diff --git a/.github/workflows/nightly_ci_build.yml b/.github/workflows/nightly_ci_build.yml
index f79d7285..f6049976 100644
--- a/.github/workflows/nightly_ci_build.yml
+++ b/.github/workflows/nightly_ci_build.yml
@@ -2,13 +2,11 @@ name: REopt-gem CI
on:
workflow_dispatch:
- # push:
+ push:
schedule:
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule
# 5:23 am UTC (11:23pm MDT the day before) every weekday night in MDT
- cron: '23 5 * * 2-6'
- pull_request:
- types: [review_requested]
env:
# This env var should enforce develop branch of all dependencies
@@ -21,17 +19,16 @@ jobs:
# https://github.com/rbenv/ruby-build/discussions/1940
runs-on: ubuntu-latest
container:
- image: docker://nrel/openstudio:3.7.0
+ image: docker://nrel/openstudio:3.9.0
steps:
- uses: actions/checkout@v4
- name: set git config options
shell: bash
- run: |
- git config --global --add safe.directory '*'
+ run: git config --global --add safe.directory '*'
- name: Update gems
run: |
+ bundle install
bundle update
- bundle exec certified-update
- name: Run Rspec
run: bundle exec rspec
- name: Coveralls
diff --git a/.gitignore b/.gitignore
index 307ee6be..e6156aec 100644
--- a/.gitignore
+++ b/.gitignore
@@ -16,7 +16,7 @@
/lib/measures/test_results
/lib/measures/.rubocop*
# test files
-spec/run/
+spec/files/run/baseline_scenario_ghe/reopt_ghp/
developer_nrel_key.rb
# rspec failure tracking
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 204889a5..2dc7c903 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,12 +1,29 @@
# URBANopt REopt Gem
+## Version 1.0.0
+
+## What's Changed
+
+* Upgrade to OpenStudio 3.9 and Ruby 3.2.2 by @vtnate in https://github.com/urbanopt/urbanopt-reopt-gem/pull/155
+* Updates for REopt v3.11 by @vtnate in https://github.com/urbanopt/urbanopt-reopt-gem/pull/157
+
+### Other Changes
+
+* expose error messages for certificate verify failed by @kflemin in https://github.com/urbanopt/urbanopt-reopt-gem/pull/151
+* REopt GHP LCCA Analysis by @tanushree04 in https://github.com/urbanopt/urbanopt-reopt-gem/pull/153
+
+**Full Changelog**: https://github.com/urbanopt/urbanopt-reopt-gem/compare/v0.12.0...v1.0.0
+
## Version 0.12.0
+
Date Range: 01/11/24 - 05/06/24
+
* Use Reopt v3 by @vtnate in https://github.com/urbanopt/urbanopt-reopt-gem/pull/149
**Full Changelog**: https://github.com/urbanopt/urbanopt-reopt-gem/compare/v0.11.0...v0.12.0
## Version 0.11.0
+
Date Range: 07/06/23 - 01/11/24
* Use different error messages in different places by @vtnate in https://github.com/urbanopt/urbanopt-reopt-gem/pull/145
@@ -17,6 +34,7 @@ Date Range: 07/06/23 - 01/11/24
**Full Changelog**: https://github.com/urbanopt/urbanopt-reopt-gem/compare/v0.10.0...v0.11.0
## Version 0.10.0
+
Date Range: 12/13/22 - 7/6/23
- Update dependencies for OpenStudio 3.6.1
diff --git a/Gemfile b/Gemfile
index 4d0d03d2..f6c925e6 100755
--- a/Gemfile
+++ b/Gemfile
@@ -17,7 +17,9 @@ allow_local = ENV['FAVOR_LOCAL_GEMS']
# if allow_local && File.exist?('../OpenStudio-extension-gem')
# gem 'openstudio-extension', path: '../OpenStudio-extension-gem'
# elsif allow_local
-# gem 'openstudio-extension', github: 'NREL/OpenStudio-extension-gem', branch: 'develop'
+# gem 'openstudio-extension', github: 'NREL/OpenStudio-extension-gem', branch: 'develop'
+# else
+# gem 'openstudio-extension', '~> 0.8.1'
# end
#
# if allow_local && File.exist?('../openstudio-common-measures-gem')
@@ -41,14 +43,17 @@ allow_local = ENV['FAVOR_LOCAL_GEMS']
# gem 'openstudio-model-articulation', '0.1.0'
# end
-# if allow_local && File.exist?('../urbanopt-scenario-gem')
-# gem 'urbanopt-scenario', path: '../urbanopt-scenario-gem'
-# elsif allow_local
-# gem 'urbanopt-scenario', github: 'URBANopt/urbanopt-scenario-gem', branch: 'reopt-v3'
-# end
+if allow_local && File.exist?('../urbanopt-scenario-gem')
+ gem 'urbanopt-scenario', path: '../urbanopt-scenario-gem'
+elsif allow_local
+ gem 'urbanopt-scenario', github: 'URBANopt/urbanopt-scenario-gem', branch: 'develop'
+end
-# if allow_local && File.exists?('../urbanopt-geojson-gem')
-# gem 'urbanopt-geojson', path: '../urbanopt-geojson-gem'
-# elsif allow_local
-# gem 'urbanopt-geojson', github: 'URBANopt/urbanopt-geojson-gem', branch: 'develop'
-# end
+# Temporary! Remove this once reporting-gem is merged/released
+# gem 'urbanopt-reporting', github: 'URBANopt/urbanopt-reporting-gem', branch: 'develop'
+
+if allow_local && File.exist?('../urbanopt-geojson-gem')
+ gem 'urbanopt-geojson', path: '../urbanopt-geojson-gem'
+elsif allow_local
+ gem 'urbanopt-geojson', github: 'URBANopt/urbanopt-geojson-gem', branch: 'develop'
+end
diff --git a/LICENSE.md b/LICENSE.md
index e495d30b..5864b04d 100755
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -1,4 +1,4 @@
-URBANopt (tm), Copyright (c) 2019-2024, Alliance for Sustainable Energy, LLC, and other
+URBANopt (tm), Copyright (c) 2019-2025, Alliance for Sustainable Energy, LLC, and other
contributors. All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
diff --git a/doc_templates/LICENSE.md b/doc_templates/LICENSE.md
index e495d30b..5864b04d 100644
--- a/doc_templates/LICENSE.md
+++ b/doc_templates/LICENSE.md
@@ -1,4 +1,4 @@
-URBANopt (tm), Copyright (c) 2019-2024, Alliance for Sustainable Energy, LLC, and other
+URBANopt (tm), Copyright (c) 2019-2025, Alliance for Sustainable Energy, LLC, and other
contributors. All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
diff --git a/doc_templates/copyright_erb.txt b/doc_templates/copyright_erb.txt
index 9b5ac08a..d8bfeccb 100644
--- a/doc_templates/copyright_erb.txt
+++ b/doc_templates/copyright_erb.txt
@@ -1,6 +1,6 @@
<%
# *********************************************************************************
- # URBANopt (tm), Copyright (c) 2019-2024, Alliance for Sustainable Energy, LLC, and other
+ # URBANopt (tm), Copyright (c) 2019-2025, Alliance for Sustainable Energy, LLC, and other
# contributors. All rights reserved.
# Redistribution and use in source and binary forms, with or without modification,
diff --git a/docs/schemas/reopt-output-schema.md b/docs/schemas/reopt-output-schema.md
index 16b73bf0..665aad67 100644
--- a/docs/schemas/reopt-output-schema.md
+++ b/docs/schemas/reopt-output-schema.md
@@ -1,6 +1,6 @@
# REopt Lite Outputs Schema
-When the gem calls the REopt Lite APUI it recieves the following complete set of results described in the data dictionary below. Only those needed to update a Feature or Scenario Report's distributed_generation attibute set and timeseries CSV are pulled from the reponse and transferred to the Feature or Scenario Report. You may choose to modify the code to include more or less of the full REopt Lite response.
+When the gem calls the REopt Lite APUI it receives the following complete set of results described in the data dictionary below. Only those needed to update a Feature or Scenario Report's distributed_generation attribute set and timeseries CSV are pulled from the response and transferred to the Feature or Scenario Report. You may choose to modify the code to include more or less of the full REopt Lite response.
## Data Dictionary
diff --git a/lib/urbanopt/reopt.rb b/lib/urbanopt/reopt.rb
index 19352fb2..6facad6e 100755
--- a/lib/urbanopt/reopt.rb
+++ b/lib/urbanopt/reopt.rb
@@ -9,3 +9,6 @@
require 'urbanopt/reopt/scenario_report_adapter'
require 'urbanopt/reopt/reopt_post_processor'
require 'urbanopt/reopt/version'
+require 'urbanopt/reopt/reopt_ghp_post_processor'
+require 'urbanopt/reopt/reopt_ghp_adapter'
+require 'urbanopt/reopt/reopt_ghp_api'
diff --git a/lib/urbanopt/reopt/feature_report_adapter.rb b/lib/urbanopt/reopt/feature_report_adapter.rb
index 879f5fb4..b9ec8a21 100755
--- a/lib/urbanopt/reopt/feature_report_adapter.rb
+++ b/lib/urbanopt/reopt/feature_report_adapter.rb
@@ -41,9 +41,9 @@ def reopt_json_from_feature_report(feature_report, reopt_assumptions_hash = nil,
else
@@logger.info('Using default REopt assumptions')
reopt_inputs = {
- Settings:{},
+ Settings: {},
Site: {},
- Financial:{},
+ Financial: {},
ElectricTariff: {
monthly_demand_rates: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
monthly_energy_rates: [0.13, 0.13, 0.13, 0.13, 0.13, 0.13, 0.13, 0.13, 0.13, 0.13, 0.13, 0.13]
@@ -151,14 +151,13 @@ def reopt_json_from_feature_report(feature_report, reopt_assumptions_hash = nil,
#
# [*parameters:*]
#
- # * +feature_report+ - _URBANopt::Reporting::DefaultReports::FeatureReport_ - FeatureReport to update from a \REopt reponse hash.
- # * +reopt_output+ - _Hash_ - A reponse hash from the \REopt API to use in overwriting FeatureReport technology sizes, costs and dispatch strategies.
+ # * +feature_report+ - _URBANopt::Reporting::DefaultReports::FeatureReport_ - FeatureReport to update from a \REopt response hash.
+ # * +reopt_output+ - _Hash_ - A response hash from the \REopt API to use in overwriting FeatureReport technology sizes, costs and dispatch strategies.
# * +timeseries_csv_path+ - _String_ - Optional. The path to a file at which a new timeseries CSV will be written. If not provided a file is created based on the run_uuid of the \REopt optimization task.
#
# [*return:*] _URBANopt::Reporting::DefaultReports::FeatureReport_ - Returns an updated FeatureReport.
##
def update_feature_report(feature_report, reopt_output, timeseries_csv_path = nil, resilience_stats = nil)
-
# Check if the \REopt response is valid
if reopt_output['status'] != 'optimal'
@@logger.error("ERROR cannot update Feature Report #{feature_report.name} #{feature_report.id} - REopt optimization was non-optimal")
@@ -439,7 +438,7 @@ def modrow(x, i) # :nodoc:
x[$storage_to_grid_col] = $storage_to_grid[i] || 0 if defined?(storage)
x[$storage_soc_col] = $storage_soc[i] || 0 if defined?(storage)
x[$generator_total_col] = $generator_total[i] || 0 if defined?(generator)
- x[$generator_to_battery_col] = $generator_to_battery[i] || 0 if (defined?(generator) && defined?(storage))
+ x[$generator_to_battery_col] = $generator_to_battery[i] || 0 if defined?(generator) && defined?(storage)
x[$generator_to_load_col] = $generator_to_load[i] || 0 if defined?(generator)
x[$generator_to_grid_col] = $generator_to_grid[i] || 0 if defined?(generator)
x[$pv_total_col] = $pv_total[i] || 0
@@ -447,7 +446,7 @@ def modrow(x, i) # :nodoc:
x[$pv_to_load_col] = $pv_to_load[i] || 0
x[$pv_to_grid_col] = $pv_to_grid[i] || 0
x[$wind_total_col] = $wind_total[i] || 0 if defined?(wind)
- x[$wind_to_battery_col] = $wind_to_battery[i] || 0 if (defined?(wind) && defined?(storage))
+ x[$wind_to_battery_col] = $wind_to_battery[i] || 0 if defined?(wind) && defined?(storage)
x[$wind_to_load_col] = $wind_to_load[i] || 0 if defined?(wind)
x[$wind_to_grid_col] = $wind_to_grid[i] || 0 if defined?(wind)
return x
diff --git a/lib/urbanopt/reopt/reopt_ghp_adapter.rb b/lib/urbanopt/reopt/reopt_ghp_adapter.rb
new file mode 100644
index 00000000..0300eb0a
--- /dev/null
+++ b/lib/urbanopt/reopt/reopt_ghp_adapter.rb
@@ -0,0 +1,337 @@
+# *********************************************************************************
+# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC.
+# See also https://github.com/urbanopt/urbanopt-reopt-gem/blob/develop/LICENSE.md
+# *********************************************************************************
+
+module URBANopt # :nodoc:
+ module REopt # :nodoc:
+ class REoptGHPAdapter
+
+ def initialize
+ # initialize @@logger
+ @@logger ||= URBANopt::REopt.reopt_logger
+ # Define class variable
+ @@hours_in_year = 8760
+ end
+
+ def create_reopt_input_building(run_dir, system_parameter_hash, reopt_ghp_assumptions_hash, building_id, modelica_result)
+
+ # Define variables
+ reopt_inputs_building = {}
+ if !reopt_ghp_assumptions_hash.nil?
+ reopt_inputs_building = reopt_ghp_assumptions_hash
+ else
+ @@logger.info('Using default REopt assumptions')
+ # create a dictionary for REopt Inputs
+ reopt_inputs_building = {
+ Site: {},
+ SpaceHeatingLoad: {},
+ DomesticHotWaterLoad: {},
+ ElectricLoad: {},
+ ElectricTariff: {
+ urdb_label: ""
+ },
+ GHP: {},
+ ExistingBoiler: {}
+ }
+ end
+
+ # The URDB label is required to be specified in the input assumption file
+ if reopt_inputs_building[:ElectricTariff][:urdb_label].nil? || reopt_inputs_building[:ElectricTariff][:urdb_label].empty?
+ raise "Missing value for urdb_label - this is a required input"
+ end
+
+ scenario_json_path = File.join(run_dir, "default_scenario_report.json")
+ if File.exist?(scenario_json_path)
+ File.open(scenario_json_path, 'r') do |file|
+ scenario_json_data = JSON.parse(file.read, symbolize_names: true)
+ # update site location
+ @latitude = scenario_json_data[:scenario_report][:location][:latitude_deg]
+ @longitude = scenario_json_data[:scenario_report][:location][:longitude_deg]
+ reopt_inputs_building[:Site][:latitude] = @latitude
+ reopt_inputs_building[:Site][:longitude] = @longitude
+
+ end
+ end
+
+ reopt_inputs_building[:SpaceHeatingLoad][:fuel_loads_mmbtu_per_hour] = []
+ # Read the default csv report
+ default_feature_report_path = File.join(run_dir, building_id.to_s, "feature_reports", "default_feature_report.csv")
+ if File.exist?(default_feature_report_path)
+ timeseries_data = CSV.read(default_feature_report_path, headers: true)
+
+ # Initialize the total kBtu sum
+ total_kbtu = 0.0
+
+ # Convert each value in "Heating:NaturalGas(kBtu)" to MMBtu and store in the array
+ timeseries_data.each do |row|
+ if row['Heating:NaturalGas(kBtu)'] # Ensure the value exists
+ kBtu_value = row['Heating:NaturalGas(kBtu)'].to_f # Convert to float
+ total_kbtu += kBtu_value # Sum kBtu values
+ end
+ end
+ # Check if the total kBtu is zero
+ if total_kbtu.zero?
+ # If zero, populate with hourly values meet reopts formatting requirements
+ reopt_inputs_building[:SpaceHeatingLoad][:fuel_loads_mmbtu_per_hour] = [0.000001] * @@hours_in_year
+ else
+ # If not zero, convert and append to the array
+ timeseries_data.each do |row|
+ if row['Heating:NaturalGas(kBtu)'] # Ensure the value exists
+ kBtu_value = row['Heating:NaturalGas(kBtu)'].to_f # Convert to float
+ mMBtu_value = kBtu_value / 1000 # Convert kBtu to MMBtu
+ reopt_inputs_building[:SpaceHeatingLoad][:fuel_loads_mmbtu_per_hour] << mMBtu_value # Append to the array
+ end
+ end
+ end
+
+ else
+ # Calculate space heating load
+ reopt_inputs_building[:SpaceHeatingLoad][:fuel_loads_mmbtu_per_hour] = [0.000001] * @@hours_in_year
+ puts "Existing heating fuel cost was not taken into consideration in result calculations."
+ end
+
+
+ # read_modelica_result
+ modelica_project = File.expand_path(modelica_result)
+ project_name = File.basename(modelica_project)
+ @modelica_csv = File.join(
+ modelica_project,
+ "#{project_name}.Districts.DistrictEnergySystem_results",
+ "#{project_name}.Districts.DistrictEnergySystem_result.csv"
+ )
+
+ if File.exist?(@modelica_csv)
+ modelica_data = CSV.read(@modelica_csv, headers: true)
+ heating_power = "heating_electric_power_#{building_id}"
+ cooling_power = "cooling_electric_power_#{building_id}"
+ pump_power = "pump_power_#{building_id}"
+ ets_pump_power = "ets_pump_power_#{building_id}"
+ heating_system_capacity = "heating_system_capacity_#{building_id}"
+ cooling_system_capacity = "cooling_system_capacity_#{building_id}"
+
+ heating_power_values = cooling_power_values = pump_power_values = ets_pump_power_values = []
+ total_electric_load_building = []
+ # Ensure the column exists
+ if modelica_data.headers.include?(heating_power)
+ heating_power_values = modelica_data[heating_power]
+ end
+ if modelica_data.headers.include?(cooling_power)
+ cooling_power_values = modelica_data[cooling_power]
+ end
+ if modelica_data.headers.include?(pump_power)
+ pump_power_values = modelica_data[pump_power]
+ end
+ if modelica_data.headers.include?(ets_pump_power)
+ ets_pump_power_values = modelica_data[ets_pump_power]
+ end
+
+ total_electric_load_building = heating_power_values.zip(cooling_power_values, pump_power_values, ets_pump_power_values).map do |elements|
+ # Convert watts to kilowatts
+ elements.map { |e| e.to_f / 1000 }.sum
+ end
+
+ peak_combined_heatpump_thermal_ton = 0
+
+ if modelica_data.headers.include?(heating_system_capacity)
+ heating_system_capacity_value = modelica_data[heating_system_capacity][0]
+ end
+ if modelica_data.headers.include?(cooling_system_capacity)
+ cooling_system_capacity_value = modelica_data[cooling_system_capacity][0]
+ end
+
+ watts_per_ton_cooling_capacity = 3517
+ peak_combined_heatpump_thermal_ton = ([heating_system_capacity_value.to_f.abs, cooling_system_capacity_value.to_f.abs].max) / watts_per_ton_cooling_capacity
+
+ # Store the result in reopt_inputs_building ElectricLoad
+ reopt_inputs_building[:ElectricLoad][:loads_kw] = total_electric_load_building
+
+
+ domestic_hot_water = total_electric_load_building.map do |load|
+ load * 0
+ end
+
+ # This is not used in REopt calculation but required for formatting.
+ reopt_inputs_building[:DomesticHotWaterLoad][:fuel_loads_mmbtu_per_hour] = domestic_hot_water
+
+ # Add GHP Fields
+ reopt_inputs_building[:GHP] = {}
+ # REopt default
+ reopt_inputs_building[:GHP][:require_ghp_purchase] = 1
+ reopt_inputs_building[:GHP][:om_cost_per_sqft_year] = 0
+ reopt_inputs_building[:GHP][:heatpump_capacity_sizing_factor_on_peak_load] = 1.0
+ # Add the floor area
+ building_json_path = File.join(run_dir, building_id.to_s, "feature_reports", "default_feature_report.json")
+ if File.exist?(building_json_path)
+ File.open(building_json_path, 'r') do |file|
+ building_json_data = JSON.parse(file.read, symbolize_names: true)
+ reopt_inputs_building[:GHP][:building_sqft] = building_json_data[:program][:floor_area_sqft]
+ end
+ else
+ puts "File not found: #{building_json_path}"
+ end
+
+ # Add existing boiler fuel cost
+ # TODO : Add this as optional user input
+ nat_gas_dollars_per_mmbtu = 13.5
+ reopt_inputs_building[:ExistingBoiler][:fuel_cost_per_mmbtu] = nat_gas_dollars_per_mmbtu
+
+ # Add ghpghx_responses
+ ghpghx_output = {}
+ ghpghx_output[:outputs] = {}
+ ghpghx_output[:inputs] = {}
+ ghpghx_output[:outputs][:heat_pump_configuration] = "WSHP"
+ # This is not used in REopt calculation but required for formatting.
+ ghpghx_output[:outputs][:yearly_ghx_pump_electric_consumption_series_kw] = [0] * @@hours_in_year
+ ghpghx_output[:outputs][:number_of_boreholes] = 0
+ ghpghx_output[:outputs][:length_boreholes_ft] = 0
+
+ ghpghx_output[:outputs][:peak_combined_heatpump_thermal_ton] = peak_combined_heatpump_thermal_ton
+ ghpghx_output[:outputs][:yearly_total_electric_consumption_kwh] = total_electric_load_building.sum
+ ghpghx_output[:outputs][:yearly_total_electric_consumption_series_kw] = total_electric_load_building
+ ghpghx_output[:outputs][:yearly_heating_heatpump_electric_consumption_series_kw] = total_electric_load_building
+ ghpghx_output[:outputs][:yearly_cooling_heatpump_electric_consumption_series_kw] = [0] * @@hours_in_year
+ # This is not used in REopt calculation but required for formatting.
+ ghpghx_output[:inputs][:heating_thermal_load_mmbtu_per_hr] = [0.0001] * @@hours_in_year
+ # This is not used in REopt calculation but required for formatting.
+ ghpghx_output[:inputs][:cooling_thermal_load_ton] = [0] * @@hours_in_year
+
+ ghpghx_output_all = [ghpghx_output]
+ reopt_inputs_building[:GHP][:ghpghx_responses] = {}
+ reopt_inputs_building[:GHP][:ghpghx_responses] = ghpghx_output_all
+
+ end
+
+ #save output report in reopt_ghp directory
+ reopt_ghp_dir = File.join(run_dir, "reopt_ghp", "reopt_ghp_inputs")
+ json_file_path = File.join(reopt_ghp_dir, "GHP_building_#{building_id}.json")
+ pretty_json = JSON.pretty_generate(reopt_inputs_building)
+ File.write(json_file_path, pretty_json)
+
+ end
+
+ def create_reopt_input_district(run_dir, system_parameter_hash, reopt_ghp_assumptions_hash, ghp_id, modelica_result)
+
+ reopt_inputs_district = {}
+
+ if !reopt_ghp_assumptions_hash.nil?
+ reopt_inputs_district = reopt_ghp_assumptions_hash
+ else
+ @@logger.info('Using default REopt assumptions')
+ # create a dictionary for REopt Inputs
+ reopt_inputs_district = {
+ Site: {},
+ SpaceHeatingLoad: {},
+ DomesticHotWaterLoad: {},
+ ElectricLoad: {},
+ ElectricTariff: {
+ "urdb_label": ""
+ },
+ GHP: {},
+ ExistingBoiler: {}
+ }
+ end
+
+ reopt_inputs_district[:Site] = {}
+ reopt_inputs_district[:Site][:latitude] = @latitude
+ reopt_inputs_district[:Site][:longitude] = @longitude
+ # The URDB label is required to be specified in the input assumption file
+ if reopt_inputs_district[:ElectricTariff][:urdb_label].nil? || reopt_inputs_district[:ElectricTariff][:urdb_label].empty?
+
+ raise "Missing value for urdb_label - this is a required input"
+
+ end
+
+ # This is not used in REopt calculation but required for formatting.
+ reopt_inputs_district[:SpaceHeatingLoad][:fuel_loads_mmbtu_per_hour] = [0.000001]*@@hours_in_year
+ # This is not used in REopt calculation but required for formatting.
+ reopt_inputs_district[:DomesticHotWaterLoad][:fuel_loads_mmbtu_per_hour] = [0.0000001]*@@hours_in_year
+
+ # Adding year for ElectricLoad so district electric load can be calculated with REopt API v3.11
+ reopt_inputs_district[:ElectricLoad] = {:year => 2017}
+ #required for reopt formatting
+ reopt_inputs_district[:ElectricLoad][:loads_kw] = [0.00001]*@@hours_in_year
+
+ reopt_inputs_district[:ExistingBoiler] = {}
+ reopt_inputs_district[:ExistingBoiler][:fuel_cost_per_mmbtu] = 13.5
+
+ # GHP inputs
+ reopt_inputs_district[:GHP] = {}
+ reopt_inputs_district[:GHP][:require_ghp_purchase] = 1
+ reopt_inputs_district[:GHP][:building_sqft] = 0.00001
+ reopt_inputs_district[:GHP][:om_cost_per_sqft_year] = 0
+ reopt_inputs_district[:GHP][:heatpump_capacity_sizing_factor_on_peak_load] = 1.0
+
+ # Add ghpghx outputs
+ ghpghx_output = {}
+ ghpghx_output[:outputs] = {}
+ ghpghx_output[:inputs] = {}
+
+ ghpghx_output[:inputs][:heating_thermal_load_mmbtu_per_hr] = [0]*@@hours_in_year
+ ghpghx_output[:inputs][:cooling_thermal_load_ton] = [0] * @@hours_in_year
+
+
+ # Read GHX sizes from system parameter hash
+ ghe_specific_params = system_parameter_hash[:district_system][:fifth_generation][:ghe_parameters][:ghe_specific_params]
+ ghe_specific_params.each do |ghe_specific_param|
+ if ghe_specific_param[:ghe_id] = ghp_id
+ number_of_boreholes = ghe_specific_param[:borehole][:number_of_boreholes]
+ length_of_boreholes = ghe_specific_param[:borehole][:length_of_boreholes]
+ ghpghx_output[:outputs][:number_of_boreholes] = number_of_boreholes
+ # convert meters to feet
+ ghpghx_output[:outputs][:length_boreholes_ft] = (length_of_boreholes)*3.28084
+ end
+ end
+
+ if File.exist?(@modelica_csv)
+
+ modelica_data = CSV.read(@modelica_csv, headers: true)
+
+ electrical_power_consumed = modelica_data["electrical_power_consumed"]
+ # Convert watts to kilowatts
+ electrical_power_consumed_kw = electrical_power_consumed.map { |e| e.to_f / 1000 }
+ # if ghp_id.include?('-')
+ # # Note: For some reason when reading columns, '-' from the column headers are removed, whereas ghp_id has -
+ # ghp_id_formatted = ghp_id.delete('-')
+ # ghp_column = "electrical_power_consumed_#{ghp_id_formatted}".to_sym
+
+ # else
+ # # Note: For some reason when reading columns, '-' from the column headers are removed, whereas ghp_id has -
+ # ghp_column = "electrical_power_consumed_#{ghp_id}".to_sym
+ # end
+
+ # # Ensure the column exists
+ # unless modelica_data.headers.include?(ghp_column)
+ # puts "Column #{ghp_column} does not exist in the CSV file."
+ # end
+
+ # # Access values from the column
+ # column_values = modelica_data.by_col[ghp_column]
+
+ ghpghx_output[:outputs][:yearly_ghx_pump_electric_consumption_series_kw] = electrical_power_consumed_kw
+ else
+ ghpghx_output[:outputs][:yearly_ghx_pump_electric_consumption_series_kw] = [0.000000001]*@@hours_in_year
+ end
+
+ # This is not used in REopt calculation but required for formatting.
+ ghpghx_output[:outputs][:peak_combined_heatpump_thermal_ton] = 0.000000001
+
+ ghpghx_output[:outputs][:heat_pump_configuration] = "WSHP"
+ # Required for REpot formatting
+ ghpghx_output[:outputs][:yearly_total_electric_consumption_series_kw] = [0.00001] * @@hours_in_year
+ ghpghx_output[:outputs][:yearly_heating_heatpump_electric_consumption_series_kw] = [0] * @@hours_in_year
+ ghpghx_output[:outputs][:yearly_cooling_heatpump_electric_consumption_series_kw] = [0] * @@hours_in_year
+
+ ghpghx_output_all = [ghpghx_output, ghpghx_output]
+ reopt_inputs_district[:GHP][:ghpghx_responses] = ghpghx_output_all
+
+ #save output report in reopt_ghp directory
+ reopt_ghp_dir = File.join(run_dir, "reopt_ghp", "reopt_ghp_inputs")
+ json_file_path = File.join(reopt_ghp_dir, "GHX_#{ghp_id}.json")
+ pretty_json = JSON.pretty_generate(reopt_inputs_district)
+ File.write(json_file_path, pretty_json)
+ end
+
+ end
+ end
+end
diff --git a/lib/urbanopt/reopt/reopt_ghp_api.rb b/lib/urbanopt/reopt/reopt_ghp_api.rb
new file mode 100644
index 00000000..f0236cb1
--- /dev/null
+++ b/lib/urbanopt/reopt/reopt_ghp_api.rb
@@ -0,0 +1,156 @@
+# *********************************************************************************
+# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC.
+# See also https://github.com/urbanopt/urbanopt-reopt-gem/blob/develop/LICENSE.md
+# *********************************************************************************
+
+require 'net/https'
+require 'openssl'
+require 'uri'
+require 'json'
+require 'securerandom'
+require_relative '../../../developer_nrel_key'
+require 'urbanopt/reopt/reopt_logger'
+
+module URBANopt # :nodoc:
+ module REopt # :nodoc:
+ class REoptLiteGHPAPI
+
+ def initialize(reopt_input_file, nrel_developer_key = nil, reopt_output_file, use_localhost)
+
+ # Store developer key
+ if [nil, '', ''].include? nrel_developer_key
+ if [nil, '', ''].include? DEVELOPER_NREL_KEY
+ raise 'A developer.nrel.gov API key is required. Please see https://developer.nrel.gov/signup/ then update the file urbanopt-reopt-gem/developer_nrel_key.rb'
+ else
+ #Store the NREL developer key
+ nrel_developer_key = DEVELOPER_NREL_KEY
+ end
+ end
+
+ @use_localhost = use_localhost
+ if @use_localhost
+ @root_url = "http://localhost:8000/v3"
+ else
+ @root_url = "https://developer.nrel.gov/api/reopt/v3"
+ end
+ # add REopt URL
+ @nrel_developer_key = nrel_developer_key
+ @reopt_input_file = reopt_input_file
+ @reopt_output_file = reopt_output_file
+ # initialize @@logger
+ @@logger ||= URBANopt::REopt.reopt_logger
+ @@logger.level = Logger::INFO
+ end
+
+
+ def get_api_results(run_id=nil)
+
+ reopt_input_file = @reopt_input_file
+ nrel_developer_key = @nrel_developer_key
+ root_url = @root_url
+ reopt_output_file = @reopt_output_file
+
+ if run_id.nil?
+ run_id = get_run_uuid(reopt_input_file, nrel_developer_key, reopt_output_file)
+ end
+ if !run_id.nil?
+ results_url = "#{@root_url}/job/#{run_id}/results/?api_key=#{nrel_developer_key}"
+ puts "This is results URL #{results_url}"
+ results = reopt_request(results_url)
+
+ File.open(reopt_output_file, 'w') do |f|
+ f.write(JSON.pretty_generate(results))
+ @@logger.info("Saved results to #{reopt_output_file}")
+ end
+ else
+ results = nil
+ @@logger.error("Unable to get results: no UUID returned.")
+ end
+ results
+ end
+
+ def get_run_uuid(reopt_input_file, nrel_developer_key, root_url)
+
+ reopt_input_file = @reopt_input_file
+ nrel_developer_key = @nrel_developer_key
+ root_url = @root_url
+ post_url = "#{root_url}/job/?api_key=#{nrel_developer_key}"
+ puts "This is URL: #{post_url}"
+ @@logger.info("Connecting to #{post_url}")
+
+ # Parse the URL and prepare the HTTP request
+ uri = URI.parse(post_url)
+ request = Net::HTTP::Post.new(uri)
+ request.content_type = 'application/json'
+
+ # Add the JSON payload (assuming 'post' is the body data)
+ request.body = reopt_input_file.to_json
+
+ # Send the HTTP request
+ response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: uri.scheme == 'https') do |http|
+ http.request(request)
+ end
+
+ run_id = nil
+
+ if !response.is_a?(Net::HTTPSuccess)
+ @@logger.error("Status code #{response.code}. #{response.body}")
+ @@logger.error("Status code #{response.code}")
+ else
+ @@logger.info("Response OK from #{post_url}.")
+ run_id_dict = JSON.parse(response.body)
+
+ begin
+ run_id = run_id_dict['run_uuid']
+ rescue KeyError
+ msg = "Response from #{post_url} did not contain run_uuid."
+ @@logger.error(msg)
+ end
+ end
+ # Return run_id
+ run_id
+ end
+
+ def reopt_request(results_url, poll_interval = 5, max_timeout = 300)
+
+ key_error_count = 0
+ key_error_threshold = 3
+ status = "Optimizing..."
+ @@logger.info("Polling #{results_url} for results with interval of #{poll_interval}...")
+ resp_dict = {}
+ start_time = Time.now
+
+ loop do
+ uri = URI.parse(results_url)
+ response = Net::HTTP.get_response(uri)
+ resp_dict = JSON.parse(response.body)
+
+ begin
+ status = resp_dict['status']
+ rescue KeyError
+ key_error_count += 1
+ @@logger.info("KeyError count: #{key_error_count}")
+ if key_error_count > key_error_threshold
+ @@logger.info("Breaking polling loop due to KeyError count threshold of #{key_error_threshold} exceeded.")
+ break
+ end
+ end
+
+ if status != "Optimizing..."
+ break
+ end
+
+ if Time.now - start_time > max_timeout
+ @@logger.info("Breaking polling loop due to max timeout of #{max_timeout} seconds exceeded.")
+ break
+ end
+
+ sleep(poll_interval)
+
+ end
+ resp_dict
+ end
+
+ end
+ end
+end
diff --git a/lib/urbanopt/reopt/reopt_ghp_files/reopt_ghp_assumption.json b/lib/urbanopt/reopt/reopt_ghp_files/reopt_ghp_assumption.json
new file mode 100644
index 00000000..0b90b021
--- /dev/null
+++ b/lib/urbanopt/reopt/reopt_ghp_files/reopt_ghp_assumption.json
@@ -0,0 +1,27 @@
+{
+ "Site": {
+ "latitude": 42.81428490645775,
+ "longitude": -78.84701778930912
+ },
+ "SpaceHeatingLoad": {
+ },
+ "DomesticHotWaterLoad": {
+ },
+ "ElectricLoad": {
+ "year": 2017
+ },
+ "ElectricTariff": {
+ "urdb_label": "594976725457a37b1175d089"
+ },
+ "GHP":{
+ "installed_cost_heatpump_per_ton": 1075,
+ "installed_cost_ghx_per_ft": 14,
+ "installed_cost_building_hydronic_loop_per_sqft": 1.7,
+ "om_cost_per_sqft_year": 0,
+ "macrs_bonus_fraction": 0.6,
+ "macrs_itc_reduction": 0.5,
+ "federal_itc_fraction": 0.3
+ },
+ "ExistingBoiler": {
+ }
+}
diff --git a/lib/urbanopt/reopt/reopt_ghp_post_processor.rb b/lib/urbanopt/reopt/reopt_ghp_post_processor.rb
new file mode 100644
index 00000000..08e16cbc
--- /dev/null
+++ b/lib/urbanopt/reopt/reopt_ghp_post_processor.rb
@@ -0,0 +1,149 @@
+# *********************************************************************************
+# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC.
+# See also https://github.com/urbanopt/urbanopt-reopt-gem/blob/develop/LICENSE.md
+# *********************************************************************************
+
+require 'bundler/setup'
+require 'urbanopt/reopt/reopt_logger'
+require 'urbanopt/reopt/reopt_ghp_api'
+require 'csv'
+require 'json'
+require 'fileutils'
+
+module URBANopt # :nodoc:
+ module REopt # :nodoc:
+ class REoptGHPPostProcessor
+ def initialize(run_dir, system_parameter, modelica_result, reopt_ghp_assumptions = nil, nrel_developer_key = nil, localhost)
+ # initialize @@logger
+ @@logger ||= URBANopt::REopt.reopt_logger
+
+ @nrel_developer_key = nrel_developer_key
+ @localhost = localhost
+ @reopt_ghp_output_district = nil
+ @reopt_ghp_output_building = []
+ @reopt_ghp_assumptions_hash = nil
+ @reopt_ghp_assumptions = nil
+ @system_parameter = nil
+ @system_parameter_hash = nil
+ @modelica_result = nil
+ @building_ids = nil
+ @run_dir = run_dir
+
+ if !reopt_ghp_assumptions.nil?
+ @reopt_ghp_assumptions = reopt_ghp_assumptions
+ File.open(reopt_ghp_assumptions, 'r') do |file|
+ @reopt_ghp_assumptions_input_hash = JSON.parse(file.read, symbolize_names: true)
+ end
+ end
+
+ if !system_parameter.nil?
+ @system_parameter = system_parameter
+ File.open(system_parameter, 'r') do |file|
+ @system_parameter_input_hash = JSON.parse(file.read, symbolize_names: true)
+ end
+ # Determine loop order
+ loop_order = File.join(File.dirname(system_parameter), '_loop_order.json')
+ if File.exist?(loop_order)
+ File.open(loop_order, 'r') do |file|
+ loop_order_input = JSON.parse(file.read, symbolize_names: true)
+ # Check the type of the parsed data
+ if loop_order_input.is_a?(Array)
+ @loop_order_input_hash = loop_order_input
+ @loop_order_input_hash.each do |item|
+ puts "Building IDs in group: #{item[:list_bldg_ids_in_group].inspect}"
+ puts "GHE IDs in group: #{item[:list_ghe_ids_in_group].inspect}"
+ end
+ elsif loop_order_input.is_a?(Hash)
+ @loop_order_input_hash = [loop_order_input] # Wrap in array if a single object
+ @loop_order_input_hash.each do |item|
+ puts "Building IDs in group: #{item[:list_bldg_ids_in_group].inspect}"
+ puts "GHE IDs in group: #{item[:list_ghe_ids_in_group].inspect}"
+ end
+ else
+ puts 'Unexpected JSON structure'
+ end
+ end
+ end
+
+ end
+
+ if !modelica_result.nil?
+ @modelica_result_input = modelica_result
+ end
+ end
+
+ attr_accessor :run_dir, :system_parameter_input_hash, :reopt_ghp_assumptions_input_hash, :loop_order_input_hash, :modelica_result_input
+
+ # # Create REopt input and output building report
+ def run_reopt_lcca(system_parameter_hash: nil, reopt_ghp_assumptions_hash: nil, modelica_result: nil)
+ adapter = URBANopt::REopt::REoptGHPAdapter.new
+
+ # if these arguments are specified, use them
+ if !system_parameter_hash.nil?
+ @system_parameter_input_hash = system_parameter_hash
+ end
+
+ if !reopt_ghp_assumptions_hash.nil?
+ @reopt_ghp_assumptions_input_hash = reopt_ghp_assumptions_hash
+ end
+
+ if !modelica_result.nil?
+ @modelica_result_input = modelica_result
+ end
+
+ # Create folder for REopt input files only if they dont exist
+ reopt_ghp_dir = File.join(@run_dir, 'reopt_ghp')
+ reopt_ghp_input = File.join(reopt_ghp_dir, 'reopt_ghp_inputs')
+ unless Dir.exist?(reopt_ghp_dir)
+ FileUtils.mkdir_p(reopt_ghp_dir)
+ end
+ unless Dir.exist?(reopt_ghp_input)
+ FileUtils.mkdir_p(reopt_ghp_input)
+ end
+
+ reopt_ghp_output = File.join(reopt_ghp_dir, 'reopt_ghp_outputs')
+ unless Dir.exist?(reopt_ghp_output)
+ FileUtils.mkdir_p(reopt_ghp_output)
+ end
+
+ # get building IDs from _loop_order.json
+ building_ids = []
+ ghp_ids = []
+ @loop_order_input_hash.each do |loop|
+ building_ids.concat(loop[:list_bldg_ids_in_group].flatten)
+ ghp_ids.concat(loop[:list_ghe_ids_in_group].flatten)
+ end
+
+ building_ids.each do |building_id|
+ # create REopt building input file for all buildings in loop order list
+ reopt_input_building = adapter.create_reopt_input_building(@run_dir, @system_parameter_input_hash, @reopt_ghp_assumptions_input_hash, building_id, @modelica_result_input)
+ end
+ ghp_ids.each do |ghp_id|
+ # create REopt district input file
+ reopt_input_district = adapter.create_reopt_input_district(@run_dir, @system_parameter_input_hash, @reopt_ghp_assumptions_input_hash, ghp_id, @modelica_result_input)
+ end
+
+ Dir.foreach(reopt_ghp_input) do |input_file|
+ # Skip '.' and '..' (current and parent directory entries)
+ next if input_file == '.' || input_file == '..'
+
+ reopt_ghp_input_file_path = File.join(reopt_ghp_input, input_file)
+
+ reopt_input_data = nil
+
+ File.open(reopt_ghp_input_file_path, 'r') do |f|
+ reopt_input_data = JSON.parse(f.read)
+ end
+
+ base_name = File.basename(input_file, '.json')
+
+ # reopt_ghp_output_file
+ reopt_output_file = File.join(reopt_ghp_output, "#{base_name}_output.json")
+ # call the REopt API
+ api = URBANopt::REopt::REoptLiteGHPAPI.new(reopt_input_data, DEVELOPER_NREL_KEY, reopt_output_file, @localhost)
+ api.get_api_results
+ end
+ end
+ end # REoptGHPPostProcessor
+ end # REopt
+end # URBANopt
diff --git a/lib/urbanopt/reopt/reopt_lite_api.rb b/lib/urbanopt/reopt/reopt_lite_api.rb
index 0727f3da..e2b096ef 100755
--- a/lib/urbanopt/reopt/reopt_lite_api.rb
+++ b/lib/urbanopt/reopt/reopt_lite_api.rb
@@ -8,7 +8,6 @@
require 'uri'
require 'json'
require 'securerandom'
-require 'certified'
require_relative '../../../developer_nrel_key'
require 'urbanopt/reopt/reopt_logger'
@@ -16,7 +15,7 @@ module URBANopt # :nodoc:
module REopt # :nodoc:
class REoptLiteAPI
##
- # \REoptLiteAPI manages submitting optimization tasks to the \REopt API and recieving results.
+ # \REoptLiteAPI manages submitting optimization tasks to the \REopt API and receiving results.
# Results can either be sourced from the production \REopt API with an API key from developer.nrel.gov, or from
# a version running at localhost.
##
@@ -55,7 +54,7 @@ def initialize(nrel_developer_key = nil, use_localhost = false)
#
# * +run_uuid+ - _String_ - Unique run_uuid obtained from the \REopt job submittal URL for a specific optimization task.
#
- # [*return:*] _URI_ - Returns URI object for use in calling the \REopt results endpoint for a specifc optimization task.
+ # [*return:*] _URI_ - Returns URI object for use in calling the \REopt results endpoint for a specific optimization task.
##
def uri_results(run_uuid) # :nodoc:
if @use_localhost
@@ -73,7 +72,7 @@ def uri_results(run_uuid) # :nodoc:
#
# * +run_uuid+ - _String_ - Resilience statistics for a unique run_uuid obtained from the \REopt job submittal URL for a specific optimization task.
#
- # [*return:*] _URI_ - Returns URI object for use in calling the \REopt resilience statistics endpoint for a specifc optimization task.
+ # [*return:*] _URI_ - Returns URI object for use in calling the \REopt resilience statistics endpoint for a specific optimization task.
##
def uri_resilience(run_uuid) # :nodoc:
if @use_localhost
@@ -112,11 +111,11 @@ def make_request(http, req, max_tries = 3)
end
tries = max_tries
rescue StandardError => e
- @@logger.debug("error from REopt API: #{e}")
+ @@logger.error("error from REopt API: #{e}")
if tries + 1 < max_tries
@@logger.debug('trying again...')
else
- @@logger.debug('max tries reached!')
+ @@logger.warn('max tries reached!')
return result
end
tries += 1
@@ -133,7 +132,7 @@ def make_request(http, req, max_tries = 3)
#
# * +data+ - _Hash_ - Default \REopt formatted post containing at least all the required parameters.
#
- # [*return:*] _Bool_ - Returns true if the post succeeeds. Otherwise returns false.
+ # [*return:*] _Bool_ - Returns true if the post succeeds. Otherwise returns false.
##
def check_connection(data)
header = { 'Content-Type' => 'application/json' }
@@ -166,7 +165,7 @@ def check_connection(data)
# * +reopt_input+ - _Hash_ - \REopt formatted post containing at least required parameters.
# * +filename+ - _String_ - Path to file that will be created containing the full \REopt response.
#
- # [*return:*] _Bool_ - Returns true if the post succeeeds. Otherwise returns false.
+ # [*return:*] _Bool_ - Returns true if the post succeeds. Otherwise returns false.
##
def resilience_request(run_uuid, filename)
if File.directory? filename
@@ -246,7 +245,7 @@ def resilience_request(run_uuid, filename)
# * +reopt_input+ - _Hash_ - \REopt formatted post containing at least required parameters.
# * +filename+ - _String_ - Path to file that will be created containing the full \REopt response.
#
- # [*return:*] _Bool_ - Returns true if the post succeeeds. Otherwise returns false.
+ # [*return:*] _Bool_ - Returns true if the post succeeds. Otherwise returns false.
##
def reopt_request(reopt_input, filename)
description = reopt_input[:description]
diff --git a/lib/urbanopt/reopt/reopt_logger.rb b/lib/urbanopt/reopt/reopt_logger.rb
index 154282d3..0380e099 100644
--- a/lib/urbanopt/reopt/reopt_logger.rb
+++ b/lib/urbanopt/reopt/reopt_logger.rb
@@ -12,7 +12,7 @@ module REopt
# Set Logger::DEBUG for development
@@reopt_logger.level = Logger::WARN
##
- # Definining class variable "@@logger" to log errors, info and warning messages.
+ # Defining class variable "@@logger" to log errors, info and warning messages.
def self.reopt_logger
@@reopt_logger
end
diff --git a/lib/urbanopt/reopt/reopt_post_processor.rb b/lib/urbanopt/reopt/reopt_post_processor.rb
index b3ecfbcf..e646934a 100644
--- a/lib/urbanopt/reopt/reopt_post_processor.rb
+++ b/lib/urbanopt/reopt/reopt_post_processor.rb
@@ -33,7 +33,6 @@ def initialize(scenario_report, scenario_reopt_assumptions_file = nil, reopt_fea
end
@nrel_developer_key = nrel_developer_key
@localhost = localhost
- @reopt_base_post = { ElectricTariff: {}, ElectricLoad: {}, Wind: { max_kw: 0 } }
@scenario_reopt_default_output_file = nil
@scenario_timeseries_default_output_file = nil
@@ -182,7 +181,7 @@ def run_scenario_report(scenario_report:, reopt_assumptions_hash: nil, reopt_out
#
# [*parameters:*]
#
- # * +feature_reports+ - _Array_ - An array of _URBANopt::Reporting::DefaultReports::FeatureReport_ objetcs which will each be used to create (and are subsquently updated by) a \REopt opimization response.
+ # * +feature_reports+ - _Array_ - An array of _URBANopt::Reporting::DefaultReports::FeatureReport_ objects which will each be used to create (and are subsequently updated by) a \REopt opimization response.
# * +reopt_assumptions_hashes+ - _Array_ - Optional. An array of \REopt formatted hashes containing default parameters (i.e. utility rate, escalation rate) which will be updated by the ScenarioReport (i.e. location, roof availability). The number and order of the hashes should match the feature_reports array.
# * +reopt_output_files+ - _Array_ - Optional. A array of paths to files at which REpopt responses will be saved. The number and order of the paths should match the feature_reports array.
# * +timeseries_csv_path+ - _Array_ - Optional. A array of paths to files at which the new timeseries CSV for the FeatureReports will be saved. The number and order of the paths should match the feature_reports array.
@@ -276,7 +275,7 @@ def output_exists(output_file)
#
# [*parameters:*]
#
- # * +scenario_report+ - _Array_ - A _URBANopt::Reporting::DefaultReports::ScenarioReport_ which will each be used to create (and is subsquently updated by) \REopt opimization responses for each of its FeatureReports.
+ # * +scenario_report+ - _Array_ - A _URBANopt::Reporting::DefaultReports::ScenarioReport_ which will each be used to create (and is subsequently updated by) \REopt opimization responses for each of its FeatureReports.
# * +reopt_assumptions_hashes+ - _Array_ - Optional. An array of \REopt formatted hashes containing default parameters (i.e. utility rate, escalation rate) which will be updated by the ScenarioReport (i.e. location, roof availability). The number and order of the hashes should match the array in ScenarioReport.feature_reports.
# * +reopt_output_files+ - _Array_ - Optional. An array of paths to files at which REpopt responses will be saved. The number and order of the paths should match the array in ScenarioReport.feature_reports.
# * +feature_report_timeseries_csv_paths+ - _Array_ - Optional. An array of paths to files at which the new timeseries CSV for the FeatureReports will be saved. The number and order of the paths should match the array in ScenarioReport.feature_reports.
diff --git a/lib/urbanopt/reopt/reopt_schema/REopt-GHP-input.json b/lib/urbanopt/reopt/reopt_schema/REopt-GHP-input.json
new file mode 100644
index 00000000..741153bf
--- /dev/null
+++ b/lib/urbanopt/reopt/reopt_schema/REopt-GHP-input.json
@@ -0,0 +1,148 @@
+{
+ "Site": {
+ "latitude": {
+ "type": "float",
+ "required": true
+ },
+ "longitude": {
+ "type": "float",
+ "required": true
+ }
+ },
+ "SpaceHeatingLoad": {
+ "fuel_loads_mmbtu_per_hour": {
+ "type": "array",
+ "required": true,
+ "description": "8760 timeseries",
+ "note": "This parameter is required to run REopt's GHP module but is not used to calculate URBANopt's GHP system LCCA. Users can set this to small numbers in GHP scenario"
+ }
+ },
+ "DomesticHotWaterLoad": {
+ "fuel_loads_mmbtu_per_hour": {
+ "type": "array",
+ "required": true,
+ "description": "8760 timeseries, if GHP not providing DHW set to zeros"
+ }
+ },
+ "ElectricLoad": {
+ "load_kw": {
+ "type": "array",
+ "required": true,
+ "description": "8760 timeseries",
+ "note": "15 min interval data do not work in GHP module. Please make sure all timeseries are 8760"
+ }
+ },
+ "ElectricTarriff": {
+ "urdb_label": "string",
+ "required": true
+ },
+ "GHP": {
+ "require_ghp_purchase": {
+ "type": "boolean",
+ "required": true,
+ "description": "choices of 0 or 1. Always set at 1 for URBANopt's LCCA"
+ },
+ "building_sqft": {
+ "type": "float",
+ "required": true,
+ "description": "to calculate cost of hydronic loop",
+ "note": "for the GHX iteration, set building_sqft to a number close to 0 but not exactly 0"
+ },
+ "heatpump_capacity_sizing_factor_on_peak_load": {
+ "type": "float",
+ "required": true,
+ "description": "always set to 1"
+ },
+ "ghpghx_responses":{
+ "outputs": {
+ "heat_pump_configuration": {
+ "type": "string",
+ "required": true,
+ "description": "set as WSHP"
+ },
+ "peak_combined_heatpump_thermal_ton": {
+ "type": "float",
+ "required": true,
+ "description": "size of GHP in ton",
+ "note": "in the GHX iteration, set this value to a number close to 0 but NOT exactly 0S"
+ },
+ "number_of_boreholes": {
+ "type": "int",
+ "required": true,
+ "note": "in the GHP iteration, set this value to 0"
+ },
+ "length_boreholes_ft": {
+ "type": "float",
+ "required": true,
+ "note": "in the GHP iteration, set this value to 0"
+ },
+ "yearly_total_electric_consumption_series_kw": {
+ "type": "array",
+ "required": true,
+ "description": "8760 timeseries of building total electric consumption",
+ "note": "in the GHX iteration, set this value to a number close to 0 but not exactly 0"
+ },
+ "yearly_ghx_pump_electric_consumption_series_kw": {
+ "type": "array",
+ "required": true,
+ "description": "8760 timeseries of ghx's total electric consumption",
+ "note": "in the GHP iteration, set this value to 0"
+ }
+ },
+ "inputs": {
+ "heating_thermal_load_mmbtu_per_hr": {
+ "type": "array",
+ "required": true,
+ "description": "not used for URBANopt's GHP LCCA but required for formatting, set to number close to 0"
+ },
+ "cooling_thermal_load_ton": {
+ "type": "array",
+ "required": true,
+ "description": "not used for URBANopt's GHP LCCA but required for formatting, can set as zeros"
+ }
+ }
+ },
+ "installed_cost_heatpump_per_ton": {
+ "type": "float",
+ "required": false,
+ "description": "installation cost per unit (ton) of GHP"
+ },
+ "installed_cost_ghx_per_ft": {
+ "type": "float",
+ "required": false,
+ "description": "installation cost per unit (ft) of GHX"
+ },
+ "installed_cost_building_hydronic_loop_per_sqft": {
+ "type": "float",
+ "required": false,
+ "description": "installation cost per sqft of building hydronic loop"
+ },
+ "om_cost_per_sqft_year": {
+ "type": "float",
+ "required": false,
+ "description": "if not specified, the value is -$0.51, capturing saving from HVAC operation. Recommended setting at 0"
+ },
+ "macrs_bonus_fraction": {
+ "type": "float",
+ "required": false,
+ "description": "Percentage of macrs benefits for GHP. Value between 0 and 1"
+ },
+ "macrs_itc_reduction": {
+ "type": "float",
+ "required": false,
+ "description": "Percentage of macrs benefits for GHP. Value between 0 and 1"
+ },
+ "federal_itc_fraction": {
+ "type": "float",
+ "required": false,
+ "description": "Percentage of ITC benefits for GHP. Value between 0 and 1"
+ }
+ },
+ "ExistingBoiler": {
+ "fuel_cost_per_mmbtu": {
+ "type": "float",
+ "required": true,
+ "description": "to calculate BAU cost, and required for formatting in GHP scenario"
+ }
+ }
+}
diff --git a/lib/urbanopt/reopt/reopt_schema/reopt_input_schema.json b/lib/urbanopt/reopt/reopt_schema/reopt_input_schema.json
index 149b39b2..b8552273 100644
--- a/lib/urbanopt/reopt/reopt_schema/reopt_input_schema.json
+++ b/lib/urbanopt/reopt/reopt_schema/reopt_input_schema.json
@@ -101,7 +101,7 @@
"min": 0,
"max": 1000000.0,
"type": "number",
- "description": "Value placed on unmet site load during grid outages. Units are US dollars per unmet kilowatt-hour. The value of lost load (VoLL) is used to determine the avoided outage costs by multiplying VoLL [$/kWh] with the average number of hours that the critical load can be met by the energy system (determined by simulating outages occuring at every hour of the year), and multiplying by the mean critical load."
+ "description": "Value placed on unmet site load during grid outages. Units are US dollars per unmet kilowatt-hour. The value of lost load (VoLL) is used to determine the avoided outage costs by multiplying VoLL [$/kWh] with the average number of hours that the critical load can be met by the energy system (determined by simulating outages occurring at every hour of the year), and multiplying by the mean critical load."
},
"analysis_years": {
"default": 20,
@@ -711,7 +711,7 @@
"min": 0,
"max": 1,
"type": "number",
- "description": "Fraction of upfront project costs to depreciate under MACRS in year one in addtion to scheduled depreciation"
+ "description": "Fraction of upfront project costs to depreciate under MACRS in year one in addition to scheduled depreciation"
},
"inverter_replacement_year": {
"default": 10,
diff --git a/lib/urbanopt/reopt/reopt_schema/reopt_output_schema.json b/lib/urbanopt/reopt/reopt_schema/reopt_output_schema.json
index 4d3ea1b2..66564c55 100644
--- a/lib/urbanopt/reopt/reopt_schema/reopt_output_schema.json
+++ b/lib/urbanopt/reopt/reopt_schema/reopt_output_schema.json
@@ -103,6 +103,46 @@
}
}
},
+ "Financial_GHP": {
+ "type": "object",
+ "properties": {
+ "lcc": {
+ "type": "number",
+ "description": "Optimal lifecycle cost for GHP",
+ "units": "dollars"
+ },
+ "net_present_cost": {
+ "type": "number",
+ "description": "",
+ "units": "dollars"
+ },
+ "lifecycle_om_costs_before_tax_bau": {
+ "type": "number",
+ "description": "",
+ "units": "dollars"
+ },
+ "lifecycle_om_costs_after_tax": {
+ "type": "number",
+ "description": "",
+ "units": "$"
+ },
+ "year_one_om_costs_before_tax": {
+ "type": "number",
+ "description": "",
+ "units": "$"
+ },
+ "lifecycle_generation_tech_capital_costs": {
+ "type": "number",
+ "description": "",
+ "units": "$"
+ },
+ "lifecycle_offgrid_other_annual_costs_after_tax": {
+ "type": "number",
+ "description": "",
+ "units": "$"
+ }
+ }
+ },
"PV": {
"type": "object",
"properties": {
diff --git a/lib/urbanopt/reopt/scenario_report_adapter.rb b/lib/urbanopt/reopt/scenario_report_adapter.rb
index bea02820..57b212b7 100755
--- a/lib/urbanopt/reopt/scenario_report_adapter.rb
+++ b/lib/urbanopt/reopt/scenario_report_adapter.rb
@@ -43,9 +43,9 @@ def reopt_json_from_scenario_report(scenario_report, reopt_assumptions_json = ni
else
@@logger.info('Using default REopt assumptions')
reopt_inputs = {
- Settings:{},
+ Settings: {},
Site: {},
- Financial:{},
+ Financial: {},
ElectricTariff: {
monthly_demand_rates: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
monthly_energy_rates: [0.13, 0.13, 0.13, 0.13, 0.13, 0.13, 0.13, 0.13, 0.13, 0.13, 0.13, 0.13]
@@ -277,12 +277,8 @@ def update_scenario_report(scenario_report, reopt_output, timeseries_csv_path =
wind = reopt_output['outputs']['Wind']
# find size_class
size_class = nil
- if reopt_output['inputs']['Wind']['size_class']
- size_class = reopt_output['inputs']['Wind']['size_class']
- else
- size_class = 'commercial' # default
- end
- scenario_report.distributed_generation.add_tech 'wind', URBANopt::Reporting::DefaultReports::Wind.new({ size_kw: (wind['size_kw'] || 0), size_class: size_class, average_yearly_energy_produced_kwh: (wind['average_yearly_energy_produced_kwh'] || 0) })
+ size_class = reopt_output['inputs']['Wind']['size_class'] || 'commercial'
+ scenario_report.distributed_generation.add_tech 'wind', URBANopt::Reporting::DefaultReports::Wind.new({ size_kw: (wind['size_kw'] || 0), size_class:, average_yearly_energy_produced_kwh: (wind['average_yearly_energy_produced_kwh'] || 0) })
end
if reopt_output['outputs'].key?('Generator')
@@ -491,7 +487,7 @@ def modrow(data, idx) # :nodoc:
data[$storage_to_grid_col] = $storage_to_grid[idx] || 0 if defined?(storage)
data[$storage_soc_col] = $storage_soc[idx] || 0 if defined?(storage)
data[$generator_total_col] = $generator_total[idx] || 0 if defined?(generator)
- data[$generator_to_battery_col] = $generator_to_battery[idx] || 0 if (defined?(generator) && defined?(storage))
+ data[$generator_to_battery_col] = $generator_to_battery[idx] || 0 if defined?(generator) && defined?(storage)
data[$generator_to_load_col] = $generator_to_load[idx] || 0 if defined?(generator)
data[$generator_to_grid_col] = $generator_to_grid[idx] || 0 if defined?(generator)
data[$pv_total_col] = $pv_total[idx] || 0
@@ -499,7 +495,7 @@ def modrow(data, idx) # :nodoc:
data[$pv_to_load_col] = $pv_to_load[idx] || 0
data[$pv_to_grid_col] = $pv_to_grid[idx] || 0
data[$wind_total_col] = $wind_total[idx] || 0 if defined?(wind)
- data[$wind_to_battery_col] = $wind_to_battery[idx] || 0 if (defined?(wind) && defined?(storage))
+ data[$wind_to_battery_col] = $wind_to_battery[idx] || 0 if defined?(wind) && defined?(storage)
data[$wind_to_load_col] = $wind_to_load[idx] || 0 if defined?(wind)
data[$wind_to_grid_col] = $wind_to_grid[idx] || 0 if defined?(wind)
return data
diff --git a/lib/urbanopt/reopt/utilities.rb b/lib/urbanopt/reopt/utilities.rb
index ec7611c6..d193c1cd 100644
--- a/lib/urbanopt/reopt/utilities.rb
+++ b/lib/urbanopt/reopt/utilities.rb
@@ -36,7 +36,7 @@ def convert_powerflow_resolution(timeseries_kw, original_res, destination_res)
current_origin_idx = 0 # current integer index of the origin timeseries
(0..(8760 * destination_res - 1)).each do |ts|
next_stopping_ts = current_origin_ts + stepping_interval # stop at the next destination interval
- total_power = [] # create to store wieghted origin timestep values to average
+ total_power = [] # create to store weighted origin timestep values to average
while current_origin_ts != next_stopping_ts
next_origin_ts_int = Integer(current_origin_ts) + 1
# Calc next stopping point that will being you to the next origin or destination time step
@@ -61,7 +61,7 @@ def convert_powerflow_resolution(timeseries_kw, original_res, destination_res)
# Timesteps will be expanded, i.e. 8760 -> 35040
# This algorithm works by stepping along the destination timeseries. Steps are made to the next
- # destination or origin breakpoint, and at each step the propotional amount of the origin stepped
+ # destination or origin breakpoint, and at each step the proportional amount of the origin stepped
# is added to the destination. For example, in in EX 1 below 4 steps are made each with adding the full amount of
# the origin (1, 1, 2 and 2) since each in the destination overlaps perfectly with 2 origin
# timesteps. In EX 2, the origin overlaps with the first 2 destination timesteps but the third
diff --git a/lib/urbanopt/reopt/version.rb b/lib/urbanopt/reopt/version.rb
index 06057fd6..a226ccfe 100755
--- a/lib/urbanopt/reopt/version.rb
+++ b/lib/urbanopt/reopt/version.rb
@@ -5,6 +5,6 @@
module URBANopt # :nodoc:
module REopt # :nodoc:
- VERSION = '0.12.0'.freeze
+ VERSION = '1.0.0'.freeze
end
end
diff --git a/spec/cli_openssl_test.rb b/spec/cli_openssl_test.rb
deleted file mode 100755
index 833e0271..00000000
--- a/spec/cli_openssl_test.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-# *********************************************************************************
-# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC.
-# See also https://github.com/urbanopt/urbanopt-reopt-gem/blob/develop/LICENSE.md
-# *********************************************************************************
-
-require 'urbanopt/reopt'
-
-api = URBANopt::REopt::REoptLiteAPI.new
-api.check_connection
diff --git a/spec/files/_loop_order.json b/spec/files/_loop_order.json
new file mode 100644
index 00000000..8b4395d4
--- /dev/null
+++ b/spec/files/_loop_order.json
@@ -0,0 +1,11 @@
+[
+ {
+ "list_bldg_ids_in_group": [
+ "4",
+ "5"
+ ],
+ "list_ghe_ids_in_group": [
+ "7932a208-dcb6-4d23-a46f-288896eaa1bc"
+ ]
+ }
+]
diff --git a/spec/files/modelica_4/modelica_4.Districts.DistrictEnergySystem_results/modelica_4.Districts.DistrictEnergySystem_result.csv b/spec/files/modelica_4/modelica_4.Districts.DistrictEnergySystem_results/modelica_4.Districts.DistrictEnergySystem_result.csv
new file mode 100644
index 00000000..32e7fe43
--- /dev/null
+++ b/spec/files/modelica_4/modelica_4.Districts.DistrictEnergySystem_results/modelica_4.Districts.DistrictEnergySystem_result.csv
@@ -0,0 +1,8761 @@
+datetime,Time [s],electrical_power_consumed,heating_electric_power_4,pump_power_4,ets_pump_power_4,heating_electric_power_5,pump_power_5,ets_pump_power_5,TimeSerLoa_b6603ffb.bui.addPFan.y,TimeSerLoa_9fdd6cda.bui.addPFan.y,TimeSerLoa_9fdd6cda.PPumETS.1,TimeSerLoa_b6603ffb.PPumETS.1,heating_system_capacity_4,heating_system_capacity_5,cooling_system_capacity_4,cooling_system_capacity_5
+1/1/2023 0:00,0,0,5.7200108,225.43568,50.506348,44379.12,807.0781,669.07526,0.059889726,0.04642904,50.506348,669.07526,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 1:00,3600,3597.512,189.82222,405.90216,50.506348,40889.383,676.3772,485.15964,58.345257,13.266928,50.506348,485.15964,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 2:00,7200,3597.512,377.7328,410.03784,50.506348,158.13322,197.85272,17.661684,33.35086,19.098415,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 3:00,10800,3597.512,327.9547,408.43253,50.506348,157.34857,197.71942,17.661684,33.107975,16.66597,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 4:00,14400,3597.512,346.3013,409.77255,50.506348,156.23788,197.73026,17.661684,33.127678,18.680784,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 5:00,18000,3597.512,335.09045,409.61743,50.506348,1282.0165,251.81717,46.26926,109.933914,18.439533,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 6:00,21600,3597.512,361.76434,411.11655,50.506348,1635.4469,295.45166,46.26926,430.3091,20.862598,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 7:00,25200,3597.512,354.74127,410.17078,50.506348,40628.465,697.5205,443.82877,483.14075,19.310041,50.506348,443.82877,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 8:00,28800,3597.512,428.58185,412.56366,50.506348,39997.49,1871.6868,392.211,121.401634,23.403194,50.506348,392.211,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 9:00,32400,3597.512,407.42163,410.59378,50.506348,40048.703,1382.6626,392.56323,82.55647,19.994179,50.506348,392.56323,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 10:00,36000,3597.512,395.4457,408.79733,50.506348,40242.258,1155.8293,430.92157,1.216863,17.199116,50.506348,430.92157,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 11:00,39600,3597.512,330.15253,404.37436,50.506348,49981.688,1384.0743,730.6526,2.0395472,11.452589,50.506348,730.6526,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 12:00,43200,3597.512,305.63687,401.61346,50.506348,49599.344,1266.4843,663.35657,0.55347973,8.587783,50.506348,663.35657,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 13:00,46800,3597.512,238.88673,397.35754,50.506348,47289.004,1981.9718,570.1697,8.252217,5.1059704,50.506348,570.1697,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 14:00,50400,3597.512,163.23123,391.34003,50.506348,47026.44,1981.3632,568.9695,9.114597,1.4809386,50.506348,568.9695,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 15:00,54000,3597.512,150.08427,389.8777,50.506348,44516.914,1422.8096,491.81442,1.2365474,0.946544,50.506348,491.81442,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 16:00,57600,3597.512,202.95293,392.29984,50.506348,44535.84,1227.341,532.34125,0.8013835,1.9269743,50.506348,532.34125,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 17:00,61200,3597.512,286.27637,397.24124,50.506348,44565.242,1100.5558,487.95993,0.6390668,5.0253687,50.506348,487.95993,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 18:00,64800,3597.512,324.17365,400.6663,50.506348,47256.285,1136.126,570.20056,0.5470258,7.719431,50.506348,570.20056,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 19:00,68400,3597.512,381.50604,405.074,50.506348,50651.375,1938.7247,652.4774,7.864251,12.262253,50.506348,652.4774,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 20:00,72000,3597.512,376.89072,405.089,50.506348,50490.812,1988.885,671.9645,68.15223,12.279987,50.506348,671.9645,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 21:00,75600,3597.512,431.36627,408.14368,50.506348,47037.844,1903.8124,564.9739,142.72112,16.251747,50.506348,564.9739,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 22:00,79200,3597.512,406.11935,407.6028,50.506348,50267.67,1957.7043,672.94763,3.1935532,15.49475,50.506348,672.94763,130901.3,73179.4,-15784.6,-201976.5
+1/1/2023 23:00,82800,3597.512,533.0647,413.5423,50.506348,47756.727,1746.8871,608.3703,8.068188,25.240236,50.506348,608.3703,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 0:00,86400,3597.512,542.5035,415.29327,50.506348,42862.918,1497.5337,454.81918,46.48195,28.781769,50.506348,454.81918,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 1:00,90000,3597.512,492.16605,412.722,50.506348,42288.926,1367.4365,412.85458,17.212215,23.693716,50.506348,412.85458,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 2:00,93600,3597.512,432.01602,410.47195,50.506348,165.2184,917.9335,17.661684,10.564278,19.795452,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 3:00,97200,3597.512,446.1548,412.5585,50.506348,163.0623,881.2018,17.661684,9.334332,23.393747,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 4:00,100800,3597.512,386.98898,410.48416,50.506348,160.93039,852.9485,17.661684,8.960824,19.815313,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 5:00,104400,3597.512,409.66727,411.7858,50.506348,1939.7122,924.6021,46.26926,224.08041,22.01215,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 6:00,108000,3597.512,425.66995,413.29556,50.506348,2384.1853,953.27277,47.12194,814.258,24.767742,50.506348,47.12194,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 7:00,111600,3597.512,9133.86,718.3432,208.05428,43293.223,1214.2212,442.731,862.5956,4136.8496,208.05428,442.731,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 8:00,115200,3597.512,7267.9614,690.0458,132.05989,52731.297,2103.8186,769.6742,341.86917,8403.573,132.05989,769.6742,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 9:00,118800,3597.512,5268.1826,594.6372,58.947697,51619.754,1671.5464,722.2375,57.870934,6314.398,58.947697,722.2375,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 10:00,122400,3597.512,4024.2952,562.7285,53.59449,49796.164,2077.0498,646.8775,14.296471,4044.5198,53.59449,646.8775,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 11:00,126000,3597.512,3126.243,536.87476,53.554516,48162.605,1600.5319,603.66254,5.790744,2285.1216,53.554516,603.66254,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 12:00,129600,3597.512,2382.0078,508.6899,54.569904,51128.453,1229.7032,563.04706,2.18853,1134.4027,54.569904,563.04706,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 13:00,133200,3597.512,2156.3752,488.35962,55.509777,48033.37,2024.073,558.8388,127.3013,642.82513,55.509777,558.8388,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 14:00,136800,3597.512,1748.9341,469.2708,55.05653,46290.395,1975.8755,520.9119,97.73177,349.6333,55.05653,520.9119,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 15:00,140400,3597.512,1385.9794,451.0095,53.198856,45001.285,1560.9343,481.48236,1.9035163,181.45598,53.198856,481.48236,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 16:00,144000,3597.512,1249.2094,441.3101,53.16387,45230.02,1397.3402,525.36395,1.2437007,115.84681,53.16387,525.36395,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 17:00,147600,3597.512,1221.5103,437.51523,54.022457,45198.113,1258.35,480.3254,1.0301806,91.40597,54.022457,480.3254,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 18:00,151200,3597.512,1421.0319,444.83087,52.472195,50057.29,1392.2935,1298.8541,0.010102318,141.81161,52.472195,1298.8541,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 19:00,154800,3597.512,2150.5127,471.27237,52.432995,51594.19,1996.2861,666.21375,91.624985,412.16083,52.432995,666.21375,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 20:00,158400,3597.512,247.82356,392.1205,1.1909205,52158.297,2109.2346,716.0574,410.84604,132.56989,1.1909205,716.0574,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 21:00,162000,3597.512,264.31674,383.5587,1.4270169,50031.348,2022.6741,655.04663,256.97052,85.03117,1.4270169,655.04663,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 22:00,165600,3597.512,229.9009,381.67654,0.9656582,51925.26,2008.2802,715.06433,12.133766,78.72759,0.9656582,715.06433,130901.3,73179.4,-15784.6,-201976.5
+1/2/2023 23:00,169200,3597.512,6.245359,380.49316,0.10372095,49347.47,1511.3436,656.48865,1.0598993,77.349815,0.10372095,656.48865,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 0:00,172800,3597.512,6.212057,380.41818,0.10372095,44217.27,1341.055,486.64917,10.984628,77.03096,0.10372095,486.64917,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 1:00,176400,3597.512,6.211773,380.40067,0.10372095,42577.508,1213.7042,411.44418,7.2789373,76.95659,0.10372095,411.44418,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 2:00,180000,3597.512,6.177414,380.39655,0.10372095,166.36775,778.79724,17.661684,4.332435,76.939125,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 3:00,183600,3597.512,12.873259,77.86469,50.506348,164.30359,748.91516,17.661684,3.6184244,0.001100756,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 4:00,187200,3597.512,63.90446,287.10986,50.506348,162.28436,725.1381,17.661684,3.3504941,0.08716263,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 5:00,190800,3597.512,145.54477,388.85797,50.506348,2540.9238,828.1836,47.823074,358.26556,0.66706765,50.506348,47.823074,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 6:00,194400,3597.512,211.46413,392.71698,50.506348,2886.3062,1522.1459,1100.9548,1169.6045,2.1449907,50.506348,1100.9548,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 7:00,198000,3597.512,2682.794,478.75598,50.506348,42829.87,1752.0077,429.55038,1258.251,559.9489,50.506348,429.55038,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 8:00,201600,3597.512,4172.123,530.84125,53.003246,52958.42,2129.5515,771.09576,628.0512,2007.618,53.003246,771.09576,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 9:00,205200,3597.512,2915.8125,520.40576,53.39179,51775.098,1688.6876,722.3389,137.56543,1550.036,53.39179,722.3389,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 10:00,208800,3597.512,2322.7852,498.51346,53.60543,50121.44,2106.5315,647.7965,50.99544,897.4317,53.60543,647.7965,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 11:00,212400,3597.512,1981.893,479.96695,53.56194,48759.08,1644.4237,607.0061,59.460785,528.7273,53.56194,607.0061,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 12:00,216000,3597.512,1652.3643,463.1184,54.51634,49623.047,2037.5674,592.07544,27.83862,283.02148,54.51634,592.07544,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 13:00,219600,3597.512,1569.448,454.70242,55.48269,47855.703,2094.2827,561.8613,376.78726,192.90019,55.48269,561.8613,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 14:00,223200,3597.512,1379.7372,446.6361,55.104126,45994.887,2095.1353,525.3208,698.0734,136.40987,55.104126,525.3208,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 15:00,226800,3597.512,1156.2853,436.59274,53.218258,44848.86,1844.4108,530.983,28.204689,90.83864,53.218258,530.983,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 16:00,230400,3597.512,1149.0321,434.46176,53.18731,45474.043,1402.6597,529.94543,4.7353816,81.186005,53.18731,529.94543,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 17:00,234000,3597.512,1208.3702,436.8115,54.08867,46823.887,1382.4589,501.8003,12.539616,87.75875,54.08867,501.8003,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 18:00,237600,3597.512,1480.6326,446.05222,52.44759,48048.47,2015.3673,560.2523,72.012695,150.24704,52.44759,560.2523,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 19:00,241200,3597.512,1895.339,463.81345,52.432693,51823.383,2277.6033,710.3653,824.7386,314.73615,52.432693,710.3653,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 20:00,244800,3597.512,246.59174,385.13684,1.2038951,51940.484,2323.7773,732.6348,1149.9137,93.53976,1.2038951,732.6348,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 21:00,248400,3597.512,263.30527,376.86682,1.4472146,49658.484,2253.3218,661.83136,1165.2212,58.18343,1.4472146,661.83136,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 22:00,252000,3597.512,228.86668,374.84097,0.9777005,51549.25,2177.249,723.2033,89.33449,52.955124,0.9777005,723.2033,130901.3,73179.4,-15784.6,-201976.5
+1/3/2023 23:00,255600,3597.512,6.272317,373.58997,0.10372095,49494.992,1591.4874,662.5204,2.187625,51.74047,0.10372095,662.5204,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 0:00,259200,3597.512,12.12387,71.929695,50.506348,44607.137,1368.7894,488.08182,45.163548,0.000674765,50.506348,488.08182,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 1:00,262800,3597.512,67.191696,262.6768,50.506348,43087.98,1269.5128,454.6826,29.531214,0.0693174,50.506348,454.6826,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 2:00,266400,3597.512,137.14708,387.4746,50.506348,165.97601,764.9331,17.661684,3.9294355,0.38892686,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 3:00,270000,3597.512,231.03409,392.8728,50.506348,163.81544,729.248,17.661684,2.2088666,2.2300863,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 4:00,273600,3597.512,276.90543,397.70374,50.506348,161.59563,702.6829,17.661684,1.6603944,5.350258,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 5:00,277200,3597.512,367.47708,405.66852,50.506348,3710.858,852.7804,68.72199,634.1048,12.978313,50.506348,68.72199,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 6:00,280800,3597.512,383.7458,408.5842,50.506348,3863.9978,1625.5055,1096.5798,1989.2172,16.886267,50.506348,1096.5798,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 7:00,284400,3597.512,4451.0195,517.97327,54.86286,43726.113,1848.4822,455.21564,2303.7266,1411.0203,54.86286,455.21564,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 8:00,288000,3597.512,5450.9604,569.6044,63.61447,54080.363,2097.3767,767.0514,1556.7102,3797.6067,63.61447,767.0514,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 9:00,291600,3597.512,3788.6643,546.9369,53.374603,52677.125,1709.4418,717.4175,684.22906,2897.8977,53.374603,717.4175,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 10:00,295200,3597.512,2626.7817,519.1276,53.60136,51451.996,1649.0653,631.1512,232.9855,1495.5613,53.60136,631.1512,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 11:00,298800,3597.512,2054.1335,487.78693,53.530273,49335.2,1524.5411,604.37427,147.94194,669.6528,53.530273,604.37427,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 12:00,302400,3597.512,1735.2373,466.66217,54.48252,50148.156,1444.2584,642.06384,63.487854,324.30942,54.48252,642.06384,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 13:00,306000,3597.512,1534.7745,453.81158,55.508476,48279.906,2079.2046,556.1918,334.27023,185.3976,55.508476,556.1918,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 14:00,309600,3597.512,1281.8047,441.32864,55.07361,46368.848,2041.7582,523.3178,340.22803,105.402794,55.07361,523.3178,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 15:00,313200,3597.512,1062.1049,430.5508,53.202145,45359.58,1942.6315,529.33746,7.2237306,65.161156,53.202145,529.33746,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 16:00,316800,3597.512,1057.7662,428.5133,53.171936,45761.203,1395.3325,526.6329,13.107542,57.912277,53.171936,526.6329,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 17:00,320400,3597.512,1176.436,433.35303,54.072216,47048.785,1487.8354,506.2423,31.73045,72.73131,54.072216,506.2423,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 18:00,324000,3597.512,1592.001,448.60852,52.439,48577.414,2039.9987,603.3863,20.75869,168.76381,52.439,603.3863,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 19:00,327600,3597.512,2054.4434,468.14227,52.40965,51921.28,2240.7305,691.3307,619.6621,369.43073,52.40965,691.3307,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 20:00,331200,3597.512,247.5805,388.0707,1.1938181,52084.22,2303.846,725.1865,986.68726,108.75754,1.1938181,725.1865,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 21:00,334800,3597.512,264.3578,379.6473,1.4352105,49835.6,2234.415,657.6237,984.30743,68.470276,1.4352105,657.6237,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 22:00,338400,3597.512,229.70776,377.66974,0.9685461,51864.453,2208.2654,763.77844,76.303535,62.75616,0.9685461,763.77844,130901.3,73179.4,-15784.6,-201976.5
+1/4/2023 23:00,342000,3597.512,31.501696,139.5615,50.506348,49877.89,1596.738,659.82056,6.893043,0.011752378,50.506348,659.82056,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 0:00,345600,3597.512,76.246826,291.4021,50.506348,45006.855,1383.1814,488.9678,85.77891,0.09054004,50.506348,488.9678,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 1:00,349200,3597.512,135.27861,387.16147,50.506348,43294.21,1279.3273,453.4674,49.896633,0.33963305,50.506348,453.4674,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 2:00,352800,3597.512,202.76314,390.5407,50.506348,167.35413,771.0673,17.661684,6.2214894,1.1680022,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 3:00,356400,3597.512,233.43205,393.68735,50.506348,165.15764,734.9029,17.661684,3.521197,2.7051938,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 4:00,360000,3597.512,276.70236,398.0834,50.506348,162.9178,708.4553,17.661684,2.7764375,5.6257553,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 5:00,363600,3597.512,306.79587,401.93033,50.506348,3859.7673,860.1768,72.08221,668.23364,8.890917,50.506348,72.08221,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 6:00,367200,3597.512,337.27777,404.59085,50.506348,3758.063,1643.8784,1096.6752,1981.044,11.699384,50.506348,1096.6752,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 7:00,370800,3597.512,3931.589,504.13223,50.506348,43364.953,1833.5547,439.01102,1911.387,1120.6265,50.506348,439.01102,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 8:00,374400,3597.512,4459.537,542.9715,52.849693,53537.043,2148.043,764.9592,963.7089,2677.58,52.849693,764.9592,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 9:00,378000,3597.512,3320.7012,531.3927,53.441647,52470.133,1719.9363,716.545,393.5435,2013.012,53.441647,716.545,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 10:00,381600,3597.512,2531.698,508.7983,53.609726,50643.543,2129.512,645.25867,137.21042,1164.6375,53.609726,645.25867,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 11:00,385200,3597.512,1914.7029,479.7731,53.549843,49153.41,1656.4286,606.3664,78.47017,525.71155,53.549843,606.3664,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 12:00,388800,3597.512,1624.1412,460.34833,54.47842,50178.777,1523.2433,646.739,26.278027,254.15794,54.47842,646.739,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 13:00,392400,3597.512,1477.862,450.02185,55.47692,48344.61,2066.3367,556.2754,306.9155,156.85263,55.47692,556.2754,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 14:00,396000,3597.512,1214.7539,437.67624,55.09365,46354.85,2087.2554,525.2308,770.8489,87.10615,55.09365,525.2308,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 15:00,399600,3597.512,970.2702,425.71194,53.20955,45265.69,1963.3563,535.3,30.149988,48.663445,53.20955,535.3,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 16:00,403200,3597.512,905.6269,421.0014,53.180008,45667.273,1950.2084,526.23596,10.995798,35.749756,53.180008,526.23596,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 17:00,406800,3597.512,964.6602,421.5761,54.03318,45901.234,1820.5155,528.30273,9.568839,35.066,54.03318,528.30273,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 18:00,410400,3597.512,1193.444,432.43704,52.46122,48584.867,1970.5673,552.24725,8.480049,75.60273,52.46122,552.24725,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 19:00,414000,3597.512,1683.8429,452.98083,52.42199,51608.707,2182.9048,678.03815,317.2657,204.2573,52.42199,678.03815,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 20:00,417600,3597.512,248.45563,378.48538,1.1923383,52128.543,2292.5469,718.20715,964.4205,64.95207,1.1923383,718.20715,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 21:00,421200,3597.512,265.38956,370.65958,1.4349071,49956.703,2205.486,654.84656,703.1179,39.33454,1.4349071,654.84656,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 22:00,424800,3597.512,230.53677,368.5442,0.9675977,51941.01,2153.1777,713.97314,52.229218,35.148174,0.9675977,713.97314,130901.3,73179.4,-15784.6,-201976.5
+1/5/2023 23:00,428400,3597.512,16.986977,87.29086,50.506348,49891.16,1594.5284,657.8436,2.1701167,0.001991222,50.506348,657.8436,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 0:00,432000,3597.512,63.557285,251.70279,50.506348,44977.375,1377.4896,488.9658,40.406548,0.062044907,50.506348,488.9658,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 1:00,435600,3597.512,98.15025,362.39783,50.506348,43322.523,1274.6787,452.7023,23.471458,0.15648647,50.506348,452.7023,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 2:00,439200,3597.512,164.51616,388.66873,50.506348,167.8549,774.5345,17.661684,3.1616318,0.622635,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 3:00,442800,3597.512,200.50662,391.37238,50.506348,165.68922,739.44385,17.661684,1.7937356,1.4947011,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 4:00,446400,3597.512,237.08139,394.52325,50.506348,163.43321,712.99066,17.661684,1.2745892,3.2366507,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 5:00,450000,3597.512,361.71478,403.8641,50.506348,3188.3027,843.51154,56.36794,503.38477,10.88409,50.506348,56.36794,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 6:00,453600,3597.512,367.49658,406.72913,50.506348,3175.2458,1639.9938,1099.02,1475.2319,14.32192,50.506348,1099.02,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 7:00,457200,3597.512,3708.0522,500.57953,50.506348,42949.45,1812.6604,430.52698,1244.8915,1025.26,50.506348,430.52698,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 8:00,460800,3597.512,4636.5596,543.6352,52.83465,53611.8,2070.0981,762.59375,717.3269,2719.8457,52.83465,762.59375,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 9:00,464400,3597.512,3342.7769,532.5156,53.43447,52469.035,1671.9531,713.59955,280.39523,2067.667,53.43447,713.59955,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 10:00,468000,3597.512,2339.7703,504.1661,53.627712,51352.242,1662.2604,632.2471,83.7127,1037.3894,53.627712,632.2471,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 11:00,471600,3597.512,1838.5721,474.91547,53.53816,49109.574,1491.3184,603.9607,24.326328,449.24994,53.53816,603.9607,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 12:00,475200,3597.512,1525.4594,455.70895,54.51708,50335.24,2034.6167,598.57935,23.559544,209.79277,54.51708,598.57935,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 13:00,478800,3597.512,1347.3438,486.66998,55.488316,48188.938,2112.0442,559.51117,658.8473,110.9074,55.488316,559.51117,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 14:00,482400,3597.512,1068.3558,494.127,55.038258,46433.75,2083.4705,528.34436,702.55115,54.19417,55.038258,528.34436,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 15:00,486000,3597.512,843.3791,480.37234,53.18108,45208.797,1927.1051,488.86536,39.623245,29.351027,53.18108,488.86536,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 16:00,489600,3597.512,783.5606,469.58685,53.18074,45675.535,1433.3525,529.35614,1.1741692,20.653458,53.18074,529.35614,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 17:00,493200,3597.512,845.4603,462.62027,54.035618,45781.934,1356.0642,526.5696,1.1616076,20.821886,54.035618,526.5696,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 18:00,496800,3597.512,1006.6482,467.47726,52.471535,50816.03,970.8594,506.6894,0.22666088,45.29053,52.471535,506.6894,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 19:00,500400,3597.512,1468.9161,484.1095,52.413414,53003.81,2103.0037,701.0181,9.908322,133.08498,52.413414,701.0181,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 20:00,504000,3597.512,250.196,410.81558,1.1760247,52885.582,2226.5125,716.10925,641.14044,44.648106,1.1760247,716.10925,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 21:00,507600,3597.512,267.2426,401.7262,1.4153775,50271.645,2150.487,651.4812,665.93445,26.256464,1.4153775,651.4812,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 22:00,511200,3597.512,232.0574,398.0519,0.9535528,52148.445,2086.758,710.34247,39.353218,22.876516,0.9535528,710.34247,130901.3,73179.4,-15784.6,-201976.5
+1/6/2023 23:00,514800,3597.512,6.305596,395.4744,0.10372095,50008.684,1572.8961,656.9128,1.7662902,21.945282,0.10372095,656.9128,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 0:00,518400,3597.512,119.38087,84.40723,50.506348,44950.062,1355.844,488.8457,21.695599,0.001951764,50.506348,488.8457,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 1:00,522000,3597.512,15.929688,115.4803,50.506348,43133.824,1213.0305,409.4477,10.6907015,0.003424778,50.506348,409.4477,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 2:00,525600,3597.512,30.090893,167.16042,50.506348,168.25609,776.50653,17.661684,6.386814,0.012519619,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 3:00,529200,3597.512,60.516567,287.79736,50.506348,166.04587,745.0974,17.661684,5.476103,0.06726466,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 4:00,532800,3597.512,103.87349,416.48575,50.506348,163.83441,720.5034,17.661684,5.1714716,0.24979621,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 5:00,536400,3597.512,166.41608,419.1592,50.506348,2817.546,827.97095,50.806545,419.51886,0.91211754,50.506348,50.806545,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 6:00,540000,3597.512,211.05788,421.6065,50.506348,3135.9058,862.3991,61.070663,1386.4202,2.1678295,50.506348,61.070663,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 7:00,543600,3597.512,210.14133,421.74927,50.506348,45014.75,1110.3132,416.42252,1473.2102,2.537231,50.506348,416.42252,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 8:00,547200,3597.512,226.5912,421.6425,50.506348,42241.688,1874.3281,426.8014,526.2362,2.757398,50.506348,426.8014,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 9:00,550800,3597.512,287.8708,424.53604,50.506348,42156.293,1426.194,426.18634,169.96423,4.931127,50.506348,426.18634,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 10:00,554400,3597.512,285.84567,424.8092,50.506348,52546.652,2196.8435,720.90424,110.32917,5.4098964,50.506348,720.90424,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 11:00,558000,3597.512,317.17917,425.7502,50.506348,50792.484,1705.5491,655.3978,163.0909,6.413208,50.506348,655.3978,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 12:00,561600,3597.512,300.011,424.71375,50.506348,52045.7,1609.9686,702.6629,103.30045,5.890418,50.506348,702.6629,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 13:00,565200,3597.512,266.49454,422.4916,50.506348,52782.2,2160.815,715.4404,32.41094,4.566642,50.506348,715.4404,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 14:00,568800,3597.512,241.86092,420.17383,50.506348,50074.78,2108.1033,648.7733,70.09555,3.263204,50.506348,648.7733,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 15:00,572400,3597.512,260.8341,420.6091,50.506348,48865.598,1825.7134,609.919,16.014063,3.7557988,50.506348,609.919,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 16:00,576000,3597.512,295.15942,422.6557,50.506348,49849.777,1844.4509,597.1941,59.452408,5.3076544,50.506348,597.1941,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 17:00,579600,3597.512,399.70947,427.60187,50.506348,48031.996,1919.5718,564.4598,79.631996,9.825677,50.506348,564.4598,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 18:00,583200,3597.512,556.5191,436.67914,50.506348,49494.805,1978.6334,606.24036,111.12697,22.762339,50.506348,606.24036,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 19:00,586800,3597.512,565.2937,438.2585,50.506348,52454.832,2175.8083,686.1017,119.20899,26.217197,50.506348,686.1017,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 20:00,590400,3597.512,557.3951,438.15512,50.506348,51774.746,2297.3518,689.87036,1025.7217,26.493973,50.506348,689.87036,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 21:00,594000,3597.512,580.0425,439.5646,50.506348,50984.3,2103.1685,712.2211,308.0784,29.92153,50.506348,712.2211,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 22:00,597600,3597.512,601.727,440.70502,50.506348,52400.508,2082.4353,709.7195,280.82065,33.005333,50.506348,709.7195,130901.3,73179.4,-15784.6,-201976.5
+1/7/2023 23:00,601200,3597.512,705.83527,445.29718,50.506348,48538.6,2031.1637,613.4393,8.788944,45.62556,50.506348,613.4393,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 0:00,604800,3597.512,735.74243,447.22836,50.506348,46663.42,1825.2314,528.2417,47.350193,52.184814,50.506348,528.2417,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 1:00,608400,3597.512,677.7557,444.22696,50.506348,45112.293,1549.1442,488.53876,39.840122,43.70963,50.506348,488.53876,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 2:00,612000,3597.512,761.82886,448.2181,50.506348,168.74991,953.2088,17.661684,6.1237803,56.757866,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 3:00,615600,3597.512,751.2941,451.1933,50.506348,166.69643,889.8751,17.661684,3.5609162,68.28999,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 4:00,619200,3597.512,645.52374,447.49527,50.506348,164.46217,847.3915,17.661684,2.8145597,55.54384,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 5:00,622800,3597.512,744.5893,451.7512,50.506348,5073.5034,1041.6941,110.74884,1012.17584,71.8997,50.506348,110.74884,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 6:00,626400,3597.512,761.7004,453.62115,50.506348,4429.4644,1047.9486,107.45492,2713.6538,80.47794,50.506348,107.45492,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 7:00,630000,3597.512,674.39465,448.46555,50.506348,47122.562,1140.3982,420.11313,3275.098,60.652622,50.506348,420.11313,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 8:00,633600,3597.512,864.33405,453.08713,50.506348,43454.33,1856.7672,424.7153,1863.7194,79.54301,50.506348,424.7153,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 9:00,637200,3597.512,809.6212,451.3983,50.506348,42851.855,1459.6163,424.00098,669.6074,73.06717,50.506348,424.00098,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 10:00,640800,3597.512,692.6151,444.9131,50.506348,43196.523,1365.6078,422.94165,484.42032,50.285427,50.506348,422.94165,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 11:00,644400,3597.512,599.65497,439.15137,50.506348,53404.99,1607.1913,727.7451,400.16187,34.739838,50.506348,727.7451,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 12:00,648000,3597.512,534.0009,434.56854,50.506348,53282.297,1543.0796,727.7233,210.48502,25.105833,50.506348,727.7233,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 13:00,651600,3597.512,440.16385,429.7752,50.506348,51897.13,1571.569,1275.7952,53.09344,17.226038,50.506348,1275.7952,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 14:00,655200,3597.512,351.99194,423.55228,50.506348,49199.32,2058.1082,601.1403,50.531155,9.680305,50.506348,601.1403,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 15:00,658800,3597.512,334.38882,421.45056,50.506348,46247.168,1693.5034,525.65485,10.584195,7.7966824,50.506348,525.65485,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 16:00,662400,3597.512,378.47882,423.57678,50.506348,46781.047,1541.3091,528.45135,52.103245,9.9677515,50.506348,528.45135,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 17:00,666000,3597.512,454.47308,428.41458,50.506348,49121.324,1573.973,1221.8696,93.57857,15.999627,50.506348,1221.8696,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 18:00,669600,3597.512,505.80508,431.0239,50.506348,49725.477,2013.9504,602.88635,87.49299,20.159325,50.506348,602.88635,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 19:00,673200,3597.512,624.54333,436.3184,50.506348,52287.855,2188.474,709.2806,100.30298,30.541874,50.506348,709.2806,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 20:00,676800,3597.512,675.7288,439.81796,50.506348,52023.203,2177.2786,678.7911,253.60022,39.30332,50.506348,678.7911,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 21:00,680400,3597.512,592.62036,436.93195,50.506348,48263.47,2087.7913,569.3026,399.93954,32.44158,50.506348,569.3026,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 22:00,684000,3597.512,708.44543,441.4013,50.506348,51140.93,2121.0535,695.3548,13.846447,44.262817,50.506348,695.3548,130901.3,73179.4,-15784.6,-201976.5
+1/8/2023 23:00,687600,3597.512,857.9141,448.54062,50.506348,49678.81,2078.2285,608.8155,69.540504,68.665764,50.506348,608.8155,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 0:00,691200,3597.512,819.9574,447.77182,50.506348,45064.133,1634.3334,451.59497,333.6092,66.10256,50.506348,451.59497,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 1:00,694800,3597.512,830.5476,447.42938,50.506348,44309.65,1493.9296,453.6877,177.96944,65.19192,50.506348,453.6877,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 2:00,698400,3597.512,934.1633,453.15298,50.506348,164.63365,944.2122,17.661684,21.0823,89.91158,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 3:00,702000,3597.512,804.2078,451.52414,50.506348,162.50562,891.4904,17.661684,12.777333,82.8494,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 4:00,705600,3597.512,747.9275,449.47037,50.506348,160.28166,856.0282,17.661684,11.142093,74.41456,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 5:00,709200,3597.512,786.8234,451.723,50.506348,4302.966,1002.35645,82.26099,768.6848,84.5994,50.506348,82.26099,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 6:00,712800,3597.512,711.13824,448.43143,50.506348,4113.7563,1027.8516,93.42498,2285.1406,70.939445,50.506348,93.42498,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 7:00,716400,3597.512,12368.016,915.158,359.24966,45746.777,1477.3962,451.5376,2640.8408,6423.151,359.24966,451.5376,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 8:00,720000,3597.512,9196.477,802.05273,194.27867,54804.457,2069.4443,741.19006,1618.809,12030.361,194.27867,741.19006,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 9:00,723600,3597.512,6813.9517,678.8834,89.44006,53471.062,1704.595,698.6325,678.15656,9772.244,89.44006,698.6325,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 10:00,727200,3597.512,5513.8965,618.9212,57.663033,51828.043,2138.7312,636.71027,273.1433,6924.545,57.663033,636.71027,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 11:00,730800,3597.512,4510.9487,587.03815,53.501095,50504.805,1654.4515,599.76056,239.20792,4511.763,53.501095,599.76056,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 12:00,734400,3597.512,3547.8682,562.32166,54.476707,51721.77,2105.2705,638.2526,79.90759,2625.437,54.476707,638.2526,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 13:00,738000,3597.512,3325.0864,546.5012,55.43793,49002.23,2124.0837,555.7006,704.5133,1770.8546,55.43793,555.7006,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 14:00,741600,3597.512,2719.466,529.10846,55.05367,47064.555,2049.6143,523.812,390.80875,1177.608,55.05367,523.812,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 15:00,745200,3597.512,2068.6868,503.0106,53.18013,46278.81,1938.3807,528.82886,4.748786,617.63104,53.18013,528.82886,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 16:00,748800,3597.512,1945.5593,490.8175,53.148014,46794.816,1385.6432,523.18384,29.078058,420.3098,53.148014,523.18384,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 17:00,752400,3597.512,1976.3362,489.30917,54.045708,48624.69,1302.0308,499.74536,81.22331,387.57468,54.045708,499.74536,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 18:00,756000,3597.512,2487.4233,500.4752,52.415165,49707.625,2083.1794,602.1339,86.64916,589.6971,52.415165,602.1339,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 19:00,759600,3597.512,2978.8442,517.9774,52.389397,53104.223,2264.4517,702.30194,651.7603,961.23364,52.389397,702.30194,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 20:00,763200,3597.512,251.33232,426.92252,1.174048,52977.273,2202.8765,761.2025,868.5467,274.09778,1.174048,761.2025,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 21:00,766800,3597.512,268.5428,417.62997,1.4144292,50458.348,2090.3381,646.858,932.31433,185.5095,1.4144292,646.858,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 22:00,770400,3597.512,261.24487,174.98068,51.550674,52557.145,2199.2764,750.56445,70.77442,0.017142685,51.550674,750.56445,130901.3,73179.4,-15784.6,-201976.5
+1/9/2023 23:00,774000,3597.512,104.69547,404.40018,50.506348,50807.715,1605.5693,656.23285,27.21294,0.18755715,50.506348,656.23285,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 0:00,777600,3597.512,254.96928,409.83005,50.506348,46296.137,1406.6162,489.08817,234.96582,1.8453466,50.506348,489.08817,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 1:00,781200,3597.512,377.12222,416.8502,50.506348,44272.47,1300.9358,453.82797,140.9794,6.5002522,50.506348,453.82797,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 2:00,784800,3597.512,442.96133,423.56735,50.506348,169.31549,781.6126,17.661684,16.524437,13.392908,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 3:00,788400,3597.512,459.2779,427.90784,50.506348,167.18161,744.1373,17.661684,9.803255,19.690485,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 4:00,792000,3597.512,541.3045,434.01596,50.506348,164.89323,718.007,17.661684,8.418934,31.601263,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 5:00,795600,3597.512,574.2824,437.1734,50.506348,5021.935,907.52875,107.6613,987.85284,39.509884,50.506348,107.6613,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 6:00,799200,3597.512,595.181,438.13123,50.506348,5687.018,1564.6832,1104.4932,3361.683,42.27092,50.506348,1104.4932,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 7:00,802800,3597.512,8781.569,689.77045,167.1167,45654.207,1881.7162,493.45508,3880.971,3751.9375,167.1167,493.45508,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 8:00,806400,3597.512,7114.733,675.4737,110.18196,55303.004,2114.2937,748.70807,2418.3435,7434.096,110.18196,748.70807,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 9:00,810000,3597.512,4953.1987,594.0027,53.342392,53469.137,1717.3531,701.3942,924.3573,5244.4463,53.342392,701.3942,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 10:00,813600,3597.512,3227.2493,560.3215,53.57869,52432.97,1570.4725,626.118,253.13998,2649.3308,53.57869,626.118,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 11:00,817200,3597.512,2437.5862,524.75146,53.513565,50097.055,1501.3527,601.8782,101.61247,1137.061,53.513565,601.8782,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 12:00,820800,3597.512,1841.8851,491.9315,54.47402,51021.234,2046.5608,596.6304,32.888077,436.06223,54.47402,596.6304,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 13:00,824400,3597.512,1573.3241,472.2973,55.463978,48958.97,2108.9717,560.3698,480.27823,198.7933,55.463978,560.3698,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 14:00,828000,3597.512,1236.2316,455.2471,55.09623,47099.863,2069.4697,526.9246,445.35986,90.45261,55.09623,526.9246,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 15:00,831600,3597.512,947.481,440.3768,53.20082,45927.227,1926.8059,489.39532,19.74405,42.445625,53.20082,489.39532,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 16:00,835200,3597.512,866.995,434.37762,53.162712,46292.31,1374.2703,529.068,1.4022113,28.104788,53.162712,529.068,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 17:00,838800,3597.512,929.3727,435.01834,54.031483,46332.066,1319.4541,527.3007,1.564706,27.740595,54.031483,527.3007,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 18:00,842400,3597.512,1195.1624,447.6212,52.452423,49348.773,1965.3516,556.8077,6.2023244,69.68962,52.452423,556.8077,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 19:00,846000,3597.512,1642.586,466.72064,52.413128,52742.902,2181.9165,695.22076,345.5436,180.67767,52.413128,695.22076,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 20:00,849600,3597.512,250.93518,392.7059,1.1824034,52832.07,2196.1873,715.72253,523.0002,56.667694,1.1824034,715.72253,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 21:00,853200,3597.512,268.20316,384.98926,1.425243,50631.29,2066.7183,645.8864,253.26044,33.923874,1.425243,645.8864,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 22:00,856800,3597.512,232.67131,382.77054,0.9570945,52550.273,2036.1975,701.75055,12.629394,30.032976,0.9570945,701.75055,130901.3,73179.4,-15784.6,-201976.5
+1/10/2023 23:00,860400,3597.512,6.412366,381.40182,0.10372095,50367.45,1558.1144,656.94354,1.1337328,29.024904,0.10372095,656.94354,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 0:00,864000,3597.512,6.412387,381.22217,0.10372095,45172.324,1342.0264,490.83865,7.2907953,28.745113,0.10372095,490.83865,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 1:00,867600,3597.512,6.3788576,381.13754,0.10372095,43528.957,1211.2479,413.9514,4.3173084,28.666475,0.10372095,413.9514,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 2:00,871200,3597.512,6.3443284,381.0802,0.10372095,168.79286,774.06726,17.661684,2.5520663,28.644287,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 3:00,874800,3597.512,6.3416543,381.03088,0.10372095,166.48166,743.81696,17.661684,2.0327017,28.637974,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 4:00,878400,3597.512,12.969034,93.74054,50.506348,164.40863,719.733,17.661684,1.8042943,0.001539155,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 5:00,882000,3597.512,24.37885,140.54715,50.506348,1544.3538,793.2192,46.26926,129.21667,0.008535646,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 6:00,885600,3597.512,31.096453,167.57779,50.506348,160.65498,737.6237,17.661684,84.45743,0.015608485,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 7:00,889200,3597.512,2008.5328,473.7761,50.506348,41134.668,1092.8687,395.61172,58.68494,268.36496,50.506348,395.61172,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 8:00,892800,3597.512,3121.0168,521.34357,53.01125,52507.742,2185.6545,758.76495,20.382078,1085.5784,53.01125,758.76495,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 9:00,896400,3597.512,2275.2664,508.70285,53.416462,51754.098,1786.4304,715.3093,5.4305134,772.82886,53.416462,715.3093,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 10:00,900000,3597.512,1765.763,486.53558,53.651707,50782.035,1896.5824,649.04626,4.7706265,386.3097,53.651707,649.04626,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 11:00,903600,3597.512,1475.8683,468.65503,53.585117,49140.887,1525.4845,613.5206,3.1275647,192.84851,53.585117,613.5206,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 12:00,907200,3597.512,1274.9973,456.4234,54.594193,50889.758,1995.7672,600.9291,3.4853926,104.12641,54.594193,600.9291,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 13:00,910800,3597.512,1201.9443,449.54608,55.580822,48586.39,2142.0007,568.19635,980.2422,68.39237,55.580822,568.19635,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 14:00,914400,3597.512,1035.7727,441.85434,55.158768,46614.74,2123.3118,537.74884,1153.6824,44.111027,55.158768,537.74884,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 15:00,918000,3597.512,853.21716,433.9633,53.250965,45441.586,1947.4624,497.14316,93.88148,29.28044,53.250965,497.14316,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 16:00,921600,3597.512,757.92285,427.97568,53.217617,45852.88,1911.7262,495.02707,13.352053,18.432583,53.217617,495.02707,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 17:00,925200,3597.512,751.36896,425.43808,54.09174,45716.16,1941.4054,489.75296,121.679886,13.6927595,54.09174,489.75296,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 18:00,928800,3597.512,773.7744,427.57663,52.47867,48196.363,2087.5737,577.21814,550.098,19.088644,52.47867,577.21814,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 19:00,932400,3597.512,1335.1002,452.41888,52.45483,51769.31,2147.7659,698.31866,211.27893,95.99326,52.45483,698.31866,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 20:00,936000,3597.512,248.84439,385.80948,1.2008998,52477.37,2219.6787,717.9331,627.0462,39.040993,1.2008998,717.9331,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 21:00,939600,3597.512,265.84012,378.6476,1.4449588,50265.78,2128.7246,650.93756,470.6936,22.838058,1.4449588,650.93756,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 22:00,943200,3597.512,230.61867,376.34546,0.96993715,52403.758,2162.5562,752.8495,14.862772,19.779692,0.96993715,752.8495,130901.3,73179.4,-15784.6,-201976.5
+1/11/2023 23:00,946800,3597.512,6.285911,374.89856,0.10372095,50633.37,1561.2816,662.36255,10.494533,18.910345,0.10372095,662.36255,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 0:00,950400,3597.512,6.253312,374.6908,0.10372095,45991.996,1378.051,493.89658,146.40926,18.6425,0.10372095,493.89658,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 1:00,954000,3597.512,8.998375,70.699295,50.506348,44136.547,1280.8987,459.22305,78.27176,0.000448876,50.506348,459.22305,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 2:00,957600,3597.512,109.29404,403.4897,50.506348,168.76585,766.06506,17.661684,8.958446,0.2110439,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 3:00,961200,3597.512,226.14874,407.18307,50.506348,166.65073,731.9792,17.661684,5.1554675,1.7539014,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 4:00,964800,3597.512,303.44296,413.26306,50.506348,164.38835,707.22595,17.661684,4.208928,5.6100783,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 5:00,968400,3597.512,359.11752,419.21695,50.506348,7535.3105,1054.9431,237.34578,1853.0173,11.090148,50.506348,237.34578,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 6:00,972000,3597.512,465.90033,426.2463,50.506348,7143.446,1492.76,247.22217,5270.622,20.859974,50.506348,247.22217,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 7:00,975600,3597.512,6147.175,573.7192,78.708046,46212.863,2151.741,531.7606,5446.1777,2108.8298,78.708046,531.7606,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 8:00,979200,3597.512,6181.4478,613.0002,77.75862,56600.09,2312.8875,796.10223,4381.839,4957.3247,77.75862,796.10223,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 9:00,982800,3597.512,4612.156,576.1659,53.34795,55517.43,1802.4845,727.89874,3431.2046,3938.0735,53.34795,727.89874,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 10:00,986400,3597.512,3348.4014,552.2173,53.552895,53520.19,2226.212,644.4062,2195.0144,2303.9116,53.552895,644.4062,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 11:00,990000,3597.512,2622.9783,524.01416,53.514675,51901.21,1764.0028,606.2577,1549.7091,1174.6383,53.514675,606.2577,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 12:00,993600,3597.512,2234.2197,503.01678,54.497097,53228.902,1947.7985,632.39197,844.38947,656.8608,54.497097,632.39197,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 13:00,997200,3597.512,2112.5828,491.00146,55.427284,50016.125,2174.5479,603.6659,440.24503,438.82303,55.427284,603.6659,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 14:00,1000800,3597.512,1655.7412,520.0706,55.009254,47946.875,2104.323,571.2031,318.47302,230.97417,55.009254,571.2031,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 15:00,1004400,3597.512,1251.4019,497.88596,53.179928,46574.36,1972.8077,529.27783,25.67972,108.579056,53.179928,529.27783,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 16:00,1008000,3597.512,1129.916,480.6665,53.156437,47108.35,1447.2714,530.2978,54.842304,70.20271,53.156437,530.2978,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 17:00,1011600,3597.512,1131.0919,473.3629,54.02121,47243.547,1398.0425,529.2859,79.758194,57.94798,54.02121,529.2859,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 18:00,1015200,3597.512,1515.5775,484.08817,52.437298,49936.883,2091.6338,606.25653,98.116486,132.67642,52.437298,606.25653,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 19:00,1018800,3597.512,2141.0405,505.81537,52.404312,52123.07,2188.189,667.3024,325.9424,361.58118,52.404312,667.3024,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 20:00,1022400,3597.512,251.48106,424.77914,1.182858,52635.527,2285.9836,707.3725,881.6935,110.68059,1.182858,707.3725,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 21:00,1026000,3597.512,268.79822,414.8194,1.4262414,50325.15,2234.8813,645.8291,1034.6764,69.89226,1.4262414,645.8291,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 22:00,1029600,3597.512,253.56902,164.98888,51.55449,52562.89,2203.9314,749.83344,86.67335,0.011448862,51.55449,749.83344,130901.3,73179.4,-15784.6,-201976.5
+1/12/2023 23:00,1033200,3597.512,50.619377,238.69278,50.506348,50745.3,1611.2878,661.1284,10.5984745,0.038447086,50.506348,661.1284,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 0:00,1036800,3597.512,99.38947,404.4335,50.506348,45741.395,1384.9591,493.0866,61.531216,0.16844098,50.506348,493.0866,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 1:00,1040400,3597.512,144.79515,418.0976,50.506348,44143.246,1280.1836,459.18448,31.859907,0.39559463,50.506348,459.18448,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 2:00,1044000,3597.512,192.07043,419.73148,50.506348,163.7486,770.2124,17.661684,4.160164,0.9547598,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 3:00,1047600,3597.512,218.58632,421.5357,50.506348,161.62057,734.36176,17.661684,2.3395946,1.9733642,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 4:00,1051200,3597.512,245.9542,423.7181,50.506348,159.41943,707.7057,17.661684,1.7773395,3.6813989,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 5:00,1054800,3597.512,292.91547,427.31033,50.506348,2858.335,823.91534,50.81297,422.85623,6.6068416,50.506348,50.81297,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 6:00,1058400,3597.512,348.44626,431.23352,50.506348,3314.1946,1125.0498,412.38513,1401.9802,10.812697,50.506348,412.38513,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 7:00,1062000,3597.512,4734.541,548.5261,56.978283,44139.746,1883.9064,444.8388,1617.2715,1462.3956,56.978283,444.8388,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 8:00,1065600,3597.512,5421.666,591.79156,60.623306,54059.773,2128.6982,753.82776,884.3751,3695.4973,60.623306,753.82776,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 9:00,1069200,3597.512,3842.5867,571.2862,53.376297,53066.254,1700.0089,705.7541,411.71625,2784.6035,53.376297,705.7541,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 10:00,1072800,3597.512,2833.8833,546.35315,53.601604,51683.85,2140.3105,649.80585,177.42653,1551.5791,53.601604,649.80585,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 11:00,1076400,3597.512,2151.1326,515.1583,53.5546,49993.246,1649.2515,611.515,65.34462,709.3982,53.5546,611.515,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 12:00,1080000,3597.512,1808.2771,493.85742,54.549988,51296.78,2086.3918,648.26483,20.411024,351.03857,54.549988,648.26483,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 13:00,1083600,3597.512,1560.739,478.39682,55.53523,49234.94,2042.0133,566.357,158.3158,184.60435,55.53523,566.357,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 14:00,1087200,3597.512,1238.1852,462.24472,55.115963,47445.93,2031.023,530.8027,295.57086,88.029854,55.115963,530.8027,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 15:00,1090800,3597.512,926.33374,446.36865,53.215267,46075.91,1910.2283,492.27478,12.108223,39.00312,53.215267,492.27478,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 16:00,1094400,3597.512,839.05597,439.63013,53.179657,46377.023,1386.9053,532.33826,1.0244905,24.550396,53.179657,532.33826,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 17:00,1098000,3597.512,911.2289,440.70645,54.053116,46502.477,1334.9595,533.2552,0.8575807,25.446978,54.053116,533.2552,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 18:00,1101600,3597.512,1099.9808,450.46326,52.473755,51347.074,961.5796,525.90894,0.27304664,55.83091,52.473755,525.90894,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 19:00,1105200,3597.512,1668.5243,472.88153,52.418816,53274.426,2094.307,701.27203,281.04932,178.58788,52.418816,701.27203,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 20:00,1108800,3597.512,251.97377,399.94412,1.1787235,53268.652,2049.0293,714.3256,66.03499,60.159515,1.1787235,714.3256,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 21:00,1112400,3597.512,269.22955,392.01385,1.4192923,50831.56,2070.1716,640.2577,641.7093,36.27636,1.4192923,640.2577,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 22:00,1116000,3597.512,233.42188,389.67865,0.9516295,52448.758,2020.5493,705.8841,35.626183,32.305153,0.9516295,705.8841,130901.3,73179.4,-15784.6,-201976.5
+1/13/2023 23:00,1119600,3597.512,6.368338,388.18234,0.10372095,50584.574,2052.0342,661.0169,10.37273,31.293974,0.10372095,661.0169,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 0:00,1123200,3597.512,6.334623,387.8623,0.10372095,45401.266,1921.462,494.03238,10.305424,31.018253,0.10372095,494.03238,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 1:00,1126800,3597.512,6.334401,387.63815,0.10372095,43755.055,1584.7769,417.38318,6.103073,30.942146,0.10372095,417.38318,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 2:00,1130400,3597.512,6.2996283,387.44534,0.10372095,168.70258,1060.5784,17.661684,3.7318897,30.921043,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 3:00,1134000,3597.512,6.2968373,387.29163,0.10372095,166.32845,992.3186,17.661684,3.0106242,30.973196,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 4:00,1137600,3597.512,15.265273,106.77749,50.506348,164.3292,946.60925,17.661684,2.6857748,0.002604347,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 5:00,1141200,3597.512,30.240025,167.4274,50.506348,1555.8092,1005.0585,46.26926,130.67781,0.014420369,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 6:00,1144800,3597.512,53.119267,260.68582,50.506348,160.4922,939.477,17.661684,85.526115,0.055425428,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 7:00,1148400,3597.512,64.75387,302.9534,50.506348,41327.668,1290.1417,398.53357,59.571575,0.08415819,50.506348,398.53357,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 8:00,1152000,3597.512,90.219574,385.86728,50.506348,41945.61,1848.242,431.60825,9.511354,0.15990043,50.506348,431.60825,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 9:00,1155600,3597.512,104.820435,409.31714,50.506348,41844.83,1431.1327,434.2748,1.6868705,0.19954586,50.506348,434.2748,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 10:00,1159200,3597.512,87.08811,349.27032,50.506348,51332.438,1587.1897,714.29236,1.1645699,0.124077246,50.506348,714.29236,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 11:00,1162800,3597.512,63.222313,263.65887,50.506348,50411.09,1560.6737,672.04407,1.1694846,0.05761458,50.506348,672.04407,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 12:00,1166400,3597.512,35.71299,166.06236,50.506348,52182.402,1532.8745,681.8555,0.9737318,0.014248099,50.506348,681.8555,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 13:00,1170000,3597.512,24.780195,134.1949,50.506348,53897.094,1307.4753,647.494,0.5180193,0.006705075,50.506348,647.494,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 14:00,1173600,3597.512,24.191954,129.61772,50.506348,50650.555,1449.4529,619.92303,0.9449489,0.005884476,50.506348,619.92303,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 15:00,1177200,3597.512,19.301147,112.385,50.506348,49091.086,1270.3723,572.46655,0.6601851,0.00330804,50.506348,572.46655,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 16:00,1180800,3597.512,22.226597,122.46646,50.506348,49110.574,1229.9403,572.79767,0.5955258,0.004725476,50.506348,572.79767,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 17:00,1184400,3597.512,48.870914,210.52277,50.506348,47761.32,1153.1353,531.54407,0.53968984,0.030326279,50.506348,531.54407,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 18:00,1188000,3597.512,113.08234,407.81824,50.506348,49188.344,1165.6659,574.42804,0.49324328,0.20862839,50.506348,574.42804,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 19:00,1191600,3597.512,152.47191,406.95593,50.506348,52693.703,2019.3628,668.4187,23.856232,0.43974072,50.506348,668.4187,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 20:00,1195200,3597.512,193.81557,408.64438,50.506348,52179.555,2103.945,680.7184,326.62006,0.8536556,50.506348,680.7184,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 21:00,1198800,3597.512,206.05562,409.53864,50.506348,51399.508,1998.3639,659.99036,17.917091,1.1772404,50.506348,659.99036,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 22:00,1202400,3597.512,220.58272,410.43546,50.506348,52941.527,2024.1636,701.13495,6.0367475,1.5793266,50.506348,701.13495,130901.3,73179.4,-15784.6,-201976.5
+1/14/2023 23:00,1206000,3597.512,244.3003,411.81827,50.506348,49194.074,1448.0951,573.9915,1.2495213,2.3297799,50.506348,573.9915,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 0:00,1209600,3597.512,279.53906,413.99197,50.506348,46402.78,1287.8318,488.81573,1.0326692,3.7678537,50.506348,488.81573,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 1:00,1213200,3597.512,313.09543,416.46887,50.506348,45109.367,1200.6139,453.49847,0.89698243,5.4902587,50.506348,453.49847,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 2:00,1216800,3597.512,292.0811,416.6312,50.506348,169.19496,725.67194,17.661684,0.80216837,5.6790085,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 3:00,1220400,3597.512,281.4393,417.11035,50.506348,167.0428,694.68695,17.661684,0.73145336,6.111879,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 4:00,1224000,3597.512,291.55658,418.6325,50.506348,164.84444,669.231,17.661684,0.6761902,7.4341784,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 5:00,1227600,3597.512,284.07166,418.73065,50.506348,1208.6572,834.00464,46.26926,73.7609,7.5979447,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 6:00,1231200,3597.512,302.74155,420.0931,50.506348,1686.6737,860.9706,46.26926,342.45407,8.937789,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 7:00,1234800,3597.512,298.0879,419.79578,50.506348,44118.87,1093.8271,402.7169,400.65088,8.734158,50.506348,402.7169,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 8:00,1238400,3597.512,333.85117,420.30536,50.506348,41749.902,1860.971,392.85294,94.91969,9.313397,50.506348,392.85294,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 9:00,1242000,3597.512,339.3211,420.39658,50.506348,41833.414,1390.907,392.45865,62.73664,9.487331,50.506348,392.45865,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 10:00,1245600,3597.512,239.09392,413.7836,50.506348,42056.83,1292.4197,432.37784,1.0493474,4.211944,50.506348,432.37784,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 11:00,1249200,3597.512,168.24597,408.5534,50.506348,51545.043,1516.8228,712.41174,0.9386258,1.2841953,50.506348,712.41174,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 12:00,1252800,3597.512,116.50757,405.2581,50.506348,54665.945,1574.7714,1376.7104,0.033910822,0.41645634,50.506348,1376.7104,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 13:00,1256400,3597.512,78.29621,354.6036,50.506348,49406.434,1692.3528,569.06274,2.0972455,0.13175336,50.506348,569.06274,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 14:00,1260000,3597.512,65.40138,291.28906,50.506348,49132.62,1717.7495,575.62946,2.2188873,0.07770616,50.506348,575.62946,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 15:00,1263600,3597.512,58.4819,260.39328,50.506348,46337.605,1312.2981,494.061,1.0789379,0.057127055,50.506348,494.061,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 16:00,1267200,3597.512,63.853607,276.25912,50.506348,46372.062,1225.772,495.6463,0.85514253,0.0673169,50.506348,495.6463,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 17:00,1270800,3597.512,89.33084,360.58755,50.506348,46273.17,1135.7589,492.4622,0.65944046,0.13803606,50.506348,492.4622,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 18:00,1274400,3597.512,162.61896,405.62543,50.506348,49198.035,1163.8177,577.6345,0.5469504,0.57282513,50.506348,577.6345,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 19:00,1278000,3597.512,226.64793,408.67004,50.506348,51936.508,1951.5955,644.35767,10.176301,1.575097,50.506348,644.35767,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 20:00,1281600,3597.512,227.81273,409.00357,50.506348,52302.88,1556.3925,671.58215,1.3493725,1.7595184,50.506348,671.58215,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 21:00,1285200,3597.512,236.13014,409.68396,50.506348,49331.426,1899.7213,569.2347,69.16077,2.1389658,50.506348,569.2347,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 22:00,1288800,3597.512,293.37854,412.80112,50.506348,52319.344,1979.5654,719.5448,2.412741,4.1385546,50.506348,719.5448,130901.3,73179.4,-15784.6,-201976.5
+1/15/2023 23:00,1292400,3597.512,286.50122,413.19876,50.506348,49585.52,1618.9631,617.04724,4.7155986,4.4324956,50.506348,617.04724,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 0:00,1296000,3597.512,300.12256,414.16193,50.506348,44163.188,1369.9548,460.847,9.941615,5.120058,50.506348,460.847,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 1:00,1299600,3597.512,262.94427,412.51004,50.506348,43779.17,1256.1208,417.3001,3.4842808,4.073988,50.506348,417.3001,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 2:00,1303200,3597.512,282.34756,413.97275,50.506348,169.2144,811.73376,17.661684,2.0530639,5.0751023,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 3:00,1306800,3597.512,251.5646,413.5069,50.506348,167.0346,779.527,17.661684,1.5316331,4.7985773,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 4:00,1310400,3597.512,306.05084,417.2321,50.506348,164.83485,754.3652,17.661684,1.2902296,7.7432003,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 5:00,1314000,3597.512,315.19086,419.12598,50.506348,1425.2734,825.1703,46.26926,108.4824,9.599443,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 6:00,1317600,3597.512,306.7801,418.8908,50.506348,1972.6768,856.0679,46.26926,477.90887,9.421092,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 7:00,1321200,3597.512,5315.6255,554.966,66.942795,44044.13,1373.262,428.51776,582.1123,1732.6599,66.942795,428.51776,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 8:00,1324800,3597.512,6395.945,624.4753,87.65231,53454.008,2092.503,757.2695,236.24178,4985.9756,87.65231,757.2695,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 9:00,1328400,3597.512,4233.0757,574.60065,53.373363,52310.023,1649.0709,707.0792,35.49491,3719.3445,53.373363,707.0792,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 10:00,1332000,3597.512,3046.6587,548.4732,53.65767,52606.09,1244.1024,632.29517,4.7388177,2045.0924,53.65767,632.29517,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 11:00,1335600,3597.512,2405.4773,519.07526,53.579983,49731.766,1390.8169,613.95544,2.3968105,1006.65826,53.579983,613.95544,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 12:00,1339200,3597.512,1857.9464,491.93573,54.61944,52692.152,1268.5491,582.52515,0.81725466,446.9867,54.61944,582.52515,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 13:00,1342800,3597.512,1604.8293,473.2028,55.569717,49424.75,2039.2719,566.7526,172.18861,213.38165,55.569717,566.7526,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 14:00,1346400,3597.512,1226.1704,453.97565,55.140728,47683.22,2006.7245,532.5912,183.62747,88.35239,55.140728,532.5912,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 15:00,1350000,3597.512,861.23584,434.68088,53.219463,46398.277,1753.2333,494.6757,2.4861512,30.383606,53.219463,494.6757,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 16:00,1353600,3597.512,791.524,428.79843,53.19172,46579.953,1482.0234,493.31888,1.4920686,19.404917,53.19172,493.31888,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 17:00,1357200,3597.512,843.97577,429.6215,54.076267,46581.465,1356.2988,492.13065,1.1426171,19.386501,54.076267,492.13065,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 18:00,1360800,3597.512,1027.1766,438.16965,52.455723,49377.555,1362.3761,573.43994,0.96120524,41.22695,52.455723,573.43994,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 19:00,1364400,3597.512,1680.209,465.1679,52.43495,53734.023,2082.9038,706.04816,126.82703,175.08553,52.43495,706.04816,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 20:00,1368000,3597.512,252.5358,393.5647,1.1807193,53287.96,2119.1746,715.21136,286.28226,62.7409,1.1807193,715.21136,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 21:00,1371600,3597.512,269.91565,385.7947,1.4232224,50839.633,2045.3969,642.93744,311.68448,38.04938,1.4232224,642.93744,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 22:00,1375200,3597.512,233.79948,383.66068,0.9517923,52624.12,2012.7441,700.77405,9.677572,34.036324,0.9517923,700.77405,130901.3,73179.4,-15784.6,-201976.5
+1/16/2023 23:00,1378800,3597.512,6.4087048,382.33994,0.10372095,50728.598,1355.5736,622.0911,0.89190006,33.027725,0.10372095,622.0911,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 0:00,1382400,3597.512,6.3749986,382.17786,0.10372095,45319.41,1287.4918,497.58487,0.93742377,32.756214,0.10372095,497.58487,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 1:00,1386000,3597.512,6.374705,382.1008,0.10372095,43841.508,1167.9404,419.01816,0.7385502,32.682213,0.10372095,419.01816,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 2:00,1389600,3597.512,6.3398085,382.0474,0.10372095,169.1212,734.9653,17.661684,0.6513851,32.66196,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 3:00,1393200,3597.512,6.3369493,382.00082,0.10372095,166.78993,709.3256,17.661684,0.5878068,32.656357,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 4:00,1396800,3597.512,6.299854,381.95645,0.10372095,164.51514,688.70325,17.661684,0.539281,32.654755,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 5:00,1400400,3597.512,6.2960753,381.9131,0.10372095,765.9938,735.2604,46.26926,23.60187,32.65424,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 6:00,1404000,3597.512,6.2585783,381.87033,0.10372095,160.49211,685.486,17.661684,16.507805,32.654022,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 7:00,1407600,3597.512,1506.4568,456.8359,50.506348,41512.62,1048.7,401.16995,10.158185,133.86963,50.506348,401.16995,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 8:00,1411200,3597.512,2249.035,493.55634,52.881004,52480.277,2191.2078,712.962,120.03809,514.1845,52.881004,712.962,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 9:00,1414800,3597.512,1685.2916,480.25977,53.52288,51401.945,2099.556,671.11755,13.184929,317.64282,53.52288,671.11755,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 10:00,1418400,3597.512,1293.9033,459.6396,53.685387,50572.01,1467.9874,628.5852,9.201638,132.27782,53.685387,628.5852,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 11:00,1422000,3597.512,1059.108,444.8281,53.64798,49150.2,1332.9492,576.7444,8.983872,60.75758,53.64798,576.7444,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 12:00,1425600,3597.512,916.94434,435.09467,54.67822,51494.613,1968.7959,608.6632,11.05191,30.159609,54.67822,608.6632,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 13:00,1429200,3597.512,944.2351,433.30267,55.66833,49070.97,2099.1982,575.62634,336.53717,24.566645,55.66833,575.62634,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 14:00,1432800,3597.512,878.0879,430.5595,55.200386,47348.246,2080.9636,542.25134,439.64987,20.588778,55.200386,542.25134,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 15:00,1436400,3597.512,738.268,424.9607,53.259335,45984.496,1962.4274,500.9215,68.28994,15.127807,53.259335,500.9215,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 16:00,1440000,3597.512,711.37616,423.00284,53.229385,46301.59,1479.5089,499.02908,9.568743,12.705558,53.229385,499.02908,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 17:00,1443600,3597.512,742.81116,423.04425,54.112396,46478.543,1389.9564,497.3307,9.311065,11.756818,54.112396,497.3307,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 18:00,1447200,3597.512,795.59247,427.40286,52.49409,50633.41,1427.4935,547.9136,9.275547,20.094645,52.49409,547.9136,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 19:00,1450800,3597.512,1195.7188,445.12463,52.433163,53241.273,2191.1582,705.35675,148.51344,67.52407,52.433163,705.35675,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 20:00,1454400,3597.512,251.77266,378.68704,1.1862924,52994.445,2266.0635,717.34766,517.76135,24.815521,1.1862924,717.34766,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 21:00,1458000,3597.512,269.09912,371.97073,1.4300432,50643.688,2161.7683,646.66095,286.25043,13.891854,1.4300432,646.66095,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 22:00,1461600,3597.512,233.08496,369.45648,0.95626575,52567.61,2136.5723,701.8591,17.635242,11.4731045,0.95626575,701.8591,130901.3,73179.4,-15784.6,-201976.5
+1/17/2023 23:00,1465200,3597.512,6.354371,367.86392,0.10372095,50738,1528.6495,626.28674,9.337692,10.692126,0.10372095,626.28674,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 0:00,1468800,3597.512,6.320921,367.5708,0.10372095,45411.707,1323.5259,499.88373,1.9747899,10.414796,0.10372095,499.88373,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 1:00,1472400,3597.512,6.287307,367.44052,0.10372095,43826.957,1195.8462,420.21686,1.3749583,10.313349,0.10372095,420.21686,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 2:00,1476000,3597.512,6.286197,367.3706,0.10372095,168.97025,756.2362,17.661684,0.94620895,10.275863,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 3:00,1479600,3597.512,6.2500477,367.32324,0.10372095,166.64313,727.401,17.661684,0.77447265,10.261942,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 4:00,1483200,3597.512,6.2467184,367.2845,0.10372095,164.37683,704.0031,17.661684,0.6797934,10.256745,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 5:00,1486800,3597.512,6.2097073,367.2491,0.10372095,1420.4628,779.37646,46.26926,109.33621,10.254786,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 6:00,1490400,3597.512,6.2060246,367.21518,0.10372095,160.43655,724.53937,17.661684,71.86805,10.254025,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 7:00,1494000,3597.512,1679.1796,461.09528,50.506348,41541.715,1091.354,402.40344,49.292057,169.61441,50.506348,402.40344,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 8:00,1497600,3597.512,2701.0457,505.2555,53.026592,52836.66,2184.906,760.4633,13.715335,743.65857,53.026592,760.4633,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 9:00,1501200,3597.512,2046.379,495.06546,53.44677,51910.527,1743.5906,714.1325,7.132727,545.0361,53.44677,714.1325,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 10:00,1504800,3597.512,1563.7839,472.82983,53.660294,50748.875,1529.5906,625.43854,2.64921,245.03633,53.660294,625.43854,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 11:00,1508400,3597.512,1281.0001,456.106,53.633133,49367.324,1454.862,621.9285,1.1180434,116.698006,53.633133,621.9285,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 12:00,1512000,3597.512,1131.8064,445.9265,54.622414,51071.367,2039.3909,619.1698,16.491007,64.4442,54.622414,619.1698,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 13:00,1515600,3597.512,1069.1962,440.2752,55.642006,48966.79,2103.75,579.9945,487.26007,42.850357,55.642006,579.9945,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 14:00,1519200,3597.512,983.27026,435.9973,55.24377,47455.06,2004.169,546.5113,215.9232,32.978104,55.24377,546.5113,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 15:00,1522800,3597.512,864.6204,431.42715,53.25719,46210.65,1855.3389,499.39587,4.926239,27.384789,53.25719,499.39587,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 16:00,1526400,3597.512,857.1864,430.3056,53.21392,46482.94,1339.0211,541.2109,0.97248477,25.301981,53.21392,541.2109,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 17:00,1530000,3597.512,910.5243,431.5535,54.108402,46595.76,1273.578,540.6664,0.81894886,26.05029,54.108402,540.6664,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 18:00,1533600,3597.512,950.998,435.4665,52.493385,50879.81,1216.7957,548.14374,0.76433456,38.76849,52.493385,548.14374,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 19:00,1537200,3597.512,1413.4004,453.8929,52.43391,52976.664,2031.4609,693.6689,128.35365,112.33342,52.43391,693.6689,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 20:00,1540800,3597.512,252.38582,384.4103,1.1861817,53230.45,2024.7344,711.17645,53.67268,39.583794,1.1861817,711.17645,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 21:00,1544400,3597.512,269.95764,377.17917,1.4323467,51122.617,1935.6292,638.408,19.763922,23.063911,1.4323467,638.408,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 22:00,1548000,3597.512,233.71774,374.8417,0.9560267,52838.246,1979.2747,695.51263,6.260406,19.913864,0.9560267,695.51263,130901.3,73179.4,-15784.6,-201976.5
+1/18/2023 23:00,1551600,3597.512,6.4678707,373.40326,0.10372095,51017.78,1540.2554,672.30945,1.1388643,19.017942,0.10372095,672.30945,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 0:00,1555200,3597.512,6.434287,373.1997,0.10372095,45699.99,1400.1519,500.30942,7.85722,18.742125,0.10372095,500.30942,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 1:00,1558800,3597.512,6.4341407,373.11633,0.10372095,43904.008,1279.0063,420.19974,5.379108,18.655655,0.10372095,420.19974,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 2:00,1562400,3597.512,6.3994,373.07108,0.10372095,169.17873,840.9845,17.661684,3.2567632,18.628405,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 3:00,1566000,3597.512,6.3630614,373.03796,0.10372095,166.82224,813.69806,17.661684,2.6722453,18.619774,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 4:00,1569600,3597.512,6.359596,373.00882,0.10372095,164.5308,791.2207,17.661684,2.4287689,18.617006,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 5:00,1573200,3597.512,6.3223753,372.9811,0.10372095,1952.6497,877.5447,46.26926,208.6989,18.616083,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 6:00,1576800,3597.512,8.836422,74.20049,50.506348,2383.211,1177.3978,466.38223,725.7434,0.000476655,50.506348,466.38223,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 7:00,1580400,3597.512,2259.1516,475.4502,50.506348,43458.754,1857.1976,443.49298,753.87317,314.30835,50.506348,443.49298,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 8:00,1584000,3597.512,3326.5874,522.8857,52.98172,53404.01,2224.3687,763.3549,255.90486,1197.6511,52.98172,763.3549,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 9:00,1587600,3597.512,2347.36,508.2132,53.428967,52199.76,1686.2433,711.1326,40.1021,813.78503,53.428967,711.1326,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 10:00,1591200,3597.512,1843.6016,486.0576,53.665688,51004.51,2051.2458,618.6762,17.444424,412.6178,53.665688,618.6762,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 11:00,1594800,3597.512,1525.9778,468.28827,53.621384,49541.535,1643.8461,621.69165,2.7690268,209.62064,53.621384,621.69165,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 12:00,1598400,3597.512,1292.6974,454.5315,54.63916,51242.074,2038.3354,618.5333,11.522963,106.30404,54.63916,618.5333,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 13:00,1602000,3597.512,1181.7916,445.99277,55.653297,49173.41,2096.9524,579.86804,413.36987,63.473457,55.653297,579.86804,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 14:00,1605600,3597.512,1035.8083,438.49942,55.218624,47597.938,2015.9828,544.7689,163.29512,41.04346,55.218624,544.7689,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 15:00,1609200,3597.512,894.82666,432.40833,53.25327,46453.44,1586.5947,500.69833,1.7633853,30.904028,53.25327,500.69833,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 16:00,1612800,3597.512,895.38324,431.3755,53.2096,46692.957,1488.8529,539.6394,1.4655617,28.804945,53.2096,539.6394,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 17:00,1616400,3597.512,976.7819,433.87125,54.09889,46773.406,1411.1337,539.7513,1.3452485,32.4201,54.09889,539.7513,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 18:00,1620000,3597.512,1088.7332,440.56482,52.488865,51894.406,991.1729,513.2511,0.24989064,55.915073,52.488865,513.2511,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 19:00,1623600,3597.512,1748.0892,465.37885,52.43541,52814.797,2076.3489,679.61676,73.28199,196.48773,52.43541,679.61676,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 20:00,1627200,3597.512,252.76242,392.88583,1.1830146,53034.26,2152.965,707.3123,400.07385,69.33354,1.1830146,707.3123,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 21:00,1630800,3597.512,270.21634,385.01056,1.4270209,50656.277,2086.3516,642.72815,489.02515,42.346703,1.4270209,642.72815,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 22:00,1634400,3597.512,233.92761,382.9224,0.953042,52463.45,2044.2465,702.6986,40.278717,38.087074,0.953042,702.6986,130901.3,73179.4,-15784.6,-201976.5
+1/19/2023 23:00,1638000,3597.512,6.40903,381.64014,0.10372095,51002.57,1507.6266,677.73883,1.0936501,37.040615,0.10372095,677.73883,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 0:00,1641600,3597.512,6.3751845,381.50784,0.10372095,45740.125,1360.6016,501.3619,10.428768,36.7657,0.10372095,501.3619,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 1:00,1645200,3597.512,6.3749146,381.45554,0.10372095,43950.65,1224.8915,421.7736,7.1885147,36.69266,0.10372095,421.7736,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 2:00,1648800,3597.512,6.340061,381.42468,0.10372095,169.13908,777.40717,17.661684,4.277024,36.673176,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 3:00,1652400,3597.512,6.303633,381.39966,0.10372095,166.82872,746.26996,17.661684,3.5680118,36.66791,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 4:00,1656000,3597.512,6.300126,381.37628,0.10372095,164.54797,721.73895,17.661684,3.3006124,36.66643,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 5:00,1659600,3597.512,24.315525,132.2426,50.506348,2576.9026,821.8277,46.863914,343.06976,0.007266271,50.506348,46.863914,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 6:00,1663200,3597.512,62.89411,277.33768,50.506348,2923.3108,1526.4713,954.9339,1106.1017,0.07073098,50.506348,954.9339,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 7:00,1666800,3597.512,2564.2795,483.3002,50.506348,43916.445,1832.3849,443.8996,1117.8008,425.64166,50.506348,443.8996,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 8:00,1670400,3597.512,3771.7322,533.21173,52.97811,53837.36,2204.9785,763.4828,526.18097,1558.4639,52.97811,763.4828,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 9:00,1674000,3597.512,2578.2869,518.08185,53.423874,52525.87,1700.7474,709.7336,134.44023,1067.7648,53.423874,709.7336,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 10:00,1677600,3597.512,1977.5707,492.80237,53.660427,51489.215,2113.09,663.02704,35.174637,525.1903,53.660427,663.02704,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 11:00,1681200,3597.512,1639.2179,473.31018,53.614315,49935.465,1635.3942,621.20996,18.420706,263.39178,53.614315,621.20996,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 12:00,1684800,3597.512,1410.0742,459.68237,54.637856,51411.96,2047.9137,618.5111,14.156699,140.35199,54.637856,618.5111,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 13:00,1688400,3597.512,1305.6119,451.53104,55.66703,49384.74,2097.315,580.1423,355.35458,88.95805,55.66703,580.1423,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 14:00,1692000,3597.512,1145.1753,443.94623,55.212933,47481.527,2103.5242,543.39154,728.9312,59.75919,55.212933,543.39154,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 15:00,1695600,3597.512,925.5286,434.39737,53.266396,46229.82,1944.6736,506.2973,34.808212,36.915447,53.266396,506.2973,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 16:00,1699200,3597.512,958.7739,434.4225,53.226063,46893.137,1423.5138,543.6503,4.889578,37.134262,53.226063,543.6503,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 17:00,1702800,3597.512,977.31384,435.07962,54.149494,47530.195,1622.6814,528.41034,6.3293085,36.51521,54.149494,528.41034,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 18:00,1706400,3597.512,1068.7941,438.21524,52.46069,49717.086,1586.6553,580.83344,1.8019111,50.12181,52.46069,580.83344,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 19:00,1710000,3597.512,1615.96,460.21075,52.434612,53680.184,2171.464,717.0404,102.35338,160.24127,52.434612,717.0404,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 20:00,1713600,3597.512,252.48114,388.77255,1.1853796,53280.4,2231.2896,717.0834,410.88205,56.221214,1.1853796,717.0834,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 21:00,1717200,3597.512,269.9624,381.14157,1.4303933,50741.48,2164.4695,644.66064,456.53607,33.739517,1.4303933,644.66064,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 22:00,1720800,3597.512,233.64209,378.97476,0.9543922,52520.2,2116.7249,702.5419,35.08588,29.93095,0.9543922,702.5419,130901.3,73179.4,-15784.6,-201976.5
+1/20/2023 23:00,1724400,3597.512,6.3680086,377.64685,0.10372095,51286.254,1596.2329,679.07336,2.9608963,28.945683,0.10372095,679.07336,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 0:00,1728000,3597.512,6.3343835,377.49802,0.10372095,46023.375,1380.0079,501.08902,38.608566,28.672197,0.10372095,501.08902,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 1:00,1731600,3597.512,6.334312,377.44183,0.10372095,44074.223,1237.1558,423.2705,17.206444,28.595304,0.10372095,423.2705,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 2:00,1735200,3597.512,29.603224,143.84348,50.506348,169.4268,786.92035,17.661684,10.535571,0.009921354,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 3:00,1738800,3597.512,63.296436,271.5687,50.506348,167.29765,756.0577,17.661684,9.359077,0.06708948,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 4:00,1742400,3597.512,128.80122,400.05075,50.506348,165.05238,731.8035,17.661684,9.017778,0.38841638,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 5:00,1746000,3597.512,218.78725,404.86526,50.506348,3486.9653,853.2133,60.323853,548.54987,1.92917,50.506348,60.323853,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 6:00,1749600,3597.512,251.87714,407.9077,50.506348,3482.0437,883.5943,70.43083,1689.9146,3.7955644,50.506348,70.43083,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 7:00,1753200,3597.512,299.00085,411.6764,50.506348,46271.01,1104.9246,391.92578,1806.87,6.4457717,50.506348,391.92578,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 8:00,1756800,3597.512,359.218,415.05112,50.506348,43350.59,1908.8011,438.7113,762.35864,9.499346,50.506348,438.7113,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 9:00,1760400,3597.512,345.47183,414.6641,50.506348,42904.305,1436.0739,437.29807,149.33858,9.132991,50.506348,437.29807,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 10:00,1764000,3597.512,254.87434,409.4294,50.506348,52708.67,1685.4983,687.38824,32.324013,4.835397,50.506348,687.38824,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 11:00,1767600,3597.512,190.17525,404.221,50.506348,51483.13,1565.8881,680.6106,21.402744,1.6725827,50.506348,680.6106,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 12:00,1771200,3597.512,159.58286,402.0889,50.506348,52380.83,2089.44,657.0258,9.421545,0.88087827,50.506348,657.0258,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 13:00,1774800,3597.512,112.5365,399.23325,50.506348,52384.02,2102.396,674.8055,14.262336,0.2913882,50.506348,674.8055,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 14:00,1778400,3597.512,101.330215,400.96768,50.506348,51054.574,1627.7999,631.567,3.840877,0.20766011,50.506348,631.567,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 15:00,1782000,3597.512,152.19398,400.73288,50.506348,50093.33,2018.2251,623.0734,3.2826614,0.5544947,50.506348,623.0734,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 16:00,1785600,3597.512,157.95004,400.7263,50.506348,49839.08,1570.1364,625.2104,3.9714386,0.556908,50.506348,625.2104,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 17:00,1789200,3597.512,209.1363,403.01273,50.506348,48372.99,1412.85,581.51215,3.1213412,1.2166774,50.506348,581.51215,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 18:00,1792800,3597.512,254.6302,405.49728,50.506348,49827.22,1389.9187,629.0239,1.0193741,2.4013555,50.506348,629.0239,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 19:00,1796400,3597.512,290.5425,407.98038,50.506348,54041.246,2087.0852,711.2883,15.508867,4.0011806,50.506348,711.2883,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 20:00,1800000,3597.512,351.57687,411.9607,50.506348,52576.312,2139.7102,689.693,537.982,6.86948,50.506348,689.693,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 21:00,1803600,3597.512,332.93124,412.32938,50.506348,51302.22,2064.31,663.279,333.24384,7.193518,50.506348,663.279,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 22:00,1807200,3597.512,394.04263,415.89743,50.506348,52690.246,2057.7004,705.64386,149.3796,10.647155,50.506348,705.64386,130901.3,73179.4,-15784.6,-201976.5
+1/21/2023 23:00,1810800,3597.512,401.60086,417.10153,50.506348,49396.934,1704.4567,585.2314,2.2947226,12.02001,50.506348,585.2314,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 0:00,1814400,3597.512,414.39694,417.462,50.506348,46985.312,1562.4265,542.88086,2.2356012,12.46615,50.506348,542.88086,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 1:00,1818000,3597.512,535.2617,423.7798,50.506348,45542.867,1417.4741,502.3905,1.4672364,21.654644,50.506348,502.3905,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 2:00,1821600,3597.512,496.71298,423.95377,50.506348,169.6746,867.9271,17.661684,0.9582355,21.986814,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 3:00,1825200,3597.512,442.2323,422.56326,50.506348,167.40692,793.1622,17.661684,0.8298322,19.6751,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 4:00,1828800,3597.512,386.81168,420.2523,50.506348,165.18872,733.01654,17.661684,0.7443875,16.19486,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 5:00,1832400,3597.512,444.8115,423.52136,50.506348,1931.6654,881.6162,46.26926,203.54274,21.326054,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 6:00,1836000,3597.512,449.60608,424.58902,50.506348,2634.3982,913.8681,48.273808,842.1124,23.239172,50.506348,48.273808,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 7:00,1839600,3597.512,440.06833,423.57202,50.506348,45343.504,1093.9744,426.34906,919.895,21.469866,50.506348,426.34906,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 8:00,1843200,3597.512,530.1311,426.25113,50.506348,42991.355,1882.3901,439.888,307.03452,26.46883,50.506348,439.888,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 9:00,1846800,3597.512,475.38278,423.16776,50.506348,42657.41,1406.6052,438.3891,33.70494,20.837685,50.506348,438.3891,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 10:00,1850400,3597.512,426.0396,419.75967,50.506348,42850.453,1315.1456,436.84573,25.812895,15.642861,50.506348,436.84573,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 11:00,1854000,3597.512,414.74036,418.53665,50.506348,53239.3,1574.0532,743.35565,42.26229,14.028391,50.506348,743.35565,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 12:00,1857600,3597.512,324.31424,412.85785,50.506348,52909.387,1502.9445,730.7384,15.6618,7.8749657,50.506348,730.7384,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 13:00,1861200,3597.512,249.98389,408.07404,50.506348,52155.535,999.6687,558.05585,1.915659,4.2558794,50.506348,558.05585,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 14:00,1864800,3597.512,259.59842,407.58093,50.506348,49770.613,2025.0525,582.4668,54.562725,3.9477243,50.506348,582.4668,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 15:00,1868400,3597.512,276.9324,408.18503,50.506348,46813.715,1741.6232,544.9127,2.152479,4.346029,50.506348,544.9127,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 16:00,1872000,3597.512,198.23668,403.95505,50.506348,46770.15,1456.891,498.10486,1.3768908,1.7799662,50.506348,498.10486,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 17:00,1875600,3597.512,242.6815,405.57657,50.506348,46858.67,1452.4105,543.1133,1.2579018,2.6753697,50.506348,543.1133,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 18:00,1879200,3597.512,347.04092,411.2884,50.506348,49814.71,1484.7473,631.7353,1.0603185,6.616499,50.506348,631.7353,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 19:00,1882800,3597.512,392.46133,415.4743,50.506348,55065.523,1208.1165,647.0549,0.4446855,10.561618,50.506348,647.0549,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 20:00,1886400,3597.512,467.90726,419.48822,50.506348,52803.58,2024.266,677.8924,42.617683,15.485977,50.506348,677.8924,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 21:00,1890000,3597.512,445.39713,419.10303,50.506348,49494.742,1947.0428,583.78284,128.7453,14.982225,50.506348,583.78284,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 22:00,1893600,3597.512,545.2823,423.92038,50.506348,52202.113,2082.2803,713.64764,2.9842284,22.49411,50.506348,713.64764,130901.3,73179.4,-15784.6,-201976.5
+1/22/2023 23:00,1897200,3597.512,551.3634,425.0396,50.506348,50342.09,1773.4762,628.4022,17.27532,24.57417,50.506348,628.4022,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 0:00,1900800,3597.512,552.4235,424.97995,50.506348,45123.07,1529.7776,464.62292,95.42172,24.489973,50.506348,464.62292,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 1:00,1904400,3597.512,486.1171,421.9494,50.506348,44694.69,1442.0079,467.22723,31.467945,19.250452,50.506348,467.22723,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 2:00,1908000,3597.512,499.8207,423.17053,50.506348,167.39708,925.6294,17.661684,7.8807263,21.292007,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 3:00,1911600,3597.512,421.8848,421.07806,50.506348,165.15115,888.0212,17.661684,5.9361854,17.940178,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 4:00,1915200,3597.512,472.1885,424.18958,50.506348,162.90173,859.60675,17.661684,5.3406644,23.13847,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 5:00,1918800,3597.512,467.2393,425.08783,50.506348,3111.3455,972.74335,53.894165,475.85458,24.83548,50.506348,53.894165,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 6:00,1922400,3597.512,506.17435,426.47134,50.506348,3449.1104,1008.5073,68.30061,1580.1619,27.604174,50.506348,68.30061,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 7:00,1926000,3597.512,9084.436,702.35364,183.34988,45700.668,1428.3931,440.02026,1735.5887,3897.8037,183.34988,440.02026,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 8:00,1929600,3597.512,7981.2256,709.9996,139.74835,54966.113,2104.6328,755.61865,1064.6094,8460.279,139.74835,755.61865,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 9:00,1933200,3597.512,5943.4893,619.88965,64.83801,53504.094,1703.7163,700.8269,467.7241,6999.192,64.83801,700.8269,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 10:00,1936800,3597.512,4479.1387,580.55585,53.619984,52401.664,2144.4038,654.21246,192.98387,4542.4487,53.619984,654.21246,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 11:00,1940400,3597.512,3564.0283,554.7202,53.5798,51016.703,1656.7104,617.57385,146.37436,2637.5537,53.5798,617.57385,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 12:00,1944000,3597.512,3012.3645,533.62,54.59013,52617.15,2121.715,663.4827,56.246853,1563.5035,54.59013,663.4827,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 13:00,1947600,3597.512,2779.124,517.9598,55.570343,50007.543,2099.5127,576.8756,352.34537,1042.8812,55.570343,576.8756,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 14:00,1951200,3597.512,2533.611,506.75845,55.174744,48102.453,2023.515,580.16907,279.10617,785.8944,55.174744,580.16907,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 15:00,1954800,3597.512,2253.2864,496.41562,53.229393,47179.84,1964.0629,542.16614,9.164979,619.0789,53.229393,542.16614,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 16:00,1958400,3597.512,1991.0051,485.36005,53.19455,47756.887,1419.6943,540.244,41.24224,437.1727,53.19455,540.244,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 17:00,1962000,3597.512,1942.607,480.8177,54.128323,49369.09,1387.106,515.8408,91.674805,361.13287,54.128323,515.8408,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 18:00,1965600,3597.512,2395.1035,489.89426,52.43525,50549.688,2102.5623,619.4077,92.55715,520.1593,52.43525,619.4077,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 19:00,1969200,3597.512,3019.2468,510.3493,52.4161,53026.71,2252.717,689.5104,687.67523,932.4903,52.4161,689.5104,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 20:00,1972800,3597.512,253.08723,420.4634,1.1844871,52973.008,2292.5955,711.58716,945.0401,273.60812,1.1844871,711.58716,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 21:00,1976400,3597.512,279.12552,102.04427,52.08042,50767.11,2133.0234,684.25244,910.19196,0.002408498,52.08042,684.25244,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 22:00,1980000,3597.512,267.90012,214.32312,51.55275,52918.555,2202.6292,745.84894,72.48458,0.03466912,51.55275,745.84894,130901.3,73179.4,-15784.6,-201976.5
+1/23/2023 23:00,1983600,3597.512,132.29153,399.3251,50.506348,52132.62,1651.8673,676.63226,77.892586,0.44915885,50.506348,676.63226,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 0:00,1987200,3597.512,330.00266,408.0128,50.506348,48039.336,1455.2705,501.56857,573.59424,4.543371,50.506348,501.56857,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 1:00,1990800,3597.512,501.60342,418.25693,50.506348,45589.59,1352.493,466.51624,421.2632,14.388119,50.506348,466.51624,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 2:00,1994400,3597.512,606.099,426.5087,50.506348,165.76778,805.8875,17.661684,56.91393,28.25822,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 3:00,1998000,3597.512,667.7397,432.90396,50.506348,163.61269,766.60803,17.661684,36.769417,44.06346,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 4:00,2001600,3597.512,734.5663,438.55127,50.506348,161.36746,740.5747,17.661684,33.751247,62.412273,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 5:00,2005200,3597.512,697.5292,438.33798,50.506348,9017.437,1158.3746,327.90247,2339.2405,61.68447,50.506348,327.90247,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 6:00,2008800,3597.512,774.02277,440.09085,50.506348,8531.356,1748.7408,1216.1497,6494.664,68.317444,50.506348,1216.1497,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 7:00,2012400,3597.512,8855.87,679.5707,161.21022,48122.266,2009.7927,585.73474,6631.634,3873.2043,161.21022,585.73474,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 8:00,2016000,3597.512,7748.3794,687.40625,122.96519,58488.85,2206.113,830.27386,4895.77,7909.4536,122.96519,830.27386,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 9:00,2019600,3597.512,5684.017,603.81335,57.878532,55720.414,1753.8422,709.2006,2973.5056,6214.0747,57.878532,709.2006,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 10:00,2023200,3597.512,3781.4158,565.76996,53.581543,53441.59,2209.4036,651.51025,1233.9401,3407.892,53.581543,651.51025,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 11:00,2026800,3597.512,2859.148,533.2857,53.550304,51882.832,1716.1066,614.55225,664.57666,1602.0438,53.550304,614.55225,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 12:00,2030400,3597.512,2324.5493,505.316,54.568962,53209.8,2162.9016,663.0507,249.68996,774.2616,54.568962,663.0507,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 13:00,2034000,3597.512,2082.2427,487.6048,55.56785,49984.312,2176.342,574.17883,886.9674,439.37546,55.56785,574.17883,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 14:00,2037600,3597.512,1640.5736,470.04874,55.185078,47917.727,2099.22,542.1321,513.33,231.42044,55.185078,542.1321,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 15:00,2041200,3597.512,1248.1807,451.07172,53.235474,46954.605,1889.3037,544.2177,4.557418,106.92609,53.235474,544.2177,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 16:00,2044800,3597.512,1218.524,446.2014,53.20228,47473.207,1649.2107,540.88684,7.6287107,83.1438,53.20228,540.88684,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 17:00,2048400,3597.512,1253.5455,445.95544,54.088356,47559.758,1502.2737,540.0991,14.9347725,78.22835,54.088356,540.0991,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 18:00,2052000,3597.512,1591.9985,457.92365,52.460648,50223.168,2030.1538,576.70935,67.05903,154.42712,52.460648,576.70935,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 19:00,2055600,3597.512,2127.1064,479.03928,52.432438,52560.848,2254.2551,685.1367,847.5438,364.48975,52.432438,685.1367,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 20:00,2059200,3597.512,252.60019,399.3156,1.1885874,52769.004,2300.5425,711.77954,1118.5867,108.83799,1.1885874,711.77954,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 21:00,2062800,3597.512,270.3411,390.89676,1.4382396,50479.895,2229.7424,644.3393,1082.8269,68.56098,1.4382396,644.3393,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 22:00,2066400,3597.512,241.38095,93.22608,51.552467,52579.906,2074.408,746.5628,84.40943,0.001586674,51.552467,746.5628,130901.3,73179.4,-15784.6,-201976.5
+1/24/2023 23:00,2070000,3597.512,40.722393,180.6625,50.506348,51350.82,1607.75,676.92755,2.4754157,0.021328134,50.506348,676.92755,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 0:00,2073600,3597.512,99.07142,375.40424,50.506348,46298.67,1382.3745,503.353,39.023846,0.15838836,50.506348,503.353,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 1:00,2077200,3597.512,160.91937,399.23593,50.506348,44767.2,1282.8191,468.84924,26.020653,0.49429208,50.506348,468.84924,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 2:00,2080800,3597.512,212.65703,401.8892,50.506348,168.118,765.6693,17.661684,3.6414683,1.2361683,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 3:00,2084400,3597.512,249.93797,405.15314,50.506348,165.94003,730.1311,17.661684,2.046398,2.9009764,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 4:00,2088000,3597.512,305.61594,410.14386,50.506348,163.71667,703.5902,17.661684,1.5053705,6.3278995,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 5:00,2091600,3597.512,336.72964,413.99527,50.506348,3366.2786,835.78125,57.642197,520.9558,9.825848,50.506348,57.642197,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 6:00,2095200,3597.512,436.2984,419.89853,50.506348,3780.816,1626.9811,1097.5011,1744.8058,17.177364,50.506348,1097.5011,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 7:00,2098800,3597.512,4399.2764,522.3215,50.945465,45048.17,1850.5798,459.54968,1961.7881,1317.5916,50.945465,459.54968,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 8:00,2102400,3597.512,5488.6743,573.74475,60.254444,54949.81,2108.3865,761.16797,1208.003,3524.1719,60.254444,761.16797,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 9:00,2106000,3597.512,3859.8987,555.17126,53.415195,53352.258,1693.9985,703.6745,476.38376,2711.9736,53.415195,703.6745,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 10:00,2109600,3597.512,3045.0488,534.5144,53.6414,52184.23,2148.6963,656.94116,170.5939,1657.368,53.6414,656.94116,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 11:00,2113200,3597.512,2471.1082,511.0072,53.60083,50820.2,1685.7062,622.4426,92.06457,931.843,53.60083,622.4426,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 12:00,2116800,3597.512,2038.6884,489.67245,54.624023,52154.65,2081.0598,628.6114,35.69516,489.72168,54.624023,628.6114,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 13:00,2120400,3597.512,1830.926,476.17468,55.662018,49707.105,2122.0332,578.2264,442.43802,292.74792,55.662018,578.2264,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 14:00,2124000,3597.512,1472.2422,460.4777,55.215706,48011.4,2091.5774,546.0912,465.67673,154.67232,55.215706,546.0912,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 15:00,2127600,3597.512,1226.3905,448.51495,53.258415,46603.812,1983.6626,504.26797,116.88977,95.067726,53.258415,504.26797,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 16:00,2131200,3597.512,1174.3265,444.29016,53.223675,47004.652,1581.5349,545.5717,1.5538464,75.97616,53.223675,545.5717,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 17:00,2134800,3597.512,1238.1344,445.8647,54.16652,48309.58,1473.2644,524.4285,3.3317716,78.71387,54.16652,524.4285,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 18:00,2138400,3597.512,1430.2455,452.55933,52.45923,50027.56,2037.7593,583.5403,88.00777,121.51467,52.45923,583.5403,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 19:00,2142000,3597.512,1892.6538,470.6662,52.44281,53421.336,2290.489,723.1166,879.2991,268.5101,52.44281,723.1166,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 20:00,2145600,3597.512,252.12424,393.9329,1.1934484,52932.99,2310.1946,723.25354,1148.6788,83.4481,1.1934484,723.25354,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 21:00,2149200,3597.512,269.83414,385.80014,1.4440565,50463.953,2232.9028,648.04474,1128.3102,51.49684,1.4440565,648.04474,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 22:00,2152800,3597.512,233.28351,383.7277,0.9606575,52470.887,2092.781,750.133,87.47868,46.641193,0.9606575,750.133,130901.3,73179.4,-15784.6,-201976.5
+1/25/2023 23:00,2156400,3597.512,18.147812,100.47491,50.506348,51495.617,1620.1279,678.02655,7.0613213,0.002454272,50.506348,678.02655,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 0:00,2160000,3597.512,61.759174,243.43301,50.506348,46662.598,1404.6797,504.63373,103.38299,0.050606534,50.506348,504.63373,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 1:00,2163600,3597.512,143.56502,398.1087,50.506348,44932.215,1300.3527,469.7008,62.529396,0.34656954,50.506348,469.7008,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 2:00,2167200,3597.512,238.61742,402.486,50.506348,169.9997,772.8639,17.661684,7.730436,1.591616,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 3:00,2170800,3597.512,303.9038,407.8554,50.506348,167.7785,735.9591,17.661684,4.407738,4.843263,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 4:00,2174400,3597.512,348.46677,413.2526,50.506348,165.51367,709.30255,17.661684,3.5476604,9.334435,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 5:00,2178000,3597.512,392.0243,417.81464,50.506348,5315.881,919.7667,117.60003,1068.8859,14.619164,50.506348,117.60003,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 6:00,2181600,3597.512,453.83377,421.72043,50.506348,5492.4014,1597.8689,1027.0273,3344.6675,20.4519,50.506348,1027.0273,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 7:00,2185200,3597.512,5222.385,545.22955,62.662247,45827.63,1905.18,485.69208,3382.8027,1735.578,62.662247,485.69208,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 8:00,2188800,3597.512,5747.682,586.50757,64.8624,55599.008,2166.5713,759.8956,2028.2385,4179.3364,64.8624,759.8956,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 9:00,2192400,3597.512,4092.5896,560.938,53.40409,54011.8,1740.2987,702.0882,1051.625,3113.0686,53.40409,702.0882,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 10:00,2196000,3597.512,3134.8782,538.71497,53.633335,52672.336,2178.0159,654.85504,450.9762,1844.404,53.633335,654.85504,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 11:00,2199600,3597.512,2491.2603,512.61664,53.591404,51333.25,1693.038,622.1708,268.6246,978.18414,53.591404,622.1708,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 12:00,2203200,3597.512,2012.923,488.63608,54.621,52967.734,2143.6375,675.3629,80.35252,477.5723,54.621,675.3629,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 13:00,2206800,3597.512,1988.8561,479.72495,55.63634,49734.83,2153.439,574.6226,813.8351,338.23935,55.63634,574.6226,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 14:00,2210400,3597.512,1771.8564,472.58902,55.225216,47902.035,2129.3503,550.1597,883.14636,261.629,55.225216,550.1597,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 15:00,2214000,3597.512,1520.8453,462.78946,53.262207,46815.457,2004.247,549.4792,96.6147,189.20435,53.262207,549.4792,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 16:00,2217600,3597.512,1401.0234,456.1881,53.22937,47441.62,1547.5088,545.9871,15.303906,140.85004,53.22937,545.9871,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 17:00,2221200,3597.512,1394.2848,454.34805,54.16301,48649.785,1520.6731,525.3641,32.967617,123.47295,54.16301,525.3641,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 18:00,2224800,3597.512,1650.7861,461.20154,52.45372,50307.133,2053.2812,623.659,13.834783,183.14471,52.45372,623.659,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 19:00,2228400,3597.512,2100.4946,478.26978,52.430122,53564.605,2256.9883,709.32916,636.4847,361.4081,52.430122,709.32916,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 20:00,2232000,3597.512,252.94492,398.31082,1.187368,53039.977,2297.2295,718.18536,1021.9811,106.27629,1.187368,718.18536,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 21:00,2235600,3597.512,270.77975,389.89905,1.4378695,50555.336,2225.6335,645.6526,1051.8682,66.74622,1.4378695,645.6526,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 22:00,2239200,3597.512,234.02835,387.88348,0.9559493,52419.977,2152.455,704.0108,82.58955,61.090816,0.9559493,704.0108,130901.3,73179.4,-15784.6,-201976.5
+1/26/2023 23:00,2242800,3597.512,6.3726406,386.66125,0.10372095,51247.57,1602.0885,677.79175,1.5183256,59.80608,0.10372095,677.79175,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 0:00,2246400,3597.512,16.399784,94.63941,50.506348,46394.32,1380.3219,504.6513,34.598663,0.001848529,50.506348,504.6513,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 1:00,2250000,3597.512,29.436995,135.60008,50.506348,44774.74,1277.8934,469.7849,18.738983,0.008390651,50.506348,469.7849,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 2:00,2253600,3597.512,84.72001,327.02673,50.506348,170.09508,762.6733,17.661684,2.6134436,0.11189204,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 3:00,2257200,3597.512,129.93408,397.90424,50.506348,167.81288,728.0463,17.661684,1.4763165,0.35614413,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 4:00,2260800,3597.512,180.0526,400.68427,50.506348,165.5277,701.7623,17.661684,1.04472,1.0037339,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 5:00,2264400,3597.512,210.86722,403.01712,50.506348,2454.0564,804.9299,46.26926,312.18774,1.9785371,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 6:00,2268000,3597.512,255.68726,406.08655,50.506348,3106.8687,1593.5625,1100.8258,1160.6439,3.8714428,50.506348,1100.8258,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 7:00,2271600,3597.512,3280.3518,499.26248,50.506348,44575.836,1832.3368,449.7067,1328.9906,747.89557,50.506348,449.7067,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 8:00,2275200,3597.512,4606.1934,548.356,52.975727,54373.266,2145.5813,766.22375,660.3222,2365.4155,52.975727,766.22375,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 9:00,2278800,3597.512,3215.5642,537.16956,53.438183,52885.938,1686.9373,706.4428,189.49081,1795.7106,53.438183,706.4428,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 10:00,2282400,3597.512,2280.5022,508.31998,53.689877,52264.473,1668.4751,648.2087,30.17811,877.6327,53.689877,648.2087,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 11:00,2286000,3597.512,1764.7325,479.60425,53.61984,50410.465,1499.6829,626.126,8.302887,365.36313,53.61984,626.126,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 12:00,2289600,3597.512,1405.3047,457.77377,54.63119,51956.188,1402.4767,637.99567,2.3053787,143.37154,54.63119,637.99567,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 13:00,2293200,3597.512,1208.1085,444.6483,55.716927,49901.016,2083.6582,576.4368,334.59546,69.172,55.716927,576.4368,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 14:00,2296800,3597.512,1133.2728,439.26553,55.230034,48242.74,2020.4518,547.8707,163.05095,51.800014,55.230034,547.8707,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 15:00,2300400,3597.512,1017.23773,435.02515,53.256058,46980.293,1802.0725,504.28168,2.7524428,44.928947,53.256058,504.28168,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 16:00,2304000,3597.512,1018.9446,434.27008,53.217953,47252.887,1388.2485,546.278,1.2073373,42.913277,53.217953,546.278,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 17:00,2307600,3597.512,1110.3392,437.12817,54.118053,47444.11,1347.4509,544.6905,4.682606,48.678986,54.118053,544.6905,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 18:00,2311200,3597.512,1250.6046,444.21753,52.479027,50219.773,1991.1794,572.2862,9.023045,81.056564,52.479027,572.2862,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 19:00,2314800,3597.512,1848.8894,466.56866,52.43815,53372.863,2260.4536,707.7664,700.95135,232.29628,52.43815,707.7664,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 20:00,2318400,3597.512,252.97455,392.04483,1.1904902,53049.168,2266.4504,717.6852,675.6108,77.30678,1.1904902,717.6852,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 21:00,2322000,3597.512,270.65213,384.0359,1.4390911,50632.324,2218.0945,644.01605,968.8551,47.53599,1.4390911,644.01605,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 22:00,2325600,3597.512,233.9238,381.9689,0.95671177,52425.797,2153.745,703.7658,85.01935,42.956295,0.95671177,703.7658,130901.3,73179.4,-15784.6,-201976.5
+1/27/2023 23:00,2329200,3597.512,6.3694897,380.71082,0.10372095,51421.46,1613.0978,677.77155,4.5227776,41.855434,0.10372095,677.77155,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 0:00,2332800,3597.512,6.3695507,380.5991,0.10372095,46391.33,1389.363,506.21408,44.0984,41.573227,0.10372095,506.21408,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 1:00,2336400,3597.512,41.56399,174.55455,50.506348,44807.13,1281.7274,470.13428,19.0742,0.019421792,50.506348,470.13428,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 2:00,2340000,3597.512,108.57941,397.3806,50.506348,170.14178,766.1044,17.661684,2.6483173,0.18813379,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 3:00,2343600,3597.512,221.69191,401.8592,50.506348,167.85797,731.40314,17.661684,1.4778125,1.5272467,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 4:00,2347200,3597.512,278.627,406.5138,50.506348,165.57555,705.06885,17.661684,1.0392355,4.280155,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 5:00,2350800,3597.512,371.89813,414.1642,50.506348,4100.9243,867.2436,74.77226,699.2751,10.781924,50.506348,74.77226,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 6:00,2354400,3597.512,401.53073,418.10596,50.506348,4503.8643,923.0778,106.2233,2411.985,15.658395,50.506348,106.2233,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 7:00,2358000,3597.512,486.99344,422.79422,50.506348,47806.562,1187.9896,450.3803,2992.9265,23.138597,50.506348,450.3803,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 8:00,2361600,3597.512,658.9588,430.00076,50.506348,44329.906,1818.5808,440.71423,1583.0956,39.07799,50.506348,440.71423,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 9:00,2365200,3597.512,540.4834,425.02966,50.506348,43749.562,1448.4669,439.3849,505.94766,27.485144,50.506348,439.3849,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 10:00,2368800,3597.512,392.9034,416.25232,50.506348,53776.676,2221.0046,729.11664,193.42824,13.267664,50.506348,729.11664,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 11:00,2372400,3597.512,326.92712,411.00046,50.506348,52610.684,1738.1018,694.407,123.13911,7.7135577,50.506348,694.407,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 12:00,2376000,3597.512,273.71783,407.3271,50.506348,52935.438,2156.6445,696.99146,51.67856,4.8571973,50.506348,696.99146,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 13:00,2379600,3597.512,262.0046,405.69943,50.506348,52878.492,1769.9008,714.93176,8.328712,3.8024943,50.506348,714.93176,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 14:00,2383200,3597.512,287.54327,406.6646,50.506348,52049.02,2105.442,692.3221,5.8393154,4.4318304,50.506348,692.3221,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 15:00,2386800,3597.512,335.9279,409.5007,50.506348,50155.17,2051.5437,626.96985,10.725747,6.4787054,50.506348,626.96985,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 16:00,2390400,3597.512,331.82022,409.83728,50.506348,50590.062,1901.5607,634.86053,23.39979,6.758133,50.506348,634.86053,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 17:00,2394000,3597.512,431.27545,415.029,50.506348,49102.414,1916.6299,584.6316,39.745552,11.87119,50.506348,584.6316,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 18:00,2397600,3597.512,483.63657,418.76395,50.506348,50720.45,1978.241,635.3468,39.004498,16.73952,50.506348,635.3468,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 19:00,2401200,3597.512,556.93097,422.61557,50.506348,53945.656,2238.4146,719.5281,312.83432,23.003183,50.506348,719.5281,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 20:00,2404800,3597.512,585.41797,425.1012,50.506348,52291.555,2307.9563,695.39685,1342.6189,27.827328,50.506348,695.39685,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 21:00,2408400,3597.512,647.0674,428.6365,50.506348,51099.305,2237.0828,665.81036,814.0146,35.88203,50.506348,665.81036,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 22:00,2412000,3597.512,706.57196,432.20987,50.506348,52520.516,2238.9836,707.4459,449.69647,45.53607,50.506348,707.4459,130901.3,73179.4,-15784.6,-201976.5
+1/28/2023 23:00,2415600,3597.512,685.34186,431.55573,50.506348,49616.094,2047.5082,634.95575,8.790049,43.676685,50.506348,634.95575,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 0:00,2419200,3597.512,828.23004,436.9558,50.506348,47849.594,1824.5933,547.42456,34.055145,61.007664,50.506348,547.42456,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 1:00,2422800,3597.512,932.3434,442.0847,50.506348,46326.926,1541.2942,506.8716,34.58877,81.5483,50.506348,506.8716,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 2:00,2426400,3597.512,841.8253,440.34967,50.506348,170.35071,927.37317,17.661684,5.314033,74.162796,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 3:00,2430000,3597.512,797.39886,440.18378,50.506348,168.22595,864.31335,17.661684,3.0756524,73.51365,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 4:00,2433600,3597.512,830.48413,443.31772,50.506348,165.97467,822.0574,17.661684,2.399999,87.25331,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 5:00,2437200,3597.512,762.92194,441.46683,50.506348,4167.782,971.60504,76.05998,712.5524,78.990005,50.506348,76.05998,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 6:00,2440800,3597.512,806.5834,442.54935,50.506348,4358.749,1011.53265,100.48979,2354.791,83.80906,50.506348,100.48979,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 7:00,2444400,3597.512,745.6442,439.77805,50.506348,47288.773,1147.8824,423.1022,2537.0742,71.99408,50.506348,423.1022,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 8:00,2448000,3597.512,927.8798,443.8372,50.506348,44360.727,1812.9653,440.55304,1355.1631,89.84706,50.506348,440.55304,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 9:00,2451600,3597.512,816.4816,439.73267,50.506348,43698.996,1439.8983,439.2549,391.84882,71.876205,50.506348,439.2549,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 10:00,2455200,3597.512,866.56134,440.01144,50.506348,44404.14,1357.4587,437.9142,408.06723,73.04173,50.506348,437.9142,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 11:00,2458800,3597.512,712.8651,434.04126,50.506348,54002.85,1587.1405,724.2971,402.5599,51.44878,50.506348,724.2971,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 12:00,2462400,3597.512,519.8103,422.85587,50.506348,53616.25,1511.7461,720.2885,166.3256,23.697073,50.506348,720.2885,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 13:00,2466000,3597.512,406.83344,416.06265,50.506348,51008.605,2070.8928,628.0808,29.770088,13.312359,50.506348,628.0808,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 14:00,2469600,3597.512,486.55472,418.77594,50.506348,50185.973,2082.7568,625.3791,59.197308,16.99694,50.506348,625.3791,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 15:00,2473200,3597.512,449.55823,417.69412,50.506348,47505.31,1983.835,547.18604,15.151138,15.471656,50.506348,547.18604,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 16:00,2476800,3597.512,500.3455,419.87924,50.506348,47764.293,1439.8573,547.0508,32.40847,18.690996,50.506348,547.0508,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 17:00,2480400,3597.512,536.4593,422.07318,50.506348,47816.08,1392.4104,545.9085,37.63744,22.355396,50.506348,545.9085,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 18:00,2484000,3597.512,642.3956,426.4905,50.506348,50820.36,1443.5581,633.42413,42.02783,31.212479,50.506348,633.42413,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 19:00,2487600,3597.512,851.3889,436.50034,50.506348,52841.97,2168.6152,698.863,78.85362,59.930195,50.506348,698.863,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 20:00,2491200,3597.512,832.9555,437.2792,50.506348,52464.08,2168.5608,669.44775,265.94794,62.76665,50.506348,669.44775,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 21:00,2494800,3597.512,813.2321,436.92853,50.506348,49726.113,2111.0508,595.72217,387.96466,61.518936,50.506348,595.72217,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 22:00,2498400,3597.512,837.7814,438.1584,50.506348,53510.883,2182.6836,746.3429,19.158537,66.107834,50.506348,746.3429,130901.3,73179.4,-15784.6,-201976.5
+1/29/2023 23:00,2502000,3597.512,1092.0624,447.49323,50.506348,51746.742,2130.2585,634.02747,198.19623,109.10998,50.506348,634.02747,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 0:00,2505600,3597.512,1166.4496,452.54068,50.506348,46331.71,1649.8417,466.36984,435.59192,139.42656,50.506348,466.36984,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 1:00,2509200,3597.512,1006.0385,446.93646,50.506348,45494.242,1503.7197,467.64005,186.82414,106.17833,50.506348,467.64005,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 2:00,2512800,3597.512,968.25757,445.5404,50.506348,171.08273,941.03436,17.661684,22.55116,98.922554,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 3:00,2516400,3597.512,872.4455,444.51505,50.506348,168.8036,888.82196,17.661684,13.695245,93.838646,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 4:00,2520000,3597.512,743.0992,439.58817,50.506348,166.46335,853.7321,17.661684,11.983395,71.89532,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 5:00,2523600,3597.512,869.849,444.61627,50.506348,5254.6924,1039.3488,112.77722,1033.13,94.41058,50.506348,112.77722,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 6:00,2527200,3597.512,827.66956,444.06363,50.506348,4787.6143,1063.4553,120.77161,2987.571,91.75554,50.506348,120.77161,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 7:00,2530800,3597.512,13073.604,938.7914,386.6419,46437.83,1478.9707,453.4591,2719.5808,6892.818,386.6419,453.4591,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 8:00,2534400,3597.512,10197.346,840.3696,231.56108,56792.992,2116.2478,792.8942,1374.2631,13412.913,231.56108,792.8942,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 9:00,2538000,3597.512,7348.303,692.9011,101.52727,54496.15,1709.6542,703.5275,678.6691,11064.316,101.52727,703.5275,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 10:00,2541600,3597.512,5864.6123,622.7482,60.75699,53029.824,2156.3237,649.7398,312.0218,7809.378,60.75699,649.7398,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 11:00,2545200,3597.512,4314.7827,578.43335,53.570175,51853.832,1673.445,621.1249,235.07205,4514.016,53.570175,621.1249,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 12:00,2548800,3597.512,3366.1284,548.6949,54.55353,52974.61,1567.7692,672.22485,84.77131,2332.4912,54.55353,672.22485,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 13:00,2552400,3597.512,2841.3828,524.5467,55.590893,50444.754,2098.4187,571.79834,347.30957,1278.2205,55.590893,571.79834,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 14:00,2556000,3597.512,2291.554,500.6293,55.191483,48674.37,2017.0077,542.2055,122.95241,694.07764,55.191483,542.2055,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 15:00,2559600,3597.512,1800.9246,477.81357,53.219383,47592.793,1682.1409,542.7202,2.237117,355.48813,53.219383,542.7202,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 16:00,2563200,3597.512,1535.019,462.59097,53.19195,47854.367,1374.8365,542.48083,7.5438833,195.0852,53.19195,542.48083,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 17:00,2566800,3597.512,1550.0901,459.45093,54.142773,49251.637,1310.8726,518.8366,15.794526,163.02905,54.142773,518.8366,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 18:00,2570400,3597.512,2015.2886,472.1793,52.438885,50480.387,2004.467,578.81036,11.40222,296.82544,52.438885,578.81036,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 19:00,2574000,3597.512,2646.612,494.6766,52.424267,53248.58,2241.5283,687.89026,650.33923,633.59454,52.424267,687.89026,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 20:00,2577600,3597.512,254.32652,409.752,1.1824762,53107.87,2297.203,708.9144,1068.5791,188.46815,1.1824762,708.9144,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 21:00,2581200,3597.512,272.3082,400.8686,1.4328189,50679.363,2228.4265,641.29755,1061.9349,124.10455,1.4328189,641.29755,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 22:00,2584800,3597.512,262.37643,161.23454,51.54936,52786.812,2116.6309,742.6372,75.28635,0.014966327,51.54936,742.6372,130901.3,73179.4,-15784.6,-201976.5
+1/30/2023 23:00,2588400,3597.512,90.9793,346.15826,50.506348,51613.73,1601.371,673.80005,4.6947474,0.13062535,50.506348,673.80005,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 0:00,2592000,3597.512,205.5077,399.7237,50.506348,46936.633,1397.2673,506.17816,89.31396,0.942647,50.506348,506.17816,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 1:00,2595600,3597.512,303.54987,404.5313,50.506348,45171.816,1294.7598,469.91415,56.416138,3.3394387,50.506348,469.91415,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 2:00,2599200,3597.512,361.79697,409.54526,50.506348,170.66985,768.9546,17.661684,6.9253144,6.8907547,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 3:00,2602800,3597.512,418.18274,415.8771,50.506348,168.43198,732.7889,17.661684,3.9345667,13.438482,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 4:00,2606400,3597.512,512.88544,423.5746,50.506348,166.14658,706.4728,17.661684,3.1351588,25.631256,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 5:00,2610000,3597.512,492.27512,424.1931,50.506348,3789.2908,847.6376,65.74583,609.5841,26.871698,50.506348,65.74583,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 6:00,2613600,3597.512,543.35016,425.89825,50.506348,4499.6045,1552.1567,1097.4843,2206.366,30.489172,50.506348,1097.4843,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 7:00,2617200,3597.512,6919.8833,596.21893,98.295456,45935.49,1853.398,478.7624,2634.137,2555.9116,98.295456,478.7624,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 8:00,2620800,3597.512,6447.024,621.06036,84.24105,56630.31,2124.9043,800.2689,1492.6278,5548.2837,84.24105,800.2689,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 9:00,2624400,3597.512,4993.3945,577.7792,53.397163,54912.746,1717.2141,709.0264,1080.9867,4487.324,53.397163,709.0264,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 10:00,2628000,3597.512,3705.257,555.5265,53.637417,53173.1,2187.9456,653.7074,609.86865,2802.4377,53.637417,653.7074,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 11:00,2631600,3597.512,2843.3157,527.51965,53.589058,51841.64,1700.4938,625.29016,346.92096,1446.7848,53.589058,625.29016,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 12:00,2635200,3597.512,2449.2986,505.5722,54.617085,53111.92,2144.2146,667.4717,115.09279,812.526,54.617085,667.4717,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 13:00,2638800,3597.512,2463.4722,497.5989,55.61975,50152.28,2155.3542,577.89386,745.1915,630.8857,55.61975,577.89386,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 14:00,2642400,3597.512,1888.9288,480.35107,55.233776,48151.86,2131.309,548.74243,871.7313,364.4549,55.233776,548.74243,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 15:00,2646000,3597.512,1555.965,464.3009,53.260723,47120.305,2007.155,550.6293,96.88488,210.62805,53.260723,550.6293,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 16:00,2649600,3597.512,1484.0796,458.4494,53.22862,47771.055,1548.8472,548.0639,17.791153,163.58424,53.22862,548.0639,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 17:00,2653200,3597.512,1561.6093,459.60135,54.171097,49323.64,1456.305,524.7475,58.554417,165.18188,54.171097,524.7475,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 18:00,2656800,3597.512,2102.8364,474.8819,52.44913,50934.3,2111.259,629.4141,90.432274,330.64902,52.44913,629.4141,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 19:00,2660400,3597.512,2651.2866,495.61075,52.42821,52944.895,2252.7712,684.03345,741.8944,654.2969,52.42821,684.03345,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 20:00,2664000,3597.512,253.69342,409.72073,1.1869596,52989.59,2292.9846,709.23047,976.839,189.55237,1.1869596,709.23047,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 21:00,2667600,3597.512,279.12637,97.74236,52.089115,50704.703,2222.608,640.3983,979.936,0.0020671,52.089115,640.3983,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 22:00,2671200,3597.512,261.83157,185.3366,51.5518,52804.016,2190.662,743.6666,76.18309,0.023159502,51.5518,743.6666,130901.3,73179.4,-15784.6,-201976.5
+1/31/2023 23:00,2674800,3597.512,69.321686,314.31497,50.506348,51682.77,1616.4392,674.69415,11.29447,0.10157237,50.506348,674.69415,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 0:00,2678400,3597.512,123.314,396.87436,50.506348,46890.23,1402.2656,507.34875,91.978966,0.34281734,50.506348,507.34875,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 1:00,2682000,3597.512,138.09679,397.25916,50.506348,45079.723,1291.7681,470.8126,40.47159,0.40553588,50.506348,470.8126,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 2:00,2685600,3597.512,111.149414,396.15793,50.506348,170.54214,767.9276,17.661684,4.865486,0.2471975,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 3:00,2689200,3597.512,85.56103,368.5798,50.506348,168.30376,732.3281,17.661684,2.762363,0.15342349,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 4:00,2692800,3597.512,70.76924,318.87158,50.506348,165.95525,705.9593,17.661684,2.135711,0.105514556,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 5:00,2696400,3597.512,59.802998,276.2918,50.506348,1184.0834,762.84064,46.26926,69.33825,0.0722144,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 6:00,2700000,3597.512,59.65027,276.51303,50.506348,161.80661,708.5112,17.661684,46.356903,0.07237337,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 7:00,2703600,3597.512,2054.5227,468.44086,50.506348,42120.637,1078.0234,409.89987,30.706999,279.5894,50.506348,409.89987,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 8:00,2707200,3597.512,3381.5986,518.89404,53.021503,54319.465,2232.6018,809.02924,22.631731,1194.7751,53.021503,809.02924,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 9:00,2710800,3597.512,2427.656,507.1728,53.4739,52321.2,1792.5182,721.1021,1.6769644,877.7242,53.4739,721.1021,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 10:00,2714400,3597.512,1902.455,485.17914,53.736885,51719.9,1601.4474,609.40326,1.6164143,455.85593,53.736885,609.40326,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 11:00,2718000,3597.512,1635.9413,468.52585,53.660522,50319.258,1506.59,635.46106,1.0815247,247.86975,53.660522,635.46106,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 12:00,2721600,3597.512,1423.5985,456.01746,54.69708,51921.984,2049.9927,630.64905,16.85066,137.53795,54.69708,630.64905,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 13:00,2725200,3597.512,1351.0886,449.59747,55.7386,49771.324,2113.138,588.7458,493.99747,95.10685,55.7386,588.7458,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 14:00,2728800,3597.512,1147.845,440.81647,55.29318,48018.816,2067.0046,553.21533,513.7221,59.948265,55.29318,553.21533,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 15:00,2732400,3597.512,903.55994,429.51196,53.28956,46857.48,1902.7064,512.6902,9.779534,32.882484,53.28956,512.6902,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 16:00,2736000,3597.512,884.6455,427.03314,53.251003,47166.906,1798.3539,506.94888,2.665416,27.545107,53.251003,506.94888,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 17:00,2739600,3597.512,966.94995,429.39386,54.157955,47251.08,1495.3112,505.39453,1.4710271,30.664028,54.157955,505.39453,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 18:00,2743200,3597.512,1096.152,436.30353,52.49726,52243.984,1098.7485,554.9737,0.3701763,54.159286,52.49726,554.9737,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 19:00,2746800,3597.512,1678.003,458.76535,52.44504,52997.703,2089.393,677.5538,113.30995,173.18715,52.44504,677.5538,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 20:00,2750400,3597.512,254.37434,386.55008,1.1845955,53319.855,2131.8193,703.1282,191.63922,59.52554,1.1845955,703.1282,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 21:00,2754000,3597.512,272.25757,378.8621,1.4333023,51182.78,2022.0991,635.4763,51.259964,35.876522,1.4333023,635.4763,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 22:00,2757600,3597.512,235.16089,376.71994,0.95061964,53024.527,2048.0208,691.0241,6.361357,31.938074,0.95061964,691.0241,130901.3,73179.4,-15784.6,-201976.5
+2/1/2023 23:00,2761200,3597.512,6.436757,375.42255,0.10372095,51302.79,1495.641,627.1855,1.1335667,30.93349,0.10372095,627.1855,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 0:00,2764800,3597.512,6.40302,375.29303,0.10372095,46317.5,1390.539,507.77975,6.200707,30.658926,0.10372095,507.77975,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 1:00,2768400,3597.512,6.4028697,375.2525,0.10372095,44587.457,1265.65,428.93054,4.628441,30.582932,0.10372095,428.93054,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 2:00,2772000,3597.512,6.367944,375.23672,0.10372095,170.11467,815.89795,17.661684,2.8095827,30.561815,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 3:00,2775600,3597.512,6.3651495,375.2278,0.10372095,167.7405,786.77106,17.661684,2.2814333,30.555893,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 4:00,2779200,3597.512,6.327959,375.22083,0.10372095,165.40141,763.1687,17.661684,2.0533369,30.554182,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 5:00,2782800,3597.512,9.768919,73.98697,50.506348,1630.5929,838.38385,46.26926,140.64253,0.000446371,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 6:00,2786400,3597.512,29.754976,147.64297,50.506348,2062.8325,1605.7993,1091.1232,519.12994,0.011537098,50.506348,1091.1232,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 7:00,2790000,3597.512,2538.5544,478.10907,50.506348,43892.47,1819.7046,450.8246,597.5975,401.85266,50.506348,450.8246,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 8:00,2793600,3597.512,3619.5078,526.3103,52.988327,55021.22,2271.5193,810.7355,213.41832,1435.855,52.988327,810.7355,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 9:00,2797200,3597.512,2582.47,512.4954,53.455868,52889.816,1699.1566,718.1658,52.364597,1011.951,53.455868,718.1658,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 10:00,2800800,3597.512,2001.6727,489.03467,53.70035,51582.695,2100.9575,662.92816,20.507565,519.6996,53.70035,662.92816,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 11:00,2804400,3597.512,1640.4266,469.44635,53.65551,50510.844,1658.4675,636.57764,6.096135,258.77454,53.65551,636.57764,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 12:00,2808000,3597.512,1326.0236,452.78436,54.73392,52807.95,1570.6271,611.4259,2.7595994,118.38735,54.73392,611.4259,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 13:00,2811600,3597.512,1244.445,443.994,55.724457,50143.094,2053.955,585.8744,139.32216,70.840935,55.724457,585.8744,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 14:00,2815200,3597.512,1093.2008,436.43176,55.259575,48446.824,2006.6473,548.40717,109.5859,46.313335,55.259575,548.40717,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 15:00,2818800,3597.512,923.67957,429.11826,53.26577,47162.5,1811.5975,507.31317,2.7849674,32.370373,53.26577,507.31317,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 16:00,2822400,3597.512,930.6148,428.43713,53.229336,47400.14,1390.8873,549.7078,1.0689759,30.918999,53.229336,549.7078,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 17:00,2826000,3597.512,998.51483,430.5415,54.14088,47450.38,1346.6526,548.7388,0.95764995,33.68195,54.14088,548.7388,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 18:00,2829600,3597.512,1141.5176,437.63544,52.486706,50690.887,1937.6632,585.9421,7.2031837,59.239296,52.486706,585.9421,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 19:00,2833200,3597.512,1757.4943,461.41675,52.445126,53950.285,2153.1677,722.1675,347.43716,195.66187,52.445126,722.1675,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 20:00,2836800,3597.512,253.79834,388.4379,1.1894461,53365.09,2162.4792,718.099,529.54144,67.00442,1.1894461,718.099,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 21:00,2840400,3597.512,271.6735,380.61282,1.4398443,50859.523,2080.2563,642.5775,544.6867,40.775368,1.4398443,642.5775,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 22:00,2844000,3597.512,234.59865,378.50974,0.95470864,52648.387,2035.4305,699.62476,48.900017,36.572838,0.95470864,699.62476,130901.3,73179.4,-15784.6,-201976.5
+2/2/2023 23:00,2847600,3597.512,6.419233,377.23367,0.10372095,51254.742,1525.4417,675.6071,1.1169072,35.530987,0.10372095,675.6071,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 0:00,2851200,3597.512,6.385534,377.11526,0.10372095,46351.92,1371.6725,509.75546,10.532133,35.254795,0.10372095,509.75546,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 1:00,2854800,3597.512,6.38549,377.0791,0.10372095,44568.168,1233.629,429.91183,7.1631427,35.180744,0.10372095,429.91183,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 2:00,2858400,3597.512,26.833578,61.773693,50.506348,170.01099,777.09125,17.661684,4.25895,0.000162449,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 3:00,2862000,3597.512,58.09121,249.74818,50.506348,167.94994,745.4549,17.661684,3.5497434,0.05515976,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 4:00,2865600,3597.512,112.64977,396.00943,50.506348,165.76584,720.6287,17.661684,3.2817688,0.26753214,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 5:00,2869200,3597.512,209.95847,400.91046,50.506348,2944.281,834.22266,51.41887,435.0822,1.5712804,50.506348,51.41887,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 6:00,2872800,3597.512,257.99808,404.51346,50.506348,3341.0261,1555.7878,1000.03613,1406.6553,3.6569192,50.506348,1000.03613,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 7:00,2876400,3597.512,3097.6038,493.78433,50.506348,45064.8,1854.6938,458.2676,1625.4897,663.31104,50.506348,458.2676,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 8:00,2880000,3597.512,4046.5588,537.8269,52.84166,55927.984,2166.3499,807.909,917.3925,1905.4395,52.84166,807.909,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 9:00,2883600,3597.512,3084.7417,528.0828,53.504963,53678.062,1708.6768,715.1419,417.59763,1485.2535,53.504963,715.1419,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 10:00,2887200,3597.512,2342.2322,504.7026,53.699615,52177.336,2144.389,659.84064,138.88806,823.33636,53.699615,659.84064,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 11:00,2890800,3597.512,1823.5004,479.09793,53.63836,51038.32,1676.7012,634.85455,54.68559,374.76328,53.63836,634.85455,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 12:00,2894400,3597.512,1571.8092,463.5203,54.680046,52068.67,2064.7087,624.97485,21.796041,195.39296,54.680046,624.97485,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 13:00,2898000,3597.512,1309.8535,448.80405,55.7235,50022.32,2128.88,588.17035,470.3345,92.71903,55.7235,588.17035,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 14:00,2901600,3597.512,1142.0149,439.2476,55.27564,48290.176,2042.2064,551.34467,182.80817,55.593575,55.27564,551.34467,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 15:00,2905200,3597.512,997.8913,433.1129,53.274376,47162.285,1817.227,508.36728,7.9197884,42.895767,53.274376,508.36728,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 16:00,2908800,3597.512,993.0265,431.73532,53.23241,47438.582,1389.1041,550.08417,1.0726296,39.279877,53.23241,550.08417,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 17:00,2912400,3597.512,1067.6346,433.8283,54.14235,47476.348,1335.5302,549.00616,0.82791317,42.501175,54.14235,549.00616,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 18:00,2916000,3597.512,1181.0692,439.9753,52.490376,50707.98,1915.3389,584.0383,8.637797,68.4124,52.490376,584.0383,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 19:00,2919600,3597.512,1745.1941,461.23108,52.443085,54047.406,2091.3208,717.8817,133.52213,195.28757,52.443085,717.8817,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 20:00,2923200,3597.512,254.38316,387.9003,1.1853626,53511.95,2138.3193,714.14984,450.1553,65.500046,1.1853626,714.14984,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 21:00,2926800,3597.512,272.2934,380.08594,1.4348705,50925.33,2069.606,641.01434,527.48145,39.746548,1.4348705,641.01434,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 22:00,2930400,3597.512,235.13774,377.96704,0.9515143,52705.336,2026.7897,698.38025,42.050457,35.57431,0.9515143,698.38025,130901.3,73179.4,-15784.6,-201976.5
+2/3/2023 23:00,2934000,3597.512,6.4346375,376.68674,0.10372095,51410.71,1588.7489,674.6937,1.6511718,34.533245,0.10372095,674.6937,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 0:00,2937600,3597.512,6.4007783,376.5658,0.10372095,46603.56,1383.2067,509.70026,29.325747,34.255497,0.10372095,509.70026,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 1:00,2941200,3597.512,12.645644,80.9046,50.506348,44981.715,1282.8596,472.2077,15.020741,0.000808443,50.506348,472.2077,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 2:00,2944800,3597.512,60.713596,240.18544,50.506348,170.48087,769.69336,17.661684,2.2544837,0.04964843,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 3:00,2948400,3597.512,169.00508,398.13498,50.506348,168.22357,736.56976,17.661684,1.2592324,0.67675525,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 4:00,2952000,3597.512,272.16733,404.2064,50.506348,165.91888,711.0369,17.661684,0.9104148,3.5351198,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 5:00,2955600,3597.512,293.77194,407.7162,50.506348,3919.2007,866.22656,69.35265,646.18884,5.9295874,50.506348,69.35265,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 6:00,2959200,3597.512,337.37357,411.58557,50.506348,4216.619,914.8415,94.38313,2187.5198,9.316905,50.506348,94.38313,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 7:00,2962800,3597.512,394.73132,415.7472,50.506348,47521.637,1155.5157,429.51712,2536.5232,14.065237,50.506348,429.51712,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 8:00,2966400,3597.512,529.51794,421.75366,50.506348,44303.58,1858.242,443.8894,1251.6265,23.36645,50.506348,443.8894,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 9:00,2970000,3597.512,490.69406,420.3253,50.506348,43757.28,1449.5438,442.6942,340.83163,20.869457,50.506348,442.6942,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 10:00,2973600,3597.512,393.38535,414.75537,50.506348,53488.76,2199.2522,722.9373,111.07896,12.841003,50.506348,722.9373,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 11:00,2977200,3597.512,300.39426,408.3107,50.506348,52476.42,1720.1499,696.62177,51.35083,6.4168673,50.506348,696.62177,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 12:00,2980800,3597.512,203.85678,401.96466,50.506348,53736.816,2117.1616,684.7179,14.293905,2.1772304,50.506348,684.7179,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 13:00,2984400,3597.512,167.37453,399.09875,50.506348,52828.21,2148.913,679.0525,102.095245,0.9584807,50.506348,679.0525,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 14:00,2988000,3597.512,177.00162,399.1646,50.506348,51798.758,2091.3862,652.3046,25.29288,0.9808992,50.506348,652.3046,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 15:00,2991600,3597.512,196.23946,399.82886,50.506348,50150.332,1565.1979,635.1049,1.2020674,1.2102779,50.506348,635.1049,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 16:00,2995200,3597.512,192.33467,399.56848,50.506348,50472.71,1511.5914,638.8113,1.901418,1.1188604,50.506348,638.8113,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 17:00,2998800,3597.512,265.9591,402.7747,50.506348,49205.16,1433.7761,592.6978,8.190209,2.659988,50.506348,592.6978,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 18:00,3002400,3597.512,406.75864,410.5939,50.506348,50537.09,1444.5624,630.9356,14.766816,8.42236,50.506348,630.9356,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 19:00,3006000,3597.512,501.04504,417.41882,50.506348,53774.027,2204.7346,702.1429,253.35858,16.428984,50.506348,702.1429,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 20:00,3009600,3597.512,607.39246,424.0596,50.506348,52287.27,2296.9224,689.9898,1335.4648,27.985744,50.506348,689.9898,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 21:00,3013200,3597.512,645.4369,427.4465,50.506348,51123.664,2231.8857,663.8027,835.4499,35.696228,50.506348,663.8027,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 22:00,3016800,3597.512,642.2587,428.0278,50.506348,52550.383,2235.292,706.2623,469.60852,37.164604,50.506348,706.2623,130901.3,73179.4,-15784.6,-201976.5
+2/4/2023 23:00,3020400,3597.512,781.91034,433.71997,50.506348,49742.055,2040.9335,637.96246,9.436223,53.674656,50.506348,637.96246,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 0:00,3024000,3597.512,909.1221,439.9418,50.506348,47818.57,1837.3153,551.2541,14.696647,77.01547,50.506348,551.2541,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 1:00,3027600,3597.512,856.6335,438.5869,50.506348,46431.855,1539.0487,511.86987,14.7387495,71.43734,50.506348,511.86987,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 2:00,3031200,3597.512,864.02686,439.43985,50.506348,170.43475,925.4188,17.661684,2.837928,74.94896,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 3:00,3034800,3597.512,754.5711,437.59003,50.506348,168.3776,862.49176,17.661684,1.6316516,67.548775,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 4:00,3038400,3597.512,831.4443,441.51736,50.506348,166.13449,819.8647,17.661684,1.1904407,84.01195,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 5:00,3042000,3597.512,794.2467,441.70346,50.506348,4226.9844,976.0657,77.521225,726.9018,84.88013,50.506348,77.521225,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 6:00,3045600,3597.512,947.0425,447.43192,50.506348,4664.321,1028.085,112.020424,2532.9734,114.06217,50.506348,112.020424,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 7:00,3049200,3597.512,895.9745,446.59796,50.506348,47800.82,1171.4229,443.27942,2884.7656,109.44921,50.506348,443.27942,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 8:00,3052800,3597.512,1076.7931,449.8871,50.506348,44479.316,1785.7562,442.88287,1412.8474,128.62706,50.506348,442.88287,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 9:00,3056400,3597.512,912.1187,444.73743,50.506348,43824.754,1428.9795,441.75443,349.12292,99.64454,50.506348,441.75443,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 10:00,3060000,3597.512,573.6334,426.74817,50.506348,43867.35,1318.8823,440.78482,142.63087,34.1621,50.506348,440.78482,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 11:00,3063600,3597.512,447.67294,417.8834,50.506348,53103.336,1524.7771,715.8254,79.97341,17.226328,50.506348,715.8254,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 12:00,3067200,3597.512,373.24622,412.63452,50.506348,53075.266,1458.8685,718.5594,18.551935,10.566854,50.506348,718.5594,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 13:00,3070800,3597.512,330.29355,409.63742,50.506348,50631.457,2006.2874,586.12714,9.266678,7.643126,50.506348,586.12714,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 14:00,3074400,3597.512,245.1239,404.2461,50.506348,50088.59,2054.3218,591.0196,117.43643,3.681246,50.506348,591.0196,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 15:00,3078000,3597.512,302.50964,406.30148,50.506348,47421.168,1954.3771,553.6416,3.9439783,5.034402,50.506348,553.6416,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 16:00,3081600,3597.512,409.35208,412.47815,50.506348,47900.348,1667.9974,551.4448,21.199257,10.421089,50.506348,551.4448,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 17:00,3085200,3597.512,479.64117,417.4005,50.506348,50643.984,1591.944,1238.9391,71.969185,16.56609,50.506348,1238.9391,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 18:00,3088800,3597.512,646.96075,425.22394,50.506348,51218.344,2043.7239,627.92334,97.99368,30.733051,50.506348,627.92334,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 19:00,3092400,3597.512,811.0231,432.82993,50.506348,53647.86,2214.7466,725.04895,110.901505,51.13638,50.506348,725.04895,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 20:00,3096000,3597.512,1162.1415,447.66678,50.506348,53045.895,2232.0723,721.3349,227.21794,115.80134,50.506348,721.3349,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 21:00,3099600,3597.512,1144.9164,451.22906,50.506348,50301.113,2162.7634,640.12476,326.3437,137.53116,50.506348,640.12476,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 22:00,3103200,3597.512,1317.9609,457.44797,50.506348,54156.31,2213.1047,742.6946,82.89135,182.40126,50.506348,742.6946,130901.3,73179.4,-15784.6,-201976.5
+2/5/2023 23:00,3106800,3597.512,1285.7793,457.96448,50.506348,53411.7,2104.2185,640.9736,697.1447,186.59271,50.506348,640.9736,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 0:00,3110400,3597.512,1252.6786,455.62213,50.506348,49031.97,1721.2615,509.23593,1905.1649,168.34262,50.506348,509.23593,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 1:00,3114000,3597.512,1468.1622,461.99597,50.506348,46675.41,1558.34,466.95242,1198.56,221.50783,50.506348,466.95242,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 2:00,3117600,3597.512,1318.3783,460.9725,50.506348,171.79033,983.4522,17.661684,194.37845,212.29352,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 3:00,3121200,3597.512,1178.0631,458.2005,50.506348,169.5592,931.32684,17.661684,139.30315,188.67468,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 4:00,3124800,3597.512,1089.4412,456.0302,50.506348,169.56671,727.39105,46.26926,0.8123672,171.58087,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 5:00,3128400,3597.512,1363.671,465.6473,50.506348,9609.097,1318.9786,363.6096,2518.803,257.15118,50.506348,363.6096,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 6:00,3132000,3597.512,1437.6382,470.53314,50.506348,8413.067,1329.6497,344.4948,6680.5737,310.8819,50.506348,344.4948,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 7:00,3135600,3597.512,17200.646,1250.2618,662.2357,50334.15,1742.9312,621.63165,6680.924,10773.019,662.2357,621.63165,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 8:00,3139200,3597.512,11967.284,944.45496,306.67142,60198.184,2191.7402,855.8305,5692.642,18120.078,306.67142,855.8305,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 9:00,3142800,3597.512,9306.504,781.4746,158.50139,57867.496,1810.4509,746.2765,4673.734,15703.569,158.50139,746.2765,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 10:00,3146400,3597.512,8332.149,727.4502,120.79737,56826.387,2298.2412,692.3356,4233.372,13250.804,120.79737,692.3356,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 11:00,3150000,3597.512,7412.1904,677.17773,89.77303,55802.816,1825.0282,665.69763,3939.0215,10699.235,89.77303,665.69763,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 12:00,3153600,3597.512,6341.324,626.8278,64.06989,55844.812,2230.7961,649.3635,2644.15,7984.125,64.06989,649.3635,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 13:00,3157200,3597.512,5793.916,597.07605,56.34437,52441.99,2284.8274,616.3144,1448.9774,5968.518,56.34437,616.3144,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 14:00,3160800,3597.512,4894.7036,577.2988,55.120377,50186.152,2214.5845,579.1587,904.68695,4376.784,55.120377,579.1587,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 15:00,3164400,3597.512,3789.8584,554.3831,53.19037,49053.215,2076.6724,541.6846,350.21808,2812.9558,53.19037,541.6846,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 16:00,3168000,3597.512,3197.8447,533.8665,53.1625,49985.023,1607.496,539.9696,524.82654,1737.7076,53.1625,539.9696,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 17:00,3171600,3597.512,3097.2244,523.73083,54.09901,52117.793,1399.8835,513.2305,870.8688,1331.6951,54.09901,513.2305,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 18:00,3175200,3597.512,3858.9326,530.9014,52.40266,52721.953,2172.8396,617.85254,709.12665,1648.6843,52.40266,617.85254,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 19:00,3178800,3597.512,4852.2275,550.09705,52.38271,55412.54,2362.5835,742.0955,776.33026,2597.192,52.38271,742.0955,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 20:00,3182400,3597.512,1829.6792,502.41507,51.767296,54564.203,2356.194,744.6204,831.5919,824.9559,51.767296,744.6204,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 21:00,3186000,3597.512,1029.2549,445.26636,52.05471,51829.652,2262.6653,672.25116,816.1002,95.402824,52.05471,672.25116,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 22:00,3189600,3597.512,808.58936,426.85468,51.53088,54191.32,2231.2827,732.2576,137.14432,32.41826,51.53088,732.2576,130901.3,73179.4,-15784.6,-201976.5
+2/6/2023 23:00,3193200,3597.512,682.4554,427.72888,50.506348,54142.32,1692.371,664.40094,539.5159,37.02613,50.506348,664.40094,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 0:00,3196800,3597.512,855.7894,434.59363,50.506348,50639.316,1528.9441,541.9624,1747.951,57.428356,50.506348,541.9624,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 1:00,3200400,3597.512,800.86017,433.35474,50.506348,46735.668,1381.3923,465.03412,1035.3812,53.292614,50.506348,465.03412,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 2:00,3204000,3597.512,774.8143,432.8611,50.506348,172.49376,828.7326,17.661684,153.60994,51.71424,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 3:00,3207600,3597.512,836.7329,438.0183,50.506348,170.1601,789.6586,17.661684,107.77417,70.15372,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 4:00,3211200,3597.512,1075.4983,450.23962,50.506348,176.16887,622.40265,46.26926,0.5298773,132.16823,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 5:00,3214800,3597.512,1015.04974,451.6406,50.506348,10269.154,1248.3657,411.02902,2746.8547,141.2346,50.506348,411.02902,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 6:00,3218400,3597.512,1014.88556,450.2765,50.506348,9400.029,1763.8324,1252.3717,6679.913,132.45924,50.506348,1252.3717,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 7:00,3222000,3597.512,14697.213,1017.7516,455.06244,49770.95,2059.9395,635.2157,6681.996,7986.2173,455.06244,635.2157,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 8:00,3225600,3597.512,10106.664,819.0723,209.96532,61069.2,2268.8008,896.59094,6451.7466,13618.98,209.96532,896.59094,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 9:00,3229200,3597.512,8077.7144,710.3082,114.67348,57631.535,1797.3158,737.26044,4937.124,11755.808,114.67348,737.26044,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 10:00,3232800,3597.512,6274.794,632.7948,64.371284,55680.773,2248.079,653.2969,3292.9414,8568.435,64.371284,653.2969,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 11:00,3236400,3597.512,5166.0493,589.63025,53.51952,55229.76,1799.731,647.1187,2924.9556,5570.9316,53.51952,647.1187,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 12:00,3240000,3597.512,4023.9993,562.45416,54.530872,54765.05,2213.0986,649.0446,1591.259,3281.6846,54.530872,649.0446,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 13:00,3243600,3597.512,3279.087,537.8799,55.515785,51993.676,2161.1167,618.5446,367.59818,1812.2915,55.515785,618.5446,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 14:00,3247200,3597.512,2397.1826,505.93848,55.11873,49581.824,2134.4653,577.644,452.09644,830.65753,55.11873,577.644,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 15:00,3250800,3597.512,1770.6559,475.85922,53.20208,48039.84,1985.4568,545.47845,23.184984,344.8785,53.20208,545.47845,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 16:00,3254400,3597.512,1661.5454,464.3979,53.181026,48534.27,1988.5085,541.9648,34.23881,220.7044,53.181026,541.9648,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 17:00,3258000,3597.512,1767.4794,465.8703,54.125412,49783.434,1488.4382,523.8229,71.8692,225.62413,54.125412,523.8229,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 18:00,3261600,3597.512,2333.3982,480.7332,52.427105,51358.11,2102.7332,621.9356,86.06195,421.66818,52.427105,621.9356,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 19:00,3265200,3597.512,2907.189,501.54816,52.409344,54274.75,2307.1006,746.7018,640.04944,794.1877,52.409344,746.7018,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 20:00,3268800,3597.512,256.10764,413.40842,1.1717479,53757.26,2316.8877,750.7258,856.3206,230.366,1.1717479,750.7258,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 21:00,3272400,3597.512,290.80685,144.58426,52.072437,51263.086,2237.8657,677.3607,826.13965,0.010513142,52.072437,677.3607,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 22:00,3276000,3597.512,281.3821,272.21768,51.541893,53234.04,2187.9338,737.16876,65.483,0.069262564,51.541893,737.16876,130901.3,73179.4,-15784.6,-201976.5
+2/7/2023 23:00,3279600,3597.512,106.52429,395.50095,50.506348,52261.625,1627.941,668.8941,38.905056,0.2777662,50.506348,668.8941,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 0:00,3283200,3597.512,246.3766,401.31204,50.506348,48664.504,1453.751,506.9183,479.43518,2.0488122,50.506348,506.9183,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 1:00,3286800,3597.512,390.40695,408.65668,50.506348,46111.965,1349.8394,468.84372,363.0947,7.044977,50.506348,468.84372,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 2:00,3290400,3597.512,469.38373,415.40714,50.506348,171.71147,802.9362,17.661684,46.9888,14.205977,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 3:00,3294000,3597.512,487.56787,419.63202,50.506348,169.48985,763.98834,17.661684,29.933245,20.449068,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 4:00,3297600,3597.512,541.00806,424.17197,50.506348,167.13367,738.00684,17.661684,27.274317,29.038326,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 5:00,3301200,3597.512,546.6128,425.64307,50.506348,6116.0264,959.19714,148.00664,1298.7544,32.314068,50.506348,148.00664,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 6:00,3304800,3597.512,569.4779,426.31543,50.506348,6314.136,1610.2373,1044.8936,4008.867,33.901302,50.506348,1044.8936,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 7:00,3308400,3597.512,8386.603,648.86346,140.71939,47251.934,1947.6442,520.412,4414.4946,3303.7808,140.71939,520.412,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 8:00,3312000,3597.512,7040.184,650.0507,100.294464,57806.94,2177.5034,797.76764,2879.0586,6789.949,100.294464,797.76764,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 9:00,3315600,3597.512,4647.1396,577.1423,53.39094,54637.484,1725.2073,702.8005,1186.5121,4522.8423,53.39094,702.8005,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 10:00,3319200,3597.512,3095.4727,542.1411,53.604134,52777.32,1539.6396,654.375,362.85443,2103.4104,53.604134,654.375,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 11:00,3322800,3597.512,2478.2866,510.97003,53.596825,52010.414,1434.9126,631.1263,186.5312,988.6644,53.596825,631.1263,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 12:00,3326400,3597.512,1947.0266,538.51154,54.59532,53394.703,1804.6068,647.7254,45.623127,445.8077,54.59532,647.7254,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 13:00,3330000,3597.512,1605.2233,525.7768,55.42194,50717.51,2131.9297,582.96844,563.0984,194.0327,55.42194,582.96844,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 14:00,3333600,3597.512,1247.934,506.37872,55.051487,48486.16,2092.2537,547.589,567.15967,84.89591,55.051487,547.589,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 15:00,3337200,3597.512,979.2438,485.20718,53.2595,47486.168,1965.7024,552.7618,8.86731,42.10365,53.2595,552.7618,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 16:00,3340800,3597.512,899.8927,479.46185,53.223373,47854.66,1822.4009,548.6109,4.5299573,28.586933,53.223373,548.6109,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 17:00,3344400,3597.512,942.88055,476.10257,54.127243,47932.887,1568.8239,547.8315,5.226713,26.40825,54.127243,547.8315,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 18:00,3348000,3597.512,1190.828,481.81512,52.468925,50502.22,2034.5858,580.9358,86.88146,60.971863,52.468925,580.9358,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 19:00,3351600,3597.512,1747.1631,501.34406,52.440887,53775.555,2179.673,706.9999,163.6555,191.60455,52.440887,706.9999,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 20:00,3355200,3597.512,254.88496,425.29944,1.1828253,53481.312,2263.4502,709.10394,753.5619,62.97018,1.1828253,709.10394,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 21:00,3358800,3597.512,272.97766,415.56384,1.4340653,50816.06,2219.5254,640.11926,1064.625,38.08842,1.4340653,640.11926,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 22:00,3362400,3597.512,235.5961,411.80444,0.94963807,52655.234,2146.102,698.6544,83.32967,34.002373,0.94963807,698.6544,130901.3,73179.4,-15784.6,-201976.5
+2/8/2023 23:00,3366000,3597.512,43.659595,214.41934,50.506348,51684.785,1603.2981,671.69574,3.9725268,0.025265865,50.506348,671.69574,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 0:00,3369600,3597.512,118.50482,429.22635,50.506348,46993.582,1394.7231,509.58472,54.659035,0.21497707,50.506348,509.58472,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 1:00,3373200,3597.512,238.90489,431.07303,50.506348,45314.598,1293.7404,471.8316,39.255898,1.3246129,50.506348,471.8316,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 2:00,3376800,3597.512,330.25732,435.7496,50.506348,170.96231,770.59607,17.661684,5.5342646,4.572768,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 3:00,3380400,3597.512,367.98663,440.4263,50.506348,168.80086,734.56396,17.661684,3.1172283,9.041512,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 4:00,3384000,3597.512,390.377,443.55353,50.506348,166.52347,708.0919,17.661684,2.4351475,13.359706,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 5:00,3387600,3597.512,463.60278,448.2481,50.506348,3892.7158,854.5416,67.82739,631.6631,21.292051,50.506348,67.82739,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 6:00,3391200,3597.512,455.8909,447.8815,50.506348,3994.721,1572.0533,1024.1682,1979.371,21.76798,50.506348,1024.1682,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 7:00,3394800,3597.512,4664.4863,552.79785,53.724545,45309.637,1850.9747,456.2116,1891.9979,1421.9608,53.724545,456.2116,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 8:00,3398400,3597.512,5399.3066,595.457,58.02479,56056.99,2139.496,801.6148,868.24786,3520.0369,58.02479,801.6148,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 9:00,3402000,3597.512,3637.4788,574.34314,53.431,53606.496,1675.9384,709.7291,250.91776,2452.3784,53.431,709.7291,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 10:00,3405600,3597.512,2716.9128,547.3996,53.665966,52173.562,2122.9292,655.81177,65.830315,1297.6948,53.665966,655.81177,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 11:00,3409200,3597.512,2219.9697,521.5961,53.628227,51427.473,1690.5442,636.98804,45.12668,671.0685,53.628227,636.98804,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 12:00,3412800,3597.512,1825.2328,500.77493,54.66956,52454.805,2101.046,662.987,20.532461,333.058,54.66956,662.987,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 13:00,3416400,3597.512,1659.0525,488.10373,55.69138,50496.23,2103.131,589.4263,347.69476,196.12949,55.69138,589.4263,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 14:00,3420000,3597.512,1307.02,472.28665,55.266148,48488.812,2058.0227,549.00275,337.93906,96.8297,55.266148,549.00275,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 15:00,3423600,3597.512,1086.7462,460.78296,53.263084,47346.793,1950.9095,552.80237,46.32718,58.326164,53.263084,552.80237,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 16:00,3427200,3597.512,1024.2346,456.37576,53.235718,47710.465,1520.5481,551.7727,2.9444776,45.44958,53.235718,551.7727,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 17:00,3430800,3597.512,1061.7491,455.71417,54.144344,47851.12,1438.3224,549.81775,4.4212217,41.930588,54.144344,549.81775,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 18:00,3434400,3597.512,1340.529,466.2943,52.46643,50551.254,1457.2585,630.53674,2.320687,87.931,52.46643,630.53674,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 19:00,3438000,3597.512,1936.4646,489.58545,52.44206,54011.805,2178.1768,698.7124,203.66637,259.34064,52.44206,698.7124,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 20:00,3441600,3597.512,254.95586,413.3569,1.1813902,53433.785,2260.7642,709.5244,750.2631,83.06877,1.1813902,709.5244,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 21:00,3445200,3597.512,273.1306,404.9933,1.4335595,50845.375,2157.0916,639.88635,897.1355,51.336082,1.4335595,639.88635,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 22:00,3448800,3597.512,235.70155,402.68155,0.948873,52825.33,2186.224,742.73535,72.8678,46.543026,0.948873,742.73535,130901.3,73179.4,-15784.6,-201976.5
+2/9/2023 23:00,3452400,3597.512,9.175337,87.59055,50.506348,51757.273,1612.1127,672.7591,8.934212,0.001645469,50.506348,672.7591,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 0:00,3456000,3597.512,63.811752,269.8734,50.506348,47626.395,1424.1589,509.90222,177.94334,0.056584187,50.506348,509.90222,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 1:00,3459600,3597.512,100.465355,375.97946,50.506348,45521.203,1316.9048,471.85193,107.09082,0.14256473,50.506348,471.85193,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 2:00,3463200,3597.512,180.71063,417.71976,50.506348,170.98723,781.5221,17.661684,12.055916,0.6443497,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 3:00,3466800,3597.512,281.7789,423.37674,50.506348,168.78624,744.3536,17.661684,7.0457635,3.3115394,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 4:00,3470400,3597.512,324.5243,428.12552,50.506348,166.48322,717.99603,17.661684,5.903884,6.8077946,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 5:00,3474000,3597.512,381.638,433.33453,50.506348,4354.292,875.9294,80.819786,758.2267,12.194225,50.506348,80.819786,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 6:00,3477600,3597.512,492.78888,440.06058,50.506348,4460.813,1552.7228,993.48254,2363.2888,22.288927,50.506348,993.48254,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 7:00,3481200,3597.512,4764.819,548.3648,54.959473,45896.32,1882.982,475.07635,2542.6843,1493.983,54.959473,475.07635,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 8:00,3484800,3597.512,5523.1,591.5617,59.55964,56431.13,2152.519,800.6895,1339.3905,3665.3596,59.55964,800.6895,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 9:00,3488400,3597.512,3404.9602,564.9177,53.425503,53799.066,1694.2747,708.9881,421.29346,2318.7402,53.425503,708.9881,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 10:00,3492000,3597.512,2241.381,525.54175,53.647648,52095.145,1500.1981,659.6507,80.51952,888.3849,53.647648,659.6507,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 11:00,3495600,3597.512,1697.552,492.90848,53.631836,51278.72,1396.0166,637.2724,24.77665,323.09348,53.631836,637.2724,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 12:00,3499200,3597.512,1396.76,472.668,54.64907,51886.535,1321.3195,622.9614,5.887819,132.95389,54.64907,622.9614,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 13:00,3502800,3597.512,1118.7345,456.18665,55.73337,50709.99,2080.6638,587.4824,218.50166,52.070774,55.73337,587.4824,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 14:00,3506400,3597.512,936.0273,444.94458,55.254753,48691.605,2019.181,547.25494,134.94489,25.144676,55.254753,547.25494,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 15:00,3510000,3597.512,756.0133,436.44495,53.25949,47477.824,1784.2878,507.80374,4.2926407,14.872122,53.25949,507.80374,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 16:00,3513600,3597.512,752.0161,434.84445,53.22197,47636.184,1287.0255,550.34955,0.88047445,13.058634,53.22197,550.34955,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 17:00,3517200,3597.512,903.7689,440.7356,54.139328,47735.832,1337.7776,549.8214,0.85315734,20.426283,54.139328,549.8214,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 18:00,3520800,3597.512,1121.1771,452.06516,52.48118,50671.89,1979.446,577.8792,7.0955873,51.72585,52.48118,577.8792,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 19:00,3524400,3597.512,1774.3252,477.40933,52.441685,53688.598,2187.5356,702.93854,340.22003,191.13574,52.441685,702.93854,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 20:00,3528000,3597.512,254.79982,404.79184,1.1860638,53407.617,2215.098,710.3589,549.2113,66.81109,1.1860638,710.3589,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 21:00,3531600,3597.512,272.76636,396.85522,1.4360846,50981.33,2135.016,638.5426,530.5943,40.687836,1.4360846,638.5426,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 22:00,3535200,3597.512,235.4668,394.63522,0.9513032,52823.336,2089.1685,695.3982,38.036594,36.51378,0.9513032,695.3982,130901.3,73179.4,-15784.6,-201976.5
+2/10/2023 23:00,3538800,3597.512,6.4413676,393.2419,0.10372095,51502.438,1580.3857,671.9394,1.330982,35.47939,0.10372095,671.9394,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 0:00,3542400,3597.512,34.7044,165.49086,50.506348,46765.117,1372.1537,509.97903,18.457945,0.013054979,50.506348,509.97903,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 1:00,3546000,3597.512,101.742775,375.8851,50.506348,45140.156,1277.4891,472.38977,12.848128,0.1462643,50.506348,472.38977,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 2:00,3549600,3597.512,201.10704,414.70694,50.506348,170.875,765.7698,17.661684,2.0340636,0.8794048,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 3:00,3553200,3597.512,269.94415,419.24493,50.506348,168.69318,732.7777,17.661684,1.0903265,3.0973527,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 4:00,3556800,3597.512,295.92212,422.77612,50.506348,166.42064,707.3305,17.661684,0.7956728,5.5327983,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 5:00,3560400,3597.512,377.15665,429.29886,50.506348,3182.2078,837.1545,54.22241,482.099,11.701368,50.506348,54.22241,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 6:00,3564000,3597.512,413.64124,432.95374,50.506348,4137.9106,900.8596,88.2942,1911.3541,16.559778,50.506348,88.2942,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 7:00,3567600,3597.512,520.0538,438.64597,50.506348,47678.367,1167.6998,441.97476,2427.76,26.452347,50.506348,441.97476,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 8:00,3571200,3597.512,576.9387,440.22086,50.506348,44639.137,1815.3518,444.07593,1307.135,29.96394,50.506348,444.07593,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 9:00,3574800,3597.512,584.8414,439.80722,50.506348,44137.957,1447.6942,442.84644,452.35095,29.296585,50.506348,442.84644,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 10:00,3578400,3597.512,450.52863,433.9196,50.506348,54373.914,1667.6318,702.50543,161.25682,18.646492,50.506348,702.50543,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 11:00,3582000,3597.512,275.09116,421.75897,50.506348,52669.324,1584.1149,691.0654,58.190998,5.342119,50.506348,691.0654,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 12:00,3585600,3597.512,150.78598,413.51953,50.506348,53781.95,2119.6135,683.34186,13.004617,0.85042095,50.506348,683.34186,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 13:00,3589200,3597.512,105.14767,410.4865,50.506348,53112.258,1628.9839,675.21423,6.418303,0.26518056,50.506348,675.21423,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 14:00,3592800,3597.512,79.95186,353.33917,50.506348,52560.87,2058.2087,636.6958,8.958644,0.12492221,50.506348,636.6958,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 15:00,3596400,3597.512,103.29289,412.49384,50.506348,50486.94,1554.0381,588.92065,5.191921,0.20525482,50.506348,588.92065,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 16:00,3600000,3597.512,101.66103,404.71057,50.506348,50495.133,1401.4803,589.6933,4.6645703,0.17744528,50.506348,589.6933,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 17:00,3603600,3597.512,114.36695,410.10883,50.506348,49105.145,1287.6412,547.89026,4.462251,0.22442198,50.506348,547.89026,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 18:00,3607200,3597.512,168.52818,411.83337,50.506348,50436.88,1282.6733,588.47266,4.3550687,0.5703492,50.506348,588.47266,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 19:00,3610800,3597.512,238.30443,414.92657,50.506348,53747.59,2162.5408,688.8699,127.407265,1.5997561,50.506348,688.8699,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 20:00,3614400,3597.512,282.96347,417.486,50.506348,52752.426,2197.7856,679.7621,345.14066,3.0646203,50.506348,679.7621,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 21:00,3618000,3597.512,339.78186,421.42422,50.506348,51705.465,2153.6404,653.4748,242.22847,5.7733455,50.506348,653.4748,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 22:00,3621600,3597.512,337.51855,422.61832,50.506348,53065.18,2171.8457,696.8571,132.15298,6.7754116,50.506348,696.8571,130901.3,73179.4,-15784.6,-201976.5
+2/11/2023 23:00,3625200,3597.512,385.6093,425.43933,50.506348,50053.508,1804.9103,588.31696,5.9506116,9.416776,50.506348,588.31696,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 0:00,3628800,3597.512,381.1428,425.69336,50.506348,47711.29,1561.4993,550.20013,1.5829087,9.756886,50.506348,550.20013,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 1:00,3632400,3597.512,416.23718,427.40802,50.506348,46280.836,1382.5181,467.77985,1.172058,11.704899,50.506348,467.77985,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 2:00,3636000,3597.512,404.03818,428.1338,50.506348,170.85745,873.6516,17.661684,0.9914319,12.652598,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 3:00,3639600,3597.512,471.05487,432.99945,50.506348,168.61577,832.2976,17.661684,0.87424654,19.588964,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 4:00,3643200,3597.512,447.06784,433.49454,50.506348,166.42091,800.78094,17.661684,0.7909549,20.527452,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 5:00,3646800,3597.512,413.4124,431.85544,50.506348,1681.6691,879.4107,46.26926,146.43912,18.03402,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 6:00,3650400,3597.512,359.95276,428.73633,50.506348,2153.2615,906.0031,46.26926,572.0653,13.779933,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 7:00,3654000,3597.512,402.0758,430.26535,50.506348,45488.77,1065.6598,413.99838,580.1787,15.924897,50.506348,413.99838,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 8:00,3657600,3597.512,395.50735,428.5491,50.506348,42810.145,1869.785,403.81198,134.03018,13.728246,50.506348,403.81198,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 9:00,3661200,3597.512,388.49713,427.189,50.506348,42898.54,1401.4487,403.69138,92.32973,12.152099,50.506348,403.69138,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 10:00,3664800,3597.512,375.65033,425.9881,50.506348,43506.965,1320.0034,444.3441,10.733185,10.8692665,50.506348,444.3441,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 11:00,3668400,3597.512,395.6293,426.39944,50.506348,52895.695,1555.9711,713.4307,42.022343,11.404451,50.506348,713.4307,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 12:00,3672000,3597.512,386.984,425.60693,50.506348,53222.582,1518.7509,718.02264,39.643497,10.605838,50.506348,718.02264,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 13:00,3675600,3597.512,384.056,425.2198,50.506348,50803.996,2096.6758,635.5878,57.446415,10.265151,50.506348,635.5878,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 14:00,3679200,3597.512,382.16888,424.88696,50.506348,50527.53,2100.9382,641.76495,71.723465,9.986807,50.506348,641.76495,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 15:00,3682800,3597.512,393.67676,425.39688,50.506348,47858.004,1995.2551,554.12476,19.747263,10.596539,50.506348,554.12476,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 16:00,3686400,3597.512,442.41702,427.90665,50.506348,48474.332,1473.7994,552.73303,101.60508,13.608742,50.506348,552.73303,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 17:00,3690000,3597.512,559.54626,434.1087,50.506348,51184.664,1571.93,1153.5432,178.49103,23.179974,50.506348,1153.5432,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 18:00,3693600,3597.512,806.23456,445.02942,50.506348,51789.72,2077.336,629.79156,227.41585,49.950325,50.506348,629.79156,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 19:00,3697200,3597.512,841.4493,447.85382,50.506348,53639.79,2218.553,712.0089,166.17009,59.537632,50.506348,712.0089,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 20:00,3700800,3597.512,948.04443,452.4098,50.506348,53153.047,2232.3235,715.6839,228.87163,77.49946,50.506348,715.6839,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 21:00,3704400,3597.512,893.0887,451.99115,50.506348,50371.31,2159.7078,639.1717,337.59097,75.986855,50.506348,639.1717,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 22:00,3708000,3597.512,1003.1155,455.95197,50.506348,53874.645,2194.6406,739.389,43.138588,94.30413,50.506348,739.389,130901.3,73179.4,-15784.6,-201976.5
+2/12/2023 23:00,3711600,3597.512,921.02594,453.59833,50.506348,52293.945,2100.9873,637.37897,261.37595,83.506546,50.506348,637.37897,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 0:00,3715200,3597.512,1064.1139,457.43567,50.506348,47818.934,1670.2363,474.24203,873.35455,102.43001,50.506348,474.24203,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 1:00,3718800,3597.512,1150.3325,461.9179,50.506348,46184.023,1535.0864,468.5792,495.49878,128.22638,50.506348,468.5792,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 2:00,3722400,3597.512,1007.9718,458.57858,50.506348,171.79915,959.3415,17.661684,63.772743,109.16345,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 3:00,3726000,3597.512,985.6933,459.52527,50.506348,169.5918,907.2462,17.661684,41.620617,114.758354,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 4:00,3729600,3597.512,895.963,457.955,50.506348,167.22203,873.0613,17.661684,38.259247,106.40008,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 5:00,3733200,3597.512,1043.2832,463.4575,50.506348,10306.275,1378.7656,416.94644,2762.9675,139.4476,50.506348,416.94644,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 6:00,3736800,3597.512,1184.6865,469.46365,50.506348,8772.657,1356.727,369.14838,6680.579,183.4541,50.506348,369.14838,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 7:00,3740400,3597.512,19698.998,1476.2845,866.47504,50808.324,1710.6943,635.02094,6680.798,12044.258,866.47504,635.02094,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 8:00,3744000,3597.512,11451.137,929.7288,278.56223,60436.77,2248.188,859.66754,5866.753,18383.361,278.56223,859.66754,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 9:00,3747600,3597.512,9029.968,780.20966,147.85391,57239.92,1795.8649,721.05084,4198.2837,15328.859,147.85391,721.05084,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 10:00,3751200,3597.512,7334.0503,700.42914,92.864944,55123.01,2219.5361,639.5413,2432.867,11767.9795,92.864944,639.5413,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 11:00,3754800,3597.512,5978.482,632.14325,58.230103,54120.867,1746.3551,623.6704,1660.8159,7931.952,58.230103,623.6704,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 12:00,3758400,3597.512,4725.8467,593.9426,54.542522,54343.76,2188.2607,647.2759,802.0587,4842.1377,54.542522,647.2759,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 13:00,3762000,3597.512,4193.6406,572.98016,55.527466,51775.016,2234.884,622.91785,744.7401,3127.835,55.527466,622.91785,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 14:00,3765600,3597.512,3238.6028,550.0713,55.168346,49300.297,2159.039,582.86096,660.2999,1851.1802,55.168346,582.86096,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 15:00,3769200,3597.512,2441.765,520.2718,53.220158,48148.06,1992.769,546.7389,28.176805,938.6141,53.220158,546.7389,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 16:00,3772800,3597.512,2215.606,503.42947,53.189945,48848.223,1445.4844,544.2913,70.012184,588.21515,53.189945,544.2913,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 17:00,3776400,3597.512,2267.4517,500.1283,54.13623,50722.36,1394.643,519.8532,208.6366,516.5372,54.13623,519.8532,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 18:00,3780000,3597.512,2712.1194,508.58188,52.422962,51572.94,2118.8218,618.9596,152.37672,701.541,52.422962,618.9596,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 19:00,3783600,3597.512,3224.502,524.74243,52.40422,53964.816,2261.2725,692.3831,641.5514,1079.1334,52.40422,692.3831,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 20:00,3787200,3597.512,256.20627,432.305,1.1725944,53570.32,2289.5076,704.72095,877.7325,309.6723,1.1725944,704.72095,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 21:00,3790800,3597.512,282.32715,107.678444,52.07133,51237.48,2129.1292,676.2381,849.6598,0.002568531,52.07133,676.2381,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 22:00,3794400,3597.512,266.19464,199.0507,51.542084,53300.68,2187.5066,736.48236,65.102875,0.024983885,51.542084,736.48236,130901.3,73179.4,-15784.6,-201976.5
+2/13/2023 23:00,3798000,3597.512,114.40991,406.87662,50.506348,52542.59,1637.9912,668.3334,72.88222,0.2937033,50.506348,668.3334,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 0:00,3801600,3597.512,258.37723,412.77896,50.506348,48542.62,1451.8097,507.89,467.5448,2.1818671,50.506348,507.89,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 1:00,3805200,3597.512,387.00943,419.527,50.506348,46043.055,1341.0264,469.312,295.4784,6.7895193,50.506348,469.312,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 2:00,3808800,3597.512,457.95056,425.7656,50.506348,171.78317,796.63446,17.661684,36.77632,13.216039,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 3:00,3812400,3597.512,512.10657,431.6875,50.506348,169.5585,758.04175,17.661684,22.995373,22.08517,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 4:00,3816000,3597.512,604.4852,438.45767,50.506348,167.20844,732.0722,17.661684,20.712885,36.531372,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 5:00,3819600,3597.512,609.88586,440.2762,50.506348,7122.148,1016.2422,198.89731,1635.3281,41.41093,50.506348,198.89731,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 6:00,3823200,3597.512,602.8529,439.50754,50.506348,6521.1895,1633.1931,1122.3936,4480.5425,39.46006,50.506348,1122.3936,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 7:00,3826800,3597.512,9250.219,699.11664,172.89128,47576.887,1932.0087,528.84045,4789.8433,3840.238,172.89128,528.84045,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 8:00,3830400,3597.512,7477.7524,683.3764,113.40159,58044.254,2178.3665,800.2523,3220.7917,7645.692,113.40159,800.2523,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 9:00,3834000,3597.512,5377.72,600.7999,53.38451,55172.95,1735.0052,700.9688,1639.0966,5618.044,53.38451,700.9688,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 10:00,3837600,3597.512,3520.6548,567.04144,53.616055,53238.22,2179.3367,647.5917,572.46844,2918.0435,53.616055,647.5917,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 11:00,3841200,3597.512,2510.6377,529.032,53.584015,52106.137,1687.824,631.103,207.3303,1185.9603,53.584015,631.103,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 12:00,3844800,3597.512,1928.5431,495.8348,54.617306,52405.19,2069.7102,611.6212,48.07646,454.71326,54.617306,611.6212,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 13:00,3848400,3597.512,1584.4187,473.8333,55.648148,50829.39,2099.4587,587.32385,212.45303,189.01442,55.648148,587.32385,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 14:00,3852000,3597.512,1170.8862,452.47418,55.230953,48764.254,2087.9885,544.5829,393.70203,67.05585,55.230953,544.5829,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 15:00,3855600,3597.512,848.8306,435.77545,53.25099,47474.902,1958.3806,509.4856,31.852959,25.495914,53.25099,509.4856,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 16:00,3859200,3597.512,723.43964,427.38522,53.22365,47733.523,1953.6948,505.0543,24.386559,12.593065,53.22365,505.0543,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 17:00,3862800,3597.512,741.9842,425.59842,54.123028,47821.465,1525.4874,548.0978,1.6477551,9.658935,54.123028,548.0978,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 18:00,3866400,3597.512,902.4743,434.6836,52.485844,52785.37,886.1496,522.97736,0.21103182,25.092505,52.485844,522.97736,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 19:00,3870000,3597.512,1620.61,463.3245,52.433727,54044.32,2022.7627,693.9751,95.06184,137.43398,52.433727,693.9751,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 20:00,3873600,3597.512,256.1098,394.00168,1.1759093,53678.73,2099.058,703.94635,434.5041,52.310436,1.1759093,703.94635,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 21:00,3877200,3597.512,274.23502,386.4978,1.4249398,51270.004,1987.4585,634.49426,186.83841,31.323568,1.4249398,634.49426,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 22:00,3880800,3597.512,236.68109,384.31134,0.94323003,53188.816,1973.0636,688.113,5.232959,27.725729,0.94323003,688.113,130901.3,73179.4,-15784.6,-201976.5
+2/14/2023 23:00,3884400,3597.512,6.511549,382.9709,0.10372095,51520.543,1372.4547,622.728,0.9802523,26.781206,0.10372095,622.728,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 0:00,3888000,3597.512,6.477467,382.80075,0.10372095,46448.676,1325.3442,509.08893,1.1300323,26.514406,0.10372095,509.08893,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 1:00,3891600,3597.512,6.4771557,382.72574,0.10372095,44879.402,1199.4305,428.79916,0.84846234,26.437944,0.10372095,428.79916,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 2:00,3895200,3597.512,6.441861,382.67825,0.10372095,170.90874,753.5809,17.661684,0.72838914,26.415937,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 3:00,3898800,3597.512,6.438926,382.63895,0.10372095,168.53882,725.85815,17.661684,0.6480727,26.409552,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 4:00,3902400,3597.512,6.4013815,382.60214,0.10372095,166.22643,703.0551,17.661684,0.5898462,26.407654,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 5:00,3906000,3597.512,6.363618,382.56628,0.10372095,1393.9005,777.58905,46.26926,98.3883,26.407043,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 6:00,3909600,3597.512,6.3596306,382.53088,0.10372095,162.1822,723.15656,17.661684,64.919334,26.406801,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 7:00,3913200,3597.512,1942.2892,471.2294,50.506348,42462.31,1093.0703,409.90506,44.158924,216.6734,50.506348,409.90506,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 8:00,3916800,3597.512,2946.3818,516.03986,53.004387,54824.402,2221.5964,802.5702,8.7779665,883.3865,53.004387,802.5702,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 9:00,3920400,3597.512,2120.8428,501.7868,53.469494,52745.176,1706.083,715.7838,5.647377,583.9726,53.469494,715.7838,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 10:00,3924000,3597.512,1573.6696,477.4474,53.717934,51751.37,1915.1674,657.0761,3.029859,246.145,53.717934,657.0761,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 11:00,3927600,3597.512,1306.1844,459.75583,53.660374,50760.15,1548.8481,642.12787,1.2377063,112.03862,53.660374,642.12787,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 12:00,3931200,3597.512,1257.7532,453.54117,54.681694,51779.86,1488.3556,673.7523,0.9799261,76.8396,54.681694,673.7523,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 13:00,3934800,3597.512,1203.7892,450.07993,55.74672,50552.3,2048.2798,592.2594,287.56723,59.432262,55.74672,592.2594,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 14:00,3938400,3597.512,1066.153,443.53772,55.298462,48304.504,2032.2162,551.81976,707.7299,40.645416,55.298462,551.81976,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 15:00,3942000,3597.512,937.6175,438.5927,53.284748,47238.723,1986.6337,559.7034,26.764582,33.326813,53.284748,559.7034,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 16:00,3945600,3597.512,935.229,437.91385,53.248726,47867.1,1984.0079,553.5524,14.366972,31.910168,53.248726,553.5524,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 17:00,3949200,3597.512,974.17664,439.1338,54.20009,48745.76,1617.5319,537.0257,15.010775,32.603767,54.20009,537.0257,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 18:00,3952800,3597.512,1147.6027,445.6759,52.466347,50262.79,2045.3003,584.5225,91.13403,56.11508,52.466347,584.5225,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 19:00,3956400,3597.512,1787.2129,470.90186,52.449623,53511.52,2182.8005,705.18036,165.08533,200.2336,52.449623,705.18036,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 20:00,3960000,3597.512,254.57132,398.10687,1.187988,53577.668,2184.086,708.2671,164.16759,69.95282,1.187988,708.2671,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 21:00,3963600,3597.512,272.62244,390.2184,1.4393754,51268.203,2108.5913,634.7604,158.96939,42.74751,1.4393754,634.7604,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 22:00,3967200,3597.512,235.29843,388.1107,0.952527,53026.867,2115.428,691.2352,16.857492,38.46166,0.952527,691.2352,130901.3,73179.4,-15784.6,-201976.5
+2/15/2023 23:00,3970800,3597.512,6.470253,386.82248,0.10372095,51510.03,1580.9529,670.69183,1.1424667,37.41053,0.10372095,670.69183,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 0:00,3974400,3597.512,6.4366097,386.6833,0.10372095,46690.71,1386.0879,510.99472,12.034281,37.13495,0.10372095,510.99472,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 1:00,3978000,3597.512,6.402908,386.62387,0.10372095,44809.027,1253.5552,429.91412,7.378651,37.061893,0.10372095,429.91412,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 2:00,3981600,3597.512,6.4019437,386.5858,0.10372095,170.63805,800.81256,17.661684,4.400285,37.04244,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 3:00,3985200,3597.512,6.365616,386.55353,0.10372095,168.26512,771.1299,17.661684,3.6761587,37.0372,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 4:00,3988800,3597.512,30.311426,156.15822,50.506348,166.22461,747.3578,17.661684,3.4037778,0.011937913,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 5:00,3992400,3597.512,77.983925,336.901,50.506348,2876.5513,857.6337,50.045567,409.56396,0.11449812,50.506348,50.045567,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 6:00,3996000,3597.512,146.51514,406.11383,50.506348,3165.6897,1343.1403,743.8621,1277.9756,0.50016755,50.506348,743.8621,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 7:00,3999600,3597.512,3158.5457,500.76782,50.506348,45099.203,1865.4996,455.91794,1443.0653,631.90265,50.506348,455.91794,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 8:00,4003200,3597.512,4325.899,549.7569,52.971592,55891.48,2204.8552,805.2925,750.7273,2054.8706,52.971592,805.2925,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 9:00,4006800,3597.512,2984.157,536.4491,53.441246,53572.188,1710.347,712.5225,269.76047,1479.2487,53.441246,712.5225,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 10:00,4010400,3597.512,1976.476,501.83884,53.708614,52639.965,1748.9359,648.3295,70.56892,594.5878,53.708614,648.3295,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 11:00,4014000,3597.512,1518.4216,472.8616,53.636757,51335.895,1543.4795,638.59515,32.86042,211.14803,53.636757,638.59515,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 12:00,4017600,3597.512,1263.2153,456.63885,54.71532,52775.81,1639.6011,604.3776,9.421867,94.22184,54.71532,604.3776,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 13:00,4021200,3597.512,1141.3712,446.59854,55.709316,50691.05,2067.2422,590.9074,133.43587,50.410103,55.709316,590.9074,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 14:00,4024800,3597.512,998.738,438.76013,55.25645,48871.86,1974.8638,546.29364,14.811209,30.784693,55.25645,546.29364,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 15:00,4028400,3597.512,897.05634,434.44525,53.245964,47626.082,1888.3983,550.1137,10.727393,26.012205,53.245964,550.1137,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 16:00,4032000,3597.512,959.81,437.11835,53.224537,47959.637,1562.1311,551.6204,6.883665,31.78892,53.224537,551.6204,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 17:00,4035600,3597.512,1053.4467,441.58987,54.185875,48969.973,1548.2588,533.2071,14.894796,40.580704,54.185875,533.2071,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 18:00,4039200,3597.512,1294.0123,450.79767,52.459106,50449.117,2002.6664,582.4904,8.522154,78.4807,52.459106,582.4904,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 19:00,4042800,3597.512,1954.2435,476.12555,52.439987,53633.836,2207.8186,701.2724,309.67343,255.76297,52.439987,701.2724,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 20:00,4046400,3597.512,254.83342,401.11172,1.185781,53425.395,2239.0513,709.488,480.5072,85.77851,1.185781,709.488,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 21:00,4050000,3597.512,272.88297,392.98615,1.4368821,51011.61,2170.2139,637.81555,509.30453,53.22142,1.4368821,637.81555,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 22:00,4053600,3597.512,235.50072,390.93933,0.9510567,52819.812,2134.7693,695.30853,45.388374,48.383488,0.9510567,695.30853,130901.3,73179.4,-15784.6,-201976.5
+2/16/2023 23:00,4057200,3597.512,6.476187,389.6894,0.10372095,51444.473,1585.5365,671.9761,1.1376296,47.246384,0.10372095,671.9761,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 0:00,4060800,3597.512,6.4423676,389.56793,0.10372095,46557.156,1365.874,511.33023,6.589151,46.96163,0.10372095,511.33023,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 1:00,4064400,3597.512,6.408521,389.5177,0.10372095,44795.227,1227.1913,430.04333,4.1069007,46.889626,0.10372095,430.04333,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 2:00,4068000,3597.512,6.4074697,389.48563,0.10372095,170.60109,771.9307,17.661684,2.438978,46.87133,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 3:00,4071600,3597.512,6.3710465,389.45828,0.10372095,168.24718,740.5291,17.661684,1.9383951,46.866608,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 4:00,4075200,3597.512,16.712847,106.15659,50.506348,166.19609,715.74207,17.661684,1.7059338,0.002687152,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 5:00,4078800,3597.512,39.713726,195.73592,50.506348,1791.9045,796.08417,46.26926,167.03517,0.024964932,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 6:00,4082400,3597.512,69.63199,304.4956,50.506348,2274.4617,1597.4374,1110.4631,624.0105,0.08770735,50.506348,1110.4631,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 7:00,4086000,3597.512,2233.308,479.29214,50.506348,44050.6,1808.957,451.91083,616.4099,315.4408,50.506348,451.91083,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 8:00,4089600,3597.512,3468.2795,527.9528,52.98601,55119.82,2224.0862,808.09894,191.12657,1236.5413,52.98601,808.09894,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 9:00,4093200,3597.512,2389.3677,513.0392,53.466774,52901.695,1676.9136,715.43475,30.379862,836.8841,53.466774,715.43475,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 10:00,4096800,3597.512,1766.5504,487.03467,53.725964,52030.066,1604.0422,603.08484,5.11985,373.49747,53.725964,603.08484,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 11:00,4100400,3597.512,1344.4174,462.73538,53.65538,50834.26,1499.7095,640.8567,1.3687435,138.36212,53.65538,640.8567,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 12:00,4104000,3597.512,1079.2917,446.10495,54.7354,52666.76,1608.1859,606.5195,1.5532674,53.88413,54.7354,606.5195,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 13:00,4107600,3597.512,1014.3739,438.7986,55.726234,50668.695,2021.7074,592.19965,33.091652,31.156168,55.726234,592.19965,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 14:00,4111200,3597.512,902.88763,432.94977,55.264927,48688.05,2040.2584,546.59155,277.52576,20.69639,55.264927,546.59155,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 15:00,4114800,3597.512,714.06573,424.5555,53.26913,47311.08,1896.4803,512.36255,8.6157,11.759728,53.26913,512.36255,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 16:00,4118400,3597.512,706.71,423.12622,53.232693,47643.86,1920.7651,552.0336,2.9143903,10.249586,53.232693,552.0336,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 17:00,4122000,3597.512,762.9185,425.31082,54.187527,48165.688,1650.0028,541.29144,1.8430095,11.627157,54.187527,541.29144,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 18:00,4125600,3597.512,908.7152,432.6337,52.470795,50350.074,1514.4708,584.7698,1.4969723,25.333841,52.470795,584.7698,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 19:00,4129200,3597.512,1570.1578,459.9466,52.445324,53737.883,2042.1367,701.3239,105.869064,129.5454,52.445324,701.3239,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 20:00,4132800,3597.512,255.15456,391.0356,1.1839212,53775.875,2018.5012,705.631,34.53919,49.641895,1.1839212,705.631,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 21:00,4136400,3597.512,273.20575,383.60928,1.4337969,51339.375,2011.1635,631.938,310.60022,29.59555,1.4337969,631.938,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 22:00,4140000,3597.512,235.79703,381.40958,0.9489059,52999.805,1987.8507,693.35126,12.150739,26.097198,0.9489059,693.35126,130901.3,73179.4,-15784.6,-201976.5
+2/17/2023 23:00,4143600,3597.512,6.4515758,380.06357,0.10372095,51462.727,1907.374,623.9545,4.467414,25.165606,0.10372095,623.9545,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 0:00,4147200,3597.512,6.4516377,379.9014,0.10372095,46438.297,1690.9093,510.19412,3.1530159,24.898468,0.10372095,510.19412,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 1:00,4150800,3597.512,6.417688,379.83795,0.10372095,44812.094,1462.5277,429.54877,2.1139066,24.820696,0.10372095,429.54877,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 2:00,4154400,3597.512,6.4165497,379.8035,0.10372095,170.66078,972.98596,17.661684,1.5059954,24.797958,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 3:00,4158000,3597.512,6.3799963,379.7776,0.10372095,168.29881,922.5325,17.661684,1.2458649,24.791262,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 4:00,4161600,3597.512,9.555135,71.55799,50.506348,166.03714,885.72266,17.661684,1.0967127,0.000527615,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 5:00,4165200,3597.512,29.068434,153.02649,50.506348,1440.8196,951.1747,46.26926,105.81491,0.011375014,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 6:00,4168800,3597.512,73.59354,324.8969,50.506348,2060.1138,977.44037,46.26926,487.80936,0.10488312,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 7:00,4172400,3597.512,120.17173,403.8326,50.506348,45392.2,1105.779,398.11646,555.3723,0.3234357,50.506348,398.11646,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 8:00,4176000,3597.512,149.24329,404.72882,50.506348,42760.39,1889.7413,404.51056,129.5982,0.47644186,50.506348,404.51056,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 9:00,4179600,3597.512,138.93117,404.28296,50.506348,42854.94,1405.9456,404.33652,88.83075,0.40067667,50.506348,404.33652,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 10:00,4183200,3597.512,110.90883,403.1293,50.506348,53429.484,1675.9084,658.40674,84.21059,0.2393099,50.506348,658.40674,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 11:00,4186800,3597.512,73.7242,292.77704,50.506348,52004.207,1552.2827,695.9445,1.1772041,0.07931124,50.506348,695.9445,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 12:00,4190400,3597.512,36.768635,166.64198,50.506348,53344.59,1482.9095,693.8345,0.86443734,0.015180318,50.506348,693.8345,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 13:00,4194000,3597.512,17.432346,104.02112,50.506348,55454.32,1078.7935,603.30664,0.27162746,0.002489368,50.506348,603.30664,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 14:00,4197600,3597.512,6.4742928,40.4433,0.10372095,52179.754,2057.9402,644.55927,9.8508005,0.001315027,0.10372095,644.55927,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 15:00,4201200,3597.512,6.474801,39.121346,0.10372095,50365.953,1583.212,591.8258,1.3827206,0.001225541,0.10372095,591.8258,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 16:00,4204800,3597.512,17.318932,103.85399,50.506348,50387.625,1441.4432,591.9144,0.95728415,0.00247436,50.506348,591.9144,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 17:00,4208400,3597.512,49.602783,212.46846,50.506348,49017.613,1328.5977,549.713,0.7739354,0.03224529,50.506348,549.713,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 18:00,4212000,3597.512,103.88571,392.31107,50.506348,50374.406,1322.9674,590.44446,0.6659218,0.170169,50.506348,590.44446,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 19:00,4215600,3597.512,145.89531,403.93732,50.506348,53640.164,2152.1023,689.8801,141.53363,0.3783919,50.506348,689.8801,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 20:00,4219200,3597.512,181.56496,405.4116,50.506348,52761.375,2140.7437,680.8916,144.33937,0.678162,50.506348,680.8916,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 21:00,4222800,3597.512,186.3697,405.87405,50.506348,51657.492,2162.637,652.99335,438.1614,0.80314386,50.506348,652.99335,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 22:00,4226400,3597.512,202.14702,406.82355,50.506348,52835.426,2175.383,701.0317,233.27249,1.1028632,50.506348,701.0317,130901.3,73179.4,-15784.6,-201976.5
+2/18/2023 23:00,4230000,3597.512,227.72859,408.30164,50.506348,49948.684,1814.0516,590.64343,2.2991257,1.7099197,50.506348,590.64343,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 0:00,4233600,3597.512,225.49547,408.42105,50.506348,47565.6,1452.4313,551.7868,1.3817247,1.7759321,50.506348,551.7868,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 1:00,4237200,3597.512,240.91768,409.2325,50.506348,46207.92,1249.3289,468.72513,1.0588207,2.2033904,50.506348,468.72513,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 2:00,4240800,3597.512,309.9153,413.78113,50.506348,170.56786,733.8594,17.661684,0.88989913,5.130375,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 3:00,4244400,3597.512,306.53128,415.8286,50.506348,168.36153,691.11456,17.661684,0.78247064,6.6927176,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 4:00,4248000,3597.512,318.88867,417.6071,50.506348,166.18803,658.91785,17.661684,0.70635355,8.255047,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 5:00,4251600,3597.512,416.29758,424.40778,50.506348,1624.387,857.3544,46.26926,136.29959,16.158216,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 6:00,4255200,3597.512,405.89587,425.2021,50.506348,2182.6162,885.6253,46.26926,571.8015,17.338593,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 7:00,4258800,3597.512,394.55243,424.12448,50.506348,45435.45,1076.3085,394.96066,598.20404,15.814351,50.506348,394.96066,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 8:00,4262400,3597.512,482.86652,427.12308,50.506348,43370.95,1749.9386,446.5629,144.64,20.418344,50.506348,446.5629,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 9:00,4266000,3597.512,358.8892,420.46503,50.506348,42941.355,1327.0334,402.7262,15.916066,11.270019,50.506348,402.7262,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 10:00,4269600,3597.512,195.56262,409.30045,50.506348,43084.812,1254.6355,444.37952,0.8713433,2.3389385,50.506348,444.37952,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 11:00,4273200,3597.512,102.629616,403.1119,50.506348,52242.723,1386.6519,667.78046,0.6985983,0.3018777,50.506348,667.78046,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 12:00,4276800,3597.512,64.757576,300.79706,50.506348,52559.67,1305.9027,673.8857,0.59700745,0.08568572,50.506348,673.8857,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 13:00,4280400,3597.512,70.54277,319.70337,50.506348,52578.09,880.35284,547.7286,0.15939263,0.100945555,50.506348,547.7286,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 14:00,4284000,3597.512,79.53634,333.88193,50.506348,50523.258,1119.109,592.9884,0.45699188,0.113363855,50.506348,592.9884,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 15:00,4287600,3597.512,56.748104,240.57597,50.506348,47548.785,1007.73816,507.74643,0.4198187,0.046343368,50.506348,507.74643,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 16:00,4291200,3597.512,74.89937,303.43716,50.506348,47509.52,987.9541,508.04745,0.38885108,0.087781765,50.506348,508.04745,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 17:00,4294800,3597.512,135.8052,403.2664,50.506348,47470.62,970.14325,507.08356,0.36264202,0.3403427,50.506348,507.08356,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 18:00,4298400,3597.512,200.00021,405.9478,50.506348,50263.79,1037.9248,589.4141,0.34028625,0.942439,50.506348,589.4141,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 19:00,4302000,3597.512,227.35039,407.40158,50.506348,52905.242,1107.5146,671.7747,0.32104054,1.479225,50.506348,671.7747,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 20:00,4305600,3597.512,251.99136,408.87778,50.506348,52955.695,1094.5588,670.16034,0.3043147,2.206578,50.506348,670.16034,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 21:00,4309200,3597.512,276.05075,410.95663,50.506348,52322.13,962.66895,555.4239,0.27961668,3.5034342,50.506348,555.4239,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 22:00,4312800,3597.512,282.4208,411.45615,50.506348,53623.336,1288.1841,683.20917,0.63532865,3.847837,50.506348,683.20917,130901.3,73179.4,-15784.6,-201976.5
+2/19/2023 23:00,4316400,3597.512,296.46518,412.25433,50.506348,50857.098,1324.7153,636.1695,1.1047418,4.3746467,50.506348,636.1695,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 0:00,4320000,3597.512,275.55704,411.66592,50.506348,45143.453,1132.9958,472.2641,3.3513985,4.0096216,50.506348,472.2641,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 1:00,4323600,3597.512,222.99689,408.8145,50.506348,44805.52,1055.1232,428.18573,1.3538898,2.221049,50.506348,428.18573,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 2:00,4327200,3597.512,233.14244,409.40482,50.506348,170.79826,619.4861,17.661684,0.71819746,2.5703187,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 3:00,4330800,3597.512,298.19458,414.0539,50.506348,168.61409,599.64886,17.661684,0.5304504,5.660739,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 4:00,4334400,3597.512,326.80386,417.4042,50.506348,166.3906,583.20276,17.661684,0.44635662,8.479369,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 5:00,4338000,3597.512,367.4783,421.00204,50.506348,3107.3916,718.6909,53.27424,469.2072,12.309205,50.506348,53.27424,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 6:00,4341600,3597.512,389.3879,423.04715,50.506348,2880.0674,738.206,51.609386,1229.8438,14.914321,50.506348,51.609386,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 7:00,4345200,3597.512,3452.1301,510.14468,50.506348,45343.547,1397.2513,438.93668,1047.1467,871.21063,50.506348,438.93668,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 8:00,4348800,3597.512,5625.5303,573.7794,61.11997,55640.04,2160.455,803.44635,434.10907,3120.5095,61.11997,803.44635,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 9:00,4352400,3597.512,4057.982,562.033,53.436024,53347.51,1672.2539,711.0522,111.06773,2846.2776,53.436024,711.0522,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 10:00,4356000,3597.512,3004.0476,539.79285,53.71205,52797.945,1422.0459,640.1042,16.531141,1676.3336,53.71205,640.1042,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 11:00,4359600,3597.512,2433.8567,514.3257,53.629837,51150.15,1465.5768,635.93646,6.2413344,897.4789,53.629837,635.93646,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 12:00,4363200,3597.512,1916.835,489.2705,54.655773,52143.734,2035.7821,616.84344,9.359743,412.25223,54.655773,616.84344,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 13:00,4366800,3597.512,1768.8098,476.44122,55.680492,50534.023,2101.4912,589.8132,365.994,245.52,55.680492,589.8132,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 14:00,4370400,3597.512,1386.5457,460.76743,55.27509,48499.734,2062.6843,548.76294,391.64816,125.322914,55.27509,548.76294,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 15:00,4374000,3597.512,979.2417,440.52682,53.268394,47318.332,1922.5027,511.1115,6.89314,45.779514,53.268394,511.1115,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 16:00,4377600,3597.512,840.9364,431.04062,53.227814,47664.02,1756.3647,550.54047,2.2024715,23.501146,53.227814,550.54047,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 17:00,4381200,3597.512,905.0919,431.2827,54.14343,47795.477,1551.0392,549.94354,2.2387156,22.318832,54.14343,549.94354,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 18:00,4384800,3597.512,1304.0734,447.76917,52.465027,50495.414,1538.1246,630.6381,1.5602369,74.18459,52.465027,630.6381,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 19:00,4388400,3597.512,2160.3032,480.0743,52.4414,53926.707,2162.4338,698.9146,223.07433,321.89902,52.4414,698.9146,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 20:00,4392000,3597.512,255.07637,403.85004,1.1837378,53540.69,2161.1917,708.4339,373.65118,109.59446,1.1837378,708.4339,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 21:00,4395600,3597.512,273.1843,395.5118,1.4349574,51123.613,2063.8904,636.5075,357.9959,69.42901,1.4349574,636.5075,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 22:00,4399200,3597.512,235.78027,393.56702,0.9497529,53111.74,2168.7542,738.52374,28.76821,63.9071,0.9497529,738.52374,130901.3,73179.4,-15784.6,-201976.5
+2/20/2023 23:00,4402800,3597.512,6.517475,392.3687,0.10372095,51846.18,1603.1892,671.4405,12.088397,62.66763,0.10372095,671.4405,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 0:00,4406400,3597.512,59.50735,231.62279,50.506348,47597.58,1422.2155,509.28204,161.94789,0.041872133,50.506348,509.28204,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 1:00,4410000,3597.512,223.3888,405.6538,50.506348,45633.54,1327.6968,471.077,128.07957,1.0167974,50.506348,471.077,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 2:00,4413600,3597.512,336.29532,411.90002,50.506348,171.12018,795.8299,17.661684,16.40117,4.438607,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 3:00,4417200,3597.512,452.2508,421.89255,50.506348,168.93124,759.5481,17.661684,9.738342,13.855364,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 4:00,4420800,3597.512,464.0543,426.41098,50.506348,166.63243,734.0678,17.661684,8.381445,20.50405,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 5:00,4424400,3597.512,505.08633,429.35895,50.506348,7378.35,1050.3499,215.99548,1737.2278,25.870192,50.506348,215.99548,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 6:00,4428000,3597.512,670.00586,436.8657,50.506348,7776.072,1705.2522,1172.4247,5342.5625,43.87929,50.506348,1172.4247,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 7:00,4431600,3597.512,10124.629,741.8835,211.7418,48648.88,2033.695,594.36505,6377.938,4495.048,211.7418,594.36505,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 8:00,4435200,3597.512,7701.549,694.8201,121.480446,58486.836,2169.196,815.9106,4426.6187,8394.1045,121.480446,815.9106,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 9:00,4438800,3597.512,5435.5205,600.8223,53.940655,55539.203,1725.4353,701.30365,2340.87,5938.2544,53.940655,701.30365,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 10:00,4442400,3597.512,3850.7717,568.98987,53.612083,53832.312,2204.0576,648.00397,1153.3016,3344.592,53.612083,648.00397,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 11:00,4446000,3597.512,2895.5454,537.3088,53.576763,52855.645,1736.456,629.8195,725.83466,1599.8861,53.576763,629.8195,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 12:00,4449600,3597.512,2369.764,509.5314,54.60734,53301.94,2151.9587,655.4682,233.13187,776.9639,54.60734,655.4682,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 13:00,4453200,3597.512,2260.9878,496.0318,55.60999,50687.49,2168.4526,583.7592,722.57117,506.53857,55.60999,583.7592,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 14:00,4456800,3597.512,1903.3634,482.89078,55.222385,48695.887,2077.0403,589.0586,360.4922,325.9364,55.222385,589.0586,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 15:00,4460400,3597.512,1689.7267,472.91898,53.248966,47874.484,2001.3823,549.6198,42.36846,238.87,53.248966,549.6198,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 16:00,4464000,3597.512,1757.7158,473.22232,53.212555,49107.05,1583.5527,548.053,177.72145,242.33185,53.212555,548.053,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 17:00,4467600,3597.512,1744.38,473.03348,54.143204,50090.965,1701.5299,533.18585,356.63367,231.67163,54.143204,533.18585,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 18:00,4471200,3597.512,2263.0535,485.1748,52.43182,51912.168,1588.2654,623.89667,281.47327,392.66687,52.43182,623.89667,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 19:00,4474800,3597.512,2861.3706,506.4108,52.410305,54904.55,2262.6199,738.0941,226.48857,759.63086,52.410305,738.0941,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 20:00,4478400,3597.512,257.44058,418.80682,1.162315,54087.367,2312.207,745.3534,720.3378,220.47018,1.162315,745.3534,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 21:00,4482000,3597.512,275.70816,409.7545,1.4100289,51068.832,2209.1213,635.2813,895.2254,146.74591,1.4100289,635.2813,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 22:00,4485600,3597.512,260.88324,150.60368,51.53762,53189.254,2187.5325,736.9273,75.10693,0.010813719,51.53762,736.9273,130901.3,73179.4,-15784.6,-201976.5
+2/21/2023 23:00,4489200,3597.512,142.59592,402.52112,50.506348,52553.355,1645.5549,668.8637,72.946434,0.3612407,50.506348,668.8637,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 0:00,4492800,3597.512,278.88086,408.09482,50.506348,48610.363,1460.2172,507.46075,514.0005,2.238846,50.506348,507.46075,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 1:00,4496400,3597.512,350.04932,412.55032,50.506348,46040.97,1349.2461,468.8112,334.70233,5.1066113,50.506348,468.8112,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 2:00,4500000,3597.512,443.11417,419.76447,50.506348,171.67252,803.1255,17.661684,42.702866,11.69467,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 3:00,4503600,3597.512,420.2503,422.23126,50.506348,169.44615,764.0161,17.661684,26.993034,14.769417,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 4:00,4507200,3597.512,412.85233,423.2132,50.506348,167.08755,737.8392,17.661684,24.482409,16.138784,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 5:00,4510800,3597.512,412.27905,423.83606,50.506348,5594.664,933.4544,125.034546,1129.9489,17.057446,50.506348,125.034546,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 6:00,4514400,3597.512,439.8852,424.86288,50.506348,5779.461,1567.606,1000.9699,3498.7458,18.633297,50.506348,1000.9699,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 7:00,4518000,3597.512,5877.872,561.26746,70.378654,47154.43,1939.2985,517.6088,4053.843,1911.8668,70.378654,517.6088,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 8:00,4521600,3597.512,5964.051,598.14386,68.300735,57675.633,2271.998,800.7359,2745.5703,4500.8755,68.300735,800.7359,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 9:00,4525200,3597.512,4050.996,565.4638,53.395298,54737.19,1764.8186,704.7309,1300.3701,3132.2212,53.395298,704.7309,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 10:00,4528800,3597.512,2707.3572,533.50085,53.656445,53349.285,1772.4573,641.4462,366.64496,1468.9213,53.656445,641.4462,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 11:00,4532400,3597.512,2019.3036,497.33444,53.592197,51850.36,1563.1774,630.7223,134.24939,567.5922,53.592197,630.7223,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 12:00,4536000,3597.512,1594.3484,471.4445,54.601364,52491.47,1468.2423,665.7295,28.840431,215.26773,54.601364,665.7295,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 13:00,4539600,3597.512,1309.0537,454.0635,55.662945,50803.465,2080.5803,582.77435,236.5405,90.85223,55.662945,582.77435,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 14:00,4543200,3597.512,988.7414,437.0521,55.229362,48647.01,2076.4849,545.0237,480.64246,33.317135,55.229362,545.0237,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 15:00,4546800,3597.512,722.3534,423.5726,53.25671,47321.227,1934.7352,509.96198,15.958102,13.173271,53.25671,509.96198,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 16:00,4550400,3597.512,634.4822,417.1979,53.21875,47652.406,1830.2593,548.6759,4.216896,6.7287045,53.21875,548.6759,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 17:00,4554000,3597.512,616.97485,414.54852,54.177837,48501.367,1470.0103,488.27795,1.7434051,4.1517043,54.177837,488.27795,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 18:00,4557600,3597.512,660.0022,417.15878,52.46438,50384.727,1893.0277,584.2139,45.06743,7.351967,52.46438,584.2139,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 19:00,4561200,3597.512,1038.4548,436.022,52.442623,53438.965,2167.286,710.4383,1121.4891,37.807026,52.442623,710.4383,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 20:00,4564800,3597.512,253.60872,373.26828,1.1952708,52773.777,2262.8477,720.44775,2732.8315,15.561905,1.1952708,720.44775,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 21:00,4568400,3597.512,271.47568,367.2215,1.447499,50486.496,2076.6711,648.3512,773.68243,8.35546,1.447499,648.3512,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 22:00,4572000,3597.512,234.33319,364.62686,0.9588326,52659.21,2019.055,698.5061,83.34172,6.5419564,0.9588326,698.5061,130901.3,73179.4,-15784.6,-201976.5
+2/22/2023 23:00,4575600,3597.512,6.407456,362.9206,0.10372095,51231.754,1506.7222,628.9345,1.3815451,5.888528,0.10372095,628.9345,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 0:00,4579200,3597.512,6.4077573,362.55386,0.10372095,46261.984,1396.4049,510.5356,1.525165,5.624816,0.10372095,510.5356,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 1:00,4582800,3597.512,6.374391,362.38867,0.10372095,44726.74,1244.0881,429.40567,1.0651587,5.513581,0.10372095,429.40567,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 2:00,4586400,3597.512,6.3736663,362.3097,0.10372095,170.49518,784.84924,17.661684,0.8383894,5.4657903,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 3:00,4590000,3597.512,6.337776,362.26797,0.10372095,168.17622,750.09784,17.661684,0.71716464,5.4450836,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 4:00,4593600,3597.512,6.3348083,362.24243,0.10372095,165.91006,722.9972,17.661684,0.6389305,5.436071,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 5:00,4597200,3597.512,6.298033,362.22397,0.10372095,1373.9204,794.14124,46.26926,96.61614,5.4321313,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 6:00,4600800,3597.512,6.261159,362.20862,0.10372095,161.954,737.80945,17.661684,63.799915,5.4303966,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 7:00,4604400,3597.512,1913.3336,467.06216,50.506348,42816.223,1533.9005,401.8414,44.537384,214.96408,50.506348,401.8414,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 8:00,4608000,3597.512,2953.2336,511.98712,52.997612,54529.06,2244.4155,809.7989,22.959019,881.28674,52.997612,809.7989,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 9:00,4611600,3597.512,2118.1824,498.1602,53.473824,52639.61,1783.1244,718.8811,8.206117,589.35345,53.473824,718.8811,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 10:00,4615200,3597.512,1641.3102,476.4784,53.725254,51669.63,1970.041,659.6288,4.3629813,276.5537,53.725254,659.6288,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 11:00,4618800,3597.512,1356.2191,459.30173,53.66072,50681.418,1564.7795,640.1692,2.466094,132.43805,53.66072,640.1692,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 12:00,4622400,3597.512,1090.2466,443.5733,54.70191,51858.65,2049.0425,624.1781,20.301994,53.89817,54.70191,624.1781,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 13:00,4626000,3597.512,988.4178,435.43036,55.747364,50048.13,2124.9387,594.2275,534.159,29.18484,55.747364,594.2275,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 14:00,4629600,3597.512,873.86456,429.41116,55.299774,48444.414,1978.3467,553.78503,24.272755,18.917616,55.299774,553.78503,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 15:00,4633200,3597.512,751.2268,424.6207,53.296837,47948.37,1744.6914,497.24982,2.3569646,14.877357,53.296837,497.24982,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 16:00,4636800,3597.512,774.7004,424.4822,53.2221,47658.51,1456.9114,549.62244,1.4685222,14.808764,53.2221,549.62244,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 17:00,4640400,3597.512,855.1117,427.25247,54.135868,47673.688,1370.6084,549.4111,1.1937637,17.449802,54.135868,549.4111,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 18:00,4644000,3597.512,1035.7739,436.84113,52.482605,50675.59,1953.5186,580.3875,7.468246,40.640823,52.482605,580.3875,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 19:00,4647600,3597.512,1647.1602,461.54303,52.443016,53779.02,2151.0623,709.1067,360.69113,156.30324,52.443016,709.1067,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 20:00,4651200,3597.512,254.46666,390.35245,1.1871849,53405.04,2155.5554,712.86,500.32434,55.204063,1.1871849,712.86,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 21:00,4654800,3597.512,272.41757,382.77072,1.4375075,50968.58,2072.0776,639.36444,522.02655,33.111267,1.4375075,639.36444,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 22:00,4658400,3597.512,235.15556,380.60315,0.95211154,52766.965,2028.618,696.56934,51.676872,29.35601,0.95211154,696.56934,130901.3,73179.4,-15784.6,-201976.5
+2/23/2023 23:00,4662000,3597.512,6.434148,379.2835,0.10372095,51499.883,1601.2031,672.9199,1.8791181,28.380796,0.10372095,672.9199,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 0:00,4665600,3597.512,6.434174,379.1413,0.10372095,46766.023,1393.172,510.07318,31.268248,28.108887,0.10372095,510.07318,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 1:00,4669200,3597.512,6.4004855,379.0923,0.10372095,45081.473,1291.353,471.92285,17.763262,28.032072,0.10372095,471.92285,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 2:00,4672800,3597.512,34.708824,158.65094,50.506348,170.81822,775.712,17.661684,2.5259254,0.013366815,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 3:00,4676400,3597.512,91.16774,365.79825,50.506348,168.62505,741.5983,17.661684,1.3956041,0.14609848,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 4:00,4680000,3597.512,168.51756,403.70483,50.506348,166.31454,715.5407,17.661684,0.98803693,0.74873394,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 5:00,4683600,3597.512,225.57643,407.17465,50.506348,3721.114,861.52264,64.03882,592.0881,2.1167583,50.506348,64.03882,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 6:00,4687200,3597.512,267.12302,410.36356,50.506348,3603.0981,903.01276,116.55327,1726.4083,4.123488,50.506348,116.55327,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 7:00,4690800,3597.512,3049.9937,497.89734,50.506348,44979.79,1907.5754,453.3702,1618.4692,643.84344,50.506348,453.3702,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 8:00,4694400,3597.512,4470.505,547.79114,52.966057,55795.71,2190.9927,804.55914,704.18506,2130.6606,52.966057,804.55914,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 9:00,4698000,3597.512,3097.504,536.44775,53.43299,53568.68,1695.7279,712.1555,252.46788,1608.3363,53.43299,712.1555,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 10:00,4701600,3597.512,2095.1094,502.86395,53.695465,52601.36,1819.3319,649.82336,77.77137,678.5827,53.695465,649.82336,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 11:00,4705200,3597.512,1765.1261,479.53278,53.6254,51359.543,1603.9475,634.11664,54.47302,315.7643,53.6254,634.11664,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 12:00,4708800,3597.512,1567.826,466.47507,54.637814,52292.55,1451.1179,672.0965,22.626799,178.28677,54.637814,672.0965,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 13:00,4712400,3597.512,1341.0239,454.3861,55.713272,50864.246,2007.622,580.75836,14.20504,95.1296,55.713272,580.75836,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 14:00,4716000,3597.512,1234.0406,447.28326,55.22331,48895.59,2017.3293,541.5159,159.58441,66.32143,55.22331,541.5159,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 15:00,4719600,3597.512,970.4046,436.46918,53.238186,47516.75,1959.6664,548.992,7.9076176,38.32204,53.238186,548.992,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 16:00,4723200,3597.512,857.01447,429.78653,53.216297,47842.64,1415.237,548.32996,4.759263,23.643501,53.216297,548.32996,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 17:00,4726800,3597.512,912.80444,430.33597,54.124813,47981.758,1371.9025,547.4624,11.423837,23.009884,54.124813,547.4624,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 18:00,4730400,3597.512,1156.4846,441.60236,52.47548,50826.812,1998.7524,578.4841,8.483288,55.951324,52.47548,578.4841,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 19:00,4734000,3597.512,1867.9335,468.89713,52.433712,53957.418,2215.2026,708.51434,307.91956,218.06685,52.433712,708.51434,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 20:00,4737600,3597.512,254.98593,395.40805,1.1819773,53542.883,2238.5698,710.7775,463.0162,75.2428,1.1819773,710.7775,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 21:00,4741200,3597.512,272.9708,387.45773,1.4312671,50969.504,2205.2166,638.1021,845.208,46.255447,1.4312671,638.1021,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 22:00,4744800,3597.512,235.65977,385.39883,0.9484508,52711.21,2149.12,697.5709,80.01671,41.79278,0.9484508,697.5709,130901.3,73179.4,-15784.6,-201976.5
+2/24/2023 23:00,4748400,3597.512,6.4495296,384.14807,0.10372095,51592.305,1603.4125,672.5659,2.7652833,40.71608,0.10372095,672.5659,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 0:00,4752000,3597.512,13.708214,89.032135,50.506348,47051.63,1400.7158,508.3422,60.47987,0.001224109,50.506348,508.3422,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 1:00,4755600,3597.512,56.320034,222.70251,50.506348,45282.76,1298.5558,470.3314,40.210278,0.037976213,50.506348,470.3314,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 2:00,4759200,3597.512,145.4136,401.6003,50.506348,170.993,776.0422,17.661684,5.1920905,0.36616582,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 3:00,4762800,3597.512,247.92796,406.8736,50.506348,168.79962,740.22986,17.661684,2.931936,2.0911098,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 4:00,4766400,3597.512,319.78928,412.8086,50.506348,166.51115,713.7662,17.661684,2.2775733,5.984732,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 5:00,4770000,3597.512,354.27808,417.3564,50.506348,4727.8423,896.71497,92.94397,867.81915,10.088448,50.506348,92.94397,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 6:00,4773600,3597.512,430.15015,422.91107,50.506348,4645.1436,936.8769,111.7268,2676.8555,17.035994,50.506348,111.7268,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 7:00,4777200,3597.512,485.48788,426.60266,50.506348,47619.45,1271.8834,465.79922,2963.2893,23.085697,50.506348,465.79922,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 8:00,4780800,3597.512,546.8078,428.0911,50.506348,44627.945,1822.9758,441.84244,1524.9514,25.913828,50.506348,441.84244,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 9:00,4784400,3597.512,465.90714,424.0437,50.506348,43884.535,1438.4307,440.64066,367.2025,18.805101,50.506348,440.64066,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 10:00,4788000,3597.512,308.8209,414.69934,50.506348,54090.836,1765.6763,708.0576,85.2515,7.5890636,50.506348,708.0576,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 11:00,4791600,3597.512,230.92732,408.3608,50.506348,52694.844,1596.1893,691.802,47.931694,3.021207,50.506348,691.802,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 12:00,4795200,3597.512,214.33824,406.57138,50.506348,53883.742,1526.402,737.1179,17.571896,1.984475,50.506348,737.1179,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 13:00,4798800,3597.512,214.55072,406.49994,50.506348,55565.32,1133.5503,621.9275,2.3326108,1.9533954,50.506348,621.9275,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 14:00,4802400,3597.512,208.5833,405.5342,50.506348,52326.656,2033.7594,687.1177,56.822483,1.5052551,50.506348,687.1177,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 15:00,4806000,3597.512,240.58337,406.9353,50.506348,50426.137,2053.126,631.15717,11.8724375,2.1948054,50.506348,631.15717,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 16:00,4809600,3597.512,267.18442,408.50778,50.506348,50728.504,1893.0675,635.5629,8.791666,3.1507528,50.506348,635.5629,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 17:00,4813200,3597.512,257.76733,408.31622,50.506348,49316.777,1905.6168,590.89496,10.973366,3.0338197,50.506348,590.89496,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 18:00,4816800,3597.512,348.94678,412.62354,50.506348,50558.484,1954.8716,628.13617,12.556657,5.95903,50.506348,628.13617,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 19:00,4820400,3597.512,540.785,423.6102,50.506348,53708.555,2206.9749,701.678,278.3591,18.297647,50.506348,701.678,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 20:00,4824000,3597.512,602.7192,428.89825,50.506348,52362.555,2292.3713,687.92444,1322.7661,27.799623,50.506348,687.92444,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 21:00,4827600,3597.512,600.76733,430.0675,50.506348,51254.12,2223.5608,661.0644,790.9914,30.317083,50.506348,661.0644,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 22:00,4831200,3597.512,640.89667,432.05298,50.506348,52710.754,2225.2898,702.8465,432.0781,34.945328,50.506348,702.8465,130901.3,73179.4,-15784.6,-201976.5
+2/25/2023 23:00,4834800,3597.512,758.1162,437.43857,50.506348,49921.812,2046.6716,635.0333,8.373408,49.85785,50.506348,635.0333,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 0:00,4838400,3597.512,800.4932,439.90158,50.506348,48073.77,1805.3308,548.92834,21.627838,57.986286,50.506348,548.92834,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 1:00,4842000,3597.512,723.8343,436.55057,50.506348,46615.098,1531.2999,508.9914,21.580334,47.209187,50.506348,508.9914,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 2:00,4845600,3597.512,818.0994,440.74634,50.506348,170.98743,921.61743,17.661684,3.7059162,61.039787,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 3:00,4849200,3597.512,799.7236,443.70624,50.506348,168.95937,859.86646,17.661684,2.171629,72.396126,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 4:00,4852800,3597.512,644.3775,437.80115,50.506348,166.72047,818.0049,17.661684,1.5930381,51.159195,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 5:00,4856400,3597.512,754.3889,442.0904,50.506348,3946.8674,959.8967,68.90302,643.28143,66.124084,50.506348,68.90302,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 6:00,4860000,3597.512,878.0124,448.72687,50.506348,4210.776,999.45703,92.55745,2163.9084,95.097824,50.506348,92.55745,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 7:00,4863600,3597.512,814.0135,446.5807,50.506348,47302.402,1206.0784,447.205,2371.5793,84.9496,50.506348,447.205,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 8:00,4867200,3597.512,840.3819,444.34955,50.506348,44002.89,1834.819,441.03278,804.6785,75.25535,50.506348,441.03278,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 9:00,4870800,3597.512,698.5641,437.5607,50.506348,43703.14,1421.9604,440.05905,165.02866,50.560814,50.506348,440.05905,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 10:00,4874400,3597.512,519.2716,427.16013,50.506348,44021.594,1329.0972,438.98627,130.85219,24.64325,50.506348,438.98627,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 11:00,4878000,3597.512,454.75974,422.3843,50.506348,53470.332,1547.633,714.4212,132.23285,16.711966,50.506348,714.4212,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 12:00,4881600,3597.512,399.17233,418.69897,50.506348,53327.973,1478.9353,715.7461,36.44694,11.928236,50.506348,715.7461,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 13:00,4885200,3597.512,315.248,413.59933,50.506348,50708.938,2008.4994,583.9815,10.844238,6.889881,50.506348,583.9815,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 14:00,4888800,3597.512,256.79214,409.41245,50.506348,50301.984,2005.189,586.07556,8.527157,3.8996453,50.506348,586.07556,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 15:00,4892400,3597.512,257.18835,408.75186,50.506348,47563.41,1487.513,547.754,1.2077839,3.466966,50.506348,547.754,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 16:00,4896000,3597.512,259.9665,408.71832,50.506348,47616.24,1395.481,547.52057,1.1057538,3.4512744,50.506348,547.52057,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 17:00,4899600,3597.512,273.47205,409.2032,50.506348,47632.668,1339.6548,547.59705,1.0402465,3.7806304,50.506348,547.59705,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 18:00,4903200,3597.512,362.00226,414.1553,50.506348,50837.566,1969.5621,621.5875,2.8000267,7.4028296,50.506348,621.5875,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 19:00,4906800,3597.512,459.80008,419.74863,50.506348,53220.8,2030.949,679.99634,99.40228,13.274247,50.506348,679.99634,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 20:00,4910400,3597.512,621.67725,428.60425,50.506348,52764.59,2019.0573,676.3193,102.306915,27.694935,50.506348,676.3193,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 21:00,4914000,3597.512,625.50934,430.4739,50.506348,50049.95,1980.034,594.39124,331.48575,31.771204,50.506348,594.39124,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 22:00,4917600,3597.512,646.98553,431.56357,50.506348,53283.777,2150.3096,742.34174,11.328607,34.346436,50.506348,742.34174,130901.3,73179.4,-15784.6,-201976.5
+2/26/2023 23:00,4921200,3597.512,610.07837,430.04498,50.506348,50963.49,2061.9563,637.21234,10.901801,30.84785,50.506348,637.21234,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 0:00,4924800,3597.512,592.7148,428.77386,50.506348,45446.473,1637.6815,469.20364,39.77074,28.127167,50.506348,469.20364,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 1:00,4928400,3597.512,486.2361,423.7087,50.506348,44777.938,1446.489,425.13016,14.634281,18.922216,50.506348,425.13016,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 2:00,4932000,3597.512,485.50247,423.9453,50.506348,171.1401,961.9607,17.661684,8.89883,19.313019,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 3:00,4935600,3597.512,469.6875,424.8649,50.506348,168.93036,913.46204,17.661684,7.734486,20.837776,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 4:00,4939200,3597.512,456.74896,424.98877,50.506348,166.70602,878.2144,17.661684,7.3514647,21.063343,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 5:00,4942800,3597.512,473.42316,426.45087,50.506348,2067.3367,947.1367,46.26926,219.58244,23.665886,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 6:00,4946400,3597.512,477.76578,427.0349,50.506348,2478.8625,970.22845,46.26926,762.75824,24.776995,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 7:00,4950000,3597.512,9671.472,727.8879,203.91702,45423.48,1393.4042,435.91904,904.58484,4133.378,203.91702,435.91904,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 8:00,4953600,3597.512,7853.598,705.7695,133.1197,56012.508,2157.9573,796.70496,477.12042,8501.113,133.1197,796.70496,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 9:00,4957200,3597.512,5766.2114,612.00604,59.954414,53591.81,1675.706,706.1405,119.22448,6551.226,59.954414,706.1405,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 10:00,4960800,3597.512,4409.0747,578.9501,53.639256,52352.496,2103.8599,651.8474,42.462994,4243.7817,53.639256,651.8474,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 11:00,4964400,3597.512,3400.543,552.32135,53.598766,51312.098,1629.3966,627.2113,30.267782,2378.873,53.598766,627.2113,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 12:00,4968000,3597.512,2659.2725,524.3322,54.61514,52467.95,2048.1523,617.0797,14.799447,1189.139,54.61514,617.0797,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 13:00,4971600,3597.512,2368.9402,504.16632,55.625786,50407.08,2098.6597,580.6483,336.47586,681.6078,55.625786,580.6483,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 14:00,4975200,3597.512,1877.5623,483.90308,55.225204,48588.457,2058.5127,544.4061,322.08945,360.0216,55.225204,544.4061,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 15:00,4978800,3597.512,1459.1527,464.0765,53.24404,47273.56,1954.3955,504.77258,53.577988,176.51671,53.24404,504.77258,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 16:00,4982400,3597.512,1289.0591,453.0742,53.209595,47648.25,1519.9055,546.18066,1.5533484,105.23569,53.209595,546.18066,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 17:00,4986000,3597.512,1278.8845,449.4607,54.113983,47784.64,1433.7552,544.5207,1.9356872,83.14628,54.113983,544.5207,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 18:00,4989600,3597.512,1482.0038,456.35773,52.4657,50900.445,1991.7406,580.57715,7.312163,128.45378,52.4657,580.57715,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 19:00,4993200,3597.512,2363.1953,485.2615,52.424713,54328.34,2168.949,712.66956,112.95352,417.6457,52.424713,712.66956,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 20:00,4996800,3597.512,255.53711,406.75186,1.1765176,53609.03,2283.492,710.0088,1001.08844,139.26025,1.1765176,710.0088,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 21:00,5000400,3597.512,273.58725,398.17316,1.4253942,51003.336,2129.7517,639.99536,417.70486,89.781845,1.4253942,639.99536,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 22:00,5004000,3597.512,236.23332,396.2908,0.9450213,52997.145,2072.0466,692.23615,20.771677,83.34751,0.9450213,692.23615,130901.3,73179.4,-15784.6,-201976.5
+2/27/2023 23:00,5007600,3597.512,6.499915,395.12817,0.10372095,51427.625,1489.2335,624.8062,1.1260021,81.952225,0.10372095,624.8062,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 0:00,5011200,3597.512,6.4998155,395.04688,0.10372095,46438.848,1359.2803,506.23355,4.1864123,81.631836,0.10372095,506.23355,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 1:00,5014800,3597.512,14.638105,90.95006,50.506348,44788.227,1222.8044,425.37207,3.1290336,0.001387408,50.506348,425.37207,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 2:00,5018400,3597.512,76.04232,297.51962,50.506348,171.10965,772.6585,17.661684,1.9108157,0.08506241,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 3:00,5022000,3597.512,149.93079,401.50366,50.506348,168.85068,741.2879,17.661684,1.451852,0.4755736,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 4:00,5025600,3597.512,265.89847,407.49628,50.506348,166.59636,716.4626,17.661684,1.2363799,2.8774652,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 5:00,5029200,3597.512,389.18204,416.89862,50.506348,3665.874,858.60693,62.399143,573.8654,10.357124,50.506348,62.399143,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 6:00,5032800,3597.512,386.6603,419.59406,50.506348,3552.6873,1560.6686,1098.373,1666.058,13.489591,50.506348,1098.373,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 7:00,5036400,3597.512,4103.9,517.4903,50.506348,45106.94,1804.8833,449.56244,1599.1952,1116.5488,50.506348,449.56244,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 8:00,5040000,3597.512,4915.961,559.6766,52.822937,55810.188,2098.7175,801.3556,649.78595,2884.3389,52.822937,801.3556,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 9:00,5043600,3597.512,2989.7346,537.99585,53.48191,53442.87,1650.9395,709.8042,153.04597,1706.6528,53.48191,709.8042,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 10:00,5047200,3597.512,2031.8683,499.55438,53.661922,51885.566,1474.4005,660.46704,25.759089,634.65247,53.661922,660.46704,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 11:00,5050800,3597.512,1563.3263,471.06827,53.624207,50879.53,1373.6295,629.92035,10.245861,235.40611,53.624207,629.92035,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 12:00,5054400,3597.512,1309.0734,508.4753,54.506844,52632.195,1868.5148,615.2887,4.848203,107.11448,54.506844,615.2887,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 13:00,5058000,3597.512,1150.0294,505.67596,55.33338,50196.594,2127.719,581.66113,619.11206,58.88813,55.33338,581.66113,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 14:00,5061600,3597.512,923.97906,495.90927,54.871143,48292.086,2063.3582,549.154,376.94034,30.848164,54.871143,549.154,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 15:00,5065200,3597.512,726.7967,482.92892,52.93923,47140.098,1923.0786,507.1508,8.810589,16.88314,52.93923,507.1508,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 16:00,5068800,3597.512,682.38196,470.86526,53.106926,47422.586,1386.5295,548.10455,0.96607316,9.968508,53.106926,548.10455,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 17:00,5072400,3597.512,716.4826,470.83887,54.007042,47473.812,1261.8151,546.7828,0.6460481,8.934768,54.007042,546.7828,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 18:00,5076000,3597.512,756.277,470.18564,52.469105,50511.37,1168.5497,590.99786,0.5213319,14.176731,52.469105,590.99786,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 19:00,5079600,3597.512,1229.3107,491.50623,52.447556,54308.95,2115.7935,715.4126,341.0748,65.83818,52.447556,715.4126,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 20:00,5083200,3597.512,254.61032,424.72202,1.1826122,53523.72,2145.4097,714.4897,593.04175,26.677635,1.1826122,714.4897,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 21:00,5086800,3597.512,272.54193,413.16937,1.4315424,51225.22,1980.5464,638.3312,91.94032,15.089573,1.4315424,638.3312,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 22:00,5090400,3597.512,235.41367,407.66168,0.94951063,53158.363,1988.3048,689.2757,5.9142256,12.599326,0.94951063,689.2757,130901.3,73179.4,-15784.6,-201976.5
+2/28/2023 23:00,5094000,3597.512,6.443704,403.78537,0.10372095,51531.65,1513.4894,669.60425,1.1179523,11.812224,0.10372095,669.60425,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 0:00,5097600,3597.512,6.4438014,401.64142,0.10372095,46368.5,1365.0477,505.96384,3.6025984,11.539073,0.10372095,505.96384,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 1:00,5101200,3597.512,9.879105,100.708694,50.506348,44852.055,1276.0371,469.1294,2.5034769,0.003830939,50.506348,469.1294,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 2:00,5104800,3597.512,37.03146,198.20384,50.506348,171.005,779.4517,17.661684,0.78083426,0.01935999,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 3:00,5108400,3597.512,71.04866,324.275,50.506348,168.75177,748.56464,17.661684,0.66413385,0.085727505,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 4:00,5112000,3597.512,119.3191,429.31665,50.506348,166.42361,680.05975,17.661684,0.5973225,0.3048495,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 5:00,5115600,3597.512,183.30843,431.5948,50.506348,2332.105,830.13983,46.26926,280.75235,1.0241189,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 6:00,5119200,3597.512,239.9263,434.1784,50.506348,2812.109,1617.4292,1106.4579,957.74695,2.6189408,50.506348,1106.4579,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 7:00,5122800,3597.512,3837.691,536.7234,50.506348,44607.242,1817.5355,447.41193,1063.6898,931.84735,50.506348,447.41193,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 8:00,5126400,3597.512,4910.826,583.3995,52.96265,55728.285,2059.9978,803.6843,526.50635,2749.611,52.96265,803.6843,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 9:00,5130000,3597.512,2880.7332,560.0756,53.427322,53447.027,1634.074,711.1922,160.62677,1592.3247,53.427322,711.1922,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 10:00,5133600,3597.512,2036.2354,522.8476,53.641384,51952.86,1477.0078,661.4444,43.772583,613.9813,53.641384,661.4444,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 11:00,5137200,3597.512,1664.9185,521.85266,53.568344,50954.33,1385.1593,629.8735,28.30287,263.1765,53.568344,629.8735,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 12:00,5140800,3597.512,1408.9452,515.32776,54.4644,52937.97,1914.0048,662.5066,11.117763,136.116,54.4644,662.5066,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 13:00,5144400,3597.512,1310.3817,512.4331,55.339752,50223.12,2108.1538,579.3422,479.17697,87.42759,55.339752,579.3422,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 14:00,5148000,3597.512,1042.8683,502.97012,54.86415,48352.86,2045.0596,547.9687,284.4202,47.031307,54.86415,547.9687,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 15:00,5151600,3597.512,837.56665,488.1308,52.9636,47300.21,1953.7542,548.69,3.9335303,26.22468,52.9636,548.69,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 16:00,5155200,3597.512,773.28894,473.52194,53.17659,47542.848,1527.8097,546.8181,2.7960534,16.619045,53.17659,546.8181,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 17:00,5158800,3597.512,776.2432,470.99194,54.09111,47581.38,1430.9287,545.90643,2.880137,12.909469,54.09111,545.90643,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 18:00,5162400,3597.512,851.88824,474.56277,52.46364,50536.066,1386.6997,635.25745,0.8343093,21.614977,52.46364,635.25745,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 19:00,5166000,3597.512,1313.9227,487.37512,52.44356,53184.363,2121.2297,675.0491,278.96542,82.80711,52.44356,675.0491,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 20:00,5169600,3597.512,254.77797,415.59912,1.1803654,53588.168,2034.5336,700.4954,11.996161,30.910713,1.1803654,700.4954,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 21:00,5173200,3597.512,272.71118,405.43024,1.4280224,51422.26,2010.9761,628.5447,228.57298,17.671093,1.4280224,628.5447,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 22:00,5176800,3597.512,235.6063,400.56793,0.94738877,53103.734,2044.8718,735.6479,29.150694,14.943994,0.94738877,735.6479,130901.3,73179.4,-15784.6,-201976.5
+3/1/2023 23:00,5180400,3597.512,6.45066,397.1359,0.10372095,51534.812,1576.502,670.048,1.157506,14.114153,0.10372095,670.048,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 0:00,5184000,3597.512,6.450648,395.30942,0.10372095,46459.93,1373.2747,505.39084,9.236575,13.838581,0.10372095,505.39084,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 1:00,5187600,3597.512,6.416753,393.87466,0.10372095,44921.402,1287.1818,468.61996,6.591092,13.74482,0.10372095,468.61996,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 2:00,5191200,3597.512,17.845762,125.81808,50.506348,171.02513,786.9235,17.661684,1.1854287,0.004600277,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 3:00,5194800,3597.512,31.299763,176.28947,50.506348,168.8126,756.262,17.661684,0.79345876,0.01428652,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 4:00,5198400,3597.512,56.15373,271.95334,50.506348,166.46788,731.8116,17.661684,0.66273975,0.0552049,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 5:00,5202000,3597.512,87.62702,392.97107,50.506348,2347.244,836.1735,46.26926,283.69376,0.15531598,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 6:00,5205600,3597.512,108.35451,419.8357,50.506348,2541.935,1611.2019,1089.1667,840.76715,0.25109646,50.506348,1089.1667,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 7:00,5209200,3597.512,2752.3147,506.6109,50.506348,44151.797,1808.9247,447.30576,793.924,480.79095,50.506348,447.30576,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 8:00,5212800,3597.512,3618.5117,550.637,52.96952,55286.12,2207.466,805.46295,277.31882,1498.6295,52.96952,805.46295,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 9:00,5216400,3597.512,2228.338,524.7344,53.437103,53045.18,1678.3444,713.6873,49.96935,782.70135,53.437103,713.6873,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 10:00,5220000,3597.512,1535.9851,489.80862,53.65245,51610.92,1502.8013,663.68585,9.059996,247.32845,53.65245,663.68585,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 11:00,5223600,3597.512,1179.1095,466.32095,53.63432,50559.36,1400.6472,630.01385,4.115832,85.379196,53.63432,630.01385,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 12:00,5227200,3597.512,1031.0026,486.37878,54.6351,52626.098,1826.1959,618.5403,2.9057732,41.434303,54.6351,618.5403,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 13:00,5230800,3597.512,961.76636,484.36093,55.57259,50017.676,2111.3953,581.06885,518.55585,25.704533,55.57259,581.06885,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 14:00,5234400,3597.512,807.9622,479.18903,55.057255,48326.773,2018.2981,548.8923,157.67636,14.511075,55.057255,548.8923,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 15:00,5238000,3597.512,660.0275,468.13516,53.161606,47261.2,1612.4962,547.93835,1.9989649,8.422363,53.161606,547.93835,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 16:00,5241600,3597.512,628.8117,462.8833,53.221363,47413.098,1366.4286,546.7101,0.96003175,6.1534224,53.221363,546.7101,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 17:00,5245200,3597.512,659.32733,457.13025,54.122677,47473.36,1317.9674,545.5795,0.840972,5.3658395,54.122677,545.5795,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 18:00,5248800,3597.512,678.2333,455.4767,52.463055,50352.633,1253.4799,586.1533,0.6461128,8.736292,52.463055,586.1533,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 19:00,5252400,3597.512,1083.2856,472.3064,52.447556,53471.6,2054.7754,679.5492,109.63116,44.43543,52.447556,679.5492,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 20:00,5256000,3597.512,254.98836,406.92032,1.1777632,53736.902,2016.71,700.09155,4.8811536,18.71077,1.1777632,700.09155,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 21:00,5259600,3597.512,272.9372,398.75482,1.4249192,51425.094,2022.5182,628.7373,267.8558,10.242984,1.4249192,628.7373,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 22:00,5263200,3597.512,235.7843,394.64713,0.94537586,53045.83,2003.3645,691.8032,11.527979,8.219013,0.94537586,691.8032,130901.3,73179.4,-15784.6,-201976.5
+3/2/2023 23:00,5266800,3597.512,6.4572463,391.67694,0.10372095,51496.777,1920.9016,623.126,4.633871,7.5193977,0.10372095,623.126,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 0:00,5270400,3597.512,6.4234304,390.19275,0.10372095,46161.355,1709.4756,504.12555,2.257623,7.2504487,0.10372095,504.12555,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 1:00,5274000,3597.512,6.4232593,389.03217,0.10372095,44664.96,1477.3171,425.09692,1.5898403,7.1430206,0.10372095,425.09692,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 2:00,5277600,3597.512,6.3882203,388.05792,0.10372095,170.759,992.96454,17.661684,1.317023,7.099444,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 3:00,5281200,3597.512,6.385462,387.20566,0.10372095,168.34735,932.35815,17.661684,1.1543543,7.081617,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 4:00,5284800,3597.512,6.348209,386.45844,0.10372095,166.05818,883.54175,17.661684,1.043113,7.0879683,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 5:00,5288400,3597.512,18.845509,133.21298,50.506348,1026.9508,953.4094,46.26926,47.417557,0.005523102,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 6:00,5292000,3597.512,41.938744,219.22046,50.506348,1343.1427,1420.8593,891.66626,195.46265,0.028787863,50.506348,891.66626,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 7:00,5295600,3597.512,2411.286,500.7813,50.506348,43314.14,1789.7914,448.08496,234.57439,363.19357,50.506348,448.08496,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 8:00,5299200,3597.512,3389.0952,546.02264,52.981506,54884.93,2160.5178,807.8601,76.24574,1264.5778,52.981506,807.8601,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 9:00,5302800,3597.512,2191.9585,524.19995,53.44772,52748.688,1651.6586,715.64264,10.390175,719.8581,53.44772,715.64264,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 10:00,5306400,3597.512,1529.938,491.65875,53.660378,51402.02,1505.4849,665.1415,1.8114338,240.68254,53.660378,665.1415,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 11:00,5310000,3597.512,1183.3691,469.09753,53.639927,50358.445,1412.933,629.762,1.1089132,86.374146,53.639927,629.762,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 12:00,5313600,3597.512,1052.8798,458.49362,54.673462,52143.17,2046.6959,629.738,13.104734,44.818928,54.673462,629.738,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 13:00,5317200,3597.512,1008.5429,482.597,55.662098,49784.35,2104.9595,583.2492,505.88663,30.262379,55.662098,583.2492,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 14:00,5320800,3597.512,859.09705,475.4456,55.23213,47977.574,2078.2637,550.782,1003.4047,17.873825,55.23213,550.782,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 15:00,5324400,3597.512,720.24445,461.4571,53.274696,46845.03,1914.7577,555.4935,43.19822,12.624543,53.274696,555.4935,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 16:00,5328000,3597.512,705.73303,454.86493,53.237053,47364.9,1967.8298,548.0988,11.070355,11.015431,53.237053,548.0988,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 17:00,5331600,3597.512,754.9218,451.9578,54.131626,47513.88,1948.7759,546.1053,5.501163,10.917221,54.131626,546.1053,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 18:00,5335200,3597.512,943.45325,459.1206,52.480602,50629.3,2032.3955,622.13635,4.95396,29.242159,52.480602,622.13635,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 19:00,5338800,3597.512,1657.2316,485.6018,52.43156,53320.19,2158.4143,690.68427,256.297,151.14728,52.43156,690.68427,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 20:00,5342400,3597.512,253.93895,413.666,1.1857346,53139.91,2204.5696,709.53503,859.18823,56.17144,1.1857346,709.53503,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 21:00,5346000,3597.512,271.74744,404.61328,1.4343542,50763.957,2090.3396,641.2381,644.2383,33.809658,1.4343542,641.2381,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 22:00,5349600,3597.512,234.75558,401.22217,0.95211136,52744.14,2019.0625,696.85767,35.773445,30.058332,0.95211136,696.85767,130901.3,73179.4,-15784.6,-201976.5
+3/3/2023 23:00,5353200,3597.512,6.426632,398.8301,0.10372095,51446.23,1584.1177,672.87964,1.3801887,29.090654,0.10372095,672.87964,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 0:00,5356800,3597.512,23.578613,138.29886,50.506348,46531.562,1367.9513,504.73666,21.003784,0.006371702,50.506348,504.73666,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 1:00,5360400,3597.512,59.75916,252.6855,50.506348,44922.824,1270.4641,468.03094,12.540459,0.045697544,50.506348,468.03094,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 2:00,5364000,3597.512,117.62981,417.79428,50.506348,170.81729,762.42584,17.661684,1.9120303,0.2255776,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 3:00,5367600,3597.512,181.65482,420.0451,50.506348,168.56886,729.29065,17.661684,1.0289845,0.84260464,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 4:00,5371200,3597.512,223.37521,422.33295,50.506348,166.30595,703.73676,17.661684,0.7593915,1.9998152,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 5:00,5374800,3597.512,314.77292,428.16684,50.506348,2628.923,813.8098,46.89972,347.58707,6.2083526,50.506348,46.89972,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 6:00,5378400,3597.512,335.36078,431.1799,50.506348,3094.0508,850.4871,56.116306,1222.6521,9.348595,50.506348,56.116306,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 7:00,5382000,3597.512,400.21826,434.93948,50.506348,46280.363,1142.6088,415.31866,1349.8455,14.216098,50.506348,415.31866,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 8:00,5385600,3597.512,513.28687,439.72855,50.506348,43657.965,1781.3398,440.07175,512.41907,22.203236,50.506348,440.07175,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 9:00,5389200,3597.512,389.84146,433.10425,50.506348,43265.66,1387.2255,438.50842,69.645584,13.014798,50.506348,438.50842,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 10:00,5392800,3597.512,246.53973,423.39142,50.506348,53844.234,1702.7,714.8267,11.4574375,4.4556437,50.506348,714.8267,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 11:00,5396400,3597.512,199.56508,418.76065,50.506348,52333.52,1566.937,694.3221,9.1734915,1.8439907,50.506348,694.3221,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 12:00,5400000,3597.512,159.87808,415.70773,50.506348,52247.207,1418.5399,650.9881,3.4419744,0.817183,50.506348,650.9881,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 13:00,5403600,3597.512,118.71491,413.05753,50.506348,52773.297,2117.0344,662.452,85.24274,0.33433983,50.506348,662.452,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 14:00,5407200,3597.512,103.587494,413.7889,50.506348,51773.152,2114.454,646.4215,135.0726,0.21219572,50.506348,646.4215,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 15:00,5410800,3597.512,122.39655,412.16388,50.506348,49926.758,1926.5314,628.68384,2.6049914,0.29528874,50.506348,628.68384,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 16:00,5414400,3597.512,145.28275,412.83646,50.506348,50796.082,1825.5365,625.5502,2.3107474,0.446904,50.506348,625.5502,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 17:00,5418000,3597.512,180.97716,413.85492,50.506348,48837.094,1480.4242,582.4823,1.5951452,0.7271739,50.506348,582.4823,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 18:00,5421600,3597.512,225.98428,415.68506,50.506348,50519.83,1458.4674,632.1015,2.3365035,1.418189,50.506348,632.1015,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 19:00,5425200,3597.512,275.9829,418.21875,50.506348,54335.29,2163.6418,710.0967,93.843765,2.8824012,50.506348,710.0967,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 20:00,5428800,3597.512,354.52206,422.661,50.506348,52643.54,2272.8796,687.69257,1136.8148,6.0550184,50.506348,687.69257,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 21:00,5432400,3597.512,457.1873,429.8214,50.506348,51301.062,2218.8735,661.36774,800.5599,13.443674,50.506348,661.36774,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 22:00,5436000,3597.512,452.43198,431.22983,50.506348,52678.23,2226.43,703.67645,477.51962,15.591022,50.506348,703.67645,130901.3,73179.4,-15784.6,-201976.5
+3/4/2023 23:00,5439600,3597.512,526.17365,434.82205,50.506348,49617.402,2001.7786,588.3599,10.123284,21.476013,50.506348,588.3599,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 0:00,5443200,3597.512,538.8352,435.60794,50.506348,47488.516,1843.5657,545.29504,4.020665,23.226908,50.506348,545.29504,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 1:00,5446800,3597.512,659.63525,440.5898,50.506348,46165.44,1528.3546,504.19986,5.289438,34.090767,50.506348,504.19986,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 2:00,5450400,3597.512,697.6836,444.1705,50.506348,170.77615,928.74396,17.661684,1.8366313,43.958214,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 3:00,5454000,3597.512,590.9177,441.3796,50.506348,168.71794,865.6079,17.661684,1.1670095,36.952255,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 4:00,5457600,3597.512,681.07324,446.05496,50.506348,166.49626,822.66754,17.661684,0.93283087,50.69006,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 5:00,5461200,3597.512,674.4391,447.4995,50.506348,2296.2837,912.6204,46.26926,271.56165,55.963085,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 6:00,5464800,3597.512,607.06635,443.87393,50.506348,3115.2427,947.5602,55.43168,1123.9517,45.114883,50.506348,55.43168,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 7:00,5468400,3597.512,754.02423,449.4421,50.506348,46463.867,1095.7869,396.40225,1371.2076,64.01084,50.506348,396.40225,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 8:00,5472000,3597.512,683.9547,445.68353,50.506348,43641.547,1776.0121,438.7082,488.50394,51.589127,50.506348,438.7082,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 9:00,5475600,3597.512,477.87866,433.03873,50.506348,43305.297,1389.0686,437.3254,75.700356,21.433775,50.506348,437.3254,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 10:00,5479200,3597.512,396.09637,427.05682,50.506348,43373.805,1289.5868,436.06,34.0579,12.916127,50.506348,436.06,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 11:00,5482800,3597.512,339.81442,423.0001,50.506348,53212.195,1518.4407,725.322,26.42664,8.6740265,50.506348,725.322,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 12:00,5486400,3597.512,268.30872,417.8519,50.506348,53109.32,1455.1158,720.294,7.952262,4.657027,50.506348,720.294,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 13:00,5490000,3597.512,177.3087,411.8733,50.506348,50293.637,2050.4192,585.6009,124.77764,1.284217,50.506348,585.6009,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 14:00,5493600,3597.512,126.64108,408.62573,50.506348,49682.043,2021.6782,582.96185,50.804295,0.4343503,50.506348,582.96185,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 15:00,5497200,3597.512,115.42653,407.64688,50.506348,47215.742,1462.6616,545.967,1.2999775,0.30056536,50.506348,545.967,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 16:00,5500800,3597.512,141.95319,408.4632,50.506348,47371.11,1444.7113,544.7945,1.5462749,0.4507157,50.506348,544.7945,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 17:00,5504400,3597.512,189.37311,410.27167,50.506348,47444.168,1393.1624,544.2663,2.3435314,0.9105391,50.506348,544.2663,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 18:00,5508000,3597.512,237.9571,412.63074,50.506348,50646.34,1976.0062,620.2953,3.674112,1.8953047,50.506348,620.2953,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 19:00,5511600,3597.512,300.11395,415.66684,50.506348,52696.305,2074.2842,661.5772,9.147266,3.8109255,50.506348,661.5772,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 20:00,5515200,3597.512,388.09598,421.1658,50.506348,52724.156,2087.6436,669.4992,42.631275,8.019822,50.506348,669.4992,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 21:00,5518800,3597.512,431.06668,424.94894,50.506348,49934.33,2038.264,591.0405,319.90955,12.051505,50.506348,591.0405,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 22:00,5522400,3597.512,462.1174,427.30334,50.506348,52114.656,2119.9504,702.15173,11.305406,15.159256,50.506348,702.15173,130901.3,73179.4,-15784.6,-201976.5
+3/5/2023 23:00,5526000,3597.512,503.05884,429.4712,50.506348,50789.965,2065.6423,630.4918,19.743082,18.460934,50.506348,630.4918,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 0:00,5529600,3597.512,658.4521,436.658,50.506348,45530.094,1676.2367,465.6704,86.990295,32.388103,50.506348,465.6704,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 1:00,5533200,3597.512,641.5399,437.0807,50.506348,45064.77,1522.2274,464.22012,38.89899,33.614666,50.506348,464.22012,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 2:00,5536800,3597.512,699.03125,440.25778,50.506348,171.19537,973.7598,17.661684,5.361432,42.010235,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 3:00,5540400,3597.512,670.4236,442.02347,50.506348,169.03639,920.7738,17.661684,3.1751235,47.378174,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 4:00,5544000,3597.512,601.0489,439.74786,50.506348,166.769,883.4862,17.661684,2.5019398,41.139614,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 5:00,5547600,3597.512,707.836,444.80737,50.506348,3487.063,1008.1897,58.71074,535.08563,56.913,50.506348,58.71074,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 6:00,5551200,3597.512,692.7208,445.2262,50.506348,3673.313,1039.3567,73.554,1740.2537,58.676353,50.506348,73.554,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 7:00,5554800,3597.512,10731.324,793.43427,252.91922,46039.695,1448.5951,440.06622,1847.0675,5065.6445,252.91922,440.06622,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 8:00,5558400,3597.512,10264.802,841.01855,233.35033,55120.484,2056.652,750.12177,804.07385,12006.727,233.35033,750.12177,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 9:00,5562000,3597.512,5726.8057,633.69684,59.35873,53713.293,1666.3967,692.808,283.0592,8146.027,59.35873,692.808,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 10:00,5565600,3597.512,4170.148,585.21136,53.57327,52400.96,1527.7673,652.595,108.991646,4342.6333,53.57327,652.595,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 11:00,5569200,3597.512,3205.0588,553.88055,53.568737,51234.453,1427.9224,616.77454,64.410034,2193.662,53.568737,616.77454,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 12:00,5572800,3597.512,2675.9878,528.1261,54.57537,53132.992,2108.9912,667.0491,26.453043,1156.5526,54.57537,667.0491,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 13:00,5576400,3597.512,2359.6106,508.37106,55.553806,50037.344,2152.2942,569.8639,969.7304,669.55566,55.553806,569.8639,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 14:00,5580000,3597.512,1793.074,503.09583,55.10968,48039.16,2144.5698,547.05615,1234.6343,305.19733,55.10968,547.05615,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 15:00,5583600,3597.512,1359.6399,495.50223,53.2333,47068,1979.4503,548.5649,35.75056,141.97357,53.2333,548.5649,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 16:00,5587200,3597.512,1231.3279,481.41962,53.200897,47678.9,1969.392,541.3425,12.969327,90.6252,53.200897,541.3425,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 17:00,5590800,3597.512,1211.6746,489.0256,54.04978,47761.637,1779.6416,539.40045,13.239693,68.876205,54.04978,539.40045,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 18:00,5594400,3597.512,1432.9906,494.81235,52.456474,50752.43,2028.2845,611.144,6.8835506,114.8372,52.456474,611.144,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 19:00,5598000,3597.512,2028.1859,508.62427,52.410873,53892.188,2196.663,699.08777,293.24097,294.86288,52.410873,699.08777,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 20:00,5601600,3597.512,254.87784,426.6825,1.1753399,53546.523,2229.7524,707.74976,471.1967,91.51204,1.1753399,707.74976,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 21:00,5605200,3597.512,272.79837,415.35107,1.4224366,50997.258,2178.923,636.7243,883.8511,56.920147,1.4224366,636.7243,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 22:00,5608800,3597.512,251.72256,148.09201,51.543007,52826.9,2081.3972,694.87274,71.603584,0.007693705,51.543007,694.87274,130901.3,73179.4,-15784.6,-201976.5
+3/6/2023 23:00,5612400,3597.512,56.290607,254.35439,50.506348,51547.21,1582.1454,670.46515,1.2559669,0.045455575,50.506348,670.46515,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 0:00,5616000,3597.512,115.77118,420.5892,50.506348,46394.113,1358.1519,501.3656,13.185486,0.21911673,50.506348,501.3656,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 1:00,5619600,3597.512,193.06953,421.28067,50.506348,44899.215,1265.4232,465.37518,10.71728,0.778243,50.506348,465.37518,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 2:00,5623200,3597.512,253.75311,423.5764,50.506348,171.0816,761.45056,17.661684,1.86294,2.1122158,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 3:00,5626800,3597.512,287.49634,426.3143,50.506348,168.86375,727.9977,17.661684,0.9974162,4.4151573,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 4:00,5630400,3597.512,345.94916,430.84216,50.506348,166.60298,702.2442,17.661684,0.7393973,8.643333,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 5:00,5634000,3597.512,422.46948,436.46115,50.506348,3068.1306,829.19824,52.717117,463.26926,16.08079,50.506348,52.717117,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 6:00,5637600,3597.512,512.39557,441.4911,50.506348,3367.3938,1563.132,1099.424,1439.1036,25.569447,50.506348,1099.424,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 7:00,5641200,3597.512,5932.973,578.9022,73.51076,45012.062,1798.9069,446.5498,1534.8354,2025.4463,73.51076,446.5498,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 8:00,5644800,3597.512,5855.994,611.5111,68.93049,54686.33,2052.2615,755.266,649.9663,4600.3315,68.93049,755.266,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 9:00,5648400,3597.512,3502.9277,569.5995,53.341164,53283.504,1644.5302,697.9013,186.66692,2677.9348,53.341164,697.9013,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 10:00,5652000,3597.512,2485.6243,533.74445,53.59703,52013.78,1480.4152,656.50287,51.919353,1144.5575,53.59703,656.50287,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 11:00,5655600,3597.512,1952.2216,502.92206,53.586967,50807.516,1373.3707,619.0465,27.24418,491.2848,53.586967,619.0465,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 12:00,5659200,3597.512,1603.6978,521.1102,54.552826,52866.734,1890.5804,619.5844,9.130676,223.14429,54.552826,619.5844,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 13:00,5662800,3597.512,1382.1805,512.14734,55.42233,49985.05,2117.046,570.57324,561.94934,111.36717,55.42233,570.57324,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 14:00,5666400,3597.512,1093.6553,499.53458,54.954334,48068.766,2151.521,545.6774,1284.0754,52.830875,54.954334,545.6774,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 15:00,5670000,3597.512,832.7918,483.81027,53.076035,46633.125,1961.3784,505.5919,77.38742,25.48958,53.076035,505.5919,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 16:00,5673600,3597.512,765.4483,473.75397,53.15695,47196.055,1434.0186,542.9369,1.1488104,16.434498,53.15695,542.9369,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 17:00,5677200,3597.512,773.82477,476.18213,53.99402,49457.824,1462.8882,1234.4479,0.19343995,14.270411,53.99402,1234.4479,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 18:00,5680800,3597.512,835.8169,475.25046,52.47209,50725.703,935.3458,567.51276,0.14559388,21.563435,52.47209,567.51276,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 19:00,5684400,3597.512,1410.3109,498.19562,52.41761,54203.414,2056.1265,704.3443,6.2599745,95.35259,52.41761,704.3443,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 20:00,5688000,3597.512,255.33723,431.38684,1.1698322,53759.445,2176.3794,704.70905,619.0913,37.121826,1.1698322,704.70905,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 21:00,5691600,3597.512,273.16574,422.0094,1.4142118,50996.87,2102.0593,638.2594,622.2763,21.59414,1.4142118,638.2594,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 22:00,5695200,3597.512,236.13683,415.82974,0.94066244,52887.38,2040.0848,694.23236,30.997936,18.599054,0.94066244,694.23236,130901.3,73179.4,-15784.6,-201976.5
+3/7/2023 23:00,5698800,3597.512,16.64139,136.99477,50.506348,51591.52,1573.7822,669.94385,1.2988466,0.006739938,50.506348,669.94385,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 0:00,5702400,3597.512,52.71234,255.28036,50.506348,46340.246,1351.2976,500.31485,11.001486,0.040312726,50.506348,500.31485,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 1:00,5706000,3597.512,79.674355,334.93918,50.506348,44812.227,1258.8002,464.8745,6.8535457,0.09039598,50.506348,464.8745,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 2:00,5709600,3597.512,119.35562,434.27203,50.506348,171.0229,759.3488,17.661684,1.1598765,0.242763,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 3:00,5713200,3597.512,149.12611,434.69852,50.506348,168.77115,727.4308,17.661684,0.74253607,0.5045794,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 4:00,5716800,3597.512,194.89482,436.28027,50.506348,166.4956,702.41254,17.661684,0.60752785,1.2625546,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 5:00,5720400,3597.512,228.14323,437.8699,50.506348,2099.008,799.3796,46.26926,230.87994,2.5164087,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 6:00,5724000,3597.512,276.60236,440.3665,50.506348,2469.8057,1613.1027,1110.4631,754.8717,4.7015405,50.506348,1110.4631,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 7:00,5727600,3597.512,4319.897,548.3353,50.506348,44170.45,1804.3602,443.0598,824.4073,1160.1926,50.506348,443.0598,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 8:00,5731200,3597.512,4753.567,587.9694,53.016712,54172.883,2090.1218,758.12695,314.3569,2854.3413,53.016712,758.12695,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 9:00,5734800,3597.512,2657.6748,558.10034,53.380672,52782.004,1641.3531,700.9795,46.360306,1419.302,53.380672,700.9795,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 10:00,5738400,3597.512,1809.0061,516.6542,53.612617,51546.887,1467.4896,659.551,5.6527967,463.3872,53.612617,659.551,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 11:00,5742000,3597.512,1351.741,488.4875,53.641838,52655.113,1536.2284,1285.9424,0.6662642,158.00073,53.641838,1285.9424,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 12:00,5745600,3597.512,1120.5244,499.4886,54.399162,52207.55,2032.3674,626.1687,3.7206008,61.752827,54.399162,626.1687,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 13:00,5749200,3597.512,940.0946,492.58658,55.32657,49952.125,2021.4707,575.12555,263.47098,28.474825,55.32657,575.12555,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 14:00,5752800,3597.512,746.0598,483.8393,54.831303,48050.867,2016.6356,542.5789,774.1681,14.292716,54.831303,542.5789,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 15:00,5756400,3597.512,562.45654,470.9527,52.949722,46568.51,1860.5239,504.4485,116.30674,6.4428005,52.949722,504.4485,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 16:00,5760000,3597.512,530.144,461.7863,53.084263,46918.418,1660.5972,500.5651,2.447169,2.7160099,53.084263,500.5651,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 17:00,5763600,3597.512,577.48694,464.55356,53.918083,47044.312,1645.5144,498.69412,2.4177692,3.057018,53.918083,498.69412,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 18:00,5767200,3597.512,580.24774,459.9808,52.42394,50092.582,1356.5775,585.7925,1.0422877,4.2165184,52.42394,585.7925,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 19:00,5770800,3597.512,875.4376,467.69888,52.433228,53875.543,2111.5142,717.0451,450.4534,21.057978,52.433228,717.0451,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 20:00,5774400,3597.512,253.50462,403.43896,1.1835004,53505.523,2052.4438,716.1299,133.07481,9.084662,1.1835004,716.1299,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 21:00,5778000,3597.512,271.2159,395.21298,1.4298831,51537.11,1549.9836,633.4243,1.5123863,4.620981,1.4298831,633.4243,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 22:00,5781600,3597.512,234.5737,390.28265,0.951253,53302.613,1964.1627,686.0848,3.8044243,3.24444,0.951253,686.0848,130901.3,73179.4,-15784.6,-201976.5
+3/8/2023 23:00,5785200,3597.512,6.425213,386.56836,0.10372095,51500.844,1440.9663,623.2518,1.1903703,2.6375952,0.10372095,623.2518,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 0:00,5788800,3597.512,6.391952,384.50873,0.10372095,46008.27,1354.093,499.03964,1.2866616,2.3632739,0.10372095,499.03964,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 1:00,5792400,3597.512,6.358444,382.91556,0.10372095,44524.63,1216.6266,421.61038,0.93302894,2.2317927,0.10372095,421.61038,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 2:00,5796000,3597.512,6.3576097,381.6168,0.10372095,169.16647,770.0257,17.661684,0.7593812,2.1664193,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 3:00,5799600,3597.512,6.321519,380.51746,0.10372095,166.79846,737.65704,17.661684,0.65930563,2.1332297,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 4:00,5803200,3597.512,6.3184385,379.56158,0.10372095,164.52257,711.9634,17.661684,0.5916306,2.1161745,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 5:00,5806800,3597.512,6.281452,378.71426,0.10372095,711.2465,752.0129,46.26926,18.518835,2.1073372,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 6:00,5810400,3597.512,6.2779083,377.95248,0.10372095,160.52304,700.5585,17.661684,13.088607,2.1027212,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 7:00,5814000,3597.512,1631.3354,479.3573,50.506348,42078.29,1063.6191,402.39432,7.9458904,151.7271,50.506348,402.39432,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 8:00,5817600,3597.512,2481.6694,518.1603,52.99284,53248.777,2105.6265,756.82367,7.9224324,604.3817,52.99284,756.82367,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 9:00,5821200,3597.512,1813.8683,503.10114,53.43854,52101.82,1601.977,706.641,1.3145403,370.9257,53.43854,706.641,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 10:00,5824800,3597.512,1361.543,481.32935,53.69234,51823.453,1563.5682,602.84534,1.6575713,155.5454,53.69234,602.84534,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 11:00,5828400,3597.512,1057.2866,461.94873,53.623447,49944.285,1324.3223,576.82324,0.9787164,58.65371,53.623447,576.82324,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 12:00,5832000,3597.512,827.3002,445.68872,54.61957,51702.84,1298.8165,630.9623,0.7743277,17.918856,54.61957,630.9623,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 13:00,5835600,3597.512,759.982,439.0689,55.681736,50028.586,1942.8071,575.8865,271.2325,8.997327,55.681736,575.8865,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 14:00,5839200,3597.512,684.17236,434.03485,55.193718,48011.562,1926.2236,540.41425,391.4354,5.5004444,55.193718,540.41425,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 15:00,5842800,3597.512,544.66974,427.44513,53.24485,46765.7,1787.6589,502.47397,7.738685,2.692074,53.24485,502.47397,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 16:00,5846400,3597.512,521.2007,425.15228,53.212395,47038.27,1637.1039,497.8104,2.4073,1.6755497,53.212395,497.8104,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 17:00,5850000,3597.512,533.9458,423.92896,54.103867,47676.344,731.256,711.9242,0.000348219,0.9914483,54.103867,711.9242,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 18:00,5853600,3597.512,587.3832,427.49356,52.471905,52291.395,805.59546,504.8039,0.1483305,3.9183996,52.471905,504.8039,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 19:00,5857200,3597.512,874.3555,442.53763,52.42571,53168.184,2016.0232,677.9096,142.74234,20.601122,52.42571,677.9096,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 20:00,5860800,3597.512,254.25731,381.27054,1.1755117,53383.375,2057.066,702.68256,213.77388,8.24872,1.1755117,702.68256,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 21:00,5864400,3597.512,271.9615,375.86868,1.4199381,51053.285,2029.2389,634.9724,462.58484,4.14467,1.4199381,634.9724,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 22:00,5868000,3597.512,235.23645,373.0096,0.9457221,52866.273,1988.3,695.7116,16.352057,2.7706416,0.9457221,695.7116,130901.3,73179.4,-15784.6,-201976.5
+3/9/2023 23:00,5871600,3597.512,6.412359,370.91986,0.10372095,51401.02,1904.7054,625.1379,4.755972,2.1983526,0.10372095,625.1379,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 0:00,5875200,3597.512,6.412385,370.17447,0.10372095,45832.324,1565.8365,499.29593,1.9083695,1.9412944,0.10372095,499.29593,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 1:00,5878800,3597.512,6.378419,369.67545,0.10372095,44445.395,1311.7141,421.54886,1.359803,1.8166947,0.10372095,421.54886,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 2:00,5882400,3597.512,6.3772645,369.30508,0.10372095,166.31447,824.6902,17.661684,1.1212375,1.7535434,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 3:00,5886000,3597.512,6.3407893,369.00528,0.10372095,164.03247,772.4326,17.661684,0.97997457,1.7207268,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 4:00,5889600,3597.512,6.3036804,368.74612,0.10372095,161.83084,734.2663,17.661684,0.8833406,1.7034371,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 5:00,5893200,3597.512,6.30009,368.51178,0.10372095,904.4252,897.0071,46.26926,35.64103,1.6942542,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 6:00,5896800,3597.512,6.262602,368.29376,0.10372095,163.58643,838.69055,17.661684,24.590837,1.6893488,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 7:00,5900400,3597.512,1472.2683,466.19116,50.506348,42024.87,1195.8523,401.46658,15.624877,120.778366,50.506348,401.46658,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 8:00,5904000,3597.512,2193.552,500.98035,52.856365,54331.082,2191.6597,798.51373,10.828367,453.04404,52.856365,798.51373,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 9:00,5907600,3597.512,1753.183,490.6411,53.494637,52362.97,1675.5756,717.176,1.3981974,308.3774,53.494637,717.176,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 10:00,5911200,3597.512,1399.5342,473.54813,53.664284,51169.082,1436.5531,620.93744,1.149717,151.32767,53.664284,620.93744,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 11:00,5914800,3597.512,1060.8181,455.38956,53.636677,49814.332,1336.0963,576.5805,0.99926144,59.539906,53.636677,576.5805,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 12:00,5918400,3597.512,837.9097,440.88235,54.675285,52560.67,1604.1316,606.0407,1.7918321,20.566734,54.675285,606.0407,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 13:00,5922000,3597.512,742.4304,431.922,55.66864,49990.15,1916.1268,580.6641,115.85204,8.159932,55.66864,580.6641,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 14:00,5925600,3597.512,585.8359,422.0733,55.17879,48077.723,1875.0002,536.2353,130.3326,1.7599144,55.17879,536.2353,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 15:00,5929200,3597.512,418.45563,414.35748,53.233253,46883.305,1584.5533,499.1258,2.156512,0.22914612,53.233253,499.1258,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 16:00,5932800,3597.512,394.14703,342.2573,53.21916,49072.12,1406.5059,1255.8993,0.03311494,0.1110507,53.21916,1255.8993,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 17:00,5936400,3597.512,455.63373,413.36584,54.107697,47402.76,1237.0409,490.2463,0.97684824,0.1837361,54.107697,490.2463,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 18:00,5940000,3597.512,559.70825,419.81235,52.45262,49904.32,1862.462,576.2509,3.538314,2.3199544,52.45262,576.2509,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 19:00,5943600,3597.512,886.589,436.89215,52.423786,53170.758,2082.3157,693.9284,404.72467,19.49131,52.423786,693.9284,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 20:00,5947200,3597.512,253.39874,376.57202,1.1810302,53414.04,2017.7026,709.0072,43.56939,8.33715,1.1810302,709.0072,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 21:00,5950800,3597.512,270.99454,371.364,1.425325,51288.586,1987.7828,632.78455,210.3687,4.229204,1.425325,632.78455,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 22:00,5954400,3597.512,234.48364,368.67737,0.9497285,52999.04,1975.8223,691.9786,6.557857,2.8696122,0.9497285,691.9786,130901.3,73179.4,-15784.6,-201976.5
+3/10/2023 23:00,5958000,3597.512,6.3919735,366.73914,0.10372095,51423.08,1331.708,624.7329,0.87474185,2.2954423,0.10372095,624.7329,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 0:00,5961600,3597.512,6.3584113,366.13574,0.10372095,45749.082,1120.4127,455.20462,0.77063495,2.036952,0.10372095,455.20462,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 1:00,5965200,3597.512,6.3247113,365.7679,0.10372095,44384.914,1051.6318,420.87048,0.69008565,1.9119433,0.10372095,420.87048,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 2:00,5968800,3597.512,6.323915,365.51974,0.10372095,163.55132,620.2409,17.661684,0.6277129,1.8488791,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 3:00,5972400,3597.512,6.2878304,365.3344,0.10372095,162.90582,596.78955,17.661684,0.5782037,1.8163067,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 4:00,5976000,3597.512,6.284739,365.183,0.10372095,168.02911,576.97485,17.661684,0.5379273,1.7992654,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 5:00,5979600,3597.512,6.2477403,365.05057,0.10372095,633.71936,741.58215,46.26926,12.942586,1.7902837,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 6:00,5983200,3597.512,6.2441707,364.9292,0.10372095,163.96179,693.78754,17.661684,9.284776,1.7855251,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 7:00,5986800,3597.512,6.307811,364.81464,0.10372095,41882.926,1059.7699,402.5586,5.537814,1.7829922,0.10372095,402.5586,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 8:00,5990400,3597.512,6.540573,364.7047,0.10372095,42304.473,1860.2562,393.4133,101.662186,1.7816354,0.10372095,393.4133,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 9:00,5994000,3597.512,6.5057006,364.59814,0.10372095,42217.45,1817.9425,396.63586,7.768153,1.7809012,0.10372095,396.63586,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 10:00,5997600,3597.512,6.504866,364.4943,0.10372095,52674.934,1526.2202,696.8613,4.839166,1.780497,0.10372095,696.8613,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 11:00,6001200,3597.512,6.471056,364.39273,0.10372095,51111.977,1424.2976,630.55316,4.7242494,1.7802675,0.10372095,630.55316,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 12:00,6004800,3597.512,6.470504,364.29324,0.10372095,54773.934,1192.2195,625.32574,4.2779593,1.7801307,0.10372095,625.32574,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 13:00,6008400,3597.512,6.4371305,364.19568,0.10372095,52801.13,2099.4285,670.9208,14.269784,1.7800434,0.10372095,670.9208,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 14:00,6012000,3597.512,6.437562,364.0999,0.10372095,51265.504,2071.1077,627.4906,36.64412,1.7799822,0.10372095,627.4906,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 15:00,6015600,3597.512,6.40417,364.00592,0.10372095,49831.6,1799.2258,583.2868,6.0924726,1.779935,0.10372095,583.2868,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 16:00,6019200,3597.512,6.370742,363.91354,0.10372095,49707.49,1682.6697,576.76135,5.654233,1.7798952,0.10372095,576.76135,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 17:00,6022800,3597.512,6.3709197,363.8228,0.10372095,48373.953,1688.7661,535.49725,5.835591,1.7798594,0.10372095,535.49725,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 18:00,6026400,3597.512,6.3375163,363.7336,0.10372095,49848.56,1748.6819,579.267,5.8998322,1.7798259,0.10372095,579.267,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 19:00,6030000,3597.512,6.337827,363.6459,0.10372095,53846.35,2177.813,711.36523,102.38733,1.7797936,0.10372095,711.36523,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 20:00,6033600,3597.512,6.3045015,363.5597,0.10372095,52516.11,2274.2834,688.45496,973.56067,1.7797621,0.10372095,688.45496,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 21:00,6037200,3597.512,6.304285,363.47488,0.10372095,51348.75,2180.6462,662.0554,346.93842,1.779731,0.10372095,662.0554,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 22:00,6040800,3597.512,6.270433,363.39142,0.10372095,53056.32,2121.6067,699.9266,9.113296,1.7797002,0.10372095,699.9266,130901.3,73179.4,-15784.6,-201976.5
+3/11/2023 23:00,6044400,3597.512,6.236939,363.30933,0.10372095,49761.383,1617.6998,578.1061,5.417374,1.7796695,0.10372095,578.1061,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 0:00,6048000,3597.512,6.237123,363.22852,0.10372095,47067.254,1311.938,495.65875,4.7629967,1.7796391,0.10372095,495.65875,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 1:00,6051600,3597.512,6.20298,363.14896,0.10372095,170.11295,781.0594,17.661684,4.638509,1.7796088,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 2:00,6055200,3597.512,6.5029163,363.07065,0.10372095,167.78937,740.5367,17.661684,4.5506687,1.7795787,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 3:00,6058800,3597.512,6.5334463,362.9935,0.10372095,165.5183,708.71893,17.661684,4.486516,1.7795486,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 4:00,6062400,3597.512,6.496558,362.91754,0.10372095,410.32776,709.29224,46.26926,3.4123569,1.7795187,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 5:00,6066000,3597.512,6.4594474,362.8427,0.10372095,494.4992,701.6772,46.26926,11.965777,1.7794888,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 6:00,6069600,3597.512,6.4559517,362.76898,0.10372095,42382.215,1643.9948,439.61792,11.480948,1.7794591,0.10372095,439.61792,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 7:00,6073200,3597.512,8.075266,78.02374,50.506348,42187.11,1368.2471,396.03223,2.9701803,0.000848229,50.506348,396.03223,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 8:00,6076800,3597.512,6.3376174,36.073837,0.10372095,42367.516,1159.6913,393.5179,1.398395,0.001110492,0.10372095,393.5179,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 9:00,6080400,3597.512,6.305006,36.544655,0.10372095,42998.812,1164.3842,433.5663,14.940349,0.001129445,0.10372095,433.5663,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 10:00,6084000,3597.512,6.3050394,36.475094,0.10372095,52719.258,1518.2125,631.4484,11.072266,0.001124274,0.10372095,631.4484,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 11:00,6087600,3597.512,6.2732368,36.406498,0.10372095,52487.215,1902.1141,667.39087,8.090684,0.001119191,0.10372095,667.39087,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 12:00,6091200,3597.512,6.2414627,36.33885,0.10372095,49599.18,2082.3584,578.98895,247.117,0.001114195,0.10372095,578.98895,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 13:00,6094800,3597.512,6.2424183,36.272118,0.10372095,49394.12,2059.5273,586.55145,118.903404,0.001109284,0.10372095,586.55145,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 14:00,6098400,3597.512,6.2101235,36.206284,0.10372095,46638.473,1930.0734,498.76678,16.244738,0.001104454,0.10372095,498.76678,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 15:00,6102000,3597.512,6.2109146,36.14133,0.10372095,46713.355,1748.5074,496.4546,7.0069876,0.001099704,0.10372095,496.4546,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 16:00,6105600,3597.512,6.178693,36.077232,0.10372095,46682.62,1952.5024,496.17798,66.53258,0.001095031,0.10372095,496.17798,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 17:00,6109200,3597.512,6.179499,36.013973,0.10372095,49385.45,2079.1323,586.57117,197.36389,0.001090434,0.10372095,586.57117,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 18:00,6112800,3597.512,6.1471467,35.951527,0.10372095,51454.79,2161.4443,658.1726,249.79652,0.001085911,0.10372095,658.1726,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 19:00,6116400,3597.512,6.1478934,35.88988,0.10372095,52113.664,2131.2466,675.27264,65.49025,0.001081459,0.10372095,675.27264,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 20:00,6120000,3597.512,6.3142633,35.829018,0.10372095,49153.707,2164.875,583.9511,895.0926,0.001077077,0.10372095,583.9511,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 21:00,6123600,3597.512,6.4472914,35.768917,0.10372095,51617.918,2128.175,672.3303,65.10109,0.001072763,0.10372095,672.3303,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 22:00,6127200,3597.512,6.414894,35.70956,0.10372095,49626.414,1459.5293,582.6093,5.667124,0.001068516,0.10372095,582.6093,130901.3,73179.4,-15784.6,-201976.5
+3/12/2023 23:00,6130800,3597.512,6.4158216,35.650936,0.10372095,44131.168,1192.4777,421.14398,5.404487,0.001064333,0.10372095,421.14398,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 0:00,6134400,3597.512,6.383577,35.593025,0.10372095,44193.54,1157.6779,422.1189,5.325683,0.001060213,0.10372095,422.1189,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 1:00,6138000,3597.512,6.3837705,35.535816,0.10372095,165.20724,723.94055,17.661684,5.26494,0.001056155,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 2:00,6141600,3597.512,6.3492036,35.479286,0.10372095,168.45093,699.73425,17.661684,5.217245,0.001052157,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 3:00,6145200,3597.512,6.313953,35.423428,0.10372095,166.22641,679.3788,17.661684,5.1791964,0.001048218,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 4:00,6148800,3597.512,6.3115497,35.368225,0.10372095,341.23853,682.39404,46.26926,1.9089242,0.001044336,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 5:00,6152400,3597.512,6.2758694,35.313675,0.10372095,162.41817,1003.3901,45.100662,2.1643968,0.00104051,0.10372095,45.100662,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 6:00,6156000,3597.512,1539.6844,462.31384,50.506348,41732.504,1811.9432,401.4463,5.40593,140.33092,50.506348,401.4463,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 7:00,6159600,3597.512,2354.817,500.15405,52.872112,52491.996,2173.9944,718.1674,102.975174,549.88165,52.872112,718.1674,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 8:00,6163200,3597.512,1784.7242,488.40955,53.50531,51647.08,2082.555,667.00494,3.624592,364.1991,53.50531,667.00494,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 9:00,6166800,3597.512,1346.6582,466.65723,53.687492,50859.33,1441.1846,623.2415,0.9977038,149.2136,53.687492,623.2415,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 10:00,6170400,3597.512,1015.1355,447.6084,53.662006,51816.42,1614.4468,1307.0267,0.19704041,54.99558,53.662006,1307.0267,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 11:00,6174000,3597.512,825.4425,433.40887,54.617252,51401.6,2029.7537,617.7945,7.6219387,18.858393,54.617252,617.7945,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 12:00,6177600,3597.512,724.79974,424.89423,55.618095,49203.69,2181.662,578.85846,1401.6969,7.50372,55.618095,578.85846,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 13:00,6181200,3597.512,567.15546,415.49957,55.229206,47158.52,2159.449,547.2587,1556.7928,1.5350449,55.229206,547.2587,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 14:00,6184800,3597.512,379.45233,303.17084,53.274677,45968.676,2015.2146,507.66034,358.3011,0.08324298,53.274677,507.66034,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 15:00,6188400,3597.512,339.41437,131.17075,53.243164,46332.418,1913.1226,501.60043,7.421215,0.005736973,53.243164,501.60043,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 16:00,6192000,3597.512,370.6744,104.68762,54.130547,46548.695,1912.6301,497.20932,10.735556,0.002098984,54.130547,497.20932,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 17:00,6195600,3597.512,360.81372,346.28955,52.474327,49254.527,2106.8286,585.5703,456.1542,0.12043796,52.474327,585.5703,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 18:00,6199200,3597.512,651.01526,419.94412,52.46015,51378.855,2375.4856,688.9746,3158.351,6.2617106,52.46015,688.9746,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 19:00,6202800,3597.512,249.35672,363.7454,1.2127148,51823.645,2400.2842,724.2514,2889.6821,2.909803,1.2127148,724.2514,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 20:00,6206400,3597.512,266.7081,360.45184,1.4645551,49903.11,2286.6667,653.3139,1943.8376,1.159794,1.4645551,653.3139,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 21:00,6210000,3597.512,230.68184,358.27042,0.97537047,51980.656,2207.1963,710.52954,291.26614,0.670513,0.97537047,710.52954,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 22:00,6213600,3597.512,6.3113375,356.46173,0.10372095,50809.8,1896.8063,637.0633,2.4959097,0.478771,0.10372095,637.0633,130901.3,73179.4,-15784.6,-201976.5
+3/13/2023 23:00,6217200,3597.512,6.3119783,355.8927,0.10372095,45273.973,1276.2029,458.24142,0.9532492,0.3861532,0.10372095,458.24142,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 0:00,6220800,3597.512,6.279602,355.5234,0.10372095,44017.625,1182.8745,421.90482,0.8160678,0.3354155,0.10372095,421.90482,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 1:00,6224400,3597.512,6.2465534,355.27078,0.10372095,169.52577,736.88934,17.661684,0.7238659,0.30534196,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 2:00,6228000,3597.512,6.24505,355.09003,0.10372095,167.40114,704.87195,17.661684,0.65780747,0.28658295,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 3:00,6231600,3597.512,6.209786,354.95514,0.10372095,165.2207,679.306,17.661684,0.6079356,0.2744806,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 4:00,6235200,3597.512,6.2073383,354.8504,0.10372095,174.33974,594.3572,46.26926,0.45300305,0.26649424,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 5:00,6238800,3597.512,6.171637,354.76584,0.10372095,161.32494,940.89087,45.147724,1.3975778,0.26114684,0.10372095,45.147724,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 6:00,6242400,3597.512,643.0378,429.19577,50.506348,41626.668,1692.2688,401.5096,5.7674155,20.098173,50.506348,401.5096,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 7:00,6246000,3597.512,1209.3654,452.55212,52.869804,52447.664,2018.0747,718.8389,13.06174,80.792625,52.869804,718.8389,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 8:00,6249600,3597.512,901.3287,440.4261,53.46545,51577.42,1967.9135,667.4784,14.445952,37.465973,53.46545,667.4784,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 9:00,6253200,3597.512,597.56134,419.80408,53.715347,50604.95,1932.0935,626.9279,20.901188,5.697534,53.715347,626.9279,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 10:00,6256800,3597.512,346.49023,357.16495,2.9234066,48957.992,1963.7338,579.48486,328.07687,0.23500796,2.9234066,579.48486,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 11:00,6260400,3597.512,383.2697,289.8832,3.8679676,49404.91,2357.2634,639.3596,8792.014,1.6450446,3.8679676,639.3596,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 12:00,6264000,3597.512,413.96826,223.87784,4.984532,45938.46,2744.0952,615.8702,44978.59,10.279983,4.984532,615.8702,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 13:00,6267600,3597.512,393.39755,188.63402,4.6377125,42963.926,2945.8948,653.0059,69893.91,22.830048,4.6377125,653.0059,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 14:00,6271200,3597.512,316.9381,160.81595,2.7754521,41911.246,2868.6575,660.4457,56375.78,26.03307,2.7754521,660.4457,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 15:00,6274800,3597.512,312.3938,132.40869,2.7458043,41950.066,2605.3516,579.16925,32556.664,13.132555,2.7458043,579.16925,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 16:00,6278400,3597.512,345.29166,110.634346,3.6610866,41834.32,2605.1174,581.77716,32245.912,3.7615247,3.6610866,581.77716,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 17:00,6282000,3597.512,275.1488,92.21223,1.9857529,44320.062,2888.194,727.424,49448.918,0.10093741,1.9857529,727.424,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 18:00,6285600,3597.512,273.60785,83.180305,1.9627694,47306.812,3345.8916,957.50775,86709.766,0.006748694,1.9627694,957.50775,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 19:00,6289200,3597.512,236.92432,74.598595,1.3184277,48081.85,3481.5588,1033.0833,98248.4,0.005412063,1.3184277,1033.0833,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 20:00,6292800,3597.512,253.17737,69.832756,1.5913734,46236.71,3376.6687,934.19604,97063.02,0.004620547,1.5913734,934.19604,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 21:00,6296400,3597.512,219.01802,65.70372,1.0641006,47963.742,3067.3,866.07214,55331.523,0.004093398,1.0641006,866.07214,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 22:00,6300000,3597.512,5.91642,62.00789,0.10372095,46875.45,2423.1653,687.60956,9688.697,0.003713461,0.10372095,687.60956,130901.3,73179.4,-15784.6,-201976.5
+3/14/2023 23:00,6303600,3597.512,5.885642,59.838013,0.10372095,43038.74,1842.2062,494.1395,146.52058,0.003424291,0.10372095,494.1395,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 0:00,6307200,3597.512,5.8874235,58.059788,0.10372095,42621.152,1243.5039,441.59372,1.1153954,0.003195351,0.10372095,441.59372,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 1:00,6310800,3597.512,5.858308,56.56523,0.10372095,164.87253,694.7518,17.661684,0.77971864,0.003008603,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 2:00,6314400,3597.512,5.8281174,55.28363,0.10372095,163.45148,627.01685,17.661684,0.6242668,0.002852681,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 3:00,6318000,3597.512,5.828661,54.166683,0.10372095,161.85916,582.82306,17.661684,0.5326579,0.002720042,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 4:00,6321600,3597.512,5.79783,53.18021,0.10372095,160.08598,1318.9515,16.941729,16.56143,0.002605476,0.10372095,16.941729,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 5:00,6325200,3597.512,5.7978945,52.302353,0.10372095,157.00398,1331.8738,16.738016,40.906097,0.002505429,0.10372095,16.738016,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 6:00,6328800,3597.512,117.16678,421.09506,50.506348,40716.094,1738.9305,412.2976,74.16418,0.5662816,50.506348,412.2976,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 7:00,6332400,3597.512,482.6879,426.35913,52.951973,51149.08,2200.7363,738.0268,1087.8579,1.7175637,52.951973,738.0268,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 8:00,6336000,3597.512,409.89105,419.81955,53.632347,49873.918,2217.3157,693.5676,2125.4905,0.18533432,53.632347,693.5676,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 9:00,6339600,3597.512,337.628,118.10415,3.0774953,48494.83,2317.3237,655.1557,6292.761,0.012173683,3.0774953,655.1557,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 10:00,6343200,3597.512,335.9915,132.8083,3.0452588,46326.75,2422.0752,610.84296,14066.083,0.5816371,3.0452588,610.84296,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 11:00,6346800,3597.512,370.31073,120.42894,4.0437107,46701.676,2789.4568,680.18585,42505.33,0.98794174,4.0437107,680.18585,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 12:00,6350400,3597.512,401.99646,115.06818,5.1667624,43821.938,3350.2712,836.9413,111562.22,2.5672724,5.1667624,836.9413,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 13:00,6354000,3597.512,385.29526,121.348495,4.8424582,43368.184,3847.0918,1197.9543,142156.45,11.797556,4.8424582,1197.9543,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 14:00,6357600,3597.512,308.94876,141.21771,3.20164,42406.047,3886.7695,1320.6925,123010.66,52.01141,3.20164,1320.6925,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 15:00,6361200,3597.512,302.9886,138.95341,3.3430557,42587.8,3214.3896,876.6329,77600.945,51.474857,3.3430557,876.6329,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 16:00,6364800,3597.512,334.0431,120.44463,4.081021,42039.824,2982.8474,671.1608,73103.51,19.735966,4.081021,671.1608,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 17:00,6368400,3597.512,264.6557,101.38553,2.1382334,44414.887,3394.9,928.5574,101848.17,4.5993276,2.1382334,928.5574,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 18:00,6372000,3597.512,262.93787,86.62417,2.080076,47999.785,4225.1997,1521.7362,155409.2,0.05961381,2.080076,1521.7362,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 19:00,6375600,3597.512,227.88557,83.925995,1.3998771,48254.95,4358.992,1547.3335,183433.53,0.011699214,1.3998771,1547.3335,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 20:00,6379200,3597.512,243.89825,83.026146,1.693612,46243.543,4335.105,1477.8851,195867,0.007290863,1.693612,1477.8851,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 21:00,6382800,3597.512,211.03877,74.86518,1.1326919,48095.895,4172.136,1525.8896,141476.89,0.005788892,1.1326919,1525.8896,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 22:00,6386400,3597.512,5.8134694,69.37331,0.10372095,47191.035,2855.4412,856.91077,29623.107,0.004974482,0.10372095,856.91077,130901.3,73179.4,-15784.6,-201976.5
+3/15/2023 23:00,6390000,3597.512,5.785146,66.20995,0.10372095,42056.074,2073.1064,498.51944,3341.7446,0.004443539,0.10372095,498.51944,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 0:00,6393600,3597.512,5.7883816,63.784218,0.10372095,41580.195,1793.2407,453.7911,115.45856,0.004061224,0.10372095,453.7911,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 1:00,6397200,3597.512,5.762156,61.830555,0.10372095,161.2143,852.512,17.661684,1.2153629,0.003768385,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 2:00,6400800,3597.512,5.735103,60.203426,0.10372095,160.57834,723.84204,17.661684,0.85249615,0.003534448,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 3:00,6404400,3597.512,5.737586,58.81487,0.10372095,159.4799,654.4016,17.661684,0.68519014,0.0033418,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 4:00,6408000,3597.512,5.7099333,57.607796,0.10372095,157.59555,1601.435,257.87375,130.06696,0.003179466,0.10372095,257.87375,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 5:00,6411600,3597.512,5.7118487,56.543102,0.10372095,154.21805,1379.7252,39.384445,118.61276,0.003040189,0.10372095,39.384445,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 6:00,6415200,3597.512,29.219976,209.56268,50.506348,40102.5,1764.0436,419.1024,135.1969,0.024764353,50.506348,419.1024,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 7:00,6418800,3597.512,345.2557,324.894,52.98843,50845.53,2116.0032,748.31445,235.53935,0.089017436,52.98843,748.31445,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 8:00,6422400,3597.512,327.28168,142.92796,2.9082072,50293.992,1997.0404,695.1912,16.535082,0.01855145,2.9082072,695.1912,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 9:00,6426000,3597.512,335.28802,125.69642,3.102034,49353.945,2062.2295,647.2505,558.75824,0.013618967,3.102034,647.2505,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 10:00,6429600,3597.512,334.02338,114.20124,3.064872,47568.066,2056.0771,599.74866,1004.8107,0.010868844,3.064872,599.74866,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 11:00,6433200,3597.512,370.37442,105.77276,4.0570397,48740.23,2247.686,651.97424,3951.8953,0.008883421,4.0570397,651.97424,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 12:00,6436800,3597.512,402.9288,98.94759,5.094814,45954.19,2581.636,611.0953,26819.809,0.007412638,5.094814,611.0953,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 13:00,6440400,3597.512,388.7382,91.829575,4.6354275,43411.89,2705.5732,601.09515,41904.9,0.006296883,4.6354275,601.09515,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 14:00,6444000,3597.512,317.10617,113.81231,2.658826,41645.47,2628.8772,592.5602,33709.74,0.014565784,2.658826,592.5602,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 15:00,6447600,3597.512,315.46478,107.46406,2.6380515,41862.45,2518.3088,573.4599,24396.719,0.009383307,2.6380515,573.4599,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 16:00,6451200,3597.512,350.65494,92.05988,3.5420585,42294.816,2360.7676,546.4093,14276.239,0.006531857,3.5420585,546.4093,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 17:00,6454800,3597.512,280.1491,83.68436,1.9167249,45950.52,2157.5002,625.989,2292.5898,0.005575454,1.9167249,625.989,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 18:00,6458400,3597.512,285.29797,129.5254,52.595955,50068.83,2602.5251,758.60626,16262.788,0.00492686,52.595955,758.60626,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 19:00,6462000,3597.512,239.6357,66.21542,1.2923077,49221.67,2745.1726,774.7366,26812.785,0.003725453,1.2923077,774.7366,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 20:00,6465600,3597.512,256.15472,62.211926,1.5580531,46832.68,2683.6174,700.642,28050.04,0.003301445,1.5580531,700.642,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 21:00,6469200,3597.512,221.72217,59.695892,1.0415252,49029.34,2420.7195,759.69025,6253.838,0.003070524,1.0415252,759.69025,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 22:00,6472800,3597.512,6.034825,57.103096,0.10372095,48611.68,2004.7363,667.62787,107.94158,0.002883778,0.10372095,667.62787,130901.3,73179.4,-15784.6,-201976.5
+3/16/2023 23:00,6476400,3597.512,6.0043488,55.669052,0.10372095,44021.184,1257.3639,476.69418,1.0543082,0.002727034,0.10372095,476.69418,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 0:00,6480000,3597.512,6.0062814,54.409794,0.10372095,42944.16,1064.1964,432.86688,0.67318445,0.002593288,0.10372095,432.86688,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 1:00,6483600,3597.512,5.9761934,53.292976,0.10372095,165.85176,598.7097,17.661684,0.5651589,0.002477665,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 2:00,6487200,3597.512,5.976399,52.294006,0.10372095,163.9749,562.3847,17.661684,0.49328864,0.002376586,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 3:00,6490800,3597.512,5.944324,51.39378,0.10372095,162.07034,534.5662,17.661684,0.44170257,0.002287369,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 4:00,6494400,3597.512,5.9438195,50.577213,0.10372095,160.26009,1275.0446,47.972923,2.7428277,0.00220796,0.10372095,47.972923,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 5:00,6498000,3597.512,5.911196,49.83787,0.10372095,157.94547,1315.2623,17.117962,12.271179,0.002137099,0.10372095,17.117962,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 6:00,6501600,3597.512,241.52478,422.87833,50.506348,40754.367,1718.2194,409.18713,28.169615,2.9942467,50.506348,409.18713,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 7:00,6505200,3597.512,689.5002,435.4001,52.93291,51066.676,2208.3594,735.5631,1233.9149,11.865384,52.93291,735.5631,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 8:00,6508800,3597.512,632.04065,432.81613,53.616703,50200.49,2050.596,693.89056,183.66797,8.885442,53.616703,693.89056,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 9:00,6512400,3597.512,515.65875,423.57468,53.775124,49612.41,1957.6359,641.8274,43.195587,2.2745512,53.775124,641.8274,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 10:00,6516000,3597.512,423.9442,416.7235,53.722527,48408.707,1897.9849,590.7032,25.0019,0.25738108,53.722527,590.7032,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 11:00,6519600,3597.512,378.13663,130.08862,3.921723,50036.758,1935.3442,636.37585,13.197036,0.015980478,3.921723,636.37585,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 12:00,6523200,3597.512,411.87177,94.693886,4.941954,47917.652,2142.1736,586.71747,2848.6616,0.007175461,4.941954,586.71747,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 13:00,6526800,3597.512,396.10513,72.53216,4.452717,45862.617,2125.6943,556.5295,3200.381,0.003809056,4.452717,556.5295,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 14:00,6530400,3597.512,323.35355,58.6207,2.563578,44671.01,2010.4008,516.1661,1574.9458,0.002526288,2.563578,516.1661,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 15:00,6534000,3597.512,322.00748,53.4434,2.5389795,45247.68,1836.9396,515.3403,59.305923,0.002098212,2.5389795,515.3403,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 16:00,6537600,3597.512,358.95987,84.375084,54.178173,45749.465,1625.1383,504.92078,2.2850993,0.001146174,54.178173,504.92078,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 17:00,6541200,3597.512,346.65616,313.77716,52.505802,48694.195,1918.0712,586.68884,90.18011,0.08821164,52.505802,586.68884,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 18:00,6544800,3597.512,555.21765,420.8937,52.471275,52576.914,2155.1094,731.7612,636.5335,3.2091436,52.471275,731.7612,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 19:00,6548400,3597.512,248.23047,365.00043,1.2137935,52139.22,2254.4944,735.83014,2027.9761,1.0160375,1.2137935,735.83014,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 20:00,6552000,3597.512,265.3314,362.81808,1.463361,49649.496,2190.241,661.8383,2228.6821,0.46463293,1.463361,661.8383,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 21:00,6555600,3597.512,229.81137,360.92923,0.9788502,51722.17,2049.0984,719.9116,83.32934,0.27932778,0.9788502,719.9116,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 22:00,6559200,3597.512,6.255742,361.78983,0.10372095,50226.09,1402.2573,631.6416,1.026029,0.19712958,0.10372095,631.6416,130901.3,73179.4,-15784.6,-201976.5
+3/17/2023 23:00,6562800,3597.512,6.2231684,331.23627,0.10372095,44877.234,1146.7587,459.56894,0.8052901,0.1536909,0.10372095,459.56894,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 0:00,6566400,3597.512,6.1906404,305.474,0.10372095,43538.8,1054.4393,422.11462,0.6756596,0.12796444,0.10372095,422.11462,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 1:00,6570000,3597.512,6.1904035,287.61996,0.10372095,168.24438,610.9186,17.661684,0.590693,0.11149428,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 2:00,6573600,3597.512,6.155639,274.58963,0.10372095,166.02936,581.1254,17.661684,0.5299375,0.100350104,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 3:00,6577200,3597.512,6.153198,264.85333,0.10372095,163.8356,557.3031,17.661684,0.48383996,0.09249896,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 4:00,6580800,3597.512,6.117701,257.4447,0.10372095,801.34796,976.04926,277.38245,26.059158,0.08679861,0.10372095,277.38245,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 5:00,6584400,3597.512,6.114764,251.7253,0.10372095,160.02031,841.33563,17.661684,18.461178,0.08256374,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 6:00,6588000,3597.512,6.2106137,247.25842,0.10372095,41677.062,1637.4485,394.06958,13.005432,0.07936157,0.10372095,394.06958,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 7:00,6591600,3597.512,6.406855,243.73611,0.10372095,41463.848,1819.7325,437.50665,79.30392,0.076906666,0.10372095,437.50665,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 8:00,6595200,3597.512,6.3734016,240.93591,0.10372095,41616.01,1706.4377,394.56335,3.1703768,0.07500406,0.10372095,394.56335,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 9:00,6598800,3597.512,6.373161,238.69386,0.10372095,51046.246,1970.3082,669.05963,4.870137,0.073516704,0.10372095,669.05963,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 10:00,6602400,3597.512,6.3408012,236.88704,0.10372095,50289.24,1941.7512,674.5621,2.7897885,0.0723458,0.10372095,674.5621,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 11:00,6606000,3597.512,6.341544,235.42204,0.10372095,51974.562,1995.7942,682.47577,23.894903,0.07141875,0.10372095,682.47577,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 12:00,6609600,3597.512,6.309332,234.22714,0.10372095,52119.04,1633.5416,686.67206,1.5892268,0.07068128,0.10372095,686.67206,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 13:00,6613200,3597.512,6.2767,233.24666,0.10372095,51129.797,1751.9113,611.09436,2.3842547,0.07009227,0.10372095,611.09436,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 14:00,6616800,3597.512,6.277944,232.43713,0.10372095,49140.832,1362.0121,573.4544,1.0854386,0.06962017,0.10372095,573.4544,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 15:00,6620400,3597.512,6.2461786,231.76437,0.10372095,49181.6,1299.7709,573.6196,0.9148401,0.0692406,0.10372095,573.6196,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 16:00,6624000,3597.512,6.2473016,231.20137,0.10372095,47855.742,1209.9487,532.9872,0.791405,0.06893452,0.10372095,532.9872,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 17:00,6627600,3597.512,6.215459,230.72668,0.10372095,49261.38,1213.1952,575.0704,0.70071113,0.06868702,0.10372095,575.0704,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 18:00,6631200,3597.512,6.216674,230.32341,0.10372095,52355.8,1280.2806,673.034,0.6328084,0.068486415,0.10372095,673.034,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 19:00,6634800,3597.512,8.516274,78.81021,50.506348,52650.24,1994.9609,671.1831,86.19648,0.000819922,50.506348,671.1831,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 20:00,6638400,3597.512,19.174082,112.80651,50.506348,51409.07,2023.276,656.2198,268.65485,0.003335203,50.506348,656.2198,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 21:00,6642000,3597.512,30.284357,150.719,50.506348,52713.906,2018.3865,704.8387,56.24424,0.010224747,50.506348,704.8387,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 22:00,6645600,3597.512,45.406765,199.89836,50.506348,49206.973,1414.9005,576.30585,1.2499453,0.025778554,50.506348,576.30585,130901.3,73179.4,-15784.6,-201976.5
+3/18/2023 23:00,6649200,3597.512,71.657166,287.32208,50.506348,46433.715,1247.6619,489.50284,1.0116955,0.07336734,50.506348,489.50284,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 0:00,6652800,3597.512,80.51919,312.65405,50.506348,45123.02,1156.0029,453.00687,0.8641555,0.09246971,50.506348,453.00687,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 1:00,6656400,3597.512,81.79013,326.7083,50.506348,169.30554,680.30536,17.661684,0.76419324,0.10422186,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 2:00,6660000,3597.512,85.891624,360.93576,50.506348,167.17166,649.05756,17.661684,0.69132596,0.13626356,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 3:00,6663600,3597.512,88.2464,384.18564,50.506348,164.99084,623.8228,17.661684,0.63531876,0.15936317,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 4:00,6667200,3597.512,113.27539,406.22342,50.506348,809.558,795.75085,46.26926,27.050812,0.30549735,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 5:00,6670800,3597.512,155.6029,408.43228,50.506348,1020.7443,807.3225,46.26926,110.26409,0.7598761,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 6:00,6674400,3597.512,161.98224,408.94547,50.506348,42670.688,1581.1271,430.65042,107.23161,0.93187064,50.506348,430.65042,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 7:00,6678000,3597.512,187.77885,409.75314,50.506348,41635.56,1836.2213,392.05786,27.99679,1.2362372,50.506348,392.05786,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 8:00,6681600,3597.512,165.43744,408.59277,50.506348,41763.016,1385.5197,391.23474,14.019397,0.87933576,50.506348,391.23474,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 9:00,6685200,3597.512,135.8585,406.8812,50.506348,41978.645,1244.809,430.66904,0.9919759,0.4881467,50.506348,430.66904,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 10:00,6688800,3597.512,93.88734,399.34012,50.506348,51611.434,1387.2029,667.4093,0.8316842,0.17629497,50.506348,667.4093,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 11:00,6692400,3597.512,75.06292,320.79352,50.506348,52141.426,1348.7277,679.33575,0.73029184,0.09990557,50.506348,679.33575,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 12:00,6696000,3597.512,50.459824,227.54808,50.506348,49340.26,1875.6808,566.19653,15.42774,0.03848291,50.506348,566.19653,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 13:00,6699600,3597.512,29.6817,151.33612,50.506348,49058.42,1509.4862,573.0798,1.5374099,0.010632535,50.506348,573.0798,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 14:00,6703200,3597.512,16.060287,102.63335,50.506348,46377.758,1154.6794,491.9441,0.74328834,0.002270382,50.506348,491.9441,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 15:00,6706800,3597.512,14.45957,98.50406,50.506348,46351.906,1117.382,490.49335,0.6662737,0.001887567,50.506348,490.49335,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 16:00,6710400,3597.512,14.537516,99.02553,50.506348,46332.62,1086.2853,489.3059,0.60466266,0.001935274,50.506348,489.3059,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 17:00,6714000,3597.512,44.379395,205.85895,50.506348,49177.96,1144.1324,572.14844,0.55519134,0.028773254,50.506348,572.14844,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 18:00,6717600,3597.512,103.49045,405.62973,50.506348,52138.29,1986.2133,655.99756,102.46596,0.19026615,50.506348,655.99756,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 19:00,6721200,3597.512,203.17851,408.03662,50.506348,52258.566,1969.6475,676.2004,13.564934,0.97376996,50.506348,676.2004,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 20:00,6724800,3597.512,300.12256,412.9487,50.506348,48902.613,1941.5099,571.5706,283.0415,3.5167058,50.506348,571.5706,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 21:00,6728400,3597.512,358.33508,417.6158,50.506348,52153.414,2017.1605,726.7077,11.554155,6.876684,50.506348,726.7077,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 22:00,6732000,3597.512,376.0541,419.9523,50.506348,49524.52,2033.5664,614.8128,7.6841693,9.044786,50.506348,614.8128,130901.3,73179.4,-15784.6,-201976.5
+3/19/2023 23:00,6735600,3597.512,409.1592,422.27853,50.506348,44343.61,1687.8912,457.96466,27.119123,11.575346,50.506348,457.96466,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 0:00,6739200,3597.512,405.23724,422.58466,50.506348,43790.082,1481.3713,414.19168,11.032217,12.005103,50.506348,414.19168,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 1:00,6742800,3597.512,421.5825,424.44577,50.506348,169.67293,1001.9785,17.661684,6.682529,14.39073,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 2:00,6746400,3597.512,379.194,423.82117,50.506348,167.4552,950.3263,17.661684,5.680269,13.668213,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 3:00,6750000,3597.512,402.73932,425.73877,50.506348,165.2797,913.1661,17.661684,5.3138413,16.33586,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 4:00,6753600,3597.512,385.25552,425.5211,50.506348,2311.296,992.888,46.26926,279.64133,16.1156,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 5:00,6757200,3597.512,472.8628,429.2347,50.506348,2918.7734,1421.9142,1104.0609,1020.77454,22.077135,50.506348,1104.0609,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 6:00,6760800,3597.512,6294.6304,585.48724,85.35261,44065.562,1610.3617,429.01974,1065.4283,2256.4675,85.35261,429.01974,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 7:00,6764400,3597.512,6430.876,630.31934,87.568214,53887.797,2122.2407,750.78937,489.94034,5412.4507,87.568214,750.78937,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 8:00,6768000,3597.512,4557.786,580.5873,53.367313,52708.715,1674.5718,702.5426,119.29107,4112.6846,53.367313,702.5426,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 9:00,6771600,3597.512,3477.2834,558.0907,53.585804,51304.86,2085.9766,646.12537,22.421803,2509.804,53.585804,646.12537,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 10:00,6775200,3597.512,2659.0847,530.6398,53.543808,49725.914,1599.8986,608.2559,5.3040996,1308.323,53.543808,608.2559,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 11:00,6778800,3597.512,2011.1847,500.99036,54.569916,52312.13,1347.0338,575.8301,1.5515012,579.2996,54.569916,575.8301,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 12:00,6782400,3597.512,1766.2711,481.6168,55.51134,49360.363,2064.4143,561.6819,319.18118,288.54315,55.51134,561.6819,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 13:00,6786000,3597.512,1388.7249,463.35306,55.087914,47534.05,2034.171,529.43884,340.32236,135.02606,55.087914,529.43884,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 14:00,6789600,3597.512,1033.1436,445.41168,53.19841,46222.6,1897.8195,488.275,6.522318,57.83481,53.19841,488.275,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 15:00,6793200,3597.512,890.23456,435.85327,53.1631,46499.83,1306.7185,529.3808,0.88794667,31.09998,53.1631,529.3808,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 16:00,6796800,3597.512,844.49365,431.1431,54.031734,46604.047,1176.783,486.23547,0.7564201,20.383816,54.031734,486.23547,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 17:00,6800400,3597.512,962.5597,436.88834,52.45527,51450.395,1510.3196,1301.4946,0.05481384,35.445183,52.45527,1301.4946,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 18:00,6804000,3597.512,1534.4718,460.47263,52.413536,53591.535,2088.067,698.9204,295.87372,135.40355,52.413536,698.9204,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 19:00,6807600,3597.512,252.60359,390.13455,1.1734524,53297.26,2093.087,712.75757,268.77228,48.13307,1.1734524,712.75757,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 20:00,6811200,3597.512,269.89502,382.67,1.4129888,51176.695,1951.9095,638.2716,31.057297,28.544743,1.4129888,638.2716,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 21:00,6814800,3597.512,234.02853,380.42117,0.9472277,53051.695,1524.4775,692.05646,1.2071149,25.058455,0.9472277,692.05646,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 22:00,6818400,3597.512,6.3874626,379.03235,0.10372095,50774.035,1361.7715,609.0388,0.9804649,24.119577,0.10372095,609.0388,130901.3,73179.4,-15784.6,-201976.5
+3/20/2023 23:00,6822000,3597.512,6.3876085,378.83743,0.10372095,45620.004,1327.6255,489.8237,7.092184,23.847424,0.10372095,489.8237,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 0:00,6825600,3597.512,6.3538713,378.7462,0.10372095,43892.22,1208.7454,413.10785,5.244285,23.767303,0.10372095,413.10785,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 1:00,6829200,3597.512,6.3527684,378.686,0.10372095,167.00482,778.2536,17.661684,3.1346602,23.743614,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 2:00,6832800,3597.512,10.63952,70.439995,50.506348,164.68597,752.15924,17.661684,2.5620716,0.000489105,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 3:00,6836400,3597.512,35.703274,177.63129,50.506348,162.7359,731.03436,17.661684,2.3283734,0.018767878,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 4:00,6840000,3597.512,89.285866,385.98563,50.506348,2130.1587,823.06683,46.26926,239.37007,0.16391127,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 5:00,6843600,3597.512,153.68858,404.77158,50.506348,2571.2507,1585.8818,1110.1539,824.10065,0.61101854,50.506348,1110.1539,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 6:00,6847200,3597.512,2658.718,489.91537,50.506348,43336.29,1771.5742,432.6814,807.8694,478.65295,50.506348,432.6814,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 7:00,6850800,3597.512,3981.9307,540.4322,52.952427,53543.426,2159.0383,757.005,277.72424,1722.507,52.952427,757.005,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 8:00,6854400,3597.512,2343.6687,517.5311,53.378597,51996.785,1615.9279,658.9342,33.6083,975.6969,53.378597,658.9342,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 9:00,6858000,3597.512,1498.9828,476.74918,53.588108,50590.555,1458.9344,606.56647,20.799046,267.726,53.588108,606.56647,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 10:00,6861600,3597.512,1093.6721,449.7218,53.57682,51144.996,1364.9,1286.2249,0.00629766,76.577614,53.57682,1286.2249,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 11:00,6865200,3597.512,891.1992,481.73444,54.495575,51387.805,1676.694,592.2231,2.0743284,26.98582,54.495575,592.2231,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 12:00,6868800,3597.512,843.93066,483.7039,55.30127,49041.914,1986.1222,563.1253,586.4419,17.410488,55.30127,563.1253,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 13:00,6872400,3597.512,720.1879,484.32147,54.684246,47111.043,1980.5706,532.8908,886.42084,14.261379,54.684246,532.8908,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 14:00,6876000,3597.512,534.82745,476.01965,52.74467,45757.87,1813.5237,492.11246,64.29659,9.326458,52.74467,492.11246,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 15:00,6879600,3597.512,481.25867,466.3595,52.849518,46189.44,1494.3696,489.88974,1.8192356,3.8760898,52.849518,489.88974,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 16:00,6883200,3597.512,505.6618,462.9815,53.79975,46256.13,1527.7253,487.07956,1.9677494,2.2726028,53.79975,487.07956,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 17:00,6886800,3597.512,497.726,464.68335,52.161854,49096.86,1741.9303,567.9234,2.5491595,3.4573302,52.161854,567.9234,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 18:00,6890400,3597.512,734.1876,468.65262,52.420055,52418.95,1955.617,671.4508,5.954375,10.901187,52.420055,671.4508,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 19:00,6894000,3597.512,251.85054,408.9346,1.1747319,53035.453,2099.956,701.88654,477.22162,4.594435,1.1747319,701.88654,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 20:00,6897600,3597.512,269.10733,404.72125,1.4147646,50839.684,1976.0894,640.42163,128.73717,1.9037713,1.4147646,640.42163,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 21:00,6901200,3597.512,233.42447,399.67932,0.94943225,52917.22,1577.8243,694.07074,1.3977654,1.0979961,0.94943225,694.07074,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 22:00,6904800,3597.512,6.3388267,392.88928,0.10372095,50664.26,1386.082,608.032,1.0694889,0.7953926,0.10372095,608.032,130901.3,73179.4,-15784.6,-201976.5
+3/21/2023 23:00,6908400,3597.512,6.3390665,389.21402,0.10372095,45219.746,1324.0071,488.7806,0.91605353,0.6554263,0.10372095,488.7806,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 0:00,6912000,3597.512,6.3054767,386.51498,0.10372095,43818.83,1142.9404,412.14722,0.78196055,0.5821001,0.10372095,412.14722,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 1:00,6915600,3597.512,6.270897,384.41473,0.10372095,162.8607,705.3089,17.661684,0.69967496,0.54070413,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 2:00,6919200,3597.512,6.2683783,382.7112,0.10372095,168.49052,672.0587,17.661684,0.6382807,0.51622915,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 3:00,6922800,3597.512,6.2316494,381.28598,0.10372095,166.23102,644.84894,17.661684,0.5901429,0.5013304,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 4:00,6926400,3597.512,6.228227,380.0648,0.10372095,520.60095,756.4508,46.26926,7.566004,0.4920862,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 5:00,6930000,3597.512,6.2580876,378.9986,0.10372095,162.21455,708.4357,17.661684,5.5570016,0.48627296,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 6:00,6933600,3597.512,1126.4316,469.27274,50.506348,41371.035,1063.4702,391.6701,3.2709773,68.801094,50.506348,391.6701,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 7:00,6937200,3597.512,1721.3871,497.9729,52.8692,52483.355,2173.9597,704.91534,123.47999,250.11394,52.8692,704.91534,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 8:00,6940800,3597.512,1203.7767,479.50714,53.461826,51487.41,2087.8672,667.1481,9.831215,110.37441,53.461826,667.1481,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 9:00,6944400,3597.512,825.7773,455.3784,53.63958,50221.008,1628.7927,610.3076,3.3453195,26.270166,53.63958,610.3076,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 10:00,6948000,3597.512,618.9648,440.12482,53.598164,48977.35,1621.9613,566.6137,3.438659,6.725666,53.598164,566.6137,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 11:00,6951600,3597.512,523.3144,455.65063,54.486263,50428.23,1928.3862,610.1732,4.495722,0.9715563,54.486263,610.1732,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 12:00,6955200,3597.512,474.32205,381.39655,55.391857,48402.81,2254.458,566.9711,2974.5134,0.52690935,55.391857,566.9711,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 13:00,6958800,3597.512,396.0107,139.81694,4.377094,45671.33,2429.0234,543.14795,10955.086,0.31994304,4.377094,543.14795,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 14:00,6962400,3597.512,322.63828,106.84393,2.5238414,43907.094,2300.2458,510.67612,6317.8394,0.016543152,2.5238414,510.67612,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 15:00,6966000,3597.512,321.10468,87.534096,2.5028443,44644.664,2074.97,509.70032,790.5249,0.006818202,2.5028443,509.70032,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 16:00,6969600,3597.512,357.05228,79.97502,3.353557,45040.01,2033.1467,498.28308,501.14127,0.005724998,3.353557,498.28308,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 17:00,6973200,3597.512,323.90714,261.88098,52.49648,47970.45,2124.3765,580.82404,574.9994,0.043276403,52.49648,580.82404,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 18:00,6976800,3597.512,436.97366,437.48785,52.469204,51295.477,2405.5596,705.18964,3313.302,0.7758422,52.469204,705.18964,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 19:00,6980400,3597.512,246.9036,382.41977,1.2208747,51582.08,2410.843,733.91174,2714.3716,0.19299322,1.2208747,733.91174,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 20:00,6984000,3597.512,263.83514,311.73898,1.4701124,49711.664,2292.8152,658.5226,1808.4795,0.11655182,1.4701124,658.5226,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 21:00,6987600,3597.512,228.7766,263.19333,0.98578876,51902.406,2172.163,714.81415,88.56674,0.078546435,0.98578876,714.81415,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 22:00,6991200,3597.512,6.2914248,229.28981,0.10372095,50081.7,1527.1344,617.43964,2.9496562,0.05747594,0.10372095,617.43964,130901.3,73179.4,-15784.6,-201976.5
+3/22/2023 23:00,6994800,3597.512,6.2924643,205.34982,0.10372095,44787.09,1271.8876,449.8402,2.7141168,0.044571966,0.10372095,449.8402,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 0:00,6998400,3597.512,6.2607107,187.2356,0.10372095,43504.562,1179.8419,414.41013,2.5787485,0.036062386,0.10372095,414.41013,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 1:00,7002000,3597.512,6.2610965,173.06372,0.10372095,168.89877,743.0769,17.661684,2.4908135,0.03012837,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 2:00,7005600,3597.512,6.2270746,161.67838,0.10372095,166.78714,712.69604,17.661684,2.428266,0.025807075,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 3:00,7009200,3597.512,6.1923976,152.33426,0.10372095,164.62807,688.47156,17.661684,2.381002,0.022550004,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 4:00,7012800,3597.512,6.190371,144.53,0.10372095,497.78177,1348.3389,1110.4631,5.851055,0.020025535,0.10372095,1110.4631,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 5:00,7016400,3597.512,6.1552763,137.9159,0.10372095,160.86122,1291.8857,17.422882,6.5858297,0.01802315,0.10372095,17.422882,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 6:00,7020000,3597.512,971.61334,458.16278,50.506348,41081.418,1816.2018,392.8696,11.607338,53.176422,50.506348,392.8696,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 7:00,7023600,3597.512,1669.1182,488.14056,52.85703,52225.816,2193.5022,762.074,37.5205,217.73537,52.85703,762.074,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 8:00,7027200,3597.512,1451.0328,483.1184,53.424904,51618.37,1809.1465,715.3074,2.0872436,174.91795,53.424904,715.3074,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 9:00,7030800,3597.512,1174.2808,468.9234,53.67674,50441.52,2015.9578,602.3415,3.3286076,88.99366,53.67674,602.3415,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 10:00,7034400,3597.512,995.1391,456.811,53.586403,49052.395,1551.3965,609.623,1.382037,45.352726,53.586403,609.623,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 11:00,7038000,3597.512,827.7908,445.8377,54.573017,50992.133,1938.7396,597.1675,2.786898,19.591223,54.573017,597.1675,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 12:00,7041600,3597.512,787.17596,440.36575,55.541542,48888.176,2038.2732,562.38367,191.78772,11.356255,55.541542,562.38367,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 13:00,7045200,3597.512,689.73267,434.61578,55.094013,46847.562,2112.1604,527.28625,1358.8384,6.6040845,55.094013,527.28625,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 14:00,7048800,3597.512,551.5491,428.17993,53.218815,45579.33,1910.0121,496.65967,77.343544,3.6422927,53.218815,496.65967,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 15:00,7052400,3597.512,498.04822,424.4765,53.216614,47271.906,998.45575,507.66116,0.353518,1.6683235,53.216614,507.66116,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 16:00,7056000,3597.512,522.6202,423.15976,54.025177,46257.938,1732.6495,481.65958,2.8293433,0.97024035,54.025177,481.65958,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 17:00,7059600,3597.512,635.3711,429.3344,52.441544,48992.293,1373.7491,563.9263,1.1428803,5.570838,52.441544,563.9263,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 18:00,7063200,3597.512,1019.24414,449.99475,52.418304,53538.742,1983.4432,686.28436,14.17892,37.38002,52.418304,686.28436,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 19:00,7066800,3597.512,252.47025,387.0117,1.1670574,53476.61,2047.1423,705.405,138.02515,15.382099,1.1670574,705.405,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 20:00,7070400,3597.512,269.66068,380.7314,1.4038749,50956.88,2033.6292,637.99524,441.03607,8.264529,1.4038749,637.99524,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 21:00,7074000,3597.512,234.01865,377.9316,0.9436813,52719.945,1994.423,699.3547,14.958234,6.468742,0.9436813,699.3547,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 22:00,7077600,3597.512,6.3591757,376.0105,0.10372095,50579.72,1960.3645,650.81146,4.561101,5.8202085,0.10372095,650.81146,130901.3,73179.4,-15784.6,-201976.5
+3/23/2023 23:00,7081200,3597.512,6.359058,375.4213,0.10372095,45254.03,1639.8616,486.5187,3.5998366,5.5577836,0.10372095,486.5187,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 0:00,7084800,3597.512,6.3251343,375.042,0.10372095,43682.59,1413.6738,408.69836,2.4088929,5.446799,0.10372095,408.69836,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 1:00,7088400,3597.512,6.3239436,374.75687,0.10372095,169.82864,945.0172,17.661684,1.5775374,5.3989744,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 2:00,7092000,3597.512,6.2875433,374.51654,0.10372095,167.55653,894.8718,17.661684,1.2596143,5.3781843,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 3:00,7095600,3597.512,11.713271,99.20235,50.506348,165.47731,858.39,17.661684,1.0921128,0.001984502,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 4:00,7099200,3597.512,29.642334,168.97675,50.506348,1490.3605,925.70337,46.26926,116.34112,0.013737366,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 5:00,7102800,3597.512,51.518787,251.08043,50.506348,1726.5741,982.0408,58.380375,389.1491,0.047169752,50.506348,58.380375,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 6:00,7106400,3597.512,2178.0408,487.34668,50.506348,42373.96,1921.603,430.19287,312.16965,303.75327,50.506348,430.19287,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 7:00,7110000,3597.512,3388.8071,535.9289,52.965958,53062.87,2223.2505,754.3508,74.72907,1209.7946,52.965958,754.3508,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 8:00,7113600,3597.512,2307.5693,520.1308,53.374413,51913.547,1616.7493,659.2257,8.935267,802.30664,53.374413,659.2257,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 9:00,7117200,3597.512,1705.894,493.82162,53.605476,51116.92,1742.0975,585.7498,6.120826,351.29486,53.605476,585.7498,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 10:00,7120800,3597.512,1399.5404,473.9503,53.5324,49217.84,1400.1334,602.05756,1.0125967,158.04361,53.5324,602.05756,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 11:00,7124400,3597.512,1091.0927,456.3171,54.501144,51219.395,1658.8179,591.7114,2.0232506,61.19227,54.501144,591.7114,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 12:00,7128000,3597.512,924.2414,443.65396,55.44165,49244.406,1324.5413,556.5346,1.0211569,24.833921,55.44165,556.5346,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 13:00,7131600,3597.512,747.48804,432.90204,55.0469,47778.54,1864.7372,511.41724,186.2766,10.094025,55.0469,511.41724,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 14:00,7135200,3597.512,602.8082,425.56326,53.153435,46251.32,1769.6947,482.9658,7.1608067,5.441199,53.153435,482.9658,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 15:00,7138800,3597.512,550.9439,421.81305,53.131744,46276.168,1550.1769,476.66025,2.1114545,3.0571337,53.131744,476.66025,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 16:00,7142400,3597.512,562.7219,420.48746,53.991047,46424.72,1347.4232,479.58383,1.3440944,1.8790008,53.991047,479.58383,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 17:00,7146000,3597.512,617.96515,424.6423,52.436497,51037.902,982.84424,522.1409,0.35882726,5.601861,52.436497,522.1409,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 18:00,7149600,3597.512,977.46,442.84348,52.390198,52526.285,1945.6261,656.7855,11.227312,31.271456,52.390198,656.7855,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 19:00,7153200,3597.512,253.20175,380.66412,1.1634682,53188.586,2074.1833,695.4152,349.87717,12.908856,1.1634682,695.4152,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 20:00,7156800,3597.512,270.4569,374.75443,1.4001465,50946.06,2000.3616,635.99896,264.96173,6.803212,1.4001465,635.99896,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 21:00,7160400,3597.512,234.69182,372.05716,0.94098705,52866.43,1988.6968,693.3937,20.029104,5.193442,0.94098705,693.3937,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 22:00,7164000,3597.512,6.477482,370.2096,0.10372095,50518.008,1398.9257,602.98096,1.124934,4.591142,0.10372095,602.98096,130901.3,73179.4,-15784.6,-201976.5
+3/24/2023 23:00,7167600,3597.512,6.4435787,369.69458,0.10372095,45262.434,1342.6825,483.64957,2.20661,4.336783,0.10372095,483.64957,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 0:00,7171200,3597.512,6.4433055,369.39722,0.10372095,43696.227,1213.0006,405.7806,1.5632055,4.2234993,0.10372095,405.7806,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 1:00,7174800,3597.512,6.4082594,369.1993,0.10372095,170.17348,785.33057,17.661684,1.0351456,4.1709857,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 2:00,7178400,3597.512,24.64294,139.77841,50.506348,168.0911,754.9564,17.661684,0.83850265,0.007358521,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 3:00,7182000,3597.512,56.293667,261.82672,50.506348,166.0007,730.4875,17.661684,0.7336272,0.05479057,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 4:00,7185600,3597.512,95.10736,409.24442,50.506348,1533.7972,807.9048,46.26926,122.8169,0.18607947,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 5:00,7189200,3597.512,163.26454,412.4037,50.506348,2124.4788,840.381,46.26926,536.4939,0.7483563,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 6:00,7192800,3597.512,248.83487,417.12308,50.506348,44219.688,1195.1937,410.97235,621.8174,2.9019377,50.506348,410.97235,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 7:00,7196400,3597.512,272.63522,418.81595,50.506348,42267.285,1812.0742,422.1923,151.26254,4.0806637,50.506348,422.1923,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 8:00,7200000,3597.512,190.61626,414.53488,50.506348,41836.55,1327.1357,378.91406,17.18709,1.6025913,50.506348,378.91406,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 9:00,7203600,3597.512,115.979744,410.1052,50.506348,52045.676,1464.2196,715.4271,0.8549369,0.35961485,50.506348,715.4271,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 10:00,7207200,3597.512,80.20961,354.89755,50.506348,50429.945,1418.3146,650.06,1.5359253,0.12734605,50.506348,650.06,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 11:00,7210800,3597.512,75.35338,330.6914,50.506348,52062.52,2100.6633,683.74347,3.9847207,0.10526771,50.506348,683.74347,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 12:00,7214400,3597.512,60.1592,261.75302,50.506348,52440.766,2051.4983,665.5146,9.095603,0.055212248,50.506348,665.5146,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 13:00,7218000,3597.512,36.779144,178.63959,50.506348,50313.824,1947.1965,600.3328,9.884085,0.017501475,50.506348,600.3328,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 14:00,7221600,3597.512,23.602266,131.4222,50.506348,48985.11,1444.0458,602.06244,1.2736685,0.005942752,50.506348,602.06244,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 15:00,7225200,3597.512,32.11983,163.85622,50.506348,49097.676,1468.9658,600.7792,1.0566113,0.013176887,50.506348,600.7792,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 16:00,7228800,3597.512,35.29141,171.61621,50.506348,47770.777,1369.5756,560.2303,0.9079191,0.015403306,50.506348,560.2303,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 17:00,7232400,3597.512,46.133194,209.46225,50.506348,49111.14,1352.1279,599.95435,0.8038926,0.028938426,50.506348,599.95435,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 18:00,7236000,3597.512,39.22992,183.80017,50.506348,53482.773,1775.333,654.3628,2.2167282,0.019296287,50.506348,654.3628,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 19:00,7239600,3597.512,81.948685,323.57574,50.506348,52545.418,2082.1946,672.47705,457.11615,0.099759124,50.506348,672.47705,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 20:00,7243200,3597.512,140.62692,409.08026,50.506348,51656.89,1964.0991,654.32526,25.52604,0.35242063,50.506348,654.32526,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 21:00,7246800,3597.512,157.293,409.71194,50.506348,53062.332,2056.705,695.20807,212.28671,0.47409546,50.506348,695.20807,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 22:00,7250400,3597.512,166.95866,410.18097,50.506348,48833.168,1850.705,560.62115,8.131749,0.58576477,50.506348,560.62115,130901.3,73179.4,-15784.6,-201976.5
+3/25/2023 23:00,7254000,3597.512,164.9809,410.09464,50.506348,46454.27,1908.3218,521.77045,3.265353,0.58393645,50.506348,521.77045,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 0:00,7257600,3597.512,184.59712,410.96658,50.506348,44998.52,1477.3448,438.81125,1.7787945,0.81907046,50.506348,438.81125,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 1:00,7261200,3597.512,192.90196,411.82794,50.506348,169.57713,932.05634,17.661684,1.3685987,1.1113874,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 2:00,7264800,3597.512,193.97612,412.59756,50.506348,168.27618,860.337,17.661684,1.1606239,1.4323492,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 3:00,7268400,3597.512,207.38606,413.90833,50.506348,166.10551,810.5472,17.661684,1.0292534,2.0866504,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 4:00,7272000,3597.512,236.03694,416.16803,50.506348,1284.969,962.2996,46.26926,82.764435,3.512024,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 5:00,7275600,3597.512,238.97905,417.04828,50.506348,1807.3177,981.32324,46.26926,381.47073,4.1404686,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 6:00,7279200,3597.512,271.38736,419.09143,50.506348,43949.348,1049.3383,386.16776,407.3244,5.568131,50.506348,386.16776,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 7:00,7282800,3597.512,277.1158,418.7445,50.506348,42115.613,1830.0491,420.85748,86.49778,5.367202,50.506348,420.85748,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 8:00,7286400,3597.512,291.58334,418.9323,50.506348,41978.42,1368.2023,420.03757,8.239,5.552586,50.506348,420.03757,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 9:00,7290000,3597.512,232.13893,415.44022,50.506348,42120.543,1291.5642,418.77295,6.0039077,3.2602136,50.506348,418.77295,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 10:00,7293600,3597.512,185.34543,412.0732,50.506348,52090.45,1529.1888,704.19794,8.77059,1.4470142,50.506348,704.19794,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 11:00,7297200,3597.512,125.54875,408.3591,50.506348,52025.41,1472.0266,697.54144,3.0972936,0.4122994,50.506348,697.54144,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 12:00,7300800,3597.512,80.711266,357.73932,50.506348,49244.168,1960.7045,550.78064,6.3092422,0.1319637,50.506348,550.78064,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 13:00,7304400,3597.512,73.58935,318.6989,50.506348,48932,1965.0391,556.5765,6.2870398,0.096693,50.506348,556.5765,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 14:00,7308000,3597.512,64.6211,277.7306,50.506348,46135.68,1344.1647,518.15985,1.1823193,0.066361085,50.506348,518.15985,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 15:00,7311600,3597.512,62.87877,269.38632,50.506348,46320.1,1382.6172,521.3668,0.98547906,0.06099654,50.506348,521.3668,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 16:00,7315200,3597.512,68.0168,283.438,50.506348,46186.715,1289.9917,517.4992,0.8376047,0.07027975,50.506348,517.4992,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 17:00,7318800,3597.512,97.21216,380.38644,50.506348,49007.816,1214.8463,554.3655,0.73205495,0.15501963,50.506348,554.3655,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 18:00,7322400,3597.512,125.23457,407.06403,50.506348,54661.777,1002.362,608.6444,0.2524495,0.28236368,50.506348,608.6444,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 19:00,7326000,3597.512,173.76254,408.81955,50.506348,52753.367,1978.9131,665.7703,50.132263,0.6000647,50.506348,665.7703,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 20:00,7329600,3597.512,217.1328,410.79962,50.506348,48794.652,1894.428,554.32355,142.31013,1.1917423,50.506348,554.32355,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 21:00,7333200,3597.512,247.1833,412.67276,50.506348,51452.246,1924.2228,638.72723,3.1913285,2.0489955,50.506348,638.72723,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 22:00,7336800,3597.512,286.10773,415.062,50.506348,49339.613,1733.1298,598.27673,3.4806426,3.5406263,50.506348,598.27673,130901.3,73179.4,-15784.6,-201976.5
+3/26/2023 23:00,7340400,3597.512,303.9921,416.7679,50.506348,44000.707,1471.1644,444.47955,12.440298,4.689808,50.506348,444.47955,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 0:00,7344000,3597.512,298.02023,417.04013,50.506348,43657.33,1349.1736,403.21844,5.4027514,4.9102154,50.506348,403.21844,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 1:00,7347600,3597.512,297.08557,417.82974,50.506348,170.4084,911.20544,17.661684,3.2504573,5.5046797,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 2:00,7351200,3597.512,309.98462,419.87134,50.506348,168.31389,874.1896,17.661684,2.6251059,7.15345,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 3:00,7354800,3597.512,326.4293,421.96597,50.506348,166.13416,845.5651,17.661684,2.3548076,9.116924,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 4:00,7358400,3597.512,341.40103,423.6198,50.506348,1505.408,912.17114,46.26926,116.879684,10.889872,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 5:00,7362000,3597.512,359.68802,425.12344,50.506348,1845.087,934.8468,46.26926,428.92,12.6826105,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 6:00,7365600,3597.512,7634.5786,636.4248,124.44192,43617.816,1366.7343,413.13843,505.65872,2817.667,124.44192,413.13843,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 7:00,7369200,3597.512,6891.51,659.6145,102.61235,53752.566,2034.7562,744.4987,205.67429,6467.507,102.61235,744.4987,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 8:00,7372800,3597.512,4671.503,588.63025,53.30855,52696.746,1629.0382,697.7693,35.80237,4586.2407,53.30855,697.7693,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 9:00,7376400,3597.512,3244.861,557.6723,53.49774,50865.574,1469.5203,634.58673,8.093727,2359.2473,53.49774,634.58673,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 10:00,7380000,3597.512,2589.3054,528.9106,53.4802,49511.164,1368.4207,592.19385,4.8896284,1187.6273,53.4802,592.19385,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 11:00,7383600,3597.512,1888.113,495.8458,54.400787,50720.07,1316.6136,588.9793,1.7502645,459.4302,54.400787,588.9793,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 12:00,7387200,3597.512,1594.5214,475.41333,55.39529,49118.266,2043.2357,542.93317,299.42017,205.24567,55.39529,542.93317,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 13:00,7390800,3597.512,1238.9742,456.90442,54.97436,47257.92,2020.1318,513.72955,345.8216,87.34103,54.97436,513.72955,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 14:00,7394400,3597.512,1020.22675,445.11398,53.14079,46029.023,1884.3809,476.16617,5.2159886,49.345505,53.14079,476.16617,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 15:00,7398000,3597.512,970.4526,441.30734,53.104782,46364.76,1666.2643,515.1968,2.0455048,38.746952,53.104782,515.1968,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 16:00,7401600,3597.512,876.741,435.10934,53.94392,46411.46,1492.8376,514.9994,1.3890069,23.318054,53.94392,514.9994,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 17:00,7405200,3597.512,1002.3181,440.51773,52.41588,49492.406,1870.1733,543.46735,5.271054,38.727257,52.41588,543.46735,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 18:00,7408800,3597.512,1608.5255,464.87518,52.372864,53484.203,2056.8481,693.8317,104.01789,149.10857,52.372864,693.8317,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 19:00,7412400,3597.512,252.82529,393.8337,1.1582947,53435.73,2120.5784,706.2257,398.6235,52.29181,1.1582947,706.2257,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 20:00,7416000,3597.512,269.88492,386.2645,1.3914405,50997.48,2056.9587,637.4702,480.49277,31.214914,1.3914405,637.4702,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 21:00,7419600,3597.512,234.47287,384.06866,0.93824124,52816.11,2016.9291,695.34454,34.80991,27.562696,0.93824124,695.34454,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 22:00,7423200,3597.512,6.410334,382.71555,0.10372095,50423.49,1387.3619,598.5001,1.0625807,26.600368,0.10372095,598.5001,130901.3,73179.4,-15784.6,-201976.5
+3/27/2023 23:00,7426800,3597.512,6.4102654,382.53528,0.10372095,45198.668,1317.8324,479.016,2.8271952,26.32792,0.10372095,479.016,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 0:00,7430400,3597.512,6.3762765,382.45264,0.10372095,43542.965,1186.6609,400.21622,2.1071055,26.249691,0.10372095,400.21622,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 1:00,7434000,3597.512,6.3750973,382.39844,0.10372095,170.40877,763.91724,17.661684,1.2724881,26.227137,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 2:00,7437600,3597.512,20.54557,120.08035,50.506348,168.30382,733.5099,17.661684,0.97232455,0.004430867,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 3:00,7441200,3597.512,47.654125,224.32573,50.506348,166.22044,709.19666,17.661684,0.83011186,0.036893386,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 4:00,7444800,3597.512,85.83302,373.49063,50.506348,1715.0156,791.50146,46.26926,154.13364,0.15002279,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 5:00,7448400,3597.512,97.36819,407.3687,50.506348,2030.2584,1544.1007,1110.4631,526.72046,0.19789436,50.506348,1110.4631,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 6:00,7452000,3597.512,2975.2742,497.19437,50.506348,42567.184,1721.755,421.6622,440.31064,558.0957,50.506348,421.6622,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 7:00,7455600,3597.512,4168.7686,547.7052,52.926674,53317.77,2132.691,749.35626,112.6864,1934.3357,52.926674,749.35626,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 8:00,7459200,3597.512,2598.9048,528.1108,53.324722,52360.59,1645.3179,701.9276,13.442588,1197.3412,53.324722,701.9276,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 9:00,7462800,3597.512,1679.0795,488.45227,53.511185,50411.395,1409.8752,590.8131,2.2446506,379.92462,53.511185,590.8131,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 10:00,7466400,3597.512,1154.297,456.49127,53.49942,49045.332,1302.9016,549.6015,1.1730418,96.87054,53.49942,549.6015,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 11:00,7470000,3597.512,855.76874,435.61642,54.4825,51375.31,1661.7229,566.1313,1.9390337,24.763401,54.4825,566.1313,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 12:00,7473600,3597.512,765.1393,426.34363,55.428078,48826.625,2054.6055,546.4068,359.91696,10.079594,55.428078,546.4068,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 13:00,7477200,3597.512,634.5185,463.75995,54.902637,46926.145,2053.8687,514.4397,609.88226,4.120285,54.902637,514.4397,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 14:00,7480800,3597.512,469.07996,458.9963,52.992706,45736.89,1903.7666,480.20975,21.256813,1.4529027,52.992706,480.20975,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 15:00,7484400,3597.512,431.1757,451.55234,53.092125,45892.957,1477.3043,472.34418,1.4665437,0.3661832,53.092125,472.34418,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 16:00,7488000,3597.512,459.17923,452.3483,53.912796,46090.953,1368.4758,474.30002,1.1183084,0.2825406,53.912796,474.30002,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 17:00,7491600,3597.512,445.6969,452.3562,52.41166,48750.9,1961.268,548.78015,3.2953568,0.6262405,52.41166,548.78015,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 18:00,7495200,3597.512,671.21027,459.4265,52.377625,52560.07,2072.2363,666.56104,4.2325115,6.4339366,52.377625,666.56104,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 19:00,7498800,3597.512,252.1343,397.59164,1.1573919,53306.55,2189.8381,696.60345,276.32404,2.4475932,1.1573919,696.60345,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 20:00,7502400,3597.512,269.10394,391.3598,1.3893911,51237.324,2047.2186,633.9241,9.533182,0.96523905,1.3893911,633.9241,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 21:00,7506000,3597.512,233.97229,386.87332,0.9382454,53200.69,1674.9896,687.11273,1.3916918,0.55052036,0.9382454,687.11273,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 22:00,7509600,3597.512,6.3339796,383.1905,0.10372095,50516.402,1412.4774,594.58746,0.90098614,0.38657525,0.10372095,594.58746,130901.3,73179.4,-15784.6,-201976.5
+3/28/2023 23:00,7513200,3597.512,6.334158,381.02463,0.10372095,44998.895,1215.9277,476.63324,0.72617584,0.30648693,0.10372095,476.63324,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 0:00,7516800,3597.512,6.300331,379.29404,0.10372095,43497.484,1046.4673,398.74124,0.6190096,0.26194295,0.10372095,398.74124,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 1:00,7520400,3597.512,6.2655096,377.86203,0.10372095,170.43468,630.089,17.661684,0.5495894,0.23502143,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 2:00,7524000,3597.512,6.2629213,378.10696,0.10372095,168.05602,602.9713,17.661684,0.49693173,0.21782348,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 3:00,7527600,3597.512,6.2259784,378.34363,0.10372095,165.7959,580.5225,17.661684,0.4555194,0.20641303,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 4:00,7531200,3597.512,6.5593877,377.29514,0.10372095,893.299,708.85254,46.26926,32.759277,0.19863907,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 5:00,7534800,3597.512,9.2030115,92.095856,50.506348,1057.3605,978.2785,291.9016,115.91647,0.002633141,50.506348,291.9016,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 6:00,7538400,3597.512,2110.9482,495.05692,50.506348,41979.598,1794.7446,421.34262,133.35313,265.79343,50.506348,421.34262,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 7:00,7542000,3597.512,3006.9302,537.7746,52.9387,53069.72,2205.5115,750.47986,36.847893,970.85693,52.9387,750.47986,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 8:00,7545600,3597.512,1882.25,513.74146,53.332214,51999.48,1602.6434,656.9617,4.858669,491.48468,53.332214,656.9617,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 9:00,7549200,3597.512,1222.1382,478.69266,53.524506,50226.316,1414.8092,592.43335,2.7310174,123.37336,53.524506,592.43335,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 10:00,7552800,3597.512,855.19525,454.3701,53.525787,51170.92,939.0561,493.089,1.5394439,30.617472,53.525787,493.089,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 11:00,7556400,3597.512,683.0604,466.3253,54.373222,50222.438,1993.0835,581.5905,5.0382853,7.9096384,54.373222,581.5905,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 12:00,7560000,3597.512,591.2648,462.00983,55.247437,48572.473,2087.6362,548.4351,561.43567,2.0515733,55.247437,548.4351,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 13:00,7563600,3597.512,473.47974,457.50827,54.711525,46628.324,2084.1008,515.4111,863.5951,2.140093,54.711525,515.4111,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 14:00,7567200,3597.512,356.61435,259.4751,53.074223,45447.46,1918.5529,479.69348,42.110188,0.15223818,53.074223,479.69348,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 15:00,7570800,3597.512,344.57684,200.79568,53.134617,45788.46,1711.576,474.60608,3.2285159,0.018007478,53.134617,474.60608,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 16:00,7574400,3597.512,390.08594,227.0327,53.97005,45861.38,1652.6262,472.01535,2.983053,0.026729897,53.97005,472.01535,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 17:00,7578000,3597.512,407.76343,437.5882,52.41537,48584.81,1994.7227,550.23676,57.455475,0.3345056,52.41537,550.23676,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 18:00,7581600,3597.512,670.63184,446.81625,52.38777,52711.055,2116.5432,684.191,28.244793,6.395547,52.38777,684.191,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 19:00,7585200,3597.512,251.47821,387.82416,1.1661587,53063.492,2259.3467,705.425,703.81067,2.582637,1.1661587,705.425,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 20:00,7588800,3597.512,268.3858,382.93484,1.3998749,50813.695,2125.528,641.52356,200.53323,1.0297495,1.3998749,641.52356,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 21:00,7592400,3597.512,233.34674,379.38556,0.94564766,52955.113,1747.572,693.05304,2.4964268,0.59300154,0.94564766,693.05304,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 22:00,7596000,3597.512,6.410851,376.38608,0.10372095,50382.4,1407.0822,595.59546,1.7698185,0.42028114,0.10372095,595.59546,130901.3,73179.4,-15784.6,-201976.5
+3/29/2023 23:00,7599600,3597.512,6.411135,374.74875,0.10372095,44822.69,1125.819,475.59265,0.701505,0.33608276,0.10372095,475.59265,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 0:00,7603200,3597.512,6.377572,373.4359,0.10372095,43413.105,1003.59894,398.73145,0.62402385,0.28946245,0.10372095,398.73145,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 1:00,7606800,3597.512,6.3430285,372.3427,0.10372095,170.20331,593.1112,17.661684,0.5658579,0.26147217,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 2:00,7610400,3597.512,6.340598,371.40717,0.10372095,167.86108,570.2859,17.661684,0.5202764,0.24374522,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 3:00,7614000,3597.512,6.3039217,370.58984,0.10372095,165.6278,551.1778,17.661684,0.48342937,0.23210596,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 4:00,7617600,3597.512,6.3005824,370.33005,0.10372095,629.1489,713.6347,46.26926,12.460451,0.22427107,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 5:00,7621200,3597.512,6.263483,370.37048,0.10372095,161.6829,666.46405,17.661684,8.93947,0.21890306,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 6:00,7624800,3597.512,1047.615,458.5665,50.506348,41923.625,1515.815,1190.845,4.954713,57.517353,50.506348,1190.845,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 7:00,7628400,3597.512,1692.037,487.95886,52.82029,52556.066,2155.8462,703.7553,56.818787,224.58528,52.82029,703.7553,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 8:00,7632000,3597.512,1396.2423,479.39627,53.388824,51698.664,1872.6621,663.50433,6.0206666,154.26668,53.388824,663.50433,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 9:00,7635600,3597.512,1101.6674,463.0991,53.554707,50039.203,1611.5461,594.3038,5.219547,68.31554,53.554707,594.3038,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 10:00,7639200,3597.512,896.04034,450.2291,53.51344,48697.164,1475.4974,548.41565,4.9100256,30.924767,53.51344,548.41565,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 11:00,7642800,3597.512,778.8792,441.40875,54.462128,50273.832,2021.2206,578.3596,35.631226,14.562451,54.462128,578.3596,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 12:00,7646400,3597.512,734.249,436.1206,55.430264,48357.31,2085.7507,550.9716,463.32135,8.052528,55.430264,550.9716,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 13:00,7650000,3597.512,608.8146,428.54578,54.995144,46604.18,2059.9966,514.0099,554.96216,3.064513,54.995144,514.0099,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 14:00,7653600,3597.512,445.9121,420.56476,53.15946,45430.836,1907.2662,475.8976,17.449068,0.57613873,53.15946,475.8976,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 15:00,7657200,3597.512,368.27094,262.75537,53.12387,45813.28,1601.0074,473.9965,5.5669923,0.051040705,53.12387,473.9965,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 16:00,7660800,3597.512,380.55603,167.4675,53.95832,45768.887,1664.2,469.23257,5.837535,0.012094399,53.95832,469.23257,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 17:00,7664400,3597.512,410.45364,417.7707,52.409645,48660.266,1950.0581,550.0114,6.748436,0.3688491,52.409645,550.0114,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 18:00,7668000,3597.512,662.8485,429.09094,52.376835,52950.3,2202.301,693.05444,292.0649,6.308414,52.376835,693.05444,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 19:00,7671600,3597.512,250.81047,371.6971,1.1642268,53044.496,2249.7747,711.63385,489.71524,2.341095,1.1642268,711.63385,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 20:00,7675200,3597.512,267.58603,368.39453,1.3961161,51000.707,2099.2314,640.08966,80.4206,0.9224792,1.3961161,640.08966,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 21:00,7678800,3597.512,232.80263,366.1072,0.94452,53030.76,1846.6583,691.6002,5.6757283,0.52488345,0.94452,691.6002,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 22:00,7682400,3597.512,6.301853,364.14868,0.10372095,50319.418,1423.8041,594.19666,4.6289306,0.36727834,0.10372095,594.19666,130901.3,73179.4,-15784.6,-201976.5
+3/30/2023 23:00,7686000,3597.512,6.268502,363.38925,0.10372095,44664.332,1217.8999,430.37305,4.5266166,0.29012808,0.10372095,430.37305,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 0:00,7689600,3597.512,6.2685614,362.82983,0.10372095,43362.92,1146.4332,398.7816,4.4362454,0.24713889,0.10372095,398.7816,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 1:00,7693200,3597.512,6.234286,363.1446,0.10372095,163.86833,733.5723,17.661684,4.368815,0.22110514,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 2:00,7696800,3597.512,6.232018,364.80237,0.10372095,161.64618,707.7417,17.661684,4.316851,0.20443748,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 3:00,7700400,3597.512,6.3296895,363.80795,0.10372095,164.59673,686.2489,17.661684,4.275994,0.1933525,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 4:00,7704000,3597.512,6.527622,361.23026,0.10372095,493.6371,699.8459,46.26926,5.900864,0.18578205,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 5:00,7707600,3597.512,6.490486,358.334,0.10372095,164.34494,652.57385,17.661684,4.3530207,0.18051307,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 6:00,7711200,3597.512,957.26685,448.09167,50.506348,41876.816,1431.3888,1189.9254,2.152629,47.18605,50.506348,1189.9254,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 7:00,7714800,3597.512,1662.4393,478.82715,53.02459,52455.68,2162.9685,699.46814,110.04916,202.96204,53.02459,699.46814,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 8:00,7718400,3597.512,1341.1019,470.844,53.27893,51589.89,2076.4944,663.667,5.4403715,141.71294,53.27893,663.667,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 9:00,7722000,3597.512,965.4057,450.25467,53.54553,49918.9,1482.5737,594.34283,2.4089348,46.11959,53.54553,594.34283,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 10:00,7725600,3597.512,693.1667,432.4985,53.511745,48486.914,1573.3291,545.9404,2.8046553,11.7130375,53.511745,545.9404,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 11:00,7729200,3597.512,588.9911,423.03766,54.415802,49820.082,2040.1091,587.4499,78.912224,3.1541057,54.415802,587.4499,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 12:00,7732800,3597.512,532.75696,417.98477,55.38876,47921.85,2182.644,553.3918,1749.4646,0.59102356,55.38876,553.3918,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 13:00,7736400,3597.512,393.5962,183.611,4.205525,46345.684,2000.2994,518.2339,185.85017,0.037251703,4.205525,518.2339,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 14:00,7740000,3597.512,322.5647,125.82842,2.4402323,45370.66,1901.9656,472.35123,21.702753,0.01562833,2.4402323,472.35123,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 15:00,7743600,3597.512,321.35556,92.479034,2.414579,45607.79,1761.1669,472.0004,3.824995,0.007448242,2.414579,472.0004,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 16:00,7747200,3597.512,356.68033,72.17098,3.213711,45736.7,1890.7853,470.8782,4.5762753,0.003996741,3.213711,470.8782,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 17:00,7750800,3597.512,333.37357,246.6585,52.413322,48347.195,1985.9402,545.6555,42.820103,0.04498274,52.413322,545.6555,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 18:00,7754400,3597.512,514.5932,417.72415,52.390377,51353,2356.2485,671.99713,2940.2915,1.8318841,52.390377,671.99713,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 19:00,7758000,3597.512,248.4485,362.6042,1.1864958,51735.773,2412.5999,720.9993,3129.2126,0.5472491,1.1864958,720.9993,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 20:00,7761600,3597.512,265.08865,361.16144,1.423479,50264.805,2153.2646,650.58624,291.0879,0.2846594,1.423479,650.58624,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 21:00,7765200,3597.512,230.59587,356.86057,0.96276253,52661.484,2021.8556,699.04193,3.9629726,0.18041551,0.96276253,699.04193,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 22:00,7768800,3597.512,6.330696,307.42493,0.10372095,50003.336,1439.2002,593.65985,2.2308972,0.12974147,0.10372095,593.65985,130901.3,73179.4,-15784.6,-201976.5
+3/31/2023 23:00,7772400,3597.512,6.29825,276.09573,0.10372095,44490.23,1174.513,430.98825,1.9858387,0.10130854,0.10372095,430.98825,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 0:00,7776000,3597.512,6.29892,253.98495,0.10372095,43199.273,1103.2236,398.31934,1.9039252,0.08371082,0.10372095,398.31934,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 1:00,7779600,3597.512,6.265636,237.75961,0.10372095,169.76698,692.0237,17.661684,1.8432794,0.07203324,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 2:00,7783200,3597.512,6.2307982,225.49142,0.10372095,167.60765,667.25226,17.661684,1.7967441,0.06387595,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 3:00,7786800,3597.512,6.2284884,215.99695,0.10372095,165.4023,646.67834,17.661684,1.7602227,0.057952274,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 4:00,7790400,3597.512,6.1927447,208.5126,0.10372095,553.5484,671.96906,46.26926,8.451614,0.053519648,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 5:00,7794000,3597.512,6.1900525,202.52469,0.10372095,729.64886,981.97614,266.29083,38.760418,0.050123394,0.10372095,266.29083,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 6:00,7797600,3597.512,6.1542387,197.67583,0.10372095,41342.74,1816.8917,420.04263,57.544968,0.047471616,0.10372095,420.04263,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 7:00,7801200,3597.512,6.1532464,193.70998,0.10372095,41092.934,1817.5632,373.9725,25.506083,0.045369294,0.10372095,373.9725,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 8:00,7804800,3597.512,6.219015,190.43916,0.10372095,41267.055,1385.827,373.13464,9.572905,0.04368168,0.10372095,373.13464,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 9:00,7808400,3597.512,6.4504466,187.72235,0.10372095,51845.383,1622.8171,613.3128,8.445441,0.042312983,0.10372095,613.3128,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 10:00,7812000,3597.512,6.4179955,185.45187,0.10372095,49675.324,1956.9684,586.5275,9.568479,0.041193414,0.10372095,586.5275,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 11:00,7815600,3597.512,6.418867,183.54424,0.10372095,51468.426,2104.7166,646.3678,64.3402,0.04027107,0.10372095,646.3678,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 12:00,7819200,3597.512,6.386535,181.93379,0.10372095,50947.215,2099.1184,634.16473,85.10541,0.039506614,0.10372095,634.16473,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 13:00,7822800,3597.512,6.3872175,180.56837,0.10372095,49276.84,2123.5933,589.23395,423.9627,0.038869776,0.10372095,589.23395,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 14:00,7826400,3597.512,6.354425,179.40605,0.10372095,47906.977,2040.8046,554.02057,160.22084,0.038336918,0.10372095,554.02057,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 15:00,7830000,3597.512,6.35476,178.41286,0.10372095,48203.26,1982.983,550.01184,10.091852,0.037889373,0.10372095,550.01184,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 16:00,7833600,3597.512,6.322172,177.56111,0.10372095,46974.74,1780.0604,505.87573,9.023744,0.03751223,0.10372095,505.87573,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 17:00,7837200,3597.512,6.289724,176.82803,0.10372095,48353.535,1829.3567,543.27075,9.077718,0.037193492,0.10372095,543.27075,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 18:00,7840800,3597.512,6.2906227,176.19484,0.10372095,52500.66,2130.7173,674.5679,58.162373,0.0369234,0.10372095,674.5679,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 19:00,7844400,3597.512,6.258384,175.6459,0.10372095,52147.246,2243.9448,680.08185,674.7233,0.03669398,0.10372095,680.08185,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 20:00,7848000,3597.512,6.258937,175.16826,0.10372095,50914.71,2177.014,650.5148,369.46182,0.036498673,0.10372095,650.5148,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 21:00,7851600,3597.512,6.2262225,174.751,0.10372095,51871.145,2096.1177,666.38715,13.918861,0.036332052,0.10372095,666.38715,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 22:00,7855200,3597.512,6.22697,174.38504,0.10372095,48493.83,1533.4598,545.1463,7.9301715,0.036189616,0.10372095,545.1463,130901.3,73179.4,-15784.6,-201976.5
+4/1/2023 23:00,7858800,3597.512,6.1946173,174.06268,0.10372095,45794.145,1261.2144,465.16867,7.4000673,0.036067605,0.10372095,465.16867,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 0:00,7862400,3597.512,6.1622424,173.77747,0.10372095,44503.99,1182.196,429.79886,7.300889,0.035962872,0.10372095,429.79886,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 1:00,7866000,3597.512,6.16231,173.52394,0.10372095,170.03667,734.90106,17.661684,7.2264934,0.035872787,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 2:00,7869600,3597.512,6.1276197,173.29749,0.10372095,167.71657,706.40686,17.661684,7.1697426,0.035795126,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 3:00,7873200,3597.512,6.423937,173.09418,0.10372095,165.47961,682.90393,17.661684,7.125736,0.035728022,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 4:00,7876800,3597.512,6.454519,172.9107,0.10372095,382.69717,682.8754,46.26926,2.7430525,0.03566989,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 5:00,7880400,3597.512,6.418588,172.74423,0.10372095,419.1082,1345.5635,852.27997,6.9349856,0.0356194,0.10372095,852.27997,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 6:00,7884000,3597.512,6.382663,172.59236,0.10372095,40878.418,1768.5612,418.64697,7.3919454,0.03557542,0.10372095,418.64697,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 7:00,7887600,3597.512,6.3815336,172.45306,0.10372095,41035.312,1432.2893,373.25662,2.3453653,0.035536986,0.10372095,373.25662,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 8:00,7891200,3597.512,6.3478875,172.3246,0.10372095,41215.69,1169.0999,371.01895,1.0345987,0.035503287,0.10372095,371.01895,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 9:00,7894800,3597.512,6.3479624,172.20547,0.10372095,41832.69,1165.1176,409.187,14.601016,0.035473626,0.10372095,409.187,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 10:00,7898400,3597.512,6.31454,172.09442,0.10372095,53085.953,1298.3718,654.87366,9.6491375,0.03544742,0.10372095,654.87366,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 11:00,7902000,3597.512,6.3155856,171.99037,0.10372095,51409.77,1811.8403,634.4019,3.798714,0.035424165,0.10372095,634.4019,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 12:00,7905600,3597.512,6.2834864,171.8924,0.10372095,48280.855,1971.9808,539.9175,27.21057,0.035403438,0.10372095,539.9175,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 13:00,7909200,3597.512,6.2512155,171.79971,0.10372095,48305.85,1961.9054,543.30743,4.008071,0.03538487,0.10372095,543.30743,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 14:00,7912800,3597.512,6.2520275,171.71165,0.10372095,45629.953,1676.6035,465.18353,2.7596195,0.035368156,0.10372095,465.18353,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 15:00,7916400,3597.512,6.2196374,171.62762,0.10372095,45683.24,1667.3181,466.65222,2.6528661,0.03535303,0.10372095,466.65222,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 16:00,7920000,3597.512,6.220385,171.54713,0.10372095,45610.37,1685.7258,464.1673,2.7115607,0.03533927,0.10372095,464.1673,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 17:00,7923600,3597.512,6.188032,171.46977,0.10372095,48407.04,1948.9266,542.9562,3.5755928,0.03532668,0.10372095,542.9562,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 18:00,7927200,3597.512,6.1889915,171.39517,0.10372095,51311.156,1898.1737,630.47516,2.8920822,0.035315096,0.10372095,630.47516,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 19:00,7930800,3597.512,6.1569524,171.32301,0.10372095,51250.836,1714.8877,624.9233,2.1550586,0.035304382,0.10372095,624.9233,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 20:00,7934400,3597.512,6.158081,171.25302,0.10372095,48562.434,1591.4258,540.2594,2.0126567,0.035294414,0.10372095,540.2594,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 21:00,7938000,3597.512,6.3250356,171.18498,0.10372095,51413.496,1479.4415,627.83777,1.3974106,0.035285093,0.10372095,627.83777,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 22:00,7941600,3597.512,6.459158,171.1187,0.10372095,48612.43,1191.5796,580.9724,0.6166185,0.035276327,0.10372095,580.9724,130901.3,73179.4,-15784.6,-201976.5
+4/2/2023 23:00,7945200,3597.512,6.427136,171.054,0.10372095,43223.875,947.0996,392.91922,0.5203192,0.035268046,0.10372095,392.91922,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 0:00,7948800,3597.512,6.427882,170.99072,0.10372095,43133.094,911.8594,394.4309,0.4538059,0.035260186,0.10372095,394.4309,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 1:00,7952400,3597.512,6.394748,170.92874,0.10372095,164.9174,507.4933,17.661684,0.4050338,0.03525269,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 2:00,7956000,3597.512,6.3932157,170.86806,0.10372095,162.7243,485.17084,17.661684,0.36763886,0.03524556,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 3:00,7959600,3597.512,16.04511,106.51233,50.506348,160.69495,466.61865,17.661684,0.33797342,0.002648782,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 4:00,7963200,3597.512,29.127623,157.84842,50.506348,599.1847,628.1749,46.26926,10.569163,0.01218936,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 5:00,7966800,3597.512,52.54797,247.40794,50.506348,732.1093,636.3725,46.26926,41.090767,0.04870499,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 6:00,7970400,3597.512,2824.0442,494.8411,50.506348,41911.855,1256.2961,405.7054,36.848522,511.77692,50.506348,405.7054,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 7:00,7974000,3597.512,3972.2297,545.0764,52.93168,52461.445,2055.037,698.10333,9.858048,1799.21,52.93168,698.10333,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 8:00,7977600,3597.512,2293.2515,519.74493,53.308495,51877.867,1589.8339,657.2608,4.990362,961.9308,53.308495,657.2608,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 9:00,7981200,3597.512,1461.1442,479.43478,53.515656,50732.81,1681.9019,566.43353,4.830458,266.9606,53.515656,566.43353,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 10:00,7984800,3597.512,1019.7129,448.73734,53.452168,48465.79,1847.6227,533.9053,5.4032626,62.100155,53.452168,533.9053,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 11:00,7988400,3597.512,755.684,472.3369,54.30536,49914.88,2003.8511,580.7521,10.842568,13.842988,54.30536,580.7521,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 12:00,7992000,3597.512,630.8608,461.79034,55.319324,48064.934,2093.8855,537.3609,675.6625,3.641047,55.319324,537.3609,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 13:00,7995600,3597.512,487.19247,437.69604,84.223946,46088.574,2131.729,508.2906,1574.8315,0.27292588,84.223946,508.2906,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 14:00,7999200,3597.512,344.53833,218.8739,53.003635,44829.42,1949.5199,473.29907,145.74016,0.3539425,53.003635,473.29907,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 15:00,8002800,3597.512,329.07147,157.84465,53.000652,45336.836,1887.3672,468.74652,7.805416,0.19104367,53.000652,468.74652,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 16:00,8006400,3597.512,363.9685,151.25793,53.88738,45456.234,1882.5867,465.53067,6.9367642,0.022611596,53.88738,465.53067,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 17:00,8010000,3597.512,337.94043,311.90845,52.405243,48035.047,2001.7737,540.2787,95.16236,0.06761836,52.405243,540.2787,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 18:00,8013600,3597.512,622.1173,453.6841,52.375145,51926.316,2129.4087,668.1302,94.50789,5.1236935,52.375145,668.1302,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 19:00,8017200,3597.512,250.01204,394.81232,1.1633826,52774.83,2254.8652,703.47186,626.76495,2.3852026,1.1633826,703.47186,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 20:00,8020800,3597.512,266.64093,389.15637,1.3937258,50703.46,2140.978,641.3911,252.26785,0.96847165,1.3937258,641.3911,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 21:00,8024400,3597.512,232.26161,385.00137,0.94626385,52843.062,1983.9624,694.8775,5.1409073,0.56458145,0.94626385,694.8775,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 22:00,8028000,3597.512,6.32225,381.51645,0.10372095,49769.133,1407.1627,580.74347,3.5067322,0.40257195,0.10372095,580.74347,130901.3,73179.4,-15784.6,-201976.5
+4/3/2023 23:00,8031600,3597.512,6.3224883,379.49152,0.10372095,44404.28,1204.7504,425.9306,3.3916402,0.3227915,0.10372095,425.9306,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 0:00,8035200,3597.512,6.2890973,377.864,0.10372095,43030.68,1133.6833,392.31427,3.3074892,0.2782802,0.10372095,392.31427,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 1:00,8038800,3597.512,6.28845,376.5112,0.10372095,170.01189,729.1559,17.661684,3.2443423,0.25138536,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 2:00,8042400,3597.512,6.252757,375.3582,0.10372095,167.76553,704.72784,17.661684,3.1953037,0.23425218,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 3:00,8046000,3597.512,6.2164187,375.0531,0.10372095,165.53864,684.29193,17.661684,3.1561866,0.22293831,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 4:00,8049600,3597.512,6.213295,375.23557,0.10372095,269.2769,687.4988,46.26926,0.8537444,0.2152781,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 5:00,8053200,3597.512,6.17647,375.10385,0.10372095,161.53629,642.08466,17.661684,0.6021951,0.20999804,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 6:00,8056800,3597.512,969.20807,459.4705,50.506348,41301.367,1243.7867,362.89078,1.1139861,49.260986,50.506348,362.89078,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 7:00,8060400,3597.512,1689.1504,490.08734,52.94931,52303.7,2154.5935,706.8779,83.908,212.50261,52.94931,706.8779,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 8:00,8064000,3597.512,1230.4353,476.27225,53.30664,51587.85,1971.8906,665.426,2.6478958,114.47833,53.30664,665.426,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 9:00,8067600,3597.512,891.5569,455.0331,53.505592,49588.73,1623.496,583.5894,1.5562042,33.778442,53.505592,583.5894,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 10:00,8071200,3597.512,738.9004,443.94064,53.475353,48220.9,1470.5397,537.3153,1.2042099,14.622625,53.475353,537.3153,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 11:00,8074800,3597.512,621.3361,434.4982,54.3937,50266.473,1977.6078,566.22015,3.5499861,4.9086313,54.3937,566.22015,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 12:00,8078400,3597.512,619.62335,431.23138,55.28338,48186.12,2006.886,537.87006,161.65538,2.508007,55.28338,537.87006,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 13:00,8082000,3597.512,588.9984,429.08987,54.903023,46501.434,1998.1246,502.95493,291.17764,1.7879391,54.903023,502.95493,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 14:00,8085600,3597.512,527.1925,427.07648,53.112415,45187.535,1873.0731,464.76398,6.187334,1.8727077,53.112415,464.76398,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 15:00,8089200,3597.512,567.9454,428.64697,53.076225,45504.324,1188.8622,505.03574,0.7799805,3.0096064,53.076225,505.03574,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 16:00,8092800,3597.512,601.96436,429.25684,53.89492,45585.234,1114.7705,461.20673,0.7336721,3.1049254,53.89492,461.20673,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 17:00,8096400,3597.512,719.50464,436.34567,52.392067,48191.934,1827.1228,536.2298,11.047681,10.225386,52.392067,536.2298,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 18:00,8100000,3597.512,1089.3568,455.44498,52.361744,52599.598,1985.4404,675.86993,43.130566,47.737305,52.361744,675.86993,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 19:00,8103600,3597.512,251.09813,390.7339,1.1552086,53262.184,2048.2903,701.5031,168.16612,18.27317,1.1552086,701.5031,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 20:00,8107200,3597.512,267.76367,384.1485,1.3832299,51059.62,1946.1118,631.4183,57.834534,9.955271,1.3832299,631.4183,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 21:00,8110800,3597.512,233.29152,381.34592,0.93954736,51846.12,1938.9557,650.62067,9.149685,7.9450307,0.93954736,650.62067,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 22:00,8114400,3597.512,6.4201016,379.44147,0.10372095,49881.887,1451.7936,624.32184,1.1770761,7.2457285,0.10372095,624.32184,130901.3,73179.4,-15784.6,-201976.5
+4/4/2023 23:00,8118000,3597.512,6.38653,378.85892,0.10372095,44635.31,1359.4957,465.22385,3.6420472,6.974892,0.10372095,465.22385,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 0:00,8121600,3597.512,6.3864927,378.4757,0.10372095,43040.04,1238.2842,389.85162,2.7021186,6.865844,0.10372095,389.85162,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 1:00,8125200,3597.512,6.3518195,378.17896,0.10372095,170.19843,828.63116,17.661684,1.7004602,6.8212547,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 2:00,8128800,3597.512,6.3156357,377.92255,0.10372095,167.89568,799.57495,17.661684,1.3101466,6.8028884,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 3:00,8132400,3597.512,6.3124495,377.68732,0.10372095,165.64774,775.866,17.661684,1.1284965,6.7952843,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 4:00,8136000,3597.512,6.275408,377.4651,0.10372095,1319.0198,843.55457,46.26926,88.64269,6.7921124,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 5:00,8139600,3597.512,6.2719903,377.2523,0.10372095,1586.6486,996.9709,249.80429,314.8114,6.790806,0.10372095,249.80429,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 6:00,8143200,3597.512,1805.4539,476.91446,50.506348,41835.527,1820.5153,410.78296,296.03683,187.28053,50.506348,410.78296,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 7:00,8146800,3597.512,2810.6143,520.2597,52.901768,53058.094,2207.158,748.8504,63.058205,780.05,52.901768,748.8504,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 8:00,8150400,3597.512,1715.7223,497.1301,53.27945,51946.062,1619.0068,657.41034,9.273407,377.93893,53.27945,657.41034,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 9:00,8154000,3597.512,1101.0194,463.92078,53.498177,50838.4,1453.7955,552.9363,6.1491337,89.659225,53.498177,552.9363,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 10:00,8157600,3597.512,813.48914,442.74622,53.436497,48368.15,1791.5664,532.3114,6.6719003,23.65619,53.436497,532.3114,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 11:00,8161200,3597.512,663.1082,467.40353,54.244057,49606.08,1997.3334,572.99457,10.773564,6.862021,54.244057,572.99457,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 12:00,8164800,3597.512,610.08435,468.63504,55.062275,48011.96,2083.8306,537.72864,552.03217,4.0853534,55.062275,537.72864,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 13:00,8168400,3597.512,511.69226,467.2906,54.54225,46047.113,2073.9353,501.55634,812.16437,3.992745,54.54225,501.55634,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 14:00,8172000,3597.512,380.04037,379.7511,52.74559,44961.434,1916.1849,468.1938,46.67076,3.2688718,52.74559,468.1938,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 15:00,8175600,3597.512,364.77927,303.1674,52.93619,45227.688,1720.7,461.42563,6.293877,0.52468264,52.93619,461.42563,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 16:00,8179200,3597.512,408.53558,324.72046,53.721985,45343.016,1667.9055,460.05087,6.069611,0.72041607,53.721985,460.05087,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 17:00,8182800,3597.512,403.87164,450.68576,52.390434,48196.723,1959.2778,538.5384,8.575434,0.32414806,52.390434,538.5384,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 18:00,8186400,3597.512,599.5043,458.8756,52.35334,51769.55,2067.2666,647.2321,8.198641,3.94009,52.35334,647.2321,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 19:00,8190000,3597.512,250.41812,402.6051,1.150089,52850.008,2251.3508,694.4676,651.26764,1.1576484,1.150089,694.4676,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 20:00,8193600,3597.512,266.9361,395.67935,1.3760394,50665.703,2082.2334,631.44977,54.038822,0.5189781,1.3760394,631.44977,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 21:00,8197200,3597.512,232.75679,390.34045,0.9369178,51899.555,1846.847,653.18195,6.0095224,0.31002143,0.9369178,653.18195,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 22:00,8200800,3597.512,6.2460356,387.71243,0.10372095,49702.598,1459.9818,576.03156,4.9498725,0.21882385,0.10372095,576.03156,130901.3,73179.4,-15784.6,-201976.5
+4/5/2023 23:00,8204400,3597.512,6.246242,371.1003,0.10372095,44376.223,1264.1782,463.9287,0.8264155,0.17110874,0.10372095,463.9287,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 0:00,8208000,3597.512,6.2462254,341.116,0.10372095,42957.266,1081.3527,388.37573,0.6918545,0.14303814,0.10372095,388.37573,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 1:00,8211600,3597.512,6.547931,321.76413,0.10372095,170.10818,671.9592,17.661684,0.61038387,0.12515874,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 2:00,8215200,3597.512,6.545353,307.6029,0.10372095,167.82706,642.29504,17.661684,0.55010164,0.11311324,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 3:00,8218800,3597.512,6.5084853,296.98245,0.10372095,165.59712,618.07477,17.661684,0.5034396,0.10466077,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 4:00,8222400,3597.512,6.4713893,288.8615,0.10372095,662.1086,718.5535,46.26926,14.431523,0.098547295,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 5:00,8226000,3597.512,6.467794,282.5541,0.10372095,725.9412,936.6702,113.950455,44.076027,0.09402356,0.10372095,113.950455,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 6:00,8229600,3597.512,1392.6036,477.50235,50.506348,40996.797,1784.1427,410.34882,32.913403,108.57746,50.506348,410.34882,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 7:00,8233200,3597.512,2213.1978,513.509,52.920475,52488.758,2128.6736,703.5167,10.957663,446.07227,52.920475,703.5167,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 8:00,8236800,3597.512,1358.3024,489.79837,53.29407,51787.645,1622.4092,660.78827,4.352779,180.98984,53.29407,660.78827,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 9:00,8240400,3597.512,881.1879,460.36496,53.499622,50381.28,1681.9432,556.77795,4.2254105,38.0541,53.499622,556.77795,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 10:00,8244000,3597.512,635.1842,466.02463,53.388767,48243.97,1949.1744,532.8652,6.7641907,8.081427,53.388767,532.8652,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 11:00,8247600,3597.512,494.5176,463.56876,54.04258,49389.22,2005.221,571.5493,24.831383,2.4590762,54.04258,571.5493,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 12:00,8251200,3597.512,434.98047,263.0829,54.778572,47632.3,2106.4417,535.484,848.66864,7.115707,54.778572,535.484,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 13:00,8254800,3597.512,387.7675,120.906494,4.188662,45676.52,2133.02,503.67737,1708.8677,11.808631,4.188662,503.67737,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 14:00,8258400,3597.512,315.22308,109.42472,2.4996006,44345.223,2012.2654,470.62512,554.1102,9.009151,2.4996006,470.62512,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 15:00,8262000,3597.512,311.35382,105.91649,2.5074308,44683.098,1950.3717,467.9827,177.64227,7.953351,2.5074308,467.9827,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 16:00,8265600,3597.512,342.23196,107.87186,3.370679,44778.71,1953.223,464.95627,204.11551,9.83017,3.370679,464.95627,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 17:00,8269200,3597.512,274.26953,90.548294,1.8651801,46979.477,2171.9153,540.8635,1740.3721,0.4786346,1.8651801,540.8635,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 18:00,8272800,3597.512,319.27966,295.4142,52.423252,51054.035,2264.976,687.86847,922.957,0.057776764,52.423252,687.86847,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 19:00,8276400,3597.512,246.31818,153.28078,1.1875932,52148.082,2311.357,717.34235,1145.4675,0.019793596,1.1875932,717.34235,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 20:00,8280000,3597.512,262.61093,113.951065,1.4204178,50033.504,2122.625,635.33685,199.57533,0.010305273,1.4204178,635.33685,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 21:00,8283600,3597.512,229.02513,90.096664,0.96694857,51584.227,2113.0886,666.34326,54.35423,0.006483278,0.96694857,666.34326,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 22:00,8287200,3597.512,6.260995,74.517105,0.10372095,49283.67,1664.6516,578.4283,3.674283,0.004706102,0.10372095,578.4283,130901.3,73179.4,-15784.6,-201976.5
+4/6/2023 23:00,8290800,3597.512,6.2289577,67.142555,0.10372095,44065.754,1244.7145,423.5733,2.8621523,0.003946469,0.10372095,423.5733,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 0:00,8294400,3597.512,6.196867,62.7867,0.10372095,42726.945,1170.7684,389.23267,2.7663076,0.003515326,0.10372095,389.23267,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 1:00,8298000,3597.512,6.1970787,59.84172,0.10372095,169.60786,767.4676,17.661684,2.6940775,0.003223883,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 2:00,8301600,3597.512,6.1627517,57.671932,0.10372095,167.3541,741.5767,17.661684,2.6381028,0.003007085,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 3:00,8305200,3597.512,6.1607747,55.97794,0.10372095,165.17688,719.96423,17.661684,2.593576,0.002836189,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 4:00,8308800,3597.512,6.125544,54.600216,0.10372095,293.12772,725.48486,46.26926,1.2302091,0.002696232,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 5:00,8312400,3597.512,6.1231127,53.44465,0.10372095,161.51608,1438.5134,1156.3853,0.39440203,0.002578426,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 6:00,8316000,3597.512,628.0574,445.13467,50.506348,40436.27,1730.7087,368.04083,3.0020063,22.974958,50.506348,368.04083,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 7:00,8319600,3597.512,1168.4435,465.60852,52.948883,52198.02,2118.9033,709.5996,5.8779144,77.82929,52.948883,709.5996,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 8:00,8323200,3597.512,837.39484,449.97937,53.290565,51558.473,2079.9963,664.95496,3.4628737,29.510548,53.290565,664.95496,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 9:00,8326800,3597.512,561.365,430.14807,53.490288,49127.84,1984.1573,576.5078,5.2468,4.3077087,53.490288,576.5078,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 10:00,8330400,3597.512,401.67303,366.81686,53.461056,47807.516,1982.1107,537.2783,75.32557,0.12923239,53.461056,537.2783,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 11:00,8334000,3597.512,372.47495,133.68243,3.5648177,48326.82,2244.339,579.1898,2648.0547,0.06359323,3.5648177,579.1898,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 12:00,8337600,3597.512,403.1097,111.896126,4.475638,45289.562,2630.622,553.7582,25718.492,1.1997458,4.475638,553.7582,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 13:00,8341200,3597.512,387.4709,106.277245,4.13771,42568.11,2769.68,541.8017,42633.043,3.6465645,4.13771,541.8017,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 14:00,8344800,3597.512,315.96667,102.006,2.4528701,40525.75,2696.5342,533.9366,34680.965,4.3441873,2.4528701,533.9366,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 15:00,8348400,3597.512,312.6689,99.850204,2.4568262,40921.734,2450.0505,510.3698,14773.949,4.108655,2.4568262,510.3698,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 16:00,8352000,3597.512,344.67322,93.70771,3.2802496,41574.043,2426.7197,492.61948,14410.606,1.4120702,3.2802496,492.61948,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 17:00,8355600,3597.512,277.4385,83.20782,1.824486,43819.234,2664.0435,581.91205,26236.639,0.013921659,1.824486,581.91205,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 18:00,8359200,3597.512,277.8051,143.5427,52.516167,47185.527,3124.269,802.5635,55790.15,0.008810221,52.516167,802.5635,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 19:00,8362800,3597.512,235.91267,82.018456,1.2765361,47820.656,3335.8748,929.2456,69287.24,0.006598081,1.2765361,929.2456,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 20:00,8366400,3597.512,251.32521,74.27228,1.5262653,45627.273,3203.0835,808.11456,67352.52,0.005436979,1.5262653,808.11456,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 21:00,8370000,3597.512,219.03568,69.47682,1.0406494,47042.434,2888.5383,767.4991,30141.418,0.004775125,1.0406494,767.4991,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 22:00,8373600,3597.512,5.982919,65.48891,0.10372095,45914.832,2309.653,624.82355,3146.351,0.004318823,0.10372095,624.82355,130901.3,73179.4,-15784.6,-201976.5
+4/7/2023 23:00,8377200,3597.512,5.952233,63.15549,0.10372095,42248.375,1875.2803,450.38858,24.904541,0.003979105,0.10372095,450.38858,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 0:00,8380800,3597.512,5.922768,61.28146,0.10372095,41633,1333.1803,403.79526,1.1942062,0.003713191,0.10372095,403.79526,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 1:00,8384400,3597.512,5.924834,59.723396,0.10372095,164.7815,822.5356,17.661684,0.85397327,0.00349748,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 2:00,8388000,3597.512,5.894337,58.394703,0.10372095,163.18701,755.89856,17.661684,0.6980657,0.003317782,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 3:00,8391600,3597.512,5.8947277,57.239582,0.10372095,161.49109,712.2823,17.661684,0.6055956,0.003164981,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 4:00,8395200,3597.512,5.863558,56.22013,0.10372095,159.76736,1426.431,17.242239,6.5853133,0.003032919,0.10372095,17.242239,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 5:00,8398800,3597.512,5.8634267,55.309475,0.10372095,157.0489,1441.672,16.947271,24.624872,0.002917258,0.10372095,16.947271,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 6:00,8402400,3597.512,5.831917,54.48792,0.10372095,39554.977,1815.0287,376.99365,55.59834,0.002814842,0.10372095,376.99365,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 7:00,8406000,3597.512,5.8331976,53.740597,0.10372095,39909.195,1826.8695,373.69534,102.890976,0.00272331,0.10372095,373.69534,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 8:00,8409600,3597.512,5.9923916,53.05603,0.10372095,39750.266,1941.5822,368.82974,989.9703,0.002640854,0.10372095,368.82974,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 9:00,8413200,3597.512,6.1203284,52.425167,0.10372095,48723.477,2267.8145,646.8372,1734.1953,0.002566064,0.10372095,646.8372,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 10:00,8416800,3597.512,6.091039,51.840763,0.10372095,47213.34,2285.3801,597.5328,3226.6216,0.002497819,0.10372095,597.5328,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 11:00,8420400,3597.512,6.092936,51.29691,0.10372095,47776.45,2634.1921,651.3514,17798.137,0.002435218,0.10372095,651.3514,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 12:00,8424000,3597.512,6.062526,50.788742,0.10372095,46478.38,2873.9517,673.4403,39196.156,0.002377522,0.10372095,673.4403,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 13:00,8427600,3597.512,6.062723,50.312206,0.10372095,44009.777,3007.058,684.33795,55947.86,0.002324125,0.10372095,684.33795,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 14:00,8431200,3597.512,6.0303936,49.863884,0.10372095,43011.19,2985.5493,692.6748,51549.727,0.002274518,0.10372095,692.6748,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 15:00,8434800,3597.512,5.9975543,49.440876,0.10372095,43047.09,2875.877,646.47626,42850.85,0.002228274,0.10372095,646.47626,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 16:00,8438400,3597.512,5.9964113,49.0407,0.10372095,41754.168,2816.8118,604.75494,40633.598,0.002185032,0.10372095,604.75494,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 17:00,8442000,3597.512,5.963777,48.66121,0.10372095,42958.293,2776.3625,630.24884,32841.07,0.002144481,0.10372095,630.24884,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 18:00,8445600,3597.512,5.9628525,48.300533,0.10372095,46949.547,3146.3872,834.57294,54318.63,0.002106355,0.10372095,834.57294,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 19:00,8449200,3597.512,5.9298105,47.95705,0.10372095,47148.242,3514.3396,992.93024,89642.79,0.002070421,0.10372095,992.93024,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 20:00,8452800,3597.512,5.9272327,47.62933,0.10372095,45891.348,3355.2637,911.4383,75617.93,0.00203648,0.10372095,911.4383,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 21:00,8456400,3597.512,5.8935337,47.316105,0.10372095,47502.99,3156.7693,832.51904,56178.56,0.002004354,0.10372095,832.51904,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 22:00,8460000,3597.512,5.8607154,47.016254,0.10372095,43482.125,2464.6692,581.7463,11313.164,0.001973888,0.10372095,581.7463,130901.3,73179.4,-15784.6,-201976.5
+4/8/2023 23:00,8463600,3597.512,5.8602147,46.728783,0.10372095,42505.08,2031.15,494.53705,595.0653,0.001944946,0.10372095,494.53705,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 0:00,8467200,3597.512,5.829568,46.45279,0.10372095,42257.082,1759.6412,446.58997,2.6609993,0.001917404,0.10372095,446.58997,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 1:00,8470800,3597.512,5.830778,46.187473,0.10372095,163.64919,816.108,17.661684,0.83794576,0.001891154,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 2:00,8474400,3597.512,5.8624806,45.932114,0.10372095,162.4183,752.6768,17.661684,0.6908078,0.0018661,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 3:00,8478000,3597.512,6.11372,45.68605,0.10372095,160.98,709.35,17.661684,0.59950536,0.001842154,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 4:00,8481600,3597.512,6.0819974,45.44869,0.10372095,159.2692,1462.9481,36.301697,28.118078,0.001819236,0.10372095,36.301697,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 5:00,8485200,3597.512,6.081389,45.219494,0.10372095,154.43024,1514.087,14.8350315,313.86368,0.001797277,0.10372095,14.8350315,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 6:00,8488800,3597.512,6.049321,44.997967,0.10372095,38476.61,1929.1339,384.06796,675.4362,0.001776212,0.10372095,384.06796,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 7:00,8492400,3597.512,6.0496216,44.78366,0.10372095,39284.812,1813.0846,381.1749,39.37346,0.001755982,0.10372095,381.1749,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 8:00,8496000,3597.512,6.019607,44.576157,0.10372095,39901.78,1552.1688,371.11084,2.0897949,0.001736534,0.10372095,371.11084,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 9:00,8499600,3597.512,6.021767,44.37508,0.10372095,40223.707,1582.1694,368.01678,2.2297714,0.001717819,0.10372095,368.01678,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 10:00,8503200,3597.512,5.993007,44.180077,0.10372095,49462.52,2069.9275,628.20624,66.759995,0.001699794,0.10372095,628.20624,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 11:00,8506800,3597.512,5.964575,43.99083,0.10372095,49094.69,2256.088,630.65027,1816.3295,0.001682416,0.10372095,630.65027,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 12:00,8510400,3597.512,5.967019,43.80703,0.10372095,45581.418,2372.0342,554.845,7926.539,0.001665649,0.10372095,554.845,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 13:00,8514000,3597.512,5.937024,43.62841,0.10372095,44549.168,2558.8623,561.0274,18935.201,0.001649458,0.10372095,561.0274,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 14:00,8517600,3597.512,5.9376764,43.454712,0.10372095,41606.547,2428.923,487.0414,14925.032,0.00163381,0.10372095,487.0414,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 15:00,8521200,3597.512,5.906463,43.28569,0.10372095,41879.992,2318.173,487.13318,8586.823,0.001618678,0.10372095,487.13318,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 16:00,8524800,3597.512,5.9067836,43.121128,0.10372095,41983.934,2340.8828,485.04892,9839.293,0.001604033,0.10372095,485.04892,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 17:00,8528400,3597.512,5.8756666,42.96082,0.10372095,44613.55,2376.1907,570.167,7416.8105,0.00158985,0.10372095,570.167,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 18:00,8532000,3597.512,5.8447757,42.804565,0.10372095,47832.98,2278.5957,653.445,1810.9832,0.001576105,0.10372095,653.445,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 19:00,8535600,3597.512,5.846009,42.65219,0.10372095,48348.965,2294.1294,645.29315,2286.5679,0.001562777,0.10372095,645.29315,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 20:00,8539200,3597.512,5.8160367,42.50352,0.10372095,45553.957,2275.9077,558.2797,4084.811,0.001549845,0.10372095,558.2797,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 21:00,8542800,3597.512,6.1011558,42.3584,0.10372095,48520.832,2134.021,646.20465,248.95181,0.00153729,0.10372095,646.20465,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 22:00,8546400,3597.512,6.134887,42.216675,0.10372095,46866.234,1595.0289,548.69226,1.5741837,0.001525095,0.10372095,548.69226,130901.3,73179.4,-15784.6,-201976.5
+4/9/2023 23:00,8550000,3597.512,6.1061425,42.078205,0.10372095,41857.477,1180.0906,395.08215,0.80536777,0.001513243,0.10372095,395.08215,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 0:00,8553600,3597.512,6.077567,41.942863,0.10372095,41967.332,1123.9681,393.13052,0.681627,0.001501717,0.10372095,393.13052,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 1:00,8557200,3597.512,6.0800014,41.810524,0.10372095,163.46368,708.7158,17.661684,0.5981684,0.001490505,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 2:00,8560800,3597.512,6.0493617,41.68107,0.10372095,161.47626,678.10266,17.661684,0.5381592,0.001479591,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 3:00,8564400,3597.512,6.0496483,41.554382,0.10372095,159.48158,653.61804,17.661684,0.4927878,0.001468964,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 4:00,8568000,3597.512,6.018202,41.430367,0.10372095,211.05063,1279.5863,677.78595,0.4693088,0.00145861,0.10372095,677.78595,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 5:00,8571600,3597.512,6.0179095,41.309303,0.10372095,157.91953,1423.036,17.33435,4.3926854,0.001448539,0.10372095,17.33435,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 6:00,8575200,3597.512,897.6918,450.1933,50.506348,39668.266,1785.6129,371.27023,16.469637,60.23698,50.506348,371.27023,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 7:00,8578800,3597.512,1639.5355,480.26846,52.97781,51278.016,2177.5083,714.5224,185.95404,232.97293,52.97781,714.5224,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 8:00,8582400,3597.512,1123.5363,462.56662,53.28926,50877.613,2068.8303,676.7066,6.3493686,103.05978,53.28926,676.7066,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 9:00,8586000,3597.512,739.0101,436.874,53.521027,48439.633,1975.6957,577.1059,15.973242,19.841698,53.521027,577.1059,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 10:00,8589600,3597.512,524.5299,420.42487,53.476772,47196.848,1644.8141,534.0585,1.8708118,3.0270793,53.476772,534.0585,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 11:00,8593200,3597.512,452.09903,413.47116,54.354485,48590.535,1980.1975,573.78937,39.30747,0.24686731,54.354485,573.78937,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 12:00,8596800,3597.512,464.31445,354.79642,55.30299,46934.38,2051.442,537.39014,639.2414,0.1223725,55.30299,537.39014,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 13:00,8600400,3597.512,427.7314,253.63455,54.900005,45151.99,2035.6671,498.48813,904.77356,0.04782863,54.900005,498.48813,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 14:00,8604000,3597.512,347.43845,206.01384,53.13271,44046.785,1897.7094,464.75528,136.70155,0.026214028,53.13271,464.75528,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 15:00,8607600,3597.512,357.84036,246.49303,53.09653,44474.21,1557.3478,460.04193,1.8455536,0.04502587,53.09653,460.04193,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 16:00,8611200,3597.512,413.6742,315.957,53.892487,44646.656,1556.4716,457.16437,1.8561546,0.09025933,53.892487,457.16437,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 17:00,8614800,3597.512,518.42847,416.28842,52.394245,47440.457,1616.8756,532.64343,1.8000425,1.6954875,52.394245,532.64343,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 18:00,8618400,3597.512,984.9904,439.80457,52.357147,52277.445,2110.7397,686.3727,116.31131,29.146013,52.357147,686.3727,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 19:00,8622000,3597.512,248.37572,379.27325,1.1587055,53012.76,2095.8682,710.758,15.256506,13.666346,1.1587055,710.758,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 20:00,8625600,3597.512,264.5043,373.39523,1.3819188,49858.184,2155.4583,614.9578,1007.9418,7.317566,1.3819188,614.9578,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 21:00,8629200,3597.512,231.03273,370.8149,0.945749,51529.516,2087.5286,683.798,54.5106,5.673178,0.945749,683.798,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 22:00,8632800,3597.512,6.265855,369.0403,0.10372095,48872.902,1941.79,569.6886,4.7418494,5.0655346,0.10372095,569.6886,130901.3,73179.4,-15784.6,-201976.5
+4/10/2023 23:00,8636400,3597.512,6.2325926,368.58792,0.10372095,43703.35,1546.9955,459.36115,1.8017577,4.8131175,0.10372095,459.36115,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 0:00,8640000,3597.512,6.232579,368.34198,0.10372095,42351.05,1274.2777,384.0764,1.2659824,4.7031674,0.10372095,384.0764,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 1:00,8643600,3597.512,6.1982713,368.18793,0.10372095,168.93216,829.83295,17.661684,1.0379888,4.6542845,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 2:00,8647200,3597.512,6.195899,368.07565,0.10372095,166.70422,780.43915,17.661684,0.9035022,4.6323376,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 3:00,8650800,3597.512,6.2595854,367.98282,0.10372095,164.52249,744.3934,17.661684,0.8117991,4.622433,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 4:00,8654400,3597.512,6.489676,367.89935,0.10372095,973.75275,871.066,46.26926,43.517036,4.6179442,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 5:00,8658000,3597.512,6.452788,367.82077,0.10372095,160.68457,812.3689,17.661684,29.732443,4.6158986,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 6:00,8661600,3597.512,1368.1984,458.8365,50.506348,40898.33,1050.0812,360.27808,18.95118,108.41087,50.506348,360.27808,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 7:00,8665200,3597.512,2217.5298,496.48947,52.9296,52192.184,2124.5042,754.3372,23.151802,460.4253,52.9296,754.3372,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 8:00,8668800,3597.512,1609.5913,483.331,53.257538,51535.62,1641.838,665.6527,1.6051825,284.12115,53.257538,665.6527,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 9:00,8672400,3597.512,1125.3165,458.5964,53.479317,49325.688,1771.9879,556.6018,2.6197567,92.97452,53.479317,556.6018,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 10:00,8676000,3597.512,863.83734,440.45593,53.418556,47525.492,1341.2341,523.2472,1.1216853,31.006113,53.418556,523.2472,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 11:00,8679600,3597.512,674.04346,426.70767,54.31349,49583.234,1856.5205,551.0507,3.4948232,8.708707,54.31349,551.0507,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 12:00,8683200,3597.512,603.63196,419.30286,55.182915,47360.863,1931.9452,523.91077,435.70056,2.6128318,55.182915,523.91077,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 13:00,8686800,3597.512,496.21582,413.0348,54.81663,45527.848,1925.5215,491.8747,678.823,0.42800212,54.81663,491.8747,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 14:00,8690400,3597.512,359.26157,249.97719,53.089413,44313.016,1784.6501,457.58096,64.45225,0.047755454,53.089413,457.58096,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 15:00,8694000,3597.512,330.3587,168.45547,53.028316,44641.098,1462.633,453.6242,1.8157152,0.011882103,53.028316,453.6242,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 16:00,8697600,3597.512,360.3821,160.84154,53.601162,44748.77,1537.7885,451.75696,2.1353912,1.1824733,53.601162,451.75696,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 17:00,8701200,3597.512,334.2381,329.17358,51.983654,47304.57,1880.9286,525.7754,181.43536,3.3213592,51.983654,525.7754,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 18:00,8704800,3597.512,432.70837,454.76147,52.36917,50810.53,2184.5576,666.4135,2058.339,0.8023353,52.36917,666.4135,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 19:00,8708400,3597.512,246.16216,368.92413,1.1763079,51828.87,2176.5938,718.19666,1072.2069,0.17839567,1.1763079,718.19666,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 20:00,8712000,3597.512,262.18726,308.35724,1.4036247,49716.918,1925.0968,620.1615,27.29249,0.10459634,1.4036247,620.1615,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 21:00,8715600,3597.512,229.08763,267.79913,0.9606273,52025.6,1561.1309,674.8993,1.3944464,0.07193288,0.9606273,674.8993,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 22:00,8719200,3597.512,6.2393236,235.29208,0.10372095,48939.402,1230.0258,564.85724,0.76268315,0.053563826,0.10372095,564.85724,130901.3,73179.4,-15784.6,-201976.5
+4/11/2023 23:00,8722800,3597.512,6.2401543,210.50114,0.10372095,43616.74,1026.9603,413.5513,0.6446104,0.04209303,0.10372095,413.5513,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 0:00,8726400,3597.512,6.2077627,192.08105,0.10372095,42308.664,956.1298,382.01178,0.5620719,0.034398623,0.10372095,382.01178,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 1:00,8730000,3597.512,6.207684,177.6368,0.10372095,169.16748,560.9753,17.661684,0.5015767,0.028956162,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 2:00,8733600,3597.512,6.172998,165.99342,0.10372095,166.94608,536.06244,17.661684,0.45532808,0.024945335,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 3:00,8737200,3597.512,6.1707115,156.40181,0.10372095,164.74376,515.43604,17.661684,0.41874102,0.021891544,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 4:00,8740800,3597.512,6.1351175,148.36024,0.10372095,392.4302,662.6303,46.26926,3.1447308,0.019503875,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 5:00,8744400,3597.512,6.132321,141.51929,0.10372095,160.79637,616.8902,17.661684,2.3344898,0.017595435,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 6:00,8748000,3597.512,971.07056,466.86453,50.506348,40828.324,1249.0975,785.7995,1.1793442,52.178005,50.506348,785.7995,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 7:00,8751600,3597.512,1579.544,494.25238,53.002705,52004.51,2202.4934,707.34204,262.70438,194.4672,53.002705,707.34204,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 8:00,8755200,3597.512,1174.6268,479.94772,53.217026,51199.76,2095.424,671.3759,17.581083,102.47382,53.217026,671.3759,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 9:00,8758800,3597.512,861.33563,460.10858,53.46467,48544.766,1989.4556,567.86426,14.847297,32.25,53.46467,567.86426,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 10:00,8762400,3597.512,628.7637,443.81827,53.432053,47226.582,1631.2253,523.9767,2.1462371,8.28253,53.432053,523.9767,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 11:00,8766000,3597.512,503.91272,432.38858,54.285294,48600.887,2015.8783,564.7173,85.76471,0.8754162,54.285294,564.7173,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 12:00,8769600,3597.512,483.13504,429.5131,55.20955,46603.316,2147.9336,528.10114,1650.8108,0.22877732,55.20955,528.10114,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 13:00,8773200,3597.512,432.64447,296.69492,54.86761,44819.13,2162.5723,498.824,2540.905,0.066406466,54.86761,498.824,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 14:00,8776800,3597.512,337.5197,188.34181,53.122868,43649.55,1970.0951,463.26315,339.62674,0.016711732,53.122868,463.26315,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 15:00,8780400,3597.512,325.78067,138.50618,53.08871,44256.562,1857.059,457.00308,3.4037657,0.005898428,53.08871,457.00308,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 16:00,8784000,3597.512,366.7149,159.32204,53.871494,44505.07,1671.2692,452.7695,2.5594912,0.009406097,53.871494,452.7695,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 17:00,8787600,3597.512,403.8253,425.10883,52.38754,47056.59,1987.4513,523.9835,126.412636,0.35683316,52.38754,523.9835,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 18:00,8791200,3597.512,700.90894,438.76437,52.357376,51757.242,2146.003,679.78326,136.51257,8.344241,52.357376,679.78326,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 19:00,8794800,3597.512,247.58356,381.1626,1.1627885,52449.32,2288.4895,711.68036,997.88635,3.7744794,1.1627885,711.68036,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 20:00,8798400,3597.512,263.60355,377.14374,1.3865908,49267.8,2197.7053,620.3447,1005.03394,1.5327073,1.3865908,620.3447,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 21:00,8802000,3597.512,230.36896,374.5929,0.9505611,51627.707,2114.4258,686.2343,24.951216,0.89232206,0.9505611,686.2343,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 22:00,8805600,3597.512,6.3122053,372.48172,0.10372095,48703.652,1421.5226,566.264,1.2990309,0.64638484,0.10372095,566.264,130901.3,73179.4,-15784.6,-201976.5
+4/12/2023 23:00,8809200,3597.512,6.2792325,371.6308,0.10372095,43488.645,1127.8802,454.6529,0.7641262,0.53018105,0.10372095,454.6529,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 0:00,8812800,3597.512,6.2794204,371.0055,0.10372095,42218.25,1000.06256,380.79468,0.6575335,0.46806595,0.10372095,380.79468,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 1:00,8816400,3597.512,6.2454243,370.51367,0.10372095,168.9589,600.95166,17.661684,0.5832143,0.43227056,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 2:00,8820000,3597.512,6.243267,370.10577,0.10372095,166.7246,573.6525,17.661684,0.527998,0.41064605,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 3:00,8823600,3597.512,6.207225,369.7533,0.10372095,164.52483,551.3898,17.661684,0.48503816,0.39718333,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 4:00,8827200,3597.512,6.2041955,369.43896,0.10372095,828.48206,725.0948,46.26926,28.337952,0.3886363,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 5:00,8830800,3597.512,6.167781,369.152,0.10372095,160.7153,674.4533,17.661684,19.662397,0.38313812,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 6:00,8834400,3597.512,1270.681,466.27908,50.506348,40315.812,1588.8672,354.43243,13.9900255,93.336075,50.506348,354.43243,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 7:00,8838000,3597.512,1946.4974,498.58707,52.911404,52124.75,2118.92,754.327,33.568714,347.28918,52.911404,754.327,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 8:00,8841600,3597.512,1323.1313,479.74567,53.238525,51489.652,1756.021,665.742,2.0737827,160.78406,53.238525,665.742,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 9:00,8845200,3597.512,913.0847,454.8058,53.438454,48583.473,1866.5984,564.25055,5.887602,41.892475,53.438454,564.25055,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 10:00,8848800,3597.512,688.3997,439.13663,53.40614,47195.652,1698.2617,520.0663,2.5104873,12.480958,53.40614,520.0663,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 11:00,8852400,3597.512,573.6473,428.79468,54.274933,48569.215,1894.3654,562.4199,77.17064,3.0632422,54.274933,562.4199,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 12:00,8856000,3597.512,527.4844,424.01746,55.242085,46803.223,1924.8425,523.1733,437.03293,0.6341257,55.242085,523.1733,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 13:00,8859600,3597.512,445.1143,344.44266,91.39557,45385.81,1875.6462,490.32703,339.41605,0.08856388,91.39557,490.32703,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 14:00,8863200,3597.512,331.9854,142.15779,53.065052,44284.906,1745.321,451.88263,9.639659,0.006909064,53.065052,451.88263,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 15:00,8866800,3597.512,325.1381,119.79542,53.032646,44515.844,1545.1271,448.53732,2.195376,0.003607571,53.032646,448.53732,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 16:00,8870400,3597.512,360.1251,120.11551,53.827118,44590.35,1575.621,447.36792,2.3390918,0.003555644,53.827118,447.36792,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 17:00,8874000,3597.512,320.6028,224.24507,52.357586,47256.91,1837.2415,522.0955,54.63892,0.032694396,52.357586,522.0955,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 18:00,8877600,3597.512,414.58484,417.01382,52.33317,50641.47,2104.037,647.8293,1077.4238,0.47624367,52.33317,647.8293,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 19:00,8881200,3597.512,246.34929,295.92087,1.15644,52237.965,2041.1967,707.70276,116.10083,0.11464143,1.15644,707.70276,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 20:00,8884800,3597.512,262.45026,247.05891,1.3805592,50005.043,1890.9913,608.34283,4.984333,0.07519941,1.3805592,608.34283,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 21:00,8888400,3597.512,229.7679,212.40695,0.9498428,52242.566,1718.177,673.2579,1.992647,0.053226825,0.9498428,673.2579,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 22:00,8892000,3597.512,6.4690857,187.03377,0.10372095,48805.22,1290.1753,557.1556,0.94135654,0.040069103,0.10372095,557.1556,130901.3,73179.4,-15784.6,-201976.5
+4/13/2023 23:00,8895600,3597.512,6.4698486,168.69257,0.10372095,43571.047,1114.0531,451.44165,0.6571922,0.0315758,0.10372095,451.44165,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 0:00,8899200,3597.512,6.4371095,154.4835,0.10372095,42244.605,979.20715,378.1068,0.581372,0.025761766,0.10372095,378.1068,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 1:00,8902800,3597.512,6.403372,143.16035,0.10372095,169.32529,584.6577,17.661684,0.52354157,0.021595942,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 2:00,8906400,3597.512,6.4013753,133.92845,0.10372095,167.01526,558.78705,17.661684,0.47757763,0.018500771,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 3:00,8910000,3597.512,6.365496,126.25927,0.10372095,164.81624,536.76105,17.661684,0.44029903,0.016132427,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 4:00,8913600,3597.512,6.362585,119.78813,0.10372095,760.8347,697.96576,46.26926,22.56532,0.014275638,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 5:00,8917200,3597.512,6.326293,114.255295,0.10372095,160.94902,648.73663,17.661684,15.794088,0.012789847,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 6:00,8920800,3597.512,1122.1827,454.80408,50.506348,40795.277,1420.5585,1177.6636,9.322879,71.13942,50.506348,1177.6636,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 7:00,8924400,3597.512,1803.5293,486.16382,52.787468,52351.465,2108.734,749.2532,15.0986,277.52658,52.787468,749.2532,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 8:00,8928000,3597.512,1501.7439,478.34204,53.279945,51629.49,1651.6644,710.6578,1.4647411,198.72604,53.279945,710.6578,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 9:00,8931600,3597.512,1212.2529,463.53406,53.427444,48655.88,1315.2612,557.7655,1.0017667,99.29811,53.427444,557.7655,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 10:00,8935200,3597.512,927.6171,447.27194,53.391068,47326.902,1199.1394,516.41626,0.8089822,38.703583,53.391068,516.41626,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 11:00,8938800,3597.512,817.4771,438.75186,54.26558,49075.184,1842.8751,546.7469,18.047573,19.385786,54.26558,546.7469,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 12:00,8942400,3597.512,754.443,432.9111,55.14513,47019.418,1925.7969,517.58575,563.24445,10.615881,55.14513,517.58575,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 13:00,8946000,3597.512,651.2798,426.7283,54.765495,45225.414,1900.9329,483.8588,648.1431,5.514769,54.765495,483.8588,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 14:00,8949600,3597.512,467.5092,417.40723,53.064507,44134.98,1764.8993,450.39557,61.396072,1.1279508,53.064507,450.39557,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 15:00,8953200,3597.512,395.13004,414.54398,53.03303,44467.953,1357.189,446.6347,1.4901781,0.19157472,53.03303,446.6347,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 16:00,8956800,3597.512,411.5046,324.69778,53.80933,44582.203,1416.3092,444.92102,1.7103319,0.096252315,53.80933,444.92102,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 17:00,8960400,3597.512,408.63937,413.4396,52.359337,47243.613,1761.9789,516.6864,2.8677666,0.39300132,52.359337,516.6864,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 18:00,8964000,3597.512,585.1731,421.41772,52.327457,51742.098,2039.1769,662.06036,339.43982,3.957604,52.327457,662.06036,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 19:00,8967600,3597.512,247.8186,364.73648,1.151735,52245.71,2212.9946,709.3302,1903.5314,1.0536122,1.151735,709.3302,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 20:00,8971200,3597.512,263.69745,362.5287,1.3717566,48791.59,2201.868,618.98584,3834.108,0.46113032,1.3717566,618.98584,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 21:00,8974800,3597.512,230.65352,360.76385,0.94342923,50236.28,2018.963,663.0387,221.7455,0.26892614,0.94342923,663.0387,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 22:00,8978400,3597.512,6.2285137,358.8517,0.10372095,48371.703,1396.8433,563.6205,1.2382994,0.18553233,0.10372095,563.6205,130901.3,73179.4,-15784.6,-201976.5
+4/14/2023 23:00,8982000,3597.512,6.228482,319.89175,0.10372095,43381.137,1290.34,452.136,0.924944,0.14205132,0.10372095,452.136,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 0:00,8985600,3597.512,6.195129,293.59592,0.10372095,42079.21,1087.5226,376.85217,0.7348364,0.11649981,0.10372095,376.85217,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 1:00,8989200,3597.512,6.1942897,274.94708,0.10372095,169.07864,673.9111,17.661684,0.62981045,0.10020404,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 2:00,8992800,3597.512,6.1920466,261.28253,0.10372095,166.89587,634.3478,17.661684,0.558295,0.08918625,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 3:00,8996400,3597.512,6.4891844,251.01859,0.10372095,164.74731,603.2384,17.661684,0.5056045,0.08141089,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 4:00,9000000,3597.512,6.4859366,243.1596,0.10372095,933.1712,736.71356,46.26926,39.090332,0.07574426,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 5:00,9003600,3597.512,6.449218,237.05038,0.10372095,160.95218,683.31757,17.661684,26.76088,0.07151117,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 6:00,9007200,3597.512,6.4125915,232.24371,0.10372095,40457.98,1284.1155,347.3814,17.68585,0.06828778,0.10372095,347.3814,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 7:00,9010800,3597.512,6.410731,228.42464,0.10372095,39941.79,1750.911,393.2433,170.62184,0.065795936,0.10372095,393.2433,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 8:00,9014400,3597.512,6.376323,225.36557,0.10372095,40075.656,1687.902,395.55463,8.894159,0.06384636,0.10372095,395.55463,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 9:00,9018000,3597.512,6.375498,222.89851,0.10372095,49275.57,1550.901,600.7457,1.6274662,0.062306304,0.10372095,600.7457,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 10:00,9021600,3597.512,6.3419843,220.89711,0.10372095,48319.14,1266.7505,560.50305,0.8725204,0.061080232,0.10372095,560.50305,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 11:00,9025200,3597.512,6.3415556,219.26495,0.10372095,50095.875,1888.8414,593.3445,18.99109,0.060097896,0.10372095,593.3445,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 12:00,9028800,3597.512,6.3087606,217.92752,0.10372095,49816.64,1876.7749,596.1623,4.873242,0.059306692,0.10372095,596.1623,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 13:00,9032400,3597.512,6.275941,216.82663,0.10372095,48595.246,1752.771,555.89166,2.6520467,0.05866662,0.10372095,555.89166,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 14:00,9036000,3597.512,6.276344,215.91643,0.10372095,47194.94,1396.9824,513.47614,1.3998104,0.05814688,0.10372095,513.47614,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 15:00,9039600,3597.512,6.243476,215.16052,0.10372095,47228.766,1261.2821,513.23785,0.986817,0.057723485,0.10372095,513.23785,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 16:00,9043200,3597.512,6.243887,214.52988,0.10372095,45958.906,1219.6255,476.24286,0.9742997,0.057377584,0.10372095,476.24286,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 17:00,9046800,3597.512,6.2110353,214.00116,0.10372095,47310.04,1315.0085,513.74347,1.1404226,0.057094265,0.10372095,513.74347,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 18:00,9050400,3597.512,6.211571,213.55562,0.10372095,51227.035,1946.679,634.26636,58.739445,0.056861628,0.10372095,634.26636,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 19:00,9054000,3597.512,6.1788983,213.17802,0.10372095,51378.492,1996.1725,646.7538,191.8307,0.05667016,0.10372095,646.7538,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 20:00,9057600,3597.512,6.146051,212.8561,0.10372095,49672.34,1968.0913,600.3792,286.09448,0.056512192,0.10372095,600.3792,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 21:00,9061200,3597.512,6.3792343,212.57983,0.10372095,51180.918,1958.1887,649.1766,49.593933,0.056381557,0.10372095,649.1766,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 22:00,9064800,3597.512,9.018498,80.97513,50.506348,47268.945,1339.3071,514.005,1.2145716,0.000943211,50.506348,514.005,130901.3,73179.4,-15784.6,-201976.5
+4/15/2023 23:00,9068400,3597.512,28.19948,144.68094,50.506348,44775.297,1306.8832,481.699,0.99233896,0.008612734,50.506348,481.699,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 0:00,9072000,3597.512,41.90241,187.77382,50.506348,43467.37,1135.3972,405.53928,0.83961236,0.020790992,50.506348,405.53928,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 1:00,9075600,3597.512,109.427,410.24496,50.506348,169.62556,699.8975,17.661684,0.7412111,0.20524631,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 2:00,9079200,3597.512,197.35739,411.7392,50.506348,167.592,664.6098,17.661684,0.66979426,1.1063911,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 3:00,9082800,3597.512,255.43275,415.8091,50.506348,165.47868,635.9908,17.661684,0.6149422,3.2204542,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 4:00,9086400,3597.512,305.69897,420.59818,50.506348,2574.7148,849.83527,46.536198,337.4429,6.6039357,50.506348,46.536198,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 5:00,9090000,3597.512,304.5581,422.20068,50.506348,2726.1284,875.3147,49.475906,1027.2615,8.032462,50.506348,49.475906,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 6:00,9093600,3597.512,324.79932,423.60736,50.506348,42590.555,1547.6741,384.7225,967.70795,9.434996,50.506348,384.7225,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 7:00,9097200,3597.512,380.79126,425.77118,50.506348,41091.387,1906.6351,389.36444,355.28137,11.833392,50.506348,389.36444,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 8:00,9100800,3597.512,329.64215,422.61804,50.506348,40771.387,1372.1334,388.64636,40.809032,8.588409,50.506348,388.64636,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 9:00,9104400,3597.512,284.25473,419.22165,50.506348,40937.23,1269.1935,386.73184,27.391333,5.7694407,50.506348,386.73184,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 10:00,9108000,3597.512,188.31683,413.05292,50.506348,50010.633,1454.4563,635.6958,20.150915,1.8608294,50.506348,635.6958,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 11:00,9111600,3597.512,85.887665,404.13705,50.506348,50304.207,1403.2871,643.39844,5.334321,0.18065526,50.506348,643.39844,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 12:00,9115200,3597.512,40.355686,212.66171,50.506348,48429.71,1221.8075,487.50226,1.0689793,0.030760951,50.506348,487.50226,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 13:00,9118800,3597.512,6.2244644,60.754864,0.10372095,47328.977,1350.466,507.42355,1.0260186,0.003106718,0.10372095,507.42355,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 14:00,9122400,3597.512,6.224584,48.488262,0.10372095,44691.13,1163.172,437.07388,0.67665,0.0018855,0.10372095,437.07388,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 15:00,9126000,3597.512,6.3252516,44.968662,0.10372095,44661.68,1049.8674,478.66312,0.54184216,0.001616421,0.10372095,478.66312,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 16:00,9129600,3597.512,6.526415,43.054737,0.10372095,44648.305,968.4739,435.83292,0.48059332,0.001484792,0.10372095,435.83292,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 17:00,9133200,3597.512,6.492721,41.87605,0.10372095,47282.297,1014.8109,509.7566,0.43364272,0.001408597,0.10372095,509.7566,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 18:00,9136800,3597.512,13.390827,98.75037,50.506348,50049.293,1072.9169,589.7105,0.39657462,0.00187591,50.506348,589.7105,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 19:00,9140400,3597.512,30.3207,161.81969,50.506348,50082.484,1052.5186,587.6645,0.36657006,0.012990369,50.506348,587.6645,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 20:00,9144000,3597.512,75.84396,332.3862,50.506348,47765.72,1786.2218,499.9443,9.330477,0.10856835,50.506348,499.9443,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 21:00,9147600,3597.512,146.33466,408.16043,50.506348,50137.902,1450.7615,587.3501,1.3347901,0.45946476,50.506348,587.3501,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 22:00,9151200,3597.512,182.43019,409.5083,50.506348,47546.184,1383.2177,549.5,0.93781984,0.7732523,50.506348,549.5,130901.3,73179.4,-15784.6,-201976.5
+4/16/2023 23:00,9154800,3597.512,234.06573,411.981,50.506348,42423.715,1181.6584,411.94418,2.7376115,1.6841692,50.506348,411.94418,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 0:00,9158400,3597.512,255.22246,413.57648,50.506348,42147.17,1088.7275,369.5273,1.490017,2.557859,50.506348,369.5273,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 1:00,9162000,3597.512,264.34723,415.16757,50.506348,170.08246,700.8814,17.661684,0.8788029,3.607956,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 2:00,9165600,3597.512,251.95161,415.87125,50.506348,168.0283,673.86536,17.661684,0.67723286,4.1050363,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 3:00,9169200,3597.512,260.99374,417.19943,50.506348,165.88228,652.3215,17.661684,0.5793171,5.006054,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 4:00,9172800,3597.512,247.15479,416.98975,50.506348,1120.8555,715.8973,46.26926,60.116287,4.8954825,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 5:00,9176400,3597.512,250.7901,417.15253,50.506348,1353.4558,1350.4865,1110.4631,208.96484,5.039588,50.506348,1110.4631,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 6:00,9180000,3597.512,6873.4297,604.44415,100.72304,41406.27,1448.1035,385.82904,237.02245,2315.1584,100.72304,385.82904,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 7:00,9183600,3597.512,6312.5415,633.854,87.037506,53096.355,2087.546,741.07794,61.1225,5548.4194,87.037506,741.07794,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 8:00,9187200,3597.512,3786.0898,573.1341,53.130566,51606.453,1564.3397,635.81635,7.5091333,3365.671,53.130566,635.81635,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 9:00,9190800,3597.512,2509.6533,535.9071,53.31885,48753.184,1347.7218,541.0463,4.384109,1403.2708,53.31885,541.0463,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 10:00,9194400,3597.512,1680.2925,493.73767,53.331165,49734.36,867.94086,603.6913,0.108236484,439.8299,53.331165,603.6913,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 11:00,9198000,3597.512,1214.393,460.22745,54.136845,49019.83,1646.5042,539.303,2.2553825,106.57784,54.136845,539.303,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 12:00,9201600,3597.512,1033.1527,444.75253,55.046158,47170.58,1905.2024,502.08606,524.7625,41.787228,55.046158,502.08606,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 13:00,9205200,3597.512,801.44275,432.17947,54.674545,45351.254,1857.9048,472.43054,393.04788,16.740177,54.674545,472.43054,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 14:00,9208800,3597.512,552.86993,418.3655,52.999924,44329.285,1719.6616,438.27615,5.5222454,4.456692,52.999924,438.27615,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 15:00,9212400,3597.512,460.15518,411.67032,52.972134,44541.766,1230.2872,435.95343,1.1194177,0.9122913,52.972134,435.95343,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 16:00,9216000,3597.512,458.54852,409.88126,53.73916,44571.254,1334.0651,434.59348,1.4551691,0.35375732,53.73916,434.59348,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 17:00,9219600,3597.512,454.2221,410.74847,52.32034,47187.535,1801.6954,505.8514,21.16751,0.8577952,52.32034,505.8514,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 18:00,9223200,3597.512,843.2305,429.35736,52.297592,50777.11,2050.3687,629.31775,704.6087,16.406652,52.297592,629.31775,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 19:00,9226800,3597.512,247.77058,371.14215,1.1373357,52548.72,2021.8103,695.9629,101.8483,8.237891,1.1373357,695.9629,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 20:00,9230400,3597.512,263.46686,366.0889,1.3508188,49933.43,1510.2422,589.8426,1.529261,4.2186637,1.3508188,589.8426,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 21:00,9234000,3597.512,231.06279,363.59592,0.9340008,51444.82,1920.6608,633.38354,10.878051,2.886113,0.9340008,633.38354,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 22:00,9237600,3597.512,6.487665,361.7836,0.10372095,48601.246,1416.8804,542.8231,1.3714802,2.3219223,0.10372095,542.8231,130901.3,73179.4,-15784.6,-201976.5
+4/17/2023 23:00,9241200,3597.512,6.5216665,361.27786,0.10372095,43518.953,1336.0671,442.03134,1.1010771,2.067355,0.10372095,442.03134,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 0:00,9244800,3597.512,6.488403,361.00034,0.10372095,42056.797,1174.2466,367.2764,0.89017737,1.9441946,0.10372095,367.2764,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 1:00,9248400,3597.512,6.454137,360.8375,0.10372095,170.0336,761.10596,17.661684,0.775527,1.8821236,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 2:00,9252000,3597.512,6.4518714,360.73376,0.10372095,167.79636,714.1784,17.661684,0.6954799,1.8501222,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 3:00,9255600,3597.512,6.415464,360.661,0.10372095,165.57509,677.6155,17.661684,0.6355628,1.8334187,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 4:00,9259200,3597.512,6.412279,360.60464,0.10372095,643.9908,782.08374,46.26926,14.218472,1.8246392,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 5:00,9262800,3597.512,6.3754373,360.55707,0.10372095,161.64436,730.90283,17.661684,10.176768,1.8200023,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 6:00,9266400,3597.512,1487.036,459.3346,50.506348,39774.258,1041.3259,349.6189,6.1155934,126.735405,50.506348,349.6189,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 7:00,9270000,3597.512,2318.8708,497.49243,52.888233,52483.92,2063.674,742.3553,27.548458,518.7751,52.888233,742.3553,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 8:00,9273600,3597.512,1580.1248,480.05453,53.181797,51059.844,1612.8788,636.2595,1.708436,277.63834,53.181797,636.2595,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 9:00,9277200,3597.512,1012.9671,448.88495,53.34784,48439.496,1394.9252,545.22076,1.2804911,63.154453,53.34784,545.22076,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 10:00,9280800,3597.512,744.13837,430.22995,53.326347,47134.566,1292.265,504.13217,1.0950128,17.08407,53.326347,504.13217,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 11:00,9284400,3597.512,623.2058,420.3645,54.188026,49066.066,1810.828,530.20264,4.339156,5.5856304,54.188026,530.20264,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 12:00,9288000,3597.512,550.15564,413.38297,55.0429,46649.42,1971.5819,504.5018,1263.4159,1.0598434,55.0429,504.5018,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 13:00,9291600,3597.512,449.95148,360.16443,54.691307,44786.625,1934.8667,478.38916,1115.8984,0.13215579,54.691307,478.38916,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 14:00,9295200,3597.512,314.9245,95.71483,2.3242195,43665.938,1807.8779,442.55054,267.77975,0.008888256,2.3242195,442.55054,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 15:00,9298800,3597.512,314.20572,110.77249,2.2897446,43980.746,1719.6111,438.693,5.2077594,0.012543761,2.2897446,438.693,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 16:00,9302400,3597.512,346.59702,105.760826,3.0298727,44233.6,1630.9828,435.98102,2.6454856,1.488653,3.0298727,435.98102,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 17:00,9306000,3597.512,294.08456,176.70023,51.945454,46608.164,1911.7603,507.86206,540.2929,3.2513509,51.945454,507.86206,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 18:00,9309600,3597.512,383.8769,452.71585,52.33033,50437.83,2050.733,645.1995,555.4445,0.42949864,52.33033,645.1995,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 19:00,9313200,3597.512,246.29068,301.96918,1.1519654,51778.664,1998.0159,677.2993,85.03222,0.115120515,1.1519654,677.2993,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 20:00,9316800,3597.512,261.9049,253.06313,1.3679814,49286.09,2010.1101,592.88995,665.33594,0.0653261,1.3679814,592.88995,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 21:00,9320400,3597.512,229.60492,219.74808,0.94522667,50710.03,1945.6167,642.5677,34.84268,0.04444224,0.94522667,642.5677,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 22:00,9324000,3597.512,6.207152,191.1111,0.10372095,48258.83,1275.8585,543.6635,0.9450841,0.03255763,0.10372095,543.6635,130901.3,73179.4,-15784.6,-201976.5
+4/18/2023 23:00,9327600,3597.512,6.1743884,169.25127,0.10372095,43202.723,1074.3503,400.3464,0.7952543,0.025067786,0.10372095,400.3464,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 0:00,9331200,3597.512,6.174809,152.71951,0.10372095,41847.113,997.5951,367.45065,0.6914567,0.020024799,0.10372095,367.45065,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 1:00,9334800,3597.512,6.3075204,139.56837,0.10372095,169.63612,614.10004,17.661684,0.6169281,0.01645977,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 2:00,9338400,3597.512,6.471965,128.83173,0.10372095,167.4478,587.20306,17.661684,0.56067896,0.013842206,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 3:00,9342000,3597.512,6.436177,119.88561,0.10372095,165.26826,565.1248,17.661684,0.5164956,0.011860906,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 4:00,9345600,3597.512,6.433369,112.30693,0.10372095,438.34167,717.5298,46.26926,4.7538524,0.01032316,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 5:00,9349200,3597.512,6.3971014,105.79751,0.10372095,161.35216,670.25433,17.661684,3.538713,0.009104278,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 6:00,9352800,3597.512,1026.8456,468.476,50.506348,40006.08,1529.5925,343.06934,3.6685176,58.66042,50.506348,343.06934,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 7:00,9356400,3597.512,1518.5848,492.359,52.894917,52029.16,2164.6238,703.27875,107.64569,182.4767,52.894917,703.27875,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 8:00,9360000,3597.512,1000.581,470.3952,53.199528,50564.863,2057.5195,637.4624,11.167133,61.937836,53.199528,637.4624,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 9:00,9363600,3597.512,669.8513,447.49695,53.363068,48165.184,1925.8905,548.02905,3.8292015,11.778571,53.363068,548.02905,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 10:00,9367200,3597.512,487.3237,433.3556,53.334297,46812.766,1917.1458,505.032,5.5782733,1.4342183,53.334297,505.032,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 11:00,9370800,3597.512,412.49634,320.37277,54.022804,48015.906,1964.7551,540.32025,16.33597,0.3973965,54.022804,540.32025,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 12:00,9374400,3597.512,405.64993,171.01509,54.71058,46083.37,2192.0369,507.44092,2990.2163,2.616226,54.71058,507.44092,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 13:00,9378000,3597.512,378.41284,105.82455,3.9554763,43496.605,2399.6182,485.3044,12809.98,5.462339,3.9554763,485.3044,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 14:00,9381600,3597.512,310.0619,101.84677,2.3872702,41822.184,2243.9775,456.21307,6388.366,5.338751,2.3872702,456.21307,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 15:00,9385200,3597.512,306.42505,105.305824,2.411835,42275.39,2142.8022,454.4353,3088.0981,8.63566,2.411835,454.4353,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 16:00,9388800,3597.512,335.4835,110.057816,3.2334855,42363.945,2179.0566,452.4564,4184.3364,12.801103,3.2334855,452.4564,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 17:00,9392400,3597.512,269.56693,108.41129,1.8703755,44208.367,2472.2686,529.6745,14590.668,12.907193,1.8703755,529.6745,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 18:00,9396000,3597.512,266.7014,87.96353,1.8137081,47305.78,2758.5603,674.7164,25851.518,0.61377674,1.8137081,674.7164,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 19:00,9399600,3597.512,233.92265,83.916626,1.2562264,49267.105,2640.6394,745.681,11669.105,0.11005842,1.2562264,745.681,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 20:00,9403200,3597.512,248.76997,82.35039,1.4892802,46693.22,2464.9617,620.32166,8971.703,0.025549758,1.4892802,620.32166,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 21:00,9406800,3597.512,218.2336,81.149635,1.0299037,48887.617,2238.7388,672.3974,841.83636,0.01129439,1.0299037,672.3974,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 22:00,9410400,3597.512,5.8923383,80.16464,0.10372095,47192.383,1977.6228,560.82007,8.746461,0.008447588,0.10372095,560.82007,130901.3,73179.4,-15784.6,-201976.5
+4/19/2023 23:00,9414000,3597.512,5.8639755,79.17266,0.10372095,42484.457,1275.0331,406.9894,1.8312241,0.007132474,0.10372095,406.9894,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 0:00,9417600,3597.512,5.835907,75.3097,0.10372095,41397.008,1160.9535,373.02985,1.6272985,0.006332392,0.10372095,373.02985,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 1:00,9421200,3597.512,5.838757,72.37283,0.10372095,167.95377,751.1465,17.661684,1.5035876,0.005776268,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 2:00,9424800,3597.512,5.8087516,70.20703,0.10372095,165.91177,712.6537,17.661684,1.4232013,0.005358328,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 3:00,9428400,3597.512,6.0928545,68.42154,0.10372095,163.91434,683.4125,17.661684,1.3660016,0.005027917,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 4:00,9432000,3597.512,6.12506,66.90603,0.10372095,162.74133,899.4992,184.66959,0.920048,0.004757329,0.10372095,184.66959,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 5:00,9435600,3597.512,6.093791,65.60145,0.10372095,159.8762,1294.636,17.28928,6.347694,0.004530432,0.10372095,17.28928,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 6:00,9439200,3597.512,306.44745,445.6623,50.506348,39134.164,1642.2896,351.8538,20.169298,6.599425,50.506348,351.8538,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 7:00,9442800,3597.512,719.742,456.2083,52.930725,51250.12,2145.4575,714.5068,863.9287,16.710623,52.930725,714.5068,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 8:00,9446400,3597.512,546.77,444.0867,53.237015,49673.805,1973.5474,648.37634,114.63007,4.819213,53.237015,648.37634,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 9:00,9450000,3597.512,328.34335,358.66116,2.6880922,47319.56,1918.6415,553.1865,300.42175,0.16033812,2.6880922,553.1865,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 10:00,9453600,3597.512,327.26474,231.96355,2.6631718,45806.4,1899.101,512.98596,438.37122,0.05626271,2.6631718,512.98596,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 11:00,9457200,3597.512,360.24115,164.01944,3.4643316,46792.434,2085.6248,553.5099,2620.4773,0.024089122,3.4643316,553.5099,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 12:00,9460800,3597.512,390.952,145.546,4.3076015,44051.78,2474.9583,525.9192,26094.701,0.042132717,4.3076015,525.9192,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 13:00,9464400,3597.512,376.86914,122.16251,3.9376655,41804.746,2371.159,499.72318,19338.13,0.1415151,3.9376655,499.72318,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 14:00,9468000,3597.512,310.46805,109.39701,2.3520758,41284.152,2090.2498,462.5703,5501.738,1.1052204,2.3520758,462.5703,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 15:00,9471600,3597.512,307.44055,107.689644,2.3659756,42013.094,1945.6079,456.4499,1729.533,3.929904,2.3659756,456.4499,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 16:00,9475200,3597.512,336.69577,115.04173,3.1946304,42320.133,1941.7057,450.1027,1774.169,12.005851,3.1946304,450.1027,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 17:00,9478800,3597.512,270.8484,101.28336,1.808652,44339.844,2268.5173,526.3669,10799.469,4.086343,1.808652,526.3669,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 18:00,9482400,3597.512,268.7882,86.31652,1.7838584,47595.2,2483.1792,670.4336,15086.338,0.03744554,1.7838584,670.4336,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 19:00,9486000,3597.512,235.77074,83.853806,1.236669,49071.324,2427.2583,719.36743,9001.612,0.010359405,1.236669,719.36743,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 20:00,9489600,3597.512,250.72923,81.67357,1.4672583,46964.023,2190.8716,617.0809,3715.78,0.006995111,1.4672583,617.0809,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 21:00,9493200,3597.512,219.96155,74.01991,1.015205,48982.133,2104.8306,660.5989,1029.5342,0.005661262,1.015205,660.5989,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 22:00,9496800,3597.512,5.9472036,68.856544,0.10372095,47033.883,1846.4246,560.4752,14.175206,0.00490258,0.10372095,560.4752,130901.3,73179.4,-15784.6,-201976.5
+4/20/2023 23:00,9500400,3597.512,5.9178357,65.79504,0.10372095,42340.605,1109.4487,405.72675,0.8817346,0.004396709,0.10372095,405.72675,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 0:00,9504000,3597.512,5.920471,63.429565,0.10372095,41269.863,1010.7874,372.6253,0.7201717,0.004027893,0.10372095,372.6253,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 1:00,9507600,3597.512,5.89087,61.516884,0.10372095,166.06924,609.983,17.661684,0.61749953,0.003743244,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 2:00,9511200,3597.512,5.8916063,59.920315,0.10372095,164.0712,575.90405,17.661684,0.54656035,0.003514713,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 3:00,9514800,3597.512,6.018693,58.55595,0.10372095,162.1198,549.26196,17.661684,0.49422014,0.003325861,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 4:00,9518400,3597.512,6.177435,57.368793,0.10372095,200.62955,1062.689,148.16515,1.147087,0.003166317,0.10372095,148.16515,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 5:00,9522000,3597.512,6.1451974,56.32102,0.10372095,158.14084,1393.2758,17.374523,3.3819392,0.00302917,0.10372095,17.374523,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 6:00,9525600,3597.512,638.7555,450.6306,50.506348,39054.28,1726.8655,350.76483,14.000741,26.038702,50.506348,350.76483,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 7:00,9529200,3597.512,1078.6455,467.651,52.98877,50282.492,2099.0508,670.9123,171.54288,70.6285,52.98877,670.9123,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 8:00,9532800,3597.512,728.5943,448.41162,53.20099,49834.984,2042.979,640.3067,86.717636,19.875175,53.20099,640.3067,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 9:00,9536400,3597.512,494.24084,457.60425,53.324345,47322.49,1992.8207,551.6422,250.07526,2.101871,53.324345,551.6422,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 10:00,9540000,3597.512,327.074,282.0771,2.6454144,45937.188,1899.6359,509.02518,57.6838,1.5007733,2.6454144,509.02518,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 11:00,9543600,3597.512,357.3224,202.2158,3.5078433,47189.664,2031.5823,545.17804,586.11273,5.9849763,3.5078433,545.17804,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 12:00,9547200,3597.512,383.8114,157.96844,4.4386106,44661.234,2402.7673,516.6531,14554.211,7.9559283,4.4386106,516.6531,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 13:00,9550800,3597.512,367.4785,134.83955,4.129077,41999.758,2525.3826,491.74066,26472.244,11.883136,4.129077,491.74066,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 14:00,9554400,3597.512,301.08618,117.12331,2.5069418,40722.938,2273.4043,463.26776,10147.576,10.11179,2.5069418,463.26776,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 15:00,9558000,3597.512,297.4447,116.51475,2.5411189,41698.582,2020.022,456.15213,1644.5392,14.713048,2.5411189,456.15213,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 16:00,9561600,3597.512,325.64224,119.038956,3.395485,42332.73,1969.1997,449.40277,984.7279,19.669382,3.395485,449.40277,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 17:00,9565200,3597.512,262.2438,105.79462,1.9238265,44750.984,2193.1125,521.6071,4299.2217,8.659672,1.9238265,521.6071,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 18:00,9568800,3597.512,267.39114,121.78543,52.47233,48053.316,2463.6265,659.11694,9941.843,0.15924649,52.47233,659.11694,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 19:00,9572400,3597.512,236.42758,74.5098,1.2275453,49790.875,2432.5022,725.997,5532.644,0.022156432,1.2275453,725.997,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 20:00,9576000,3597.512,251.37108,74.08721,1.4552464,47184.71,2210.6704,607.95184,2456.0789,0.008598553,1.4552464,607.95184,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 21:00,9579600,3597.512,220.69632,70.561226,1.0088844,49094.12,2137.1501,651.83936,620.13885,0.00628346,1.0088844,651.83936,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 22:00,9583200,3597.512,5.9710326,64.04884,0.10372095,47203.633,1911.011,557.369,5.6627665,0.005212551,0.10372095,557.369,130901.3,73179.4,-15784.6,-201976.5
+4/21/2023 23:00,9586800,3597.512,5.9414577,60.6087,0.10372095,42343.137,1163.7649,402.7614,0.84118015,0.004563359,0.10372095,402.7614,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 0:00,9590400,3597.512,5.943923,58.069214,0.10372095,41160.574,1072.5238,368.56378,0.7045078,0.004114694,0.10372095,368.56378,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 1:00,9594000,3597.512,5.91398,56.071686,0.10372095,167.67899,680.1306,17.661684,0.613294,0.003779782,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 2:00,9597600,3597.512,5.914482,54.433487,0.10372095,165.70166,648.4773,17.661684,0.5482707,0.003516833,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 3:00,9601200,3597.512,6.073679,53.050007,0.10372095,163.68326,623.30975,17.661684,0.49930948,0.003302928,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 4:00,9604800,3597.512,6.200905,51.856045,0.10372095,213.32764,1040.633,273.01617,0.79158396,0.003124295,0.10372095,273.01617,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 5:00,9608400,3597.512,6.1682973,50.80833,0.10372095,159.70943,1276.5298,17.413929,2.431205,0.002972073,0.10372095,17.413929,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 6:00,9612000,3597.512,6.167556,49.876743,0.10372095,38970.84,1746.3253,349.37457,6.6669507,0.002840266,0.10372095,349.37457,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 7:00,9615600,3597.512,6.136416,49.039505,0.10372095,38960.977,1849.0674,344.70422,471.00876,0.002724642,0.10372095,344.70422,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 8:00,9619200,3597.512,6.137653,48.280365,0.10372095,38973.473,1789.4332,346.74615,141.84663,0.002622114,0.10372095,346.74615,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 9:00,9622800,3597.512,6.107344,47.586887,0.10372095,48106.99,2063.5332,593.03754,289.79388,0.002530369,0.10372095,593.03754,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 10:00,9626400,3597.512,6.0774493,46.949345,0.10372095,47068.4,1982.4109,552.9463,114.40945,0.002447633,0.10372095,552.9463,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 11:00,9630000,3597.512,6.079684,46.35999,0.10372095,48465.418,2003.9377,585.70294,84.98383,0.002372518,0.10372095,585.70294,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 12:00,9633600,3597.512,6.0501995,45.812553,0.10372095,48296.18,2104.403,584.6938,730.981,0.00230392,0.10372095,584.6938,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 13:00,9637200,3597.512,6.052321,45.301895,0.10372095,46451.742,2191.3313,550.8454,2835.309,0.002240947,0.10372095,550.8454,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 14:00,9640800,3597.512,6.0219297,44.823742,0.10372095,44871.887,2137.326,516.2643,2405.0798,0.002182872,0.10372095,516.2643,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 15:00,9644400,3597.512,6.023172,44.374516,0.10372095,44967.5,2106.873,517.0408,1787.63,0.002129092,0.10372095,517.0408,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 16:00,9648000,3597.512,5.9924245,43.951183,0.10372095,43571.855,2122.1924,478.22177,2989.23,0.002079103,0.10372095,478.22177,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 17:00,9651600,3597.512,5.9614935,43.55115,0.10372095,44696.19,2157.8782,519.76764,2856.8425,0.002032482,0.10372095,519.76764,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 18:00,9655200,3597.512,5.9623933,43.1722,0.10372095,48210.164,2498.876,650.419,11391.83,0.001988869,0.10372095,650.419,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 19:00,9658800,3597.512,5.9309444,42.812386,0.10372095,47654.3,2520.0662,660.66925,12045.12,0.001947954,0.10372095,660.66925,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 20:00,9662400,3597.512,5.9311337,42.470036,0.10372095,46777.54,2239.6357,609.9205,2682.6199,0.001909472,0.10372095,609.9205,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 21:00,9666000,3597.512,5.9636736,42.143665,0.10372095,48946.465,2168.2156,649.0151,790.5684,0.001873193,0.10372095,649.0151,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 22:00,9669600,3597.512,6.2207127,41.831974,0.10372095,45660.477,1893.6743,514.7188,12.548488,0.001838916,0.10372095,514.7188,130901.3,73179.4,-15784.6,-201976.5
+4/22/2023 23:00,9673200,3597.512,6.190654,41.533813,0.10372095,43488.973,1241.7745,433.8191,0.92310333,0.001806464,0.10372095,433.8191,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 0:00,9676800,3597.512,6.192937,41.248154,0.10372095,42402.23,1140.0801,398.90277,0.75631505,0.001775681,0.10372095,398.90277,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 1:00,9680400,3597.512,6.1626754,40.97408,0.10372095,167.70566,712.5028,17.661684,0.6511803,0.001746432,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 2:00,9684000,3597.512,6.1629224,40.71077,0.10372095,165.74408,678.1483,17.661684,0.5787248,0.001718593,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 3:00,9687600,3597.512,6.1305127,40.457478,0.10372095,163.70734,651.31946,17.661684,0.5252801,0.001692055,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 4:00,9691200,3597.512,6.1299663,40.213547,0.10372095,246.95152,1072.9816,221.23428,1.1709244,0.001666722,0.10372095,221.23428,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 5:00,9694800,3597.512,6.096974,39.97836,0.10372095,275.46814,1459.4266,45.614708,6.7276235,0.001642506,0.10372095,45.614708,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 6:00,9698400,3597.512,6.064048,39.751373,0.10372095,38873.3,1831.0782,388.31708,61.35335,0.001619327,0.10372095,388.31708,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 7:00,9702000,3597.512,6.0645504,39.53208,0.10372095,39116.41,1723.5577,344.03156,3.5120802,0.001597115,0.10372095,344.03156,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 8:00,9705600,3597.512,6.0337057,39.32003,0.10372095,39356.336,1549.7158,340.99026,2.4420261,0.001575804,0.10372095,340.99026,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 9:00,9709200,3597.512,6.0354576,39.1148,0.10372095,39615.32,1789.3577,379.34335,3.3329685,0.001555337,0.10372095,379.34335,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 10:00,9712800,3597.512,6.0054674,38.916,0.10372095,48623.96,1990.5906,581.59863,6.163514,0.001535659,0.10372095,581.59863,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 11:00,9716400,3597.512,6.0077033,38.723278,0.10372095,48552.496,2053.8767,580.8526,178.44937,0.001516721,0.10372095,580.8526,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 12:00,9720000,3597.512,5.977793,38.536312,0.10372095,45296.508,2165.0256,505.4602,2557.496,0.001498479,0.10372095,505.4602,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 13:00,9723600,3597.512,5.947103,38.354794,0.10372095,44481.797,2300.6748,516.18646,7377.0938,0.001480892,0.10372095,516.18646,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 14:00,9727200,3597.512,5.94769,38.178448,0.10372095,41728.195,2106.0637,446.0604,3392.574,0.001463922,0.10372095,446.0604,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 15:00,9730800,3597.512,5.916039,38.007015,0.10372095,42124.266,2012.2235,444.44196,1570.1134,0.001447534,0.10372095,444.44196,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 16:00,9734400,3597.512,6.2050805,37.840252,0.10372095,42391.332,1958.8438,442.61798,926.6659,0.001431695,0.10372095,442.61798,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 17:00,9738000,3597.512,6.238065,37.677933,0.10372095,45067.965,1997.99,511.64084,663.72986,0.001416377,0.10372095,511.64084,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 18:00,9741600,3597.512,6.207263,37.519855,0.10372095,47908.766,2064.261,592.1612,575.9697,0.001401552,0.10372095,592.1612,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 19:00,9745200,3597.512,6.2087617,37.365818,0.10372095,47831.832,2139.0754,591.02094,1618.2087,0.001387194,0.10372095,591.02094,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 20:00,9748800,3597.512,6.178023,37.215645,0.10372095,45028.75,2020.2004,511.1869,1068.6622,0.001373279,0.10372095,511.1869,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 21:00,9752400,3597.512,6.14726,37.069157,0.10372095,48195.34,1945.5933,591.18744,28.615213,0.001359786,0.10372095,591.18744,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 22:00,9756000,3597.512,6.1491413,36.9262,0.10372095,46043.92,1308.8142,501.61404,1.013796,0.001346694,0.10372095,501.61404,130901.3,73179.4,-15784.6,-201976.5
+4/23/2023 23:00,9759600,3597.512,6.1192045,36.78663,0.10372095,41134.59,1031.9824,365.56705,0.6655779,0.001333983,0.10372095,365.56705,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 0:00,9763200,3597.512,6.121389,36.65029,0.10372095,41099.895,989.60986,362.98172,0.5835056,0.001321637,0.10372095,362.98172,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 1:00,9766800,3597.512,6.090833,36.517063,0.10372095,168.12776,612.251,17.661684,0.5217583,0.001309637,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 2:00,9770400,3597.512,6.058799,36.386818,0.10372095,166.05132,586.0094,17.661684,0.47402987,0.001297968,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 3:00,9774000,3597.512,6.058231,36.259434,0.10372095,163.96912,564.11725,17.661684,0.43607724,0.001286616,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 4:00,9777600,3597.512,6.025279,36.134804,0.10372095,262.3811,661.49146,46.26926,0.7946358,0.001275566,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 5:00,9781200,3597.512,6.024235,36.026657,0.10372095,264.46152,1410.802,44.32798,3.4584785,0.001265263,0.10372095,44.32798,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 6:00,9784800,3597.512,1092.6909,456.6831,50.506348,38875.35,1821.9556,385.22308,50.84055,82.69348,50.506348,385.22308,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 7:00,9788400,3597.512,1724.5842,485.50604,52.899734,50259.49,2004.2017,663.60657,38.15247,278.19913,52.899734,663.60657,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 8:00,9792000,3597.512,1089.8306,501.36142,53.098682,49833.164,1932.0249,627.57263,6.1386137,94.77055,53.098682,627.57263,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 9:00,9795600,3597.512,723.1571,481.80246,53.07397,47210.133,1856.8828,535.2754,45.606384,19.884388,53.07397,535.2754,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 10:00,9799200,3597.512,526.8002,474.78442,52.84825,45956.055,1807.6611,498.9493,29.583426,8.436089,52.84825,498.9493,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 11:00,9802800,3597.512,439.23004,473.48718,53.515316,47234.535,1853.9956,535.5165,62.158035,10.099958,53.515316,535.5165,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 12:00,9806400,3597.512,422.6661,298.34695,54.33626,45332.113,2038.784,500.32147,2579.541,13.682289,54.33626,500.32147,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 13:00,9810000,3597.512,371.53265,144.05276,4.0402517,43357.97,2053.7676,473.08197,3711.0737,17.358175,4.0402517,473.08197,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 14:00,9813600,3597.512,303.0594,119.28166,2.4505029,42452.19,1829.0587,441.7228,400.98697,12.516923,2.4505029,441.7228,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 15:00,9817200,3597.512,299.05765,111.193634,2.4442258,42898.996,1754.0676,432.48337,84.43158,9.7319565,2.4442258,432.48337,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 16:00,9820800,3597.512,327.52,115.294685,3.2801495,43175.215,1760.2059,431.86096,106.75542,15.390444,3.2801495,431.86096,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 17:00,9824400,3597.512,280.92313,176.81468,51.504185,45683.555,1820.7544,500.16147,83.23008,13.64422,51.504185,500.16147,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 18:00,9828000,3597.512,288.75885,181.48079,52.331383,49055.56,2186.04,623.9257,3247.147,0.5407584,52.331383,623.9257,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 19:00,9831600,3597.512,241.89159,94.82359,1.1635526,50420.555,2105.5332,688.4401,662.45935,0.08617523,1.1635526,688.4401,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 20:00,9835200,3597.512,257.1806,87.056564,1.3812077,47956.707,2014.5757,583.1224,814.81134,0.018732185,1.3812077,583.1224,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 21:00,9838800,3597.512,226.18102,84.4266,0.9628714,49647.703,1940.7698,631.7022,49.70938,0.009922982,0.9628714,631.7022,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 22:00,9842400,3597.512,6.3763404,82.69321,0.10372095,47328.11,1296.2246,533.8894,1.0283363,0.007683581,0.10372095,533.8894,130901.3,73179.4,-15784.6,-201976.5
+4/24/2023 23:00,9846000,3597.512,6.3773074,77.90421,0.10372095,42377.55,1011.2338,392.12927,0.6664679,0.006552241,0.10372095,392.12927,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 0:00,9849600,3597.512,6.3454924,73.83553,0.10372095,41177.453,944.4084,361.8057,0.58758664,0.00583784,0.10372095,361.8057,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 1:00,9853200,3597.512,6.3129883,71.01354,0.10372095,165.09094,570.45197,17.661684,0.52704334,0.005332065,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 2:00,9856800,3597.512,6.311758,68.780304,0.10372095,162.9905,545.87256,17.661684,0.47972494,0.004948243,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 3:00,9860400,3597.512,6.2771025,66.94308,0.10372095,160.89398,525.27765,17.661684,0.44183758,0.004643171,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 4:00,9864000,3597.512,6.274944,65.38869,0.10372095,201.55461,663.95197,46.26926,0.47582272,0.004392578,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 5:00,9867600,3597.512,6.239852,64.0456,0.10372095,157.23375,1510.2708,1067.5386,0.20784456,0.004181624,0.10372095,1067.5386,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 6:00,9871200,3597.512,535.4435,453.25732,50.506348,38941.48,1712.2372,341.63052,3.1787033,17.763948,50.506348,341.63052,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 7:00,9874800,3597.512,1085.8962,473.09805,52.893204,50211.535,2079.5898,660.13153,172.40701,64.15515,52.893204,660.13153,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 8:00,9878400,3597.512,831.81616,461.13846,53.13754,49694.09,1972.3002,627.02466,5.770912,30.857843,53.13754,627.02466,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 9:00,9882000,3597.512,606.87524,444.55807,53.343773,47200,1496.3085,531.56775,1.4940128,7.3556848,53.343773,531.56775,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 10:00,9885600,3597.512,487.5345,434.88162,53.301003,46109.297,1491.7114,494.77737,1.6298409,1.4816326,53.301003,494.77737,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 11:00,9889200,3597.512,423.5219,360.3611,54.097435,47259.125,1896.7834,527.9046,96.80418,0.11483865,54.097435,527.9046,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 12:00,9892800,3597.512,428.02548,256.14856,54.975174,45453.64,2042.3925,497.59778,1931.3928,0.042277236,54.975174,497.59778,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 13:00,9896400,3597.512,374.76093,110.99392,3.8359742,43577.605,2023.1995,467.50015,2226.288,0.009585332,3.8359742,467.50015,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 14:00,9900000,3597.512,310.1622,83.6686,2.2857156,42519.387,1842.8732,434.13333,331.7592,0.005354374,2.2857156,434.13333,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 15:00,9903600,3597.512,308.91177,71.28767,2.2616932,43108.426,1738.8856,430.08636,3.9907985,0.003988659,2.2616932,430.08636,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 16:00,9907200,3597.512,341.0056,66.47872,2.967931,43341.844,1565.1432,424.7304,2.290787,0.003499853,2.967931,424.7304,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 17:00,9910800,3597.512,303.13187,215.42346,52.138863,45992.355,1821.3486,493.02298,32.3508,0.5401936,52.138863,493.02298,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 18:00,9914400,3597.512,398.7277,451.29947,52.294952,49688.125,2072.412,619.97406,775.7418,0.42845914,52.294952,619.97406,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 19:00,9918000,3597.512,244.22897,322.0832,1.1442376,51434.95,2124.219,692.341,587.4194,0.11660678,1.1442376,692.341,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 20:00,9921600,3597.512,259.3351,274.53152,1.353866,48369.82,1907.7247,575.6942,53.669678,0.07709108,1.353866,575.6942,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 21:00,9925200,3597.512,228.12793,240.58798,0.944337,49973.32,1919.8112,612.9131,10.043939,0.05519429,0.944337,612.9131,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 22:00,9928800,3597.512,6.4126544,212.48944,0.10372095,47539.438,1384.1097,529.33185,1.2480046,0.042014923,0.10372095,529.33185,130901.3,73179.4,-15784.6,-201976.5
+4/25/2023 23:00,9932400,3597.512,6.446317,191.56703,0.10372095,42447.08,1161.8773,387.79074,1.0116643,0.033451304,0.10372095,387.79074,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 0:00,9936000,3597.512,6.4136157,175.56502,0.10372095,41138.668,1077.3707,356.8933,0.87015873,0.027548894,0.10372095,356.8933,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 1:00,9939600,3597.512,6.3801756,162.75412,0.10372095,168.84247,698.73505,17.661684,0.7738654,0.02329062,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 2:00,9943200,3597.512,6.3783364,152.25558,0.10372095,166.70403,667.9682,17.661684,0.7031482,0.020105118,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 3:00,9946800,3597.512,6.3427253,143.48747,0.10372095,164.54501,642.9684,17.661684,0.64841866,0.017651137,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 4:00,9950400,3597.512,6.3399553,136.04889,0.10372095,354.87878,772.9506,46.26926,2.4728074,0.015714293,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 5:00,9954000,3597.512,6.303866,129.65436,0.10372095,160.66377,724.9603,17.661684,1.8622441,0.014154134,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 6:00,9957600,3597.512,943.2118,468.18185,50.506348,39516.23,1339.3331,330.74884,1.9662603,49.572235,50.506348,330.74884,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 7:00,9961200,3597.512,1431.06,491.55966,52.940712,50329.3,2116.2285,654.60596,120.12081,157.07277,52.940712,654.60596,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 8:00,9964800,3597.512,918.42773,468.97852,53.123653,49744.3,2041.8822,622.2559,13.678535,48.891052,53.123653,622.2559,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 9:00,9968400,3597.512,595.3025,464.28574,53.258015,47134.625,1934.5686,527.28204,3.9879818,7.1814203,53.258015,527.28204,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 10:00,9972000,3597.512,419.0642,451.41507,53.24231,46030.98,1901.2959,491.5321,5.6658344,0.35094514,53.24231,491.5321,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 11:00,9975600,3597.512,359.9592,161.29118,3.312555,47099.453,1992.7051,525.81757,144.02441,0.3079403,3.312555,525.81757,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 12:00,9979200,3597.512,388.50137,129.4593,4.1657095,44972.625,2239.4048,495.63278,4873.6904,2.64783,4.1657095,495.63278,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 13:00,9982800,3597.512,372.42703,114.16076,3.8584483,42540.035,2391.7612,471.73602,13394.204,5.7782884,3.8584483,471.73602,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 14:00,9986400,3597.512,305.85443,105.38104,2.338462,40928.48,2264.177,442.59293,8040.1143,5.3650618,2.338462,442.59293,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 15:00,9990000,3597.512,302.212,110.19426,2.3733656,41606.867,2050.3625,441.8866,1484.2732,11.361855,2.3733656,441.8866,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 16:00,9993600,3597.512,330.7512,101.35227,3.116721,42087.53,2005.8212,435.2554,937.91144,4.8630686,3.116721,435.2554,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 17:00,9997200,3597.512,271.34882,116.76219,52.418762,44828.367,2055.7173,505.87494,704.1399,0.058004566,52.418762,505.87494,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 18:00,10004036,3597.512,252.52223,169.23712,51.80451,49493.266,2432.0366,693.2436,4707.5386,0.011765155,51.80451,693.2436,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 19:00,10004936,3597.512,240.65437,104.16183,1.1901124,49438.75,2399.9192,687.1587,3877.9897,0.009270954,1.1901124,687.1587,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 20:00,10009436.33,3597.512,162.5415483,91.63603167,0.827981917,47052.04833,2008.4856,590.8951867,2585.671057,0.007627883,0.827981917,590.8951867,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 21:00,10013936.67,3597.512,84.42872667,79.11023333,0.465851433,44665.34667,1617.052,494.6316733,1293.352414,0.005984811,0.465851433,494.6316733,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 22:00,10018437,3597.512,6.315905,66.584435,0.10372095,42278.645,1225.6184,398.36816,1.0337708,0.00434174,0.10372095,398.36816,130901.3,73179.4,-15784.6,-201976.5
+4/26/2023 23:00,10021426.4,3597.512,6.29660894,64.9753186,0.10372095,33855.66721,1115.030548,322.2268648,0.95766424,0.004132192,0.10372095,322.2268648,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 0:00,10024415.8,3597.512,6.27731288,63.3662022,0.10372095,25432.68941,1004.442696,246.0855696,0.88155768,0.003922645,0.10372095,246.0855696,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 1:00,10027405.2,3597.512,6.25801682,61.7570858,0.10372095,17009.71162,893.854844,169.9442744,0.80545112,0.003713097,0.10372095,169.9442744,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 2:00,10030394.6,3597.512,6.23872076,60.1479694,0.10372095,8586.733824,783.266992,93.8029792,0.72934456,0.00350355,0.10372095,93.8029792,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 3:00,10033384,3597.512,6.2194247,58.538853,0.10372095,163.75603,672.67914,17.661684,0.653238,0.003294002,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 4:00,10039197,3597.512,6.192783,56.703163,0.10372095,202.8158,1107.8577,40.154984,1.6539283,0.003062998,0.10372095,40.154984,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 5:00,10041116,3597.512,44.13012,162.8821,50.506348,3251.8564,1352.2151,17.398462,2.8435323,0.010820724,50.506348,17.398462,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 6:00,10045331.5,3597.512,128.3468275,208.7304825,51.2041185,13830.6498,1485.3398,136.0059215,11.81181973,0.035007594,51.2041185,136.0059215,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 7:00,10049547,3597.512,212.563535,254.578865,51.901889,24409.4432,1618.4645,254.613381,20.78010715,0.059194464,51.901889,254.613381,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 8:00,10053762.5,3597.512,296.7802425,300.4272475,52.5996595,34988.2366,1751.5892,373.2208405,29.74839458,0.083381334,52.5996595,373.2208405,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 9:00,10057978,3597.512,380.99695,346.27563,53.29743,45567.03,1884.7139,491.8283,38.716682,0.107568204,53.29743,491.8283,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 10:00,10058878,3597.512,326.05594,261.1933,2.5952036,45614.508,1887.0098,492.66968,43.098995,0.08017838,2.5952036,492.66968,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 11:00,10062521.33,3597.512,327.2389167,227.3532,2.625927967,45143.40383,1889.270783,482.3997867,103.8762992,0.067247446,2.625927967,482.3997867,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 12:00,10066164.67,3597.512,328.4218933,193.5131,2.656652333,44672.29967,1891.531767,472.1298933,164.6536033,0.054316512,2.656652333,472.1298933,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 13:00,10069808,3597.512,329.60487,159.673,2.6873767,44201.1955,1893.79275,461.86,225.4309075,0.041385578,2.6873767,461.86,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 14:00,10073451.33,3597.512,330.7878467,125.8329,2.718101067,43730.09133,1896.053733,451.5901067,286.2082117,0.028454644,2.718101067,451.5901067,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 15:00,10077094.67,3597.512,331.9708233,91.9928,2.748825433,43258.98717,1898.314717,441.3202133,346.9855158,0.01552371,2.748825433,441.3202133,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 16:00,10080738,3597.512,333.1538,58.1527,2.7795498,42787.883,1900.5757,431.05032,407.76282,0.002592776,2.7795498,431.05032,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 17:00,10085676.5,3597.512,311.20915,169.468915,27.2855824,46101.9815,2046.04165,554.99496,607.03183,0.032334119,27.2855824,554.99496,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 18:00,10090615,3597.512,289.2645,280.78513,51.791615,49416.08,2191.5076,678.9396,806.30084,0.062075462,51.791615,678.9396,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 19:00,10091515,3597.512,241.16597,215.3273,1.1964333,49502.797,2119.8264,665.1767,316.1428,0.053108223,1.1964333,665.1767,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 20:00,10095757.5,3597.512,560.215555,337.267075,27.14313465,49424.8675,2117.1427,654.24927,336.22605,21.67639161,27.14313465,654.24927,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 21:00,10100000,3597.512,879.26514,459.20685,53.089836,49346.938,2114.459,643.32184,356.3093,43.299675,53.089836,643.32184,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 22:00,10104286,3597.512,6.3159294,119.65705,0.10372095,42915.805,1167.5653,411.21695,0.8103415,0.013618526,0.10372095,411.21695,130901.3,73179.4,-15784.6,-201976.5
+4/27/2023 23:00,10107415.2,3597.512,6.29754072,111.250218,0.10372095,34365.408,1059.98232,332.5058968,0.747623552,0.011894935,0.10372095,332.5058968,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 0:00,10110544.4,3597.512,6.27915204,102.843386,0.10372095,25815.011,952.39934,253.7948436,0.684905604,0.010171344,0.10372095,253.7948436,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 1:00,10113673.6,3597.512,6.26076336,94.436554,0.10372095,17264.614,844.81636,175.0837904,0.622187656,0.008447752,0.10372095,175.0837904,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 2:00,10116802.8,3597.512,6.24237468,86.029722,0.10372095,8714.217,737.23338,96.3727372,0.559469708,0.006724161,0.10372095,96.3727372,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 3:00,10119932,3597.512,6.223986,77.62289,0.10372095,163.82,629.6504,17.661684,0.49675176,0.00500057,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 4:00,10126468,3597.512,6.1892047,67.84229,0.10372095,169.24355,1163.1202,43.127777,2.2142491,0.003721919,0.10372095,43.127777,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 5:00,10126877,3597.512,6.1881905,67.67534,0.10372095,199.475,1180.8267,16.747896,2.4287212,0.0037027,0.10372095,16.747896,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 6:00,10130880.86,3597.512,59.69621329,73.82240514,7.9075351,6375.422857,1295.503843,81.63527229,250.019761,0.003533887,7.9075351,81.63527229,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 7:00,10134884.71,3597.512,113.2042361,79.96947029,15.71134925,12551.37071,1410.180986,146.5226486,497.6108009,0.003365074,15.71134925,146.5226486,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 8:00,10138888.57,3597.512,166.7122589,86.11653543,23.5151634,18727.31857,1524.858129,211.4100249,745.2018407,0.003196261,23.5151634,211.4100249,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 9:00,10142892.43,3597.512,220.2202816,92.26360057,31.31897755,24903.26643,1639.535271,276.2974011,992.7928805,0.003027449,31.31897755,276.2974011,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 10:00,10146896.29,3597.512,273.7283044,98.41066571,39.1227917,31079.21429,1754.212414,341.1847774,1240.38392,0.002858636,39.1227917,341.1847774,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 11:00,10150900.14,3597.512,327.2363272,104.5577309,46.92660585,37255.16214,1868.889557,406.0721537,1487.97496,0.002689823,46.92660585,406.0721537,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 12:00,10154904,3597.512,380.74435,110.704796,54.73042,43431.11,1983.5667,470.95953,1735.566,0.00252101,54.73042,470.95953,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 13:00,10155804,3597.512,368.84216,55.753235,3.7717016,43168.387,1945.8854,461.80255,1264.4392,0.002193284,3.7717016,461.80255,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 14:00,10159415.33,3597.512,358.10424,53.56906267,3.493891067,43078.65,1878.478567,447.7444867,856.51153,0.00205898,3.493891067,447.7444867,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 15:00,10163026.67,3597.512,347.36632,51.38489033,3.216080533,42988.913,1811.071733,433.6864233,448.58386,0.001924675,3.216080533,433.6864233,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 16:00,10166638,3597.512,336.6284,49.200718,2.93827,42899.176,1743.6649,419.62836,40.65619,0.001790371,2.93827,419.62836,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 17:00,10171855,3597.512,354.87542,232.202194,27.356031,46387.0195,2036.38095,554.42673,2571.922595,0.321313601,27.356031,554.42673,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 18:00,10177072,3597.512,373.12244,415.20367,51.773792,49874.863,2329.097,689.2251,5103.189,0.64083683,51.773792,689.2251,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 19:00,10177972,3597.512,242.70656,364.17044,1.184897,49477.81,2305.0076,676.49054,4709.528,0.5504243,1.184897,676.49054,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 20:00,10181953.67,3597.512,163.9199399,339.2353267,0.824504983,47689.73667,1910.313333,597.8580267,3139.94081,0.404148383,0.824504983,597.8580267,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 21:00,10185935.33,3597.512,85.1333198,314.3002133,0.464112967,45901.66333,1515.619067,519.2255133,1570.353621,0.257872467,0.464112967,519.2255133,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 22:00,10189917,3597.512,6.3466997,289.3651,0.10372095,44113.59,1120.9248,440.593,0.766431,0.11159655,0.10372095,440.593,130901.3,73179.4,-15784.6,-201976.5
+4/28/2023 23:00,10193278,3597.512,135.6208231,247.0619233,18.27263597,44635.51833,1426.4775,465.8348333,632.960454,0.07808253,18.27263597,465.8348333,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 0:00,10196639,3597.512,264.8949466,204.7587467,36.44155098,45157.44667,1732.0302,491.0766667,1265.154477,0.044568511,36.44155098,491.0766667,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 1:00,10200000,3597.512,394.16907,162.45557,54.610466,45679.375,2037.5829,516.3185,1897.3485,0.011054491,54.610466,516.3185,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 2:00,10203062,3597.512,200.2157498,185.497515,27.35709348,22921.73093,1295.55927,266.990092,948.9040438,0.031901991,27.35709348,266.990092,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 3:00,10206124,3597.512,6.2624297,208.53946,0.10372095,164.08685,553.53564,17.661684,0.45958757,0.05274949,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 4:00,10211686,3597.512,6.239164,196.66016,0.10372095,269.5338,521.36676,40.154984,0.86426175,0.046183147,0.10372095,40.154984,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 5:00,10213471,3597.512,6.225493,193.61545,0.10372095,704.28326,510.44757,17.661684,0.3986904,0.044582352,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 6:00,10217255.53,3597.512,6.226018782,191.7223565,0.10372095,3212.834598,559.4709953,41.13829494,0.444069329,0.043719861,0.10372095,41.13829494,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 7:00,10221040.06,3597.512,6.226544565,189.8292629,0.10372095,5721.385935,608.4944206,64.61490588,0.489448259,0.042857369,0.10372095,64.61490588,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 8:00,10224824.59,3597.512,6.227070347,187.9361694,0.10372095,8229.937273,657.5178459,88.09151682,0.534827188,0.041994878,0.10372095,88.09151682,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 9:00,10228609.12,3597.512,6.227596129,186.0430759,0.10372095,10738.48861,706.5412712,111.5681278,0.580206118,0.041132387,0.10372095,111.5681278,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 10:00,10232393.65,3597.512,6.228121912,184.1499824,0.10372095,13247.03995,755.5646965,135.0447387,0.625585047,0.040269895,0.10372095,135.0447387,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 11:00,10236178.18,3597.512,6.228647694,182.2568888,0.10372095,15755.59129,804.5881218,158.5213496,0.670963976,0.039407404,0.10372095,158.5213496,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 12:00,10239962.71,3597.512,6.229173476,180.3637953,0.10372095,18264.14262,853.6115471,181.9979606,0.716342906,0.038544913,0.10372095,181.9979606,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 13:00,10243747.24,3597.512,6.229699259,178.4707018,0.10372095,20772.69396,902.6349724,205.4745715,0.761721835,0.037682421,0.10372095,205.4745715,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 14:00,10247531.76,3597.512,6.230225041,176.5776082,0.10372095,23281.2453,951.6583976,228.9511825,0.807100765,0.03681993,0.10372095,228.9511825,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 15:00,10251316.29,3597.512,6.230750824,174.6845147,0.10372095,25789.79664,1000.681823,252.4277934,0.852479694,0.035957438,0.10372095,252.4277934,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 16:00,10255100.82,3597.512,6.231276606,172.7914212,0.10372095,28298.34797,1049.705248,275.9044044,0.897858624,0.035094947,0.10372095,275.9044044,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 17:00,10258885.35,3597.512,6.231802388,170.8983276,0.10372095,30806.89931,1098.728674,299.3810153,0.943237553,0.034232456,0.10372095,299.3810153,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 18:00,10262669.88,3597.512,6.232328171,169.0052341,0.10372095,33315.45065,1147.752099,322.8576262,0.988616482,0.033369964,0.10372095,322.8576262,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 19:00,10266454.41,3597.512,6.232853953,167.1121406,0.10372095,35824.00199,1196.775524,346.3342372,1.033995412,0.032507473,0.10372095,346.3342372,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 20:00,10270238.94,3597.512,6.233379735,165.2190471,0.10372095,38332.55332,1245.798949,369.8108481,1.079374341,0.031644982,0.10372095,369.8108481,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 21:00,10274023.47,3597.512,6.233905518,163.3259535,0.10372095,40841.10466,1294.822375,393.2874591,1.124753271,0.03078249,0.10372095,393.2874591,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 22:00,10277808,3597.512,6.2344313,161.43286,0.10372095,43349.656,1343.8458,416.76407,1.1701322,0.029919999,0.10372095,416.76407,130901.3,73179.4,-15784.6,-201976.5
+4/29/2023 23:00,10280921.6,3597.512,6.22104604,161.167522,0.10372095,34712.51028,1220.781828,336.9435928,1.06059954,0.029831493,0.10372095,336.9435928,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 0:00,10284035.2,3597.512,6.20766078,160.902184,0.10372095,26075.36456,1097.717856,257.1231156,0.95106688,0.029742987,0.10372095,257.1231156,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 1:00,10287148.8,3597.512,6.19427552,160.636846,0.10372095,17438.21884,974.653884,177.3026384,0.84153422,0.02965448,0.10372095,177.3026384,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 2:00,10290262.4,3597.512,6.18089026,160.371508,0.10372095,8801.07312,851.589912,97.4821612,0.73200156,0.029565974,0.10372095,97.4821612,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 3:00,10293376,3597.512,6.167505,160.10617,0.10372095,163.9274,728.52594,17.661684,0.6224689,0.029477468,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 4:00,10298491,3597.512,6.144298,159.7864,0.10372095,164.88869,794.0733,40.154984,0.9890395,0.029380132,0.10372095,40.154984,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 5:00,10300000,3597.512,6.082423,166.4935,0.10372095,45265.188,1786.2128,477.43204,2.6321518,0.03187086,0.10372095,477.43204,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 6:00,10305009.5,3597.512,6.07316815,162.84815,0.10372095,42084.686,1419.1084,402.29632,1.776703935,0.030543561,0.10372095,402.29632,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 7:00,10310019,3597.512,6.0639133,159.2028,0.10372095,38904.184,1052.004,327.1606,0.92125607,0.029216262,0.10372095,327.1606,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 8:00,10310495,3597.512,6.0629177,159.18198,0.10372095,38938.92,1040.1793,327.01138,0.88998777,0.0292108,0.10372095,327.01138,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 9:00,10317505,3597.512,6.0949264,158.89877,0.10372095,48282.594,1827.1211,599.24756,3.3439033,0.02913966,0.10372095,599.24756,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 10:00,10318405,3597.512,6.137934,158.86528,0.10372095,48220.47,1810.095,555.2878,3.281895,0.02913165,0.10372095,555.2878,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 11:00,10322182,3597.512,6.138445108,158.76475,0.10372095,47624.95333,1755.795942,538.8331083,3.086870538,0.029112893,0.10372095,538.8331083,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 12:00,10325959,3597.512,6.138956217,158.66422,0.10372095,47029.43667,1701.496883,522.3784167,2.891846077,0.029094136,0.10372095,522.3784167,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 13:00,10329736,3597.512,6.139467325,158.56369,0.10372095,46433.92,1647.197825,505.923725,2.696821615,0.029075378,0.10372095,505.923725,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 14:00,10333513,3597.512,6.139978433,158.46316,0.10372095,45838.40333,1592.898767,489.4690333,2.501797153,0.029056621,0.10372095,489.4690333,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 15:00,10337290,3597.512,6.140489542,158.36263,0.10372095,45242.88667,1538.599708,473.0143417,2.306772692,0.029037864,0.10372095,473.0143417,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 16:00,10341067,3597.512,6.14100065,158.2621,0.10372095,44647.37,1484.30065,456.55965,2.11174823,0.029019107,0.10372095,456.55965,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 17:00,10344844,3597.512,6.141511758,158.16157,0.10372095,44051.85333,1430.001592,440.1049583,1.916723768,0.029000349,0.10372095,440.1049583,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 18:00,10348621,3597.512,6.142022867,158.06104,0.10372095,43456.33667,1375.702533,423.6502667,1.721699307,0.028981592,0.10372095,423.6502667,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 19:00,10352398,3597.512,6.142533975,157.96051,0.10372095,42860.82,1321.403475,407.195575,1.526674845,0.028962835,0.10372095,407.195575,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 20:00,10356175,3597.512,6.143045083,157.85998,0.10372095,42265.30333,1267.104417,390.7408833,1.331650383,0.028944078,0.10372095,390.7408833,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 21:00,10359952,3597.512,6.143556192,157.75945,0.10372095,41669.78667,1212.805358,374.2861917,1.136625922,0.02892532,0.10372095,374.2861917,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 22:00,10363729,3597.512,6.1440673,157.65892,0.10372095,41074.27,1158.5063,357.8315,0.94160146,0.028906563,0.10372095,357.8315,130901.3,73179.4,-15784.6,-201976.5
+4/30/2023 23:00,10366776,3597.512,6.13015852,157.600096,0.10372095,32892.30058,1061.11129,289.7975368,0.878195278,0.028898954,0.10372095,289.7975368,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 0:00,10369823,3597.512,6.11624974,157.541272,0.10372095,24710.33116,963.71628,221.7635736,0.814789096,0.028891345,0.10372095,221.7635736,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 1:00,10372870,3597.512,6.10234096,157.482448,0.10372095,16528.36175,866.32127,153.7296104,0.751382914,0.028883737,0.10372095,153.7296104,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 2:00,10375917,3597.512,6.08843218,157.423624,0.10372095,8346.392328,768.92626,85.6956472,0.687976732,0.028876128,0.10372095,85.6956472,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 3:00,10378964,3597.512,6.0745234,157.3648,0.10372095,164.42291,671.53125,17.661684,0.62457055,0.028868519,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 4:00,10382721,3597.512,6.04622,157.29659,0.10372095,224.78087,681.3349,46.26926,0.55993927,0.02886032,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 5:00,10386048,3597.512,6.3331704,157.57227,0.10372095,231.77036,1163.9432,50.07406,1.8634841,0.028993785,0.10372095,50.07406,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 6:00,10390122,3597.512,1689.5288,473.11447,50.506348,40952.94,1738.2854,390.12796,22.257671,222.06827,50.506348,390.12796,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 7:00,10393549,3597.512,1388.42775,465.775525,51.814669,44971.325,1825.9052,490.42773,14.0029185,161.011165,51.814669,490.42773,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 8:00,10396976,3597.512,1087.3267,458.43658,53.12299,48989.71,1913.525,590.7275,5.748166,99.95406,53.12299,590.7275,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 9:00,10403824,3597.512,462.00076,454.76196,53.193596,45540.19,1798.8616,477.97595,9.837331,1.125464,53.193596,477.97595,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 10:00,10407181,3597.512,352.9169,213.45334,3.12801,46600.727,1890.4698,511.51285,182.9868,0.04184034,3.12801,511.51285,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 11:00,10409331,3597.512,369.48712,171.58058,3.5636695,45391.6885,2015.1581,496.05249,2812.4534,0.027419607,3.5636695,496.05249,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 12:00,10411481,3597.512,386.05734,129.70782,3.999329,44182.65,2139.8464,480.59213,5441.92,0.012998874,3.999329,480.59213,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 13:00,10418119,3597.512,311.4711,90.4291,2.2237587,41273.434,1977.0924,425.53265,2396.41,0.007385053,2.2237587,425.53265,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 14:00,10420098.5,3597.512,310.20685,83.380005,2.20294685,41625.754,1883.69665,424.110725,1284.567175,0.006377783,2.20294685,424.110725,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 15:00,10422078,3597.512,308.9426,76.33091,2.182135,41978.074,1790.3009,422.6888,172.72435,0.005370513,2.182135,422.6888,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 16:00,10427088,3597.512,316.60663,93.60832,2.3567035,42996.117,1831.8591,432.08246,357.6895,1.3416252,2.3567035,432.08246,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 17:00,10431193,3597.512,275.1406,90.58461,1.6406416,46507.25,2190.8762,554.3219,4970.1514,0.9808007,1.6406416,554.3219,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 18:00,10435004.6,3597.512,221.3300593,86.73366,1.33325747,45621.1984,1974.40018,521.92536,3976.29463,0.785741615,1.33325747,521.92536,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 19:00,10438816.2,3597.512,167.5195185,82.88271,1.02587334,44735.1468,1757.92416,489.52882,2982.43786,0.59068253,1.02587334,489.52882,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 20:00,10442627.8,3597.512,113.7089778,79.03176,0.71848921,43849.0952,1541.44814,457.13228,1988.58109,0.395623444,0.71848921,457.13228,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 21:00,10446439.4,3597.512,59.89843704,75.18081,0.41110508,42963.0436,1324.97212,424.73574,994.7243194,0.200564359,0.41110508,424.73574,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 22:00,10450251,3597.512,6.0878963,71.32986,0.10372095,42076.992,1108.4961,392.3392,0.86754924,0.005505274,0.10372095,392.3392,130901.3,73179.4,-15784.6,-201976.5
+5/1/2023 23:00,10453314.6,3597.512,6.1397699,69.6538568,0.10372095,33694.34186,997.231268,317.4036968,0.788210916,0.005215166,0.10372095,317.4036968,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 0:00,10456378.2,3597.512,6.1916435,67.9778536,0.10372095,25311.69173,885.966436,242.4681936,0.708872592,0.004925058,0.10372095,242.4681936,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 1:00,10459441.8,3597.512,6.2435171,66.3018504,0.10372095,16929.04159,774.701604,167.5326904,0.629534268,0.00463495,0.10372095,167.5326904,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 2:00,10462505.4,3597.512,6.2953907,64.6258472,0.10372095,8546.391456,663.436772,92.5971872,0.550195944,0.004344842,0.10372095,92.5971872,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 3:00,10465569,3597.512,6.3472643,62.949844,0.10372095,163.74132,552.17194,17.661684,0.47085762,0.004054734,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 4:00,10469017,3597.512,6.3448057,61.752716,0.10372095,174.08734,594.0381,46.26926,0.44144154,0.003868596,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 5:00,10472413,3597.512,6.3097887,60.715656,0.10372095,161.29317,1183.1895,14.84055,2.4729867,0.003710508,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 6:00,10476582,3597.512,99.07604153,132.5058345,13.39400571,11393.94988,1349.968475,133.0333975,53.92672003,0.029187259,13.39400571,133.0333975,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 7:00,10480751,3597.512,191.8422944,204.296013,26.68429047,22626.60659,1516.74745,251.226245,105.3804534,0.054664009,26.68429047,251.226245,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 8:00,10484920,3597.512,284.6085472,276.0861915,39.97457524,33859.26329,1683.526425,369.4190925,156.8341867,0.080140759,39.97457524,369.4190925,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 9:00,10489089,3597.512,377.3748,347.87637,53.26486,45091.92,1850.3054,487.61194,208.28792,0.10561751,53.26486,487.61194,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 10:00,10490525,3597.512,322.31863,244.04414,2.5359035,44885.266,1828.3267,480.9132,143.192,0.0658214,2.5359035,480.9132,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 11:00,10497475,3597.512,382.0941,137.58865,4.0526395,43066.043,2443.1255,495.1585,24706.986,0.015884947,4.0526395,495.1585,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 12:00,10497708,3597.512,382.13312,135.43335,4.0551953,42860.16,2460.676,493.92917,26480.803,0.01522185,4.0551953,493.92917,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 13:00,10501286,3597.512,344.16086,114.689115,3.1433568,40764.7735,2415.0991,482.82756,23440.759,0.015810935,3.1433568,482.82756,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 14:00,10504864,3597.512,306.1886,93.94488,2.2315183,38669.387,2369.5222,471.72595,20400.715,0.01640002,2.2315183,471.72595,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 15:00,10509225.25,3597.512,288.70139,88.74523,1.979816075,40678.95325,2448.376025,524.2671875,22877.95825,0.0134716,1.979816075,524.2671875,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 16:00,10513586.5,3597.512,271.21418,83.54558,1.72811385,42688.5195,2527.22985,576.808425,25355.2015,0.01054318,1.72811385,576.808425,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 17:00,10517947.75,3597.512,253.72697,78.34593,1.476411625,44698.08575,2606.083675,629.3496625,27832.44475,0.00761476,1.476411625,629.3496625,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 18:00,10522309,3597.512,236.23976,73.14628,1.2247094,46707.652,2684.9375,681.8909,30309.688,0.00468634,1.2247094,681.8909,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 19:00,10525550.4,3597.512,190.2276155,70.1885152,1.00051171,45496.7982,2352.2663,620.08631,24247.89421,0.004396796,1.00051171,620.08631,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 20:00,10528791.8,3597.512,144.215471,67.2307504,0.77631402,44285.9444,2019.5951,558.28172,18186.10042,0.004107253,0.77631402,558.28172,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 21:00,10532033.2,3597.512,98.20332656,64.2729856,0.55211633,43075.0906,1686.9239,496.47713,12124.30663,0.003817709,0.55211633,496.47713,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 22:00,10535274.6,3597.512,52.19118208,61.3152208,0.32791864,41864.2368,1354.2527,434.67254,6062.512835,0.003528166,0.32791864,434.67254,130901.3,73179.4,-15784.6,-201976.5
+5/2/2023 23:00,10538516,3597.512,6.1790376,58.357456,0.10372095,40653.383,1021.5815,372.86795,0.7190441,0.003238622,0.10372095,372.86795,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 0:00,10541855.75,3597.512,6.1576142,57.4057825,0.10372095,30530.70185,898.401425,284.0663835,0.648449683,0.003125607,0.10372095,284.0663835,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 1:00,10545195.5,3597.512,6.1361908,56.454109,0.10372095,20408.0207,775.22135,195.264817,0.577855265,0.003012593,0.10372095,195.264817,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 2:00,10548535.25,3597.512,6.1147674,55.5024355,0.10372095,10285.33955,652.041275,106.4632505,0.507260848,0.002899578,0.10372095,106.4632505,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 3:00,10551875,3597.512,6.093344,54.550762,0.10372095,162.6584,528.8612,17.661684,0.43666643,0.002786563,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 4:00,10558476,3597.512,6.0610514,53.185677,0.10372095,168.06871,1359.0493,45.431194,9.897321,0.002628354,0.10372095,45.431194,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 5:00,10558873,3597.512,6.0602183,53.463837,0.10372095,192.98404,1328.9413,17.15022,12.010553,0.002639242,0.10372095,17.15022,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 6:00,10562963.4,3597.512,72.92813064,61.5279276,0.680621,9283.638032,1441.59142,115.29846,64.3504624,0.003499209,0.680621,115.29846,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 7:00,10567053.8,3597.512,139.796043,69.5920182,1.25752105,18374.29202,1554.24154,213.4467,116.6903718,0.004359176,1.25752105,213.4467,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 8:00,10571144.2,3597.512,206.6639553,77.6561088,1.8344211,27464.94602,1666.89166,311.59494,169.0302812,0.005219142,1.8344211,311.59494,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 9:00,10575234.6,3597.512,273.5318677,85.7201994,2.41132115,36555.60001,1779.54178,409.74318,221.3701906,0.006079109,2.41132115,409.74318,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 10:00,10579325,3597.512,340.39978,93.78429,2.9882212,45646.254,1892.1919,507.89142,273.7101,0.006939076,2.9882212,507.89142,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 11:00,10581705.5,3597.512,360.542555,79.337005,3.5222976,44643.1835,2045.25905,495.50631,4249.62655,0.004982106,3.5222976,495.50631,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 12:00,10584086,3597.512,380.68533,64.88972,4.056374,43640.113,2198.3262,483.1212,8225.543,0.003025136,4.056374,483.1212,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 13:00,10588776,3597.512,364.6089967,71.03783,3.67133,42583.251,2153.274267,464.5841067,7141.958833,0.004403076,3.67133,464.5841067,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 14:00,10593466,3597.512,348.5326633,77.18594,3.286286,41526.389,2108.222333,446.0470133,6058.374667,0.005781017,3.286286,446.0470133,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 15:00,10598156,3597.512,332.45633,83.33405,2.901242,40469.527,2063.1704,427.50992,4974.7905,0.007158957,2.901242,427.50992,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 16:00,10600000,3597.512,6.105535,54.962406,0.10372095,163.55621,538.3317,17.661684,0.4540966,0.00283483,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 17:00,10603112,3597.512,271.3097,75.95393,1.6605439,43594.82,2343.1135,532.88196,13480.089,0.005853046,1.6605439,532.88196,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 18:00,10608088,3597.512,245.31729,126.7381,51.929817,46313.543,2698.4863,680.872,30768.494,0.005368125,51.929817,680.872,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 19:00,10611776.75,3597.512,185.5312788,110.46745,38.97329299,45134.11475,2321.94565,611.5521325,23076.63439,0.004963418,38.97329299,611.5521325,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 20:00,10615465.5,3597.512,125.7452675,94.1968,26.01676898,43954.6865,1945.405,542.232265,15384.77479,0.004558712,26.01676898,542.232265,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 21:00,10619154.25,3597.512,65.95925625,77.92615,13.06024496,42775.25825,1568.86435,472.9123975,7692.915185,0.004154006,13.06024496,472.9123975,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 22:00,10622843,3597.512,6.173245,61.6555,0.10372095,41595.83,1192.3237,403.59253,1.0555795,0.003749299,0.10372095,403.59253,130901.3,73179.4,-15784.6,-201976.5
+5/3/2023 23:00,10625925.8,3597.512,6.155056,60.6624844,0.10372095,33309.18125,1069.069226,326.4063608,0.945586,0.003618069,0.10372095,326.4063608,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 0:00,10629008.6,3597.512,6.136867,59.6694688,0.10372095,25022.5325,945.814752,249.2201916,0.8355925,0.003486839,0.10372095,249.2201916,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 1:00,10632091.4,3597.512,6.118678,58.6764532,0.10372095,16735.88374,822.560278,172.0340224,0.725599,0.00335561,0.10372095,172.0340224,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 2:00,10635174.2,3597.512,6.100489,57.6834376,0.10372095,8449.234992,699.305804,94.8478532,0.6156055,0.00322438,0.10372095,94.8478532,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 3:00,10638257,3597.512,6.0823,56.690422,0.10372095,162.58624,576.05133,17.661684,0.505612,0.00309315,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 4:00,10644703,3597.512,6.0511827,55.24512,0.10372095,163.42073,1335.9473,45.56447,6.2287836,0.002910456,0.10372095,45.56447,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 5:00,10645273,3597.512,6.0493884,55.4918,0.10372095,193.28462,1307.4491,17.22204,7.885113,0.002915715,0.10372095,17.22204,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 6:00,10649908.33,3597.512,143.6669389,178.7503,17.82418897,15481.31308,1481.745967,185.7074933,17.51788733,0.164687643,17.82418897,185.7074933,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 7:00,10654543.67,3597.512,281.2844895,302.0088,35.54465698,30769.34154,1656.042833,354.1929467,27.15066167,0.326459572,35.54465698,354.1929467,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 8:00,10659179,3597.512,418.90204,425.2673,53.265125,46057.37,1830.3397,522.6784,36.783436,0.4882315,53.265125,522.6784,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 9:00,10659851,3597.512,318.88858,374.12305,2.544568,45739.742,1821.1996,511.2011,42.391155,0.39972216,2.544568,511.2011,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 10:00,10664083.75,3597.512,315.84027,318.902075,2.52245255,43936.64525,1984.8472,500.643425,7811.724116,1.106569445,2.52245255,500.643425,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 11:00,10668316.5,3597.512,312.79196,263.6811,2.5003371,42133.5485,2148.4948,490.08575,15581.05708,1.81341673,2.5003371,490.08575,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 12:00,10672549.25,3597.512,309.74365,208.460125,2.47822165,40330.45175,2312.1424,479.528075,23350.39004,2.520264015,2.47822165,479.528075,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 13:00,10676782,3597.512,306.69534,153.23915,2.4561062,38527.355,2475.79,468.9704,31119.723,3.2271113,2.4561062,468.9704,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 14:00,10678495,3597.512,297.90335,143.4058,2.2959278,38440.45,2371.2676,464.79572,21537.797,3.1193333,2.2959278,464.79572,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 15:00,10682559.67,3597.512,285.6440333,129.1751633,2.114851133,40084.55667,2476.3593,516.988,26949.71367,2.3909077,2.114851133,516.988,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 16:00,10686624.33,3597.512,273.3847167,114.9445267,1.933774467,41728.66333,2581.451,569.18028,32361.63033,1.6624821,1.933774467,569.18028,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 17:00,10690689,3597.512,261.1254,100.71389,1.7526978,43372.77,2686.5427,621.37256,37773.547,0.9340565,1.7526978,621.37256,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 18:00,10693612.5,3597.512,246.680665,94.61845,1.51092225,44347.502,2696.47095,666.39428,33837.3225,0.473333323,1.51092225,666.39428,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 19:00,10696536,3597.512,232.23593,88.52301,1.2691467,45322.234,2706.3992,711.416,29901.098,0.012610146,1.2691467,711.416,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 20:00,10700000,3597.512,687.39496,454.1272,50.506348,43298.75,1789.4911,470.1115,68.67244,35.586132,50.506348,470.1115,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 21:00,10703658.33,3597.512,460.2813955,326.0996533,33.70547232,42258.87333,1561.565533,438.78231,46.09163367,23.72572941,33.70547232,438.78231,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 22:00,10707316.67,3597.512,233.167831,198.0721067,16.90459663,41218.99667,1333.639967,407.45312,23.51082733,11.86532681,16.90459663,407.45312,130901.3,73179.4,-15784.6,-201976.5
+5/4/2023 23:00,10710975,3597.512,6.0542665,70.04456,0.10372095,40179.12,1105.7144,376.12393,0.930021,0.004924215,0.10372095,376.12393,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 0:00,10714383,3597.512,6.03355745,68.036239,0.10372095,30174.81577,966.656125,286.5083685,0.817692393,0.004627601,0.10372095,286.5083685,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 1:00,10717791,3597.512,6.0128484,66.027918,0.10372095,20170.51154,827.59785,196.892807,0.705363785,0.004330986,0.10372095,196.892807,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 2:00,10721199,3597.512,5.99213935,64.019597,0.10372095,10166.20731,688.539575,107.2772455,0.593035178,0.004034372,0.10372095,107.2772455,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 3:00,10724607,3597.512,5.9714303,62.011276,0.10372095,161.90308,549.4813,17.661684,0.48070657,0.003737757,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 4:00,10728577,3597.512,5.969919,60.499683,0.10372095,159.92795,1263.6658,14.84055,2.8760405,0.00353241,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 5:00,10731724,3597.512,5.94102,59.84616,0.10372095,255.53503,1310.8512,17.073046,14.682895,0.003416085,0.10372095,17.073046,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 6:00,10735468.33,3597.512,147.09397,182.6508167,17.8042013,16105.28502,1513.745467,206.7303773,49.18026167,0.17122447,17.8042013,206.7303773,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 7:00,10739212.67,3597.512,288.24692,305.4554733,35.50468165,31955.03501,1716.639733,396.3877087,83.67762833,0.339032855,35.50468165,396.3877087,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 8:00,10742957,3597.512,429.39987,428.26013,53.205162,47804.785,1919.534,586.04504,118.174995,0.50684124,53.205162,586.04504,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 9:00,10746243,3597.512,319.1542,190.46829,2.6067896,45236.95,1925.1217,509.82825,622.66785,0.033831574,2.6067896,509.82825,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 10:00,10751343,3597.512,327.7873,152.22151,2.7857802,44697.69,1923.9974,494.96698,761.3591,1.0928856,2.7857802,494.96698,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 11:00,10754856,3597.512,319.211705,140.4667025,2.674256275,43213.6435,2027.2533,485.366785,5443.815325,1.8859783,2.674256275,485.366785,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 12:00,10758369,3597.512,310.63611,128.711895,2.56273235,41729.597,2130.5092,475.76659,10126.27155,2.679071,2.56273235,475.76659,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 13:00,10761882,3597.512,302.060515,116.9570875,2.451208425,40245.5505,2233.7651,466.166395,14808.72778,3.4721637,2.451208425,466.166395,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 14:00,10765395,3597.512,293.48492,105.20228,2.3396845,38761.504,2337.021,456.5662,19491.184,4.2652564,2.3396845,456.5662,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 15:00,10769551,3597.512,281.3782233,100.47801,2.153232233,40623.946,2404.717333,510.8423333,20614.15333,3.125334577,2.153232233,510.8423333,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 16:00,10773707,3597.512,269.2715267,95.75374,1.966779967,42486.388,2472.413667,565.1184667,21737.12267,1.985412753,1.966779967,565.1184667,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 17:00,10777863,3597.512,257.16483,91.02947,1.7803277,44348.83,2540.11,619.3946,22860.092,0.84549093,1.7803277,619.3946,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 18:00,10781368.2,3597.512,206.9283232,88.190442,1.44500635,43788.738,2263.82194,577.394824,18288.27073,0.677688262,1.44500635,577.394824,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 19:00,10784873.4,3597.512,156.6918164,85.351414,1.109685,43228.646,1987.53388,535.395048,13716.44946,0.509885595,1.109685,535.395048,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 20:00,10788378.6,3597.512,106.4553096,82.512386,0.77436365,42668.554,1711.24582,493.395272,9144.628185,0.342082927,0.77436365,493.395272,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 21:00,10791883.8,3597.512,56.2188028,79.673358,0.4390423,42108.462,1434.95776,451.395496,4572.806914,0.17428026,0.4390423,451.395496,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 22:00,10795389,3597.512,5.982296,76.83433,0.10372095,41548.37,1158.6697,409.39572,0.98564225,0.006477592,0.10372095,409.39572,130901.3,73179.4,-15784.6,-201976.5
+5/5/2023 23:00,10797694.5,3597.512,162.352583,118.32633,1.334004925,42894.601,1509.80755,446.18871,166.8592011,0.261605531,1.334004925,446.18871,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 0:00,10800000,3597.512,318.72287,159.81833,2.5642889,44240.832,1860.9454,482.9817,332.73276,0.51673347,2.5642889,482.9817,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 1:00,10803687,3597.512,214.4493702,128.49314,1.744099583,29547.90133,1421.2195,327.875028,221.9777278,0.345984491,1.744099583,327.875028,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 2:00,10807374,3597.512,110.1758703,97.16795,0.923910267,14854.97065,981.4936,172.768356,111.2226956,0.175235512,0.923910267,172.768356,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 3:00,10811061,3597.512,5.9023705,65.84276,0.10372095,162.03998,541.7677,17.661684,0.46766344,0.004486533,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 4:00,10814663.9,3597.512,5.903582,65.1657284,0.10372095,2253.895581,569.398755,36.8383578,0.486218068,0.004390289,0.10372095,36.8383578,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 5:00,10818266.8,3597.512,5.9047935,64.4886968,0.10372095,4345.751182,597.02981,56.0150316,0.504772696,0.004294044,0.10372095,56.0150316,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 6:00,10821869.7,3597.512,5.906005,63.8116652,0.10372095,6437.606783,624.660865,75.1917054,0.523327324,0.0041978,0.10372095,75.1917054,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 7:00,10825472.6,3597.512,5.9072165,63.1346336,0.10372095,8529.462384,652.29192,94.3683792,0.541881952,0.004101555,0.10372095,94.3683792,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 8:00,10829075.5,3597.512,5.908428,62.457602,0.10372095,10621.31799,679.922975,113.545053,0.56043658,0.004005311,0.10372095,113.545053,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 9:00,10832678.4,3597.512,5.9096395,61.7805704,0.10372095,12713.17359,707.55403,132.7217268,0.578991208,0.003909067,0.10372095,132.7217268,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 10:00,10836281.3,3597.512,5.910851,61.1035388,0.10372095,14805.02919,735.185085,151.8984006,0.597545836,0.003812822,0.10372095,151.8984006,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 11:00,10839884.2,3597.512,5.9120625,60.4265072,0.10372095,16896.88479,762.81614,171.0750744,0.616100464,0.003716578,0.10372095,171.0750744,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 12:00,10843487.1,3597.512,5.913274,59.7494756,0.10372095,18988.74039,790.447195,190.2517482,0.634655092,0.003620333,0.10372095,190.2517482,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 13:00,10847090,3597.512,5.9144855,59.072444,0.10372095,21080.59599,818.07825,209.428422,0.65320972,0.003524089,0.10372095,209.428422,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 14:00,10850692.9,3597.512,5.915697,58.3954124,0.10372095,23172.45159,845.709305,228.6050958,0.671764348,0.003427845,0.10372095,228.6050958,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 15:00,10854295.8,3597.512,5.9169085,57.7183808,0.10372095,25264.30719,873.34036,247.7817696,0.690318976,0.0033316,0.10372095,247.7817696,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 16:00,10857898.7,3597.512,5.91812,57.0413492,0.10372095,27356.16279,900.971415,266.9584434,0.708873604,0.003235356,0.10372095,266.9584434,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 17:00,10861501.6,3597.512,5.9193315,56.3643176,0.10372095,29448.01839,928.60247,286.1351172,0.727428232,0.003139111,0.10372095,286.1351172,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 18:00,10865104.5,3597.512,5.920543,55.687286,0.10372095,31539.874,956.233525,305.311791,0.74598286,0.003042867,0.10372095,305.311791,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 19:00,10868707.4,3597.512,5.9217545,55.0102544,0.10372095,33631.7296,983.86458,324.4884648,0.764537488,0.002946623,0.10372095,324.4884648,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 20:00,10872310.3,3597.512,5.922966,54.3332228,0.10372095,35723.5852,1011.495635,343.6651386,0.783092116,0.002850378,0.10372095,343.6651386,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 21:00,10875913.2,3597.512,5.9241775,53.6561912,0.10372095,37815.4408,1039.12669,362.8418124,0.801646744,0.002754134,0.10372095,362.8418124,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 22:00,10879516.1,3597.512,5.925389,52.9791596,0.10372095,39907.2964,1066.757745,382.0184862,0.820201372,0.002657889,0.10372095,382.0184862,130901.3,73179.4,-15784.6,-201976.5
+5/6/2023 23:00,10883119,3597.512,5.9266005,52.302128,0.10372095,41999.152,1094.3888,401.19516,0.838756,0.002561645,0.10372095,401.19516,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 0:00,10886734,3597.512,5.912611125,51.9885645,0.10372095,31540.08874,960.82195,305.311791,0.7547312,0.002524881,0.10372095,305.311791,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 1:00,10890349,3597.512,5.89862175,51.675001,0.10372095,21081.02547,827.2551,209.428422,0.6707064,0.002488117,0.10372095,209.428422,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 2:00,10893964,3597.512,5.884632375,51.3614375,0.10372095,10621.96221,693.68825,113.545053,0.5866816,0.002451352,0.10372095,113.545053,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 3:00,10897579,3597.512,5.870643,51.047874,0.10372095,162.89894,560.1214,17.661684,0.5026568,0.002414588,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 4:00,10903008,3597.512,5.844415,50.625206,0.10372095,178.83295,1165.8821,40.154984,2.058735,0.002366206,0.10372095,40.154984,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 5:00,10907684,3597.512,5.8145685,50.279232,0.10372095,36734.066,1678.4867,342.96735,34.509052,0.002327042,0.10372095,342.96735,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 6:00,10908584,3597.512,5.8141932,50.21442,0.10372095,37586.555,1655.9358,322.64185,42.929436,0.00231975,0.10372095,322.64185,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 7:00,10913142.33,3597.512,5.826875133,49.90741333,0.10372095,40698.792,1736.9649,394.2475667,30.29791723,0.002285706,0.10372095,394.2475667,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 8:00,10917700.67,3597.512,5.839557067,49.60040667,0.10372095,43811.029,1817.994,465.8532833,17.66639847,0.002251662,0.10372095,465.8532833,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 9:00,10922259,3597.512,5.852239,49.2934,0.10372095,46923.266,1899.0231,537.459,5.0348797,0.002217618,0.10372095,537.459,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 10:00,10925809.31,3597.512,5.855607862,49.10492046,0.10372095,46410.418,1836.598046,523.0757923,4.708065785,0.002197766,0.10372095,523.0757923,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 11:00,10929359.62,3597.512,5.858976723,48.91644092,0.10372095,45897.57,1774.172992,508.6925846,4.381251869,0.002177914,0.10372095,508.6925846,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 12:00,10932909.92,3597.512,5.862345585,48.72796138,0.10372095,45384.722,1711.747938,494.3093769,4.054437954,0.002158063,0.10372095,494.3093769,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 13:00,10936460.23,3597.512,5.865714446,48.53948185,0.10372095,44871.874,1649.322885,479.9261692,3.727624038,0.002138211,0.10372095,479.9261692,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 14:00,10940010.54,3597.512,5.869083308,48.35100231,0.10372095,44359.026,1586.897831,465.5429615,3.400810123,0.002118359,0.10372095,465.5429615,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 15:00,10943560.85,3597.512,5.872452169,48.16252277,0.10372095,43846.178,1524.472777,451.1597538,3.073996208,0.002098507,0.10372095,451.1597538,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 16:00,10947111.15,3597.512,5.875821031,47.97404323,0.10372095,43333.33,1462.047723,436.7765462,2.747182292,0.002078656,0.10372095,436.7765462,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 17:00,10950661.46,3597.512,5.879189892,47.78556369,0.10372095,42820.482,1399.622669,422.3933385,2.420368377,0.002058804,0.10372095,422.3933385,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 18:00,10954211.77,3597.512,5.882558754,47.59708415,0.10372095,42307.634,1337.197615,408.0101308,2.093554462,0.002038952,0.10372095,408.0101308,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 19:00,10957762.08,3597.512,5.885927615,47.40860462,0.10372095,41794.786,1274.772562,393.6269231,1.766740546,0.0020191,0.10372095,393.6269231,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 20:00,10961312.38,3597.512,5.889296477,47.22012508,0.10372095,41281.938,1212.347508,379.2437154,1.439926631,0.001999249,0.10372095,379.2437154,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 21:00,10964862.69,3597.512,5.892665338,47.03164554,0.10372095,40769.09,1149.922454,364.8605077,1.113112715,0.001979397,0.10372095,364.8605077,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 22:00,10968413,3597.512,5.8960342,46.843166,0.10372095,40256.242,1087.4974,350.4773,0.7862988,0.001959545,0.10372095,350.4773,130901.3,73179.4,-15784.6,-201976.5
+5/7/2023 23:00,10971485.4,3597.512,5.88440016,46.7120556,0.10372095,32237.66632,991.243392,283.9141768,0.72315682,0.001946407,0.10372095,283.9141768,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 0:00,10974557.8,3597.512,5.87276612,46.5809452,0.10372095,24219.09064,894.989384,217.3510536,0.66001484,0.001933269,0.10372095,217.3510536,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 1:00,10977630.2,3597.512,5.86113208,46.4498348,0.10372095,16200.51496,798.735376,150.7879304,0.59687286,0.00192013,0.10372095,150.7879304,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 2:00,10980702.6,3597.512,5.84949804,46.3187244,0.10372095,8181.93928,702.481368,84.2248072,0.53373088,0.001906992,0.10372095,84.2248072,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 3:00,10983775,3597.512,5.837864,46.187614,0.10372095,163.3636,606.22736,17.661684,0.4705889,0.001893854,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 4:00,10987418,3597.512,5.8097954,46.04103,0.10372095,213.05981,674.6067,46.26926,0.511716,0.001879359,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 5:00,10990855,3597.512,6.0911508,46.23847,0.10372095,179.52667,1298.2177,24.198423,2.5283754,0.001883448,0.10372095,24.198423,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 6:00,10994591.5,3597.512,718.4734254,262.78655,26.52655948,24520.67934,1689.45565,325.4126115,98.0866877,92.65280672,26.52655948,325.4126115,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 7:00,10998328,3597.512,1430.8557,479.33463,52.949398,48861.832,2080.6936,626.6268,193.645,185.30373,52.949398,626.6268,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 8:00,11002569,3597.512,1074.346317,399.0819867,53.086202,47705.07933,2011.101167,579.7389933,133.9165573,123.7590668,53.086202,579.7389933,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 9:00,11006810,3597.512,717.8369333,318.8293433,53.223006,46548.32667,1941.508733,532.8511867,74.18811467,62.21440351,53.223006,532.8511867,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 10:00,11011051,3597.512,361.32755,238.5767,53.35981,45391.574,1871.9163,485.96338,14.459672,0.66974026,53.35981,485.96338,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 11:00,11013606,3597.512,359.83203,147.32387,3.474951,45501,1922.3779,489.9509,146.12885,1.4112506,3.474951,489.9509,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 12:00,11017359,3597.512,343.1382483,137.8061033,3.186342417,45536.084,1972.43585,498.74076,806.2372583,1.346044117,3.186342417,498.74076,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 13:00,11021112,3597.512,326.4444667,128.2883367,2.897733833,45571.168,2022.4938,507.53062,1466.345667,1.280837633,2.897733833,507.53062,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 14:00,11024865,3597.512,309.750685,118.77057,2.60912525,45606.252,2072.55175,516.32048,2126.454075,1.21563115,2.60912525,516.32048,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 15:00,11028618,3597.512,293.0569033,109.2528033,2.320516667,45641.336,2122.6097,525.11034,2786.562483,1.150424667,2.320516667,525.11034,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 16:00,11032371,3597.512,276.3631217,99.73503667,2.031908083,45676.42,2172.66765,533.9002,3446.670892,1.085218183,2.031908083,533.9002,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 17:00,11036124,3597.512,259.66934,90.21727,1.7432995,45711.504,2222.7256,542.69006,4106.7793,1.0200117,1.7432995,542.69006,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 18:00,11039599.83,3597.512,217.4003995,85.94867083,1.470036408,44813.95167,2032.069117,511.7108,3422.43549,0.850728048,1.470036408,511.7108,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 19:00,11043075.67,3597.512,175.131459,81.68007167,1.196773317,43916.39933,1841.412633,480.73154,2738.09168,0.681444395,1.196773317,480.73154,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 20:00,11046551.5,3597.512,132.8625185,77.4114725,0.923510225,43018.847,1650.75615,449.75228,2053.747869,0.512160743,0.923510225,449.75228,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 21:00,11050027.33,3597.512,90.593578,73.14287333,0.650247133,42121.29467,1460.099667,418.77302,1369.404059,0.342877091,0.650247133,418.77302,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 22:00,11053503.17,3597.512,48.3246375,68.87427417,0.376984042,41223.74233,1269.443183,387.79376,685.060249,0.173593438,0.376984042,387.79376,130901.3,73179.4,-15784.6,-201976.5
+5/8/2023 23:00,11056979,3597.512,6.055697,64.605675,0.10372095,40326.19,1078.7867,356.8145,0.7164388,0.004309786,0.10372095,356.8145,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 0:00,11060341.6,3597.512,6.04077284,63.104508,0.10372095,32293.27933,982.34558,288.9839368,0.6588425,0.004083993,0.10372095,288.9839368,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 1:00,11063704.2,3597.512,6.02584868,61.603341,0.10372095,24260.36865,885.90446,221.1533736,0.6012462,0.0038582,0.10372095,221.1533736,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 2:00,11067066.8,3597.512,6.01092452,60.102174,0.10372095,16227.45798,789.46334,153.3228104,0.5436499,0.003632408,0.10372095,153.3228104,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 3:00,11070429.4,3597.512,5.99600036,58.601007,0.10372095,8194.547304,693.02222,85.4922472,0.4860536,0.003406615,0.10372095,85.4922472,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 4:00,11073792,3597.512,5.9810762,57.09984,0.10372095,161.63663,596.5811,17.661684,0.4284573,0.003180822,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 5:00,11077288,3597.512,5.9506993,56.468433,0.10372095,208.94221,1329.1588,20.115194,2.7773793,0.003065331,0.10372095,20.115194,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 6:00,11081548.25,3597.512,89.17600697,88.48187975,13.37419071,11194.58366,1470.6871,132.1232605,40.99622698,0.006313696,13.37419071,132.1232605,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 7:00,11085808.5,3597.512,172.4013147,120.4953265,26.64466048,22180.22511,1612.2154,244.131327,79.21507465,0.009562062,26.64466048,244.131327,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 8:00,11090068.75,3597.512,255.6266223,152.5087733,39.91513024,33165.86655,1753.7437,356.1393935,117.4339223,0.012810427,39.91513024,356.1393935,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 9:00,11094329,3597.512,338.85193,184.52222,53.1856,44151.508,1895.272,468.14746,155.65277,0.016058793,53.1856,468.14746,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 10:00,11095229,3597.512,317.06903,115.384674,2.4649024,44071.67,1880.3342,464.99643,112.093735,0.011246786,2.4649024,464.99643,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 11:00,11100000,3597.512,102.79424,70.77478,0.123505846,46567.848,1988.3346,564.2256,139.55156,0.005393499,0.123505846,564.2256,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 12:00,11103492,3597.512,225.87402,65.018645,1.675702423,42712.724,2332.356,520.91555,22155.68778,0.004044422,1.675702423,520.91555,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 13:00,11106984,3597.512,348.9538,59.26251,3.227899,38857.6,2676.3774,477.6055,44171.824,0.002695345,3.227899,477.6055,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 14:00,11111754,3597.512,300.78116,55.271675,2.1610937,38213.387,2415.2717,449.26968,19633.424,0.002473496,2.1610937,449.26968,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 15:00,11115183.14,3597.512,283.0412829,54.33280386,1.924253521,39034.13457,2453.896571,476.4206329,20646.07971,0.00241467,1.924253521,476.4206329,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 16:00,11118612.29,3597.512,265.3014057,53.39393271,1.687413343,39854.88214,2492.521443,503.5715857,21658.73543,0.002355844,1.687413343,503.5715857,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 17:00,11122041.43,3597.512,247.5615286,52.45506157,1.450573164,40675.62971,2531.146314,530.7225386,22671.39114,0.002297018,1.450573164,530.7225386,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 18:00,11125470.57,3597.512,229.8216514,51.51619043,1.213732986,41496.37729,2569.771186,557.8734914,23684.04686,0.002238192,1.213732986,557.8734914,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 19:00,11128899.71,3597.512,212.0817743,50.57731929,0.976892807,42317.12486,2608.396057,585.0244443,24696.70257,0.002179366,0.976892807,585.0244443,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 20:00,11132328.86,3597.512,194.3418971,49.63844814,0.740052629,43137.87243,2647.020929,612.1753971,25709.35829,0.00212054,0.740052629,612.1753971,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 21:00,11135758,3597.512,176.60202,48.699577,0.50321245,43958.62,2685.6458,639.32635,26722.014,0.002061714,0.50321245,639.32635,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 22:00,11141917,3597.512,6.288339,47.62227,0.10372095,39545.055,1756.2909,385.48798,3.2272794,0.001999567,0.10372095,385.48798,130901.3,73179.4,-15784.6,-201976.5
+5/9/2023 23:00,11142695,3597.512,6.2859297,47.542683,0.10372095,39393.074,1543.6239,374.7204,2.175755,0.001992244,0.10372095,374.7204,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 0:00,11146150.75,3597.512,6.261076525,47.23062225,0.10372095,29585.22971,1322.151375,285.455721,1.7675599,0.001963523,0.10372095,285.455721,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 1:00,11149606.5,3597.512,6.23622335,46.9185615,0.10372095,19777.38542,1100.67885,196.191042,1.3593648,0.001934802,0.10372095,196.191042,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 2:00,11153062.25,3597.512,6.211370175,46.60650075,0.10372095,9969.54113,879.206325,106.926363,0.9511697,0.001906081,0.10372095,106.926363,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 3:00,11156518,3597.512,6.186517,46.29444,0.10372095,161.69684,657.7338,17.661684,0.5429746,0.00187736,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 4:00,11160638,3597.512,6.1813126,45.969948,0.10372095,159.54526,1389.9834,14.84055,12.472654,0.001847636,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 5:00,11163714,3597.512,6.149563,46.124928,0.10372095,237.95718,1400.8529,16.864603,24.78169,0.001847327,0.10372095,16.864603,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 6:00,11168205.67,3597.512,122.227252,116.097352,17.8150883,15161.20312,1627.541433,183.364302,505.1718267,0.017338278,17.8150883,183.364302,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 7:00,11172697.33,3597.512,238.304941,186.069776,35.52645565,30084.44906,1854.229967,349.864001,985.5619633,0.032829229,35.52645565,349.864001,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 8:00,11177189,3597.512,354.38263,256.0422,53.237823,45007.695,2080.9185,516.3637,1465.9521,0.04832018,53.237823,516.3637,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 9:00,11178089,3597.512,314.98062,182.93854,2.5225172,44318.59,2120.3447,501.16556,2536.054,0.036835507,2.5225172,501.16556,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 10:00,11183229,3597.512,322.46786,152.50241,2.7109802,42513.086,2398.9202,491.1724,15375.528,0.9850785,2.7109802,491.1724,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 11:00,11186932,3597.512,357.15256,134.51282,3.7295747,41046.992,2875.6516,550.34357,62686.45,4.929384,3.7295747,550.34357,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 12:00,11190199,3597.512,269.4199755,112.594465,2.823111263,30825.37726,2343.0511,417.1730985,47015.02033,3.697519866,2.823111263,417.1730985,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 13:00,11193466,3597.512,181.687391,90.67611,1.916647825,20603.76252,1810.4506,284.002627,31343.59065,2.465655732,1.916647825,284.002627,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 14:00,11196733,3597.512,93.9548065,68.757755,1.010184388,10382.14778,1277.8501,150.8321555,15672.16098,1.233791599,1.010184388,150.8321555,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 15:00,11200000,3597.512,6.222222,46.8394,0.10372095,160.53304,745.2496,17.661684,0.73130697,0.001927465,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 16:00,11203709,3597.512,129.529011,68.2969,0.952282575,20572.15502,2065.93915,450.855142,46932.94565,0.299797758,0.952282575,450.855142,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 17:00,11207418,3597.512,252.8358,89.7544,1.8008442,40983.777,3386.6287,884.0486,93865.16,0.59766805,1.8008442,884.0486,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 18:00,11211383.86,3597.512,217.5460477,85.02278714,1.558398021,35329.82624,3023.022914,760.2600029,80455.99063,0.512724447,1.558398021,760.2600029,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 19:00,11215349.71,3597.512,182.2562954,80.29117429,1.315951843,29675.87549,2659.417129,636.4714057,67046.82125,0.427780845,1.315951843,636.4714057,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 20:00,11219315.57,3597.512,146.9665431,75.55956143,1.073505664,24021.92473,2295.811343,512.6828086,53637.65188,0.342837242,1.073505664,512.6828086,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 21:00,11223281.43,3597.512,111.6767909,70.82794857,0.831059486,18367.97397,1932.205557,388.8942114,40228.4825,0.25789364,0.831059486,388.8942114,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 22:00,11227247.29,3597.512,76.38703857,66.09633571,0.588613307,12714.02321,1568.599771,265.1056143,26819.31313,0.172950037,0.588613307,265.1056143,130901.3,73179.4,-15784.6,-201976.5
+5/10/2023 23:00,11231213.14,3597.512,41.09728629,61.36472286,0.346167129,7060.072457,1204.993986,141.3170171,13410.14375,0.088006435,0.346167129,141.3170171,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 0:00,11235179,3597.512,5.807534,56.63311,0.10372095,1406.1217,841.3882,17.52842,0.9743807,0.003062832,0.10372095,17.52842,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 1:00,11237746.67,3597.512,5.798719667,55.759562,0.10372095,990.4876633,792.3578667,17.57284133,0.855649667,0.002952461,0.10372095,17.57284133,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 2:00,11240314.33,3597.512,5.789905333,54.886014,0.10372095,574.8536267,743.3275333,17.61726267,0.736918633,0.002842091,0.10372095,17.61726267,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 3:00,11242882,3597.512,5.781091,54.012466,0.10372095,159.21959,694.2972,17.661684,0.6181876,0.00273172,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 4:00,11246584,3597.512,5.76753985,53.3109455,0.10372095,401.891445,1130.63855,90.950252,36.7973063,0.002631464,0.10372095,90.950252,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 5:00,11250286,3597.512,5.7539887,52.609425,0.10372095,644.5633,1566.9799,164.23882,72.976425,0.002531207,0.10372095,164.23882,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 6:00,11255392.5,3597.512,155.4578044,72.5799475,1.280489825,23781.24865,1778.34065,380.01098,59.89526,0.004676565,1.280489825,380.01098,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 7:00,11260499,3597.512,305.16162,92.55047,2.4572587,46917.934,1989.7014,595.78314,46.814095,0.006821922,2.4572587,595.78314,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 8:00,11263773.11,3597.512,307.0194556,88.11051356,2.498345244,46298.668,1964.929078,573.9795956,42.26734322,0.006295599,2.498345244,573.9795956,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 9:00,11267047.22,3597.512,308.8772911,83.67055711,2.539431789,45679.402,1940.156756,552.1760511,37.72059144,0.005769276,2.539431789,552.1760511,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 10:00,11270321.33,3597.512,310.7351267,79.23060067,2.580518333,45060.136,1915.384433,530.3725067,33.17383967,0.005242954,2.580518333,530.3725067,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 11:00,11273595.44,3597.512,312.5929622,74.79064422,2.621604878,44440.87,1890.612111,508.5689622,28.62708789,0.004716631,2.621604878,508.5689622,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 12:00,11276869.56,3597.512,314.4507978,70.35068778,2.662691422,43821.604,1865.839789,486.7654178,24.08033611,0.004190308,2.662691422,486.7654178,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 13:00,11280143.67,3597.512,316.3086333,65.91073133,2.703777967,43202.338,1841.067467,464.9618733,19.53358433,0.003663985,2.703777967,464.9618733,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 14:00,11283417.78,3597.512,318.1664689,61.47077489,2.744864511,42583.072,1816.295144,443.1583289,14.98683256,0.003137663,2.744864511,443.1583289,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 15:00,11286691.89,3597.512,320.0243044,57.03081844,2.785951056,41963.806,1791.522822,421.3547844,10.44008078,0.00261134,2.785951056,421.3547844,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 16:00,11289966,3597.512,321.88214,52.590862,2.8270376,41344.54,1766.7505,399.55124,5.893329,0.002085017,2.8270376,399.55124,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 17:00,11294983,3597.512,163.8180185,52.3711375,1.465379275,20749.85264,1669.3318,284.06386,40.3892795,0.002297534,1.465379275,284.06386,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 18:00,11300000,3597.512,5.753897,52.151413,0.10372095,155.16528,1571.9131,168.57648,74.88523,0.00251005,0.10372095,168.57648,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 19:00,11301154,3597.512,238.11044,365.88742,1.1798847,47751.91,2067.853,616.5691,273.2843,0.21131453,1.1798847,616.5691,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 20:00,11305376.67,3597.512,160.8352017,325.9126833,0.82116345,45639.08467,1766.084267,540.2618567,182.4716466,0.166178078,0.82116345,540.2618567,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 21:00,11309599.33,3597.512,83.55996333,285.9379467,0.4624422,43526.25933,1464.315533,463.9546133,91.65899313,0.121041626,0.4624422,463.9546133,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 22:00,11313822,3597.512,6.284725,245.96321,0.10372095,41413.434,1162.5468,387.64737,0.8463397,0.075905174,0.10372095,387.64737,130901.3,73179.4,-15784.6,-201976.5
+5/11/2023 23:00,11316960.6,3597.512,6.2652402,235.949514,0.10372095,33163.24615,1058.6144,313.6502328,0.7798587,0.069788426,0.10372095,313.6502328,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 0:00,11320099.2,3597.512,6.2457554,225.935818,0.10372095,24913.05831,954.682,239.6530956,0.7133777,0.063671678,0.10372095,239.6530956,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 1:00,11323237.8,3597.512,6.2262706,215.922122,0.10372095,16662.87046,850.7496,165.6559584,0.6468967,0.057554931,0.10372095,165.6559584,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 2:00,11326376.4,3597.512,6.2067858,205.908426,0.10372095,8412.682616,746.8172,91.6588212,0.5804157,0.051438183,0.10372095,91.6588212,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 3:00,11329515,3597.512,6.187301,195.89473,0.10372095,162.49477,642.8848,17.661684,0.5139347,0.045321435,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 4:00,11333513,3597.512,6.1821623,189.32695,0.10372095,173.78346,1066.42,40.154984,1.7405636,0.041991964,0.10372095,40.154984,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 5:00,11336478,3597.512,6.151441,185.66002,0.10372095,197.09009,1141.5447,17.40603,2.268248,0.04020853,0.10372095,17.40603,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 6:00,11340593.4,3597.512,78.6874428,193.589124,10.80974876,9139.445472,1279.42998,110.365244,28.4573504,0.03896392,10.80974876,110.365244,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 7:00,11344708.8,3597.512,151.2234446,201.518228,21.51577657,18081.80085,1417.31526,203.324458,54.6464528,0.03771931,21.51577657,203.324458,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 8:00,11348824.2,3597.512,223.7594464,209.447332,32.22180438,27024.15624,1555.20054,296.283672,80.8355552,0.0364747,32.22180438,296.283672,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 9:00,11352939.6,3597.512,296.2954482,217.376436,42.92783219,35966.51162,1693.08582,389.242886,107.0246576,0.03523009,42.92783219,389.242886,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 10:00,11357055,3597.512,368.83145,225.30554,53.63386,44908.867,1830.9711,482.2021,133.21376,0.03398548,53.63386,482.2021,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 11:00,11358666,3597.512,351.4666,139.1185,3.2635856,44817.875,1914.7838,486.42014,641.17377,0.019790687,3.2635856,486.42014,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 12:00,11364534,3597.512,367.0727,106.194855,54.462074,41591.805,2094.508,438.17767,5892.072,0.002150531,54.462074,438.17767,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 13:00,11365434,3597.512,356.34006,51.74729,3.5281143,41165.973,2100.049,431.08432,6395.2173,0.001873132,3.5281143,431.08432,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 14:00,11370481,3597.512,297.84836,46.636234,2.1602638,40449.844,1789.3666,402.68152,317.47162,0.00162434,2.1602638,402.68152,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 15:00,11374046,3597.512,311.21652,84.86436,2.4059732,41173.08,1690.7456,395.46802,6.0345783,0.03154435,2.4059732,395.46802,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 16:00,11376048,3597.512,327.3659,91.65323,2.7843509,41328.94,1711.0305,392.4193,38.98947,1.0944052,2.7843509,392.4193,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 17:00,11379908,3597.512,267.23938,92.92668,1.6353774,43474.637,2040.7815,464.7119,3263.4402,1.8590686,1.6353774,464.7119,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 18:00,11386492,3597.512,250.0223,187.33536,51.791157,46331.4,2428.1084,634.6734,12693.494,0.022395909,51.791157,634.6734,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 19:00,11387392,3597.512,235.60945,120.95583,1.1840938,46303.805,2369.435,628.36847,9754.272,0.016763585,1.1840938,628.36847,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 20:00,11391594.67,3597.512,369.9821,224.3814733,18.51544353,45945.78667,2193.212233,586.3649467,6535.48971,3.959663057,18.51544353,586.3649467,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 21:00,11395797.33,3597.512,504.35475,327.8071167,35.84679327,45587.76833,2016.989467,544.3614233,3316.70742,7.902562528,35.84679327,544.3614233,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 22:00,11400000,3597.512,638.7274,431.23276,53.178143,45229.75,1840.7667,502.3579,97.92513,11.845462,53.178143,502.3579,130901.3,73179.4,-15784.6,-201976.5
+5/12/2023 23:00,11403185,3597.512,512.208898,357.6803974,42.56325859,36216.31376,1586.597088,405.4186568,78.4399104,9.477174182,42.56325859,405.4186568,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 0:00,11406370,3597.512,385.690396,284.1280348,31.94837418,27202.87753,1332.427476,308.4794136,58.95469081,7.108886363,31.94837418,308.4794136,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 1:00,11409555,3597.512,259.171894,210.5756722,21.33348977,18189.44129,1078.257864,211.5401704,39.46947121,4.740598545,21.33348977,211.5401704,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 2:00,11412740,3597.512,132.653392,137.0233096,10.71860536,9176.005056,824.088252,114.6009272,19.98425162,2.372310726,10.71860536,114.6009272,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 3:00,11415925,3597.512,6.13489,63.470947,0.10372095,162.56882,569.91864,17.661684,0.49903202,0.004022908,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 4:00,11419866,3597.512,6.1308823,61.94083,0.10372095,168.95561,1071.471,40.154984,1.8433632,0.003807325,0.10372095,40.154984,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 5:00,11423231,3597.512,6.1003666,60.81257,0.10372095,1449.001,1250.1714,17.38555,2.781104,0.003650515,0.10372095,17.38555,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 6:00,11427187.57,3597.512,6.081872871,59.94927571,0.10372095,7147.558286,1458.423286,95.59314286,6817.891661,0.003536794,0.10372095,95.59314286,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 7:00,11431144.14,3597.512,6.063379143,59.08598143,0.10372095,12846.11557,1666.675171,173.8007357,13633.00222,0.003423074,0.10372095,173.8007357,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 8:00,11435100.71,3597.512,6.044885414,58.22268714,0.10372095,18544.67286,1874.927057,252.0083286,20448.11277,0.003309353,0.10372095,252.0083286,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 9:00,11439057.29,3597.512,6.026391686,57.35939286,0.10372095,24243.23014,2083.178943,330.2159214,27263.22333,0.003195633,0.10372095,330.2159214,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 10:00,11443013.86,3597.512,6.007897957,56.49609857,0.10372095,29941.78743,2291.430829,408.4235143,34078.33389,0.003081912,0.10372095,408.4235143,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 11:00,11446970.43,3597.512,5.989404229,55.63280429,0.10372095,35640.34471,2499.682714,486.6311071,40893.44444,0.002968192,0.10372095,486.6311071,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 12:00,11450927,3597.512,5.9709105,54.76951,0.10372095,41338.902,2707.9346,564.8387,47708.555,0.002854471,0.10372095,564.8387,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 13:00,11454564,3597.512,5.975566875,54.35983083,0.10372095,37939.35921,2559.540997,519.2263463,43732.96525,0.002806357,0.10372095,519.2263463,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 14:00,11458201,3597.512,5.98022325,53.95015167,0.10372095,34539.81643,2411.147393,473.6139927,39757.3755,0.002758243,0.10372095,473.6139927,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 15:00,11461838,3597.512,5.984879625,53.5404725,0.10372095,31140.27364,2262.75379,428.001639,35781.78574,0.00271013,0.10372095,428.001639,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 16:00,11465475,3597.512,5.989536,53.13079333,0.10372095,27740.73085,2114.360187,382.3892853,31806.19599,0.002662016,0.10372095,382.3892853,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 17:00,11469112,3597.512,5.994192375,52.72111417,0.10372095,24341.18806,1965.966583,336.7769317,27830.60624,0.002613902,0.10372095,336.7769317,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 18:00,11472749,3597.512,5.99884875,52.311435,0.10372095,20941.64528,1817.57298,291.164578,23855.01649,0.002565788,0.10372095,291.164578,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 19:00,11476386,3597.512,6.003505125,51.90175583,0.10372095,17542.10249,1669.179377,245.5522243,19879.42673,0.002517674,0.10372095,245.5522243,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 20:00,11480023,3597.512,6.0081615,51.49207667,0.10372095,14142.5597,1520.785773,199.9398707,15903.83698,0.00246956,0.10372095,199.9398707,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 21:00,11483660,3597.512,6.012817875,51.0823975,0.10372095,10743.01691,1372.39217,154.327517,11928.24723,0.002421447,0.10372095,154.327517,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 22:00,11487297,3597.512,6.01747425,50.67271833,0.10372095,7343.474125,1223.998567,108.7151633,7952.657478,0.002373333,0.10372095,108.7151633,130901.3,73179.4,-15784.6,-201976.5
+5/13/2023 23:00,11490934,3597.512,6.022130625,50.26303917,0.10372095,3943.931337,1075.604963,63.10280967,3977.067726,0.002325219,0.10372095,63.10280967,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 0:00,11494571,3597.512,6.026787,49.85336,0.10372095,544.38855,927.21136,17.490456,1.4779735,0.002277105,0.10372095,17.490456,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 1:00,11497285.5,3597.512,5.9990025,52.3764365,0.10372095,21251.09677,1799.31663,288.677448,21733.06499,0.002573887,0.10372095,288.677448,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 2:00,11500000,3597.512,5.971218,54.899513,0.10372095,41957.805,2671.4219,559.86444,43464.652,0.002870668,0.10372095,559.86444,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 3:00,11502093,3597.512,5.9903026,49.252666,0.10372095,158.5159,654.8127,17.661684,0.6984723,0.002211468,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 4:00,11507174,3597.512,5.95678855,48.8825855,0.10372095,17021.33995,1172.94735,138.624177,387.9029861,0.002171793,0.10372095,138.624177,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 5:00,11512255,3597.512,5.9232745,48.512505,0.10372095,33884.164,1691.082,259.58667,775.1075,0.002132119,0.10372095,259.58667,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 6:00,11515722.17,3597.512,5.961249967,48.29396467,0.10372095,35004.45667,1857.78895,305.8309417,8874.864583,0.002109387,0.10372095,305.8309417,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 7:00,11519189.33,3597.512,5.999225433,48.07542433,0.10372095,36124.74933,2024.4959,352.0752133,16974.62167,0.002086655,0.10372095,352.0752133,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 8:00,11522656.5,3597.512,6.0372009,47.856884,0.10372095,37245.042,2191.20285,398.319485,25074.37875,0.002063923,0.10372095,398.319485,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 9:00,11526123.67,3597.512,6.075176367,47.63834367,0.10372095,38365.33467,2357.9098,444.5637567,33174.13583,0.002041191,0.10372095,444.5637567,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 10:00,11529590.83,3597.512,6.113151833,47.41980333,0.10372095,39485.62733,2524.61675,490.8080283,41273.89292,0.002018459,0.10372095,490.8080283,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 11:00,11533058,3597.512,6.1511273,47.201263,0.10372095,40605.92,2691.3237,537.0523,49373.65,0.001995727,0.10372095,537.0523,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 12:00,11536754.18,3597.512,6.129568455,47.01857509,0.10372095,40359.77027,2555.359382,519.6669245,44885.25285,0.00197768,0.10372095,519.6669245,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 13:00,11540450.36,3597.512,6.108009609,46.83588718,0.10372095,40113.62055,2419.395064,502.2815491,40396.85571,0.001959633,0.10372095,502.2815491,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 14:00,11544146.55,3597.512,6.086450764,46.65319927,0.10372095,39867.47082,2283.430745,484.8961736,35908.45856,0.001941586,0.10372095,484.8961736,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 15:00,11547842.73,3597.512,6.064891918,46.47051136,0.10372095,39621.32109,2147.466427,467.5107982,31420.06142,0.001923539,0.10372095,467.5107982,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 16:00,11551538.91,3597.512,6.043333073,46.28782345,0.10372095,39375.17136,2011.502109,450.1254227,26931.66427,0.001905492,0.10372095,450.1254227,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 17:00,11555235.09,3597.512,6.021774227,46.10513555,0.10372095,39129.02164,1875.537791,432.7400473,22443.26713,0.001887444,0.10372095,432.7400473,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 18:00,11558931.27,3597.512,6.000215382,45.92244764,0.10372095,38882.87191,1739.573473,415.3546718,17954.86998,0.001869397,0.10372095,415.3546718,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 19:00,11562627.45,3597.512,5.978656536,45.73975973,0.10372095,38636.72218,1603.609155,397.9692964,13466.47284,0.00185135,0.10372095,397.9692964,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 20:00,11566323.64,3597.512,5.957097691,45.55707182,0.10372095,38390.57245,1467.644836,380.5839209,8978.075693,0.001833303,0.10372095,380.5839209,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 21:00,11570019.82,3597.512,5.935538845,45.37438391,0.10372095,38144.42273,1331.680518,363.1985455,4489.678548,0.001815256,0.10372095,363.1985455,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 22:00,11573716,3597.512,5.91398,45.191696,0.10372095,37898.273,1195.7162,345.81317,1.2814028,0.001797209,0.10372095,345.81317,130901.3,73179.4,-15784.6,-201976.5
+5/14/2023 23:00,11576673.6,3597.512,5.90124968,45.0711888,0.10372095,30350.55406,1066.623534,280.1828728,1.121409628,0.001785805,0.10372095,280.1828728,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 0:00,11579631.2,3597.512,5.88851936,44.9506816,0.10372095,22802.83512,937.530868,214.5525756,0.961416456,0.001774401,0.10372095,214.5525756,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 1:00,11582588.8,3597.512,5.87578904,44.8301744,0.10372095,15255.11618,808.438202,148.9222784,0.801423284,0.001762998,0.10372095,148.9222784,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 2:00,11585546.4,3597.512,5.86305872,44.7096672,0.10372095,7707.39724,679.345536,83.2919812,0.641430112,0.001751594,0.10372095,83.2919812,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 3:00,11588504,3597.512,5.8503284,44.58916,0.10372095,159.6783,550.25287,17.661684,0.48143694,0.00174019,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 4:00,11592101,3597.512,5.99096155,44.6480825,0.10372095,186.992265,967.288035,50.457067,12.59965297,0.001737629,0.10372095,50.457067,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 5:00,11595698,3597.512,6.1315947,44.707005,0.10372095,214.30623,1384.3232,83.25245,24.717869,0.001735068,0.10372095,83.25245,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 6:00,11600000,3597.512,6.0600214,46.29028,0.10372095,38686.03,3152.431,852.437,72126.164,0.001904149,0.10372095,852.437,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 7:00,11603036,3597.512,599.9416,432.15387,52.81058,47432.67,1956.9971,619.4979,130.67233,10.225016,52.81058,619.4979,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 8:00,11607397,3597.512,453.5737,419.592435,27.65697335,45154.419,1949.07965,545.42769,705.784715,5.6687219,27.65697335,545.42769,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 9:00,11611758,3597.512,307.2058,407.031,2.5033667,42876.168,1941.1622,471.35748,1280.8971,1.1124278,2.5033667,471.35748,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 10:00,11614898.33,3597.512,322.69024,387.7681433,3.0562578,41807.25533,2199.7193,482.3823633,20189.76473,4.413498533,3.0562578,482.3823633,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 11:00,11618038.67,3597.512,338.17468,368.5052867,3.6091489,40738.34267,2458.2764,493.4072467,39098.63237,7.714569267,3.6091489,493.4072467,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 12:00,11621179,3597.512,353.65912,349.24243,4.16204,39669.43,2716.8335,504.43213,58007.5,11.01564,4.16204,504.43213,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 13:00,11624852,3597.512,329.17443,328.8153533,3.6641431,39111.081,2608.9673,479.10497,47630.59767,14.89036667,3.6641431,479.10497,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 14:00,11628525,3597.512,304.68974,308.3882767,3.1662462,38552.732,2501.1011,453.77781,37253.69533,18.76509333,3.1662462,453.77781,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 15:00,11632198,3597.512,280.20505,287.9612,2.6683493,37994.383,2393.2349,428.45065,26876.793,22.63982,2.6683493,428.45065,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 16:00,11637276,3597.512,262.614025,260.2635,2.25083585,40650.4415,2990.70865,769.378075,66199.1215,11.86007655,2.25083585,769.378075,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 17:00,11642354,3597.512,245.023,232.5658,1.8333224,43306.5,3588.1824,1110.3055,105521.45,1.0803331,1.8333224,1110.3055,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 18:00,11642414,3597.512,244.9907,232.93877,1.8292315,43343.555,3603.6792,1122.1846,106267.19,1.2202679,1.8292315,1122.1846,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 19:00,11646387.4,3597.512,197.1367726,226.216158,1.48412939,42403.0252,3095.96658,968.51781,85013.92842,0.983413842,1.48412939,968.51781,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 20:00,11650360.8,3597.512,149.2828452,219.493546,1.13902728,41462.4954,2588.25396,814.85102,63760.66683,0.746559784,1.13902728,814.85102,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 21:00,11654334.2,3597.512,101.4289178,212.770934,0.79392517,40521.9656,2080.54134,661.18423,42507.40525,0.509705726,0.79392517,661.18423,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 22:00,11658307.6,3597.512,53.5749904,206.048322,0.44882306,39581.4358,1572.82872,507.51744,21254.14366,0.272851668,0.44882306,507.51744,130901.3,73179.4,-15784.6,-201976.5
+5/15/2023 23:00,11662281,3597.512,5.721063,199.32571,0.10372095,38640.906,1065.1161,353.85065,0.8820784,0.03599761,0.10372095,353.85065,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 0:00,11665441.25,3597.512,5.7057595,195.84621,0.10372095,29020.6461,936.8166575,269.8034085,0.78290362,0.034724591,0.10372095,269.8034085,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 1:00,11668601.5,3597.512,5.690456,192.36671,0.10372095,19400.38619,808.517215,185.756167,0.68372884,0.033451573,0.10372095,185.756167,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 2:00,11671761.75,3597.512,5.6751525,188.88721,0.10372095,9780.126285,680.2177725,101.7089255,0.58455406,0.032178554,0.10372095,101.7089255,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 3:00,11674922,3597.512,5.659849,185.40771,0.10372095,159.86638,551.91833,17.661684,0.48537928,0.030905535,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 4:00,11678521.5,3597.512,5.64813415,182.75565,0.10372095,202.7565,944.183715,28.826194,9.32005564,0.030161034,0.10372095,28.826194,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 5:00,11682121,3597.512,5.6364193,180.10359,0.10372095,245.64662,1336.4491,39.990704,18.154732,0.029416533,0.10372095,39.990704,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 6:00,11687295,3597.512,181.9968747,254.845635,26.61882547,23342.38581,1630.83625,307.098302,102.766506,0.057077845,26.61882547,307.098302,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 7:00,11692469,3597.512,358.35733,329.58768,53.13393,46439.125,1925.2234,574.2059,187.37828,0.084739156,53.13393,574.2059,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 8:00,11692893,3597.512,305.21344,270.48593,2.4329896,46262.24,1921.0085,567.233,199.98923,0.07862458,2.4329896,567.233,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 9:00,11696699,3597.512,307.14554,233.10852,2.495362,43521.1,1957.4401,484.83472,1329.4769,0.7320126,2.495362,484.83472,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 10:00,11700000,3597.512,229.01192,213.43202,1.5142201,43333.33,3246.3147,1104.2924,47760.906,0.07732822,1.5142201,1104.2924,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 11:00,11706638,3597.512,351.5983,182.12012,4.184084,39956.004,2732.8267,512.91705,59224.016,15.6294985,4.184084,512.91705,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 12:00,11710296,3597.512,333.6231717,168.622555,3.79227015,40531.114,2946.49775,657.7697583,72671.45833,13.06632278,3.79227015,657.7697583,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 13:00,11713954,3597.512,315.6480433,155.12499,3.4004563,41106.224,3160.1688,802.6224667,86118.90067,10.50314706,3.4004563,802.6224667,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 14:00,11717612,3597.512,297.672915,141.627425,3.00864245,41681.334,3373.83985,947.475175,99566.343,7.939971335,3.00864245,947.475175,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 15:00,11721270,3597.512,279.6977867,128.12986,2.6168286,42256.444,3587.5109,1092.327883,113013.7853,5.376795613,2.6168286,1092.327883,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 16:00,11724928,3597.512,261.7226583,114.632295,2.22501475,42831.554,3801.18195,1237.180592,126461.2277,2.813619892,2.22501475,1237.180592,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 17:00,11728586,3597.512,243.74753,101.13473,1.8332009,43406.664,4014.853,1382.0333,139908.67,0.25044417,1.8332009,1382.0333,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 18:00,11732017,3597.512,196.1361169,95.656936,1.48730491,42555.1032,3610.69564,1185.977116,112738.2089,0.20139069,1.48730491,1185.977116,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 19:00,11735448,3597.512,148.5247038,90.179142,1.14140892,41703.5424,3206.53828,989.920932,85567.74788,0.152337209,1.14140892,989.920932,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 20:00,11738879,3597.512,100.9132907,84.701348,0.79551293,40851.9816,2802.38092,793.864748,58397.28682,0.103283729,0.79551293,793.864748,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 21:00,11742310,3597.512,53.3018776,79.223554,0.44961694,40000.4208,2398.22356,597.808564,31226.82576,0.054230248,0.44961694,597.808564,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 22:00,11745741,3597.512,5.6904645,73.74576,0.10372095,39148.86,1994.0662,401.75238,4056.3647,0.005176768,0.10372095,401.75238,130901.3,73179.4,-15784.6,-201976.5
+5/16/2023 23:00,11749730,3597.512,5.66580025,70.290795,0.10372095,19929.04127,1396.62627,209.63547,2028.720544,0.004677865,0.10372095,209.63547,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 0:00,11753719,3597.512,5.641136,66.83583,0.10372095,709.22253,799.18634,17.51856,1.0763888,0.004178963,0.10372095,17.51856,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 1:00,11756263,3597.512,5.633734,65.419128,0.10372095,526.0079067,543.7081033,16.62589,0.717702151,0.003994372,0.10372095,16.62589,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 2:00,11758807,3597.512,5.626332,64.002426,0.10372095,342.7932833,288.2298667,15.73322,0.359015501,0.00380978,0.10372095,15.73322,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 3:00,11761351,3597.512,5.61893,62.585724,0.10372095,159.57866,32.75163,14.84055,0.000328852,0.003625189,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 4:00,11765669,3597.512,5.6076463,61.694586,0.10372095,6491.73133,1254.157415,582.332375,46.79240943,0.003470303,0.10372095,582.332375,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 5:00,11769987,3597.512,5.5963626,60.803448,0.10372095,12823.884,2475.5632,1149.8242,93.58449,0.003315416,0.10372095,1149.8242,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 6:00,11772129,3597.512,8.3299,97.85799,50.506348,37220.34,1639.6512,312.00528,99.52443,0.002618162,50.506348,312.00528,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 7:00,11775961.5,3597.512,81.337125,87.304245,38.55449005,37871.4975,1853.1325,362.271095,7198.864573,0.002613006,38.55449005,362.271095,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 8:00,11779794,3597.512,154.34435,76.7505,26.6026321,38522.655,2066.6138,412.53691,14298.20471,0.002607849,26.6026321,412.53691,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 9:00,11783626.5,3597.512,227.351575,66.196755,14.65077415,39173.8125,2280.0951,462.802725,21397.54486,0.002602693,14.65077415,462.802725,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 10:00,11787459,3597.512,300.3588,55.64301,2.6989162,39824.97,2493.5764,513.06854,28496.885,0.002597536,2.6989162,513.06854,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 11:00,11791639.33,3597.512,202.1285723,60.27102,1.833851117,39016.47233,2214.090167,458.4042933,19009.90808,0.003249116,1.833851117,458.4042933,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 12:00,11795819.67,3597.512,103.8983447,64.89903,0.968786033,38207.97467,1934.603933,403.7400467,9522.931169,0.003900696,0.968786033,403.7400467,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 13:00,11800000,3597.512,5.668117,69.52704,0.10372095,37399.477,1655.1177,349.0758,35.954254,0.004552276,0.10372095,349.0758,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 14:00,11802975,3597.512,103.5450613,63.88835,0.979537133,37631.71,1912.7694,376.2752333,10105.0605,0.003784844,0.979537133,376.2752333,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 15:00,11805950,3597.512,201.4220057,58.24966,1.855353317,37863.943,2170.4211,403.4746667,20174.16675,0.003017411,1.855353317,403.4746667,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 16:00,11808925,3597.512,299.29895,52.61097,2.7311695,38096.176,2428.0728,430.6741,30243.273,0.002249979,2.7311695,430.6741,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 17:00,11812681.8,3597.512,261.126532,51.707458,2.21620314,39253.2532,2401.887,458.57066,26118.799,0.002209115,2.21620314,458.57066,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 18:00,11816438.6,3597.512,222.954114,50.803946,1.70123678,40410.3304,2375.7012,486.46722,21994.325,0.002168251,1.70123678,486.46722,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 19:00,11820195.4,3597.512,184.781696,49.900434,1.18627042,41567.4076,2349.5154,514.36378,17869.851,0.002127386,1.18627042,514.36378,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 20:00,11823952.2,3597.512,146.609278,48.996922,0.67130406,42724.4848,2323.3296,542.26034,13745.377,0.002086522,0.67130406,542.26034,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 21:00,11827709,3597.512,108.43686,48.09341,0.1563377,43881.562,2297.1438,570.1569,9620.903,0.002045658,0.1563377,570.1569,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 22:00,11832018,3597.512,57.1759235,47.6953485,0.130029325,40901.841,1683.14545,456.832,4810.912228,0.002008178,0.130029325,456.832,130901.3,73179.4,-15784.6,-201976.5
+5/17/2023 23:00,11836327,3597.512,5.914987,47.297287,0.10372095,37922.12,1069.1471,343.5071,0.9214565,0.001970698,0.10372095,343.5071,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 0:00,11839169,3597.512,5.899829,47.07863275,0.10372095,28481.31833,941.85655,262.045746,0.816561575,0.001949222,0.10372095,262.045746,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 1:00,11842011,3597.512,5.884671,46.8599785,0.10372095,19040.51667,814.566,180.584392,0.71166665,0.001927746,0.10372095,180.584392,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 2:00,11844853,3597.512,5.869513,46.64132425,0.10372095,9599.714998,687.27545,99.123038,0.606771725,0.001906269,0.10372095,99.123038,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 3:00,11847695,3597.512,5.854355,46.42267,0.10372095,158.91333,559.9849,17.661684,0.5018768,0.001884793,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 4:00,11851298,3597.512,5.8395755,46.364905,0.10372095,188.208185,1369.6615,444.288142,21.4244594,0.001871191,0.10372095,444.288142,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 5:00,11854901,3597.512,5.824796,46.30714,0.10372095,217.50304,2179.3381,870.9146,42.347042,0.001857588,0.10372095,870.9146,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 6:00,11859513.33,3597.512,124.203174,147.9448,17.80145863,14751.46936,2067.482267,745.9902267,86.554928,0.040538493,17.80145863,745.9902267,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 7:00,11864125.67,3597.512,242.581552,249.58246,35.49919632,29285.43568,1955.626433,621.0658533,130.762814,0.079219399,35.49919632,621.0658533,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 8:00,11868738,3597.512,360.95993,351.22012,53.196934,43819.402,1843.7706,496.14148,174.9707,0.117900304,53.196934,496.14148,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 9:00,11869638,3597.512,306.37836,268.93762,2.478339,43403.508,1834.4366,481.63327,198.1134,0.09092149,2.478339,481.63327,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 10:00,11873200.25,3597.512,316.458865,220.50735,2.727602325,42424.6075,1937.3522,466.8421775,3989.32805,0.069259877,2.727602325,466.8421775,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 11:00,11876762.5,3597.512,326.53937,172.07708,2.97686565,41445.707,2040.2678,452.051085,7780.5427,0.047598263,2.97686565,452.051085,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 12:00,11880324.75,3597.512,336.619875,123.64681,3.226128975,40466.8065,2143.1834,437.2599925,11571.75735,0.02593665,3.226128975,437.2599925,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 13:00,11883887,3597.512,346.70038,75.21654,3.4753923,39487.906,2246.099,422.4689,15362.972,0.004275037,3.4753923,422.4689,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 14:00,11887212,3597.512,292.38168,97.22383,2.15796,38484.11,1979.4006,399.62555,3693.3975,0.00987867,2.15796,399.62555,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 15:00,11891043.67,3597.512,282.6785067,88.44968833,1.9795345,39720.80767,2025.361733,424.3948,4409.258333,0.008118777,1.9795345,424.3948,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 16:00,11894875.33,3597.512,272.9753333,79.67554667,1.801109,40957.50533,2071.322867,449.16405,5125.119167,0.006358883,1.801109,449.16405,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 17:00,11898707,3597.512,263.27216,70.901405,1.6226835,42194.203,2117.284,473.9333,5840.98,0.00459899,1.6226835,473.9333,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 18:00,11904493,3597.512,239.16988,121.698456,51.844387,45063.984,2486.1301,615.82715,18728.37,0.004280271,51.844387,615.82715,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 19:00,11905393,3597.512,230.95726,67.389404,1.1872536,45085.812,2474.3503,618.0079,17676.482,0.003955836,1.1872536,618.0079,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 20:00,11909922.33,3597.512,156.0162871,63.51863267,0.82607605,43265.21967,2026.2041,535.2994,11784.66,0.003586238,0.82607605,535.2994,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 21:00,11914451.67,3597.512,81.07531413,59.64786133,0.4648985,41444.62733,1578.0579,452.5909,5892.838009,0.00321664,0.4648985,452.5909,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 22:00,11918981,3597.512,6.1343412,55.77709,0.10372095,39624.035,1129.9117,369.8824,1.0160128,0.002847042,0.10372095,369.8824,130901.3,73179.4,-15784.6,-201976.5
+5/18/2023 23:00,11922045,3597.512,6.11594864,54.8314194,0.10372095,31731.37701,1013.79962,299.4382568,0.909211944,0.002745936,0.10372095,299.4382568,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 0:00,11925109,3597.512,6.09755608,53.8857488,0.10372095,23838.71902,897.68754,228.9941136,0.802411088,0.00264483,0.10372095,228.9941136,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 1:00,11928173,3597.512,6.07916352,52.9400782,0.10372095,15946.06104,781.57546,158.5499704,0.695610232,0.002543723,0.10372095,158.5499704,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 2:00,11931237,3597.512,6.06077096,51.9944076,0.10372095,8053.403048,665.46338,88.1058272,0.588809376,0.002442617,0.10372095,88.1058272,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 3:00,11934301,3597.512,6.0423784,51.048737,0.10372095,160.74506,549.3513,17.661684,0.48200852,0.002341511,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 4:00,11940615,3597.512,6.0116,49.71857,0.10372095,157.42528,1276.3091,14.84055,2.9544287,0.002204736,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 5:00,11941287,3597.512,6.009141,49.94264,0.10372095,203.63953,1298.4005,17.302025,3.6915553,0.002211408,0.10372095,17.302025,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 6:00,11944905.33,3597.512,188.650094,177.2515433,17.74739163,15408.74135,1501.3164,197.2792167,64.41859687,2.409330405,17.74739163,197.2792167,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 7:00,11948523.67,3597.512,371.291047,304.5604467,35.39106232,30613.84318,1704.2323,377.2564083,125.1456384,4.816449403,35.39106232,377.2564083,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 8:00,11952142,3597.512,553.932,431.86935,53.034733,45818.945,1907.1482,557.2336,185.87268,7.2235684,53.034733,557.2336,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 9:00,11956046,3597.512,307.91327,402.08954,2.4245272,43585.77,1832.6743,473.5839,229.50226,0.38265276,2.4245272,473.5839,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 10:00,11960580,3597.512,321.3691,323.4372533,2.8153263,41847.94833,2071.019367,470.4079433,13555.25284,0.660853573,2.8153263,470.4079433,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 11:00,11965114,3597.512,334.82493,244.7849667,3.2061254,40110.12667,2309.364433,467.2319867,26881.00342,0.939054387,3.2061254,467.2319867,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 12:00,11969648,3597.512,348.28076,166.13268,3.5969245,38372.305,2547.7095,464.05603,40206.754,1.2172552,3.5969245,464.05603,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 13:00,11970246,3597.512,344.3616,161.5105,3.4985654,38070.06,2555.8528,469.45483,40550.965,1.2363645,3.4985654,469.45483,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 14:00,11974505,3597.512,287.9442,133.72334,2.1849535,37452.99,2255.9407,421.07114,16147.587,0.98802245,2.1849535,421.07114,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 15:00,11978811,3597.512,276.8102833,121.8338783,2.021303,39349.09,2355.889267,469.30096,20605.468,0.920068087,2.021303,469.30096,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 16:00,11983117,3597.512,265.6763667,109.9444167,1.8576525,41245.19,2455.837833,517.53078,25063.349,0.852113723,1.8576525,517.53078,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 17:00,11987423,3597.512,254.54245,98.054955,1.694002,43141.29,2555.7864,565.7606,29521.23,0.78415936,1.694002,565.7606,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 18:00,11991136,3597.512,227.49377,90.11912,1.2403457,43792.574,2684.7834,667.59875,32413.66,0.06675676,1.2403457,667.59875,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 19:00,11992106,3597.512,226.94473,89.090965,1.2318785,43777.867,2624.0837,661.9561,26727.521,0.04350642,1.2318785,661.9561,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 20:00,11996053,3597.512,457.490815,265.5167525,27.09987575,45111.7145,2319.309,624.299215,13741.55253,9.63852821,27.09987575,624.299215,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 21:00,12000000,3597.512,688.0369,441.94254,52.967873,46445.562,2014.5343,586.64233,755.58405,19.23355,52.967873,586.64233,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 22:00,12003993,3597.512,347.0155396,258.703205,26.53579698,42540.5585,1506.45337,463.223495,378.1686246,9.619779185,26.53579698,463.223495,130901.3,73179.4,-15784.6,-201976.5
+5/19/2023 23:00,12007986,3597.512,5.9941792,75.46387,0.10372095,38635.555,998.37244,339.80466,0.75319916,0.006008369,0.10372095,339.80466,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 0:00,12011150.25,3597.512,5.975989775,73.3878875,0.10372095,29016.84769,884.650855,259.268916,0.682735733,0.005654377,0.10372095,259.268916,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 1:00,12014314.5,3597.512,5.95780035,71.311905,0.10372095,19398.14039,770.92927,178.733172,0.612272305,0.005300386,0.10372095,178.733172,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 2:00,12017478.75,3597.512,5.939610925,69.2359225,0.10372095,9779.433077,657.207685,98.197428,0.541808878,0.004946394,0.10372095,98.197428,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 3:00,12020643,3597.512,5.9214215,67.15994,0.10372095,160.72577,543.4861,17.661684,0.47134545,0.004592402,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 4:00,12026647,3597.512,5.896728,64.71149,0.10372095,157.47838,1296.8523,14.84055,5.2158623,0.004212991,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 5:00,12030088,3597.512,5.883204667,63.88624556,0.10372095,4580.64056,1440.226433,70.6598,4287.194433,0.004096159,0.10372095,70.6598,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 6:00,12033529,3597.512,5.869681333,63.06100111,0.10372095,9003.80274,1583.600567,126.47905,8569.173004,0.003979328,0.10372095,126.47905,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 7:00,12036970,3597.512,5.856158,62.23575667,0.10372095,13426.96492,1726.9747,182.2983,12851.15157,0.003862496,0.10372095,182.2983,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 8:00,12040411,3597.512,5.842634667,61.41051222,0.10372095,17850.1271,1870.348833,238.11755,17133.13015,0.003745665,0.10372095,238.11755,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 9:00,12043852,3597.512,5.829111333,60.58526778,0.10372095,22273.28928,2013.722967,293.9368,21415.10872,0.003628833,0.10372095,293.9368,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 10:00,12047293,3597.512,5.815588,59.76002333,0.10372095,26696.45146,2157.0971,349.75605,25697.08729,0.003512002,0.10372095,349.75605,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 11:00,12050734,3597.512,5.802064667,58.93477889,0.10372095,31119.61364,2300.471233,405.5753,29979.06586,0.00339517,0.10372095,405.5753,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 12:00,12054175,3597.512,5.788541333,58.10953444,0.10372095,35542.77582,2443.845367,461.39455,34261.04443,0.003278339,0.10372095,461.39455,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 13:00,12057616,3597.512,5.775018,57.28429,0.10372095,39965.938,2587.2195,517.2138,38543.023,0.003161507,0.10372095,517.2138,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 14:00,12061337.33,3597.512,5.788588278,56.81376833,0.10372095,39835.85244,2546.584556,506.9578089,35775.07944,0.003102566,0.10372095,506.9578089,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 15:00,12065058.67,3597.512,5.802158556,56.34324667,0.10372095,39705.76689,2505.949611,496.7018178,33007.13589,0.003043625,0.10372095,496.7018178,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 16:00,12068780,3597.512,5.815728833,55.872725,0.10372095,39575.68133,2465.314667,486.4458267,30239.19233,0.002984684,0.10372095,486.4458267,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 17:00,12072501.33,3597.512,5.829299111,55.40220333,0.10372095,39445.59578,2424.679722,476.1898356,27471.24878,0.002925743,0.10372095,476.1898356,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 18:00,12076222.67,3597.512,5.842869389,54.93168167,0.10372095,39315.51022,2384.044778,465.9338444,24703.30522,0.002866801,0.10372095,465.9338444,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 19:00,12079944,3597.512,5.856439667,54.46116,0.10372095,39185.42467,2343.409833,455.6778533,21935.36167,0.00280786,0.10372095,455.6778533,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 20:00,12083665.33,3597.512,5.870009944,53.99063833,0.10372095,39055.33911,2302.774889,445.4218622,19167.41811,0.002748919,0.10372095,445.4218622,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 21:00,12087386.67,3597.512,5.883580222,53.52011667,0.10372095,38925.25356,2262.139944,435.1658711,16399.47456,0.002689978,0.10372095,435.1658711,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 22:00,12091108,3597.512,5.8971505,53.049595,0.10372095,38795.168,2221.505,424.90988,13631.531,0.002631037,0.10372095,424.90988,130901.3,73179.4,-15784.6,-201976.5
+5/20/2023 23:00,12095237,3597.512,5.87747475,52.661339,0.10372095,19674.83285,1546.927,221.2046,6816.416724,0.002585256,0.10372095,221.2046,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 0:00,12099366,3597.512,5.857799,52.273083,0.10372095,554.4977,872.349,17.49932,1.3024486,0.002539475,0.10372095,17.49932,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 1:00,12100000,3597.512,5.8046894,58.612846,0.10372095,43730.562,2243.6328,516.2018,9670.255,0.003338496,0.10372095,516.2018,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 2:00,12103447.5,3597.512,5.81519005,55.119648,0.10372095,21944.28414,1443.4949,266.931742,4835.466149,0.002901552,0.10372095,266.931742,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 3:00,12106895,3597.512,5.8256907,51.62645,0.10372095,158.00629,643.357,17.661684,0.6772977,0.002464609,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 4:00,12110563.67,3597.512,5.804691133,51.34072,0.10372095,12086.14753,998.9007333,110.471996,206.6789985,0.002432177,0.10372095,110.471996,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 5:00,12114232.33,3597.512,5.783691567,51.05499,0.10372095,24014.28876,1354.444467,203.282308,412.6806992,0.002399745,0.10372095,203.282308,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 6:00,12117901,3597.512,5.762692,50.76926,0.10372095,35942.43,1709.9882,296.09262,618.6824,0.002367313,0.10372095,296.09262,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 7:00,12121529.2,3597.512,5.7663213,50.55592307,0.10372095,36391.894,1747.30052,312.1774387,1239.840173,0.002344426,0.10372095,312.1774387,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 8:00,12125157.4,3597.512,5.7699506,50.34258613,0.10372095,36841.358,1784.61284,328.2622573,1860.997947,0.002321539,0.10372095,328.2622573,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 9:00,12128785.6,3597.512,5.7735799,50.1292492,0.10372095,37290.822,1821.92516,344.347076,2482.15572,0.002298651,0.10372095,344.347076,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 10:00,12132413.8,3597.512,5.7772092,49.91591227,0.10372095,37740.286,1859.23748,360.4318947,3103.313493,0.002275764,0.10372095,360.4318947,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 11:00,12136042,3597.512,5.7808385,49.70257533,0.10372095,38189.75,1896.5498,376.5167133,3724.471267,0.002252877,0.10372095,376.5167133,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 12:00,12139670.2,3597.512,5.7844678,49.4892384,0.10372095,38639.214,1933.86212,392.601532,4345.62904,0.00222999,0.10372095,392.601532,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 13:00,12143298.4,3597.512,5.7880971,49.27590147,0.10372095,39088.678,1971.17444,408.6863507,4966.786813,0.002207103,0.10372095,408.6863507,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 14:00,12146926.6,3597.512,5.7917264,49.06256453,0.10372095,39538.142,2008.48676,424.7711693,5587.944587,0.002184215,0.10372095,424.7711693,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 15:00,12150554.8,3597.512,5.7953557,48.8492276,0.10372095,39987.606,2045.79908,440.855988,6209.10236,0.002161328,0.10372095,440.855988,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 16:00,12154183,3597.512,5.798985,48.63589067,0.10372095,40437.07,2083.1114,456.9408067,6830.260133,0.002138441,0.10372095,456.9408067,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 17:00,12157811.2,3597.512,5.8026143,48.42255373,0.10372095,40886.534,2120.42372,473.0256253,7451.417907,0.002115554,0.10372095,473.0256253,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 18:00,12161439.4,3597.512,5.8062436,48.2092168,0.10372095,41335.998,2157.73604,489.110444,8072.57568,0.002092667,0.10372095,489.110444,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 19:00,12165067.6,3597.512,5.8098729,47.99587987,0.10372095,41785.462,2195.04836,505.1952627,8693.733453,0.002069779,0.10372095,505.1952627,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 20:00,12168695.8,3597.512,5.8135022,47.78254293,0.10372095,42234.926,2232.36068,521.2800813,9314.891227,0.002046892,0.10372095,521.2800813,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 21:00,12172324,3597.512,5.8171315,47.569206,0.10372095,42684.39,2269.673,537.3649,9936.049,0.002024005,0.10372095,537.3649,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 22:00,12176589,3597.512,5.80252175,47.372638,0.10372095,40024.2965,1648.9455,432.98804,4968.452186,0.002004014,0.10372095,432.98804,130901.3,73179.4,-15784.6,-201976.5
+5/21/2023 23:00,12180854,3597.512,5.787912,47.17607,0.10372095,37364.203,1028.218,328.61118,0.8553718,0.001984022,0.10372095,328.61118,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 0:00,12183966,3597.512,5.77339215,47.0420285,0.10372095,28062.95447,905.8852875,250.873806,0.75736737,0.001970585,0.10372095,250.873806,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 1:00,12187078,3597.512,5.7588723,46.907987,0.10372095,18761.70593,783.552575,173.136432,0.65936294,0.001957147,0.10372095,173.136432,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 2:00,12190190,3597.512,5.74435245,46.7739455,0.10372095,9460.457395,661.2198625,95.399058,0.56135851,0.00194371,0.10372095,95.399058,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 3:00,12193302,3597.512,5.7298326,46.639904,0.10372095,159.20886,538.88715,17.661684,0.46335408,0.001930272,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 4:00,12200000,3597.512,5.953498,48.7163,0.10372095,37422.855,2507.4614,464.91058,35302.023,0.002143427,0.10372095,464.91058,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 5:00,12200482,3597.512,6.0077567,46.723015,0.10372095,196.651,1793.8109,489.34387,34.686592,0.001921279,0.10372095,489.34387,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 6:00,12204081.5,3597.512,391.1385534,246.2902175,26.53941897,23370.8255,1862.57345,542.729855,81.535276,14.18936064,26.53941897,542.729855,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 7:00,12207681,3597.512,776.26935,445.85742,52.975117,46545,1931.336,596.11584,128.38396,28.3768,52.975117,596.11584,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 8:00,12213816,3597.512,393.0482,461.75784,52.681187,43426.76,1961.1542,492.38647,1289.5809,2.4283242,52.681187,492.38647,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 9:00,12216868,3597.512,381.350145,397.276265,40.51520443,42328.6,2135.04155,490.0053225,14087.09692,4.08553415,40.51520443,490.0053225,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 10:00,12219920,3597.512,369.65209,332.79469,28.34922185,41230.44,2308.9289,487.624175,26884.61295,5.7427441,28.34922185,487.624175,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 11:00,12222972,3597.512,357.954035,268.313115,16.18323928,40132.28,2482.81625,485.2430275,39682.12898,7.39995405,16.18323928,485.2430275,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 12:00,12226024,3597.512,346.25598,203.83154,4.0172567,39034.12,2656.7036,482.86188,52479.645,9.057164,4.0172567,482.86188,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 13:00,12229610,3597.512,322.61263,184.0163567,3.525794633,38492.92,2549.012433,458.3032333,42742.02367,12.418764,3.525794633,458.3032333,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 14:00,12233196,3597.512,298.96928,164.2011733,3.034332567,37951.72,2441.321267,433.7445867,33004.40233,15.780364,3.034332567,433.7445867,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 15:00,12236782,3597.512,275.32593,144.38599,2.5428705,37410.52,2333.6301,409.18594,23266.781,19.141964,2.5428705,409.18594,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 16:00,12240037,3597.512,298.1829,148.00839,3.5298853,37042.773,2379.5652,416.65128,26845.312,39.77247,3.5298853,416.65128,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 17:00,12247152,3597.512,242.58401,98.01203,1.7940185,42732.434,3733.853,1242.3496,108658.62,0.8876605,1.7940185,1242.3496,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 18:00,12247212,3597.512,242.5541,98.408844,1.7917684,42769.953,3754.294,1259.0599,109439.15,1.0037359,1.7917684,1259.0599,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 19:00,12251200,3597.512,210.4005333,93.732736,1.337495007,43085.94867,3265.238567,1026.73728,76147.41633,0.673131109,1.337495007,1026.73728,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 20:00,12255188,3597.512,178.2469667,89.056628,0.883221613,43401.94433,2776.183133,794.41466,42855.68267,0.342526319,0.883221613,794.41466,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 21:00,12259176,3597.512,146.0934,84.38052,0.42894822,43717.94,2287.1277,562.09204,9563.949,0.011921528,0.42894822,562.09204,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 22:00,12263014,3597.512,75.900505,83.273203,0.266334585,40800.6,1680.58185,452.52287,4782.443605,0.009664603,0.266334585,452.52287,130901.3,73179.4,-15784.6,-201976.5
+5/22/2023 23:00,12266852,3597.512,5.70761,82.165886,0.10372095,37883.26,1074.036,342.9537,0.9382102,0.007407677,0.10372095,342.9537,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 0:00,12270067.5,3597.512,5.6917484,79.5334855,0.10372095,28451.06576,941.298525,261.630696,0.821501845,0.00690757,0.10372095,261.630696,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 1:00,12273283,3597.512,5.6758868,76.901085,0.10372095,19018.87153,808.56105,180.307692,0.70479349,0.006407463,0.10372095,180.307692,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 2:00,12276498.5,3597.512,5.6600252,74.2686845,0.10372095,9586.677288,675.823575,98.984688,0.588085135,0.005907355,0.10372095,98.984688,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 3:00,12279714,3597.512,5.6441636,71.636284,0.10372095,154.48305,543.0861,17.661684,0.47137678,0.005407248,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 4:00,12283309.5,3597.512,5.6324048,70.2000845,0.10372095,190.562435,1167.62075,256.205742,11.05118189,0.005139974,0.10372095,256.205742,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 5:00,12286905,3597.512,5.620646,68.763885,0.10372095,226.64182,1792.1554,494.7498,21.630987,0.0048727,0.10372095,494.7498,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 6:00,12290510,3597.512,273.037473,258.1932225,26.52053398,23312.87741,1860.6992,543.76365,77.5172285,2.9587161,26.52053398,543.76365,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 7:00,12294115,3597.512,540.4543,447.62256,52.937347,46399.113,1929.243,592.7775,133.40347,5.9125595,52.937347,592.7775,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 8:00,12298297,3597.512,297.12253,404.45026,2.3188698,44910.26,1933.1287,532.0541,508.5748,0.6525564,2.3188698,532.0541,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 9:00,12302007.33,3597.512,308.46158,356.6177733,2.701369433,43287.788,2184.161567,527.0325467,17615.35587,2.310488367,2.701369433,527.0325467,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 10:00,12305717.67,3597.512,319.80063,308.7852867,3.083869067,41665.316,2435.194433,522.0109933,34722.13693,3.968420333,3.083869067,522.0109933,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 11:00,12309428,3597.512,331.13968,260.9528,3.4663687,40042.844,2686.2273,516.98944,51828.918,5.6263523,3.4663687,516.98944,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 12:00,12313446.83,3597.512,316.7429567,249.183485,12.26271892,40426.7,2937.588083,658.5237667,74875.92833,4.8641457,12.26271892,658.5237667,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 13:00,12317465.67,3597.512,302.3462333,237.41417,21.05906913,40810.556,3188.948867,800.0580933,97922.93867,4.1019391,21.05906913,800.0580933,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 14:00,12321484.5,3597.512,287.94951,225.644855,29.85541935,41194.412,3440.30965,941.59242,120969.949,3.3397325,29.85541935,941.59242,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 15:00,12325503.33,3597.512,273.5527867,213.87554,38.65176957,41578.268,3691.670433,1083.126747,144016.9593,2.5775259,38.65176957,1083.126747,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 16:00,12329522.17,3597.512,259.1560633,202.106225,47.44811978,41962.124,3943.031217,1224.661073,167063.9697,1.8153193,47.44811978,1224.661073,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 17:00,12333541,3597.512,244.75934,190.33691,56.24447,42345.98,4194.392,1366.1954,190110.98,1.0531127,56.24447,1366.1954,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 18:00,12333601,3597.512,244.73438,136.09181,1.764621,42364.766,4201.231,1367.2258,191700.78,1.1520264,1.764621,1367.2258,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 19:00,12337775,3597.512,196.9341979,128.792474,1.43244099,41273.4848,3724.80316,1160.464624,153673.4438,0.924077348,1.43244099,1160.464624,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 20:00,12341949,3597.512,149.1340158,121.493138,1.10026098,40182.2036,3248.37532,953.703448,115646.1076,0.696128296,1.10026098,953.703448,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 21:00,12346123,3597.512,101.3338337,114.193802,0.76808097,39090.9224,2771.94748,746.942272,77618.77146,0.468179243,0.76808097,746.942272,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 22:00,12350297,3597.512,53.5336516,106.894466,0.43590096,37999.6412,2295.51964,540.181096,39591.43528,0.240230191,0.43590096,540.181096,130901.3,73179.4,-15784.6,-201976.5
+5/23/2023 23:00,12354471,3597.512,5.7334695,99.59513,0.10372095,36908.36,1819.0918,333.41992,1564.0991,0.012281139,0.10372095,333.41992,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 0:00,12358646,3597.512,5.6997085,96.47903,0.10372095,322.8354,1168.1494,17.449303,2.4585779,0.010558893,0.10372095,17.449303,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 1:00,12361118.67,3597.512,5.691317,95.36127667,0.10372095,267.40912,1002.529667,17.52009667,1.886643067,0.009977402,0.10372095,17.52009667,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 2:00,12363591.33,3597.512,5.6829255,94.24352333,0.10372095,211.98284,836.9099333,17.59089033,1.314708233,0.009395912,0.10372095,17.59089033,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 3:00,12366064,3597.512,5.674534,93.12577,0.10372095,156.55656,671.2902,17.661684,0.7427734,0.008814421,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 4:00,12369899,3597.512,15.29378267,90.97634833,0.10372095,13226.18437,1021.2416,134.562656,67.88291893,0.008325346,0.10372095,134.562656,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 5:00,12373734,3597.512,24.91303133,88.82692667,0.10372095,26295.81219,1371.193,251.463628,135.0230645,0.00783627,0.10372095,251.463628,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 6:00,12377569,3597.512,34.53228,86.677505,0.10372095,39365.44,1721.1444,368.3646,202.16321,0.007347195,0.10372095,368.3646,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 7:00,12381307.5,3597.512,29.736115,89.5223125,0.10372095,39211.7345,1995.126667,511.6702667,8046.602175,0.008755401,0.10372095,511.6702667,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 8:00,12385046,3597.512,24.93995,92.36712,0.10372095,39058.029,2269.108933,654.9759333,15891.04114,0.010163607,0.10372095,654.9759333,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 9:00,12388784.5,3597.512,20.143785,95.2119275,0.10372095,38904.3235,2543.0912,798.2816,23735.48011,0.011571814,0.10372095,798.2816,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 10:00,12392523,3597.512,15.34762,98.056735,0.10372095,38750.618,2817.073467,941.5872667,31579.91907,0.01298002,0.10372095,941.5872667,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 11:00,12396261.5,3597.512,10.551455,100.9015425,0.10372095,38596.9125,3091.055733,1084.892933,39424.35804,0.014388226,0.10372095,1084.892933,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 12:00,12400000,3597.512,5.75529,103.74635,0.10372095,38443.207,3365.038,1228.1986,47268.797,0.015796432,0.10372095,1228.1986,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 13:00,12404055,3597.512,292.4284,78.45493,2.7846024,37706.57,2190.8867,413.8393,12463.462,0.005727629,2.7846024,413.8393,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 14:00,12407568.4,3597.512,263.7723075,77.495733,2.516514255,37746.61,2073.23161,406.146718,11217.19585,0.005627033,2.516514255,406.146718,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 15:00,12411081.8,3597.512,235.116215,76.536536,2.24842611,37786.65,1955.57652,398.454136,9970.929705,0.005526437,2.24842611,398.454136,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 16:00,12414595.2,3597.512,206.4601225,75.577339,1.980337965,37826.69,1837.92143,390.761554,8724.663558,0.005425841,1.980337965,390.761554,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 17:00,12418108.6,3597.512,177.80403,74.618142,1.71224982,37866.73,1720.26634,383.068972,7478.39741,0.005325245,1.71224982,383.068972,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 18:00,12421622,3597.512,149.1479375,73.658945,1.444161675,37906.77,1602.61125,375.37639,6232.131263,0.005224649,1.444161675,375.37639,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 19:00,12425135.4,3597.512,120.491845,72.699748,1.17607353,37946.81,1484.95616,367.683808,4985.865115,0.005124053,1.17607353,367.683808,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 20:00,12428648.8,3597.512,91.8357525,71.740551,0.907985385,37986.85,1367.30107,359.991226,3739.598968,0.005023457,0.907985385,359.991226,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 21:00,12432162.2,3597.512,63.17966,70.781354,0.63989724,38026.89,1249.64598,352.298644,2493.33282,0.004922861,0.63989724,352.298644,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 22:00,12435675.6,3597.512,34.5235675,69.822157,0.371809095,38066.93,1131.99089,344.606062,1247.066673,0.004822265,0.371809095,344.606062,130901.3,73179.4,-15784.6,-201976.5
+5/24/2023 23:00,12439189,3597.512,5.867475,68.86296,0.10372095,38106.97,1014.3358,336.91348,0.80052555,0.004721669,0.10372095,336.91348,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 0:00,12442543.25,3597.512,5.84896375,68.420565,0.10372095,28620.19622,895.6472,257.100531,0.716710883,0.004659146,0.10372095,257.100531,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 1:00,12445897.5,3597.512,5.8304525,67.97817,0.10372095,19133.42243,776.9586,177.287582,0.632896215,0.004596623,0.10372095,177.287582,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 2:00,12449251.75,3597.512,5.81194125,67.535775,0.10372095,9646.648645,658.27,97.474633,0.549081547,0.004534099,0.10372095,97.474633,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 3:00,12452606,3597.512,5.79343,67.09338,0.10372095,159.87486,539.5814,17.661684,0.46526688,0.004471576,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 4:00,12456166,3597.512,5.77985365,66.884657,0.10372095,205.604285,980.8074,74.754442,6.44137319,0.004426414,0.10372095,74.754442,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 5:00,12459726,3597.512,5.7662773,66.675934,0.10372095,251.33371,1422.0334,131.8472,12.4174795,0.004381251,0.10372095,131.8472,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 6:00,12464989.5,3597.512,210.6250187,251.417207,26.58109798,22555.02435,1673.82995,339.9034,176.1434798,0.336076926,26.58109798,339.9034,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 7:00,12470253,3597.512,415.48376,436.15848,53.058475,44858.715,1925.6265,547.9596,339.86948,0.6677726,53.058475,547.9596,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 8:00,12471153,3597.512,299.48853,384.93835,2.3744206,44545.598,1883.533,530.42426,204.23729,0.56175524,2.3744206,530.42426,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 9:00,12474435.5,3597.512,300.1216,376.69244,2.38608785,43061.569,1871.0855,482.67523,462.230595,0.365577025,2.38608785,482.67523,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 10:00,12477718,3597.512,300.75467,368.44653,2.3977551,41577.54,1858.638,434.9262,720.2239,0.16939881,2.3977551,434.9262,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 11:00,12481427,3597.512,326.866075,330.04385,3.06185105,40175.76,2257.07085,454.74362,27144.00845,0.148090645,3.06185105,454.74362,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 12:00,12485136,3597.512,352.97748,291.64117,3.725947,38773.98,2655.5037,474.56104,53567.793,0.12678248,3.725947,474.56104,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 13:00,12490275.5,3597.512,318.83329,262.278625,2.92212385,38106.457,2459.1122,438.25897,35821.8415,0.08857406,2.92212385,438.25897,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 14:00,12495415,3597.512,284.6891,232.91608,2.1183007,37438.934,2262.7207,401.9569,18075.89,0.05036564,2.1183007,401.9569,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 15:00,12497707.5,3597.512,145.2517995,150.16439,1.111010825,18800.0364,1409.7562,209.809292,9038.193849,0.027441062,1.111010825,209.809292,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 16:00,12500000,3597.512,5.814499,67.4127,0.10372095,161.1388,556.7917,17.661684,0.49769798,0.004516484,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 17:00,12503365.5,3597.512,131.1501495,131.484115,0.852056425,21235.5654,1630.37105,310.807742,21193.23885,0.01965334,0.852056425,310.807742,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 18:00,12506731,3597.512,256.4858,195.55553,1.6003919,42309.992,2703.9504,603.9538,42385.98,0.034790196,1.6003919,603.9538,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 19:00,12511212,3597.512,244.427255,186.673105,1.4130935,42208.3495,2605.2582,589.79483,33132.5065,0.031719048,1.4130935,589.79483,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 20:00,12515693,3597.512,232.36871,177.79068,1.2257951,42106.707,2506.566,575.63586,23879.033,0.0286479,1.2257951,575.63586,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 21:00,12519532.67,3597.512,156.9411495,172.6288667,0.851770383,40581.09233,2012.4013,492.8671133,15919.6384,0.02712883,0.851770383,492.8671133,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 22:00,12523372.33,3597.512,81.51358907,167.4670533,0.477745667,39055.47767,1518.2366,410.0983667,7960.243798,0.025609759,0.477745667,410.0983667,130901.3,73179.4,-15784.6,-201976.5
+5/25/2023 23:00,12527212,3597.512,6.0860286,162.30524,0.10372095,37529.863,1024.0719,327.32962,0.8491971,0.024090689,0.10372095,327.32962,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 0:00,12530139.75,3597.512,6.0683357,159.9372425,0.10372095,28187.28296,906.363975,249.912636,0.75967245,0.023405983,0.10372095,249.912636,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 1:00,12533067.5,3597.512,6.0506428,157.569245,0.10372095,18844.70291,788.65605,172.495652,0.6701478,0.022721276,0.10372095,172.495652,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 2:00,12535995.25,3597.512,6.0329499,155.2012475,0.10372095,9502.122865,670.948125,95.078668,0.58062315,0.02203657,0.10372095,95.078668,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 3:00,12538923,3597.512,6.015257,152.83325,0.10372095,159.54282,553.2402,17.661684,0.4910985,0.021351863,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 4:00,12542528.5,3597.512,5.9985095,150.90769,0.10372095,211.24115,1033.64895,115.944352,13.38790625,0.020839971,0.10372095,115.944352,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 5:00,12546134,3597.512,5.981762,148.98213,0.10372095,262.93948,1514.0577,214.22702,26.284714,0.020328078,0.10372095,214.22702,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 6:00,12551354.5,3597.512,186.591431,263.005765,26.56875397,22734.14974,1703.72435,376.33341,119.884447,0.076233509,26.56875397,376.33341,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 7:00,12556575,3597.512,367.2011,377.0294,53.033787,45205.36,1893.391,538.4398,213.48418,0.13213894,53.033787,538.4398,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 8:00,12556893,3597.512,300.08032,322.42902,2.3341231,45076.49,1890.9556,533.6995,224.79814,0.12828486,2.3341231,533.6995,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 9:00,12560899,3597.512,302.03015,284.5959,2.3915384,42296.152,1958.1224,455.66473,1870.7498,0.75002575,2.3915384,455.66473,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 10:00,12565171,3597.512,320.076875,256.11132,3.0086032,40909.656,2323.8057,476.819685,28509.9629,5.360367875,3.0086032,476.819685,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 11:00,12569443,3597.512,338.1236,227.62674,3.625668,39523.16,2689.489,497.97464,55149.176,9.97071,3.625668,497.97464,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 12:00,12573327.67,3597.512,322.1007083,213.1326117,3.3202306,39960.66267,2932.3885,641.3448333,75880.42,8.459196383,3.3202306,641.3448333,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 13:00,12577212.33,3597.512,306.0778167,198.6384833,3.0147932,40398.16533,3175.288,784.7150267,96611.664,6.947682767,3.0147932,784.7150267,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 14:00,12581097,3597.512,290.054925,184.144355,2.7093558,40835.668,3418.1875,928.08522,117342.908,5.43616915,2.7093558,928.08522,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 15:00,12584981.67,3597.512,274.0320333,169.6502267,2.4039184,41273.17067,3661.087,1071.455413,138074.152,3.924655533,2.4039184,1071.455413,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 16:00,12588866.33,3597.512,258.0091417,155.1560983,2.098481,41710.67333,3903.9865,1214.825607,158805.396,2.413141917,2.098481,1214.825607,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 17:00,12592751,3597.512,241.98625,140.66197,1.7930436,42148.176,4146.886,1358.1958,179536.64,0.9016283,1.7930436,1358.1958,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 18:00,12592811,3597.512,241.96165,141.00577,1.7707602,42165.727,4153.8887,1359.201,181136.55,1.0202383,1.7707602,1359.201,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 19:00,12596405.5,3597.512,216.729675,286.145135,26.1385541,40150.7695,2913.49275,857.64305,90603.44424,1.1831473,26.1385541,857.64305,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 20:00,12600000,3597.512,191.4977,431.2845,50.506348,38135.812,1673.0968,356.0851,70.33849,1.3460563,50.506348,356.0851,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 21:00,12604569.5,3597.512,98.602726,272.55892,25.30503448,38855.401,1761.9978,374.937675,598.916145,0.678829566,25.30503448,374.937675,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 22:00,12609139,3597.512,5.707752,113.83334,0.10372095,39574.99,1850.8988,393.79025,1127.4938,0.011602832,0.10372095,393.79025,130901.3,73179.4,-15784.6,-201976.5
+5/26/2023 23:00,12612959,3597.512,5.6854525,108.0777725,0.10372095,24401.6115,1256.5711,205.672901,564.1081009,0.010214533,0.10372095,205.672901,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 0:00,12616779,3597.512,5.663153,102.322205,0.10372095,9228.233,662.2434,17.555552,0.7224018,0.008826233,0.10372095,17.555552,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 1:00,12619615.33,3597.512,5.654087667,98.92042333,0.10372095,6204.825337,619.2653,17.59092933,0.632956533,0.00827438,0.10372095,17.59092933,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 2:00,12622451.67,3597.512,5.645022333,95.51864167,0.10372095,3181.417673,576.2872,17.62630667,0.543511267,0.007722526,0.10372095,17.62630667,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 3:00,12625288,3597.512,5.635957,92.11686,0.10372095,158.01001,533.3091,17.661684,0.454066,0.007170673,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 4:00,12628926.67,3597.512,5.628638433,89.09947333,0.10372095,12069.02734,887.0967,105.1209893,21.360294,0.00673765,0.10372095,105.1209893,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 5:00,12632565.33,3597.512,5.621319867,86.08208667,0.10372095,23980.04467,1240.8843,192.5802947,42.266522,0.006304626,0.10372095,192.5802947,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 6:00,12636204,3597.512,5.6140013,83.0647,0.10372095,35891.062,1594.6719,280.0396,63.17275,0.005871603,0.10372095,280.0396,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 7:00,12639817,3597.512,5.60013316,81.214878,0.10372095,36889.8816,1812.76984,333.98852,9473.589,0.005633167,0.10372095,333.98852,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 8:00,12643430,3597.512,5.58626502,79.365056,0.10372095,37888.7012,2030.86778,387.93744,18884.00525,0.005394732,0.10372095,387.93744,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 9:00,12647043,3597.512,5.57239688,77.515234,0.10372095,38887.5208,2248.96572,441.88636,28294.4215,0.005156296,0.10372095,441.88636,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 10:00,12650656,3597.512,5.55852874,75.665412,0.10372095,39886.3404,2467.06366,495.83528,37704.83775,0.004917861,0.10372095,495.83528,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 11:00,12654269,3597.512,5.5446606,73.81559,0.10372095,40885.16,2685.1616,549.7842,47115.254,0.004679425,0.10372095,549.7842,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 12:00,12657858.33,3597.512,5.579477583,66.1607485,0.103670111,40628.13917,2863.541933,669.4852667,57249.285,0.004088555,0.103670111,669.4852667,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 13:00,12661447.67,3597.512,5.614294567,58.505907,0.103619271,40371.11833,3041.922267,789.1863333,67383.316,0.003497685,0.103619271,789.1863333,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 14:00,12665037,3597.512,5.64911155,50.8510655,0.103568432,40114.0975,3220.3026,908.8874,77517.347,0.002906815,0.103568432,908.8874,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 15:00,12668626.33,3597.512,5.683928533,43.196224,0.103517593,39857.07667,3398.682933,1028.588467,87651.378,0.002315945,0.103517593,1028.588467,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 16:00,12672215.67,3597.512,5.718745517,35.5413825,0.103466753,39600.05583,3577.063267,1148.289533,97785.409,0.001725075,0.103466753,1148.289533,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 17:00,12675805,3597.512,5.7535625,27.886541,0.103415914,39343.035,3755.4436,1267.9906,107919.44,0.001134205,0.103415914,1267.9906,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 18:00,12682659,3597.512,5.761917,88.705444,0.10372095,41542.457,4494.8633,1363.1425,280831.84,0.009045854,0.10372095,1363.1425,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 19:00,12686053.8,3597.512,5.7428684,85.8024732,0.10372095,40874.9508,3946.17456,1160.812804,224766.052,0.008277292,0.10372095,1160.812804,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 20:00,12689448.6,3597.512,5.7238198,82.8995024,0.10372095,40207.4446,3397.48582,958.483108,168700.264,0.00750873,0.10372095,958.483108,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 21:00,12692843.4,3597.512,5.7047712,79.9965316,0.10372095,39539.9384,2848.79708,756.153412,112634.476,0.006740169,0.10372095,756.153412,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 22:00,12696238.2,3597.512,5.6857226,77.0935608,0.10372095,38872.4322,2300.10834,553.823716,56568.68794,0.005971607,0.10372095,553.823716,130901.3,73179.4,-15784.6,-201976.5
+5/27/2023 23:00,12699633,3597.512,5.666674,74.19059,0.10372095,38204.926,1751.4196,351.49402,502.89993,0.005203045,0.10372095,351.49402,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 0:00,12703979,3597.512,5.6407676,71.73898,0.10372095,1378.2754,810.5045,17.517574,1.1140715,0.004806035,0.10372095,17.517574,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 1:00,12706576.33,3597.512,5.631336067,70.58463833,0.10372095,971.0897133,550.836196,16.62523267,0.742807101,0.004631427,0.10372095,16.62523267,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 2:00,12709173.67,3597.512,5.621904533,69.43029667,0.10372095,563.9040267,291.167892,15.73289133,0.371542703,0.00445682,0.10372095,15.73289133,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 3:00,12711771,3597.512,5.612473,68.275955,0.10372095,156.71834,31.499588,14.84055,0.000278304,0.004282212,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 4:00,12715384.63,3597.512,5.616631975,67.50458438,0.10372095,2688.971756,190.2782387,47.91111188,2107.945261,0.004185163,0.10372095,47.91111188,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 5:00,12718998.25,3597.512,5.62079095,66.73321375,0.10372095,5221.225173,349.0568895,80.98167375,4215.890244,0.004088114,0.10372095,80.98167375,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 6:00,12722611.88,3597.512,5.624949925,65.96184313,0.10372095,7753.478589,507.8355403,114.0522356,6323.835226,0.003991065,0.10372095,114.0522356,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 7:00,12726225.5,3597.512,5.6291089,65.1904725,0.10372095,10285.73201,666.614191,147.1227975,8431.780209,0.003894017,0.10372095,147.1227975,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 8:00,12729839.13,3597.512,5.633267875,64.41910188,0.10372095,12817.98542,825.3928418,180.1933594,10539.72519,0.003796968,0.10372095,180.1933594,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 9:00,12733452.75,3597.512,5.63742685,63.64773125,0.10372095,15350.23884,984.1714925,213.2639213,12647.67017,0.003699919,0.10372095,213.2639213,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 10:00,12737066.38,3597.512,5.641585825,62.87636063,0.10372095,17882.49225,1142.950143,246.3344831,14755.61516,0.00360287,0.10372095,246.3344831,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 11:00,12740680,3597.512,5.6457448,62.10499,0.10372095,20414.74567,1301.728794,279.405045,16863.56014,0.003505821,0.10372095,279.405045,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 12:00,12744293.63,3597.512,5.649903775,61.33361938,0.10372095,22946.99909,1460.507445,312.4756069,18971.50512,0.003408772,0.10372095,312.4756069,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 13:00,12747907.25,3597.512,5.65406275,60.56224875,0.10372095,25479.2525,1619.286095,345.5461688,21079.4501,0.003311723,0.10372095,345.5461688,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 14:00,12751520.88,3597.512,5.658221725,59.79087813,0.10372095,28011.50592,1778.064746,378.6167306,23187.39509,0.003214674,0.10372095,378.6167306,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 15:00,12755134.5,3597.512,5.6623807,59.0195075,0.10372095,30543.75934,1936.843397,411.6872925,25295.34007,0.003117626,0.10372095,411.6872925,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 16:00,12758748.13,3597.512,5.666539675,58.24813688,0.10372095,33076.01275,2095.622048,444.7578544,27403.28505,0.003020577,0.10372095,444.7578544,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 17:00,12762361.75,3597.512,5.67069865,57.47676625,0.10372095,35608.26617,2254.400699,477.8284163,29511.23003,0.002923528,0.10372095,477.8284163,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 18:00,12765975.38,3597.512,5.674857625,56.70539562,0.10372095,38140.51958,2413.179349,510.8989781,31619.17502,0.002826479,0.10372095,510.8989781,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 19:00,12769589,3597.512,5.6790166,55.934025,0.10372095,40672.773,2571.958,543.96954,33727.12,0.00272943,0.10372095,543.96954,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 20:00,12773148,3597.512,5.66475415,55.504551,0.10372095,41016.8365,2464.08595,538.49402,24573.6385,0.002683433,0.10372095,538.49402,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 21:00,12776707,3597.512,5.6504917,55.075077,0.10372095,41360.9,2356.2139,533.0185,15420.157,0.002637436,0.10372095,533.0185,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 22:00,12781330.33,3597.512,5.633919467,54.58136467,0.10372095,27746.0987,1836.415067,361.186855,10280.46277,0.002586012,0.10372095,361.186855,130901.3,73179.4,-15784.6,-201976.5
+5/28/2023 23:00,12785953.67,3597.512,5.617347233,54.08765233,0.10372095,14131.2974,1316.616233,189.35521,5140.768532,0.002534587,0.10372095,189.35521,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 0:00,12790577,3597.512,5.600775,53.59394,0.10372095,516.4961,796.8174,17.523565,1.0742986,0.002483163,0.10372095,17.523565,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 1:00,12793082.67,3597.512,5.59227,53.35576,0.10372095,397.2897167,739.4525333,17.56960467,0.928782787,0.002458997,0.10372095,17.56960467,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 2:00,12795588.33,3597.512,5.583765,53.11758,0.10372095,278.0833333,682.0876667,17.61564433,0.783266973,0.002434831,0.10372095,17.61564433,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 3:00,12798094,3597.512,5.57526,52.8794,0.10372095,158.87695,624.7228,17.661684,0.63775116,0.002410665,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 4:00,12801701,3597.512,5.7121425,52.7558715,0.10372095,191.38887,1510.3381,549.975492,30.67349958,0.002391331,0.10372095,549.975492,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 5:00,12805308,3597.512,5.849025,52.632343,0.10372095,223.90079,2395.9534,1082.2893,60.709248,0.002371997,0.10372095,1082.2893,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 6:00,12809004,3597.512,237.4149,425.39136,50.506348,36609.99,1613.8596,296.80508,71.279755,3.565227,50.506348,296.80508,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 7:00,12815834,3597.512,403.76282,421.94168,52.949272,43248.773,2273.5164,539.87494,10045.901,0.84884113,52.949272,539.87494,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 8:00,12816734,3597.512,289.85727,370.58405,2.2744489,42705.6,2275.3433,526.0082,10895.557,0.6823122,2.2744489,526.0082,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 9:00,12819811,3597.512,296.51834,368.75873,2.4228818,40559.125,2214.2239,465.4268,10865.959,0.31194663,2.4228818,465.4268,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 10:00,12823805,3597.512,297.2484,371.76666,2.427591,39364.855,2238.2905,435.0549,14109.091,0.17444412,2.427591,435.0549,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 11:00,12828307,3597.512,318.238825,310.651655,3.00442395,38755.9775,3001.2389,840.2286,64340.2605,0.118291397,3.00442395,840.2286,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 12:00,12832809,3597.512,339.22925,249.53665,3.5812569,38147.1,3764.1873,1245.4023,114571.43,0.062138673,3.5812569,1245.4023,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 13:00,12834281,3597.512,331.66843,237.96217,3.3795364,37695.438,3771.1116,1235.4274,118226,0.05578651,3.3795364,1235.4274,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 14:00,12840919,3597.512,275.26813,266.0953,56.63785,37601.92,3056.992,1040.217,32488.838,0.039995342,56.63785,1040.217,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 15:00,12841278,3597.512,275.28214,209.39255,2.18907,37630.312,2948.656,955.4066,29970.57,0.039153952,2.18907,955.4066,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 16:00,12847872,3597.512,250.8815,247.00757,56.24062,38142.78,2444.4485,454.83746,29593.053,0.12554386,56.24062,454.83746,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 17:00,12851227.25,3597.512,244.1175875,225.530785,42.50101525,39004.2975,2463.828925,481.99292,28816.06975,0.099531039,42.50101525,481.99292,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 18:00,12854582.5,3597.512,237.353675,204.054,28.7614105,39865.815,2483.20935,509.14838,28039.0865,0.073518218,28.7614105,509.14838,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 19:00,12857937.75,3597.512,230.5897625,182.577215,15.02180575,40727.3325,2502.589775,536.30384,27262.10325,0.047505397,15.02180575,536.30384,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 20:00,12861293,3597.512,223.82585,161.10043,1.282201,41588.85,2521.9702,563.4593,26485.12,0.021492576,1.282201,563.4593,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 21:00,12865116,3597.512,151.1709366,153.7589533,0.889374317,40058.45333,2025.746467,483.2523067,17657.04179,0.019771467,0.889374317,483.2523067,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 22:00,12868939,3597.512,78.51602313,146.4174767,0.496547633,38528.05667,1529.522733,403.0453133,8828.96358,0.018050359,0.496547633,403.0453133,130901.3,73179.4,-15784.6,-201976.5
+5/29/2023 23:00,12872762,3597.512,5.8611097,139.076,0.10372095,36997.66,1033.299,322.83832,0.8853702,0.01632925,0.10372095,322.83832,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 0:00,12875696.75,3597.512,5.84567365,135.8874385,0.10372095,27787.93434,914.571775,246.544161,0.78942355,0.015607212,0.10372095,246.544161,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 1:00,12878631.5,3597.512,5.8302376,132.698877,0.10372095,18578.20867,795.84455,170.250002,0.6934769,0.014885174,0.10372095,170.250002,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 2:00,12881566.25,3597.512,5.81480155,129.5103155,0.10372095,9368.483005,677.117325,93.955843,0.59753025,0.014163135,0.10372095,93.955843,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 3:00,12884501,3597.512,5.7993655,126.321754,0.10372095,158.75734,558.3901,17.661684,0.5015836,0.013441097,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 4:00,12888106.5,3597.512,5.78527305,123.663167,0.10372095,194.19212,1510.34725,587.023492,20.1440053,0.012885021,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 5:00,12891712,3597.512,5.7711806,121.00458,0.10372095,229.6269,2462.3044,1156.3853,39.786427,0.012328945,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 6:00,12895336,3597.512,213.3925,435.2736,50.506348,36261.625,1597.6989,287.97684,49.559856,2.6651533,50.506348,287.97684,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 7:00,12900000,3597.512,247.43788,185.15363,1.6914855,40159.074,2671.5298,576.66614,41769.844,0.04225664,1.6914855,576.66614,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 8:00,12903116,3597.512,297.23282,379.54108,2.313218,44443.676,1804.7118,513.7175,13.797765,0.42117772,2.313218,513.7175,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 9:00,12906436.5,3597.512,297.87564,341.48555,2.3251063,42647.871,1849.2184,468.53287,669.7741325,0.26607592,2.3251063,468.53287,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 10:00,12909757,3597.512,298.51846,303.43002,2.3369946,40852.066,1893.725,423.34824,1325.7505,0.11097412,2.3369946,423.34824,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 11:00,12916518,3597.512,349.02075,244.36646,3.605683,38578.29,2645.273,467.09253,53223.35,0.2892002,3.605683,467.09253,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 12:00,12919141,3597.512,343.39587,227.52106,3.4901485,37478.49,2982.961,648.3393,78582.16,0.9349771,3.4901485,648.3393,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 13:00,12922923.6,3597.512,324.363702,212.791588,3.1267147,38362.382,3153.53126,786.54944,84834.418,0.85660658,3.1267147,786.54944,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 14:00,12926706.2,3597.512,305.331534,198.062116,2.7632809,39246.274,3324.10152,924.75958,91086.676,0.77823606,2.7632809,924.75958,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 15:00,12930488.8,3597.512,286.299366,183.332644,2.3998471,40130.166,3494.67178,1062.96972,97338.934,0.69986554,2.3998471,1062.96972,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 16:00,12934271.4,3597.512,267.267198,168.603172,2.0364133,41014.058,3665.24204,1201.17986,103591.192,0.62149502,2.0364133,1201.17986,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 17:00,12938054,3597.512,248.23503,153.8737,1.6729795,41897.95,3835.8123,1339.39,109843.45,0.5431245,1.6729795,1339.39,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 18:00,12941566.5,3597.512,191.8549395,146.3288975,1.280664863,41914.405,3400.172225,1126.44132,83517.85788,0.410441256,1.280664863,1126.44132,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 19:00,12945079,3597.512,135.474849,138.784095,0.888350225,41930.86,2964.53215,913.49264,57192.26575,0.277758012,0.888350225,913.49264,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 20:00,12948591.5,3597.512,79.0947585,131.2392925,0.496035588,41947.315,2528.892075,700.54396,30866.67362,0.145074767,0.496035588,700.54396,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 21:00,12952104,3597.512,22.714668,123.69449,0.10372095,41963.77,2093.252,487.59528,4541.0815,0.012391523,0.10372095,487.59528,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 22:00,12955371.5,3597.512,14.2974415,116.632715,0.10372095,39416.172,1599.6147,406.9722,2271.078588,0.011071866,0.10372095,406.9722,130901.3,73179.4,-15784.6,-201976.5
+5/30/2023 23:00,12958639,3597.512,5.880215,109.57094,0.10372095,36868.574,1105.9774,326.34912,1.0756762,0.009752209,0.10372095,326.34912,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 0:00,12961704,3597.512,5.863107,105.6080165,0.10372095,27691.02506,969.218875,249.177261,0.932453225,0.00909452,0.10372095,249.177261,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 1:00,12964769,3597.512,5.845999,101.645093,0.10372095,18513.47613,832.46035,172.005402,0.78923025,0.00843683,0.10372095,172.005402,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 2:00,12967834,3597.512,5.828891,97.6821695,0.10372095,9335.927188,695.701825,94.833543,0.646007275,0.007779141,0.10372095,94.833543,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 3:00,12970899,3597.512,5.811783,93.719246,0.10372095,158.37825,558.9433,17.661684,0.5027843,0.007121452,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 4:00,12974535,3597.512,5.796627,90.629473,0.10372095,241.76844,1511.23495,587.023492,21.73232065,0.006668177,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 5:00,12978171,3597.512,5.781471,87.5397,0.10372095,325.15863,2463.5266,1156.3853,42.961857,0.006214902,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 6:00,12981768,3597.512,89.61871,428.4174,50.506348,36318.24,1602.8346,289.51978,60.10412,0.28476614,50.506348,289.51978,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 7:00,12985269,3597.512,352.56448,364.53897,52.996693,44908.18,2054.71,561.50574,1706.8708,0.11901564,52.996693,561.50574,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 8:00,12989836.67,3597.512,337.3844367,290.4444467,36.4002342,43058.44667,2222.29,538.88346,13779.42053,4.01545376,36.4002342,538.88346,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 9:00,12994404.33,3597.512,322.2043933,216.3499233,19.8037754,41208.71333,2389.87,516.26118,25851.97027,7.91189188,19.8037754,516.26118,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 10:00,12998972,3597.512,307.02435,142.2554,3.2073166,39358.98,2557.45,493.6389,37924.52,11.80833,3.2073166,493.6389,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 11:00,13000000,3597.512,170.08936,128.93568,0.58507836,42966.04,3168.3386,1210.3851,26438.531,0.013662599,0.58507836,1210.3851,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 12:00,13004125.83,3597.512,181.49449,137.0335967,9.862191967,42652.63033,3383.140333,1233.714717,67521.10917,1.542330999,9.862191967,1233.714717,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 13:00,13008251.67,3597.512,192.89962,145.1315133,19.13930557,42339.22067,3597.942067,1257.044333,108603.6873,3.070999399,19.13930557,1257.044333,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 14:00,13012377.5,3597.512,204.30475,153.22943,28.41641918,42025.811,3812.7438,1280.37395,149686.2655,4.5996678,28.41641918,1280.37395,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 15:00,13016503.33,3597.512,215.70988,161.3273467,37.69353279,41712.40133,4027.545533,1303.703567,190768.8437,6.1283362,37.69353279,1303.703567,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 16:00,13020629.17,3597.512,227.11501,169.4252633,46.97064639,41398.99167,4242.347267,1327.033183,231851.4218,7.6570046,46.97064639,1327.033183,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 17:00,13024755,3597.512,238.52014,177.52318,56.24776,41085.582,4457.149,1350.3628,272934,9.185673,56.24776,1350.3628,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 18:00,13024815,3597.512,238.49513,124.03415,1.7681409,41104.133,4465.848,1351.4021,275379.8,10.072816,1.7681409,1351.4021,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 19:00,13028416,3597.512,199.6824847,121.080604,1.490737575,40310.72083,3999.7244,1176.567047,229529.3899,8.916021867,1.490737575,1176.567047,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 20:00,13032017,3597.512,160.8698393,118.127058,1.21333425,39517.30867,3533.6008,1001.731993,183678.9798,7.759227733,1.21333425,1001.731993,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 21:00,13035618,3597.512,122.057194,115.173512,0.935930925,38723.8965,3067.4772,826.89694,137828.5697,6.6024336,0.935930925,826.89694,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 22:00,13039219,3597.512,83.24454867,112.219966,0.6585276,37930.48433,2601.3536,652.0618867,91978.15955,5.445639467,0.6585276,652.0618867,130901.3,73179.4,-15784.6,-201976.5
+5/31/2023 23:00,13042820,3597.512,44.43190333,109.26642,0.381124275,37137.07217,2135.23,477.2268333,46127.74943,4.288845333,0.381124275,477.2268333,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 0:00,13046421,3597.512,5.619258,106.312874,0.10372095,36343.66,1669.1064,302.39178,277.33932,3.1320512,0.10372095,302.39178,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 1:00,13050063,3597.512,5.603182667,105.6834847,0.10372095,24281.19369,1123.710848,206.54137,184.8929839,3.1295247,0.10372095,206.54137,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 2:00,13053705,3597.512,5.587107333,105.0540953,0.10372095,12218.72737,578.3152953,110.69096,92.4466478,3.1269982,0.10372095,110.69096,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 3:00,13057347,3597.512,5.571032,104.424706,0.10372095,156.26106,32.919743,14.84055,0.000311705,3.1244717,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 4:00,13061252.33,3597.512,22.895962,103.9152607,0.10372095,13381.79504,597.8336953,136.4740333,61.02315114,3.1243269,0.10372095,136.4740333,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 5:00,13065157.67,3597.512,40.220892,103.4058153,0.10372095,26607.32902,1162.747648,258.1075167,122.0459906,3.1241821,0.10372095,258.1075167,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 6:00,13069063,3597.512,57.545822,102.89637,0.10372095,39832.863,1727.6616,379.741,183.06883,3.1240373,0.10372095,379.741,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 7:00,13072539,3597.512,130.683768,103.3680117,0.932740167,39667.092,1953.8396,407.1535467,8503.886887,3.1247658,0.932740167,407.1535467,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 8:00,13076015,3597.512,203.821714,103.8396533,1.761759383,39501.321,2180.0176,434.5660933,16824.70494,3.1254943,1.761759383,434.5660933,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 9:00,13079491,3597.512,276.95966,104.311295,2.5907786,39335.55,2406.1956,461.97864,25145.523,3.1262228,2.5907786,461.97864,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 10:00,13083592.8,3597.512,222.6864634,104.574796,2.09336707,31500.10976,2106.22784,373.1152488,20116.70188,3.12637196,2.09336707,373.1152488,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 11:00,13087694.6,3597.512,168.4132668,104.838297,1.59595554,23664.66952,1806.26008,284.2518576,15087.88075,3.12652112,1.59595554,284.2518576,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 12:00,13091796.4,3597.512,114.1400702,105.101798,1.09854401,15829.22928,1506.29232,195.3884664,10059.05963,3.12667028,1.09854401,195.3884664,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 13:00,13095898.2,3597.512,59.8668736,105.365299,0.60113248,7993.78904,1206.32456,106.5250752,5030.238504,3.12681944,0.60113248,106.5250752,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 14:00,13100000,3597.512,5.593677,105.6288,0.10372095,158.3488,906.3568,17.661684,1.4173802,3.1269686,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 15:00,13103722,3597.512,80.87229133,145.36612,18.84028963,13581.53253,2270.191967,465.512056,153787.6016,56.21371907,18.84028963,465.512056,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 16:00,13107444,3597.512,156.1509057,185.10344,37.57685832,27004.71627,3634.027133,913.362428,307573.7858,109.3004695,37.57685832,913.362428,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 17:00,13111166,3597.512,231.42952,224.84076,56.313427,40427.9,4997.8623,1361.2128,461359.97,162.38722,56.313427,1361.2128,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 18:00,13111226,3597.512,231.40652,172.43623,1.8390468,40445.617,4998.7627,1362.1134,461359.97,172.38763,1.8390468,1362.1134,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 19:00,13115396,3597.512,193.7423882,169.22201,1.549825825,33757.33012,4573.610967,1327.825383,384469.0693,161.0262267,1.549825825,1327.825383,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 20:00,13119566,3597.512,156.0782563,166.00779,1.26060485,27069.04323,4148.459233,1293.537367,307578.1686,149.6648233,1.26060485,1293.537367,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 21:00,13123736,3597.512,118.4141245,162.79357,0.971383875,20380.75635,3723.3075,1259.24935,230687.268,138.30342,0.971383875,1259.24935,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 22:00,13127906,3597.512,80.74999267,159.57935,0.6821629,13692.46947,3298.155767,1224.961333,153796.3673,126.9420167,0.6821629,1224.961333,130901.3,73179.4,-15784.6,-201976.5
+6/1/2023 23:00,13132076,3597.512,43.08586083,156.36513,0.392941925,7004.182583,2873.004033,1190.673317,76905.46658,115.5806133,0.392941925,1190.673317,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 0:00,13136246,3597.512,5.421729,153.15091,0.10372095,315.8957,2447.8523,1156.3853,14.5659,104.21921,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 1:00,13138716.67,3597.512,5.415311767,153.0556067,0.10372095,261.2998567,1873.917543,776.8107613,10.00410747,104.2177217,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 2:00,13141187.33,3597.512,5.408894533,152.9603033,0.10372095,206.7040133,1299.982787,397.2362227,5.442314933,104.2162333,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 3:00,13143658,3597.512,5.4024773,152.865,0.10372095,152.10817,726.04803,17.661684,0.8805224,104.214745,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 4:00,13147416.5,3597.512,5.39086155,152.735205,0.10372095,540.97471,1634.844015,587.023492,204.8641362,104.2238075,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 5:00,13151175,3597.512,5.3792458,152.60541,0.10372095,929.84125,2543.64,1156.3853,408.84775,104.23287,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 6:00,13156216,3597.512,136.63261,139.65549,55.008385,42051.527,1937.8127,457.24466,1491.2563,0.009831427,55.008385,457.24466,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 7:00,13161136,3597.512,274.70825,148.06546,56.79711,41427.82,2668.1736,579.8928,40963.746,0.8639727,56.79711,579.8928,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 8:00,13164776.9,3597.512,270.129838,157.965918,56.7505544,41295.387,2900.76361,657.65215,83003.3684,34.81836543,56.7505544,657.65215,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 9:00,13168417.8,3597.512,265.551426,167.866376,56.7039988,41162.954,3133.35362,735.4115,125042.9908,68.77275816,56.7039988,735.4115,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 10:00,13172058.7,3597.512,260.973014,177.766834,56.6574432,41030.521,3365.94363,813.17085,167082.6132,102.7271509,56.6574432,813.17085,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 11:00,13175699.6,3597.512,256.394602,187.667292,56.6108876,40898.088,3598.53364,890.9302,209122.2356,136.6815436,56.6108876,890.9302,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 12:00,13179340.5,3597.512,251.81619,197.56775,56.564332,40765.655,3831.12365,968.68955,251161.858,170.6359364,56.564332,968.68955,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 13:00,13182981.4,3597.512,247.237778,207.468208,56.5177764,40633.222,4063.71366,1046.4489,293201.4804,204.5903291,56.5177764,1046.4489,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 14:00,13186622.3,3597.512,242.659366,217.368666,56.4712208,40500.789,4296.30367,1124.20825,335241.1028,238.5447218,56.4712208,1124.20825,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 15:00,13190263.2,3597.512,238.080954,227.269124,56.4246652,40368.356,4528.89368,1201.9676,377280.7252,272.4991145,56.4246652,1201.9676,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 16:00,13193904.1,3597.512,233.502542,237.169582,56.3781096,40235.923,4761.48369,1279.72695,419320.3476,306.4535073,56.3781096,1279.72695,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 17:00,13197545,3597.512,228.92413,247.07004,56.331554,40103.49,4994.0737,1357.4863,461359.97,340.4079,56.331554,1357.4863,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 18:00,13197605,3597.512,228.90446,193.83272,1.8586599,40127.086,4995.023,1358.4355,461359.97,352.5809,1.8586599,1358.4355,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 19:00,13201771.67,3597.512,191.6481595,191.3272667,1.566170075,33509.29347,4531.974567,1286.88525,384467.1926,333.7894733,1.566170075,1286.88525,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 20:00,13205938.33,3597.512,154.391859,188.8218133,1.27368025,26891.50095,4068.926133,1215.335,307574.4152,314.9980467,1.27368025,1215.335,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 21:00,13210105,3597.512,117.1355585,186.31636,0.981190425,20273.70842,3605.8777,1143.78475,230681.6377,296.20662,0.981190425,1143.78475,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 22:00,13214271.67,3597.512,79.879258,183.8109067,0.6887006,13655.91589,3142.829267,1072.2345,153788.8603,277.4151933,0.6887006,1072.2345,130901.3,73179.4,-15784.6,-201976.5
+6/2/2023 23:00,13218438.33,3597.512,42.6229575,181.3054533,0.396210775,7038.123367,2679.780833,1000.68425,76896.08288,258.6237667,0.396210775,1000.68425,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 0:00,13222605,3597.512,5.366657,178.8,0.10372095,420.33084,2216.7324,929.134,3.3054526,239.83234,0.10372095,929.134,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 1:00,13225092.33,3597.512,5.360702833,178.75809,0.10372095,331.9591867,1700.6127,625.3098947,2.449545613,239.8301933,0.10372095,625.3098947,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 2:00,13227579.67,3597.512,5.354748667,178.71618,0.10372095,243.5875333,1184.493,321.4857893,1.593638627,239.8280467,0.10372095,321.4857893,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 3:00,13230067,3597.512,5.3487945,178.67427,0.10372095,155.21588,668.3733,17.661684,0.73773164,239.8259,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 4:00,13234230.67,3597.512,5.335387,178.6098033,0.10372095,11831.55925,982.4147333,101.8745327,50.88488109,239.8257633,0.10372095,101.8745327,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 5:00,13238394.33,3597.512,5.3219795,178.5453367,0.10372095,23507.90263,1296.456167,186.0873813,101.0320305,239.8256267,0.10372095,186.0873813,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 6:00,13242558,3597.512,5.308572,178.48087,0.10372095,35184.246,1610.4976,270.30023,151.17918,239.82549,0.10372095,270.30023,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 7:00,13246367.6,3597.512,5.2990566,178.428434,0.10372095,36179.2742,1811.98978,321.708084,8374.727344,239.825486,0.10372095,321.708084,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 8:00,13250177.2,3597.512,5.2895412,178.375998,0.10372095,37174.3024,2013.48196,373.115938,16598.27551,239.825482,0.10372095,373.115938,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 9:00,13253986.8,3597.512,5.2800258,178.323562,0.10372095,38169.3306,2214.97414,424.523792,24821.82367,239.825478,0.10372095,424.523792,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 10:00,13257796.4,3597.512,5.2705104,178.271126,0.10372095,39164.3588,2416.46632,475.931646,33045.37184,239.825474,0.10372095,475.931646,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 11:00,13261606,3597.512,5.260995,178.21869,0.10372095,40159.387,2617.9585,527.3395,41268.92,239.82547,0.10372095,527.3395,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 12:00,13265096.36,3597.512,5.263986845,178.2326882,0.10372095,40053.627,2553.771745,515.9252182,37701.90287,239.8254718,0.10372095,515.9252182,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 13:00,13268586.73,3597.512,5.266978691,178.2466864,0.10372095,39947.867,2489.584991,504.5109364,34134.88575,239.8254736,0.10372095,504.5109364,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 14:00,13272077.09,3597.512,5.269970536,178.2606845,0.10372095,39842.107,2425.398236,493.0966545,30567.86862,239.8254755,0.10372095,493.0966545,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 15:00,13275567.45,3597.512,5.272962382,178.2746827,0.10372095,39736.347,2361.211482,481.6823727,27000.85149,239.8254773,0.10372095,481.6823727,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 16:00,13279057.82,3597.512,5.275954227,178.2886809,0.10372095,39630.587,2297.024727,470.2680909,23433.83436,239.8254791,0.10372095,470.2680909,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 17:00,13282548.18,3597.512,5.278946073,178.3026791,0.10372095,39524.827,2232.837973,458.8538091,19866.81724,239.8254809,0.10372095,458.8538091,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 18:00,13286038.55,3597.512,5.281937918,178.3166773,0.10372095,39419.067,2168.651218,447.4395273,16299.80011,239.8254827,0.10372095,447.4395273,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 19:00,13289528.91,3597.512,5.284929764,178.3306755,0.10372095,39313.307,2104.464464,436.0252455,12732.78298,239.8254845,0.10372095,436.0252455,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 20:00,13293019.27,3597.512,5.287921609,178.3446736,0.10372095,39207.547,2040.277709,424.6109636,9165.765855,239.8254864,0.10372095,424.6109636,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 21:00,13296509.64,3597.512,5.290913455,178.3586718,0.10372095,39101.787,1976.090955,413.1966818,5598.748727,239.8254882,0.10372095,413.1966818,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 22:00,13300000,3597.512,5.2939053,178.37267,0.10372095,38996.027,1911.9042,401.7824,2031.7316,239.82549,0.10372095,401.7824,130901.3,73179.4,-15784.6,-201976.5
+6/3/2023 23:00,13303547,3597.512,5.3973556,177.75021,0.10372095,38015.035,1691.294,339.05634,203.52422,239.82544,0.10372095,339.05634,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 0:00,13306786.5,3597.512,5.3874392,177.71999,0.10372095,28550.36256,1418.924925,258.707676,152.7905525,239.82544,0.10372095,258.707676,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 1:00,13310026,3597.512,5.3775228,177.68977,0.10372095,19085.69012,1146.55585,178.359012,102.0568851,239.82544,0.10372095,178.359012,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 2:00,13313265.5,3597.512,5.3676064,177.65955,0.10372095,9621.017672,874.186775,98.010348,51.32321758,239.82544,0.10372095,98.010348,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 3:00,13316505,3597.512,5.35769,177.62933,0.10372095,156.34523,601.8177,17.661684,0.5895501,239.82544,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 4:00,13320581.33,3597.512,5.343359567,177.5941033,0.10372095,11716.27182,955.9625333,102.4616827,149.0713767,239.8254333,0.10372095,102.4616827,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 5:00,13324657.67,3597.512,5.329029133,177.5588767,0.10372095,23276.19841,1310.107367,187.2616813,297.5532034,239.8254267,0.10372095,187.2616813,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 6:00,13328734,3597.512,5.3146987,177.52365,0.10372095,34836.125,1664.2522,272.06168,446.03503,239.82542,0.10372095,272.06168,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 7:00,13332444.5,3597.512,5.35437175,177.4946333,0.10372095,35353.3795,1806.2861,301.9295667,6725.216692,239.8254183,0.10372095,301.9295667,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 8:00,13336155,3597.512,5.3940448,177.4656167,0.10372095,35870.634,1948.32,331.7974533,13004.39835,239.8254167,0.10372095,331.7974533,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 9:00,13339865.5,3597.512,5.43371785,177.4366,0.10372095,36387.8885,2090.3539,361.66534,19283.58002,239.825415,0.10372095,361.66534,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 10:00,13343576,3597.512,5.4733909,177.4075833,0.10372095,36905.143,2232.3878,391.5332267,25562.76168,239.8254133,0.10372095,391.5332267,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 11:00,13347286.5,3597.512,5.51306395,177.3785667,0.10372095,37422.3975,2374.4217,421.4011133,31841.94334,239.8254117,0.10372095,421.4011133,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 12:00,13350997,3597.512,5.552737,177.34955,0.10372095,37939.652,2516.4556,451.269,38121.125,239.82541,0.10372095,451.269,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 13:00,13354582.9,3597.512,5.5390203,177.325627,0.10372095,37851.6563,2446.15688,439.596803,34455.68615,239.82541,0.10372095,439.596803,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 14:00,13358168.8,3597.512,5.5253036,177.301704,0.10372095,37763.6606,2375.85816,427.924606,30790.2473,239.82541,0.10372095,427.924606,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 15:00,13361754.7,3597.512,5.5115869,177.277781,0.10372095,37675.6649,2305.55944,416.252409,27124.80845,239.82541,0.10372095,416.252409,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 16:00,13365340.6,3597.512,5.4978702,177.253858,0.10372095,37587.6692,2235.26072,404.580212,23459.3696,239.82541,0.10372095,404.580212,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 17:00,13368926.5,3597.512,5.4841535,177.229935,0.10372095,37499.6735,2164.962,392.908015,19793.93075,239.82541,0.10372095,392.908015,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 18:00,13372512.4,3597.512,5.4704368,177.206012,0.10372095,37411.6778,2094.66328,381.235818,16128.4919,239.82541,0.10372095,381.235818,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 19:00,13376098.3,3597.512,5.4567201,177.182089,0.10372095,37323.6821,2024.36456,369.563621,12463.05305,239.82541,0.10372095,369.563621,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 20:00,13379684.2,3597.512,5.4430034,177.158166,0.10372095,37235.6864,1954.06584,357.891424,8797.6142,239.82541,0.10372095,357.891424,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 21:00,13383270.1,3597.512,5.4292867,177.134243,0.10372095,37147.6907,1883.76712,346.219227,5132.17535,239.82541,0.10372095,346.219227,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 22:00,13386856,3597.512,5.41557,177.11032,0.10372095,37059.695,1813.4684,334.54703,1466.7365,239.82541,0.10372095,334.54703,130901.3,73179.4,-15784.6,-201976.5
+6/4/2023 23:00,13391070.5,3597.512,5.3988865,177.085295,0.10372095,18947.4299,1292.51795,176.033628,733.8701876,239.825405,0.10372095,176.033628,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 0:00,13395285,3597.512,5.382203,177.06027,0.10372095,835.1648,771.5675,17.520226,1.0038751,239.8254,0.10372095,17.520226,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 1:00,13397642.5,3597.512,5.4668075,177.20858,0.10372095,19550.2834,1609.13435,225.587913,16061.80444,239.82541,0.10372095,225.587913,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 2:00,13400000,3597.512,5.551412,177.35689,0.10372095,38265.402,2446.7012,433.6556,32122.605,239.82542,0.10372095,433.6556,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 3:00,13402887,3597.512,5.3615255,177.01692,0.10372095,157.06703,608.8199,17.661684,0.6044425,239.8254,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 4:00,13406512,3597.512,5.49511825,177.200295,0.10372095,209.446875,1543.2145,587.023492,43.33808125,239.82541,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 5:00,13410137,3597.512,5.628711,177.38367,0.10372095,261.82672,2477.6091,1156.3853,86.07172,239.82542,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 6:00,13414664,3597.512,216.13992,548.49396,50.506348,39575.824,1694.951,370.13437,97.16935,241.34933,50.506348,370.13437,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 7:00,13420618,3597.512,367.2506,546.1419,52.92047,43486.863,1923.3666,512.6344,601.2815,240.0476,52.92047,512.6344,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 8:00,13421518,3597.512,289.64493,497.65726,2.249407,42996.23,1939.5332,497.72256,934.6615,240.02344,2.249407,497.72256,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 9:00,13425246.5,3597.512,292.7081,437.25432,2.3164555,41261.912,1977.2791,459.28603,2558.31025,239.98765,2.3164555,459.28603,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 10:00,13428975,3597.512,295.77127,376.85138,2.383504,39527.594,2015.025,420.8495,4181.959,239.95186,2.383504,420.8495,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 11:00,13434085,3597.512,337.20068,244.44423,8.264586,38338.273,2572.879,460.50305,44101.28,0.06268915,8.264586,460.50305,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 12:00,13435249,3597.512,340.77652,233.22177,3.546121,37577.074,2726.3267,504.93597,59815.113,0.083528295,3.546121,504.93597,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 13:00,13439550.2,3597.512,321.047238,231.982202,14.0710498,38307.6146,2982.02312,669.862676,77988.0024,0.444060496,14.0710498,669.862676,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 14:00,13443851.4,3597.512,301.317956,230.742634,24.5959786,39038.1552,3237.71954,834.789382,96160.8918,0.804592697,24.5959786,834.789382,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 15:00,13448152.6,3597.512,281.588674,229.503066,35.1209074,39768.6958,3493.41596,999.716088,114333.7812,1.165124898,35.1209074,999.716088,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 16:00,13452453.8,3597.512,261.859392,228.263498,45.6458362,40499.2364,3749.11238,1164.642794,132506.6706,1.525657099,45.6458362,1164.642794,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 17:00,13456755,3597.512,242.13011,227.02393,56.170765,41229.777,4004.8088,1329.5695,150679.56,1.8861893,56.170765,1329.5695,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 18:00,13456815,3597.512,242.10555,172.97746,1.6848156,41246.645,4011.527,1330.4983,152103.34,2.094901,1.6848156,1330.4983,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 19:00,13460756.75,3597.512,183.0243065,165.776805,1.289541938,40878.84325,3452.538375,1095.275075,114177.8045,1.600294668,1.289541938,1095.275075,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 20:00,13464698.5,3597.512,123.943063,158.57615,0.894268275,40511.0415,2893.54975,860.05185,76252.26906,1.105688335,0.894268275,860.05185,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 21:00,13468640.25,3597.512,64.8618195,151.375495,0.498994613,40143.23975,2334.561125,624.828625,38326.73359,0.611082003,0.498994613,624.828625,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 22:00,13472582,3597.512,5.780576,144.17484,0.10372095,39775.438,1775.5725,389.6054,401.19812,0.11647567,0.10372095,389.6054,130901.3,73179.4,-15784.6,-201976.5
+6/5/2023 23:00,13477483,3597.512,5.7635903,139.8683,0.10372095,36150.645,1031.5641,314.17715,0.90463084,0.0928663,0.10372095,314.17715,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 0:00,13480436.5,3597.512,5.748619475,137.9390975,0.10372095,27152.29789,904.797075,240.0482835,0.78829383,0.088405269,0.10372095,240.0482835,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 1:00,13483390,3597.512,5.73364865,136.009895,0.10372095,18153.95078,778.03005,165.919417,0.67195682,0.083944238,0.10372095,165.919417,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 2:00,13486343.5,3597.512,5.718677825,134.0806925,0.10372095,9155.60367,651.263025,91.7905505,0.55561981,0.079483207,0.10372095,91.7905505,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 3:00,13489297,3597.512,5.703707,132.15149,0.10372095,157.25656,524.496,17.661684,0.4392828,0.075022176,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 4:00,13492902.5,3597.512,5.69035925,130.59136,0.10372095,189.49113,1493.83465,587.023492,21.7051714,0.073448923,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 5:00,13496508,3597.512,5.6770115,129.03123,0.10372095,221.7257,2463.1733,1156.3853,42.97106,0.07187567,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 6:00,13500000,3597.512,289.15082,221.39716,4.8154335,36930.176,3340.6,1199.4116,48001.316,38.139126,4.8154335,1199.4116,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 7:00,13503682,3597.512,493.06906,461.3073,52.97507,44562.63,1883.7628,548.44745,133.09451,4.0848303,52.97507,548.44745,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 8:00,13507839,3597.512,285.23325,407.34268,2.2118015,43037.277,1920.5378,495.39413,744.0092,1.063159,2.2118015,495.39413,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 9:00,13511763.67,3597.512,279.8315778,382.5717711,8.213093556,42767.684,2196.076822,588.8966156,29481.34373,2.651100222,8.213093556,588.8966156,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 10:00,13515688.33,3597.512,274.4299056,357.8008622,14.21438561,42498.091,2471.615844,682.3991011,58218.67827,4.239041444,14.21438561,682.3991011,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 11:00,13519613,3597.512,269.0282333,333.0299533,20.21567767,42228.498,2747.154867,775.9015867,86956.0128,5.826982667,20.21567767,775.9015867,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 12:00,13523537.67,3597.512,263.6265611,308.2590444,26.21696972,41958.905,3022.693889,869.4040722,115693.3473,7.414923889,26.21696972,869.4040722,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 13:00,13527462.33,3597.512,258.2248889,283.4881356,32.21826178,41689.312,3298.232911,962.9065578,144430.6819,9.002865111,32.21826178,962.9065578,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 14:00,13531387,3597.512,252.8232167,258.7172267,38.21955383,41419.719,3573.771933,1056.409043,173168.0164,10.59080633,38.21955383,1056.409043,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 15:00,13535311.67,3597.512,247.4215444,233.9463178,44.22084589,41150.126,3849.310956,1149.911529,201905.3509,12.17874756,44.22084589,1149.911529,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 16:00,13539236.33,3597.512,242.0198722,209.1754089,50.22213794,40880.533,4124.849978,1243.414014,230642.6855,13.76668878,50.22213794,1243.414014,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 17:00,13543161,3597.512,236.6182,184.4045,56.22343,40610.94,4400.389,1336.9165,259380.02,15.35463,56.22343,1336.9165,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 18:00,13543221,3597.512,236.59422,131.15413,1.74183,40626.984,4408.6797,1337.8279,261687.9,16.89032,1.74183,1337.8279,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 19:00,13547345.8,3597.512,190.3989582,125.763976,1.41420819,39802.4646,3849.8743,1129.858048,209364.6769,14.73423132,1.41420819,1129.858048,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 20:00,13551470.6,3597.512,144.2036964,120.373822,1.08658638,38977.9452,3291.0689,921.888196,157041.4539,12.57814264,1.08658638,921.888196,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 21:00,13555595.4,3597.512,98.0084346,114.983668,0.75896457,38153.4258,2732.2635,713.918344,104718.2308,10.42205396,0.75896457,713.918344,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 22:00,13559720.2,3597.512,51.8131728,109.593514,0.43134276,37328.9064,2173.4581,505.948492,52395.00779,8.26596528,0.43134276,505.948492,130901.3,73179.4,-15784.6,-201976.5
+6/6/2023 23:00,13563845,3597.512,5.617911,104.20336,0.10372095,36504.387,1614.6527,297.97864,71.78474,6.1098766,0.10372095,297.97864,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 0:00,13567855,3597.512,5.585179,103.24311,0.10372095,2060.1252,744.2852,17.5324,0.9296276,6.102675,0.10372095,17.5324,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 1:00,13570462.67,3597.512,5.577473567,102.7947333,0.10372095,1425.47729,685.04129,17.57549467,0.7925377,6.101807667,0.10372095,17.57549467,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 2:00,13573070.33,3597.512,5.569768133,102.3463567,0.10372095,790.82938,625.79738,17.61858933,0.6554478,6.100940333,0.10372095,17.61858933,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 3:00,13575678,3597.512,5.5620627,101.89798,0.10372095,156.18147,566.55347,17.661684,0.5183579,6.100073,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 4:00,13579654.33,3597.512,27.26808847,101.47025,0.10372095,13409.91265,949.1991467,138.3803127,43.9815486,6.099972667,0.10372095,138.3803127,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 5:00,13583630.67,3597.512,48.97411423,101.04252,0.10372095,26663.64382,1331.844823,259.0989413,87.4447393,6.099872333,0.10372095,259.0989413,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 6:00,13587607,3597.512,70.68014,100.61479,0.10372095,39917.375,1714.4905,379.81757,130.90793,6.099772,0.10372095,379.81757,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 7:00,13591738,3597.512,121.5196,104.7240817,0.564034567,39652.8,2782.818533,691.6180467,149743.9786,6.378238,0.564034567,691.6180467,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 8:00,13595869,3597.512,172.35906,108.8333733,1.024348183,39388.225,3851.146567,1003.418523,299357.0493,6.656704,1.024348183,1003.418523,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 9:00,13600000,3597.512,223.19852,112.942665,1.4846618,39123.65,4919.4746,1315.219,448970.12,6.93517,1.4846618,1315.219,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 10:00,13602573,3597.512,282.96954,102.30912,2.7414038,38249.336,2449.4766,459.5958,29675.56,6.099709,2.7414038,459.5958,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 11:00,13605679.33,3597.512,291.6721467,102.4274953,2.9872848,37674.47533,2973.159933,715.1025667,80206.81667,6.100479333,2.9872848,715.1025667,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 12:00,13608785.67,3597.512,300.3747533,102.5458707,3.2331658,37099.61467,3496.843267,970.6093333,130738.0733,6.101249667,3.2331658,970.6093333,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 13:00,13611892,3597.512,309.07736,102.664246,3.4790468,36524.754,4020.5266,1226.1161,181269.33,6.10202,3.4790468,1226.1161,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 14:00,13616532.67,3597.512,286.0375067,114.1540973,21.05725653,37024.82833,3921.1852,1231.141733,156442.6167,4.071078605,21.05725653,1231.141733,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 15:00,13621173.33,3597.512,262.9976533,125.6439487,38.63546627,37524.90267,3821.8438,1236.167367,131615.9033,2.040137211,38.63546627,1236.167367,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 16:00,13625814,3597.512,239.9578,137.1338,56.213676,38024.977,3722.5024,1241.193,106789.19,0.009195816,56.213676,1241.193,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 17:00,13629440.14,3597.512,206.4885775,128.0934186,48.19796814,37712.63171,3425.097986,1105.242211,91562.069,0.008733493,48.19796814,1105.242211,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 18:00,13633066.29,3597.512,173.019355,119.0530371,40.18226027,37400.28643,3127.693571,969.2914229,76334.948,0.008271171,40.18226027,969.2914229,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 19:00,13636692.43,3597.512,139.5501325,110.0126557,32.16655241,37087.94114,2830.289157,833.3406343,61107.827,0.007808848,32.16655241,833.3406343,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 20:00,13640318.57,3597.512,106.0809101,100.9722743,24.15084454,36775.59586,2532.884743,697.3898457,45880.70599,0.007346526,24.15084454,697.3898457,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 21:00,13643944.71,3597.512,72.61168757,91.93189286,16.13513668,36463.25057,2235.480329,561.4390571,30653.58499,0.006884203,16.13513668,561.4390571,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 22:00,13647570.86,3597.512,39.14246509,82.89151143,8.119428814,36150.90529,1938.075914,425.4882686,15426.46399,0.006421881,8.119428814,425.4882686,130901.3,73179.4,-15784.6,-201976.5
+6/7/2023 23:00,13651197,3597.512,5.6732426,73.85113,0.10372095,35838.56,1640.6715,289.53748,199.34299,0.005959558,0.10372095,289.53748,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 0:00,13651257,3597.512,5.6727786,73.83066,0.10372095,35784.426,1628.2582,281.20364,180.9021,0.005955509,0.10372095,281.20364,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 1:00,13654861.67,3597.512,5.655830067,72.774802,0.10372095,23908.22411,1295.714043,193.3563213,120.8187447,0.00575343,0.10372095,193.3563213,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 2:00,13658466.33,3597.512,5.638881533,71.718944,0.10372095,12032.02223,963.1698867,105.5090027,60.7353894,0.005551351,0.10372095,105.5090027,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 3:00,13662071,3597.512,5.621933,70.663086,0.10372095,155.82034,630.62573,17.661684,0.6520341,0.005349272,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 4:00,13666121,3597.512,33.19688667,69.76917267,0.10372095,13594.60023,1013.69922,145.107596,120.4819894,0.005188409,0.10372095,145.107596,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 5:00,13670171,3597.512,60.77184033,68.87525933,0.10372095,27033.38011,1396.77271,272.553508,240.3119447,0.005027545,0.10372095,272.553508,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 6:00,13674221,3597.512,88.346794,67.981346,0.10372095,40472.16,1779.8462,399.99942,360.1419,0.004866682,0.10372095,399.99942,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 7:00,13677532.75,3597.512,135.2180205,68.0522955,0.701028213,39802.82,1971.64125,430.711005,8613.281425,0.004777009,0.701028213,430.711005,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 8:00,13680844.5,3597.512,182.089247,68.123245,1.298335475,39133.48,2163.4363,461.42259,16866.42095,0.004687335,1.298335475,461.42259,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 9:00,13684156.25,3597.512,228.9604735,68.1941945,1.895642738,38464.14,2355.23135,492.134175,25119.56047,0.004597662,1.895642738,492.134175,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 10:00,13687468,3597.512,275.8317,68.265144,2.49295,37794.8,2547.0264,522.84576,33372.7,0.004507988,2.49295,522.84576,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 11:00,13691645.33,3597.512,185.78264,70.26611933,1.696540317,37193.20533,2431.5573,597.8736533,22607.6402,0.005019435,1.696540317,597.8736533,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 12:00,13695822.67,3597.512,95.73358,72.26709467,0.900130633,36591.61067,2316.0882,672.9015467,11842.5804,0.005530882,0.900130633,672.9015467,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 13:00,13700000,3597.512,5.68452,74.26807,0.10372095,35990.016,2200.6191,747.92944,1077.5206,0.006042329,0.10372095,747.92944,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 14:00,13704111.67,3597.512,82.30374333,97.89672,18.8167823,36499.30233,2827.1742,914.2417267,64668.3404,0.506479786,18.8167823,914.2417267,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 15:00,13708223.33,3597.512,158.9229667,121.52537,37.52984365,37008.58867,3453.7293,1080.554013,128259.1602,1.006917243,37.52984365,1080.554013,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 16:00,13712335,3597.512,235.54219,145.15402,56.242905,37517.875,4080.2844,1246.8663,191849.98,1.5073547,56.242905,1246.8663,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 17:00,13715862.71,3597.512,202.6903477,136.4855207,48.22302156,37341.36043,3725.211643,1110.337606,164447.9454,1.350388491,48.22302156,1110.337606,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 18:00,13719390.43,3597.512,169.8385053,127.8170214,40.20313813,37164.84586,3370.138886,973.8089114,137045.9107,1.193422283,40.20313813,973.8089114,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 19:00,13722918.14,3597.512,136.986663,119.1485221,32.18325469,36988.33129,3015.066129,837.2802171,109643.8761,1.036456074,32.18325469,837.2802171,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 20:00,13726445.86,3597.512,104.1348207,110.4800229,24.16337126,36811.81671,2659.993371,700.7515229,82241.84149,0.879489866,24.16337126,700.7515229,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 21:00,13729973.57,3597.512,71.28297836,101.8115236,16.14348782,36635.30214,2304.920614,564.2228286,54839.80687,0.722523657,16.14348782,564.2228286,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 22:00,13733501.29,3597.512,38.43113603,93.14302429,8.123604386,36458.78757,1949.847857,427.6941343,27437.77224,0.565557449,8.123604386,427.6941343,130901.3,73179.4,-15784.6,-201976.5
+6/8/2023 23:00,13737029,3597.512,5.5792937,84.474525,0.10372095,36282.273,1594.7751,291.16544,35.737614,0.40859124,0.10372095,291.16544,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 0:00,13740833,3597.512,5.5500665,84.43713,0.10372095,1037.322,739.74524,17.661684,0.9174371,0.4048445,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 1:00,13743380.33,3597.512,5.542736867,84.42123667,0.10372095,742.5841,683.3376067,17.661684,0.787074,0.40394698,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 2:00,13745927.67,3597.512,5.535407233,84.40534333,0.10372095,447.8462,626.9299733,17.661684,0.6567109,0.40304946,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 3:00,13748475,3597.512,5.5280776,84.38945,0.10372095,153.1083,570.52234,17.661684,0.5263478,0.40215194,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 4:00,13752180,3597.512,5.51541565,84.632175,0.10372095,377.45915,1531.42387,587.023492,68.2329439,0.401855735,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 5:00,13755885,3597.512,5.5027537,84.8749,0.10372095,601.81,2492.3254,1156.3853,135.93954,0.40155953,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 6:00,13760755,3597.512,132.94904,279.1196,50.56834,40945.29,1744.281,408.32904,135.99388,0.44084153,50.56834,408.32904,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 7:00,13765096,3597.512,284.16318,99.83173,2.2543678,43391.77,1916.8744,523.9647,453.42105,0.40234327,2.2543678,523.9647,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 8:00,13766497,3597.512,286.58862,96.496086,2.3063629,42894.94,1904.6981,504.82397,508.62268,0.4024229,2.3063629,504.82397,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 9:00,13770219.56,3597.512,255.3598422,95.14996533,2.061624906,38145.84337,1964.2426,577.2196733,452.9804626,0.402367286,2.061624906,577.2196733,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 10:00,13773942.11,3597.512,224.1310644,93.80384467,1.816886911,33396.74674,2023.7871,649.6153767,397.3382451,0.402311671,1.816886911,649.6153767,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 11:00,13777664.67,3597.512,192.9022867,92.457724,1.572148917,28647.65011,2083.3316,722.01108,341.6960277,0.402256057,1.572148917,722.01108,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 12:00,13781387.22,3597.512,161.6735089,91.11160333,1.327410922,23898.55348,2142.8761,794.4067833,286.0538102,0.402200442,1.327410922,794.4067833,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 13:00,13785109.78,3597.512,130.4447311,89.76548267,1.082672928,19149.45686,2202.4206,866.8024867,230.4115928,0.402144828,1.082672928,866.8024867,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 14:00,13788832.33,3597.512,99.21595333,88.419362,0.837934933,14400.36023,2261.9651,939.19819,174.7693753,0.402089213,0.837934933,939.19819,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 15:00,13792554.89,3597.512,67.98717556,87.07324133,0.593196939,9651.263598,2321.5096,1011.593893,119.1271579,0.402033599,0.593196939,1011.593893,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 16:00,13796277.44,3597.512,36.75839778,85.72712067,0.348458944,4902.166969,2381.0541,1083.989597,63.48494044,0.401977984,0.348458944,1083.989597,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 17:00,13800000,3597.512,5.52962,84.381,0.10372095,153.07034,2440.5986,1156.3853,7.842723,0.40192237,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 18:00,13802404,3597.512,240.49161,91.38488,1.6776701,40672.332,4092.9307,1322.6122,174906.14,0.82839715,1.6776701,1322.6122,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 19:00,13806150.6,3597.512,193.5441312,89.665954,1.36288027,39875.3536,3598.03946,1118.714992,139938.5155,0.66750486,1.36288027,1118.714992,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 20:00,13809897.2,3597.512,146.5966524,87.947028,1.04809044,39078.3752,3103.14822,914.817784,104970.8909,0.50661257,1.04809044,914.817784,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 21:00,13813643.8,3597.512,99.6491736,86.228102,0.73330061,38281.3968,2608.25698,710.920576,70003.2664,0.34572028,0.73330061,710.920576,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 22:00,13817390.4,3597.512,52.7016948,84.509176,0.41851078,37484.4184,2113.36574,507.023368,35035.64186,0.18482799,0.41851078,507.023368,130901.3,73179.4,-15784.6,-201976.5
+6/9/2023 23:00,13821137,3597.512,5.754216,82.79025,0.10372095,36687.44,1618.4745,303.12616,68.01733,0.0239357,0.10372095,303.12616,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 0:00,13824596,3597.512,5.7349145,82.5617475,0.10372095,27554.6865,1221.493843,231.0547575,51.0130596,0.021454854,0.10372095,231.0547575,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 1:00,13828055,3597.512,5.715613,82.333245,0.10372095,18421.93299,824.513185,158.983355,34.0087892,0.018974008,0.10372095,158.983355,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 2:00,13831514,3597.512,5.6963115,82.1047425,0.10372095,9289.179485,427.5325275,86.9119525,17.0045188,0.016493162,0.10372095,86.9119525,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 3:00,13834973,3597.512,5.67701,81.87624,0.10372095,156.42598,30.55187,14.84055,0.000248402,0.014012316,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 4:00,13838870,3597.512,5.658843667,81.74160533,0.10372095,11688.08999,546.5153467,95.80077333,28.4159676,0.013417678,0.10372095,95.80077333,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 5:00,13842767,3597.512,5.640677333,81.60697067,0.10372095,23219.75399,1062.478823,176.7609967,56.8316868,0.01282304,0.10372095,176.7609967,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 6:00,13846664,3597.512,5.622511,81.472336,0.10372095,34751.418,1578.4423,257.72122,85.247406,0.012228402,0.10372095,257.72122,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 7:00,13850233.8,3597.512,5.634845,81.4013814,0.10372095,34980.3702,1782.84802,353.627078,9252.646065,0.012049564,0.10372095,353.627078,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 8:00,13853803.6,3597.512,5.647179,81.3304268,0.10372095,35209.3224,1987.25374,449.532936,18420.04472,0.011870726,0.10372095,449.532936,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 9:00,13857373.4,3597.512,5.659513,81.2594722,0.10372095,35438.2746,2191.65946,545.438794,27587.44338,0.011691888,0.10372095,545.438794,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 10:00,13860943.2,3597.512,5.671847,81.1885176,0.10372095,35667.2268,2396.06518,641.344652,36754.84204,0.01151305,0.10372095,641.344652,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 11:00,13864513,3597.512,5.684181,81.117563,0.10372095,35896.179,2600.4709,737.25051,45922.2407,0.011334212,0.10372095,737.25051,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 12:00,13868082.8,3597.512,5.696515,81.0466084,0.10372095,36125.1312,2804.87662,833.156368,55089.63936,0.011155374,0.10372095,833.156368,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 13:00,13871652.6,3597.512,5.708849,80.9756538,0.10372095,36354.0834,3009.28234,929.062226,64257.03802,0.010976536,0.10372095,929.062226,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 14:00,13875222.4,3597.512,5.721183,80.9046992,0.10372095,36583.0356,3213.68806,1024.968084,73424.43668,0.010797698,0.10372095,1024.968084,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 15:00,13878792.2,3597.512,5.733517,80.8337446,0.10372095,36811.9878,3418.09378,1120.873942,82591.83534,0.01061886,0.10372095,1120.873942,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 16:00,13882362,3597.512,5.745851,80.76279,0.10372095,37040.94,3622.4995,1216.7798,91759.234,0.010440022,0.10372095,1216.7798,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 17:00,13887252,3597.512,5.71322035,108.138565,27.46659447,38504.804,4117.37595,1273.3771,211543.057,0.009429384,27.46659447,1273.3771,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 18:00,13892142,3597.512,5.6805897,135.51434,54.829468,39968.668,4612.2524,1329.9744,331326.88,0.008418746,54.829468,1329.9744,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 19:00,13894761.33,3597.512,5.6605476,117.46873,36.58755232,37992.98533,3621.374033,976.84835,220982.3903,0.009583588,36.58755232,976.84835,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 20:00,13897380.67,3597.512,5.6405055,99.42312,18.34563663,36017.30267,2630.495667,623.7223,110637.9007,0.010748429,18.34563663,623.7223,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 21:00,13900000,3597.512,5.6204634,81.37751,0.10372095,34041.62,1639.6173,270.59625,293.411,0.011913271,0.10372095,270.59625,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 22:00,13904345.67,3597.512,5.601881033,77.09340333,0.10372095,24695.93667,1525.405933,185.34435,197.7384095,0.009593425,0.10372095,185.34435,130901.3,73179.4,-15784.6,-201976.5
+6/10/2023 23:00,13908691.33,3597.512,5.583298667,72.80929667,0.10372095,15350.25333,1411.194567,100.09245,102.065819,0.007273578,0.10372095,100.09245,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 0:00,13913037,3597.512,5.5647163,68.52519,0.10372095,6004.57,1296.9832,14.84055,6.3932285,0.004953732,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 1:00,13915785.33,3597.512,5.554505867,67.43228,0.10372095,4055.045767,1075.706,15.780928,4.481459433,0.004763448,0.10372095,15.780928,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 2:00,13918533.67,3597.512,5.544295433,66.33937,0.10372095,2105.521533,854.4288,16.721306,2.569690367,0.004573163,0.10372095,16.721306,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 3:00,13921282,3597.512,5.534085,65.24646,0.10372095,155.9973,633.1516,17.661684,0.6579213,0.004382879,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 4:00,13925818.67,3597.512,5.5166082,63.97805667,0.10372095,11479.57887,981.4416,99.284356,216.6691142,0.004179789,0.10372095,99.284356,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 5:00,13930355.33,3597.512,5.4991314,62.70965333,0.10372095,22803.16043,1329.7316,180.907028,432.6803071,0.003976699,0.10372095,180.907028,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 6:00,13934892,3597.512,5.4816546,61.44125,0.10372095,34126.742,1678.0216,262.5297,648.6915,0.003773609,0.10372095,262.5297,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 7:00,13938420.67,3597.512,5.493868467,60.71897267,0.10372095,35458.98033,1955.574533,329.8885833,12394.85933,0.003666311,0.10372095,329.8885833,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 8:00,13941949.33,3597.512,5.506082333,59.99669533,0.10372095,36791.21867,2233.127467,397.2474667,24141.02717,0.003559013,0.10372095,397.2474667,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 9:00,13945478,3597.512,5.5182962,59.274418,0.10372095,38123.457,2510.6804,464.60635,35887.195,0.003451715,0.10372095,464.60635,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 10:00,13948673.83,3597.512,5.542565783,58.81318733,0.10372095,37623.89317,2786.946233,587.4131917,68240.6175,0.003387594,0.10372095,587.4131917,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 11:00,13951869.67,3597.512,5.566835367,58.35195667,0.10372095,37124.32933,3063.212067,710.2200333,100594.04,0.003323473,0.10372095,710.2200333,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 12:00,13955065.5,3597.512,5.59110495,57.890726,0.10372095,36624.7655,3339.4779,833.026875,132947.4625,0.003259352,0.10372095,833.026875,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 13:00,13958261.33,3597.512,5.615374533,57.42949533,0.10372095,36125.20167,3615.743733,955.8337167,165300.885,0.003195231,0.10372095,955.8337167,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 14:00,13961457.17,3597.512,5.639644117,56.96826467,0.10372095,35625.63783,3892.009567,1078.640558,197654.3075,0.00313111,0.10372095,1078.640558,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 15:00,13964653,3597.512,5.6639137,56.507034,0.10372095,35126.074,4168.2754,1201.4474,230007.73,0.003066989,0.10372095,1201.4474,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 16:00,13969052.5,3597.512,5.595484775,77.066898,13.78515771,35434.242,4348.883175,1214.7273,287845.79,0.079655962,13.78515771,1214.7273,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 17:00,13973452,3597.512,5.52705585,97.626762,27.46659447,35742.41,4529.49095,1228.0072,345683.85,0.156244935,27.46659447,1228.0072,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 18:00,13977851.5,3597.512,5.458626925,118.186626,41.14803124,36050.578,4710.098725,1241.2871,403521.91,0.232833907,41.14803124,1241.2871,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 19:00,13982251,3597.512,5.390198,138.74649,54.829468,36358.746,4890.7065,1254.567,461359.97,0.30942288,54.829468,1254.567,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 20:00,13985800.8,3597.512,5.4576962,122.6945172,43.88431859,37062.8748,4638.78874,1254.44264,386365.828,0.248206127,43.88431859,1254.44264,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 21:00,13989350.6,3597.512,5.5251944,106.6425444,32.93916918,37767.0036,4386.87098,1254.31828,311371.686,0.186989374,32.93916918,1254.31828,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 22:00,13992900.4,3597.512,5.5926926,90.5905716,21.99401977,38471.1324,4134.95322,1254.19392,236377.544,0.125772621,21.99401977,1254.19392,130901.3,73179.4,-15784.6,-201976.5
+6/11/2023 23:00,13996450.2,3597.512,5.6601908,74.5385988,11.04887036,39175.2612,3883.03546,1254.06956,161383.402,0.064555868,11.04887036,1254.06956,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 0:00,14000000,3597.512,5.727689,58.486626,0.10372095,39879.39,3631.1177,1253.9452,86389.26,0.003339115,0.10372095,1253.9452,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 1:00,14002552,3597.512,5.5818559,65.98606733,0.10372095,26637.8659,2664.302567,841.8506947,57593.13795,0.014805713,0.10372095,841.8506947,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 2:00,14005104,3597.512,5.4360228,73.48550867,0.10372095,13396.3418,1697.487433,429.7561893,28797.01591,0.026272312,0.10372095,429.7561893,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 3:00,14007656,3597.512,5.2901897,80.98495,0.10372095,154.8177,730.6723,17.661684,0.8938596,0.03773891,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 4:00,14011294.5,3597.512,5.4217591,81.02771,0.10372095,202.335975,1643.31125,587.023492,253.9825448,0.036202179,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 5:00,14014933,3597.512,5.5533285,81.07047,0.10372095,249.85425,2555.9502,1156.3853,507.07123,0.034665447,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 6:00,14020758,3597.512,253.76929,500.70755,89.79451,42297.242,2050.5618,477.82336,3550.8997,2.726804,89.79451,477.82336,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 7:00,14024711,3597.512,289.8469,297.44992,91.20741,40659.465,2635.0386,551.62146,40413.363,34.267624,91.20741,551.62146,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 8:00,14026044,3597.512,269.36548,247.97166,56.77435,39957.152,2775.8057,604.10767,52376.47,73.50586,56.77435,604.10767,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 9:00,14029992.33,3597.512,263.9348678,250.4788167,50.67379728,39826.17244,3020.378556,685.9687844,97819.08111,204.5363533,50.67379728,685.9687844,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 10:00,14033940.67,3597.512,258.5042556,252.9859733,44.57324456,39695.19289,3264.951411,767.8298989,143261.6922,335.5668467,44.57324456,767.8298989,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 11:00,14037889,3597.512,253.0736433,255.49313,38.47269183,39564.21333,3509.524267,849.6910133,188704.3033,466.59734,38.47269183,849.6910133,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 12:00,14041837.33,3597.512,247.6430311,258.0002867,32.37213911,39433.23378,3754.097122,931.5521278,234146.9144,597.6278333,32.37213911,931.5521278,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 13:00,14045785.67,3597.512,242.2124189,260.5074433,26.27158639,39302.25422,3998.669978,1013.413242,279589.5256,728.6583267,26.27158639,1013.413242,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 14:00,14049734,3597.512,236.7818067,263.0146,20.17103367,39171.27467,4243.242833,1095.274357,325032.1367,859.68882,20.17103367,1095.274357,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 15:00,14053682.33,3597.512,231.3511944,265.5217567,14.07048094,39040.29511,4487.815689,1177.135471,370474.7478,990.7193133,14.07048094,1177.135471,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 16:00,14057630.67,3597.512,225.9205822,268.0289133,7.969928222,38909.31556,4732.388544,1258.996586,415917.3589,1121.749807,7.969928222,1258.996586,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 17:00,14061579,3597.512,220.48997,270.53607,1.8693755,38778.336,4976.9614,1340.8577,461359.97,1252.7803,1.8693755,1340.8577,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 18:00,14065145.71,3597.512,189.736653,267.6928114,1.617139136,33321.536,4613.822171,1314.5045,395452.0188,1220.776,1.617139136,1314.5045,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 19:00,14068712.43,3597.512,158.983336,264.8495529,1.364902771,27864.736,4250.682943,1288.1513,329544.0676,1188.7717,1.364902771,1288.1513,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 20:00,14072279.14,3597.512,128.230019,262.0062943,1.112666407,22407.936,3887.543714,1261.7981,263636.1164,1156.7674,1.112666407,1261.7981,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 21:00,14075845.86,3597.512,97.476702,259.1630357,0.860430043,16951.136,3524.404486,1235.4449,197728.1652,1124.7631,0.860430043,1235.4449,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 22:00,14079412.57,3597.512,66.723385,256.3197771,0.608193679,11494.336,3161.265257,1209.0917,131820.214,1092.7588,0.608193679,1209.0917,130901.3,73179.4,-15784.6,-201976.5
+6/12/2023 23:00,14082979.29,3597.512,35.970068,253.4765186,0.355957314,6037.536,2798.126029,1182.7385,65912.26284,1060.7545,0.355957314,1182.7385,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 0:00,14086546,3597.512,5.216751,250.63326,0.10372095,580.736,2434.9868,1156.3853,4.3116484,1028.7502,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 1:00,14089054.33,3597.512,5.211950867,250.1082533,0.10372095,438.56104,1848.378,776.8107613,3.126089667,1028.7466,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 2:00,14091562.67,3597.512,5.207150733,249.5832467,0.10372095,296.38608,1261.7692,397.2362227,1.940530933,1028.743,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 3:00,14094071,3597.512,5.2023506,249.05824,0.10372095,154.21112,675.1604,17.661684,0.7549722,1028.7394,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 4:00,14100000,3597.512,239.74521,389.22507,56.8803,34089.46,4845.718,1209.609,461359.97,2817.7725,56.8803,1209.609,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 5:00,14102736,3597.512,5.188994,249.20554,0.10372095,11173.404,2502.6025,1156.3853,178.20403,1028.7388,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 6:00,14106864,3597.512,168.15553,286.3943,51.10631,41993.16,1964.9575,633.3905,120.6974,1028.7377,51.10631,633.3905,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 7:00,14110205.86,3597.512,188.66716,279.5980729,44.27280554,41208.371,1997.701471,595.7646943,2323.860629,1028.747657,44.27280554,595.7646943,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 8:00,14113547.71,3597.512,209.17879,272.8018457,37.43930109,40423.582,2030.445443,558.1388886,4527.023857,1028.757614,37.43930109,558.1388886,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 9:00,14116889.57,3597.512,229.69042,266.0056186,30.60579663,39638.793,2063.189414,520.5130829,6730.187086,1028.767571,30.60579663,520.5130829,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 10:00,14120231.43,3597.512,250.20205,259.2093914,23.77229217,38854.004,2095.933386,482.8872771,8933.350314,1028.777529,23.77229217,482.8872771,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 11:00,14123573.29,3597.512,270.71368,252.4131643,16.93878771,38069.215,2128.677357,445.2614714,11136.51354,1028.787486,16.93878771,445.2614714,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 12:00,14126915.14,3597.512,291.22531,245.6169371,10.10528326,37284.426,2161.421329,407.6356657,13339.67677,1028.797443,10.10528326,407.6356657,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 13:00,14130257,3597.512,311.73694,238.82071,3.2717788,36499.637,2194.1653,370.00986,15542.84,1028.8074,3.2717788,370.00986,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 14:00,14136943,3597.512,267.64017,135.4494,56.532455,36930.777,1684.4998,344.98584,150.39528,0.006893855,56.532455,344.98584,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 15:00,14137443,3597.512,267.97125,21.51649,2.0795708,36989.37,1688.5752,343.94812,171.41446,0.000552162,2.0795708,343.94812,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 16:00,14143564,3597.512,254.37112,85.45267,1.7110436,38468,1851.0342,375.7406,1414.4329,0.16640435,1.7110436,375.7406,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 17:00,14145952,3597.512,247.04688,86.20523,1.5901672,40243.285,2076.882,434.57755,5881.809,0.28324926,1.5901672,434.57755,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 18:00,14149817.4,3597.512,198.8314302,83.380346,1.29287795,39604.3734,1873.6002,412.76348,4705.637703,0.227716538,1.29287795,412.76348,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 19:00,14153682.8,3597.512,150.6159804,80.555462,0.9955887,38965.4618,1670.3184,390.94941,3529.466406,0.172183817,0.9955887,390.94941,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 20:00,14157548.2,3597.512,102.4005306,77.730578,0.69829945,38326.5502,1467.0366,369.13534,2353.295109,0.116651095,0.69829945,369.13534,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 21:00,14161413.6,3597.512,54.1850808,74.905694,0.4010102,37687.6386,1263.7548,347.32127,1177.123811,0.061118374,0.4010102,347.32127,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 22:00,14165279,3597.512,5.969631,72.08081,0.10372095,37048.727,1060.473,325.5072,0.95251435,0.005585652,0.10372095,325.5072,130901.3,73179.4,-15784.6,-201976.5
+6/13/2023 23:00,14168354,3597.512,5.95243934,70.703754,0.10372095,29670.6787,957.54094,263.9380968,0.857831574,0.00533702,0.10372095,263.9380968,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 0:00,14171429,3597.512,5.93524768,69.326698,0.10372095,22292.6304,854.60888,202.3689936,0.763148798,0.005088388,0.10372095,202.3689936,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 1:00,14174504,3597.512,5.91805602,67.949642,0.10372095,14914.58209,751.67682,140.7998904,0.668466022,0.004839757,0.10372095,140.7998904,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 2:00,14177579,3597.512,5.90086436,66.572586,0.10372095,7536.533792,648.74476,79.2307872,0.573783246,0.004591125,0.10372095,79.2307872,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 3:00,14180654,3597.512,5.8836727,65.19553,0.10372095,158.48549,545.8127,17.661684,0.47910047,0.004342493,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 4:00,14184173.5,3597.512,5.86789785,64.3631785,0.10372095,181.73269,1489.92845,587.023492,2.166380735,0.004187269,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 5:00,14187693,3597.512,5.852123,63.530827,0.10372095,204.97989,2434.0442,1156.3853,3.853661,0.004032044,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 6:00,14191534,3597.512,339.4805,443.69247,50.506348,36044.06,1570.7961,279.2042,15.431159,7.658023,50.506348,279.2042,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 7:00,14198213,3597.512,408.40976,459.1807,52.535534,42623.17,1882.2266,490.3825,446.84787,1.7017682,52.535534,490.3825,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 8:00,14199113,3597.512,283.0739,410.31964,2.1201801,42301.31,1847.4121,476.17847,307.437,1.9643831,2.1201801,476.17847,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 9:00,14203068.33,3597.512,295.4113333,379.82958,2.488104567,41502.92167,1897.832367,452.3027267,1602.525333,1.599167367,2.488104567,452.3027267,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 10:00,14207023.67,3597.512,307.7487667,349.33952,2.856029033,40704.53333,1948.252633,428.4269833,2897.613667,1.233951633,2.856029033,428.4269833,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 11:00,14210979,3597.512,320.0862,318.84946,3.2239535,39906.145,1998.6729,404.55124,4192.702,0.8687359,3.2239535,404.55124,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 12:00,14214263.5,3597.512,307.598875,294.92209,2.936604025,38869.05025,1985.396675,388.50433,4282.1614,0.810082725,2.936604025,388.50433,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 13:00,14217548,3597.512,295.11155,270.99472,2.64925455,37831.9555,1972.12045,372.45742,4371.6208,0.75142955,2.64925455,372.45742,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 14:00,14220832.5,3597.512,282.624225,247.06735,2.361905075,36794.86075,1958.844225,356.41051,4461.0802,0.692776375,2.361905075,356.41051,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 15:00,14224117,3597.512,270.1369,223.13998,2.0745556,35757.766,1945.568,340.3636,4550.5396,0.6341232,2.0745556,340.3636,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 16:00,14227976,3597.512,256.39505,218.19106,1.89687305,36910.178,2217.9023,397.230065,19651.9708,4.21641985,1.89687305,397.230065,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 17:00,14231835,3597.512,242.6532,213.24214,1.7191905,38062.59,2490.2366,454.09653,34753.402,7.7987165,1.7191905,454.09653,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 18:00,14235743,3597.512,197.366135,201.1964375,1.315323113,38826.3,2371.759425,455.3871025,26846.59135,5.855122753,1.315323113,455.3871025,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 19:00,14239651,3597.512,152.07907,189.150735,0.911455725,39590.01,2253.28225,456.677675,18939.7807,3.911529006,0.911455725,456.677675,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 20:00,14243559,3597.512,106.792005,177.1050325,0.507588338,40353.72,2134.805075,457.9682475,11032.97005,1.967935259,0.507588338,457.9682475,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 21:00,14247467,3597.512,61.50494,165.05933,0.10372095,41117.43,2016.3279,459.25882,3126.1594,0.024341512,0.10372095,459.25882,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 22:00,14251071,3597.512,33.65997835,159.61824,0.10372095,38454.815,1495.36152,378.82469,1563.479736,0.022048389,0.10372095,378.82469,130901.3,73179.4,-15784.6,-201976.5
+6/14/2023 23:00,14254675,3597.512,5.8150167,154.17715,0.10372095,35792.2,974.39514,298.39056,0.80007136,0.019755265,0.10372095,298.39056,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 0:00,14257742,3597.512,5.7987704,150.02382,0.10372095,26882.5419,861.40802,228.208341,0.70912344,0.018778546,0.10372095,228.208341,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 1:00,14260809,3597.512,5.7825241,145.87049,0.10372095,17972.88379,748.4209,158.026122,0.61817552,0.017801827,0.10372095,158.026122,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 2:00,14263876,3597.512,5.7662778,141.71716,0.10372095,9063.225685,635.43378,87.843903,0.5272276,0.016825108,0.10372095,87.843903,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 3:00,14266943,3597.512,5.7500315,137.56383,0.10372095,153.56758,522.44666,17.661684,0.43627968,0.015848389,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 4:00,14270533.5,3597.512,5.73584525,134.581055,0.10372095,200.450865,1486.57438,587.023492,9.79263634,0.015187021,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 5:00,14274124,3597.512,5.721659,131.59828,0.10372095,247.33415,2450.7021,1156.3853,19.148993,0.014525653,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 6:00,14277986,3597.512,187.59479,438.08395,50.506348,36118.277,1587.4502,283.53992,36.97834,1.7881086,50.506348,283.53992,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 7:00,14281302,3597.512,452.4177,439.5717,52.890083,43743.98,1852.8542,515.7304,141.32454,1.7301257,52.890083,515.7304,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 8:00,14285014,3597.512,283.27783,312.76596,2.1062818,42650.527,1872.3474,477.54684,469.84766,0.3450674,2.1062818,477.54684,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 9:00,14289328.67,3597.512,296.38283,271.3686933,2.536095733,40957.36567,2103.6746,463.1224033,15913.98311,1.963508367,2.536095733,463.1224033,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 10:00,14293643.33,3597.512,309.48783,229.9714267,2.965909667,39264.20433,2335.0018,448.6979667,31358.11855,3.581949333,2.965909667,448.6979667,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 11:00,14297958,3597.512,322.59283,188.57416,3.3957236,37571.043,2566.329,434.27353,46802.254,5.2003903,3.3957236,434.27353,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 12:00,14300000,3597.512,5.82732,162.67073,0.10372095,38620.664,1711.7948,391.92026,83.12654,0.022319693,0.10372095,391.92026,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 13:00,14304070.4,3597.512,52.071624,152.281456,0.41759956,38951.1046,2147.1566,573.288048,26171.33323,0.054321768,0.41759956,573.288048,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 14:00,14308140.8,3597.512,98.315928,141.892182,0.73147817,39281.5452,2582.5184,754.655836,52259.53992,0.086323844,0.73147817,754.655836,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 15:00,14312211.2,3597.512,144.560232,131.502908,1.04535678,39611.9858,3017.8802,936.023624,78347.74662,0.118325919,1.04535678,936.023624,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 16:00,14316281.6,3597.512,190.804536,121.113634,1.35923539,39942.4264,3453.242,1117.391412,104435.9533,0.150327995,1.35923539,1117.391412,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 17:00,14320352,3597.512,237.04884,110.72436,1.673114,40272.867,3888.6038,1298.7592,130524.16,0.18233007,1.673114,1298.7592,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 18:00,14323998.4,3597.512,190.7801178,103.738618,1.35923539,39503.7976,3441.07784,1099.51634,104457.0135,0.146897217,1.35923539,1099.51634,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 19:00,14327644.8,3597.512,144.5113956,96.752876,1.04535678,38734.7282,2993.55188,900.27348,78389.86699,0.111464363,1.04535678,900.27348,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 20:00,14331291.2,3597.512,98.2426734,89.767134,0.73147817,37965.6588,2546.02592,701.03062,52322.72048,0.07603151,0.73147817,701.03062,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 21:00,14334937.6,3597.512,51.9739512,82.781392,0.41759956,37196.5894,2098.49996,501.78776,26255.57398,0.040598656,0.41759956,501.78776,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 22:00,14338584,3597.512,5.705229,75.79565,0.10372095,36427.52,1650.974,302.5449,188.42747,0.005165803,0.10372095,302.5449,130901.3,73179.4,-15784.6,-201976.5
+6/15/2023 23:00,14341783,3597.512,5.681147,72.78612,0.10372095,21370.36425,1156.84848,160.04804,94.5767591,0.004762335,0.10372095,160.04804,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 0:00,14344982,3597.512,5.657065,69.77659,0.10372095,6313.2085,662.72296,17.55118,0.7260482,0.004358866,0.10372095,17.55118,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 1:00,14347780.67,3597.512,5.648153833,68.00470333,0.10372095,4261.09221,451.99823,16.64763667,0.484114265,0.004141332,0.10372095,16.64763667,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 2:00,14350579.33,3597.512,5.639242667,66.23281667,0.10372095,2208.97592,241.2735,15.74409333,0.242180331,0.003923797,0.10372095,15.74409333,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 3:00,14353378,3597.512,5.6303315,64.46093,0.10372095,156.85963,30.54877,14.84055,0.000246396,0.003706263,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 4:00,14357032,3597.512,5.61660875,63.063775,0.10372095,380.770485,1251.173685,585.612925,34.4855382,0.003533826,0.10372095,585.612925,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 5:00,14360686,3597.512,5.602886,61.66662,0.10372095,604.68134,2471.7986,1156.3853,68.97083,0.003361389,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 6:00,14364978,3597.512,81.586075,252.57562,50.506348,38332.305,1657.935,337.607,84.71741,0.043851133,50.506348,337.607,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 7:00,14368809,3597.512,290.8614,175.66934,91.073715,43113.637,1949.906,510.70383,908.3266,0.005842998,91.073715,510.70383,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 8:00,14373178.5,3597.512,286.23751,136.27065,46.669097,40354.6175,2090.351,453.95824,8553.6078,0.192605459,46.669097,453.95824,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 9:00,14377548,3597.512,281.61362,96.87196,2.264479,37595.598,2230.796,397.21265,16198.889,0.37936792,2.264479,397.21265,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 10:00,14380947,3597.512,296.29556,98.097,2.6315718,37861.652,2458.6643,445.08722,32236.559,0.7283682,2.6315718,445.08722,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 11:00,14384122.5,3597.512,247.855523,92.78634167,2.210263325,31577.72181,2143.386033,373.8496307,26863.88582,0.607626503,2.210263325,373.8496307,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 12:00,14387298,3597.512,199.415486,87.47568333,1.78895485,25293.79161,1828.107767,302.6120413,21491.21264,0.486884806,1.78895485,302.6120413,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 13:00,14390473.5,3597.512,150.975449,82.165025,1.367646375,19009.86142,1512.8295,231.374452,16118.53946,0.36614311,1.367646375,231.374452,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 14:00,14393649,3597.512,102.535412,76.85436667,0.9463379,12725.93122,1197.551233,160.1368627,10745.86628,0.245401413,0.9463379,160.1368627,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 15:00,14396824.5,3597.512,54.095375,71.54370833,0.525029425,6442.001025,882.2729667,88.89927333,5373.193105,0.124659716,0.525029425,88.89927333,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 16:00,14400000,3597.512,5.655338,66.23305,0.10372095,158.07083,566.9947,17.661684,0.5199261,0.003918019,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 17:00,14407087,3597.512,234.98048,92.58328,1.6864556,39616.06,4433.355,1312.4521,277689.62,0.63941365,1.6864556,1312.4521,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 18:00,14410679.57,3597.512,202.2115554,91.32678,1.46035065,34005.22019,4148.338857,1290.156843,238020.5811,0.549222586,1.46035065,1290.156843,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 19:00,14414272.14,3597.512,169.4426309,90.07028,1.2342457,28394.38037,3863.322714,1267.861586,198351.5422,0.459031523,1.2342457,1267.861586,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 20:00,14417864.71,3597.512,136.6737063,88.81378,1.00814075,22783.54056,3578.306571,1245.566329,158682.5034,0.368840459,1.00814075,1245.566329,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 21:00,14421457.29,3597.512,103.9047817,87.55728,0.7820358,17172.70074,3293.290429,1223.271071,119013.4645,0.278649396,0.7820358,1223.271071,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 22:00,14425049.86,3597.512,71.13585714,86.30078,0.55593085,11561.86093,3008.274286,1200.975814,79344.4256,0.188458332,0.55593085,1200.975814,130901.3,73179.4,-15784.6,-201976.5
+6/16/2023 23:00,14428642.43,3597.512,38.36693257,85.04428,0.3298259,5951.021114,2723.258143,1178.680557,39675.38672,0.098267269,0.3298259,1178.680557,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 0:00,14432235,3597.512,5.598008,83.78778,0.10372095,340.1813,2438.242,1156.3853,6.3478346,0.008076205,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 1:00,14434711.33,3597.512,5.589905467,82.82557,0.10372095,278.54883,1857.68229,776.8107613,4.5010252,0.007709373,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 2:00,14437187.67,3597.512,5.581802933,81.86336,0.10372095,216.91636,1277.12258,397.2362227,2.6542158,0.007342542,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 3:00,14439664,3597.512,5.5737004,80.90115,0.10372095,155.28389,696.56287,17.661684,0.8074064,0.00697571,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 4:00,14443919,3597.512,5.5566896,78.908015,0.10372095,11370.62593,1045.63168,95.87608933,563.8853709,0.006616984,0.10372095,95.87608933,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 5:00,14448174,3597.512,5.5396788,76.91488,0.10372095,22585.96796,1394.70049,174.0904947,1126.963335,0.006258258,0.10372095,174.0904947,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 6:00,14452429,3597.512,5.522668,74.921745,0.10372095,33801.31,1743.7693,252.3049,1690.0413,0.005899532,0.10372095,252.3049,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 7:00,14455949,3597.512,5.5089755,73.78413,0.10372095,31824.213,2244.262,276.58893,27467.467,0.005690286,0.10372095,276.58893,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 8:00,14459619.92,3597.512,5.510012067,73.94738333,0.10372095,31912.92442,2263.184058,346.1971442,25198.6771,0.005720569,0.10372095,346.1971442,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 9:00,14463290.83,3597.512,5.511048633,74.11063667,0.10372095,32001.63583,2282.106117,415.8053583,22929.8872,0.005750851,0.10372095,415.8053583,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 10:00,14466961.75,3597.512,5.5120852,74.27389,0.10372095,32090.34725,2301.028175,485.4135725,20661.0973,0.005781134,0.10372095,485.4135725,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 11:00,14470632.67,3597.512,5.513121767,74.43714333,0.10372095,32179.05867,2319.950233,555.0217867,18392.3074,0.005811416,0.10372095,555.0217867,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 12:00,14474303.58,3597.512,5.514158333,74.60039667,0.10372095,32267.77008,2338.872292,624.6300008,16123.5175,0.005841699,0.10372095,624.6300008,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 13:00,14477974.5,3597.512,5.5151949,74.76365,0.10372095,32356.4815,2357.79435,694.238215,13854.7276,0.005871981,0.10372095,694.238215,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 14:00,14481645.42,3597.512,5.516231467,74.92690333,0.10372095,32445.19292,2376.716408,763.8464292,11585.9377,0.005902264,0.10372095,763.8464292,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 15:00,14485316.33,3597.512,5.517268033,75.09015667,0.10372095,32533.90433,2395.638467,833.4546433,9317.1478,0.005932546,0.10372095,833.4546433,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 16:00,14488987.25,3597.512,5.5183046,75.25341,0.10372095,32622.61575,2414.560525,903.0628575,7048.3579,0.005962829,0.10372095,903.0628575,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 17:00,14492658.17,3597.512,5.519341167,75.41666333,0.10372095,32711.32717,2433.482583,972.6710717,4779.568,0.005993111,0.10372095,972.6710717,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 18:00,14496329.08,3597.512,5.520377733,75.57991667,0.10372095,32800.03858,2452.404642,1042.279286,2510.7781,0.006023394,0.10372095,1042.279286,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 19:00,14500000,3597.512,5.5214143,75.74317,0.10372095,32888.75,2471.3267,1111.8875,241.9882,0.006053676,0.10372095,1111.8875,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 20:00,14503732.8,3597.512,5.5197221,73.1546328,0.10372095,26366.27784,2480.46396,1120.78706,243.260222,0.005622973,0.10372095,1120.78706,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 21:00,14507465.6,3597.512,5.5180299,70.5660956,0.10372095,19843.80568,2489.60122,1129.68662,244.532244,0.00519227,0.10372095,1129.68662,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 22:00,14511198.4,3597.512,5.5163377,67.9775584,0.10372095,13321.33352,2498.73848,1138.58618,245.804266,0.004761568,0.10372095,1138.58618,130901.3,73179.4,-15784.6,-201976.5
+6/17/2023 23:00,14514931.2,3597.512,5.5146455,65.3890212,0.10372095,6798.86136,2507.87574,1147.48574,247.076288,0.004330865,0.10372095,1147.48574,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 0:00,14518664,3597.512,5.5129533,62.800484,0.10372095,276.3892,2517.013,1156.3853,248.34831,0.003900162,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 1:00,14521130.33,3597.512,5.504213667,62.54943367,0.10372095,234.0139567,2110.264667,776.8107613,167.1250922,0.003863885,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 2:00,14523596.67,3597.512,5.495474033,62.29838333,0.10372095,191.6387133,1703.516333,397.2362227,85.9018744,0.003827608,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 3:00,14526063,3597.512,5.4867344,62.047333,0.10372095,149.26347,1296.768,17.661684,4.6786566,0.003791331,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 4:00,14530367,3597.512,5.4673574,61.66140375,0.10372095,8530.886103,1396.088275,76.156633,240.6765925,0.003736852,0.10372095,76.156633,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 5:00,14534671,3597.512,5.4479804,61.2754745,0.10372095,16912.50874,1495.40855,134.651582,476.6745283,0.003682374,0.10372095,134.651582,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 6:00,14538975,3597.512,5.4286034,60.88954525,0.10372095,25294.13137,1594.728825,193.146531,712.6724642,0.003627895,0.10372095,193.146531,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 7:00,14543279,3597.512,5.4092264,60.503616,0.10372095,33675.754,1694.0491,251.64148,948.6704,0.003573416,0.10372095,251.64148,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 8:00,14545500.5,3597.512,5.4095387,60.324316,0.10372095,32827.718,1996.50075,262.7491,17232.7902,0.003548597,0.10372095,262.7491,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 9:00,14547722,3597.512,5.409851,60.145016,0.10372095,31979.682,2298.9524,273.85672,33516.91,0.003523777,0.10372095,273.85672,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 10:00,14551323,3597.512,5.433937757,59.90827371,0.10372095,32298.29029,2642.491143,405.6162171,87655.10857,0.003491875,0.10372095,405.6162171,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 11:00,14554924,3597.512,5.458024514,59.67153143,0.10372095,32616.89857,2986.029886,537.3757143,141793.3071,0.003459973,0.10372095,537.3757143,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 12:00,14558525,3597.512,5.482111271,59.43478914,0.10372095,32935.50686,3329.568629,669.1352114,195931.5057,0.003428071,0.10372095,669.1352114,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 13:00,14562126,3597.512,5.506198029,59.19804686,0.10372095,33254.11514,3673.107371,800.8947086,250069.7043,0.003396168,0.10372095,800.8947086,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 14:00,14565727,3597.512,5.530284786,58.96130457,0.10372095,33572.72343,4016.646114,932.6542057,304207.9029,0.003364266,0.10372095,932.6542057,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 15:00,14569328,3597.512,5.554371543,58.72456229,0.10372095,33891.33171,4360.184857,1064.413703,358346.1014,0.003332364,0.10372095,1064.413703,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 16:00,14572929,3597.512,5.5784583,58.48782,0.10372095,34209.94,4703.7236,1196.1732,412484.3,0.003300462,0.10372095,1196.1732,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 17:00,14578181.5,3597.512,5.493994,97.445835,27.46659447,36000.687,4815.45065,1243.72595,436922.135,0.021873644,27.46659447,1243.72595,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 18:00,14583434,3597.512,5.4095297,136.40385,54.829468,37791.434,4927.1777,1291.2787,461359.97,0.040446825,54.829468,1291.2787,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 19:00,14586747.2,3597.512,5.41933862,121.11641,43.88431859,37552.0552,4498.21486,1144.24232,381219.738,0.033057305,43.88431859,1144.24232,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 20:00,14590060.4,3597.512,5.42914754,105.82897,32.93916918,37312.6764,4069.25202,997.20594,301079.506,0.025667785,32.93916918,997.20594,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 21:00,14593373.6,3597.512,5.43895646,90.54153,21.99401977,37073.2976,3640.28918,850.16956,220939.274,0.018278264,21.99401977,850.16956,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 22:00,14596686.8,3597.512,5.44876538,75.25409,11.04887036,36833.9188,3211.32634,703.13318,140799.042,0.010888744,11.04887036,703.13318,130901.3,73179.4,-15784.6,-201976.5
+6/18/2023 23:00,14600000,3597.512,5.4585743,59.96665,0.10372095,36594.54,2782.3635,556.0968,60658.81,0.003499224,0.10372095,556.0968,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 0:00,14605031,3597.512,5.327865,80.65441,0.10372095,348.8361,2446.9734,1156.3853,14.400092,0.014276048,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 1:00,14607506.67,3597.512,5.320412233,80.61902333,0.10372095,284.01347,1877.8123,776.8107613,9.905970787,0.013831489,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 2:00,14609982.33,3597.512,5.312959467,80.58363667,0.10372095,219.19084,1308.6512,397.2362227,5.411849573,0.013386929,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 3:00,14612458,3597.512,5.3055067,80.54825,0.10372095,154.36821,739.4901,17.661684,0.91772836,0.01294237,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 4:00,14616127.5,3597.512,8.53306685,96.352705,25.30503448,257.93174,1643.47735,587.023492,221.5965892,0.01231632,25.30503448,587.023492,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 5:00,14619797,3597.512,11.760627,112.15716,50.506348,361.49527,2547.4646,1156.3853,442.27545,0.01169027,50.506348,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 6:00,14625739,3597.512,289.95206,488.52707,90.0543,42398.72,1923.9427,467.67368,1132.524,0.37340677,90.0543,467.67368,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 7:00,14630107,3597.512,298.1744,288.7812,91.08643,40679.477,2309.038,483.64987,15639.751,0.043776933,91.08643,483.64987,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 8:00,14631007,3597.512,270.9228,245.2405,56.66119,40038.91,2359.0369,476.62054,19857.363,0.043258578,56.66119,476.62054,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 9:00,14634936.11,3597.512,265.5129478,257.1574056,56.61827722,39862.69689,2647.763467,570.5188356,68913.20822,116.9050743,56.61827722,570.5188356,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 10:00,14638865.22,3597.512,260.1030956,269.0743111,56.57536444,39686.48378,2936.490033,664.4171311,117969.0534,233.76689,56.57536444,664.4171311,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 11:00,14642794.33,3597.512,254.6932433,280.9912167,56.53245167,39510.27067,3225.2166,758.3154267,167024.8987,350.6287057,56.53245167,758.3154267,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 12:00,14646723.44,3597.512,249.2833911,292.9081222,56.48953889,39334.05756,3513.943167,852.2137222,216080.7439,467.4905214,56.48953889,852.2137222,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 13:00,14650652.56,3597.512,243.8735389,304.8250278,56.44662611,39157.84444,3802.669733,946.1120178,265136.5891,584.3523371,56.44662611,946.1120178,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 14:00,14654581.67,3597.512,238.4636867,316.7419333,56.40371333,38981.63133,4091.3963,1040.010313,314192.4343,701.2141529,56.40371333,1040.010313,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 15:00,14658510.78,3597.512,233.0538344,328.6588389,56.36080056,38805.41822,4380.122867,1133.908609,363248.2796,818.0759686,56.36080056,1133.908609,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 16:00,14662439.89,3597.512,227.6439822,340.5757444,56.31788778,38629.20511,4668.849433,1227.806904,412304.1248,934.9377843,56.31788778,1227.806904,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 17:00,14666369,3597.512,222.23413,352.49265,56.274975,38452.992,4957.576,1321.7052,461359.97,1051.7996,56.274975,1321.7052,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 18:00,14666429,3597.512,222.21426,299.50385,1.7975409,38470.047,4958.368,1322.4974,461359.97,1086.3757,1.7975409,1322.4974,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 19:00,14670594,3597.512,186.0612038,295.41808,1.515237575,32118.98502,4541.942533,1294.81205,384472.6795,1046.524062,1.515237575,1294.81205,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 20:00,14674759,3597.512,149.9081477,291.33231,1.23293425,25767.92305,4125.517067,1267.1267,307585.3891,1006.672423,1.23293425,1267.1267,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 21:00,14678924,3597.512,113.7550915,287.24654,0.950630925,19416.86107,3709.0916,1239.44135,230698.0986,966.820785,0.950630925,1239.44135,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 22:00,14683089,3597.512,77.60203533,283.16077,0.6683276,13065.79909,3292.666133,1211.756,153810.8082,926.9691467,0.6683276,1211.756,130901.3,73179.4,-15784.6,-201976.5
+6/19/2023 23:00,14687254,3597.512,41.44897917,279.075,0.386024275,6714.737117,2876.240667,1184.07065,76923.51773,887.1175083,0.386024275,1184.07065,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 0:00,14691419,3597.512,5.295923,274.98923,0.10372095,363.67514,2459.8152,1156.3853,36.227276,847.26587,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 1:00,14693900.33,3597.512,5.290281333,274.24992,0.10372095,294.3328767,1901.854833,776.8107613,24.5000621,847.2618633,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 2:00,14696381.67,3597.512,5.284639667,273.51061,0.10372095,224.9906133,1343.894467,397.2362227,12.7728482,847.2578567,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 3:00,14698863,3597.512,5.278998,272.7713,0.10372095,155.64835,785.9341,17.661684,1.0456343,847.25385,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 4:00,14702502.67,3597.512,5.811231667,271.8932067,0.10372095,11453.13557,1358.1915,390.3099893,95.46663953,847.2720667,0.10372095,390.3099893,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 5:00,14706142.33,3597.512,6.343465333,271.0151133,0.10372095,22750.62278,1930.4489,762.9582947,189.8876448,847.2902833,0.10372095,762.9582947,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 6:00,14709782,3597.512,6.875699,270.13702,0.10372095,34048.11,2502.7063,1135.6066,284.30865,847.3085,0.10372095,1135.6066,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 7:00,14714229,3597.512,137.1753695,238.31667,28.42562547,36327.4515,2503.95375,806.053435,17106.35433,430.948927,28.42562547,806.053435,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 8:00,14718676,3597.512,267.47504,206.49632,56.74753,38606.793,2505.2012,476.50027,33928.4,14.589354,56.74753,476.50027,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 9:00,14722465.22,3597.512,262.1899444,215.0589578,50.64478083,38547.12333,2777.659511,570.3872733,81420.79667,150.8074036,50.64478083,570.3872733,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 10:00,14726254.44,3597.512,256.9048489,223.6215956,44.54203167,38487.45367,3050.117822,664.2742767,128913.1933,287.0254531,44.54203167,664.2742767,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 11:00,14730043.67,3597.512,251.6197533,232.1842333,38.4392825,38427.784,3322.576133,758.16128,176405.59,423.2435027,38.4392825,758.16128,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 12:00,14733832.89,3597.512,246.3346578,240.7468711,32.33653333,38368.11433,3595.034444,852.0482833,223897.9867,559.4615522,32.33653333,852.0482833,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 13:00,14737622.11,3597.512,241.0495622,249.3095089,26.23378417,38308.44467,3867.492756,945.9352867,271390.3833,695.6796018,26.23378417,945.9352867,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 14:00,14741411.33,3597.512,235.7644667,257.8721467,20.131035,38248.775,4139.951067,1039.82229,318882.78,831.8976513,20.131035,1039.82229,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 15:00,14745200.56,3597.512,230.4793711,266.4347844,14.02828583,38189.10533,4412.409378,1133.709293,366375.1767,968.1157009,14.02828583,1133.709293,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 16:00,14748989.78,3597.512,225.1942756,274.9974222,7.925536667,38129.43567,4684.867689,1227.596297,413867.5733,1104.33375,7.925536667,1227.596297,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 17:00,14752779,3597.512,219.90918,283.56006,1.8227875,38069.766,4957.326,1321.4833,461359.97,1240.5518,1.8227875,1321.4833,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 18:00,14756366.86,3597.512,189.2415727,281.6263,1.577206564,32663.88975,4444.207071,1135.223069,395478.0368,1207.618914,1.577206564,1135.223069,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 19:00,14759954.71,3597.512,158.5739654,279.69254,1.331625629,27258.01349,3931.088143,948.9628383,329596.1037,1174.686029,1.331625629,948.9628383,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 20:00,14763542.57,3597.512,127.9063581,277.75878,1.086044693,21852.13724,3417.969214,762.7026074,263714.1705,1141.753143,1.086044693,762.7026074,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 21:00,14767130.43,3597.512,97.23875086,275.82502,0.840463757,16446.26098,2904.850286,576.4423766,197832.2374,1108.820257,0.840463757,576.4423766,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 22:00,14770718.29,3597.512,66.57114357,273.89126,0.594882821,11040.38473,2391.731357,390.1821457,131950.3042,1075.887371,0.594882821,390.1821457,130901.3,73179.4,-15784.6,-201976.5
+6/20/2023 23:00,14774306.14,3597.512,35.90353629,271.9575,0.349301886,5634.508474,1878.612429,203.9219149,66068.37109,1042.954486,0.349301886,203.9219149,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 0:00,14777894,3597.512,5.235929,270.02374,0.10372095,228.63222,1365.4935,17.661684,186.43794,1010.0216,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 1:00,14780347.67,3597.512,5.230620233,269.88564,0.10372095,203.46888,1313.565667,17.661684,125.1708877,1010.0181,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 2:00,14782801.33,3597.512,5.225311467,269.74754,0.10372095,178.30554,1261.637833,17.661684,63.9038354,1010.0146,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 3:00,14785255,3597.512,5.2200027,269.60944,0.10372095,153.1422,1209.71,17.661684,2.6367831,1010.0111,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 4:00,14789075,3597.512,5.20966725,269.42168,0.10372095,782.098,1886.9153,587.023492,291.1455116,1010.05625,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 5:00,14792895,3597.512,5.1993318,269.23392,0.10372095,1411.0538,2564.1206,1156.3853,579.65424,1010.1014,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 6:00,14796447.5,3597.512,111.7191159,332.257645,28.21524797,18796.5054,3729.7858,1207.99635,230969.8121,1896.43825,28.21524797,1207.99635,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 7:00,14800000,3597.512,218.2389,395.28137,56.326775,36181.957,4895.451,1259.6074,461359.97,2782.7751,56.326775,1259.6074,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 8:00,14803916.6,3597.512,218.682963,385.603393,56.3204239,36384.4558,4901.26176,1265.42093,461359.97,2561.22183,56.3204239,1265.42093,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 9:00,14807833.2,3597.512,219.127026,375.925416,56.3140728,36586.9546,4907.07252,1271.23446,461359.97,2339.66856,56.3140728,1271.23446,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 10:00,14811749.8,3597.512,219.571089,366.247439,56.3077217,36789.4534,4912.88328,1277.04799,461359.97,2118.11529,56.3077217,1277.04799,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 11:00,14815666.4,3597.512,220.015152,356.569462,56.3013706,36991.9522,4918.69404,1282.86152,461359.97,1896.56202,56.3013706,1282.86152,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 12:00,14819583,3597.512,220.459215,346.891485,56.2950195,37194.451,4924.5048,1288.67505,461359.97,1675.00875,56.2950195,1288.67505,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 13:00,14823499.6,3597.512,220.903278,337.213508,56.2886684,37396.9498,4930.31556,1294.48858,461359.97,1453.45548,56.2886684,1294.48858,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 14:00,14827416.2,3597.512,221.347341,327.535531,56.2823173,37599.4486,4936.12632,1300.30211,461359.97,1231.90221,56.2823173,1300.30211,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 15:00,14831332.8,3597.512,221.791404,317.857554,56.2759662,37801.9474,4941.93708,1306.11564,461359.97,1010.34894,56.2759662,1306.11564,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 16:00,14835249.4,3597.512,222.235467,308.179577,56.2696151,38004.4462,4947.74784,1311.92917,461359.97,788.79567,56.2696151,1311.92917,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 17:00,14839166,3597.512,222.67953,298.5016,56.263264,38206.945,4953.5586,1317.7427,461359.97,567.2424,56.263264,1317.7427,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 18:00,14839226,3597.512,222.65988,245.5871,1.7849104,38225.832,4954.3564,1318.5408,461359.97,587.887,1.7849104,1318.5408,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 19:00,14843387.83,3597.512,186.4352205,243.2507833,1.504712158,31925.41233,4535.7391,1291.514883,384468.3015,564.9715633,1.504712158,1291.514883,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 20:00,14847549.67,3597.512,150.210561,240.9144667,1.224513917,25624.99267,4117.1218,1264.488967,307576.633,542.0561267,1.224513917,1264.488967,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 21:00,14851711.5,3597.512,113.9859015,238.57815,0.944315675,19324.573,3698.5045,1237.46305,230684.9644,519.14069,0.944315675,1237.46305,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 22:00,14855873.33,3597.512,77.761242,236.2418333,0.664117433,13024.15333,3279.8872,1210.437133,153793.2959,496.2252533,0.664117433,1210.437133,130901.3,73179.4,-15784.6,-201976.5
+6/21/2023 23:00,14860035.17,3597.512,41.5365825,233.9055167,0.383919192,6723.733667,2861.2699,1183.411217,76901.62741,473.3098167,0.383919192,1183.411217,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 0:00,14864197,3597.512,5.311923,231.5692,0.10372095,423.314,2442.6526,1156.3853,9.95889,450.39438,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 1:00,14866686.67,3597.512,5.306064333,231.5317,0.10372095,333.43877,1867.489833,776.8107613,6.92582449,450.3919367,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 2:00,14869176.33,3597.512,5.300205667,231.4942,0.10372095,243.56354,1292.327067,397.2362227,3.89275898,450.3894933,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 3:00,14871666,3597.512,5.294347,231.4567,0.10372095,153.68831,717.1643,17.661684,0.85969347,450.38705,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 4:00,14876156.33,3597.512,76.23077133,231.9077,0.6127985,14360.43687,1091.468567,167.692256,105.7385856,450.3869,0.6127985,167.692256,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 5:00,14880646.67,3597.512,147.1671957,232.3587,1.12187605,28567.18544,1465.772833,317.722828,210.6174778,450.38675,1.12187605,317.722828,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 6:00,14885137,3597.512,218.10362,232.8097,1.6309536,42773.934,1840.0771,467.7534,315.49637,450.3866,1.6309536,467.7534,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 7:00,14886095,3597.512,256.43405,233.71301,2.5423849,42996.28,1895.271,500.7525,469.27042,450.41748,2.5423849,500.7525,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 8:00,14890680.5,3597.512,263.419275,213.808255,29.65337245,39868.5425,2127.2169,458.11485,12823.41621,230.899401,29.65337245,458.11485,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 9:00,14895266,3597.512,270.4045,193.9035,56.76436,36740.805,2359.1628,415.4772,25177.562,11.381322,56.76436,415.4772,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 10:00,14900000,3597.512,191.01262,233.06216,1.1600575,38373.35,4942.753,1314.1256,458578.25,452.28183,1.1600575,1314.1256,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 11:00,14903651.71,3597.512,195.7613686,238.3337057,9.028647143,38368.96514,4943.6538,1314.003186,458975.6386,428.1546757,9.028647143,1314.003186,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 12:00,14907303.43,3597.512,200.5101171,243.6052514,16.89723679,38364.58029,4944.5546,1313.880771,459373.0271,404.0275214,16.89723679,1313.880771,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 13:00,14910955.14,3597.512,205.2588657,248.8767971,24.76582643,38360.19543,4945.4554,1313.758357,459770.4157,379.9003671,24.76582643,1313.758357,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 14:00,14914606.86,3597.512,210.0076143,254.1483429,32.63441607,38355.81057,4946.3562,1313.635943,460167.8043,355.7732129,32.63441607,1313.635943,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 15:00,14918258.57,3597.512,214.7563629,259.4198886,40.50300571,38351.42571,4947.257,1313.513529,460565.1929,331.6460586,40.50300571,1313.513529,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 16:00,14921910.29,3597.512,219.5051114,264.6914343,48.37159536,38347.04086,4948.1578,1313.391114,460962.5814,307.5189043,48.37159536,1313.391114,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 17:00,14925562,3597.512,224.25386,269.96298,56.240185,38342.656,4949.0586,1313.2687,461359.97,283.39175,56.240185,1313.2687,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 18:00,14925622,3597.512,224.23355,216.87845,1.7599562,38360.05,4949.84,1314.05,461359.97,295.81372,1.7599562,1314.05,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 19:00,14929789,3597.512,187.7544958,214.5761483,1.483916992,32026.99665,4297.003533,1097.985281,384466.9557,280.9486417,1.483916992,1097.985281,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 20:00,14933956,3597.512,151.2754417,212.2738467,1.207877783,25693.94331,3644.167067,881.9205613,307573.9413,266.0835633,1.207877783,881.9205613,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 21:00,14938123,3597.512,114.7963875,209.971545,0.931838575,19360.88996,2991.3306,665.855842,230680.927,251.218485,0.931838575,665.855842,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 22:00,14942290,3597.512,78.31733333,207.6692433,0.655799367,13027.83661,2338.494133,449.7911227,153787.9126,236.3534067,0.655799367,449.7911227,130901.3,73179.4,-15784.6,-201976.5
+6/22/2023 23:00,14946457,3597.512,41.83827917,205.3669417,0.379760158,6694.783267,1685.657667,233.7264033,76894.8983,221.4883283,0.379760158,233.7264033,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 0:00,14950624,3597.512,5.359225,203.06464,0.10372095,361.72992,1032.8212,17.661684,1.8839617,206.62325,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 1:00,14953105.67,3597.512,5.353059667,203.0521667,0.10372095,292.5384233,904.8303333,17.661684,1.487361833,206.6215,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 2:00,14955587.33,3597.512,5.346894333,203.0396933,0.10372095,223.3469267,776.8394667,17.661684,1.090761967,206.61975,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 3:00,14958069,3597.512,5.340729,203.02722,0.10372095,154.15543,648.8486,17.661684,0.6941621,206.618,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 4:00,14961700.67,3597.512,5.769022333,203.0123733,0.10372095,11358.93829,1261.4745,389.150056,73.2648014,206.6252167,0.10372095,389.150056,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 5:00,14965332.33,3597.512,6.197315667,202.9975267,0.10372095,22563.72114,1874.1004,760.638428,145.8354407,206.6324333,0.10372095,760.638428,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 6:00,14968964,3597.512,6.625609,202.98268,0.10372095,33768.504,2486.7263,1132.1268,218.40608,206.63965,0.10372095,1132.1268,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 7:00,14973691,3597.512,95.05545933,203.9925733,18.9794373,34646.066,2424.8968,889.7363067,7145.08072,146.8589177,18.9794373,889.7363067,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 8:00,14978418,3597.512,183.4853097,205.0024667,37.85515365,35523.628,2363.0673,647.3458133,14071.75536,87.07818533,37.85515365,647.3458133,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 9:00,14983145,3597.512,271.91516,206.01236,56.73087,36401.19,2301.2378,404.95532,20998.43,27.297453,56.73087,404.95532,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 10:00,14983205,3597.512,271.90906,206.13074,56.73094,36398.21,2301.9492,405.4127,21019.547,27.48396,56.73094,405.4127,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 11:00,14987403.75,3597.512,205.271759,205.3648025,42.57413524,27892.5358,2318.86625,593.15585,15765.34128,72.269025,42.57413524,593.15585,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 12:00,14991602.5,3597.512,138.634458,204.598865,28.41733048,19386.8616,2335.7833,780.899,10511.13556,117.05409,28.41733048,780.899,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 13:00,14995801.25,3597.512,71.997157,203.8329275,14.26052571,10881.1874,2352.70035,968.64215,5256.929837,161.839155,14.26052571,968.64215,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 14:00,15000000,3597.512,5.359856,203.06699,0.10372095,2375.5132,2369.6174,1156.3853,2.7241166,206.62422,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 15:00,15003990.67,3597.512,78.52420067,204.5183533,0.651554433,14341.39547,3227.7757,1207.032667,153788.4727,212.6356967,0.651554433,1207.032667,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 16:00,15007981.33,3597.512,151.6885453,205.9697167,1.199387917,26307.27773,4085.934,1257.680033,307574.2214,218.6471733,1.199387917,1257.680033,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 17:00,15011972,3597.512,224.85289,207.42108,1.7472214,38273.16,4944.0923,1308.3274,461359.97,224.65865,1.7472214,1308.3274,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 18:00,15015495.29,3597.512,193.4998881,205.08237,1.512435621,33114.0104,4384.468257,1156.804396,395451.5567,213.6526529,1.512435621,1156.804396,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 19:00,15019018.57,3597.512,162.1468861,202.74366,1.277649843,27954.8608,3824.844214,1005.281391,329543.1434,202.6466557,1.277649843,1005.281391,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 20:00,15022541.86,3597.512,130.7938842,200.40495,1.042864064,22795.7112,3265.220171,853.7583871,263634.7301,191.6406586,1.042864064,853.7583871,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 21:00,15026065.14,3597.512,99.44088229,198.06624,0.808078286,17636.5616,2705.596129,702.2353829,197726.3168,180.6346614,0.808078286,702.2353829,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 22:00,15029588.43,3597.512,68.08788036,195.72753,0.573292507,12477.412,2145.972086,550.7123786,131817.9035,169.6286643,0.573292507,550.7123786,130901.3,73179.4,-15784.6,-201976.5
+6/23/2023 23:00,15033111.71,3597.512,36.73487843,193.38882,0.338506729,7318.2624,1586.348043,399.1893743,65909.49021,158.6226671,0.338506729,399.1893743,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 0:00,15036635,3597.512,5.3818765,191.05011,0.10372095,2159.1128,1026.724,247.66637,1.0769137,147.61667,0.10372095,247.66637,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 1:00,15039249.33,3597.512,5.375246,191.0438733,0.10372095,1491.05108,880.2378133,170.9981413,0.90493108,147.6148433,0.10372095,170.9981413,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 2:00,15041863.67,3597.512,5.3686155,191.0376367,0.10372095,822.98936,733.7516267,94.32991267,0.73294846,147.6130167,0.10372095,94.32991267,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 3:00,15044478,3597.512,5.361985,191.0314,0.10372095,154.92764,587.26544,17.661684,0.56096584,147.61119,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 4:00,15048957.33,3597.512,5.348548,191.0220667,0.10372095,11285.67309,931.7275933,91.96062267,122.1658172,147.61109,0.10372095,91.96062267,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 5:00,15053436.67,3597.512,5.335111,191.0127333,0.10372095,22416.41855,1276.189747,166.2595613,243.7706686,147.61099,0.10372095,166.2595613,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 6:00,15057916,3597.512,5.321674,191.0034,0.10372095,33547.164,1620.6519,240.5585,365.37552,147.61089,0.10372095,240.5585,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 7:00,15061275.33,3597.512,5.3116351,190.9968867,0.10372095,34952.517,1876.793933,309.7351067,8553.980347,147.61089,0.10372095,309.7351067,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 8:00,15064634.67,3597.512,5.3015962,190.9903733,0.10372095,36357.87,2132.935967,378.9117133,16742.58517,147.61089,0.10372095,378.9117133,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 9:00,15067994,3597.512,5.2915573,190.98386,0.10372095,37763.223,2389.078,448.08832,24931.19,147.61089,0.10372095,448.08832,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 10:00,15071324.71,3597.512,5.3120954,190.9784486,0.10372095,37361.87114,2668.891771,556.2328886,62052.89143,147.6131714,0.10372095,556.2328886,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 11:00,15074655.43,3597.512,5.3326335,190.9730371,0.10372095,36960.51929,2948.705543,664.3774571,99174.59286,147.6154529,0.10372095,664.3774571,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 12:00,15077986.14,3597.512,5.3531716,190.9676257,0.10372095,36559.16743,3228.519314,772.5220257,136296.2943,147.6177343,0.10372095,772.5220257,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 13:00,15081316.86,3597.512,5.3737097,190.9622143,0.10372095,36157.81557,3508.333086,880.6665943,173417.9957,147.6200157,0.10372095,880.6665943,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 14:00,15084647.57,3597.512,5.3942478,190.9568029,0.10372095,35756.46371,3788.146857,988.8111629,210539.6971,147.6222971,0.10372095,988.8111629,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 15:00,15087978.29,3597.512,5.4147859,190.9513914,0.10372095,35355.11186,4067.960629,1096.955731,247661.3986,147.6245786,0.10372095,1096.955731,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 16:00,15091309,3597.512,5.435324,190.94598,0.10372095,34953.76,4347.7744,1205.1003,284783.1,147.62686,0.10372095,1205.1003,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 17:00,15095654.5,3597.512,5.39524475,190.98267,0.10372095,17552.62429,3425.84275,1180.7428,142484.2658,147.61889,0.10372095,1180.7428,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 18:00,15100000,3597.512,5.3551655,191.01936,0.10372095,151.48857,2503.9111,1156.3853,185.43164,147.61092,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 19:00,15104892,3597.512,5.445203,167.56456,54.829468,37085.234,4922.831,1287.0919,461359.97,0.02671797,54.829468,1287.0919,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 20:00,15108140.75,3597.512,5.431760938,160.6495175,47.98874962,32468.7852,4401.677925,1128.413123,403690.0933,0.024722935,47.98874962,1128.413123,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 21:00,15111389.5,3597.512,5.418318875,153.734475,41.14803124,27852.33639,3880.52485,969.734346,346020.2165,0.0227279,41.14803124,969.734346,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 22:00,15114638.25,3597.512,5.404876813,146.8194325,34.30731286,23235.88759,3359.371775,811.055569,288350.3398,0.020732865,34.30731286,811.055569,130901.3,73179.4,-15784.6,-201976.5
+6/24/2023 23:00,15117887,3597.512,5.39143475,139.90439,27.46659448,18619.43879,2838.2187,652.376792,230680.463,0.018737831,27.46659448,652.376792,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 0:00,15121135.75,3597.512,5.377992688,132.9893475,20.62587609,14002.98998,2317.065625,493.698015,173010.5863,0.016742796,20.62587609,493.698015,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 1:00,15124384.5,3597.512,5.364550625,126.074305,13.78515771,9386.541178,1795.91255,335.019238,115340.7095,0.014747761,13.78515771,335.019238,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 2:00,15127633.25,3597.512,5.351108563,119.1592625,6.944439331,4770.092374,1274.759475,176.340461,57670.83279,0.012752726,6.944439331,176.340461,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 3:00,15130882,3597.512,5.3376665,112.24422,0.10372095,153.64357,753.6064,17.661684,0.9560447,0.010757691,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 4:00,15134875,3597.512,5.323969875,110.96352,0.10372095,8542.968928,949.695575,72.530938,8.449994275,0.010449978,0.10372095,72.530938,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 5:00,15138868,3597.512,5.31027325,109.68282,0.10372095,16932.29429,1145.78475,127.400192,15.94394385,0.010142265,0.10372095,127.400192,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 6:00,15142861,3597.512,5.296576625,108.40212,0.10372095,25321.61964,1341.873925,182.269446,23.43789343,0.009834552,0.10372095,182.269446,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 7:00,15146854,3597.512,5.28288,107.12142,0.10372095,33710.945,1537.9631,237.1387,30.931843,0.009526839,0.10372095,237.1387,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 8:00,15150117,3597.512,5.328965767,106.3124067,0.10372095,35225.195,1853.164933,313.5911233,10902.9519,0.009369207,0.10372095,313.5911233,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 9:00,15153380,3597.512,5.375051533,105.5033933,0.10372095,36739.445,2168.366767,390.0435467,21774.97195,0.009211576,0.10372095,390.0435467,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 10:00,15156643,3597.512,5.4211373,104.69438,0.10372095,38253.695,2483.5686,466.49597,32646.992,0.009053944,0.10372095,466.49597,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 11:00,15160209.2,3597.512,5.43370292,104.112334,0.10372095,37385.4732,2837.16548,609.956076,78301.8496,0.008940581,0.10372095,609.956076,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 12:00,15163775.4,3597.512,5.44626854,103.530288,0.10372095,36517.2514,3190.76236,753.416182,123956.7072,0.008827219,0.10372095,753.416182,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 13:00,15167341.6,3597.512,5.45883416,102.948242,0.10372095,35649.0296,3544.35924,896.876288,169611.5648,0.008713856,0.10372095,896.876288,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 14:00,15170907.8,3597.512,5.47139978,102.366196,0.10372095,34780.8078,3897.95612,1040.336394,215266.4224,0.008600494,0.10372095,1040.336394,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 15:00,15174474,3597.512,5.4839654,101.78415,0.10372095,33912.586,4251.553,1183.7965,260921.28,0.008487131,0.10372095,1183.7965,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 16:00,15178776.5,3597.512,5.449456925,118.6245425,13.78515771,34243.6915,4406.1235,1196.3772,311030.9525,0.034451096,13.78515771,1196.3772,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 17:00,15183079,3597.512,5.41494845,135.464935,27.46659447,34574.797,4560.694,1208.9579,361140.625,0.060415061,27.46659447,1208.9579,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 18:00,15187381.5,3597.512,5.380439975,152.3053275,41.14803124,34905.9025,4715.2645,1221.5386,411250.2975,0.086379025,41.14803124,1221.5386,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 19:00,15191684,3597.512,5.3459315,169.14572,54.829468,35237.008,4869.835,1234.1193,461359.97,0.11234299,54.829468,1234.1193,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 20:00,15194456,3597.512,5.320999433,148.1682767,36.58755232,34463.038,3792.1789,906.1048,307710.6232,0.078015214,36.58755232,906.1048,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 21:00,15197228,3597.512,5.296067367,127.1908333,18.34563663,33689.068,2714.5228,578.0903,154061.2764,0.043687437,18.34563663,578.0903,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 22:00,15200000,3597.512,5.2711353,106.21339,0.10372095,32915.098,1636.8667,250.0758,411.92963,0.009359661,0.10372095,250.0758,130901.3,73179.4,-15784.6,-201976.5
+6/25/2023 23:00,15204929,3597.512,5.2696409,109.3494125,0.10372095,16602.51243,2052.19105,703.23055,234.31218,0.015406007,0.10372095,703.23055,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 0:00,15209858,3597.512,5.2681465,112.485435,0.10372095,289.92685,2467.5154,1156.3853,56.69473,0.021452354,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 1:00,15212324.33,3597.512,5.261024333,112.4255333,0.10372095,244.4546267,1930.057283,776.8107613,38.21435817,0.020205252,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 2:00,15214790.67,3597.512,5.253902167,112.3656317,0.10372095,198.9824033,1392.599167,397.2362227,19.73398633,0.018958151,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 3:00,15217257,3597.512,5.24678,112.30573,0.10372095,153.51018,855.14105,17.661684,1.2536145,0.017711049,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 4:00,15220881,3597.512,5.37732,112.315685,0.10372095,181.565415,1710.402425,587.023492,297.9762323,0.016998569,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 5:00,15224505,3597.512,5.50786,112.32564,0.10372095,209.62065,2565.6638,1156.3853,594.69885,0.016286088,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 6:00,15231559,3597.512,309.10028,404.94763,91.184845,42010.625,2233.768,500.09732,10110.178,0.6088107,91.184845,500.09732,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 7:00,15231619,3597.512,308.75638,401.42703,91.186905,41962.71,2236.0225,495.38397,10484.045,0.5985952,91.186905,495.38397,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 8:00,15235635,3597.512,265.56296,198.63588,56.683887,38871.23,2586.568,516.2097,38846.105,4.3585324,56.683887,516.2097,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 9:00,15239584.33,3597.512,260.31737,208.64324,50.58493502,38732.138,2848.4923,604.2076778,85792.09,146.3802844,50.58493502,604.2076778,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 10:00,15243533.67,3597.512,255.07178,218.6506,44.48598304,38593.046,3110.4166,692.2056556,132738.075,288.4020363,44.48598304,692.2056556,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 11:00,15247483,3597.512,249.82619,228.65796,38.38703107,38453.954,3372.3409,780.2036333,179684.06,430.4237883,38.38703107,780.2036333,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 12:00,15251432.33,3597.512,244.5806,238.66532,32.28807909,38314.862,3634.2652,868.2016111,226630.045,572.4455402,32.28807909,868.2016111,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 13:00,15255381.67,3597.512,239.33501,248.67268,26.18912711,38175.77,3896.1895,956.1995889,273576.03,714.4672922,26.18912711,956.1995889,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 14:00,15259331,3597.512,234.08942,258.68004,20.09017513,38036.678,4158.1138,1044.197567,320522.015,856.4890441,20.09017513,1044.197567,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 15:00,15263280.33,3597.512,228.84383,268.6874,13.99122316,37897.586,4420.0381,1132.195544,367468,998.5107961,13.99122316,1132.195544,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 16:00,15267229.67,3597.512,223.59824,278.69476,7.892271178,37758.494,4681.9624,1220.193522,414413.985,1140.532548,7.892271178,1220.193522,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 17:00,15271179,3597.512,218.35265,288.70212,1.7933192,37619.402,4943.8867,1308.1915,461359.97,1282.5543,1.7933192,1308.1915,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 18:00,15274762.14,3597.512,187.9067424,286.8465071,1.551948021,32284.57922,4596.157486,1286.5049,395481.8295,1250.006986,1.551948021,1286.5049,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 19:00,15278345.29,3597.512,157.4608347,284.9908943,1.310576843,26949.75643,4248.428271,1264.8183,329603.6889,1217.459671,1.310576843,1264.8183,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 20:00,15281928.43,3597.512,127.0149271,283.1352814,1.069205664,21614.93365,3900.699057,1243.1317,263725.5484,1184.912357,1.069205664,1243.1317,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 21:00,15285511.57,3597.512,96.56901943,281.2796686,0.827834486,16280.11087,3552.969843,1221.4451,197847.4078,1152.365043,0.827834486,1221.4451,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 22:00,15289094.71,3597.512,66.12311179,279.4240557,0.586463307,10945.28809,3205.240629,1199.7585,131969.2673,1119.817729,0.586463307,1199.7585,130901.3,73179.4,-15784.6,-201976.5
+6/26/2023 23:00,15292677.86,3597.512,35.67720414,277.5684429,0.345092129,5610.465303,2857.511414,1178.0719,66091.12673,1087.270414,0.345092129,1178.0719,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 0:00,15296261,3597.512,5.2312965,275.71283,0.10372095,275.64252,2509.7822,1156.3853,212.98619,1054.7231,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 1:00,15298130.5,3597.512,152.5891133,282.07918,29.03013047,17699.66876,3612.75195,1190.7167,203240.3931,696.37716,29.03013047,1190.7167,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 2:00,15300000,3597.512,299.94693,288.44553,57.95654,35123.695,4715.7217,1225.0481,406267.8,338.03122,57.95654,1225.0481,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 3:00,15303657,3597.512,5.215176,275.34982,0.10372095,149.47437,1296.5643,17.661684,4.694329,1054.7128,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 4:00,15308546.5,3597.512,5.196259,275.14993,0.10372095,12228.41419,1886.29485,545.006992,274.9873945,1054.86695,0.10372095,545.006992,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 5:00,15313436,3597.512,5.177342,274.95004,0.10372095,24307.354,2476.0254,1072.3523,545.28046,1055.0211,0.10372095,1072.3523,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 6:00,15317114,3597.512,22.79973267,280.5770367,4.785675871,25392.70033,2681.833783,1092.160608,38946.50459,1080.027975,4.785675871,1092.160608,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 7:00,15320792,3597.512,40.42212333,286.2040333,9.467630792,26478.04667,2887.642167,1111.968917,77347.72872,1105.03485,9.467630792,1111.968917,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 8:00,15324470,3597.512,58.044514,291.83103,14.14958571,27563.393,3093.45055,1131.777225,115748.9528,1130.041725,14.14958571,1131.777225,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 9:00,15328148,3597.512,75.66690467,297.4580267,18.83154063,28648.73933,3299.258933,1151.585533,154150.177,1155.0486,18.83154063,1151.585533,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 10:00,15331826,3597.512,93.28929533,303.0850233,23.51349555,29734.08567,3505.067317,1171.393842,192551.4011,1180.055475,23.51349555,1171.393842,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 11:00,15335504,3597.512,110.911686,308.71202,28.19545047,30819.432,3710.8757,1191.20215,230952.6252,1205.06235,28.19545047,1191.20215,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 12:00,15339182,3597.512,128.5340767,314.3390167,32.8774054,31904.77833,3916.684083,1211.010458,269353.8494,1230.069225,32.8774054,1211.010458,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 13:00,15342860,3597.512,146.1564673,319.9660133,37.55936032,32990.12467,4122.492467,1230.818767,307755.0735,1255.0761,37.55936032,1230.818767,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 14:00,15346538,3597.512,163.778858,325.59301,42.24131524,34075.471,4328.30085,1250.627075,346156.2976,1280.082975,42.24131524,1250.627075,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 15:00,15350216,3597.512,181.4012487,331.2200067,46.92327016,35160.81733,4534.109233,1270.435383,384557.5217,1305.08985,46.92327016,1270.435383,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 16:00,15353894,3597.512,199.0236393,336.8470033,51.60522508,36246.16367,4739.917617,1290.243692,422958.7459,1330.096725,51.60522508,1290.243692,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 17:00,15357572,3597.512,216.64603,342.474,56.28718,37331.51,4945.726,1310.052,461359.97,1355.1036,56.28718,1310.052,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 18:00,15357632,3597.512,216.6264,289.58002,1.8106998,37350.824,4946.5117,1310.8378,461359.97,1394.8694,1.8106998,1310.8378,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 19:00,15361803.83,3597.512,181.3864027,287.8773217,1.526203325,31171.32847,4545.119817,1285.095717,384529.5198,1361.548217,1.526203325,1285.095717,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 20:00,15365975.67,3597.512,146.1464053,286.1746233,1.24170685,24991.83293,4143.727933,1259.353633,307699.0696,1328.227033,1.24170685,1259.353633,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 21:00,15370147.5,3597.512,110.906408,284.471925,0.957210375,18812.3374,3742.33605,1233.61155,230868.6195,1294.90585,0.957210375,1233.61155,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 22:00,15374319.33,3597.512,75.66641067,282.7692267,0.6727139,12632.84187,3340.944167,1207.869467,154038.1693,1261.584667,0.6727139,1207.869467,130901.3,73179.4,-15784.6,-201976.5
+6/27/2023 23:00,15378491.17,3597.512,40.42641333,281.0665283,0.388217425,6453.346333,2939.552283,1182.127383,77207.71908,1228.263483,0.388217425,1182.127383,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 0:00,15382663,3597.512,5.186416,279.36383,0.10372095,273.8508,2538.1604,1156.3853,377.2689,1194.9423,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 1:00,15385127,3597.512,5.181174333,279.33377,0.10372095,233.3159,2129.496833,776.8107613,258.1604177,1194.939167,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 2:00,15387591,3597.512,5.175932667,279.30371,0.10372095,192.781,1720.833267,397.2362227,139.0519353,1194.936033,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 3:00,15390055,3597.512,5.170691,279.27365,0.10372095,152.2461,1312.1697,17.661684,19.943453,1194.9329,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 4:00,15395027.5,3597.512,129.3361405,338.19864,28.70574898,16601.10305,3068.21105,603.119242,230689.9567,2006.3533,28.70574898,603.119242,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 5:00,15400000,3597.512,253.50159,397.12363,57.307777,33049.96,4824.2524,1188.5768,461359.97,2817.7737,57.307777,1188.5768,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 6:00,15400993,3597.512,6.9090137,279.16046,0.10372095,33245.395,2529.9282,1131.914,498.18552,1195.0021,0.10372095,1131.914,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 7:00,15405432,3597.512,258.77103,176.51953,56.87863,41345.957,2286.9333,497.78784,13298.688,0.124072716,56.87863,497.78784,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 8:00,15408169,3597.512,257.3706,180.94775,56.686398,39058.223,2510.6116,490.8434,32951.63,0.9574591,56.686398,490.8434,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 9:00,15412147.89,3597.512,252.9216956,192.6807044,50.58768639,38873.376,2780.865978,581.5549889,80552.55667,149.9593081,50.58768639,581.5549889,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 10:00,15416126.78,3597.512,248.4727911,204.4136589,44.48897478,38688.529,3051.120356,672.2665778,128153.4833,298.9611571,44.48897478,672.2665778,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 11:00,15420105.67,3597.512,244.0238867,216.1466133,38.39026317,38503.682,3321.374733,762.9781667,175754.41,447.9630061,38.39026317,762.9781667,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 12:00,15424084.56,3597.512,239.5749822,227.8795678,32.29155156,38318.835,3591.629111,853.6897556,223355.3367,596.9648551,32.29155156,853.6897556,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 13:00,15428063.44,3597.512,235.1260778,239.6125222,26.19283994,38133.988,3861.883489,944.4013444,270956.2633,745.966704,26.19283994,944.4013444,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 14:00,15432042.33,3597.512,230.6771733,251.3454767,20.09412833,37949.141,4132.137867,1035.112933,318557.19,894.968553,20.09412833,1035.112933,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 15:00,15436021.22,3597.512,226.2282689,263.0784311,13.99541672,37764.294,4402.392244,1125.824522,366158.1167,1043.970402,13.99541672,1125.824522,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 16:00,15440000.11,3597.512,221.7793644,274.8113856,7.896705111,37579.447,4672.646622,1216.536111,413759.0433,1192.972251,7.896705111,1216.536111,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 17:00,15443979,3597.512,217.33046,286.54434,1.7979935,37394.6,4942.901,1307.2477,461359.97,1341.9741,1.7979935,1307.2477,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 18:00,15447558.86,3597.512,187.0275716,284.9981586,1.555954564,32097.5563,4594.769186,1285.695929,395479.2983,1310.846486,1.555954564,1285.695929,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 19:00,15451138.71,3597.512,156.7246831,283.4519771,1.313915629,26800.51261,4246.637371,1264.144157,329598.6266,1279.718871,1.313915629,1264.144157,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 20:00,15454718.57,3597.512,126.4217947,281.9057957,1.071876693,21503.46891,3898.505557,1242.592386,263717.9549,1248.591257,1.071876693,1242.592386,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 21:00,15458298.43,3597.512,96.11890629,280.3596143,0.829837757,16206.42522,3550.373743,1221.040614,197837.2832,1217.463643,0.829837757,1221.040614,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 22:00,15461878.29,3597.512,65.81601786,278.8134329,0.587798821,10909.38152,3202.241929,1199.488843,131956.6115,1186.336029,0.587798821,1199.488843,130901.3,73179.4,-15784.6,-201976.5
+6/28/2023 23:00,15465458.14,3597.512,35.51312943,277.2672514,0.345759886,5612.337826,2854.110114,1177.937071,66075.93978,1155.208414,0.345759886,1177.937071,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 0:00,15469038,3597.512,5.210241,275.72107,0.10372095,315.29413,2505.9783,1156.3853,195.26808,1124.0808,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 1:00,15471511,3597.512,5.204603,275.7113667,0.10372095,261.67191,2102.2753,776.8107613,131.4413865,1124.077467,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 2:00,15473984,3597.512,5.198965,275.7016633,0.10372095,208.04969,1698.5723,397.2362227,67.61469307,1124.074133,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 3:00,15476457,3597.512,5.193327,275.69196,0.10372095,154.42747,1294.8693,17.661684,3.7879996,1124.0708,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 4:00,15480911.67,3597.512,71.782698,202.7024427,0.557651233,13837.14498,1735.7196,337.141706,1955.875333,749.3820331,0.557651233,337.141706,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 5:00,15485366.33,3597.512,138.372069,129.7129253,1.011581517,27519.86249,2176.5699,656.621728,3907.962667,374.6932662,1.011581517,656.621728,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 6:00,15489821,3597.512,204.96144,56.723408,1.4655118,41202.58,2617.4202,976.10175,5860.05,0.004499292,1.4655118,976.10175,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 7:00,15491984,3597.512,254.11081,173.62778,56.917126,40755.523,2416.9287,502.90375,22518.004,0.013993647,56.917126,502.90375,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 8:00,15495992,3597.512,229.107105,225.81926,29.21042765,38833.039,3673.84885,899.010475,241938.987,571.4304968,29.21042765,899.010475,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 9:00,15500000,3597.512,204.1034,278.01074,1.5037293,36910.555,4930.769,1295.1172,461359.97,1142.847,1.5037293,1295.1172,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 10:00,15503795.5,3597.512,205.7174512,285.4584938,8.349778763,36951.51788,4931.938625,1296.289175,461359.97,1158.085725,8.349778763,1296.289175,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 11:00,15507591,3597.512,207.3315025,292.9062475,15.19582823,36992.48075,4933.10825,1297.46115,461359.97,1173.32445,15.19582823,1297.46115,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 12:00,15511386.5,3597.512,208.9455538,300.3540013,22.04187769,37033.44363,4934.277875,1298.633125,461359.97,1188.563175,22.04187769,1298.633125,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 13:00,15515182,3597.512,210.559605,307.801755,28.88792715,37074.4065,4935.4475,1299.8051,461359.97,1203.8019,28.88792715,1299.8051,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 14:00,15518977.5,3597.512,212.1736563,315.2495087,35.73397661,37115.36938,4936.617125,1300.977075,461359.97,1219.040625,35.73397661,1300.977075,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 15:00,15522773,3597.512,213.7877075,322.6972625,42.58002608,37156.33225,4937.78675,1302.14905,461359.97,1234.27935,42.58002608,1302.14905,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 16:00,15526568.5,3597.512,215.4017588,330.1450162,49.42607554,37197.29513,4938.956375,1303.321025,461359.97,1249.518075,49.42607554,1303.321025,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 17:00,15530364,3597.512,217.01581,337.59277,56.272125,37238.258,4940.126,1304.493,461359.97,1264.7568,56.272125,1304.493,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 18:00,15530424,3597.512,216.99812,284.37888,1.794488,37258.316,4940.9087,1305.2755,461359.97,1295.8125,1.794488,1305.2755,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 19:00,15534594.33,3597.512,181.6991815,282.6432883,1.512693492,31099.45684,4537.463183,1280.460467,384511.1975,1261.34725,1.512693492,1280.460467,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 20:00,15538764.67,3597.512,146.4002429,280.9076967,1.230898983,24940.59768,4134.017667,1255.645433,307662.4249,1226.882,1.230898983,1255.645433,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 21:00,15542935,3597.512,111.1013044,279.172105,0.949104475,18781.73852,3730.57215,1230.8304,230813.6524,1192.41675,0.949104475,1230.8304,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 22:00,15547105.33,3597.512,75.80236587,277.4365133,0.667309967,12622.87936,3327.126633,1206.015367,153964.8799,1157.9515,0.667309967,1206.015367,130901.3,73179.4,-15784.6,-201976.5
+6/29/2023 23:00,15551275.67,3597.512,40.50342733,275.7009217,0.385515458,6464.0202,2923.681117,1181.200333,77116.10737,1123.48625,0.385515458,1181.200333,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 0:00,15555446,3597.512,5.2044888,273.96533,0.10372095,305.16104,2520.2356,1156.3853,267.33484,1089.021,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 1:00,15557917,3597.512,5.1992462,273.96058,0.10372095,254.17744,2114.093133,776.8107613,180.985836,1089.017733,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 2:00,15560388,3597.512,5.1940036,273.95583,0.10372095,203.19384,1707.950667,397.2362227,94.636832,1089.014467,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 3:00,15562859,3597.512,5.188761,273.95108,0.10372095,152.21024,1301.8082,17.661684,8.287828,1089.0112,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 4:00,15566481,3597.512,5.425529167,273.9454867,0.10372095,11046.17149,1707.756133,387.499356,157.1493953,1089.030733,0.10372095,387.499356,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 5:00,15570103,3597.512,5.662297333,273.9398933,0.10372095,21940.13275,2113.704067,757.337028,306.0109627,1089.050267,0.10372095,757.337028,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 6:00,15573725,3597.512,5.8990655,273.9343,0.10372095,32834.094,2519.652,1127.1747,454.87253,1089.0698,0.10372095,1127.1747,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 7:00,15578655,3597.512,257.74197,183.99088,56.821453,40810.95,2349.3286,494.66544,17739.348,2.1335003,56.821453,494.66544,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 8:00,15582212.5,3597.512,215.6528322,198.9888333,47.36849766,39499.9395,2527.302567,603.9073167,25994.02833,183.2932503,47.36849766,603.9073167,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 9:00,15585770,3597.512,173.5636943,213.9867867,37.91554232,38188.929,2705.276533,713.1491933,34248.70867,364.4530002,37.91554232,713.1491933,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 10:00,15589327.5,3597.512,131.4745565,228.98474,28.46258698,36877.9185,2883.2505,822.39107,42503.389,545.6127502,28.46258698,822.39107,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 11:00,15592885,3597.512,89.38541867,243.9826933,19.00963163,35566.908,3061.224467,931.6329467,50758.06933,726.7725001,19.00963163,931.6329467,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 12:00,15596442.5,3597.512,47.29628083,258.9806467,9.556676292,34255.8975,3239.198433,1040.874823,59012.74967,907.9322501,9.556676292,1040.874823,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 13:00,15600000,3597.512,5.207143,273.9786,0.10372095,32944.887,3417.1724,1150.1167,67267.43,1089.092,0.10372095,1150.1167,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 14:00,15604191.75,3597.512,58.22338225,290.056895,14.14387746,34020.9865,3797.9508,1188.755525,165790.565,1138.28495,14.14387746,1188.755525,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 15:00,15608383.5,3597.512,111.2396215,306.13519,28.18403398,35097.086,4178.7292,1227.39435,264313.7,1187.4779,28.18403398,1227.39435,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 16:00,15612575.25,3597.512,164.2558607,322.213485,42.22419049,36173.1855,4559.5076,1266.033175,362836.835,1236.67085,42.22419049,1266.033175,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 17:00,15616767,3597.512,217.2721,338.29178,56.264347,37249.285,4940.286,1304.672,461359.97,1285.8638,56.264347,1304.672,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 18:00,15616827,3597.512,217.25342,285.18192,1.7860637,37267.574,4941.0527,1305.4391,461359.97,1319.6877,1.7860637,1305.4391,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 19:00,15620990.5,3597.512,181.9137518,283.4181833,1.505673242,31120.6219,4530.278367,1280.5968,384480.7947,1284.19615,1.505673242,1280.5968,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 20:00,15625154,3597.512,146.5740836,281.6544467,1.225282783,24973.6698,4119.504033,1255.7545,307601.6195,1248.7046,1.225282783,1255.7545,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 21:00,15629317.5,3597.512,111.2344154,279.89071,0.944892325,18826.7177,3708.7297,1230.9122,230722.4442,1213.21305,0.944892325,1230.9122,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 22:00,15633481,3597.512,75.89474713,278.1269733,0.664501867,12679.7656,3297.955367,1206.0699,153843.269,1177.7215,0.664501867,1206.0699,130901.3,73179.4,-15784.6,-201976.5
+6/30/2023 23:00,15637644.5,3597.512,40.55507892,276.3632367,0.384111408,6532.8135,2887.181033,1181.2276,76964.09374,1142.22995,0.384111408,1181.2276,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 0:00,15641808,3597.512,5.2154107,274.5995,0.10372095,385.8614,2476.4067,1156.3853,84.91849,1106.7384,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 1:00,15644292.67,3597.512,5.2101618,274.5959267,0.10372095,306.81941,1952.020333,776.8107613,57.08250747,1106.734967,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 2:00,15646777.33,3597.512,5.2049129,274.5923533,0.10372095,227.77742,1427.633967,397.2362227,29.24652493,1106.731533,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 3:00,15649262,3597.512,5.199664,274.58878,0.10372095,148.73543,903.2476,17.661684,1.4105424,1106.7281,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 4:00,15652897.62,3597.512,5.209537538,274.58432,0.10372095,2755.766551,1205.880169,108.7549622,35490.5305,1106.735954,0.10372095,108.7549622,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 5:00,15656533.23,3597.512,5.219411077,274.57986,0.10372095,5362.797672,1508.512738,199.8482403,70979.65046,1106.743808,0.10372095,199.8482403,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 6:00,15660168.85,3597.512,5.229284615,274.5754,0.10372095,7969.828792,1811.145308,290.9415185,106468.7704,1106.751662,0.10372095,290.9415185,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 7:00,15663804.46,3597.512,5.239158154,274.57094,0.10372095,10576.85991,2113.777877,382.0347966,141957.8904,1106.759515,0.10372095,382.0347966,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 8:00,15667440.08,3597.512,5.249031692,274.56648,0.10372095,13183.89103,2416.410446,473.1280748,177447.0103,1106.767369,0.10372095,473.1280748,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 9:00,15671075.69,3597.512,5.258905231,274.56202,0.10372095,15790.92215,2719.043015,564.2213529,212936.1303,1106.775223,0.10372095,564.2213529,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 10:00,15674711.31,3597.512,5.268778769,274.55756,0.10372095,18397.95328,3021.675585,655.3146311,248425.2503,1106.783077,0.10372095,655.3146311,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 11:00,15678346.92,3597.512,5.278652308,274.5531,0.10372095,21004.9844,3324.308154,746.4079092,283914.3702,1106.790931,0.10372095,746.4079092,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 12:00,15681982.54,3597.512,5.288525846,274.54864,0.10372095,23612.01552,3626.940723,837.5011874,319403.4902,1106.798785,0.10372095,837.5011874,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 13:00,15685618.15,3597.512,5.298399385,274.54418,0.10372095,26219.04664,3929.573292,928.5944655,354892.6101,1106.806638,0.10372095,928.5944655,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 14:00,15689253.77,3597.512,5.308272923,274.53972,0.10372095,28826.07776,4232.205862,1019.687744,390381.7301,1106.814492,0.10372095,1019.687744,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 15:00,15692889.38,3597.512,5.318146462,274.53526,0.10372095,31433.10888,4534.838431,1110.781022,425870.85,1106.822346,0.10372095,1110.781022,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 16:00,15696525,3597.512,5.32802,274.5308,0.10372095,34040.14,4837.471,1201.8743,461359.97,1106.8302,0.10372095,1201.8743,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 17:00,15700000,3597.512,5.1979647,274.58762,0.10372095,148.60226,1946.2333,1156.3853,1.1088558,1106.728,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 18:00,15704033,3597.512,5.207646457,250.0460709,0.10372095,175.5862429,2031.818829,1156.3853,62.18079497,948.6252224,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 19:00,15708066,3597.512,5.217328214,225.5045217,0.10372095,202.5702257,2117.404357,1156.3853,123.2527341,790.5224448,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 20:00,15712099,3597.512,5.227009971,200.9629726,0.10372095,229.5542086,2202.989886,1156.3853,184.3246733,632.4196672,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 21:00,15716132,3597.512,5.236691729,176.4214234,0.10372095,256.5381914,2288.575414,1156.3853,245.3966125,474.3168896,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 22:00,15720165,3597.512,5.246373486,151.8798743,0.10372095,283.5221743,2374.160943,1156.3853,306.4685517,316.2141119,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/1/2023 23:00,15724198,3597.512,5.256055243,127.3383251,0.10372095,310.5061571,2459.746471,1156.3853,367.5404908,158.1113343,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 0:00,15728231,3597.512,5.265737,102.796776,0.10372095,337.49014,2545.332,1156.3853,428.61243,0.008556719,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 1:00,15730709,3597.512,5.258765,102.8706273,0.10372095,275.83645,2135.074067,776.8107613,293.7005607,0.008569802,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 2:00,15733187,3597.512,5.251793,102.9444787,0.10372095,214.18276,1724.816133,397.2362227,158.7886913,0.008582884,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 3:00,15735665,3597.512,5.244821,103.01833,0.10372095,152.52907,1314.5582,17.661684,23.876822,0.008595967,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 4:00,15739771.2,3597.512,5.2519682,103.131882,0.10372095,6611.046656,1417.68772,61.7024712,849.3260576,0.008616282,0.10372095,61.7024712,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 5:00,15743877.4,3597.512,5.2591154,103.245434,0.10372095,13069.56424,1520.81724,105.7432584,1674.775293,0.008636597,0.10372095,105.7432584,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 6:00,15747983.6,3597.512,5.2662626,103.358986,0.10372095,19528.08183,1623.94676,149.7840456,2500.224529,0.008656913,0.10372095,149.7840456,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 7:00,15752089.8,3597.512,5.2734098,103.472538,0.10372095,25986.59941,1727.07628,193.8248328,3325.673764,0.008677228,0.10372095,193.8248328,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 8:00,15756196,3597.512,5.280557,103.58609,0.10372095,32445.117,1830.2058,237.86562,4151.123,0.008697543,0.10372095,237.86562,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 9:00,15760127,3597.512,5.4559193,103.693306,0.10372095,37094.895,2425.396,430.09598,30319.602,0.008716884,0.10372095,430.09598,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 10:00,15763260,3597.512,5.444559133,103.8017642,0.10372095,36463.1825,2764.090583,554.9463333,80297.435,0.008736608,0.10372095,554.9463333,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 11:00,15766393,3597.512,5.433198967,103.9102223,0.10372095,35831.47,3102.785167,679.7966867,130275.268,0.008756332,0.10372095,679.7966867,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 12:00,15769526,3597.512,5.4218388,104.0186805,0.10372095,35199.7575,3441.47975,804.64704,180253.101,0.008776056,0.10372095,804.64704,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 13:00,15772659,3597.512,5.410478633,104.1271387,0.10372095,34568.045,3780.174333,929.4973933,230230.934,0.008795779,0.10372095,929.4973933,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 14:00,15775792,3597.512,5.399118467,104.2355968,0.10372095,33936.3325,4118.868917,1054.347747,280208.767,0.008815503,0.10372095,1054.347747,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 15:00,15778925,3597.512,5.3877583,104.344055,0.10372095,33304.62,4457.5635,1179.1981,330186.6,0.008835227,0.10372095,1179.1981,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 16:00,15783364.75,3597.512,5.355973875,124.8473813,13.78515771,33608.7075,4558.29555,1190.62755,362979.9425,1.12549642,13.78515771,1190.62755,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 17:00,15787804.5,3597.512,5.32418945,145.3507075,27.46659447,33912.795,4659.0276,1202.057,395773.285,2.242157614,27.46659447,1202.057,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 18:00,15792244.25,3597.512,5.292405025,165.8540337,41.14803124,34216.8825,4759.75965,1213.48645,428566.6275,3.358818807,41.14803124,1213.48645,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 19:00,15796684,3597.512,5.2606206,186.35736,54.829468,34520.97,4860.4917,1224.9159,461359.97,4.47548,54.829468,1224.9159,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 20:00,15800000,3597.512,5.2002964,103.41691,0.10372095,32258.158,2629.0615,1120.459,2020.673,0.008667126,0.10372095,1120.459,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 21:00,15803595.5,3597.512,5.197339175,109.5658375,0.10372095,24508.6545,2475.38395,1129.440575,1515.834621,0.652377694,0.10372095,1129.440575,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 22:00,15807191,3597.512,5.19438195,115.714765,0.10372095,16759.151,2321.7064,1138.42215,1010.996243,1.296088263,0.10372095,1138.42215,130901.3,73179.4,-15784.6,-201976.5
+7/2/2023 23:00,15810786.5,3597.512,5.191424725,121.8636925,0.10372095,9009.6475,2168.02885,1147.403725,506.1578644,1.939798831,0.10372095,1147.403725,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 0:00,15814382,3597.512,5.1884675,128.01262,0.10372095,1260.144,2014.3513,1156.3853,1.3194859,2.5835094,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 1:00,15816945.67,3597.512,5.1910898,128.0016713,0.10372095,891.33796,1548.4126,776.8107613,1.087264433,2.580005367,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 2:00,15819509.33,3597.512,5.1937121,127.9907227,0.10372095,522.53192,1082.4739,397.2362227,0.855042967,2.576501333,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 3:00,15822073,3597.512,5.1963344,127.979774,0.10372095,153.72588,616.5352,17.661684,0.6228215,2.5729973,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 4:00,15825799.5,3597.512,8.0995002,126.895457,25.30503448,426.764305,1564.21475,587.023492,112.2715408,2.57086715,25.30503448,587.023492,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 5:00,15829526,3597.512,11.002666,125.81114,50.506348,699.80273,2511.8943,1156.3853,223.92026,2.568737,50.506348,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 6:00,15836109,3597.512,393.3521,494.34952,91.12896,42356.617,1884.3441,462.99823,712.9367,1.5075142,91.12896,462.99823,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 7:00,15839777,3597.512,311.82675,436.21735,90.986336,39817.23,2175.8801,448.8581,9767.486,6.3485537,90.986336,448.8581,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 8:00,15840677,3597.512,263.5766,396.4015,56.576374,39128.082,2244.9312,436.55188,14526.419,12.559986,56.576374,436.55188,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 9:00,15844599.44,3597.512,258.4070644,386.7526556,50.48630464,38905.54733,2543.618511,532.2191711,64174.59133,155.2992653,50.48630464,532.2191711,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 10:00,15848521.89,3597.512,253.2375289,377.1038111,44.39623529,38683.01267,2842.305822,627.8864622,113822.7637,298.0385447,44.39623529,627.8864622,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 11:00,15852444.33,3597.512,248.0679933,367.4549667,38.30616593,38460.478,3140.993133,723.5537533,163470.936,440.777824,38.30616593,723.5537533,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 12:00,15856366.78,3597.512,242.8984578,357.8061222,32.21609658,38237.94333,3439.680444,819.2210444,213119.1083,583.5171033,32.21609658,819.2210444,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 13:00,15860289.22,3597.512,237.7289222,348.1572778,26.12602722,38015.40867,3738.367756,914.8883356,262767.2807,726.2563827,26.12602722,914.8883356,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 14:00,15864211.67,3597.512,232.5593867,338.5084333,20.03595787,37792.874,4037.055067,1010.555627,312415.453,868.995662,20.03595787,1010.555627,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 15:00,15868134.11,3597.512,227.3898511,328.8595889,13.94588851,37570.33933,4335.742378,1106.222918,362063.6253,1011.734941,13.94588851,1106.222918,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 16:00,15872056.56,3597.512,222.2203156,319.2107444,7.855819156,37347.80467,4634.429689,1201.890209,411711.7977,1154.474221,7.855819156,1201.890209,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 17:00,15875979,3597.512,217.05078,309.5619,1.7657498,37125.27,4933.117,1297.5575,461359.97,1297.2135,1.7657498,1297.5575,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 18:00,15879410.57,3597.512,225.7517114,320.0474429,9.677485543,37094.30057,4763.7792,1287.295343,411958.5886,1160.248783,9.677485543,1287.295343,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 19:00,15882842.14,3597.512,234.4526429,330.5329857,17.58922129,37063.33114,4594.4414,1277.033186,362557.2071,1023.284066,17.58922129,1277.033186,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 20:00,15886273.71,3597.512,243.1535743,341.0185286,25.50095703,37032.36171,4425.1036,1266.771029,313155.8257,886.3193486,25.50095703,1266.771029,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 21:00,15889705.29,3597.512,251.8545057,351.5040714,33.41269277,37001.39229,4255.7658,1256.508871,263754.4443,749.3546314,33.41269277,1256.508871,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 22:00,15893136.86,3597.512,260.5554371,361.9896143,41.32442851,36970.42286,4086.428,1246.246714,214353.0629,612.3899143,41.32442851,1246.246714,130901.3,73179.4,-15784.6,-201976.5
+7/3/2023 23:00,15896568.43,3597.512,269.2563686,372.4751571,49.23616426,36939.45343,3917.0902,1235.984557,164951.6814,475.4251971,49.23616426,1235.984557,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 0:00,15900000,3597.512,277.9573,382.9607,57.1479,36908.484,3747.7524,1225.7224,115550.3,338.46048,57.1479,1225.7224,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 1:00,15902820.33,3597.512,187.0419434,345.51384,38.13317365,24656.44697,2922.2263,823.0354947,77034.50693,582.4102533,38.13317365,823.0354947,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 2:00,15905640.67,3597.512,96.12658687,308.06698,19.1184473,12404.40995,2096.7002,420.3485893,38518.71385,826.3600267,19.1184473,420.3485893,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 3:00,15908461,3597.512,5.2112303,270.62012,0.10372095,152.37292,1271.1741,17.661684,2.9207792,1070.3098,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 4:00,15912082,3597.512,5.4436517,268.99456,0.10372095,10978.02528,1683.536733,386.5273893,133.0888995,1070.328867,0.10372095,386.5273893,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 5:00,15915703,3597.512,5.6760731,267.369,0.10372095,21803.67764,2095.899367,755.3930947,263.2570197,1070.347933,0.10372095,755.3930947,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 6:00,15919324,3597.512,5.9084945,265.74344,0.10372095,32629.33,2508.262,1124.2588,393.42514,1070.367,0.10372095,1124.2588,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 7:00,15923855,3597.512,258.6821,172.65776,56.841465,40937.746,2261.4265,482.81808,12662.613,1.3162231,56.841465,482.81808,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 8:00,15926425,3597.512,255.3671,187.32991,56.650745,38674.93,2501.8186,476.9988,33526.48,11.315859,56.650745,476.9988,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 9:00,15930418.22,3597.512,251.0798678,201.98162,56.60576633,38490.30556,2771.887756,568.0986778,81063.53444,151.7965969,56.60576633,568.0986778,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 10:00,15934411.44,3597.512,246.7926356,216.63333,56.56078767,38305.68111,3041.956911,659.1985556,128600.5889,292.2773348,56.56078767,659.1985556,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 11:00,15938404.67,3597.512,242.5054033,231.28504,56.515809,38121.05667,3312.026067,750.2984333,176137.6433,432.7580727,56.515809,750.2984333,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 12:00,15942397.89,3597.512,238.2181711,245.93675,56.47083033,37936.43222,3582.095222,841.3983111,223674.6978,573.2388106,56.47083033,841.3983111,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 13:00,15946391.11,3597.512,233.9309389,260.58846,56.42585167,37751.80778,3852.164378,932.4981889,271211.7522,713.7195484,56.42585167,932.4981889,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 14:00,15950384.33,3597.512,229.6437067,275.24017,56.380873,37567.18333,4122.233533,1023.598067,318748.8067,854.2002863,56.380873,1023.598067,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 15:00,15954377.56,3597.512,225.3564744,289.89188,56.33589433,37382.55889,4392.302689,1114.697944,366285.8611,994.6810242,56.33589433,1114.697944,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 16:00,15958370.78,3597.512,221.0692422,304.54359,56.29091567,37197.93444,4662.371844,1205.797822,413822.9156,1135.161762,56.29091567,1205.797822,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 17:00,15962364,3597.512,216.78201,319.1953,56.245937,37013.31,4932.441,1296.8977,461359.97,1275.6425,56.245937,1296.8977,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 18:00,15962424,3597.512,216.76398,265.97577,1.766176,37032.04,4933.152,1297.6086,461359.97,1306.9415,1.766176,1297.6086,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 19:00,15966596.33,3597.512,181.5068211,263.6829633,1.489100158,30906.75251,4533.853,1274.071383,384528.7597,1271.548317,1.489100158,1274.071383,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 20:00,15970768.67,3597.512,146.2496621,261.3901567,1.212024317,24781.46502,4134.554,1250.534167,307697.5493,1236.155133,1.212024317,1250.534167,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 21:00,15974941,3597.512,110.9925032,259.09735,0.934948475,18656.17753,3735.255,1226.99695,230866.339,1200.76195,0.934948475,1226.99695,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 22:00,15979113.33,3597.512,75.73534427,256.8045433,0.657872633,12530.89004,3335.956,1203.459733,154035.1286,1165.368767,0.657872633,1203.459733,130901.3,73179.4,-15784.6,-201976.5
+7/4/2023 23:00,15983285.67,3597.512,40.47818533,254.5117367,0.380796792,6405.60255,2936.657,1179.922517,77203.91827,1129.975583,0.380796792,1179.922517,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 0:00,15987458,3597.512,5.2210264,252.21893,0.10372095,280.31506,2537.358,1156.3853,372.70792,1094.5824,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 1:00,15989924.33,3597.512,5.215547933,251.98621,0.10372095,237.0864533,2129.048267,776.8107613,255.3151817,1094.579033,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 2:00,15992390.67,3597.512,5.210069467,251.75349,0.10372095,193.8578467,1720.738533,397.2362227,137.9224433,1094.575667,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 3:00,15994857,3597.512,5.204591,251.52077,0.10372095,150.62924,1312.4288,17.661684,20.529705,1094.5723,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 4:00,16000000,3597.512,235.64876,378.63748,56.68901,32544.41,4818.4424,1182.8972,461359.97,2817.7712,56.68901,1182.8972,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 5:00,16003224.5,3597.512,237.7986575,347.067295,43.10046495,34079.06325,4248.726075,1011.61056,354886.385,2386.985625,43.10046495,1011.61056,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 6:00,16006449,3597.512,239.948555,315.49711,29.5119199,35613.7165,3679.00975,840.32392,248412.8,1956.20005,29.5119199,840.32392,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 7:00,16009673.5,3597.512,242.0984525,283.926925,15.92337485,37148.36975,3109.293425,669.03728,141939.215,1525.414475,15.92337485,669.03728,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 8:00,16012898,3597.512,244.24835,252.35674,2.3348298,38683.023,2539.5771,497.75064,35465.63,1094.6289,2.3348298,497.75064,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 9:00,16016883.11,3597.512,241.4175989,256.9193767,8.3223826,38503.84211,2804.850056,585.9457578,82787.22333,1068.88124,8.3223826,585.9457578,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 10:00,16020868.22,3597.512,238.5868478,261.4820133,14.3099354,38324.66122,3070.123011,674.1408756,130108.8167,1043.13358,14.3099354,674.1408756,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 11:00,16024853.33,3597.512,235.7560967,266.04465,20.2974882,38145.48033,3335.395967,762.3359933,177430.41,1017.38592,20.2974882,762.3359933,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 12:00,16028838.44,3597.512,232.9253456,270.6072867,26.285041,37966.29944,3600.668922,850.5311111,224752.0033,991.63826,26.285041,850.5311111,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 13:00,16032823.56,3597.512,230.0945944,275.1699233,32.2725938,37787.11856,3865.941878,938.7262289,272073.5967,965.8906,32.2725938,938.7262289,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 14:00,16036808.67,3597.512,227.2638433,279.73256,38.2601466,37607.93767,4131.214833,1026.921347,319395.19,940.14294,38.2601466,1026.921347,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 15:00,16040793.78,3597.512,224.4330922,284.2951967,44.2476994,37428.75678,4396.487789,1115.116464,366716.7833,914.39528,44.2476994,1115.116464,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 16:00,16044778.89,3597.512,221.6023411,288.8578333,50.2352522,37249.57589,4661.760744,1203.311582,414038.3767,888.64762,50.2352522,1203.311582,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 17:00,16048764,3597.512,218.77159,293.42047,56.222805,37070.395,4927.0337,1291.5067,461359.97,862.89996,56.222805,1291.5067,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 18:00,16048824,3597.512,218.7538,240.19157,1.7411813,37091.582,4927.7725,1292.2457,461359.97,887.707,1.7411813,1292.2457,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 19:00,16052987.67,3597.512,183.174088,238.1919267,1.468271242,30974.73408,4519.874133,1269.6023,384482.8898,859.12181,1.468271242,1269.6023,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 20:00,16057151.33,3597.512,147.594376,236.1922833,1.195361183,24857.88617,4111.975767,1246.9589,307605.8096,830.53662,1.195361183,1246.9589,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 21:00,16061315,3597.512,112.014664,234.19264,0.922451125,18741.03825,3704.0774,1224.3155,230728.7294,801.95143,0.922451125,1224.3155,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 22:00,16065478.67,3597.512,76.434952,232.1929967,0.649541067,12624.19033,3296.179033,1201.6721,153851.6492,773.36624,0.649541067,1201.6721,130901.3,73179.4,-15784.6,-201976.5
+7/5/2023 23:00,16069642.33,3597.512,40.85524,230.1933533,0.376631008,6507.342417,2888.280667,1179.0287,76974.56899,744.78105,0.376631008,1179.0287,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 0:00,16073806,3597.512,5.275528,228.19371,0.10372095,390.4945,2480.3823,1156.3853,97.48879,716.19586,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 1:00,16076292.67,3597.512,5.260533833,228.1101433,0.10372095,311.13083,1966.565833,776.8107613,65.50375987,716.1929733,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 2:00,16078779.33,3597.512,5.245539667,228.0265767,0.10372095,231.76716,1452.749367,397.2362227,33.51872973,716.1900867,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 3:00,16081266,3597.512,5.2305455,227.94301,0.10372095,152.40349,938.9329,17.661684,1.5336996,716.1872,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 4:00,16084998.33,3597.512,8.517387,227.82886,0.10372095,11434.84233,1461.568133,391.3074893,98.63657307,716.2107167,0.10372095,391.3074893,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 5:00,16088730.67,3597.512,11.8042285,227.71471,0.10372095,22717.28116,1984.203367,764.9532947,195.7394465,716.2342333,0.10372095,764.9532947,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 6:00,16092463,3597.512,15.09107,227.60056,0.10372095,33999.72,2506.8386,1138.5991,292.84232,716.25775,0.10372095,1138.5991,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 7:00,16095747,3597.512,258.18076,146.09349,56.86989,42324.004,1850.6729,458.34705,454.51917,0.008500116,56.86989,458.34705,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 8:00,16100000,3597.512,213.4337,236.49835,1.6253259,37505.816,4941.68,1306.1536,461359.97,819.469,1.6253259,1306.1536,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 9:00,16103907.22,3597.512,213.99118,244.0212144,7.691511133,37448.32867,4939.867033,1304.342367,461359.97,856.6920444,7.691511133,1304.342367,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 10:00,16107814.44,3597.512,214.54866,251.5440789,13.75769637,37390.84133,4938.054067,1302.531133,461359.97,893.9150889,13.75769637,1302.531133,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 11:00,16111721.67,3597.512,215.10614,259.0669433,19.8238816,37333.354,4936.2411,1300.7199,461359.97,931.1381333,19.8238816,1300.7199,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 12:00,16115628.89,3597.512,215.66362,266.5898078,25.89006683,37275.86667,4934.428133,1298.908667,461359.97,968.3611778,25.89006683,1298.908667,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 13:00,16119536.11,3597.512,216.2211,274.1126722,31.95625207,37218.37933,4932.615167,1297.097433,461359.97,1005.584222,31.95625207,1297.097433,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 14:00,16123443.33,3597.512,216.77858,281.6355367,38.0224373,37160.892,4930.8022,1295.2862,461359.97,1042.807267,38.0224373,1295.2862,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 15:00,16127350.56,3597.512,217.33606,289.1584011,44.08862253,37103.40467,4928.989233,1293.474967,461359.97,1080.030311,44.08862253,1293.474967,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 16:00,16131257.78,3597.512,217.89354,296.6812656,50.15480777,37045.91733,4927.176267,1291.663733,461359.97,1117.253356,50.15480777,1291.663733,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 17:00,16135165,3597.512,218.45102,304.20413,56.220993,36988.43,4925.3633,1289.8525,461359.97,1154.4764,56.220993,1289.8525,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 18:00,16135225,3597.512,218.43312,251.05434,1.73921,37007.3,4926.143,1290.632,461359.97,1186.0817,1.73921,1290.632,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 19:00,16139359.83,3597.512,182.9020013,249.0168483,1.466628492,31003.15071,4505.008933,1268.25755,384467.1188,1148.07885,1.466628492,1268.25755,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 20:00,16143494.67,3597.512,147.3708825,246.9793567,1.194046983,24999.00141,4083.874867,1245.8831,307574.2676,1110.076,1.194046983,1245.8831,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 21:00,16147629.5,3597.512,111.8397638,244.941865,0.921465475,18994.85212,3662.7408,1223.50865,230681.4164,1072.07315,0.921465475,1223.50865,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 22:00,16151764.33,3597.512,76.308645,242.9043733,0.648883967,12990.70283,3241.606733,1201.1342,153788.5652,1034.0703,0.648883967,1201.1342,130901.3,73179.4,-15784.6,-201976.5
+7/6/2023 23:00,16155899.17,3597.512,40.77752625,240.8668817,0.376302458,6986.553533,2820.472667,1178.75975,76895.71399,996.06745,0.376302458,1178.75975,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 0:00,16160034,3597.512,5.2464075,238.82939,0.10372095,982.40424,2399.3386,1156.3853,2.8627868,958.0646,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 1:00,16162579,3597.512,5.240627333,238.7834,0.10372095,705.9935467,1820.321533,776.8107613,2.150484767,958.0606333,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 2:00,16165124,3597.512,5.234847167,238.73741,0.10372095,429.5828533,1241.304467,397.2362227,1.438182733,958.0566667,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 3:00,16167669,3597.512,5.229067,238.69142,0.10372095,153.17216,662.2874,17.661684,0.7258807,958.0527,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 4:00,16171459.67,3597.512,11.355814,238.6284733,0.10372095,11696.50011,1275.8886,393.759756,77.95821047,958.0862333,0.10372095,393.759756,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 5:00,16175250.33,3597.512,17.482561,238.5655267,0.10372095,23239.82805,1889.4898,769.857828,155.1905402,958.1197667,0.10372095,769.857828,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 6:00,16179041,3597.512,23.609308,238.50258,0.10372095,34783.156,2503.091,1145.9559,232.42287,958.1533,0.10372095,1145.9559,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 7:00,16182666.67,3597.512,104.2294587,211.76418,18.95277997,35257.504,2452.216667,897.34434,8765.872247,640.1553042,18.95277997,897.34434,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 8:00,16186292.33,3597.512,184.8496093,185.02578,37.80183898,35731.852,2401.342333,648.73278,17299.32162,322.1573085,37.80183898,648.73278,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 9:00,16189918,3597.512,265.46976,158.28738,56.650898,36206.2,2350.468,400.12122,25832.771,4.1593127,56.650898,400.12122,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 10:00,16193278.67,3597.512,178.7398165,185.2060433,37.80183898,36017.63333,2964.103833,672.4240467,94700.164,322.3202418,37.80183898,672.4240467,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 11:00,16196639.33,3597.512,92.00987307,212.1247067,18.95277997,35829.06667,3577.739667,944.7268733,163567.557,640.4811709,18.95277997,944.7268733,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 12:00,16200000,3597.512,5.2799296,239.04337,0.10372095,35640.5,4191.3755,1217.0297,232434.95,958.6421,0.10372095,1217.0297,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 13:00,16204306.6,3597.512,48.28649768,243.891886,11.32271136,35947.352,4337.59952,1231.02376,278219.954,862.225294,11.32271136,1231.02376,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 14:00,16208613.2,3597.512,91.29306576,248.740402,22.54170177,36254.204,4483.82354,1245.01782,324004.958,765.808488,22.54170177,1245.01782,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 15:00,16212919.8,3597.512,134.2996338,253.588918,33.76069218,36561.056,4630.04756,1259.01188,369789.962,669.391682,33.76069218,1259.01188,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 16:00,16217226.4,3597.512,177.3062019,258.437434,44.97968259,36867.908,4776.27158,1273.00594,415574.966,572.974876,44.97968259,1273.00594,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 17:00,16221533,3597.512,220.31277,263.28595,56.198673,37174.76,4922.4956,1287,461359.97,476.55807,56.198673,1287,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 18:00,16225119,3597.512,189.5960878,253.5928086,48.18510842,31910.08468,4575.213829,1268.340757,395470.7998,460.0604814,48.18510842,1268.340757,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 19:00,16228705,3597.512,158.8794057,243.8996671,40.17154384,26645.40937,4227.932057,1249.681514,329581.6295,443.5628929,40.17154384,1249.681514,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 20:00,16232291,3597.512,128.1627235,234.2065257,32.15797926,21380.73405,3880.650286,1231.022271,263692.4593,427.0653043,32.15797926,1231.022271,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 21:00,16235877,3597.512,97.44604131,224.5133843,24.14441469,16116.05873,3533.368514,1212.363029,197803.2891,410.5677157,24.14441469,1212.363029,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 22:00,16239463,3597.512,66.72935914,214.8202429,16.13085011,10851.38341,3186.086743,1193.703786,131914.1188,394.0701271,16.13085011,1193.703786,130901.3,73179.4,-15784.6,-201976.5
+7/7/2023 23:00,16243049,3597.512,36.01267697,205.1271014,8.117285529,5586.708097,2838.804971,1175.044543,66024.94858,377.5725386,8.117285529,1175.044543,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 0:00,16246635,3597.512,5.2959948,195.43396,0.10372095,322.03278,2491.5232,1156.3853,135.77834,361.07495,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 1:00,16249130.67,3597.512,5.289278533,195.4049933,0.10372095,265.7453033,1676.765327,775.8703833,90.51923322,361.07265,0.10372095,775.8703833,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 2:00,16251626.33,3597.512,5.282562267,195.3760267,0.10372095,209.4578267,862.0074533,395.3554667,45.26012645,361.07035,0.10372095,395.3554667,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 3:00,16254122,3597.512,5.275846,195.34706,0.10372095,153.17035,47.24958,14.84055,0.001019673,361.06805,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 4:00,16257751.42,3597.512,5.287793192,181.0845339,0.10369553,3024.500904,447.2065317,114.5413708,38446.6651,330.9791169,0.10369553,114.5413708,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 5:00,16261380.83,3597.512,5.299740383,166.8220078,0.103670111,5895.831458,847.1634833,214.2421917,76893.32918,300.8901838,0.103670111,214.2421917,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 6:00,16265010.25,3597.512,5.311687575,152.5594818,0.103644691,8767.162013,1247.120435,313.9430125,115339.9933,270.8012508,0.103644691,313.9430125,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 7:00,16268639.67,3597.512,5.323634767,138.2969557,0.103619271,11638.49257,1647.077387,413.6438333,153786.6573,240.7123177,0.103619271,413.6438333,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 8:00,16272269.08,3597.512,5.335581958,124.0344296,0.103593852,14509.82312,2047.034338,513.3446542,192233.3214,210.6233846,0.103593852,513.3446542,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 9:00,16275898.5,3597.512,5.34752915,109.7719035,0.103568432,17381.15368,2446.99129,613.045475,230679.9855,180.5344515,0.103568432,613.045475,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 10:00,16279527.92,3597.512,5.359476342,95.50937742,0.103543012,20252.48423,2846.948242,712.7462958,269126.6496,150.4455184,0.103543012,712.7462958,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 11:00,16283157.33,3597.512,5.371423533,81.24685133,0.103517593,23123.81478,3246.905193,812.4471167,307573.3137,120.3565853,0.103517593,812.4471167,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 12:00,16286786.75,3597.512,5.383370725,66.98432525,0.103492173,25995.14534,3646.862145,912.1479375,346019.9778,90.26765226,0.103492173,912.1479375,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 13:00,16290416.17,3597.512,5.395317917,52.72179917,0.103466753,28866.47589,4046.819097,1011.848758,384466.6418,60.17871918,0.103466753,1011.848758,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 14:00,16294045.58,3597.512,5.407265108,38.45927308,0.103441334,31737.80645,4446.776048,1111.549579,422913.3059,30.0897861,0.103441334,1111.549579,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 15:00,16297675,3597.512,5.4192123,24.196747,0.103415914,34609.137,4846.733,1211.2504,461359.97,0.000853019,0.103415914,1211.2504,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 16:00,16302030.75,3597.512,5.394987325,56.97187775,13.78492894,34899.66325,4860.55475,1225.0728,461359.97,1.082984514,13.78492894,1225.0728,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 17:00,16306386.5,3597.512,5.37076235,89.7470085,27.46644196,35190.1895,4874.3765,1238.8952,461359.97,2.16511601,27.46644196,1238.8952,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 18:00,16310742.25,3597.512,5.346537375,122.5221393,41.14795498,35480.71575,4888.19825,1252.7176,461359.97,3.247247505,41.14795498,1252.7176,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 19:00,16315098,3597.512,5.3223124,155.29727,54.829468,35771.242,4902.02,1266.54,461359.97,4.329379,54.829468,1266.54,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 20:00,16318684.6,3597.512,5.30680212,143.8008852,43.88431859,28684.44829,4432.4265,1244.50906,369187.3529,4.0498104,43.88431859,1244.50906,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 21:00,16322271.2,3597.512,5.29129184,132.3045004,32.93916918,21597.65458,3962.833,1222.47812,277014.7357,3.7702418,32.93916918,1222.47812,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 22:00,16325857.8,3597.512,5.27578156,120.8081156,21.99401977,14510.86086,3493.2395,1200.44718,184842.1186,3.4906732,21.99401977,1200.44718,130901.3,73179.4,-15784.6,-201976.5
+7/8/2023 23:00,16329444.4,3597.512,5.26027128,109.3117308,11.04887036,7424.067152,3023.646,1178.41624,92669.5015,3.2111046,11.04887036,1178.41624,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 0:00,16333031,3597.512,5.244761,97.815346,0.10372095,337.27344,2554.0525,1156.3853,496.88437,2.931536,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 1:00,16335509.67,3597.512,5.237975133,97.79026733,0.10372095,275.4946667,2142.9482,776.8107613,343.3584467,2.929190267,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 2:00,16337988.33,3597.512,5.231189267,97.76518867,0.10372095,213.7158933,1731.8439,397.2362227,189.8325233,2.926844533,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 3:00,16340467,3597.512,5.2244034,97.74011,0.10372095,151.93712,1320.7396,17.661684,36.3066,2.9244988,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 4:00,16344570.8,3597.512,5.2665416,97.70787,0.10372095,6527.787296,1423.75828,60.3514272,939.68468,2.92431344,0.10372095,60.3514272,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 5:00,16348674.6,3597.512,5.3086798,97.67563,0.10372095,12903.63747,1526.77696,103.0411704,1843.06276,2.92412808,0.10372095,103.0411704,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 6:00,16352778.4,3597.512,5.350818,97.64339,0.10372095,19279.48765,1629.79564,145.7309136,2746.44084,2.92394272,0.10372095,145.7309136,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 7:00,16356882.2,3597.512,5.3929562,97.61115,0.10372095,25655.33782,1732.81432,188.4206568,3649.81892,2.92375736,0.10372095,188.4206568,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 8:00,16360986,3597.512,5.4350944,97.57891,0.10372095,32031.188,1835.833,231.1104,4553.197,2.923572,0.10372095,231.1104,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 9:00,16364137,3597.512,5.4268394,97.55542,0.10372095,34877.062,2349.9978,359.12973,29867.654,2.9235692,0.10372095,359.12973,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 10:00,16367723.3,3597.512,5.40297826,97.566168,0.10372095,33660.7628,2389.53537,431.078777,27571.1958,2.92357561,0.10372095,431.078777,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 11:00,16371309.6,3597.512,5.37911712,97.576916,0.10372095,32444.4636,2429.07294,503.027824,25274.7376,2.92358202,0.10372095,503.027824,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 12:00,16374895.9,3597.512,5.35525598,97.587664,0.10372095,31228.1644,2468.61051,574.976871,22978.2794,2.92358843,0.10372095,574.976871,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 13:00,16378482.2,3597.512,5.33139484,97.598412,0.10372095,30011.8652,2508.14808,646.925918,20681.8212,2.92359484,0.10372095,646.925918,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 14:00,16382068.5,3597.512,5.3075337,97.60916,0.10372095,28795.566,2547.68565,718.874965,18385.363,2.92360125,0.10372095,718.874965,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 15:00,16385654.8,3597.512,5.28367256,97.619908,0.10372095,27579.2668,2587.22322,790.824012,16088.9048,2.92360766,0.10372095,790.824012,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 16:00,16389241.1,3597.512,5.25981142,97.630656,0.10372095,26362.9676,2626.76079,862.773059,13792.4466,2.92361407,0.10372095,862.773059,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 17:00,16392827.4,3597.512,5.23595028,97.641404,0.10372095,25146.6684,2666.29836,934.722106,11495.9884,2.92362048,0.10372095,934.722106,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 18:00,16396413.7,3597.512,5.21208914,97.652152,0.10372095,23930.3692,2705.83593,1006.671153,9199.5302,2.92362689,0.10372095,1006.671153,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 19:00,16400000,3597.512,5.188228,97.6629,0.10372095,22714.07,2745.3735,1078.6202,6903.072,2.9236333,0.10372095,1078.6202,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 20:00,16403865.6,3597.512,5.19256754,97.566424,0.10372095,18296.36347,2638.923,1094.17322,5522.86843,2.92361514,0.10372095,1094.17322,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 21:00,16407731.2,3597.512,5.19690708,97.469948,0.10372095,13878.65694,2532.4725,1109.72624,4142.66486,2.92359698,0.10372095,1109.72624,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 22:00,16411596.8,3597.512,5.20124662,97.373472,0.10372095,9460.95041,2426.022,1125.27926,2762.46129,2.92357882,0.10372095,1125.27926,130901.3,73179.4,-15784.6,-201976.5
+7/9/2023 23:00,16415462.4,3597.512,5.20558616,97.276996,0.10372095,5043.24388,2319.5715,1140.83228,1382.25772,2.92356066,0.10372095,1140.83228,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 0:00,16419328,3597.512,5.2099257,97.18052,0.10372095,625.53735,2213.121,1156.3853,2.0541494,2.9235425,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 1:00,16421842.67,3597.512,5.29692,97.16503,0.10372095,468.1627267,1695.461167,776.8107613,1.609755367,2.9235414,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 2:00,16424357.33,3597.512,5.3839143,97.14954,0.10372095,310.7881033,1177.801333,397.2362227,1.165361333,2.9235403,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 3:00,16426872,3597.512,5.4709086,97.13405,0.10372095,153.41348,660.1415,17.661684,0.7209673,2.9235392,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 4:00,16430510.5,3597.512,5.46022105,97.3195925,0.10372095,209.612455,1589.13375,587.023492,128.7333187,2.92355195,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 5:00,16434149,3597.512,5.4495335,97.505135,0.10372095,265.81143,2518.126,1156.3853,256.74567,2.9235647,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 6:00,16437706,3597.512,97.17057,462.15436,50.506348,32309.018,2483.4744,1119.571,268.5551,3.4517014,50.506348,1119.571,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 7:00,16441363,3597.512,384.57394,498.45117,91.18876,41655.04,1983.8158,459.04892,2362.2222,1.7278007,91.18876,459.04892,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 8:00,16445471,3597.512,261.3604,375.15137,56.548046,38221.1,2370.9756,436.1157,24393.111,22.262169,56.548046,436.1157,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 9:00,16449393.22,3597.512,256.2471011,374.9031089,56.51249422,38038.24867,2654.458533,530.6438333,72944.98422,166.2261391,56.51249422,530.6438333,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 10:00,16453315.44,3597.512,251.1338022,374.6548478,56.47694244,37855.39733,2937.941467,625.1719667,121496.8574,310.1901092,56.47694244,625.1719667,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 11:00,16457237.67,3597.512,246.0205033,374.4065867,56.44139067,37672.546,3221.4244,719.7001,170048.7307,454.1540793,56.44139067,719.7001,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 12:00,16461159.89,3597.512,240.9072044,374.1583256,56.40583889,37489.69467,3504.907333,814.2282333,218600.6039,598.1180494,56.40583889,814.2282333,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 13:00,16465082.11,3597.512,235.7939056,373.9100644,56.37028711,37306.84333,3788.390267,908.7563667,267152.4771,742.0820196,56.37028711,908.7563667,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 14:00,16469004.33,3597.512,230.6806067,373.6618033,56.33473533,37123.992,4071.8732,1003.2845,315704.3503,886.0459897,56.33473533,1003.2845,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 15:00,16472926.56,3597.512,225.5673078,373.4135422,56.29918356,36941.14067,4355.356133,1097.812633,364256.2236,1030.00996,56.29918356,1097.812633,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 16:00,16476848.78,3597.512,220.4540089,373.1652811,56.26363178,36758.28933,4638.839067,1192.340767,412808.0968,1173.97393,56.26363178,1192.340767,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 17:00,16480771,3597.512,215.34071,372.91702,56.22808,36575.438,4922.322,1286.8689,461359.97,1317.9379,56.22808,1286.8689,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 18:00,16480831,3597.512,215.32217,319.89633,1.7468385,36592.555,4923.0566,1287.6039,461359.97,1356.1832,1.7468385,1287.6039,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 19:00,16484664.8,3597.512,224.738276,329.01049,12.7294348,36477.668,4597.9732,1246.12204,380958.5932,1104.573862,12.7294348,1246.12204,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 20:00,16488498.6,3597.512,234.154382,338.12465,23.7120311,36362.781,4272.8898,1204.64018,300557.2164,852.964524,23.7120311,1204.64018,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 21:00,16492332.4,3597.512,243.570488,347.23881,34.6946274,36247.894,3947.8064,1163.15832,220155.8396,601.355186,34.6946274,1163.15832,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 22:00,16496166.2,3597.512,252.986594,356.35297,45.6772237,36133.007,3622.723,1121.67646,139754.4628,349.745848,45.6772237,1121.67646,130901.3,73179.4,-15784.6,-201976.5
+7/10/2023 23:00,16500000,3597.512,262.4027,365.46713,56.65982,36018.12,3297.6396,1080.1946,59353.086,98.13651,56.65982,1080.1946,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 0:00,16505853,3597.512,5.210372,288.90686,0.10372095,288.34753,2536.879,1156.3853,370.0847,1144.6085,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 1:00,16508320.67,3597.512,5.204972333,287.68714,0.10372095,242.87788,2128.606133,776.8107613,253.4254813,1144.604933,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 2:00,16510788.33,3597.512,5.199572667,286.46742,0.10372095,197.40823,1720.333267,397.2362227,136.7662627,1144.601367,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 3:00,16513256,3597.512,5.194173,285.2477,0.10372095,151.93858,1312.0604,17.661684,20.107044,1144.5978,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 4:00,16516910.5,3597.512,5.1849657,283.75361,0.10372095,220.29744,1945.4704,587.023492,373.095172,1144.62985,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 5:00,16520565,3597.512,5.1757584,282.25952,0.10372095,288.6563,2578.8804,1156.3853,726.0833,1144.6619,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 6:00,16524449.5,3597.512,22.6623352,282.4420558,0.240888929,3302.517942,2774.24895,1167.34185,39112.24052,1168.328758,0.240888929,1167.34185,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 7:00,16528334,3597.512,40.148912,282.6245917,0.378056908,6316.379583,2969.6175,1178.2984,77498.39775,1191.995617,0.378056908,1178.2984,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 8:00,16532218.5,3597.512,57.6354888,282.8071275,0.515224888,9330.241225,3164.98605,1189.25495,115884.555,1215.662475,0.515224888,1189.25495,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 9:00,16536103,3597.512,75.1220656,282.9896633,0.652392867,12344.10287,3360.3546,1200.2115,154270.7122,1239.329333,0.652392867,1200.2115,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 10:00,16539987.5,3597.512,92.6086424,283.1721992,0.789560846,15357.96451,3555.72315,1211.16805,192656.8694,1262.996192,0.789560846,1211.16805,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 11:00,16543872,3597.512,110.0952192,283.354735,0.926728825,18371.82615,3751.0917,1222.1246,231043.0266,1286.66305,0.926728825,1222.1246,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 12:00,16547756.5,3597.512,127.581796,283.5372708,1.063896804,21385.68779,3946.46025,1233.08115,269429.1839,1310.329908,1.063896804,1233.08115,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 13:00,16551641,3597.512,145.0683728,283.7198067,1.201064783,24399.54943,4141.8288,1244.0377,307815.3411,1333.996767,1.201064783,1244.0377,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 14:00,16555525.5,3597.512,162.5549496,283.9023425,1.338232763,27413.41107,4337.19735,1254.99425,346201.4983,1357.663625,1.338232763,1254.99425,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 15:00,16559410,3597.512,180.0415264,284.0848783,1.475400742,30427.27272,4532.5659,1265.9508,384587.6555,1381.330483,1.475400742,1265.9508,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 16:00,16563294.5,3597.512,197.5281032,284.2674142,1.612568721,33441.13436,4727.93445,1276.90735,422973.8128,1404.997342,1.612568721,1276.90735,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 17:00,16567179,3597.512,215.01468,284.44995,1.7497367,36454.996,4923.303,1287.8639,461359.97,1428.6642,1.7497367,1287.8639,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 18:00,16570758,3597.512,185.0413957,282.55606,1.514591593,31294.09454,4579.491686,1269.081243,395486.9544,1398.1464,1.514591593,1269.081243,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 19:00,16574337,3597.512,155.0681113,280.66217,1.279446486,26133.19307,4235.680371,1250.298586,329613.9389,1367.6286,1.279446486,1250.298586,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 20:00,16577916,3597.512,125.094827,278.76828,1.044301379,20972.29161,3891.869057,1231.515929,263740.9233,1337.1108,1.044301379,1231.515929,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 21:00,16581495,3597.512,95.12154269,276.87439,0.809156271,15811.39015,3548.057743,1212.733271,197867.9078,1306.593,0.809156271,1212.733271,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 22:00,16585074,3597.512,65.14825836,274.9805,0.574011164,10650.48869,3204.246429,1193.950614,131994.8922,1276.0752,0.574011164,1193.950614,130901.3,73179.4,-15784.6,-201976.5
+7/11/2023 23:00,16588653,3597.512,35.17497403,273.08661,0.338866057,5489.587223,2860.435114,1175.167957,66121.87667,1245.5574,0.338866057,1175.167957,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 0:00,16592232,3597.512,5.2016897,271.19272,0.10372095,328.68576,2516.6238,1156.3853,248.86111,1215.0396,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 1:00,16594727.33,3597.512,5.187377267,270.9642533,0.10372095,269.7312933,1700.64639,775.8703833,165.9085771,1215.0363,0.10372095,775.8703833,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 2:00,16597222.67,3597.512,5.173064833,270.7357867,0.10372095,210.7768267,884.66898,395.3554667,82.95604418,1215.033,0.10372095,395.3554667,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 3:00,16599718,3597.512,5.1587524,270.50732,0.10372095,151.82236,68.69157,14.84055,0.003511276,1215.0297,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 4:00,16603327,3597.512,5.486731267,270.2205667,0.10372095,10844.16557,882.2942133,383.6131333,141.7753809,1215.051333,0.10372095,383.6131333,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 5:00,16606936,3597.512,5.814710133,269.9338133,0.10372095,21536.50879,1695.896857,752.3857167,283.5472504,1215.072967,0.10372095,752.3857167,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 6:00,16610545,3597.512,6.142689,269.64706,0.10372095,32228.852,2509.4995,1121.1583,425.31912,1215.0946,0.10372095,1121.1583,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 7:00,16615905,3597.512,254.72165,173.36684,56.72859,40116.188,2243.9985,460.89377,12941.986,1.9298584,56.72859,460.89377,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 8:00,16618314,3597.512,254.08667,188.2059,56.62112,37901.406,2460.4668,449.7726,31981.383,12.409646,56.62112,449.7726,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 9:00,16622230.11,3597.512,249.9123856,203.02545,56.57570267,37756.54444,2733.561156,542.3411556,79690.11489,141.2451076,56.57570267,542.3411556,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 10:00,16626146.22,3597.512,245.7381011,217.845,56.53028533,37611.68289,3006.655511,634.9097111,127398.8468,270.0805691,56.53028533,634.9097111,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 11:00,16630062.33,3597.512,241.5638167,232.66455,56.484868,37466.82133,3279.749867,727.4782667,175107.5787,398.9160307,56.484868,727.4782667,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 12:00,16633978.44,3597.512,237.3895322,247.4841,56.43945067,37321.95978,3552.844222,820.0468222,222816.3106,527.7514922,56.43945067,820.0468222,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 13:00,16637894.56,3597.512,233.2152478,262.30365,56.39403333,37177.09822,3825.938578,912.6153778,270525.0424,656.5869538,56.39403333,912.6153778,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 14:00,16641810.67,3597.512,229.0409633,277.1232,56.348616,37032.23667,4099.032933,1005.183933,318233.7743,785.4224153,56.348616,1005.183933,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 15:00,16645726.78,3597.512,224.8666789,291.94275,56.30319867,36887.37511,4372.127289,1097.752489,365942.5062,914.2578769,56.30319867,1097.752489,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 16:00,16649642.89,3597.512,220.6923944,306.7623,56.25778133,36742.51356,4645.221644,1190.321044,413651.2381,1043.093338,56.25778133,1190.321044,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 17:00,16653559,3597.512,216.51811,321.58185,56.212364,36597.652,4918.316,1282.8896,461359.97,1171.9288,56.212364,1282.8896,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 18:00,16653619,3597.512,216.50179,268.2365,1.729895,36617.094,4919.0303,1283.6044,461359.97,1199.0984,1.729895,1283.6044,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 19:00,16657779.5,3597.512,181.2881324,266.2987583,1.458865992,30588.28058,4509.567167,1262.401217,384473.8246,1164.279883,1.458865992,1262.401217,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 20:00,16661940,3597.512,146.0744748,264.3610167,1.187836983,24559.46717,4100.104033,1241.198033,307587.6792,1129.461367,1.187836983,1241.198033,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 21:00,16666100.5,3597.512,110.8608172,262.423275,0.916807975,18530.65375,3690.6409,1219.99485,230701.5339,1094.64285,0.916807975,1219.99485,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 22:00,16670261,3597.512,75.64715953,260.4855333,0.645778967,12501.84033,3281.177767,1198.791667,153815.3885,1059.824333,0.645778967,1198.791667,130901.3,73179.4,-15784.6,-201976.5
+7/12/2023 23:00,16674421.5,3597.512,40.43350192,258.5477917,0.374749958,6473.026917,2871.714633,1177.588483,76929.2431,1025.005817,0.374749958,1177.588483,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 0:00,16678582,3597.512,5.2198443,256.61005,0.10372095,444.2135,2462.2515,1156.3853,43.097717,990.1873,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 1:00,16681077,3597.512,5.2136904,256.53988,0.10372095,347.59232,1914.633223,776.8107613,29.11337577,990.1838667,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 2:00,16683572,3597.512,5.2075365,256.46971,0.10372095,250.97114,1367.014947,397.2362227,15.12903453,990.1804333,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 3:00,16686067,3597.512,5.2013826,256.39954,0.10372095,154.34996,819.39667,17.661684,1.1446933,990.177,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 4:00,16689681,3597.512,5.3792985,256.3097667,0.10372095,10811.80831,1375.81798,384.6095227,102.3376122,990.1950667,0.10372095,384.6095227,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 5:00,16693295,3597.512,5.5572144,256.2199933,0.10372095,21469.26665,1932.23929,751.5573613,203.5305311,990.2131333,0.10372095,751.5573613,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 6:00,16696909,3597.512,5.7351303,256.13022,0.10372095,32126.725,2488.6606,1118.5052,304.72345,990.2312,0.10372095,1118.5052,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 7:00,16700863,3597.512,257.82968,167.66887,56.856186,41804.18,1860.9796,446.75275,643.6634,1.1300015,56.856186,446.75275,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 8:00,16707194,3597.512,260.1762,205.40744,56.648098,36268.094,2387.7034,402.58813,29278.008,43.56619,56.648098,402.58813,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 9:00,16710835.67,3597.512,255.2037333,218.58678,56.60044778,36287.30467,2668.881044,500.3993378,77287.11489,181.2195356,56.60044778,500.3993378,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 10:00,16714477.33,3597.512,250.2312667,231.76612,56.55279756,36306.51533,2950.058689,598.2105456,125296.2218,318.8728811,56.55279756,598.2105456,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 11:00,16718119,3597.512,245.2588,244.94546,56.50514733,36325.726,3231.236333,696.0217533,173305.3287,456.5262267,56.50514733,696.0217533,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 12:00,16721760.67,3597.512,240.2863333,258.1248,56.45749711,36344.93667,3512.413978,793.8329611,221314.4356,594.1795722,56.45749711,793.8329611,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 13:00,16725402.33,3597.512,235.3138667,271.30414,56.40984689,36364.14733,3793.591622,891.6441689,269323.5424,731.8329178,56.40984689,891.6441689,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 14:00,16729044,3597.512,230.3414,284.48348,56.36219667,36383.358,4074.769267,989.4553767,317332.6493,869.4862633,56.36219667,989.4553767,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 15:00,16732685.67,3597.512,225.3689333,297.66282,56.31454644,36402.56867,4355.946911,1087.266584,365341.7562,1007.139609,56.31454644,1087.266584,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 16:00,16736327.33,3597.512,220.3964667,310.84216,56.26689622,36421.77933,4637.124556,1185.077792,413350.8631,1144.792954,56.26689622,1185.077792,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 17:00,16739969,3597.512,215.424,324.0215,56.219246,36440.99,4918.3022,1282.889,461359.97,1282.4463,56.219246,1282.889,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 18:00,16740029,3597.512,215.40501,270.9475,1.7372742,36459.375,4919.05,1283.6366,461359.97,1317.2411,1.7372742,1283.6366,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 19:00,16743632.56,3597.512,192.0461832,269.7319489,1.555768283,32425.21262,4517.197367,1142.97272,410098.7444,1293.455411,1.555768283,1142.97272,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 20:00,16747236.11,3597.512,168.6873564,268.5163978,1.374262367,28391.05024,4115.344733,1002.308841,358837.5188,1269.669722,1.374262367,1002.308841,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 21:00,16750839.67,3597.512,145.3285295,267.3008467,1.19275645,24356.88785,3713.4921,861.6449613,307576.2932,1245.884033,1.19275645,861.6449613,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 22:00,16754443.22,3597.512,121.9697027,266.0852956,1.011250533,20322.72547,3311.639467,720.9810818,256315.0675,1222.098344,1.011250533,720.9810818,130901.3,73179.4,-15784.6,-201976.5
+7/13/2023 23:00,16758046.78,3597.512,98.61087589,264.8697444,0.829744617,16288.56309,2909.786833,580.3172022,205053.8419,1198.312656,0.829744617,580.3172022,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 0:00,16761650.33,3597.512,75.25204907,263.6541933,0.6482387,12254.40071,2507.9342,439.6533227,153792.6163,1174.526967,0.6482387,439.6533227,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 1:00,16765253.89,3597.512,51.89322224,262.4386422,0.466732783,8220.238324,2106.081567,298.9894431,102531.3907,1150.741278,0.466732783,298.9894431,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 2:00,16768857.44,3597.512,28.53439542,261.2230911,0.285226867,4186.075942,1704.228933,158.3255636,51270.16507,1126.955589,0.285226867,158.3255636,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 3:00,16772461,3597.512,5.1755686,260.00754,0.10372095,151.91356,1302.3763,17.661684,8.939457,1103.1699,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 4:00,16776122,3597.512,6.091325067,186.8440867,0.103619271,10958.44904,1705.214333,386.5522227,143.4756613,735.4474011,0.103619271,386.5522227,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 5:00,16779783,3597.512,7.007081533,113.6806333,0.103517593,21764.98452,2108.052367,755.4427613,278.0118657,367.7249022,0.103517593,755.4427613,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 6:00,16783444,3597.512,7.922838,40.51718,0.103415914,32571.52,2510.8904,1124.3333,412.54807,0.002403329,0.103415914,1124.3333,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 7:00,16787583,3597.512,54.012326,95.7806225,0.392389386,33562.46,3111.905225,1163.134375,115649.4036,276.7059025,0.392389386,1163.134375,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 8:00,16791722,3597.512,100.101814,151.044065,0.681362857,34553.4,3712.92005,1201.93545,230886.259,553.4094017,0.681362857,1201.93545,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 9:00,16795861,3597.512,146.191302,206.3075075,0.970336329,35544.34,4313.934875,1240.736525,346123.1145,830.1129008,0.970336329,1240.736525,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 10:00,16800000,3597.512,192.28079,261.57095,1.2593098,36535.28,4914.9497,1279.5376,461359.97,1106.8164,1.2593098,1279.5376,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 11:00,16803766.86,3597.512,195.3486829,270.9724429,9.112693257,36489.92357,4915.536743,1280.126257,461359.97,1146.638629,9.112693257,1280.126257,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 12:00,16807533.71,3597.512,198.4165757,280.3739357,16.96607671,36444.56714,4916.123786,1280.714914,461359.97,1186.460857,16.96607671,1280.714914,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 13:00,16811300.57,3597.512,201.4844686,289.7754286,24.81946017,36399.21071,4916.710829,1281.303571,461359.97,1226.283086,24.81946017,1281.303571,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 14:00,16815067.43,3597.512,204.5523614,299.1769214,32.67284363,36353.85429,4917.297871,1281.892229,461359.97,1266.105314,32.67284363,1281.892229,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 15:00,16818834.29,3597.512,207.6202543,308.5784143,40.52622709,36308.49786,4917.884914,1282.480886,461359.97,1305.927543,40.52622709,1282.480886,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 16:00,16822601.14,3597.512,210.6881471,317.9799071,48.37961054,36263.14143,4918.471957,1283.069543,461359.97,1345.749771,48.37961054,1283.069543,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 17:00,16826368,3597.512,213.75604,327.3814,56.232994,36217.785,4919.059,1283.6582,461359.97,1385.572,56.232994,1283.6582,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 18:00,16826428,3597.512,213.73874,274.2519,1.7521776,36234.89,4919.7627,1284.3618,461359.97,1419.6833,1.7521776,1284.3618,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 19:00,16830601,3597.512,178.9695179,272.6319033,1.477434825,30239.20942,4529.402233,1263.032383,384585.5313,1386.865383,1.477434825,1263.032383,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 20:00,16834774,3597.512,144.2002958,271.0119067,1.20269205,24243.52883,4139.041767,1241.702967,307811.0925,1354.047467,1.20269205,1241.702967,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 21:00,16838947,3597.512,109.4310737,269.39191,0.927949275,18247.84825,3748.6813,1220.37355,231036.6538,1321.22955,0.927949275,1220.37355,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 22:00,16843120,3597.512,74.6618516,267.7719133,0.6532065,12252.16767,3358.320833,1199.044133,154262.2151,1288.411633,0.6532065,1199.044133,130901.3,73179.4,-15784.6,-201976.5
+7/14/2023 23:00,16847293,3597.512,39.8926295,266.1519167,0.378463725,6256.487083,2967.960367,1177.714717,77487.77637,1255.593717,0.378463725,1177.714717,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 0:00,16851466,3597.512,5.1234074,264.53192,0.10372095,260.8065,2577.5999,1156.3853,713.33765,1222.7758,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 1:00,16853928,3597.512,5.118123267,264.5208467,0.10372095,223.61636,2165.923833,776.8107613,509.1446567,1222.772733,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 2:00,16856390,3597.512,5.112839133,264.5097733,0.10372095,186.42622,1754.247767,397.2362227,304.9516633,1222.769667,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 3:00,16858852,3597.512,5.107555,264.4987,0.10372095,149.23608,1342.5717,17.661684,100.75867,1222.7666,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 4:00,16862592.73,3597.512,5.109469836,264.5023182,0.10372095,1195.413164,1467.001573,121.1820127,372.1723364,1222.768064,0.10372095,121.1820127,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 5:00,16866333.45,3597.512,5.111384673,264.5059364,0.10372095,2241.590247,1591.431445,224.7023415,643.5860027,1222.769527,0.10372095,224.7023415,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 6:00,16870074.18,3597.512,5.113299509,264.5095545,0.10372095,3287.767331,1715.861318,328.2226702,914.9996691,1222.770991,0.10372095,328.2226702,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 7:00,16873814.91,3597.512,5.115214345,264.5131727,0.10372095,4333.944415,1840.291191,431.7429989,1186.413335,1222.772455,0.10372095,431.7429989,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 8:00,16877555.64,3597.512,5.117129182,264.5167909,0.10372095,5380.121498,1964.721064,535.2633276,1457.827002,1222.773918,0.10372095,535.2633276,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 9:00,16881296.36,3597.512,5.119044018,264.5204091,0.10372095,6426.298582,2089.150936,638.7836564,1729.240668,1222.775382,0.10372095,638.7836564,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 10:00,16885037.09,3597.512,5.120958855,264.5240273,0.10372095,7472.475665,2213.580809,742.3039851,2000.654335,1222.776845,0.10372095,742.3039851,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 11:00,16888777.82,3597.512,5.122873691,264.5276455,0.10372095,8518.652749,2338.010682,845.8243138,2272.068001,1222.778309,0.10372095,845.8243138,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 12:00,16892518.55,3597.512,5.124788527,264.5312636,0.10372095,9564.829833,2462.440555,949.3446425,2543.481667,1222.779773,0.10372095,949.3446425,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 13:00,16896259.27,3597.512,5.126703364,264.5348818,0.10372095,10611.00692,2586.870427,1052.864971,2814.895334,1222.781236,0.10372095,1052.864971,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 14:00,16900000,3597.512,5.1286182,264.5385,0.10372095,11657.184,2711.3003,1156.3853,3086.309,1222.7827,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 15:00,16903790.8,3597.512,5.12723528,264.50902,0.10372095,10511.77011,2590.73786,1042.512938,2941.57101,1222.78103,0.10372095,1042.512938,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 16:00,16907581.6,3597.512,5.12585236,264.47954,0.10372095,9366.356228,2470.17542,928.6405768,2796.83302,1222.77936,0.10372095,928.6405768,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 17:00,16911372.4,3597.512,5.12446944,264.45006,0.10372095,8220.942342,2349.61298,814.7682152,2652.09503,1222.77769,0.10372095,814.7682152,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 18:00,16915163.2,3597.512,5.12308652,264.42058,0.10372095,7075.528456,2229.05054,700.8958536,2507.35704,1222.77602,0.10372095,700.8958536,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 19:00,16918954,3597.512,5.1217036,264.3911,0.10372095,5930.11457,2108.4881,587.023492,2362.61905,1222.77435,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 20:00,16922744.8,3597.512,5.12032068,264.36162,0.10372095,4784.700684,1987.92566,473.1511304,2217.88106,1222.77268,0.10372095,473.1511304,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 21:00,16926535.6,3597.512,5.11893776,264.33214,0.10372095,3639.286798,1867.36322,359.2787688,2073.14307,1222.77101,0.10372095,359.2787688,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 22:00,16930326.4,3597.512,5.11755484,264.30266,0.10372095,2493.872912,1746.80078,245.4064072,1928.40508,1222.76934,0.10372095,245.4064072,130901.3,73179.4,-15784.6,-201976.5
+7/15/2023 23:00,16934117.2,3597.512,5.11617192,264.27318,0.10372095,1348.459026,1626.23834,131.5340456,1783.66709,1222.76767,0.10372095,131.5340456,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 0:00,16937908,3597.512,5.114789,264.2437,0.10372095,203.04514,1505.6759,17.661684,1638.9291,1222.766,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 1:00,16940376,3597.512,5.1087319,264.2378233,0.10372095,184.3792567,1028.380683,16.721306,1092.62085,1222.766,0.10372095,16.721306,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 2:00,16942844,3597.512,5.1026748,264.2319467,0.10372095,165.7133733,551.0854667,15.780928,546.3125991,1222.766,0.10372095,15.780928,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 3:00,16945312,3597.512,5.0966177,264.22607,0.10372095,147.04749,73.79025,14.84055,0.0043487,1222.766,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 4:00,16948915.67,3597.512,5.108778283,245.5143108,0.10369553,2809.220199,468.1753125,111.1898875,38446.66815,1120.869025,0.10369553,111.1898875,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 5:00,16952519.33,3597.512,5.120938867,226.8025517,0.103670111,5471.392908,862.560375,207.539225,76893.33196,1018.972051,0.103670111,207.539225,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 6:00,16956123,3597.512,5.13309945,208.0907925,0.103644691,8133.565617,1256.945438,303.8885625,115339.9958,917.0750763,0.103644691,303.8885625,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 7:00,16959726.67,3597.512,5.145260033,189.3790333,0.103619271,10795.73833,1651.3305,400.2379,153786.6596,815.1781017,0.103619271,400.2379,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 8:00,16963330.33,3597.512,5.157420617,170.6672742,0.103593852,13457.91104,2045.715563,496.5872375,192233.3234,713.2811271,0.103593852,496.5872375,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 9:00,16966934,3597.512,5.1695812,151.955515,0.103568432,16120.08375,2440.100625,592.936575,230679.9872,611.3841526,0.103568432,592.936575,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 10:00,16970537.67,3597.512,5.181741783,133.2437558,0.103543012,18782.25645,2834.485688,689.2859125,269126.651,509.487178,0.103543012,689.2859125,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 11:00,16974141.33,3597.512,5.193902367,114.5319967,0.103517593,21444.42916,3228.87075,785.63525,307573.3148,407.5902034,0.103517593,785.63525,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 12:00,16977745,3597.512,5.20606295,95.8202375,0.103492173,24106.60187,3623.255813,881.9845875,346019.9786,305.6932289,0.103492173,881.9845875,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 13:00,16981348.67,3597.512,5.218223533,77.10847833,0.103466753,26768.77458,4017.640875,978.333925,384466.6424,203.7962543,0.103466753,978.333925,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 14:00,16984952.33,3597.512,5.230384117,58.39671917,0.103441334,29430.94729,4412.025938,1074.683263,422913.3062,101.8992797,0.103441334,1074.683263,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 15:00,16988556,3597.512,5.2425447,39.68496,0.103415914,32093.12,4806.411,1171.0326,461359.97,0.002305146,0.103415914,1171.0326,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 16:00,16992370.67,3597.512,5.194095133,114.5284067,0.103517593,21443.91774,4091.159567,1166.150167,308219.7532,407.5902034,0.103517593,1166.150167,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 17:00,16996185.33,3597.512,5.145645567,189.3718533,0.103619271,10794.71549,3375.908133,1161.267733,155079.5363,815.1781017,0.103619271,1161.267733,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 18:00,17000000,3597.512,5.097196,264.2153,0.10372095,145.51323,2660.6567,1156.3853,1939.3195,1222.766,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 19:00,17006216,3597.512,5.1878304,166.83316,54.829468,33587.688,4847.4624,1212.086,461359.97,2.2690368,54.829468,1212.086,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 20:00,17009826.4,3597.512,5.19415312,155.4045972,43.88431859,26923.0776,4385.9564,1200.94586,369166.2725,2.0930769,43.88431859,1200.94586,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 21:00,17013436.8,3597.512,5.20047584,143.9760344,32.93916918,20258.46721,3924.4504,1189.80572,276972.575,1.917117,32.93916918,1189.80572,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 22:00,17017047.2,3597.512,5.20679856,132.5474716,21.99401977,13593.85681,3462.9444,1178.66558,184778.8776,1.7411571,21.99401977,1178.66558,130901.3,73179.4,-15784.6,-201976.5
+7/16/2023 23:00,17020657.6,3597.512,5.21312128,121.1189088,11.04887036,6929.246416,3001.4384,1167.52544,92585.18008,1.5651972,11.04887036,1167.52544,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 0:00,17024268,3597.512,5.219444,109.690346,0.10372095,264.63602,2539.9324,1156.3853,391.4826,1.3892373,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 1:00,17026729.33,3597.512,5.269710667,109.6782407,0.10372095,226.9676133,2132.0519,776.8107613,270.1039123,1.386660733,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 2:00,17029190.67,3597.512,5.319977333,109.6661353,0.10372095,189.2992067,1724.1714,397.2362227,148.7252247,1.384084167,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 3:00,17031652,3597.512,5.370244,109.65403,0.10372095,151.6308,1316.2909,17.661684,27.346537,1.3815076,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 4:00,17035259,3597.512,5.359823,109.64791,0.10372095,161.21409,1962.49195,587.023492,556.1852185,1.38120385,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 5:00,17038866,3597.512,5.349402,109.64179,0.10372095,170.79738,2608.693,1156.3853,1085.0239,1.3809001,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 6:00,17044704,3597.512,181.81232,226.49762,89.65932,39151.266,2871.7402,1226.4265,6026.5835,57.40701,89.65932,1226.4265,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 7:00,17048418.73,3597.512,184.7524555,234.0926882,86.61864818,38882.12855,3057.385582,1231.158036,47420.52773,182.4374273,86.61864818,1231.158036,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 8:00,17052133.45,3597.512,187.6925909,241.6877564,83.57797636,38612.99109,3243.030964,1235.889573,88814.47195,307.4678445,83.57797636,1235.889573,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 9:00,17055848.18,3597.512,190.6327264,249.2828245,80.53730455,38343.85364,3428.676345,1240.621109,130208.4162,432.4982618,80.53730455,1240.621109,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 10:00,17059562.91,3597.512,193.5728618,256.8778927,77.49663273,38074.71618,3614.321727,1245.352645,171602.3604,557.5286791,77.49663273,1245.352645,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 11:00,17063277.64,3597.512,196.5129973,264.4729609,74.45596091,37805.57873,3799.967109,1250.084182,212996.3046,682.5590964,74.45596091,1250.084182,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 12:00,17066992.36,3597.512,199.4531327,272.0680291,71.41528909,37536.44127,3985.612491,1254.815718,254390.2489,807.5895136,71.41528909,1254.815718,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 13:00,17070707.09,3597.512,202.3932682,279.6630973,68.37461727,37267.30382,4171.257873,1259.547255,295784.1931,932.6199309,68.37461727,1259.547255,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 14:00,17074421.82,3597.512,205.3334036,287.2581655,65.33394545,36998.16636,4356.903255,1264.278791,337178.1373,1057.650348,65.33394545,1264.278791,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 15:00,17078136.55,3597.512,208.2735391,294.8532336,62.29327364,36729.02891,4542.548636,1269.010327,378572.0815,1182.680765,62.29327364,1269.010327,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 16:00,17081851.27,3597.512,211.2136745,302.4483018,59.25260182,36459.89145,4728.194018,1273.741864,419966.0258,1307.711183,59.25260182,1273.741864,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 17:00,17085566,3597.512,214.15381,310.04337,56.21193,36190.754,4913.8394,1278.4734,461359.97,1432.7416,56.21193,1278.4734,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 18:00,17085626,3597.512,214.13759,256.86975,1.7294108,36209.477,4914.5635,1279.1978,461359.97,1466.0424,1.7294108,1279.1978,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 19:00,17089219.5,3597.512,223.1036675,263.1214975,15.4749231,36669.29625,4578.865975,1270.900025,365339.9775,1293.39675,15.4749231,1270.900025,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 20:00,17092813,3597.512,232.069745,269.373245,29.2204354,37129.1155,4243.16845,1262.60225,269319.985,1120.7511,29.2204354,1262.60225,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 21:00,17096406.5,3597.512,241.0358225,275.6249925,42.9659477,37588.93475,3907.470925,1254.304475,173299.9925,948.10545,42.9659477,1254.304475,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 22:00,17100000,3597.512,250.0019,281.87674,56.71146,38048.754,3571.7734,1246.0067,77280,775.4598,56.71146,1246.0067,130901.3,73179.4,-15784.6,-201976.5
+7/17/2023 23:00,17105351,3597.512,127.6015615,264.17916,28.40759048,19130.41375,2507.1494,631.834192,39015.96315,1016.0527,28.40759048,631.834192,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 0:00,17110702,3597.512,5.201223,246.48158,0.10372095,212.07349,1442.5254,17.661684,751.9263,1256.6456,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 1:00,17113152.67,3597.512,5.195689733,246.4487433,0.10372095,191.37064,1409.1829,17.661684,534.829132,1256.6424,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 2:00,17115603.33,3597.512,5.190156467,246.4159067,0.10372095,170.66779,1375.8404,17.661684,317.731964,1256.6392,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 3:00,17118054,3597.512,5.1846232,246.38307,0.10372095,149.96494,1342.4979,17.661684,100.634796,1256.636,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 4:00,17121663.33,3597.512,5.2783888,246.33938,0.10372095,10620.60429,1739.341933,383.993556,288.7759207,1256.656,0.10372095,383.993556,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 5:00,17125272.67,3597.512,5.3721544,246.29569,0.10372095,21091.24365,2136.185967,750.325428,476.9170453,1256.676,0.10372095,750.325428,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 6:00,17128882,3597.512,5.46592,246.252,0.10372095,31561.883,2533.03,1116.6573,665.05817,1256.696,0.10372095,1116.6573,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 7:00,17132799.27,3597.512,24.179,252.1348,5.2068805,31953.92,2749.7225,1131.624136,42546.41379,1277.196836,5.2068805,1131.624136,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 8:00,17136716.55,3597.512,42.89208,258.0176,10.31004005,32345.957,2966.415,1146.590973,84427.76941,1297.697673,10.31004005,1146.590973,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 9:00,17140633.82,3597.512,61.60516,263.9004,15.4131996,32737.994,3183.1075,1161.557809,126309.125,1318.198509,15.4131996,1161.557809,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 10:00,17144551.09,3597.512,80.31824,269.7832,20.51635915,33130.031,3399.8,1176.524645,168190.4807,1338.699345,20.51635915,1176.524645,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 11:00,17148468.36,3597.512,99.03132,275.666,25.6195187,33522.068,3616.4925,1191.491482,210071.8363,1359.200182,25.6195187,1191.491482,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 12:00,17152385.64,3597.512,117.7444,281.5488,30.72267825,33914.105,3833.185,1206.458318,251953.1919,1379.701018,30.72267825,1206.458318,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 13:00,17156302.91,3597.512,136.45748,287.4316,35.8258378,34306.142,4049.8775,1221.425155,293834.5475,1400.201855,35.8258378,1221.425155,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 14:00,17160220.18,3597.512,155.17056,293.3144,40.92899735,34698.179,4266.57,1236.391991,335715.9031,1420.702691,40.92899735,1236.391991,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 15:00,17164137.45,3597.512,173.88364,299.1972,46.0321569,35090.216,4483.2625,1251.358827,377597.2588,1441.203527,46.0321569,1251.358827,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 16:00,17168054.73,3597.512,192.59672,305.08,51.13531645,35482.253,4699.955,1266.325664,419478.6144,1461.704364,51.13531645,1266.325664,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 17:00,17171972,3597.512,211.3098,310.9628,56.238476,35874.29,4916.6475,1281.2925,461359.97,1482.2052,56.238476,1281.2925,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 18:00,17172032,3597.512,211.29198,257.9979,1.7580751,35891.402,4917.336,1281.9812,461359.97,1520.9951,1.7580751,1281.9812,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 19:00,17176205.33,3597.512,176.9269832,256.59986,1.482349408,29951.78481,4533.489383,1261.04855,384660.4004,1493.346933,1.482349408,1261.04855,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 20:00,17180378.67,3597.512,142.5619864,255.20182,1.206623717,24012.16762,4149.642767,1240.1159,307960.8307,1465.698767,1.206623717,1240.1159,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 21:00,17184552,3597.512,108.1969897,253.80378,0.930898025,18072.55044,3765.79615,1219.18325,231261.2611,1438.0506,0.930898025,1219.18325,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 22:00,17188725.33,3597.512,73.83199287,252.40574,0.655172333,12132.93325,3381.949533,1198.2506,154561.6915,1410.402433,0.655172333,1198.2506,130901.3,73179.4,-15784.6,-201976.5
+7/18/2023 23:00,17192898.67,3597.512,39.46699608,251.0077,0.379446642,6193.316058,2998.102917,1177.31795,77862.12183,1382.754267,0.379446642,1177.31795,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 0:00,17197072,3597.512,5.1019993,249.60966,0.10372095,253.69887,2614.2563,1156.3853,1162.5522,1355.1061,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 1:00,17200000,3597.512,280.2315,351.7925,57.802757,33622.77,4845.7056,1210.3481,461359.97,2538.0547,57.802757,1210.3481,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 2:00,17202226,3597.512,142.6593182,300.675515,28.95323898,16886.82733,3109.9079,614.004892,230794.8445,1946.57655,28.95323898,614.004892,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 3:00,17204452,3597.512,5.0871363,249.55853,0.10372095,150.88466,1374.1102,17.661684,229.71895,1355.0984,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 4:00,17208079,3597.512,5.078779,249.53603,0.10372095,178.198715,1997.4241,587.023492,743.216225,1355.1313,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 5:00,17211706,3597.512,5.0704217,249.51353,0.10372095,205.51277,2620.738,1156.3853,1256.7135,1355.1642,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 6:00,17215594.5,3597.512,22.28125739,254.5867775,4.781207704,3180.116706,2811.882475,1166.613825,39598.65154,1365.722708,4.781207704,1166.613825,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 7:00,17219483,3597.512,39.49209308,259.660025,9.458694458,6154.720642,3003.02695,1176.84235,77940.58958,1376.281217,9.458694458,1176.84235,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 8:00,17223371.5,3597.512,56.70292878,264.7332725,14.13618121,9129.324578,3194.171425,1187.070875,116282.5276,1386.839725,14.13618121,1187.070875,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 9:00,17227260,3597.512,73.91376447,269.80652,18.81366797,12103.92851,3385.3159,1197.2994,154624.4657,1397.398233,18.81366797,1197.2994,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 10:00,17231148.5,3597.512,91.12460016,274.8797675,23.49115472,15078.53245,3576.460375,1207.527925,192966.4037,1407.956742,23.49115472,1207.527925,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 11:00,17235037,3597.512,108.3354359,279.953015,28.16864147,18053.13639,3767.60485,1217.75645,231308.3417,1418.51525,28.16864147,1217.75645,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 12:00,17238925.5,3597.512,125.5462715,285.0262625,32.84612823,21027.74032,3958.749325,1227.984975,269650.2798,1429.073758,32.84612823,1227.984975,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 13:00,17242814,3597.512,142.7571072,290.09951,37.52361498,24002.34426,4149.8938,1238.2135,307992.2178,1439.632267,37.52361498,1238.2135,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 14:00,17246702.5,3597.512,159.9679429,295.1727575,42.20110174,26976.94819,4341.038275,1248.442025,346334.1559,1450.190775,42.20110174,1248.442025,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 15:00,17250591,3597.512,177.1787786,300.246005,46.87858849,29951.55213,4532.18275,1258.67055,384676.0939,1460.749283,46.87858849,1258.67055,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 16:00,17254479.5,3597.512,194.3896143,305.3192525,51.55607525,32926.15606,4723.327225,1268.899075,423018.032,1471.307792,51.55607525,1268.899075,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 17:00,17258368,3597.512,211.60045,310.3925,56.233562,35900.76,4914.4717,1279.1276,461359.97,1481.8663,56.233562,1279.1276,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 18:00,17258428,3597.512,211.58382,257.2194,1.75279,35918.934,4915.128,1279.784,461359.97,1515.3224,1.75279,1279.784,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 19:00,17262602.67,3597.512,177.1717166,255.76209,1.477945158,29973.74811,4534.045017,1259.21755,384696.242,1485.86785,1.477945158,1259.21755,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 20:00,17266777.33,3597.512,142.7596131,254.30478,1.203100317,24028.56222,4152.962033,1238.6511,308032.5141,1456.4133,1.203100317,1238.6511,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 21:00,17270952,3597.512,108.3475097,252.84747,0.928255475,18083.37633,3771.87905,1218.08465,231368.7861,1426.95875,0.928255475,1218.08465,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 22:00,17275126.67,3597.512,73.93540627,251.39016,0.653410633,12138.19044,3390.796067,1197.5182,154705.0581,1397.5042,0.653410633,1197.5182,130901.3,73179.4,-15784.6,-201976.5
+7/19/2023 23:00,17279301.33,3597.512,39.52330283,249.93285,0.378565792,6193.00455,3009.713083,1176.95175,78041.33017,1368.04965,0.378565792,1176.95175,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 0:00,17283476,3597.512,5.1111994,248.47554,0.10372095,247.81866,2628.6301,1156.3853,1377.6022,1338.5951,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 1:00,17285954.67,3597.512,5.106165733,248.4650967,0.10372095,215.46836,1776.570193,775.8703833,918.4028425,1338.592367,0.10372095,775.8703833,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 2:00,17288433.33,3597.512,5.101132067,248.4546533,0.10372095,183.11806,924.5102867,395.3554667,459.203485,1338.589633,0.10372095,395.3554667,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 3:00,17290912,3597.512,5.0960984,248.44421,0.10372095,150.76776,72.45038,14.84055,0.004127496,1338.5869,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 4:00,17294518,3597.512,5.0745244,133.84673,0.103568432,187.06816,1479.84724,585.612925,4990.347564,669.2937192,0.103568432,585.612925,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 5:00,17298124,3597.512,5.0529504,19.24925,0.103415914,223.36856,2887.2441,1156.3853,9980.691,0.000538401,0.103415914,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 6:00,17302010.83,3597.512,22.30614203,43.46489583,4.780347338,3195.95243,3055.966758,1166.401742,47595.63092,123.0440352,4.780347338,1166.401742,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 7:00,17305897.67,3597.512,39.55933367,67.68054167,9.457278762,6168.5363,3224.689417,1176.418183,85210.57083,246.087532,9.457278762,1176.418183,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 8:00,17309784.5,3597.512,56.8125253,91.8961875,14.13421019,9141.12017,3393.412075,1186.434625,122825.5108,369.1310288,14.13421019,1186.434625,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 9:00,17313671.33,3597.512,74.06571693,116.1118333,18.81114161,12113.70404,3562.134733,1196.451067,160440.4507,492.1745256,18.81114161,1196.451067,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 10:00,17317558.17,3597.512,91.31890857,140.3274792,23.48807303,15086.28791,3730.857392,1206.467508,198055.3906,615.2180224,23.48807303,1206.467508,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 11:00,17321445,3597.512,108.5721002,164.543125,28.16500446,18058.87178,3899.58005,1216.48395,235670.3305,738.2615192,28.16500446,1216.48395,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 12:00,17325331.83,3597.512,125.8252918,188.7587708,32.84193588,21031.45565,4068.302708,1226.500392,273285.2704,861.305016,32.84193588,1226.500392,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 13:00,17329218.67,3597.512,143.0784835,212.9744167,37.5188673,24004.03952,4237.025367,1236.516833,310900.2103,984.3485128,37.5188673,1236.516833,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 14:00,17333105.5,3597.512,160.3316751,237.1900625,42.19579873,26976.62339,4405.748025,1246.533275,348515.1502,1107.39201,42.19579873,1246.533275,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 15:00,17336992.33,3597.512,177.5848667,261.4057083,46.87273015,29949.20726,4574.470683,1256.549717,386130.0902,1230.435506,46.87273015,1256.549717,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 16:00,17340879.17,3597.512,194.8380584,285.6213542,51.54966158,32921.79113,4743.193342,1266.566158,423745.0301,1353.479003,51.54966158,1266.566158,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 17:00,17344766,3597.512,212.09125,309.837,56.226593,35894.375,4911.916,1276.5826,461359.97,1476.5225,56.226593,1276.5826,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 18:00,17344826,3597.512,212.0757,256.6282,1.7452824,35913.31,4912.596,1277.2625,461359.97,1509.0552,1.7452824,1277.2625,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 19:00,17349001,3597.512,177.579557,255.1255583,1.471688825,29968.72155,4530.354217,1257.1163,384672.216,1478.31235,1.471688825,1257.1163,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 20:00,17353176,3597.512,143.083414,253.6229167,1.19809525,24024.13309,4148.112433,1236.9701,307984.4619,1447.5695,1.19809525,1236.9701,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 21:00,17357351,3597.512,108.587271,252.120275,0.924501675,18079.54464,3765.87065,1216.8239,231296.7079,1416.82665,0.924501675,1216.8239,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 22:00,17361526,3597.512,74.091128,250.6176333,0.6509081,12134.95619,3383.628867,1196.6777,154608.9539,1386.0838,0.6509081,1196.6777,130901.3,73179.4,-15784.6,-201976.5
+7/20/2023 23:00,17365701,3597.512,39.594985,249.1149917,0.377314525,6190.367733,3001.387083,1176.5315,77921.19983,1355.34095,0.377314525,1176.5315,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 0:00,17369876,3597.512,5.098842,247.61235,0.10372095,245.77928,2619.1453,1156.3853,1233.4458,1324.5981,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 1:00,17372334.67,3597.512,5.093598433,247.60531,0.10372095,214.0923967,2205.826367,776.8107613,907.7294933,1324.595267,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 2:00,17374793.33,3597.512,5.088354867,247.59827,0.10372095,182.4055133,1792.507433,397.2362227,582.0131867,1324.592433,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 3:00,17377252,3597.512,5.0831113,247.59123,0.10372095,150.71863,1379.1885,17.661684,256.29688,1324.5896,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 4:00,17380855,3597.512,5.07438305,247.58258,0.10372095,156.436915,2161.82645,587.023492,6754.83844,1324.6195,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 5:00,17384458,3597.512,5.0656548,247.57393,0.10372095,162.1552,2944.4644,1156.3853,13253.38,1324.6494,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 6:00,17388343.5,3597.512,53.2824186,248.1413575,0.436533813,9083.5064,3436.686425,1186.79385,125280.0275,1329.875725,0.436533813,1186.79385,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 7:00,17392229,3597.512,101.4991824,248.708785,0.769346675,18004.8576,3928.90845,1217.2024,237306.675,1335.10205,0.769346675,1217.2024,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 8:00,17396114.5,3597.512,149.7159462,249.2762125,1.102159538,26926.2088,4421.130475,1247.61095,349333.3225,1340.328375,1.102159538,1247.61095,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 9:00,17400000,3597.512,197.93271,249.84364,1.4349724,35847.56,4913.3525,1278.0195,461359.97,1345.5547,1.4349724,1278.0195,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 10:00,17403897.25,3597.512,199.5140088,251.0144875,1.475588863,35836.3415,4913.227813,1277.89605,461359.97,1374.982375,1.475588863,1277.89605,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 11:00,17407794.5,3597.512,201.0953075,252.185335,1.516205325,35825.123,4913.103125,1277.7726,461359.97,1404.41005,1.516205325,1277.7726,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 12:00,17411691.75,3597.512,202.6766063,253.3561825,1.556821787,35813.9045,4912.978438,1277.64915,461359.97,1433.837725,1.556821787,1277.64915,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 13:00,17415589,3597.512,204.257905,254.52703,1.59743825,35802.686,4912.85375,1277.5257,461359.97,1463.2654,1.59743825,1277.5257,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 14:00,17419486.25,3597.512,205.8392038,255.6978775,1.638054713,35791.4675,4912.729063,1277.40225,461359.97,1492.693075,1.638054713,1277.40225,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 15:00,17423383.5,3597.512,207.4205025,256.868725,1.678671175,35780.249,4912.604375,1277.2788,461359.97,1522.12075,1.678671175,1277.2788,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 16:00,17427280.75,3597.512,209.0018013,258.0395725,1.719287638,35769.0305,4912.479687,1277.15535,461359.97,1551.548425,1.719287638,1277.15535,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 17:00,17431178,3597.512,210.5831,259.21042,1.7599041,35757.812,4912.355,1277.0319,461359.97,1580.9761,1.7599041,1277.0319,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 18:00,17434762.86,3597.512,181.2231606,258.0220957,1.523306507,30685.01516,4583.808886,1259.796671,395614.0743,1556.851929,1.523306507,1259.796671,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 19:00,17438347.71,3597.512,151.8632211,256.8337714,1.286708914,25612.21833,4255.262771,1242.561443,329868.1785,1532.727757,1.286708914,1242.561443,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 20:00,17441932.57,3597.512,122.5032817,255.6454471,1.050111321,20539.42149,3926.716657,1225.326214,264122.2828,1508.603586,1.050111321,1225.326214,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 21:00,17445517.43,3597.512,93.14334229,254.4571229,0.813513729,15466.62466,3598.170543,1208.090986,198376.387,1484.479414,0.813513729,1208.090986,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 22:00,17449102.29,3597.512,63.78340286,253.2687986,0.576916136,10393.82782,3269.624429,1190.855757,132630.4913,1460.355243,0.576916136,1190.855757,130901.3,73179.4,-15784.6,-201976.5
+7/21/2023 23:00,17452687.14,3597.512,34.42346343,252.0804743,0.340318543,5321.030986,2941.078314,1173.620529,66884.59554,1436.231071,0.340318543,1173.620529,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 0:00,17456272,3597.512,5.063524,250.89215,0.10372095,248.23415,2612.5322,1156.3853,1138.6998,1412.1069,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 1:00,17458732,3597.512,5.0583005,250.8870033,0.10372095,214.38306,2199.6701,776.8107613,835.4824633,1412.104433,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 2:00,17461192,3597.512,5.053077,250.8818567,0.10372095,180.53197,1786.808,397.2362227,532.2651267,1412.101967,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 3:00,17463652,3597.512,5.0478535,250.87671,0.10372095,146.68088,1373.9459,17.661684,229.04779,1412.0995,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 4:00,17467286.8,3597.512,5.05110271,250.879876,0.10372095,3282.309692,1627.33864,130.0506456,17615.53301,1412.10848,0.10372095,130.0506456,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 5:00,17470921.6,3597.512,5.05435192,250.883042,0.10372095,6417.938504,1880.73138,242.4396072,35002.01823,1412.11746,0.10372095,242.4396072,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 6:00,17474556.4,3597.512,5.05760113,250.886208,0.10372095,9553.567316,2134.12412,354.8285688,52388.50345,1412.12644,0.10372095,354.8285688,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 7:00,17478191.2,3597.512,5.06085034,250.889374,0.10372095,12689.19613,2387.51686,467.2175304,69774.98867,1412.13542,0.10372095,467.2175304,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 8:00,17481826,3597.512,5.06409955,250.89254,0.10372095,15824.82494,2640.9096,579.606492,87161.47389,1412.1444,0.10372095,579.606492,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 9:00,17485460.8,3597.512,5.06734876,250.895706,0.10372095,18960.45375,2894.30234,691.9954536,104547.9591,1412.15338,0.10372095,691.9954536,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 10:00,17489095.6,3597.512,5.07059797,250.898872,0.10372095,22096.08256,3147.69508,804.3844152,121934.4443,1412.16236,0.10372095,804.3844152,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 11:00,17492730.4,3597.512,5.07384718,250.902038,0.10372095,25231.71138,3401.08782,916.7733768,139320.9296,1412.17134,0.10372095,916.7733768,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 12:00,17496365.2,3597.512,5.07709639,250.905204,0.10372095,28367.34019,3654.48056,1029.162338,156707.4148,1412.18032,0.10372095,1029.162338,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 13:00,17500000,3597.512,5.0803456,250.90837,0.10372095,31502.969,3907.8733,1141.5513,174093.9,1412.1893,0.10372095,1141.5513,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 14:00,17503877.45,3597.512,5.079315091,250.8925845,0.10372095,28665.31828,3789.512436,1142.899845,158362.4842,1412.181091,0.10372095,1142.899845,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 15:00,17507754.91,3597.512,5.078284582,250.8767991,0.10372095,25827.66756,3671.151573,1144.248391,142631.0685,1412.172882,0.10372095,1144.248391,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 16:00,17511632.36,3597.512,5.077254073,250.8610136,0.10372095,22990.01684,3552.790709,1145.596936,126899.6527,1412.164673,0.10372095,1145.596936,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 17:00,17515509.82,3597.512,5.076223564,250.8452282,0.10372095,20152.36612,3434.429845,1146.945482,111168.237,1412.156464,0.10372095,1146.945482,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 18:00,17519387.27,3597.512,5.075193055,250.8294427,0.10372095,17314.7154,3316.068982,1148.294027,95436.82123,1412.148255,0.10372095,1148.294027,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 19:00,17523264.73,3597.512,5.074162545,250.8136573,0.10372095,14477.06467,3197.708118,1149.642573,79705.40547,1412.140045,0.10372095,1149.642573,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 20:00,17527142.18,3597.512,5.073132036,250.7978718,0.10372095,11639.41395,3079.347255,1150.991118,63973.98972,1412.131836,0.10372095,1150.991118,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 21:00,17531019.64,3597.512,5.072101527,250.7820864,0.10372095,8801.763233,2960.986391,1152.339664,48242.57396,1412.123627,0.10372095,1152.339664,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 22:00,17534897.09,3597.512,5.071071018,250.7663009,0.10372095,5964.112512,2842.625527,1153.688209,32511.15821,1412.115418,0.10372095,1153.688209,130901.3,73179.4,-15784.6,-201976.5
+7/22/2023 23:00,17538774.55,3597.512,5.070040509,250.7505155,0.10372095,3126.461791,2724.264664,1155.036755,16779.74245,1412.107209,0.10372095,1155.036755,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 0:00,17542652,3597.512,5.06901,250.73473,0.10372095,288.81107,2605.9038,1156.3853,1048.3267,1412.099,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 1:00,17545122.67,3597.512,5.0633621,250.7308333,0.10372095,242.8832033,2192.002867,776.8107613,759.89286,1412.099,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 2:00,17547593.33,3597.512,5.0577142,250.7269367,0.10372095,196.9553367,1778.101933,397.2362227,471.45902,1412.099,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 3:00,17550064,3597.512,5.0520663,250.72304,0.10372095,151.02747,1364.201,17.661684,183.02518,1412.099,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 4:00,17553905.23,3597.512,5.052060892,250.7230469,0.10372095,151.0286723,1364.222754,17.661684,183.1215585,1412.099,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 5:00,17557746.46,3597.512,5.052055485,250.7230538,0.10372095,151.0298746,1364.244508,17.661684,183.2179369,1412.099,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 6:00,17561587.69,3597.512,5.052050077,250.7230608,0.10372095,151.0310769,1364.266262,17.661684,183.3143154,1412.099,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 7:00,17565428.92,3597.512,5.052044669,250.7230677,0.10372095,151.0322792,1364.288015,17.661684,183.4106938,1412.099,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 8:00,17569270.15,3597.512,5.052039262,250.7230746,0.10372095,151.0334815,1364.309769,17.661684,183.5070723,1412.099,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 9:00,17573111.38,3597.512,5.052033854,250.7230815,0.10372095,151.0346838,1364.331523,17.661684,183.6034508,1412.099,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 10:00,17576952.62,3597.512,5.052028446,250.7230885,0.10372095,151.0358862,1364.353277,17.661684,183.6998292,1412.099,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 11:00,17580793.85,3597.512,5.052023038,250.7230954,0.10372095,151.0370885,1364.375031,17.661684,183.7962077,1412.099,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 12:00,17584635.08,3597.512,5.052017631,250.7231023,0.10372095,151.0382908,1364.396785,17.661684,183.8925862,1412.099,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 13:00,17588476.31,3597.512,5.052012223,250.7231092,0.10372095,151.0394931,1364.418538,17.661684,183.9889646,1412.099,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 14:00,17592317.54,3597.512,5.052006815,250.7231162,0.10372095,151.0406954,1364.440292,17.661684,184.0853431,1412.099,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 15:00,17596158.77,3597.512,5.052001408,250.7231231,0.10372095,151.0418977,1364.462046,17.661684,184.1817215,1412.099,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 16:00,17600000,3597.512,5.051996,250.72313,0.10372095,151.0431,1364.4838,17.661684,184.2781,1412.099,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 17:00,17603628.5,3597.512,5.087634725,250.709195,0.10372095,174.4904975,1504.3939,160.002136,174.8790388,1412.099,0.10372095,160.002136,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 18:00,17607257,3597.512,5.12327345,250.69526,0.10372095,197.937895,1644.304,302.342588,165.4799775,1412.099,0.10372095,302.342588,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 19:00,17610885.5,3597.512,5.158912175,250.681325,0.10372095,221.3852925,1784.2141,444.68304,156.0809163,1412.099,0.10372095,444.68304,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 20:00,17614514,3597.512,5.1945509,250.66739,0.10372095,244.83269,1924.1242,587.023492,146.681855,1412.099,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 21:00,17618142.5,3597.512,5.230189625,250.653455,0.10372095,268.2800875,2064.0343,729.363944,137.2827938,1412.099,0.10372095,729.363944,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 22:00,17621771,3597.512,5.26582835,250.63952,0.10372095,291.727485,2203.9444,871.704396,127.8837325,1412.099,0.10372095,871.704396,130901.3,73179.4,-15784.6,-201976.5
+7/23/2023 23:00,17625399.5,3597.512,5.301467075,250.625585,0.10372095,315.1748825,2343.8545,1014.044848,118.4846713,1412.099,0.10372095,1014.044848,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 0:00,17629028,3597.512,5.3371058,250.61165,0.10372095,338.62228,2483.7646,1156.3853,109.08561,1412.099,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 1:00,17631526,3597.512,5.3314582,250.60849,0.10372095,276.4007633,1670.283168,775.8703833,72.72398901,1412.099,0.10372095,775.8703833,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 2:00,17634024,3597.512,5.3258106,250.60533,0.10372095,214.1792467,856.8017367,395.3554667,36.36236801,1412.099,0.10372095,395.3554667,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 3:00,17636522,3597.512,5.320163,250.60217,0.10372095,151.95773,43.320305,14.84055,0.000747021,1412.099,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 4:00,17640112.5,3597.512,93.98773475,343.63606,13.29918146,10229.7883,736.7344787,301.3573625,1615.565385,1412.2485,13.29918146,301.3573625,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 5:00,17643703,3597.512,182.6553065,436.66995,26.49464197,20307.61886,1430.148652,587.874175,3231.130024,1412.398,26.49464197,587.874175,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 6:00,17647293.5,3597.512,271.3228783,529.70384,39.69010249,30385.44943,2123.562826,874.3909875,4846.694662,1412.5475,39.69010249,874.3909875,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 7:00,17650884,3597.512,359.99045,622.73773,52.885563,40463.28,2816.977,1160.9078,6462.2593,1412.697,52.885563,1160.9078,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 8:00,17655038,3597.512,259.42816,298.6517,56.524963,38169.195,2616.723,626.8423,29783.014,2.6884558,56.524963,626.8423,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 9:00,17658963.33,3597.512,254.2691011,306.9061667,56.48880433,37912.69289,2871.263222,698.5588,77736.00911,159.4489052,56.48880433,698.5588,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 10:00,17662888.67,3597.512,249.1100422,315.1606333,56.45264567,37656.19078,3125.803444,770.2753,125689.0042,316.2093545,56.45264567,770.2753,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 11:00,17666814,3597.512,243.9509833,323.4151,56.416487,37399.68867,3380.343667,841.9918,173641.9993,472.9698039,56.416487,841.9918,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 12:00,17670739.33,3597.512,238.7919244,331.6695667,56.38032833,37143.18656,3634.883889,913.7083,221594.9944,629.7302532,56.38032833,913.7083,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 13:00,17674664.67,3597.512,233.6328656,339.9240333,56.34416967,36886.68444,3889.424111,985.4248,269547.9896,786.4907026,56.34416967,985.4248,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 14:00,17678590,3597.512,228.4738067,348.1785,56.308011,36630.18233,4143.964333,1057.1413,317500.9847,943.2511519,56.308011,1057.1413,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 15:00,17682515.33,3597.512,223.3147478,356.4329667,56.27185233,36373.68022,4398.504556,1128.8578,365453.9798,1100.011601,56.27185233,1128.8578,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 16:00,17686440.67,3597.512,218.1556889,364.6874333,56.23569367,36117.17811,4653.044778,1200.5743,413406.9749,1256.772051,56.23569367,1200.5743,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 17:00,17690366,3597.512,212.99663,372.9419,56.199535,35860.676,4907.585,1272.2908,461359.97,1413.5325,56.199535,1272.2908,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 18:00,17690426,3597.512,212.9803,319.72858,1.7159818,35878.156,4908.2466,1272.9523,461359.97,1447.1697,1.7159818,1272.9523,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 19:00,17695213,3597.512,279.1494,471.25269,27.0734944,38037.0915,3859.75195,1251.518,232589.784,1429.9549,27.0734944,1251.518,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 20:00,17700000,3597.512,345.3185,622.7768,52.431007,40196.027,2811.2573,1230.0837,3819.598,1412.7401,52.431007,1230.0837,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 21:00,17703859.5,3597.512,260.2871947,540.542725,39.34918549,30225.79827,2742.8153,1211.6591,2958.515418,1371.1044,39.34918549,1211.6591,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 22:00,17707719,3597.512,175.2558895,458.30865,26.26736398,20255.56953,2674.3733,1193.2345,2097.432835,1329.4687,26.26736398,1193.2345,130901.3,73179.4,-15784.6,-201976.5
+7/24/2023 23:00,17711578.5,3597.512,90.22458425,376.074575,13.18554246,10285.3408,2605.9313,1174.8099,1236.350253,1287.833,13.18554246,1174.8099,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 0:00,17715438,3597.512,5.193279,293.8405,0.10372095,315.11206,2537.4893,1156.3853,375.26767,1246.1973,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 1:00,17717930.67,3597.512,5.1874871,292.8394667,0.10372095,260.46991,1716.124937,775.8703833,250.1798781,1246.193967,0.10372095,775.8703833,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 2:00,17720423.33,3597.512,5.1816952,291.8384333,0.10372095,205.82776,894.7605733,395.3554667,125.0920863,1246.190633,0.10372095,395.3554667,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 3:00,17722916,3597.512,5.1759033,290.8374,0.10372095,151.18561,73.39621,14.84055,0.004294449,1246.1873,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 4:00,17726538,3597.512,65.84186998,290.31816,0.702880113,10266.78921,692.1842325,252.6535375,964.5168958,1246.205475,0.702880113,252.6535375,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 5:00,17730160,3597.512,126.5078367,289.79892,1.302039275,20382.39281,1310.972255,490.466525,1929.029497,1246.22365,1.302039275,490.466525,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 6:00,17733782,3597.512,187.1738033,289.27968,1.901198438,30497.9964,1929.760278,728.2795125,2893.542099,1246.241825,1.901198438,728.2795125,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 7:00,17737404,3597.512,247.83977,288.76044,2.5003576,40613.6,2548.5483,966.0925,3858.0547,1246.26,2.5003576,966.0925,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 8:00,17742198,3597.512,248.81758,179.70406,56.628235,36884.6,2408.9285,419.46005,29741.172,0.08760675,56.628235,419.46005,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 9:00,17746040.22,3597.512,244.8178956,191.9771022,50.5271231,36760.73444,2686.563722,514.2267667,77698.81622,164.2296616,50.5271231,514.2267667,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 10:00,17749882.44,3597.512,240.8182111,204.2501444,44.4260112,36636.86889,2964.198944,608.9934833,125656.4604,328.3717164,44.4260112,608.9934833,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 11:00,17753724.67,3597.512,236.8185267,216.5231867,38.3248993,36513.00333,3241.834167,703.7602,173614.1047,492.5137712,38.3248993,703.7602,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 12:00,17757566.89,3597.512,232.8188422,228.7962289,32.2237874,36389.13778,3519.469389,798.5269167,221571.7489,656.655826,32.2237874,798.5269167,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 13:00,17761409.11,3597.512,228.8191578,241.0692711,26.1226755,36265.27222,3797.104611,893.2936333,269529.3931,820.7978808,26.1226755,893.2936333,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 14:00,17765251.33,3597.512,224.8194733,253.3423133,20.0215636,36141.40667,4074.739833,988.06035,317487.0373,984.9399356,20.0215636,988.06035,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 15:00,17769093.56,3597.512,220.8197889,265.6153556,13.9204517,36017.54111,4352.375056,1082.827067,365444.6816,1149.08199,13.9204517,1082.827067,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 16:00,17772935.78,3597.512,216.8201044,277.8883978,7.8193398,35893.67556,4630.010278,1177.593783,413402.3258,1313.224045,7.8193398,1177.593783,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 17:00,17776778,3597.512,212.82042,290.16144,1.7182279,35769.81,4907.6455,1272.3605,461359.97,1477.3661,1.7182279,1272.3605,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 18:00,17780095.43,3597.512,220.00722,284.1872029,9.593075343,35702.55143,4748.319929,1262.157357,414172.7171,1283.532517,9.593075343,1262.157357,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 19:00,17783412.86,3597.512,227.19402,278.2129657,17.46792279,35635.29286,4588.994357,1251.954214,366985.4643,1089.698934,17.46792279,1251.954214,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 20:00,17786730.29,3597.512,234.38082,272.2387286,25.34277023,35568.03429,4429.668786,1241.751071,319798.2114,895.8653514,25.34277023,1241.751071,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 21:00,17790047.71,3597.512,241.56762,266.2644914,33.21761767,35500.77571,4270.343214,1231.547929,272610.9586,702.0317686,33.21761767,1231.547929,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 22:00,17793365.14,3597.512,248.75442,260.2902543,41.09246511,35433.51714,4111.017643,1221.344786,225423.7057,508.1981857,41.09246511,1221.344786,130901.3,73179.4,-15784.6,-201976.5
+7/25/2023 23:00,17796682.57,3597.512,255.94122,254.3160171,48.96731256,35366.25857,3951.692071,1211.141643,178236.4529,314.3646029,48.96731256,1211.141643,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 0:00,17800000,3597.512,263.12802,248.34178,56.84216,35299,3792.3665,1200.9385,131049.2,120.53102,56.84216,1200.9385,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 1:00,17803084.67,3597.512,177.1328905,258.0327533,37.92934698,23582.00657,2979.593333,806.5128947,87413.2302,504.8394467,37.92934698,806.5128947,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 2:00,17806169.33,3597.512,91.137761,267.7237267,19.01653397,11865.01314,2166.820167,412.0872893,43777.26039,889.1478733,19.01653397,412.0872893,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 3:00,17809254,3597.512,5.1426315,277.4147,0.10372095,148.01971,1354.047,17.661684,141.29059,1273.4563,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 4:00,17812910,3597.512,5.13391425,277.17495,0.10372095,218.95013,1980.061,587.023492,596.147695,1273.49105,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 5:00,17816566,3597.512,5.125197,276.9352,0.10372095,289.88055,2606.075,1156.3853,1051.0048,1273.5258,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 6:00,17820449.83,3597.512,22.44784142,277.2480267,0.238020113,3250.108254,2797.713667,1165.891758,39410.08523,1282.269033,0.238020113,1165.891758,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 7:00,17824333.67,3597.512,39.77048583,277.5608533,0.372319275,6210.335958,2989.352333,1175.398217,77769.16567,1291.012267,0.372319275,1175.398217,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 8:00,17828217.5,3597.512,57.09313025,277.87368,0.506618438,9170.563662,3180.991,1184.904675,116128.2461,1299.7555,0.506618438,1184.904675,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 9:00,17832101.33,3597.512,74.41577467,278.1865067,0.6409176,12130.79137,3372.629667,1194.411133,154487.3265,1308.498733,0.6409176,1194.411133,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 10:00,17835985.17,3597.512,91.73841908,278.4993333,0.775216762,15091.01907,3564.268333,1203.917592,192846.407,1317.241967,0.775216762,1203.917592,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 11:00,17839869,3597.512,109.0610635,278.81216,0.909515925,18051.24678,3755.907,1213.42405,231205.4874,1325.9852,0.909515925,1213.42405,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 12:00,17843752.83,3597.512,126.3837079,279.1249867,1.043815087,21011.47448,3947.545667,1222.930508,269564.5678,1334.728433,1.043815087,1222.930508,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 13:00,17847636.67,3597.512,143.7063523,279.4378133,1.17811425,23971.70218,4139.184333,1232.436967,307923.6483,1343.471667,1.17811425,1232.436967,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 14:00,17851520.5,3597.512,161.0289967,279.75064,1.312413413,26931.92989,4330.823,1241.943425,346282.7287,1352.2149,1.312413413,1241.943425,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 15:00,17855404.33,3597.512,178.3516412,280.0634667,1.446712575,29892.15759,4522.461667,1251.449883,384641.8091,1360.958133,1.446712575,1251.449883,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 16:00,17859288.17,3597.512,195.6742856,280.3762933,1.581011738,32852.3853,4714.100333,1260.956342,423000.8896,1369.701367,1.581011738,1260.956342,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 17:00,17863172,3597.512,212.99693,280.68912,1.7153109,35812.613,4905.739,1270.4628,461359.97,1378.4446,1.7153109,1270.4628,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 18:00,17866755.71,3597.512,183.3028677,279.19824,1.485083764,30735.14064,4572.282143,1254.166014,395544.8364,1349.842143,1.485083764,1254.166014,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 19:00,17870339.43,3597.512,153.6088054,277.70736,1.254856629,25657.66829,4238.825286,1237.869229,329729.7028,1321.239686,1.254856629,1237.869229,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 20:00,17873923.14,3597.512,123.9147431,276.21648,1.024629493,20580.19593,3905.368429,1221.572443,263914.5691,1292.637229,1.024629493,1221.572443,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 21:00,17877506.86,3597.512,94.22068086,274.7256,0.794402357,15502.72357,3571.911571,1205.275657,198099.4355,1264.034771,0.794402357,1205.275657,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 22:00,17881090.57,3597.512,64.52661857,273.23472,0.564175221,10425.25121,3238.454714,1188.978871,132284.3019,1235.432314,0.564175221,1188.978871,130901.3,73179.4,-15784.6,-201976.5
+7/26/2023 23:00,17884674.29,3597.512,34.83255629,271.74384,0.333948086,5347.778857,2904.997857,1172.682086,66469.16829,1206.829857,0.333948086,1172.682086,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 0:00,17888258,3597.512,5.138494,270.25296,0.10372095,270.3065,2571.541,1156.3853,654.03467,1178.2274,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 1:00,17890724,3597.512,5.132959,270.2012733,0.10372095,230.9429033,2160.764267,776.8107613,466.2720783,1178.2243,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 2:00,17893190,3597.512,5.127424,270.1495867,0.10372095,191.5793067,1749.987533,397.2362227,278.5094867,1178.2212,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 3:00,17895656,3597.512,5.121889,270.0979,0.10372095,152.21571,1339.2108,17.661684,90.746895,1178.2181,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 4:00,17900000,3597.512,230.45103,388.57428,56.60111,31349.82,4803.1973,1167.9202,461359.97,2817.7725,56.60111,1167.9202,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 5:00,17903468,3597.512,236.3195633,349.79562,38.56958297,34165.02833,4253.872533,1196.232467,314756.7763,2271.284367,38.56958297,1196.232467,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 6:00,17906936,3597.512,242.1880967,311.01696,20.53805593,36980.23667,3704.547767,1224.544733,168153.5827,1724.796233,20.53805593,1224.544733,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 7:00,17910404,3597.512,248.05663,272.2383,2.5065289,39795.445,3155.223,1252.857,21550.389,1178.3081,2.5065289,1252.857,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 8:00,17914319.8,3597.512,244.435206,278.660558,7.87668331,39379.7728,3330.1658,1254.50972,65531.3471,1205.55704,7.87668331,1254.50972,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 9:00,17918235.6,3597.512,240.813782,285.082816,13.24683772,38964.1006,3505.1086,1256.16244,109512.3052,1232.80598,13.24683772,1256.16244,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 10:00,17922151.4,3597.512,237.192358,291.505074,18.61699213,38548.4284,3680.0514,1257.81516,153493.2633,1260.05492,18.61699213,1257.81516,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 11:00,17926067.2,3597.512,233.570934,297.927332,23.98714654,38132.7562,3854.9942,1259.46788,197474.2214,1287.30386,23.98714654,1259.46788,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 12:00,17929983,3597.512,229.94951,304.34959,29.35730095,37717.084,4029.937,1261.1206,241455.1795,1314.5528,29.35730095,1261.1206,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 13:00,17933898.8,3597.512,226.328086,310.771848,34.72745536,37301.4118,4204.8798,1262.77332,285436.1376,1341.80174,34.72745536,1262.77332,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 14:00,17937814.6,3597.512,222.706662,317.194106,40.09760977,36885.7396,4379.8226,1264.42604,329417.0957,1369.05068,40.09760977,1264.42604,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 15:00,17941730.4,3597.512,219.085238,323.616364,45.46776418,36470.0674,4554.7654,1266.07876,373398.0538,1396.29962,45.46776418,1266.07876,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 16:00,17945646.2,3597.512,215.463814,330.038622,50.83791859,36054.3952,4729.7082,1267.73148,417379.0119,1423.54856,50.83791859,1267.73148,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 17:00,17949562,3597.512,211.84239,336.46088,56.208073,35638.723,4904.651,1269.3842,461359.97,1450.7975,56.208073,1269.3842,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 18:00,17949622,3597.512,211.82726,283.16516,1.7252451,35659.152,4905.33,1270.0634,461359.97,1481.0585,1.7252451,1270.0634,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 19:00,17953792.33,3597.512,177.3747053,281.6149783,1.454991075,29766.36005,4513.925917,1251.11705,384553.6598,1449.780967,1.454991075,1251.11705,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 20:00,17957962.67,3597.512,142.9221507,280.0647967,1.18473705,23873.56809,4122.521833,1232.1707,307747.3495,1418.503433,1.18473705,1232.1707,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 21:00,17962133,3597.512,108.469596,278.514615,0.914483025,17980.77614,3731.11775,1213.22435,230941.0393,1387.2259,0.914483025,1213.22435,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 22:00,17966303.33,3597.512,74.01704133,276.9644333,0.644229,12087.98418,3339.713667,1194.278,154134.7291,1355.948367,0.644229,1194.278,130901.3,73179.4,-15784.6,-201976.5
+7/27/2023 23:00,17970473.67,3597.512,39.56448667,275.4142517,0.373974975,6195.192225,2948.309583,1175.33165,77328.41883,1324.670833,0.373974975,1175.33165,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 0:00,17974644,3597.512,5.111932,273.86407,0.10372095,302.40027,2556.9055,1156.3853,522.1086,1293.3933,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 1:00,17977114.67,3597.512,5.106298,273.8464333,0.10372095,251.9552133,2147.246033,776.8107613,366.5649627,1293.390367,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 2:00,17979585.33,3597.512,5.100664,273.8287967,0.10372095,201.5101567,1737.586567,397.2362227,211.0213253,1293.387433,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 3:00,17982056,3597.512,5.09503,273.81116,0.10372095,151.0651,1327.9271,17.661684,55.477688,1293.3845,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 4:00,17985644.8,3597.512,46.154122,275.341268,0.42142066,7292.08888,2044.69468,269.4290272,92316.37615,1322.44346,0.42142066,269.4290272,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 5:00,17989233.6,3597.512,87.213214,276.871376,0.73912037,14433.11266,2761.46226,521.1963704,184577.2746,1351.50242,0.73912037,521.1963704,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 6:00,17992822.4,3597.512,128.272306,278.401484,1.05682008,21574.13644,3478.22984,772.9637136,276838.1731,1380.56138,1.05682008,772.9637136,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 7:00,17996411.2,3597.512,169.331398,279.931592,1.37451979,28715.16022,4194.99742,1024.731057,369099.0715,1409.62034,1.37451979,1024.731057,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 8:00,18000000,3597.512,210.39049,281.4617,1.6922195,35856.184,4911.765,1276.4984,461359.97,1438.6793,1.6922195,1276.4984,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 9:00,18003988.22,3597.512,211.2691456,275.8025867,7.742331778,35871.72522,4910.236222,1274.970544,461359.97,1290.086757,7.742331778,1274.970544,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 10:00,18007976.44,3597.512,212.1478011,270.1434733,13.79244406,35887.26644,4908.707444,1273.442689,461359.97,1141.494213,13.79244406,1273.442689,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 11:00,18011964.67,3597.512,213.0264567,264.48436,19.84255633,35902.80767,4907.178667,1271.914833,461359.97,992.90167,19.84255633,1271.914833,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 12:00,18015952.89,3597.512,213.9051122,258.8252467,25.89266861,35918.34889,4905.649889,1270.386978,461359.97,844.3091267,25.89266861,1270.386978,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 13:00,18019941.11,3597.512,214.7837678,253.1661333,31.94278089,35933.89011,4904.121111,1268.859122,461359.97,695.7165833,31.94278089,1268.859122,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 14:00,18023929.33,3597.512,215.6624233,247.50702,37.99289317,35949.43133,4902.592333,1267.331267,461359.97,547.12404,37.99289317,1267.331267,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 15:00,18027917.56,3597.512,216.5410789,241.8479067,44.04300544,35964.97256,4901.063556,1265.803411,461359.97,398.5314967,44.04300544,1265.803411,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 16:00,18031905.78,3597.512,217.4197344,236.1887933,50.09311772,35980.51378,4899.534778,1264.275556,461359.97,249.9389533,50.09311772,1264.275556,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 17:00,18035894,3597.512,218.29839,230.52968,56.14323,35996.055,4898.006,1262.7477,461359.97,101.34641,56.14323,1262.7477,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 18:00,18039488.86,3597.512,187.8665912,221.0899243,48.13758585,30893.42237,4561.787429,1247.553071,395512.0856,96.90037286,48.13758585,1247.553071,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 19:00,18043083.71,3597.512,157.4347924,211.6501686,40.1319417,25790.78975,4225.568857,1232.358443,329664.2012,92.45433571,40.1319417,1232.358443,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 20:00,18046678.57,3597.512,127.0029936,202.2104129,32.12629755,20688.15712,3889.350286,1217.163814,263816.3169,88.00829857,32.12629755,1217.163814,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 21:00,18050273.43,3597.512,96.57119474,192.7706571,24.1206534,15585.5245,3553.131714,1201.969186,197968.4325,83.56226143,24.1206534,1201.969186,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 22:00,18053868.29,3597.512,66.13939593,183.3309014,16.11500925,10482.89187,3216.913143,1186.774557,132120.5481,79.11622429,16.11500925,1186.774557,130901.3,73179.4,-15784.6,-201976.5
+7/28/2023 23:00,18057463.14,3597.512,35.70759711,173.8911457,8.1093651,5380.259246,2880.694571,1171.579929,66272.66371,74.67018714,8.1093651,1171.579929,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 0:00,18061058,3597.512,5.2757983,164.45139,0.10372095,277.62662,2544.476,1156.3853,424.77933,70.22415,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 1:00,18063524,3597.512,5.269089033,164.4436267,0.10372095,235.51641,2136.104667,776.8107613,294.4372247,70.2233,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 2:00,18065990,3597.512,5.262379767,164.4358633,0.10372095,193.4062,1727.733333,397.2362227,164.0951193,70.22245,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 3:00,18068456,3597.512,5.2556705,164.4281,0.10372095,151.29599,1319.362,17.661684,33.753014,70.2216,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 4:00,18072399,3597.512,5.640356062,164.442545,0.10372095,4506.160241,1732.787375,167.8119235,47037.04889,70.24132813,0.10372095,167.8119235,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 5:00,18076342,3597.512,6.025041625,164.45699,0.10372095,8861.024493,2146.21275,317.962163,94040.34476,70.26105625,0.10372095,317.962163,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 6:00,18080285,3597.512,6.409727188,164.471435,0.10372095,13215.88874,2559.638125,468.1124025,141043.6406,70.28078438,0.10372095,468.1124025,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 7:00,18084228,3597.512,6.79441275,164.48588,0.10372095,17570.753,2973.0635,618.262642,188046.9365,70.3005125,0.10372095,618.262642,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 8:00,18088171,3597.512,7.179098313,164.500325,0.10372095,21925.61725,3386.488875,768.4128815,235050.2324,70.32024063,0.10372095,768.4128815,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 9:00,18092114,3597.512,7.563783875,164.51477,0.10372095,26280.4815,3799.91425,918.563121,282053.5283,70.33996875,0.10372095,918.563121,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 10:00,18096057,3597.512,7.948469438,164.529215,0.10372095,30635.34575,4213.339625,1068.713361,329056.8241,70.35969688,0.10372095,1068.713361,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 11:00,18100000,3597.512,8.333155,164.54366,0.10372095,34990.21,4626.765,1218.8636,376060.12,70.379425,0.10372095,1218.8636,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 12:00,18103152.33,3597.512,7.833717217,164.5043217,0.10372095,34731.99167,4661.399167,1215.606267,390276.7617,70.35474083,0.10372095,1215.606267,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 13:00,18106304.67,3597.512,7.334279433,164.4649833,0.10372095,34473.77333,4696.033333,1212.348933,404493.4033,70.33005667,0.10372095,1212.348933,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 14:00,18109457,3597.512,6.83484165,164.425645,0.10372095,34215.555,4730.6675,1209.0916,418710.045,70.3053725,0.10372095,1209.0916,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 15:00,18112609.33,3597.512,6.335403867,164.3863067,0.10372095,33957.33667,4765.301667,1205.834267,432926.6867,70.28068833,0.10372095,1205.834267,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 16:00,18115761.67,3597.512,5.835966083,164.3469683,0.10372095,33699.11833,4799.935833,1202.576933,447143.3283,70.25600417,0.10372095,1202.576933,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 17:00,18118914,3597.512,5.3365283,164.30763,0.10372095,33440.9,4834.57,1199.3196,461359.97,70.23132,0.10372095,1199.3196,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 18:00,18125886,3597.512,5.311952,166.38588,54.829468,35725.332,4903.9917,1268.7424,461359.97,0.35524625,54.829468,1268.7424,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 19:00,18129482,3597.512,5.298208217,157.18529,45.70851016,29816.1578,4528.33745,1250.016217,384757.0715,0.343218012,45.70851016,1250.016217,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 20:00,18133078,3597.512,5.284464433,147.9847,36.58755232,23906.98359,4152.6832,1231.290033,308154.173,0.331189773,36.58755232,1231.290033,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 21:00,18136674,3597.512,5.27072065,138.78411,27.46659448,17997.80939,3777.02895,1212.56385,231551.2745,0.319161535,27.46659448,1212.56385,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 22:00,18140270,3597.512,5.256976867,129.58352,18.34563663,12088.63518,3401.3747,1193.837667,154948.376,0.307133297,18.34563663,1193.837667,130901.3,73179.4,-15784.6,-201976.5
+7/29/2023 23:00,18143866,3597.512,5.243233083,120.38293,9.224678792,6179.460975,3025.72045,1175.111483,78345.4775,0.295105058,9.224678792,1175.111483,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 0:00,18147462,3597.512,5.2294893,111.18234,0.10372095,270.28677,2650.0662,1156.3853,1742.579,0.28307682,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 1:00,18149928.67,3597.512,5.212946867,111.1743167,0.10372095,230.4585633,2234.072367,776.8107613,1294.55401,0.28251594,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 2:00,18152395.33,3597.512,5.196404433,111.1662933,0.10372095,190.6303567,1818.078533,397.2362227,846.52902,0.28195506,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 3:00,18154862,3597.512,5.179862,111.15827,0.10372095,150.80215,1402.0847,17.661684,398.50403,0.28139418,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 4:00,18158472.83,3597.512,5.19102,111.1523092,0.10372095,2778.775804,1685.041892,113.050577,38811.95953,0.281373913,0.10372095,113.050577,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 5:00,18162083.67,3597.512,5.202178,111.1463483,0.10372095,5406.749458,1967.999083,208.43947,77225.41503,0.281353645,0.10372095,208.43947,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 6:00,18165694.5,3597.512,5.213336,111.1403875,0.10372095,8034.723113,2250.956275,303.828363,115638.8705,0.281333378,0.10372095,303.828363,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 7:00,18169305.33,3597.512,5.224494,111.1344267,0.10372095,10662.69677,2533.913467,399.217256,154052.326,0.28131311,0.10372095,399.217256,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 8:00,18172916.17,3597.512,5.235652,111.1284658,0.10372095,13290.67042,2816.870658,494.606149,192465.7815,0.281292843,0.10372095,494.606149,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 9:00,18176527,3597.512,5.24681,111.122505,0.10372095,15918.64408,3099.82785,589.995042,230879.237,0.281272575,0.10372095,589.995042,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 10:00,18180137.83,3597.512,5.257968,111.1165442,0.10372095,18546.61773,3382.785042,685.383935,269292.6925,0.281252308,0.10372095,685.383935,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 11:00,18183748.67,3597.512,5.269126,111.1105833,0.10372095,21174.59138,3665.742233,780.772828,307706.148,0.28123204,0.10372095,780.772828,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 12:00,18187359.5,3597.512,5.280284,111.1046225,0.10372095,23802.56504,3948.699425,876.161721,346119.6035,0.281211773,0.10372095,876.161721,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 13:00,18190970.33,3597.512,5.291442,111.0986617,0.10372095,26430.53869,4231.656617,971.550614,384533.059,0.281191505,0.10372095,971.550614,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 14:00,18194581.17,3597.512,5.3026,111.0927008,0.10372095,29058.51235,4514.613808,1066.939507,422946.5145,0.281171238,0.10372095,1066.939507,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 15:00,18198192,3597.512,5.313758,111.08674,0.10372095,31686.486,4797.571,1162.3284,461359.97,0.28115097,0.10372095,1162.3284,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 16:00,18202521,3597.512,5.28107325,124.78725,13.78515771,32078.9855,4807.561425,1172.3192,461359.97,0.285120878,13.78515771,1172.3192,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 17:00,18206850,3597.512,5.2483885,138.48776,27.46659447,32471.485,4817.55185,1182.31,461359.97,0.289090785,27.46659447,1182.31,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 18:00,18211179,3597.512,5.21570375,152.18827,41.14803124,32863.9845,4827.542275,1192.3008,461359.97,0.293060693,41.14803124,1192.3008,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 19:00,18215508,3597.512,5.183019,165.88878,54.829468,33256.484,4837.5327,1202.2916,461359.97,0.2970306,54.829468,1202.2916,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 20:00,18219175.6,3597.512,5.2286556,154.581662,43.88431859,26665.19846,4373.37684,1193.11034,369138.0934,0.25693087,43.88431859,1193.11034,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 21:00,18222843.2,3597.512,5.2742922,143.274544,32.93916918,20073.91292,3909.22098,1183.92908,276916.2168,0.21683114,32.93916918,1183.92908,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 22:00,18226510.8,3597.512,5.3199288,131.967426,21.99401977,13482.62738,3445.06512,1174.74782,184694.3403,0.17673141,21.99401977,1174.74782,130901.3,73179.4,-15784.6,-201976.5
+7/30/2023 23:00,18230178.4,3597.512,5.3655654,120.660308,11.04887036,6891.34184,2980.90926,1165.56656,92472.46369,0.13663168,11.04887036,1165.56656,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 0:00,18233846,3597.512,5.411202,109.35319,0.10372095,300.0563,2516.7534,1156.3853,250.58711,0.09653195,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 1:00,18236316.67,3597.512,5.404494167,109.31515,0.10372095,250.5519833,2112.005067,776.8107613,170.124511,0.094145335,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 2:00,18238787.33,3597.512,5.397786333,109.27711,0.10372095,201.0476667,1707.256733,397.2362227,89.661912,0.091758721,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 3:00,18241258,3597.512,5.3910785,109.23907,0.10372095,151.54335,1302.5084,17.661684,9.199313,0.089372106,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 4:00,18244917,3597.512,5.36644245,109.39003,0.10372095,228.68261,1939.84955,587.023492,359.9866565,0.088215428,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 5:00,18248576,3597.512,5.3418064,109.54099,0.10372095,305.82187,2577.1907,1156.3853,710.774,0.08705875,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 6:00,18253697,3597.512,137.5495532,200.912945,45.53024548,19442.33494,2923.05885,1196.43085,17566.887,22.39793788,45.53024548,1196.43085,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 7:00,18258818,3597.512,269.7573,292.2849,90.95677,38578.848,3268.927,1236.4764,34423,44.708817,90.95677,1236.4764,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 8:00,18259718,3597.512,252.51291,260.73154,56.54271,38044.95,3339.392,1230.8892,43748.59,76.614334,56.54271,1230.8892,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 9:00,18263657.33,3597.512,247.9206167,272.2296444,56.50459056,37766.48422,3513.1482,1235.008633,90149.85444,231.5641413,56.50459056,1235.008633,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 10:00,18267596.67,3597.512,243.3283233,283.7277489,56.46647111,37488.01844,3686.9044,1239.128067,136551.1189,386.5139487,56.46647111,1239.128067,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 11:00,18271536,3597.512,238.73603,295.2258533,56.42835167,37209.55267,3860.6606,1243.2475,182952.3833,541.463756,56.42835167,1243.2475,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 12:00,18275475.33,3597.512,234.1437367,306.7239578,56.39023222,36931.08689,4034.4168,1247.366933,229353.6478,696.4135633,56.39023222,1247.366933,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 13:00,18279414.67,3597.512,229.5514433,318.2220622,56.35211278,36652.62111,4208.173,1251.486367,275754.9122,851.3633707,56.35211278,1251.486367,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 14:00,18283354,3597.512,224.95915,329.7201667,56.31399333,36374.15533,4381.9292,1255.6058,322156.1767,1006.313178,56.31399333,1255.6058,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 15:00,18287293.33,3597.512,220.3668567,341.2182711,56.27587389,36095.68956,4555.6854,1259.725233,368557.4411,1161.262985,56.27587389,1259.725233,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 16:00,18291232.67,3597.512,215.7745633,352.7163756,56.23775444,35817.22378,4729.4416,1263.844667,414958.7056,1316.212793,56.23775444,1263.844667,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 17:00,18295172,3597.512,211.18227,364.21448,56.199635,35538.758,4903.1978,1267.9641,461359.97,1471.1626,56.199635,1267.9641,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 18:00,18295232,3597.512,211.16516,311.2483,1.7160602,35556.09,4903.86,1268.6263,461359.97,1510.1992,1.7160602,1268.6263,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 19:00,18300000,3597.512,18.831957,227.19461,88.86165,13294.181,2554.547,1145.2169,599.4574,0.015983636,88.86165,1145.2169,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 20:00,18304051.6,3597.512,16.0973042,241.607748,71.11006419,10689.93906,2562.1138,1147.45058,655.31922,265.8314469,71.11006419,1147.45058,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 21:00,18308103.2,3597.512,13.3626514,256.020886,53.35847838,8085.69712,2569.6806,1149.68426,711.18104,531.6469102,53.35847838,1149.68426,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 22:00,18312154.8,3597.512,10.6279986,270.434024,35.60689257,5481.45518,2577.2474,1151.91794,767.04286,797.4623735,35.60689257,1151.91794,130901.3,73179.4,-15784.6,-201976.5
+7/31/2023 23:00,18316206.4,3597.512,7.8933458,284.847162,17.85530676,2877.21324,2584.8142,1154.15162,822.90468,1063.277837,17.85530676,1154.15162,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 0:00,18320258,3597.512,5.158693,299.2603,0.10372095,272.9713,2592.381,1156.3853,878.7665,1329.0933,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 1:00,18322724.67,3597.512,5.153498667,299.0414433,0.10372095,232.2730767,2180.235033,776.8107613,635.4596667,1329.090433,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 2:00,18325191.33,3597.512,5.148304333,298.8225867,0.10372095,191.5748533,1768.089067,397.2362227,392.1528333,1329.087567,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 3:00,18327658,3597.512,5.14311,298.60373,0.10372095,150.87663,1355.9431,17.661684,148.846,1329.0847,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 4:00,18331272,3597.512,65.4096325,241.75681,0.704407963,10296.66497,1613.15795,259.2650005,242.66874,996.8152669,0.704407963,259.2650005,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 5:00,18334886,3597.512,125.676155,184.90989,1.305094975,20442.45332,1870.3728,500.868317,336.49148,664.5458338,1.305094975,500.868317,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 6:00,18338500,3597.512,185.9426775,128.06297,1.905781988,30588.24166,2127.58765,742.4716335,430.31422,332.2764007,1.905781988,742.4716335,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 7:00,18342114,3597.512,246.2092,71.21605,2.506469,40734.03,2384.8025,984.07495,524.13696,0.006967629,2.506469,984.07495,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 8:00,18348864,3597.512,252.53938,211.31357,56.61779,35538.78,2357.6746,381.5075,28386.281,12.08483,56.61779,381.5075,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 9:00,18352497.78,3597.512,248.0902144,227.3132889,56.56999222,35550.78967,2640.300533,479.7936222,76494.46867,167.6006044,56.56999222,479.7936222,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 10:00,18356131.56,3597.512,243.6410489,243.3130078,56.52219444,35562.79933,2922.926467,578.0797444,124602.6563,323.1163789,56.52219444,578.0797444,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 11:00,18359765.33,3597.512,239.1918833,259.3127267,56.47439667,35574.809,3205.5524,676.3658667,172710.844,478.6321533,56.47439667,676.3658667,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 12:00,18363399.11,3597.512,234.7427178,275.3124456,56.42659889,35586.81867,3488.178333,774.6519889,220819.0317,634.1479278,56.42659889,774.6519889,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 13:00,18367032.89,3597.512,230.2935522,291.3121644,56.37880111,35598.82833,3770.804267,872.9381111,268927.2193,789.6637022,56.37880111,872.9381111,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 14:00,18370666.67,3597.512,225.8443867,307.3118833,56.33100333,35610.838,4053.4302,971.2242333,317035.407,945.1794767,56.33100333,971.2242333,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 15:00,18374300.44,3597.512,221.3952211,323.3116022,56.28320556,35622.84767,4336.056133,1069.510356,365143.5947,1100.695251,56.28320556,1069.510356,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 16:00,18377934.22,3597.512,216.9460556,339.3113211,56.23540778,35634.85733,4618.682067,1167.796478,413251.7823,1256.211026,56.23540778,1167.796478,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 17:00,18381568,3597.512,212.49689,355.31104,56.18761,35646.867,4901.308,1266.0826,461359.97,1411.7268,56.18761,1266.0826,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 18:00,18381628,3597.512,212.48122,302.21674,1.7030742,35664.24,4901.953,1266.7275,461359.97,1447.0063,1.7030742,1266.7275,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 19:00,18385302.4,3597.512,220.732498,286.227152,12.68345536,35511.7014,4417.46606,1096.9992,376651.8384,1162.77668,12.68345536,1096.9992,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 20:00,18388976.8,3597.512,228.983776,270.237564,23.66383652,35359.1628,3932.97912,927.2709,291943.7068,878.5470608,23.66383652,927.2709,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 21:00,18392651.2,3597.512,237.235054,254.247976,34.64421768,35206.6242,3448.49218,757.5426,207235.5752,594.3174412,34.64421768,757.5426,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 22:00,18396325.6,3597.512,245.486332,238.258388,45.62459884,35054.0856,2964.00524,587.8143,122527.4436,310.0878216,45.62459884,587.8143,130901.3,73179.4,-15784.6,-201976.5
+8/1/2023 23:00,18400000,3597.512,253.73761,222.2688,56.60498,34901.547,2479.5183,418.086,37819.312,25.858202,56.60498,418.086,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 0:00,18406596,3597.512,5.1672072,291.98825,0.10372095,403.39917,2489.9302,1156.3853,130.87231,1245.6127,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 1:00,18409085.33,3597.512,5.161882133,291.9477667,0.10372095,319.4539433,2022.914933,776.8107613,87.95353933,1245.609467,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 2:00,18411574.67,3597.512,5.156557067,291.9072833,0.10372095,235.5087167,1555.899667,397.2362227,45.03476867,1245.606233,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 3:00,18414064,3597.512,5.151232,291.8668,0.10372095,151.56349,1088.8844,17.661684,2.115998,1245.603,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 4:00,18417684.67,3597.512,5.389026467,291.8178867,0.10372095,10572.23699,1555.111967,382.787556,112.3249987,1245.6246,0.10372095,382.787556,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 5:00,18421305.33,3597.512,5.626820933,291.7689733,0.10372095,20992.9105,2021.339533,747.913428,222.5339993,1245.6462,0.10372095,747.913428,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 6:00,18424926,3597.512,5.8646154,291.72006,0.10372095,31413.584,2487.5671,1113.0393,332.743,1245.6678,0.10372095,1113.0393,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 7:00,18430428,3597.512,251.50276,197.27995,56.659637,39753.426,2041.3134,422.27063,5051.567,3.2005384,56.659637,422.27063,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 8:00,18434268,3597.512,253.04068,227.31306,56.571053,36101.855,2376.8574,396.8723,28773.639,38.239067,56.571053,396.8723,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 9:00,18438012.44,3597.512,248.5947967,241.28524,56.52776044,36051.90278,2657.286911,493.3870556,76838.78689,187.9380484,56.52776044,493.3870556,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 10:00,18441756.89,3597.512,244.1489133,255.25742,56.48446789,36001.95056,2937.716422,589.9018111,124903.9348,337.6370299,56.48446789,589.9018111,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 11:00,18445501.33,3597.512,239.70303,269.2296,56.44117533,35951.99833,3218.145933,686.4165667,172969.0827,487.3360113,56.44117533,686.4165667,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 12:00,18449245.78,3597.512,235.2571467,283.20178,56.39788278,35902.04611,3498.575444,782.9313222,221034.2306,637.0349928,56.39788278,782.9313222,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 13:00,18452990.22,3597.512,230.8112633,297.17396,56.35459022,35852.09389,3779.004956,879.4460778,269099.3784,786.7339742,56.35459022,879.4460778,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 14:00,18456734.67,3597.512,226.36538,311.14614,56.31129767,35802.14167,4059.434467,975.9608333,317164.5263,936.4329557,56.31129767,975.9608333,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 15:00,18460479.11,3597.512,221.9194967,325.11832,56.26800511,35752.18944,4339.863978,1072.475589,365229.6742,1086.131937,56.26800511,1072.475589,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 16:00,18464223.56,3597.512,217.4736133,339.0905,56.22471256,35702.23722,4620.293489,1168.990344,413294.8221,1235.830919,56.22471256,1168.990344,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 17:00,18467968,3597.512,213.02773,353.06268,56.18142,35652.285,4900.723,1265.5051,461359.97,1385.5299,56.18142,1265.5051,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 18:00,18468028,3597.512,213.00987,299.9546,1.6963242,35668.863,4901.3657,1266.1477,461359.97,1420.2917,1.6963242,1266.1477,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 19:00,18472189.33,3597.512,178.3674149,298.2735783,1.430890325,29792.07349,4303.87075,1058.066697,384471.2815,1385.764183,1.430890325,1058.066697,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 20:00,18476350.67,3597.512,143.7249598,296.5925567,1.16545645,23915.28397,3706.3758,849.9856947,307582.5931,1351.236667,1.16545645,849.9856947,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 21:00,18480512,3597.512,109.0825047,294.911535,0.900022575,18038.49446,3108.88085,641.904692,230693.9046,1316.70915,0.900022575,641.904692,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 22:00,18484673.33,3597.512,74.4400496,293.2305133,0.6345887,12161.70495,2511.3859,433.8236893,153805.2161,1282.181633,0.6345887,433.8236893,130901.3,73179.4,-15784.6,-201976.5
+8/2/2023 23:00,18488834.67,3597.512,39.7975945,291.5494917,0.369154825,6284.915433,1913.89095,225.7426867,76916.52765,1247.654117,0.369154825,225.7426867,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 0:00,18492996,3597.512,5.1551394,289.86847,0.10372095,408.12592,1316.396,17.661684,27.839184,1213.1266,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 1:00,18496498,3597.512,139.5246347,311.03807,28.75917548,16277.45296,3066.3867,599.409892,230693.9046,1044.6498,28.75917548,599.409892,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 2:00,18500000,3597.512,273.89413,332.20767,57.41463,32146.78,4816.3774,1181.1581,461359.97,876.173,57.41463,1181.1581,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 3:00,18500468,3597.512,5.1387653,289.83807,0.10372095,151.93314,779.24854,17.661684,1.0284759,1213.1166,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 4:00,18504072,3597.512,65.59940148,290.412435,0.690045338,10342.8531,1095.90998,183.054888,72.13907193,1213.1311,0.690045338,183.054888,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 5:00,18507676,3597.512,126.0600377,290.9868,1.276369725,20533.77307,1412.57142,348.448092,143.249668,1213.1456,1.276369725,348.448092,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 6:00,18511280,3597.512,186.5206738,291.561165,1.862694113,30724.69303,1729.23286,513.841296,214.360264,1213.1601,1.862694113,513.841296,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 7:00,18514884,3597.512,246.98131,292.13553,2.4490185,40915.613,2045.8943,679.2345,285.47086,1213.1746,2.4490185,679.2345,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 8:00,18518489,3597.512,250.538765,251.931555,29.52087325,38119.8905,2193.22095,527.1563,13803.91143,614.2886935,29.52087325,527.1563,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 9:00,18522094,3597.512,254.09622,211.72758,56.592728,35324.168,2340.5476,375.0781,27322.352,15.402787,56.592728,375.0781,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 10:00,18526128.25,3597.512,248.8819813,229.3105575,56.54210825,35357.48,2660.4891,486.301975,81577.05425,185.5125511,56.54210825,486.301975,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 11:00,18530162.5,3597.512,243.6677425,246.893535,56.4914885,35390.792,2980.4306,597.52585,135831.7565,355.6223153,56.4914885,597.52585,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 12:00,18534196.75,3597.512,238.4535037,264.4765125,56.44086875,35424.104,3300.3721,708.749725,190086.4588,525.7320794,56.44086875,708.749725,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 13:00,18538231,3597.512,233.239265,282.05949,56.390249,35457.416,3620.3136,819.9736,244341.161,695.8418435,56.390249,819.9736,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 14:00,18542265.25,3597.512,228.0250263,299.6424675,56.33962925,35490.728,3940.2551,931.197475,298595.8633,865.9516076,56.33962925,931.197475,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 15:00,18546299.5,3597.512,222.8107875,317.225445,56.2890095,35524.04,4260.1966,1042.42135,352850.5655,1036.061372,56.2890095,1042.42135,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 16:00,18550333.75,3597.512,217.5965487,334.8084225,56.23838975,35557.352,4580.1381,1153.645225,407105.2678,1206.171136,56.23838975,1153.645225,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 17:00,18554368,3597.512,212.38231,352.3914,56.18777,35590.664,4900.0796,1264.8691,461359.97,1376.2809,56.18777,1264.8691,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 18:00,18554428,3597.512,212.36577,299.28665,1.7032284,35607.746,4900.737,1265.5266,461359.97,1411.0514,1.7032284,1265.5266,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 19:00,18558587,3597.512,177.8278587,297.6518417,1.436643825,29746.16239,4496.506583,1247.336383,384480.4481,1377.425033,1.436643825,1247.336383,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 20:00,18562746,3597.512,143.2899474,296.0170333,1.17005925,23884.57877,4092.276167,1229.146167,307600.9261,1343.798667,1.17005925,1229.146167,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 21:00,18566905,3597.512,108.7520361,294.382225,0.903474675,18022.99516,3688.04575,1210.95595,230721.4042,1310.1723,0.903474675,1210.95595,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 22:00,18571064,3597.512,74.21412487,292.7474167,0.6368901,12161.41155,3283.815333,1192.765733,153841.8823,1276.545933,0.6368901,1192.765733,130901.3,73179.4,-15784.6,-201976.5
+8/3/2023 23:00,18575223,3597.512,39.67621358,291.1126083,0.370305525,6299.827933,2879.584917,1174.575517,76962.36033,1242.919567,0.370305525,1174.575517,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 0:00,18579382,3597.512,5.1383023,289.4778,0.10372095,438.24432,2475.3545,1156.3853,82.83839,1209.2932,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 1:00,18581876.67,3597.512,5.133040867,289.47332,0.10372095,342.74859,1955.3898,776.8107613,55.7100246,1209.289933,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 2:00,18584371.33,3597.512,5.127779433,289.46884,0.10372095,247.25286,1435.4251,397.2362227,28.5816592,1209.286667,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 3:00,18586866,3597.512,5.122518,289.46436,0.10372095,151.75713,915.4604,17.661684,1.4532938,1209.2834,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 4:00,18590502,3597.512,5.584839333,289.4592833,0.10372095,10637.69875,1437.618933,383.219756,97.9486692,1209.306567,0.10372095,383.219756,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 5:00,18594138,3597.512,6.047160667,289.4542067,0.10372095,21123.64038,1959.777467,748.777828,194.4440446,1209.329733,0.10372095,748.777828,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 6:00,18597774,3597.512,6.509482,289.44913,0.10372095,31609.582,2481.936,1114.3359,290.93942,1209.3529,0.10372095,1114.3359,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 7:00,18602598,3597.512,253.35887,190.01747,56.72992,40366.42,1916.2003,418.54352,1816.6327,0.7817791,56.72992,418.54352,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 8:00,18607418,3597.512,254.17102,225.98572,56.564465,35820.168,2367.9358,389.6471,28602.99,37.015877,56.564465,389.6471,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 9:00,18611124.67,3597.512,249.4261567,234.2973344,50.46966749,35779.416,2649.274856,486.8845556,76687.09889,194.304424,50.46966749,486.8845556,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 10:00,18614831.33,3597.512,244.6812933,242.6089489,44.37486998,35738.664,2930.613911,584.1220111,124771.2078,351.592971,44.37486998,584.1220111,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 11:00,18618538,3597.512,239.93643,250.9205633,38.28007247,35697.912,3211.952967,681.3594667,172855.3167,508.881518,38.28007247,681.3594667,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 12:00,18622244.67,3597.512,235.1915667,259.2321778,32.18527496,35657.16,3493.292022,778.5969222,220939.4256,666.170065,32.18527496,778.5969222,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 13:00,18625951.33,3597.512,230.4467033,267.5437922,26.09047744,35616.408,3774.631078,875.8343778,269023.5344,823.458612,26.09047744,875.8343778,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 14:00,18629658,3597.512,225.70184,275.8554067,19.99567993,35575.656,4055.970133,973.0718333,317107.6433,980.747159,19.99567993,973.0718333,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 15:00,18633364.67,3597.512,220.9569767,284.1670211,13.90088242,35534.904,4337.309189,1070.309289,365191.7522,1138.035706,13.90088242,1070.309289,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 16:00,18637071.33,3597.512,216.2121133,292.4786356,7.806084911,35494.152,4618.648244,1167.546744,413275.8611,1295.324253,7.806084911,1167.546744,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 17:00,18640778,3597.512,211.46725,300.79025,1.7112874,35453.4,4899.9873,1264.7842,461359.97,1452.6128,1.7112874,1264.7842,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 18:00,18644358.57,3597.512,181.9844943,299.42866,1.48163505,30432.25353,4564.8269,1249.298643,395522.4882,1424.464586,1.48163505,1249.298643,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 19:00,18647939.14,3597.512,152.5017386,298.06707,1.2519827,25411.10706,4229.6665,1233.813086,329685.0064,1396.316371,1.2519827,1233.813086,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 20:00,18651519.71,3597.512,123.0189829,296.70548,1.02233035,20389.96059,3894.5061,1218.327529,263847.5245,1368.168157,1.02233035,1218.327529,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 21:00,18655100.29,3597.512,93.53622714,295.34389,0.792678,15368.81411,3559.3457,1202.841971,198010.0427,1340.019943,0.792678,1202.841971,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 22:00,18658680.86,3597.512,64.05347143,293.9823,0.56302565,10347.66764,3224.1853,1187.356414,132172.5609,1311.871729,0.56302565,1187.356414,130901.3,73179.4,-15784.6,-201976.5
+8/4/2023 23:00,18662261.43,3597.512,34.57071571,292.62071,0.3333733,5326.521171,2889.0249,1171.870857,66335.07908,1283.723514,0.3333733,1171.870857,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 0:00,18665842,3597.512,5.08796,291.25912,0.10372095,305.3747,2553.8645,1156.3853,497.59726,1255.5753,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 1:00,18668314,3597.512,5.082675467,291.2557467,0.10372095,253.91876,2144.359133,776.8107613,347.874634,1255.5723,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 2:00,18670786,3597.512,5.077390933,291.2523733,0.10372095,202.46282,1734.853767,397.2362227,198.152008,1255.5693,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 3:00,18673258,3597.512,5.0721064,291.249,0.10372095,151.00688,1325.3484,17.661684,48.429382,1255.5663,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 4:00,18677078.29,3597.512,32.30340263,291.4615457,0.2847397,5158.245897,1834.755871,194.5669149,65950.07804,1256.228514,0.2847397,194.5669149,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 5:00,18680898.57,3597.512,59.53469886,291.6740914,0.46575845,10165.48491,2344.163343,371.4721457,131851.7267,1256.890729,0.46575845,371.4721457,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 6:00,18684718.86,3597.512,86.76599509,291.8866371,0.6467772,15172.72393,2853.570814,548.3773766,197753.3754,1257.552943,0.6467772,548.3773766,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 7:00,18688539.14,3597.512,113.9972913,292.0991829,0.82779595,20179.96295,3362.978286,725.2826074,263655.024,1258.215157,0.82779595,725.2826074,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 8:00,18692359.43,3597.512,141.2285875,292.3117286,1.0088147,25187.20197,3872.385757,902.1878383,329556.6727,1258.877371,1.0088147,902.1878383,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 9:00,18696179.71,3597.512,168.4598838,292.5242743,1.18983345,30194.44098,4381.793229,1079.093069,395458.3213,1259.539586,1.18983345,1079.093069,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 10:00,18700000,3597.512,195.69118,292.73682,1.3708522,35201.68,4891.2007,1255.9983,461359.97,1260.2018,1.3708522,1255.9983,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 11:00,18703309.6,3597.512,157.5975677,292.428762,1.11742595,34803.474,4879.34976,1244.14846,461359.97,1259.28844,1.11742595,1244.14846,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 12:00,18706619.2,3597.512,119.5039553,292.120704,0.8639997,34405.268,4867.49882,1232.29862,461359.97,1258.37508,0.8639997,1232.29862,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 13:00,18709928.8,3597.512,81.41034298,291.812646,0.61057345,34007.062,4855.64788,1220.44878,461359.97,1257.46172,0.61057345,1220.44878,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 14:00,18713238.4,3597.512,43.31673064,291.504588,0.3571472,33608.856,4843.79694,1208.59894,461359.97,1256.54836,0.3571472,1208.59894,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 15:00,18716548,3597.512,5.2231183,291.19653,0.10372095,33210.65,4831.946,1196.7491,461359.97,1255.635,0.10372095,1196.7491,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 16:00,18723452,3597.512,5.2942076,183.86403,54.829468,33088.29,4830.901,1195.705,461359.97,0.11220104,54.829468,1195.705,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 17:00,18727053.25,3597.512,5.277545363,177.0747788,47.98874962,28986.19639,4559.550313,1190.790038,403931.4876,0.117084193,47.98874962,1190.790038,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 18:00,18730654.5,3597.512,5.260883125,170.2855275,41.14803124,24884.10277,4288.199625,1185.875075,346503.0053,0.121967345,41.14803124,1185.875075,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 19:00,18734255.75,3597.512,5.244220888,163.4962763,34.30731286,20782.00916,4016.848938,1180.960113,289074.523,0.126850498,34.30731286,1180.960113,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 20:00,18737857,3597.512,5.22755865,156.707025,27.46659448,16679.91554,3745.49825,1176.04515,231646.0406,0.13173365,27.46659448,1176.04515,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 21:00,18741458.25,3597.512,5.210896413,149.9177737,20.62587609,12577.82193,3474.147563,1171.130188,174217.5583,0.136616803,20.62587609,1171.130188,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 22:00,18745059.5,3597.512,5.194234175,143.1285225,13.78515771,8475.72831,3202.796875,1166.215225,116789.0759,0.141499955,13.78515771,1166.215225,130901.3,73179.4,-15784.6,-201976.5
+8/5/2023 23:00,18748660.75,3597.512,5.177571938,136.3392713,6.944439331,4373.634695,2931.446187,1161.300263,59360.59355,0.146383108,6.944439331,1161.300263,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 0:00,18752262,3597.512,5.1609097,129.55002,0.10372095,271.54108,2660.0955,1156.3853,1932.1112,0.15126626,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 1:00,18754728.67,3597.512,5.1539788,129.54772,0.10372095,231.2497067,2243.7742,776.8107613,1443.35514,0.151337777,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 2:00,18757195.33,3597.512,5.1470479,129.54542,0.10372095,190.9583333,1827.4529,397.2362227,954.59908,0.151409293,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 3:00,18759662,3597.512,5.140117,129.54312,0.10372095,150.66696,1411.1316,17.661684,465.84302,0.15148081,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 4:00,18763329.09,3597.512,5.143673818,129.5438791,0.10372095,2258.357236,1549.093473,113.8385127,2028.571109,0.151449409,0.10372095,113.8385127,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 5:00,18766996.18,3597.512,5.147230636,129.5446382,0.10372095,4366.047513,1687.055345,210.0153415,3591.299198,0.151418008,0.10372095,210.0153415,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 6:00,18770663.27,3597.512,5.150787455,129.5453973,0.10372095,6473.737789,1825.017218,306.1921702,5154.027287,0.151386607,0.10372095,306.1921702,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 7:00,18774330.36,3597.512,5.154344273,129.5461564,0.10372095,8581.428065,1962.979091,402.3689989,6716.755376,0.151355206,0.10372095,402.3689989,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 8:00,18777997.45,3597.512,5.157901091,129.5469155,0.10372095,10689.11834,2100.940964,498.5458276,8279.483465,0.151323805,0.10372095,498.5458276,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 9:00,18781664.55,3597.512,5.161457909,129.5476745,0.10372095,12796.80862,2238.902836,594.7226564,9842.211555,0.151292405,0.10372095,594.7226564,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 10:00,18785331.64,3597.512,5.165014727,129.5484336,0.10372095,14904.49889,2376.864709,690.8994851,11404.93964,0.151261004,0.10372095,690.8994851,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 11:00,18788998.73,3597.512,5.168571545,129.5491927,0.10372095,17012.18917,2514.826582,787.0763138,12967.66773,0.151229603,0.10372095,787.0763138,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 12:00,18792665.82,3597.512,5.172128364,129.5499518,0.10372095,19119.87945,2652.788455,883.2531425,14530.39582,0.151198202,0.10372095,883.2531425,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 13:00,18796332.91,3597.512,5.175685182,129.5507109,0.10372095,21227.56972,2790.750327,979.4299713,16093.12391,0.151166801,0.10372095,979.4299713,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 14:00,18800000,3597.512,5.179242,129.55147,0.10372095,23335.26,2928.7122,1075.6068,17655.852,0.1511354,0.10372095,1075.6068,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 15:00,18803244,3597.512,5.21524925,129.538805,0.10372095,27411.475,3862.2531,1118.10585,239507.911,0.15329182,0.10372095,1118.10585,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 16:00,18806488,3597.512,5.2512565,129.52614,0.10372095,31487.69,4795.794,1160.6049,461359.97,0.15544824,0.10372095,1160.6049,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 17:00,18813512,3597.512,5.210944,189.40576,54.829468,34964.14,4872.11,1236.9215,461359.97,1.1909323,54.829468,1236.9215,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 18:00,18817105.14,3597.512,5.235653429,181.4818343,47.01150414,30007.55084,4539.034543,1225.416329,395508.1648,1.162640986,47.01150414,1225.416329,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 19:00,18820698.29,3597.512,5.260362857,173.5579086,39.19354027,25050.96169,4205.959086,1213.911157,329656.3596,1.134349671,39.19354027,1213.911157,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 20:00,18824291.43,3597.512,5.285072286,165.6339829,31.37557641,20094.37253,3872.883629,1202.405986,263804.5544,1.106058357,31.37557641,1202.405986,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 21:00,18827884.57,3597.512,5.309781714,157.7100571,23.55761254,15137.78337,3539.808171,1190.900814,197952.7492,1.077767043,23.55761254,1190.900814,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 22:00,18831477.71,3597.512,5.334491143,149.7861314,15.73964868,10181.19421,3206.732714,1179.395643,132100.944,1.049475729,15.73964868,1179.395643,130901.3,73179.4,-15784.6,-201976.5
+8/6/2023 23:00,18835070.86,3597.512,5.359200571,141.8622057,7.921684814,5224.605057,2873.657257,1167.890471,66249.13874,1.021184414,7.921684814,1167.890471,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 0:00,18838664,3597.512,5.38391,133.93828,0.10372095,268.0159,2540.5818,1156.3853,397.33353,0.9928931,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 1:00,18841128,3597.512,5.376969667,133.9345567,0.10372095,229.1198833,2132.966367,776.8107613,275.0588083,0.992700767,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 2:00,18843592,3597.512,5.370029333,133.9308333,0.10372095,190.2238667,1725.350933,397.2362227,152.7840867,0.992508433,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 3:00,18846056,3597.512,5.363089,133.92711,0.10372095,151.32785,1317.7355,17.661684,30.509365,0.9923161,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 4:00,18849664,3597.512,5.3522675,133.93438,0.10372095,162.512155,1956.638,587.023492,473.9586825,0.992507385,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 5:00,18853272,3597.512,5.341446,133.94165,0.10372095,173.69646,2595.5405,1156.3853,917.408,0.99269867,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 6:00,18857347,3597.512,135.188943,173.55832,45.59770548,19711.37323,2894.5521,1201.56865,13222.8935,3.414571035,45.59770548,1201.56865,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 7:00,18861422,3597.512,265.03644,213.17499,91.09169,39249.05,3193.5637,1246.752,25528.379,5.8364434,91.09169,1246.752,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 8:00,18865275.2,3597.512,259.936718,222.801381,87.5985984,38888.7587,3363.63023,1247.98154,69111.5381,118.6949591,87.5985984,1247.98154,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 9:00,18869128.4,3597.512,254.836996,232.427772,84.1055068,38528.4674,3533.69676,1249.21108,112694.6972,231.5534747,84.1055068,1249.21108,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 10:00,18872981.6,3597.512,249.737274,242.054163,80.6124152,38168.1761,3703.76329,1250.44062,156277.8563,344.4119904,80.6124152,1250.44062,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 11:00,18876834.8,3597.512,244.637552,251.680554,77.1193236,37807.8848,3873.82982,1251.67016,199861.0154,457.270506,77.1193236,1251.67016,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 12:00,18880688,3597.512,239.53783,261.306945,73.626232,37447.5935,4043.89635,1252.8997,243444.1745,570.1290217,73.626232,1252.8997,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 13:00,18884541.2,3597.512,234.438108,270.933336,70.1331404,37087.3022,4213.96288,1254.12924,287027.3336,682.9875374,70.1331404,1254.12924,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 14:00,18888394.4,3597.512,229.338386,280.559727,66.6400488,36727.0109,4384.02941,1255.35878,330610.4927,795.846053,66.6400488,1255.35878,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 15:00,18892247.6,3597.512,224.238664,290.186118,63.1469572,36366.7196,4554.09594,1256.58832,374193.6518,908.7045687,63.1469572,1256.58832,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 16:00,18896100.8,3597.512,219.138942,299.812509,59.6538656,36006.4283,4724.16247,1257.81786,417776.8109,1021.563084,59.6538656,1257.81786,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 17:00,18899954,3597.512,214.03922,309.4389,56.160774,35646.137,4894.229,1259.0474,461359.97,1134.4216,56.160774,1259.0474,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 18:00,18900000,3597.512,5.3648973,133.92177,0.10372095,148.84901,2604.9507,1156.3853,1037.335,0.99223846,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 19:00,18904176,3597.512,5.344643917,152.5482633,0.10372095,170.1650533,2596.47175,1156.3853,947.69471,160.8865071,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 20:00,18908352,3597.512,5.324390533,171.1747567,0.10372095,191.4810967,2587.9928,1156.3853,858.05442,320.7807756,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 21:00,18912528,3597.512,5.30413715,189.80125,0.10372095,212.79714,2579.51385,1156.3853,768.41413,480.6750442,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 22:00,18916704,3597.512,5.283883767,208.4277433,0.10372095,234.1131833,2571.0349,1156.3853,678.77384,640.5693128,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/7/2023 23:00,18920880,3597.512,5.263630383,227.0542367,0.10372095,255.4292267,2562.55595,1156.3853,589.13355,800.4635814,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 0:00,18925056,3597.512,5.243377,245.68073,0.10372095,276.74527,2554.077,1156.3853,499.49326,960.35785,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 1:00,18927522.67,3597.512,5.228371667,245.68888,0.10372095,234.9859133,2144.8034,776.8107613,349.9865013,960.3547,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 2:00,18929989.33,3597.512,5.213366333,245.69703,0.10372095,193.2265567,1735.5298,397.2362227,200.4797427,960.35155,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 3:00,18932456,3597.512,5.198361,245.70518,0.10372095,151.4672,1326.2562,17.661684,50.972984,960.3484,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 4:00,18936125.33,3597.512,6.286394667,245.7175833,0.10372095,10687.98647,1727.2347,384.5404893,238.7933693,960.3705667,0.10372095,384.5404893,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 5:00,18939794.67,3597.512,7.374428333,245.7299867,0.10372095,21224.50573,2128.2132,751.4192947,426.6137547,960.3927333,0.10372095,751.4192947,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 6:00,18943464,3597.512,8.462462,245.74239,0.10372095,31761.025,2529.1917,1118.2981,614.43414,960.4149,0.10372095,1118.2981,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 7:00,18947364.73,3597.512,26.80825364,253.0006227,5.203274227,32076.05,2744.664509,1131.5635,42500.39195,1011.872182,5.203274227,1131.5635,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 8:00,18951265.45,3597.512,45.15404527,260.2588555,10.3028275,32391.075,2960.137318,1144.8289,84386.34975,1063.329464,10.3028275,1144.8289,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 9:00,18955166.18,3597.512,63.49983691,267.5170882,15.40238078,32706.1,3175.610127,1158.0943,126272.3076,1114.786745,15.40238078,1158.0943,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 10:00,18959066.91,3597.512,81.84562855,274.7753209,20.50193406,33021.125,3391.082936,1171.3597,168158.2654,1166.244027,20.50193406,1171.3597,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 11:00,18962967.64,3597.512,100.1914202,282.0335536,25.60148734,33336.15,3606.555745,1184.6251,210044.2232,1217.701309,25.60148734,1184.6251,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 12:00,18966868.36,3597.512,118.5372118,289.2917864,30.70104061,33651.175,3822.028555,1197.8905,251930.181,1269.158591,30.70104061,1197.8905,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 13:00,18970769.09,3597.512,136.8830035,296.5500191,35.80059389,33966.2,4037.501364,1211.1559,293816.1388,1320.615873,35.80059389,1211.1559,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 14:00,18974669.82,3597.512,155.2287951,303.8082518,40.90014717,34281.225,4252.974173,1224.4213,335702.0966,1372.073155,40.90014717,1224.4213,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 15:00,18978570.55,3597.512,173.5745867,311.0664845,45.99970045,34596.25,4468.446982,1237.6867,377588.0544,1423.530436,45.99970045,1237.6867,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 16:00,18982471.27,3597.512,191.9203784,318.3247173,51.09925372,34911.275,4683.919791,1250.9521,419474.0122,1474.987718,51.09925372,1250.9521,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 17:00,18986372,3597.512,210.26617,325.58295,56.198807,35226.3,4899.3926,1264.2175,461359.97,1526.445,56.198807,1264.2175,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 18:00,18986432,3597.512,210.24936,272.57263,1.7151676,35244.53,4900.0693,1264.8947,461359.97,1564.3032,1.7151676,1264.8947,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 19:00,18990954.67,3597.512,222.9868567,235.58261,19.98915507,36175.89767,4395.859867,1255.482133,324078.8467,1043.609875,19.98915507,1255.482133,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 20:00,18995477.33,3597.512,235.7243533,198.59259,38.26314253,37107.26533,3891.650433,1246.069567,186797.7233,522.9165507,38.26314253,1246.069567,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 21:00,19000000,3597.512,248.46185,161.60257,56.53713,38038.633,3387.441,1236.657,49516.6,2.223226,56.53713,1236.657,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 22:00,19003817.33,3597.512,167.3465332,195.85058,37.72599365,25453.43443,3122.695,1209.899767,33307.48712,466.3366507,37.72599365,1209.899767,130901.3,73179.4,-15784.6,-201976.5
+8/8/2023 23:00,19007634.67,3597.512,86.2312164,230.09859,18.9148573,12868.23587,2857.949,1183.142533,17098.37423,930.4500753,18.9148573,1183.142533,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 0:00,19011452,3597.512,5.1158996,264.3466,0.10372095,283.0373,2593.203,1156.3853,889.26135,1394.5635,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 1:00,19013920,3597.512,5.101865633,264.34976,0.10372095,238.9355433,2181.143567,776.8107613,643.9647567,1394.560833,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 2:00,19016388,3597.512,5.087831667,264.35292,0.10372095,194.8337867,1769.084133,397.2362227,398.6681633,1394.558167,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 3:00,19018856,3597.512,5.0737977,264.35608,0.10372095,150.73203,1357.0247,17.661684,153.37157,1394.5555,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 4:00,19022468,3597.512,65.10991328,264.961725,0.704589963,10041.87027,1776.355925,324.217138,3467.795678,1394.572225,0.704589963,324.217138,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 5:00,19026080,3597.512,125.1460289,265.56737,1.305458975,19933.00852,2195.68715,630.772592,6782.219785,1394.58895,1.305458975,630.772592,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 6:00,19029692,3597.512,185.1821444,266.173015,1.906327988,29824.14676,2615.018375,937.328046,10096.64389,1394.605675,1.906327988,937.328046,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 7:00,19033304,3597.512,245.21826,266.77866,2.507197,39715.285,3034.3496,1243.8835,13411.068,1394.6224,2.507197,1243.8835,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 8:00,19037250.4,3597.512,241.591087,272.835282,7.8777753,39257.2885,3220.96728,1246.03095,58205.9582,1412.04958,7.8777753,1246.03095,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 9:00,19041196.8,3597.512,237.963914,278.891904,13.2483536,38799.292,3407.58496,1248.1784,103000.8484,1429.47676,13.2483536,1248.1784,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 10:00,19045143.2,3597.512,234.336741,284.948526,18.6189319,38341.2955,3594.20264,1250.32585,147795.7386,1446.90394,18.6189319,1250.32585,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 11:00,19049089.6,3597.512,230.709568,291.005148,23.9895102,37883.299,3780.82032,1252.4733,192590.6288,1464.33112,23.9895102,1252.4733,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 12:00,19053036,3597.512,227.082395,297.06177,29.3600885,37425.3025,3967.438,1254.62075,237385.519,1481.7583,29.3600885,1254.62075,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 13:00,19056982.4,3597.512,223.455222,303.118392,34.7306668,36967.306,4154.05568,1256.7682,282180.4092,1499.18548,34.7306668,1256.7682,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 14:00,19060928.8,3597.512,219.828049,309.175014,40.1012451,36509.3095,4340.67336,1258.91565,326975.2994,1516.61266,40.1012451,1258.91565,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 15:00,19064875.2,3597.512,216.200876,315.231636,45.4718234,36051.313,4527.29104,1261.0631,371770.1896,1534.03984,45.4718234,1261.0631,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 16:00,19068821.6,3597.512,212.573703,321.288258,50.8424017,35593.3165,4713.90872,1263.21055,416565.0798,1551.46702,50.8424017,1263.21055,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 17:00,19072768,3597.512,208.94653,327.34488,56.21298,35135.32,4900.5264,1265.358,461359.97,1568.8942,56.21298,1265.358,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 18:00,19072828,3597.512,208.9309,274.19885,1.7305255,35153.652,4901.196,1266.0278,461359.97,1603.3462,1.7305255,1266.0278,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 19:00,19076998,3597.512,174.9516871,272.9153583,1.459391408,29343.23467,4516.533667,1247.75405,384614.9029,1577.355717,1.459391408,1247.75405,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 20:00,19081168,3597.512,140.9724742,271.6318667,1.188257317,23532.81733,4131.871333,1229.4803,307869.8358,1551.365233,1.188257317,1229.4803,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 21:00,19085338,3597.512,106.9932613,270.348375,0.917123225,17722.4,3747.209,1211.20655,231124.7687,1525.37475,0.917123225,1211.20655,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 22:00,19089508,3597.512,73.0140484,269.0648833,0.645989133,11911.98267,3362.546667,1192.9328,154379.7016,1499.384267,0.645989133,1192.9328,130901.3,73179.4,-15784.6,-201976.5
+8/9/2023 23:00,19093678,3597.512,39.0348355,267.7813917,0.374855042,6101.565333,2977.884333,1174.65905,77634.63453,1473.393783,0.374855042,1174.65905,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 0:00,19097848,3597.512,5.0556226,266.4979,0.10372095,291.148,2593.222,1156.3853,889.56744,1447.4033,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 1:00,19100000,3597.512,272.6671,362.2315,57.570683,33416.56,4839.755,1204.5848,461359.97,2475.5725,57.570683,1204.5848,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 2:00,19102629,3597.512,138.8535335,314.36517,28.83720198,16783.57991,3098.59735,611.123242,230757.5175,1961.4843,28.83720198,611.123242,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 3:00,19105258,3597.512,5.039967,266.49884,0.10372095,150.59982,1357.4397,17.661684,155.06491,1447.3961,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 4:00,19108892.67,3597.512,5.432375533,266.5001133,0.10372095,10527.85355,1744.0009,383.182956,284.4059833,1447.421167,0.10372095,383.182956,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 5:00,19112527.33,3597.512,5.824784067,266.5013867,0.10372095,20905.10727,2130.5621,748.704228,413.7470567,1447.446233,0.10372095,748.704228,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 6:00,19116162,3597.512,6.2171926,266.50266,0.10372095,31282.361,2517.1233,1114.2255,543.08813,1447.4713,0.10372095,1114.2255,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 7:00,19119945.89,3597.512,6.152201567,266.5420428,0.10372095,29558.28657,2524.870272,1116.567711,616.5321394,1448.495539,0.10372095,1116.567711,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 8:00,19123729.78,3597.512,6.087210533,266.5814256,0.10372095,27834.21213,2532.617244,1118.909922,689.9761489,1449.519778,0.10372095,1118.909922,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 9:00,19127513.67,3597.512,6.0222195,266.6208083,0.10372095,26110.1377,2540.364217,1121.252133,763.4201583,1450.544017,0.10372095,1121.252133,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 10:00,19131297.56,3597.512,5.957228467,266.6601911,0.10372095,24386.06327,2548.111189,1123.594344,836.8641678,1451.568256,0.10372095,1123.594344,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 11:00,19135081.44,3597.512,5.892237433,266.6995739,0.10372095,22661.98884,2555.858161,1125.936556,910.3081772,1452.592494,0.10372095,1125.936556,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 12:00,19138865.33,3597.512,5.8272464,266.7389567,0.10372095,20937.9144,2563.605133,1128.278767,983.7521867,1453.616733,0.10372095,1128.278767,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 13:00,19142649.22,3597.512,5.762255367,266.7783394,0.10372095,19213.83997,2571.352106,1130.620978,1057.196196,1454.640972,0.10372095,1130.620978,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 14:00,19146433.11,3597.512,5.697264333,266.8177222,0.10372095,17489.76554,2579.099078,1132.963189,1130.640206,1455.665211,0.10372095,1132.963189,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 15:00,19150217,3597.512,5.6322733,266.857105,0.10372095,15765.69111,2586.84605,1135.3054,1204.084215,1456.68945,0.10372095,1135.3054,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 16:00,19154000.89,3597.512,5.567282267,266.8964878,0.10372095,14041.61667,2594.593022,1137.647611,1277.528224,1457.713689,0.10372095,1137.647611,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 17:00,19157784.78,3597.512,5.502291233,266.9358706,0.10372095,12317.54224,2602.339994,1139.989822,1350.972234,1458.737928,0.10372095,1139.989822,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 18:00,19161568.67,3597.512,5.4373002,266.9752533,0.10372095,10593.46781,2610.086967,1142.332033,1424.416243,1459.762167,0.10372095,1142.332033,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 19:00,19165352.56,3597.512,5.372309167,267.0146361,0.10372095,8869.393374,2617.833939,1144.674244,1497.860253,1460.786406,0.10372095,1144.674244,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 20:00,19169136.44,3597.512,5.307318133,267.0540189,0.10372095,7145.318941,2625.580911,1147.016456,1571.304262,1461.810644,0.10372095,1147.016456,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 21:00,19172920.33,3597.512,5.2423271,267.0934017,0.10372095,5421.244508,2633.327883,1149.358667,1644.748272,1462.834883,0.10372095,1149.358667,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 22:00,19176704.22,3597.512,5.177336067,267.1327844,0.10372095,3697.170076,2641.074856,1151.700878,1718.192281,1463.859122,0.10372095,1151.700878,130901.3,73179.4,-15784.6,-201976.5
+8/10/2023 23:00,19180488.11,3597.512,5.112345033,267.1721672,0.10372095,1973.095643,2648.821828,1154.043089,1791.636291,1464.883361,0.10372095,1154.043089,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 0:00,19184272,3597.512,5.047354,267.21155,0.10372095,249.02121,2656.5688,1156.3853,1865.0803,1465.9076,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 1:00,19186732,3597.512,5.033628,267.2103067,0.10372095,216.10672,2241.828933,776.8107613,1401.930447,1465.905333,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 2:00,19189192,3597.512,5.019902,267.2090633,0.10372095,183.19223,1827.089067,397.2362227,938.7805933,1465.903067,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 3:00,19191652,3597.512,5.006176,267.20782,0.10372095,150.27774,1412.3492,17.661684,475.63074,1465.9008,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 4:00,19195378,3597.512,4.998465,150.099197,0.103568432,375.16557,2014.3286,587.023492,835.13902,732.9511952,0.103568432,587.023492,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 5:00,19199104,3597.512,4.990754,32.990574,0.103415914,600.0534,2616.308,1156.3853,1194.6473,0.00159038,0.103415914,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 6:00,19202976.83,3597.512,22.039127,52.99139283,0.238388855,3484.139783,2806.574692,1165.382642,39541.75752,131.1435412,0.238388855,1165.382642,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 7:00,19206849.67,3597.512,39.0875,72.99221167,0.373361795,6368.226167,2996.841383,1174.379983,77888.86775,262.285492,0.373361795,1174.379983,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 8:00,19210722.5,3597.512,56.135873,92.9930305,0.508334736,9252.31255,3187.108075,1183.377325,116235.978,393.4274428,0.508334736,1183.377325,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 9:00,19214595.33,3597.512,73.184246,112.9938493,0.643307676,12136.39893,3377.374767,1192.374667,154583.0882,524.5693936,0.643307676,1192.374667,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 10:00,19218468.17,3597.512,90.232619,132.9946682,0.778280617,15020.48532,3567.641458,1201.372008,192930.1984,655.7113444,0.778280617,1201.372008,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 11:00,19222341,3597.512,107.280992,152.995487,0.913253557,17904.5717,3757.90815,1210.36935,231277.3087,786.8532952,0.913253557,1210.36935,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 12:00,19226213.83,3597.512,124.329365,172.9963058,1.048226498,20788.65808,3948.174842,1219.366692,269624.4189,917.995246,1.048226498,1219.366692,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 13:00,19230086.67,3597.512,141.377738,192.9971247,1.183199438,23672.74447,4138.441533,1228.364033,307971.5291,1049.137197,1.183199438,1228.364033,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 14:00,19233959.5,3597.512,158.426111,212.9979435,1.318172379,26556.83085,4328.708225,1237.361375,346318.6393,1180.279148,1.318172379,1237.361375,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 15:00,19237832.33,3597.512,175.474484,232.9987623,1.453145319,29440.91723,4518.974917,1246.358717,384665.7496,1311.421098,1.453145319,1246.358717,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 16:00,19241705.17,3597.512,192.522857,252.9995812,1.588118259,32325.00362,4709.241608,1255.356058,423012.8598,1442.563049,1.588118259,1255.356058,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 17:00,19245578,3597.512,209.57123,273.0004,1.7230912,35209.09,4899.5083,1264.3534,461359.97,1573.705,1.7230912,1264.3534,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 18:00,19249160.86,3597.512,180.3534079,271.8113429,1.491752593,30218.51118,4394.954557,1086.254583,395479.8733,1549.322057,1.491752593,1086.254583,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 19:00,19252743.71,3597.512,151.1355858,270.6222857,1.260413986,25227.93235,3890.400814,908.1557669,329599.7767,1524.939114,1.260413986,908.1557669,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 20:00,19256326.57,3597.512,121.9177637,269.4332286,1.029075379,20237.35353,3385.847071,730.0569503,263719.68,1500.556171,1.029075379,730.0569503,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 21:00,19259909.43,3597.512,92.69994166,268.2441714,0.797736771,15246.77471,2881.293329,551.9581337,197839.5834,1476.173229,0.797736771,551.9581337,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 22:00,19263492.29,3597.512,63.48211957,267.0551143,0.566398164,10256.19589,2376.739586,373.8593171,131959.4867,1451.790286,0.566398164,373.8593171,130901.3,73179.4,-15784.6,-201976.5
+8/11/2023 23:00,19267075.14,3597.512,34.26429749,265.8660571,0.335059557,5265.617063,1872.185843,195.7605006,66079.39009,1427.407343,0.335059557,195.7605006,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 0:00,19270658,3597.512,5.0464754,264.677,0.10372095,275.03824,1367.6321,17.661684,199.29344,1403.0244,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 1:00,19273126.67,3597.512,5.0413746,264.6749067,0.10372095,233.7080033,1343.775433,17.661684,134.433045,1403.021867,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 2:00,19275595.33,3597.512,5.0362738,264.6728133,0.10372095,192.3777667,1319.918767,17.661684,69.57265,1403.019333,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 3:00,19278064,3597.512,5.031173,264.67072,0.10372095,151.04753,1296.0621,17.661684,4.712255,1403.0168,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 4:00,19281720,3597.512,36.39014417,265.0613833,0.314649842,6094.294608,1899.5428,228.35002,76897.25521,1407.471683,0.314649842,228.35002,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 5:00,19285376,3597.512,67.74911533,265.4520467,0.525578733,12037.54169,2503.0235,439.038356,153789.7982,1411.926567,0.525578733,439.038356,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 6:00,19289032,3597.512,99.1080865,265.84271,0.736507625,17980.78876,3106.5042,649.726692,230682.3411,1416.38145,0.736507625,649.726692,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 7:00,19292688,3597.512,130.4670577,266.2333733,0.947436517,23924.03584,3709.9849,860.415028,307574.8841,1420.836333,0.947436517,860.415028,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 8:00,19296344,3597.512,161.8260288,266.6240367,1.158365408,29867.28292,4313.4656,1071.103364,384467.427,1425.291217,1.158365408,1071.103364,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 9:00,19300000,3597.512,193.185,267.0147,1.3692943,35810.53,4916.9463,1281.7917,461359.97,1429.7461,1.3692943,1281.7917,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 10:00,19303555.67,3597.512,161.8531545,227.9953967,1.158314569,35387.67733,4902.01725,1266.86355,461359.97,1191.455347,1.158314569,1266.86355,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 11:00,19307111.33,3597.512,130.521309,188.9760933,0.947334838,34964.82467,4887.0882,1251.9354,461359.97,953.1645938,0.947334838,1251.9354,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 12:00,19310667,3597.512,99.1894635,149.95679,0.736355107,34541.972,4872.15915,1237.00725,461359.97,714.8738407,0.736355107,1237.00725,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 13:00,19314222.67,3597.512,67.857618,110.9374867,0.525375376,34119.11933,4857.2301,1222.0791,461359.97,476.5830877,0.525375376,1222.0791,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 14:00,19317778.33,3597.512,36.5257725,71.91818333,0.314395645,33696.26667,4842.30105,1207.15095,461359.97,238.2923346,0.314395645,1207.15095,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 15:00,19321334,3597.512,5.193927,32.89888,0.103415914,33273.414,4827.372,1192.2228,461359.97,0.001581499,0.103415914,1192.2228,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 16:00,19326070.67,3597.512,5.2067998,60.77329667,0.103517593,33999.18733,4850.589333,1215.440267,461359.97,3.178825666,0.103517593,1215.440267,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 17:00,19330807.33,3597.512,5.2196726,88.64771333,0.103619271,34724.96067,4873.806667,1238.657733,461359.97,6.356069833,0.103619271,1238.657733,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 18:00,19335544,3597.512,5.2325454,116.52213,0.10372095,35450.734,4897.024,1261.8752,461359.97,9.533314,0.10372095,1261.8752,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 19:00,19339106.33,3597.512,5.220330833,115.9730125,0.10372095,29648.17509,4497.372383,1244.29355,384494.523,9.09383055,0.10372095,1244.29355,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 20:00,19342668.67,3597.512,5.208116267,115.423895,0.10372095,23845.61618,4097.720767,1226.7119,307629.076,8.6543471,0.10372095,1226.7119,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 21:00,19346231,3597.512,5.1959017,114.8747775,0.10372095,18043.05728,3698.06915,1209.13025,230763.6291,8.21486365,0.10372095,1209.13025,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 22:00,19349793.33,3597.512,5.183687133,114.32566,0.10372095,12240.49837,3298.417533,1191.5486,153898.1821,7.7753802,0.10372095,1191.5486,130901.3,73179.4,-15784.6,-201976.5
+8/12/2023 23:00,19353355.67,3597.512,5.171472567,113.7765425,0.10372095,6437.939458,2898.765917,1173.96695,77032.73511,7.33589675,0.10372095,1173.96695,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 0:00,19356918,3597.512,5.159258,113.227425,0.10372095,635.38055,2499.1143,1156.3853,167.28813,6.8964133,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 1:00,19360508.17,3597.512,5.160856942,113.2302249,0.10372095,3281.157754,2606.651083,1156.002742,11980.04245,6.898075358,0.10372095,1156.002742,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 2:00,19364098.33,3597.512,5.162455883,113.2330248,0.10372095,5926.934958,2714.187867,1155.620183,23792.79678,6.899737417,0.10372095,1155.620183,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 3:00,19367688.5,3597.512,5.164054825,113.2358248,0.10372095,8572.712162,2821.72465,1155.237625,35605.5511,6.901399475,0.10372095,1155.237625,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 4:00,19371278.67,3597.512,5.165653767,113.2386247,0.10372095,11218.48937,2929.261433,1154.855067,47418.30542,6.903061533,0.10372095,1154.855067,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 5:00,19374868.83,3597.512,5.167252708,113.2414246,0.10372095,13864.26657,3036.798217,1154.472508,59231.05974,6.904723592,0.10372095,1154.472508,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 6:00,19378459,3597.512,5.16885165,113.2442245,0.10372095,16510.04378,3144.335,1154.08995,71043.81407,6.90638565,0.10372095,1154.08995,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 7:00,19382049.17,3597.512,5.170450592,113.2470244,0.10372095,19155.82098,3251.871783,1153.707392,82856.56839,6.908047708,0.10372095,1153.707392,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 8:00,19385639.33,3597.512,5.172049533,113.2498243,0.10372095,21801.59818,3359.408567,1153.324833,94669.32271,6.909709767,0.10372095,1153.324833,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 9:00,19389229.5,3597.512,5.173648475,113.2526243,0.10372095,24447.37539,3466.94535,1152.942275,106482.077,6.911371825,0.10372095,1152.942275,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 10:00,19392819.67,3597.512,5.175247417,113.2554242,0.10372095,27093.15259,3574.482133,1152.559717,118294.8314,6.913033883,0.10372095,1152.559717,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 11:00,19396409.83,3597.512,5.176846358,113.2582241,0.10372095,29738.9298,3682.018917,1152.177158,130107.5857,6.914695942,0.10372095,1152.177158,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 12:00,19400000,3597.512,5.1784453,113.261024,0.10372095,32384.707,3789.5557,1151.7946,141920.34,6.916358,0.10372095,1151.7946,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 13:00,19402179,3597.512,5.2285285,113.220407,0.10372095,31880.8585,4292.2605,1155.80805,301640.155,6.906592,0.10372095,1155.80805,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 14:00,19404358,3597.512,5.2786117,113.17979,0.10372095,31377.01,4794.9653,1159.8215,461359.97,6.896826,0.10372095,1159.8215,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 15:00,19409535,3597.512,5.24817785,135.204345,27.46659447,32278.485,4811.55615,1176.4127,461359.97,4.0848729,27.46659447,1176.4127,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 16:00,19414712,3597.512,5.217744,157.2289,54.829468,33179.96,4828.147,1193.0039,461359.97,1.2729198,54.829468,1193.0039,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 17:00,19414952,3597.512,5.217703,102.70603,0.10372095,33305.824,4830.658,1195.5154,461359.97,1.3355744,0.10372095,1195.5154,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 18:00,19421848,3597.512,5.193713,150.78778,54.829468,34878.26,4870.297,1235.1544,461359.97,0.074073404,54.829468,1235.1544,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 19:00,19425450.67,3597.512,5.22728555,141.5372633,45.70851016,29109.64586,4480.9732,1222.026217,384525.87,0.068098864,45.70851016,1222.026217,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 20:00,19429053.33,3597.512,5.2608581,132.2867467,36.58755232,23341.03172,4091.6494,1208.898033,307691.7699,0.062124324,36.58755232,1208.898033,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 21:00,19432656,3597.512,5.29443065,123.03623,27.46659448,17572.41758,3702.3256,1195.76985,230857.6699,0.056149784,27.46659448,1195.76985,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 22:00,19436258.67,3597.512,5.3280032,113.7857133,18.34563663,11803.80344,3313.0018,1182.641667,154023.5699,0.050175245,18.34563663,1182.641667,130901.3,73179.4,-15784.6,-201976.5
+8/13/2023 23:00,19439861.33,3597.512,5.36157575,104.5351967,9.224678792,6035.1893,2923.678,1169.513483,77189.46982,0.044200705,9.224678792,1169.513483,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 0:00,19443464,3597.512,5.3951483,95.28468,0.10372095,266.57516,2534.3542,1156.3853,355.36978,0.038226165,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 1:00,19445928,3597.512,5.387958867,95.26593833,0.10372095,227.6372333,2127.528233,776.8107613,244.7405947,0.037639123,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 2:00,19448392,3597.512,5.380769433,95.24719667,0.10372095,188.6993067,1720.702267,397.2362227,134.1114093,0.037052082,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 3:00,19450856,3597.512,5.37358,95.228455,0.10372095,149.76138,1313.8763,17.661684,23.482224,0.03646504,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 4:00,19454470,3597.512,5.3627905,64.0174325,0.103568432,166.020505,1957.41765,587.023492,504.708887,0.019018452,0.103568432,587.023492,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 5:00,19458084,3597.512,5.352001,32.80641,0.103415914,182.27963,2600.959,1156.3853,985.93555,0.001571863,0.103415914,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 6:00,19462780,3597.512,132.8749305,124.76853,45.55538546,19335.45832,2957.674,1198.67375,20139.33477,7.348246681,45.55538546,1198.67375,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 7:00,19467476,3597.512,260.39786,216.73065,91.007355,38488.637,3314.389,1240.9622,39292.734,14.6949215,91.007355,1240.9622,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 8:00,19471089.78,3597.512,232.0623992,203.2308138,80.90695122,34228.78266,3092.450078,1105.03992,34930.09953,13.06621594,80.90695122,1105.03992,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 9:00,19474703.56,3597.512,203.7269384,189.7309776,70.80654743,29968.92833,2870.511156,969.1176409,30567.46505,11.43751037,70.80654743,969.1176409,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 10:00,19478317.33,3597.512,175.3914777,176.2311413,60.70614365,25709.07399,2648.572233,833.1953613,26204.83058,9.808804812,60.70614365,833.1953613,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 11:00,19481931.11,3597.512,147.0560169,162.7313051,50.60573987,21449.21966,2426.633311,697.2730818,21842.19611,8.180099249,50.60573987,697.2730818,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 12:00,19485544.89,3597.512,118.7205561,149.2314689,40.50533608,17189.36532,2204.694389,561.3508022,17479.56164,6.551393687,40.50533608,561.3508022,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 13:00,19489158.67,3597.512,90.38509533,135.7316327,30.4049323,12929.51099,1982.755467,425.4285227,13116.92716,4.922688124,30.4049323,425.4285227,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 14:00,19492772.44,3597.512,62.04963456,122.2317964,20.30452852,8669.656651,1760.816544,289.5062431,8754.292691,3.293982561,20.30452852,289.5062431,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 15:00,19496386.22,3597.512,33.71417378,108.7319602,10.20412473,4409.802316,1538.877622,153.5839636,4391.658218,1.665276999,10.20412473,153.5839636,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 16:00,19500000,3597.512,5.378713,95.232124,0.10372095,149.94798,1316.9387,17.661684,29.023745,0.036571436,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 17:00,19503734,3597.512,5.348209563,115.387946,0.10372095,162.5651625,1478.97355,160.002136,169.2622644,166.2669,0.10372095,160.002136,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 18:00,19507468,3597.512,5.317706125,135.543768,0.10372095,175.182345,1641.0084,302.342588,309.5007838,332.4972286,0.10372095,302.342588,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 19:00,19511202,3597.512,5.287202688,155.69959,0.10372095,187.7995275,1803.04325,444.68304,449.7393031,498.7275571,0.10372095,444.68304,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 20:00,19514936,3597.512,5.25669925,175.855412,0.10372095,200.41671,1965.0781,587.023492,589.9778225,664.9578857,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 21:00,19518670,3597.512,5.226195813,196.011234,0.10372095,213.0338925,2127.11295,729.363944,730.2163419,831.1882143,0.10372095,729.363944,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 22:00,19522404,3597.512,5.195692375,216.167056,0.10372095,225.651075,2289.1478,871.704396,870.4548613,997.4185429,0.10372095,871.704396,130901.3,73179.4,-15784.6,-201976.5
+8/14/2023 23:00,19526138,3597.512,5.165188938,236.322878,0.10372095,238.2682575,2451.18265,1014.044848,1010.693381,1163.648871,0.10372095,1014.044848,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 0:00,19529872,3597.512,5.1346855,256.4787,0.10372095,250.88544,2613.2175,1156.3853,1150.9319,1329.8792,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 1:00,19532332,3597.512,5.129355433,256.46165,0.10372095,217.46808,2200.427,776.8107613,845.4721333,1329.876367,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 2:00,19534792,3597.512,5.124025367,256.4446,0.10372095,184.05072,1787.6365,397.2362227,540.0123667,1329.873533,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 3:00,19537252,3597.512,5.1186953,256.42755,0.10372095,150.63336,1374.846,17.661684,234.5526,1329.8707,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 4:00,19540889,3597.512,5.11021915,256.404585,0.10372095,188.195745,1997.49085,587.023492,742.76385,1329.90415,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 5:00,19544526,3597.512,5.101743,256.38162,0.10372095,225.75813,2620.1357,1156.3853,1250.9751,1329.9376,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 6:00,19548411.17,3597.512,22.47287858,260.481835,4.775377538,3169.490202,2809.658367,1164.959617,39593.39134,1316.603758,4.775377538,1164.959617,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 7:00,19552296.33,3597.512,39.84401417,264.58205,9.447034125,6113.222275,2999.181033,1173.533933,77935.80758,1303.269917,9.447034125,1173.533933,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 8:00,19556181.5,3597.512,57.21514975,268.682265,14.11869071,9056.954348,3188.7037,1182.10825,116278.2238,1289.936075,14.11869071,1182.10825,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 9:00,19560066.67,3597.512,74.58628533,272.78248,18.7903473,12000.68642,3378.226367,1190.682567,154620.6401,1276.602233,18.7903473,1190.682567,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 10:00,19563951.83,3597.512,91.95742092,276.882695,23.46200389,14944.41849,3567.749033,1199.256883,192963.0563,1263.268392,23.46200389,1199.256883,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 11:00,19567837,3597.512,109.3285565,280.98291,28.13366048,17888.15056,3757.2717,1207.8312,231305.4726,1249.93455,28.13366048,1207.8312,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 12:00,19571722.17,3597.512,126.6996921,285.083125,32.80531706,20831.88264,3946.794367,1216.405517,269647.8888,1236.600708,32.80531706,1216.405517,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 13:00,19575607.33,3597.512,144.0708277,289.18334,37.47697365,23775.61471,4136.317033,1224.979833,307990.305,1223.266867,37.47697365,1224.979833,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 14:00,19579492.5,3597.512,161.4419633,293.283555,42.14863024,26719.34678,4325.8397,1233.55415,346332.7213,1209.933025,42.14863024,1233.55415,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 15:00,19583377.67,3597.512,178.8130988,297.38377,46.82028683,29663.07885,4515.362367,1242.128467,384675.1375,1196.599183,46.82028683,1242.128467,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 16:00,19587262.83,3597.512,196.1842344,301.483985,51.49194341,32606.81093,4704.885033,1250.702783,423017.5538,1183.265342,51.49194341,1250.702783,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 17:00,19591148,3597.512,213.55537,305.5842,56.1636,35550.543,4894.4077,1259.2771,461359.97,1169.9315,56.1636,1259.2771,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 18:00,19591208,3597.512,213.54228,252.02277,1.6771202,35570.21,4895.0474,1259.9166,461359.97,1191.9579,1.6771202,1259.9166,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 19:00,19595604,3597.512,184.74041,199.88382,28.4420801,36650.2985,3855.365,1232.25345,233069.3173,596.1070836,28.4420801,1232.25345,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 20:00,19600000,3597.512,155.93854,147.74487,55.20704,37730.387,2815.6826,1204.5903,4778.6646,0.2562671,55.20704,1204.5903,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 21:00,19604053,3597.512,118.2483456,171.3351575,41.43121024,28389.14316,2740.80495,1192.53905,3646.022018,251.1448678,41.43121024,1192.53905,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 22:00,19608106,3597.512,80.55815125,194.925445,27.65538048,19047.89933,2665.9273,1180.4878,2513.379435,502.0334686,27.65538048,1180.4878,130901.3,73179.4,-15784.6,-201976.5
+8/15/2023 23:00,19612159,3597.512,42.86795688,218.5157325,13.87955071,9706.655488,2591.04965,1168.43655,1380.736852,752.9220693,13.87955071,1168.43655,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 0:00,19616212,3597.512,5.1777625,242.10602,0.10372095,365.41165,2516.172,1156.3853,248.09427,1003.81067,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 1:00,19618714,3597.512,5.171916167,242.09332,0.10372095,293.9756667,1700.136503,775.8703833,165.3973311,1003.807613,0.10372095,775.8703833,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 2:00,19621216,3597.512,5.166069833,242.08062,0.10372095,222.5396833,884.1010067,395.3554667,82.70039211,1003.804557,0.10372095,395.3554667,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 3:00,19623718,3597.512,5.1602235,242.06792,0.10372095,151.1037,68.06551,14.84055,0.003453164,1003.8015,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 4:00,19627314.5,3597.512,65.72570013,188.8963023,0.684893288,10172.91653,708.7798575,288.2769625,579.0891399,752.8513916,0.684893288,288.2769625,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 5:00,19630911,3597.512,126.2911768,135.7246845,1.266065625,20194.72935,1349.494205,561.713375,1158.174827,501.9012832,1.266065625,561.713375,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 6:00,19634507.5,3597.512,186.8566534,82.55306675,1.847237963,30216.54218,1990.208553,835.1497875,1737.260513,250.9511749,1.847237963,835.1497875,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 7:00,19638104,3597.512,247.42213,29.381449,2.4284103,40238.355,2630.9229,1108.5862,2316.3462,0.001066472,2.4284103,1108.5862,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 8:00,19643616,3597.512,248.7719,166.3044,56.596413,36104.14,2375.6934,395.4386,28810.617,8.816272,56.596413,395.4386,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 9:00,19647388.44,3597.512,244.6240611,183.0528778,56.55072433,36019.26033,2655.876244,491.747,76871.65622,170.3767418,56.55072433,491.747,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 10:00,19651160.89,3597.512,240.4762222,199.8013556,56.50503567,35934.38067,2936.059089,588.0554,124932.6954,331.9372116,56.50503567,588.0554,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 11:00,19654933.33,3597.512,236.3283833,216.5498333,56.459347,35849.501,3216.241933,684.3638,172993.7347,493.4976813,56.459347,684.3638,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 12:00,19658705.78,3597.512,232.1805444,233.2983111,56.41365833,35764.62133,3496.424778,780.6722,221054.7739,655.0581511,56.41365833,780.6722,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 13:00,19662478.22,3597.512,228.0327056,250.0467889,56.36796967,35679.74167,3776.607622,876.9806,269115.8131,816.6186209,56.36796967,876.9806,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 14:00,19666250.67,3597.512,223.8848667,266.7952667,56.322281,35594.862,4056.790467,973.289,317176.8523,978.1790907,56.322281,973.289,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 15:00,19670023.11,3597.512,219.7370278,283.5437444,56.27659233,35509.98233,4336.973311,1069.5974,365237.8916,1139.73956,56.27659233,1069.5974,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 16:00,19673795.56,3597.512,215.5891889,300.2922222,56.23090367,35425.10267,4617.156156,1165.9058,413298.9308,1301.30003,56.23090367,1165.9058,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 17:00,19677568,3597.512,211.44135,317.0407,56.185215,35340.223,4897.339,1262.2142,461359.97,1462.8605,56.185215,1262.2142,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 18:00,19677628,3597.512,211.42493,263.90326,1.7004601,35357.996,4897.9897,1262.8649,461359.97,1497.2545,1.7004601,1262.8649,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 19:00,19681356.67,3597.512,218.5262,259.22015,10.86394758,35239.5755,4690.71075,1250.059967,401858.935,1282.492762,10.86394758,1250.059967,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 20:00,19685085.33,3597.512,225.62747,254.53704,20.02743507,35121.155,4483.4318,1237.255033,342357.9,1067.731023,20.02743507,1237.255033,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 21:00,19688814,3597.512,232.72874,249.85393,29.19092255,35002.7345,4276.15285,1224.4501,282856.865,852.969285,29.19092255,1224.4501,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 22:00,19692542.67,3597.512,239.83001,245.17082,38.35441003,34884.314,4068.8739,1211.645167,223355.83,638.2075467,38.35441003,1211.645167,130901.3,73179.4,-15784.6,-201976.5
+8/16/2023 23:00,19696271.33,3597.512,246.93128,240.48771,47.51789752,34765.8935,3861.59495,1198.840233,163854.795,423.4458083,47.51789752,1198.840233,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 0:00,19700000,3597.512,254.03255,235.8046,56.681385,34647.473,3654.316,1186.0353,104353.76,208.68407,56.681385,1186.0353,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 1:00,19703354,3597.512,171.0570435,242.0662767,37.82216365,23148.65188,2874.584967,796.577428,69577.73051,574.46288,37.82216365,796.577428,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 2:00,19706708,3597.512,88.081537,248.3279533,18.9629423,11649.83076,2094.853933,407.119556,34801.70102,940.24169,18.9629423,407.119556,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 3:00,19710062,3597.512,5.1060305,254.58963,0.10372095,151.00964,1315.1229,17.661684,25.671537,1306.0205,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 4:00,19713726,3597.512,6.084055333,178.624195,0.103619271,10672.18409,1709.200167,384.121856,140.803098,870.6806797,0.103619271,384.121856,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 5:00,19717390,3597.512,7.062080167,102.65876,0.103517593,21193.35855,2103.277433,750.582028,255.934659,435.3408594,0.103517593,750.582028,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 6:00,19721054,3597.512,8.040105,26.693325,0.103415914,31714.533,2497.3547,1117.0422,371.06622,0.00103912,0.103415914,1117.0422,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 7:00,19726588,3597.512,250.0945,152.77332,56.63103,39835.64,1952.7838,410.1099,2785.0564,1.2347878,56.63103,410.1099,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 8:00,19730327,3597.512,246.115423,163.948176,51.13923192,39379.4987,2247.33696,495.41858,48642.54776,153.213199,51.13923192,495.41858,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 9:00,19734066,3597.512,242.136346,175.123032,45.64743384,38923.3574,2541.89012,580.72726,94500.03912,305.1916102,45.64743384,580.72726,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 10:00,19737805,3597.512,238.157269,186.297888,40.15563576,38467.2161,2836.44328,666.03594,140357.5305,457.1700215,40.15563576,666.03594,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 11:00,19741544,3597.512,234.178192,197.472744,34.66383768,38011.0748,3130.99644,751.34462,186215.0218,609.1484327,34.66383768,751.34462,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 12:00,19745283,3597.512,230.199115,208.6476,29.1720396,37554.9335,3425.5496,836.6533,232072.5132,761.1268439,29.1720396,836.6533,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 13:00,19749022,3597.512,226.220038,219.822456,23.68024152,37098.7922,3720.10276,921.96198,277930.0046,913.1052551,23.68024152,921.96198,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 14:00,19752761,3597.512,222.240961,230.997312,18.18844344,36642.6509,4014.65592,1007.27066,323787.4959,1065.083666,18.18844344,1007.27066,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 15:00,19756500,3597.512,218.261884,242.172168,12.69664536,36186.5096,4309.20908,1092.57934,369644.9873,1217.062078,12.69664536,1092.57934,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 16:00,19760239,3597.512,214.282807,253.347024,7.20484728,35730.3683,4603.76224,1177.88802,415502.4786,1369.040489,7.20484728,1177.88802,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 17:00,19763978,3597.512,210.30373,264.52188,1.7130492,35274.227,4898.3154,1263.1967,461359.97,1521.0189,1.7130492,1263.1967,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 18:00,19767555.71,3597.512,180.9841309,263.2442329,1.483145164,30284.28787,4561.9343,1247.937929,395511.3664,1494.779657,1.483145164,1247.937929,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 19:00,19771133.43,3597.512,151.6645318,261.9665857,1.253241129,25294.34874,4225.5532,1232.679157,329662.7628,1468.540414,1.253241129,1232.679157,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 20:00,19774711.14,3597.512,122.3449327,260.6889386,1.023337093,20304.40961,3889.1721,1217.420386,263814.1591,1442.301171,1.023337093,1217.420386,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 21:00,19778288.86,3597.512,93.02533366,259.4112914,0.793433057,15314.47047,3552.791,1202.161614,197965.5555,1416.061929,0.793433057,1202.161614,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 22:00,19781866.57,3597.512,63.70573457,258.1336443,0.563529021,10324.53134,3216.4099,1186.902843,132116.9519,1389.822686,0.563529021,1186.902843,130901.3,73179.4,-15784.6,-201976.5
+8/17/2023 23:00,19785444.29,3597.512,34.38613549,256.8559971,0.333624986,5334.592211,2880.0288,1171.644071,66268.34828,1363.583443,0.333624986,1171.644071,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 0:00,19789022,3597.512,5.0665364,255.57835,0.10372095,344.65308,2543.6477,1156.3853,419.74466,1337.3442,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 1:00,19791519.33,3597.512,5.0614317,255.5704933,0.10372095,280.0872167,1720.337857,775.8703833,279.8312315,1337.3414,0.10372095,775.8703833,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 2:00,19794016.67,3597.512,5.056327,255.5626367,0.10372095,215.5213533,897.0280133,395.3554667,139.917803,1337.3386,0.10372095,395.3554667,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 3:00,19796514,3597.512,5.0512223,255.55478,0.10372095,150.95549,73.71817,14.84055,0.00437455,1337.3358,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 4:00,19800000,3597.512,229.13481,366.3631,56.570675,30974.547,4798.307,1163.1871,461359.97,2817.77,56.570675,1163.1871,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 5:00,19803627.33,3597.512,234.5006567,253.84597,38.5465668,33898.398,4200.4514,1189.490333,311489.1913,1878.513672,38.5465668,1189.490333,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 6:00,19807254.67,3597.512,239.8665033,141.32884,20.5224586,36822.249,3602.5958,1215.793567,161618.4127,939.257344,20.5224586,1215.793567,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 7:00,19810882,3597.512,245.23235,28.81171,2.4983504,39746.1,3004.7402,1242.0968,11747.634,0.001015928,2.4983504,1242.0968,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 8:00,19814830.6,3597.512,241.653694,57.940912,7.86901856,39289.853,3194.20028,1244.3099,56708.8676,155.5697743,7.86901856,1244.3099,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 9:00,19818779.2,3597.512,238.075038,87.070114,13.23968672,38833.606,3383.66036,1246.523,101670.1012,311.1385327,13.23968672,1246.523,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 10:00,19822727.8,3597.512,234.496382,116.199316,18.61035488,38377.359,3573.12044,1248.7361,146631.3348,466.7072911,18.61035488,1248.7361,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 11:00,19826676.4,3597.512,230.917726,145.328518,23.98102304,37921.112,3762.58052,1250.9492,191592.5684,622.2760496,23.98102304,1250.9492,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 12:00,19830625,3597.512,227.33907,174.45772,29.3516912,37464.865,3952.0406,1253.1623,236553.802,777.844808,29.3516912,1253.1623,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 13:00,19834573.6,3597.512,223.760414,203.586922,34.72235936,37008.618,4141.50068,1255.3754,281515.0356,933.4135664,34.72235936,1255.3754,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 14:00,19838522.2,3597.512,220.181758,232.716124,40.09302752,36552.371,4330.96076,1257.5885,326476.2692,1088.982325,40.09302752,1257.5885,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 15:00,19842470.8,3597.512,216.603102,261.845326,45.46369568,36096.124,4520.42084,1259.8016,371437.5028,1244.551083,45.46369568,1259.8016,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 16:00,19846419.4,3597.512,213.024446,290.974528,50.83436384,35639.877,4709.88092,1262.0147,416398.7364,1400.119842,50.83436384,1262.0147,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 17:00,19850368,3597.512,209.44579,320.10373,56.205032,35183.63,4899.341,1264.2278,461359.97,1555.6886,56.205032,1264.2278,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 18:00,19850428,3597.512,209.42786,266.97528,1.7218744,35202.375,4899.9834,1264.8701,461359.97,1590.585,1.7218744,1264.8701,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 19:00,19854601,3597.512,175.3637828,265.631545,1.452182158,29378.83484,4518.963617,1246.7893,384660.0424,1563.381733,1.452182158,1246.7893,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 20:00,19858774,3597.512,141.2997057,264.28781,1.182489917,23555.29468,4137.943833,1228.7085,307960.1149,1536.178467,1.182489917,1228.7085,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 21:00,19862947,3597.512,107.2356285,262.944075,0.912797675,17731.75452,3756.92405,1210.6277,231260.1874,1508.9752,0.912797675,1210.6277,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 22:00,19867120,3597.512,73.17155133,261.60034,0.643105433,11908.21435,3375.904267,1192.5469,154560.2598,1481.771933,0.643105433,1192.5469,130901.3,73179.4,-15784.6,-201976.5
+8/18/2023 23:00,19871293,3597.512,39.10747417,260.256605,0.373413192,6084.674192,2994.884483,1174.4661,77860.33225,1454.568667,0.373413192,1174.4661,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 0:00,19875466,3597.512,5.043397,258.91287,0.10372095,261.13403,2613.8647,1156.3853,1160.4047,1427.3654,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 1:00,19877929.33,3597.512,5.038196433,258.9064133,0.10372095,224.25431,2201.1343,776.8107613,853.2431233,1427.3629,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 2:00,19880392.67,3597.512,5.032995867,258.8999567,0.10372095,187.37459,1788.4039,397.2362227,546.0815467,1427.3604,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 3:00,19882856,3597.512,5.0277953,258.8935,0.10372095,150.49487,1375.6735,17.661684,238.91997,1427.3579,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 4:00,19887142,3597.512,56.05813398,275.4020425,14.13032471,8882.668653,2255.7367,328.449513,115519.1825,1490.5469,14.13032471,328.449513,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 5:00,19891428,3597.512,107.0884726,291.910585,28.15692847,17614.84244,3135.7999,639.237342,230799.445,1553.7359,28.15692847,639.237342,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 6:00,19895714,3597.512,158.1188113,308.4191275,42.18353224,26347.01622,4015.8631,950.025171,346079.7075,1616.9249,42.18353224,950.025171,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 7:00,19900000,3597.512,209.14915,324.92767,56.210136,35079.19,4895.9263,1260.813,461359.97,1680.1139,56.210136,1260.813,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 8:00,19903212.8,3597.512,168.3600528,311.705588,44.98885299,35025.1168,4890.19444,1255.08196,461359.97,1629.59452,44.98885299,1255.08196,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 9:00,19906425.6,3597.512,127.5709556,298.483506,33.76756998,34971.0436,4884.46258,1249.35092,461359.97,1579.07514,33.76756998,1249.35092,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 10:00,19909638.4,3597.512,86.7818584,285.261424,22.54628697,34916.9704,4878.73072,1243.61988,461359.97,1528.55576,22.54628697,1243.61988,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 11:00,19912851.2,3597.512,45.9927612,272.039342,11.32500396,34862.8972,4872.99886,1237.88884,461359.97,1478.03638,11.32500396,1237.88884,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 12:00,19916064,3597.512,5.203664,258.81726,0.10372095,34808.824,4867.267,1232.1578,461359.97,1427.517,0.10372095,1232.1578,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 13:00,19920849,3597.512,5.25955375,200.577385,27.46659447,33937.3005,4848.3675,1213.25845,461359.97,713.7642074,27.46659447,1213.25845,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 14:00,19925634,3597.512,5.3154435,142.33751,54.829468,33065.777,4829.468,1194.3591,461359.97,0.011414842,54.829468,1194.3591,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 15:00,19927104,3597.512,5.3111753,26.079704,0.103415914,32884.605,4824.722,1189.6136,461359.97,0.000992274,0.103415914,1189.6136,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 16:00,19931899,3597.512,5.2961528,57.979647,0.103568432,34304.455,4859.1957,1224.0876,461359.97,0.056300477,0.103568432,1224.0876,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 17:00,19936694,3597.512,5.2811303,89.87959,0.10372095,35724.305,4893.6694,1258.5616,461359.97,0.11160868,0.10372095,1258.5616,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 18:00,19940285.71,3597.512,5.265784257,89.82241571,0.10372095,30665.41106,4570.575271,1243.964986,395656.433,0.108022276,0.10372095,1243.964986,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 19:00,19943877.43,3597.512,5.250438214,89.76524143,0.10372095,25606.51711,4247.481143,1229.368371,329952.896,0.104435871,0.10372095,1229.368371,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 20:00,19947469.14,3597.512,5.235092171,89.70806714,0.10372095,20547.62317,3924.387014,1214.771757,264249.359,0.100849467,0.10372095,1214.771757,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 21:00,19951060.86,3597.512,5.219746129,89.65089286,0.10372095,15488.72923,3601.292886,1200.175143,198545.8219,0.097263063,0.10372095,1200.175143,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 22:00,19954652.57,3597.512,5.204400086,89.59371857,0.10372095,10429.83529,3278.198757,1185.578529,132842.2849,0.093676659,0.10372095,1185.578529,130901.3,73179.4,-15784.6,-201976.5
+8/19/2023 23:00,19958244.29,3597.512,5.189054043,89.53654429,0.10372095,5370.941343,2955.104629,1170.981914,67138.74791,0.090090254,0.10372095,1170.981914,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 0:00,19961836,3597.512,5.173708,89.47937,0.10372095,312.0474,2632.0105,1156.3853,1435.2109,0.08650385,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 1:00,19964313.33,3597.512,5.166665667,89.47050467,0.10372095,256.8604167,2217.181067,776.8107613,1058.419947,0.086279087,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 2:00,19966790.67,3597.512,5.159623333,89.46163933,0.10372095,201.6734333,1802.351633,397.2362227,681.6289933,0.086054323,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 3:00,19969268,3597.512,5.152581,89.452774,0.10372095,146.48645,1387.5222,17.661684,304.83804,0.08582956,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 4:00,19973109.5,3597.512,5.1615675,89.4671735,0.10372095,4391.039894,1820.515338,167.4990485,57936.72954,0.086438414,0.10372095,167.4990485,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 5:00,19976951,3597.512,5.170554,89.481573,0.10372095,8635.593338,2253.508475,317.336413,115568.621,0.087047268,0.10372095,317.336413,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 6:00,19980792.5,3597.512,5.1795405,89.4959725,0.10372095,12880.14678,2686.501613,467.1737775,173200.5125,0.087656121,0.10372095,467.1737775,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 7:00,19984634,3597.512,5.188527,89.510372,0.10372095,17124.70023,3119.49475,617.011142,230832.404,0.088264975,0.10372095,617.011142,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 8:00,19988475.5,3597.512,5.1975135,89.5247715,0.10372095,21369.25367,3552.487888,766.8485065,288464.2955,0.088873829,0.10372095,766.8485065,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 9:00,19992317,3597.512,5.2065,89.539171,0.10372095,25613.80711,3985.481025,916.685871,346096.187,0.089482683,0.10372095,916.685871,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 10:00,19996158.5,3597.512,5.2154865,89.5535705,0.10372095,29858.36056,4418.474163,1066.523236,403728.0785,0.090091536,0.10372095,1066.523236,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 11:00,20000000,3597.512,5.224473,89.56797,0.10372095,34102.914,4851.4673,1216.3606,461359.97,0.09070039,0.10372095,1216.3606,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 12:00,20003707.38,3597.512,5.239396846,89.54605,0.10372095,31511.39337,4667.147531,1211.747115,425872.9278,0.090294136,0.10372095,1211.747115,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 13:00,20007414.77,3597.512,5.254320692,89.52413,0.10372095,28919.87274,4482.827762,1207.133631,390385.8855,0.089887882,0.10372095,1207.133631,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 14:00,20011122.15,3597.512,5.269244538,89.50221,0.10372095,26328.35212,4298.507992,1202.520146,354898.8433,0.089481628,0.10372095,1202.520146,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 15:00,20014829.54,3597.512,5.284168385,89.48029,0.10372095,23736.83149,4114.188223,1197.906662,319411.801,0.089075375,0.10372095,1197.906662,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 16:00,20018536.92,3597.512,5.299092231,89.45837,0.10372095,21145.31086,3929.868454,1193.293177,283924.7588,0.088669121,0.10372095,1193.293177,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 17:00,20022244.31,3597.512,5.314016077,89.43645,0.10372095,18553.79023,3745.548685,1188.679692,248437.7166,0.088262867,0.10372095,1188.679692,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 18:00,20025951.69,3597.512,5.328939923,89.41453,0.10372095,15962.26961,3561.228915,1184.066208,212950.6743,0.087856613,0.10372095,1184.066208,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 19:00,20029659.08,3597.512,5.343863769,89.39261,0.10372095,13370.74898,3376.909146,1179.452723,177463.6321,0.087450359,0.10372095,1179.452723,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 20:00,20033366.46,3597.512,5.358787615,89.37069,0.10372095,10779.22835,3192.589377,1174.839238,141976.5898,0.087044105,0.10372095,1174.839238,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 21:00,20037073.85,3597.512,5.373711462,89.34877,0.10372095,8187.707723,3008.269608,1170.225754,106489.5476,0.086637852,0.10372095,1170.225754,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 22:00,20040781.23,3597.512,5.388635308,89.32685,0.10372095,5596.187095,2823.949838,1165.612269,71002.50535,0.086231598,0.10372095,1165.612269,130901.3,73179.4,-15784.6,-201976.5
+8/20/2023 23:00,20044488.62,3597.512,5.403559154,89.30493,0.10372095,3004.666468,2639.630069,1160.998785,35515.46311,0.085825344,0.10372095,1160.998785,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 0:00,20048196,3597.512,5.418483,89.28301,0.10372095,413.14584,2455.3103,1156.3853,28.420874,0.08541909,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 1:00,20050710,3597.512,5.411060333,89.27811333,0.10372095,326.1101267,1647.929945,775.8703833,18.94735426,0.085418717,0.10372095,775.8703833,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 2:00,20053224,3597.512,5.403637667,89.27321667,0.10372095,239.0744133,840.54959,395.3554667,9.473834519,0.085418343,0.10372095,395.3554667,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 3:00,20055738,3597.512,5.396215,89.26832,0.10372095,152.0387,33.169235,14.84055,0.000314778,0.08541797,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 4:00,20059342,3597.512,5.3857427,89.467985,0.10372095,204.47432,1283.956318,585.612925,179.0993224,0.08543319,0.10372095,585.612925,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 5:00,20062946,3597.512,5.3752704,89.66765,0.10372095,256.90994,2534.7434,1156.3853,358.19833,0.08544841,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 6:00,20067349,3597.512,178.0115952,271.70565,26.42197547,20088.83397,2246.96955,786.2151,1577.718165,0.330632075,26.42197547,786.2151,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 7:00,20071752,3597.512,350.64792,453.74365,52.74023,39920.758,1959.1957,416.0449,2797.238,0.57581574,52.74023,416.0449,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 8:00,20074278,3597.512,260.54016,304.7253,2.0092525,37697.723,2109.21,392.954,9238.349,0.1736854,2.0092525,392.954,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 9:00,20077504,3597.512,262.46597,205.9054,2.047896,35232.605,2229.1858,360.04068,18874.586,0.06376063,2.047896,360.04068,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 10:00,20081253.33,3597.512,219.6250194,186.4676817,1.723866825,29386.22121,2074.332533,302.977514,15730.04546,0.067370323,1.723866825,302.977514,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 11:00,20085002.67,3597.512,176.7840689,167.0299633,1.39983765,23539.83741,1919.479267,245.914348,12585.50492,0.070980017,1.39983765,245.914348,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 12:00,20088752,3597.512,133.9431183,147.592245,1.075808475,17693.45362,1764.626,188.851182,9440.964383,0.07458971,1.075808475,188.851182,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 13:00,20092501.33,3597.512,91.10216773,128.1545267,0.7517793,11847.06982,1609.772733,131.788016,6296.423845,0.078199403,0.7517793,131.788016,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 14:00,20096250.67,3597.512,48.26121717,108.7168083,0.427750125,6000.686025,1454.919467,74.72485,3151.883306,0.081809097,0.427750125,74.72485,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 15:00,20100000,3597.512,5.4202666,89.27909,0.10372095,154.30223,1300.0662,17.661684,7.342767,0.08541879,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 16:00,20104719,3597.512,112.6204333,160.083185,28.10288797,18055.75112,3093.9408,635.190142,230683.6564,5.916170645,28.10288797,635.190142,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 17:00,20109438,3597.512,219.8206,230.88728,56.102055,35957.2,4887.8154,1252.7186,461359.97,11.7469225,56.102055,1252.7186,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 18:00,20113018,3597.512,189.1848971,218.7237129,48.10229299,30920.5818,4537.528986,1238.9567,395452.1658,10.8921391,48.10229299,1238.9567,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 19:00,20116598,3597.512,158.5491941,206.5601457,40.10253099,25883.9636,4187.242571,1225.1948,329544.3617,10.0373557,40.10253099,1225.1948,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 20:00,20120178,3597.512,127.9134912,194.3965786,32.10276898,20847.3454,3836.956157,1211.4329,263636.5575,9.1825723,32.10276898,1211.4329,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 21:00,20123758,3597.512,97.27778823,182.2330114,24.10300697,15810.7272,3486.669743,1197.671,197728.7533,8.3277889,24.10300697,1197.671,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 22:00,20127338,3597.512,66.64208529,170.0694443,16.10324496,10774.109,3136.383329,1183.9091,131820.9492,7.4730055,16.10324496,1183.9091,130901.3,73179.4,-15784.6,-201976.5
+8/21/2023 23:00,20130918,3597.512,36.00638234,157.9058771,8.103482957,5737.4908,2786.096914,1170.1472,65913.145,6.6182221,8.103482957,1170.1472,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 0:00,20134498,3597.512,5.3706794,145.74231,0.10372095,700.8726,2435.8105,1156.3853,5.3408303,5.7634387,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 1:00,20137022.67,3597.512,5.363601933,144.4347533,0.10372095,518.0657867,1855.557953,776.8107613,3.82914,5.7626478,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 2:00,20139547.33,3597.512,5.356524467,143.1271967,0.10372095,335.2589733,1275.305407,397.2362227,2.3174497,5.7618569,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 3:00,20142072,3597.512,5.349447,141.81964,0.10372095,152.45216,695.05286,17.661684,0.8057594,5.761066,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 4:00,20145932,3597.512,5.33603225,140.5655,0.10372095,988.68493,1608.62323,587.023492,141.0478697,5.76076365,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 5:00,20149792,3597.512,5.3226175,139.31136,0.10372095,1824.9177,2522.1936,1156.3853,281.28998,5.7604613,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 6:00,20155808,3597.512,241.42903,161.11255,52.224724,40144.156,2499.2227,1086.4054,633.309,5.756396,52.224724,1086.4054,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 7:00,20156708,3597.512,257.07275,107.14298,1.9923725,40564.688,2176.3687,735.80023,935.94977,5.7560844,1.9923725,735.80023,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 8:00,20160203,3597.512,259.141995,105.95345,2.0335885,38020.8675,2181.14665,545.07544,8528.090385,5.7568004,2.0335885,545.07544,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 9:00,20163698,3597.512,261.21124,104.76392,2.0748045,35477.047,2185.9246,354.35065,16120.231,5.7575164,2.0748045,354.35065,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 10:00,20167730.25,3597.512,255.61131,123.5699225,8.832675813,35511.36675,2524.225463,467.2118187,71775.19837,57.77752685,8.832675813,467.2118187,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 11:00,20171762.5,3597.512,250.01138,142.375925,15.59054713,35545.6865,2862.526325,580.0729875,127430.1657,109.7975373,15.59054713,580.0729875,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 12:00,20175794.75,3597.512,244.41145,161.1819275,22.34841844,35580.00625,3200.827188,692.9341563,183085.1331,161.8175478,22.34841844,692.9341563,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 13:00,20179827,3597.512,238.81152,179.98793,29.10628975,35614.326,3539.12805,805.795325,238740.1005,213.8375582,29.10628975,805.795325,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 14:00,20183859.25,3597.512,233.21159,198.7939325,35.86416106,35648.64575,3877.428913,918.6564938,294395.0679,265.8575686,35.86416106,918.6564938,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 15:00,20187891.5,3597.512,227.61166,217.599935,42.62203237,35682.9655,4215.729775,1031.517663,350050.0352,317.8775791,42.62203237,1031.517663,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 16:00,20191923.75,3597.512,222.01173,236.4059375,49.37990369,35717.28525,4554.030638,1144.378831,405705.0026,369.8975896,49.37990369,1144.378831,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 17:00,20195956,3597.512,216.4118,255.21194,56.137775,35751.605,4892.3315,1257.24,461359.97,421.9176,56.137775,1257.24,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 18:00,20196016,3597.512,216.39484,202.0559,1.6490364,35769.402,4892.992,1257.9004,461359.97,435.36273,1.6490364,1257.9004,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 19:00,20200000,3597.512,12.795154,130.41125,50.506348,3875.8015,2521.45,1156.3853,277.07925,5.7550755,50.506348,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 20:00,20204162.4,3597.512,11.2867332,142.247378,40.42582259,3308.78624,2504.30708,1156.3853,222.3924236,71.4524244,40.42582259,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 21:00,20208324.8,3597.512,9.7783124,154.083506,30.34529718,2741.77098,2487.16416,1156.3853,167.7055971,137.1497733,30.34529718,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 22:00,20212487.2,3597.512,8.2698916,165.919634,20.26477177,2174.75572,2470.02124,1156.3853,113.0187707,202.8471222,20.26477177,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/22/2023 23:00,20216649.6,3597.512,6.7614708,177.755762,10.18424636,1607.74046,2452.87832,1156.3853,58.33194424,268.5444711,10.18424636,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 0:00,20220812,3597.512,5.25305,189.59189,0.10372095,1040.7252,2435.7354,1156.3853,3.6451178,334.24182,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 1:00,20223365.33,3597.512,5.246688333,189.52559,0.10372095,744.6353633,1848.794633,776.8107613,2.682325733,334.2397867,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 2:00,20225918.67,3597.512,5.240326667,189.45929,0.10372095,448.5455267,1261.853867,397.2362227,1.719533667,334.2377533,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 3:00,20228472,3597.512,5.233965,189.39299,0.10372095,152.45569,674.9131,17.661684,0.7567416,334.23572,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 4:00,20232315.5,3597.512,70.46124125,204.8803225,13.25328496,10305.49427,954.132525,116.106088,93.4554812,334.235815,13.25328496,116.106088,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 5:00,20236159,3597.512,135.6885175,220.367655,26.40284897,20458.53284,1233.35195,214.550492,186.1542208,334.23591,26.40284897,214.550492,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 6:00,20240002.5,3597.512,200.9157938,235.8549875,39.55241299,30611.57142,1512.571375,312.994896,278.8529604,334.236005,39.55241299,312.994896,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 7:00,20243846,3597.512,266.14307,251.34232,52.701977,40764.61,1791.7908,411.4393,371.5517,334.2361,52.701977,411.4393,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 8:00,20248380,3597.512,264.011505,222.01469,27.36507415,37555.04,2011.1101,378.914385,10211.70335,334.235785,27.36507415,378.914385,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 9:00,20252914,3597.512,261.87994,192.68706,2.0281713,34345.47,2230.4294,346.38947,20051.855,334.23547,2.0281713,346.38947,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 10:00,20253674,3597.512,261.83,192.63724,2.0273287,34246.83,2266.0332,356.1289,22209.303,334.2609,2.0273287,356.1289,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 11:00,20257755.43,3597.512,255.7793957,189.7850771,9.753715743,34488.52429,2640.645643,484.2867857,84945.11257,289.7641267,9.753715743,484.2867857,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 12:00,20261836.86,3597.512,249.7287914,186.9329143,17.48010279,34730.21857,3015.258086,612.4446714,147680.9221,245.2673534,17.48010279,612.4446714,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 13:00,20265918.29,3597.512,243.6781871,184.0807514,25.20648983,34971.91286,3389.870529,740.6025571,210416.7317,200.7705801,25.20648983,740.6025571,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 14:00,20269999.71,3597.512,237.6275829,181.2285886,32.93287687,35213.60714,3764.482971,868.7604429,273152.5413,156.2738069,32.93287687,868.7604429,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 15:00,20274081.14,3597.512,231.5769786,178.3764257,40.65926391,35455.30143,4139.095414,996.9183286,335888.3509,111.7770336,40.65926391,996.9183286,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 16:00,20278162.57,3597.512,225.5263743,175.5242629,48.38565096,35696.99571,4513.707857,1125.076214,398624.1604,67.28026029,48.38565096,1125.076214,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 17:00,20282244,3597.512,219.47577,172.6721,56.112038,35938.69,4888.3203,1253.2341,461359.97,22.783487,56.112038,1253.2341,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 18:00,20285795.2,3597.512,228.128968,176.72551,45.29906158,35894.832,4336.32764,1072.47944,371629.5314,85.0738896,45.29906158,1072.47944,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 19:00,20289346.4,3597.512,236.782166,180.77892,34.48608516,35850.974,3784.33498,891.72478,281899.0928,147.3642922,34.48608516,891.72478,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 20:00,20292897.6,3597.512,245.435364,184.83233,23.67310874,35807.116,3232.34232,710.97012,192168.6542,209.6546948,23.67310874,710.97012,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 21:00,20296448.8,3597.512,254.088562,188.88574,12.86013232,35763.258,2680.34966,530.21546,102438.2156,271.9450974,12.86013232,530.21546,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 22:00,20300000,3597.512,262.74176,192.93915,2.0471559,35719.4,2128.357,349.4608,12707.777,334.2355,2.0471559,349.4608,130901.3,73179.4,-15784.6,-201976.5
+8/23/2023 23:00,20303722,3597.512,134.0205409,150.10064,1.075438425,18010.84194,1720.2082,183.561242,6364.216575,173.2990605,1.075438425,183.561242,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 0:00,20307444,3597.512,5.2993217,107.26213,0.10372095,302.28387,1312.0594,17.661684,20.656149,12.362621,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 1:00,20309918.67,3597.512,5.292360033,107.2057187,0.10372095,252.28701,1131.518747,17.661684,14.10547023,12.362087,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 2:00,20312393.33,3597.512,5.285398367,107.1493073,0.10372095,202.29015,950.9780933,17.661684,7.554791467,12.361553,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 3:00,20314868,3597.512,5.2784367,107.092896,0.10372095,152.29329,770.43744,17.661684,1.0041127,12.361019,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 4:00,20318646.5,3597.512,66.69762253,107.568602,0.651917913,10266.19547,1040.797355,117.455148,218.0592345,12.3609805,0.651917913,117.455148,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 5:00,20322425,3597.512,128.1168083,108.044308,1.200114875,20380.09765,1311.15727,217.248612,435.1143564,12.360942,1.200114875,217.248612,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 6:00,20326203.5,3597.512,189.5359942,108.520014,1.748311837,30493.99982,1581.517185,317.042076,652.1694782,12.3609035,1.748311837,317.042076,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 7:00,20329982,3597.512,250.95518,108.99572,2.2965088,40607.902,1851.8771,416.83554,869.2246,12.360865,2.2965088,416.83554,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 8:00,20333422.67,3597.512,250.32986,80.01816833,2.262304933,38573.478,1931.881133,388.65045,4437.880733,8.240769908,2.262304933,388.65045,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 9:00,20336863.33,3597.512,249.70454,51.04061667,2.228101067,36539.054,2011.885167,360.46536,8006.536867,4.120674817,2.228101067,360.46536,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 10:00,20340304,3597.512,249.07922,22.063065,2.1938972,34504.63,2091.8892,332.28027,11575.193,0.000579725,2.1938972,332.28027,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 11:00,20344351.14,3597.512,244.9404286,42.53643857,9.895921457,34717.94429,2491.264743,463.7311743,75830.16114,2.23889905,9.895921457,463.7311743,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 12:00,20348398.29,3597.512,240.8016371,63.00981214,17.59794571,34931.25857,2890.640286,595.1820786,140085.1293,4.477218375,17.59794571,595.1820786,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 13:00,20352445.43,3597.512,236.6628457,83.48318571,25.29996997,35144.57286,3290.015829,726.6329829,204340.0974,6.7155377,25.29996997,726.6329829,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 14:00,20356492.57,3597.512,232.5240543,103.9565593,33.00199423,35357.88714,3689.391371,858.0838871,268595.0656,8.953857025,33.00199423,858.0838871,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 15:00,20360539.71,3597.512,228.3852629,124.4299329,40.70401849,35571.20143,4088.766914,989.5347914,332850.0337,11.19217635,40.70401849,989.5347914,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 16:00,20364586.86,3597.512,224.2464714,144.9033064,48.40604274,35784.51571,4488.142457,1120.985696,397105.0019,13.43049568,48.40604274,1120.985696,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 17:00,20368634,3597.512,220.10768,165.37668,56.108067,35997.83,4887.518,1252.4366,461359.97,15.668815,56.108067,1252.4366,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 18:00,20372237.43,3597.512,189.4227961,156.163508,48.10744614,30894.90389,4379.126843,1076.040183,395459.7635,14.54097819,48.10744614,1076.040183,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 19:00,20375840.86,3597.512,158.7379123,146.950336,40.10682527,25791.97779,3870.735686,899.6437669,329559.557,13.41314137,40.10682527,899.6437669,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 20:00,20379444.29,3597.512,128.0530284,137.737164,32.10620441,20689.05168,3362.344529,723.2473503,263659.3505,12.28530456,32.10620441,723.2473503,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 21:00,20383047.71,3597.512,97.36814457,128.523992,24.10558354,15586.12558,2853.953371,546.8509337,197759.144,11.15746774,24.10558354,546.8509337,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 22:00,20386651.14,3597.512,66.68326071,119.31082,16.10496268,10483.19947,2345.562214,370.4545171,131858.9376,10.02963093,16.10496268,370.4545171,130901.3,73179.4,-15784.6,-201976.5
+8/24/2023 23:00,20390254.57,3597.512,35.99837686,110.097648,8.104341814,5380.273366,1837.171057,194.0581006,65958.73107,8.901794114,8.104341814,194.0581006,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 0:00,20393858,3597.512,5.313493,100.884476,0.10372095,277.34726,1328.7799,17.661684,58.52458,7.7739573,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 1:00,20396929,3597.512,144.6130465,137.992743,28.70986547,16583.44363,2815.92245,596.461292,140124.9823,17.30809565,28.70986547,596.461292,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 2:00,20400000,3597.512,283.9126,175.10101,57.31601,32889.54,4303.065,1175.2609,280191.44,26.842234,57.31601,1175.2609,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 3:00,20401266,3597.512,5.2915883,100.82326,0.10372095,152.225,855.33405,17.661684,1.2561883,7.7723727,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 4:00,20405618,3597.512,65.62703623,101.30682,0.618415863,9636.3445,1218.959538,120.1491705,4977.566641,7.7723329,0.618415863,120.1491705,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 5:00,20409970,3597.512,125.9624842,101.79038,1.133110775,19120.464,1582.585025,222.636657,9953.877094,7.7722931,1.133110775,222.636657,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 6:00,20414322,3597.512,186.2979321,102.27394,1.647805688,28604.5835,1946.210512,325.1241435,14930.18755,7.7722533,1.647805688,325.1241435,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 7:00,20418674,3597.512,246.63338,102.7575,2.1625006,38088.703,2309.836,427.61163,19906.498,7.7722135,2.1625006,427.61163,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 8:00,20419934,3597.512,246.62074,102.744415,2.1577044,37113.227,2370.939,419.1006,26014.945,7.7722125,2.1577044,419.1006,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 9:00,20422926,3597.512,248.7198,102.76872,2.1987417,35362.59,2652.348,560.56555,41603.582,7.7742567,2.1987417,560.56555,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 10:00,20426950.75,3597.512,244.7593263,118.7351088,8.941007738,35411.785,2932.315063,647.6209063,94073.1305,35.42713336,8.941007738,647.6209063,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 11:00,20430975.5,3597.512,240.7988525,134.7014975,15.68327378,35460.98,3212.282125,734.6762625,146542.679,63.08001003,15.68327378,734.6762625,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 12:00,20435000.25,3597.512,236.8383788,150.6678863,22.42553981,35510.175,3492.249188,821.7316188,199012.2275,90.73288669,22.42553981,821.7316188,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 13:00,20439025,3597.512,232.877905,166.634275,29.16780585,35559.37,3772.21625,908.786975,251481.776,118.3857633,29.16780585,908.786975,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 14:00,20443049.75,3597.512,228.9174313,182.6006638,35.91007189,35608.565,4052.183313,995.8423312,303951.3245,146.03864,35.91007189,995.8423312,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 15:00,20447074.5,3597.512,224.9569575,198.5670525,42.65233793,35657.76,4332.150375,1082.897687,356420.873,173.6915167,42.65233793,1082.897687,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 16:00,20451099.25,3597.512,220.9964838,214.5334413,49.39460396,35706.955,4612.117438,1169.953044,408890.4215,201.3443933,49.39460396,1169.953044,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 17:00,20455124,3597.512,217.03601,230.49983,56.13687,35756.15,4892.0845,1257.0084,461359.97,228.99727,56.13687,1257.0084,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 18:00,20458710,3597.512,186.7785657,221.02916,48.13213442,30696.04613,4551.057643,1242.633671,395478.9655,220.8046757,48.13213442,1242.633671,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 19:00,20462296,3597.512,156.5211214,211.55849,40.12739884,25635.94226,4210.030786,1228.258943,329597.9611,212.6120814,40.12739884,1228.258943,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 20:00,20465882,3597.512,126.2636771,202.08782,32.12266326,20575.83839,3869.003929,1213.884214,263716.9566,204.4194871,32.12266326,1213.884214,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 21:00,20469468,3597.512,96.00623286,192.61715,24.11792769,15515.73451,3527.977071,1199.509486,197835.9521,196.2268929,24.11792769,1199.509486,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 22:00,20473054,3597.512,65.74878857,183.14648,16.11319211,10455.63064,3186.950214,1185.134757,131954.9476,188.0342986,16.11319211,1185.134757,130901.3,73179.4,-15784.6,-201976.5
+8/25/2023 23:00,20476640,3597.512,35.49134429,173.67581,8.108456529,5395.526771,2845.923357,1170.760029,66073.94316,179.8417043,8.108456529,1170.760029,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 0:00,20480226,3597.512,5.2339,164.20514,0.10372095,335.4229,2504.8965,1156.3853,192.93869,171.64911,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 1:00,20483521.67,3597.512,42.53169667,185.2450667,9.493125792,5677.019083,2888.974417,1159.36895,77054.11058,310.8706983,9.493125792,1159.36895,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 2:00,20486817.33,3597.512,79.82949333,206.2849933,18.88253063,11018.61527,3273.052333,1162.3526,153915.2825,450.0922867,18.88253063,1162.3526,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 3:00,20490113,3597.512,117.12729,227.32492,28.27193547,16360.21145,3657.13025,1165.33625,230776.4543,589.313875,28.27193547,1165.33625,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 4:00,20493408.67,3597.512,154.4250867,248.3648467,37.66134032,21701.80763,4041.208167,1168.3199,307637.6262,728.5354633,37.66134032,1168.3199,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 5:00,20496704.33,3597.512,191.7228833,269.4047733,47.05074516,27043.40382,4425.286083,1171.30355,384498.7981,867.7570517,47.05074516,1171.30355,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 6:00,20500000,3597.512,229.02068,290.4447,56.44015,32385,4809.364,1174.2872,461359.97,1006.97864,56.44015,1174.2872,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 7:00,20503703.11,3597.512,216.5858067,283.4155483,53.31034839,30601.52026,4687.386911,1173.29265,435793.2908,960.57121,53.31034839,1173.29265,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 8:00,20507406.22,3597.512,204.1509334,276.3863967,50.18054677,28818.04052,4565.409822,1172.2981,410226.6117,914.16378,50.18054677,1172.2981,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 9:00,20511109.33,3597.512,191.7160602,269.357245,47.05074516,27034.56078,4443.432733,1171.30355,384659.9325,867.75635,47.05074516,1171.30355,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 10:00,20514812.44,3597.512,179.2811869,262.3280933,43.92094354,25251.08104,4321.455644,1170.309,359093.2534,821.34892,43.92094354,1170.309,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 11:00,20518515.56,3597.512,166.8463136,255.2989417,40.79114193,23467.60131,4199.478556,1169.31445,333526.5742,774.94149,40.79114193,1169.31445,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 12:00,20522218.67,3597.512,154.4114403,248.26979,37.66134032,21684.12157,4077.501467,1168.3199,307959.8951,728.53406,37.66134032,1168.3199,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 13:00,20525921.78,3597.512,141.9765671,241.2406383,34.5315387,19900.64183,3955.524378,1167.32535,282393.2159,682.12663,34.5315387,1167.32535,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 14:00,20529624.89,3597.512,129.5416938,234.2114867,31.40173709,18117.16209,3833.547289,1166.3308,256826.5368,635.7192,31.40173709,1166.3308,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 15:00,20533328,3597.512,117.1068205,227.182335,28.27193548,16333.68235,3711.5702,1165.33625,231259.8576,589.31177,28.27193548,1165.33625,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 16:00,20537031.11,3597.512,104.6719472,220.1531833,25.14213386,14550.20261,3589.593111,1164.3417,205693.1784,542.90434,25.14213386,1164.3417,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 17:00,20540734.22,3597.512,92.23707394,213.1240317,22.01233225,12766.72287,3467.616022,1163.34715,180126.4993,496.49691,22.01233225,1163.34715,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 18:00,20544437.33,3597.512,79.80220067,206.09488,18.88253063,10983.24313,3345.638933,1162.3526,154559.8201,450.08948,18.88253063,1162.3526,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 19:00,20548140.44,3597.512,67.36732739,199.0657283,15.75272902,9199.763394,3223.661844,1161.35805,128993.141,403.68205,15.75272902,1161.35805,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 20:00,20551843.56,3597.512,54.93245411,192.0365767,12.62292741,7416.283656,3101.684756,1160.3635,103426.4618,357.27462,12.62292741,1160.3635,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 21:00,20555546.67,3597.512,42.49758083,185.007425,9.493125792,5632.803917,2979.707667,1159.36895,77859.78267,310.86719,9.493125792,1159.36895,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 22:00,20559249.78,3597.512,30.06270756,177.9782733,6.363324178,3849.324178,2857.730578,1158.3744,52293.10351,264.45976,6.363324178,1158.3744,130901.3,73179.4,-15784.6,-201976.5
+8/26/2023 23:00,20562952.89,3597.512,17.62783428,170.9491217,3.233522564,2065.844439,2735.753489,1157.37985,26726.42436,218.05233,3.233522564,1157.37985,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 0:00,20566656,3597.512,5.192961,163.91997,0.10372095,282.3647,2613.7764,1156.3853,1159.7452,171.6449,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 1:00,20569125.33,3597.512,5.185894833,163.9136667,0.10372095,238.5911,2199.486467,776.8107613,844.9137067,171.6449,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 2:00,20571594.67,3597.512,5.178828667,163.9073633,0.10372095,194.8175,1785.196533,397.2362227,530.0822133,171.6449,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 3:00,20574064,3597.512,5.1717625,163.90106,0.10372095,151.0439,1370.9066,17.661684,215.25072,171.6449,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 4:00,20577769.14,3597.512,5.182075529,163.9102,0.10372095,5142.411914,1871.875514,192.6554434,66093.06776,171.6449,0.10372095,192.6554434,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 5:00,20581474.29,3597.512,5.192388557,163.91934,0.10372095,10133.77993,2372.844429,367.6492029,131970.8848,171.6449,0.10372095,367.6492029,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 6:00,20585179.43,3597.512,5.202701586,163.92848,0.10372095,15125.14794,2873.813343,542.6429623,197848.7018,171.6449,0.10372095,542.6429623,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 7:00,20588884.57,3597.512,5.213014614,163.93762,0.10372095,20116.51596,3374.782257,717.6367217,263726.5189,171.6449,0.10372095,717.6367217,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 8:00,20592589.71,3597.512,5.223327643,163.94676,0.10372095,25107.88397,3875.751171,892.6304811,329604.3359,171.6449,0.10372095,892.6304811,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 9:00,20596294.86,3597.512,5.233640671,163.9559,0.10372095,30099.25199,4376.720086,1067.624241,395482.153,171.6449,0.10372095,1067.624241,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 10:00,20600000,3597.512,5.2439537,163.96504,0.10372095,35090.62,4877.689,1242.618,461359.97,171.6449,0.10372095,1242.618,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 11:00,20603492,3597.512,5.250733683,163.937305,0.10372095,34527.7725,4863.732333,1228.662067,461359.97,171.6480733,0.10372095,1228.662067,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 12:00,20606984,3597.512,5.257513667,163.90957,0.10372095,33964.925,4849.775667,1214.706133,461359.97,171.6512467,0.10372095,1214.706133,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 13:00,20610476,3597.512,5.26429365,163.881835,0.10372095,33402.0775,4835.819,1200.7502,461359.97,171.65442,0.10372095,1200.7502,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 14:00,20613968,3597.512,5.271073633,163.8541,0.10372095,32839.23,4821.862333,1186.794267,461359.97,171.6575933,0.10372095,1186.794267,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 15:00,20617460,3597.512,5.277853617,163.826365,0.10372095,32276.3825,4807.905667,1172.838333,461359.97,171.6607667,0.10372095,1172.838333,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 16:00,20620952,3597.512,5.2846336,163.79863,0.10372095,31713.535,4793.949,1158.8824,461359.97,171.66394,0.10372095,1158.8824,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 17:00,20627848,3597.512,5.232172,135.95036,54.829468,35211.613,4869.1094,1234.0428,461359.97,0.048245102,54.829468,1234.0428,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 18:00,20631445.71,3597.512,5.261038629,128.1209657,47.01150414,30228.37935,4527.7888,1222.948871,395465.3032,0.048043553,47.01150414,1222.948871,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 19:00,20635043.43,3597.512,5.289905257,120.2915714,39.19354027,25245.14569,4186.4682,1211.854943,329570.6363,0.047842004,39.19354027,1211.854943,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 20:00,20638641.14,3597.512,5.318771886,112.4621771,31.37557641,20261.91204,3845.1476,1200.761014,263675.9695,0.047640455,31.37557641,1200.761014,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 21:00,20642238.86,3597.512,5.347638514,104.6327829,23.55761254,15278.67838,3503.827,1189.667086,197781.3027,0.047438907,23.55761254,1189.667086,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 22:00,20645836.57,3597.512,5.376505143,96.80338857,15.73964868,10295.44473,3162.5064,1178.573157,131886.6359,0.047237358,15.73964868,1178.573157,130901.3,73179.4,-15784.6,-201976.5
+8/27/2023 23:00,20649434.29,3597.512,5.405371771,88.97399429,7.921684814,5312.211074,2821.1858,1167.479229,65991.96904,0.047035809,7.921684814,1167.479229,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 0:00,20653032,3597.512,5.4342384,81.1446,0.10372095,328.97742,2479.8652,1156.3853,97.30221,0.04683426,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 1:00,20655528.67,3597.512,5.427040933,81.13789333,0.10372095,269.96948,1667.016778,775.8703833,64.86835298,0.046736859,0.10372095,775.8703833,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 2:00,20658025.33,3597.512,5.419843467,81.13118667,0.10372095,210.96154,854.1683567,395.3554667,32.43449596,0.046639457,0.10372095,395.3554667,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 3:00,20660522,3597.512,5.412646,81.12448,0.10372095,151.9536,41.319935,14.84055,0.000638947,0.046542056,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 4:00,20664152,3597.512,5.401344,81.33735,0.10372095,233.306925,1304.680118,585.612925,311.3089445,0.046513837,0.10372095,585.612925,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 5:00,20667782,3597.512,5.390042,81.55022,0.10372095,314.66025,2568.0403,1156.3853,622.61725,0.046485618,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 6:00,20674518,3597.512,327.96344,489.1351,90.991425,39879.418,2963.0703,1235.065,9845.175,0.3481012,90.991425,1235.065,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 7:00,20678136,3597.512,284.62692,265.65063,52.73255,38429.516,3250.1309,1233.4719,32674.291,0.041951817,52.73255,1233.4719,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 8:00,20678492,3597.512,256.82208,208.83038,2.041477,38256.133,3268.7651,1231.299,35016.523,0.039133184,2.041477,1231.299,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 9:00,20682076.67,3597.512,214.9236441,187.5510067,1.718517658,36759.6625,3163.616417,1208.455417,29648.75863,0.040448399,1.718517658,1208.455417,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 10:00,20685661.33,3597.512,173.0252082,166.2716333,1.395558317,35263.192,3058.467733,1185.611833,24280.99427,0.041763614,1.395558317,1185.611833,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 11:00,20689246,3597.512,131.1267724,144.99226,1.072598975,33766.7215,2953.31905,1162.76825,18913.2299,0.043078829,1.072598975,1162.76825,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 12:00,20692830.67,3597.512,89.22833647,123.7128867,0.749639633,32270.251,2848.170367,1139.924667,13545.46553,0.044394044,0.749639633,1139.924667,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 13:00,20696415.33,3597.512,47.32990058,102.4335133,0.426680292,30773.7805,2743.021683,1117.081083,8177.701167,0.045709259,0.426680292,1117.081083,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 14:00,20700000,3597.512,5.4314647,81.15414,0.10372095,29277.31,2637.873,1094.2375,2809.9368,0.047024474,0.10372095,1094.2375,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 15:00,20704774,3597.512,75.7800498,146.19778,0.6205489,31459.18,3389.615,1148.837533,155659.9479,165.496223,0.6205489,1148.837533,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 16:00,20709548,3597.512,146.1286349,211.24142,1.13737685,33641.05,4141.357,1203.437567,308509.9589,330.9454215,1.13737685,1203.437567,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 17:00,20714322,3597.512,216.47722,276.28506,1.6542048,35822.92,4893.099,1258.0376,461359.97,496.39462,1.6542048,1258.0376,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 18:00,20717909.14,3597.512,186.305431,272.7655257,1.432707107,30750.97757,4554.250286,1243.515843,395490.7784,479.6145829,1.432707107,1243.515843,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 19:00,20721496.29,3597.512,156.133642,269.2459914,1.211209414,25679.03513,4215.401571,1228.994086,329621.5869,462.8345457,1.211209414,1228.994086,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 20:00,20725083.43,3597.512,125.961853,265.7264571,0.989711721,20607.0927,3876.552857,1214.472329,263752.3953,446.0545086,0.989711721,1214.472329,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 21:00,20728670.57,3597.512,95.790064,262.2069229,0.768214029,15535.15027,3537.704143,1199.950571,197883.2037,429.2744714,0.768214029,1199.950571,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 22:00,20732257.71,3597.512,65.618275,258.6873886,0.546716336,10463.20784,3198.855429,1185.428814,132014.0122,412.4944343,0.546716336,1185.428814,130901.3,73179.4,-15784.6,-201976.5
+8/28/2023 23:00,20735844.86,3597.512,35.446486,255.1678543,0.325218643,5391.265403,2860.006714,1170.907057,66144.82062,395.7143971,0.325218643,1170.907057,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 0:00,20739432,3597.512,5.274697,251.64832,0.10372095,319.32297,2521.158,1156.3853,275.62906,378.93436,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 1:00,20741909.33,3597.512,5.268265833,250.9411533,0.10372095,262.2316467,2115.4438,776.8107613,187.3343503,378.93215,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 2:00,20744386.67,3597.512,5.261834667,250.2339867,0.10372095,205.1403233,1709.7296,397.2362227,99.03964067,378.92994,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 3:00,20746864,3597.512,5.2554035,249.52682,0.10372095,148.049,1304.0154,17.661684,10.744931,378.92773,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 4:00,20750644.4,3597.512,53.0209268,249.169994,0.52567906,7640.2564,1469.66276,92.2965952,2120.867945,378.941872,0.52567906,92.2965952,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 5:00,20754424.8,3597.512,100.7864501,248.813168,0.94763717,15132.4638,1635.31012,166.9315064,4230.990959,378.956014,0.94763717,166.9315064,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 6:00,20758205.2,3597.512,148.5519734,248.456342,1.36959528,22624.6712,1800.95748,241.5664176,6341.113972,378.970156,1.36959528,241.5664176,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 7:00,20761985.6,3597.512,196.3174967,248.099516,1.79155339,30116.8786,1966.60484,316.2013288,8451.236986,378.984298,1.79155339,316.2013288,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 8:00,20765766,3597.512,244.08302,247.74269,2.2135115,37609.086,2132.2522,390.83624,10561.36,378.99844,2.2135115,390.83624,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 9:00,20769569.78,3597.512,217.5470201,247.8516533,1.979090328,33446.57967,2175.978656,475.8972467,9421.47547,378.9905333,1.979090328,475.8972467,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 10:00,20773373.56,3597.512,191.0110203,247.9606167,1.744669156,29284.07334,2219.705111,560.9582533,8281.59094,378.9826267,1.744669156,560.9582533,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 11:00,20777177.33,3597.512,164.4750204,248.06958,1.510247983,25121.56702,2263.431567,646.01926,7141.70641,378.97472,1.510247983,646.01926,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 12:00,20780981.11,3597.512,137.9390206,248.1785433,1.275826811,20959.06069,2307.158022,731.0802667,6001.82188,378.9668133,1.275826811,731.0802667,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 13:00,20784784.89,3597.512,111.4030207,248.2875067,1.041405639,16796.55436,2350.884478,816.1412733,4861.93735,378.9589067,1.041405639,816.1412733,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 14:00,20788588.67,3597.512,84.86702087,248.39647,0.806984467,12634.04803,2394.610933,901.20228,3722.05282,378.951,0.806984467,901.20228,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 15:00,20792392.44,3597.512,58.33102101,248.5054333,0.572563294,8471.541706,2438.337389,986.2632867,2582.16829,378.9430933,0.572563294,986.2632867,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 16:00,20796196.22,3597.512,31.79502116,248.6143967,0.338142122,4309.035378,2482.063844,1071.324293,1442.28376,378.9351867,0.338142122,1071.324293,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 17:00,20800000,3597.512,5.2590213,248.72336,0.10372095,146.52905,2525.7903,1156.3853,302.39923,378.92728,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 18:00,20803690.86,3597.512,5.270715686,233.0294614,0.10372095,170.9991743,2523.2985,1156.3853,289.0763171,325.046784,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 19:00,20807381.71,3597.512,5.282410071,217.3355629,0.10372095,195.4692986,2520.8067,1156.3853,275.7534043,271.166288,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 20:00,20811072.57,3597.512,5.294104457,201.6416643,0.10372095,219.9394229,2518.3149,1156.3853,262.4304914,217.285792,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 21:00,20814763.43,3597.512,5.305798843,185.9477657,0.10372095,244.4095471,2515.8231,1156.3853,249.1075786,163.4052959,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 22:00,20818454.29,3597.512,5.317493229,170.2538671,0.10372095,268.8796714,2513.3313,1156.3853,235.7846657,109.5247999,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/29/2023 23:00,20822145.14,3597.512,5.329187614,154.5599686,0.10372095,293.3497957,2510.8395,1156.3853,222.4617529,55.64430391,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 0:00,20825836,3597.512,5.340882,138.86607,0.10372095,317.81992,2508.3477,1156.3853,209.13884,1.7638079,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 1:00,20829120,3597.512,29.7204778,138.966316,0.313982435,3771.639528,2601.76591,1158.84412,6834.022956,1.76364053,0.313982435,1158.84412,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 2:00,20832404,3597.512,54.1000736,139.066562,0.52424392,7225.459136,2695.18412,1161.30294,13458.90707,1.76347316,0.52424392,1161.30294,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 3:00,20835688,3597.512,78.4796694,139.166808,0.734505405,10679.27874,2788.60233,1163.76176,20083.79119,1.76330579,0.734505405,1163.76176,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 4:00,20838972,3597.512,102.8592652,139.267054,0.94476689,14133.09835,2882.02054,1166.22058,26708.6753,1.76313842,0.94476689,1166.22058,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 5:00,20842256,3597.512,127.238861,139.3673,1.155028375,17586.91796,2975.43875,1168.6794,33333.55942,1.76297105,1.155028375,1168.6794,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 6:00,20845540,3597.512,151.6184568,139.467546,1.36528986,21040.73757,3068.85696,1171.13822,39958.44354,1.76280368,1.36528986,1171.13822,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 7:00,20848824,3597.512,175.9980526,139.567792,1.575551345,24494.55718,3162.27517,1173.59704,46583.32765,1.76263631,1.575551345,1173.59704,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 8:00,20852108,3597.512,200.3776484,139.668038,1.78581283,27948.37678,3255.69338,1176.05586,53208.21177,1.76246894,1.78581283,1176.05586,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 9:00,20855392,3597.512,224.7572442,139.768284,1.996074315,31402.19639,3349.11159,1178.51468,59833.09588,1.76230157,1.996074315,1178.51468,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 10:00,20858676,3597.512,249.13684,139.86853,2.2063358,34856.016,3442.5298,1180.9735,66457.98,1.7621342,2.2063358,1180.9735,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 11:00,20865324,3597.512,288.16367,185.28505,57.498352,33889.56,4335.891,1193.0078,285074.44,0.014731496,57.498352,1193.0078,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 12:00,20865846,3597.512,288.29648,130.918,3.1062708,33648.12,4427.0366,1191.2758,315828.9,0.014647453,3.1062708,1191.2758,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 13:00,20870245,3597.512,271.647745,146.3741725,16.3597886,33684.86825,4457.47445,1190.681825,326598.58,0.401842665,16.3597886,1190.681825,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 14:00,20874644,3597.512,254.99901,161.830345,29.6133064,33721.6165,4487.9123,1190.08785,337368.26,0.789037877,29.6133064,1190.08785,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 15:00,20879043,3597.512,238.350275,177.2865175,42.8668242,33758.36475,4518.35015,1189.493875,348137.94,1.176233088,42.8668242,1189.493875,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 16:00,20883442,3597.512,221.70154,192.74269,56.120342,33795.113,4548.788,1188.8999,358907.62,1.5634283,56.120342,1188.8999,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 17:00,20886753.6,3597.512,226.993556,182.212312,45.33735164,34840.267,4229.80604,1159.03528,291644.737,1.60298098,45.33735164,1159.03528,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 18:00,20890065.2,3597.512,232.285572,171.681934,34.55436128,35885.421,3910.82408,1129.17066,224381.854,1.64253366,34.55436128,1129.17066,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 19:00,20893376.8,3597.512,237.577588,161.151556,23.77137092,36930.575,3591.84212,1099.30604,157118.971,1.68208634,23.77137092,1099.30604,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 20:00,20896688.4,3597.512,242.869604,150.621178,12.98838056,37975.729,3272.86016,1069.44142,89856.088,1.72163902,12.98838056,1069.44142,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 21:00,20900000,3597.512,248.16162,140.0908,2.2053902,39020.883,2953.8782,1039.5768,22593.205,1.7611917,2.2053902,1039.5768,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 22:00,20903648.67,3597.512,167.2298135,137.6230133,1.504833783,29745.77933,2202.0054,698.938428,15062.40794,1.36695711,1.504833783,698.938428,130901.3,73179.4,-15784.6,-201976.5
+8/30/2023 23:00,20907297.33,3597.512,86.29800693,135.1552267,0.804277367,20470.67567,1450.1326,358.300056,7531.610885,0.97272252,0.804277367,358.300056,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 0:00,20910946,3597.512,5.3662004,132.68744,0.10372095,11195.572,698.2598,17.661684,0.81382716,0.57848793,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 1:00,20913859.33,3597.512,5.359828767,132.65827,0.10372095,7515.01263,649.65489,17.661684,0.707063587,0.577785453,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 2:00,20916772.67,3597.512,5.353457133,132.6291,0.10372095,3834.45326,601.04998,17.661684,0.600300013,0.577082977,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 3:00,20919686,3597.512,5.3470855,132.59993,0.10372095,153.89389,552.44507,17.661684,0.49353644,0.5763805,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 4:00,20923320,3597.512,5.33624675,132.78269,0.10372095,213.183105,1520.037735,587.023492,61.84982622,0.576255415,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 5:00,20926954,3597.512,5.325408,132.96545,0.10372095,272.47232,2487.6304,1156.3853,123.206116,0.57613033,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 6:00,20932166,3597.512,161.140954,241.403375,26.41459798,19710.75116,2138.1865,784.63205,232.763243,0.614022065,26.41459798,784.63205,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 7:00,20937378,3597.512,316.9565,349.8413,52.725475,39149.03,1788.7426,412.8788,342.32037,0.6519138,52.725475,412.8788,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 8:00,20938278,3597.512,268.76843,290.05545,2.035226,38714.27,1788.2245,401.89212,413.50412,0.6452241,2.035226,401.89212,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 9:00,20941805.14,3597.512,267.0139686,274.7651214,2.003186786,37928.23286,1999.765857,508.5406171,6837.016389,0.637267543,2.003186786,508.5406171,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 10:00,20945332.29,3597.512,265.2595071,259.4747929,1.971147571,37142.19571,2211.307214,615.1891143,13260.52866,0.629310986,1.971147571,615.1891143,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 11:00,20948859.43,3597.512,263.5050457,244.1844643,1.939108357,36356.15857,2422.848571,721.8376114,19684.04093,0.621354429,1.939108357,721.8376114,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 12:00,20952386.57,3597.512,261.7505843,228.8941357,1.907069143,35570.12143,2634.389929,828.4861086,26107.55319,0.613397871,1.907069143,828.4861086,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 13:00,20955913.71,3597.512,259.9961229,213.6038071,1.875029929,34784.08429,2845.931286,935.1346057,32531.06546,0.605441314,1.875029929,935.1346057,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 14:00,20959440.86,3597.512,258.2416614,198.3134786,1.842990714,33998.04714,3057.472643,1041.783103,38954.57773,0.597484757,1.842990714,1041.783103,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 15:00,20962968,3597.512,256.4872,183.02315,1.8109515,33212.01,3269.014,1148.4316,45378.09,0.5895282,1.8109515,1148.4316,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 16:00,20969832,3597.512,235.18883,221.03831,55.998596,35056.016,3362.0447,1177.043,54488.71,0.02416503,55.998596,1177.043,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 17:00,20973200.75,3597.512,206.5019579,210.1350538,49.01173662,32995.88238,3032.627613,1036.488963,47677.72097,0.022986305,49.01173662,1036.488963,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 18:00,20976569.5,3597.512,177.8150859,199.2317975,42.02487724,30935.74875,2703.210525,895.9349265,40866.73194,0.021807581,42.02487724,895.9349265,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 19:00,20979938.25,3597.512,149.1282138,188.3285413,35.03801786,28875.61513,2373.793438,755.3808897,34055.7429,0.020628856,35.03801786,755.3808897,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 20:00,20983307,3597.512,120.4413417,177.425285,28.05115848,26815.4815,2044.37635,614.826853,27244.75387,0.019450131,28.05115848,614.826853,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 21:00,20986675.75,3597.512,91.75446962,166.5220288,21.06429909,24755.34788,1714.959263,474.2728162,20433.76484,0.018271406,21.06429909,474.2728162,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 22:00,20990044.5,3597.512,63.06759755,155.6187725,14.07743971,22695.21425,1385.542175,333.7187795,13622.77581,0.017092681,14.07743971,333.7187795,130901.3,73179.4,-15784.6,-201976.5
+8/31/2023 23:00,20993413.25,3597.512,34.38072547,144.7155163,7.090580331,20635.08063,1056.125088,193.1647427,6811.786777,0.015913957,7.090580331,193.1647427,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 0:00,20996782,3597.512,5.6938534,133.81226,0.10372095,18574.947,726.708,52.610706,0.79774565,0.014735232,0.10372095,52.610706,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 1:00,21000000,3597.512,297.84476,217.62717,2.6925683,35499.805,2240.1943,346.1464,20873.146,0.60257506,2.6925683,346.1464,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 2:00,21003047,3597.512,151.74638,172.282895,1.398144625,17827.21144,1397.660565,181.904042,10436.82234,0.307907297,1.398144625,181.904042,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 3:00,21006094,3597.512,5.648,126.93862,0.10372095,154.61787,555.12683,17.661684,0.49868035,0.013239534,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 4:00,21009731,3597.512,5.63231935,125.01282,0.10372095,225.704765,1516.801315,587.023492,46.79063518,0.012842414,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 5:00,21013368,3597.512,5.6166387,123.08702,0.10372095,296.79166,2478.4758,1156.3853,93.08259,0.012445293,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 6:00,21019572,3597.512,342.36603,437.68097,51.88697,40530.06,1748.2307,399.57834,193.7182,0.75333613,51.88697,399.57834,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 7:00,21023968,3597.512,270.2605,311.48315,2.0024333,39192.152,1768.1926,410.92706,235.4249,0.11311335,2.0024333,410.92706,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 8:00,21025876,3597.512,270.16832,271.823765,1.9986043,38052.363,1808.1775,380.20008,1037.2193,0.097666368,1.9986043,380.20008,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 9:00,21027784,3597.512,270.07614,232.16438,1.9947753,36912.574,1848.1624,349.4731,1839.0137,0.082219385,1.9947753,349.4731,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 10:00,21031999,3597.512,283.18977,246.37191,4.15939925,36098.035,2116.8859,358.9583,17285.65635,1.105687192,4.15939925,358.9583,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 11:00,21036214,3597.512,296.3034,260.57944,6.3240232,35283.496,2385.6094,368.4435,32732.299,2.129155,6.3240232,368.4435,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 12:00,21040167.67,3597.512,284.5426767,261.0136433,14.61414067,35568.55167,2691.763333,515.2022167,65999.0325,2.2967067,14.61414067,515.2022167,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 13:00,21044121.33,3597.512,272.7819533,261.4478467,22.90425813,35853.60733,2997.917267,661.9609333,99265.766,2.4642584,22.90425813,661.9609333,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 14:00,21048075,3597.512,261.02123,261.88205,31.1943756,36138.663,3304.0712,808.71965,132532.4995,2.6318101,31.1943756,808.71965,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 15:00,21052028.67,3597.512,249.2605067,262.3162533,39.48449307,36423.71867,3610.225133,955.4783667,165799.233,2.7993618,39.48449307,955.4783667,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 16:00,21055982.33,3597.512,237.4997833,262.7504567,47.77461053,36708.77433,3916.379067,1102.237083,199065.9665,2.9669135,47.77461053,1102.237083,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 17:00,21059936,3597.512,225.73906,263.18466,56.064728,36993.83,4222.533,1248.9958,232332.7,3.1344652,56.064728,1248.9958,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 18:00,21063429.67,3597.512,189.0255862,250.5526533,46.73789349,36384.30233,3779.783917,1133.786667,193610.8933,2.78403045,46.73789349,1133.786667,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 19:00,21066923.33,3597.512,152.3121123,237.9206467,37.41105898,35774.77467,3337.034833,1018.577533,154889.0866,2.4335957,37.41105898,1018.577533,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 20:00,21070417,3597.512,115.5986385,225.28864,28.08422448,35165.247,2894.28575,903.3684,116167.2799,2.08316095,28.08422448,903.3684,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 21:00,21073910.67,3597.512,78.88516467,212.6566333,18.75738997,34555.71933,2451.536667,788.1592667,77445.47319,1.7327262,18.75738997,788.1592667,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 22:00,21077404.33,3597.512,42.17169083,200.0246267,9.430555458,33946.19167,2008.787583,672.9501333,38723.66648,1.38229145,9.430555458,672.9501333,130901.3,73179.4,-15784.6,-201976.5
+9/1/2023 23:00,21080898,3597.512,5.458217,187.39262,0.10372095,33336.664,1566.0385,557.741,1.859779,1.0318567,0.10372095,557.741,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 0:00,21083795.5,3597.512,5.452799325,186.3593875,0.10372095,25041.09993,1318.872675,422.721171,1.530426308,1.029068775,0.10372095,422.721171,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 1:00,21086693,3597.512,5.44738165,185.326155,0.10372095,16745.53585,1071.70685,287.701342,1.201073615,1.02628085,0.10372095,287.701342,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 2:00,21089590.5,3597.512,5.441963975,184.2929225,0.10372095,8449.971775,824.541025,152.681513,0.871720923,1.023492925,0.10372095,152.681513,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 3:00,21092488,3597.512,5.4365463,183.25969,0.10372095,154.4077,577.3752,17.661684,0.54236823,1.020705,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 4:00,21096244,3597.512,127.6813182,242.86027,28.27592547,16549.41285,2058.8071,584.345242,44422.36118,15.601375,28.27592547,584.345242,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 5:00,21100000,3597.512,249.92609,302.46085,56.44813,32944.418,3540.239,1151.0288,88844.18,30.182045,56.44813,1151.0288,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 6:00,21103723,3597.512,209.2103887,281.7092833,47.05739516,33533.30533,3352.09765,1026.91425,79272.416,25.32141092,47.05739516,1026.91425,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 7:00,21107446,3597.512,168.4946873,260.9577167,37.66666032,34122.19267,3163.9563,902.7997,69700.652,20.46077683,37.66666032,902.7997,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 8:00,21111169,3597.512,127.778986,240.20615,28.27592548,34711.08,2975.81495,778.68515,60128.888,15.60014275,28.27592548,778.68515,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 9:00,21114892,3597.512,87.06328467,219.4545833,18.88519063,35299.96733,2787.6736,654.5706,50557.124,10.73950867,18.88519063,654.5706,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 10:00,21118615,3597.512,46.34758333,198.7030167,9.494455792,35888.85467,2599.53225,530.45605,40985.36,5.878874583,9.494455792,530.45605,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 11:00,21122338,3597.512,5.631882,177.95145,0.10372095,36477.742,2411.3909,406.3415,31413.596,1.0182405,0.10372095,406.3415,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 12:00,21126074.33,3597.512,5.613608142,177.7438158,0.10372095,36328.726,2301.024533,392.539225,28795.9033,1.018173017,0.10372095,392.539225,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 13:00,21129810.67,3597.512,5.595334283,177.5361817,0.10372095,36179.71,2190.658167,378.73695,26178.2106,1.018105533,0.10372095,378.73695,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 14:00,21133547,3597.512,5.577060425,177.3285475,0.10372095,36030.694,2080.2918,364.934675,23560.5179,1.01803805,0.10372095,364.934675,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 15:00,21137283.33,3597.512,5.558786567,177.1209133,0.10372095,35881.678,1969.925433,351.1324,20942.82521,1.017970567,0.10372095,351.1324,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 16:00,21141019.67,3597.512,5.540512708,176.9132792,0.10372095,35732.662,1859.559067,337.330125,18325.13251,1.017903083,0.10372095,337.330125,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 17:00,21144756,3597.512,5.52223885,176.705645,0.10372095,35583.646,1749.1927,323.52785,15707.43981,1.0178356,0.10372095,323.52785,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 18:00,21148492.33,3597.512,5.503964992,176.4980108,0.10372095,35434.63,1638.826333,309.725575,13089.74711,1.017768117,0.10372095,309.725575,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 19:00,21152228.67,3597.512,5.485691133,176.2903767,0.10372095,35285.614,1528.459967,295.9233,10472.05441,1.017700633,0.10372095,295.9233,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 20:00,21155965,3597.512,5.467417275,176.0827425,0.10372095,35136.598,1418.0936,282.121025,7854.361714,1.01763315,0.10372095,282.121025,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 21:00,21159701.33,3597.512,5.449143417,175.8751083,0.10372095,34987.582,1307.727233,268.31875,5236.669016,1.017565667,0.10372095,268.31875,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 22:00,21163437.67,3597.512,5.430869558,175.6674742,0.10372095,34838.566,1197.360867,254.516475,2618.976318,1.017498183,0.10372095,254.516475,130901.3,73179.4,-15784.6,-201976.5
+9/2/2023 23:00,21167174,3597.512,5.4125957,175.45984,0.10372095,34689.55,1086.9945,240.7142,1.2836193,1.0174307,0.10372095,240.7142,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 0:00,21170110,3597.512,5.399581525,175.395815,0.10372095,26055.84375,955.9013625,184.951071,1.09101386,1.01741015,0.10372095,184.951071,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 1:00,21173046,3597.512,5.38656735,175.33179,0.10372095,17422.13749,824.808225,129.187942,0.89840842,1.0173896,0.10372095,129.187942,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 2:00,21175982,3597.512,5.373553175,175.267765,0.10372095,8788.431235,693.7150875,73.424813,0.70580298,1.01736905,0.10372095,73.424813,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 3:00,21178918,3597.512,5.360539,175.20374,0.10372095,154.72498,562.62195,17.661684,0.51319754,1.0173485,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 4:00,21182642.5,3597.512,5.42752625,175.14841,0.10372095,8153.285485,793.8213875,64.974278,1.899881155,1.017330825,0.10372095,64.974278,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 5:00,21186367,3597.512,5.4945135,175.09308,0.10372095,16151.84599,1025.020825,112.286872,3.28656477,1.01731315,0.10372095,112.286872,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 6:00,21190091.5,3597.512,5.56150075,175.03775,0.10372095,24150.4065,1256.220263,159.599466,4.673248385,1.017295475,0.10372095,159.599466,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 7:00,21193816,3597.512,5.628488,174.98242,0.10372095,32148.967,1487.4197,206.91206,6.059932,1.0172778,0.10372095,206.91206,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 8:00,21200000,3597.512,5.4936595,176.04083,0.10372095,36808.91,4418.449,1251.0586,293071.34,1.0176176,0.10372095,1251.0586,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 9:00,21203635.33,3597.512,5.516409333,175.6337067,0.10372095,36073.26,3731.043867,950.71849,205893.36,1.017486967,0.10372095,950.71849,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 10:00,21207270.67,3597.512,5.539159167,175.2265833,0.10372095,35337.61,3043.638733,650.37838,118715.38,1.017356333,0.10372095,650.37838,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 11:00,21210906,3597.512,5.561909,174.81946,0.10372095,34601.96,2356.2336,350.03827,31537.4,1.0172257,0.10372095,350.03827,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 12:00,21214426.91,3597.512,5.569705909,174.8022455,0.10372095,34554.11027,2280.242482,340.1491709,28670.69571,1.017220218,0.10372095,340.1491709,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 13:00,21217947.82,3597.512,5.577502818,174.7850309,0.10372095,34506.26055,2204.251364,330.2600718,25803.99142,1.017214736,0.10372095,330.2600718,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 14:00,21221468.73,3597.512,5.585299727,174.7678164,0.10372095,34458.41082,2128.260245,320.3709727,22937.28713,1.017209255,0.10372095,320.3709727,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 15:00,21224989.64,3597.512,5.593096636,174.7506018,0.10372095,34410.56109,2052.269127,310.4818736,20070.58285,1.017203773,0.10372095,310.4818736,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 16:00,21228510.55,3597.512,5.600893545,174.7333873,0.10372095,34362.71136,1976.278009,300.5927745,17203.87856,1.017198291,0.10372095,300.5927745,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 17:00,21232031.45,3597.512,5.608690455,174.7161727,0.10372095,34314.86164,1900.286891,290.7036755,14337.17427,1.017192809,0.10372095,290.7036755,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 18:00,21235552.36,3597.512,5.616487364,174.6989582,0.10372095,34267.01191,1824.295773,280.8145764,11470.46998,1.017187327,0.10372095,280.8145764,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 19:00,21239073.27,3597.512,5.624284273,174.6817436,0.10372095,34219.16218,1748.304655,270.9254773,8603.765693,1.017181845,0.10372095,270.9254773,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 20:00,21242594.18,3597.512,5.632081182,174.6645291,0.10372095,34171.31245,1672.313536,261.0363782,5737.061405,1.017176364,0.10372095,261.0363782,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 21:00,21246115.09,3597.512,5.639878091,174.6473145,0.10372095,34123.46273,1596.322418,251.1472791,2870.357117,1.017170882,0.10372095,251.1472791,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 22:00,21249636,3597.512,5.647675,174.6301,0.10372095,34075.613,1520.3313,241.25818,3.6528282,1.0171654,0.10372095,241.25818,130901.3,73179.4,-15784.6,-201976.5
+9/3/2023 23:00,21252118,3597.512,5.675767,174.62254,0.10372095,32577.232,934.7323,241.09311,0.8466752,1.017163,0.10372095,241.09311,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 0:00,21255510.33,3597.512,5.660232333,174.6772633,0.10372095,27177.53883,1188.207217,393.6418083,5.551768333,1.01718045,0.10372095,393.6418083,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 1:00,21258902.67,3597.512,5.644697667,174.7319867,0.10372095,21777.84567,1441.682133,546.1905067,10.25686147,1.0171979,0.10372095,546.1905067,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 2:00,21262295,3597.512,5.629163,174.78671,0.10372095,16378.1525,1695.15705,698.739205,14.9619546,1.01721535,0.10372095,698.739205,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 3:00,21265687.33,3597.512,5.613628333,174.8414333,0.10372095,10978.45933,1948.631967,851.2879033,19.66704773,1.0172328,0.10372095,851.2879033,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 4:00,21269079.67,3597.512,5.598093667,174.8961567,0.10372095,5578.766167,2202.106883,1003.836602,24.37214087,1.01725025,0.10372095,1003.836602,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 5:00,21272472,3597.512,5.582559,174.95088,0.10372095,179.073,2455.5818,1156.3853,29.077234,1.0172677,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 6:00,21278218,3597.512,792.8183,494.66254,51.21319,39486.61,1761.4872,373.98938,422.0802,56.70036,51.21319,373.98938,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 7:00,21280742,3597.512,676.38843,486.470355,51.933156,39246.7875,1788.48205,393.54056,480.95945,36.441134,51.933156,393.54056,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 8:00,21283266,3597.512,559.95856,478.27817,52.653122,39006.965,1815.4769,413.09174,539.8387,16.181908,52.653122,413.09174,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 9:00,21287212,3597.512,270.4941,414.91016,2.1995375,36887.273,1871.1278,348.4067,2326.7974,3.596255,2.1995375,348.4067,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 10:00,21290659,3597.512,276.88087,416.32958,3.2804011,36247.949,2133.3209,363.0389,17567.6237,31.07348,3.2804011,363.0389,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 11:00,21294106,3597.512,283.26764,417.749,4.3612647,35608.625,2395.514,377.6711,32808.45,58.550705,4.3612647,377.6711,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 12:00,21300000,3597.512,5.6726556,174.62836,0.10372095,33375.293,1210.4761,240.08093,1.714178,1.017165,0.10372095,240.08093,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 13:00,21303834.4,3597.512,48.87385848,182.110232,0.40561532,34060.8604,1871.24908,442.766924,64873.28334,20.37114,0.40561532,442.766924,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 14:00,21307668.8,3597.512,92.07506136,189.592104,0.70750969,34746.4278,2532.02206,645.452918,129744.8525,39.725115,0.70750969,645.452918,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 15:00,21311503.2,3597.512,135.2762642,197.073976,1.00940406,35431.9952,3192.79504,848.138912,194616.4217,59.07909,1.00940406,848.138912,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 16:00,21315337.6,3597.512,178.4774671,204.555848,1.31129843,36117.5626,3853.56802,1050.824906,259487.9908,78.433065,1.31129843,1050.824906,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 17:00,21319172,3597.512,221.67867,212.03772,1.6131928,36803.13,4514.341,1253.5109,324359.56,97.78704,1.6131928,1253.5109,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 18:00,21322541.33,3597.512,185.6385677,203.5193533,1.361614158,36248.25083,3955.073133,1085.749673,270299.8837,90.57866617,1.361614158,1085.749673,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 19:00,21325910.67,3597.512,149.5984653,195.0009867,1.110035517,35693.37167,3395.805267,917.9884467,216240.2074,83.37029233,1.110035517,917.9884467,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 20:00,21329280,3597.512,113.558363,186.48262,0.858456875,35138.4925,2836.5374,750.22722,162180.5311,76.1619185,0.858456875,750.22722,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 21:00,21332649.33,3597.512,77.51826067,177.9642533,0.606878233,34583.61333,2277.269533,582.4659933,108120.8548,68.95354467,0.606878233,582.4659933,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 22:00,21336018.67,3597.512,41.47815833,169.4458867,0.355299592,34028.73417,1718.001667,414.7047667,54061.17849,61.74517083,0.355299592,414.7047667,130901.3,73179.4,-15784.6,-201976.5
+9/4/2023 23:00,21339388,3597.512,5.438056,160.92752,0.10372095,33473.855,1158.7338,246.94354,1.502191,54.536797,0.10372095,246.94354,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 0:00,21342467.5,3597.512,5.42793025,158.20669,0.10372095,25143.85336,1008.51835,189.623076,1.252643088,54.53133025,0.10372095,189.623076,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 1:00,21345547,3597.512,5.4178045,155.48586,0.10372095,16813.85173,858.3029,132.302612,1.003095175,54.5258635,0.10372095,132.302612,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 2:00,21348626.5,3597.512,5.40767875,152.76503,0.10372095,8483.850087,708.08745,74.982148,0.753547262,54.52039675,0.10372095,74.982148,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 3:00,21351706,3597.512,5.397553,150.0442,0.10372095,153.84845,557.872,17.661684,0.50399935,54.51493,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 4:00,21355299,3597.512,5.3866928,148.169675,0.10372095,174.27584,1510.3176,587.023492,22.96084268,54.514629,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 5:00,21358892,3597.512,5.3758326,146.29515,0.10372095,194.70323,2462.7632,1156.3853,45.417686,54.514328,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 6:00,21364966,3597.512,582.5398,522.72894,51.705402,40213.055,1781.6965,394.69467,418.50272,72.520546,51.705402,394.69467,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 7:00,21368809,3597.512,458.31085,491.44142,55.855194,38946.6895,1759.13125,377.98651,378.643525,36.45302983,55.855194,377.98651,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 8:00,21372652,3597.512,334.0819,460.1539,60.004986,37680.324,1736.566,361.27835,338.78433,0.38551366,60.004986,361.27835,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 9:00,21373552,3597.512,271.25006,404.34247,8.502588,37254.2,1761.585,350.47903,617.82324,0.68444914,8.502588,350.47903,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 10:00,21377659,3597.512,282.11435,307.806855,5.94697235,36328.143,2089.1487,361.096235,18255.70262,11.16764957,5.94697235,361.096235,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 11:00,21381766,3597.512,292.97864,211.27124,3.3913567,35402.086,2416.7124,371.71344,35893.582,21.65085,3.3913567,371.71344,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 12:00,21385412.8,3597.512,235.4642046,199.257546,2.73382955,28352.56933,2048.16998,300.9030888,28714.97273,28.2237288,2.73382955,300.9030888,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 13:00,21389059.6,3597.512,177.9497692,187.243852,2.0763024,21303.05266,1679.62756,230.0927376,21536.36346,34.7966076,2.0763024,230.0927376,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 14:00,21392706.4,3597.512,120.4353338,175.230158,1.41877525,14253.53598,1311.08514,159.2823864,14357.75419,41.3694864,1.41877525,159.2823864,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 15:00,21396353.2,3597.512,62.9208984,163.216464,0.7612481,7204.019312,942.54272,88.4720352,7179.144915,47.9423652,0.7612481,88.4720352,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 16:00,21400000,3597.512,5.406463,151.20277,0.10372095,154.50264,574.0003,17.661684,0.5356442,54.515244,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 17:00,21405556,3597.512,223.14311,188.84573,56.095406,36850.996,4486.175,1253.5486,314779.22,48.83114,56.095406,1253.5486,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 18:00,21405616,3597.512,223.12605,135.84543,1.6030241,36868.918,4493.652,1254.2272,317078,52.296284,1.6030241,1254.2272,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 19:00,21409506.4,3597.512,179.5931511,132.177526,1.30316347,36256.7184,3896.52344,1081.265274,253662.8646,47.096062,1.30316347,1081.265274,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 20:00,21413396.8,3597.512,136.0602522,128.509622,1.00330284,35644.5188,3299.39488,908.303348,190247.7293,41.89584,1.00330284,908.303348,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 21:00,21417287.2,3597.512,92.5273533,124.841718,0.70344221,35032.3192,2702.26632,735.341422,126832.5939,36.695618,0.70344221,735.341422,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 22:00,21421177.6,3597.512,48.9944544,121.173814,0.40358158,34420.1196,2105.13776,562.379496,63417.45851,31.495396,0.40358158,562.379496,130901.3,73179.4,-15784.6,-201976.5
+9/5/2023 23:00,21425068,3597.512,5.4615555,117.50591,0.10372095,33807.92,1508.0092,389.41757,2.3231342,26.295174,0.10372095,389.41757,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 0:00,21428327,3597.512,5.446003625,117.3412675,0.10372095,25394.6562,1271.267125,296.4785985,1.869886993,26.29033025,0.10372095,296.4785985,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 1:00,21431586,3597.512,5.43045175,117.176625,0.10372095,16981.39239,1034.52505,203.539627,1.416639785,26.2854865,0.10372095,203.539627,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 2:00,21434845,3597.512,5.414899875,117.0119825,0.10372095,8568.128585,797.782975,110.6006555,0.963392578,26.28064275,0.10372095,110.6006555,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 3:00,21438104,3597.512,5.399348,116.84734,0.10372095,154.86478,561.0409,17.661684,0.51014537,26.275799,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 4:00,21441699,3597.512,5.388421,116.9260275,0.10372095,177.084915,1512.30575,587.023492,24.03346769,26.275717,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 5:00,21445294,3597.512,5.377494,117.004715,0.10372095,199.30505,2463.5706,1156.3853,47.55679,26.275635,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 6:00,21451336,3597.512,527.9735,505.12082,51.661198,40196.35,1782.5897,394.3226,427.7806,39.999447,51.661198,394.3226,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 7:00,21453699,3597.512,475.6382,499.581025,52.157404,39696.955,1773.1632,404.973115,309.57129,34.650011,52.157404,404.973115,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 8:00,21456062,3597.512,423.3029,494.04123,52.65361,39197.56,1763.7367,415.62363,191.36198,29.300575,52.65361,415.62363,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 9:00,21460178.67,3597.512,381.1769,381.4210267,36.01242833,37916.381,1977.4729,400.5439367,11690.27899,20.09306913,36.01242833,400.5439367,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 10:00,21464295.33,3597.512,339.0509,268.8008233,19.37124667,36635.202,2191.2091,385.4642433,23189.19599,10.88556327,19.37124667,385.4642433,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 11:00,21468412,3597.512,296.9249,156.18062,2.730065,35354.023,2404.9453,370.38455,34688.113,1.6780574,2.730065,370.38455,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 12:00,21471116,3597.512,303.7594,130.45816,2.9132173,34296.547,3011.7979,699.9523,74929.92,0.47734174,2.9132173,699.9523,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 13:00,21475395,3597.512,286.80228,118.82668,2.560264275,34559.334,3094.572925,819.762375,69042.25825,0.359804399,2.560264275,819.762375,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 14:00,21479674,3597.512,269.84516,107.1952,2.20731125,34822.121,3177.34795,939.57245,63154.5965,0.242267059,2.20731125,939.57245,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 15:00,21483953,3597.512,252.88804,95.56372,1.854358225,35084.908,3260.122975,1059.382525,57266.93475,0.124729718,1.854358225,1059.382525,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 16:00,21488232,3597.512,235.93092,83.93224,1.5014052,35347.695,3342.898,1179.1926,51379.273,0.007192377,1.5014052,1179.1926,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 17:00,21491174,3597.512,271.0809575,188.31195,13.7526409,35600.75375,3072.90495,1117.140865,38565.89966,9.264279283,13.7526409,1117.140865,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 18:00,21494116,3597.512,306.230995,292.69166,26.0038766,35853.8125,2802.9119,1055.08913,25752.52633,18.52136619,26.0038766,1055.08913,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 19:00,21497058,3597.512,341.3810325,397.07137,38.2551123,36106.87125,2532.91885,993.037395,12939.15299,27.77845309,38.2551123,993.037395,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 20:00,21500000,3597.512,376.53107,501.45108,50.506348,36359.93,2262.9258,930.98566,125.779655,37.03554,50.506348,930.98566,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 21:00,21503915.33,3597.512,252.8964245,351.5474787,33.70547232,35526.405,2013.886067,699.8979967,85.38984473,24.69154397,33.70547232,699.8979967,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 22:00,21507830.67,3597.512,129.2617789,201.6438773,16.90459663,34692.88,1764.846333,468.8103333,45.00003447,12.34754794,16.90459663,468.8103333,130901.3,73179.4,-15784.6,-201976.5
+9/6/2023 23:00,21511746,3597.512,5.6271334,51.740276,0.10372095,33859.355,1515.8066,237.72267,4.6102242,0.003551907,0.10372095,237.72267,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 0:00,21516154,3597.512,5.618769,50.26513,0.10372095,6174.9497,667.697,17.542795,0.740017,0.003319272,0.10372095,17.542795,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 1:00,21519270.4,3597.512,5.60833508,49.574908,0.10372095,4989.696008,1030.0551,245.311296,19.8459216,0.00320748,0.10372095,245.311296,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 2:00,21522386.8,3597.512,5.59790116,48.884686,0.10372095,3804.442316,1392.4132,473.079797,38.9518262,0.003095689,0.10372095,473.079797,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 3:00,21525503.2,3597.512,5.58746724,48.194464,0.10372095,2619.188624,1754.7713,700.848298,58.0577308,0.002983897,0.10372095,700.848298,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 4:00,21528619.6,3597.512,5.57703332,47.504242,0.10372095,1433.934932,2117.1294,928.616799,77.1636354,0.002872106,0.10372095,928.616799,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 5:00,21531736,3597.512,5.5665994,46.81402,0.10372095,248.68124,2479.4875,1156.3853,96.26954,0.002760314,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 6:00,21537406,3597.512,334.34772,431.22394,51.13446,39658.84,1711.9636,374.5047,146.45045,2.3300786,51.13446,374.5047,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 7:00,21541232,3597.512,315.428085,315.515435,51.9040125,38721.041,1773.40085,370.80245,729.586725,1.17535744,51.9040125,370.80245,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 8:00,21545058,3597.512,296.50845,199.80693,52.673565,37783.242,1834.8381,367.1002,1312.723,0.02063628,52.673565,367.1002,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 9:00,21547827.33,3597.512,295.3087433,161.9159367,35.91975837,37236.65233,1968.7109,364.4124667,7384.537333,0.015649436,35.91975837,364.4124667,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 10:00,21550596.67,3597.512,294.1090367,124.0249433,19.16595173,36690.06267,2102.5837,361.7247333,13456.35167,0.010662593,19.16595173,361.7247333,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 11:00,21553366,3597.512,292.90933,86.13395,2.4121451,36143.473,2236.4565,359.037,19528.166,0.005675749,2.4121451,359.037,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 12:00,21557528.67,3597.512,281.6791533,98.14359667,11.35689208,36298.95467,2585.917583,508.04915,60443.665,1.253174624,11.35689208,508.04915,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 13:00,21561691.33,3597.512,270.4489767,110.1532433,20.30163907,36454.43633,2935.378667,657.0613,101359.164,2.500673499,20.30163907,657.0613,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 14:00,21565854,3597.512,259.2188,122.16289,29.24638605,36609.918,3284.83975,806.07345,142274.663,3.748172375,29.24638605,806.07345,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 15:00,21570016.67,3597.512,247.9886233,134.1725367,38.19113303,36765.39967,3634.300833,955.0856,183190.162,4.99567125,38.19113303,955.0856,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 16:00,21574179.33,3597.512,236.7584467,146.1821833,47.13588002,36920.88133,3983.761917,1104.09775,224105.661,6.243170125,47.13588002,1104.09775,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 17:00,21578342,3597.512,225.52827,158.19183,56.080627,37076.363,4333.223,1253.1099,265021.16,7.490669,56.080627,1253.1099,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 18:00,21578402,3597.512,225.50961,104.44689,1.5869367,37093.203,4340.646,1253.791,267147.9,8.087111,1.5869367,1253.791,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 19:00,21582001.67,3597.512,233.439825,103.9726267,1.6533207,36885.8,3939.381267,1100.396527,223356.8042,6.74064419,1.6533207,1100.396527,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 20:00,21585601.33,3597.512,241.37004,103.4983633,1.7197047,36678.397,3538.116533,947.0020533,179565.7083,5.39417738,1.7197047,947.0020533,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 21:00,21589201,3597.512,249.300255,103.0241,1.7860887,36470.994,3136.8518,793.60758,135774.6125,4.04771057,1.7860887,793.60758,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 22:00,21592800.67,3597.512,257.23047,102.5498367,1.8524727,36263.591,2735.587067,640.2131067,91983.51667,2.70124376,1.8524727,640.2131067,130901.3,73179.4,-15784.6,-201976.5
+9/7/2023 23:00,21596400.33,3597.512,265.160685,102.0755733,1.9188567,36056.188,2334.322333,486.8186333,48192.42083,1.35477695,1.9188567,486.8186333,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 0:00,21600000,3597.512,273.0909,101.60131,1.9852407,35848.785,1933.0576,333.42416,4401.325,0.00831014,1.9852407,333.42416,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 1:00,21603624,3597.512,183.8654538,98.67547,1.35806745,23950.62283,1506.835833,228.1700013,2934.45288,0.969009527,1.35806745,228.1700013,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 2:00,21607248,3597.512,94.64000753,95.74963,0.7308942,12052.46065,1080.614067,122.9158427,1467.58076,1.929708913,0.7308942,122.9158427,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 3:00,21610872,3597.512,5.4145613,92.82379,0.10372095,154.29848,654.3923,17.661684,0.70863956,2.8904083,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 4:00,21614614,3597.512,5.4011109,93.0254,0.10372095,471.94636,1581.39315,587.023492,105.1309748,2.89029135,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 5:00,21618356,3597.512,5.3876605,93.22701,0.10372095,789.59424,2508.394,1156.3853,209.55331,2.8901744,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 6:00,21624728,3597.512,263.91373,235.965,52.34743,40691.527,1937.4155,426.64987,2075.6692,2.9075322,52.34743,426.64987,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 7:00,21627165,3597.512,265.908875,171.300175,27.21002365,39123.0175,2106.87535,418.205935,10379.3246,2.9004377,27.21002365,418.205935,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 8:00,21629602,3597.512,267.90402,106.63535,2.0726173,37554.508,2276.3352,409.762,18682.98,2.8933432,2.0726173,409.762,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 9:00,21633504.89,3597.512,262.5271844,118.20213,8.080104267,37427.14556,2567.721733,504.6552,67869.31222,16.43870062,8.080104267,504.6552,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 10:00,21637407.78,3597.512,257.1503489,129.76891,14.08759123,37299.78311,2859.108267,599.5484,117055.6444,29.98405804,14.08759123,599.5484,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 11:00,21641310.67,3597.512,251.7735133,141.33569,20.0950782,37172.42067,3150.4948,694.4416,166241.9767,43.52941547,20.0950782,694.4416,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 12:00,21645213.56,3597.512,246.3966778,152.90247,26.10256517,37045.05822,3441.881333,789.3348,215428.3089,57.07477289,26.10256517,789.3348,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 13:00,21649116.44,3597.512,241.0198422,164.46925,32.11005213,36917.69578,3733.267867,884.228,264614.6411,70.62013031,32.11005213,884.228,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 14:00,21653019.33,3597.512,235.6430067,176.03603,38.1175391,36790.33333,4024.6544,979.1212,313800.9733,84.16548773,38.1175391,979.1212,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 15:00,21656922.22,3597.512,230.2661711,187.60281,44.12502607,36662.97089,4316.040933,1074.0144,362987.3056,97.71084516,44.12502607,1074.0144,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 16:00,21660825.11,3597.512,224.8893356,199.16959,50.13251303,36535.60844,4607.427467,1168.9076,412173.6378,111.2562026,50.13251303,1168.9076,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 17:00,21664728,3597.512,219.5125,210.73637,56.14,36408.246,4898.814,1263.8008,461359.97,124.80156,56.14,1263.8008,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 18:00,21668313.71,3597.512,188.9073974,200.9212129,48.13481728,31254.88296,4552.447786,1248.455729,395462.8207,118.9187786,48.13481728,1248.455729,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 19:00,21671899.43,3597.512,158.3022947,191.1060557,40.12963456,26101.51991,4206.081571,1233.110657,329565.6714,113.0359971,40.12963456,1233.110657,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 20:00,21675485.14,3597.512,127.6971921,181.2908986,32.12445184,20948.15687,3859.715357,1217.765586,263668.5222,107.1532157,32.12445184,1217.765586,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 21:00,21679070.86,3597.512,97.09208949,171.4757414,24.11926911,15794.79383,3513.349143,1202.420514,197771.3729,101.2704343,24.11926911,1202.420514,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 22:00,21682656.57,3597.512,66.48698686,161.6605843,16.11408639,10641.43079,3166.982929,1187.075443,131874.2236,95.38765286,16.11408639,1187.075443,130901.3,73179.4,-15784.6,-201976.5
+9/8/2023 23:00,21686242.29,3597.512,35.88188423,151.8454271,8.108903671,5488.067743,2820.616714,1171.730371,65977.07433,89.50487143,8.108903671,1171.730371,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 0:00,21689828,3597.512,5.2767816,142.03027,0.10372095,334.7047,2474.2505,1156.3853,79.92505,83.62209,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 1:00,21692306,3597.512,5.270201733,141.9790533,0.10372095,272.53347,1948.997547,776.8107613,53.7488911,83.621,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 2:00,21694784,3597.512,5.263621867,141.9278367,0.10372095,210.36224,1423.744593,397.2362227,27.5727322,83.61991,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 3:00,21697262,3597.512,5.257042,141.87662,0.10372095,148.19101,898.49164,17.661684,1.3965733,83.61882,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 4:00,21700975.14,3597.512,5.256251967,141.8421319,0.10372095,510.1759143,953.8873143,71.8866181,1.400553157,83.61880762,0.10372095,71.8866181,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 5:00,21704688.29,3597.512,5.255461933,141.8076438,0.10372095,872.1608186,1009.282989,126.1115522,1.404533014,83.61879524,0.10372095,126.1115522,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 6:00,21708401.43,3597.512,5.2546719,141.7731557,0.10372095,1234.145723,1064.678663,180.3364863,1.408512871,83.61878286,0.10372095,180.3364863,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 7:00,21712114.57,3597.512,5.253881867,141.7386676,0.10372095,1596.130627,1120.074337,234.5614204,1.412492729,83.61877048,0.10372095,234.5614204,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 8:00,21715827.71,3597.512,5.253091833,141.7041795,0.10372095,1958.115531,1175.470011,288.7863545,1.416472586,83.6187581,0.10372095,288.7863545,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 9:00,21719540.86,3597.512,5.2523018,141.6696914,0.10372095,2320.100436,1230.865686,343.0112886,1.420452443,83.61874571,0.10372095,343.0112886,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 10:00,21723254,3597.512,5.251511767,141.6352033,0.10372095,2682.08534,1286.26136,397.2362227,1.4244323,83.61873333,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 11:00,21726967.14,3597.512,5.250721733,141.6007152,0.10372095,3044.070244,1341.657034,451.4611568,1.428412157,83.61872095,0.10372095,451.4611568,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 12:00,21730680.29,3597.512,5.2499317,141.5662271,0.10372095,3406.055149,1397.052709,505.6860909,1.432392014,83.61870857,0.10372095,505.6860909,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 13:00,21734393.43,3597.512,5.249141667,141.531739,0.10372095,3768.040053,1452.448383,559.911025,1.436371871,83.61869619,0.10372095,559.911025,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 14:00,21738106.57,3597.512,5.248351633,141.497251,0.10372095,4130.024957,1507.844057,614.135959,1.440351729,83.61868381,0.10372095,614.135959,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 15:00,21741819.71,3597.512,5.2475616,141.4627629,0.10372095,4492.009861,1563.239731,668.3608931,1.444331586,83.61867143,0.10372095,668.3608931,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 16:00,21745532.86,3597.512,5.246771567,141.4282748,0.10372095,4853.994766,1618.635406,722.5858272,1.448311443,83.61865905,0.10372095,722.5858272,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 17:00,21749246,3597.512,5.245981533,141.3937867,0.10372095,5215.97967,1674.03108,776.8107613,1.4522913,83.61864667,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 18:00,21752959.14,3597.512,5.2451915,141.3592986,0.10372095,5577.964574,1729.426754,831.0356954,1.456271157,83.61863429,0.10372095,831.0356954,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 19:00,21756672.29,3597.512,5.244401467,141.3248105,0.10372095,5939.949479,1784.822429,885.2606295,1.460251014,83.6186219,0.10372095,885.2606295,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 20:00,21760385.43,3597.512,5.243611433,141.2903224,0.10372095,6301.934383,1840.218103,939.4855636,1.464230871,83.61860952,0.10372095,939.4855636,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 21:00,21764098.57,3597.512,5.2428214,141.2558343,0.10372095,6663.919287,1895.613777,993.7104977,1.468210729,83.61859714,0.10372095,993.7104977,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 22:00,21767811.71,3597.512,5.242031367,141.2213462,0.10372095,7025.904191,1951.009451,1047.935432,1.472190586,83.61858476,0.10372095,1047.935432,130901.3,73179.4,-15784.6,-201976.5
+9/9/2023 23:00,21771524.86,3597.512,5.241241333,141.1868581,0.10372095,7387.889096,2006.405126,1102.160366,1.476170443,83.61857238,0.10372095,1102.160366,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 0:00,21775238,3597.512,5.2404513,141.15237,0.10372095,7749.874,2061.8008,1156.3853,1.4801503,83.61856,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 1:00,21778084.67,3597.512,5.2341642,141.1389933,0.10372095,5217.82516,1384.203981,775.8703833,0.986834871,83.61856,0.10372095,775.8703833,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 2:00,21780931.33,3597.512,5.2278771,141.1256167,0.10372095,2685.77632,706.6071613,395.3554667,0.493519442,83.61856,0.10372095,395.3554667,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 3:00,21783778,3597.512,5.22159,141.11224,0.10372095,153.72748,29.010342,14.84055,0.000204013,83.61856,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 4:00,21787833.5,3597.512,5.252415,141.158495,0.10372095,9123.15011,1242.378257,322.9986375,115339.9927,83.6185625,0.10372095,322.9986375,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 5:00,21791889,3597.512,5.28324,141.20475,0.10372095,18092.57274,2455.746171,631.156725,230679.9851,83.618565,0.10372095,631.156725,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 6:00,21795944.5,3597.512,5.314065,141.251005,0.10372095,27061.99537,3669.114086,939.3148125,346019.9776,83.6185675,0.10372095,939.3148125,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 7:00,21800000,3597.512,5.34489,141.29726,0.10372095,36031.418,4882.482,1247.4729,461359.97,83.61857,0.10372095,1247.4729,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 8:00,21803217.2,3597.512,5.35656052,141.235296,0.10372095,35788.6964,4377.1421,1069.398834,375235.437,83.618566,0.10372095,1069.398834,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 9:00,21806434.4,3597.512,5.36823104,141.173332,0.10372095,35545.9748,3871.8022,891.324768,289110.904,83.618562,0.10372095,891.324768,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 10:00,21809651.6,3597.512,5.37990156,141.111368,0.10372095,35303.2532,3366.4623,713.250702,202986.371,83.618558,0.10372095,713.250702,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 11:00,21812868.8,3597.512,5.39157208,141.049404,0.10372095,35060.5316,2861.1224,535.176636,116861.838,83.618554,0.10372095,535.176636,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 12:00,21816086,3597.512,5.4032426,140.98744,0.10372095,34817.81,2355.7825,357.10257,30737.305,83.61855,0.10372095,357.10257,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 13:00,21820092.4,3597.512,5.38437958,140.978614,0.10372095,35172.598,2602.3102,528.430156,41817.966,83.6295812,0.10372095,528.430156,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 14:00,21824098.8,3597.512,5.36551656,140.969788,0.10372095,35527.386,2848.8379,699.757742,52898.627,83.6406124,0.10372095,699.757742,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 15:00,21828105.2,3597.512,5.34665354,140.960962,0.10372095,35882.174,3095.3656,871.085328,63979.288,83.6516436,0.10372095,871.085328,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 16:00,21832111.6,3597.512,5.32779052,140.952136,0.10372095,36236.962,3341.8933,1042.412914,75059.949,83.6626748,0.10372095,1042.412914,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 17:00,21836118,3597.512,5.3089275,140.94331,0.10372095,36591.75,3588.421,1213.7405,86140.61,83.673706,0.10372095,1213.7405,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 18:00,21839082,3597.512,5.319526,75.924545,54.829468,36993.633,3682.8594,1226.0869,102037.86,0.000488004,54.829468,1226.0869,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 19:00,21842573.5,3597.512,5.327323,62.37227275,41.14803124,36795.839,3157.174,991.781875,76532.476,0.000489222,41.14803124,991.781875,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 20:00,21846065,3597.512,5.33512,48.8200005,27.46659448,36598.045,2631.4886,757.47685,51027.09199,0.00049044,27.46659448,757.47685,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 21:00,21849556.5,3597.512,5.342917,35.26772825,13.78515771,36400.251,2105.8032,523.171825,25521.70799,0.000491658,13.78515771,523.171825,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 22:00,21853048,3597.512,5.350714,21.715456,0.10372095,36202.457,1580.1178,288.8668,16.323986,0.000492876,0.10372095,288.8668,130901.3,73179.4,-15784.6,-201976.5
+9/10/2023 23:00,21856950,3597.512,5.45397965,21.7058165,0.10372095,27137.99,1097.68863,168.794855,8.440105235,0.00049237,0.10372095,168.794855,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 0:00,21860852,3597.512,5.5572453,21.696177,0.10372095,18073.523,615.25946,48.72291,0.55622447,0.000491864,0.10372095,48.72291,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 1:00,21863956,3597.512,5.544693333,21.68891733,0.10372095,12100.86366,577.0904633,38.369168,0.504161213,0.000491484,0.10372095,38.369168,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 2:00,21867060,3597.512,5.532141367,21.68165767,0.10372095,6128.20432,538.9214667,28.015426,0.452097957,0.000491104,0.10372095,28.015426,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 3:00,21870164,3597.512,5.5195894,21.674398,0.10372095,155.54498,500.75247,17.661684,0.4000347,0.000490724,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 4:00,21874447.33,3597.512,186.8302263,152.318732,17.1177223,13423.33465,895.8104133,137.5608327,17.39548547,5.931602149,17.1177223,137.5608327,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 5:00,21878730.67,3597.512,368.1408631,282.963066,34.13172365,26691.12433,1290.868357,257.4599813,34.39093623,11.86271357,34.13172365,257.4599813,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 6:00,21883014,3597.512,549.4515,413.6074,51.145725,39958.914,1685.9263,377.35913,51.386387,17.793825,51.145725,377.35913,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 7:00,21885536,3597.512,514.92442,408.98264,51.928314,39916.432,1700.52905,396.422315,40.7035255,11.777339,51.928314,396.422315,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 8:00,21888058,3597.512,480.39734,404.35788,52.710903,39873.95,1715.1318,415.4855,30.020664,5.760853,52.710903,415.4855,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 9:00,21891994,3597.512,274.13617,413.0325,2.0341527,37576.734,1776.6073,353.39584,738.2317,2.823747,2.0341527,353.39584,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 10:00,21895997,3597.512,139.7157992,217.377622,1.068936825,37743.3435,2249.2989,775.10112,1559.8351,1.412120129,1.068936825,775.10112,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 11:00,21900000,3597.512,5.2954283,21.722744,0.10372095,37909.953,2721.9905,1196.8064,2381.4385,0.000493258,0.10372095,1196.8064,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 12:00,21903995.33,3597.512,42.15385192,38.97943833,0.350561725,37858.66583,2938.3567,1206.1095,31068.49542,4.883874882,0.350561725,1206.1095,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 13:00,21907990.67,3597.512,79.01227553,56.23613267,0.5974025,37807.37867,3154.7229,1215.4126,59755.55233,9.767256505,0.5974025,1215.4126,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 14:00,21911986,3597.512,115.8706991,73.492827,0.844243275,37756.0915,3371.0891,1224.7157,88442.60925,14.65063813,0.844243275,1224.7157,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 15:00,21915981.33,3597.512,152.7291228,90.74952133,1.09108405,37704.80433,3587.4553,1234.0188,117129.6662,19.53401975,1.09108405,1234.0188,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 16:00,21919976.67,3597.512,189.5875464,108.0062157,1.337924825,37653.51717,3803.8215,1243.3219,145816.7231,24.41740138,1.337924825,1243.3219,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 17:00,21923972,3597.512,226.44597,125.26291,1.5847656,37602.23,4020.1877,1252.625,174503.78,29.300783,1.5847656,1252.625,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 18:00,21927119,3597.512,189.6335187,122.0528033,1.337924825,37040.67333,3603.1307,1084.559908,145420.3288,26.34420417,1.337924825,1084.559908,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 19:00,21930266,3597.512,152.8210675,118.8426967,1.09108405,36479.11667,3186.0737,916.4948167,116336.8777,23.38762533,1.09108405,916.4948167,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 20:00,21933413,3597.512,116.0086162,115.63259,0.844243275,35917.56,2769.0167,748.429725,87253.42649,20.4310465,0.844243275,748.429725,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 21:00,21936560,3597.512,79.19616493,112.4224833,0.5974025,35356.00333,2351.9597,580.3646333,58169.97532,17.47446767,0.5974025,580.3646333,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 22:00,21939707,3597.512,42.38371367,109.2123767,0.350561725,34794.44667,1934.9027,412.2995417,29086.52415,14.51788883,0.350561725,412.2995417,130901.3,73179.4,-15784.6,-201976.5
+9/11/2023 23:00,21942854,3597.512,5.5712624,106.00227,0.10372095,34232.89,1517.8457,244.23445,3.0729754,11.56131,0.10372095,244.23445,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 0:00,21946267,3597.512,5.55387705,105.792926,0.10372095,25713.50443,1273.011625,187.5912585,2.421579287,11.5561585,0.10372095,187.5912585,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 1:00,21949680,3597.512,5.5364917,105.583582,0.10372095,17194.11885,1028.17755,130.948067,1.770183175,11.551007,0.10372095,130.948067,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 2:00,21953093,3597.512,5.51910635,105.374238,0.10372095,8674.733275,783.343475,74.3048755,1.118787063,11.5458555,0.10372095,74.3048755,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 3:00,21956506,3597.512,5.501721,105.164894,0.10372095,155.3477,538.5094,17.661684,0.46739095,11.540704,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 4:00,21960190,3597.512,86.4594968,180.1638672,10.61003976,8023.54296,791.58406,95.9482012,95.91174276,11.915676,10.61003976,95.9482012,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 5:00,21963874,3597.512,167.4172726,255.1628404,21.11635857,15891.73822,1044.65872,174.2347184,191.3560946,12.290648,21.11635857,174.2347184,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 6:00,21967558,3597.512,248.3750484,330.1618136,31.62267738,23759.93348,1297.73338,252.5212356,286.8004464,12.66562,31.62267738,252.5212356,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 7:00,21971242,3597.512,329.3328242,405.1607868,42.12899619,31628.12874,1550.80804,330.8077528,382.2447982,13.040592,42.12899619,330.8077528,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 8:00,21974926,3597.512,410.2906,480.15976,52.635315,39496.324,1803.8827,409.09427,477.68915,13.415564,52.635315,409.09427,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 9:00,21978314,3597.512,274.5916,328.0774,29.473747,37235.977,1890.7,356.15726,2594.0957,0.0968399,29.473747,356.15726,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 10:00,21985034,3597.512,289.94003,185.6076,2.63251,35882.402,2415.4146,385.44873,34167.99,9.207798,2.63251,385.44873,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 11:00,21988027.2,3597.512,233.0570089,169.58054,2.12675219,28737.49873,2055.786868,311.8913208,27334.51713,9.674698,2.12675219,311.8913208,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 12:00,21991020.4,3597.512,176.1739877,153.55348,1.62099438,21592.59546,1696.159136,238.3339116,20501.04426,10.141598,1.62099438,238.3339116,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 13:00,21994013.6,3597.512,119.2909666,137.52642,1.11523657,14447.69218,1336.531404,164.7765024,13667.57138,10.608498,1.11523657,164.7765024,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 14:00,21997006.8,3597.512,62.40794544,121.49936,0.60947876,7302.788912,976.903672,91.2190932,6834.098511,11.075398,0.60947876,91.2190932,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 15:00,22000000,3597.512,5.5249243,105.4723,0.10372095,157.88564,617.27594,17.661684,0.6256382,11.542298,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 16:00,22005167,3597.512,115.3501621,132.972235,28.09998298,18656.05282,2541.09282,638.166892,152966.2978,10.295583,28.09998298,638.166892,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 17:00,22010334,3597.512,225.1754,160.47217,56.096245,37154.22,4464.9097,1258.6721,305931.97,9.048868,56.096245,1258.6721,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 18:00,22013911.14,3597.512,193.7894342,151.0194843,48.09731299,31914.22263,4148.980429,1244.0597,262227.7211,8.2691658,48.09731299,1244.0597,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 19:00,22017488.29,3597.512,162.4034684,141.5667986,40.09838099,26674.22527,3833.051157,1229.4473,218523.4723,7.4894636,40.09838099,1229.4473,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 20:00,22021065.43,3597.512,131.0175026,132.1141129,32.09944898,21434.2279,3517.121886,1214.8349,174819.2234,6.7097614,32.09944898,1214.8349,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 21:00,22024642.57,3597.512,99.63153686,122.6614271,24.10051697,16194.23053,3201.192614,1200.2225,131114.9745,5.9300592,24.10051697,1200.2225,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 22:00,22028219.71,3597.512,68.24557107,113.2087414,16.10158496,10954.23316,2885.263343,1185.6101,87410.72565,5.150357,16.10158496,1185.6101,130901.3,73179.4,-15784.6,-201976.5
+9/12/2023 23:00,22031796.86,3597.512,36.85960529,103.7560557,8.102652957,5714.235797,2569.334071,1170.9977,43706.47678,4.3706548,8.102652957,1170.9977,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 0:00,22035374,3597.512,5.4736395,94.30337,0.10372095,474.23843,2253.4048,1156.3853,2.2279146,3.5909526,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 1:00,22037873.33,3597.512,5.456594167,94.22564333,0.10372095,366.4789367,1723.8127,776.8107613,1.729461367,3.5902376,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 2:00,22040372.67,3597.512,5.439548833,94.14791667,0.10372095,258.7194433,1194.2206,397.2362227,1.231008133,3.5895226,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 3:00,22042872,3597.512,5.4225035,94.07019,0.10372095,150.95995,664.6285,17.661684,0.7325549,3.5888076,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 4:00,22046645,3597.512,5.41082425,94.29597,0.10372095,588.284925,1588.83185,587.023492,116.6345475,3.5887072,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 5:00,22050418,3597.512,5.399145,94.52175,0.10372095,1025.6099,2513.0352,1156.3853,232.53654,3.5886068,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 6:00,22057066,3597.512,267.67053,188.23434,52.627506,40682.188,2079.8452,445.28247,5626.595,3.5934205,52.627506,445.28247,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 7:00,22059746,3597.512,271.17838,156.48885,52.78634,38665.766,2277.5178,433.98315,16973.014,3.5892332,52.78634,433.98315,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 8:00,22062282,3597.512,266.91794,100.7424,2.1048214,37006.76,2366.6565,424.67667,25093.4,3.5888455,2.1048214,424.67667,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 9:00,22064504,3597.512,266.61984,99.682396,2.0994616,35822.79,2493.6685,468.66937,33608.746,3.589947,2.0994616,468.66937,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 10:00,22068520.5,3597.512,261.0674,106.3939602,8.85328515,35922.44663,2794.501863,568.2534238,87077.649,3.820039375,8.85328515,568.2534238,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 11:00,22072537,3597.512,255.51496,113.1055245,15.6071087,36022.10325,3095.335225,667.8374775,140546.552,4.05013175,15.6071087,667.8374775,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 12:00,22076553.5,3597.512,249.96252,119.8170888,22.36093225,36121.75988,3396.168588,767.4215313,194015.455,4.280224125,22.36093225,767.4215313,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 13:00,22080570,3597.512,244.41008,126.528653,29.1147558,36221.4165,3697.00195,867.005585,247484.358,4.5103165,29.1147558,867.005585,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 14:00,22084586.5,3597.512,238.85764,133.2402173,35.86857935,36321.07312,3997.835313,966.5896388,300953.261,4.740408875,35.86857935,966.5896388,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 15:00,22088603,3597.512,233.3052,139.9517815,42.6224029,36420.72975,4298.668675,1066.173693,354422.164,4.97050125,42.6224029,1066.173693,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 16:00,22092619.5,3597.512,227.75276,146.6633458,49.37622645,36520.38638,4599.502038,1165.757746,407891.067,5.200593625,49.37622645,1165.757746,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 17:00,22096636,3597.512,222.20032,153.37491,56.13005,36620.043,4900.3354,1265.3418,461359.97,5.430686,56.13005,1265.3418,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 18:00,22100000,3597.512,5.398894,93.90792,0.10372095,147.24374,2514.8071,1156.3853,241.64232,3.588576,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 19:00,22103642.33,3597.512,5.3921546,93.40716667,0.10372095,170.1891033,2512.5101,1156.3853,230.7185117,3.362098783,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 20:00,22107284.67,3597.512,5.3854152,92.90641333,0.10372095,193.1344667,2510.2131,1156.3853,219.7947033,3.135621567,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 21:00,22110927,3597.512,5.3786758,92.40566,0.10372095,216.07983,2507.9161,1156.3853,208.870895,2.90914435,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 22:00,22114569.33,3597.512,5.3719364,91.90490667,0.10372095,239.0251933,2505.6191,1156.3853,197.9470867,2.682667133,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/13/2023 23:00,22118211.67,3597.512,5.365197,91.40415333,0.10372095,261.9705567,2503.3221,1156.3853,187.0232783,2.456189917,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 0:00,22121854,3597.512,5.3584576,90.9034,0.10372095,284.91592,2501.0251,1156.3853,176.09947,2.2297127,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 1:00,22124322,3597.512,5.3509034,90.87061333,0.10372095,240.62401,2101.779267,776.8107613,118.5380252,2.2290363,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 2:00,22126790,3597.512,5.3433492,90.83782667,0.10372095,196.3321,1702.533433,397.2362227,60.9765804,2.2283599,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 3:00,22129258,3597.512,5.335795,90.80504,0.10372095,152.04019,1303.2876,17.661684,3.4151356,2.2276835,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 4:00,22132860.29,3597.512,40.59557714,91.07979286,0.410901929,5184.027306,1611.964371,184.9882006,9817.477259,2.2277518,0.410901929,184.9882006,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 5:00,22136462.57,3597.512,75.85535929,91.35454571,0.718082907,10216.01442,1920.641143,352.3147171,19631.53938,2.2278201,0.718082907,352.3147171,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 6:00,22140064.86,3597.512,111.1151414,91.62929857,1.025263886,15248.00154,2229.317914,519.6412337,29445.60151,2.2278884,1.025263886,519.6412337,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 7:00,22143667.14,3597.512,146.3749236,91.90405143,1.332444864,20279.98865,2537.994686,686.9677503,39259.66363,2.2279567,1.332444864,686.9677503,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 8:00,22147269.43,3597.512,181.6347057,92.17880429,1.639625843,25311.97577,2846.671457,854.2942669,49073.72575,2.228025,1.639625843,854.2942669,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 9:00,22150871.71,3597.512,216.8944879,92.45355714,1.946806821,30343.96288,3155.348229,1021.620783,58887.78788,2.2280933,1.946806821,1021.620783,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 10:00,22154474,3597.512,252.15427,92.72831,2.2539878,35375.95,3464.025,1188.9473,68701.85,2.2281616,2.2539878,1188.9473,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 11:00,22158440.86,3597.512,247.9464529,99.85357429,9.950986257,35491.052,3667.706286,1198.355443,124795.8671,2.044371343,9.950986257,1198.355443,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 12:00,22162407.71,3597.512,243.7386357,106.9788386,17.64798471,35606.154,3871.387571,1207.763586,180889.8843,1.860581086,17.64798471,1207.763586,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 13:00,22166374.57,3597.512,239.5308186,114.1041029,25.34498317,35721.256,4075.068857,1217.171729,236983.9014,1.676790829,25.34498317,1217.171729,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 14:00,22170341.43,3597.512,235.3230014,121.2293671,33.04198163,35836.358,4278.750143,1226.579871,293077.9186,1.493000571,33.04198163,1226.579871,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 15:00,22174308.29,3597.512,231.1151843,128.3546314,40.73898009,35951.46,4482.431429,1235.988014,349171.9357,1.309210314,40.73898009,1235.988014,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 16:00,22178275.14,3597.512,226.9073671,135.4798957,48.43597854,36066.562,4686.112714,1245.396157,405265.9529,1.125420057,48.43597854,1245.396157,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 17:00,22182242,3597.512,222.69955,142.60516,56.132977,36181.664,4889.794,1254.8043,461359.97,0.9416298,56.132977,1254.8043,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 18:00,22185793.6,3597.512,228.527328,132.636146,45.357588,36198.6012,4446.54868,1117.1814,377801.47,1.19877894,45.357588,1117.1814,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 19:00,22189345.2,3597.512,234.355106,122.667132,34.582199,36215.5384,4003.30336,979.5585,294242.97,1.45592808,34.582199,979.5585,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 20:00,22192896.8,3597.512,240.182884,112.698118,23.80681,36232.4756,3560.05804,841.9356,210684.47,1.71307722,23.80681,841.9356,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 21:00,22196448.4,3597.512,246.010662,102.729104,13.031421,36249.4128,3116.81272,704.3127,127125.97,1.97022636,13.031421,704.3127,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 22:00,22200000,3597.512,251.83844,92.76009,2.256032,36266.35,2673.5674,566.6898,43567.47,2.2273755,2.256032,566.6898,130901.3,73179.4,-15784.6,-201976.5
+9/14/2023 23:00,22204116,3597.512,128.6000948,87.4594,1.179876475,18296.85176,2580.91625,861.53755,21846.57893,1.1870031,1.179876475,861.53755,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 0:00,22208232,3597.512,5.3617496,82.15871,0.10372095,327.35352,2488.2651,1156.3853,125.68786,0.1466307,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 1:00,22210707.33,3597.512,5.3545249,82.13417533,0.10372095,269.0219033,2008.8663,776.8107613,84.44396963,0.14510282,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 2:00,22213182.67,3597.512,5.3473002,82.10964067,0.10372095,210.6902867,1529.4675,397.2362227,43.20007927,0.14357494,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 3:00,22215658,3597.512,5.3400755,82.085106,0.10372095,152.35867,1050.0687,17.661684,1.9561889,0.14204706,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 4:00,22219286,3597.512,54.1987124,82.4900808,0.52389516,7716.708936,1315.6804,101.7528472,4983.751351,0.141691242,0.52389516,101.7528472,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 5:00,22222914,3597.512,103.0573493,82.8950556,0.94406937,15281.0592,1581.2921,185.8440104,9965.546513,0.141335424,0.94406937,185.8440104,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 6:00,22226542,3597.512,151.9159862,83.3000304,1.36424358,22845.40947,1846.9038,269.9351736,14947.34168,0.140979606,1.36424358,269.9351736,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 7:00,22230170,3597.512,200.7746231,83.7050052,1.78441779,30409.75973,2112.5155,354.0263368,19929.13684,0.140623788,1.78441779,354.0263368,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 8:00,22233798,3597.512,249.63326,84.10998,2.204592,37974.11,2378.1272,438.1175,24910.932,0.14026797,2.204592,438.1175,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 9:00,22237761.33,3597.512,246.3438344,96.30998111,8.199592333,37808.15589,2659.085233,530.7448333,73405.26956,8.468764862,8.199592333,530.7448333,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 10:00,22241724.67,3597.512,243.0544089,108.5099822,14.19459267,37642.20178,2940.043267,623.3721667,121899.6071,16.79726175,14.19459267,623.3721667,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 11:00,22245688,3597.512,239.7649833,120.7099833,20.189593,37476.24767,3221.0013,715.9995,170393.9447,25.12575865,20.189593,715.9995,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 12:00,22249651.33,3597.512,236.4755578,132.9099844,26.18459333,37310.29356,3501.959333,808.6268333,218888.2822,33.45425554,26.18459333,808.6268333,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 13:00,22253614.67,3597.512,233.1861322,145.1099856,32.17959367,37144.33944,3782.917367,901.2541667,267382.6198,41.78275243,32.17959367,901.2541667,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 14:00,22257578,3597.512,229.8967067,157.3099867,38.174594,36978.38533,4063.8754,993.8815,315876.9573,50.11124932,38.174594,993.8815,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 15:00,22261541.33,3597.512,226.6072811,169.5099878,44.16959433,36812.43122,4344.833433,1086.508833,364371.2949,58.43974622,44.16959433,1086.508833,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 16:00,22265504.67,3597.512,223.3178556,181.7099889,50.16459467,36646.47711,4625.791467,1179.136167,412865.6324,66.76824311,50.16459467,1179.136167,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 17:00,22269468,3597.512,220.02843,193.90999,56.159595,36480.523,4906.7495,1271.7635,461359.97,75.09674,56.159595,1271.7635,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 18:00,22273066.29,3597.512,189.3518885,184.4082906,48.15161299,31308.72021,4566.278514,1255.2809,395492.7081,71.32994714,48.15161299,1255.2809,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 19:00,22276664.57,3597.512,158.6753469,174.9065911,40.14363099,26136.91743,4225.807529,1238.7983,329625.4461,67.56315429,40.14363099,1238.7983,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 20:00,22280262.86,3597.512,127.9988054,165.4048917,32.13564898,20965.11464,3885.336543,1222.3157,263758.1842,63.79636143,32.13564898,1222.3157,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 21:00,22283861.14,3597.512,97.32226389,155.9031923,24.12766697,15793.31186,3544.865557,1205.8331,197890.9223,60.02956857,24.12766697,1205.8331,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 22:00,22287459.43,3597.512,66.64572236,146.4014929,16.11968496,10621.50907,3204.394571,1189.3505,132023.6604,56.26277571,16.11968496,1189.3505,130901.3,73179.4,-15784.6,-201976.5
+9/15/2023 23:00,22291057.71,3597.512,35.96918083,136.8997934,8.111702957,5449.706286,2863.923586,1172.8679,66156.39843,52.49598286,8.111702957,1172.8679,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 0:00,22294656,3597.512,5.2926393,127.398094,0.10372095,277.9035,2523.4526,1156.3853,289.1365,48.72919,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 1:00,22297328,3597.512,144.7839697,190.090772,28.86316848,16668.71175,3677.9956,1176.96845,230824.5532,238.78548,28.86316848,1176.96845,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 2:00,22300000,3597.512,284.2753,252.78345,57.622616,33059.52,4832.5386,1197.5516,461359.97,428.84177,57.622616,1197.5516,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 3:00,22302058,3597.512,5.2725496,127.383064,0.10372095,152.69185,1304.6704,17.661684,11.466845,48.726864,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 4:00,22305820.29,3597.512,5.271179967,127.3773181,0.10372095,158.037959,1367.757243,71.8866181,77.44169524,48.72685571,0.10372095,71.8866181,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 5:00,22309582.57,3597.512,5.269810333,127.3715722,0.10372095,163.3840681,1430.844086,126.1115522,143.4165455,48.72684743,0.10372095,126.1115522,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 6:00,22313344.86,3597.512,5.2684407,127.3658263,0.10372095,168.7301771,1493.930929,180.3364863,209.3913957,48.72683914,0.10372095,180.3364863,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 7:00,22317107.14,3597.512,5.267071067,127.3600804,0.10372095,174.0762862,1557.017771,234.5614204,275.366246,48.72683086,0.10372095,234.5614204,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 8:00,22320869.43,3597.512,5.265701433,127.3543345,0.10372095,179.4223952,1620.104614,288.7863545,341.3410962,48.72682257,0.10372095,288.7863545,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 9:00,22324631.71,3597.512,5.2643318,127.3485886,0.10372095,184.7685043,1683.191457,343.0112886,407.3159464,48.72681429,0.10372095,343.0112886,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 10:00,22328394,3597.512,5.262962167,127.3428427,0.10372095,190.1146133,1746.2783,397.2362227,473.2907967,48.726806,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 11:00,22332156.29,3597.512,5.261592533,127.3370968,0.10372095,195.4607224,1809.365143,451.4611568,539.2656469,48.72679771,0.10372095,451.4611568,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 12:00,22335918.57,3597.512,5.2602229,127.3313509,0.10372095,200.8068314,1872.451986,505.6860909,605.2404971,48.72678943,0.10372095,505.6860909,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 13:00,22339680.86,3597.512,5.258853267,127.325605,0.10372095,206.1529405,1935.538829,559.911025,671.2153474,48.72678114,0.10372095,559.911025,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 14:00,22343443.14,3597.512,5.257483633,127.319859,0.10372095,211.4990495,1998.625671,614.135959,737.1901976,48.72677286,0.10372095,614.135959,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 15:00,22347205.43,3597.512,5.256114,127.3141131,0.10372095,216.8451586,2061.712514,668.3608931,803.1650479,48.72676457,0.10372095,668.3608931,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 16:00,22350967.71,3597.512,5.254744367,127.3083672,0.10372095,222.1912676,2124.799357,722.5858272,869.1398981,48.72675629,0.10372095,722.5858272,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 17:00,22354730,3597.512,5.253374733,127.3026213,0.10372095,227.5373767,2187.8862,776.8107613,935.1147483,48.726748,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 18:00,22358492.29,3597.512,5.2520051,127.2968754,0.10372095,232.8834857,2250.973043,831.0356954,1001.089599,48.72673971,0.10372095,831.0356954,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 19:00,22362254.57,3597.512,5.250635467,127.2911295,0.10372095,238.2295948,2314.059886,885.2606295,1067.064449,48.72673143,0.10372095,885.2606295,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 20:00,22366016.86,3597.512,5.249265833,127.2853836,0.10372095,243.5757038,2377.146729,939.4855636,1133.039299,48.72672314,0.10372095,939.4855636,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 21:00,22369779.14,3597.512,5.2478962,127.2796377,0.10372095,248.9218129,2440.233571,993.7104977,1199.014149,48.72671486,0.10372095,993.7104977,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 22:00,22373541.43,3597.512,5.246526567,127.2738918,0.10372095,254.2679219,2503.320414,1047.935432,1264.989,48.72670657,0.10372095,1047.935432,130901.3,73179.4,-15784.6,-201976.5
+9/16/2023 23:00,22377303.71,3597.512,5.245156933,127.2681459,0.10372095,259.614031,2566.407257,1102.160366,1330.96385,48.72669829,0.10372095,1102.160366,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 0:00,22381066,3597.512,5.2437873,127.2624,0.10372095,264.96014,2629.4941,1156.3853,1396.9387,48.72669,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 1:00,22383531.33,3597.512,5.2272032,127.25932,0.10372095,227.05196,2213.970267,776.8107613,1024.235083,48.72669,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 2:00,22385996.67,3597.512,5.2106191,127.25624,0.10372095,189.14378,1798.446433,397.2362227,651.5314667,48.72669,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 3:00,22388462,3597.512,5.194035,127.25316,0.10372095,151.2356,1382.9226,17.661684,278.82785,48.72669,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 4:00,22392308,3597.512,5.254069467,127.270285,0.10372095,11142.44707,2530.289867,408.4551227,153972.5419,48.72669067,0.10372095,408.4551227,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 5:00,22396154,3597.512,5.314103933,127.28741,0.10372095,22133.65853,3677.657133,799.2485613,307666.2559,48.72669133,0.10372095,799.2485613,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 6:00,22400000,3597.512,5.3741384,127.304535,0.10372095,33124.87,4825.0244,1190.042,461359.97,48.726692,0.10372095,1190.042,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 7:00,22403735.78,3597.512,5.380168294,127.2970061,0.10372095,31337.17661,4667.691344,1188.172183,435728.9302,48.72669161,0.10372095,1188.172183,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 8:00,22407471.56,3597.512,5.386198189,127.2894771,0.10372095,29549.48322,4510.358289,1186.302367,410097.8904,48.72669122,0.10372095,1186.302367,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 9:00,22411207.33,3597.512,5.392228083,127.2819482,0.10372095,27761.78983,4353.025233,1184.43255,384466.8505,48.72669083,0.10372095,1184.43255,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 10:00,22414943.11,3597.512,5.398257978,127.2744192,0.10372095,25974.09644,4195.692178,1182.562733,358835.8107,48.72669044,0.10372095,1182.562733,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 11:00,22418678.89,3597.512,5.404287872,127.2668903,0.10372095,24186.40306,4038.359122,1180.692917,333204.7709,48.72669006,0.10372095,1180.692917,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 12:00,22422414.67,3597.512,5.410317767,127.2593613,0.10372095,22398.70967,3881.026067,1178.8231,307573.7311,48.72668967,0.10372095,1178.8231,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 13:00,22426150.44,3597.512,5.416347661,127.2518324,0.10372095,20611.01628,3723.693011,1176.953283,281942.6913,48.72668928,0.10372095,1176.953283,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 14:00,22429886.22,3597.512,5.422377556,127.2443034,0.10372095,18823.32289,3566.359956,1175.083467,256311.6515,48.72668889,0.10372095,1175.083467,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 15:00,22433622,3597.512,5.42840745,127.2367745,0.10372095,17035.6295,3409.0269,1173.21365,230680.6116,48.7266885,0.10372095,1173.21365,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 16:00,22437357.78,3597.512,5.434437344,127.2292456,0.10372095,15247.93611,3251.693844,1171.343833,205049.5718,48.72668811,0.10372095,1171.343833,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 17:00,22441093.56,3597.512,5.440467239,127.2217166,0.10372095,13460.24272,3094.360789,1169.474017,179418.532,48.72668772,0.10372095,1169.474017,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 18:00,22444829.33,3597.512,5.446497133,127.2141877,0.10372095,11672.54933,2937.027733,1167.6042,153787.4922,48.72668733,0.10372095,1167.6042,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 19:00,22448565.11,3597.512,5.452527028,127.2066587,0.10372095,9884.855944,2779.694678,1165.734383,128156.4524,48.72668694,0.10372095,1165.734383,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 20:00,22452300.89,3597.512,5.458556922,127.1991298,0.10372095,8097.162556,2622.361622,1163.864567,102525.4125,48.72668656,0.10372095,1163.864567,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 21:00,22456036.67,3597.512,5.464586817,127.1916008,0.10372095,6309.469167,2465.028567,1161.99475,76894.37272,48.72668617,0.10372095,1161.99475,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 22:00,22459772.44,3597.512,5.470616711,127.1840719,0.10372095,4521.775778,2307.695511,1160.124933,51263.3329,48.72668578,0.10372095,1160.124933,130901.3,73179.4,-15784.6,-201976.5
+9/17/2023 23:00,22463508.22,3597.512,5.476646606,127.1765429,0.10372095,2734.082389,2150.362456,1158.255117,25632.29308,48.72668539,0.10372095,1158.255117,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 0:00,22467244,3597.512,5.4826765,127.169014,0.10372095,946.389,1993.0294,1156.3853,1.2532663,48.726685,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 1:00,22469788.67,3597.512,5.476439467,127.1666743,0.10372095,682.0758,1536.771533,776.8107613,1.04913892,48.726685,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 2:00,22472333.33,3597.512,5.470202433,127.1643347,0.10372095,417.7626,1080.513667,397.2362227,0.84501154,48.726685,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 3:00,22474878,3597.512,5.4639654,127.161995,0.10372095,153.4494,624.2558,17.661684,0.64088416,48.726685,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 4:00,22478498,3597.512,5.4529669,127.3547125,0.10372095,188.69216,1563.4359,587.023492,91.88576708,48.7266945,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 5:00,22482118,3597.512,5.4419684,127.54743,0.10372095,223.93492,2502.616,1156.3853,183.13065,48.726704,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 6:00,22487372,3597.512,181.3632592,313.699665,26.45363047,19961.72546,2187.3377,793.41705,566.7744,48.9551335,26.45363047,793.41705,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 7:00,22492626,3597.512,357.28455,499.8519,52.80354,39699.516,1872.0594,430.4488,950.41815,49.183563,52.80354,430.4488,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 8:00,22492876,3597.512,272.203,449.12994,2.109988,39572.54,1877.8022,427.59387,1062.0085,49.184525,2.109988,427.59387,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 9:00,22496438,3597.512,138.7260194,288.15763,1.106854475,36881.18,3360.8618,818.268535,231210.9892,48.955605,1.106854475,818.268535,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 10:00,22500000,3597.512,5.2490387,127.18532,0.10372095,34189.82,4843.9214,1208.9432,461359.97,48.726685,0.10372095,1208.9432,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 11:00,22504079.71,3597.512,36.59195174,138.9411414,8.106133671,34616.95714,4817.139629,1217.107743,448284.5057,42.01973534,8.106133671,1217.107743,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 12:00,22508159.43,3597.512,67.93486479,150.6969629,16.10854639,35044.09429,4790.357857,1225.272286,435209.0414,35.31278569,16.10854639,1225.272286,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 13:00,22512239.14,3597.512,99.27777783,162.4527843,24.11095911,35471.23143,4763.576086,1233.436829,422133.5771,28.60583603,24.11095911,1233.436829,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 14:00,22516318.86,3597.512,130.6206909,174.2086057,32.11337184,35898.36857,4736.794314,1241.601371,409058.1129,21.89888637,32.11337184,1241.601371,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 15:00,22520398.57,3597.512,161.9636039,185.9644271,40.11578456,36325.50571,4710.012543,1249.765914,395982.6486,15.19193671,40.11578456,1249.765914,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 16:00,22524478.29,3597.512,193.306517,197.7202486,48.11819728,36752.64286,4683.230771,1257.930457,382907.1843,8.484987057,48.11819728,1257.930457,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 17:00,22528558,3597.512,224.64943,209.47607,56.12061,37179.78,4656.449,1266.095,369831.72,1.7780374,56.12061,1266.095,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 18:00,22532109.33,3597.512,188.1236168,194.4680027,46.78446183,36578.29583,4274.473417,1234.60925,308195.0823,1.525229778,46.78446183,1234.60925,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 19:00,22535660.67,3597.512,151.5978037,179.4599353,37.44831365,35976.81167,3892.497833,1203.1235,246558.4446,1.272422157,37.44831365,1203.1235,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 20:00,22539212,3597.512,115.0719905,164.451868,28.11216547,35375.3275,3510.52225,1171.63775,184921.8069,1.019614535,28.11216547,1171.63775,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 21:00,22542763.33,3597.512,78.54617733,149.4438007,18.7760173,34773.84333,3128.546667,1140.152,123285.1691,0.766806913,18.7760173,1140.152,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 22:00,22546314.67,3597.512,42.02036417,134.4357333,9.439869125,34172.35917,2746.571083,1108.66625,61648.53143,0.513999292,9.439869125,1108.66625,130901.3,73179.4,-15784.6,-201976.5
+9/18/2023 23:00,22549866,3597.512,5.494551,119.427666,0.10372095,33570.875,2364.5955,1077.1805,11.89372,0.26119167,0.10372095,1077.1805,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 0:00,22552738,3597.512,5.482942325,117.2873295,0.10372095,25216.95294,1780.895996,811.5955125,8.920345549,0.256880995,0.10372095,811.5955125,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 1:00,22555610,3597.512,5.47133365,115.146993,0.10372095,16863.03089,1197.196491,546.010525,5.946971097,0.25257032,0.10372095,546.010525,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 2:00,22558482,3597.512,5.459724975,113.0066565,0.10372095,8509.108828,613.4969865,280.4255375,2.973596645,0.248259645,0.10372095,280.4255375,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 3:00,22561354,3597.512,5.4481163,110.86632,0.10372095,155.18677,29.797482,14.84055,0.000222194,0.24394897,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 4:00,22565771,3597.512,94.10134723,196.8996475,13.27443171,10095.36258,478.9239865,119.1041875,118.7246841,0.350031118,13.27443171,119.1041875,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 5:00,22570188,3597.512,182.7545782,282.932975,26.44514247,20035.53839,928.050491,223.367825,237.4491461,0.456113265,26.44514247,223.367825,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 6:00,22574605,3597.512,271.4078091,368.9663025,39.61585324,29975.71419,1377.176996,327.6314625,356.173608,0.562195413,39.61585324,327.6314625,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 7:00,22579022,3597.512,360.06104,454.99963,52.786564,39915.89,1826.3035,431.8951,474.89807,0.66827756,52.786564,431.8951,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 8:00,22579274,3597.512,273.38596,404.28796,2.094187,39798.95,1829.6592,428.87943,526.7269,0.66481394,2.094187,428.87943,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 9:00,22584425,3597.512,278.85376,372.42671,9.462329,37955.1215,2110.51625,411.358095,15573.24445,25.51436997,9.462329,411.358095,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 10:00,22589576,3597.512,284.32156,340.56546,16.830471,36111.293,2391.3733,393.83676,30619.762,50.363926,16.830471,393.83676,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 11:00,22593050.67,3597.512,191.3793127,266.7833333,11.25488765,35201.20967,2107.6351,347.0679667,20416.87365,33.66275325,11.25488765,347.0679667,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 12:00,22596525.33,3597.512,98.43706533,193.0012067,5.6793043,34291.12633,1823.8969,300.2991733,10213.9853,16.9615805,5.6793043,300.2991733,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 13:00,22600000,3597.512,5.494818,119.21908,0.10372095,33381.043,1540.1587,253.53038,11.096954,0.26040775,0.10372095,253.53038,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 14:00,22603773,3597.512,59.6646685,156.265895,14.11512521,34291.65825,2381.8849,508.17076,115348.3152,19.83744081,14.11512521,508.17076,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 15:00,22607546,3597.512,113.834519,193.31271,28.12652947,35202.2735,3223.6111,762.81114,230685.5335,39.41447388,28.12652947,762.81114,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 16:00,22611319,3597.512,168.0043695,230.359525,42.13793374,36112.88875,4065.3373,1017.45152,346022.7517,58.99150694,42.13793374,1017.45152,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 17:00,22615092,3597.512,222.17422,267.40634,56.149338,37023.504,4907.0635,1272.0919,461359.97,78.56854,56.149338,1272.0919,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 18:00,22618502.29,3597.512,191.2039884,253.2972414,48.14282128,33329.21714,4495.0992,1255.562386,395451.5958,73.7884,48.14282128,1255.562386,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 19:00,22621912.57,3597.512,160.2337569,239.1881429,40.13630456,29634.93029,4083.1349,1239.032871,329543.2216,69.00826,40.13630456,1239.032871,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 20:00,22625322.86,3597.512,129.2635253,225.0790443,32.12978784,25940.64343,3671.1706,1222.503357,263634.8474,64.22812,32.12978784,1222.503357,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 21:00,22628733.14,3597.512,98.29329371,210.9699457,24.12327111,22246.35657,3259.2063,1205.973843,197726.4732,59.44798,24.12327111,1205.973843,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 22:00,22632143.43,3597.512,67.32306214,196.8608471,16.11675439,18552.06971,2847.242,1189.444329,131818.099,54.66784,16.11675439,1189.444329,130901.3,73179.4,-15784.6,-201976.5
+9/19/2023 23:00,22635553.71,3597.512,36.35283057,182.7517486,8.110237671,14857.78286,2435.2777,1172.914814,65909.72485,49.8877,8.110237671,1172.914814,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 0:00,22638964,3597.512,5.382599,168.64265,0.10372095,11163.496,2023.3134,1156.3853,1.3506529,45.10756,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 1:00,22641868.67,3597.512,5.372998167,166.6259233,0.10372095,7493.62105,1548.78071,776.8107613,1.096541,45.10561667,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 2:00,22644773.33,3597.512,5.363397333,164.6091967,0.10372095,3823.7461,1074.24802,397.2362227,0.8424291,45.10367333,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 3:00,22647678,3597.512,5.3537965,162.59247,0.10372095,153.87115,599.71533,17.661684,0.5883172,45.10173,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 4:00,22651308,3597.512,5.3435645,160.772165,0.10372095,202.06998,1548.496565,587.023492,80.4908536,45.10135,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 5:00,22654938,3597.512,5.3333325,158.95186,0.10372095,250.26881,2497.2778,1156.3853,160.39339,45.10097,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 6:00,22661832,3597.512,418.44965,502.78226,52.626373,42112.473,1770.1226,441.13983,115.60402,47.198105,52.626373,441.13983,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 7:00,22663775,3597.512,383.14264,499.77054,52.7052135,40968.045,1804.2338,435.619465,353.81013,46.273096,52.7052135,435.619465,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 8:00,22665718,3597.512,347.83563,496.75882,52.784054,39823.617,1838.345,430.0991,592.01624,45.348087,52.784054,430.0991,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 9:00,22669396,3597.512,273.36642,197.61732,45.521904,37250.72,1974.5305,368.55215,4611.6445,0.33407825,45.521904,368.55215,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 10:00,22674754,3597.512,277.91183,190.78253,32.567688,35766.918,2364.4802,384.46512,28802.285,30.662619,32.567688,384.46512,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 11:00,22678360.57,3597.512,238.9721341,186.5585029,27.92997842,30679.1728,2377.371243,494.7394314,24691.60776,32.72530129,27.92997842,494.7394314,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 12:00,22681967.14,3597.512,200.0324383,182.3344757,23.29226884,25591.42759,2390.262286,605.0137429,20580.93053,34.78798357,23.29226884,605.0137429,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 13:00,22685573.71,3597.512,161.0927424,178.1104486,18.65455926,20503.68239,2403.153329,715.2880543,16470.25329,36.85066586,18.65455926,715.2880543,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 14:00,22689180.29,3597.512,122.1530466,173.8864214,14.01684969,15415.93718,2416.044371,825.5623657,12359.57605,38.91334814,14.01684969,825.5623657,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 15:00,22692786.86,3597.512,83.21335071,169.6623943,9.379140107,10328.19198,2428.935414,935.8366771,8248.898817,40.97603043,9.379140107,935.8366771,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 16:00,22696393.43,3597.512,44.27365486,165.4383671,4.741430529,5240.446774,2441.826457,1046.110989,4138.221581,43.03871271,4.741430529,1046.110989,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 17:00,22700000,3597.512,5.333959,161.21434,0.10372095,152.70157,2454.7175,1156.3853,27.544344,45.101395,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 18:00,22703761.14,3597.512,5.331887229,163.1191886,0.10372095,345.69806,2398.769286,1156.3853,23.8215397,70.74173,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 19:00,22707522.29,3597.512,5.329815457,165.0240371,0.10372095,538.69455,2342.821071,1156.3853,20.0987354,96.382065,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 20:00,22711283.43,3597.512,5.327743686,166.9288857,0.10372095,731.69104,2286.872857,1156.3853,16.3759311,122.0224,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 21:00,22715044.57,3597.512,5.325671914,168.8337343,0.10372095,924.68753,2230.924643,1156.3853,12.6531268,147.662735,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 22:00,22718805.71,3597.512,5.323600143,170.7385829,0.10372095,1117.68402,2174.976429,1156.3853,8.9303225,173.30307,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/20/2023 23:00,22722566.86,3597.512,5.321528371,172.6434314,0.10372095,1310.68051,2119.028214,1156.3853,5.2075182,198.943405,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 0:00,22726328,3597.512,5.3194566,174.54828,0.10372095,1503.677,2063.08,1156.3853,1.4847139,224.58374,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 1:00,22728910.67,3597.512,5.3040504,174.4432067,0.10372095,1053.582443,1583.8151,776.8107613,1.204197577,224.58167,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 2:00,22731493.33,3597.512,5.2886442,174.3381333,0.10372095,603.4878867,1104.5502,397.2362227,0.923681253,224.5796,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 3:00,22734076,3597.512,5.273238,174.23306,0.10372095,153.39333,625.2853,17.661684,0.64316493,224.57753,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 4:00,22737727,3597.512,5.2633108,174.340455,0.10372095,234.99754,1564.94475,587.023492,96.37183247,224.577385,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 5:00,22741378,3597.512,5.2533836,174.44785,0.10372095,316.60175,2504.6042,1156.3853,192.1005,224.57724,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 6:00,22744917,3597.512,179.3544118,359.766625,26.39618647,21233.54288,2147.6572,800.68032,186.5459,224.82544,26.39618647,800.68032,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 7:00,22748456,3597.512,353.45544,545.0854,52.688652,42150.484,1790.7102,444.97534,180.9913,225.07364,52.688652,444.97534,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 8:00,22752054,3597.512,312.74734,393.01874,52.809887,39720.848,1904.366,431.7706,1389.0446,224.64845,52.809887,431.7706,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 9:00,22758748,3597.512,267.96207,255.50438,56.569576,35247.418,2309.5247,371.73523,24707.56,39.10278,56.569576,371.73523,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 10:00,22762396.5,3597.512,261.77271,260.5290975,56.52292325,35429.98638,2635.389737,485.4533263,79289.11125,124.1679275,56.52292325,485.4533263,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 11:00,22766045,3597.512,255.58335,265.553815,56.4762705,35612.55475,2961.254775,599.1714225,133870.6625,209.233075,56.4762705,599.1714225,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 12:00,22769693.5,3597.512,249.39399,270.5785325,56.42961775,35795.12313,3287.119813,712.8895188,188452.2138,294.2982225,56.42961775,712.8895188,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 13:00,22773342,3597.512,243.20463,275.60325,56.382965,35977.6915,3612.98485,826.607615,243033.765,379.36337,56.382965,826.607615,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 14:00,22776990.5,3597.512,237.01527,280.6279675,56.33631225,36160.25987,3938.849887,940.3257113,297615.3163,464.4285175,56.33631225,940.3257113,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 15:00,22780639,3597.512,230.82591,285.652685,56.2896595,36342.82825,4264.714925,1054.043808,352196.8675,549.493665,56.2896595,1054.043808,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 16:00,22784287.5,3597.512,224.63655,290.6774025,56.24300675,36525.39662,4590.579963,1167.761904,406778.4187,634.5588125,56.24300675,1167.761904,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 17:00,22787936,3597.512,218.44719,295.70212,56.196354,36707.965,4916.445,1281.48,461359.97,719.62396,56.196354,1281.48,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 18:00,22790952,3597.512,249.9458125,357.77544,55.34647,37741.49225,4147.975875,1074.0344,346131.8892,595.9368275,55.34647,1074.0344,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 19:00,22793968,3597.512,281.444435,419.84876,54.496586,38775.0195,3379.50675,866.5888,230903.8085,472.249695,54.496586,866.5888,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 20:00,22796984,3597.512,312.9430575,481.92208,53.646702,39808.54675,2611.037625,659.1432,115675.7277,348.5625625,53.646702,659.1432,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 21:00,22800000,3597.512,344.44168,543.9954,52.796818,40842.074,1842.5685,451.6976,447.64694,224.87543,52.796818,451.6976,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 22:00,22804346,3597.512,231.3739581,435.2323767,35.23245232,27333.75812,1663.866467,307.0189613,302.899708,341.2127533,35.23245232,307.0189613,130901.3,73179.4,-15784.6,-201976.5
+9/21/2023 23:00,22808692,3597.512,118.3062363,326.4693533,17.66808663,13825.44225,1485.164433,162.3403227,158.152476,457.5500767,17.66808663,162.3403227,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 0:00,22813038,3597.512,5.2385144,217.70633,0.10372095,317.12637,1306.4624,17.661684,13.405244,573.8874,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 1:00,22815514,3597.512,5.232316167,217.20694,0.10372095,260.7919833,1116.668433,17.661684,9.24141771,573.8846,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 2:00,22817990,3597.512,5.226117933,216.70755,0.10372095,204.4575967,926.8744667,17.661684,5.07759142,573.8818,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 3:00,22820466,3597.512,5.2199197,216.20816,0.10372095,148.12321,737.0805,17.661684,0.91376513,573.879,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 4:00,22824147,3597.512,5.21059835,215.881715,0.10372095,284.535315,1631.85665,587.023492,154.4613326,573.87877,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 5:00,22827828,3597.512,5.201277,215.55527,0.10372095,420.94742,2526.6328,1156.3853,308.0089,573.87854,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 6:00,22831556,3597.512,162.6150135,375.674585,26.46275547,21222.24871,2177.15195,801.92289,339.73002,573.946685,26.46275547,801.92289,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 7:00,22835284,3597.512,320.02875,535.7939,52.82179,42023.55,1827.6711,447.46048,371.45114,574.01483,52.82179,447.46048,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 8:00,22838542,3597.512,268.5932,306.32925,2.074781,39585.66,1936.195,432.4863,1936.5685,573.9362,2.074781,432.4863,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 9:00,22842516,3597.512,263.3824,301.6219444,8.085407333,39299.466,2266.997778,526.4832333,52983.61311,519.7005622,8.085407333,526.4832333,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 10:00,22846490,3597.512,258.1716,296.9146389,14.09603367,39013.272,2597.800556,620.4801667,104030.6577,465.4649244,14.09603367,620.4801667,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 11:00,22850464,3597.512,252.9608,292.2073333,20.10666,38727.078,2928.603333,714.4771,155077.7023,411.2292867,20.10666,714.4771,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 12:00,22854438,3597.512,247.75,287.5000278,26.11728633,38440.884,3259.406111,808.4740333,206124.7469,356.9936489,26.11728633,808.4740333,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 13:00,22858412,3597.512,242.5392,282.7927222,32.12791267,38154.69,3590.208889,902.4709667,257171.7916,302.7580111,32.12791267,902.4709667,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 14:00,22862386,3597.512,237.3284,278.0854167,38.138539,37868.496,3921.011667,996.4679,308218.8362,248.5223733,38.138539,996.4679,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 15:00,22866360,3597.512,232.1176,273.3781111,44.14916533,37582.302,4251.814444,1090.464833,359265.8808,194.2867356,44.14916533,1090.464833,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 16:00,22870334,3597.512,226.9068,268.6708056,50.15979167,37296.108,4582.617222,1184.461767,410312.9254,140.0510978,50.15979167,1184.461767,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 17:00,22874308,3597.512,221.696,263.9635,56.170418,37009.914,4913.42,1278.4587,461359.97,85.81546,56.170418,1278.4587,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 18:00,22877835.71,3597.512,190.7850492,253.2625857,48.16088985,32050.1775,4497.121114,1261.019643,395451.5847,81.34385829,48.16088985,1261.019643,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 19:00,22881363.43,3597.512,159.8740984,242.5616714,40.1513617,27090.441,4080.822229,1243.580586,329543.1995,76.87225657,40.1513617,1243.580586,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 20:00,22884891.14,3597.512,128.9631476,231.8607571,32.14183355,22130.7045,3664.523343,1226.141529,263634.8142,72.40065486,32.14183355,1226.141529,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 21:00,22888418.86,3597.512,98.05219686,221.1598429,24.1323054,17170.968,3248.224457,1208.702471,197726.429,67.92905314,24.1323054,1208.702471,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 22:00,22891946.57,3597.512,67.14124607,210.4589286,16.12277725,12211.2315,2831.925571,1191.263414,131818.0437,63.45745143,16.12277725,1191.263414,130901.3,73179.4,-15784.6,-201976.5
+9/22/2023 23:00,22895474.29,3597.512,36.23029529,199.7580143,8.1132491,7251.495,2415.626686,1173.824357,65909.65849,58.98584971,8.1132491,1173.824357,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 0:00,22899002,3597.512,5.3193445,189.0571,0.10372095,2291.7585,1999.3278,1156.3853,1.273238,54.514248,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 1:00,22900000,3597.512,291.66605,260.8081,57.208458,36374.523,3621.3887,1216.5676,91821.64,37.663998,57.208458,1216.5676,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 2:00,22903437,3597.512,148.4819003,224.170765,28.65608948,18263.99276,2114.22465,617.114642,45911.12191,46.087339,28.65608948,617.114642,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 3:00,22906874,3597.512,5.2977505,187.53343,0.10372095,153.46252,607.0606,17.661684,0.60382813,54.51068,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 4:00,22910690,3597.512,5.28684595,186.971595,0.10372095,8296.57489,848.482975,68.921773,50.5923711,54.51051,0.10372095,68.921773,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 5:00,22914506,3597.512,5.2759414,186.40976,0.10372095,16439.68726,1089.90535,120.181862,100.5809141,54.51034,0.10372095,120.181862,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 6:00,22918322,3597.512,5.26503685,185.847925,0.10372095,24582.79963,1331.327725,171.441951,150.569457,54.51017,0.10372095,171.441951,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 7:00,22922138,3597.512,5.2541323,185.28609,0.10372095,32725.912,1572.7501,222.70204,200.558,54.51,0.10372095,222.70204,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 8:00,22926384,3597.512,5.27483715,184.8527625,0.10372095,33866.574,1773.948875,275.415605,6471.53425,54.509906,0.10372095,275.415605,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 9:00,22930630,3597.512,5.295542,184.419435,0.10372095,35007.236,1975.14765,328.12917,12742.5105,54.509812,0.10372095,328.12917,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 10:00,22934876,3597.512,5.31624685,183.9861075,0.10372095,36147.898,2176.346425,380.842735,19013.48675,54.509718,0.10372095,380.842735,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 11:00,22939122,3597.512,5.3369517,183.55278,0.10372095,37288.56,2377.5452,433.5563,25284.463,54.509624,0.10372095,433.5563,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 12:00,22942567.38,3597.512,5.336879992,183.3650454,0.10372095,36036.21,2297.883069,404.9755369,23339.94579,54.509585,0.10372095,404.9755369,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 13:00,22946012.77,3597.512,5.336808285,183.1773108,0.10372095,34783.86,2218.220938,376.3947738,21395.42859,54.509546,0.10372095,376.3947738,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 14:00,22949458.15,3597.512,5.336736577,182.9895762,0.10372095,33531.51,2138.558808,347.8140108,19450.91138,54.509507,0.10372095,347.8140108,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 15:00,22952903.54,3597.512,5.336664869,182.8018415,0.10372095,32279.16,2058.896677,319.2332477,17506.39418,54.509468,0.10372095,319.2332477,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 16:00,22956348.92,3597.512,5.336593162,182.6141069,0.10372095,31026.81,1979.234546,290.6524846,15561.87697,54.509429,0.10372095,290.6524846,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 17:00,22959794.31,3597.512,5.336521454,182.4263723,0.10372095,29774.46,1899.572415,262.0717215,13617.35977,54.50939,0.10372095,262.0717215,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 18:00,22963239.69,3597.512,5.336449746,182.2386377,0.10372095,28522.11,1819.910285,233.4909585,11672.84256,54.509351,0.10372095,233.4909585,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 19:00,22966685.08,3597.512,5.336378038,182.0509031,0.10372095,27269.76,1740.248154,204.9101954,9728.325354,54.509312,0.10372095,204.9101954,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 20:00,22970130.46,3597.512,5.336306331,181.8631685,0.10372095,26017.41,1660.586023,176.3294323,7783.808148,54.509273,0.10372095,176.3294323,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 21:00,22973575.85,3597.512,5.336234623,181.6754338,0.10372095,24765.06,1580.923892,147.7486692,5839.290943,54.509234,0.10372095,147.7486692,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 22:00,22977021.23,3597.512,5.336162915,181.4876992,0.10372095,23512.71,1501.261762,119.1679062,3894.773737,54.509195,0.10372095,119.1679062,130901.3,73179.4,-15784.6,-201976.5
+9/23/2023 23:00,22980466.62,3597.512,5.336091208,181.2999646,0.10372095,22260.36,1421.599631,90.58714308,1950.256531,54.509156,0.10372095,90.58714308,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 0:00,22983912,3597.512,5.3360195,181.11223,0.10372095,21008.01,1341.9375,62.00638,5.7393255,54.509117,0.10372095,62.00638,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 1:00,22987038.67,3597.512,5.323003133,181.0171867,0.10372095,14057.20723,1101.729233,47.22481467,4.037716057,54.509098,0.10372095,47.22481467,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 2:00,22990165.33,3597.512,5.309986767,180.9221433,0.10372095,7106.404453,861.5209667,32.44324933,2.336106613,54.509079,0.10372095,32.44324933,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 3:00,22993292,3597.512,5.2969704,180.8271,0.10372095,155.60168,621.3127,17.661684,0.63449717,54.50906,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 4:00,23000000,3597.512,5.461612,182.73665,0.10372095,36351.48,3213.1633,1191.9644,33188.496,54.509453,0.10372095,1191.9644,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 5:00,23002938,3597.512,5.484846767,181.9764167,0.10372095,35218.445,2644.576733,868.51417,22129.09954,54.50929667,0.10372095,868.51417,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 6:00,23005876,3597.512,5.508081533,181.2161833,0.10372095,34085.41,2075.990167,545.06394,11069.70308,54.50914033,0.10372095,545.06394,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 7:00,23008814,3597.512,5.5313163,180.45595,0.10372095,32952.375,1507.4036,221.61371,10.306614,54.508984,0.10372095,221.61371,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 8:00,23012694,3597.512,5.519182475,180.38693,0.10372095,33717.628,1725.49075,263.8943875,7439.922461,54.5089695,0.10372095,263.8943875,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 9:00,23016574,3597.512,5.50704865,180.31791,0.10372095,34482.881,1943.5779,306.175065,14869.53831,54.508955,0.10372095,306.175065,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 10:00,23020454,3597.512,5.494914825,180.24889,0.10372095,35248.134,2161.66505,348.4557425,22299.15415,54.5089405,0.10372095,348.4557425,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 11:00,23024334,3597.512,5.482781,180.17987,0.10372095,36013.387,2379.7522,390.73642,29728.77,54.508926,0.10372095,390.73642,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 12:00,23027920.67,3597.512,5.46788725,180.14155,0.10372095,35837.31825,2310.380825,378.3712717,27254.86892,54.50891842,0.10372095,378.3712717,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 13:00,23031507.33,3597.512,5.4529935,180.10323,0.10372095,35661.2495,2241.00945,366.0061233,24780.96784,54.50891083,0.10372095,366.0061233,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 14:00,23035094,3597.512,5.43809975,180.06491,0.10372095,35485.18075,2171.638075,353.640975,22307.06677,54.50890325,0.10372095,353.640975,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 15:00,23038680.67,3597.512,5.423206,180.02659,0.10372095,35309.112,2102.2667,341.2758267,19833.16569,54.50889567,0.10372095,341.2758267,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 16:00,23042267.33,3597.512,5.40831225,179.98827,0.10372095,35133.04325,2032.895325,328.9106783,17359.26461,54.50888808,0.10372095,328.9106783,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 17:00,23045854,3597.512,5.3934185,179.94995,0.10372095,34956.9745,1963.52395,316.54553,14885.36353,54.5088805,0.10372095,316.54553,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 18:00,23049440.67,3597.512,5.37852475,179.91163,0.10372095,34780.90575,1894.152575,304.1803817,12411.46246,54.50887292,0.10372095,304.1803817,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 19:00,23053027.33,3597.512,5.363631,179.87331,0.10372095,34604.837,1824.7812,291.8152333,9937.561377,54.50886533,0.10372095,291.8152333,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 20:00,23056614,3597.512,5.34873725,179.83499,0.10372095,34428.76825,1755.409825,279.450085,7463.660299,54.50885775,0.10372095,279.450085,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 21:00,23060200.67,3597.512,5.3338435,179.79667,0.10372095,34252.6995,1686.03845,267.0849367,4989.759222,54.50885017,0.10372095,267.0849367,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 22:00,23063787.33,3597.512,5.31894975,179.75835,0.10372095,34076.63075,1616.667075,254.7197883,2515.858144,54.50884258,0.10372095,254.7197883,130901.3,73179.4,-15784.6,-201976.5
+9/24/2023 23:00,23067374,3597.512,5.304056,179.72003,0.10372095,33900.562,1547.2957,242.35464,41.957066,54.508835,0.10372095,242.35464,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 0:00,23072102,3597.512,5.518445,179.68729,0.10372095,720.6099,778.25525,17.51258,1.026823,54.50883,0.10372095,17.51258,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 1:00,23074628.67,3597.512,5.534077467,179.6714333,0.10372095,532.08015,723.0626233,17.56228133,0.889825433,54.50882667,0.10372095,17.56228133,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 2:00,23077155.33,3597.512,5.549709933,179.6555767,0.10372095,343.5504,667.8699967,17.61198267,0.752827867,54.50882333,0.10372095,17.61198267,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 3:00,23079682,3597.512,5.5653424,179.63972,0.10372095,155.02065,612.67737,17.661684,0.6158303,54.50882,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 4:00,23084107.33,3597.512,243.5865949,297.2314933,17.27737497,13899.59577,992.98568,152.0891127,43.28578687,67.07762667,17.27737497,152.0891127,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 5:00,23088532.67,3597.512,481.6078475,414.8232667,34.45102898,27644.17088,1373.29399,286.5165413,85.95574343,79.64643333,34.45102898,286.5165413,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 6:00,23092958,3597.512,719.6291,532.41504,51.624683,41388.746,1753.6023,420.94397,128.6257,92.21524,51.624683,420.94397,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 7:00,23095350,3597.512,639.035925,526.37482,52.1835115,40792.778,1805.4992,427.816315,431.04415,79.99881,52.1835115,427.816315,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 8:00,23097742,3597.512,558.44275,520.3346,52.74234,40196.81,1857.3961,434.68866,733.4626,67.78238,52.74234,434.68866,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 9:00,23101698.67,3597.512,521.8621333,477.6917778,47.06147541,39913.44333,2162.476644,528.0319422,39295.41787,60.25635213,47.06147541,528.0319422,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 10:00,23105655.33,3597.512,485.2815167,435.0489556,41.38061082,39630.07667,2467.557189,621.3752244,77857.37313,52.73032426,41.38061082,621.3752244,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 11:00,23109612,3597.512,448.7009,392.4061333,35.69974623,39346.71,2772.637733,714.7185067,116419.3284,45.20429639,35.69974623,714.7185067,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 12:00,23113568.67,3597.512,412.1202833,349.7633111,30.01888164,39063.34333,3077.718278,808.0617889,154981.2837,37.67826851,30.01888164,808.0617889,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 13:00,23117525.33,3597.512,375.5396667,307.1204889,24.33801706,38779.97667,3382.798822,901.4050711,193543.2389,30.15224064,24.33801706,901.4050711,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 14:00,23121482,3597.512,338.95905,264.4776667,18.65715247,38496.61,3687.879367,994.7483533,232105.1942,22.62621277,18.65715247,994.7483533,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 15:00,23125438.67,3597.512,302.3784333,221.8348444,12.97628788,38213.24333,3992.959911,1088.091636,270667.1495,15.1001849,12.97628788,1088.091636,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 16:00,23129395.33,3597.512,265.7978167,179.1920222,7.295423289,37929.87667,4298.040456,1181.434918,309229.1047,7.574157028,7.295423289,1181.434918,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 17:00,23133352,3597.512,229.2172,136.5492,1.6145587,37646.51,4603.121,1274.7782,347791.06,0.048129156,1.6145587,1274.7782,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 18:00,23136961.14,3597.512,197.2658268,129.2813071,1.398724736,32321.91418,4291.030257,1257.864929,298107.0485,0.042176576,1.398724736,1257.864929,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 19:00,23140570.29,3597.512,165.3144536,122.0134143,1.182890771,26997.31836,3978.939514,1240.951657,248423.037,0.036223997,1.182890771,1240.951657,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 20:00,23144179.43,3597.512,133.3630804,114.7455214,0.967056807,21672.72254,3666.848771,1224.038386,198739.0255,0.030271417,0.967056807,1224.038386,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 21:00,23147788.57,3597.512,101.4117072,107.4776286,0.751222843,16348.12672,3354.758029,1207.125114,149055.014,0.024318837,0.751222843,1207.125114,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 22:00,23151397.71,3597.512,69.460334,100.2097357,0.535388879,11023.5309,3042.667286,1190.211843,99371.00248,0.018366257,0.535388879,1190.211843,130901.3,73179.4,-15784.6,-201976.5
+9/25/2023 23:00,23155006.86,3597.512,37.5089608,92.94184286,0.319554914,5698.93508,2730.576543,1173.298571,49686.99097,0.012413678,0.319554914,1173.298571,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 0:00,23158616,3597.512,5.5575876,85.67395,0.10372095,374.33926,2418.4858,1156.3853,2.979468,0.006461098,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 1:00,23161101.33,3597.512,5.5494374,83.23932667,0.10372095,300.8138367,1836.9503,776.8107613,2.237844853,0.006137611,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 2:00,23163586.67,3597.512,5.5412872,80.80470333,0.10372095,227.2884133,1255.4148,397.2362227,1.496221707,0.005814124,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 3:00,23166072,3597.512,5.533137,78.37008,0.10372095,153.76299,673.8793,17.661684,0.75459856,0.005490637,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 4:00,23169743,3597.512,5.5196682,76.12904,0.10372095,270.936145,1595.58295,587.023492,127.8659843,0.005198277,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 5:00,23173414,3597.512,5.5061994,73.888,0.10372095,388.1093,2517.2866,1156.3853,254.97737,0.004905917,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 6:00,23180022,3597.512,309.31897,401.90668,52.484566,42182.96,1832.6708,451.68085,376.81354,0.15397581,52.484566,451.68085,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 7:00,23183774,3597.512,273.57086,146.96706,2.129545,39918.75,2006.8412,441.92133,3365.4944,0.018708752,2.129545,441.92133,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 8:00,23187230.67,3597.512,278.81205,140.03816,2.249460167,38780.18733,2118.4529,429.2937033,10475.3726,0.016844857,2.249460167,429.2937033,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 9:00,23190687.33,3597.512,284.05324,133.10926,2.369375333,37641.62467,2230.0646,416.6660767,17585.2508,0.014980963,2.369375333,416.6660767,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 10:00,23194144,3597.512,289.29443,126.18036,2.4892905,36503.062,2341.6763,404.03845,24695.129,0.013117068,2.4892905,404.03845,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 11:00,23196304,3597.512,301.19795,124.16948,2.7978784,36102.49,3003.18385,803.372025,63900.7345,0.012587331,2.7978784,803.372025,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 12:00,23198464,3597.512,313.10147,122.1586,3.1064663,35701.918,3664.6914,1202.7056,103106.34,0.012057593,3.1064663,1202.7056,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 13:00,23202926.5,3597.512,292.1628475,139.04232,16.36211973,35587.6485,3774.32495,1203.548575,129845.385,0.15741607,16.36211973,1203.548575,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 14:00,23207389,3597.512,271.224225,155.92604,29.61777315,35473.379,3883.9585,1204.39155,156584.43,0.302774546,29.61777315,1204.39155,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 15:00,23211851.5,3597.512,250.2856025,172.80976,42.87342658,35359.1095,3993.59205,1205.234525,183323.475,0.448133023,42.87342658,1205.234525,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 16:00,23216314,3597.512,229.34698,189.69348,56.12908,35244.84,4103.2256,1206.0775,210062.52,0.5934915,56.12908,1206.0775,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 17:00,23219895.75,3597.512,201.3708733,180.8898408,49.12591012,30900.38405,3874.2711,1199.865975,183804.9935,0.527081638,49.12591012,1199.865975,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 18:00,23223477.5,3597.512,173.3947666,172.0862015,42.12274024,26555.92809,3645.3166,1193.65445,157547.4671,0.460671776,42.12274024,1193.65445,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 19:00,23227059.25,3597.512,145.4186599,163.2825622,35.11957036,22211.47214,3416.3621,1187.442925,131289.9406,0.394261914,35.11957036,1187.442925,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 20:00,23230641,3597.512,117.4425533,154.478923,28.11640048,17867.01619,3187.4076,1181.2314,105032.4142,0.327852053,28.11640048,1181.2314,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 21:00,23234222.75,3597.512,89.46644656,145.6752838,21.11323059,13522.56024,2958.4531,1175.019875,78774.88772,0.261442191,21.11323059,1175.019875,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 22:00,23237804.5,3597.512,61.49033987,136.8716445,14.11006071,9178.104285,2729.4986,1168.80835,52517.36126,0.195032329,14.11006071,1168.80835,130901.3,73179.4,-15784.6,-201976.5
+9/26/2023 23:00,23241386.25,3597.512,33.51423319,128.0680053,7.106890831,4833.648333,2500.5441,1162.596825,26259.83481,0.128622467,7.106890831,1162.596825,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 0:00,23244968,3597.512,5.5381265,119.264366,0.10372095,489.19238,2271.5896,1156.3853,2.3083518,0.062212605,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 1:00,23247470,3597.512,5.520608,118.6463007,0.10372095,376.94323,1735.7984,776.8107613,1.782800883,0.06119352,0.10372095,776.8107613,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 2:00,23249972,3597.512,5.5030895,118.0282353,0.10372095,264.69408,1200.0072,397.2362227,1.257249967,0.060174435,0.10372095,397.2362227,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 3:00,23252474,3597.512,5.485571,117.41017,0.10372095,152.44493,664.216,17.661684,0.73169905,0.05915535,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 4:00,23257125.33,3597.512,102.8116607,195.2203267,17.56596963,14181.46462,1052.6907,162.7235127,116.8122727,0.085945917,17.56596963,162.7235127,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 5:00,23261776.67,3597.512,200.1377503,273.0304833,35.02821832,28210.48431,1441.1654,307.7853413,232.8928464,0.112736483,35.02821832,307.7853413,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 6:00,23266428,3597.512,297.46384,350.84064,52.490467,42239.504,1829.6401,452.84717,348.97342,0.13952705,52.490467,452.84717,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 7:00,23270136,3597.512,298.21487,224.74312,52.826454,40109.105,1960.588,445.74707,2160.8179,0.07081942,52.826454,445.74707,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 8:00,23271036,3597.512,274.2002,164.96518,2.137238,39587.03,1986.2245,433.7695,3034.3933,0.06794034,2.137238,433.7695,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 9:00,23274088,3597.512,274.62698,164.31645,2.145668,37422.223,2057.1133,383.0097,7245.336,0.06778862,2.145668,383.0097,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 10:00,23280084,3597.512,284.7988,224.22287,56.86742,36359.402,2358.8657,401.04633,26602.098,1.0874337,56.86742,401.04633,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 11:00,23283403.33,3597.512,238.2491856,206.5167367,47.40680349,30324.51931,2086.73345,337.148889,22168.56248,0.916177102,47.40680349,337.148889,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 12:00,23286722.67,3597.512,191.6995711,188.8106033,37.94618698,24289.63662,1814.6012,273.251448,17735.02697,0.744920503,37.94618698,273.251448,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 13:00,23290042,3597.512,145.1499567,171.10447,28.48557048,18254.75394,1542.46895,209.354007,13301.49145,0.573663905,28.48557048,209.354007,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 14:00,23293361.33,3597.512,98.60034227,153.3983367,19.02495397,12219.87125,1270.3367,145.456566,8867.955932,0.402407307,19.02495397,145.456566,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 15:00,23296680.67,3597.512,52.05072783,135.6922033,9.564337458,6184.988558,998.20445,81.559125,4434.420415,0.231150708,9.564337458,81.559125,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 16:00,23300000,3597.512,5.5011134,117.98607,0.10372095,150.10587,726.0722,17.661684,0.8848985,0.05989411,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 17:00,23303633.43,3597.512,5.5007942,124.3573243,0.10372095,5120.225746,835.2337429,52.02512914,1.160114586,0.168844347,0.10372095,52.02512914,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 18:00,23307266.86,3597.512,5.500475,130.7285786,0.10372095,10090.34562,944.3952857,86.38857429,1.435330671,0.277794584,0.10372095,86.38857429,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 19:00,23310900.29,3597.512,5.5001558,137.0998329,0.10372095,15060.4655,1053.556829,120.7520194,1.710546757,0.386744821,0.10372095,120.7520194,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 20:00,23314533.71,3597.512,5.4998366,143.4710871,0.10372095,20030.58537,1162.718371,155.1154646,1.985762843,0.495695059,0.10372095,155.1154646,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 21:00,23318167.14,3597.512,5.4995174,149.8423414,0.10372095,25000.70525,1271.879914,189.4789097,2.260978929,0.604645296,0.10372095,189.4789097,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 22:00,23321800.57,3597.512,5.4991982,156.2135957,0.10372095,29970.82512,1381.041457,223.8423549,2.536195014,0.713595533,0.10372095,223.8423549,130901.3,73179.4,-15784.6,-201976.5
+9/27/2023 23:00,23325434,3597.512,5.498879,162.58485,0.10372095,34940.945,1490.203,258.2058,2.8114111,0.82254577,0.10372095,258.2058,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 0:00,23328798.5,3597.512,5.4881905,162.457955,0.10372095,26244.43827,1253.281575,198.069771,2.227299495,0.820569727,0.10372095,198.069771,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 1:00,23332163,3597.512,5.477502,162.33106,0.10372095,17547.93154,1016.36015,137.933742,1.64318789,0.818593685,0.10372095,137.933742,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 2:00,23335527.5,3597.512,5.4668135,162.204165,0.10372095,8851.42481,779.438725,77.797713,1.059076285,0.816617643,0.10372095,77.797713,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 3:00,23338892,3597.512,5.456125,162.07727,0.10372095,154.91808,542.5173,17.661684,0.47496468,0.8146416,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 4:00,23342512,3597.512,5.4451233,162.181685,0.10372095,200.09225,1507.38595,587.023492,37.10116734,0.81451015,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 5:00,23346132,3597.512,5.4341216,162.2861,0.10372095,245.26642,2472.2546,1156.3853,73.72737,0.8143787,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 6:00,23352078,3597.512,395.46182,463.39807,51.504436,41462.52,1743.0637,420.82715,93.84055,3.9822938,51.504436,420.82715,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 7:00,23355659.33,3597.512,360.2888867,366.1536867,51.92119833,40211.31933,1738.024067,400.8462433,159.00742,2.9231817,51.92119833,400.8462433,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 8:00,23359240.67,3597.512,325.1159533,268.9093033,52.33796067,38960.11867,1732.984433,380.8653367,224.17429,1.8640696,52.33796067,380.8653367,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 9:00,23362822,3597.512,289.94302,171.66492,52.754723,37708.918,1727.9448,360.88443,289.34116,0.8049575,52.754723,360.88443,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 10:00,23366508.67,3597.512,298.4669667,145.8111567,36.1364562,36774.79933,1926.7731,360.9009533,9244.60844,0.8048417,36.1364562,360.9009533,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 11:00,23370195.33,3597.512,306.9909133,119.9573933,19.5181894,35840.68067,2125.6014,360.9174767,18199.87572,0.8047259,19.5181894,360.9174767,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 12:00,23373882,3597.512,315.51486,94.10363,2.8999226,34906.562,2324.4297,360.934,27155.143,0.8046101,2.8999226,360.934,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 13:00,23376940.5,3597.512,308.22857,93.3683375,2.737465625,34922.8615,2187.285125,347.9616,20691.28745,0.80630574,2.737465625,347.9616,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 14:00,23379999,3597.512,300.94228,92.633045,2.57500865,34939.161,2050.14055,334.9892,14227.4319,0.80800138,2.57500865,334.9892,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 15:00,23383057.5,3597.512,293.65599,91.8977525,2.412551675,34955.4605,1912.995975,322.0168,7763.57635,0.80969702,2.412551675,322.0168,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 16:00,23386116,3597.512,286.3697,91.16246,2.2500947,34971.76,1775.8514,309.0444,1299.7208,0.81139266,2.2500947,309.0444,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 17:00,23391170,3597.512,275.89603,217.65203,27.00676485,37666.849,1979.7935,392.97737,5037.5119,0.85012128,27.00676485,392.97737,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 18:00,23396224,3597.512,265.42236,344.1416,51.763435,40361.938,2183.7356,476.91034,8775.303,0.8888499,51.763435,476.91034,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 19:00,23397124,3597.512,220.93695,281.17432,1.1668915,40193.76,2168.4202,469.98953,8366.981,0.8801159,1.1668915,469.98953,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 20:00,23400000,3597.512,170.12646,459.27655,50.506348,35014.37,2424.4417,1104.6945,86.158005,2.2714446,50.506348,1104.6945,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 21:00,23404971,3597.512,88.0193665,324.219825,25.30503448,35178.2865,1755.03755,702.42707,43.6279779,1.55212032,25.30503448,702.42707,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 22:00,23409942,3597.512,5.912273,189.1631,0.10372095,35342.203,1085.6334,300.15964,1.0979508,0.83279604,0.10372095,300.15964,130901.3,73179.4,-15784.6,-201976.5
+9/28/2023 23:00,23413061.2,3597.512,5.89937854,180.88015,0.10372095,28305.16679,873.7340844,243.095822,0.878391253,0.830298892,0.10372095,243.095822,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 0:00,23416180.4,3597.512,5.88648408,172.5972,0.10372095,21268.13057,661.8347688,186.032004,0.658831705,0.827801744,0.10372095,186.032004,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 1:00,23419299.6,3597.512,5.87358962,164.31425,0.10372095,14231.09436,449.9354532,128.968186,0.439272158,0.825304596,0.10372095,128.968186,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 2:00,23422418.8,3597.512,5.86069516,156.0313,0.10372095,7194.058144,238.0361376,71.904368,0.21971261,0.822807448,0.10372095,71.904368,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 3:00,23425538,3597.512,5.8478007,147.74835,0.10372095,157.02193,26.136822,14.84055,0.000153063,0.8203103,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 4:00,23431902,3597.512,5.787118,138.10027,0.10372095,157.6772,2401.8066,1110.4631,6.9295416,0.8181635,0.10372095,1110.4631,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 5:00,23432478,3597.512,5.78589,137.7118,0.10372095,187.67345,2447.9692,1156.3853,9.046609,0.818083,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 6:00,23436116.73,3597.512,31.29279091,133.5440709,0.300311864,3402.541591,2380.708264,1079.157856,53.69150818,0.817494791,0.300311864,1079.157856,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 7:00,23439755.45,3597.512,56.79969182,129.3763418,0.496902777,6617.409732,2313.447327,1001.930413,98.33640736,0.816906582,0.496902777,1001.930413,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 8:00,23443394.18,3597.512,82.30659273,125.2086127,0.693493691,9832.277873,2246.186391,924.7029691,142.9813065,0.816318373,0.693493691,924.7029691,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 9:00,23447032.91,3597.512,107.8134936,121.0408836,0.890084605,13047.14601,2178.925455,847.4755255,187.6262057,0.815730164,0.890084605,847.4755255,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 10:00,23450671.64,3597.512,133.3203945,116.8731545,1.086675518,16262.01415,2111.664518,770.2480818,232.2711049,0.815141955,1.086675518,770.2480818,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 11:00,23454310.36,3597.512,158.8272955,112.7054255,1.283266432,19476.8823,2044.403582,693.0206382,276.9160041,0.814553745,1.283266432,693.0206382,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 12:00,23457949.09,3597.512,184.3341964,108.5376964,1.479857345,22691.75044,1977.142645,615.7931945,321.5609033,0.813965536,1.479857345,615.7931945,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 13:00,23461587.82,3597.512,209.8410973,104.3699673,1.676448259,25906.61858,1909.881709,538.5657509,366.2058025,0.813377327,1.676448259,538.5657509,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 14:00,23465226.55,3597.512,235.3479982,100.2022382,1.873039173,29121.48672,1842.620773,461.3383073,410.8507016,0.812789118,1.873039173,461.3383073,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 15:00,23468865.27,3597.512,260.8548991,96.03450909,2.069630086,32336.35486,1775.359836,384.1108636,455.4956008,0.812200909,2.069630086,384.1108636,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 16:00,23472504,3597.512,286.3618,91.86678,2.266221,35551.223,1708.0989,306.88342,500.1405,0.8116127,2.266221,306.88342,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 17:00,23477570,3597.512,281.79162,237.808815,27.0036255,38152.3245,1946.89945,390.6165,4664.71425,0.8662799,27.0036255,390.6165,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 18:00,23482636,3597.512,277.22144,383.75085,51.74103,40753.426,2185.7,474.34958,8829.288,0.9209471,51.74103,474.34958,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 19:00,23483536,3597.512,223.61157,317.2475,1.1473343,40507.184,2178.5989,467.68314,8808.852,0.90730065,1.1473343,467.68314,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 20:00,23487872,3597.512,151.0689647,274.8489133,0.799463183,38824.80267,1797.1399,409.3260133,5872.889721,0.882575153,0.799463183,409.3260133,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 21:00,23492208,3597.512,78.52635933,232.4503267,0.451592067,37142.42133,1415.6809,350.9688867,2936.927441,0.857849657,0.451592067,350.9688867,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 22:00,23496544,3597.512,5.983754,190.05174,0.10372095,35460.04,1034.2219,292.61176,0.9651621,0.83312416,0.10372095,292.61176,130901.3,73179.4,-15784.6,-201976.5
+9/29/2023 23:00,23500000,3597.512,427.76123,462.94086,52.733185,37946.805,1687.5021,355.3331,111.62397,2.9527016,52.733185,355.3331,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 0:00,23503011,3597.512,322.301466,382.463065,39.57581899,28500.09813,1407.483783,278.06714,83.83879475,2.41922255,39.57581899,278.06714,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 1:00,23506022,3597.512,216.841702,301.98527,26.41845298,19053.39125,1127.465465,200.80118,56.0536195,1.8857435,26.41845298,200.80118,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 2:00,23509033,3597.512,111.381938,221.507475,13.26108696,9606.684375,847.4471475,123.53522,28.26844425,1.35226445,13.26108696,123.53522,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 3:00,23512044,3597.512,5.922174,141.02968,0.10372095,159.9775,567.42883,46.26926,0.483269,0.8187854,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 4:00,23518666,3597.512,5.8591275,129.68881,0.10372095,154.56165,2527.2112,1156.3853,3.978895,0.8165222,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 5:00,23520887,3597.512,5.85678245,126.688905,0.10372095,16769.59083,2066.97505,691.02986,11.3391705,0.8160019,0.10372095,691.02986,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 6:00,23523108,3597.512,5.8544374,123.689,0.10372095,33384.62,1606.7389,225.67442,18.699446,0.8154816,0.10372095,225.67442,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 7:00,23526905,3597.512,5.862664825,121.4365588,0.10372095,33840.86667,1688.117717,246.9481267,2876.537826,0.815201967,0.10372095,246.9481267,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 8:00,23530702,3597.512,5.87089225,119.1841177,0.10372095,34297.11333,1769.496533,268.2218333,5734.376205,0.814922333,0.10372095,268.2218333,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 9:00,23534499,3597.512,5.879119675,116.9316765,0.10372095,34753.36,1850.87535,289.49554,8592.214585,0.8146427,0.10372095,289.49554,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 10:00,23538296,3597.512,5.8873471,114.6792353,0.10372095,35209.60667,1932.254167,310.7692467,11450.05296,0.814363067,0.10372095,310.7692467,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 11:00,23542093,3597.512,5.895574525,112.4267942,0.10372095,35665.85333,2013.632983,332.0429533,14307.89134,0.814083433,0.10372095,332.0429533,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 12:00,23545890,3597.512,5.90380195,110.174353,0.10372095,36122.1,2095.0118,353.31666,17165.72972,0.8138038,0.10372095,353.31666,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 13:00,23549687,3597.512,5.912029375,107.9219118,0.10372095,36578.34667,2176.390617,374.5903667,20023.5681,0.813524167,0.10372095,374.5903667,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 14:00,23553484,3597.512,5.9202568,105.6694707,0.10372095,37034.59333,2257.769433,395.8640733,22881.40648,0.813244533,0.10372095,395.8640733,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 15:00,23557281,3597.512,5.928484225,103.4170295,0.10372095,37490.84,2339.14825,417.13778,25739.24486,0.8129649,0.10372095,417.13778,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 16:00,23561078,3597.512,5.93671165,101.1645883,0.10372095,37947.08667,2420.527067,438.4114867,28597.08324,0.812685267,0.10372095,438.4114867,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 17:00,23564875,3597.512,5.944939075,98.91214717,0.10372095,38403.33333,2501.905883,459.6851933,31454.92162,0.812405633,0.10372095,459.6851933,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 18:00,23568672,3597.512,5.9531665,96.659706,0.10372095,38859.58,2583.2847,480.9589,34312.76,0.812126,0.10372095,480.9589,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 19:00,23571902,3597.512,5.935827,96.063643,0.10372095,38959.33,2483.5249,470.1725,26021.181,0.81207695,0.10372095,470.1725,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 20:00,23575132,3597.512,5.9184875,95.46758,0.10372095,39059.08,2383.7651,459.3861,17729.602,0.8120279,0.10372095,459.3861,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 21:00,23578830.67,3597.512,5.9004022,94.94183167,0.10372095,37791.98,1954.371933,404.3609267,11820.05314,0.811986767,0.10372095,404.3609267,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 22:00,23582529.33,3597.512,5.8823169,94.41608333,0.10372095,36524.88,1524.978767,349.3357533,5910.504281,0.811945633,0.10372095,349.3357533,130901.3,73179.4,-15784.6,-201976.5
+9/30/2023 23:00,23586228,3597.512,5.8642316,93.890335,0.10372095,35257.78,1095.5856,294.31058,0.95542186,0.8119045,0.10372095,294.31058,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 0:00,23589219,3597.512,5.846066375,93.57712625,0.10372095,26482.66697,978.9181,225.148356,0.84575693,0.811881313,0.10372095,225.148356,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 1:00,23592210,3597.512,5.82790115,93.2639175,0.10372095,17707.55394,862.2506,155.986132,0.736092,0.811858125,0.10372095,155.986132,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 2:00,23595201,3597.512,5.809735925,92.95070875,0.10372095,8932.440902,745.5831,86.823908,0.62642707,0.811834938,0.10372095,86.823908,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 3:00,23598192,3597.512,5.7915707,92.6375,0.10372095,157.32787,628.9156,17.661684,0.51676214,0.81181175,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 4:00,23601787.7,3597.512,5.790019565,92.462835,0.10372095,1856.877477,647.961815,29.8106663,0.53209319,0.811800041,0.10372095,29.8106663,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 5:00,23605383.4,3597.512,5.78846843,92.28817,0.10372095,3556.427083,667.00803,41.9596486,0.547424241,0.811788331,0.10372095,41.9596486,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 6:00,23608979.1,3597.512,5.786917295,92.113505,0.10372095,5255.97669,686.054245,54.1086309,0.562755292,0.811776622,0.10372095,54.1086309,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 7:00,23612574.8,3597.512,5.78536616,91.93884,0.10372095,6955.526296,705.10046,66.2576132,0.578086342,0.811764912,0.10372095,66.2576132,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 8:00,23616170.5,3597.512,5.783815025,91.764175,0.10372095,8655.075902,724.146675,78.4065955,0.593417392,0.811753203,0.10372095,78.4065955,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 9:00,23619766.2,3597.512,5.78226389,91.58951,0.10372095,10354.62551,743.19289,90.5555778,0.608748443,0.811741493,0.10372095,90.5555778,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 10:00,23623361.9,3597.512,5.780712755,91.414845,0.10372095,12054.17512,762.239105,102.7045601,0.624079494,0.811729784,0.10372095,102.7045601,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 11:00,23626957.6,3597.512,5.77916162,91.24018,0.10372095,13753.72472,781.28532,114.8535424,0.639410544,0.811718074,0.10372095,114.8535424,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 12:00,23630553.3,3597.512,5.777610485,91.065515,0.10372095,15453.27433,800.331535,127.0025247,0.654741594,0.811706365,0.10372095,127.0025247,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 13:00,23634149,3597.512,5.77605935,90.89085,0.10372095,17152.82394,819.37775,139.151507,0.670072645,0.811694655,0.10372095,139.151507,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 14:00,23637744.7,3597.512,5.774508215,90.716185,0.10372095,18852.37354,838.423965,151.3004893,0.685403696,0.811682946,0.10372095,151.3004893,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 15:00,23641340.4,3597.512,5.77295708,90.54152,0.10372095,20551.92315,857.47018,163.4494716,0.700734746,0.811671236,0.10372095,163.4494716,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 16:00,23644936.1,3597.512,5.771405945,90.366855,0.10372095,22251.47275,876.516395,175.5984539,0.716065796,0.811659527,0.10372095,175.5984539,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 17:00,23648531.8,3597.512,5.76985481,90.19219,0.10372095,23951.02236,895.56261,187.7474362,0.731396847,0.811647817,0.10372095,187.7474362,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 18:00,23652127.5,3597.512,5.768303675,90.017525,0.10372095,25650.57197,914.608825,199.8964185,0.746727898,0.811636108,0.10372095,199.8964185,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 19:00,23655723.2,3597.512,5.76675254,89.84286,0.10372095,27350.12157,933.65504,212.0454008,0.762058948,0.811624398,0.10372095,212.0454008,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 20:00,23659318.9,3597.512,5.765201405,89.668195,0.10372095,29049.67118,952.701255,224.1943831,0.777389998,0.811612689,0.10372095,224.1943831,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 21:00,23662914.6,3597.512,5.76365027,89.49353,0.10372095,30749.22079,971.74747,236.3433654,0.792721049,0.811600979,0.10372095,236.3433654,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 22:00,23666510.3,3597.512,5.762099135,89.318865,0.10372095,32448.77039,990.793685,248.4923477,0.8080521,0.81158927,0.10372095,248.4923477,130901.3,73179.4,-15784.6,-201976.5
+10/1/2023 23:00,23670106,3597.512,5.760548,89.1442,0.10372095,34148.32,1009.8399,260.64133,0.82338315,0.81157756,0.10372095,260.64133,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 0:00,23673775.5,3597.512,5.83073425,89.0589,0.10372095,25650.76847,909.248715,199.8964185,0.736901588,0.81157233,0.10372095,199.8964185,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 1:00,23677445,3597.512,5.9009205,88.9736,0.10372095,17153.21694,808.65753,139.151507,0.650420025,0.8115671,0.10372095,139.151507,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 2:00,23681114.5,3597.512,5.97110675,88.8883,0.10372095,8655.66541,708.066345,78.4065955,0.563938463,0.81156187,0.10372095,78.4065955,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 3:00,23684784,3597.512,6.041293,88.803,0.10372095,158.11388,607.47516,17.661684,0.4774569,0.81155664,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 4:00,23688220,3597.512,6.0097343,88.953212,0.10372095,164.857545,1560.51773,587.023492,6.91610745,0.81156585,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 5:00,23691656,3597.512,5.9781756,89.103424,0.10372095,171.60121,2513.5603,1156.3853,13.354758,0.81157506,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 6:00,23695828,3597.512,5.92326855,89.418312,0.10372095,19294.20861,2278.6208,775.816735,1902.311529,0.81159478,0.10372095,775.816735,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 7:00,23700000,3597.512,5.8683615,89.7332,0.10372095,38416.816,2043.6813,395.24817,3791.2683,0.8116145,0.10372095,395.24817,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 8:00,23703754.5,3597.512,90.45443363,130.14867,13.47216946,38436.5025,2037.82015,389.3071025,3794.836175,0.81774429,13.47216946,389.3071025,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 9:00,23707509,3597.512,175.0405058,170.56414,26.84061797,38456.189,2031.959,383.366035,3798.40405,0.82387408,26.84061797,383.366035,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 10:00,23711263.5,3597.512,259.6265779,210.97961,40.20906649,38475.8755,2026.09785,377.4249675,3801.971925,0.83000387,40.20906649,377.4249675,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 11:00,23715018,3597.512,344.21265,251.39508,53.577515,38495.562,2020.2367,371.4839,3805.5398,0.83613366,53.577515,371.4839,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 12:00,23718515.2,3597.512,331.490176,219.7234172,43.2651098,37946.8746,1995.21196,361.03972,3446.59642,0.831248118,43.2651098,361.03972,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 13:00,23722012.4,3597.512,318.767702,188.0517544,32.9527046,37398.1872,1970.18722,350.59554,3087.65304,0.826362576,32.9527046,350.59554,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 14:00,23725509.6,3597.512,306.045228,156.3800916,22.6402994,36849.4998,1945.16248,340.15136,2728.70966,0.821477034,22.6402994,340.15136,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 15:00,23729006.8,3597.512,293.322754,124.7084288,12.3278942,36300.8124,1920.13774,329.70718,2369.76628,0.816591492,12.3278942,329.70718,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 16:00,23732504,3597.512,280.60028,93.036766,2.015489,35752.125,1895.113,319.263,2010.8229,0.81170595,2.015489,319.263,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 17:00,23737148,3597.512,265.738015,182.856398,26.8849225,38030.7175,2165.36925,405.91324,10664.80995,0.8289246,26.8849225,405.91324,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 18:00,23741792,3597.512,250.87575,272.67603,51.754356,40309.31,2435.6255,492.56348,19318.797,0.84614325,51.754356,492.56348,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 19:00,23742692,3597.512,222.48083,204.47327,1.156854,40101.324,2416.947,487.1319,18297.678,0.8383561,1.156854,487.1319,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 20:00,23746966,3597.512,150.3245182,174.88948,0.80580965,38751.63533,1957.5712,424.8269867,12198.71785,0.830326253,0.80580965,424.8269867,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 21:00,23751240,3597.512,78.16820647,145.30569,0.4547653,37401.94667,1498.1954,362.5220733,6099.757698,0.822296407,0.4547653,362.5220733,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 22:00,23755514,3597.512,6.0118947,115.7219,0.10372095,36052.258,1038.8196,300.21716,0.79754657,0.81426656,0.10372095,300.21716,130901.3,73179.4,-15784.6,-201976.5
+10/2/2023 23:00,23758600.8,3597.512,5.99421664,111.101046,0.10372095,28873.52374,946.490152,243.7060648,0.722582344,0.813775308,0.10372095,243.7060648,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 0:00,23761687.6,3597.512,5.97653858,106.480192,0.10372095,21694.78948,854.160704,187.1949696,0.647618118,0.813284056,0.10372095,187.1949696,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 1:00,23764774.4,3597.512,5.95886052,101.859338,0.10372095,14516.05521,761.831256,130.6838744,0.572653892,0.812792804,0.10372095,130.6838744,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 2:00,23767861.2,3597.512,5.94118246,97.238484,0.10372095,7337.320952,669.501808,74.1727792,0.497689666,0.812301552,0.10372095,74.1727792,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 3:00,23770948,3597.512,5.9235044,92.61763,0.10372095,158.58669,577.17236,17.661684,0.42272544,0.8118103,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 4:00,23777852,3597.512,5.8930984,90.40073,0.10372095,195.6205,2517.1455,1110.4631,4.8681426,0.81165767,0.10372095,1110.4631,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 5:00,23778058,3597.512,5.891237,90.68257,0.10372095,174.10551,2563.977,1156.3853,5.383515,0.81167626,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 6:00,23781986,3597.512,901.90875,497.94217,50.506348,35137.332,1677.8672,260.16547,14.473441,74.163246,50.506348,260.16547,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 7:00,23786113.5,3597.512,761.119795,450.73307,52.5532835,36258.6865,1718.051525,288.6906525,49.10991825,55.63844938,52.5532835,288.6906525,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 8:00,23790241,3597.512,620.33084,403.52397,54.600219,37380.041,1758.23585,317.215835,83.7463955,37.11365276,54.600219,317.215835,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 9:00,23794368.5,3597.512,479.541885,356.31487,56.6471545,38501.3955,1798.420175,345.7410175,118.3828727,18.58885614,56.6471545,345.7410175,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 10:00,23798496,3597.512,338.75293,309.10577,58.69409,39622.75,1838.6045,374.2662,153.01935,0.064059526,58.69409,374.2662,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 11:00,23800000,3597.512,172.31772,140.06854,0.5629604,40485.566,1849.1852,453.0927,111.46005,0.8184806,0.5629604,453.0927,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 12:00,23806718,3597.512,317.9505,137.60385,2.8988802,35032.254,2518.7646,362.0378,35184.34,7.7548842,2.8988802,362.0378,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 13:00,23809427.33,3597.512,301.7769267,126.3031367,2.598998533,34808.45267,2436.935367,350.9418333,28818.00333,6.723065133,2.598998533,350.9418333,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 14:00,23812136.67,3597.512,285.6033533,115.0024233,2.299116867,34584.65133,2355.106133,339.8458667,22451.66667,5.691246067,2.299116867,339.8458667,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 15:00,23814846,3597.512,269.42978,103.70171,1.9992352,34360.85,2273.2769,328.7499,16085.33,4.659427,1.9992352,328.7499,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 16:00,23819476,3597.512,263.97324,90.94411,1.9048475,34711.28,2379.6892,360.45737,21977.158,0.6548387,1.9048475,360.45737,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 17:00,23821634,3597.512,243.42023,85.25125,1.5275381,36305.695,2604.0632,459.84073,34471.363,0.023684725,1.5275381,459.84073,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 18:00,23827966,3597.512,221.3076,154.04398,51.836823,40726.766,3625.9404,1212.2211,73475.98,0.009139731,51.836823,1212.2211,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 19:00,23828866,3597.512,214.87735,91.95206,1.2136602,40748.3,3717.3704,1293.1522,75301.4,0.007673071,1.2136602,1293.1522,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 20:00,23832622,3597.512,145.1748361,83.75938,0.84368045,39763.84333,3156.848267,983.7355667,51294.63157,0.006613486,0.84368045,983.7355667,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 21:00,23836378,3597.512,75.4723222,75.5667,0.4737007,38779.38667,2596.326133,674.3189333,27287.86313,0.005553902,0.4737007,674.3189333,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 22:00,23840134,3597.512,5.7698083,67.37402,0.10372095,37794.93,2035.804,364.9023,3281.0947,0.004494317,0.10372095,364.9023,130901.3,73179.4,-15784.6,-201976.5
+10/3/2023 23:00,23844861,3597.512,5.7522354,64.374752,0.10372095,19510.9547,1441.72475,191.21434,1641.017804,0.004086479,0.10372095,191.21434,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 0:00,23849588,3597.512,5.7346625,61.375484,0.10372095,1226.9794,847.6455,17.52638,0.9409086,0.003678641,0.10372095,17.52638,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 1:00,23852158,3597.512,5.724932333,60.36611533,0.10372095,870.09372,798.4876467,17.57148133,0.825066033,0.003546052,0.10372095,17.57148133,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 2:00,23854728,3597.512,5.715202167,59.35674667,0.10372095,513.20804,749.3297933,17.61658267,0.709223467,0.003413462,0.10372095,17.61658267,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 3:00,23857298,3597.512,5.705472,58.347378,0.10372095,156.32236,700.17194,17.661684,0.5933809,0.003280873,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 4:00,23861216,3597.512,99.646288,183.6197087,16.90459663,12657.43157,1047.631527,118.8280893,22.30369727,1.794424582,16.90459663,118.8280893,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 5:00,23865134,3597.512,193.587104,308.8920393,33.70547232,25158.54079,1395.091113,219.9944947,44.01401363,3.585568291,33.70547232,219.9944947,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 6:00,23869052,3597.512,287.52792,434.16437,50.506348,37659.65,1742.5507,321.1609,65.72433,5.376712,50.506348,321.1609,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 7:00,23873245.33,3597.512,293.00544,350.0543333,51.25699533,37887.45167,1788.995933,334.8566167,251.9220767,3.589618223,51.25699533,334.8566167,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 8:00,23877438.67,3597.512,298.48296,265.9442967,52.00764267,38115.25333,1835.441167,348.5523333,438.1198233,1.802524447,52.00764267,348.5523333,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 9:00,23881632,3597.512,303.96048,181.83426,52.75829,38343.055,1881.8864,362.24805,624.31757,0.01543067,52.75829,362.24805,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 10:00,23882532,3597.512,284.25357,113.950424,2.0647314,38243.49,1884.2532,360.96606,659.32935,0.011015317,2.0647314,360.96606,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 11:00,23886136,3597.512,307.72055,112.15631,2.5595138,38742.12,2149.7737,385.94662,6471.182,0.013003351,2.5595138,385.94662,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 12:00,23890757.33,3597.512,207.0574373,95.16572133,1.740916183,25881.05327,1710.615187,263.1849747,4314.421431,0.009886632,1.740916183,263.1849747,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 13:00,23895378.67,3597.512,106.3943247,78.17513267,0.922318567,13019.98653,1271.456673,140.4233293,2157.660861,0.006769913,0.922318567,140.4233293,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 14:00,23900000,3597.512,5.731212,61.184544,0.10372095,158.9198,832.29816,17.661684,0.90029174,0.003653194,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 15:00,23902671,3597.512,143.167806,62.890749,1.063131125,17822.9834,1448.05668,170.612842,2774.672296,0.003670193,1.063131125,170.612842,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 16:00,23905342,3597.512,280.6044,64.596954,2.0225413,35487.047,2063.8152,323.564,5548.4443,0.003687191,2.0225413,323.564,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 17:00,23909030.67,3597.512,262.3126833,86.21842267,1.7539241,36742.758,2223.713867,380.5007167,12045.23353,0.007420036,1.7539241,380.5007167,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 18:00,23912719.33,3597.512,244.0209667,107.8398913,1.4853069,37998.469,2383.612533,437.4374333,18542.02277,0.01115288,1.4853069,437.4374333,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 19:00,23916408,3597.512,225.72925,129.46136,1.2166897,39254.18,2543.5112,494.37415,25038.812,0.014885725,1.2166897,494.37415,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 20:00,23920640.67,3597.512,152.4742295,109.04693,0.845700117,37913.63567,2110.933867,426.4440667,16692.97755,0.011174645,0.845700117,426.4440667,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 21:00,23924873.33,3597.512,79.21920907,88.6325,0.474710533,36573.09133,1678.356533,358.5139833,8347.143103,0.007463564,0.474710533,358.5139833,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 22:00,23929106,3597.512,5.9641886,68.21807,0.10372095,35232.547,1245.7792,290.5839,1.3086551,0.003752484,0.10372095,290.5839,130901.3,73179.4,-15784.6,-201976.5
+10/4/2023 23:00,23929952,3597.512,5.961086,66.41736,0.10372095,35017.51,1197.7003,282.7301,1.1836406,0.003567307,0.10372095,282.7301,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 0:00,23933412.5,3597.512,5.9396899,63.189835,0.10372095,26302.70149,1068.33755,216.462996,1.0262062,0.003280338,0.10372095,216.462996,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 1:00,23936873,3597.512,5.9182938,59.96231,0.10372095,17587.89297,938.9748,150.195892,0.8687718,0.002993369,0.10372095,150.195892,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 2:00,23940333.5,3597.512,5.8968977,56.734785,0.10372095,8873.084455,809.61205,83.928788,0.7113374,0.0027064,0.10372095,83.928788,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 3:00,23943794,3597.512,5.8755016,53.50726,0.10372095,158.27594,680.2493,17.661684,0.553903,0.002419431,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 4:00,23947339,3597.512,5.8597436,52.402863,0.10372095,176.040255,1617.84695,587.023492,8.5317165,0.002326453,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 5:00,23950884,3597.512,5.8439856,51.298466,0.10372095,193.80457,2555.4446,1156.3853,16.50953,0.002233474,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 6:00,23954906,3597.512,428.62836,435.4919,50.506348,35688.434,1682.1539,273.91653,31.895134,14.152734,50.506348,273.91653,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 7:00,23959362,3597.512,380.6405733,367.6613267,34.4279777,36647.80367,1734.5611,303.5892533,120.9471793,9.453737013,34.4279777,303.5892533,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 8:00,23963818,3597.512,332.6527867,299.8307533,18.3496074,37607.17333,1786.9683,333.2619767,209.9992247,4.754740027,18.3496074,333.2619767,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 9:00,23968274,3597.512,284.665,232.00018,2.2712371,38566.543,1839.3755,362.9347,299.05127,0.05574304,2.2712371,362.9347,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 10:00,23971738,3597.512,305.35856,181.14711,2.6516354,37831.344,2156.66075,369.42575,15082.15064,0.45564587,2.6516354,369.42575,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 11:00,23975202,3597.512,326.05212,130.29404,3.0320337,37096.145,2473.946,375.9168,29865.25,0.8555487,3.0320337,375.9168,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 12:00,23978781.2,3597.512,310.840262,122.025388,2.75971992,36810.1574,2493.31706,381.704552,31386.534,0.78926243,2.75971992,381.704552,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 13:00,23982360.4,3597.512,295.628404,113.756736,2.48740614,36524.1698,2512.68812,387.492304,32907.818,0.72297616,2.48740614,387.492304,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 14:00,23985939.6,3597.512,280.416546,105.488084,2.21509236,36238.1822,2532.05918,393.280056,34429.102,0.65668989,2.21509236,393.280056,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 15:00,23989518.8,3597.512,265.204688,97.219432,1.94277858,35952.1946,2551.43024,399.067808,35950.386,0.59040362,1.94277858,399.067808,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 16:00,23993098,3597.512,249.99283,88.95078,1.6704648,35666.207,2570.8013,404.85556,37471.67,0.52411735,1.6704648,404.85556,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 17:00,23994998,3597.512,242.71358,85.78215,1.5438007,36973.54,2829.149,544.26764,53351.094,0.053052362,1.5438007,544.26764,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 18:00,24000000,3597.512,5.8463974,51.132473,0.10372095,154.91267,2552.1406,1156.3853,12.577956,0.002226578,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 19:00,24003407,3597.512,5.813992375,55.45964325,0.10372095,9537.964503,2361.413425,950.331945,58.837347,0.002880944,0.10372095,950.331945,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 20:00,24006814,3597.512,5.78158735,59.7868135,0.10372095,18921.01634,2170.68625,744.27859,105.096738,0.003535309,0.10372095,744.27859,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 21:00,24010221,3597.512,5.749182325,64.11398375,0.10372095,28304.06817,1979.959075,538.225235,151.356129,0.004189675,0.10372095,538.225235,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 22:00,24013628,3597.512,5.7167773,68.441154,0.10372095,37687.12,1789.2319,332.17188,197.61552,0.00484404,0.10372095,332.17188,130901.3,73179.4,-15784.6,-201976.5
+10/5/2023 23:00,24016922.8,3597.512,5.70177264,66.7737538,0.10372095,30180.41878,1563.47894,269.2698408,158.1955161,0.00458981,0.10372095,269.2698408,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 0:00,24020217.6,3597.512,5.68676798,65.1063536,0.10372095,22673.71756,1337.72598,206.3678016,118.7755122,0.004335581,0.10372095,206.3678016,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 1:00,24023512.4,3597.512,5.67176332,63.4389534,0.10372095,15167.01633,1111.97302,143.4657624,79.3555083,0.004081351,0.10372095,143.4657624,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 2:00,24026807.2,3597.512,5.65675866,61.7715532,0.10372095,7660.315112,886.22006,80.5637232,39.9355044,0.003827122,0.10372095,80.5637232,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 3:00,24030102,3597.512,5.641754,60.104153,0.10372095,153.61389,660.4671,17.661684,0.5155005,0.003572892,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 4:00,24033697,3597.512,5.6287903,59.2155365,0.10372095,176.436735,1615.15895,587.023492,22.37665025,0.003434308,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 5:00,24037292,3597.512,5.6158266,58.32692,0.10372095,199.25958,2569.8508,1156.3853,44.2378,0.003295723,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 6:00,24041454,3597.512,66.68154728,73.297708,10.71849156,8059.773664,2439.42048,1002.679352,181.109246,0.003669338,10.71849156,1002.679352,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 7:00,24045616,3597.512,127.747268,88.268496,21.33326217,15920.28775,2308.99016,848.973404,317.980692,0.004042952,21.33326217,848.973404,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 8:00,24049778,3597.512,188.8129886,103.239284,31.94803278,23780.80183,2178.55984,695.267456,454.852138,0.004416567,31.94803278,695.267456,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 9:00,24053940,3597.512,249.8787093,118.210072,42.56280339,31641.31592,2048.12952,541.561508,591.723584,0.004790181,42.56280339,541.561508,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 10:00,24058102,3597.512,310.94443,133.18086,53.177574,39501.83,1917.6992,387.85556,728.59503,0.005163796,53.177574,387.85556,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 11:00,24059002,3597.512,308.531,71.6964,2.603579,39475.08,1982.8435,389.93436,1599.4048,0.003902208,2.603579,389.93436,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 12:00,24065026,3597.512,324.11197,114.47598,53.771526,36249.902,2218.0386,347.90546,11750.98,0.003129791,53.771526,347.90546,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 13:00,24068063,3597.512,315.8491775,99.7571525,40.91304265,36232.2555,2117.0282,339.49319,8927.63575,0.002983371,40.91304265,339.49319,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 14:00,24071100,3597.512,307.586385,85.038325,28.0545593,36214.609,2016.0178,331.08092,6104.2915,0.002836951,28.0545593,331.08092,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 15:00,24074137,3597.512,299.3235925,70.3194975,15.19607595,36196.9625,1915.0074,322.66865,3280.94725,0.00269053,15.19607595,322.66865,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 16:00,24077174,3597.512,291.0608,55.60067,2.3375926,36179.316,1813.997,314.25638,457.603,0.00254411,2.3375926,314.25638,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 17:00,24082303,3597.512,284.93233,200.28715,27.0402263,38811.361,2052.95015,402.43364,4299.8125,0.05596534,27.0402263,402.43364,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 18:00,24087432,3597.512,278.80386,344.97363,51.74286,41443.406,2291.9033,490.6109,8142.022,0.10938657,51.74286,490.6109,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 19:00,24088332,3597.512,225.26567,277.2279,1.149323,41232.695,2275.1357,483.6163,7687.2773,0.09497438,1.149323,483.6163,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 20:00,24092221.33,3597.512,295.6858,328.81102,18.356813,40961.54333,2153.1018,460.9221167,5261.858433,0.824336687,18.356813,460.9221167,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 21:00,24096110.67,3597.512,366.10593,380.39414,35.564303,40690.39167,2031.0679,438.2279333,2836.439567,1.553698993,35.564303,438.2279333,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 22:00,24100000,3597.512,436.52606,431.97726,52.771793,40419.24,1909.034,415.53375,411.0207,2.2830613,52.771793,415.53375,130901.3,73179.4,-15784.6,-201976.5
+10/6/2023 23:00,24103312.8,3597.512,350.4117451,364.3783808,42.23817859,32367.20015,1652.716408,335.9593368,328.9074133,1.827978517,42.23817859,335.9593368,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 0:00,24106625.6,3597.512,264.2974302,296.7795016,31.70456418,24315.1603,1396.398816,256.3849236,246.7941266,1.372895733,31.70456418,256.3849236,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 1:00,24109938.4,3597.512,178.1831152,229.1806224,21.17094977,16263.12044,1140.081224,176.8105104,164.6808399,0.91781295,21.17094977,176.8105104,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 2:00,24113251.2,3597.512,92.06880032,161.5817432,10.63733536,8211.080592,883.763632,97.2360972,82.56755326,0.462730166,10.63733536,97.2360972,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 3:00,24116564,3597.512,5.9544854,93.982864,0.10372095,159.04074,627.44604,17.661684,0.45426658,0.007647383,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 4:00,24123436,3597.512,5.9216413,81.73175,0.10372095,187.89836,2471.2795,1110.4631,2.848758,0.005563315,0.10372095,1110.4631,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 5:00,24124336,3597.512,5.921135,80.382256,0.10372095,3387.002,2564.8423,1156.3853,3.650155,0.005359663,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 6:00,24127348,3597.512,5.91999,76.207,0.10372095,33824.242,1644.4224,232.94205,8.242584,0.004761655,0.10372095,232.94205,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 7:00,24131137.75,3597.512,5.921553731,74.51958062,0.10372095,34052.50688,1612.126394,237.8813369,7.785548356,0.004588178,0.10372095,237.8813369,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 8:00,24134927.5,3597.512,5.923117463,72.83216125,0.10372095,34280.77175,1579.830388,242.8206237,7.328512713,0.004414701,0.10372095,242.8206237,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 9:00,24138717.25,3597.512,5.924681194,71.14474188,0.10372095,34509.03663,1547.534381,247.7599106,6.871477069,0.004241224,0.10372095,247.7599106,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 10:00,24142507,3597.512,5.926244925,69.4573225,0.10372095,34737.3015,1515.238375,252.6991975,6.414441425,0.004067747,0.10372095,252.6991975,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 11:00,24146296.75,3597.512,5.927808656,67.76990313,0.10372095,34965.56638,1482.942369,257.6384844,5.957405781,0.00389427,0.10372095,257.6384844,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 12:00,24150086.5,3597.512,5.929372388,66.08248375,0.10372095,35193.83125,1450.646363,262.5777713,5.500370138,0.003720793,0.10372095,262.5777713,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 13:00,24153876.25,3597.512,5.930936119,64.39506437,0.10372095,35422.09613,1418.350356,267.5170581,5.043334494,0.003547316,0.10372095,267.5170581,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 14:00,24157666,3597.512,5.93249985,62.707645,0.10372095,35650.361,1386.05435,272.456345,4.58629885,0.003373839,0.10372095,272.456345,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 15:00,24161455.75,3597.512,5.934063581,61.02022562,0.10372095,35878.62588,1353.758344,277.3956319,4.129263206,0.003200361,0.10372095,277.3956319,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 16:00,24165245.5,3597.512,5.935627313,59.33280625,0.10372095,36106.89075,1321.462338,282.3349188,3.672227563,0.003026884,0.10372095,282.3349188,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 17:00,24169035.25,3597.512,5.937191044,57.64538688,0.10372095,36335.15563,1289.166331,287.2742056,3.215191919,0.002853407,0.10372095,287.2742056,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 18:00,24172825,3597.512,5.938754775,55.9579675,0.10372095,36563.4205,1256.870325,292.2134925,2.758156275,0.00267993,0.10372095,292.2134925,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 19:00,24176614.75,3597.512,5.940318506,54.27054813,0.10372095,36791.68538,1224.574319,297.1527794,2.301120631,0.002506453,0.10372095,297.1527794,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 20:00,24180404.5,3597.512,5.941882238,52.58312875,0.10372095,37019.95025,1192.278313,302.0920663,1.844084988,0.002332976,0.10372095,302.0920663,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 21:00,24184194.25,3597.512,5.943445969,50.89570937,0.10372095,37248.21513,1159.982306,307.0313531,1.387049344,0.002159499,0.10372095,307.0313531,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 22:00,24187984,3597.512,5.9450097,49.20829,0.10372095,37476.48,1127.6863,311.97064,0.9300137,0.001986022,0.10372095,311.97064,130901.3,73179.4,-15784.6,-201976.5
+10/7/2023 23:00,24190988,3597.512,5.909373875,51.35131075,0.10372095,38327.975,1325.3915,336.748045,138.4223853,0.002160532,0.10372095,336.748045,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 0:00,24193992,3597.512,5.87373805,53.4943315,0.10372095,39179.47,1523.0967,361.52545,275.9147569,0.002335042,0.10372095,361.52545,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 1:00,24196996,3597.512,5.838102225,55.63735225,0.10372095,40030.965,1720.8019,386.302855,413.4071284,0.002509552,0.10372095,386.302855,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 2:00,24200000,3597.512,5.8024664,57.780373,0.10372095,40882.46,1918.5071,411.08026,550.8995,0.002684062,0.10372095,411.08026,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 3:00,24202888,3597.512,5.8849077,47.584904,0.10372095,160.20493,658.3763,17.661684,0.5293191,0.001864551,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 4:00,24207466,3597.512,5.8570461,47.184626,0.10372095,10093.90497,1080.4826,50.278567,4.28766405,0.001834855,0.10372095,50.278567,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 5:00,24212044,3597.512,5.8291845,46.784348,0.10372095,20027.605,1502.5889,82.89545,8.046009,0.001805158,0.10372095,82.89545,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 6:00,24216249,3597.512,5.80969595,46.463997,0.10372095,26911.859,1290.1152,164.301555,4.52046603,0.001781463,0.10372095,164.301555,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 7:00,24220454,3597.512,5.7902074,46.143646,0.10372095,33796.113,1077.6415,245.70766,0.99492306,0.001757768,0.10372095,245.70766,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 8:00,24220856,3597.512,5.789711,46.114906,0.10372095,33815.21,1067.6288,245.4946,0.95785195,0.001755644,0.10372095,245.4946,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 9:00,24225462,3597.512,6.088672,45.7973,0.10372095,36079.875,1110.6923,313.91718,35.324253,0.001732185,0.10372095,313.91718,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 10:00,24229356,3597.512,6.0995936,45.54351,0.10372095,43895.223,856.7192,422.69968,5.1423416,0.001713451,0.10372095,422.69968,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 11:00,24231804,3597.512,6.074919,45.390408,0.10372095,42115.46,1320.3661,409.4631,2.4399483,0.001702153,0.10372095,409.4631,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 12:00,24235537.4,3597.512,6.05850843,45.3600482,0.10372095,42042.497,1318.25567,408.16129,2.31424604,0.001697838,0.10372095,408.16129,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 13:00,24239270.8,3597.512,6.04209786,45.3296884,0.10372095,41969.534,1316.14524,406.85948,2.18854378,0.001693522,0.10372095,406.85948,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 14:00,24243004.2,3597.512,6.02568729,45.2993286,0.10372095,41896.571,1314.03481,405.55767,2.06284152,0.001689207,0.10372095,405.55767,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 15:00,24246737.6,3597.512,6.00927672,45.2689688,0.10372095,41823.608,1311.92438,404.25586,1.93713926,0.001684891,0.10372095,404.25586,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 16:00,24250471,3597.512,5.99286615,45.238609,0.10372095,41750.645,1309.81395,402.95405,1.811437,0.001680576,0.10372095,402.95405,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 17:00,24254204.4,3597.512,5.97645558,45.2082492,0.10372095,41677.682,1307.70352,401.65224,1.68573474,0.001676261,0.10372095,401.65224,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 18:00,24257937.8,3597.512,5.96004501,45.1778894,0.10372095,41604.719,1305.59309,400.35043,1.56003248,0.001671945,0.10372095,400.35043,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 19:00,24261671.2,3597.512,5.94363444,45.1475296,0.10372095,41531.756,1303.48266,399.04862,1.43433022,0.00166763,0.10372095,399.04862,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 20:00,24265404.6,3597.512,5.92722387,45.1171698,0.10372095,41458.793,1301.37223,397.74681,1.30862796,0.001663314,0.10372095,397.74681,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 21:00,24269138,3597.512,5.9108133,45.08681,0.10372095,41385.83,1299.2618,396.445,1.1829257,0.001658999,0.10372095,396.445,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 22:00,24272490.67,3597.512,10.96869358,71.90668667,8.504158792,34515.04144,1192.209217,333.3144473,1.079862733,0.00591117,8.504158792,333.3144473,130901.3,73179.4,-15784.6,-201976.5
+10/8/2023 23:00,24275843.33,3597.512,16.02657387,98.72656333,16.90459663,27644.25289,1085.156633,270.1838947,0.976799767,0.010163342,16.90459663,270.1838947,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 0:00,24279196,3597.512,21.08445415,125.54644,25.30503448,20773.46433,978.10405,207.053342,0.8737368,0.014415513,25.30503448,207.053342,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 1:00,24282548.67,3597.512,26.14233443,152.3663167,33.70547232,13902.67577,871.0514667,143.9227893,0.770673833,0.018667684,33.70547232,143.9227893,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 2:00,24285901.33,3597.512,31.20021472,179.1861933,42.10591016,7031.887217,763.9988833,80.79223667,0.667610867,0.022919856,42.10591016,80.79223667,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 3:00,24289254,3597.512,36.258095,206.00607,50.506348,161.09866,656.9463,17.661684,0.5645479,0.027172027,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 4:00,24296346,3597.512,70.03151,353.46564,50.506348,444.79874,685.89844,46.26926,17.723526,0.1257387,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 5:00,24297246,3597.512,249.9549,412.92575,50.506348,3856.9514,651.5138,17.661684,14.965512,0.97515094,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 6:00,24300000,3597.512,5.9934444,44.371437,0.10372095,37566.207,1485.0264,310.4624,2.156495,0.001627013,0.10372095,310.4624,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 7:00,24306892,3597.512,2443.5818,537.55994,52.687717,43231.676,1397.1001,490.4286,1.3793237,1377.7264,52.687717,490.4286,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 8:00,24307704,3597.512,2159.046,527.39655,52.69403,43050.21,471.0275,424.84006,0.002072563,1075.3221,52.69403,424.84006,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 9:00,24311086,3597.512,1561.26795,491.946525,52.701036,41515.35,982.31805,389.93943,1.170962082,577.804353,52.701036,389.93943,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 10:00,24314468,3597.512,963.4899,456.4965,52.708042,39980.49,1493.6086,355.0388,2.3398516,80.286606,52.708042,355.0388,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 11:00,24318584,3597.512,858.27591,449.4515967,52.608708,39842.273,1530.415417,354.344005,42.45034633,66.93200505,52.608708,354.344005,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 12:00,24322700,3597.512,753.06192,442.4066933,52.509374,39704.056,1567.222233,353.64921,82.56084107,53.5774041,52.509374,353.64921,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 13:00,24326816,3597.512,647.84793,435.36179,52.41004,39565.839,1604.02905,352.954415,122.6713358,40.22280315,52.41004,352.954415,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 14:00,24330932,3597.512,542.63394,428.3168867,52.310706,39427.622,1640.835867,352.25962,162.7818305,26.8682022,52.310706,352.25962,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 15:00,24335048,3597.512,437.41995,421.2719833,52.211372,39289.405,1677.642683,351.564825,202.8923253,13.51360125,52.211372,351.564825,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 16:00,24339164,3597.512,332.20596,414.22708,52.112038,39151.188,1714.4495,350.87003,243.00282,0.1590003,52.112038,350.87003,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 17:00,24342506,3597.512,277.8827128,407.9085167,43.44398516,39078.99833,1607.127833,348.6279417,202.6594851,0.221849222,43.44398516,348.6279417,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 18:00,24345848,3597.512,223.5594655,401.5899533,34.77593232,39006.80867,1499.806167,346.3858533,162.3161502,0.284698143,34.77593232,346.3858533,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 19:00,24349190,3597.512,169.2362183,395.27139,26.10787947,38934.619,1392.4845,344.143765,121.9728153,0.347547065,26.10787947,344.143765,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 20:00,24352532,3597.512,114.9129711,388.9528267,17.43982663,38862.42933,1285.162833,341.9016767,81.62948033,0.410395987,17.43982663,341.9016767,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 21:00,24355874,3597.512,60.58972383,382.6342633,8.771773792,38790.23967,1177.841167,339.6595883,41.28614542,0.473244908,8.771773792,339.6595883,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 22:00,24359216,3597.512,6.2664766,376.3157,0.10372095,38718.05,1070.5195,337.4175,0.9428105,0.53609383,0.10372095,337.4175,130901.3,73179.4,-15784.6,-201976.5
+10/9/2023 23:00,24362635.67,3597.512,6.249262233,375.224855,0.10372095,32304.85054,1011.446617,288.8927933,0.92173195,0.505215408,0.10372095,288.8927933,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 0:00,24366055.33,3597.512,6.232047867,374.13401,0.10372095,25891.65108,952.3737333,240.3680867,0.9006534,0.474336987,0.10372095,240.3680867,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 1:00,24369475,3597.512,6.2148335,373.043165,0.10372095,19478.45162,893.30085,191.84338,0.87957485,0.443458565,0.10372095,191.84338,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 2:00,24372894.67,3597.512,6.197619133,371.95232,0.10372095,13065.25215,834.2279667,143.3186733,0.8584963,0.412580143,0.10372095,143.3186733,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 3:00,24376314.33,3597.512,6.180404767,370.861475,0.10372095,6652.052692,775.1550833,94.79396667,0.83741775,0.381701722,0.10372095,94.79396667,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 4:00,24379734,3597.512,6.1631904,369.77063,0.10372095,238.85323,716.0822,46.26926,0.8163392,0.3508233,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 5:00,24382862,3597.512,6.1296687,369.16504,0.10372095,179.96884,1730.8887,1078.7085,0.55587673,0.34686998,0.10372095,1078.7085,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 6:00,24386468,3597.512,150.0137515,386.1476375,13.28255496,10168.63788,1766.67995,908.029525,50.82822005,3.155239985,13.28255496,908.029525,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 7:00,24390074,3597.512,293.8978344,403.130235,26.46138898,20157.30692,1802.4712,737.35055,101.1005634,5.96360999,26.46138898,737.35055,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 8:00,24393680,3597.512,437.7819172,420.1128325,39.64022299,30145.97596,1838.26245,566.671575,151.3729067,8.771979995,39.64022299,566.671575,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 9:00,24397286,3597.512,581.666,437.09543,52.819057,40134.645,1874.0537,395.9926,201.64525,11.58035,52.819057,395.9926,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 10:00,24401941,3597.512,453.660135,294.38794,28.0434009,39329.305,2102.80775,388.08761,8472.535625,16.604279,28.0434009,388.08761,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 11:00,24406596,3597.512,325.65427,151.68045,3.2677448,38523.965,2331.5618,380.18262,16743.426,21.628208,3.2677448,380.18262,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 12:00,24410028,3597.512,322.7819,140.41008,3.5867872,35926.285,2571.4885,386.96362,39793.543,39.36245,3.5867872,386.96362,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 13:00,24414268,3597.512,292.22727,137.913675,3.2442268,35387.2025,2429.1256,363.89604,28444.703,45.539839,3.2442268,363.89604,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 14:00,24418508,3597.512,261.67264,135.41727,2.9016664,34848.12,2286.7627,340.82846,17095.863,51.717228,2.9016664,340.82846,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 15:00,24420746,3597.512,269.52843,133.51491,3.20072555,34708.218,2311.21105,343.53227,18861.158,47.8674755,3.20072555,343.53227,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 16:00,24422984,3597.512,277.38422,131.61255,3.4997847,34568.316,2335.6594,346.23608,20626.453,44.017723,3.4997847,346.23608,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 17:00,24429524,3597.512,280.07492,421.9153,90.448906,39751.316,2859.1165,639.8888,45740.2,0.5449101,90.448906,639.8888,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 18:00,24432988,3597.512,241.93152,265.6453,51.821747,41042.504,2904.3555,672.1706,47638.31,0.11600369,51.821747,672.1706,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 19:00,24433888,3597.512,217.84737,196.68027,1.2184699,40850.52,2880.0806,653.3609,46917.625,0.07918384,1.2184699,653.3609,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 20:00,24439648,3597.512,213.39241,141.25105,1.1497345,39879.13,2422.5525,489.8534,16652.246,0.018585503,1.1497345,489.8534,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 21:00,24443536,3597.512,109.6030942,120.275765,0.626727725,37783.9225,1848.4432,395.55028,8326.828718,0.013520778,0.626727725,395.55028,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 22:00,24447424,3597.512,5.8137784,99.30048,0.10372095,35688.715,1274.3339,301.24716,1.4114364,0.008456052,0.10372095,301.24716,130901.3,73179.4,-15784.6,-201976.5
+10/10/2023 23:00,24450384.4,3597.512,5.80358878,93.617012,0.10372095,28582.71177,1149.68894,244.5300648,1.23373609,0.007725351,0.10372095,244.5300648,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 0:00,24453344.8,3597.512,5.79339916,87.933544,0.10372095,21476.70855,1025.04398,187.8129696,1.05603578,0.00699465,0.10372095,187.8129696,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 1:00,24456305.2,3597.512,5.78320954,82.250076,0.10372095,14370.70532,900.39902,131.0958744,0.87833547,0.006263949,0.10372095,131.0958744,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 2:00,24459265.6,3597.512,5.77301992,76.566608,0.10372095,7264.702096,775.75406,74.3787792,0.70063516,0.005533248,0.10372095,74.3787792,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 3:00,24462226,3597.512,5.7628303,70.88314,0.10372095,158.69887,651.1091,17.661684,0.52293485,0.004802547,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 4:00,24468806,3597.512,5.7374096,66.63186,0.10372095,161.39761,2415.366,1110.4631,11.845408,0.004279935,0.10372095,1110.4631,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 5:00,24469706,3597.512,21.786219,120.558044,50.506348,1520.2029,2460.4539,1156.3853,17.50537,0.00450097,50.506348,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 6:00,24473086,3597.512,442.93478,451.06845,50.506348,35202.043,1572.11,263.44714,28.175776,15.646961,50.506348,263.44714,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 7:00,24476584,3597.512,542.30859,452.40619,51.643599,38561.8555,1698.2431,363.98344,114.119328,17.128022,51.643599,363.98344,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 8:00,24480082,3597.512,641.6824,453.74393,52.78085,41921.668,1824.3762,464.51974,200.06288,18.609083,52.78085,464.51974,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 9:00,24484737,3597.512,476.339125,341.162875,52.2063985,40476.2265,1952.12305,426.42999,3892.29169,27.091954,52.2063985,426.42999,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 10:00,24489392,3597.512,310.99585,228.58182,51.631947,39030.785,2079.8699,388.34024,7584.5205,35.574825,51.631947,388.34024,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 11:00,24493094,3597.512,318.50052,169.1482,4.660695,37127.152,2581.9355,419.12192,49863.184,97.987236,4.660695,419.12192,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 12:00,24496547,3597.512,162.1583478,129.400225,2.382207975,36189.431,1850.2399,350.46266,24932.09052,48.99718811,2.382207975,350.46266,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 13:00,24500000,3597.512,5.8161755,89.65225,0.10372095,35251.71,1118.5443,281.8034,0.9970364,0.007140212,0.10372095,281.8034,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 14:00,24503988.5,3597.512,63.86744912,125.48472,22.71263821,36365.69,1854.041525,535.14745,42855.90028,5.542805409,22.71263821,535.14745,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 15:00,24507977,3597.512,121.9187227,161.31719,45.32155548,37479.67,2589.53875,788.4915,85710.80352,11.07847061,45.32155548,788.4915,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 16:00,24511965.5,3597.512,179.9699964,197.14966,67.93047274,38593.65,3325.035975,1041.83555,128565.7068,16.6141358,67.93047274,1041.83555,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 17:00,24515954,3597.512,238.02127,232.98213,90.53939,39707.63,4060.5332,1295.1796,171420.61,22.149801,90.53939,1295.1796,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 18:00,24519224,3597.512,211.21242,119.57217,1.2706918,40470.016,4224.073,1322.773,208509.23,13.419819,1.2706918,1322.773,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 19:00,24522303.6,3597.512,170.0927787,116.3381468,1.03729763,39449.1496,3719.01656,1115.360294,166917.5536,12.643309,1.03729763,1115.360294,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 20:00,24525383.2,3597.512,128.9731374,113.1041236,0.80390346,38428.2832,3213.96012,907.947588,125325.8771,11.866799,0.80390346,907.947588,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 21:00,24528462.8,3597.512,87.8534961,109.8701004,0.57050929,37407.4168,2708.90368,700.534882,83734.2007,11.090289,0.57050929,700.534882,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 22:00,24531542.4,3597.512,46.7338548,106.6360772,0.33711512,36386.5504,2203.84724,493.122176,42142.52427,10.313779,0.33711512,493.122176,130901.3,73179.4,-15784.6,-201976.5
+10/11/2023 23:00,24534622,3597.512,5.6142135,103.402054,0.10372095,35365.684,1698.7908,285.70947,550.84784,9.537269,0.10372095,285.70947,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 0:00,24540886,3597.512,5.5928564,102.84701,0.10372095,789.6483,790.3971,17.516954,1.0348068,9.519392,0.10372095,17.516954,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 1:00,24543420,3597.512,5.585119267,102.7212287,0.10372095,578.6337167,730.98739,17.56519733,0.8882501,9.518613,0.10372095,17.56519733,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 2:00,24545954,3597.512,5.577382133,102.5954473,0.10372095,367.6191333,671.57768,17.61344067,0.7416934,9.517834,0.10372095,17.61344067,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 3:00,24548488,3597.512,5.569645,102.469666,0.10372095,156.60455,612.16797,17.661684,0.5951367,9.517055,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 4:00,24552115,3597.512,5.5582297,102.558781,0.10372095,211.35089,1548.725085,587.023492,43.00708835,9.5169695,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 5:00,24555742,3597.512,5.5468144,102.647896,0.10372095,266.09723,2485.2822,1156.3853,85.41904,9.516884,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 6:00,24559903,3597.512,77.7741708,121.955327,13.29472821,9779.389423,2360.54555,963.1539575,1116.579655,9.52020025,13.29472821,963.1539575,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 7:00,24564064,3597.512,150.0015272,141.262758,26.48573548,19292.68162,2235.8089,769.922615,2147.74027,9.5235165,26.48573548,769.922615,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 8:00,24568225,3597.512,222.2288836,160.570189,39.67674274,28805.97381,2111.07225,576.6912725,3178.900885,9.52683275,39.67674274,576.6912725,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 9:00,24572386,3597.512,294.45624,179.87762,52.86775,38319.266,1986.3356,383.45993,4210.0615,9.530149,52.86775,383.45993,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 10:00,24574934,3597.512,302.090285,135.415085,27.7963679,38334.803,2149.35565,396.164245,12553.58575,4.780346977,27.7963679,396.164245,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 11:00,24577482,3597.512,309.72433,90.95255,2.7249858,38350.34,2312.3757,408.86856,20897.11,0.030544953,2.7249858,408.86856,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 12:00,24582069,3597.512,297.638655,90.660085,2.47783395,36816.211,2964.86155,797.67703,57984.31,0.267885157,2.47783395,797.67703,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 13:00,24586656,3597.512,285.55298,90.36762,2.2306821,35282.082,3617.3474,1186.4855,95071.51,0.50522536,2.2306821,1186.4855,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 14:00,24589816,3597.512,274.7311175,89.18125,2.070931025,35891.5765,3597.7622,1196.156125,89731.1275,0.402244191,2.070931025,1196.156125,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 15:00,24592976,3597.512,263.909255,87.99488,1.91117995,36501.071,3578.177,1205.82675,84390.745,0.299263023,1.91117995,1205.82675,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 16:00,24596136,3597.512,253.0873925,86.80851,1.751428875,37110.5655,3558.5918,1215.497375,79050.3625,0.196281854,1.751428875,1215.497375,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 17:00,24599296,3597.512,242.26553,85.62214,1.5916778,37720.06,3539.0066,1225.168,73709.98,0.093300685,1.5916778,1225.168,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 18:00,24605504,3597.512,218.75107,138.63219,51.88627,40874.91,4018.285,1321.5692,154082.42,0.006658832,51.88627,1321.5692,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 19:00,24606404,3597.512,212.97496,80.62074,1.2518977,40794.273,4046.8523,1320.9447,161402.61,0.005844466,1.2518977,1320.9447,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 20:00,24609964,3597.512,187.0559462,77.35832625,1.108375606,35714.594,3608.255429,1158.034323,141227.3401,0.005455642,1.108375606,1158.034323,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 21:00,24613524,3597.512,161.1369324,74.0959125,0.964853513,30634.915,3169.658558,995.123946,121052.0701,0.005066818,0.964853513,995.123946,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 22:00,24617084,3597.512,135.2179186,70.83349875,0.821331419,25555.236,2731.061686,832.213569,100876.8002,0.004677994,0.821331419,832.213569,130901.3,73179.4,-15784.6,-201976.5
+10/12/2023 23:00,24620644,3597.512,109.2989048,67.571085,0.677809325,20475.557,2292.464815,669.303192,80701.53022,0.004289171,0.677809325,669.303192,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 0:00,24624204,3597.512,83.37989094,64.30867125,0.534287231,15395.878,1853.867944,506.392815,60526.26027,0.003900347,0.534287231,506.392815,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 1:00,24627764,3597.512,57.46087712,61.0462575,0.390765138,10316.199,1415.271073,343.482438,40350.99033,0.003511523,0.390765138,343.482438,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 2:00,24631324,3597.512,31.54186331,57.78384375,0.247243044,5236.52,976.6742012,180.572061,20175.72038,0.003122699,0.247243044,180.572061,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 3:00,24634884,3597.512,5.6228495,54.52143,0.10372095,156.841,538.07733,17.661684,0.45043904,0.002733875,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 4:00,24638504,3597.512,5.6107364,53.721769,0.10372095,198.301415,1512.303415,587.023492,45.43739952,0.002633891,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 5:00,24642124,3597.512,5.5986233,52.922108,0.10372095,239.76183,2486.5295,1156.3853,90.42436,0.002533907,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 6:00,24646762,3597.512,250.39552,426.48355,50.506348,38719.855,1674.6859,347.703,80.47667,2.9563124,50.506348,347.703,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 7:00,24650937.33,3597.512,268.53788,337.1405733,51.280126,38920.55167,1681.688033,358.1465933,70.02110067,1.974210303,51.280126,358.1465933,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 8:00,24655112.67,3597.512,286.68024,247.7975967,52.053904,39121.24833,1688.690167,368.5901867,59.56553133,0.992108207,52.053904,368.5901867,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 9:00,24659288,3597.512,304.8226,158.45462,52.827682,39321.945,1695.6923,379.03378,49.109962,0.01000611,52.827682,379.03378,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 10:00,24660188,3597.512,288.62393,92.90185,2.1325097,39322.88,1681.194,377.38107,21.56159,0.007025925,2.1325097,377.38107,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 11:00,24663869,3597.512,289.7283867,85.999415,2.158994867,38937.7925,1683.043017,368.9101533,56.91103,0.00619589,2.158994867,368.9101533,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 12:00,24667550,3597.512,290.8328433,79.09698,2.185480033,38552.705,1684.892033,360.4392367,92.26047,0.005365855,2.185480033,360.4392367,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 13:00,24671231,3597.512,291.9373,72.194545,2.2119652,38167.6175,1686.74105,351.96832,127.60991,0.00453582,2.2119652,351.96832,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 14:00,24674912,3597.512,293.0417567,65.29211,2.238450367,37782.53,1688.590067,343.4974033,162.95935,0.003705785,2.238450367,343.4974033,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 15:00,24678593,3597.512,294.1462133,58.389675,2.264935533,37397.4425,1690.439083,335.0264867,198.30879,0.00287575,2.264935533,335.0264867,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 16:00,24682274,3597.512,295.25067,51.48724,2.2914207,37012.355,1692.2881,326.55557,233.65823,0.002045715,2.2914207,326.55557,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 17:00,24687250,3597.512,285.495035,178.40939,27.01887935,39555.109,1980.53285,416.86102,5713.195115,0.041463685,27.01887935,416.86102,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 18:00,24692226,3597.512,275.7394,305.33154,51.746338,42097.863,2268.7776,507.16647,11192.732,0.080881655,51.746338,507.16647,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 19:00,24693126,3597.512,226.9324,240.89178,1.1524962,41793.6,2256.9949,500.70224,10896.359,0.07106476,1.1524962,500.70224,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 20:00,24696563,3597.512,370.8054,336.38194,26.9556771,42453.9485,2051.3506,503.24852,5509.372963,2.74788638,26.9556771,503.24852,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 21:00,24700000,3597.512,514.6784,431.8721,52.758858,43114.297,1845.7063,505.7948,122.386925,5.424708,52.758858,505.7948,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 22:00,24705906,3597.512,6.078003,139.36615,0.10372095,37192.32,993.41473,312.0751,0.7943962,0.020321349,0.10372095,312.0751,130901.3,73179.4,-15784.6,-201976.5
+10/13/2023 23:00,24709021.6,3597.512,6.0649622,130.439694,0.10372095,29785.77676,904.638784,253.1924168,0.72979349,0.017911913,0.10372095,253.1924168,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 0:00,24712137.2,3597.512,6.0519214,121.513238,0.10372095,22379.23351,815.862838,194.3097336,0.66519078,0.015502476,0.10372095,194.3097336,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 1:00,24715252.8,3597.512,6.0388806,112.586782,0.10372095,14972.69027,727.086892,135.4270504,0.60058807,0.01309304,0.10372095,135.4270504,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 2:00,24718368.4,3597.512,6.0258398,103.660326,0.10372095,7566.147024,638.310946,76.5443672,0.53598536,0.010683603,0.10372095,76.5443672,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 3:00,24721484,3597.512,6.012799,94.73387,0.10372095,159.60378,549.535,17.661684,0.47138265,0.008274167,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 4:00,24728116,3597.512,5.9821367,83.984055,0.10372095,166.85033,1806.6155,639.67883,2.3733656,0.006257183,0.10372095,639.67883,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 5:00,24729016,3597.512,5.9793425,82.7351,0.10372095,2492.7563,1890.5781,677.12024,2.598976,0.006044364,0.10372095,677.12024,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 6:00,24732747.88,3597.512,5.981282882,80.70169847,0.10372095,4599.258459,1839.838759,656.2936588,2.492964024,0.005797957,0.10372095,656.2936588,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 7:00,24736479.76,3597.512,5.983223265,78.66829694,0.10372095,6705.760618,1789.099418,635.4670776,2.386952047,0.005551551,0.10372095,635.4670776,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 8:00,24740211.65,3597.512,5.985163647,76.63489541,0.10372095,8812.262776,1738.360076,614.6404965,2.280940071,0.005305144,0.10372095,614.6404965,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 9:00,24743943.53,3597.512,5.987104029,74.60149388,0.10372095,10918.76494,1687.620735,593.8139153,2.174928094,0.005058738,0.10372095,593.8139153,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 10:00,24747675.41,3597.512,5.989044412,72.56809235,0.10372095,13025.26709,1636.881394,572.9873341,2.068916118,0.004812331,0.10372095,572.9873341,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 11:00,24751407.29,3597.512,5.990984794,70.53469082,0.10372095,15131.76925,1586.142053,552.1607529,1.962904141,0.004565924,0.10372095,552.1607529,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 12:00,24755139.18,3597.512,5.992925176,68.50128929,0.10372095,17238.27141,1535.402712,531.3341718,1.856892165,0.004319518,0.10372095,531.3341718,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 13:00,24758871.06,3597.512,5.994865559,66.46788776,0.10372095,19344.77357,1484.663371,510.5075906,1.750880188,0.004073111,0.10372095,510.5075906,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 14:00,24762602.94,3597.512,5.996805941,64.43448624,0.10372095,21451.27573,1433.924029,489.6810094,1.644868212,0.003826705,0.10372095,489.6810094,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 15:00,24766334.82,3597.512,5.998746324,62.40108471,0.10372095,23557.77789,1383.184688,468.8544282,1.538856235,0.003580298,0.10372095,468.8544282,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 16:00,24770066.71,3597.512,6.000686706,60.36768318,0.10372095,25664.28005,1332.445347,448.0278471,1.432844259,0.003333892,0.10372095,448.0278471,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 17:00,24773798.59,3597.512,6.002627088,58.33428165,0.10372095,27770.78221,1281.706006,427.2012659,1.326832282,0.003087485,0.10372095,427.2012659,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 18:00,24777530.47,3597.512,6.004567471,56.30088012,0.10372095,29877.28436,1230.966665,406.3746847,1.220820306,0.002841078,0.10372095,406.3746847,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 19:00,24781262.35,3597.512,6.006507853,54.26747859,0.10372095,31983.78652,1180.227324,385.5481035,1.114808329,0.002594672,0.10372095,385.5481035,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 20:00,24784994.24,3597.512,6.008448235,52.23407706,0.10372095,34090.28868,1129.487982,364.7215224,1.008796353,0.002348265,0.10372095,364.7215224,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 21:00,24788726.12,3597.512,6.010388618,50.20067553,0.10372095,36196.79084,1078.748641,343.8949412,0.902784376,0.002101859,0.10372095,343.8949412,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 22:00,24792458,3597.512,6.012329,48.167274,0.10372095,38303.293,1028.0093,323.06836,0.7967724,0.001855452,0.10372095,323.06836,130901.3,73179.4,-15784.6,-201976.5
+10/14/2023 23:00,24796229,3597.512,5.935913,55.219799,0.10372095,40190.0195,1406.8749,376.54078,49.4761412,0.002517168,0.10372095,376.54078,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 0:00,24800000,3597.512,5.859497,62.272324,0.10372095,42076.746,1785.7405,430.0132,98.15551,0.003178883,0.10372095,430.0132,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 1:00,24802514,3597.512,5.904621,54.8957445,0.10372095,21118.68708,1196.562,223.837442,49.34790143,0.002492243,0.10372095,223.837442,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 2:00,24805028,3597.512,5.949745,47.519165,0.10372095,160.62816,607.3835,17.661684,0.54029286,0.001805603,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 3:00,24808397,3597.512,12.2440155,88.0732325,25.30503448,411.01586,669.74895,31.965472,11.29586343,0.003686382,25.30503448,31.965472,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 4:00,24811766,3597.512,18.538286,128.6273,50.506348,661.40356,732.1144,46.26926,22.051434,0.005567161,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 5:00,24817016,3597.512,30.224955,180.23424,50.506348,23198.676,1354.3866,106.80926,43.650124,0.01834302,50.506348,106.80926,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 6:00,24821896,3597.512,63.97698,309.95032,50.506348,34429.957,1367.8649,292.79248,7.8608947,0.08940312,50.506348,292.79248,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 7:00,24822796,3597.512,67.34797,323.3043,50.506348,34291.984,1249.7338,253.35825,6.5252233,0.100276224,50.506348,253.35825,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 8:00,24825656,3597.512,52.478542,253.73769,50.506348,34395.29,1059.0232,252.97098,4.172485,0.0513682,50.506348,252.97098,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 9:00,24829602,3597.512,20.778498,125.661385,50.506348,35381.535,1063.7391,296.04437,27.60828,0.00512396,50.506348,296.04437,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 10:00,24835848,3597.512,6.2423677,44.854496,0.10372095,42749.82,1608.7914,469.96558,3.5193658,0.001608275,0.10372095,469.96558,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 11:00,24836748,3597.512,6.2452393,44.733738,0.10372095,42573.51,1613.8696,425.4905,3.4135716,0.001599659,0.10372095,425.4905,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 12:00,24840388.67,3597.512,6.2280866,44.59595789,0.10372095,42357.91256,1593.370644,419.7466856,3.220354311,0.001589864,0.10372095,419.7466856,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 13:00,24844029.33,3597.512,6.2109339,44.45817778,0.10372095,42142.31511,1572.871689,414.0028711,3.027137022,0.001580069,0.10372095,414.0028711,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 14:00,24847670,3597.512,6.1937812,44.32039767,0.10372095,41926.71767,1552.372733,408.2590567,2.833919733,0.001570275,0.10372095,408.2590567,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 15:00,24851310.67,3597.512,6.1766285,44.18261756,0.10372095,41711.12022,1531.873778,402.5152422,2.640702444,0.00156048,0.10372095,402.5152422,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 16:00,24854951.33,3597.512,6.1594758,44.04483744,0.10372095,41495.52278,1511.374822,396.7714278,2.447485156,0.001550685,0.10372095,396.7714278,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 17:00,24858592,3597.512,6.1423231,43.90705733,0.10372095,41279.92533,1490.875867,391.0276133,2.254267867,0.00154089,0.10372095,391.0276133,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 18:00,24862232.67,3597.512,6.1251704,43.76927722,0.10372095,41064.32789,1470.376911,385.2837989,2.061050578,0.001531096,0.10372095,385.2837989,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 19:00,24865873.33,3597.512,6.1080177,43.63149711,0.10372095,40848.73044,1449.877956,379.5399844,1.867833289,0.001521301,0.10372095,379.5399844,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 20:00,24869514,3597.512,6.090865,43.493717,0.10372095,40633.133,1429.379,373.79617,1.674616,0.001511506,0.10372095,373.79617,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 21:00,24875136,3597.512,23.8641,135.54335,50.506348,41152.047,1159.0221,386.05054,0.8435347,0.006990473,50.506348,386.05054,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 22:00,24876308,3597.512,27.645876,148.97684,50.506348,40122.605,1113.5508,360.05475,0.7987013,0.009871804,50.506348,360.05475,130901.3,73179.4,-15784.6,-201976.5
+10/15/2023 23:00,24882892,3597.512,54.856213,247.73486,50.506348,36029.816,887.0919,308.32013,0.5199431,0.04863983,50.506348,308.32013,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 0:00,24883792,3597.512,56.79355,255.25368,50.506348,33306.32,782.53314,217.69455,0.50359744,0.052940432,50.506348,217.69455,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 1:00,24887597,3597.512,70.6728525,293.092025,50.506348,25242.82923,647.8109225,173.3096585,24.29498308,0.134471069,50.506348,173.3096585,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 2:00,24891402,3597.512,84.552155,330.93037,50.506348,17179.33845,513.088705,128.924767,48.08636872,0.216001706,50.506348,128.924767,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 3:00,24895207,3597.512,98.4314575,368.768715,50.506348,9115.847675,378.3664875,84.5398755,71.87775436,0.297532343,50.506348,84.5398755,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 4:00,24899012,3597.512,112.31076,406.60706,50.506348,1052.3569,243.64427,40.154984,95.66914,0.37906298,50.506348,40.154984,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 5:00,24904036,3597.512,2280.0493,476.80438,50.506348,29290.773,1150.6503,173.87943,125.53265,267.8912,50.506348,173.87943,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 6:00,24908316,3597.512,4242.2437,556.0027,52.69734,44874.934,1946.2493,541.733,22.051384,2337.3542,52.69734,541.733,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 7:00,24909216,3597.512,3875.1326,555.9355,52.72172,44619.42,1866.5444,493.36212,18.757967,2333.2476,52.72172,493.36212,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 8:00,24912630,3597.512,2755.1642,525.010675,52.750556,43077.1085,1531.6933,442.80526,14.787187,1399.1954,52.750556,442.80526,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 9:00,24916044,3597.512,1635.1958,494.08585,52.779392,41534.797,1196.8422,392.2484,10.816407,465.1432,52.779392,392.2484,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 10:00,24919986.44,3597.512,1522.803283,486.7615556,52.65625067,41913.854,1277.357578,402.9414667,11.42090289,415.3580461,52.65625067,402.9414667,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 11:00,24923928.89,3597.512,1410.410767,479.4372611,52.53310933,42292.911,1357.872956,413.6345333,12.02539878,365.5728922,52.53310933,413.6345333,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 12:00,24927871.33,3597.512,1298.01825,472.1129667,52.409968,42671.968,1438.388333,424.3276,12.62989467,315.7877383,52.409968,424.3276,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 13:00,24931813.78,3597.512,1185.625733,464.7886722,52.28682667,43051.025,1518.903711,435.0206667,13.23439056,266.0025844,52.28682667,435.0206667,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 14:00,24935756.22,3597.512,1073.233217,457.4643778,52.16368533,43430.082,1599.419089,445.7137333,13.83888644,216.2174306,52.16368533,445.7137333,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 15:00,24939698.67,3597.512,960.8407,450.1400833,52.040544,43809.139,1679.934467,456.4068,14.44338233,166.4322767,52.040544,456.4068,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 16:00,24943641.11,3597.512,848.4481833,442.8157889,51.91740267,44188.196,1760.449844,467.0998667,15.04787822,116.6471228,51.91740267,467.0998667,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 17:00,24947583.56,3597.512,736.0556667,435.4914944,51.79426133,44567.253,1840.965222,477.7929333,15.65237411,66.86196889,51.79426133,477.7929333,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 18:00,24951526,3597.512,623.66315,428.1672,51.67112,44946.31,1921.4806,488.486,16.25687,17.076815,51.67112,488.486,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 19:00,24952426,3597.512,235.83516,375.5673,1.0902346,44683.574,1915.7648,479.54114,18.768694,14.296154,1.0902346,479.54114,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 20:00,24956417,3597.512,179.940255,371.78755,0.632282125,43920.5195,1673.64535,461.187135,14.8283415,10.799404,0.632282125,461.187135,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 21:00,24960408,3597.512,124.04535,368.0078,0.17432965,43157.465,1431.5259,442.83313,10.887989,7.302654,0.17432965,442.83313,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 22:00,24962606,3597.512,6.364267,367.53397,0.10372095,41473.715,1334.5228,392.9071,10.748164,6.9891706,0.10372095,392.9071,130901.3,73179.4,-15784.6,-201976.5
+10/16/2023 23:00,24969394,3597.512,6.3336554,367.018,0.10372095,36276.82,1072.8373,311.27765,0.8331359,6.647234,0.10372095,311.27765,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 0:00,24970294,3597.512,6.324335,366.98563,0.10372095,32210.57,945.6095,197.5527,0.80735135,6.631683,0.10372095,197.5527,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 1:00,24973678.67,3597.512,6.303002467,366.9129967,0.10372095,21527.56823,858.1552567,137.589028,0.745642583,6.6123868,0.10372095,137.589028,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 2:00,24977063.33,3597.512,6.281669933,366.8403633,0.10372095,10844.56647,770.7010133,77.625356,0.683933817,6.5930906,0.10372095,77.625356,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 3:00,24980448,3597.512,6.2603374,366.76773,0.10372095,161.5647,683.24677,17.661684,0.62222505,6.5737944,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 4:00,24984648,3597.512,6.253994,366.70874,0.10372095,1057.2324,808.4083,46.26926,78.88746,6.5738783,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 5:00,24989043.33,3597.512,674.119896,414.46186,17.64372463,15474.68627,1057.655133,201.7680733,54.22759167,263.9876689,17.64372463,201.7680733,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 6:00,24993438.67,3597.512,1341.985798,462.21498,35.18372832,29892.14013,1306.901967,357.2668867,29.56772333,521.4014594,35.18372832,357.2668867,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 7:00,24997834,3597.512,2009.8517,509.9681,52.723732,44309.594,1556.1488,512.7657,4.907855,778.81525,52.723732,512.7657,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 8:00,24998734,3597.512,1756.0844,498.53314,52.73575,43830.05,1395.2869,457.289,3.9482875,558.936,52.73575,457.289,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 9:00,25002348,3597.512,1159.8073,463.71085,52.783672,41665.53,1246.6393,395.44003,2.3856728,147.36424,52.783672,395.44003,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 10:00,25006341.75,3597.512,1080.418988,463.1383737,52.6905085,41866.62588,1343.399838,404.0507013,94.8136137,129.4184384,52.6905085,404.0507013,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 11:00,25010335.5,3597.512,1001.030675,462.5658975,52.597345,42067.72175,1440.160375,412.6613725,187.2415546,111.4726367,52.597345,412.6613725,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 12:00,25014329.25,3597.512,921.6423625,461.9934213,52.5041815,42268.81762,1536.920913,421.2720437,279.6694955,93.52683505,52.5041815,421.2720437,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 13:00,25018323,3597.512,842.25405,461.420945,52.411018,42469.9135,1633.68145,429.882715,372.0974364,75.5810334,52.411018,429.882715,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 14:00,25022316.75,3597.512,762.8657375,460.8484688,52.3178545,42671.00938,1730.441988,438.4933863,464.5253773,57.63523175,52.3178545,438.4933863,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 15:00,25026310.5,3597.512,683.477425,460.2759925,52.224691,42872.10525,1827.202525,447.1040575,556.9533182,39.6894301,52.224691,447.1040575,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 16:00,25030304.25,3597.512,604.0891125,459.7035163,52.1315275,43073.20113,1923.963063,455.7147288,649.3812591,21.74362845,52.1315275,455.7147288,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 17:00,25034298,3597.512,524.7008,459.13104,52.038364,43274.297,2020.7236,464.3254,741.8092,3.7978268,52.038364,464.3254,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 18:00,25037878,3597.512,380.38806,452.70926,51.69386,44611.918,1965.5767,503.79916,115.766174,1.0214566,51.69386,503.79916,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 19:00,25038778,3597.512,234.07475,401.8468,1.1082318,44458.785,1935.1669,493.88385,51.515503,0.86113775,1.1082318,493.88385,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 20:00,25042996,3597.512,160.73467,393.906965,0.605976375,43743.0485,1612.66665,465.194855,26.5426853,0.542070425,0.605976375,465.194855,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 21:00,25047214,3597.512,87.39459,385.96713,0.10372095,43027.312,1290.1664,436.50586,1.5698676,0.2230031,0.10372095,436.50586,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 22:00,25049086,3597.512,6.3070016,382.74365,0.10372095,41500.094,1223.1151,392.83813,1.5099362,0.18853392,0.10372095,392.83813,130901.3,73179.4,-15784.6,-201976.5
+10/17/2023 23:00,25055714,3597.512,6.278704,319.37234,0.10372095,36411.418,981.00574,313.8774,0.6959444,0.1244779,0.10372095,313.8774,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 0:00,25056614,3597.512,6.2697325,313.6068,0.10372095,33068.633,865.8197,211.76971,0.67844516,0.11946238,0.10372095,211.76971,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 1:00,25060030,3597.512,6.248881667,299.5103267,0.10372095,22100.13589,779.6416333,147.0670347,0.63288244,0.108548323,0.10372095,147.0670347,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 2:00,25063446,3597.512,6.228030833,285.4138533,0.10372095,11131.63879,693.4635667,82.36435933,0.58731972,0.097634267,0.10372095,82.36435933,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 3:00,25066862,3597.512,6.20718,271.31738,0.10372095,163.14168,607.2855,17.661684,0.541757,0.08672021,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 4:00,25070826,3597.512,6.203698,261.92606,0.10372095,620.99133,747.81464,46.26926,16.94542,0.08041697,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 5:00,25075724,3597.512,366.97165,431.3799,50.506348,14554.351,1261.8401,45.197998,34.80151,3.6332922,50.506348,45.197998,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 6:00,25081122,3597.512,2030.7664,507.94254,52.696503,44700.26,1926.9601,502.12714,10.837625,431.10657,52.696503,502.12714,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 7:00,25084658,3597.512,1466.7979,494.22266,52.74925,43967.934,1444.7928,468.29745,3.8227863,266.45267,52.74925,468.29745,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 8:00,25085028,3597.512,1417.009,491.45837,52.75378,43841.484,1424.2047,463.62158,3.6695695,239.14758,52.75378,463.62158,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 9:00,25091772,3597.512,847.26294,455.2388,52.775883,40869.965,1282.8481,372.7638,2.7575517,39.41901,52.775883,372.7638,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 10:00,25092528,3597.512,804.4842,452.1716,52.79384,41089.92,516.6308,362.999,1.6670852,32.097786,52.79384,362.999,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 11:00,25096264,3597.512,405.3957066,412.92952,26.44878048,40709.69,804.0858,383.73447,1.248000665,16.1366071,26.44878048,383.73447,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 12:00,25100000,3597.512,6.3072133,373.68744,0.10372095,40329.46,1091.5408,404.46994,0.82891613,0.1754282,0.10372095,404.46994,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 13:00,25104050.67,3597.512,84.10766108,382.69905,8.700590292,41044.12833,1238.739483,420.67069,25.01447844,0.981491083,8.700590292,420.67069,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 14:00,25108101.33,3597.512,161.9081089,391.71066,17.29745963,41758.79667,1385.938167,436.87144,49.20004075,1.787553967,17.29745963,436.87144,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 15:00,25112152,3597.512,239.7085567,400.72227,25.89432897,42473.465,1533.13685,453.07219,73.38560307,2.59361685,25.89432897,453.07219,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 16:00,25116202.67,3597.512,317.5090044,409.73388,34.49119832,43188.13333,1680.335533,469.27294,97.57116538,3.399679733,34.49119832,469.27294,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 17:00,25120253.33,3597.512,395.3094522,418.74549,43.08806766,43902.80167,1827.534217,485.47369,121.7567277,4.205742617,43.08806766,485.47369,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 18:00,25124304,3597.512,473.1099,427.7571,51.684937,44617.47,1974.7329,501.67444,145.94229,5.0118055,51.684937,501.67444,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 19:00,25125204,3597.512,235.43398,375.8736,1.101824,44514.566,1938.0846,491.66144,57.815372,4.2113905,1.101824,491.66144,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 20:00,25128814,3597.512,159.0691762,373.2135333,0.769122983,43290.494,1686.807367,453.9136867,39.3123792,3.12830045,0.769122983,453.9136867,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 21:00,25132424,3597.512,82.7043724,370.5534667,0.436421967,42066.422,1435.530133,416.1659333,20.8093864,2.0452104,0.436421967,416.1659333,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 22:00,25136034,3597.512,6.3395686,367.8934,0.10372095,40842.35,1184.2529,378.41818,2.3063936,0.96212035,0.10372095,378.41818,130901.3,73179.4,-15784.6,-201976.5
+10/18/2023 23:00,25140084.33,3597.512,6.3163675,367.4372283,0.10372095,34061.67778,1093.80075,318.2920973,2.239924683,0.912716375,0.10372095,318.2920973,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 0:00,25144134.67,3597.512,6.2931664,366.9810567,0.10372095,27281.00555,1003.3486,258.1660147,2.173455767,0.8633124,0.10372095,258.1660147,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 1:00,25148185,3597.512,6.2699653,366.524885,0.10372095,20500.33333,912.89645,198.039932,2.10698685,0.813908425,0.10372095,198.039932,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 2:00,25152235.33,3597.512,6.2467642,366.0687133,0.10372095,13719.6611,822.4443,137.9138493,2.040517933,0.76450445,0.10372095,137.9138493,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 3:00,25156285.67,3597.512,6.2235631,365.6125417,0.10372095,6938.988875,731.99215,77.78776667,1.974049017,0.715100475,0.10372095,77.78776667,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 4:00,25160336,3597.512,6.200362,365.15637,0.10372095,158.31665,641.54,17.661684,1.9075801,0.6656965,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 5:00,25160462,3597.512,6.199094,365.1522,0.10372095,181.64818,641.0087,17.661684,1.88527,0.66652,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 6:00,25164520.57,3597.512,56.29164486,338.9827914,7.769886529,5644.271297,846.1621,66.28304771,580.5592743,0.573715718,7.769886529,66.28304771,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 7:00,25168579.14,3597.512,106.3841957,312.8133829,15.43605211,11106.89441,1051.3155,114.9044114,1159.233279,0.480911435,15.43605211,114.9044114,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 8:00,25172637.71,3597.512,156.4767466,286.6439743,23.10221769,16569.51753,1256.4689,163.5257751,1737.907283,0.388107153,23.10221769,163.5257751,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 9:00,25176696.29,3597.512,206.5692974,260.4745657,30.76838326,22032.14065,1461.6223,212.1471389,2316.581287,0.29530287,30.76838326,212.1471389,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 10:00,25180754.86,3597.512,256.6618483,234.3051571,38.43454884,27494.76377,1666.7757,260.7685026,2895.255291,0.202498588,38.43454884,260.7685026,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 11:00,25184813.43,3597.512,306.7543991,208.1357486,46.10071442,32957.38688,1871.9291,309.3898663,3473.929296,0.109694305,46.10071442,309.3898663,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 12:00,25188872,3597.512,356.84695,181.96634,53.76688,38420.01,2077.0825,358.01123,4052.6033,0.016890023,53.76688,358.01123,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 13:00,25189772,3597.512,327.79236,113.27974,2.8523571,38045.09,2057.904,351.86655,3663.71,0.011888119,2.8523571,351.86655,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 14:00,25193532,3597.512,282.83075,82.89423,1.900913,37654.97,1769.6857,333.019,45.2617,0.005730998,1.900913,333.019,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 15:00,25196766,3597.512,144.5502904,224.400225,1.002316975,18909.32219,1230.88215,175.340342,23.6406408,0.349062299,1.002316975,175.340342,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 16:00,25200000,3597.512,6.2698307,365.90622,0.10372095,163.67438,692.0786,17.661684,2.0195816,0.6923936,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 17:00,25205347,3597.512,217.7099904,392.51117,25.89689397,22368.49719,1389.3534,261.788817,532.4234408,1.6930982,25.89689397,261.788817,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 18:00,25210694,3597.512,429.15015,419.11612,51.690067,44573.32,2086.6282,505.91595,1062.8273,2.6938028,51.690067,505.91595,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 19:00,25211594,3597.512,235.23836,367.60693,1.1059753,44276.66,2074.5227,497.60544,1012.6354,2.1788487,1.1059753,497.60544,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 20:00,25215628.67,3597.512,158.9353153,365.3419867,0.771890517,42545.13,1750.3143,443.4573767,675.4031155,1.580797867,0.771890517,443.4573767,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 21:00,25219663.33,3597.512,82.63227067,363.0770433,0.437805733,40813.6,1426.1059,389.3093133,338.170831,0.982747033,0.437805733,389.3093133,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 22:00,25223698,3597.512,6.329226,360.8121,0.10372095,39082.07,1101.8975,335.16125,0.93854654,0.3846962,0.10372095,335.16125,130901.3,73179.4,-15784.6,-201976.5
+10/19/2023 23:00,25226895.6,3597.512,6.3089496,360.505814,0.10372095,31297.80583,1012.03584,271.6613368,0.884577272,0.356986394,0.10372095,271.6613368,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 0:00,25230093.2,3597.512,6.2886732,360.199528,0.10372095,23513.54165,922.17418,208.1614236,0.830608004,0.329276588,0.10372095,208.1614236,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 1:00,25233290.8,3597.512,6.2683968,359.893242,0.10372095,15729.27748,832.31252,144.6615104,0.776638736,0.301566782,0.10372095,144.6615104,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 2:00,25236488.4,3597.512,6.2481204,359.586956,0.10372095,7945.013304,742.45086,81.1615972,0.722669468,0.273856976,0.10372095,81.1615972,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 3:00,25239686,3597.512,6.227844,359.28067,0.10372095,160.74913,652.5892,17.661684,0.6687002,0.24614717,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 4:00,25246714,3597.512,6.1912503,358.94562,0.10372095,281.9679,332.39664,46.26926,1.8359976,0.2331582,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 5:00,25247114,3597.512,72.83458,87.681404,50.506348,722.4753,305.76913,17.661684,1.7531078,0.001231277,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 6:00,25250686,3597.512,131.9737433,141.97667,50.98554667,7602.968417,559.403575,82.30578667,4.117882,0.084471048,50.98554667,82.30578667,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 7:00,25254258,3597.512,191.1129067,196.271936,51.46474533,14483.46153,813.03802,146.9498893,6.4826562,0.167710818,51.46474533,146.9498893,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 8:00,25257830,3597.512,250.25207,250.567202,51.943944,21363.95465,1066.672465,211.593992,8.8474304,0.250950589,51.943944,211.593992,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 9:00,25261402,3597.512,309.3912333,304.862468,52.42314267,28244.44777,1320.30691,276.2380947,11.2122046,0.334190359,52.42314267,276.2380947,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 10:00,25264974,3597.512,368.5303967,359.157734,52.90234133,35124.94088,1573.941355,340.8821973,13.5769788,0.417430129,52.90234133,340.8821973,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 11:00,25268546,3597.512,427.66956,413.453,53.38154,42005.434,1827.5758,405.5263,15.941753,0.5006699,53.38154,405.5263,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 12:00,25275216,3597.512,336.3341,125.86989,3.022229,38873.113,2012.2776,357.22623,2350.4053,0.98617995,3.022229,357.22623,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 13:00,25278825.33,3597.512,325.8798067,111.59323,2.817735,38727.69,1927.857467,346.66252,1578.869399,0.659720791,2.817735,346.66252,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 14:00,25282434.67,3597.512,315.4255133,97.31657,2.613241,38582.267,1843.437333,336.09881,807.3334973,0.333261632,2.613241,336.09881,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 15:00,25286044,3597.512,304.97122,83.03991,2.408747,38436.844,1759.0172,325.5351,35.797596,0.006802473,2.408747,325.5351,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 16:00,25286666,3597.512,304.91962,81.68871,2.407463,38444.004,1772.5167,325.6861,72.93739,0.006538118,2.407463,325.6861,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 17:00,25291860,3597.512,314.270845,257.66708,27.0588435,41229.857,1993.90095,419.84888,1789.576195,0.134736149,27.0588435,419.84888,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 18:00,25297054,3597.512,323.62207,433.64545,51.710224,44015.71,2215.2852,514.01166,3506.215,0.26293418,51.710224,514.01166,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 19:00,25297954,3597.512,233.22794,382.2343,1.1219436,43751.156,2203.8193,506.77527,3388.4639,0.23424493,1.1219436,506.77527,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 20:00,25301847.33,3597.512,157.5747636,333.2291767,0.78253605,42404.16,1846.987567,455.99456,2259.333553,0.176555653,0.78253605,455.99456,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 21:00,25305740.67,3597.512,81.92158713,284.2240533,0.4431285,41057.164,1490.155833,405.21385,1130.203205,0.118866377,0.4431285,405.21385,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 22:00,25309634,3597.512,6.2684107,235.21893,0.10372095,39710.168,1133.3241,354.43314,1.0728582,0.0611771,0.10372095,354.43314,130901.3,73179.4,-15784.6,-201976.5
+10/20/2023 23:00,25312926.8,3597.512,6.24885608,220.659458,0.10372095,31800.50313,1035.98019,287.0788488,1.011206568,0.054207647,0.10372095,287.0788488,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 0:00,25316219.6,3597.512,6.22930146,206.099986,0.10372095,23890.83827,938.63628,219.7245576,0.949554936,0.047238194,0.10372095,219.7245576,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 1:00,25319512.4,3597.512,6.20974684,191.540514,0.10372095,15981.1734,841.29237,152.3702664,0.887903304,0.040268742,0.10372095,152.3702664,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 2:00,25322805.2,3597.512,6.19019222,176.981042,0.10372095,8071.508536,743.94846,85.0159752,0.826251672,0.033299289,0.10372095,85.0159752,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 3:00,25326098,3597.512,6.1706376,162.42157,0.10372095,161.84367,646.60455,17.661684,0.76460004,0.026329836,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 4:00,25333102,3597.512,6.135617,147.45369,0.10372095,258.73514,1503.1937,1012.2291,1.1171801,0.021200115,0.10372095,1012.2291,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 5:00,25334002,3597.512,6.1257634,145.86212,0.10372095,4128.561,1270.2555,543.7331,1.3707311,0.020693004,0.10372095,543.7331,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 6:00,25337684.93,3597.512,6.12739364,143.0281747,0.10372095,6547.044933,1360.244933,541.8125307,1893.792749,0.019965966,0.10372095,541.8125307,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 7:00,25341367.87,3597.512,6.12902388,140.1942293,0.10372095,8965.528867,1450.234367,539.8919613,3786.214767,0.019238929,0.10372095,539.8919613,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 8:00,25345050.8,3597.512,6.13065412,137.360284,0.10372095,11384.0128,1540.2238,537.971392,5678.636785,0.018511891,0.10372095,537.971392,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 9:00,25348733.73,3597.512,6.13228436,134.5263387,0.10372095,13802.49673,1630.213233,536.0508227,7571.058803,0.017784853,0.10372095,536.0508227,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 10:00,25352416.67,3597.512,6.1339146,131.6923933,0.10372095,16220.98067,1720.202667,534.1302533,9463.480821,0.017057815,0.10372095,534.1302533,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 11:00,25356099.6,3597.512,6.13554484,128.858448,0.10372095,18639.4646,1810.1921,532.209684,11355.90284,0.016330778,0.10372095,532.209684,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 12:00,25359782.53,3597.512,6.13717508,126.0245027,0.10372095,21057.94853,1900.181533,530.2891147,13248.32486,0.01560374,0.10372095,530.2891147,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 13:00,25363465.47,3597.512,6.13880532,123.1905573,0.10372095,23476.43247,1990.170967,528.3685453,15140.74687,0.014876702,0.10372095,528.3685453,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 14:00,25367148.4,3597.512,6.14043556,120.356612,0.10372095,25894.9164,2080.1604,526.447976,17033.16889,0.014149664,0.10372095,526.447976,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 15:00,25370831.33,3597.512,6.1420658,117.5226667,0.10372095,28313.40033,2170.149833,524.5274067,18925.59091,0.013422627,0.10372095,524.5274067,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 16:00,25374514.27,3597.512,6.14369604,114.6887213,0.10372095,30731.88427,2260.139267,522.6068373,20818.01293,0.012695589,0.10372095,522.6068373,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 17:00,25378197.2,3597.512,6.14532628,111.854776,0.10372095,33150.3682,2350.1287,520.686268,22710.43495,0.011968551,0.10372095,520.686268,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 18:00,25381880.13,3597.512,6.14695652,109.0208307,0.10372095,35568.85213,2440.118133,518.7656987,24602.85696,0.011241513,0.10372095,518.7656987,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 19:00,25385563.07,3597.512,6.14858676,106.1868853,0.10372095,37987.33607,2530.107567,516.8451293,26495.27898,0.010514476,0.10372095,516.8451293,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 20:00,25389246,3597.512,6.150217,103.35294,0.10372095,40405.82,2620.097,514.92456,28387.701,0.009787438,0.10372095,514.92456,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 21:00,25391876,3597.512,6.1385555,102.51495,0.10372095,40009.973,2613.554,515.7776,27648.402,0.009623447,0.10372095,515.7776,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 22:00,25395938,3597.512,6.09071275,113.95077,0.10372095,40990.1715,2227.54315,469.15197,13831.28655,0.01221715,0.10372095,469.15197,130901.3,73179.4,-15784.6,-201976.5
+10/21/2023 23:00,25400000,3597.512,6.04287,125.38659,0.10372095,41970.37,1841.5323,422.52634,14.171098,0.014810852,0.10372095,422.52634,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 0:00,25403716,3597.512,6.079597,99.27418,0.10372095,13010.87,853.83215,18.776064,0.9956953,0.009009223,0.10372095,18.776064,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 1:00,25406654.67,3597.512,6.063076667,98.62190167,0.10372095,8726.924487,806.3863333,18.404604,0.887097333,0.008890948,0.10372095,18.404604,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 2:00,25409593.33,3597.512,6.046556333,97.96962333,0.10372095,4442.978973,758.9405167,18.033144,0.778499367,0.008772674,0.10372095,18.033144,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 3:00,25412532,3597.512,6.030036,97.317345,0.10372095,159.03346,711.4947,17.661684,0.6699014,0.008654399,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 4:00,25417510,3597.512,5.99681665,96.3914625,0.10372095,15380.06473,1201.68345,104.465447,157.7302607,0.008492495,0.10372095,104.465447,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 5:00,25422488,3597.512,5.9635973,95.46558,0.10372095,30601.096,1691.8722,191.26921,314.79062,0.00833059,0.10372095,191.26921,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 6:00,25426201,3597.512,5.999493117,94.94156667,0.10372095,31739.22667,1850.695617,231.162175,7053.91985,0.008243928,0.10372095,231.162175,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 7:00,25429914,3597.512,6.035388933,94.41755333,0.10372095,32877.35733,2009.519033,271.05514,13793.04908,0.008157266,0.10372095,271.05514,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 8:00,25433627,3597.512,6.07128475,93.89354,0.10372095,34015.488,2168.34245,310.948105,20532.17831,0.008070605,0.10372095,310.948105,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 9:00,25437340,3597.512,6.107180567,93.36952667,0.10372095,35153.61867,2327.165867,350.84107,27271.30754,0.007983943,0.10372095,350.84107,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 10:00,25441053,3597.512,6.143076383,92.84551333,0.10372095,36291.74933,2485.989283,390.734035,34010.43677,0.007897281,0.10372095,390.734035,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 11:00,25444766,3597.512,6.1789722,92.3215,0.10372095,37429.88,2644.8127,430.627,40749.566,0.007810619,0.10372095,430.627,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 12:00,25444826,3597.512,6.1789308,92.31449,0.10372095,37406.348,2649.5625,431.99304,41177.42,0.007809505,0.10372095,431.99304,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 13:00,25448479,3597.512,6.15877355,91.9843784,0.10372095,37500.6366,2602.52205,427.851826,37720.7788,0.007759941,0.10372095,427.851826,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 14:00,25452132,3597.512,6.1386163,91.6542668,0.10372095,37594.9252,2555.4816,423.710612,34264.1376,0.007710377,0.10372095,423.710612,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 15:00,25455785,3597.512,6.11845905,91.3241552,0.10372095,37689.2138,2508.44115,419.569398,30807.4964,0.007660813,0.10372095,419.569398,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 16:00,25459438,3597.512,6.0983018,90.9940436,0.10372095,37783.5024,2461.4007,415.428184,27350.8552,0.007611249,0.10372095,415.428184,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 17:00,25463091,3597.512,6.07814455,90.663932,0.10372095,37877.791,2414.36025,411.28697,23894.214,0.007561686,0.10372095,411.28697,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 18:00,25466744,3597.512,6.0579873,90.3338204,0.10372095,37972.0796,2367.3198,407.145756,20437.5728,0.007512122,0.10372095,407.145756,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 19:00,25470397,3597.512,6.03783005,90.0037088,0.10372095,38066.3682,2320.27935,403.004542,16980.9316,0.007462558,0.10372095,403.004542,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 20:00,25474050,3597.512,6.0176728,89.6735972,0.10372095,38160.6568,2273.2389,398.863328,13524.2904,0.007412994,0.10372095,398.863328,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 21:00,25477703,3597.512,5.99751555,89.3434856,0.10372095,38254.9454,2226.19845,394.722114,10067.6492,0.00736343,0.10372095,394.722114,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 22:00,25481356,3597.512,5.9773583,89.013374,0.10372095,38349.234,2179.158,390.5809,6611.008,0.007313866,0.10372095,390.5809,130901.3,73179.4,-15784.6,-201976.5
+10/22/2023 23:00,25486366,3597.512,5.9442055,88.686072,0.10372095,19424.70344,1574.66645,204.041167,3306.168753,0.007268673,0.10372095,204.041167,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 0:00,25491376,3597.512,5.9110527,88.35877,0.10372095,500.17288,970.1749,17.501434,1.3295068,0.007223479,0.10372095,17.501434,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 1:00,25493878,3597.512,5.8992658,88.21187,0.10372095,386.0119,907.7724233,17.55485067,1.161215067,0.007203794,0.10372095,17.55485067,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 2:00,25496380,3597.512,5.8874789,88.06497,0.10372095,271.85092,845.3699467,17.60826733,0.992923333,0.007184109,0.10372095,17.60826733,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 3:00,25498882,3597.512,5.875692,87.91807,0.10372095,157.68994,782.96747,17.661684,0.8246316,0.007164424,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 4:00,25502479,3597.512,6.0158345,87.904245,0.10372095,173.00374,1695.428085,587.023492,47.3838428,0.007173832,0.10372095,587.023492,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 5:00,25506076,3597.512,6.155977,87.89042,0.10372095,188.31754,2607.8887,1156.3853,93.943054,0.00718324,0.10372095,1156.3853,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 6:00,25509941.08,3597.512,47.28048185,113.9569785,4.074279723,3576.225422,2573.181238,1107.873812,232.7154883,0.880514298,4.074279723,1107.873812,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 7:00,25513806.15,3597.512,88.40498669,140.0235369,8.044838496,6964.133303,2538.473777,1059.362325,371.4879226,1.753845357,8.044838496,1059.362325,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 8:00,25517671.23,3597.512,129.5294915,166.0900954,12.01539727,10352.04118,2503.766315,1010.850837,510.2603569,2.627176415,12.01539727,1010.850837,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 9:00,25521536.31,3597.512,170.6539964,192.1566538,15.98595604,13739.94907,2469.058854,962.3393492,649.0327912,3.500507474,15.98595604,962.3393492,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 10:00,25525401.38,3597.512,211.7785012,218.2232123,19.95651482,17127.85695,2434.351392,913.8278615,787.8052255,4.373838532,19.95651482,913.8278615,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 11:00,25529266.46,3597.512,252.9030061,244.2897708,23.92707359,20515.76483,2399.643931,865.3163738,926.5776598,5.247169591,23.92707359,865.3163738,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 12:00,25533131.54,3597.512,294.0275109,270.3563292,27.89763236,23903.67271,2364.936469,816.8048862,1065.350094,6.120500649,27.89763236,816.8048862,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 13:00,25536996.62,3597.512,335.1520158,296.4228877,31.86819113,27291.58059,2330.229008,768.2933985,1204.122528,6.993831708,31.86819113,768.2933985,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 14:00,25540861.69,3597.512,376.2765206,322.4894462,35.83874991,30679.48847,2295.521546,719.7819108,1342.894963,7.867162766,35.83874991,719.7819108,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 15:00,25544726.77,3597.512,417.4010255,348.5560046,39.80930868,34067.39636,2260.814085,671.2704231,1481.667397,8.740493825,39.80930868,671.2704231,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 16:00,25548591.85,3597.512,458.5255303,374.6225631,43.77986745,37455.30424,2226.106623,622.7589354,1620.439831,9.613824883,43.77986745,622.7589354,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 17:00,25552456.92,3597.512,499.6500352,400.6891215,47.75042623,40843.21212,2191.399162,574.2474477,1759.212266,10.48715594,47.75042623,574.2474477,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 18:00,25556322,3597.512,540.77454,426.75568,51.720985,44231.12,2156.6917,525.73596,1897.9847,11.360487,51.720985,525.73596,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 19:00,25557222,3597.512,232.42668,374.43085,1.1362475,43969.39,2140.1426,516.02783,1769.5273,9.525864,1.1362475,516.02783,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 20:00,25561890,3597.512,126.9592335,370.536175,0.619984225,43171.005,1746.2941,477.024535,885.3708282,6.875424,0.619984225,477.024535,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 21:00,25566558,3597.512,21.491787,366.6415,0.10372095,42372.62,1352.4456,438.02124,1.2143564,4.224984,0.10372095,438.02124,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 22:00,25569676.33,3597.512,18.93257122,366.4372583,0.10372095,35337.34716,1239.97075,367.961314,1.112537375,4.133815383,0.10372095,367.961314,130901.3,73179.4,-15784.6,-201976.5
+10/23/2023 23:00,25572794.67,3597.512,16.37335543,366.2330167,0.10372095,28302.07431,1127.4959,297.901388,1.01071835,4.042646767,0.10372095,297.901388,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 0:00,25575913,3597.512,13.81413965,366.028775,0.10372095,21266.80147,1015.02105,227.841462,0.908899325,3.95147815,0.10372095,227.841462,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 1:00,25579031.33,3597.512,11.25492387,365.8245333,0.10372095,14231.52862,902.5462,157.781536,0.8070803,3.860309533,0.10372095,157.781536,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 2:00,25582149.67,3597.512,8.695708083,365.6202917,0.10372095,7196.255775,790.07135,87.72161,0.705261275,3.769140917,0.10372095,87.72161,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 3:00,25585268,3597.512,6.1364923,365.41605,0.10372095,160.98293,677.5965,17.661684,0.60344225,3.6779723,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 4:00,25591984,3597.512,6.1021814,365.27017,0.10372095,528.6586,1466.4625,40.154984,23.625776,3.669361,0.10372095,40.154984,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 5:00,25592452,3597.512,6.100707,365.26483,0.10372095,528.896,1480.9816,42.07502,23.475224,3.67188,0.10372095,42.07502,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 6:00,25599428,3597.512,1837.507,487.70514,52.564934,45100.7,2001.7682,568.0915,28.346682,356.99142,52.564934,568.0915,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 7:00,25600000,3597.512,490.71356,415.29163,52.14425,41133.75,1951.0728,412.81674,599.1126,1.9083678,52.14425,412.81674,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 8:00,25604386,3597.512,676.89838,429.663965,52.506089,41320.17,1621.8383,404.3739,300.1726957,23.0447564,52.506089,404.3739,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 9:00,25608772,3597.512,863.0832,444.0363,52.867928,41506.59,1292.6038,395.93106,1.2327913,44.181145,52.867928,395.93106,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 10:00,25612194,3597.512,680.26056,430.79306,53.063957,43512.297,1180.8608,365.92993,0.9638701,16.214468,53.063957,365.92993,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 11:00,25616007.75,3597.512,653.7676738,429.0627175,52.89201863,43802.22575,1274.288525,384.3751388,2.199428838,14.7274332,52.89201863,384.3751388,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 12:00,25619821.5,3597.512,627.2747875,427.332375,52.72008025,44092.1545,1367.71625,402.8203475,3.434987575,13.2403984,52.72008025,402.8203475,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 13:00,25623635.25,3597.512,600.7819013,425.6020325,52.54814188,44382.08325,1461.143975,421.2655563,4.670546313,11.7533636,52.54814188,421.2655563,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 14:00,25627449,3597.512,574.289015,423.87169,52.3762035,44672.012,1554.5717,439.710765,5.90610505,10.2663288,52.3762035,439.710765,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 15:00,25631262.75,3597.512,547.7961288,422.1413475,52.20426513,44961.94075,1647.999425,458.1559738,7.141663788,8.779294,52.20426513,458.1559738,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 16:00,25635076.5,3597.512,521.3032425,420.411005,52.03232675,45251.8695,1741.42715,476.6011825,8.377222525,7.2922592,52.03232675,476.6011825,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 17:00,25638890.25,3597.512,494.8103563,418.6806625,51.86038838,45541.79825,1834.854875,495.0463912,9.612781263,5.8052244,51.86038838,495.0463912,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 18:00,25642704,3597.512,468.31747,416.95032,51.68845,45831.727,1928.2826,513.4916,10.84834,4.3181896,51.68845,513.4916,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 19:00,25643604,3597.512,237.0947,365.25586,1.1054957,45561.96,1919.9598,504.43216,11.582015,3.6017826,1.1054957,504.43216,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 20:00,25648289,3597.512,129.1322535,361.94958,0.604608325,44310.886,1581.02755,466.18823,6.23892355,2.234588435,0.604608325,466.18823,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 21:00,25652974,3597.512,21.169807,358.6433,0.10372095,43059.812,1242.0953,427.9443,0.8958321,0.86739427,0.10372095,427.9443,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 22:00,25656657.43,3597.512,19.03506024,358.3912257,0.10372095,36931.03874,1165.2281,369.3324977,2.252406943,0.819038731,0.10372095,369.3324977,130901.3,73179.4,-15784.6,-201976.5
+10/24/2023 23:00,25660340.86,3597.512,16.90031349,358.1391514,0.10372095,30802.26549,1088.3609,310.7206954,3.608981786,0.770683193,0.10372095,310.7206954,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 0:00,25664024.29,3597.512,14.76556673,357.8870771,0.10372095,24673.49223,1011.4937,252.1088931,4.965556629,0.722327654,0.10372095,252.1088931,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 1:00,25667707.71,3597.512,12.63081997,357.6350029,0.10372095,18544.71897,934.6265,193.4970909,6.322131471,0.673972116,0.10372095,193.4970909,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 2:00,25671391.14,3597.512,10.49607321,357.3829286,0.10372095,12415.94571,857.7593,134.8852886,7.678706314,0.625616577,0.10372095,134.8852886,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 3:00,25675074.57,3597.512,8.361326457,357.1308543,0.10372095,6287.172457,780.8921,76.27348629,9.035281157,0.577261039,0.10372095,76.27348629,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 4:00,25678758,3597.512,6.2265797,356.87878,0.10372095,158.3992,704.0249,17.661684,10.391856,0.5289055,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 5:00,25678854,3597.512,6.2256107,356.8808,0.10372095,175.68523,703.4149,17.661684,10.188561,0.52960116,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 6:00,25684394,3597.512,1590.2854,474.08398,50.894096,43712.914,1863.1361,435.59265,12.66511,237.8117,50.894096,435.59265,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 7:00,25687606,3597.512,1640.5868,481.73615,52.759823,45252.91,1871.2433,554.29193,80.01625,299.2743,52.759823,554.29193,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 8:00,25691737.33,3597.512,1168.049017,441.2667467,35.48309029,45077.71667,1765.020167,528.3117667,53.91083387,199.8918934,35.48309029,528.3117667,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 9:00,25695868.67,3597.512,695.5112333,400.7973433,18.20635757,44902.52333,1658.797033,502.3316033,27.80541773,100.5094869,18.20635757,502.3316033,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 10:00,25700000,3597.512,222.97345,360.32794,0.92962486,44727.33,1552.5739,476.35144,1.7000016,1.1270803,0.92962486,476.35144,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 11:00,25700806,3597.512,531.63885,416.86786,53.499023,42506.062,1701.394,416.22806,3.2617238,3.5051696,53.499023,416.22806,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 12:00,25705632,3597.512,418.328525,302.76928,53.022228,40131.99,1788.43185,380.49878,1255.275012,2.03540065,53.022228,380.49878,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 13:00,25710458,3597.512,305.0182,188.6707,52.545433,37757.918,1875.4697,344.7695,2507.2883,0.5656317,52.545433,344.7695,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 14:00,25711358,3597.512,283.97833,124.03037,1.9638206,37716.1,1839.436,343.2666,1794.3176,0.60819644,1.9638206,343.2666,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 15:00,25716387,3597.512,283.93878,168.032735,27.0913203,38368.9,1952.83285,365.32286,4626.06115,0.31507367,27.0913203,365.32286,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 16:00,25721416,3597.512,283.89923,212.0351,52.21882,39021.7,2066.2297,387.37912,7457.8047,0.021950899,52.21882,387.37912,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 17:00,25725221,3597.512,282.69394,277.30505,51.993327,40626.858,2321.99335,475.55928,19929.11835,0.059334915,51.993327,475.55928,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 18:00,25729026,3597.512,281.48865,342.575,51.767834,42232.016,2577.757,563.73944,32400.432,0.09671893,51.767834,563.73944,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 19:00,25729926,3597.512,228.5693,277.99765,1.1729882,41872.004,2585.9683,563.81177,33299.95,0.08618305,1.1729882,563.81177,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 20:00,25734246,3597.512,154.4148689,240.3722533,0.816565783,40501.79267,2099.4719,486.6596,22200.34117,0.066164922,0.816565783,486.6596,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 21:00,25738566,3597.512,80.26043773,202.7468567,0.460143367,39131.58133,1612.9755,409.50743,11100.73234,0.046146794,0.460143367,409.50743,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 22:00,25742886,3597.512,6.1060066,165.12146,0.10372095,37761.37,1126.4791,332.35526,1.1235168,0.026128666,0.10372095,332.35526,130901.3,73179.4,-15784.6,-201976.5
+10/25/2023 23:00,25745971.6,3597.512,6.08780582,155.368953,0.10372095,30241.19423,1010.11508,269.4165448,0.99462266,0.023269834,0.10372095,269.4165448,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 0:00,25749057.2,3597.512,6.06960504,145.616446,0.10372095,22721.01846,893.75106,206.4778296,0.86572852,0.020411002,0.10372095,206.4778296,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 1:00,25752142.8,3597.512,6.05140426,135.863939,0.10372095,15200.84269,777.38704,143.5391144,0.73683438,0.01755217,0.10372095,143.5391144,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 2:00,25755228.4,3597.512,6.03320348,126.111432,0.10372095,7680.66692,661.02302,80.6003992,0.60794024,0.014693338,0.10372095,80.6003992,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 3:00,25758314,3597.512,6.0150027,116.358925,0.10372095,160.49115,544.659,17.661684,0.4790461,0.011834506,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 4:00,25761918,3597.512,17.11606585,103.9397175,25.30503448,455.349825,922.26995,16.251117,5.07077605,0.00701565,25.30503448,16.251117,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 5:00,25765522,3597.512,28.217129,91.52051,50.506348,750.2085,1299.8809,14.84055,9.662506,0.002196794,50.506348,14.84055,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 6:00,25769352.89,3597.512,25.75389344,96.56111889,44.90605611,947.2608,1224.867967,15.15400933,8.660243522,0.003848139,44.90605611,15.15400933,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 7:00,25773183.78,3597.512,23.29065789,101.6017278,39.30576421,1144.3131,1149.855033,15.46746867,7.657981044,0.005499484,39.30576421,15.46746867,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 8:00,25777014.67,3597.512,20.82742233,106.6423367,33.70547232,1341.3654,1074.8421,15.780928,6.655718567,0.007150829,33.70547232,15.780928,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 9:00,25780845.56,3597.512,18.36418678,111.6829456,28.10518042,1538.4177,999.8291667,16.09438733,5.653456089,0.008802174,28.10518042,16.09438733,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 10:00,25784676.44,3597.512,15.90095122,116.7235544,22.50488853,1735.47,924.8162333,16.40784667,4.651193611,0.01045352,22.50488853,16.40784667,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 11:00,25788507.33,3597.512,13.43771567,121.7641633,16.90459663,1932.5223,849.8033,16.721306,3.648931133,0.012104865,16.90459663,16.721306,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 12:00,25792338.22,3597.512,10.97448011,126.8047722,11.30430474,2129.5746,774.7903667,17.03476533,2.646668656,0.01375621,11.30430474,17.03476533,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 13:00,25796169.11,3597.512,8.511244556,131.8453811,5.704012844,2326.6269,699.7774333,17.34822467,1.644406178,0.015407555,5.704012844,17.34822467,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 14:00,25800000,3597.512,6.048009,136.88599,0.10372095,2523.6792,624.7645,17.661684,0.6421437,0.0170589,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 15:00,25803873,3597.512,107.4219243,208.421305,13.00994446,12962.6784,1010.867575,147.2988305,1393.027508,0.59943675,13.00994446,147.2988305,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 16:00,25807746,3597.512,208.7958395,279.95662,25.91616797,23401.6776,1396.97065,276.935977,2785.412872,1.1818146,25.91616797,276.935977,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 17:00,25811619,3597.512,310.1697548,351.491935,38.82239149,33840.6768,1783.073725,406.5731235,4177.798236,1.76419245,38.82239149,406.5731235,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 18:00,25815492,3597.512,411.54367,423.02725,51.728615,44279.676,2169.1768,536.21027,5570.1836,2.3465703,51.728615,536.21027,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 19:00,25816392,3597.512,233.25641,371.5579,1.1417165,43963.258,2157.2275,528.0256,5430.1,1.9117099,1.1417165,528.0256,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 20:00,25820390,3597.512,157.5845789,369.2303,0.795717983,42509.582,1770.816133,470.59395,3620.307254,1.39015699,0.795717983,470.59395,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 21:00,25824388,3597.512,81.9127478,366.9027,0.449719467,41055.906,1384.404767,413.1623,1810.514509,0.86860408,0.449719467,413.1623,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 22:00,25828386,3597.512,6.2409167,364.5751,0.10372095,39602.23,997.9934,355.73065,0.7217633,0.34705117,0.10372095,355.73065,130901.3,73179.4,-15784.6,-201976.5
+10/26/2023 23:00,25831607.2,3597.512,6.22151656,364.44772,0.10372095,31714.04986,900.69041,288.1168568,0.661095352,0.32098102,0.10372095,288.1168568,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 0:00,25834828.4,3597.512,6.20211642,364.32034,0.10372095,23825.86972,803.38742,220.5030636,0.600427404,0.29491087,0.10372095,220.5030636,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 1:00,25838049.6,3597.512,6.18271628,364.19296,0.10372095,15937.68958,706.08443,152.8892704,0.539759456,0.26884072,0.10372095,152.8892704,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 2:00,25841270.8,3597.512,6.16331614,364.06558,0.10372095,8049.50944,608.78144,85.2754772,0.479091508,0.24277057,0.10372095,85.2754772,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 3:00,25844492,3597.512,6.143916,363.9382,0.10372095,161.3293,511.47845,17.661684,0.41842356,0.21670042,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 4:00,25850982,3597.512,6.114876,364.84015,0.10372095,290.28403,858.0857,40.154984,2.9298658,0.20479257,0.10372095,40.154984,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 5:00,25851658,3597.512,6.1076493,364.82047,0.10372095,178.23212,851.4166,17.00164,2.2974472,0.20438091,0.10372095,17.00164,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 6:00,25855551.5,3597.512,186.754762,383.962115,13.30470696,10630.61734,1062.343175,115.6066375,2.4068275,6.208113183,13.30470696,115.6066375,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 7:00,25859445,3597.512,367.4018746,403.10376,26.50569298,21083.00256,1273.26975,214.211635,2.5162078,12.21184545,26.50569298,214.211635,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 8:00,25863338.5,3597.512,548.0489873,422.245405,39.70667899,31535.38778,1484.196325,312.8166325,2.6255881,18.21557773,39.70667899,312.8166325,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 9:00,25867232,3597.512,728.6961,441.38705,52.907665,41987.773,1695.1229,411.42163,2.7349684,24.21931,52.907665,411.42163,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 10:00,25871557.33,3597.512,618.53436,425.0156233,53.22948333,41044.33033,1794.508367,399.2259533,551.3109456,16.18920399,53.22948333,399.2259533,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 11:00,25875882.67,3597.512,508.37262,408.6441967,53.55130167,40100.88767,1893.893833,387.0302767,1099.886923,8.159097987,53.55130167,387.0302767,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 12:00,25880208,3597.512,398.21088,392.27277,53.87312,39157.445,1993.2793,374.8346,1648.4629,0.12899198,53.87312,374.8346,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 13:00,25883506.67,3597.512,332.8633523,387.698025,44.91155349,32686.43497,1809.602217,332.0124817,1374.394979,0.141823657,44.91155349,332.0124817,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 14:00,25886805.33,3597.512,267.5158247,383.12328,35.94998698,26215.42494,1625.925133,289.1903633,1100.327057,0.154655333,35.94998698,289.1903633,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 15:00,25890104,3597.512,202.168297,378.548535,26.98842048,19744.41492,1442.24805,246.368245,826.2591359,0.16748701,26.98842048,246.368245,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 16:00,25893402.67,3597.512,136.8207693,373.97379,18.02685397,13273.40489,1258.570967,203.5461267,552.1912145,0.180318687,18.02685397,203.5461267,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 17:00,25896701.33,3597.512,71.47324167,369.399045,9.065287458,6802.394858,1074.893883,160.7240083,278.1232932,0.193150363,9.065287458,160.7240083,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 18:00,25900000,3597.512,6.125714,364.8243,0.10372095,331.38483,891.2168,117.90189,4.0553718,0.20598204,0.10372095,117.90189,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 19:00,25903573.5,3597.512,6.162420175,341.67588,0.10372095,10364.86862,960.12895,182.4201,3.284465133,0.176245291,0.10372095,182.4201,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 20:00,25907147,3597.512,6.19912635,318.52746,0.10372095,20398.35241,1029.0411,246.93831,2.513558465,0.146508543,0.10372095,246.93831,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 21:00,25910720.5,3597.512,6.235832525,295.37904,0.10372095,30431.83621,1097.95325,311.45652,1.742651797,0.116771794,0.10372095,311.45652,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 22:00,25914294,3597.512,6.2725387,272.23062,0.10372095,40465.32,1166.8654,375.97473,0.97174513,0.087035045,0.10372095,375.97473,130901.3,73179.4,-15784.6,-201976.5
+10/27/2023 23:00,25917792,3597.512,6.2527573,257.269176,0.10372095,32407.54657,1048.1149,310.033636,0.86299452,0.077978878,0.10372095,310.033636,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 0:00,25921290,3597.512,6.2329759,242.307732,0.10372095,24349.77314,929.3644,244.092542,0.75424391,0.068922712,0.10372095,244.092542,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 1:00,25924788,3597.512,6.2131945,227.346288,0.10372095,16291.99971,810.6139,178.151448,0.6454933,0.059866545,0.10372095,178.151448,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 2:00,25928286,3597.512,6.1934131,212.384844,0.10372095,8234.22628,691.8634,112.210354,0.53674269,0.050810379,0.10372095,112.210354,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 3:00,25931784,3597.512,6.1736317,197.4234,0.10372095,176.45285,573.1129,46.26926,0.42799208,0.041754212,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 4:00,25937922,3597.512,6.138596,185.61534,0.10372095,158.1508,1083.4414,88.438225,1.7875277,0.036393274,0.10372095,88.438225,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 5:00,25938928,3597.512,6.127313,184.01396,0.10372095,5470.876,1140.2184,14.84055,2.1708808,0.035702616,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 6:00,25942520.47,3597.512,6.123900706,183.2240971,0.10372095,7325.126412,1178.008718,32.74934706,9.973465459,0.035382373,0.10372095,32.74934706,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 7:00,25946112.94,3597.512,6.120488412,182.4342341,0.10372095,9179.376824,1215.799035,50.65814412,17.77605012,0.035062131,0.10372095,50.65814412,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 8:00,25949705.41,3597.512,6.117076118,181.6443712,0.10372095,11033.62724,1253.589353,68.56694118,25.57863478,0.034741888,0.10372095,68.56694118,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 9:00,25953297.88,3597.512,6.113663824,180.8545082,0.10372095,12887.87765,1291.379671,86.47573824,33.38121944,0.034421646,0.10372095,86.47573824,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 10:00,25956890.35,3597.512,6.110251529,180.0646453,0.10372095,14742.12806,1329.169988,104.3845353,41.18380409,0.034101403,0.10372095,104.3845353,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 11:00,25960482.82,3597.512,6.106839235,179.2747824,0.10372095,16596.37847,1366.960306,122.2933324,48.98638875,0.033781161,0.10372095,122.2933324,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 12:00,25964075.29,3597.512,6.103426941,178.4849194,0.10372095,18450.62888,1404.750624,140.2021294,56.78897341,0.033460918,0.10372095,140.2021294,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 13:00,25967667.76,3597.512,6.100014647,177.6950565,0.10372095,20304.87929,1442.540941,158.1109265,64.59155807,0.033140676,0.10372095,158.1109265,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 14:00,25971260.24,3597.512,6.096602353,176.9051935,0.10372095,22159.12971,1480.331259,176.0197235,72.39414273,0.032820433,0.10372095,176.0197235,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 15:00,25974852.71,3597.512,6.093190059,176.1153306,0.10372095,24013.38012,1518.121576,193.9285206,80.19672739,0.032500191,0.10372095,193.9285206,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 16:00,25978445.18,3597.512,6.089777765,175.3254676,0.10372095,25867.63053,1555.911894,211.8373176,87.99931205,0.032179948,0.10372095,211.8373176,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 17:00,25982037.65,3597.512,6.086365471,174.5356047,0.10372095,27721.88094,1593.702212,229.7461147,95.80189671,0.031859706,0.10372095,229.7461147,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 18:00,25985630.12,3597.512,6.082953176,173.7457418,0.10372095,29576.13135,1631.492529,247.6549118,103.6044814,0.031539463,0.10372095,247.6549118,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 19:00,25989222.59,3597.512,6.079540882,172.9558788,0.10372095,31430.38176,1669.282847,265.5637088,111.407066,0.031219221,0.10372095,265.5637088,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 20:00,25992815.06,3597.512,6.076128588,172.1660159,0.10372095,33284.63218,1707.073165,283.4725059,119.2096507,0.030898978,0.10372095,283.4725059,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 21:00,25996407.53,3597.512,6.072716294,171.3761529,0.10372095,35138.88259,1744.863482,301.3813029,127.0122353,0.030578736,0.10372095,301.3813029,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 22:00,26000000,3597.512,6.069304,170.58629,0.10372095,36993.133,1782.6538,319.2901,134.81482,0.030258493,0.10372095,319.2901,130901.3,73179.4,-15784.6,-201976.5
+10/28/2023 23:00,26003452.8,3597.512,6.07095586,165.750914,0.10372095,29626.05881,1576.071428,258.9644168,107.9905968,0.028675508,0.10372095,258.9644168,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 0:00,26006905.6,3597.512,6.07260772,160.915538,0.10372095,22258.98462,1369.489056,198.6387336,81.16637363,0.027092524,0.10372095,198.6387336,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 1:00,26010358.4,3597.512,6.07425958,156.080162,0.10372095,14891.91043,1162.906684,138.3130504,54.34215044,0.025509539,0.10372095,138.3130504,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 2:00,26013811.2,3597.512,6.07591144,151.244786,0.10372095,7524.83624,956.324312,77.9873672,27.51792726,0.023926555,0.10372095,77.9873672,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 3:00,26017264,3597.512,6.0775633,146.40941,0.10372095,157.76205,749.74194,17.661684,0.69370407,0.02234357,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 4:00,26021382,3597.512,6.0439515,149.33295,0.10372095,612.1846,1413.3287,1110.4631,16.528694,0.023466552,0.10372095,1110.4631,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 5:00,26026445,3597.512,21.75048375,175.505625,25.30503448,18147.4888,1417.2796,711.3004,11.82788865,0.023899553,25.30503448,711.3004,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 6:00,26031508,3597.512,37.457016,201.6783,50.506348,35682.793,1421.2305,312.1377,7.1270833,0.024332553,50.506348,312.1377,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 7:00,26032408,3597.512,38.69192,204.20337,50.506348,35551.633,1284.7765,272.07803,5.8660345,0.025307436,50.506348,272.07803,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 8:00,26035256,3597.512,44.487835,224.8333,50.506348,35653.96,1084.304,271.22986,3.7051241,0.034002017,50.506348,271.22986,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 9:00,26039364,3597.512,6.0155,86.31562,0.10372095,36933.9,1105.433,319.84256,31.089422,0.006497314,0.10372095,319.84256,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 10:00,26043092,3597.512,6.144563,84.37903,0.10372095,44308.64,1240.1819,504.5088,11.682635,0.006173885,0.10372095,504.5088,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 11:00,26046076,3597.512,6.3040457,84.186874,0.10372095,46172.004,918.5956,415.9074,2.076311,0.006151107,0.10372095,415.9074,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 12:00,26049952,3597.512,6.283286833,84.23301833,0.10372095,45684.17167,1030.722333,418.6279367,2.087935233,0.006171661,0.10372095,418.6279367,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 13:00,26053828,3597.512,6.262527967,84.27916267,0.10372095,45196.33933,1142.849067,421.3484733,2.099559467,0.006192215,0.10372095,421.3484733,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 14:00,26057704,3597.512,6.2417691,84.325307,0.10372095,44708.507,1254.9758,424.06901,2.1111837,0.006212769,0.10372095,424.06901,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 15:00,26061580,3597.512,6.221010233,84.37145133,0.10372095,44220.67467,1367.102533,426.7895467,2.122807933,0.006233322,0.10372095,426.7895467,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 16:00,26065456,3597.512,6.200251367,84.41759567,0.10372095,43732.84233,1479.229267,429.5100833,2.134432167,0.006253876,0.10372095,429.5100833,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 17:00,26069332,3597.512,6.1794925,84.46374,0.10372095,43245.01,1591.356,432.23062,2.1460564,0.00627443,0.10372095,432.23062,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 18:00,26073529.33,3597.512,33.094925,175.6051267,16.90459663,43541.34533,1685.233233,440.8574467,2.6453223,0.046953753,16.90459663,440.8574467,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 19:00,26077726.67,3597.512,60.0103575,266.7465133,33.70547232,43837.68067,1779.110467,449.4842733,3.1445882,0.087633077,33.70547232,449.4842733,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 20:00,26081924,3597.512,86.92579,357.8879,50.506348,44134.016,1872.9877,458.1111,3.6438541,0.1283124,50.506348,458.1111,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 21:00,26082204,3597.512,88.71573,364.20392,50.506348,44153.598,1872.8745,458.02917,3.4344234,0.13454539,50.506348,458.02917,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 22:00,26087448,3597.512,103.4603125,387.686645,50.506348,40825.9865,1525.11485,393.072005,2.52970685,0.200206655,50.506348,393.072005,130901.3,73179.4,-15784.6,-201976.5
+10/29/2023 23:00,26092692,3597.512,118.204895,411.16937,50.506348,37498.375,1177.3552,328.11484,1.6249903,0.26586792,50.506348,328.11484,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 0:00,26093592,3597.512,116.3435,411.0387,50.506348,32591.113,1034.6998,198.80777,1.4619796,0.25313526,50.506348,198.80777,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 1:00,26096796,3597.512,61.3080335,247.4754,25.30503448,37236.453,1432.79095,296.506685,20.2592873,0.129626545,25.30503448,296.506685,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 2:00,26100000,3597.512,6.272567,83.9121,0.10372095,41881.793,1830.8821,394.2056,39.056595,0.006117829,0.10372095,394.2056,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 3:00,26103642,3597.512,180.18922,415.25177,50.506348,161.48517,757.7787,17.661684,0.77626,1.3611954,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 4:00,26108652,3597.512,221.48517,418.70816,50.506348,1556.6195,848.77795,46.26926,214.78947,3.323398,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 5:00,26113454,3597.512,2137.4219,479.69467,50.506348,28818.117,1067.944,153.7439,404.7324,248.16162,50.506348,153.7439,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 6:00,26117363,3597.512,2740.26295,519.61241,51.6558265,37361.82,1291.0654,346.47562,207.6091337,1258.92956,51.6558265,346.47562,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 7:00,26121272,3597.512,3343.104,559.53015,52.805305,45905.523,1514.1868,539.20734,10.4858675,2269.6975,52.805305,539.20734,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 8:00,26122172,3597.512,2970.2134,552.07965,52.827053,45312.13,1401.1149,481.44296,8.719158,1902.9092,52.827053,481.44296,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 9:00,26125714,3597.512,1930.2388,514.5905,52.884926,43160.965,1252.8068,418.94672,5.54923,747.3902,52.884926,418.94672,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 10:00,26128864,3597.512,1344.7006,481.35098,52.8835,43631.664,1096.4473,372.30603,4.56347,244.14525,52.8835,372.30603,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 11:00,26132941.14,3597.512,1245.035214,479.0276514,52.77604286,43689.52843,1240.501314,391.3757686,170.1425457,210.5497074,52.77604286,391.3757686,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 12:00,26137018.29,3597.512,1145.369829,476.7043229,52.66858571,43747.39286,1384.555329,410.4455071,335.7216214,176.9541649,52.66858571,410.4455071,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 13:00,26141095.43,3597.512,1045.704443,474.3809943,52.56112857,43805.25729,1528.609343,429.5152457,501.3006971,143.3586223,52.56112857,429.5152457,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 14:00,26145172.57,3597.512,946.0390571,472.0576657,52.45367143,43863.12171,1672.663357,448.5849843,666.8797729,109.7630797,52.45367143,448.5849843,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 15:00,26149249.71,3597.512,846.3736714,469.7343371,52.34621429,43920.98614,1816.717371,467.6547229,832.4588486,76.16753714,52.34621429,467.6547229,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 16:00,26153326.86,3597.512,746.7082857,467.4110086,52.23875714,43978.85057,1960.771386,486.7244614,998.0379243,42.57199457,52.23875714,486.7244614,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 17:00,26157404,3597.512,647.0429,465.08768,52.1313,44036.715,2104.8254,505.7942,1163.617,8.976452,52.1313,505.7942,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 18:00,26161106,3597.512,462.7787,455.32227,51.719654,45685.92,2094.9385,539.5804,645.8895,4.7784576,51.719654,539.5804,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 19:00,26162006,3597.512,235.11867,401.36337,1.1346103,45442.992,2081.24,529.5611,611.2656,4.0188212,1.1346103,529.5611,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 20:00,26166820,3597.512,123.3258685,392.449355,0.619165625,44366.436,1691.70775,483.74013,307.8507135,2.5002608,0.619165625,483.74013,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 21:00,26171634,3597.512,11.533067,383.53534,0.10372095,43289.88,1302.1755,437.91916,4.435827,0.9817004,0.10372095,437.91916,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 22:00,26174710.33,3597.512,10.64305938,382.0071833,0.10372095,36101.98089,1200.5631,367.8762473,4.36415,0.92501255,0.10372095,367.8762473,130901.3,73179.4,-15784.6,-201976.5
+10/30/2023 23:00,26177786.67,3597.512,9.753051767,380.4790267,0.10372095,28914.08178,1098.9507,297.8333347,4.292473,0.8683247,0.10372095,297.8333347,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 0:00,26180863,3597.512,8.86304415,378.95087,0.10372095,21726.18267,997.3383,227.790422,4.220796,0.81163685,0.10372095,227.790422,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 1:00,26183939.33,3597.512,7.973036533,377.4227133,0.10372095,14538.28356,895.7259,157.7475093,4.149119,0.754949,0.10372095,157.7475093,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 2:00,26187015.67,3597.512,7.083028917,375.8945567,0.10372095,7350.38445,794.1135,87.70459667,4.077442,0.69826115,0.10372095,87.70459667,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 3:00,26190092,3597.512,6.1930213,374.3664,0.10372095,162.48534,692.5011,17.661684,4.005765,0.6415733,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 4:00,26193972,3597.512,6.1900196,373.3166,0.10372095,369.77264,702.05505,46.26926,3.129171,0.63207877,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 5:00,26197258,3597.512,6.156824,372.53705,0.10372095,179.177,1376.4319,389.45734,2.698024,0.6281065,0.10372095,389.45734,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 6:00,26200884.67,3597.512,370.370016,405.5782667,17.6878583,15074.734,1563.804533,428.0577267,13.72781933,35.98282433,17.6878583,428.0577267,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 7:00,26204511.33,3597.512,734.583208,438.6194833,35.27199565,29970.291,1751.177167,466.6581133,24.75761467,71.33754217,35.27199565,466.6581133,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 8:00,26208138,3597.512,1098.7964,471.6607,52.856133,44865.848,1938.5498,505.2585,35.78741,106.69226,52.856133,505.2585,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 9:00,26212043.33,3597.512,1017.856203,469.4561822,52.78140933,44622.03111,1989.3955,504.6572478,1359.936698,94.89894131,52.78140933,504.6572478,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 10:00,26215948.67,3597.512,936.9160067,467.2516644,52.70668567,44378.21422,2040.2412,504.0559956,2684.085986,83.10562262,52.70668567,504.0559956,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 11:00,26219854,3597.512,855.97581,465.0471467,52.631962,44134.39733,2091.0869,503.4547433,4008.235273,71.31230393,52.631962,503.4547433,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 12:00,26223759.33,3597.512,775.0356133,462.8426289,52.55723833,43890.58044,2141.9326,502.8534911,5332.384561,59.51898524,52.55723833,502.8534911,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 13:00,26227664.67,3597.512,694.0954167,460.6381111,52.48251467,43646.76356,2192.7783,502.2522389,6656.533849,47.72566656,52.48251467,502.2522389,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 14:00,26231570,3597.512,613.15522,458.4335933,52.407791,43402.94667,2243.624,501.6509867,7980.683137,35.93234787,52.407791,501.6509867,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 15:00,26235475.33,3597.512,532.2150233,456.2290756,52.33306733,43159.12978,2294.4697,501.0497344,9304.832424,24.13902918,52.33306733,501.0497344,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 16:00,26239380.67,3597.512,451.2748267,454.0245578,52.25834367,42915.31289,2345.3154,500.4484822,10628.98171,12.34571049,52.25834367,500.4484822,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 17:00,26243286,3597.512,370.33463,451.82004,52.18362,42671.496,2396.1611,499.84723,11953.131,0.5523918,52.18362,499.84723,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 18:00,26247444,3597.512,300.1977,430.3668,51.772694,43614.496,2507.2307,565.48956,14768.21,0.17551354,51.772694,565.48956,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 19:00,26248344,3597.512,230.09535,360.33734,1.1791428,43460.8,2443.8179,557.30176,11390.23,0.15768872,1.1791428,557.30176,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 20:00,26252640.67,3597.512,155.4413372,307.5718233,0.82066885,41897.81,2027.847033,484.7603667,7593.866747,0.119324978,0.82066885,484.7603667,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 21:00,26256937.33,3597.512,80.78732447,254.8063067,0.4621949,40334.82,1611.876167,412.2189733,3797.503493,0.080961237,0.4621949,412.2189733,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 22:00,26261234,3597.512,6.1333117,202.04079,0.10372095,38771.83,1195.9053,339.67758,1.1402395,0.042597495,0.10372095,339.67758,130901.3,73179.4,-15784.6,-201976.5
+10/31/2023 23:00,26264286.8,3597.512,6.11518896,190.307346,0.10372095,31049.75245,1094.304,275.2744008,1.054792052,0.038037359,0.10372095,275.2744008,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 0:00,26267339.6,3597.512,6.09706622,178.573902,0.10372095,23327.6749,992.7027,210.8712216,0.969344604,0.033477222,0.10372095,210.8712216,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 1:00,26270392.4,3597.512,6.07894348,166.840458,0.10372095,15605.59735,891.1014,146.4680424,0.883897156,0.028917086,0.10372095,146.4680424,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 2:00,26273445.2,3597.512,6.06082074,155.107014,0.10372095,7883.5198,789.5001,82.0648632,0.798449708,0.024356949,0.10372095,82.0648632,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 3:00,26276498,3597.512,6.042698,143.37357,0.10372095,161.44225,687.8988,17.661684,0.71300226,0.019796813,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 4:00,26283318,3597.512,6.0126863,129.34538,0.10372095,264.57346,1327.5769,40.154984,3.6014733,0.015759924,0.10372095,40.154984,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 5:00,26283604,3597.512,6.009926,128.84576,0.10372095,158.1866,1327.5098,14.84055,3.554314,0.015625784,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 6:00,26287703,3597.512,63.966047,177.94362,0.401241987,10706.79995,1559.000025,138.6639125,1215.697361,0.042875411,0.401241987,138.6639125,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 7:00,26291802,3597.512,121.922168,227.04148,0.698763025,21255.4133,1790.49025,262.487275,2427.840407,0.070125037,0.698763025,262.487275,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 8:00,26295901,3597.512,179.878289,276.13934,0.996284063,31804.02665,2021.980475,386.3106375,3639.983454,0.097374664,0.996284063,386.3106375,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 9:00,26300000,3597.512,237.83441,325.2372,1.2938051,42352.64,2253.4707,510.134,4852.1265,0.12462429,1.2938051,510.134,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 10:00,26301686,3597.512,562.14984,431.84027,52.939205,41886.797,1669.588,406.69293,2.5394106,6.9907036,52.939205,406.69293,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 11:00,26306141.5,3597.512,499.137505,381.29415,52.87984075,41183.1895,1693.2509,393.7569875,3.370574125,5.250691889,52.87984075,393.7569875,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 12:00,26310597,3597.512,436.12517,330.74803,52.8204765,40479.582,1716.9138,380.821045,4.20173765,3.510680179,52.8204765,380.821045,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 13:00,26315052.5,3597.512,373.112835,280.20191,52.76111225,39775.9745,1740.5767,367.8851025,5.032901175,1.770668468,52.76111225,367.8851025,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 14:00,26319508,3597.512,310.1005,229.65579,52.701748,39072.367,1764.2396,354.94916,5.8640647,0.030656757,52.701748,354.94916,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 15:00,26323103,3597.512,335.325185,282.244635,52.45500475,40885.58575,1824.7898,401.465845,39.78783103,0.464994093,52.45500475,401.465845,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 16:00,26326698,3597.512,360.54987,334.83348,52.2082615,42698.8045,1885.34,447.98253,73.71159735,0.899331429,52.2082615,447.98253,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 17:00,26330293,3597.512,385.774555,387.422325,51.96151825,44512.02325,1945.8902,494.499215,107.6353637,1.333668764,51.96151825,494.499215,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 18:00,26333888,3597.512,410.99924,440.01117,51.714775,46325.242,2006.4404,541.0159,141.55913,1.7680061,51.714775,541.0159,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 19:00,26334788,3597.512,236.86952,388.09708,1.1292903,46051.883,2016.2732,531.10767,228.76329,1.4564309,1.1292903,531.10767,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 20:00,26338470,3597.512,160.022348,384.4216333,0.78743385,44625.23067,1782.209133,488.8398867,152.9106078,1.067123207,0.78743385,488.8398867,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 21:00,26342152,3597.512,83.175176,380.7461867,0.4455774,43198.57833,1548.145067,446.5721033,77.05792567,0.677815513,0.4455774,446.5721033,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 22:00,26345834,3597.512,6.328004,377.07074,0.10372095,41771.926,1314.081,404.30432,1.2052435,0.28850782,0.10372095,404.30432,130901.3,73179.4,-15784.6,-201976.5
+11/1/2023 23:00,26349240.8,3597.512,6.3078554,371.613202,0.10372095,33449.53996,1191.26702,326.9757928,1.09444506,0.26290196,0.10372095,326.9757928,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 0:00,26352647.6,3597.512,6.2877068,366.155664,0.10372095,25127.15393,1068.45304,249.6472656,0.98364662,0.2372961,0.10372095,249.6472656,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 1:00,26356054.4,3597.512,6.2675582,360.698126,0.10372095,16804.76789,945.63906,172.3187384,0.87284818,0.21169024,0.10372095,172.3187384,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 2:00,26359461.2,3597.512,6.2474096,355.240588,0.10372095,8482.381856,822.82508,94.9902112,0.76204974,0.18608438,0.10372095,94.9902112,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 3:00,26362868,3597.512,6.227261,349.78305,0.10372095,159.99582,700.0111,17.661684,0.6512513,0.16047852,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 4:00,26369932,3597.512,6.1905866,336.1402,0.10372095,350.64215,706.9444,46.26926,6.3107166,0.14857438,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 5:00,26370056,3597.512,6.1893725,336.3144,0.10372095,175.30962,677.94604,17.661684,6.3858004,0.14877856,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 6:00,26374503.5,3597.512,235.7295794,366.48744,13.30877321,10683.73422,850.61908,114.8130805,5.70100245,11.98886042,13.30877321,114.8130805,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 7:00,26378951,3597.512,465.2697863,396.66048,26.51382547,21192.15881,1023.29212,211.964477,5.0162045,23.82894228,26.51382547,211.964477,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 8:00,26383398.5,3597.512,694.8099931,426.83352,39.71887774,31700.58341,1195.96516,309.1158735,4.33140655,35.66902414,39.71887774,309.1158735,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 9:00,26387846,3597.512,924.3502,457.00656,52.92393,42209.008,1368.6382,406.26727,3.6466086,47.509106,52.92393,406.26727,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 10:00,26388312,3597.512,902.9476,455.6361,52.93149,42427.562,566.7537,395.20615,2.4333527,43.65063,52.93149,395.20615,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 11:00,26392208,3597.512,604.0704768,428.9314833,35.32223365,40972.57267,752.3478,366.4154,1.938209067,29.17544454,35.32223365,366.4154,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 12:00,26396104,3597.512,305.1933535,402.2268667,17.7129773,39517.58333,937.9419,337.62465,1.443065433,14.70025908,17.7129773,337.62465,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 13:00,26400000,3597.512,6.3162303,375.52225,0.10372095,38062.594,1123.536,308.8339,0.9479218,0.22507362,0.10372095,308.8339,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 14:00,26403519.33,3597.512,181.2894869,392.12192,17.7390563,38787.52267,1197.410633,324.0102667,1.8699385,0.95960908,17.7390563,324.0102667,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 15:00,26407038.67,3597.512,356.2627434,408.72159,35.37439165,39512.45133,1271.285267,339.1866333,2.7919552,1.69414454,35.37439165,339.1866333,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 16:00,26410558,3597.512,531.236,425.32126,53.009727,40237.38,1345.1599,354.363,3.7139719,2.42868,53.009727,354.363,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 17:00,26415441,3597.512,580.922075,431.83218,52.3493035,43582.9985,1672.46235,447.18162,47.75786595,9.5047575,52.3493035,447.18162,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 18:00,26420324,3597.512,630.60815,438.3431,51.68888,46928.617,1999.7648,540.00024,91.80176,16.580835,51.68888,540.00024,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 19:00,26421224,3597.512,240.17279,385.6851,1.1079867,46644.504,1981.0919,529.459,65.98385,13.852651,1.1079867,529.459,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 20:00,26426150,3597.512,123.6185895,381.33509,0.605853825,45051.875,1753.8582,483.68998,35.016938,10.2443085,0.605853825,483.68998,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 21:00,26431076,3597.512,7.064389,376.98508,0.10372095,43459.246,1526.6245,437.92096,4.050026,6.635966,0.10372095,437.92096,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 22:00,26434696,3597.512,6.725993,376.50014,0.10372095,40637.583,1348.03895,366.71783,2.63501095,6.441332,0.10372095,366.71783,130901.3,73179.4,-15784.6,-201976.5
+11/2/2023 23:00,26438316,3597.512,6.387597,376.0152,0.10372095,37815.92,1169.4534,295.5147,1.2199959,6.246698,0.10372095,295.5147,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 0:00,26441048,3597.512,6.369381,375.8254175,0.10372095,28402.66044,1070.441725,226.051446,1.10549165,6.227943625,0.10372095,226.051446,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 1:00,26443780,3597.512,6.351165,375.635635,0.10372095,18989.40088,971.43005,156.588192,0.9909874,6.20918925,0.10372095,156.588192,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 2:00,26446512,3597.512,6.332949,375.4458525,0.10372095,9576.14132,872.418375,87.124938,0.87648315,6.190434875,0.10372095,87.124938,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 3:00,26449244,3597.512,6.314733,375.25607,0.10372095,162.88176,773.4067,17.661684,0.7619789,6.1716805,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 4:00,26453128,3597.512,6.3108563,375.03183,0.10372095,1279.3182,845.7787,46.26926,106.120636,6.168064,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 5:00,26456446,3597.512,6.275189,374.8526,0.10372095,1484.2633,1237.9565,95.10971,289.91245,6.1698337,0.10372095,95.10971,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 6:00,26461649,3597.512,954.6788945,440.32242,26.47027748,23897.20765,1407.30835,324.912405,149.213833,272.7408919,26.47027748,324.912405,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 7:00,26466852,3597.512,1903.0826,505.79224,52.836834,46310.152,1576.6602,554.7151,8.515216,539.31195,52.836834,554.7151,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 8:00,26467752,3597.512,1701.8099,497.49988,52.8619,45749.066,1451.2054,496.87018,7.0574055,411.0992,52.8619,496.87018,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 9:00,26473254,3597.512,966.42566,455.0699,52.912884,42742.363,1266.2992,409.49042,3.9533243,62.19448,52.912884,409.49042,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 10:00,26474478,3597.512,870.1647,448.87268,52.922665,44400.35,1370.9868,1198.1624,2.875371,42.190086,52.922665,1198.1624,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 11:00,26478643.67,3597.512,792.0787633,449.3093717,52.79035467,44012.23767,1453.815383,1065.936063,19.40369417,35.2504283,52.79035467,1065.936063,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 12:00,26482809.33,3597.512,713.9928267,449.7460633,52.65804433,43624.12533,1536.643967,933.7097267,35.93201733,28.3107706,52.65804433,933.7097267,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 13:00,26486975,3597.512,635.90689,450.182755,52.525734,43236.013,1619.47255,801.48339,52.4603405,21.3711129,52.525734,801.48339,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 14:00,26491140.67,3597.512,557.8209533,450.6194467,52.39342367,42847.90067,1702.301133,669.2570533,68.98866367,14.4314552,52.39342367,669.2570533,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 15:00,26495306.33,3597.512,479.7350167,451.0561383,52.26111333,42459.78833,1785.129717,537.0307167,85.51698683,7.4917975,52.26111333,537.0307167,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 16:00,26499472,3597.512,401.64908,451.49283,52.128803,42071.676,1867.9583,404.80438,102.04531,0.5521398,52.128803,404.80438,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 17:00,26500000,3597.512,6.3140063,375.20554,0.10372095,242.98956,795.63635,46.26926,0.7261603,6.1705775,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 18:00,26506722,3597.512,238.21284,397.3057,1.0917765,46885.56,2041.327,539.5413,267.35388,2.10902,1.0917765,539.5413,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 19:00,26510090.67,3597.512,168.354574,392.0561467,0.76242465,46019.85267,1799.254067,512.0600333,179.3530248,1.52501066,0.76242465,512.0600333,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 20:00,26513459.33,3597.512,98.496308,386.8065933,0.4330728,45154.14533,1557.181133,484.5787667,91.35216953,0.94100132,0.4330728,484.5787667,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 21:00,26516828,3597.512,28.638042,381.55704,0.10372095,44288.438,1315.1082,457.0975,3.3513143,0.35699198,0.10372095,457.0975,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 22:00,26519971,3597.512,24.9155185,378.3036467,0.10372095,36934.20357,1211.811307,383.8581973,3.282920117,0.326052507,0.10372095,383.8581973,130901.3,73179.4,-15784.6,-201976.5
+11/3/2023 23:00,26523114,3597.512,21.192995,375.0502533,0.10372095,29579.96914,1108.514413,310.6188947,3.214525933,0.295113033,0.10372095,310.6188947,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 0:00,26526257,3597.512,17.4704715,371.79686,0.10372095,22225.73471,1005.21752,237.379592,3.14613175,0.26417356,0.10372095,237.379592,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 1:00,26529400,3597.512,13.747948,368.5434667,0.10372095,14871.50028,901.9206267,164.1402893,3.077737567,0.233234087,0.10372095,164.1402893,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 2:00,26532543,3597.512,10.0254245,365.2900733,0.10372095,7517.26585,798.6237333,90.90098667,3.009343383,0.202294613,0.10372095,90.90098667,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 3:00,26535686,3597.512,6.302901,362.03668,0.10372095,163.03142,695.32684,17.661684,2.9409492,0.17135514,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 4:00,26542714,3597.512,6.2649446,348.02304,0.10372095,286.39755,689.82043,46.26926,2.2408803,0.15899767,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 5:00,26543614,3597.512,6.2545953,346.70273,0.10372095,4390.708,658.0667,17.661684,1.9722117,0.1579292,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 6:00,26548204,3597.512,6.2270103,341.3307,0.10372095,37113.49,1168.0537,259.5778,1.7916436,0.15364595,0.10372095,259.5778,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 7:00,26551903.71,3597.512,6.226941736,341.2166429,0.10372095,37069.055,1205.024343,260.7297214,2.005608414,0.153556124,0.10372095,260.7297214,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 8:00,26555603.43,3597.512,6.226873171,341.1025857,0.10372095,37024.62,1241.994986,261.8816429,2.219573229,0.153466297,0.10372095,261.8816429,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 9:00,26559303.14,3597.512,6.226804607,340.9885286,0.10372095,36980.185,1278.965629,263.0335643,2.433538043,0.153376471,0.10372095,263.0335643,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 10:00,26563002.86,3597.512,6.226736043,340.8744714,0.10372095,36935.75,1315.936271,264.1854857,2.647502857,0.153286644,0.10372095,264.1854857,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 11:00,26566702.57,3597.512,6.226667479,340.7604143,0.10372095,36891.315,1352.906914,265.3374071,2.861467671,0.153196818,0.10372095,265.3374071,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 12:00,26570402.29,3597.512,6.226598914,340.6463571,0.10372095,36846.88,1389.877557,266.4893286,3.075432486,0.153106991,0.10372095,266.4893286,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 13:00,26574102,3597.512,6.22653035,340.5323,0.10372095,36802.445,1426.8482,267.64125,3.2893973,0.153017165,0.10372095,267.64125,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 14:00,26577801.71,3597.512,6.226461786,340.4182429,0.10372095,36758.01,1463.818843,268.7931714,3.503362114,0.152927339,0.10372095,268.7931714,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 15:00,26581501.43,3597.512,6.226393221,340.3041857,0.10372095,36713.575,1500.789486,269.9450929,3.717326929,0.152837512,0.10372095,269.9450929,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 16:00,26585201.14,3597.512,6.226324657,340.1901286,0.10372095,36669.14,1537.760129,271.0970143,3.931291743,0.152747686,0.10372095,271.0970143,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 17:00,26588900.86,3597.512,6.226256093,340.0760714,0.10372095,36624.705,1574.730771,272.2489357,4.145256557,0.152657859,0.10372095,272.2489357,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 18:00,26592600.57,3597.512,6.226187529,339.9620143,0.10372095,36580.27,1611.701414,273.4008571,4.359221371,0.152568033,0.10372095,273.4008571,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 19:00,26596300.29,3597.512,6.226118964,339.8479571,0.10372095,36535.835,1648.672057,274.5527786,4.573186186,0.152478206,0.10372095,274.5527786,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 20:00,26600000,3597.512,6.2260504,339.7339,0.10372095,36491.4,1685.6427,275.7047,4.787151,0.15238838,0.10372095,275.7047,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 21:00,26603679.33,3597.512,6.227811933,335.1694667,0.10372095,37065.41267,1603.294133,296.6811667,3.873475667,0.149707187,0.10372095,296.6811667,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 22:00,26607358.67,3597.512,6.229573467,330.6050333,0.10372095,37639.42533,1520.945567,317.6576333,2.959800333,0.147025993,0.10372095,317.6576333,130901.3,73179.4,-15784.6,-201976.5
+11/4/2023 23:00,26611038,3597.512,6.231335,326.0406,0.10372095,38213.438,1438.597,338.6341,2.046125,0.1443448,0.10372095,338.6341,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 0:00,26613827.5,3597.512,6.21274615,325.849655,0.10372095,28699.68109,1270.75705,258.390996,1.785817075,0.144316805,0.10372095,258.390996,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 1:00,26616617,3597.512,6.1941573,325.65871,0.10372095,19185.92419,1102.9171,178.147892,1.52550915,0.14428881,0.10372095,178.147892,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 2:00,26619406.5,3597.512,6.17556845,325.467765,0.10372095,9672.167277,935.07715,97.904788,1.265201225,0.144260815,0.10372095,97.904788,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 3:00,26622196,3597.512,6.1569796,325.27682,0.10372095,158.41037,767.2372,17.661684,1.0048933,0.14423282,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 4:00,26627352,3597.512,6.121805,324.95648,0.10372095,155.60481,1434.5966,14.84055,13.379435,0.1441906,0.10372095,14.84055,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 5:00,26630883.33,3597.512,6.140618,324.7714178,0.10372095,4374.879831,1563.418422,63.73452222,3536.506164,0.144168382,0.10372095,63.73452222,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 6:00,26634414.67,3597.512,6.159431,324.5863556,0.10372095,8594.154852,1692.240244,112.6284944,7059.632894,0.144146164,0.10372095,112.6284944,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 7:00,26637946,3597.512,6.178244,324.4012933,0.10372095,12813.42987,1821.062067,161.5224667,10582.75962,0.144123947,0.10372095,161.5224667,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 8:00,26641477.33,3597.512,6.197057,324.2162311,0.10372095,17032.70489,1949.883889,210.4164389,14105.88635,0.144101729,0.10372095,210.4164389,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 9:00,26645008.67,3597.512,6.21587,324.0311689,0.10372095,21251.97992,2078.705711,259.3104111,17629.01308,0.144079511,0.10372095,259.3104111,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 10:00,26648540,3597.512,6.234683,323.8461067,0.10372095,25471.25494,2207.527533,308.2043833,21152.13981,0.144057293,0.10372095,308.2043833,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 11:00,26652071.33,3597.512,6.253496,323.6610444,0.10372095,29690.52996,2336.349356,357.0983556,24675.26654,0.144035076,0.10372095,357.0983556,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 12:00,26655602.67,3597.512,6.272309,323.4759822,0.10372095,33909.80498,2465.171178,405.9923278,28198.39327,0.144012858,0.10372095,405.9923278,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 13:00,26659134,3597.512,6.291122,323.29092,0.10372095,38129.08,2593.993,454.8863,31721.52,0.14399064,0.10372095,454.8863,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 14:00,26663798,3597.512,6.261673,323.08096,0.10372095,36581.742,2368.0232,399.63544,16517.525,0.14396636,0.10372095,399.63544,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 15:00,26667480.5,3597.512,6.240439375,322.9334725,0.10372095,36743.77425,2207.76825,389.2903663,14452.96552,0.143949321,0.10372095,389.2903663,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 16:00,26671163,3597.512,6.21920575,322.785985,0.10372095,36905.8065,2047.5133,378.9452925,12388.40604,0.143932282,0.10372095,378.9452925,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 17:00,26674845.5,3597.512,6.197972125,322.6384975,0.10372095,37067.83875,1887.25835,368.6002188,10323.84657,0.143915244,0.10372095,368.6002188,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 18:00,26678528,3597.512,6.1767385,322.49101,0.10372095,37229.871,1727.0034,358.255145,8259.287088,0.143898205,0.10372095,358.255145,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 19:00,26682210.5,3597.512,6.155504875,322.3435225,0.10372095,37391.90325,1566.74845,347.9100713,6194.72761,0.143881166,0.10372095,347.9100713,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 20:00,26685893,3597.512,6.13427125,322.196035,0.10372095,37553.9355,1406.4935,337.5649975,4130.168132,0.143864128,0.10372095,337.5649975,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 21:00,26689575.5,3597.512,6.113037625,322.0485475,0.10372095,37715.96775,1246.23855,327.2199238,2065.608654,0.143847089,0.10372095,327.2199238,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 22:00,26693258,3597.512,6.091804,321.90106,0.10372095,37878,1085.9836,316.87485,1.0491761,0.14383005,0.10372095,316.87485,130901.3,73179.4,-15784.6,-201976.5
+11/5/2023 23:00,26696629,3597.512,6.20882985,322.807815,0.10372095,40341.156,1690.3238,405.928485,3498.608588,0.14393496,0.10372095,405.928485,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 0:00,26700000,3597.512,6.3258557,323.71457,0.10372095,42804.312,2294.664,494.98212,6996.168,0.14403987,0.10372095,494.98212,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 1:00,26703031,3597.512,6.248509025,323.0990275,0.10372095,32143.24311,1877.258118,375.652011,5247.307648,0.143968485,0.10372095,375.652011,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 2:00,26706062,3597.512,6.17116235,322.483485,0.10372095,21482.17423,1459.852235,256.321902,3498.447296,0.1438971,0.10372095,256.321902,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 3:00,26709093,3597.512,6.093815675,321.8679425,0.10372095,10821.10534,1042.446353,136.991793,1749.586944,0.143825715,0.10372095,136.991793,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 4:00,26712124,3597.512,6.016469,321.2524,0.10372095,160.03645,625.04047,17.661684,0.72659135,0.14375433,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 5:00,26716936,3597.512,6.30387,321.0979,0.10372095,270.82892,1343.6791,40.154984,3.331681,0.14373615,0.10372095,40.154984,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 6:00,26719976,3597.512,99.499855,248.56148,50.506348,3479.738,1431.65,17.169975,9.488582,0.047462672,50.506348,17.169975,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 7:00,26723787.54,3597.512,141.0560562,262.7875154,50.59956454,6778.43,1487.980769,59.06570385,117.039168,1.589965005,50.59956454,59.06570385,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 8:00,26727599.08,3597.512,182.6122573,277.0135508,50.69278108,10077.122,1544.311538,100.9614327,224.589754,3.132467338,50.69278108,100.9614327,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 9:00,26731410.62,3597.512,224.1684585,291.2395862,50.78599762,13375.814,1600.642308,142.8571615,332.14034,4.674969671,50.78599762,142.8571615,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 10:00,26735222.15,3597.512,265.7246596,305.4656215,50.87921415,16674.506,1656.973077,184.7528904,439.690926,6.217472004,50.87921415,184.7528904,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 11:00,26739033.69,3597.512,307.2808608,319.6916569,50.97243069,19973.198,1713.303846,226.6486192,547.241512,7.759974337,50.97243069,226.6486192,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 12:00,26742845.23,3597.512,348.8370619,333.9176923,51.06564723,23271.89,1769.634615,268.5443481,654.792098,9.30247667,51.06564723,268.5443481,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 13:00,26746656.77,3597.512,390.3932631,348.1437277,51.15886377,26570.582,1825.965385,310.4400769,762.342684,10.844979,51.15886377,310.4400769,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 14:00,26750468.31,3597.512,431.9494642,362.3697631,51.25208031,29869.274,1882.296154,352.3358058,869.89327,12.38748134,51.25208031,352.3358058,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 15:00,26754279.85,3597.512,473.5056654,376.5957985,51.34529685,33167.966,1938.626923,394.2315346,977.443856,13.92998367,51.34529685,394.2315346,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 16:00,26758091.38,3597.512,515.0618665,390.8218338,51.43851338,36466.658,1994.957692,436.1272635,1084.994442,15.472486,51.43851338,436.1272635,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 17:00,26761902.92,3597.512,556.6180677,405.0478692,51.53172992,39765.35,2051.288462,478.0229923,1192.545028,17.01498833,51.53172992,478.0229923,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 18:00,26765714.46,3597.512,598.1742688,419.2739046,51.62494646,43064.042,2107.619231,519.9187212,1300.095614,18.55749067,51.62494646,519.9187212,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 19:00,26769526,3597.512,639.73047,433.49994,51.718163,46362.734,2163.95,561.81445,1407.6462,20.099993,51.718163,561.81445,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 20:00,26770426,3597.512,237.794,380.76593,1.1353381,46073.54,2134.263,552.0157,1111.7498,16.804638,1.1353381,552.0157,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 21:00,26775244,3597.512,124.304317,376.658215,0.619529525,45081.4165,1731.4847,503.82897,556.38206,12.672814,0.619529525,503.82897,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 22:00,26780062,3597.512,10.814634,372.5505,0.10372095,44089.293,1328.7064,455.64224,1.01432,8.54099,0.10372095,455.64224,130901.3,73179.4,-15784.6,-201976.5
+11/6/2023 23:00,26780564,3597.512,6.337801,372.47516,0.10372095,43660.19,1300.7743,442.9577,0.97298914,8.480561,0.10372095,442.9577,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 0:00,26787436,3597.512,6.30832,371.94092,0.10372095,38255.492,1096.0542,346.6943,0.7068691,8.124725,0.10372095,346.6943,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 1:00,26788336,3597.512,6.2991586,371.90536,0.10372095,33554.453,955.48535,215.72676,0.6841485,8.109914,0.10372095,215.72676,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 2:00,26792224,3597.512,183.0652724,388.1667233,17.79030063,35536.672,1276.977933,268.71274,227.3077657,6.794635567,17.79030063,268.71274,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 3:00,26796112,3597.512,359.8313862,404.4280867,35.47688032,37518.891,1598.470517,321.69872,453.9313828,5.479357133,35.47688032,321.69872,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 4:00,26800000,3597.512,536.5975,420.68945,53.16346,39501.11,1919.9631,374.6847,680.555,4.1640787,53.16346,374.6847,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 5:00,26802822,3597.512,271.3990485,396.089075,26.63359048,20301.38555,1639.8913,207.419842,412.088015,6.11050835,26.63359048,207.419842,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 6:00,26805644,3597.512,6.200597,371.4887,0.10372095,1101.6611,1359.8195,40.154984,143.62103,8.056938,0.10372095,40.154984,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 7:00,26812726,3597.512,2483.111,506.84183,52.752377,47382.855,2061.7358,608.28253,37.439964,652.8256,52.752377,608.28253,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 8:00,26813626,3597.512,2388.3882,508.53098,52.818832,47073.504,2006.0934,558.4932,30.461308,684.4859,52.818832,558.4932,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 9:00,26816572,3597.512,1721.9207,491.61813,52.905685,46130.504,1516.2437,517.43,16.34808,401.38947,52.905685,517.43,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 10:00,26823428,3597.512,1116.985,456.86734,52.956303,42957.895,1379.7594,415.58078,14.371405,90.979675,52.956303,415.58078,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 11:00,26825341,3597.512,998.738165,448.97061,53.2784825,43535.3695,1349.74675,430.150725,14.1886365,62.413324,53.2784825,430.150725,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 12:00,26827254,3597.512,880.49133,441.07388,53.600662,44112.844,1319.7341,444.72067,14.005868,33.846973,53.600662,444.72067,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 13:00,26832595,3597.512,730.344115,432.06018,53.1540585,42068.447,1563.17795,402.99295,20.781554,20.75474315,53.1540585,402.99295,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 14:00,26837936,3597.512,580.1969,423.04648,52.707455,40024.05,1806.6218,361.26523,27.55724,7.6625133,52.707455,361.26523,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 15:00,26840676,3597.512,617.864075,424.47474,52.57126725,40756.4125,1705.25105,374.8541725,24.240078,9.432986725,52.57126725,374.8541725,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 16:00,26843416,3597.512,655.53125,425.903,52.4350795,41488.775,1603.8803,388.443115,20.922916,11.20346015,52.4350795,388.443115,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 17:00,26846156,3597.512,693.198425,427.33126,52.29889175,42221.1375,1502.50955,402.0320575,17.605754,12.97393358,52.29889175,402.0320575,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 18:00,26848896,3597.512,730.8656,428.75952,52.162704,42953.5,1401.1388,415.621,14.288592,14.744407,52.162704,415.621,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 19:00,26855928,3597.512,686.1583,433.09222,51.690144,47585.98,2094.1375,554.2335,412.6354,22.33967,51.690144,554.2335,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 20:00,26856828,3597.512,241.79097,380.29758,1.1099142,47152.17,2089.216,544.9117,444.4207,18.680696,1.1099142,544.9117,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 21:00,26861766,3597.512,124.3146453,376.20914,0.606817575,45634.925,1848.0887,497.67721,229.6539505,14.199185,0.606817575,497.67721,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 22:00,26866704,3597.512,6.8383207,372.1207,0.10372095,44117.68,1606.9614,450.44272,14.887201,9.717674,0.10372095,450.44272,130901.3,73179.4,-15784.6,-201976.5
+11/7/2023 23:00,26866976,3597.512,6.446688,372.08438,0.10372095,43885.266,1586.7012,443.56705,14.839531,9.685062,0.10372095,443.56705,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 0:00,26873824,3597.512,6.4150295,371.6252,0.10372095,38457.99,1251.8191,346.56506,1.1415689,9.331014,0.10372095,346.56506,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 1:00,26874724,3597.512,6.4055033,371.59695,0.10372095,33866.668,1106.5559,217.91422,1.0979216,9.316816,0.10372095,217.91422,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 2:00,26878100,3597.512,6.383819767,371.5291333,0.10372095,22632.16486,1001.14178,151.1633747,1.00269005,9.300615333,0.10372095,151.1633747,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 3:00,26881476,3597.512,6.362136233,371.4613167,0.10372095,11397.66171,895.72766,84.41252933,0.9074585,9.284414667,0.10372095,84.41252933,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 4:00,26884852,3597.512,6.3404527,371.3935,0.10372095,163.15857,790.31354,17.661684,0.81222695,9.268214,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 5:00,26891948,3597.512,6.3007703,371.2852,0.10372095,466.64014,836.1646,46.26926,18.985,9.265192,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 6:00,26892052,3597.512,6.3006477,371.28748,0.10372095,175.86409,807.2918,17.661684,19.30772,9.268977,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 7:00,26895682,3597.512,1289.9683,456.07336,50.506348,36749.85,1063.9745,296.76724,12.223143,105.3531,50.506348,296.76724,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 8:00,26900000,3597.512,833.3401,434.22067,52.164867,45941.266,1442.9178,590.1299,13.912242,23.335579,52.164867,590.1299,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 9:00,26903430.67,3597.512,886.8234333,438.55723,52.43430467,44992.77633,1443.6879,532.8646867,13.11046633,34.63320667,52.43430467,532.8646867,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 10:00,26906861.33,3597.512,940.3067667,442.89379,52.70374233,44044.28667,1444.458,475.5994733,12.30869067,45.93083433,52.70374233,475.5994733,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 11:00,26910292,3597.512,993.7901,447.23035,52.97318,43095.797,1445.2281,418.33426,11.506915,57.228462,52.97318,418.33426,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 12:00,26914472.5,3597.512,890.198675,440.5974225,52.899823,42473.709,1367.084,403.6477275,11.32921213,44.63099925,52.899823,403.6477275,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 13:00,26918653,3597.512,786.60725,433.964495,52.826466,41851.621,1288.9399,388.961195,11.15150925,32.0335365,52.826466,388.961195,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 14:00,26922833.5,3597.512,683.015825,427.3315675,52.753109,41229.533,1210.7958,374.2746625,10.97380637,19.43607375,52.753109,374.2746625,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 15:00,26927014,3597.512,579.4244,420.69864,52.679752,40607.445,1132.6517,359.58813,10.7961035,6.838611,52.679752,359.58813,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 16:00,26928906,3597.512,565.6737,419.05777,52.764103,40794.96,512.38544,347.6964,10.1239395,5.5187798,52.764103,347.6964,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 17:00,26933378,3597.512,589.9546333,422.25412,52.40787633,42943.79767,1057.966093,416.52288,331.2264597,9.3973522,52.40787633,416.52288,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 18:00,26937850,3597.512,614.2355667,425.45047,52.05164967,45092.63533,1603.546747,485.34936,652.3289798,13.2759246,52.05164967,485.34936,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 19:00,26942322,3597.512,638.5165,428.64682,51.695423,47241.473,2149.1274,554.17584,973.4315,17.154497,51.695423,554.17584,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 20:00,26943222,3597.512,241.58437,376.0152,1.1145436,46847.45,2143.5266,546.4744,1000.22363,14.320118,1.1145436,546.4744,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 21:00,26948157,3597.512,124.2554615,371.92447,0.609132275,45529.147,1844.10945,499.33147,505.9750655,10.59683565,0.609132275,499.33147,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 22:00,26953092,3597.512,6.926553,367.83374,0.10372095,44210.844,1544.6923,452.18854,11.726501,6.8735533,0.10372095,452.18854,130901.3,73179.4,-15784.6,-201976.5
+11/8/2023 23:00,26953372,3597.512,6.435889,367.7916,0.10372095,43969.613,1522.4963,445.05197,11.675997,6.8415375,0.10372095,445.05197,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 0:00,26960228,3597.512,6.404529,367.2673,0.10372095,38535.582,1214.421,347.61746,1.010896,6.4829555,0.10372095,347.61746,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 1:00,26961128,3597.512,6.3950496,367.2364,0.10372095,33878.82,1068.8293,217.69804,0.9730155,6.4668703,0.10372095,217.69804,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 2:00,26964500.67,3597.512,6.3735579,367.1713733,0.10372095,22640.29525,964.5837667,151.0192547,0.88886675,6.446808967,0.10372095,151.0192547,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 3:00,26967873.33,3597.512,6.3520662,367.1063467,0.10372095,11401.77049,860.3382333,84.34046933,0.804718,6.426747633,0.10372095,84.34046933,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 4:00,26971246,3597.512,6.3305745,367.04132,0.10372095,163.24574,756.0927,17.661684,0.72056925,6.4066863,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 5:00,26978354,3597.512,6.2912445,366.9534,0.10372095,537.1497,808.13904,46.26926,32.6985,6.4019713,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 6:00,26978454,3597.512,6.2911353,366.9561,0.10372095,177.11826,779.38477,17.661684,33.30946,6.4050264,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 7:00,26982084,3597.512,1195.4161,451.63907,50.506348,36853.45,1037.8466,298.36447,21.882915,88.66728,50.506348,298.36447,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 8:00,26985728,3597.512,1796.3827,481.89795,52.672794,47643.227,1916.7767,609.7441,68.17152,310.83545,52.672794,609.7441,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 9:00,26991394,3597.512,1193.3992,459.31744,53.016182,45066.72,1167.6371,479.16428,0.84573114,116.09407,53.016182,479.16428,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 10:00,26994000,3597.512,1012.8336,448.19865,53.004957,44083.75,1116.3733,448.924075,0.79411757,73.802264,53.004957,448.924075,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 11:00,26996606,3597.512,832.268,437.07986,52.993732,43100.78,1065.1095,418.68387,0.742504,31.510458,52.993732,418.68387,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 12:00,27000000,3597.512,203.70876,369.0609,0.68963766,46267.207,1973.1251,517.37445,48.394176,7.385951,0.68963766,517.37445,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 13:00,27004792.67,3597.512,272.7484267,382.0817167,18.03144944,44270.91533,1802.8584,466.5519333,33.01297443,5.088115813,18.03144944,466.5519333,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 14:00,27009585.33,3597.512,341.7880933,395.1025333,35.37326122,42274.62367,1632.5917,415.7294167,17.63177287,2.790280627,35.37326122,415.7294167,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 15:00,27014378,3597.512,410.82776,408.12335,52.715073,40278.332,1462.325,364.9069,2.2505713,0.49244544,52.715073,364.9069,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 16:00,27014528,3597.512,411.60583,408.14188,52.716736,40299.473,1451.9725,365.11234,2.2044826,0.49602807,52.716736,365.11234,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 17:00,27019256.67,3597.512,457.9280367,412.42913,52.37787267,42803.78867,1587.3701,430.69965,12.47034673,3.346828547,52.37787267,430.69965,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 18:00,27023985.33,3597.512,504.2502433,416.71638,52.03900933,45308.10433,1722.7677,496.28696,22.73621087,6.197629023,52.03900933,496.28696,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 19:00,27028714,3597.512,550.57245,421.00363,51.700146,47812.42,1858.1653,561.87427,33.002075,9.0484295,51.700146,561.87427,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 20:00,27029614,3597.512,241.44156,368.7924,1.1183207,47555.15,1837.735,550.7427,17.046593,7.5482707,1.1183207,550.7427,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 21:00,27033505,3597.512,192.671015,365.21965,0.687396675,46864.955,1571.8951,528.57832,9.10028345,5.3089123,0.687396675,528.57832,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 22:00,27037396,3597.512,143.90047,361.6469,0.25647265,46174.76,1306.0552,506.41394,1.1539739,3.0695539,0.25647265,506.41394,130901.3,73179.4,-15784.6,-201976.5
+11/9/2023 23:00,27040773,3597.512,120.9712697,361.3575133,0.231014033,38506.18622,1189.7218,424.9552307,1.064245617,2.930154283,0.231014033,424.9552307,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 0:00,27044150,3597.512,98.04206943,361.0681267,0.205555417,30837.61243,1073.3884,343.4965213,0.974517333,2.790754667,0.205555417,343.4965213,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 1:00,27047527,3597.512,75.11286915,360.77874,0.1800968,23169.03865,957.055,262.037812,0.88478905,2.65135505,0.1800968,262.037812,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 2:00,27050904,3597.512,52.18366887,360.4893533,0.154638183,15500.46487,840.7216,180.5791027,0.795060767,2.511955433,0.154638183,180.5791027,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 3:00,27054281,3597.512,29.25446858,360.1999667,0.129179567,7831.891083,724.3882,99.12039333,0.705332483,2.372555817,0.129179567,99.12039333,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 4:00,27057658,3597.512,6.3252683,359.91058,0.10372095,163.3173,608.0548,17.661684,0.6156042,2.2331562,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 5:00,27064742,3597.512,6.2861376,359.8213,0.10372095,413.41904,760.771,46.26926,11.522196,2.2204475,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 6:00,27065642,3597.512,83.7389,212.87865,50.506348,4117.637,726.8973,17.661684,9.758075,0.032123514,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 7:00,27070068,3597.512,1232.1259,456.29404,50.653687,45053.734,1504.7188,432.05054,7.6848416,116.843124,50.653687,432.05054,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 8:00,27073809.5,3597.512,1078.905642,444.2671425,44.33494124,39524.47702,1398.881863,380.251933,6.815262468,102.5235842,44.33494124,380.251933,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 9:00,27077551,3597.512,925.6853848,432.240245,38.01619549,33995.22004,1293.044925,328.453326,5.945683335,88.20404448,38.01619549,328.453326,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 10:00,27081292.5,3597.512,772.4651271,420.2133475,31.69744973,28465.96306,1187.207988,276.654719,5.076104203,73.88450471,31.69744973,276.654719,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 11:00,27085034,3597.512,619.2448695,408.18645,25.37870398,22936.70608,1081.37105,224.856112,4.20652507,59.56496495,25.37870398,224.856112,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 12:00,27088775.5,3597.512,466.0246119,396.1595525,19.05995822,17407.4491,975.5341125,173.057505,3.336945938,45.24542519,19.05995822,173.057505,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 13:00,27092517,3597.512,312.8043543,384.132655,12.74121246,11878.19212,869.697175,121.258898,2.467366805,30.92588543,12.74121246,121.258898,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 14:00,27096258.5,3597.512,159.5840966,372.1057575,6.422466706,6348.93514,763.8602375,69.460291,1.597787673,16.60634566,6.422466706,69.460291,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 15:00,27100000,3597.512,6.363839,360.07886,0.10372095,819.67816,658.0233,17.661684,0.72820854,2.2868059,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 16:00,27103786,3597.512,64.70649675,363.8852625,0.352394638,12500.61012,1023.610175,154.253923,155.7650564,5.652328425,0.352394638,154.253923,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 17:00,27107572,3597.512,123.0491545,367.691665,0.601068325,24181.54208,1389.19705,290.846162,310.8019043,9.01785095,0.601068325,290.846162,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 18:00,27111358,3597.512,181.3918123,371.4980675,0.849742013,35862.47404,1754.783925,427.438401,465.8387521,12.38337348,0.849742013,427.438401,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 19:00,27115144,3597.512,239.73447,375.30447,1.0984157,47543.406,2120.3708,564.03064,620.8756,15.748896,1.0984157,564.03064,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 20:00,27118644.67,3597.512,163.6326853,371.8347233,0.766850783,46572.53733,1873.673067,530.9974067,416.082213,12.4679145,0.766850783,530.9974067,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 21:00,27122145.33,3597.512,87.53090067,368.3649767,0.435285867,45601.66867,1626.975333,497.9641733,211.288826,9.186933,0.435285867,497.9641733,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 22:00,27125646,3597.512,11.429116,364.89523,0.10372095,44630.8,1380.2776,464.93094,6.495439,5.9059515,0.10372095,464.93094,130901.3,73179.4,-15784.6,-201976.5
+11/10/2023 23:00,27126272,3597.512,6.424629,364.79648,0.10372095,44081.06,1344.425,448.00623,6.444733,5.835266,0.10372095,448.00623,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 0:00,27132928,3597.512,6.3945565,364.27643,0.10372095,38778.47,1033.646,353.2068,0.7169238,5.4908137,0.10372095,353.2068,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 1:00,27133828,3597.512,6.385274,364.24548,0.10372095,35115.938,904.0333,239.61455,0.69200665,5.4736195,0.10372095,239.61455,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 2:00,27137232.67,3597.512,6.363569133,364.1874867,0.10372095,23465.05609,802.56118,165.6302613,0.633947,5.451268333,0.10372095,165.6302613,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 3:00,27140637.33,3597.512,6.341864267,364.1294933,0.10372095,11814.17418,701.08906,91.64597267,0.57588735,5.428917167,0.10372095,91.64597267,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 4:00,27144042,3597.512,6.3201594,364.0715,0.10372095,163.29227,599.61694,17.661684,0.5178277,5.406566,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 5:00,27151158,3597.512,6.2812157,364.00803,0.10372095,606.5222,735.2574,46.26926,52.231236,5.4008756,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 6:00,27152058,3597.512,6.2804003,364.0007,0.10372095,4939.978,1300.4316,1095.0956,44.0339,5.4006133,0.10372095,1095.0956,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 7:00,27154992,3597.512,6.2777977,363.97726,0.10372095,37123.547,1445.2378,286.8267,37.50546,5.400044,0.10372095,286.8267,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 8:00,27161948,3597.512,6.2094765,363.92334,0.10372095,36823.19,1704.3274,332.06876,9.480266,5.3995266,0.10372095,332.06876,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 9:00,27162848,3597.512,6.209193,363.91647,0.10372095,38010.055,1510.6534,317.0079,2.2993302,5.3994966,0.10372095,317.0079,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 10:00,27168048,3597.512,6.183411,363.87708,0.10372095,44513.395,1175.09,469.392,0.7109917,5.3993797,0.10372095,469.392,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 11:00,27169488,3597.512,6.1754165,363.86624,0.10372095,44348.81,1152.3033,461.20215,0.68313295,5.399357,0.10372095,461.20215,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 12:00,27174157.33,3597.512,6.153950333,363.83166,0.10372095,43967.01267,1250.372667,449.4991333,1.025451067,5.399302733,0.10372095,449.4991333,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 13:00,27178826.67,3597.512,6.132484167,363.79708,0.10372095,43585.21533,1348.442033,437.7961167,1.367769183,5.399248467,0.10372095,437.7961167,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 14:00,27183496,3597.512,6.111018,363.7625,0.10372095,43203.418,1446.5114,426.0931,1.7100873,5.3991942,0.10372095,426.0931,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 15:00,27185761,3597.512,6.10682525,363.746025,0.10372095,43197.6425,1373.91225,423.00903,1.4771174,5.39917085,0.10372095,423.00903,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 16:00,27188026,3597.512,6.1026325,363.72955,0.10372095,43191.867,1301.3131,419.92496,1.2441475,5.3991475,0.10372095,419.92496,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 17:00,27191916,3597.512,6.350912,363.70145,0.10372095,44081.145,636.02673,360.98254,0.089105874,5.3991075,0.10372095,360.98254,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 18:00,27194672,3597.512,6.406155,363.6817,0.10372095,43868.99,747.9259,423.3765,0.13304108,5.399112,0.10372095,423.3765,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 19:00,27200000,3597.512,6.290744,364.0176,0.10372095,870.7525,759.7092,46.26926,122.520226,5.4013004,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 20:00,27204114.67,3597.512,36.11428267,365.19789,16.90459663,15033.465,1064.886167,173.1527333,82.58580923,3.64963375,16.90459663,173.1527333,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 21:00,27208229.33,3597.512,65.93782133,366.37818,33.70547232,29196.1775,1370.063133,300.0362067,42.65139247,1.8979671,33.70547232,300.0362067,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 22:00,27212344,3597.512,95.76136,367.55847,50.506348,43358.89,1675.2401,426.91968,2.7169757,0.14630045,50.506348,426.91968,130901.3,73179.4,-15784.6,-201976.5
+11/11/2023 23:00,27215543.75,3597.512,104.0890487,372.402655,50.506348,38197.48691,1585.800275,379.3383775,26.08983624,0.263385694,50.506348,379.3383775,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 0:00,27218743.5,3597.512,112.4167375,377.24684,50.506348,33036.08383,1496.36045,331.757075,49.46269678,0.380470937,50.506348,331.757075,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 1:00,27221943.25,3597.512,120.7444263,382.091025,50.506348,27874.68074,1406.920625,284.1757725,72.83555731,0.497556181,50.506348,284.1757725,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 2:00,27225143,3597.512,129.072115,386.93521,50.506348,22713.27765,1317.4808,236.59447,96.20841785,0.614641425,50.506348,236.59447,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 3:00,27228342.75,3597.512,137.3998038,391.779395,50.506348,17551.87456,1228.040975,189.0131675,119.5812784,0.731726669,50.506348,189.0131675,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 4:00,27231542.5,3597.512,145.7274925,396.62358,50.506348,12390.47147,1138.60115,141.431865,142.9541389,0.848811913,50.506348,141.431865,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 5:00,27234742.25,3597.512,154.0551813,401.467765,50.506348,7229.068388,1049.161325,93.8505625,166.3269995,0.965897156,50.506348,93.8505625,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 6:00,27237942,3597.512,162.38287,406.31195,50.506348,2067.6653,959.7215,46.26926,189.69986,1.0829824,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 7:00,27244738,3597.512,211.17888,409.0067,50.506348,37404.45,1789.1144,331.59903,52.816715,2.3216827,50.506348,331.59903,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 8:00,27245638,3597.512,204.44933,408.7023,50.506348,37032.527,1746.13,291.56393,45.801548,2.156474,50.506348,291.56393,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 9:00,27248634,3597.512,153.19678,405.71634,50.506348,37123.223,1291.6188,291.58493,31.614868,0.91438913,50.506348,291.58493,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 10:00,27255366,3597.512,68.08769,316.06757,50.506348,45693.215,1318.09,539.5503,0.92096716,0.098113745,50.506348,539.5503,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 11:00,27256062,3597.512,61.32014,287.45316,50.506348,45798.402,1264.7904,497.69022,0.9049925,0.07598097,50.506348,497.69022,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 12:00,27261786,3597.512,15.287546,99.96711,50.506348,44015.36,1769.9979,435.77002,18.040197,0.002105239,50.506348,435.77002,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 13:00,27264852.5,3597.512,13.05342025,84.4379885,37.90569124,43255.51425,1619.039025,418.86412,13.79474447,0.00186622,37.90569124,418.86412,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 14:00,27267919,3597.512,10.8192945,68.908867,25.30503448,42495.6685,1468.08015,401.95822,9.54929195,0.001627201,25.30503448,401.95822,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 15:00,27270985.5,3597.512,8.58516875,53.3797455,12.70437771,41735.82275,1317.121275,385.05232,5.303839425,0.001388181,12.70437771,385.05232,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 16:00,27274052,3597.512,6.351043,37.850624,0.10372095,40975.977,1166.1624,368.14642,1.0583869,0.001149162,0.10372095,368.14642,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 17:00,27278226.4,3597.512,17.7691728,84.4480352,10.18424636,41971.0192,1180.65878,392.23195,1.03856486,0.01386626,10.18424636,392.23195,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 18:00,27282400.8,3597.512,29.1873026,131.0454464,20.26477177,42966.0614,1195.15516,416.31748,1.01874282,0.026583357,20.26477177,416.31748,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 19:00,27286575.2,3597.512,40.6054324,177.6428576,30.34529718,43961.1036,1209.65154,440.40301,0.99892078,0.039300455,30.34529718,440.40301,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 20:00,27290749.6,3597.512,52.0235622,224.2402688,40.42582259,44956.1458,1224.14792,464.48854,0.97909874,0.052017552,40.42582259,464.48854,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 21:00,27294924,3597.512,63.441692,270.83768,50.506348,45951.188,1238.6443,488.57407,0.9592767,0.06473465,50.506348,488.57407,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 22:00,27295788,3597.512,67.43115,285.1761,50.506348,45917.598,1203.9641,486.85245,0.8717823,0.07451898,50.506348,486.85245,130901.3,73179.4,-15784.6,-201976.5
+11/12/2023 23:00,27300000,3597.512,126.908714,404.1059,50.506348,37192.08,1157.8862,330.19714,1.1394062,0.51620966,50.506348,330.19714,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 0:00,27305788,3597.512,84.17885,335.79123,50.506348,38904.246,957.742,351.85483,0.49280703,0.115586594,50.506348,351.85483,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 1:00,27306688,3597.512,84.74485,339.25858,50.506348,34998.62,827.59546,234.60403,0.4756195,0.1187915,50.506348,234.60403,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 2:00,27310078,3597.512,80.23406,335.16892,50.506348,23387.08698,729.3129733,162.2899147,0.435601067,0.115110363,50.506348,162.2899147,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 3:00,27313468,3597.512,75.72327,331.07926,50.506348,11775.55397,631.0304867,89.97579933,0.395582633,0.111429227,50.506348,89.97579933,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 4:00,27316858,3597.512,71.21248,326.9896,50.506348,164.02095,532.748,17.661684,0.3555642,0.10774809,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 5:00,27323942,3597.512,75.34422,346.97812,50.506348,417.1527,620.586,46.26926,11.199006,0.12619631,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 6:00,27324842,3597.512,261.17322,405.18997,50.506348,4160.319,586.5927,17.661684,9.448914,0.89620227,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 7:00,27327696,3597.512,3091.9744,500.41754,50.506348,37283.71,863.40985,306.1947,6.8638387,673.35535,50.506348,306.1947,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 8:00,27334408,3597.512,2921.2969,536.7044,52.9212,47359.668,1723.5249,583.1504,2.3425143,1600.8967,52.9212,583.1504,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 9:00,27334952,3597.512,2759.6685,532.40283,52.93784,47135.445,1494.5956,529.9547,1.6448449,1443.0928,52.93784,529.9547,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 10:00,27341848,3597.512,1651.6726,482.08353,53.00018,43776.8,1256.2367,425.65598,1.2155261,343.10577,53.00018,425.65598,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 11:00,27342282,3597.512,1606.6277,479.50168,53.006268,43801.395,1235.0518,426.34244,1.1493424,311.5938,53.006268,426.34244,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 12:00,27346960.67,3597.512,1348.806467,464.1736467,52.916573,42868.20733,1373.612933,406.9736533,1.978616533,217.820328,52.916573,406.9736533,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 13:00,27351639.33,3597.512,1090.985233,448.8456133,52.826878,41935.01967,1512.174067,387.6048667,2.807890667,124.046856,52.826878,387.6048667,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 14:00,27356318,3597.512,833.164,433.51758,52.737183,41001.832,1650.7352,368.23608,3.6371648,30.273384,52.737183,368.23608,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 15:00,27356766,3597.512,819.65173,432.6231,52.730938,41054.383,1656.6803,368.09763,3.4334958,28.370365,52.730938,368.09763,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 16:00,27360402,3597.512,818.726115,430.86729,52.998701,41310.9015,1045.35545,384.244295,1.717297264,24.594693,52.998701,384.244295,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 17:00,27364038,3597.512,817.8005,429.11148,53.266464,41567.42,434.0306,400.39096,0.001098728,20.819021,53.266464,400.39096,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 18:00,27369188,3597.512,833.55775,434.48719,52.4796295,44837.667,1213.2384,485.57313,346.1298844,35.455947,52.4796295,485.57313,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 19:00,27374338,3597.512,849.315,439.8629,51.692795,48107.914,1992.4462,570.7553,692.25867,50.092873,51.692795,570.7553,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 20:00,27375238,3597.512,243.15826,386.5343,1.1133958,47713.715,1983.786,561.2352,701.88165,42.023308,1.1133958,561.2352,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 21:00,27380130,3597.512,125.462497,382.64659,0.608558375,46359.836,1637.4836,513.1783,351.5476299,34.0911855,0.608558375,513.1783,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 22:00,27385022,3597.512,7.766734,378.75888,0.10372095,45005.957,1291.1812,465.1214,1.2136097,26.159063,0.10372095,465.1214,130901.3,73179.4,-15784.6,-201976.5
+11/13/2023 23:00,27388648,3597.512,7.10083835,378.64467,0.10372095,42030.0705,1197.95985,389.631975,1.02628455,25.9716415,0.10372095,389.631975,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 0:00,27392274,3597.512,6.4349427,378.53046,0.10372095,39054.184,1104.7385,314.14255,0.8389594,25.78422,0.10372095,314.14255,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 1:00,27394849.33,3597.512,425.5296618,403.7740067,18.18145597,40472.512,1331.059433,348.9456,86.0830996,49.44856167,18.18145597,348.9456,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 2:00,27397424.67,3597.512,844.6243809,429.0175533,36.25919098,41890.84,1557.380367,383.74865,171.3272398,73.11290333,36.25919098,383.74865,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 3:00,27400000,3597.512,1263.7191,454.2611,54.336926,43309.168,1783.7013,418.5517,256.57138,96.777245,54.336926,418.5517,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 4:00,27403248,3597.512,6.3609104,378.457,0.10372095,163.87846,680.39856,17.661684,0.6078704,25.751331,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 5:00,27410352,3597.512,6.3212466,378.42038,0.10372095,532.68536,763.44794,46.26926,30.25107,25.750486,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 6:00,27411118,3597.512,108.61251,208.651,50.506348,3120.7454,732.5487,17.661684,26.258389,0.03115753,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 7:00,27414933.23,3597.512,143.5900054,224.8117269,50.59870154,6577.525523,841.2182923,60.79348523,70.15989754,0.77680472,50.59870154,60.79348523,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 8:00,27418748.46,3597.512,178.5675008,240.9724538,50.69105508,10034.30565,949.8878846,103.9252865,114.0614061,1.52245191,50.69105508,103.9252865,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 9:00,27422563.69,3597.512,213.5449962,257.1331808,50.78340862,13491.08577,1058.557477,147.0570877,157.9629146,2.2680991,50.78340862,147.0570877,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 10:00,27426378.92,3597.512,248.5224915,273.2939077,50.87576215,16947.86589,1167.227069,190.1888889,201.8644232,3.01374629,50.87576215,190.1888889,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 11:00,27430194.15,3597.512,283.4999869,289.4546346,50.96811569,20404.64602,1275.896662,233.3206902,245.7659317,3.75939348,50.96811569,233.3206902,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 12:00,27434009.38,3597.512,318.4774823,305.6153615,51.06046923,23861.42614,1384.566254,276.4524914,289.6674402,4.50504067,51.06046923,276.4524914,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 13:00,27437824.62,3597.512,353.4549777,321.7760885,51.15282277,27318.20626,1493.235846,319.5842926,333.5689488,5.25068786,51.15282277,319.5842926,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 14:00,27441639.85,3597.512,388.4324731,337.9368154,51.24517631,30774.98638,1601.905438,362.7160938,377.4704573,5.99633505,51.24517631,362.7160938,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 15:00,27445455.08,3597.512,423.4099685,354.0975423,51.33752985,34231.76651,1710.575031,405.8478951,421.3719658,6.74198224,51.33752985,405.8478951,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 16:00,27449270.31,3597.512,458.3874638,370.2582692,51.42988338,37688.54663,1819.244623,448.9796963,465.2734744,7.48762943,51.42988338,448.9796963,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 17:00,27453085.54,3597.512,493.3649592,386.4189962,51.52223692,41145.32675,1927.914215,492.1114975,509.1749829,8.23327662,51.52223692,492.1114975,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 18:00,27456900.77,3597.512,528.3424546,402.5797231,51.61459046,44602.10688,2036.583808,535.2432988,553.0764915,8.97892381,51.61459046,535.2432988,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 19:00,27460716,3597.512,563.31995,418.74045,51.706944,48058.887,2145.2534,578.3751,596.978,9.724571,51.706944,578.3751,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 20:00,27461616,3597.512,242.4287,366.49835,1.1252354,47748.887,2120.781,568.87744,472.8571,8.121804,1.1252354,568.87744,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 21:00,27466325,3597.512,130.6138625,362.661805,0.614478175,46618.762,1725.8399,522.74282,245.7748465,5.67347765,0.614478175,522.74282,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 22:00,27471034,3597.512,18.799025,358.82526,0.10372095,45488.637,1330.8988,476.6082,18.692593,3.2251513,0.10372095,476.6082,130901.3,73179.4,-15784.6,-201976.5
+11/14/2023 23:00,27474244.57,3597.512,17.01777849,358.67347,0.10372095,39125.61531,1244.652529,415.1312086,22.90556586,3.138662229,0.10372095,415.1312086,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 0:00,27477455.14,3597.512,15.23653197,358.52168,0.10372095,32762.59363,1158.406257,353.6542171,27.11853871,3.052173157,0.10372095,353.6542171,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 1:00,27480665.71,3597.512,13.45528546,358.36989,0.10372095,26399.57194,1072.159986,292.1772257,31.33151157,2.965684086,0.10372095,292.1772257,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 2:00,27483876.29,3597.512,11.67403894,358.2181,0.10372095,20036.55026,985.9137143,230.7002343,35.54448443,2.879195014,0.10372095,230.7002343,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 3:00,27487086.86,3597.512,9.892792429,358.06631,0.10372095,13673.52857,899.6674429,169.2232429,39.75745729,2.792705943,0.10372095,169.2232429,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 4:00,27490297.43,3597.512,8.111545914,357.91452,0.10372095,7310.506886,813.4211714,107.7462514,43.97043014,2.706216871,0.10372095,107.7462514,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 5:00,27493508,3597.512,6.3302994,357.76273,0.10372095,947.4852,727.1749,46.26926,48.183403,2.6197278,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 6:00,27496846,3597.512,6.2951903,357.74573,0.10372095,1075.4501,1223.9838,41.234055,131.58748,2.6185846,0.10372095,41.234055,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 7:00,27503922,3597.512,2527.0068,502.25317,52.760757,48559.297,2079.4902,630.8176,31.485388,682.55273,52.760757,630.8176,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 8:00,27504822,3597.512,2352.3667,502.07065,52.843544,48264.527,2025.1356,580.7156,26.701084,677.45276,52.843544,580.7156,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 9:00,27508734,3597.512,1643.45715,471.350055,52.940422,46340.945,1680.08265,513.81448,19.274238,363.9199475,52.940422,513.81448,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 10:00,27512646,3597.512,934.5476,440.62946,53.0373,44417.363,1335.0297,446.91336,11.847392,50.387135,53.0373,446.91336,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 11:00,27514894,3597.512,795.355,431.46588,53.03765,45744.72,1461.0457,1214.454,10.7356,26.708954,53.03765,1214.454,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 12:00,27519154,3597.512,722.896336,435.110034,53.1050026,44843.444,1487.47872,1046.15089,11.1263542,21.42767834,53.1050026,1046.15089,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 13:00,27523414,3597.512,650.437672,438.754188,53.1723552,43942.168,1513.91174,877.84778,11.5171084,16.14640267,53.1723552,877.84778,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 14:00,27527674,3597.512,577.979008,442.398342,53.2397078,43040.892,1540.34476,709.54467,11.9078626,10.86512701,53.2397078,709.54467,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 15:00,27531934,3597.512,505.520344,446.042496,53.3070604,42139.616,1566.77778,541.24156,12.2986168,5.583851344,53.3070604,541.24156,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 16:00,27536194,3597.512,433.06168,449.68665,53.374413,41238.34,1593.2108,372.93845,12.689371,0.30257568,53.374413,372.93845,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 17:00,27539828,3597.512,443.8178633,447.17318,52.81877433,43582.39333,1777.1804,442.5730333,215.906724,1.413236453,52.81877433,442.5730333,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 18:00,27543462,3597.512,454.5740467,444.65971,52.26313567,45926.44667,1961.15,512.2076167,419.124077,2.523897227,52.26313567,512.2076167,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 19:00,27547096,3597.512,465.33023,442.14624,51.707497,48270.5,2145.1196,581.8422,622.34143,3.634558,51.707497,581.8422,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 20:00,27547996,3597.512,242.73918,389.87567,1.1245338,47907.734,2139.032,572.26447,655.29803,2.9414773,1.1245338,572.26447,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 21:00,27552809,3597.512,127.448586,384.1481,0.614127375,46587.7655,1747.46095,524.588945,333.408826,1.7760117,0.614127375,524.588945,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 22:00,27557622,3597.512,12.157992,378.42053,0.10372095,45267.797,1355.8899,476.91342,11.519622,0.6105461,0.10372095,476.91342,130901.3,73179.4,-15784.6,-201976.5
+11/15/2023 23:00,27560702,3597.512,11.18805942,377.3044367,0.10372095,37750.46231,1247.212017,400.371464,11.44677083,0.56702887,0.10372095,400.371464,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 0:00,27563782,3597.512,10.21812683,376.1883433,0.10372095,30233.12761,1138.534133,323.829508,11.37391967,0.52351164,0.10372095,323.829508,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 1:00,27566862,3597.512,9.24819425,375.07225,0.10372095,22715.79291,1029.85625,247.287552,11.3010685,0.47999441,0.10372095,247.287552,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 2:00,27569942,3597.512,8.278261667,373.9561567,0.10372095,15198.45822,921.1783667,170.745596,11.22821733,0.43647718,0.10372095,170.745596,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 3:00,27573022,3597.512,7.308329083,372.8400633,0.10372095,7681.123525,812.5004833,94.20364,11.15536617,0.39295995,0.10372095,94.20364,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 4:00,27576102,3597.512,6.3383965,371.72397,0.10372095,163.78883,703.8226,17.661684,11.082515,0.34944272,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 5:00,27583098,3597.512,6.299362,370.28415,0.10372095,258.4922,679.12024,46.26926,1.1483722,0.33547097,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 6:00,27583266,3597.512,6.2991295,370.25735,0.10372095,187.08003,649.948,17.661684,1.1677212,0.3358631,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 7:00,27587449.5,3597.512,68.17264713,374.27358,0.396395188,11575.70152,1009.416625,140.929253,190.8084659,0.668063,0.396395188,140.929253,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 8:00,27591633,3597.512,130.0461648,378.28981,0.689069425,22964.32302,1368.88525,264.196822,380.4492106,1.0002629,0.689069425,264.196822,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 9:00,27595816.5,3597.512,191.9196824,382.30604,0.981743663,34352.94451,1728.353875,387.464391,570.0899553,1.3324628,0.981743663,387.464391,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 10:00,27600000,3597.512,253.7932,386.32227,1.2744179,45741.566,2087.8225,510.73196,759.7307,1.6646627,1.2744179,510.73196,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 11:00,27602788,3597.512,318.323815,307.8755,27.61345095,44794.3065,2146.88415,491.34088,2667.64685,0.848911341,27.61345095,491.34088,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 12:00,27605576,3597.512,382.85443,229.42873,53.952484,43847.047,2205.9458,471.9498,4575.563,0.033159982,53.952484,471.9498,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 13:00,27609908,3597.512,367.76678,71.99906,3.6595905,40515.715,2524.6753,443.5878,26047.646,0.004112563,3.6595905,443.5878,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 14:00,27613224.5,3597.512,357.007145,65.75726,3.40693225,40189.92675,2432.986225,431.427875,20937.9575,0.003485193,3.40693225,431.427875,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 15:00,27616541,3597.512,346.24751,59.51546,3.154274,39864.1385,2341.29715,419.26795,15828.269,0.002857823,3.154274,419.26795,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 16:00,27619857.5,3597.512,335.487875,53.27366,2.90161575,39538.35025,2249.608075,407.108025,10718.5805,0.002230453,2.90161575,407.108025,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 17:00,27623174,3597.512,324.72824,47.03186,2.6489575,39212.562,2157.919,394.9481,5608.892,0.001603083,2.6489575,394.9481,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 18:00,27628329,3597.512,349.31097,230.439955,27.21576175,43190.356,2138.51,502.109275,2992.68822,0.536154642,27.21576175,502.109275,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 19:00,27633484,3597.512,373.8937,413.84805,51.782566,47168.15,2119.101,609.27045,376.48444,1.0707062,51.782566,609.27045,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 20:00,27634384,3597.512,234.81894,362.68552,1.192544,47104.914,2083.8645,595.6783,246.48625,0.8987461,1.192544,595.6783,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 21:00,27639356,3597.512,120.6205295,361.57276,0.648132475,45866.205,1986.68855,538.3928,126.0301529,0.5502339,0.648132475,538.3928,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 22:00,27644328,3597.512,6.422119,360.46,0.10372095,44627.496,1889.5126,481.1073,5.5740557,0.2017217,0.10372095,481.1073,130901.3,73179.4,-15784.6,-201976.5
+11/16/2023 23:00,27644744,3597.512,6.2102585,359.94894,0.10372095,44262.734,1876.5487,468.39755,5.4169374,0.19490796,0.10372095,468.39755,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 0:00,27651256,3597.512,6.185546,306.72647,0.10372095,39177.133,1268.4149,367.57898,1.3831006,0.1304127,0.10372095,367.57898,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 1:00,27652156,3597.512,6.1771536,301.38644,0.10372095,36142.297,1129.4928,262.95718,1.2897894,0.12525623,0.10372095,262.95718,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 2:00,27655686,3597.512,6.157825733,288.3394133,0.10372095,24153.86306,998.0561533,190.7278733,1.134437467,0.113918777,0.10372095,190.7278733,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 3:00,27659216,3597.512,6.138497867,275.2923867,0.10372095,12165.42912,866.6195067,118.4985667,0.979085533,0.102581323,0.10372095,118.4985667,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 4:00,27662746,3597.512,6.11917,262.24536,0.10372095,176.99518,735.18286,46.26926,0.8237336,0.09124387,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 5:00,27666516,3597.512,6.1166024,254.59508,0.10372095,938.9002,1202.2166,40.154984,57.404858,0.085355364,0.10372095,40.154984,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 6:00,27669652,3597.512,6.0854564,249.96617,0.10372095,176.24559,1464.562,17.366625,28.201239,0.08191773,0.10372095,17.366625,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 7:00,27673404,3597.512,1234.3079,458.11566,50.506348,37818.64,1776.0491,327.67572,30.7505,106.917435,50.506348,327.67572,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 8:00,27677794.5,3597.512,1156.59036,454.2035825,51.308351,39625.785,1804.947725,374.61604,37.6603405,89.329345,51.308351,374.61604,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 9:00,27682185,3597.512,1078.87282,450.291505,52.110354,41432.93,1833.84635,421.55636,44.570181,71.741255,52.110354,421.55636,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 10:00,27686575.5,3597.512,1001.15528,446.3794275,52.912357,43240.075,1862.744975,468.49668,51.4800215,54.153165,52.912357,468.49668,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 11:00,27690966,3597.512,923.43774,442.46735,53.71436,45047.22,1891.6436,515.437,58.389862,36.565075,53.71436,515.437,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 12:00,27691866,3597.512,917.1421,441.54596,53.920288,44888.766,1866.9652,470.70795,150.70297,33.864117,53.920288,470.70795,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 13:00,27695933,3597.512,461.6700934,377.93106,27.01200448,42206.833,1605.515,423.27605,76.1223864,17.00103959,27.01200448,423.27605,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 14:00,27700000,3597.512,6.1980867,314.31616,0.10372095,39524.9,1344.0648,375.84415,1.5418028,0.13796218,0.10372095,375.84415,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 15:00,27703110.67,3597.512,260.6405411,353.4697133,17.86633397,40210.52433,1353.294367,390.0317667,1.480842767,5.793631453,17.86633397,390.0317667,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 16:00,27706221.33,3597.512,515.0829956,392.6232667,35.62894698,40896.14867,1362.523933,404.2193833,1.419882733,11.44930073,35.62894698,404.2193833,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 17:00,27709332,3597.512,769.52545,431.77682,53.39156,41581.773,1371.7535,418.407,1.3589227,17.10497,53.39156,418.407,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 18:00,27714632,3597.512,761.091825,435.07318,52.55296,44890.9915,1719.57155,503.17775,393.2987864,25.120875,52.55296,503.17775,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 19:00,27719932,3597.512,752.6582,438.36954,51.71436,48200.21,2067.3896,587.9485,785.23865,33.13678,51.71436,587.9485,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 20:00,27720832,3597.512,242.66093,385.32126,1.1333905,47874.15,2044.6462,578.0564,674.919,27.740694,1.1333905,578.0564,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 21:00,27725769,3597.512,124.7318518,381.23305,0.618555725,46538.32,1801.60295,528.035935,338.4699152,21.79697,0.618555725,528.035935,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 22:00,27730706,3597.512,6.8027735,377.14484,0.10372095,45202.49,1558.5597,478.01547,2.0208304,15.853246,0.10372095,478.01547,130901.3,73179.4,-15784.6,-201976.5
+11/17/2023 23:00,27730838,3597.512,6.4300704,377.12994,0.10372095,45099.51,1547.6981,474.97375,1.9887567,15.836275,0.10372095,474.97375,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 0:00,27737908,3597.512,6.398425,376.72293,0.10372095,39480.973,1278.6599,363.67593,2.4200537,15.474503,0.10372095,363.67593,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 1:00,27738808,3597.512,6.388864,376.6965,0.10372095,33753.26,1111.4586,213.49281,2.1673355,15.463296,0.10372095,213.49281,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 2:00,27742151.33,3597.512,6.367931167,376.6219767,0.10372095,22555.81606,1007.699233,148.215768,1.789818,15.45203867,0.10372095,148.215768,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 3:00,27745494.67,3597.512,6.346998333,376.5474533,0.10372095,11358.37213,903.9398667,82.938726,1.4123005,15.44078133,0.10372095,82.938726,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 4:00,27748838,3597.512,6.3260655,376.47293,0.10372095,160.92819,800.1805,17.661684,1.034783,15.429524,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 5:00,27752878,3597.512,6.3211904,376.39423,0.10372095,1698.1747,885.58105,46.26926,200.3015,15.428292,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 6:00,27756558,3597.512,6.2868915,376.33273,0.10372095,3987.1396,1068.3794,52.158043,485.94012,15.4395275,0.10372095,52.158043,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 7:00,27763146,3597.512,49.53823,231.32632,50.506348,38083.14,1822.0753,342.4987,118.51075,0.04016628,50.506348,342.4987,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 8:00,27764046,3597.512,53.704292,246.244,50.506348,37591.797,1777.4423,301.87952,102.64432,0.048046418,50.506348,301.87952,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 9:00,27766992,3597.512,45.910465,212.6687,50.506348,37689.22,1331.5632,302.1921,78.59734,0.031418804,50.506348,302.1921,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 10:00,27770862,3597.512,6.1392465,62.22441,0.10372095,46667.406,1852.475,505.67914,75.79869,0.003381246,0.10372095,505.67914,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 11:00,27774252,3597.512,6.1092343,59.351765,0.10372095,45296.9,1443.0701,477.26468,73.67736,0.003030381,0.10372095,477.26468,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 12:00,27778402.4,3597.512,6.13007264,59.9295848,0.10372095,44832.582,1448.60796,464.201604,73.69405,0.003106034,0.10372095,464.201604,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 13:00,27782552.8,3597.512,6.15091098,60.5074046,0.10372095,44368.264,1454.14582,451.138528,73.71074,0.003181687,0.10372095,451.138528,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 14:00,27786703.2,3597.512,6.17174932,61.0852244,0.10372095,43903.946,1459.68368,438.075452,73.72743,0.003257339,0.10372095,438.075452,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 15:00,27790853.6,3597.512,6.19258766,61.6630442,0.10372095,43439.628,1465.22154,425.012376,73.74412,0.003332992,0.10372095,425.012376,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 16:00,27795004,3597.512,6.213426,62.240864,0.10372095,42975.31,1470.7594,411.9493,73.76081,0.003408645,0.10372095,411.9493,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 17:00,27795904,3597.512,7.304055,71.83804,50.506348,42908.574,1419.1407,409.9493,73.60207,0.000617759,50.506348,409.9493,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 18:00,27799322,3597.512,20.670801,117.75279,50.506348,44163.89,1279.2977,442.3397,73.132675,0.004110837,50.506348,442.3397,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 19:00,27804640,3597.512,54.5508755,233.708165,50.506348,45020.9585,1658.0116,481.12963,133.4349075,0.065190359,50.506348,481.12963,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 20:00,27809958,3597.512,88.43095,349.66354,50.506348,45878.027,2036.7255,519.91956,193.73714,0.12626988,50.506348,519.91956,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 21:00,27810294,3597.512,89.21351,352.03656,50.506348,46218.883,820.64435,509.86505,72.41376,0.12857547,50.506348,509.86505,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 22:00,27817144,3597.512,142.5297,405.63364,50.506348,44128.473,1834.2177,444.58417,75.07663,0.38976926,50.506348,444.58417,130901.3,73179.4,-15784.6,-201976.5
+11/18/2023 23:00,27820365,3597.512,148.4733975,406.2248475,50.506348,38977.82983,1636.72,394.0305218,83.92388125,0.599802103,50.506348,394.0305218,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 0:00,27823586,3597.512,154.417095,406.816055,50.506348,33827.18665,1439.2223,343.4768735,92.7711325,0.809834945,50.506348,343.4768735,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 1:00,27826807,3597.512,160.3607925,407.4072625,50.506348,28676.54348,1241.7246,292.9232253,101.6183837,1.019867788,50.506348,292.9232253,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 2:00,27830028,3597.512,166.30449,407.99847,50.506348,23525.9003,1044.2269,242.369577,110.465635,1.22990063,50.506348,242.369577,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 3:00,27833249,3597.512,172.2481875,408.5896775,50.506348,18375.25712,846.7292,191.8159288,119.3128862,1.439933473,50.506348,191.8159288,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 4:00,27836470,3597.512,178.191885,409.180885,50.506348,13224.61395,649.2315,141.2622805,128.1601375,1.649966315,50.506348,141.2622805,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 5:00,27839691,3597.512,184.1355825,409.7720925,50.506348,8073.970775,451.7338,90.70863225,137.0073888,1.859999157,50.506348,90.70863225,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 6:00,27842912,3597.512,190.07928,410.3633,50.506348,2923.3276,254.2361,40.154984,145.85464,2.070032,50.506348,40.154984,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 7:00,27849536,3597.512,199.77367,410.24246,50.506348,38064.742,1793.3445,344.2032,39.952393,2.053836,50.506348,344.2032,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 8:00,27850436,3597.512,202.50099,410.2994,50.506348,37709.613,1749.7074,303.50677,34.396942,2.0903246,50.506348,303.50677,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 9:00,27853392,3597.512,203.10597,410.19583,50.506348,37732.996,1281.031,302.13412,23.934954,2.0564418,50.506348,302.13412,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 10:00,27858323,3597.512,137.605435,368.946885,50.506348,42200.318,1258.4594,430.62576,12.34009735,1.081591695,50.506348,430.62576,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 11:00,27863254,3597.512,72.1049,327.69794,50.506348,46667.64,1235.8878,559.1174,0.7452407,0.10674159,50.506348,559.1174,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 12:00,27864154,3597.512,62.347504,286.12234,50.506348,46665.668,1175.4945,513.57916,0.72447294,0.07398497,50.506348,513.57916,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 13:00,27869390,3597.512,45.7443475,220.51872,50.506348,44230.654,1186.2672,446.91448,0.94405042,0.042869762,50.506348,446.91448,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 14:00,27874626,3597.512,29.141191,154.9151,50.506348,41795.64,1197.0399,380.2498,1.1636279,0.011754554,50.506348,380.2498,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 15:00,27877574.4,3597.512,41.5184596,196.586664,50.506348,42806.6268,1174.1899,406.287468,1.042567568,0.037572543,50.506348,406.287468,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 16:00,27880522.8,3597.512,53.8957282,238.258228,50.506348,43817.6136,1151.3399,432.325136,0.921507236,0.063390532,50.506348,432.325136,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 17:00,27883471.2,3597.512,66.2729968,279.929792,50.506348,44828.6004,1128.4899,458.362804,0.800446904,0.089208522,50.506348,458.362804,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 18:00,27886419.6,3597.512,78.6502654,321.601356,50.506348,45839.5872,1105.6399,484.400472,0.679386572,0.115026511,50.506348,484.400472,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 19:00,27889368,3597.512,91.027534,363.27292,50.506348,46850.574,1082.7899,510.43814,0.55832624,0.1408445,50.506348,510.43814,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 20:00,27892912,3597.512,128.009456,378.94449,50.506348,43802.96467,1305.521067,441.50644,12.36676416,0.788027533,50.506348,441.50644,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 21:00,27896456,3597.512,164.991378,394.61606,50.506348,40755.35533,1528.252233,372.57474,24.17520208,1.435210567,50.506348,372.57474,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 22:00,27900000,3597.512,201.9733,410.28763,50.506348,37707.746,1750.9834,303.64304,35.98364,2.0823936,50.506348,303.64304,130901.3,73179.4,-15784.6,-201976.5
+11/19/2023 23:00,27905316,3597.512,166.436235,407.264915,50.506348,38653.918,1342.85695,313.44556,18.26337558,1.22153635,50.506348,313.44556,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 0:00,27910632,3597.512,130.89917,404.2422,50.506348,39600.09,934.7305,323.24808,0.54311115,0.3606791,50.506348,323.24808,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 1:00,27913387.5,3597.512,121.863855,404.034785,50.506348,29741.17474,834.527725,246.851481,0.505700718,0.326570375,50.506348,246.851481,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 2:00,27916143,3597.512,112.82854,403.82737,50.506348,19882.25949,734.32495,170.454882,0.468290285,0.29246165,50.506348,170.454882,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 3:00,27918898.5,3597.512,103.793225,403.619955,50.506348,10023.34423,634.122175,94.058283,0.430879853,0.258352925,50.506348,94.058283,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 4:00,27921654,3597.512,94.75791,403.41254,50.506348,164.42897,533.9194,17.661684,0.39346942,0.2242442,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 5:00,27928746,3597.512,97.277214,403.17526,50.506348,453.79672,649.0913,46.26926,15.39949,0.24134806,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 6:00,27929646,3597.512,328.6821,408.6397,50.506348,4258.292,614.6583,17.661684,12.993475,1.7327964,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 7:00,27932502,3597.512,4078.289,519.3728,50.506348,37966.97,903.41907,318.84058,9.672998,1080.4623,50.506348,318.84058,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 8:00,27939498,3597.512,3162.6343,548.2535,52.98699,48008.31,1650.5675,552.76166,9.786972,2045.7759,52.98699,552.76166,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 9:00,27942071.33,3597.512,2675.627333,527.9699133,53.019839,46886.30667,1521.022267,516.45458,9.470367667,1496.189223,53.019839,516.45458,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 10:00,27944644.67,3597.512,2188.620367,507.6863267,53.052688,45764.30333,1391.477033,480.1475,9.153763333,946.6025467,53.052688,480.1475,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 11:00,27947218,3597.512,1701.6134,487.40274,53.085537,44642.3,1261.9318,443.84042,8.837159,397.01587,53.085537,443.84042,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 12:00,27951423,3597.512,1482.11131,473.57672,53.005929,43975.9275,1244.124375,428.18324,8.82996725,304.0280775,53.005929,428.18324,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 13:00,27955628,3597.512,1262.60922,459.7507,52.926321,43309.555,1226.31695,412.52606,8.8227755,211.040285,52.926321,412.52606,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 14:00,27959833,3597.512,1043.10713,445.92468,52.846713,42643.1825,1208.509525,396.86888,8.81558375,118.0524925,52.846713,396.86888,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 15:00,27964038,3597.512,823.60504,432.09866,52.767105,41976.81,1190.7021,381.2117,8.808392,25.0647,52.767105,381.2117,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 16:00,27965558,3597.512,831.68274,432.2762,52.833843,42018.6,1173.478,381.0218,8.767983,25.306583,52.833843,381.0218,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 17:00,27968616,3597.512,859.4291,432.83902,53.4078,43786.695,843.4978,346.44272,8.247401,25.342358,53.4078,346.44272,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 18:00,27973876,3597.512,844.61848,436.147995,52.55849,46369.2275,1501.8194,473.16171,315.1651505,35.5110875,52.55849,473.16171,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 19:00,27979136,3597.512,829.80786,439.45697,51.70918,48951.76,2160.141,599.8807,622.0829,45.679817,51.70918,599.8807,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 20:00,27980036,3597.512,244.34578,386.19003,1.1286376,48616.164,2132.3982,588.54645,481.59732,38.29688,1.1286376,588.54645,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 21:00,27984794,3597.512,129.3487045,382.258765,0.616179275,47352.738,1746.0377,538.98079,245.2795098,30.8696865,0.616179275,538.98079,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 22:00,27989552,3597.512,14.351629,378.3275,0.10372095,46089.312,1359.6772,489.41513,8.9616995,23.442493,0.10372095,489.41513,130901.3,73179.4,-15784.6,-201976.5
+11/20/2023 23:00,27990108,3597.512,6.4350624,378.2798,0.10372095,45581.938,1331.3594,474.279,8.929693,23.364588,0.10372095,474.279,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 0:00,27997092,3597.512,6.436449,378.0287,0.10372095,39853.11,1115.8926,367.54788,1.1113687,23.024162,0.10372095,367.54788,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 1:00,27997992,3597.512,6.426834,378.01538,0.10372095,34282.383,958.5532,219.2917,1.0341878,23.014803,0.10372095,219.2917,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 2:00,28001342,3597.512,6.405552333,377.9807867,0.10372095,22909.65784,866.61048,152.0816947,0.89231589,23.00623,0.10372095,152.0816947,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 3:00,28004692,3597.512,6.384270667,377.9461933,0.10372095,11536.93268,774.66776,84.87168933,0.75044398,22.997657,0.10372095,84.87168933,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 4:00,28008042,3597.512,6.362989,377.9116,0.10372095,164.20752,682.72504,17.661684,0.60857207,22.989084,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 5:00,28015158,3597.512,6.323543,377.84888,0.10372095,643.45703,731.46906,46.26926,62.427223,22.988106,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 6:00,28015244,3597.512,6.3234534,377.85178,0.10372095,172.55927,703.0302,17.661684,63.921707,22.994663,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 7:00,28018894,3597.512,1982.6901,472.5926,50.506348,38090.87,984.3582,319.07437,43.96995,257.54507,50.506348,319.07437,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 8:00,28025906,3597.512,2081.1057,501.29092,52.98179,48287.957,1726.5417,603.92316,2.5568933,635.9742,52.98179,603.92316,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 9:00,28026222,3597.512,2021.973,498.77908,52.994263,48150.324,1701.0917,598.62964,2.3898275,589.96484,52.994263,598.62964,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 10:00,28029744,3597.512,1525.0908,475.64362,53.122215,46151.613,1687.4191,470.12106,2.241526,262.9929,53.122215,470.12106,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 11:00,28033764,3597.512,1274.462,458.47525,53.103016,45069.645,632.0837,482.7288,0.26532286,124.456894,53.103016,482.7288,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 12:00,28037556,3597.512,1053.0747,444.83047,53.988514,46206.332,1882.2333,468.122,3.3528664,57.13166,53.988514,468.122,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 13:00,28041151.33,3597.512,932.0540667,437.7880533,53.58867533,44793.603,1752.734,440.2894,2.8716897,42.46022267,53.58867533,440.2894,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 14:00,28044746.67,3597.512,811.0334333,430.7456367,53.18883667,43380.874,1623.2347,412.4568,2.390513,27.78878533,53.18883667,412.4568,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 15:00,28048342,3597.512,690.0128,423.70322,52.788998,41968.145,1493.7354,384.6242,1.9093363,13.117348,52.788998,384.6242,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 16:00,28054058,3597.512,783.58325,426.88177,53.342945,42141.855,1233.0275,424.26654,1.1497601,16.693903,53.342945,424.26654,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 17:00,28054918,3597.512,804.99927,427.90378,53.418556,42149.566,1173.242,382.1734,1.1018231,18.112692,53.418556,382.1734,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 18:00,28060226,3597.512,803.90906,431.88275,52.559488,45873.173,1555.9875,489.07745,79.85944655,27.985738,52.559488,489.07745,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 19:00,28065534,3597.512,802.81885,435.86172,51.70042,49596.78,1938.733,595.9815,158.61707,37.858784,51.70042,595.9815,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 20:00,28066434,3597.512,245.68192,382.73834,1.1210301,49186.848,1932.9606,585.5781,178.4255,31.713556,1.1210301,585.5781,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 21:00,28071333,3597.512,126.6793482,378.7639,0.612375525,47614.899,1619.20905,535.27103,89.8116537,25.196148,0.612375525,535.27103,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 22:00,28076232,3597.512,7.6767764,374.78946,0.10372095,46042.95,1305.4575,484.96396,1.1978074,18.67874,0.10372095,484.96396,130901.3,73179.4,-15784.6,-201976.5
+11/21/2023 23:00,28076504,3597.512,6.503608,374.76465,0.10372095,45804.832,1289.8005,478.07468,1.1704711,18.643238,0.10372095,478.07468,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 0:00,28083496,3597.512,6.471042,374.4879,0.10372095,39982.59,1219.0354,368.94113,1.5307131,18.296053,0.10372095,368.94113,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 1:00,28084396,3597.512,6.4612875,374.47446,0.10372095,34337.6,1059.8262,219.34909,1.4069891,18.285683,0.10372095,219.34909,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 2:00,28087746,3597.512,6.439626867,374.4431467,0.10372095,22946.51913,966.2661333,152.1199547,1.21353211,18.27567567,0.10372095,152.1199547,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 3:00,28091096,3597.512,6.417966233,374.4118333,0.10372095,11555.43826,872.7060667,84.89081933,1.02007512,18.26566833,0.10372095,84.89081933,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 4:00,28094446,3597.512,6.3963056,374.38052,0.10372095,164.35739,779.146,17.661684,0.82661813,18.255661,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 5:00,28098612,3597.512,6.389743,374.34946,0.10372095,1204.594,852.2472,46.26926,97.749115,18.254654,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 6:00,28101646,3597.512,6.356056,374.3311,0.10372095,1302.6892,1371.7529,769.6399,208.12636,18.260231,0.10372095,769.6399,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 7:00,28108726,3597.512,2705.0244,506.84723,52.776478,49655.227,2103.821,655.771,36.29841,763.1752,52.776478,655.771,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 8:00,28109626,3597.512,2580.606,507.81598,52.87197,49302.145,2049.4758,604.6342,31.183718,781.86957,52.87197,604.6342,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 9:00,28114112,3597.512,1906.7511,482.08159,52.9835735,47078.549,1681.65245,528.15418,24.7550105,448.840127,52.9835735,528.15418,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 10:00,28118598,3597.512,1232.8962,456.3472,53.095177,44854.953,1313.8291,451.67416,18.326303,115.810684,53.095177,451.67416,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 11:00,28122439.5,3597.512,1074.932575,446.79295,53.02944025,44021.92575,1452.048025,437.769845,32.75420475,88.81731983,53.02944025,437.769845,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 12:00,28126281,3597.512,916.96895,437.2387,52.9637035,43188.8985,1590.26695,423.86553,47.1821065,61.82395565,52.9637035,423.86553,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 13:00,28130122.5,3597.512,759.005325,427.68445,52.89796675,42355.87125,1728.485875,409.961215,61.61000825,34.83059147,52.89796675,409.961215,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 14:00,28133964,3597.512,601.0417,418.1302,52.83223,41522.844,1866.7048,396.0569,76.03791,7.8372273,52.83223,396.0569,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 15:00,28136606.67,3597.512,630.6554667,418.8074233,52.99417267,41784.18267,1853.876767,394.0514233,57.66165133,8.341446867,52.99417267,394.0514233,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 16:00,28139249.33,3597.512,660.2692333,419.4846467,53.15611533,42045.52133,1841.048733,392.0459467,39.28539267,8.845666433,53.15611533,392.0459467,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 17:00,28141892,3597.512,689.883,420.16187,53.318058,42306.86,1828.2207,390.04047,20.909134,9.349886,53.318058,390.04047,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 18:00,28146913,3597.512,734.4603,426.805775,52.510725,45850.09,1965.85105,492.290135,117.810912,21.388778,52.510725,492.290135,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 19:00,28151934,3597.512,779.0376,433.44968,51.703392,49393.32,2103.4814,594.5398,214.71269,33.42767,51.703392,594.5398,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 20:00,28152834,3597.512,245.66045,380.4189,1.1239133,49040.914,2090.7217,584.5356,202.21262,28.000938,1.1239133,584.5356,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 21:00,28157754,3597.512,126.4139297,376.44396,0.613817125,47580.3435,1772.5121,535.928475,110.308944,22.0639025,0.613817125,535.928475,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 22:00,28162674,3597.512,7.1674094,372.46902,0.10372095,46119.773,1454.3025,487.32135,18.405268,16.126867,0.10372095,487.32135,130901.3,73179.4,-15784.6,-201976.5
+11/22/2023 23:00,28162898,3597.512,6.4991593,372.44754,0.10372095,45917.883,1441.2334,481.14413,18.388775,16.098522,0.10372095,481.14413,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 0:00,28169902,3597.512,6.4666777,372.15387,0.10372095,40084.133,1207.8315,370.67813,1.8561101,15.749534,0.10372095,370.67813,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 1:00,28170802,3597.512,6.4569316,372.14026,0.10372095,34331.383,1046.2883,219.09738,1.6737326,15.738548,0.10372095,219.09738,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 2:00,28174149.33,3597.512,6.4353694,372.1112867,0.10372095,22942.3757,952.3676333,151.952148,1.407545223,15.727562,0.10372095,151.952148,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 3:00,28177496.67,3597.512,6.4138072,372.0823133,0.10372095,11553.3684,858.4469667,84.806916,1.141357847,15.716576,0.10372095,84.806916,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 4:00,28180844,3597.512,6.392245,372.05334,0.10372095,164.3611,764.5263,17.661684,0.87517047,15.70559,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 5:00,28185158,3597.512,6.3843575,372.0256,0.10372095,1351.6367,844.24817,46.26926,134.60799,15.704365,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 6:00,28188044,3597.512,6.352152,372.01154,0.10372095,1285.4817,1594.0024,1110.4631,217.35847,15.709577,0.10372095,1110.4631,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 7:00,28195118,3597.512,2896.0254,511.1056,52.776913,49712.145,2100.3396,657.7093,28.719261,869.62823,52.776913,657.7093,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 8:00,28196018,3597.512,2775.149,512.9167,52.87661,49395.71,2046.2731,606.613,24.702509,909.859,52.87661,606.613,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 9:00,28199098,3597.512,1973.2546,495.016,53.023,48312.234,1528.1671,560.0632,15.861343,545.4976,53.023,560.0632,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 10:00,28205702,3597.512,1262.6101,457.7296,53.097244,44935.926,1343.9048,449.08557,13.853938,127.30935,53.097244,449.08557,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 11:00,28206416,3597.512,1207.7466,454.3989,53.110897,44963.934,1326.0625,450.37326,13.764948,108.029686,53.110897,450.37326,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 12:00,28211044.67,3597.512,1045.050813,444.3013433,53.01196033,44024.18767,1429.613133,429.99178,14.15447367,77.06310067,53.01196033,429.99178,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 13:00,28215673.33,3597.512,882.3550267,434.2037867,52.91302367,43084.44133,1533.163767,409.6103,14.54399933,46.09651533,52.91302367,409.6103,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 14:00,28220302,3597.512,719.65924,424.10623,52.814087,42144.695,1636.7144,389.22882,14.933525,15.12993,52.814087,389.22882,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 15:00,28222966,3597.512,730.72294,423.99131,52.97986467,42267.95333,1532.1141,389.5286867,14.55578167,14.77866867,52.97986467,389.5286867,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 16:00,28225630,3597.512,741.78664,423.87639,53.14564233,42391.21167,1427.5138,389.8285533,14.17803833,14.42740733,53.14564233,389.8285533,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 17:00,28228294,3597.512,752.85034,423.76147,53.31142,42514.47,1322.9135,390.12842,13.800295,14.076146,53.31142,390.12842,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 18:00,28231206,3597.512,859.77234,430.44177,52.2266,46769.617,918.7672,409.8418,12.935471,26.775509,52.2266,409.8418,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 19:00,28238332,3597.512,774.79144,432.4894,51.70176,49800.22,2111.452,603.8096,224.28754,32.41908,51.70176,603.8096,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 20:00,28239232,3597.512,246.24857,379.47278,1.1223822,49406.13,2100.1506,592.64636,223.62442,27.141226,1.1223822,592.64636,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 21:00,28244108,3597.512,127.342316,375.47716,0.613051575,47835.055,1774.10605,542.22318,118.746697,21.30575,0.613051575,542.22318,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 22:00,28248984,3597.512,8.436062,371.48154,0.10372095,46263.98,1448.0615,491.8,13.868974,15.470274,0.10372095,491.8,130901.3,73179.4,-15784.6,-201976.5
+11/23/2023 23:00,28249288,3597.512,6.511367,371.45117,0.10372095,45990.543,1429.0746,483.60977,13.840262,15.430822,0.10372095,483.60977,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 0:00,28256312,3597.512,6.478519,371.15167,0.10372095,40208.863,1187.41,372.17975,2.452055,15.075583,0.10372095,372.17975,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 1:00,28257212,3597.512,6.4687157,371.13837,0.10372095,34316.258,1022.527,218.25514,2.1894383,15.064283,0.10372095,218.25514,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 2:00,28260554,3597.512,9.598616133,281.0996013,16.90459663,22932.41373,927.5152133,151.3906547,1.7954201,10.0436209,16.90459663,151.3906547,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 3:00,28263896,3597.512,12.72851657,191.0608327,33.70547232,11548.56946,832.5034267,84.52616933,1.4014019,5.022958793,33.70547232,84.52616933,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 4:00,28267238,3597.512,15.858417,101.022064,50.506348,164.72519,737.49164,17.661684,1.0073837,0.00229669,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 5:00,28271512,3597.512,47.042,225.05,50.506348,1830.7058,832.5999,46.26926,239.03229,0.039179306,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 6:00,28275592,3597.512,406.43076,409.4195,50.506348,9907.806,902.2558,40.154984,545.88025,3.7291021,50.506348,40.154984,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 7:00,28280239,3597.512,1421.76838,462.047,51.748608,29487.485,1259.8347,327.765907,280.8202715,482.857851,51.748608,327.765907,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 8:00,28284886,3597.512,2437.106,514.6745,52.990868,49067.164,1617.4136,615.37683,15.760293,961.9866,52.990868,615.37683,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 9:00,28285498,3597.512,2276.0525,509.22696,53.016582,48548.11,1512.7295,559.8104,13.942463,833.1174,53.016582,559.8104,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 10:00,28292102,3597.512,1233.7655,457.57547,53.1012,45109.246,1338.6364,450.91782,7.8501024,129.3036,53.1012,450.91782,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 11:00,28294189,3597.512,1086.460235,447.135775,53.49148,45789.256,1005.07945,460.900025,7.1554262,83.72392,53.49148,460.900025,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 12:00,28296276,3597.512,939.15497,436.69608,53.88176,46469.266,671.5225,470.88223,6.46075,38.14424,53.88176,470.88223,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 13:00,28299728,3597.512,815.02966,427.76154,54.612637,44983.758,1964.8925,446.9232,318.12473,18.24787,54.612637,446.9232,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 14:00,28306672,3597.512,570.8924,461.6407,52.803562,42103.22,1825.6494,393.59552,15.915238,5.4766827,52.803562,393.59552,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 15:00,28308542,3597.512,556.81775,459.44815,52.809994,42259.11,1323.9679,391.55307,7.412934,4.641677,52.809994,391.55307,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 16:00,28311563,3597.512,582.246975,454.61334,53.0880145,42404.06,1270.881,391.628755,7.2680425,4.7198377,53.0880145,391.628755,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 17:00,28314584,3597.512,607.6762,449.77853,53.366035,42549.01,1217.7941,391.70444,7.123151,4.7979984,53.366035,391.70444,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 18:00,28319655,3597.512,641.491815,451.63179,52.5345285,46220.843,1622.19985,495.50444,9.6969635,11.6753427,52.5345285,495.50444,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 19:00,28324726,3597.512,675.30743,453.48505,51.703022,49892.676,2026.6056,599.30444,12.270776,18.552687,51.703022,599.30444,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 20:00,28325626,3597.512,246.49747,400.3801,1.1231263,49637.28,1919.5048,588.0599,8.921993,15.505177,1.1231263,588.0599,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 21:00,28330507,3597.512,127.4295355,394.496935,0.613423625,48009.09,1680.1326,540.035825,8.19015465,11.5968715,0.613423625,540.035825,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 22:00,28335388,3597.512,8.361601,388.61377,0.10372095,46380.9,1440.7604,492.01175,7.4583163,7.688566,0.10372095,492.01175,130901.3,73179.4,-15784.6,-201976.5
+11/24/2023 23:00,28335708,3597.512,6.516055,388.4719,0.10372095,46091.92,1422.8872,483.4661,7.4327326,7.6509423,0.10372095,483.4661,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 0:00,28342692,3597.512,6.483445,386.1429,0.10372095,40304.348,1210.2415,374.18555,1.3159418,7.287362,0.10372095,374.18555,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 1:00,28343592,3597.512,6.4736814,385.90878,0.10372095,34660.305,1050.2128,223.49814,1.2362386,7.2722015,0.10372095,223.49814,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 2:00,28347112,3597.512,6.4473433,385.0838,0.10372095,165.77948,811.97687,17.661684,0.9803209,7.245767,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 3:00,28350377,3597.512,22.23185965,295.9639,25.30503448,164.03866,789.226535,17.661684,0.88091357,3.635074559,25.30503448,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 4:00,28353642,3597.512,38.016376,206.844,50.506348,162.29784,766.4762,17.661684,0.78150624,0.024382118,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 5:00,28357483,3597.512,63.9086205,308.96216,50.506348,1937.87892,817.70917,31.965472,209.7180531,0.099478999,50.506348,31.965472,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 6:00,28361324,3597.512,89.800865,411.08032,50.506348,3713.46,868.94214,46.26926,418.6546,0.17457588,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 7:00,28365914,3597.512,109.8518625,415.00424,50.506348,21215.235,1193.38837,199.02648,218.771983,0.27734224,50.506348,199.02648,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 8:00,28370504,3597.512,129.90286,418.92816,50.506348,38717.01,1517.8346,351.7837,18.889366,0.3801086,50.506348,351.7837,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 9:00,28373406,3597.512,84.700785,309.34549,50.506348,42838.76,1450.6428,437.2975,14.257112,0.201359526,50.506348,437.2975,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 10:00,28376308,3597.512,39.49871,199.76282,50.506348,46960.51,1383.451,522.8113,9.624858,0.022610452,50.506348,522.8113,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 11:00,28379076,3597.512,6.1882563,72.31298,0.10372095,48219.45,1580.1598,1255.8683,8.187177,0.004214653,0.10372095,1255.8683,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 12:00,28383260.8,3597.512,8.56890984,83.536654,10.18424636,38608.41683,1422.12036,1008.226977,6.7238926,0.004351068,10.18424636,1008.226977,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 13:00,28387445.6,3597.512,10.94956338,94.760328,20.26477177,28997.38366,1264.08092,760.5856536,5.2606082,0.004487482,20.26477177,760.5856536,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 14:00,28391630.4,3597.512,13.33021692,105.984002,30.34529718,19386.35049,1106.04148,512.9443304,3.7973238,0.004623897,30.34529718,512.9443304,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 15:00,28395815.2,3597.512,15.71087046,117.207676,40.42582259,9775.31732,948.00204,265.3030072,2.3340394,0.004760311,40.42582259,265.3030072,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 16:00,28400000,3597.512,18.091524,128.43135,50.506348,164.28415,789.9626,17.661684,0.870755,0.004896726,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 17:00,28402764,3597.512,14.19121417,103.278232,33.70547232,16343.03843,1195.1094,201.327536,7.171406667,0.004030238,33.70547232,201.327536,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 18:00,28405528,3597.512,10.29090433,78.125114,16.90459663,32521.79272,1600.2562,384.993388,13.47205833,0.00316375,16.90459663,384.993388,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 19:00,28408292,3597.512,6.3905945,52.971996,0.10372095,48700.547,2005.403,568.65924,19.77271,0.002297262,0.10372095,568.65924,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 20:00,28412824,3597.512,14.895503,91.39293733,16.90459663,47452.048,1826.468567,532.88808,16.21175067,0.006034508,16.90459663,532.88808,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 21:00,28417356,3597.512,23.4004115,129.8138787,33.70547232,46203.549,1647.534133,497.11692,12.65079133,0.009771755,33.70547232,497.11692,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 22:00,28421888,3597.512,31.90532,168.23482,50.506348,44955.05,1468.5997,461.34576,9.089832,0.013509001,50.506348,461.34576,130901.3,73179.4,-15784.6,-201976.5
+11/25/2023 23:00,28424923,3597.512,31.39055,167.936395,50.506348,37489.5244,1350.086233,387.398414,8.971042667,0.01345966,50.506348,387.398414,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 0:00,28427958,3597.512,30.87578,167.63797,50.506348,30023.9988,1231.572767,313.451068,8.852253333,0.01341032,50.506348,313.451068,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 1:00,28430993,3597.512,30.36101,167.339545,50.506348,22558.4732,1113.0593,239.503722,8.733464,0.013360979,50.506348,239.503722,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 2:00,28434028,3597.512,29.84624,167.04112,50.506348,15092.9476,994.5458333,165.556376,8.614674667,0.013311638,50.506348,165.556376,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 3:00,28437063,3597.512,29.33147,166.742695,50.506348,7627.422,876.0323667,91.60903,8.495885333,0.013262298,50.506348,91.60903,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 4:00,28440098,3597.512,28.8167,166.44427,50.506348,161.8964,757.5189,17.661684,8.377096,0.013212957,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 5:00,28444094,3597.512,25.330856,153.70837,50.506348,357.34055,754.4476,46.26926,2.6533484,0.010061776,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 6:00,28449131,3597.512,25.459774,151.86118,50.506348,19297.38928,1104.87485,201.97073,2.24601325,0.00967825,50.506348,201.97073,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 7:00,28454168,3597.512,25.588692,150.01399,50.506348,38237.438,1455.3021,357.6722,1.8386781,0.009294725,50.506348,357.6722,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 8:00,28455068,3597.512,25.227917,148.96812,50.506348,38244.46,1317.9646,316.56894,1.4705985,0.009070609,50.506348,316.56894,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 9:00,28458106,3597.512,16.416689,112.30495,50.506348,38390.33,1113.1659,315.676,0.82857275,0.003101272,50.506348,315.676,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 10:00,28465094,3597.512,6.1130342,47.712364,0.10372095,47490.555,1710.2252,577.3705,2.3659704,0.001851583,0.10372095,577.3705,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 11:00,28465994,3597.512,6.158319,47.601242,0.10372095,47426.496,1796.3077,533.1319,2.8206317,0.00184329,0.10372095,533.1319,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 12:00,28469772.44,3597.512,8.245637,59.40775067,5.704012844,46063.91222,1787.207344,506.7355611,3.153618289,0.002765175,5.704012844,506.7355611,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 13:00,28473550.89,3597.512,10.332955,71.21425933,11.30430474,44701.32844,1778.106989,480.3392222,3.486604878,0.00368706,11.30430474,480.3392222,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 14:00,28477329.33,3597.512,12.420273,83.020768,16.90459663,43338.74467,1769.006633,453.9428833,3.819591467,0.004608946,16.90459663,453.9428833,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 15:00,28481107.78,3597.512,14.507591,94.82727667,22.50488853,41976.16089,1759.906278,427.5465444,4.152578056,0.005530831,22.50488853,427.5465444,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 16:00,28484886.22,3597.512,16.594909,106.6337853,28.10518042,40613.57711,1750.805922,401.1502056,4.485564644,0.006452716,28.10518042,401.1502056,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 17:00,28488664.67,3597.512,18.682227,118.440294,33.70547232,39250.99333,1741.705567,374.7538667,4.818551233,0.007374601,33.70547232,374.7538667,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 18:00,28492443.11,3597.512,20.769545,130.2468027,39.30576421,37888.40956,1732.605211,348.3575278,5.151537822,0.008296487,39.30576421,348.3575278,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 19:00,28496221.56,3597.512,22.856863,142.0533113,44.90605611,36525.82578,1723.504856,321.9611889,5.484524411,0.009218372,44.90605611,321.9611889,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 20:00,28500000,3597.512,24.944181,153.85982,50.506348,35163.242,1714.4045,295.56485,5.817511,0.010140257,50.506348,295.56485,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 21:00,28503379.25,3597.512,22.58146875,140.0304754,44.20601962,30788.20889,1583.7978,260.8269543,5.154265854,0.009062744,44.20601962,260.8269543,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 22:00,28506758.5,3597.512,20.2187565,126.2011308,37.90569124,26413.17578,1453.1911,226.0890585,4.491020708,0.007985232,37.90569124,226.0890585,130901.3,73179.4,-15784.6,-201976.5
+11/26/2023 23:00,28510137.75,3597.512,17.85604425,112.3717861,31.60536286,22038.14267,1322.5844,191.3511628,3.827775561,0.006907719,31.60536286,191.3511628,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 0:00,28513517,3597.512,15.493332,98.5424415,25.30503448,17663.10956,1191.9777,156.613267,3.164530415,0.005830206,25.30503448,156.613267,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 1:00,28516896.25,3597.512,13.13061975,84.71309688,19.00470609,13288.07644,1061.371,121.8753712,2.501285269,0.004752693,19.00470609,121.8753712,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 2:00,28520275.5,3597.512,10.7679075,70.88375225,12.70437771,8913.043332,930.7643,87.1374755,1.838040122,0.003675181,12.70437771,87.1374755,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 3:00,28523654.75,3597.512,8.40519525,57.05440763,6.404049331,4538.010221,800.1576,52.39957975,1.174794976,0.002597668,6.404049331,52.39957975,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 4:00,28527034,3597.512,6.042483,43.225063,0.10372095,162.97711,669.5509,17.661684,0.51154983,0.001520155,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 5:00,28531524,3597.512,6.1172104,42.999737,0.10372095,163.56879,1121.1702,40.154984,2.1426723,0.001504026,0.10372095,40.154984,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 6:00,28533656,3597.512,6.30251,43.279392,0.10372095,179.00783,1306.2712,17.180475,10.534538,0.001520005,0.10372095,17.180475,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 7:00,28537257.6,3597.512,145.646028,121.2431496,10.72759116,9074.335264,1395.96836,107.867946,9.8316236,3.355231804,10.72759116,107.867946,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 8:00,28540859.2,3597.512,284.989546,199.2069072,21.35146137,17969.6627,1485.66552,198.555417,9.1287092,6.708943603,21.35146137,198.555417,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 9:00,28544460.8,3597.512,424.333064,277.1706648,31.97533158,26864.99013,1575.36268,289.242888,8.4257948,10.0626554,31.97533158,289.242888,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 10:00,28548062.4,3597.512,563.676582,355.1344224,42.59920179,35760.31757,1665.05984,379.930359,7.7228804,13.4163672,42.59920179,379.930359,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 11:00,28551664,3597.512,703.0201,433.09818,53.223072,44655.645,1754.757,470.61783,7.019966,16.770079,53.223072,470.61783,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 12:00,28556759,3597.512,587.00529,440.66829,53.89773,43049.6505,1977.2381,464.63048,5218.710983,8.63890405,53.89773,464.63048,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 13:00,28561854,3597.512,470.99048,448.2384,54.572388,41443.656,2199.7192,458.64313,10430.402,0.5077291,54.572388,458.64313,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 14:00,28565531.33,3597.512,485.1051233,447.6924367,54.10374217,42625.54733,2193.136833,488.42563,9073.717733,2.173682417,54.10374217,488.42563,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 15:00,28569208.67,3597.512,499.2197667,447.1464733,53.63509633,43807.43867,2186.554467,518.20813,7717.033467,3.839635733,53.63509633,518.20813,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 16:00,28572886,3597.512,513.33441,446.60051,53.1664505,44989.33,2179.9721,547.99063,6360.3492,5.50558905,53.1664505,547.99063,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 17:00,28576563.33,3597.512,527.4490533,446.0545467,52.69780467,46171.22133,2173.389733,577.77313,5003.664933,7.171542367,52.69780467,577.77313,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 18:00,28580240.67,3597.512,541.5636967,445.5085833,52.22915883,47353.11267,2166.807367,607.55563,3646.980667,8.837495683,52.22915883,607.55563,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 19:00,28583918,3597.512,555.67834,444.96262,51.760513,48535.004,2160.225,637.33813,2290.2964,10.503449,51.760513,637.33813,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 20:00,28584818,3597.512,241.56337,392.34158,1.1753894,48280.035,2136.1067,625.67773,2031.465,8.765898,1.1753894,625.67773,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 21:00,28589750,3597.512,124.074853,386.955155,0.639555175,47105.9125,1896.4759,569.6987,1016.945716,6.1671877,0.639555175,569.6987,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 22:00,28594682,3597.512,6.586336,381.56873,0.10372095,45931.79,1656.8451,513.71967,2.4264321,3.5684774,0.10372095,513.71967,130901.3,73179.4,-15784.6,-201976.5
+11/27/2023 23:00,28598176,3597.512,6.3483315,380.30655,0.10372095,41219.45,1227.2706,373.31723,1.2956351,3.282869,0.10372095,373.31723,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 0:00,28598624,3597.512,6.3520527,380.1701,0.10372095,40992.062,1229.9711,408.99942,1.2332293,3.2592404,0.10372095,408.99942,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 1:00,28602369.5,3597.512,6.334025525,379.38309,0.10372095,30789.54541,1089.5286,318.31688,1.076297985,3.20028255,0.10372095,318.31688,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 2:00,28606115,3597.512,6.31599835,378.59608,0.10372095,20587.02882,949.0861,227.63434,0.91936667,3.1413247,0.10372095,227.63434,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 3:00,28609860.5,3597.512,6.297971175,377.80907,0.10372095,10384.51223,808.6436,136.9518,0.762435355,3.08236685,0.10372095,136.9518,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 4:00,28613606,3597.512,6.279944,377.02206,0.10372095,181.99564,668.2011,46.26926,0.60550404,3.023409,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 5:00,28618464,3597.512,6.248641,376.2898,0.10372095,389.71973,936.61084,40.154984,6.9721427,3.0156145,0.10372095,40.154984,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 6:00,28620054,3597.512,6.2475114,376.0705,0.10372095,178.03639,1210.1572,17.426945,4.609523,3.0168095,0.10372095,17.426945,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 7:00,28624108,3597.512,1304.4984,472.22354,50.506348,40384.996,1800.9778,382.31607,9.424051,126.56234,50.506348,382.31607,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 8:00,28630292,3597.512,1525.5801,488.5064,53.1056,48847.562,1934.2008,644.3006,6.2196565,239.45403,53.1056,644.3006,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 9:00,28631192,3597.512,1426.1692,483.62506,53.151756,48480.605,1564.73,582.26984,1.7372496,195.78574,53.151756,582.26984,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 10:00,28637428,3597.512,963.7538,456.51096,53.19742,45162.027,1133.6425,470.32205,0.7643322,50.4411,53.19742,470.32205,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 11:00,28638106,3597.512,927.682,453.84088,53.194553,45148.082,1122.9803,468.9649,0.74241734,42.73934,53.194553,468.9649,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 12:00,28642811.33,3597.512,848.8937133,448.2985867,53.09471533,44254.61333,1175.3154,447.27264,0.953583227,32.93736633,53.09471533,447.27264,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 13:00,28647516.67,3597.512,770.1054267,442.7562933,52.99487767,43361.14467,1227.6505,425.58038,1.164749113,23.13539267,52.99487767,425.58038,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 14:00,28652222,3597.512,691.31714,437.214,52.89504,42467.676,1279.9856,403.88812,1.375915,13.333419,52.89504,403.88812,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 15:00,28652698,3597.512,687.35657,436.85355,52.87981,42505.12,1258.1282,403.4834,1.3049577,12.955611,52.87981,403.4834,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 16:00,28659302,3597.512,771.9883,438.99094,53.515953,42747.66,1171.259,441.9696,0.8533231,15.5983715,53.515953,441.9696,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 17:00,28659912,3597.512,780.1191,439.33755,53.50003,42774.01,1116.4238,400.07333,0.8351658,16.171192,53.50003,400.07333,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 18:00,28665123,3597.512,784.084115,442.979185,52.606205,46619.2785,1526.8076,510.231715,23.9050499,25.443014,52.606205,510.231715,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 19:00,28670334,3597.512,788.04913,446.62082,51.71238,50464.547,1937.1914,620.3901,46.974934,34.714836,51.71238,620.3901,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 20:00,28671234,3597.512,246.7952,393.5055,1.132528,50099.996,1925.9949,608.6942,50.463863,29.072664,1.132528,608.6942,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 21:00,28674595,3597.512,232.85339,389.922735,0.9704355,49516.574,1903.68025,595.22387,35.204439,23.304446,0.9704355,595.22387,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 22:00,28677956,3597.512,218.91158,386.33997,0.808343,48933.152,1881.3656,581.75354,19.945015,17.536228,0.808343,581.75354,130901.3,73179.4,-15784.6,-201976.5
+11/28/2023 23:00,28683135,3597.512,112.6931412,385.3073,0.456031975,44776.2185,1551.08245,482.23092,11.402764,16.9906375,0.456031975,482.23092,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 0:00,28688314,3597.512,6.4747024,384.27463,0.10372095,40619.285,1220.7993,382.7083,2.860513,16.445047,0.10372095,382.7083,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 1:00,28689214,3597.512,6.4649,384.2164,0.10372095,34645.62,1051.8982,224.74443,2.5232348,16.434221,0.10372095,224.74443,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 2:00,28692555.33,3597.512,6.443271,384.0296833,0.10372095,23151.87216,954.6851,155.716848,2.069058033,16.42349933,0.10372095,155.716848,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 3:00,28695896.67,3597.512,6.421642,383.8429667,0.10372095,11658.12432,857.472,86.689266,1.614881267,16.41277767,0.10372095,86.689266,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 4:00,28699238,3597.512,6.400013,383.65625,0.10372095,164.37648,760.2589,17.661684,1.1607045,16.402056,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 5:00,28703206,3597.512,6.3949976,383.45523,0.10372095,1850.3767,853.2467,46.26926,226.11456,16.400917,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 6:00,28706442,3597.512,6.3597717,383.3004,0.10372095,2031.025,1059.9547,72.72252,543.19073,16.405993,0.10372095,72.72252,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 7:00,28711745,3597.512,1115.497636,449.221975,26.57005298,25807.6525,1337.7478,352.04098,280.1447035,371.7213965,26.57005298,352.04098,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 8:00,28717048,3597.512,2224.6355,515.14355,53.036385,49584.28,1615.5409,631.35944,17.098677,727.0368,53.036385,631.35944,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 9:00,28717438,3597.512,2144.6262,512.0931,53.054634,49399.21,1592.239,624.75555,13.785946,666.5304,53.054634,624.75555,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 10:00,28721378,3597.512,1533.2512,485.00098,53.196793,46824.94,1552.1348,486.61795,2.0729735,266.16446,53.196793,486.61795,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 11:00,28727852,3597.512,1073.4423,453.48203,53.867275,46870.715,1255.0602,500.12497,0.8268994,57.132484,53.867275,500.12497,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 12:00,28728068,3597.512,1069.3353,453.0848,53.916107,46876.383,1248.4895,500.2864,0.81969446,55.647842,53.916107,500.2864,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 13:00,28733325,3597.512,978.01775,447.95094,53.3943785,44865.514,1229.31315,450.191325,0.98524498,43.3949095,53.3943785,450.191325,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 14:00,28738582,3597.512,886.7002,442.81708,52.87265,42854.645,1210.1368,400.09625,1.1507955,31.141977,52.87265,400.09625,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 15:00,28741232.67,3597.512,891.68488,442.4623533,53.05945667,42943.671,1190.283833,400.4431433,1.037004567,30.18074833,53.05945667,400.4431433,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 16:00,28743883.33,3597.512,896.66956,442.1076267,53.24626333,43032.697,1170.430867,400.7900367,0.923213633,29.21951967,53.24626333,400.7900367,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 17:00,28746534,3597.512,901.65424,441.7529,53.43307,43121.723,1150.5779,401.13693,0.8094227,28.258291,53.43307,401.13693,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 18:00,28751633,3597.512,850.16757,442.43027,52.571153,46869.254,1556.18935,512.229665,32.04481135,32.1919905,52.571153,512.229665,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 19:00,28756732,3597.512,798.6809,443.10764,51.709236,50616.785,1961.8008,623.3224,63.2802,36.12569,51.709236,623.3224,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 20:00,28757632,3597.512,247.46527,389.9897,1.129803,50275.805,1938.5673,610.9445,39.72451,30.245327,1.129803,610.9445,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 21:00,28762530,3597.512,127.609183,385.85805,0.616761975,48598.1825,1633.23885,557.54351,20.45679135,23.9132385,0.616761975,557.54351,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 22:00,28767428,3597.512,7.753096,381.7264,0.10372095,46920.56,1327.9104,504.14252,1.1890727,17.58115,0.10372095,504.14252,130901.3,73179.4,-15784.6,-201976.5
+11/29/2023 23:00,28767708,3597.512,6.5242767,381.69308,0.10372095,46651.88,1311.7617,496.27887,1.1639072,17.544538,0.10372095,496.27887,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 0:00,28774692,3597.512,6.491626,381.24,0.10372095,40762.887,1244.3777,383.6674,1.4155482,17.193031,0.10372095,383.6674,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 1:00,28775592,3597.512,6.4818425,381.20538,0.10372095,35054.043,1081.718,229.74487,1.3196849,17.18225,0.10372095,229.74487,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 2:00,28778942.67,3597.512,6.460041,381.0996533,0.10372095,23424.2673,986.2629,159.0504747,1.158486767,17.171685,0.10372095,159.0504747,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 3:00,28782293.33,3597.512,6.4382395,380.9939267,0.10372095,11794.49161,890.8078,88.35607933,0.997288633,17.16112,0.10372095,88.35607933,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 4:00,28785644,3597.512,6.416438,380.8882,0.10372095,164.71591,795.3527,17.661684,0.8360905,17.150555,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 5:00,28792756,3597.512,6.3759003,380.68753,0.10372095,612.88226,838.11993,46.26926,50.09418,17.149166,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 6:00,28792844,3597.512,6.3757954,380.68878,0.10372095,174.15968,809.5977,17.661684,51.23063,17.154617,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 7:00,28796496,3597.512,1830.8557,474.33167,50.506348,38949.336,1106.4932,335.3763,34.68966,213.42085,50.506348,335.3763,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 8:00,28800000,3597.512,996.87494,447.13425,52.259544,47156.906,1443.8763,464.2077,1.5684379,44.85926,52.259544,464.2077,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 9:00,28803654,3597.512,1269.47732,463.633225,52.724052,46986.608,1476.1016,483.72673,1.5431134,145.160455,52.724052,483.72673,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 10:00,28807308,3597.512,1542.0797,480.1322,53.18856,46816.31,1508.3269,503.24576,1.5177889,245.46165,53.18856,503.24576,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 11:00,28810952,3597.512,1322.3275,465.90588,53.173923,45727.246,1458.7982,510.61368,2.2952018,132.27893,53.173923,510.61368,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 12:00,28815192,3597.512,1233.3997,458.2237,54.14095,46905.742,1927.6398,496.47662,30.146198,85.98435,54.14095,496.47662,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 13:00,28819634,3597.512,1145.24832,453.8090333,53.71016667,45626.54933,1732.722467,479.6648733,20.49738247,71.78298433,53.71016667,479.6648733,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 14:00,28824076,3597.512,1057.09694,449.3943667,53.27938333,44347.35667,1537.805133,462.8531267,10.84856693,57.58161867,53.27938333,462.8531267,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 15:00,28828518,3597.512,968.94556,444.9797,52.8486,43068.164,1342.8878,446.04138,1.1997514,43.380253,52.8486,446.04138,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 16:00,28830521,3597.512,975.69038,444.50308,53.19162,43101.379,1305.4261,445.05569,1.074725075,41.2704085,53.19162,445.05569,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 17:00,28832524,3597.512,982.4352,444.02646,53.53464,43134.594,1267.9644,444.07,0.94969875,39.160564,53.53464,444.07,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 18:00,28837830,3597.512,913.014475,444.030395,52.6232315,46940.6095,1634.5177,535.78975,90.98433937,42.011272,52.6232315,535.78975,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 19:00,28843136,3597.512,843.59375,444.03433,51.711823,50746.625,2001.071,627.5095,181.01898,44.86198,51.711823,627.5095,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 20:00,28844036,3597.512,247.58856,390.76678,1.1324213,50309.145,1994.9497,616.0868,213.61534,37.597027,1.1324213,616.0868,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 21:00,28850326,3597.512,231.14952,384.1455,0.9341241,49204.242,1881.2766,586.03436,5.108474,23.78872,0.9341241,586.03436,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 22:00,28852212,3597.512,118.8189385,383.42,0.518922525,47998.117,1727.05535,543.228745,3.5896238,23.295238,0.518922525,543.228745,130901.3,73179.4,-15784.6,-201976.5
+11/30/2023 23:00,28854098,3597.512,6.488357,382.6945,0.10372095,46791.992,1572.8341,500.42313,2.0707736,22.801756,0.10372095,500.42313,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 0:00,28861102,3597.512,6.4890823,382.35852,0.10372095,40840.297,1317.1777,385.217,2.0106745,22.456886,0.10372095,385.217,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 1:00,28862002,3597.512,6.4792895,382.3351,0.10372095,34987.76,1144.1274,228.66911,1.815982,22.447386,0.10372095,228.66911,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 2:00,28865350.67,3597.512,6.457551,382.2645,0.10372095,23380.07397,1036.0091,158.3333013,1.533622653,22.438634,0.10372095,158.3333013,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 3:00,28868699.33,3597.512,6.4358125,382.1939,0.10372095,11772.38795,927.8908,87.99749267,1.251263307,22.429882,0.10372095,87.99749267,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 4:00,28872048,3597.512,6.414074,382.1233,0.10372095,164.70192,819.7725,17.661684,0.96890396,22.42113,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 5:00,28879152,3597.512,6.373572,381.98813,0.10372095,521.96844,840.42706,46.26926,26.729277,22.420113,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 6:00,28879252,3597.512,6.373448,381.98996,0.10372095,179.23776,811.5988,17.661684,27.208288,22.426723,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 7:00,28882866,3597.512,1236.5013,453.81012,50.506348,38875.586,1104.8853,334.0429,17.643744,89.05514,50.506348,334.0429,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 8:00,28887149.5,3597.512,985.97669,436.4194725,38.122666,41445.123,1300.257125,396.9215325,15.4507665,72.76619075,38.122666,396.9215325,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 9:00,28891433,3597.512,735.45208,419.028825,25.738984,44014.66,1495.62895,459.800165,13.257789,56.4772415,25.738984,459.800165,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 10:00,28895716.5,3597.512,484.92747,401.6381775,13.355302,46584.197,1691.000775,522.6787975,11.0648115,40.18829225,13.355302,522.6787975,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 11:00,28900000,3597.512,234.40286,384.24753,0.97162,49153.734,1886.3726,585.55743,8.871834,23.899343,0.97162,585.55743,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 12:00,28903824.67,3597.512,369.7138067,397.63052,18.29489,46944.50933,1841.331733,528.4447,11.881663,18.97023833,18.29489,528.4447,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 13:00,28907649.33,3597.512,505.0247533,411.01351,35.61816,44735.28467,1796.290867,471.33197,14.891492,14.04113367,35.61816,471.33197,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 14:00,28911474,3597.512,640.3357,424.3965,52.94143,42526.06,1751.25,414.21924,17.901321,9.112029,52.94143,414.21924,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 15:00,28914061.33,3597.512,695.8077433,426.9299433,53.13231833,42809.77167,1365.276347,423.4583333,12.01106381,12.06477367,53.13231833,423.4583333,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 16:00,28916648.67,3597.512,751.2797867,429.4633867,53.32320667,43093.48333,979.3026933,432.6974267,6.120806613,15.01751833,53.32320667,432.6974267,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 17:00,28919236,3597.512,806.75183,431.99683,53.514095,43377.195,593.32904,441.93652,0.23054942,17.970263,53.514095,441.93652,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 18:00,28924385,3597.512,796.103565,435.42374,52.6193225,46894.404,1348.05122,539.03496,186.3929547,26.6023745,52.6193225,539.03496,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 19:00,28929534,3597.512,785.4553,438.85065,51.72455,50411.613,2102.7734,636.1334,372.55536,35.234486,51.72455,636.1334,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 20:00,28930434,3597.512,246.64792,385.77054,1.1439073,50065.414,2078.3457,624.7327,308.67984,29.508144,1.1439073,624.7327,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 21:00,28934039,3597.512,218.301825,382.15871,0.8454059,49478.337,2018.80825,602.169725,188.04063,23.5919225,0.8454059,602.169725,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 22:00,28937644,3597.512,189.95573,378.54688,0.5469045,48891.26,1959.2708,579.60675,67.40142,17.675701,0.5469045,579.60675,130901.3,73179.4,-15784.6,-201976.5
+12/1/2023 23:00,28942586,3597.512,98.206159,377.93684,0.325312725,44902.597,1647.07705,483.463545,36.4309675,17.2107925,0.325312725,483.463545,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 0:00,28947528,3597.512,6.456588,377.3268,0.10372095,40913.934,1334.8833,387.32034,5.460515,16.745884,0.10372095,387.32034,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 1:00,28948428,3597.512,6.4468474,377.30624,0.10372095,34653.832,1154.5791,224.1775,4.7263813,16.735197,0.10372095,224.1775,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 2:00,28951764,3597.512,6.4255756,377.2508733,0.10372095,23157.39676,1047.4822,155.3388947,3.991348833,16.724669,0.10372095,155.3388947,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 3:00,28955100,3597.512,6.4043038,377.1955067,0.10372095,11660.96153,940.3853,86.50028933,3.256316367,16.714141,0.10372095,86.50028933,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 4:00,28958436,3597.512,6.383032,377.14014,0.10372095,164.52629,833.2884,17.661684,2.5212839,16.703613,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 5:00,28965564,3597.512,6.343342,377.03912,0.10372095,756.7421,877.4548,46.26926,116.34001,16.702192,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 6:00,28965986,3597.512,6.3429413,377.03412,0.10372095,1244.0381,847.6133,17.661684,109.18387,16.703463,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 7:00,28969258,3597.512,13.010117,96.47884,50.506348,39196.977,1355.5782,320.43024,87.1426,0.001708902,50.506348,320.43024,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 8:00,28976288,3597.512,34.97885,170.37723,50.506348,39304.715,1423.7664,364.9669,20.723217,0.015789878,50.506348,364.9669,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 9:00,28976584,3597.512,34.52559,167.68263,50.506348,39380.22,1412.2488,366.7186,18.412735,0.014984674,50.506348,366.7186,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 10:00,28983416,3597.512,29.80307,145.32924,50.506348,47170.31,1513.346,558.1009,12.9675255,0.009178823,50.506348,558.1009,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 11:00,28983742,3597.512,27.061138,134.17757,50.506348,47184.08,1502.7407,558.2548,13.17447,0.006844094,50.506348,558.2548,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 12:00,28988008,3597.512,6.1962276,45.16073,0.10372095,48425.57,1973.538,549.2102,11.584557,0.001639913,0.10372095,549.2102,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 13:00,28991379.33,3597.512,9.005986733,62.80929,16.90459663,47505.03333,1772.0768,524.5477,8.451439333,0.00170973,16.90459663,524.5477,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 14:00,28994750.67,3597.512,11.81574587,80.45785,33.70547232,46584.49667,1570.6156,499.8852,5.318321667,0.001779548,33.70547232,499.8852,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 15:00,28998122,3597.512,14.625505,98.10641,50.506348,45663.96,1369.1544,475.2227,2.185204,0.001849365,50.506348,475.2227,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 16:00,29001723.33,3597.512,72.62832333,201.3081133,50.506348,45792.93667,1318.663633,490.1701133,2.1037762,0.260581077,50.506348,490.1701133,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 17:00,29005324.67,3597.512,130.6311417,304.5098167,50.506348,45921.91333,1268.172867,505.1175267,2.0223484,0.519312788,50.506348,505.1175267,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 18:00,29008926,3597.512,188.63396,407.71152,50.506348,46050.89,1217.6821,520.06494,1.9409206,0.7780445,50.506348,520.06494,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 19:00,29013378.5,3597.512,217.0861875,409.8798775,50.506348,45957.277,1340.4493,510.014175,2.08875895,2.007562475,50.506348,510.014175,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 20:00,29017831,3597.512,245.538415,412.048235,50.506348,45863.664,1463.2165,499.96341,2.2365973,3.23708045,50.506348,499.96341,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 21:00,29022283.5,3597.512,273.9906425,414.2165925,50.506348,45770.051,1585.9837,489.912645,2.38443565,4.466598425,50.506348,489.912645,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 22:00,29026736,3597.512,302.44287,416.38495,50.506348,45676.438,1708.7509,479.86188,2.532274,5.6961164,50.506348,479.86188,130901.3,73179.4,-15784.6,-201976.5
+12/2/2023 23:00,29026888,3597.512,302.10565,416.36572,50.506348,45562.508,1693.8069,475.81848,2.4877512,5.68318,50.506348,475.81848,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 0:00,29033912,3597.512,347.2924,419.28433,50.506348,42319.062,1352.0579,419.86908,2.8485663,8.165675,50.506348,419.86908,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 1:00,29034812,3597.512,343.31448,419.2317,50.506348,36129.04,1161.4955,249.15942,2.5325212,8.12685,50.506348,249.15942,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 2:00,29038154,3597.512,338.4620633,419.8359667,50.506348,24141.0553,1041.720333,171.993508,2.075325167,8.753918667,50.506348,171.993508,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 3:00,29041496,3597.512,333.6096467,420.4402333,50.506348,12153.07059,921.9451667,94.827596,1.618129133,9.380987333,50.506348,94.827596,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 4:00,29044838,3597.512,328.75723,421.0445,50.506348,165.08589,802.17,17.661684,1.1609331,10.008056,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 5:00,29048670,3597.512,324.310255,421.048115,50.506348,2111.904945,555.06115,28.908334,339.2836816,10.05581775,50.506348,28.908334,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 6:00,29052502,3597.512,319.86328,421.05173,50.506348,4058.724,307.9523,40.154984,677.40643,10.1035795,50.506348,40.154984,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 7:00,29059148,3597.512,379.00848,423.47403,50.506348,39631.1,1849.9519,366.03458,170.66554,12.93049,50.506348,366.03458,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 8:00,29060048,3597.512,371.49304,422.88535,50.506348,39068.984,1805.0857,324.96603,148.94408,12.234388,50.506348,324.96603,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 9:00,29062946,3597.512,330.42874,420.1464,50.506348,39132.332,1337.6937,324.8416,122.87809,9.294845,50.506348,324.8416,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 10:00,29068150,3597.512,250.07387,414.171635,50.506348,43792.7795,1347.4785,462.427665,61.80707055,5.22466275,50.506348,462.427665,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 11:00,29073354,3597.512,169.719,408.19687,50.506348,48453.227,1357.2633,600.01373,0.7360511,1.1544805,50.506348,600.01373,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 12:00,29073976,3597.512,165.44795,407.85327,50.506348,48353.336,1298.8169,551.8084,0.72521913,1.0387363,50.506348,551.8084,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 13:00,29078475,3597.512,176.49674,407.915925,50.506348,46277.502,1205.56545,491.254375,0.700998485,1.0755161,50.506348,491.254375,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 14:00,29082974,3597.512,187.54553,407.97858,50.506348,44201.668,1112.314,430.70035,0.67677784,1.1122959,50.506348,430.70035,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 15:00,29084782,3597.512,191.6626,408.12582,50.506348,43299.723,1062.9569,407.51334,0.630518,1.1707882,50.506348,407.51334,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 16:00,29088293.33,3597.512,258.2302467,411.9815333,50.506348,44213.50867,1095.238733,444.95676,0.625368383,3.838183133,50.506348,444.95676,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 17:00,29091804.67,3597.512,324.7978933,415.8372467,50.506348,45127.29433,1127.520567,482.40018,0.620218767,6.505578067,50.506348,482.40018,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 18:00,29095316,3597.512,391.36554,419.69296,50.506348,46041.08,1159.8024,519.8436,0.61506915,9.172973,50.506348,519.8436,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 19:00,29099176,3597.512,411.79935,422.31265,50.506348,48747.914,1894.7273,546.3567,12.645944,12.030234,50.506348,546.3567,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 20:00,29103012,3597.512,458.38321,425.048215,50.506348,47424.4435,1868.62665,515.034275,61.092282,15.8719445,50.506348,515.034275,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 21:00,29106848,3597.512,504.96707,427.78378,50.506348,46100.973,1842.526,483.71185,109.53862,19.713655,50.506348,483.71185,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 22:00,29111350.67,3597.512,499.44938,427.84444,50.506348,44404.522,1663.009333,437.7947667,79.385999,19.88212333,50.506348,437.7947667,130901.3,73179.4,-15784.6,-201976.5
+12/3/2023 23:00,29115853.33,3597.512,493.93169,427.9051,50.506348,42708.071,1483.492667,391.8776833,49.233378,20.05059167,50.506348,391.8776833,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 0:00,29120356,3597.512,488.414,427.96576,50.506348,41011.62,1303.976,345.9606,19.080757,20.21906,50.506348,345.9606,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 1:00,29123077.5,3597.512,482.17018,428.43922,50.506348,30800.10439,1193.373663,263.885871,16.81340613,21.0886825,50.506348,263.885871,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 2:00,29125799,3597.512,475.92636,428.91268,50.506348,20588.58878,1082.771325,181.811142,14.54605525,21.958305,50.506348,181.811142,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 3:00,29128520.5,3597.512,469.68254,429.38614,50.506348,10377.07317,972.1689875,99.736413,12.27870438,22.8279275,50.506348,99.736413,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 4:00,29131242,3597.512,463.43872,429.8596,50.506348,165.55756,861.56665,17.661684,10.0113535,23.69755,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 5:00,29135000,3597.512,489.514585,429.51465,50.506348,1836.79843,912.646475,33.1641855,402.4339767,23.1336375,50.506348,33.1641855,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 6:00,29138758,3597.512,515.59045,429.1697,50.506348,3508.0393,963.7263,48.666687,794.8566,22.569725,50.506348,48.666687,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 7:00,29143873,3597.512,2691.682925,506.0986,51.776503,27318.69365,1303.961,343.8225935,535.85724,2189.756062,51.776503,343.8225935,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 8:00,29148988,3597.512,4867.7754,583.0275,53.046658,51129.348,1644.1957,638.9785,276.85788,4356.9424,53.046658,638.9785,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 9:00,29151543.33,3597.512,4075.311533,562.9472333,53.090953,49725.60867,1539.584033,597.7229333,197.9811467,3268.124967,53.090953,597.7229333,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 10:00,29154098.67,3597.512,3282.847667,542.8669667,53.135248,48321.86933,1434.972367,556.4673667,119.1044133,2179.307533,53.135248,556.4673667,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 11:00,29156654,3597.512,2490.3838,522.7867,53.179543,46918.13,1330.3607,515.2118,40.22768,1090.4901,53.179543,515.2118,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 12:00,29160824,3597.512,1993.3365,539.8589,54.134865,48168.91,1919.9316,492.27795,12.856462,491.667,54.134865,492.27795,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 13:00,29165743,3597.512,1526.2531,508.99115,53.522381,45775.486,1727.385,451.71086,9.7036545,279.93884,53.522381,451.71086,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 14:00,29170662,3597.512,1059.1697,478.1234,52.909897,43382.062,1534.8384,411.14377,6.550847,68.21068,52.909897,411.14377,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 15:00,29173149.33,3597.512,1000.55165,471.41384,53.12853633,43524.11933,1460.034167,424.5851233,4.978963233,53.94758867,53.12853633,424.5851233,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 16:00,29175636.67,3597.512,941.9336,464.70428,53.34717567,43666.17667,1385.229933,438.0264767,3.407079467,39.68449733,53.34717567,438.0264767,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 17:00,29178124,3597.512,883.31555,457.99472,53.565815,43808.234,1310.4257,451.46783,1.8351957,25.421406,53.565815,451.46783,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 18:00,29183431,3597.512,904.410225,461.16179,52.6400525,47553.807,1689.0246,538.543665,34.98374285,42.982256,52.6400525,538.543665,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 19:00,29188738,3597.512,925.5049,464.32886,51.71429,51299.38,2067.6235,625.6195,68.13229,60.543106,51.71429,625.6195,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 20:00,29189638,3597.512,249.96072,410.55325,1.1351318,50891.918,2076.3691,615.56464,129.99515,50.829517,1.1351318,615.56464,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 21:00,29193043,3597.512,233.237745,406.17706,0.94652797,50196.129,2031.9409,602.891785,73.067335,42.0915295,0.94652797,602.891785,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 22:00,29196448,3597.512,216.51477,401.80087,0.75792414,49500.34,1987.5127,590.21893,16.13952,33.353542,0.75792414,590.21893,130901.3,73179.4,-15784.6,-201976.5
+12/4/2023 23:00,29200000,3597.512,4274.5054,575.22125,53.101734,50440.203,1579.9626,616.9587,196.38663,3732.879,53.101734,616.9587,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 0:00,29204134,3597.512,6.257019,398.89795,0.10372095,42286.15,1254.2067,410.23456,7.986753,32.253845,0.10372095,410.23456,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 1:00,29207508.5,3597.512,37.49873425,403.5825125,12.70437771,31756.00178,1121.62756,312.091341,6.369268525,24.29111391,12.70437771,312.091341,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 2:00,29210883,3597.512,68.7404495,408.267075,25.30503448,21225.85357,989.04842,213.948122,4.75178405,16.32838281,25.30503448,213.948122,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 3:00,29214257.5,3597.512,99.98216475,412.9516375,37.90569124,10695.70535,856.46928,115.804903,3.134299575,8.365651723,37.90569124,115.804903,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 4:00,29217632,3597.512,131.22388,417.6362,50.506348,165.55713,723.89014,17.661684,1.5168151,0.40292063,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 5:00,29222108,3597.512,184.66914,420.08804,50.506348,3026.7363,860.4102,53.835274,634.55054,1.2031642,50.506348,53.835274,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 6:00,29226539.33,3597.512,1241.615593,466.4698267,51.35675867,19080.3022,1126.572633,251.050916,511.8096133,677.5395761,51.35675867,251.050916,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 7:00,29230970.67,3597.512,2298.562047,512.8516133,52.20716933,35133.8681,1392.735067,448.266558,389.0686867,1353.875988,52.20716933,448.266558,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 8:00,29235402,3597.512,3355.5085,559.2334,53.05758,51187.434,1658.8975,645.4822,266.32776,2030.2124,53.05758,645.4822,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 9:00,29236028,3597.512,3188.406,554.9552,53.089375,51250.8,883.8272,627.60474,217.84486,1835.2449,53.089375,627.60474,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 10:00,29242708,3597.512,2311.8904,517.6071,53.180923,47289.184,1563.1339,516.5959,117.94901,730.00275,53.180923,516.5959,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 11:00,29242966,3597.512,2286.4587,516.4207,53.183746,47316.195,1549.2614,516.6732,124.64426,706.4301,53.183746,516.6732,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 12:00,29249554,3597.512,1839.7135,490.79013,54.736393,46673.02,2029.5627,521.5185,275.75055,293.3958,54.736393,521.5185,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 13:00,29250454,3597.512,1808.5669,489.18127,54.765804,45988.363,1998.237,471.07773,406.03845,276.1756,54.765804,471.07773,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 14:00,29255533,3597.512,1631.9088,481.074245,53.825402,45248.07,1741.66225,463.354165,235.2777,216.15226,53.825402,463.354165,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 15:00,29260612,3597.512,1455.2507,472.96722,52.885,44507.777,1485.0875,455.6306,64.51695,156.12892,52.885,455.6306,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 16:00,29261068,3597.512,1460.4612,473.03882,52.89337,44623.277,1474.3965,455.52203,85.69858,156.81825,52.89337,455.52203,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 17:00,29267732,3597.512,1781.301,481.07013,52.27379,46925.168,1458.4568,513.0904,91.966995,232.45009,52.27379,513.0904,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 18:00,29268054,3597.512,1823.8857,482.60428,52.25208,47181.52,1452.337,521.3665,79.70034,247.82011,52.25208,521.3665,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 19:00,29275146,3597.512,1114.27,467.60263,51.718777,51483.82,2242.49,657.67664,919.4771,134.49593,51.718777,657.67664,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 20:00,29276046,3597.512,249.76807,413.5033,1.1396871,50976.812,2229.5474,644.4298,931.19446,113.70649,1.1396871,644.4298,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 21:00,29279158,3597.512,262.33224,408.4267,1.308782,48084.773,2146.592,563.63403,919.9265,87.71332,1.308782,563.63403,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 22:00,29285744,3597.512,8.961634,405.3479,0.10372095,48030.48,1522.5756,569.261,7.8310685,80.95043,0.10372095,569.261,130901.3,73179.4,-15784.6,-201976.5
+12/5/2023 23:00,29289088,3597.512,18.78336867,329.4747633,16.90459663,34597.051,1285.445747,394.93042,7.042548667,53.97261021,16.90459663,394.93042,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 0:00,29292432,3597.512,28.60510333,253.6016267,33.70547232,21163.622,1048.315893,220.59984,6.254028833,26.99479042,33.70547232,220.59984,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 1:00,29295776,3597.512,38.426838,177.72849,50.506348,7730.193,811.18604,46.26926,5.465509,0.01697063,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 2:00,29300000,3597.512,1826.8911,489.9808,54.765545,46231.66,1993.7,474.47934,346.5745,284.4767,54.765545,474.47934,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 3:00,29302014,3597.512,1019.8787,452.27554,52.6359465,23199.45014,1351.38765,246.070512,174.4160559,143.010971,52.6359465,246.070512,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 4:00,29304028,3597.512,212.8663,414.57028,50.506348,167.24028,709.0753,17.661684,2.2576118,1.545242,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 5:00,29308424,3597.512,264.54214,418.87097,50.506348,4396.311,904.8409,96.23875,1176.2822,4.2055306,50.506348,96.23875,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 6:00,29312372,3597.512,632.389,429.9958,50.506348,11175.731,861.4378,48.893997,1690.6497,15.07332,50.506348,48.893997,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 7:00,29317112,3597.512,1884.8848,487.100135,51.816166,31291.4125,1258.08505,350.1165235,985.15813,816.09411,51.816166,350.1165235,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 8:00,29321852,3597.512,3137.3806,544.20447,53.125984,51407.094,1654.7323,651.33905,279.66656,1617.1149,53.125984,651.33905,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 9:00,29322124,3597.512,3079.6633,542.66364,53.138317,51304.62,1636.206,647.25726,257.3219,1558.3309,53.138317,647.25726,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 10:00,29329076,3597.512,2113.5315,504.72562,53.19147,47332.37,1577.222,520.0858,99.78734,582.1244,53.19147,520.0858,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 11:00,29329358,3597.512,2082.4243,503.16785,53.19397,47348.348,1558.6968,520.5733,101.702156,555.16644,53.19397,520.5733,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 12:00,29333638,3597.512,1772.3234,485.02667,54.19859,47905.39,1974.72,507.50244,61.148502,287.28336,54.19859,507.50244,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 13:00,29338100,3597.512,1640.632433,478.5497467,53.765342,46654.00333,1811.296033,490.3406367,49.16097433,236.56994,53.765342,490.3406367,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 14:00,29342562,3597.512,1508.941467,472.0728233,53.332094,45402.61667,1647.872067,473.1788333,37.17344667,185.85652,53.332094,473.1788333,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 15:00,29347024,3597.512,1377.2505,465.5959,52.898846,44151.23,1484.4481,456.01703,25.185919,135.1431,52.898846,456.01703,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 16:00,29347834,3597.512,1381.9182,465.4216,52.95043,44497.965,638.83435,447.28998,37.902016,133.87856,52.95043,447.28998,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 17:00,29352643,3597.512,1758.0697,477.410965,52.599015,47136.6825,1408.784675,538.41694,336.456988,254.32973,52.599015,538.41694,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 18:00,29357452,3597.512,2134.2212,489.40033,52.2476,49775.4,2178.735,629.5439,635.01196,374.7809,52.2476,629.5439,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 19:00,29358352,3597.512,2174.4749,493.45602,52.228516,50232.98,2180.6953,611.90454,852.83563,432.3353,52.228516,611.90454,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 20:00,29362444,3597.512,248.6131,407.39627,1.1500537,51088.68,2241.0928,658.5369,1068.1652,100.82786,1.1500537,658.5369,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 21:00,29365876,3597.512,230.333815,403.92447,0.942692975,50419.174,2161.0129,653.20372,550.844125,86.334855,0.942692975,653.20372,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 22:00,29369308,3597.512,212.05453,400.45267,0.73533225,49749.668,2080.933,647.87054,33.52305,71.84185,0.73533225,647.87054,130901.3,73179.4,-15784.6,-201976.5
+12/6/2023 23:00,29373894,3597.512,252.55262,406.19149,17.32567083,33391.92698,1662.929267,447.33678,33.95593233,49.6075231,17.32567083,447.33678,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 0:00,29378480,3597.512,293.05071,411.93031,33.91600942,17034.18597,1244.925533,246.80302,34.38881467,27.3731962,33.91600942,246.80302,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 1:00,29383066,3597.512,333.5488,417.66913,50.506348,676.44495,826.9218,46.26926,34.821697,5.1388693,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 2:00,29383966,3597.512,336.46997,418.73145,50.506348,165.23344,786.57666,17.661684,29.27682,5.9308157,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 3:00,29387196,3597.512,352.237135,421.676575,50.506348,163.35832,758.89628,17.661684,24.4162345,8.79368435,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 4:00,29390426,3597.512,368.0043,424.6217,50.506348,161.4832,731.2159,17.661684,19.555649,11.656553,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 5:00,29394758,3597.512,382.70493,426.8312,50.506348,5870.6772,980.1734,160.23314,1775.0356,14.513502,50.506348,160.23314,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 6:00,29400000,3597.512,1392.3047,465.60175,53.583416,46150.746,1160.7424,429.36728,59.469337,131.52176,53.583416,429.36728,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 7:00,29404073,3597.512,2866.14405,520.124605,53.3149355,49520.0665,1427.3097,540.09572,743.0695685,1812.08888,53.3149355,540.09572,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 8:00,29408146,3597.512,4339.9834,574.64746,53.046455,52889.387,1693.877,650.82416,1426.6698,3492.656,53.046455,650.82416,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 9:00,29408528,3597.512,4189.174,572.2882,53.06446,52710.57,1670.9349,645.81177,1336.097,3318.7793,53.06446,645.81177,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 10:00,29415472,3597.512,2498.171,522.6688,53.170612,48176.176,1614.9872,521.36383,384.69385,1024.489,53.170612,521.36383,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 11:00,29415772,3597.512,2458.513,520.4358,53.17404,48177.83,1593.1865,521.8747,374.87274,967.8298,53.17404,521.8747,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 12:00,29422636,3597.512,1885.5897,487.56033,54.776333,46994.74,2049.4778,521.3053,325.0011,340.47516,54.776333,521.3053,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 13:00,29423536,3597.512,1795.7908,483.59525,54.774693,46227.562,2010.1318,471.81586,404.88406,293.54028,54.774693,471.81586,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 14:00,29428495,3597.512,1507.4332,469.151075,53.8254615,45367.576,1737.51145,464.09621,213.837641,190.763903,53.8254615,464.09621,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 15:00,29433454,3597.512,1219.0756,454.7069,52.87623,44507.59,1464.8911,456.37656,22.791222,87.987526,52.87623,456.37656,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 16:00,29435379,3597.512,1252.73415,454.89655,53.230715,44531.08,1428.6629,455.21623,30.6067375,87.407711,53.230715,455.21623,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 17:00,29437304,3597.512,1286.3927,455.0862,53.5852,44554.57,1392.4347,454.0559,38.422253,86.827896,53.5852,454.0559,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 18:00,29444052,3597.512,2129.4253,486.46988,52.242737,49887.95,2182.3398,629.3317,691.4839,364.84705,52.242737,629.3317,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 19:00,29444952,3597.512,2109.1338,489.6696,52.2018,50235.05,2178.3984,608.0733,892.2341,409.4018,52.2018,608.0733,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 20:00,29448844,3597.512,249.22626,403.88318,1.1477481,50862.16,2224.3577,646.06476,1028.7592,93.81871,1.1477481,646.06476,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 21:00,29452209,3597.512,234.18139,400.48559,0.973758125,50431.611,2156.52005,650.31468,535.007265,80.10513,0.973758125,650.31468,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 22:00,29455574,3597.512,219.13652,397.088,0.79976815,50001.062,2088.6824,654.5646,41.25533,66.39155,0.79976815,654.5646,130901.3,73179.4,-15784.6,-201976.5
+12/7/2023 23:00,29460188.67,3597.512,220.0533467,401.12199,17.3686281,33555.37257,1660.990417,451.7994867,30.54992533,44.6865552,17.3686281,451.7994867,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 0:00,29464803.33,3597.512,220.9701733,405.15598,33.93748805,17109.68313,1233.298433,249.0343733,19.84452067,22.9815604,33.93748805,249.0343733,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 1:00,29469418,3597.512,221.887,409.18997,50.506348,663.9937,805.60645,46.26926,9.139116,1.2765656,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 2:00,29470318,3597.512,238.83713,410.21063,50.506348,169.79312,766.3583,17.661684,7.6667266,1.7175609,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 3:00,29473573,3597.512,309.30429,416.205045,50.506348,167.878065,738.91432,17.661684,5.9514015,6.36096945,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 4:00,29476828,3597.512,379.77145,422.19946,50.506348,165.96301,711.47034,17.661684,4.2360764,11.004378,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 5:00,29481152,3597.512,453.78958,428.85736,50.506348,5139.844,935.17395,123.34943,1422.0282,20.17874,50.506348,123.34943,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 6:00,29484844,3597.512,855.3046,439.86472,50.506348,8788.344,867.59204,88.424324,2739.1152,44.993404,50.506348,88.424324,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 7:00,29489693,3597.512,2480.3033,503.95141,51.782084,30554.247,1271.72242,370.879912,1758.17677,1590.832902,51.782084,370.879912,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 8:00,29494542,3597.512,4105.302,568.0381,53.05782,52320.15,1675.8528,653.3355,777.23834,3136.6724,53.05782,653.3355,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 9:00,29494926,3597.512,3961.968,565.6043,53.07665,52154.582,1651.5929,648.3325,703.7609,2967.823,53.07665,648.3325,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 10:00,29500000,3597.512,256.58124,400.9444,1.2455115,49394.715,2179.7078,601.8254,1030.3318,79.88628,1.2455115,601.8254,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 11:00,29502148,3597.512,2222.8848,510.71518,53.19107,47880.1,1571.1017,524.4027,165.06627,780.81885,53.19107,524.4027,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 12:00,29508726,3597.512,1757.7434,477.90826,54.78293,47002.51,1964.0345,485.3971,137.85498,249.65749,54.78293,485.3971,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 13:00,29510990,3597.512,1651.28595,473.137295,54.566735,45972.581,1932.28335,465.039815,108.96101,210.020515,54.566735,465.039815,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 14:00,29513254,3597.512,1544.8285,468.36633,54.35054,44942.652,1900.5322,444.68253,80.06704,170.38354,54.35054,444.68253,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 15:00,29519872,3597.512,1372.1956,460.16306,52.884872,44329.855,1483.7748,458.10275,6.151254,125.25669,52.884872,458.10275,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 16:00,29520424,3597.512,1370.8816,459.9493,52.910168,44400.973,1473.1355,458.14587,8.473937,123.86549,52.910168,458.14587,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 17:00,29525440,3597.512,1727.27175,472.20248,52.578629,47349.7165,1808.95055,549.116135,166.0924085,240.723345,52.578629,549.116135,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 18:00,29530456,3597.512,2083.6619,484.45566,52.24709,50298.46,2144.7656,640.0864,323.71088,357.5812,52.24709,640.0864,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 19:00,29531356,3597.512,2055.6248,487.07098,52.20455,50804.797,2138.2317,619.21326,425.04642,393.40778,52.20455,619.21326,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 20:00,29535242,3597.512,249.79214,401.43243,1.145681,51483.402,2227.7432,659.4866,921.7591,88.9527,1.145681,659.4866,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 21:00,29538578,3597.512,261.96063,396.3455,1.3098931,48462.65,2144.2573,574.1272,956.9257,66.77306,1.3098931,574.1272,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 22:00,29543558,3597.512,95.448326,393.73358,0.10372095,49399.2,1937.0668,621.9917,2.8699522,61.790657,0.10372095,621.9917,130901.3,73179.4,-15784.6,-201976.5
+12/8/2023 23:00,29547630,3597.512,103.107814,396.9539533,16.90459663,33177.6532,1557.802067,430.08422,3.230841067,41.27178612,16.90459663,430.08422,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 0:00,29551702,3597.512,110.767302,400.1743267,33.70547232,16956.1064,1178.537333,238.17674,3.591729933,20.75291525,33.70547232,238.17674,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 1:00,29555774,3597.512,118.42679,403.3947,50.506348,734.5596,799.2726,46.26926,3.9526188,0.23404437,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 2:00,29556674,3597.512,130.41452,403.9135,50.506348,169.80128,760.6162,17.661684,3.3458073,0.30182353,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 3:00,29559951,3597.512,187.474335,407.36451,50.506348,167.88149,733.36285,17.661684,2.4850965,1.564358665,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 4:00,29563228,3597.512,244.53415,410.81552,50.506348,165.9617,706.1095,17.661684,1.6243857,2.8268938,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 5:00,29567108,3597.512,271.526305,413.75955,50.506348,3304.965,802.84555,51.232972,1161.320993,4.9297954,50.506348,51.232972,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 6:00,29570988,3597.512,298.51846,416.70358,50.506348,6443.9683,899.5816,84.80426,2321.0176,7.032697,50.506348,84.80426,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 7:00,29576005,3597.512,343.94212,419.07922,50.506348,23567.21065,1147.941,228.30073,1289.70975,9.455536,50.506348,228.30073,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 8:00,29581022,3597.512,389.36578,421.45486,50.506348,40690.453,1396.3004,371.7972,258.4019,11.878375,50.506348,371.7972,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 9:00,29581586,3597.512,386.356,421.12204,50.506348,41200.69,618.4292,368.69058,208.4546,11.50451,50.506348,368.69058,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 10:00,29588308,3597.512,388.46255,420.7105,50.506348,49105.797,1639.409,570.3241,246.16661,11.133093,50.506348,570.3241,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 11:00,29588596,3597.512,385.12384,420.38995,50.506348,49135.67,1623.5801,570.32477,251.09943,10.783965,50.506348,570.32477,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 12:00,29592397.33,3597.512,266.2213087,324.9720267,50.506348,47100.60433,1510.269333,518.6258367,188.4002127,7.191660195,50.506348,518.6258367,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 13:00,29596198.67,3597.512,147.3187773,229.5541033,50.506348,45065.53867,1396.958567,466.9269033,125.7009953,3.59935539,50.506348,466.9269033,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 14:00,29600000,3597.512,28.416246,134.13618,50.506348,43030.473,1283.6478,415.22797,63.001778,0.007050585,50.506348,415.22797,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 15:00,29603940.75,3597.512,146.9605528,173.7000075,50.506348,43504.14888,1368.686513,430.0735238,56.88045819,11.74205301,50.506348,430.0735238,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 16:00,29607881.5,3597.512,265.5048595,213.263835,50.506348,43977.82475,1453.725225,444.9190775,50.75913838,23.47705544,50.506348,444.9190775,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 17:00,29611822.25,3597.512,384.0491663,252.8276625,50.506348,44451.50063,1538.763937,459.7646313,44.63781856,35.21205787,50.506348,459.7646313,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 18:00,29615763,3597.512,502.593473,292.39149,50.506348,44925.1765,1623.80265,474.610185,38.51649875,46.94706029,50.506348,474.610185,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 19:00,29619703.75,3597.512,621.1377798,331.9553175,50.506348,45398.85237,1708.841362,489.4557388,32.39517894,58.68206272,50.506348,489.4557388,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 20:00,29623644.5,3597.512,739.6820865,371.519145,50.506348,45872.52825,1793.880075,504.3012925,26.27385913,70.41706515,50.506348,504.3012925,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 21:00,29627585.25,3597.512,858.2263933,411.0829725,50.506348,46346.20413,1878.918788,519.1468463,20.15253931,82.15206757,50.506348,519.1468463,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 22:00,29631526,3597.512,976.7707,450.6468,50.506348,46819.88,1963.9575,533.9924,14.0312195,93.88707,50.506348,533.9924,130901.3,73179.4,-15784.6,-201976.5
+12/9/2023 23:00,29635120,3597.512,1020.215667,452.7751133,50.506348,31293.86394,1620.777967,361.8821613,15.18609967,105.8868,50.506348,361.8821613,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 0:00,29638714,3597.512,1063.660633,454.9034267,50.506348,15767.84788,1277.598433,189.7719227,16.34097983,117.88653,50.506348,189.7719227,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 1:00,29642308,3597.512,1107.1056,457.03174,50.506348,241.83182,934.4189,17.661684,17.49586,129.88626,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 2:00,29644747.33,3597.512,1039.442083,455.7353833,50.506348,216.75137,899.7217,17.661684,14.589201,122.49776,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 3:00,29647186.67,3597.512,971.7785667,454.4390267,50.506348,191.67092,865.0245,17.661684,11.682542,115.10926,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 4:00,29649626,3597.512,904.11505,453.14267,50.506348,166.59047,830.3273,17.661684,8.775883,107.72076,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 5:00,29653485,3597.512,967.816375,455.78546,50.506348,3860.240235,952.21005,82.149812,1820.636942,123.744255,50.506348,82.149812,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 6:00,29657344,3597.512,1031.5177,458.42825,50.506348,7553.89,1074.0928,146.63794,3632.498,139.76775,50.506348,146.63794,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 7:00,29662351,3597.512,1103.6295,460.060195,50.506348,24648.5115,1240.60595,258.8425,2324.28202,151.44157,50.506348,258.8425,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 8:00,29667358,3597.512,1175.7413,461.69214,50.506348,41743.133,1407.1191,371.04706,1016.06604,163.11539,50.506348,371.04706,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 9:00,29670165,3597.512,1052.18875,455.190835,50.506348,44037.21225,1411.773475,430.508495,862.5155475,132.3605313,50.506348,430.508495,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 10:00,29672972,3597.512,928.6362,448.68953,50.506348,46331.2915,1416.42785,489.96993,708.965055,101.6056725,50.506348,489.96993,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 11:00,29675779,3597.512,805.08365,442.188225,50.506348,48625.37075,1421.082225,549.431365,555.4145625,70.85081375,50.506348,549.431365,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 12:00,29678586,3597.512,681.5311,435.68692,50.506348,50919.45,1425.7366,608.8928,401.86407,40.095955,50.506348,608.8928,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 13:00,29683861,3597.512,536.889435,427.74147,50.506348,47786.21,1550.08925,535.5038,212.8870225,25.6897445,50.506348,535.5038,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 14:00,29689136,3597.512,392.24777,419.79602,50.506348,44652.97,1674.4419,462.1148,23.909975,11.283534,50.506348,462.1148,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 15:00,29691337,3597.512,399.018585,419.94181,50.506348,44824.2235,1579.6051,461.61096,43.3759075,11.4713295,50.506348,461.61096,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 16:00,29693538,3597.512,405.7894,420.0876,50.506348,44995.477,1484.7683,461.10712,62.84184,11.659125,50.506348,461.10712,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 17:00,29696886,3597.512,416.0248,420.7332,50.506348,47194.43,835.68414,425.5227,51.353577,12.449267,50.506348,425.5227,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 18:00,29700000,3597.512,902.1222,453.37283,50.506348,311.61768,832.4009,46.26926,0.81603146,109.0049,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 19:00,29704778,3597.512,923.9627667,451.6597067,50.506348,16698.49379,1235.540433,236.5434067,4.728272973,101.3897947,50.506348,236.5434067,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 20:00,29709556,3597.512,945.8033333,449.9465833,50.506348,33085.36989,1638.679967,426.8175533,8.640514487,93.77468933,50.506348,426.8175533,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 21:00,29714334,3597.512,967.6439,448.23346,50.506348,49472.246,2041.8195,617.0917,12.552756,86.159584,50.506348,617.0917,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 22:00,29717917.5,3597.512,1003.64005,450.480255,50.506348,37262.70751,1773.8434,474.38609,14.67132575,98.6482305,50.506348,474.38609,130901.3,73179.4,-15784.6,-201976.5
+12/10/2023 23:00,29721501,3597.512,1039.6362,452.72705,50.506348,25053.16902,1505.8673,331.68048,16.7898955,111.136877,50.506348,331.68048,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 0:00,29725084.5,3597.512,1075.63235,454.973845,50.506348,12843.63053,1237.8912,188.97487,18.90846525,123.6255235,50.506348,188.97487,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 1:00,29728668,3597.512,1111.6285,457.22064,50.506348,634.09204,969.9151,46.26926,21.027035,136.11417,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 2:00,29729568,3597.512,1098.74,457.48077,50.506348,170.63304,925.81213,17.661684,17.674572,137.84314,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 3:00,29732797,3597.512,1027.92597,456.698135,50.506348,168.731055,888.955565,17.661684,14.417548,133.06225,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 4:00,29736026,3597.512,957.11194,455.9155,50.506348,166.82907,852.099,17.661684,11.160524,128.28136,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 5:00,29739782,3597.512,1027.12377,455.861925,50.506348,3067.176535,967.49605,77.075922,1623.379462,128.13895,50.506348,77.075922,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 6:00,29743538,3597.512,1097.1356,455.80835,50.506348,5967.524,1082.8931,136.49016,3235.5984,127.99654,50.506348,136.49016,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 7:00,29748623,3597.512,4974.0978,614.635425,101.247564,29757.604,1375.65335,393.35658,2211.2068,7331.84202,101.247564,393.35658,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 8:00,29753708,3597.512,8851.06,773.4625,151.98878,53547.684,1668.4136,650.223,1186.8152,14535.6875,151.98878,650.223,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 9:00,29754134,3597.512,8598.604,761.034,141.8613,53397.926,1648.9639,645.099,1105.2028,14191.187,141.8613,645.099,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 10:00,29761066,3597.512,5154.3877,608.1638,53.170605,49045.867,1612.6128,521.46844,491.47678,6701.29,53.170605,521.46844,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 11:00,29762962,3597.512,4573.7169,590.13585,53.5702575,49377.836,1540.03185,541.60232,317.15041,5142.7933,53.5702575,541.60232,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 12:00,29764858,3597.512,3993.0461,572.1079,53.96991,49709.805,1467.4509,561.7362,142.82404,3584.2966,53.96991,561.7362,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 13:00,29768662,3597.512,3263.8352,546.6072,54.800476,47315.484,2014.8813,477.26694,384.0958,1963.226,54.800476,477.26694,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 14:00,29772606,3597.512,2471.1494,515.9446,54.265423,45915.62,661.3862,478.6166,0.076936625,942.80347,54.265423,478.6166,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 15:00,29778926,3597.512,1756.8491,479.00394,52.871994,45096.406,1299.8601,456.9704,11.059632,313.76834,52.871994,456.9704,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 16:00,29780911,3597.512,1769.271,476.03215,53.23238,45169.037,1279.26915,458.28798,16.7757045,277.94706,53.23238,458.28798,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 17:00,29782896,3597.512,1781.6929,473.06036,53.592766,45241.668,1258.6782,459.60556,22.491777,242.12578,53.592766,459.60556,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 18:00,29789766,3597.512,2727.421,504.31232,52.245636,51003.523,2167.0833,645.5754,412.82565,730.4568,52.245636,645.5754,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 19:00,29790666,3597.512,2610.0503,505.94876,52.188908,51224.523,2147.6777,617.8002,483.4681,765.8021,52.188908,617.8002,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 20:00,29794448,3597.512,251.98419,412.4673,1.1423634,51467.01,2165.004,638.23724,482.03818,172.07271,1.1423634,638.23724,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 21:00,29797454,3597.512,274.33737,106.407646,51.95715,49071.05,2147.3364,573.25006,977.5746,0.002707486,51.95715,573.25006,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 22:00,29804114,3597.512,221.91025,406.40112,50.506348,49154.348,1537.1263,584.8065,13.636449,1.6628395,50.506348,584.8065,130901.3,73179.4,-15784.6,-201976.5
+12/11/2023 23:00,29807776.67,3597.512,303.6212333,411.5953567,50.506348,32852.87722,1287.381747,395.758228,15.23699767,6.185938333,50.506348,395.758228,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 0:00,29811439.33,3597.512,385.3322167,416.7895933,50.506348,16551.40645,1037.637193,206.709956,16.83754633,10.70903717,50.506348,206.709956,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 1:00,29815102,3597.512,467.0432,421.98383,50.506348,249.93567,787.89264,17.661684,18.438095,15.232136,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 2:00,29817543.33,3597.512,494.92982,424.9931467,50.506348,222.2245733,766.0952267,17.661684,15.37232,20.62148933,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 3:00,29819984.67,3597.512,522.81644,428.0024633,50.506348,194.5134767,744.2978133,17.661684,12.306545,26.01084267,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 4:00,29822426,3597.512,550.70306,431.01178,50.506348,166.80238,722.5004,17.661684,9.24077,31.400196,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 5:00,29827068,3597.512,680.642,438.83795,50.506348,5923.4683,454.67694,152.3184,1943.0809,52.881756,50.506348,152.3184,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 6:00,29830786,3597.512,1523.4808,452.97903,50.506348,13453.04,877.45715,114.4361,3512.0093,115.05193,50.506348,114.4361,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 7:00,29835466,3597.512,3482.9939,525.208815,52.6725505,33339.465,1283.418325,387.37732,2225.568765,2883.317715,52.6725505,387.37732,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 8:00,29840146,3597.512,5442.507,597.4386,54.838753,53225.89,1689.3795,660.31854,939.12823,5651.5835,54.838753,660.31854,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 9:00,29840834,3597.512,5158.548,590.96564,53.099346,53138.234,941.62164,636.66437,813.2611,5239.644,53.099346,636.66437,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 10:00,29847508,3597.512,3524.9868,550.3658,53.20418,49182.453,1620.6963,528.1038,453.63492,2257.6846,53.20418,528.1038,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 11:00,29847792,3597.512,3478.7627,548.8975,53.20824,49215.945,1603.1354,528.2837,469.70746,2180.838,53.20824,528.2837,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 12:00,29854708,3597.512,2685.1873,515.0568,54.82677,47308.34,2072.37,486.18744,716.0073,921.549,54.82677,486.18744,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 13:00,29856625,3597.512,2389.83265,504.73905,54.662485,46283.5275,2037.85065,471.622435,575.66881,718.81995,54.662485,471.622435,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 14:00,29858542,3597.512,2094.478,494.4213,54.4982,45258.715,2003.3313,457.05743,435.33032,516.0909,54.4982,457.05743,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 15:00,29865426,3597.512,1689.4318,473.24927,52.914192,44941.28,1458.7329,463.47064,15.953944,256.44702,52.914192,463.47064,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 16:00,29865994,3597.512,1678.2479,472.30228,52.93532,45011.04,1443.4158,463.41507,20.612825,246.72495,52.93532,463.41507,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 17:00,29870653,3597.512,1940.75835,478.70737,52.596881,47700.9575,1764.3966,541.97066,67.6249575,328.277895,52.596881,541.97066,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 18:00,29875312,3597.512,2203.2688,485.11246,52.258442,50390.875,2085.3774,620.52625,114.63709,409.83084,52.258442,620.52625,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 19:00,29879944,3597.512,1116.1285,456.28546,51.723873,52710.78,2248.7744,683.7223,844.4963,129.33075,51.723873,683.7223,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 20:00,29880844,3597.512,252.09047,402.25787,1.1452193,52144.773,2238.987,669.0645,907.4339,109.255806,1.1452193,669.0645,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 21:00,29886228,3597.512,247.02943,396.07498,1.083212,50342.68,2078.6682,616.2645,126.76507,79.45968,1.083212,616.2645,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 22:00,29888398,3597.512,164.57152,394.9536,0.34180832,50553.652,1983.7604,651.90686,4.8570356,77.878174,0.34180832,651.90686,130901.3,73179.4,-15784.6,-201976.5
+12/12/2023 23:00,29892265.33,3597.512,1123.884447,442.2757467,18.13093455,50758.90333,1924.2205,612.4193933,129.9416471,592.1693493,18.13093455,612.4193933,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 0:00,29896132.67,3597.512,2083.197373,489.5978933,35.92006077,50964.15467,1864.6806,572.9319267,255.0262585,1106.460525,35.92006077,572.9319267,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 1:00,29900000,3597.512,3042.5103,536.92004,53.709187,51169.406,1805.1407,533.44446,380.11087,1620.7517,53.709187,533.44446,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 2:00,29901814,3597.512,46.8473,201.30751,50.506348,170.69867,759.31085,17.661684,1.7353294,0.028386628,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 3:00,29905324,3597.512,71.30762,299.81817,50.506348,168.568025,731.242625,17.661684,1.24202067,0.105255219,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 4:00,29908834,3597.512,95.76794,398.32883,50.506348,166.43738,703.1744,17.661684,0.74871194,0.18212381,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 5:00,29913186,3597.512,139.44498,401.9772,50.506348,2707.0688,828.9134,48.74493,493.7339,0.48752254,50.506348,48.74493,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 6:00,29917106,3597.512,448.1866,410.89526,50.506348,9695.647,822.1699,40.154984,885.7434,4.8378363,50.506348,40.154984,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 7:00,29921860,3597.512,1615.2138,467.694455,51.814594,30685.4485,1233.6777,355.501867,464.4798885,618.4419182,51.814594,355.501867,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 8:00,29926614,3597.512,2782.241,524.49365,53.12284,51675.25,1645.1855,670.84875,43.216377,1232.046,53.12284,670.84875,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 9:00,29927106,3597.512,2664.3218,520.5948,53.150433,51366.07,1607.1228,659.97766,32.460102,1119.1349,53.150433,659.97766,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 10:00,29933694,3597.512,1804.1301,481.276,53.26329,47481.605,1411.0292,536.207,3.26347,349.16418,53.26329,536.207,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 11:00,29934416,3597.512,1734.6819,477.85898,53.280945,47523.098,1389.0355,537.51996,3.664977,307.28687,53.280945,537.51996,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 12:00,29938388,3597.512,1357.9509,458.70792,54.32026,49000.64,1851.0498,517.12103,3.3409765,130.36983,54.32026,517.12103,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 13:00,29943361,3597.512,1177.00855,447.97017,53.643565,46612.82,1847.0061,473.750625,5.943509,86.6013235,53.643565,473.750625,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 14:00,29948334,3597.512,996.0662,437.23242,52.96687,44225,1842.9624,430.38022,8.5460415,42.832817,52.96687,430.38022,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 15:00,29948678,3597.512,995.6904,437.22534,52.962055,44279.117,1843.1897,430.36255,8.785196,42.831745,52.962055,430.36255,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 16:00,29955322,3597.512,1037.8488,437.58444,53.661022,44524.85,1445.7523,466.8388,1.6019517,41.987247,53.661022,466.8388,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 17:00,29956222,3597.512,1040.7556,437.68466,53.55244,44646.273,1365.1031,427.00476,1.4810116,42.580017,53.55244,427.00476,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 18:00,29961279,3597.512,966.34823,438.064315,52.639711,48473.4705,1686.23495,543.77138,55.1095908,46.4852335,52.639711,543.77138,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 19:00,29966336,3597.512,891.94086,438.44397,51.726982,52300.668,2007.3668,660.538,108.73817,50.39045,51.726982,660.538,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 20:00,29967236,3597.512,252.02283,385.10495,1.1475258,51948.086,1991.6298,648.4787,99.61499,42.257717,1.1475258,648.4787,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 21:00,29973532,3597.512,234.04489,378.5885,0.93254405,51034.957,1921.893,626.6678,6.638781,27.223387,0.93254405,626.6678,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 22:00,29975414,3597.512,120.1946293,377.91095,0.5181325,49700.9735,1820.386,578.5115,4.60907275,26.7147455,0.5181325,578.5115,130901.3,73179.4,-15784.6,-201976.5
+12/13/2023 23:00,29977296,3597.512,6.3443685,377.2334,0.10372095,48366.99,1718.879,530.3552,2.5793645,26.206104,0.10372095,530.3552,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 0:00,29984304,3597.512,6.3112283,377.0236,0.10372095,42232.11,1377.502,407.0427,2.367043,25.864183,0.10372095,407.0427,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 1:00,29985204,3597.512,6.3013306,377.0144,0.10372095,36139.39,1194.2551,242.3693,2.1276205,25.855267,0.10372095,242.3693,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 2:00,29988552,3597.512,6.279454733,376.9932233,0.10372095,24148.21957,1078.338367,167.4667613,1.7822049,25.847298,0.10372095,167.4667613,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 3:00,29991900,3597.512,6.257578867,376.9720467,0.10372095,12157.04913,962.4216333,92.56422267,1.4367893,25.839329,0.10372095,92.56422267,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 4:00,29995248,3597.512,6.235703,376.95087,0.10372095,165.8787,846.5049,17.661684,1.0913737,25.83136,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 5:00,30000000,3597.512,998.95105,437.11407,52.943,44456.293,1767.8507,470.79022,5.173966,42.597324,52.943,470.79022,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 6:00,30003252,3597.512,135.35606,281.66934,50.506348,4559.078,830.3285,17.661684,26.011452,0.0734712,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 7:00,30006246,3597.512,1535.4033,457.37057,50.506348,41174.027,551.04584,366.5973,19.636074,148.92159,50.506348,366.5973,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 8:00,30012474,3597.512,1877.133,483.32803,53.186245,51381.582,1979.1401,693.2835,5.737207,382.7077,53.186245,693.2835,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 9:00,30013374,3597.512,1748.6041,478.4537,53.243847,50895.707,1656.5919,627.00885,1.927718,319.6541,53.243847,627.00885,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 10:00,30016948,3597.512,1465.4417,463.64154,53.2802835,49030.2835,1502.8587,563.8333,1.60500725,202.341625,53.2802835,563.8333,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 11:00,30020522,3597.512,1182.2793,448.82938,53.31672,47164.86,1349.1255,500.65775,1.2822965,85.02915,53.31672,500.65775,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 12:00,30025256,3597.512,1031.563133,440.24271,53.210366,46142.51333,1471.473967,478.4217867,2.85238,61.69761533,53.210366,478.4217867,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 13:00,30029990,3597.512,880.8469667,431.65604,53.104012,45120.16667,1593.822433,456.1858233,4.4224635,38.36608067,53.104012,456.1858233,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 14:00,30034724,3597.512,730.1308,423.06937,52.997658,44097.82,1716.1709,433.94986,5.992547,15.034546,52.997658,433.94986,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 15:00,30037464,3597.512,765.9272175,424.5841325,52.82730225,44884.59,1606.911,450.866595,4.761998875,17.83792325,52.82730225,450.866595,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 16:00,30040204,3597.512,801.723635,426.098895,52.6569465,45671.36,1497.6511,467.78333,3.53145075,20.6413005,52.6569465,467.78333,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 17:00,30042944,3597.512,837.5200525,427.6136575,52.48659075,46458.13,1388.3912,484.700065,2.300902625,23.44467775,52.48659075,484.700065,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 18:00,30045684,3597.512,873.31647,429.12842,52.316235,47244.9,1279.1313,501.6168,1.0703545,26.248055,52.316235,501.6168,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 19:00,30052726,3597.512,732.0152,427.0508,51.73071,53104.332,1973.2699,683.4855,12.984113,23.467129,51.73071,683.4855,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 20:00,30053626,3597.512,251.98991,374.22403,1.1502911,52700.5,1953.194,668.1644,8.452879,19.608358,1.1502911,668.1644,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 21:00,30058539,3597.512,129.6332945,370.137605,0.627006025,50666.975,1668.9936,604.6654,4.8623009,14.929644,0.627006025,604.6654,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 22:00,30063452,3597.512,7.276679,366.05118,0.10372095,48633.45,1384.7932,541.1664,1.2717228,10.25093,0.10372095,541.1664,130901.3,73179.4,-15784.6,-201976.5
+12/14/2023 23:00,30063716,3597.512,6.341092,366.01883,0.10372095,48361.832,1369.3835,532.86523,1.2486244,10.218096,0.10372095,532.86523,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 0:00,30070684,3597.512,6.307127,365.63486,0.10372095,42240.715,1306.5211,409.26447,1.3211174,9.851177,0.10372095,409.26447,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 1:00,30071584,3597.512,6.3069024,365.61728,0.10372095,36428.3,1137.5441,248.3391,1.2665474,9.837288,0.10372095,248.3391,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 2:00,30074936.67,3597.512,6.2932755,365.5869967,0.10372095,24340.79236,1037.003133,171.446628,1.147491467,9.821673667,0.10372095,171.446628,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 3:00,30078289.33,3597.512,6.2796486,365.5567133,0.10372095,12253.28471,936.4621667,94.554156,1.028435533,9.806059333,0.10372095,94.554156,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 4:00,30081642,3597.512,6.2660217,365.52643,0.10372095,165.77707,835.9212,17.661684,0.9093796,9.790445,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 5:00,30088758,3597.512,6.5621014,365.492,0.10372095,630.0156,880.38873,46.26926,52.005283,9.7875805,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 6:00,30088846,3597.512,6.5620728,365.49536,0.10372095,176.24434,851.86615,17.661684,53.171352,9.791441,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 7:00,30092526,3597.512,1773.9501,462.9505,50.506348,40511.22,543.9805,362.36115,35.3957,194.37105,50.506348,362.36115,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 8:00,30099516,3597.512,1973.223,489.5405,53.167343,51410.13,1689.405,682.4442,2.2113278,479.5618,53.167343,682.4442,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 9:00,30099836,3597.512,1924.7422,487.32358,53.185703,51244.305,1674.1039,675.28265,2.1011505,445.42935,53.185703,675.28265,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 10:00,30106564,3597.512,1339.7081,456.50195,53.306137,47384.68,1444.1677,545.5294,1.148741,128.08253,53.306137,545.5294,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 11:00,30107156,3597.512,1301.8567,454.49426,53.319614,47429.383,1432.0685,546.6331,1.1514919,116.100876,53.319614,546.6331,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 12:00,30111132,3597.512,1058.4377,440.44122,54.359615,49007.004,1936.1661,528.4745,3.651291,50.562893,54.359615,528.4745,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 13:00,30116049,3597.512,889.6874,430.97571,53.6832865,46759.0745,1623.73265,481.42664,2.4147825,32.029125,53.6832865,481.42664,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 14:00,30120966,3597.512,720.9371,421.5102,53.006958,44511.145,1311.2992,434.37878,1.178274,13.495357,53.006958,434.37878,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 15:00,30123739,3597.512,759.63775,423.26212,52.83474725,45221.15375,1277.98555,451.53886,1.060802775,16.570273,52.83474725,451.53886,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 16:00,30126512,3597.512,798.3384,425.01404,52.6625365,45931.1625,1244.6719,468.69894,0.94333155,19.645189,52.6625365,468.69894,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 17:00,30129285,3597.512,837.03905,426.76596,52.49032575,46641.17125,1211.35825,485.85902,0.825860325,22.720105,52.49032575,485.85902,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 18:00,30132058,3597.512,875.7397,428.51788,52.318115,47351.18,1178.0446,503.0191,0.7083891,25.795021,52.318115,503.0191,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 19:00,30139128,3597.512,749.8037,428.12222,51.737686,52029.082,2019.186,661.6655,109.947,26.216808,51.737686,661.6655,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 20:00,30140028,3597.512,251.6228,375.23047,1.1569493,51789.695,1994.4746,650.78815,69.21021,21.922796,1.1569493,650.78815,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 21:00,30146324,3597.512,233.70685,368.64624,0.94029325,51158.527,1933.0514,629.73517,3.6180654,12.643293,0.94029325,629.73517,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 22:00,30149427.43,3597.512,201.2132114,368.3594314,0.820782921,43873.85112,1775.708451,542.2961006,3.244391529,12.46275743,0.820782921,542.2961006,130901.3,73179.4,-15784.6,-201976.5
+12/15/2023 23:00,30152530.86,3597.512,168.7195727,368.0726229,0.701272593,36589.17524,1618.365503,454.8570311,2.870717657,12.28222186,0.701272593,454.8570311,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 0:00,30155634.29,3597.512,136.2259341,367.7858143,0.581762264,29304.49936,1461.022554,367.4179617,2.497043786,12.10168629,0.581762264,367.4179617,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 1:00,30158737.71,3597.512,103.7322954,367.4990057,0.462251936,22019.82348,1303.679606,279.9788923,2.123369914,11.92115071,0.462251936,279.9788923,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 2:00,30161841.14,3597.512,71.23865679,367.2121971,0.342741607,14735.1476,1146.336657,192.5398229,1.749696043,11.74061514,0.342741607,192.5398229,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 3:00,30164944.57,3597.512,38.74501814,366.9253886,0.223231279,7450.47172,988.9937086,105.1007534,1.376022171,11.56007957,0.223231279,105.1007534,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 4:00,30168048,3597.512,6.2513795,366.63858,0.10372095,165.79584,831.65076,17.661684,1.0023483,11.379544,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 5:00,30171880,3597.512,17.30160825,255.27018,25.30503448,1959.68467,876.50008,31.965472,184.6456592,5.694731707,25.30503448,31.965472,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 6:00,30175712,3597.512,28.351837,143.90178,50.506348,3753.5735,921.3494,46.26926,368.28897,0.009919413,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 7:00,30182344,3597.512,75.214745,300.4896,50.506348,40749.82,1857.7946,386.6864,103.22172,0.087995276,50.506348,386.6864,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 8:00,30183244,3597.512,71.67984,285.9514,50.506348,40249.664,1813.1609,345.3261,89.25425,0.07706007,50.506348,345.3261,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 9:00,30186288,3597.512,66.45088,268.09528,50.506348,40502.83,1352.6776,349.5575,69.79753,0.06475074,50.506348,349.5575,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 10:00,30192912,3597.512,33.844303,152.41905,50.506348,48575.65,1477.9099,550.35455,65.468834,0.012093519,50.506348,550.35455,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 11:00,30193496,3597.512,29.945192,138.98352,50.506348,48585.57,1463.0854,550.3577,65.374535,0.008786378,50.506348,550.3577,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 12:00,30196816,3597.512,6.379234,40.419933,0.10372095,50611.113,1837.5352,565.59546,66.4822,0.001409172,0.10372095,565.59546,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 13:00,30200528.5,3597.512,6.35491625,39.9140805,0.10372095,49744.1805,1726.124825,550.540475,66.140925,0.001369879,0.10372095,550.540475,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 14:00,30204241,3597.512,6.3305985,39.408228,0.10372095,48877.248,1614.71445,535.48549,65.79965,0.001330586,0.10372095,535.48549,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 15:00,30207953.5,3597.512,6.30628075,38.9023755,0.10372095,48010.3155,1503.304075,520.430505,65.458375,0.001291293,0.10372095,520.430505,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 16:00,30211666,3597.512,6.281963,38.396523,0.10372095,47143.383,1391.8937,505.37552,65.1171,0.001252,0.10372095,505.37552,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 17:00,30215074,3597.512,37.331659,151.7731365,25.30503448,47244.258,1332.07315,506.249695,64.97517,0.032080023,25.30503448,506.249695,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 18:00,30218482,3597.512,68.381355,265.14975,50.506348,47345.133,1272.2526,507.12387,64.83324,0.062908046,50.506348,507.12387,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 19:00,30223814,3597.512,100.2662775,332.27751,50.506348,48478.1135,1676.5623,551.867785,80.66662,0.183056233,50.506348,551.867785,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 20:00,30229146,3597.512,132.1512,399.40527,50.506348,49611.094,2080.872,596.6117,96.5,0.30320442,50.506348,596.6117,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 21:00,30229356,3597.512,131.81366,399.3903,50.506348,49678.9,2083.869,597.38525,101.37095,0.3012322,50.506348,597.38525,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 22:00,30236244,3597.512,184.5466,401.59427,50.506348,47529.594,1512.5042,507.84122,65.4498,0.733262,50.506348,507.84122,130901.3,73179.4,-15784.6,-201976.5
+12/16/2023 23:00,30239848,3597.512,232.688965,404.11896,50.506348,45565.3145,1322.66525,454.99571,33.10868235,1.8797073,50.506348,454.99571,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 0:00,30243452,3597.512,280.83133,406.64365,50.506348,43601.035,1132.8263,402.1502,0.7675647,3.0261526,50.506348,402.1502,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 1:00,30246198,3597.512,276.9380425,407.51247,50.506348,32742.29673,1010.052588,306.028071,0.711514,3.60894585,50.506348,306.028071,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 2:00,30248944,3597.512,273.044755,408.38129,50.506348,21883.55846,887.278875,209.905942,0.6554633,4.1917391,50.506348,209.905942,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 3:00,30251690,3597.512,269.1514675,409.25011,50.506348,11024.82019,764.5051625,113.783813,0.5994126,4.77453235,50.506348,113.783813,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 4:00,30254436,3597.512,265.25818,410.11893,50.506348,166.08192,641.73145,17.661684,0.5433619,5.3573256,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 5:00,30258282,3597.512,284.788375,412.037155,50.506348,2218.43816,730.94135,31.965472,334.2310309,6.95550205,50.506348,31.965472,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 6:00,30262128,3597.512,304.31857,413.95538,50.506348,4270.7944,820.15125,46.26926,667.9187,8.5536785,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 7:00,30267177,3597.512,349.714135,416.063915,50.506348,22560.6372,1091.357925,216.69953,349.4374955,10.86551675,50.506348,216.69953,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 8:00,30272226,3597.512,395.1097,418.17245,50.506348,40850.48,1362.5646,387.1298,30.956291,13.177355,50.506348,387.1298,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 9:00,30272478,3597.512,388.48602,417.6526,50.506348,40528.582,1306.7782,345.96024,29.972725,12.544608,50.506348,345.96024,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 10:00,30276383,3597.512,330.89105,413.526085,50.506348,45396.033,1360.9917,491.614155,22.60698,8.7315833,50.506348,491.614155,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 11:00,30280288,3597.512,273.29608,409.39957,50.506348,50263.484,1415.2052,637.26807,15.241235,4.9185586,50.506348,637.26807,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 12:00,30286498,3597.512,154.5092,401.7006,50.506348,47516.8,1931.981,506.1775,20.737871,0.8092518,50.506348,506.1775,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 13:00,30290115,3597.512,134.642257,400.364125,50.506348,46165.09,1612.30525,493.687475,10.89324285,0.546146175,50.506348,493.687475,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 14:00,30293732,3597.512,114.775314,399.02765,50.506348,44813.38,1292.6295,481.19745,1.0486147,0.28304055,50.506348,481.19745,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 15:00,30296866,3597.512,192.595357,403.96286,50.506348,22490.99075,982.77145,249.429567,0.82731367,2.398652775,50.506348,249.429567,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 16:00,30300000,3597.512,270.4154,408.89807,50.506348,168.6015,672.9134,17.661684,0.60601264,4.514265,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 17:00,30302479,3597.512,256.90815,406.838535,50.506348,23912.81425,982.71885,286.666942,0.77766952,3.2849953,50.506348,286.666942,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 18:00,30304958,3597.512,243.4009,404.779,50.506348,47657.027,1292.5243,555.6722,0.9493264,2.0557256,50.506348,555.6722,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 19:00,30308968,3597.512,293.09772,408.00064,50.506348,50321.914,1954.7776,582.0502,9.054372,4.071317,50.506348,582.0502,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 20:00,30314042,3597.512,314.22546,409.90487,50.506348,50154.232,1930.70625,607.156875,5.78562425,5.45055165,50.506348,607.156875,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 21:00,30319116,3597.512,335.3532,411.8091,50.506348,49986.55,1906.6349,632.26355,2.5168765,6.8297863,50.506348,632.26355,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 22:00,30322728,3597.512,338.4421833,412.1998333,50.506348,47438.99667,1711.9034,545.1505433,5.666244667,7.176471867,50.506348,545.1505433,130901.3,73179.4,-15784.6,-201976.5
+12/17/2023 23:00,30326340,3597.512,341.5311667,412.5905667,50.506348,44891.44333,1517.1719,458.0375367,8.815612833,7.523157433,50.506348,458.0375367,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 0:00,30329952,3597.512,344.62015,412.9813,50.506348,42343.89,1322.4404,370.92453,11.964981,7.869843,50.506348,370.92453,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 1:00,30333024.67,3597.512,338.8349017,412.2219967,50.506348,35710.03703,1257.1776,316.8153183,66.80783417,7.295679833,50.506348,316.8153183,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 2:00,30336097.33,3597.512,333.0496533,411.4626933,50.506348,29076.18407,1191.9148,262.7061067,121.6506873,6.721516667,50.506348,262.7061067,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 3:00,30339170,3597.512,327.264405,410.70339,50.506348,22442.3311,1126.652,208.596895,176.4935405,6.1473535,50.506348,208.596895,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 4:00,30342242.67,3597.512,321.4791567,409.9440867,50.506348,15808.47813,1061.3892,154.4876833,231.3363937,5.573190333,50.506348,154.4876833,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 5:00,30345315.33,3597.512,315.6939083,409.1847833,50.506348,9174.625167,996.1264,100.3784717,286.1792468,4.999027167,50.506348,100.3784717,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 6:00,30348388,3597.512,309.90866,408.42548,50.506348,2540.7722,930.8636,46.26926,341.0221,4.424864,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 7:00,30353487,3597.512,2313.52808,489.22464,51.829404,27543.3711,1285.6484,372.83983,179.741636,1855.852432,51.829404,372.83983,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 8:00,30358586,3597.512,4317.1475,570.0238,53.15246,52545.97,1640.4332,699.4104,18.461172,3707.28,53.15246,699.4104,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 9:00,30359202,3597.512,4091.0889,565.94434,53.19052,52595.375,874.5648,682.85236,12.600559,3398.5994,53.19052,682.85236,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 10:00,30362840,3597.512,3329.08205,542.18302,53.2622615,50314.164,1195.26985,617.3826,7.93908215,2251.7829,53.2622615,617.3826,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 11:00,30366478,3597.512,2567.0752,518.4217,53.334003,48032.953,1515.9749,551.91284,3.2776053,1104.9664,53.334003,551.91284,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 12:00,30370382,3597.512,2001.751,491.09717,54.41877,49589.32,1786.6218,525.75287,2.8042433,500.24643,54.41877,525.75287,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 13:00,30373938.67,3597.512,1736.0099,476.97513,53.943446,47965.70333,1805.9166,497.1121933,3.1607632,364.38824,53.943446,497.1121933,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 14:00,30377495.33,3597.512,1470.2688,462.85309,53.468122,46342.08667,1825.2114,468.4715167,3.5172831,228.53005,53.468122,468.4715167,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 15:00,30381052,3597.512,1204.5277,448.73105,52.992798,44718.47,1844.5062,439.83084,3.873803,92.67186,52.992798,439.83084,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 16:00,30386948,3597.512,1104.9794,440.25412,53.665478,44994.04,1164.4501,478.8821,0.8107767,55.46544,53.665478,478.8821,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 17:00,30387848,3597.512,1101.4753,439.76318,53.71739,45045.57,432.80948,415.82803,0.00032854,53.673645,53.71739,415.82803,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 18:00,30393095,3597.512,1052.79905,442.481825,52.728045,48862.7635,1245.85664,550.664715,156.5772143,67.999775,52.728045,550.664715,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 19:00,30398342,3597.512,1004.1228,445.20047,51.7387,52679.957,2058.9038,685.5014,313.1541,82.325905,51.7387,685.5014,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 20:00,30399242,3597.512,252.05968,391.5048,1.1589444,52335.203,2032.2845,673.0946,234.27846,69.27849,1.1589444,673.0946,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 21:00,30404128,3597.512,129.8912638,387.6578,0.631332675,50737.3665,1697.09775,613.91632,117.7179605,57.926501,0.631332675,613.91632,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 22:00,30409014,3597.512,7.7228475,383.8108,0.10372095,49139.53,1361.911,554.73804,1.157461,46.574512,0.10372095,554.73804,130901.3,73179.4,-15784.6,-201976.5
+12/18/2023 23:00,30409288,3597.512,6.2631097,383.7961,0.10372095,48879.92,1344.0741,546.6877,1.1276319,46.53345,0.10372095,546.6877,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 0:00,30416312,3597.512,6.5663657,383.65793,0.10372095,42612.254,1241.4551,415.7314,2.5442033,46.187153,0.10372095,415.7314,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 1:00,30417212,3597.512,6.5620613,383.6527,0.10372095,36352.72,1061.3245,246.26486,2.262401,46.179714,0.10372095,246.26486,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 2:00,30420554,3597.512,6.538719,383.64071,0.10372095,24290.43246,957.5301667,170.0638013,1.854921167,46.17369067,0.10372095,170.0638013,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 3:00,30423896,3597.512,6.5153767,383.62872,0.10372095,12228.14493,853.7358333,93.86274267,1.447441333,46.16766733,0.10372095,93.86274267,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 4:00,30427238,3597.512,6.4920344,383.61673,0.10372095,165.85739,749.9415,17.661684,1.0399615,46.161644,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 5:00,30431548,3597.512,6.485172,383.60455,0.10372095,1847.487,845.6244,46.26926,242.03279,46.163246,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 6:00,30434476,3597.512,17.130575,66.682396,50.506348,1931.3862,1554.1626,1032.3971,461.13043,0.000274423,50.506348,1032.3971,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 7:00,30439750,3597.512,1259.233137,289.122313,51.842209,27174.8046,1611.0187,867.6634,239.300574,468.8940872,51.842209,867.6634,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 8:00,30445024,3597.512,2501.3357,511.56223,53.17807,52418.223,1667.8748,702.9297,17.470718,937.7879,53.17807,702.9297,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 9:00,30445766,3597.512,2338.3503,505.70108,53.22474,52352.36,857.81775,682.63403,10.688306,801.72656,53.22474,682.63403,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 10:00,30448952,3597.512,1831.2002,484.4697,53.39153,49654.445,1554.5553,535.3773,3.101699,418.72247,53.39153,535.3773,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 11:00,30452548,3597.512,1514.3408,465.16083,53.330605,47843.32,1406.6482,552.7808,1.0904428,199.97867,53.330605,552.7808,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 12:00,30456748,3597.512,1278.9128,450.30743,54.401226,49133.22,1969.8032,542.46484,29.84223,94.60044,54.401226,542.46484,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 13:00,30461623,3597.512,1088.7687,440.228405,53.723993,47002.6275,1615.94675,491.63826,15.46011475,62.32262,53.723993,491.63826,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 14:00,30466498,3597.512,898.6246,430.14938,53.04676,44872.035,1262.0903,440.81168,1.0779995,30.0448,53.04676,440.81168,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 15:00,30467024,3597.512,898.0101,430.032,53.01409,44884.633,1243.7412,440.22275,1.0335022,29.86314,53.01409,440.22275,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 16:00,30470888,3597.512,947.3687,431.63565,53.01431,45262.984,619.3207,473.59674,0.031408127,33.532467,53.01431,473.59674,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 17:00,30474676,3597.512,991.2364,433.3293,53.624187,45544.285,1493.0876,435.57764,1.8390762,36.190678,53.624187,435.57764,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 18:00,30479707,3597.512,944.923285,435.13291,52.6814785,49382.004,1779.7508,564.184785,93.8516681,44.019482,52.6814785,564.184785,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 19:00,30484738,3597.512,898.61017,436.93652,51.73877,53219.723,2066.414,692.79193,185.86426,51.848286,51.73877,692.79193,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 20:00,30485638,3597.512,252.7673,383.5791,1.1589469,52797.03,2051.585,679.76184,185.28676,43.489773,1.1589469,679.76184,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 21:00,30491922,3597.512,234.54044,377.08286,0.9395907,51613.4,1941.994,642.7422,3.5107572,28.14805,0.9395907,642.7422,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 22:00,30493805,3597.512,120.4404215,376.40955,0.521655825,50287.958,1738.88395,595.0478,2.6241669,27.6332985,0.521655825,595.0478,130901.3,73179.4,-15784.6,-201976.5
+12/19/2023 23:00,30495688,3597.512,6.340403,375.73624,0.10372095,48962.516,1535.7739,547.3534,1.7375766,27.118547,0.10372095,547.3534,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 0:00,30500000,3597.512,1732.2715,478.4332,53.367992,48698.938,1538.5652,571.2953,1.5920182,337.94156,53.367992,571.2953,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 1:00,30503612,3597.512,6.303635,375.5408,0.10372095,36405.266,1142.4191,247.159,2.413589,26.767773,0.10372095,247.159,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 2:00,30506953.33,3597.512,6.314343667,375.5278,0.10372095,24325.47496,1031.2307,170.6598947,1.9923786,26.759998,0.10372095,170.6598947,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 3:00,30510294.67,3597.512,6.325052333,375.5148,0.10372095,12245.68391,920.0423,94.16078933,1.5711682,26.752223,0.10372095,94.16078933,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 4:00,30513636,3597.512,6.335761,375.5018,0.10372095,165.89287,808.8539,17.661684,1.1499578,26.744448,0.10372095,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 5:00,30517731,3597.512,139.1925405,388.17005,25.30503448,4460.319435,818.47898,28.908334,386.8423789,13.75711945,25.30503448,28.908334,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 6:00,30521826,3597.512,272.04932,400.8383,50.506348,8754.746,828.10406,40.154984,772.5348,0.7697909,50.506348,40.154984,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 7:00,30526619,3597.512,1475.30726,459.18765,51.843481,30804.707,1263.39438,371.173442,447.114235,549.4122454,51.843481,371.173442,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 8:00,30531412,3597.512,2678.5652,517.537,53.180614,52854.668,1698.6847,702.1919,121.69367,1098.0547,53.180614,702.1919,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 9:00,30532152,3597.512,2516.4292,512.0105,53.22679,52806.496,896.24634,682.13635,95.58371,953.51184,53.22679,682.13635,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 10:00,30538596,3597.512,1742.0613,475.35995,53.33027,48362.58,1457.6251,553.2012,26.083794,304.4041,53.33027,553.2012,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 11:00,30538956,3597.512,1712.5642,473.74152,53.332348,48370.594,1447.4508,553.17444,27.251703,286.0745,53.332348,553.17444,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 12:00,30543224,3597.512,1464.194,459.0032,54.418503,49288.945,1988.7537,543.2291,33.5462,146.55606,54.418503,543.2291,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 13:00,30548149,3597.512,1262.572,449.13647,53.723915,47089.775,1767.9797,492.96126,19.33162675,101.219608,53.723915,492.96126,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 14:00,30553074,3597.512,1060.95,439.26974,53.029327,44890.605,1547.2057,442.69342,5.1170535,55.883156,53.029327,442.69342,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 15:00,30553366,3597.512,1053.191,438.82382,53.02108,44914.6,1530.227,442.58286,5.044623,54.422653,53.02108,442.58286,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 16:00,30557035,3597.512,1039.5123,436.6595,53.373293,45169.126,1084.33205,459.13631,2.544493477,46.9739685,53.373293,459.13631,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 17:00,30560704,3597.512,1025.8336,434.49518,53.725506,45423.652,638.4371,475.68976,0.044363953,39.525284,53.725506,475.68976,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 18:00,30564308,3597.512,1130.798,439.76733,52.340076,48181.39,1875.84,519.1878,99.158394,60.094864,52.340076,519.1878,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 19:00,30571138,3597.512,891.9446,436.97055,51.751682,52733.246,2091.9521,693.0575,326.40182,52.662548,51.751682,693.0575,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 20:00,30572038,3597.512,251.94933,383.6017,1.1710135,52392.44,2071.1958,680.06335,284.51047,44.179012,1.1710135,680.06335,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 21:00,30576923,3597.512,129.9216143,379.69365,0.637367225,50812.814,1734.7575,620.901175,142.8539276,35.933316,0.637367225,620.901175,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 22:00,30581808,3597.512,7.8938985,375.7856,0.10372095,49233.188,1398.3192,561.739,1.1973851,27.68762,0.10372095,561.739,130901.3,73179.4,-15784.6,-201976.5
+12/20/2023 23:00,30582082,3597.512,6.3459625,375.7666,0.10372095,48920.152,1377.2826,551.7429,1.163645,27.649912,0.10372095,551.7429,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 0:00,30589118,3597.512,6.312717,375.582,0.10372095,42762.402,1240.7324,419.71603,3.1666539,27.30822,0.10372095,419.71603,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 1:00,30590018,3597.512,6.3126364,375.57547,0.10372095,36398.293,1056.7659,247.56285,2.7792077,27.299568,0.10372095,247.56285,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 2:00,30593345.33,3597.512,407.8079243,398.8388467,18.2371873,39533.29033,1351.894633,323.30185,37.63613847,42.55273533,18.2371873,323.30185,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 3:00,30596672.67,3597.512,809.3032121,422.1022233,36.37065365,42668.28767,1647.023367,399.04085,72.49306923,57.80590267,36.37065365,399.04085,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 4:00,30600000,3597.512,1210.7985,445.3656,54.50412,45803.285,1942.1521,474.77985,107.35,73.05907,54.50412,474.77985,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 5:00,30604206,3597.512,6.2354255,375.5282,0.10372095,1791.5858,829.37634,46.26926,219.33435,27.275982,0.10372095,46.26926,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 6:00,30607244,3597.512,6.232781,375.52423,0.10372095,1764.9442,1162.7395,532.7446,414.97348,27.28335,0.10372095,532.7446,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 7:00,30612006,3597.512,1265.49809,441.06163,26.62277397,27200.1821,1541.2643,626.7532,213.294028,430.401075,26.62277397,626.7532,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 8:00,30616768,3597.512,2524.7634,506.59903,53.141827,52635.42,1919.7891,720.7618,11.614576,833.5188,53.141827,720.7618,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 9:00,30618268,3597.512,2168.3367,496.30923,53.23777,51885.35,1603.4225,650.53406,8.198285,622.2418,53.23777,650.53406,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 10:00,30624932,3597.512,1402.2964,459.29404,53.36694,47859.96,1410.1644,513.48663,5.0853333,157.36415,53.36694,513.48663,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 11:00,30625336,3597.512,1374.3602,457.4905,53.367226,47854.094,1395.7943,513.61273,5.0014834,144.85095,53.367226,513.61273,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 12:00,30630052.67,3597.512,1222.776833,448.561,53.25983567,46864.72033,1473.2646,491.3872533,5.225556933,107.3377723,53.25983567,491.3872533,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 13:00,30634769.33,3597.512,1071.193467,439.6315,53.15244533,45875.34667,1550.7349,469.1617767,5.449630467,69.82459467,53.15244533,469.1617767,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 14:00,30639486,3597.512,919.6101,430.702,53.045055,44885.973,1628.2052,446.9363,5.673704,32.311417,53.045055,446.9363,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 15:00,30639726,3597.512,921.0491,430.77478,53.038166,44910.11,1612.1313,446.89368,5.610111,32.496902,53.038166,446.89368,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 16:00,30643346,3597.512,984.72315,432.89125,53.402778,45125.115,1493.37405,466.49501,3.87409675,36.934576,53.402778,466.49501,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 17:00,30646966,3597.512,1048.3972,435.00772,53.76739,45340.12,1374.6168,486.09634,2.1380825,41.37225,53.76739,486.09634,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 18:00,30651122,3597.512,1227.065,443.3738,52.342243,48836.67,1956.7294,535.0468,18.365158,74.80454,52.342243,535.0468,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 19:00,30657538,3597.512,900.9367,437.1644,51.749954,53068.168,2193.3013,700.46875,272.65536,54.00033,51.749954,700.46875,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 20:00,30658438,3597.512,252.5523,383.7749,1.1695313,52695.08,2170.7131,686.60364,247.36305,45.30071,1.1695313,686.60364,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 21:00,30662044,3597.512,264.30923,378.71735,1.329085,50333.945,2099.2288,615.9956,399.6422,31.819073,1.329085,615.9956,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 22:00,30668224,3597.512,7.6899076,375.94537,0.10372095,49536.117,1535.8573,609.97754,2.3622482,28.462008,0.10372095,609.97754,130901.3,73179.4,-15784.6,-201976.5
+12/21/2023 23:00,30671154.67,3597.512,7.2431754,375.8812333,0.10372095,42207.886,1339.6635,455.8335633,6.1797058,28.342213,0.10372095,455.8335633,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 0:00,30674085.33,3597.512,6.7964432,375.8170967,0.10372095,34879.655,1143.4697,301.6895867,9.9971634,28.222418,0.10372095,301.6895867,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 1:00,30677016,3597.512,6.349711,375.75296,0.10372095,27551.424,947.2759,147.54561,13.814621,28.102623,0.10372095,147.54561,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 2:00,30679748,3597.512,15.061724,89.589264,50.506348,170.31863,775.92755,17.661684,3.7985764,0.001365553,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 3:00,30683087,3597.512,83.936067,244.597082,50.506348,168.30818,748.896725,17.661684,2.83915675,0.286824647,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 4:00,30686426,3597.512,152.81041,399.6049,50.506348,166.29773,721.8659,17.661684,1.8797371,0.57228374,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 5:00,30690716,3597.512,234.6146,404.27478,50.506348,5203.0796,955.257,125.581055,1433.0557,2.3699288,50.506348,125.581055,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 6:00,30694334,3597.512,484.71756,412.0958,50.506348,7721.2935,860.2986,83.45313,2626.7854,7.974377,50.506348,83.45313,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 7:00,30700000,3597.512,1123.1193,439.7317,52.385258,48008.89,1950.1268,541.1261,5.5793405,60.569687,52.385258,541.1261,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 8:00,30704192,3597.512,3255.3586,540.3985,53.178207,53349.273,1725.9417,698.4891,466.43774,1926.292,53.178207,698.4891,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 9:00,30704528,3597.512,3159.1733,537.67865,53.198395,53198.07,1700.5962,693.3634,405.01666,1804.5284,53.198395,693.3634,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 10:00,30711472,3597.512,2050.963,490.99347,53.336308,48932.242,1608.3811,556.47723,102.85845,531.1617,53.336308,556.47723,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 11:00,30712066,3597.512,1983.7892,487.4485,53.36187,49337.375,781.2683,549.8143,98.98375,473.7396,53.36187,549.8143,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 12:00,30718402,3597.512,1663.0281,465.56226,55.06257,48361.094,2067.6155,561.9161,278.64957,194.48126,55.06257,561.9161,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 13:00,30719302,3597.512,1627.9011,464.13763,55.088783,47683.113,2032.7306,510.2469,392.4553,182.65115,55.088783,510.2469,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 14:00,30722684,3597.512,1360.3446,453.1746,54.681293,46028.9,1986.6764,479.95087,313.2118,111.711174,54.681293,479.95087,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 15:00,30729432,3597.512,1174.0839,443.4619,53.001965,45606.67,1484.959,488.16757,10.714852,73.196434,53.001965,488.16757,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 16:00,30731367,3597.512,1219.7786,444.495265,53.3889325,45776.8565,1447.4646,487.2686,25.199176,75.930355,53.3889325,487.2686,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 17:00,30733302,3597.512,1265.4733,445.52863,53.7759,45947.043,1409.9702,486.36963,39.6835,78.664276,53.7759,486.36963,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 18:00,30740208,3597.512,2011.6272,474.06873,52.307537,51974.37,2190.8167,684.536,289.766,306.97406,52.307537,684.536,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 19:00,30741108,3597.512,1953.461,476.46393,52.24118,52227.715,2177.85,657.6122,385.69022,336.63425,52.24118,657.6122,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 20:00,30744842,3597.512,252.97208,392.5374,1.1693017,52410.33,2253.148,683.4177,872.70056,77.1279,1.1693017,683.4177,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 21:00,30751132,3597.512,234.54936,386.01178,0.94649225,52095.805,2105.5527,671.01953,35.470535,53.55882,0.94649225,671.01953,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 22:00,30752032,3597.512,193.77448,385.46375,0.5510728,52003.082,2034.9073,706.0435,8.474731,53.06718,0.5510728,706.0435,130901.3,73179.4,-15784.6,-201976.5
+12/22/2023 23:00,30755368,3597.512,100.1367185,385.068665,0.327396875,48476.756,1689.6705,576.7799,71.1415455,52.53725,0.327396875,576.7799,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 0:00,30758704,3597.512,6.498957,384.67358,0.10372095,44950.43,1344.4337,447.5163,133.80836,52.00732,0.10372095,447.5163,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 1:00,30765358,3597.512,113.73063,399.8947,50.506348,859.0743,806.3806,46.26926,7.1238084,0.20045926,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 2:00,30766258,3597.512,129.09164,397.71912,50.506348,170.52228,767.6555,17.661684,5.985622,0.27978832,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 3:00,30769543,3597.512,180.85999,400.8371,50.506348,168.520365,740.78985,17.661684,4.57214285,1.28643801,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 4:00,30772828,3597.512,232.62834,403.95508,50.506348,166.51845,713.9242,17.661684,3.1586637,2.2930877,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 5:00,30776703,3597.512,266.7322,407.27759,50.506348,3191.070725,801.6697,46.779757,1022.667732,4.5699836,50.506348,46.779757,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 6:00,30780578,3597.512,300.83606,410.6001,50.506348,6215.623,889.4152,75.89783,2042.1768,6.8468795,50.506348,75.89783,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 7:00,30785626,3597.512,323.26851,411.42032,50.506348,24013.3095,1151.82795,235.245225,1147.44055,7.57499725,50.506348,235.245225,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 8:00,30790674,3597.512,345.70096,412.24054,50.506348,41810.996,1414.2407,394.59262,252.7043,8.303115,50.506348,394.59262,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 9:00,30791336,3597.512,341.74744,412.1586,50.506348,42561.86,630.346,398.3267,192.28394,8.228628,50.506348,398.3267,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 10:00,30795668,3597.512,296.33892,399.32672,25.82527555,47013.945,1379.16325,527.37345,172.374455,31.3596315,25.82527555,527.37345,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 11:00,30800000,3597.512,250.9304,386.49484,1.1442031,51466.03,2127.9805,656.4202,152.46497,54.490635,1.1442031,656.4202,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 12:00,30801976,3597.512,131.59271,398.90155,50.506348,51192.277,776.96204,595.09375,9.389756,0.48148856,50.506348,595.09375,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 13:00,30805550,3597.512,94.637387,324.475045,50.506348,50219.7135,1379.95387,575.792695,10.6822995,0.267986812,50.506348,575.792695,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 14:00,30809124,3597.512,57.682064,250.04854,50.506348,49247.15,1982.9457,556.49164,11.974843,0.054485064,50.506348,556.49164,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 15:00,30812675,3597.512,80.8447355,287.18601,50.506348,48960.5335,1797.548525,558.446655,9.138513375,0.149337903,50.506348,558.446655,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 16:00,30816226,3597.512,104.007407,324.32348,50.506348,48673.917,1612.15135,560.40167,6.30218375,0.244190742,50.506348,560.40167,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 17:00,30819777,3597.512,127.1700785,361.46095,50.506348,48387.3005,1426.754175,562.356685,3.465854125,0.339043581,50.506348,562.356685,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 18:00,30823328,3597.512,150.33275,398.59842,50.506348,48100.684,1241.357,564.3117,0.6295245,0.43389642,50.506348,564.3117,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 19:00,30827316,3597.512,156.60368,398.87427,50.506348,52816.258,1980.9491,659.14026,32.485462,0.486439,50.506348,659.14026,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 20:00,30831916,3597.512,177.3317933,399.9885067,50.506348,51202.362,1873.4064,614.2836733,22.4330788,0.825323533,50.506348,614.2836733,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 21:00,30836516,3597.512,198.0599067,401.1027433,50.506348,49588.466,1765.8637,569.4270867,12.3806956,1.164208067,50.506348,569.4270867,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 22:00,30841116,3597.512,218.78802,402.21698,50.506348,47974.57,1658.321,524.5705,2.3283124,1.5030926,50.506348,524.5705,130901.3,73179.4,-15784.6,-201976.5
+12/23/2023 23:00,30844691,3597.512,254.37483,404.220365,50.506348,46100.287,1512.23025,469.815615,1.8308839,2.6651284,50.506348,469.815615,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 0:00,30848266,3597.512,289.96164,406.22375,50.506348,44226.004,1366.1395,415.06073,1.3334554,3.8271642,50.506348,415.06073,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 1:00,30851009,3597.512,289.9391875,407.1448025,50.506348,33211.1009,1229.49029,315.7109685,1.23303969,4.47513295,50.506348,315.7109685,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 2:00,30853752,3597.512,289.916735,408.065855,50.506348,22196.1978,1092.84108,216.361207,1.13262398,5.1231017,50.506348,216.361207,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 3:00,30856495,3597.512,289.8942825,408.9869075,50.506348,11181.29469,956.19187,117.0114455,1.03220827,5.77107045,50.506348,117.0114455,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 4:00,30859238,3597.512,289.87183,409.90796,50.506348,166.39159,819.54266,17.661684,0.93179256,6.4190392,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 5:00,30863080,3597.512,297.251955,410.94687,50.506348,2147.724795,896.41531,31.965472,299.3898163,7.3164156,50.506348,31.965472,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 6:00,30866922,3597.512,304.63208,411.98578,50.506348,4129.058,973.28796,46.26926,597.84784,8.213792,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 7:00,30871909,3597.512,319.61345,412.12778,50.506348,22559.732,1163.42763,200.9052,309.4736295,8.3552755,50.506348,200.9052,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 8:00,30876896,3597.512,334.59482,412.26978,50.506348,40990.406,1353.5673,355.54114,21.099419,8.496759,50.506348,355.54114,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 9:00,30880526,3597.512,276.3439767,408.33152,50.506348,44247.07133,1378.2497,455.3139067,14.37709877,5.964496167,50.506348,455.3139067,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 10:00,30884156,3597.512,218.0931333,404.39326,50.506348,47503.73667,1402.9321,555.0866733,7.654778533,3.432233333,50.506348,555.0866733,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 11:00,30887786,3597.512,159.84229,400.455,50.506348,50760.402,1427.6145,654.85944,0.9324583,0.8999705,50.506348,654.85944,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 12:00,30888504,3597.512,143.1121,399.46698,50.506348,50574.062,1372.1567,603.7785,0.885157,0.6386356,50.506348,603.7785,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 13:00,30894696,3597.512,57.22061,254.50482,50.506348,48142.727,1231.147,520.1365,0.62380975,0.05727899,50.506348,520.1365,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 14:00,30897348,3597.512,177.488325,330.89766,50.506348,34692.7835,1100.227675,288.6475615,0.923048475,2.287831995,50.506348,288.6475615,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 15:00,30900000,3597.512,297.75604,407.2905,50.506348,21242.84,969.30835,57.158623,1.2222872,4.518385,50.506348,57.158623,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 16:00,30903376,3597.512,241.26343,404.0361133,50.506348,30352.74733,1005.2703,217.4481353,0.9575227,3.11019265,50.506348,217.4481353,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 17:00,30906752,3597.512,184.77082,400.7817267,50.506348,39462.65467,1041.23225,377.7376477,0.6927582,1.7020003,50.506348,377.7376477,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 18:00,30910128,3597.512,128.27821,397.52734,50.506348,48572.562,1077.1942,538.02716,0.4279937,0.29380795,50.506348,538.02716,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 19:00,30914694,3597.512,152.44297,398.71957,50.506348,49310.967,1195.018,559.19994,0.6763519,0.573719433,50.506348,559.19994,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 20:00,30919260,3597.512,176.60773,399.9118,50.506348,50049.372,1312.8418,580.37272,0.9247101,0.853630917,50.506348,580.37272,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 21:00,30923826,3597.512,200.77249,401.10403,50.506348,50787.777,1430.6656,601.5455,1.1730683,1.1335424,50.506348,601.5455,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 22:00,30924212,3597.512,198.53639,400.9992,50.506348,50805.586,1412.725,601.71216,1.1193233,1.0973408,50.506348,601.71216,130901.3,73179.4,-15784.6,-201976.5
+12/24/2023 23:00,30929460,3597.512,207.67598,401.577785,50.506348,46914.086,1291.36055,512.90723,1.72656,1.3273214,50.506348,512.90723,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 0:00,30934708,3597.512,216.81557,402.15637,50.506348,43022.586,1169.9961,424.1023,2.3337967,1.557302,50.506348,424.1023,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 1:00,30935608,3597.512,209.75279,401.92487,50.506348,37141.5,996.3205,259.74866,2.048652,1.4586215,50.506348,259.74866,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 2:00,30938950,3597.512,226.46586,403.3428067,50.506348,24816.45352,891.6894667,179.0530013,1.651256187,2.280484833,50.506348,179.0530013,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 3:00,30942292,3597.512,243.17893,404.7607433,50.506348,12491.40703,787.0584333,98.35734267,1.253860373,3.102348167,50.506348,98.35734267,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 4:00,30945634,3597.512,259.892,406.17868,50.506348,166.36055,682.4274,17.661684,0.85646456,3.9242115,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 5:00,30949268,3597.512,289.56365,408.80026,50.506348,1415.313575,499.4783,29.245858,433.7579823,5.88892675,50.506348,29.245858,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 6:00,30952902,3597.512,319.2353,411.42184,50.506348,2664.2666,316.5292,40.830032,866.6595,7.853642,50.506348,40.830032,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 7:00,30958149,3597.512,2362.40565,487.071945,51.8778155,27870.1833,1000.49495,369.998236,494.10118,1637.373971,51.8778155,369.998236,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 8:00,30963396,3597.512,4405.576,562.72205,53.249283,53076.1,1684.4607,699.16644,121.54286,3266.8943,53.249283,699.16644,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 9:00,30963734,3597.512,4310.074,561.46326,53.27203,52953.09,1662.2805,693.9988,113.52223,3175.635,53.27203,693.9988,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 10:00,30970666,3597.512,3007.6206,528.51776,53.368275,49199.6,1590.3812,565.48346,49.98165,1461.792,53.368275,565.48346,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 11:00,30970968,3597.512,2966.099,527.0191,53.371323,49230.81,1573.3937,565.9688,54.86789,1409.8654,53.371323,565.9688,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 12:00,30975238,3597.512,2436.0388,504.9667,54.47862,49893.04,2004.414,552.27795,36.01178,785.22003,54.47862,552.27795,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 13:00,30979063,3597.512,2081.662,488.82995,54.30429,48002.694,1967.39,512.14009,45.6942235,530.919035,54.30429,512.14009,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 14:00,30982888,3597.512,1727.2852,472.6932,54.12996,46112.348,1930.366,472.00223,55.376667,276.61804,54.12996,472.00223,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 15:00,30988672,3597.512,1490.3059,458.35785,53.01467,45929.438,1511.4388,491.84937,7.951132,158.71379,53.01467,491.84937,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 16:00,30990590,3597.512,1532.7437,458.99074,53.40508,46072.724,1478.77445,491.295835,19.850681,160.499075,53.40508,491.295835,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 17:00,30992508,3597.512,1575.1815,459.62363,53.79549,46216.01,1446.1101,490.7423,31.75023,162.28436,53.79549,490.7423,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 18:00,30996254,3597.512,930.05828,434.457935,52.150919,24435.582,1125.63085,269.3705685,259.839805,84.180392,52.150919,269.3705685,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 19:00,31000000,3597.512,284.93506,409.29224,50.506348,2655.154,805.1516,47.998837,487.92938,6.076424,50.506348,47.998837,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 20:00,31004046,3597.512,253.19987,403.06247,1.1744951,52337.395,2258.438,684.2239,958.199,135.41776,1.1744951,684.2239,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 21:00,31006978,3597.512,267.3249,398.3271,1.3681091,50225.273,2150.1536,618.75714,524.9683,106.467285,1.3681091,618.75714,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 22:00,31013742,3597.512,62.41676,230.08832,50.506348,50504.83,1570.7355,618.1736,25.698254,0.043484982,50.506348,618.1736,130901.3,73179.4,-15784.6,-201976.5
+12/25/2023 23:00,31017386,3597.512,212.6844733,292.87328,50.506348,33899.672,1323.408833,427.53882,30.28388733,5.364445655,50.506348,427.53882,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 0:00,31021030,3597.512,362.9521867,355.65824,50.506348,17294.514,1076.082167,236.90404,34.86952067,10.68540633,50.506348,236.90404,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 1:00,31024674,3597.512,513.2199,418.4432,50.506348,689.356,828.7555,46.26926,39.455154,16.006367,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 2:00,31025574,3597.512,537.2628,420.90756,50.506348,164.80391,788.75824,17.661684,33.21919,19.737345,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 3:00,31028798,3597.512,612.5212,427.419355,50.506348,164.09333,762.06735,17.661684,27.887506,34.9153525,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 4:00,31032022,3597.512,687.7796,433.93115,50.506348,163.38275,735.37646,17.661684,22.555822,50.09336,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 5:00,31036634,3597.512,653.7134,433.49182,50.506348,9922.243,773.50854,437.71054,4111.9443,48.759518,50.506348,437.71054,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 6:00,31040046,3597.512,1298.7694,444.71698,50.506348,12552.358,1003.2024,264.1691,6654.19,92.721245,50.506348,264.1691,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 7:00,31044879,3597.512,3560.7772,525.96504,54.424807,34184.46,1380.01095,478.98323,5019.2682,3326.255423,54.424807,478.98323,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 8:00,31049712,3597.512,5822.785,607.2131,58.343266,55816.562,1756.8195,693.79736,3384.3464,6559.7896,58.343266,693.79736,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 9:00,31050128,3597.512,5633.309,601.1088,55.69405,55573.69,1729.3906,685.64386,3141.388,6251.873,55.69405,685.64386,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 10:00,31057072,3597.512,3214.6445,542.7475,53.313206,50995.72,1689.0481,561.2437,1031.0452,2064.6086,53.313206,561.2437,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 11:00,31057378,3597.512,3151.3652,540.1989,53.31739,50994.492,1666.7133,561.7713,1002.9568,1943.2595,53.31739,561.7713,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 12:00,31061790.5,3597.512,2751.637975,520.347975,53.23859375,49906.124,1628.2817,544.13605,771.3245,1502.015882,53.23859375,544.13605,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 13:00,31066203,3597.512,2351.91075,500.49705,53.1597975,48817.756,1589.8501,526.5008,539.6922,1060.772265,53.1597975,526.5008,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 14:00,31070615.5,3597.512,1952.183525,480.646125,53.08100125,47729.388,1551.4185,508.86555,308.0599,619.5286475,53.08100125,508.86555,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 15:00,31075028,3597.512,1552.4563,460.7952,53.002205,46641.02,1512.9869,491.2303,76.4276,178.28503,53.002205,491.2303,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 16:00,31075624,3597.512,1551.856,460.3502,53.028843,46719.39,1498.7155,491.1957,88.75774,174.62407,53.028843,491.1957,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 17:00,31080749,3597.512,2124.8323,478.409885,52.6685115,49875.065,1887.2369,599.641915,387.26277,417.705335,52.6685115,599.641915,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 18:00,31085874,3597.512,2697.8086,496.46957,52.30818,53030.74,2275.7583,708.08813,685.7678,660.7866,52.30818,708.08813,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 19:00,31086774,3597.512,2554.9355,498.5208,52.2314,52942.01,2257.1467,676.46844,845.83203,702.4122,52.2314,676.46844,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 20:00,31090286,3597.512,253.64206,407.22723,1.1584965,52870.258,2281.953,691.98126,1013.04645,165.33548,1.1584965,691.98126,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 21:00,31095143,3597.512,2972.08373,505.092165,28.81698025,54261.5605,2008.9828,690.14858,2113.859525,3256.07499,28.81698025,690.14858,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 22:00,31100000,3597.512,5690.5254,602.9571,56.475464,55652.863,1736.0126,688.3159,3214.6726,6346.8145,56.475464,688.3159,130901.3,73179.4,-15784.6,-201976.5
+12/26/2023 23:00,31103698.67,3597.512,3975.813467,542.43836,54.48575867,37338.72093,1436.064333,474.3003533,2162.719469,4238.142492,54.48575867,474.3003533,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 0:00,31107397.33,3597.512,2261.101533,481.91962,52.49605333,19024.57887,1136.116067,260.2848067,1110.766337,2129.470485,52.49605333,260.2848067,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 1:00,31111096,3597.512,546.3896,421.40088,50.506348,710.4368,836.1678,46.26926,58.813206,20.798477,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 2:00,31111996,3597.512,565.2083,423.25143,50.506348,171.21658,795.62494,17.661684,49.79964,24.080324,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 3:00,31115210,3597.512,625.8914,428.437665,50.506348,169.24141,768.35599,17.661684,42.63304,36.8418895,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 4:00,31118424,3597.512,686.5745,433.6239,50.506348,167.26624,741.08704,17.661684,35.46644,49.603455,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 5:00,31122812,3597.512,607.3886,430.996,50.506348,7891.161,1112.8009,276.47946,2734.23,41.931164,50.506348,276.47946,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 6:00,31126368,3597.512,1042.9894,438.4396,50.506348,10378.329,918.74493,182.74426,4995.9614,66.251305,50.506348,182.74426,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 7:00,31131282,3597.512,2938.5387,508.13548,51.8351215,32494.8745,1316.880165,436.59113,3221.4821,2268.541903,51.8351215,436.59113,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 8:00,31136196,3597.512,4834.088,577.83136,53.163895,54611.42,1715.0154,690.438,1447.0028,4470.8325,53.163895,690.438,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 9:00,31136526,3597.512,4686.3174,575.4835,53.18525,54435.867,1696.0273,685.23816,1342.329,4276.6333,53.18525,685.23816,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 10:00,31143474,3597.512,2819.062,525.17975,53.335594,50564.125,1669.4078,564.21686,464.49368,1359.7482,53.335594,564.21686,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 11:00,31144096,3597.512,2707.978,520.4753,53.365788,51041.734,838.3943,557.1101,479.79623,1212.6494,53.365788,557.1101,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 12:00,31150678,3597.512,2039.6914,482.95734,55.15521,49007.86,2154.8118,564.12415,762.07654,394.0156,55.15521,564.12415,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 13:00,31151578,3597.512,1955.0823,479.74265,55.15076,48048.895,2124.0012,514.7206,1009.2399,351.2049,55.15076,514.7206,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 14:00,31154532,3597.512,1594.3153,465.31393,54.769497,46538.277,2039.7592,490.3319,455.15704,201.9769,54.769497,490.3319,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 15:00,31158278,3597.512,1453.82285,456.660315,53.9056735,46540.7135,1819.54795,492.3684,245.150402,149.729115,53.9056735,492.3684,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 16:00,31162024,3597.512,1313.3304,448.0067,53.04185,46543.15,1599.3367,494.4049,35.143764,97.48133,53.04185,494.4049,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 17:00,31167131,3597.512,1883.3434,467.95507,52.675634,49522.755,1928.86915,595.304135,368.618082,304.614765,52.675634,595.304135,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 18:00,31172238,3597.512,2453.3564,487.90344,52.309418,52502.36,2258.4016,696.20337,702.0924,511.7482,52.309418,696.20337,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 19:00,31173138,3597.512,2348.4092,490.2802,52.237446,52566.527,2243.9355,667.8411,870.613,552.6297,52.237446,667.8411,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 20:00,31176846,3597.512,253.83684,401.22287,1.1688968,52622.57,2270.2808,687.25085,1005.02765,125.8287,1.1688968,687.25085,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 21:00,31181689,3597.512,192.64406,399.12546,25.8376224,51606.845,1927.38035,655.329725,510.8737085,63.06057373,25.8376224,655.329725,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 22:00,31186532,3597.512,131.45128,397.02805,50.506348,50591.12,1584.4799,623.4086,16.719767,0.29244745,50.506348,623.4086,130901.3,73179.4,-15784.6,-201976.5
+12/27/2023 23:00,31190163.33,3597.512,215.44158,401.4595667,50.506348,33957.83639,1326.304613,431.02882,15.41169367,2.615920467,50.506348,431.02882,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 0:00,31193794.67,3597.512,299.43188,405.8910833,50.506348,17324.55278,1068.129327,238.64904,14.10362033,4.939393483,50.506348,238.64904,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 1:00,31197426,3597.512,383.42218,410.3226,50.506348,691.26917,809.95404,46.26926,12.795547,7.2628665,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 2:00,31198326,3597.512,402.0383,412.42017,50.506348,170.99805,770.45135,17.661684,10.719191,9.194728,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 3:00,31201576,3597.512,425.0535,415.952,50.506348,169.019225,742.950125,17.661684,8.477155,13.585235,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 4:00,31204826,3597.512,448.0687,419.48383,50.506348,167.0404,715.4489,17.661684,6.235119,17.975742,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 5:00,31209296,3597.512,585.04724,428.4546,50.506348,5601.183,431.5558,134.20372,1681.8282,35.664257,50.506348,134.20372,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 6:00,31213700,3597.512,1979.082927,475.8697,51.399842,21943.61667,860.0249667,320.8676233,1519.365767,1325.559505,51.399842,320.8676233,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 7:00,31218104,3597.512,3373.118613,523.2848,52.293336,38286.05033,1288.494133,507.5315267,1356.903333,2615.454752,52.293336,507.5315267,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 8:00,31222508,3597.512,4767.1543,570.6999,53.18683,54628.484,1716.9633,694.19543,1194.4409,3905.35,53.18683,694.19543,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 9:00,31222928,3597.512,4620.3594,568.51587,53.213142,54458.676,1692.956,687.89734,1128.8757,3733.7935,53.213142,687.89734,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 10:00,31229872,3597.512,3038.696,531.07837,53.348713,50897.043,1680.9913,565.6129,688.38025,1572.0378,53.348713,565.6129,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 11:00,31230178,3597.512,2984.844,528.96014,53.352386,50919.066,1659.7289,566.0963,695.5306,1493.8676,53.352386,566.0963,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 12:00,31234587,3597.512,2652.71365,513.1202125,53.271187,49854.85125,1625.760025,548.3412075,538.9950675,1175.730333,53.271187,548.3412075,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 13:00,31238996,3597.512,2320.5833,497.280285,53.189988,48790.6365,1591.79115,530.586115,382.459535,857.593065,53.189988,530.586115,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 14:00,31243405,3597.512,1988.45295,481.4403575,53.108789,47726.42175,1557.822275,512.8310225,225.9240025,539.4557975,53.108789,512.8310225,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 15:00,31247814,3597.512,1656.3226,465.60043,53.02759,46662.207,1523.8534,495.07593,69.38847,221.31853,53.02759,495.07593,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 16:00,31248644,3597.512,1660.6659,465.1369,53.087772,47035.105,695.07513,486.74,88.82432,216.55954,53.087772,486.74,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 17:00,31253146.67,3597.512,1557.2911,466.3953233,52.64190267,49049.30667,1218.706653,553.45059,370.0879567,233.27172,52.64190267,553.45059,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 18:00,31257649.33,3597.512,1453.9163,467.6537467,52.19603333,51063.50833,1742.338177,620.16118,651.3515933,249.9839,52.19603333,620.16118,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 19:00,31262152,3597.512,1350.5415,468.91217,51.750164,53077.71,2265.9697,686.87177,932.61523,266.69608,51.750164,686.87177,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 20:00,31262682,3597.512,253.02815,413.34863,1.1397008,52989.17,2266.4353,687.4777,942.5264,218.20404,1.1397008,687.4777,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 21:00,31267809,3597.512,201.74388,406.023065,25.8230244,52125.015,1942.7805,656.39155,522.431718,109.409583,25.8230244,656.39155,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 22:00,31272936,3597.512,150.45961,398.6975,50.506348,51260.86,1619.1257,625.3054,102.337036,0.6151259,50.506348,625.3054,130901.3,73179.4,-15784.6,-201976.5
+12/28/2023 23:00,31276593.33,3597.512,259.03024,404.9700567,50.506348,34254.52482,1345.53552,422.7574947,80.35636733,5.514037267,50.506348,422.7574947,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 0:00,31280250.67,3597.512,367.60087,411.2426133,50.506348,17248.18964,1071.94534,220.2095893,58.37569867,10.41294863,50.506348,220.2095893,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 1:00,31283908,3597.512,476.1715,417.51517,50.506348,241.85446,798.35516,17.661684,36.39503,15.31186,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 2:00,31286347.33,3597.512,474.3126567,419.0649133,50.506348,217.01868,776.17964,17.661684,30.88032333,17.74786367,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 3:00,31288786.67,3597.512,472.4538133,420.6146567,50.506348,192.1829,754.00412,17.661684,25.36561667,20.18386733,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 4:00,31291226,3597.512,470.59497,422.1644,50.506348,167.34712,731.8286,17.661684,19.85091,22.619871,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 5:00,31295646,3597.512,535.9013,425.89566,50.506348,5644.5503,963.2267,144.68025,1682.4143,30.018393,50.506348,144.68025,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 6:00,31300000,3597.512,1675.6665,465.36078,53.531624,49126.76,1607.0121,1203.835,120.57324,214.59842,53.531624,1203.835,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 7:00,31304488,3597.512,3051.0171,514.44199,53.366335,51822.065,1674.99165,948.46123,627.93162,1792.41541,53.366335,948.46123,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 8:00,31308976,3597.512,4426.3677,563.5232,53.201046,54517.37,1742.9712,693.08746,1135.29,3370.2324,53.201046,693.08746,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 9:00,31309328,3597.512,4276.4536,561.4649,53.223278,54356.285,1720.3536,687.8962,1071.3058,3220.1812,53.223278,687.8962,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 10:00,31316272,3597.512,2578.186,512.54663,53.366302,50077.57,1643.0194,567.295,251.7363,1002.3447,53.366302,567.295,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 11:00,31316868,3597.512,2495.8264,508.79807,53.393482,50502.6,820.0545,560.3771,239.03464,909.28094,53.393482,560.3771,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 12:00,31323148,3597.512,2123.9214,482.9892,55.11948,49263.77,2083.4038,574.1609,262.59293,398.6932,55.11948,574.1609,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 13:00,31324048,3597.512,2106.9124,482.395,55.154636,48519.56,2050.6836,521.9877,392.56598,390.00232,55.154636,521.9877,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 14:00,31327404,3597.512,1793.9711,472.71524,54.77364,46748.305,2052.6873,493.32803,684.6818,276.0448,54.77364,493.32803,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 15:00,31334218,3597.512,1369.2568,452.1469,53.044617,46333.824,1511.9858,499.32523,14.829624,121.579124,53.044617,499.32523,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 16:00,31334822,3597.512,1374.5796,452.08743,53.07105,46430.32,1495.0527,499.2079,21.06094,121.0766,53.07105,499.2079,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 17:00,31339860,3597.512,1764.1903,465.289475,52.701117,49532.565,1876.49285,601.984625,362.31157,248.41101,52.701117,601.984625,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 18:00,31344898,3597.512,2153.801,478.49152,52.331184,52634.81,2257.933,704.76135,703.5622,375.74542,52.331184,704.76135,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 19:00,31345798,3597.512,2104.0012,480.6889,52.2808,52737.312,2244.6787,675.2662,892.5723,406.7075,52.2808,675.2662,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 20:00,31349642,3597.512,254.23448,394.56818,1.1778103,52839.344,2228.755,690.5712,592.2226,91.16339,1.1778103,690.5712,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 21:00,31352913,3597.512,241.860335,391.241565,1.03085565,52214.6195,2161.2116,671.99388,326.9803625,77.68259,1.03085565,671.99388,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 22:00,31356184,3597.512,229.48619,387.91495,0.883901,51589.895,2093.6682,653.41656,61.738125,64.20179,0.883901,653.41656,130901.3,73179.4,-15784.6,-201976.5
+12/29/2023 23:00,31361460,3597.512,133.171885,272.64258,25.6951245,47616.139,1664.16735,542.518355,35.7664815,32.10795545,25.6951245,542.518355,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 0:00,31366736,3597.512,36.85758,157.37021,50.506348,43642.383,1234.6665,431.62015,9.794838,0.014120897,50.506348,431.62015,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 1:00,31367636,3597.512,41.078537,171.10033,50.506348,36812.96,1040.4467,250.74059,8.300465,0.018406393,50.506348,250.74059,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 2:00,31370969.33,3597.512,92.45257467,247.5033533,50.506348,24597.58586,932.3884,173.0476213,7.1458919,0.385261295,50.506348,173.0476213,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 3:00,31374302.67,3597.512,143.8266123,323.9063767,50.506348,12382.21173,824.3301,95.35465267,5.9913188,0.752116198,50.506348,95.35465267,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 4:00,31377636,3597.512,195.20065,400.3094,50.506348,166.83759,716.2718,17.661684,4.8367457,1.1189711,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 5:00,31381511,3597.512,235.933575,403.78307,50.506348,2747.771295,776.0266,33.318627,486.6628479,3.11345635,50.506348,33.318627,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 6:00,31385386,3597.512,276.6665,407.25674,50.506348,5328.705,835.7814,48.97557,968.48895,5.1079416,50.506348,48.97557,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 7:00,31390410,3597.512,318.13125,409.68234,50.506348,23634.1325,1114.32605,227.03202,506.037621,7.1436708,50.506348,227.03202,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 8:00,31395434,3597.512,359.596,412.10794,50.506348,41939.56,1392.8707,405.08847,43.586292,9.1794,50.506348,405.08847,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 9:00,31395724,3597.512,358.88977,412.06796,50.506348,41969.047,1376.7743,406.1111,37.19711,9.140425,50.506348,406.1111,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 10:00,31400000,3597.512,256.25983,393.50024,1.2043552,52574.73,2221.5493,681.97235,606.3675,86.02358,1.2043552,681.97235,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 11:00,31402966,3597.512,304.5654,408.5152,50.506348,50221.145,1626.7476,621.2775,18.26907,6.0471206,50.506348,621.2775,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 12:00,31409522,3597.512,202.2309,401.62994,50.506348,51745.8,2086.4294,671.3454,7.8986063,1.670158,50.506348,671.3454,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 13:00,31410422,3597.512,194.49431,401.1576,50.506348,51595.07,2039.1711,624.1542,8.282728,1.4626917,50.506348,624.1542,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 14:00,31413886,3597.512,153.02118,398.65726,50.506348,49883.52,1986.5802,574.70447,7.3553166,0.65362406,50.506348,574.70447,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 15:00,31417491.33,3597.512,192.3207867,400.26579,50.506348,49059.128,1781.1224,562.9612233,5.2041975,1.32823864,50.506348,562.9612233,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 16:00,31421096.67,3597.512,231.6203933,401.87432,50.506348,48234.736,1575.6646,551.2179767,3.0530784,2.00285322,50.506348,551.2179767,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 17:00,31424702,3597.512,270.92,403.48285,50.506348,47410.344,1370.2068,539.47473,0.9019593,2.6774678,50.506348,539.47473,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 18:00,31431412,3597.512,382.61536,411.2229,50.506348,52261.64,2167.0261,691.64417,292.3516,8.378996,50.506348,691.64417,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 19:00,31432312,3597.512,383.7762,411.57397,50.506348,52251.426,2151.8022,655.28815,481.0729,8.711469,50.506348,655.28815,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 20:00,31436847.33,3597.512,396.5643933,412.71596,50.506348,51037.88733,2033.8921,617.6655333,321.6095334,9.940284,50.506348,617.6655333,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 21:00,31441382.67,3597.512,409.3525867,413.85795,50.506348,49824.34867,1915.982,580.0429167,162.1461669,11.169099,50.506348,580.0429167,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 22:00,31445918,3597.512,422.14078,414.99994,50.506348,48610.81,1798.0719,542.4203,2.6828003,12.397914,50.506348,542.4203,130901.3,73179.4,-15784.6,-201976.5
+12/30/2023 23:00,31446142,3597.512,424.30936,415.15936,50.506348,48430.438,1778.038,536.28406,2.6273792,12.589069,50.506348,536.28406,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 0:00,31453058,3597.512,455.9221,416.68958,50.506348,44883.375,1420.2638,470.0994,1.279603,14.5303755,50.506348,470.0994,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 1:00,31453958,3597.512,471.69012,417.67984,50.506348,39093.117,1226.5638,295.8536,1.2168351,15.878626,50.506348,295.8536,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 2:00,31457318,3597.512,489.3726467,419.8376467,50.506348,26117.67919,1091.810967,203.1229613,1.0894993,19.540839,50.506348,203.1229613,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 3:00,31460678,3597.512,507.0551733,421.9954533,50.506348,13142.24138,957.0581333,110.3923227,0.9621635,23.203052,50.506348,110.3923227,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 4:00,31464038,3597.512,524.7377,424.15326,50.506348,166.80357,822.3053,17.661684,0.8348277,26.865265,50.506348,17.661684,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 5:00,31467912,3597.512,510.16638,424.24489,50.506348,2560.635785,877.129425,31.965472,349.3213139,27.061675,50.506348,31.965472,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 6:00,31471786,3597.512,495.59506,424.33652,50.506348,4954.468,931.95355,46.26926,697.8078,27.258085,50.506348,46.26926,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 7:00,31476810,3597.512,552.78843,425.99065,50.506348,23448.652,1159.565525,226.60263,363.403472,30.9589335,50.506348,226.60263,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 8:00,31481834,3597.512,609.9818,427.64478,50.506348,41942.836,1387.1775,406.936,28.999144,34.659782,50.506348,406.936,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 9:00,31484922.5,3597.512,523.230625,422.2129025,50.506348,44132.10075,1389.7628,465.461275,22.12522863,27.07433265,50.506348,465.461275,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 10:00,31488011,3597.512,436.47945,416.781025,50.506348,46321.3655,1392.3481,523.98655,15.25131325,19.4888833,50.506348,523.98655,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 11:00,31491099.5,3597.512,349.728275,411.3491475,50.506348,48510.63025,1394.9334,582.511825,8.377397875,11.90343395,50.506348,582.511825,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 12:00,31494188,3597.512,262.9771,405.91727,50.506348,50699.895,1397.5187,641.0371,1.5034825,4.3179846,50.506348,641.0371,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 13:00,31496768,3597.512,227.06432,403.68826,50.506348,50830.99,1576.3494,1280.4943,0.14033733,2.8655,50.506348,1280.4943,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 14:00,31500000,3597.512,416.71692,414.77148,50.506348,45797.516,1530.2659,493.67938,1.7743258,12.134664,50.506348,493.67938,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 15:00,31503642,3597.512,423.55089,414.721935,50.506348,46625.4035,1516.9351,516.979085,2.0498568,12.1020785,50.506348,516.979085,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 16:00,31507284,3597.512,430.38486,414.67239,50.506348,47453.291,1503.6043,540.27879,2.3253878,12.069493,50.506348,540.27879,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 17:00,31510926,3597.512,437.21883,414.622845,50.506348,48281.1785,1490.2735,563.578495,2.6009188,12.0369075,50.506348,563.578495,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 18:00,31514568,3597.512,444.0528,414.5733,50.506348,49109.066,1476.9427,586.8782,2.8764498,12.004322,50.506348,586.8782,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 19:00,31518752,3597.512,626.0351,425.15845,50.506348,51719.594,2037.3846,616.68335,15.46188,29.104782,50.506348,616.68335,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 20:00,31522035,3597.512,659.39085,427.185375,50.506348,50000.051,2049.3138,580.028045,228.226805,33.926286,50.506348,580.028045,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 21:00,31525318,3597.512,692.7466,429.2123,50.506348,48280.508,2061.243,543.37274,440.99173,38.74779,50.506348,543.37274,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 22:00,31522035,3597.512,659.39085,427.185375,50.506348,50000.051,2049.3138,580.028045,228.226805,33.926286,50.506348,580.028045,130901.3,73179.4,-15784.6,-201976.5
+12/31/2023 23:00,31525318,3597.512,692.7466,429.2123,50.506348,48280.508,2061.243,543.37274,440.99173,38.74779,50.506348,543.37274,130901.3,73179.4,-15784.6,-201976.5
diff --git a/spec/files/reopt_assumptions_4tsperhour_v3.json b/spec/files/reopt_assumptions_4tsperhour_v3.json
index 960d9f5c..730881cd 100644
--- a/spec/files/reopt_assumptions_4tsperhour_v3.json
+++ b/spec/files/reopt_assumptions_4tsperhour_v3.json
@@ -30,7 +30,8 @@
"ElectricLoad": {
"critical_loads_kw_is_net": false,
"critical_load_fraction": 0,
- "loads_kw_is_net": true
+ "loads_kw_is_net": true,
+ "year": 2017
},
"PV": {
"name": "Roof - South Face",
diff --git a/spec/files/reopt_assumptions_with_wind_v3.json b/spec/files/reopt_assumptions_with_wind_v3.json
index 18f98276..04201372 100644
--- a/spec/files/reopt_assumptions_with_wind_v3.json
+++ b/spec/files/reopt_assumptions_with_wind_v3.json
@@ -29,7 +29,8 @@
"ElectricLoad": {
"critical_loads_kw_is_net": false,
"critical_load_fraction": 0,
- "loads_kw_is_net": true
+ "loads_kw_is_net": true,
+ "year": 2017
},
"PV": {
"name": "Roof - South Face",
diff --git a/spec/files/run/baseline_scenario_ghe/4/feature_reports/default_feature_report.csv b/spec/files/run/baseline_scenario_ghe/4/feature_reports/default_feature_report.csv
new file mode 100644
index 00000000..463d9f4d
--- /dev/null
+++ b/spec/files/run/baseline_scenario_ghe/4/feature_reports/default_feature_report.csv
@@ -0,0 +1,8761 @@
+Datetime,Electricity:Facility(kWh),ElectricityProduced:Facility(),NaturalGas:Facility(kBtu),Propane:Facility(kBtu),FuelOilNo2:Facility(kBtu),OtherFuels:Facility(kBtu),Cooling:Electricity(kWh),Heating:Electricity(kWh),InteriorLights:Electricity(kWh),ExteriorLights:Electricity(kWh),InteriorEquipment:Electricity(kWh),ExteriorEquipment:Electricity(),Fans:Electricity(kWh),Pumps:Electricity(kWh),WaterSystems:Electricity(kWh),HeatRejection:Electricity(),HeatRejection:NaturalGas(kBtu),Heating:NaturalGas(kBtu),WaterSystems:NaturalGas(kBtu),InteriorEquipment:NaturalGas(kBtu),HeatRejection:Propane(kBtu),Heating:Propane(kBtu),WaterSystems:Propane(kBtu),InteriorEquipment:Propane(kBtu),HeatRejection:FuelOilNo2(kBtu),Heating:FuelOilNo2(kBtu),WaterSystems:FuelOilNo2(kBtu),InteriorEquipment:FuelOilNo2(kBtu),HeatRejection:OtherFuels(kBtu),Heating:OtherFuels(kBtu),WaterSystems:OtherFuels(kBtu),InteriorEquipment:OtherFuels(kBtu),DistrictCooling:Facility(),DistrictHeating:Facility(),District Cooling Chilled Water Rate(),District Cooling Mass Flow Rate(),District Cooling Inlet Temperature(),District Cooling Outlet Temperature(),District Heating Hot Water Rate(),District Heating Mass Flow Rate(),District Heating Inlet Temperature(),District Heating Outlet Temperature(),BUILDING STORY 1 THERMALZONE 1 PSZ-AC 1SPD DX AC CLG COIL 78KBTU/HR 11.0EER(W),BUILDING STORY 1 THERMALZONE 2 PSZ-AC 1SPD DX AC CLG COIL 58KBTU/HR 14.0SEER(W),BUILDING STORY 1 THERMALZONE 3 PSZ-AC 1SPD DX AC CLG COIL 64KBTU/HR 14.0SEER(W),BUILDING STORY 1 THERMALZONE 4 PSZ-AC 1SPD DX AC CLG COIL 54KBTU/HR 14.0SEER(W),BUILDING STORY 1 THERMALZONE PSZ-AC 1SPD DX AC CLG COIL 363KBTU/HR 9.8EER(W),BUILDING STORY 2 THERMALZONE 1 PSZ-AC 1SPD DX AC CLG COIL 93KBTU/HR 11.0EER(W),BUILDING STORY 2 THERMALZONE 2 PSZ-AC 1SPD DX AC CLG COIL 64KBTU/HR 14.0SEER(W),BUILDING STORY 2 THERMALZONE 3 PSZ-AC 1SPD DX AC CLG COIL 77KBTU/HR 11.0EER(W),BUILDING STORY 2 THERMALZONE 4 PSZ-AC 1SPD DX AC CLG COIL 61KBTU/HR 14.0SEER(W),BUILDING STORY 2 THERMALZONE PSZ-AC 1SPD DX AC CLG COIL 430KBTU/HR 9.8EER(W),BUILDING STORY 3 THERMALZONE 1 PSZ-AC 1SPD DX AC CLG COIL 95KBTU/HR 11.0EER(W),BUILDING STORY 3 THERMALZONE 2 PSZ-AC 1SPD DX AC CLG COIL 66KBTU/HR 11.0EER(W),BUILDING STORY 3 THERMALZONE 3 PSZ-AC 1SPD DX AC CLG COIL 78KBTU/HR 11.0EER(W),BUILDING STORY 3 THERMALZONE 4 PSZ-AC 1SPD DX AC CLG COIL 62KBTU/HR 14.0SEER(W),BUILDING STORY 3 THERMALZONE PSZ-AC 1SPD DX AC CLG COIL 426KBTU/HR 9.8EER(W),BUILDING STORY 1 THERMALZONE 1 PSZ-AC ELECTRIC BACKUP HTG COIL(W),BUILDING STORY 1 THERMALZONE 1 PSZ-AC WATER HTG COIL(W),BUILDING STORY 1 THERMALZONE 2 PSZ-AC ELECTRIC BACKUP HTG COIL(W),BUILDING STORY 1 THERMALZONE 2 PSZ-AC WATER HTG COIL(W),BUILDING STORY 1 THERMALZONE 3 PSZ-AC ELECTRIC BACKUP HTG COIL(W),BUILDING STORY 1 THERMALZONE 3 PSZ-AC WATER HTG COIL(W),BUILDING STORY 1 THERMALZONE 4 PSZ-AC ELECTRIC BACKUP HTG COIL(W),BUILDING STORY 1 THERMALZONE 4 PSZ-AC WATER HTG COIL(W),BUILDING STORY 1 THERMALZONE PSZ-AC ELECTRIC BACKUP HTG COIL(W),BUILDING STORY 1 THERMALZONE PSZ-AC WATER HTG COIL(W),BUILDING STORY 2 THERMALZONE 1 PSZ-AC ELECTRIC BACKUP HTG COIL(W),BUILDING STORY 2 THERMALZONE 1 PSZ-AC WATER HTG COIL(W),BUILDING STORY 2 THERMALZONE 2 PSZ-AC ELECTRIC BACKUP HTG COIL(W),BUILDING STORY 2 THERMALZONE 2 PSZ-AC WATER HTG COIL(W),BUILDING STORY 2 THERMALZONE 3 PSZ-AC ELECTRIC BACKUP HTG COIL(W),BUILDING STORY 2 THERMALZONE 3 PSZ-AC WATER HTG COIL(W),BUILDING STORY 2 THERMALZONE 4 PSZ-AC ELECTRIC BACKUP HTG COIL(W),BUILDING STORY 2 THERMALZONE 4 PSZ-AC WATER HTG COIL(W),BUILDING STORY 2 THERMALZONE PSZ-AC ELECTRIC BACKUP HTG COIL(W),BUILDING STORY 2 THERMALZONE PSZ-AC WATER HTG COIL(W),BUILDING STORY 3 THERMALZONE 1 PSZ-AC ELECTRIC BACKUP HTG COIL(W),BUILDING STORY 3 THERMALZONE 1 PSZ-AC WATER HTG COIL(W),BUILDING STORY 3 THERMALZONE 2 PSZ-AC ELECTRIC BACKUP HTG COIL(W),BUILDING STORY 3 THERMALZONE 2 PSZ-AC WATER HTG COIL(W),BUILDING STORY 3 THERMALZONE 3 PSZ-AC ELECTRIC BACKUP HTG COIL(W),BUILDING STORY 3 THERMALZONE 3 PSZ-AC WATER HTG COIL(W),BUILDING STORY 3 THERMALZONE 4 PSZ-AC ELECTRIC BACKUP HTG COIL(W),BUILDING STORY 3 THERMALZONE 4 PSZ-AC WATER HTG COIL(W),BUILDING STORY 3 THERMALZONE PSZ-AC ELECTRIC BACKUP HTG COIL(W),BUILDING STORY 3 THERMALZONE PSZ-AC WATER HTG COIL(W),Future_Annual_Electricity_Emissions(),Future_Hourly_Electricity_Emissions(),Historical_Annual_Electricity_Emissions(),Historical_Hourly_Electricity_Emissions(),Future_Annual_Electricity_Emissions_Intensity(),Future_Hourly_Electricity_Emissions_Intensity(),Historical_Annual_Electricity_Emissions_Intensity(),Historical_Hourly_Electricity_Emissions_Intensity(),Natural_Gas_Emissions(MT),Natural_Gas_Emissions_Intensity(KG/FT2),Propane_Emissions(MT),Propane_Emissions_Intensity(KG/FT2),FuelOilNo2_Emissions(MT),FuelOilNo2_Emissions_Intensity(KG/FT2),Curtailed EV Power(),Daily EV Charge Energy Capacity(),EV Charge Ratio(),Total Charged EV Energy(),Total Curtailed EV Energy(),Total Scheduled EV Energy(),Emission Intensity Schedule Output(),EV Charging Effective Schedule(),EV Charging Original Schedule(),EV Charging Original Load(),Zone Thermal Comfort Fanger Model PMV BUILDING STORY 1 SPACE 1 FULLSERVICERESTAURANT DINING PEOPLE 1(),Zone Thermal Comfort Fanger Model PMV BUILDING STORY 1 SPACE 1 FULLSERVICERESTAURANT KITCHEN PEOPLE 1(),Zone Thermal Comfort Fanger Model PMV BUILDING STORY 1 SPACE 2 FULLSERVICERESTAURANT DINING PEOPLE 1(),Zone Thermal Comfort Fanger Model PMV BUILDING STORY 1 SPACE 2 FULLSERVICERESTAURANT KITCHEN PEOPLE 1(),Zone Thermal Comfort Fanger Model PMV BUILDING STORY 1 SPACE 3 FULLSERVICERESTAURANT DINING PEOPLE 1(),Zone Thermal Comfort Fanger Model PMV BUILDING STORY 1 SPACE 3 FULLSERVICERESTAURANT KITCHEN PEOPLE 1(),Zone Thermal Comfort Fanger Model PMV BUILDING STORY 1 SPACE 4 FULLSERVICERESTAURANT DINING PEOPLE 1(),Zone Thermal Comfort Fanger Model PMV BUILDING STORY 1 SPACE 4 FULLSERVICERESTAURANT KITCHEN PEOPLE 1(),Zone Thermal Comfort Fanger Model PMV BUILDING STORY 1 SPACE FULLSERVICERESTAURANT DINING PEOPLE 1(),Zone Thermal Comfort Fanger Model PMV BUILDING STORY 1 SPACE FULLSERVICERESTAURANT KITCHEN PEOPLE 1(),Zone Thermal Comfort Fanger Model PMV BUILDING STORY 2 SPACE 1 FULLSERVICERESTAURANT DINING PEOPLE 2(),Zone Thermal Comfort Fanger Model PMV BUILDING STORY 2 SPACE 2 FULLSERVICERESTAURANT DINING PEOPLE 2(),Zone Thermal Comfort Fanger Model PMV BUILDING STORY 2 SPACE 3 FULLSERVICERESTAURANT DINING PEOPLE 2(),Zone Thermal Comfort Fanger Model PMV BUILDING STORY 2 SPACE 4 FULLSERVICERESTAURANT DINING PEOPLE 2(),Zone Thermal Comfort Fanger Model PMV BUILDING STORY 2 SPACE FULLSERVICERESTAURANT DINING PEOPLE 2(),Zone Thermal Comfort Fanger Model PMV BUILDING STORY 3 SPACE 1 FULLSERVICERESTAURANT DINING PEOPLE 3(),Zone Thermal Comfort Fanger Model PMV BUILDING STORY 3 SPACE 2 FULLSERVICERESTAURANT DINING PEOPLE 3(),Zone Thermal Comfort Fanger Model PMV BUILDING STORY 3 SPACE 3 FULLSERVICERESTAURANT DINING PEOPLE 3(),Zone Thermal Comfort Fanger Model PMV BUILDING STORY 3 SPACE 4 FULLSERVICERESTAURANT DINING PEOPLE 3(),Zone Thermal Comfort Fanger Model PMV BUILDING STORY 3 SPACE FULLSERVICERESTAURANT DINING PEOPLE 3(),Zone Thermal Comfort Fanger Model PPD BUILDING STORY 1 SPACE 1 FULLSERVICERESTAURANT DINING PEOPLE 1(),Zone Thermal Comfort Fanger Model PPD BUILDING STORY 1 SPACE 1 FULLSERVICERESTAURANT KITCHEN PEOPLE 1(),Zone Thermal Comfort Fanger Model PPD BUILDING STORY 1 SPACE 2 FULLSERVICERESTAURANT DINING PEOPLE 1(),Zone Thermal Comfort Fanger Model PPD BUILDING STORY 1 SPACE 2 FULLSERVICERESTAURANT KITCHEN PEOPLE 1(),Zone Thermal Comfort Fanger Model PPD BUILDING STORY 1 SPACE 3 FULLSERVICERESTAURANT DINING PEOPLE 1(),Zone Thermal Comfort Fanger Model PPD BUILDING STORY 1 SPACE 3 FULLSERVICERESTAURANT KITCHEN PEOPLE 1(),Zone Thermal Comfort Fanger Model PPD BUILDING STORY 1 SPACE 4 FULLSERVICERESTAURANT DINING PEOPLE 1(),Zone Thermal Comfort Fanger Model PPD BUILDING STORY 1 SPACE 4 FULLSERVICERESTAURANT KITCHEN PEOPLE 1(),Zone Thermal Comfort Fanger Model PPD BUILDING STORY 1 SPACE FULLSERVICERESTAURANT DINING PEOPLE 1(),Zone Thermal Comfort Fanger Model PPD BUILDING STORY 1 SPACE FULLSERVICERESTAURANT KITCHEN PEOPLE 1(),Zone Thermal Comfort Fanger Model PPD BUILDING STORY 2 SPACE 1 FULLSERVICERESTAURANT DINING PEOPLE 2(),Zone Thermal Comfort Fanger Model PPD BUILDING STORY 2 SPACE 2 FULLSERVICERESTAURANT DINING PEOPLE 2(),Zone Thermal Comfort Fanger Model PPD BUILDING STORY 2 SPACE 3 FULLSERVICERESTAURANT DINING PEOPLE 2(),Zone Thermal Comfort Fanger Model PPD BUILDING STORY 2 SPACE 4 FULLSERVICERESTAURANT DINING PEOPLE 2(),Zone Thermal Comfort Fanger Model PPD BUILDING STORY 2 SPACE FULLSERVICERESTAURANT DINING PEOPLE 2(),Zone Thermal Comfort Fanger Model PPD BUILDING STORY 3 SPACE 1 FULLSERVICERESTAURANT DINING PEOPLE 3(),Zone Thermal Comfort Fanger Model PPD BUILDING STORY 3 SPACE 2 FULLSERVICERESTAURANT DINING PEOPLE 3(),Zone Thermal Comfort Fanger Model PPD BUILDING STORY 3 SPACE 3 FULLSERVICERESTAURANT DINING PEOPLE 3(),Zone Thermal Comfort Fanger Model PPD BUILDING STORY 3 SPACE 4 FULLSERVICERESTAURANT DINING PEOPLE 3(),Zone Thermal Comfort Fanger Model PPD BUILDING STORY 3 SPACE FULLSERVICERESTAURANT DINING PEOPLE 3(),Net Electric Energy(kWh),Electricity:Facility Power(kW),ElectricityProduced:Facility Power(kW),Electricity:Facility Apparent Power(kVA),ElectricityProduced:Facility Apparent Power(kVA),Net Power(kW),Net Apparent Power(kVA),Ice Thermal Storage End Fraction(),Cooling Coil Ice Thermal Storage End Fraction()
+2017/01/01 01:00:00,42.96818680171459,0,548.9174172160864,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.635949040710169e-09,11.78255273427858,0,0,0.0,495.68188844727035,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02922476987937482,0.000924651347638372,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7324399185634679,-0.7324399185634679,-0.7297090157796335,-0.7297090157796335,-0.7568769917588413,-0.7568769917588413,-0.5061172945379652,-0.5061172945379652,-0.2720943306255358,-0.2720943306255358,-0.7716137391069182,-0.8233220319887572,-0.7865213448490901,-0.8320440549695274,-0.161547305712155,-0.7911342791032052,-0.8466245859329807,-0.8054520153722787,-0.8514034452357474,-0.25072261524712,16.292331613022853,16.292331613022853,16.207477103190755,16.207477103190755,17.06588541412539,17.06588541412539,10.354706499213691,10.354706499213691,6.537451176038772,6.537451176038772,17.54473013130078,19.297901651542034,18.038546540651012,19.604741690280704,5.540855967922695,18.19326462735083,20.12479228309438,18.679226171622105,20.29717096405045,6.3048149157563245,42.96818680171459,42.96818680171459,0.0,47.74242977968287,0.0,42.96818680171459,47.74242977968287,0,0
+2017/01/01 02:00:00,23.72218610162864,0,50.71057558791866,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250906779508456,0,0,0.0,15.220223075374525,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002699868605962198,8.542196072898157e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7926960463259315,-0.7926960463259315,-0.7955557720757931,-0.7955557720757931,-0.8195798874519141,-0.8195798874519141,-0.5623081728963327,-0.5623081728963327,-0.12902315939016262,-0.12902315939016262,-0.903673496615417,-0.9597321653210138,-0.9261519913865487,-0.9720114959498514,-0.10713850665639023,-0.950484597685402,-1.0110989741207175,-0.9716774650899666,-1.017555532992164,-0.25132826393914187,18.245850993775534,18.245850993775534,18.34240905387962,18.34240905387962,19.16723235285427,19.16723235285427,11.621672430462553,11.621672430462553,5.344856006098524,5.344856006098524,22.244155104996693,24.455229485932975,23.115684099752883,24.956140882500918,5.237735731930968,24.08188687796249,26.58931075325195,24.942437097383745,26.864655828771134,6.311142966471451,23.72218610162864,23.72218610162864,0.0,26.357984557365157,0.0,23.72218610162864,26.357984557365157,0,0
+2017/01/01 03:00:00,28.397052514794517,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5776894283216202,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7837216164305701,-0.7837216164305701,-0.7885276762065433,-0.7885276762065433,-0.8103608017665072,-0.8103608017665072,-0.5572120531918641,-0.5572120531918641,-0.04982309896182995,-0.04982309896182995,-0.9334760236426977,-0.9890003324148381,-0.9555417665371678,-1.003177058930281,-0.08673132100901387,-1.0089615295029306,-1.0700640203899785,-1.030021332565342,-1.07857594027405,-0.24299838666386578,17.94508415753822,17.94508415753822,18.105728013816375,18.105728013816375,18.847831852925182,18.847831852925182,11.501126620542564,11.501126620542564,5.051391426560826,5.051391426560826,23.404031024772706,25.65880091043931,24.285638646813638,26.25361420855876,5.1557682278833,26.4985022130722,29.16084973386225,27.400664496541637,29.542402735275317,6.22546131492696,28.397052514794517,28.397052514794517,0.0,31.552280571993908,0.0,28.397052514794517,31.552280571993908,0,0
+2017/01/01 04:00:00,23.72188766574891,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5247922420711186,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.754289109564043,-0.754289109564043,-0.761115915468608,-0.761115915468608,-0.7825973400310635,-0.7825973400310635,-0.5285512955001644,-0.5285512955001644,-0.008158401944754697,-0.008158401944754697,-0.9177948504291294,-0.9756576100095751,-0.9408741757903913,-0.9895945838787422,-0.06779323987701238,-1.0307365765292473,-1.0937548131642383,-1.0524472426536609,-1.1023776644180543,-0.21656510893192799,16.982754745415562,16.982754745415562,17.202671396171084,17.202671396171084,17.907646566743338,17.907646566743338,10.844140582428778,10.844140582428778,5.001377819511248,5.001377819511248,22.78928723137045,25.106005832853654,23.697466110666824,25.683580083295254,5.095157504891915,27.43159335304061,30.22907813259954,28.379325139657297,30.622697680138117,5.972853794252131,23.72188766574891,23.72188766574891,0.0,26.35765296194323,0.0,23.72188766574891,26.35765296194323,0,0
+2017/01/01 05:00:00,40.04593579679573,0,355.54119954318895,0,0,0,0.0,0.011679433554728521,4.633261998087618,9.319298099999997,23.111338313975452,0,1.4171139453103399,1.028208532418191,0.5250354734493874,0,0,266.8153182618286,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6083411281464919,2375.8712757377457,1.144195759059528,1582.3665595145271,1.3725698802379611,2478.504859843933,0.6595475374772661,1628.9808449596521,0.0,0.0,1.893990803905183,3008.3126293344662,1.5852438396961475,1978.7067889900961,1.8728542735157134,3112.4434552805033,1.5426903326902277,2009.0888576124892,0.0,0.0,0,0,0,0,0,0,0,0,0.018929276815416157,0.0005989091236453824,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7271371552179157,-0.7271371552179157,-0.7355640507313812,-0.7355640507313812,-0.7529701147154207,-0.7529701147154207,-0.5133920000090124,-0.5133920000090124,0.13252145339490828,0.13252145339490828,-0.6785748078712832,-0.7183334884799787,-0.6888928913469091,-0.7246150694948461,-0.03231773608066925,-0.7304790288937898,-0.7771312186734404,-0.7401829832329343,-0.7808250710651332,-0.20624851525755591,16.12785749562346,16.12785749562346,16.389797533089578,16.389797533089578,16.94049486692188,16.94049486692188,10.511030563569761,10.511030563569761,5.363824818622973,5.363824818622973,14.67797950106791,15.857468014347432,14.977517615418364,16.05005508717268,5.021621362687981,16.23137047244161,17.72639479256965,16.53466581748566,17.848740430196486,5.882209320620007,40.04593579679573,40.04593579679573,0.0,44.49548421866192,0.0,40.04593579679573,44.49548421866192,0,0
+2017/01/01 06:00:00,74.61200556557364,0,302.12287178313903,0,0,0,0.0,0.01066717830449562,4.633261998087618,9.319298099999997,57.911447091112116,0,1.2798088183608582,0.9324877963310255,0.5250345833775276,0,0,89.18075670787418,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5537694778423088,1743.1349339789397,0.5677322566923522,1201.3710315118285,1.5168082520451094,1880.6741999701676,0.8767004044572104,1252.1571319399966,0.0,0.0,1.8795792862471217,2478.161218778534,1.1045409295073227,1666.0586461938963,2.1299177908849742,2605.833199013581,1.038129906819222,1694.3324552874758,0.0,0.0,0,0,0,0,0,0,0,0,0.016085245478159607,0.0005089259545879607,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4598954955397628,-0.4598954955397628,-0.4724055352076581,-0.4724055352076581,-0.486241286922642,-0.486241286922642,-0.2544157431649171,-0.2544157431649171,0.44765538688281536,0.44765538688281536,-0.6327586551653126,-0.6696830454310123,-0.641275510800766,-0.6737488142094626,0.03329604514668519,-0.6520535265808994,-0.6949345200348294,-0.6594898321777309,-0.696609297130868,-0.10339780505797669,9.414851856611534,9.414851856611534,9.660129837708965,9.660129837708965,9.939257570072087,9.939257570072087,6.343641854779193,6.343641854779193,9.18138839526081,9.18138839526081,13.40360113351241,14.423542896169323,13.633612920114274,14.539459709030254,5.022950267731474,13.92920032910176,15.15504486449366,14.136076932100693,15.204535676826879,5.221416896070494,74.61200556557364,74.61200556557364,0.0,82.90222840619293,0.0,74.61200556557364,82.90222840619293,0,0
+2017/01/01 07:00:00,105.35037435216485,0,775.6042336454075,0,0,0,0.0,0.00857559640309349,8.33396954093373,13.929299233552332,80.56906512710079,0,1.1448309738975109,0.8395230230007793,0.5251108572766647,0,0,63.93369202643412,480.9832502874365,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2068658635748002,1529.9578511704246,0.0,1049.6999642081378,1.5721983945861666,1632.9153727003818,1.018016720201634,1098.068829784379,0.0,0.0,1.181346657422182,1946.8242708521466,0.6710160647538335,1305.5339556895287,1.6670225347655407,2033.9868336854606,1.259130167789332,1332.8432879982515,0.0,0.0,0,0,0,0,0,0,0,0,0.041293743894508045,0.0013065052727083257,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.30842494708506135,-0.30842494708506135,-0.32504780712748804,-0.32504780712748804,-0.33180783176784184,-0.33180783176784184,-0.11635155419554973,-0.11635155419554973,0.6895777327067588,0.6895777327067588,-0.6150023559638943,-0.6501489301135441,-0.6221250546192675,-0.6544312146772743,0.12302365334418258,-0.6300793309686331,-0.6713273393732082,-0.6360393450813508,-0.6733909706066822,-0.02577685482028862,6.977115165068383,6.977115165068383,7.1968920452482905,7.1968920452482905,7.289618810905452,7.289618810905452,5.280405961509885,5.280405961509885,14.997561733868878,14.997561733868878,12.934182685778524,13.87660035528333,13.120840277811567,13.99508652762809,5.313509524232302,13.33189218869596,14.47033623995101,13.491829036716993,14.529228716023027,5.013754779925264,105.35037435216485,105.35037435216485,0.0,117.05597150240538,0.0,105.35037435216485,117.05597150240538,0,0
+2017/01/01 08:00:00,135.17798592049283,0,813.9639761252154,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,69.33401494192633,0,39.380909295966944,0.24274560118330107,0.5250721044759081,0,0,58.39907019200647,489.3872620891279,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.87304809500242,0.0,0.0,0.0,260.7321174521106,0.0,0.0,0.0,0.0,0.0,4068.534414534619,0.0,4659.8502879039725,0.0,4402.847864205977,0.0,4637.053665070934,0.0,2477.6394393127375,0.0,4306.695381194246,0.0,4793.421201293209,0.0,4646.740320522727,0.0,4728.590209473901,0.0,1912.4095263647023,0,0,0,0,0,0,0,0,0.04333604499745001,0.0013711222560041072,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5399901219493979,-0.5399901219493979,-0.5301479386676212,-0.5301479386676212,-0.545740331451006,-0.545740331451006,-0.3193387594213,-0.3193387594213,0.2933000743280757,0.2933000743280757,-0.6020821338489571,-0.6388101443566525,-0.6084496839837972,-0.6419404172738472,-0.13780839222158814,-0.6143823961632338,-0.6561538190260207,-0.6201137671439535,-0.6571043841601221,-0.23075443790754488,11.102083114748325,11.102083114748325,10.879804185105087,10.879804185105087,11.233889746928483,11.233889746928483,7.120090797209301,7.120090797209301,6.787304812625749,6.787304812625749,12.601214330443653,13.566708064283176,12.764407676946831,13.651702215216915,5.393458160073152,12.918040161738716,14.04297329036244,13.067909370559065,14.069453156755984,6.104809138582809,135.17798592049283,135.17798592049283,0.0,150.19776213388093,0.0,135.17798592049283,150.19776213388093,0,0
+2017/01/01 09:00:00,153.04691151975624,0,900.8422332340134,0,0,0,0.0,0.0,12.533817774226453,0.0,96.91714705112861,0,39.380909295966944,0.205441184785674,0.5776210111943113,0,0,107.98604916218855,473.4430114589277,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3886.3741757502157,0.0,4604.317183371552,0.0,4235.471374595675,0.0,4572.916819435974,0.0,383.7244693736761,0.0,4020.3315787770216,0.0,4674.952465978727,0.0,4381.281496885413,0.0,4602.792754872618,0.0,236.26269383679124,0,0,0,0,0,0,0,0,0.04796150775722665,0.0015174686735099296,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5858680231182923,-0.5858680231182923,-0.5696070115208224,-0.5696070115208224,-0.5953348107311872,-0.5953348107311872,-0.3640762883961545,-0.3640762883961545,-0.18337817626190736,-0.18337817626190736,-0.5894457850078471,-0.6287068209369678,-0.5968324901240099,-0.6309631784434951,-0.27525825242529406,-0.6006710217666396,-0.6440787133821374,-0.6077682105714255,-0.6443060216785331,-0.31876520681707393,12.193609795349218,12.193609795349218,11.796284100935239,11.796284100935239,12.430208114700108,12.430208114700108,7.758993184707592,7.758993184707592,5.697138756112551,5.697138756112551,12.282569681149596,13.295279214673215,12.467995142908734,13.355512898284744,6.573525760891641,12.565287270057894,13.710006185213345,12.746858170749292,13.7162157584699,7.112451414158784,153.04691151975624,153.04691151975624,0.0,170.05212391084027,0.0,153.04691151975624,170.05212391084027,0,0
+2017/01/01 10:00:00,150.89109285412184,0,1050.2361568806168,0,0,0,0.0,0.0,10.156464652478425,0.0,97.06762091869685,0,39.380909295966944,0.329325197790448,0.5247975867349278,0,0,194.30497811817878,483.2824773807248,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2598.5034218123174,0.0,5084.458044056135,0.0,3036.8234734999387,0.0,5048.395421403272,0.0,33.326819058717525,0.0,2724.074022111191,0.0,5170.971838647676,0.0,3192.7709585375533,0.0,5080.057390702143,0.0,2285.43367792158,0,0,0,0,0,0,0,0,0.055915350909247014,0.0017691227265538264,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.532912836970255,-0.532912836970255,-0.568807017103715,-0.568807017103715,-0.5627803559530273,-0.5627803559530273,-0.3315749982850931,-0.3315749982850931,-0.2664571451463324,-0.2664571451463324,-0.582223403551202,-0.6302724631509173,-0.5948128314072855,-0.6316639676589189,-0.30106569113046705,-0.5915952583983529,-0.6453204303546944,-0.604930966811839,-0.6434723284019311,-0.34424682727236394,10.941823747263598,10.941823747263598,11.7770329089945,11.7770329089945,11.632898662152158,11.632898662152158,7.286392812488728,7.286392812488728,6.474222059365303,6.474222059365303,12.103558660364882,13.337050727580817,12.41706125198968,13.374265488420846,6.883551626354944,12.336282760783533,13.743954529036728,12.67400927124308,13.693452014016742,7.465312205056108,150.89109285412184,150.89109285412184,0.0,167.65676983791315,0.0,150.89109285412184,167.65676983791315,0,0
+2017/01/01 11:00:00,204.37977527335715,0,1238.9250980928282,0,0,0,0.0,0.0,13.642095049375554,0.0,124.87761316689259,0,39.380909295966944,0.3046969612837592,22.742485597384004,0,0,177.89510788506522,599.6554075446891,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2384.7840843173476,0.0,4876.9093067646845,0.0,2850.1297967218998,0.0,4847.918560840562,0.0,11.990555742210034,0.0,2373.7821738302946,0.0,4886.280825141706,0.0,2874.9827286859045,0.0,4797.615565961118,0.0,781.2304263789782,0,0,0,0,0,0,0,0,0.06596128990254184,0.002086969233704549,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46518318768941175,-0.46518318768941175,-0.4991398416232735,-0.4991398416232735,-0.5009529833981646,-0.5009529833981646,-0.2512130526159969,-0.2512130526159969,-0.22691679447265625,-0.22691679447265625,-0.5745453906535842,-0.6283177387085142,-0.5888063449986994,-0.6305174483314189,-0.3126957886907077,-0.5811912451527582,-0.6412295781576576,-0.5962686580178199,-0.6400227705701632,-0.3476197886246173,9.51770229484319,9.51770229484319,10.206919544448425,10.206919544448425,10.245120720242653,10.245120720242653,6.309938006452498,6.309938006452498,6.0682877754891535,6.0682877754891535,11.915736704889014,13.28491495508321,12.266629444500694,13.343596582513499,7.032464340385516,12.078160859868632,13.632363995010863,12.453758015692813,13.599583245147599,7.5140862301144296,204.37977527335715,204.37977527335715,0.0,227.08863919261904,0.0,204.37977527335715,227.08863919261904,0,0
+2017/01/01 12:00:00,222.7651794772658,0,1229.5786560234724,0,0,0,0.0,0.0,13.385325199043786,0.0,143.25325374857618,0,39.380909295966944,0.21971850688826636,23.093997524336288,0,0,133.5124038487985,581.4561407427839,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2483.870724858143,0.0,4551.911884481013,0.0,2991.2019597100098,0.0,4526.878428643044,0.0,0.0,0.0,2318.770370040411,0.0,4457.877095109257,0.0,2870.393832587167,0.0,4386.949195656339,0.0,0.0,0,0,0,0,0,0,0,0,0.06546367840379738,0.0020712251527481023,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3767237989230943,-0.3767237989230943,-0.42189950783748403,-0.42189950783748403,-0.4197283330055027,-0.4197283330055027,-0.14332855913849096,-0.14332855913849096,-0.14322928076113783,-0.14322928076113783,-0.5583261252319609,-0.6158837973051481,-0.5759786452022082,-0.6189627795429953,-0.3140185250431182,-0.5609075956261151,-0.6246024989741723,-0.5799533519759985,-0.6253869265175397,-0.34280086159341455,7.955054146981794,7.955054146981794,8.711163064811373,8.711163064811373,8.672825264720203,8.672825264720203,5.425639836663521,5.425639836663521,5.425049860930784,5.425049860930784,11.527383173460564,12.957162387249255,11.95060325650934,13.037697885739775,7.049763333098028,11.588430346084564,13.18628028074518,12.047761614724962,13.20705591238395,7.444551197746861,222.7651794772658,222.7651794772658,0.0,247.5168660858509,0.0,222.7651794772658,247.5168660858509,0,0
+2017/01/01 13:00:00,199.47978539880842,0,1135.4675018433918,0,0,0,0.0,0.0,13.195685805097062,0.0,124.80122689546741,0,39.380909295966944,0.17694766567266615,18.493040534150005,0,0,114.15584497106799,542.1918979529777,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2499.926810403496,0.0,3716.1826342367317,0.0,3108.7161333818635,0.0,3740.3380924079465,0.0,0.0,0.0,2299.5700682503166,0.0,3600.150936103967,0.0,2979.205192015458,0.0,3596.690288838799,0.0,0.0,0,0,0,0,0,0,0,0,0.06045313084649058,0.0019126949206746716,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4034736067827443,-0.4034736067827443,-0.33875500814704773,-0.33875500814704773,-0.448681317424339,-0.448681317424339,-0.05546492779281635,-0.05546492779281635,-0.11884393988052888,-0.11884393988052888,-0.5294940530059163,-0.5855789947241049,-0.5543179968448501,-0.5944899466749306,-0.3031396520910385,-0.5260551800212953,-0.5882195806510081,-0.5542834568402543,-0.5966253466755734,-0.3265471763298569,8.392223137102704,8.392223137102704,7.386933345023294,7.386933345023294,9.200709129009724,9.200709129009724,5.063690939583466,5.063690939583466,5.292555453034964,5.292555453034964,10.865185247235786,12.186447448391135,11.433170710094856,12.40893481647231,6.909687564823628,10.788606970469544,12.25201794153513,11.432361862249408,12.46276303283264,7.217291495720701,199.47978539880842,199.47978539880842,0.0,221.644205998676,0.0,199.47978539880842,221.644205998676,0,0
+2017/01/01 14:00:00,199.67328482668316,0,1116.925306892828,0,0,0,0.0,0.0,13.314855219672241,0.0,124.7641830973959,0,39.380909295966944,0.163820456654727,18.617541554539038,0,0,111.97877031740055,561.317130168626,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2354.092651437679,0.0,3511.3872301632846,0.0,2895.9118759577755,0.0,3554.290117721679,0.0,0.0,0.0,2151.153251042062,0.0,3381.3468728867138,0.0,2771.373682272715,0.0,3403.893552314247,0.0,0.0,0,0,0,0,0,0,0,0,0.05946593065299515,0.0018814605946877755,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4557263582276926,-0.4557263582276926,-0.29707835225234075,-0.29707835225234075,-0.48734991941270167,-0.48734991941270167,-0.011805169729943384,-0.011805169729943384,-0.13510861840148444,-0.13510861840148444,-0.5238049413075384,-0.5730838380258648,-0.5449973244189555,-0.5846378194381063,-0.30032848977892496,-0.5219914183291329,-0.5752731138017729,-0.5464794048569868,-0.5871455876070243,-0.3224144873643005,9.334607181376512,9.334607181376512,6.833814320495279,6.833814320495279,9.961980963166283,9.961980963166283,5.002884881812136,5.002884881812136,5.378180621189443,5.378180621189443,10.738774808875618,11.88027352978608,11.216777888843623,12.163149519745062,6.874305271965014,10.698773336156833,11.933428770376864,11.250934746920151,12.225312257224218,7.161295516468968,199.67328482668316,199.67328482668316,0.0,221.85920536298127,0.0,199.67328482668316,221.85920536298127,0,0
+2017/01/01 15:00:00,181.6382827474191,0,1078.6648820443977,0,0,0,0.0,0.0,13.55104264140629,0.0,111.01081017850728,0,39.380909295966944,0.22920083082179527,14.034344598262521,0,0,151.74088496316364,518.7849431869766,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1953.5457182190405,0.0,4047.5092468822127,0.0,2478.511295502383,0.0,4105.163776112508,0.0,0.0,0.0,1826.3716348758512,0.0,3954.8920035022948,0.0,2411.592987418598,0.0,3998.883005396166,0.0,0.0,0,0,0,0,0,0,0,0,0.05742891729431295,0.0018170109119345114,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5139519782226226,-0.5139519782226226,-0.32388114276721275,-0.32388114276721275,-0.5392307977768668,-0.5392307977768668,-0.023651009445730578,-0.023651009445730578,-0.1871423424325675,-0.1871423424325675,-0.5291792071467042,-0.5759378766087498,-0.5486747699907218,-0.5891674107414281,-0.3110286514385284,-0.5314702535800127,-0.580431056067441,-0.5524705880554132,-0.594321444432092,-0.33453521699338534,10.523158642647061,10.523158642647061,7.1810851084312475,7.1810851084312475,11.084784926777715,11.084784926777715,5.011579534723779,5.011579534723779,5.726096195315975,5.726096195315975,10.858152833830644,11.949610254019504,11.301705313861433,12.275628066264048,7.010766731769692,10.909423789388768,12.059484832136818,11.389981223274646,12.404695710907575,7.327579125387956,181.6382827474191,181.6382827474191,0.0,201.820314163799,0.0,181.6382827474191,201.820314163799,0,0
+2017/01/01 16:00:00,180.62145782547768,0,1122.1698608035576,0,0,0,0.0,0.0,14.698473260691076,0.0,108.75639138185811,0,39.380909295966944,0.3090728359317817,14.044635848575496,0,0,175.03209848600463,538.9987084232954,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2044.2985527654425,0.0,4478.036410870122,0.0,2538.158250176214,0.0,4560.261831101543,0.0,0.0,0.0,1909.6300595211665,0.0,4380.372525610888,0.0,2456.4270712154935,0.0,4441.699775595624,0.0,226.35352192671286,0,0,0,0,0,0,0,0,0.05974515458787845,0.0018902950453523449,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5183822083615491,-0.5183822083615491,-0.39565964848328916,-0.39565964848328916,-0.5366306100993421,-0.5366306100993421,-0.04169608642355557,-0.04169608642355557,-0.21453937045771707,-0.21453937045771707,-0.5401002881799227,-0.5850714571238981,-0.5573595189170867,-0.6004374518795252,-0.3205816280286597,-0.5463841407994021,-0.5937447459614558,-0.564445084911877,-0.6088535320248865,-0.3455375539696563,10.61958731250023,10.61958731250023,8.26135831665647,8.26135831665647,11.025739186019877,11.025739186019877,5.035991944605769,5.035991944605769,5.954703464322037,5.954703464322037,11.1045948901333,12.173879046519303,11.504599016040771,12.559348892723435,7.136692908471616,11.24873637515114,12.390196709255306,11.67255501515183,12.774817203329079,7.483919373138093,180.62145782547768,180.62145782547768,0.0,200.6905086949752,0.0,180.62145782547768,200.6905086949752,0,0
+2017/01/01 17:00:00,197.86119375111744,0,1138.5984092547446,0,0,0,0.0,0.0,15.751328854096277,0.0,124.87761316689259,0,39.380909295966944,0.31756008925417606,14.101807142453133,0,0,158.43497506977607,518.7888515218948,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2127.5405592493394,0.0,4302.984860858881,0.0,2593.5318852994815,0.0,4393.929493704012,0.0,0.0,0.0,2037.2973096867609,0.0,4250.943340510673,0.0,2546.2363205159027,0.0,4298.503525889207,0.0,0.0,0,0,0,0,0,0,0,0,0.06061982267615499,0.0019179689339714632,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5289843836654151,-0.5289843836654151,-0.3828558360237448,-0.3828558360237448,-0.5395000126866533,-0.5395000126866533,-0.023176163470067603,-0.023176163470067603,-0.17733306751763084,-0.17733306751763084,-0.5445877363066585,-0.5885267358849076,-0.559885523087877,-0.6041980382008968,-0.32343144489233,-0.5529081790883431,-0.6010488029802987,-0.5682810431825847,-0.614197193146456,-0.3488694085047815,10.853803396156266,10.853803396156266,8.052568681110984,8.052568681110984,11.090915061939839,11.090915061939839,5.011119222062547,5.011119222062547,5.651872215453949,5.651872215453949,11.207355080105941,12.259664803796866,11.564225595224471,12.655247424156784,7.175007637784674,11.40019803471779,12.574897147679863,11.76439091602873,12.913221078139529,7.532278899203789,197.86119375111744,197.86119375111744,0.0,219.84577083457492,0.0,197.86119375111744,219.84577083457492,0,0
+2017/01/01 18:00:00,221.54690638156518,0,1141.5790437602013,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,129.38645076019097,0,39.380909295966944,0.24630652911123443,18.506071843758143,0,0,118.86679901496444,561.3376620821631,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2552.260902097028,0.0,4269.726949233338,0.0,2974.7870374420054,0.0,4302.7671177433995,0.0,0.0,0.0,2485.216329820205,0.0,4217.792073072783,0.0,2938.3811426803745,0.0,4215.526652822082,0.0,0.0,0,0,0,0,0,0,0,0,0.06077851386500136,0.0019229898125696792,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5291007538127924,-0.5291007538127924,-0.4363929857735393,-0.4363929857735393,-0.4763928905625408,-0.4763928905625408,-0.002336178945474848,-0.002336178945474848,-0.14888518906276965,-0.14888518906276965,-0.5456983363854385,-0.5919200307425851,-0.5578073412084342,-0.6012640404065471,-0.3174010667075298,-0.5559204435740648,-0.6048531308330019,-0.5672801856290234,-0.6124056506400423,-0.34266180586706907,10.856401164110864,10.856401164110864,8.972265216223107,8.972265216223107,9.739725385603137,9.739725385603137,5.000112977810318,5.000112977810318,5.459315047276874,5.459315047276874,11.232921939707623,12.344415916933713,11.515149728074064,12.580375058325345,7.0943378692820716,11.470753209756182,12.672015683181854,11.740368048733188,12.866681011140187,7.442559335006905,221.54690638156518,221.54690638156518,0.0,246.1632293128502,0.0,221.54690638156518,246.1632293128502,0,0
+2017/01/01 19:00:00,212.25031519622578,0,1163.8348826685974,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,115.6330778413024,0,39.380909295966944,0.2851708208018587,22.92398928561676,0,0,156.49458825698085,581.4560642610868,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3548.2493992487025,0.0,4119.388546840695,0.0,3955.6583036256243,0.0,4126.733527586706,0.0,0.0,0.0,3362.196112053992,0.0,3987.34090961687,0.0,3796.3038718649855,0.0,3957.705975402764,0.0,0.0,0,0,0,0,0,0,0,0,0.06196343121353262,0.0019604797715216827,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5579520873685428,-0.5579520873685428,-0.46057341453712825,-0.46057341453712825,-0.5186760942633173,-0.5186760942633173,-0.02090058637427068,-0.02090058637427068,-0.1506374647219122,-0.1506374647219122,-0.542490913583102,-0.5856227683929733,-0.5538539310291781,-0.5936390512980764,-0.30497931651788174,-0.5524218592255287,-0.598205409235533,-0.5628676888619573,-0.6043665181973453,-0.3288172769229852,11.518561813278836,11.518561813278836,9.427970707594781,9.427970707594781,10.62601408491119,10.62601408491119,5.009042870218877,5.009042870218877,5.470201103897807,5.470201103897807,11.159230345937601,12.187531960792583,11.422307671843143,12.387540963524245,6.933023159380994,11.388844023351098,12.502719944363335,11.63497607636694,12.659558189677668,7.248358483805902,212.25031519622578,212.25031519622578,0.0,235.833683551362,0.0,212.25031519622578,235.833683551362,0,0
+2017/01/01 20:00:00,200.46340504165508,0,1126.4038230221026,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,104.13412371906301,0,39.380909295966944,0.2557278133345848,22.66547626075267,0,0,145.82119386665445,590.188751517463,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3725.8297073914664,0.0,3791.1108314673247,0.0,4114.08853690107,0.0,3790.7710317284386,0.0,0.0,0.0,3568.5511209375054,0.0,3679.039315259707,0.0,3981.4279746435614,0.0,3640.6788732967534,0.0,0.0,0,0,0,0,0,0,0,0,0.05997057387251782,0.0018974271543881315,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5758628087337376,-0.5758628087337376,-0.5190343261162759,-0.5190343261162759,-0.5507885100757617,-0.5507885100757617,-0.041013729540354815,-0.041013729540354815,-0.1745974235151357,-0.1745974235151357,-0.5382351099609828,-0.5771886675552061,-0.54867596515019,-0.5846496023192638,-0.29565981314913475,-0.5479996097810591,-0.5893406039414828,-0.5573224656923091,-0.5949419194268954,-0.3185694264396732,11.947782011001323,11.947782011001323,10.633853045210472,10.633853045210472,11.350785594946174,11.350785594946174,5.034823478528864,5.034823478528864,5.63188868808524,5.63188868808524,11.062139983706174,11.98010865901388,11.30173301031256,12.16344095652525,6.81628179451198,11.286069146062218,12.279946462771463,11.503726430018418,12.420311434355,7.109846925843925,200.46340504165508,200.46340504165508,0.0,222.73711671295007,0.0,200.46340504165508,222.73711671295007,0,0
+2017/01/01 21:00:00,200.61079734723995,0,1024.0868951979485,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,0.1921088903601073,18.594510035007076,0,0,117.05716791558801,552.1262021569192,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3891.8020619364397,0.0,3697.4449343396486,0.0,4261.747011798827,0.0,3694.593277128728,0.0,0.0,0.0,3801.5240284288566,0.0,3629.7422577989055,0.0,4193.2435775938775,0.0,3588.9216099720234,0.0,0.0,0,0,0,0,0,0,0,0,0.0545231448483293,0.0017250742972340668,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6066878492267286,-0.6066878492267286,-0.5732002154666405,-0.5732002154666405,-0.5870046402381152,-0.5870046402381152,-0.07015320382205117,-0.07015320382205117,-0.2140231227473749,-0.2140231227473749,-0.5351257729609309,-0.5702285275663477,-0.5446362811944848,-0.5775390745854815,-0.28844786418965124,-0.5453979686513102,-0.5824916272113619,-0.553659457539015,-0.5879325431728556,-0.3111428657612687,12.719077688875174,12.719077688875174,11.883093921113087,11.883093921113087,12.221811205371978,12.221811205371978,5.101899394232092,5.101899394232092,5.9501054394420265,5.9501054394420265,10.991700748162259,11.811259523667843,11.208471503240546,11.98866490888632,6.72845999468872,11.226001972324354,12.110166272023818,11.417758134747416,12.244875626845996,7.01224946422343,200.61079734723995,200.61079734723995,0.0,222.9008859413777,0.0,200.61079734723995,222.9008859413777,0,0
+2017/01/01 22:00:00,186.43311113710575,0,1026.5273538686886,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,0.13866178123382528,22.732481446186164,0,0,107.4587737111023,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3180.5859239873507,0.0,4810.8907207591155,0.0,3551.928299243686,0.0,4805.139898342554,0.0,0.0,0.0,3104.690506323443,0.0,4750.990138957808,0.0,3496.5786192148043,0.0,4705.036369678335,0.0,0.0,0,0,0,0,0,0,0,0,0.05465307667562351,0.001729185249679701,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6354880089859636,-0.6354880089859636,-0.6064740854754247,-0.6064740854754247,-0.6287935929463803,-0.6287935929463803,-0.1484447697158031,-0.1484447697158031,-0.3016061113353585,-0.3016061113353585,-0.5487729952168021,-0.588255486185975,-0.5584148388754963,-0.5943760855509058,-0.30766826582652806,-0.5625512433577324,-0.6038667716764395,-0.570928328786507,-0.6078367751703616,-0.3329935468714675,13.476969265171789,13.476969265171789,12.713586957050225,12.713586957050225,13.29759151803934,13.29759151803934,5.456599037926765,5.456599037926765,6.890344448402644,6.890344448402644,11.303981777470426,12.252911625701685,11.529476298230335,12.406070213217092,6.967389248653646,11.627450263996252,12.64677515996513,11.82814128271525,12.748622954777062,7.306083046185634,186.43311113710575,186.43311113710575,0.0,207.14790126345082,0.0,186.43311113710575,207.14790126345082,0,0
+2017/01/01 23:00:00,131.2871595243759,0,1026.6608603034495,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,0.46420765141943005,18.591091796049625,0,0,324.77172089180846,542.1825531051924,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,510.59597436457045,0.0,72.01460491869321,0.0,740.1251918121438,0.0,0.0,0.0,0.0,0.0,3503.5227619650987,0.0,5690.047202969805,0.0,3882.4697400853925,0.0,5677.037219343748,0.0,3013.492874366765,0.0,3374.3120675966493,0.0,5592.78093540763,0.0,3773.7107831877565,0.0,5536.343178325398,0.0,6886.970173403481,0,0,0,0,0,0,0,0,0.05466018465709928,0.0017294101412589225,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7264347523957675,-0.7264347523957675,-0.7056719417781375,-0.7056719417781375,-0.7281882632802673,-0.7281882632802673,-0.3612256320267212,-0.3612256320267212,-0.4369944161098219,-0.4369944161098219,-0.569993070263423,-0.6160431933984829,-0.5807066544215922,-0.6206429376184951,-0.3342222361740798,-0.5859426121538518,-0.6343067579561494,-0.5954708189876875,-0.6363921621667916,-0.36487487539200397,16.1061619745674,16.1061619745674,15.474443684982091,15.474443684982091,16.160363310713393,16.160363310713393,7.715743937337862,7.715743937337862,8.983294962200077,8.983294962200077,11.805584210764849,12.96132153844411,12.066252727052756,13.081818494813973,7.3232069555986214,12.195458757772627,13.445176231359426,12.433635636573115,13.501345184531814,7.771171163560979,131.2871595243759,131.2871595243759,0.0,145.874621693751,0.0,131.2871595243759,145.874621693751,0,0
+2017/01/02 00:00:00,88.99969685578039,0,849.2212108006295,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.5070239296712259,9.549716664816593,0,0,303.34859229628523,492.63708973552804,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1696.4706355440644,0.0,811.7118881923867,0.0,1941.0728635707987,0.0,0.0,0.0,0.0,0.0,3713.0973330321667,0.0,5818.163937129844,0.0,4085.95864359836,0.0,5804.523119578882,0.0,5230.156926096777,0.0,3680.221658053614,0.0,5781.330031544521,0.0,4070.6745117514447,0.0,5723.7425102257075,0.0,8919.598747688658,0,0,0,0,0,0,0,0,0.04521316628683782,0.0014305130651388635,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8131190120893466,-0.8131190120893466,-0.7976679866552384,-0.7976679866552384,-0.8190687557364986,-0.8190687557364986,-0.5861173810898167,-0.5861173810898167,-0.5907352971612297,-0.5907352971612297,-0.5870306842329094,-0.6342116864750991,-0.5982210998459507,-0.6383065861602695,-0.357008172031245,-0.6042496685587091,-0.6542219764425641,-0.6143001351023847,-0.6557345461443499,-0.3907173130751799,18.94301624671087,18.94301624671087,18.413950044058197,18.413950044058197,19.14943020549083,19.14943020549083,12.199791991519149,12.199791991519149,12.31476917094517,12.31476917094517,12.222458058341545,13.442620041458625,12.503117274737903,13.553074975417019,7.652392714216248,12.656568318705382,13.989278662834238,12.915899500276637,14.031306061976593,8.17993431928879,88.99969685578039,88.99969685578039,0.0,98.8885520619782,0.0,88.99969685578039,98.8885520619782,0,0
+2017/01/02 01:00:00,39.340067600887465,0,566.5567627490943,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.578608270192379e-09,9.542746601885684,0,0,0.0,513.3212339802782,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030163901701132995,0.0009543648238499203,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.76801564499516,-0.76801564499516,-0.7508594048742784,-0.7508594048742784,-0.7754380830486748,-0.7754380830486748,-0.5200614925065287,-0.5200614925065287,-0.27610626817256034,-0.27610626817256034,-0.7867696821014212,-0.8384449190153952,-0.8013389524572999,-0.8470005010936804,-0.1646203254987091,-0.8055925904136935,-0.8610716042286041,-0.8197317629338601,-0.8657808537472863,-0.2561912023597783,17.42696085884505,17.42696085884505,16.873023824285582,16.873023824285582,17.6705098717118,17.6705098717118,10.65636066371556,10.65636066371556,6.583266419713254,6.583266419713254,18.04685277787324,19.831950879532798,18.538735556563537,20.138317512766093,5.561652947212167,18.684040453973395,20.648812981993302,19.17252412399725,20.82149624605755,6.362511935425744,39.340067600887465,39.340067600887465,0.0,43.711186223208294,0.0,39.340067600887465,43.711186223208294,0,0
+2017/01/02 02:00:00,23.72213471645609,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250392927782978,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8755128636105368,-0.8755128636105368,-0.8634094747824073,-0.8634094747824073,-0.8851795283070327,-0.8851795283070327,-0.6260092219515747,-0.6260092219515747,-0.13142359126513145,-0.13142359126513145,-0.9660183230821668,-1.0230405521450971,-0.9902738743131947,-1.0337392267891101,-0.10888286003813943,-0.9991870327841549,-1.0609087205186858,-1.0223521164675842,-1.0652645377408954,-0.2770532448590836,21.181259879702637,21.181259879702637,20.73442561472511,20.73442561472511,21.5424643867875,21.5424643867875,13.22355645291438,13.22355645291438,5.357817077647908,5.357817077647908,24.710926903683145,27.099791840109376,25.711921771371337,27.561640725093383,5.245544140610434,26.085431912271204,28.7533149370921,27.070218009779282,28.94683645106136,6.594179616724631,23.72213471645609,23.72213471645609,0.0,26.357927462728988,0.0,23.72213471645609,26.357927462728988,0,0
+2017/01/02 03:00:00,28.344453763219335,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250906767464402,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8765674716038816,-0.8765674716038816,-0.8664664732782824,-0.8664664732782824,-0.8872214615728088,-0.8872214615728088,-0.63389476643616,-0.63389476643616,-0.0516278822247655,-0.0516278822247655,-1.0037365752021707,-1.058810688311317,-1.026430191875062,-1.070782184987032,-0.08815684415340232,-1.0661442922364996,-1.1267424056333923,-1.086910529947266,-1.1322168405883224,-0.27223135756651734,21.220479881474247,21.220479881474247,20.846713649981055,20.846713649981055,21.619253271846475,21.619253271846475,13.434101834408736,13.434101834408736,5.055182501352974,5.055182501352974,26.277246383936003,28.660344486500293,27.245660512315155,29.192943460330255,5.160932532985214,28.986004374230944,31.748446363222413,29.91846237477695,32.00408916877494,6.53900479736663,28.344453763219335,28.344453763219335,0.0,31.49383751468815,0.0,28.344453763219335,31.49383751468815,0,0
+2017/01/02 04:00:00,23.72225187441779,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251564507399977,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9052258652821352,-0.9052258652821352,-0.8970264155987379,-0.8970264155987379,-0.914395441826785,-0.914395441826785,-0.6713112631085526,-0.6713112631085526,-0.00942607875825238,-0.00942607875825238,-1.0500895431900805,-1.1030871077696291,-1.073291629188948,-1.1154601390263892,-0.06891340730343103,-1.12814475306856,-1.188640767270383,-1.150760801692471,-1.1944285531797616,-0.2707779171373868,22.303687320328407,22.303687320328407,21.99035045636259,21.99035045636259,22.657322908064685,22.657322908064685,14.46987817474053,14.46987817474053,5.001839266654898,5.001839266654898,28.275575587845367,30.655195360399375,29.305229723639428,31.22469933864501,5.09832878774553,31.813839305378792,34.69419986910265,32.87723858891475,34.97562277724468,6.522565897476639,23.72225187441779,23.72225187441779,0.0,26.358057638241988,0.0,23.72225187441779,26.358057638241988,0,0
+2017/01/02 05:00:00,43.07427119075593,0,389.7097211187194,0,0,0,0.0,0.01637887489383527,4.633261998087618,9.319298099999997,25.555573451546493,0,1.7380798850685357,1.2340946271585602,0.5775842540008717,0,0,300.98383983735914,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,176.0196502392322,0.0,106.67484918385571,0.0,219.70726570095573,0.0,0.0,0.0,0.0,2.613056173826811,3414.378116547118,1.6384383470499413,2280.095942982256,2.7015174668033266,3547.6711506353813,1.2849885251232283,2317.955664116192,0.0,0.0,2.5712119037225416,3518.1676684824324,1.687793613926108,2302.588205725563,2.483563793696854,3630.193978261166,1.3983050696864565,2319.3956018914337,0.0,0.0,0,0,0,0,0,0,0,0,0.02074843421294912,0.0006564659956460167,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.84084913595119,-0.84084913595119,-0.8373089184056317,-0.8373089184056317,-0.8458762671542583,-0.8458762671542583,-0.641480003130848,-0.641480003130848,0.13471901262871838,0.13471901262871838,-0.7259460982851683,-0.759096312998861,-0.7359755356782423,-0.7661502963244233,-0.03312756866783144,-0.7690853010674684,-0.8105395920035876,-0.7784477985101204,-0.8128240060117361,-0.2570569730255401,19.917734928591514,19.917734928591514,19.791501621362087,19.791501621362087,20.09788568612234,20.09788568612234,13.639174250632465,13.639174250632465,5.3760009482601845,5.3760009482601845,16.091081150221058,17.13740495628545,16.402666187424074,17.366123499306724,5.022718589294513,17.461914108108303,18.853992086519796,17.769935184928258,18.932820423558198,6.37176168364519,43.07427119075593,43.07427119075593,0.0,47.860301323062146,0.0,43.07427119075593,47.860301323062146,0,0
+2017/01/02 06:00:00,75.8849416156767,0,316.65156492148327,0,0,0,0.0,0.014248868776462302,5.555297838843742,9.319298099999997,57.911447091112116,0,1.4865924572812526,1.0730754579218025,0.5249818017413027,0,0,103.70944984621852,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0110723766429146,2530.16020599234,1.305796597682729,1721.7891629489009,1.9446702782195189,2678.5328468469143,1.5037654367601476,1767.9781068263335,0.0,0.0,2.3413670772955584,2945.1586516585667,1.6675226077234129,1978.9156719517466,1.9110030032095437,3086.4077693778036,1.5636713989284772,1995.9157491369745,0.0,0.0,0,0,0,0,0,0,0,0,0.01685876386234492,0.0005333995370767924,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6463557623200881,-0.6463557623200881,-0.6465869978409011,-0.6465869978409011,-0.6528217184283169,-0.6528217184283169,-0.4439457351947804,-0.4439457351947804,0.4599531128974871,0.4599531128974871,-0.668017948055089,-0.6959499141552272,-0.6758366636650319,-0.6998581313677019,0.08477621148359833,-0.6781947643151297,-0.7141472500603104,-0.6853184889915752,-0.7154015237265642,-0.13472417401271186,13.772311451133746,13.772311451133746,13.778651158201114,13.778651158201114,13.950460279263169,13.950460279263169,9.111904465449228,9.111904465449228,9.415966078068493,9.415966078068493,14.37627681963339,15.185035998688278,14.599263251375532,15.30088634499235,5.148822460495893,14.667034609446418,15.730065570462898,14.873230107742458,15.768158460709216,5.376029782661959,75.8849416156767,75.8849416156767,0.0,84.31660179519632,0.0,75.8849416156767,84.31660179519632,0,0
+2017/01/02 07:00:00,101.8382710282095,0,789.3616092313597,0,0,0,0.1659999046306318,0.009660584784019877,11.110595677687485,13.929299233552332,73.80580873715317,0,1.3610404282025186,0.9307617233766096,0.5251047388227476,0,0,76.61025809607608,482.0640598037467,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,525.6116491303499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8463913738795175,2016.2141344380343,1.4288340231000043,1384.040547536572,1.4198245856415874,2142.004769414046,0.0,1420.1655543297495,0.0,0.0,1.6152530858257703,2173.237120280017,1.3280759018554513,1473.085274448165,2.022205813717543,2287.152353349128,0.0,1482.5529759159836,0.0,0.0,0,0,0,0,0,0,0,0,0.042026196760883955,0.0013296795708386952,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5055133575717919,-0.5055133575717919,-0.5108626568555589,-0.5108626568555589,-0.5117881736639237,-0.5117881736639237,-0.31546152902349006,-0.31546152902349006,0.713219409239321,0.713219409239321,-0.6450378682468889,-0.6712229060167575,-0.6520426262676119,-0.6748945968888469,0.17322559430064263,-0.6499312731933079,-0.684271238650321,-0.6562236914442586,-0.6854118394872145,-0.021089404986440217,10.341831538225406,10.341831538225406,10.456418712945336,10.456418712945336,10.476369740886042,10.476369740886042,7.068719712741867,7.068719712741867,15.701930223805235,15.701930223805235,13.736223450172247,14.46736079276397,13.928898843567012,14.572255701853607,5.621985215908296,13.870599252298717,14.842779941506294,14.044918391029057,14.875946696827867,5.009207000463547,101.8382710282095,101.8382710282095,0.0,113.15363447578834,0.0,101.8382710282095,113.15363447578834,0,0
+2017/01/02 08:00:00,164.4740780343382,0,932.1553420128768,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.2211911473479435,27.066092535402873,0,0,66.32229062410686,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1108.529485567809,0.0,461.49975878859664,0.0,1329.9775682027016,0.0,93.59633098681968,0.0,0.0,0.0,4473.821963185183,0.0,5422.709040509016,0.0,4824.432394645758,0.0,5402.008891107378,0.0,2259.388472930264,0.0,4541.357881661406,0.0,5446.571008863259,0.0,4902.728557580545,0.0,5378.318311375533,0.0,1650.8534118231862,0,0,0,0,0,0,0,0,0.049628640862441765,0.0015702156028713004,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.643957159628014,-0.643957159628014,-0.6382147576381393,-0.6382147576381393,-0.6562680761500803,-0.6562680761500803,-0.5165692543462118,-0.5165692543462118,0.2517007478305235,0.2517007478305235,-0.629686021438608,-0.6602502314485654,-0.6355735515906942,-0.6636360970994525,-0.17198472755905247,-0.6351581031703567,-0.6734120880368006,-0.6408763627107094,-0.6742551155877586,-0.25077993981182894,13.706686517771843,13.706686517771843,13.55059004049923,13.55059004049923,14.046154077454446,14.046154077454446,10.580023800097464,10.580023800097464,6.315042480399498,6.315042480399498,13.321391938804013,14.157366137029655,13.479273970261332,14.2524656789097,5.613094815558867,13.468083852737351,14.52983232388344,13.622762996993984,14.553944679651295,6.305413204154746,164.4740780343382,164.4740780343382,0.0,182.7489755937091,0.0,164.4740780343382,182.7489755937091,0,0
+2017/01/02 09:00:00,167.89548927909985,0,1053.6679618945748,0,0,0,0.0,0.0,15.03950648019319,0.0,83.2008179303116,0,39.380909295966944,0.2317444149490479,26.61053595522483,0,0,134.59938173698873,599.655407544689,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,135.8182471089446,0.0,0.0,0.0,0.0,0.0,4062.144562308359,0.0,5155.126591906747,0.0,4403.383343058235,0.0,5141.719096473862,0.0,160.60652335973148,0.0,4080.614742487891,0.0,5149.334355140492,0.0,4433.780562604929,0.0,5091.955638564518,0.0,139.30331490177906,0,0,0,0,0,0,0,0,0.05609806275015099,0.001774903601839369,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6724963842283835,-0.6724963842283835,-0.6520199231978421,-0.6520199231978421,-0.6905349401641059,-0.6905349401641059,-0.5231906647265149,-0.5231906647265149,-0.2217406122392302,-0.2217406122392302,-0.6144273374548054,-0.6489174287564129,-0.6201980236447455,-0.6524773472344617,-0.28338890930572735,-0.6207924618151192,-0.6618871032022815,-0.6265376182187671,-0.6632462175999322,-0.33172515155676074,14.503676128589404,14.503676128589404,13.928270928871342,13.928270928871342,15.025611501010047,15.025611501010047,10.725209566108958,10.725209566108958,6.020006265686277,6.020006265686277,12.919209783114525,13.842673219108107,13.070123219941593,13.940926535392123,6.668166342746488,13.085750905815587,14.203279298092738,13.2375803910587,14.241489749063831,7.28847298101519,167.89548927909985,167.89548927909985,0.0,186.55054364344429,0.0,167.89548927909985,186.55054364344429,0,0
+2017/01/02 10:00:00,182.30064841291667,0,1127.3179683497224,0,0,0,0.0,0.0,12.256737377208475,0.0,106.27511244621549,0,39.380909295966944,0.25718514760559225,20.69872894346591,0,0,173.6637228832218,581.0055440847874,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3692.5941938882643,0.0,4905.995283897029,0.0,4101.220168310835,0.0,4863.96260120261,0.0,0.0,0.0,3595.1283512251243,0.0,4848.957696593942,0.0,4035.4877962712394,0.0,4746.070208103364,0.0,0.0,0,0,0,0,0,0,0,0,0.06001924364687383,0.0018989670321231246,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6320695689433529,-0.6320695689433529,-0.6142725940369163,-0.6142725940369163,-0.6600393969178123,-0.6600393969178123,-0.4760078191811579,-0.4760078191811579,-0.29819247804806326,-0.29819247804806326,-0.5967215823409779,-0.637555554230464,-0.6061682879488436,-0.6389562038503281,-0.2978021208842835,-0.6024739995272373,-0.6505465373763728,-0.6129282818891209,-0.6483873073126936,-0.3378771626551154,13.385128806629623,13.385128806629623,12.915182870818214,12.915182870818214,14.15146080764876,14.15146080764876,9.73200868855102,9.73200868855102,6.847644056109289,6.847644056109289,12.465193559219742,13.532762337466394,12.705735695152057,13.570664465394003,6.842792549741617,12.61120660347595,13.887568241098563,12.880243353055334,13.828088928852736,7.374523564136183,182.30064841291667,182.30064841291667,0.0,202.55627601435185,0.0,182.30064841291667,202.55627601435185,0,0
+2017/01/02 11:00:00,212.82721582289574,0,1207.136119204993,0,0,0,0.0,0.0,17.209505957452443,0.0,133.89528835348938,0,39.380909295966944,0.32634970633280247,18.583187307199882,0,0,203.50705365106424,542.254482890855,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2802.242389095545,0.0,5284.0804945182335,0.0,3301.5391720271364,0.0,5231.337256358837,0.0,0.0,0.0,2628.483207540153,0.0,5189.7707229450225,0.0,3186.0726654033733,0.0,5082.197867074988,0.0,1548.460915737307,0,0,0,0,0,0,0,0,0.0642688211202449,0.002033420701180733,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.556765067981633,-0.556765067981633,-0.5578550904292483,-0.5578550904292483,-0.5935998483524699,-0.5935998483524699,-0.3832948403994851,-0.3832948403994851,-0.21998823171829993,-0.21998823171829993,-0.5836643283710885,-0.634202792483925,-0.5988598207103248,-0.6349170037188023,-0.3084669072787571,-0.5860531065589782,-0.6446248039586626,-0.6035121502839278,-0.6424910938995214,-0.3432584431672132,11.490607159579497,11.490607159579497,11.516275214754614,11.516275214754614,12.386556050722092,12.386556050722092,8.059611506489787,8.059611506489787,6.003915172210569,6.003915172210569,12.139092085471347,13.442380928494046,12.519300553499619,13.461593263926574,6.977655204706636,12.198198210015903,13.724927978372364,12.637710864642571,13.666698313730237,7.451111490783973,212.82721582289574,212.82721582289574,0.0,236.4746842476619,0.0,212.82721582289574,236.4746842476619,0,0
+2017/01/02 12:00:00,228.49127831949096,0,1198.2758606437128,0,0,0,0.0,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.15978451207622477,20.790830940038223,0,0,102.65401742921517,581.0117317826077,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2806.277435764344,0.0,3960.1920179962217,0.0,3406.51349857474,0.0,3933.9807164879758,0.0,0.0,0.0,2548.2917017456884,0.0,3821.1261889658003,0.0,3234.2052033659434,0.0,3752.3650447044847,0.0,0.0,0,0,0,0,0,0,0,0,0.06379709439158976,0.0020184955963067387,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44408075113096607,-0.44408075113096607,-0.4779017181766928,-0.4779017181766928,-0.5250720768595634,-0.5250720768595634,-0.21658916916215448,-0.21658916916215448,-0.11394009804234621,-0.11394009804234621,-0.5501034249635933,-0.6036041335517938,-0.5719225423785574,-0.6073887686549556,-0.293547294088309,-0.5458154179999508,-0.6075833868179125,-0.5715208801456451,-0.609578985234027,-0.321102235497698,9.11442301695159,9.11442301695159,9.770023386106018,9.770023386106018,10.76680891569795,10.76680891569795,5.973070403406425,5.973070403406425,5.268896640832423,5.268896640832423,11.334856953507298,12.640061477467768,11.8521618738487,12.737095405200364,6.7903295751006425,11.235620362257578,12.742102008935348,11.842452393925313,12.793534154278959,7.143666583505222,228.49127831949096,228.49127831949096,0.0,253.87919813276773,0.0,228.49127831949096,253.87919813276773,0,0
+2017/01/02 13:00:00,207.91119979003855,0,1136.6390050501254,0,0,0,0.0,0.0,16.965687027080573,0.0,129.49988082968767,0,39.380909295966944,0.1308464033771252,18.501901031471945,0,0,98.82442908493996,558.6948170458393,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3382.6758068924405,0.0,3000.8705313855203,0.0,3947.2777702763788,0.0,3002.0011590658623,0.0,0.0,0.0,3061.760145702454,0.0,2806.1318090796785,0.0,3699.4087894955737,0.0,2775.3602934205837,0.0,0.0,0,0,0,0,0,0,0,0,0.060515502544957314,0.0019146683177374989,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.38666428719225526,-0.38666428719225526,-0.46873219129122984,-0.46873219129122984,-0.47343819102176105,-0.47343819102176105,-0.10005831682764829,-0.10005831682764829,-0.07058577700318981,-0.07058577700318981,-0.5266075052591885,-0.5709496628311297,-0.5478656147767889,-0.578333779203613,-0.27457697459198654,-0.5198828099184377,-0.5703685914037329,-0.5449018844998607,-0.5771637443480305,-0.29685531434352025,8.113940608262425,8.113940608262425,9.587409140993884,9.587409140993884,9.680677925830864,9.680677925830864,5.207339196085243,5.207339196085243,5.1031601971627225,5.1031601971627225,10.800871870258518,11.828656271419561,11.282968279146758,12.008089773530756,6.565722283108926,10.65244202996081,11.814636674042944,11.214581589273365,11.979500286293657,6.831052034874503,207.91119979003855,207.91119979003855,0.0,231.01244421115393,0.0,207.91119979003855,231.01244421115393,0,0
+2017/01/02 14:00:00,205.53980302369587,0,1097.772553819451,0,0,0,0.0,0.0,17.02830042034,0.0,129.2730206906943,0,39.380909295966944,0.13435323265940047,16.291244181580876,0,0,110.6557977039535,543.4873497086959,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3246.363999077273,0.0,3292.5653738664587,0.0,3790.2991816135436,0.0,3321.7123107359466,0.0,0.0,0.0,2890.367484235652,0.0,3064.1116335401894,0.0,3501.127338594686,0.0,3069.106706821438,0.0,0.0,0,0,0,0,0,0,0,0,0.058446223892796675,0.0018491977835893415,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.37339526856063837,-0.37339526856063837,-0.4307234039869543,-0.4307234039869543,-0.4733455209094677,-0.4733455209094677,-0.06343973655850459,-0.06343973655850459,-0.08518573166282958,-0.08518573166282958,-0.5168492194819128,-0.5560536390126326,-0.5393249669274123,-0.5672550745333952,-0.27281181601925236,-0.5112661598850354,-0.5547326612091869,-0.5375051503614947,-0.5664801804604391,-0.29512664639157205,7.902794152607967,7.902794152607967,8.869053151715931,8.869053151715931,9.678832071072307,9.678832071072307,5.083326265432888,5.083326265432888,5.150264203399217,5.150264203399217,10.586124104809315,11.473882080311526,11.086928840322983,11.739765883840548,6.545594852515535,10.465112325748706,11.442885238204497,11.045565786428497,11.721197343358952,6.809714071419293,205.53980302369587,205.53980302369587,0.0,228.37755891521763,0.0,205.53980302369587,228.37755891521763,0,0
+2017/01/02 15:00:00,190.24490877314156,0,1115.056072627308,0,0,0,0.0,0.0,17.556656219909858,0.0,115.5196477718057,0,39.380909295966944,0.23330722576180887,14.122413057242955,0,0,188.01602260228094,518.9009961307696,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2512.466737812394,0.0,4062.9371149128438,0.0,3011.4761601791847,0.0,4102.93398424226,0.0,0.0,0.0,2272.2330738808996,0.0,3905.7061908160094,0.0,2840.9766520593867,0.0,3927.3739201781136,0.0,0.0,0,0,0,0,0,0,0,0,0.05936641123614458,0.0018783118697093795,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4316825596639535,-0.4316825596639535,-0.44501992749631414,-0.44501992749631414,-0.5206986826320731,-0.5206986826320731,-0.07912918842414375,-0.07912918842414375,-0.1424778333932561,-0.1424778333932561,-0.5271436398720328,-0.5671501002106287,-0.545725275633461,-0.5786588110407376,-0.2882633907851061,-0.5280363677043128,-0.569973913885788,-0.5479215298316888,-0.5817978162731674,-0.31279177170767636,8.886417127684908,8.886417127684908,9.131963849906029,9.131963849906029,10.670345935834732,10.670345935834732,5.129651031996033,5.129651031996033,5.420597583326256,5.420597583326256,10.812789873736094,11.737248892317297,11.23354276573383,12.016042381397497,6.726242424718194,10.832662377899624,11.805122583427803,11.284262151758213,12.093080848290526,7.033717131274727,190.24490877314156,190.24490877314156,0.0,211.38323197015728,0.0,190.24490877314156,211.38323197015728,0,0
+2017/01/02 16:00:00,185.12656385576724,0,1025.7168879166356,0,0,0,0.0,0.0,19.378717330544205,0.0,108.75639138185811,0,39.380909295966944,0.12056093933973859,14.058009705603938,0,0,98.70609117201921,518.8717428503589,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2216.4322508419,0.0,4713.580295605567,0.0,2683.5548042083938,0.0,4745.468335375457,0.0,0.0,0.0,2077.2792416399516,0.0,4606.634913956777,0.0,2588.111881908784,0.0,4617.766021743297,0.0,0.0,0,0,0,0,0,0,0,0,0.05460992686801867,0.001727820019844981,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5343735758399031,-0.5343735758399031,-0.48789581411945315,-0.48789581411945315,-0.5415294928990413,-0.5415294928990413,-0.09547285805325635,-0.09547285805325635,-0.1777305294498672,-0.1777305294498672,-0.54390101268409,-0.5870667737412019,-0.5585433941893491,-0.5964765182702331,-0.3033645929089637,-0.5504509617220236,-0.5950444670231648,-0.5651615480510838,-0.6040417450439788,-0.3297910875422563,10.974723306351777,10.974723306351777,9.973189538769347,9.973189538769347,11.137228228206922,11.137228228206922,5.18876330623597,5.18876330623597,5.654801608848956,5.654801608848956,11.191572923253162,12.223354459718124,11.532510059712067,12.459005016533254,6.912533190636111,11.342934849876514,12.42289389653294,11.689659243612155,12.651249575264742,7.261752368138843,185.12656385576724,185.12656385576724,0.0,205.6961820619636,0.0,185.12656385576724,205.6961820619636,0,0
+2017/01/02 17:00:00,212.48962061999592,0,1174.6337653344196,0,0,0,0.0,0.0,23.798027217215836,0.0,131.64086955684016,0,39.380909295966944,0.22321070201958237,14.014628645499027,0,0,174.2006724773188,539.0585101940271,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2367.2644910992894,0.0,4580.983907312271,0.0,2812.0942423289907,0.0,4618.196141408547,0.0,0.0,0.0,2229.0947925102532,0.0,4466.051861733555,0.0,2710.401332867893,0.0,4489.557727888885,0.0,0.0,0,0,0,0,0,0,0,0,0.06253837172546536,0.0019786704885526385,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5287053358864845,-0.5287053358864845,-0.4285064658630844,-0.4285064658630844,-0.4637543197383362,-0.4637543197383362,-0.06510412503465346,-0.06510412503465346,-0.13721454539375472,-0.13721454539375472,-0.545807031451576,-0.5904985983151152,-0.5598307593432916,-0.6005316928619013,-0.30641460668085535,-0.552989474938744,-0.5986812972359489,-0.5669102628124609,-0.6090072967491874,-0.3324799707601538,10.847576512253028,10.847576512253028,8.829070171315934,8.829070171315934,9.489790768576782,9.489790768576782,5.087756712057356,5.087756712057356,5.390071671748814,5.390071671748814,11.235427054674204,12.308853325197063,11.562929957328663,12.561744629464513,6.951328806071459,11.402097032712646,12.514775519100866,11.731500053890443,12.778782480356242,7.298944464976685,212.48962061999592,212.48962061999592,0.0,236.09957846666214,0.0,212.48962061999592,236.09957846666214,0,0
+2017/01/02 18:00:00,234.4008538414202,0,1138.2577583237694,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.17165709964512893,18.591861598847174,0,0,134.6309842353697,542.2521914253259,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3112.942283105323,0.0,4068.491649687968,0.0,3521.8416884334206,0.0,4068.933603592718,0.0,0.0,0.0,2961.57057727558,0.0,3949.7769408757504,0.0,3401.177470746087,0.0,3929.536256307235,0.0,0.0,0,0,0,0,0,0,0,0,0.06060168616826746,0.0019173951075040906,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48739461132763545,-0.48739461132763545,-0.408055392850856,-0.408055392850856,-0.4844403487860774,-0.4844403487860774,-0.03199692581408761,-0.03199692581408761,-0.09400648625248678,-0.09400648625248678,-0.5409128588352374,-0.5855405319136622,-0.5527626514262344,-0.5919599864833455,-0.29409002460040284,-0.5481317761851371,-0.5942651618179187,-0.5592102360331208,-0.6000886139978615,-0.3183672445845917,9.962898115836438,9.962898115836438,8.470172174776692,8.470172174776692,9.902457223749522,9.902457223749522,5.0211942136797205,5.0211942136797205,5.183007127569368,5.183007127569368,11.123137635554244,12.185494583534634,11.396799354844276,12.345416830299271,6.7969790019131295,11.289128458477975,12.403280052107718,11.548258280544601,12.550484303096823,7.10715898253892,234.4008538414202,234.4008538414202,0.0,260.44539315713354,0.0,234.4008538414202,260.44539315713354,0,0
+2017/01/02 19:00:00,219.07059116491735,0,1161.2268374342773,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.1624129444150108,26.23170752398166,0,0,135.6871997390586,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3736.611755124757,0.0,3152.5017910236484,0.0,4118.436654731795,0.0,3137.3405906939747,0.0,0.0,0.0,3590.48149508126,0.0,3042.2278467520705,0.0,3997.7288817410936,0.0,3001.726794299747,0.0,0.0,0,0,0,0,0,0,0,0,0.06182457695346092,0.001956086519522418,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.43159167600598103,-0.43159167600598103,-0.40588769022976007,-0.40588769022976007,-0.4645934428325169,-0.4645934428325169,0.002088175565952169,0.002088175565952169,-0.07840328487309361,-0.07840328487309361,-0.5246804057011698,-0.5615559295219639,-0.5347636187767104,-0.5678110107982681,-0.27047005397061047,-0.5307400870906022,-0.5688006302377228,-0.539853290164331,-0.5744948283174177,-0.292645978856131,8.884770130819959,8.884770130819959,8.43318145471325,8.43318145471325,9.50617155190767,9.50617155190767,5.000090264075851,5.000090264075851,5.127282547147033,5.127282547147033,10.758136161752489,11.603807690170598,10.983523699281122,11.753103653879464,6.519095285455748,10.893058836586292,11.776879326147792,11.098964100406135,11.914508310623177,6.779314330722443,219.07059116491735,219.07059116491735,0.0,243.41176796101928,0.0,219.07059116491735,243.41176796101928,0,0
+2017/01/02 20:00:00,210.73910732896857,0,1165.269629433143,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.2094294827268531,27.0977424753112,0,0,175.22034425046868,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4164.527049205231,0.0,3436.0662921148573,0.0,4532.96990532857,0.0,3418.556192598915,0.0,0.0,0.0,3927.9265503077067,0.0,3270.1256118702477,0.0,4324.89763969835,0.0,3227.65828187462,0.0,0.0,0,0,0,0,0,0,0,0,0.062039818194003525,0.0019628966023376646,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.40472194879474477,-0.40472194879474477,-0.48934010314535126,-0.48934010314535126,-0.4211225672294639,-0.4211225672294639,-0.022764899762184525,-0.022764899762184525,-0.10435583394315232,-0.10435583394315232,-0.523267627341095,-0.5564152154692146,-0.5336215620927611,-0.5624321305648323,-0.2660970199172387,-0.5300478731119103,-0.5640209372765679,-0.53935562831768,-0.5694885519818077,-0.28822830322429516,8.413371866893584,8.413371866893584,10.00290642621961,10.00290642621961,8.697420909070615,8.697420909070615,5.010728090514434,5.010728090514434,5.225540957121083,5.225540957121083,10.726908258260963,11.482379687429031,10.95777450028352,11.624618608892106,6.470228225662964,10.87756581718699,11.662439768537027,11.087626979544922,11.7934317208137,6.725820796888939,210.73910732896857,210.73910732896857,0.0,234.15456369885396,0.0,210.73910732896857,234.15456369885396,0,0
+2017/01/02 21:00:00,211.32412140672983,0,1108.6899787610903,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.19182832135911654,23.22856391921339,0,0,154.13104609095996,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4173.0258390892095,0.0,3454.5057400036235,0.0,4521.145821359916,0.0,3428.8498138591167,0.0,0.0,0.0,4054.497744768688,0.0,3368.8454468201644,0.0,4429.6547182696,0.0,3314.7030013542053,0.0,0.0,0,0,0,0,0,0,0,0,0.05902747568329898,0.001867588185074914,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4383800762523545,-0.4383800762523545,-0.5322229818708629,-0.5322229818708629,-0.5098202268602304,-0.5098202268602304,-0.054004074046309254,-0.054004074046309254,-0.14585025053657938,-0.14585025053657938,-0.5215711684664256,-0.5518742988155727,-0.5313311709114105,-0.5569386633723343,-0.26206320941310984,-0.5297234251273328,-0.5603558827087374,-0.5381854850760501,-0.5647094536473843,-0.28482067819503826,9.008765991263786,9.008765991263786,10.926318580194078,10.926318580194078,10.433991788433147,10.433991788433147,5.060379663836784,5.060379663836784,5.440762901662467,5.440762901662467,10.68952406130225,11.37607251219272,10.906304800731263,11.494691567713943,6.425865913500388,10.870311217307176,11.575359038366386,11.061012487826702,11.678863736403386,6.685120861993525,211.32412140672983,211.32412140672983,0.0,234.8045793408109,0.0,211.32412140672983,234.8045793408109,0,0
+2017/01/02 22:00:00,197.201798964168,0,1111.4289822167618,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.23033116770137263,25.07553034584708,0,0,192.36040205917575,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3702.5362813924107,0.0,4538.400912156465,0.0,4064.0474412154745,0.0,4517.474235895595,0.0,0.0,0.0,3516.0359816702426,0.0,4402.686693961098,0.0,3901.25547007972,0.0,4354.0490143771885,0.0,0.0,0,0,0,0,0,0,0,0,0.05917330225607705,0.001872202036188106,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5310599029798486,-0.5310599029798486,-0.5402519819697353,-0.5402519819697353,-0.5816699650611618,-0.5816699650611618,-0.13446326379281442,-0.13446326379281442,-0.2283732409365014,-0.2283732409365014,-0.5355079488916406,-0.5704663799439956,-0.545913788482092,-0.5749670927847057,-0.28086276089713924,-0.5466585575276051,-0.581950668412593,-0.5559074472655651,-0.5856155189668819,-0.3054193328018364,10.900223910900735,10.900223910900735,11.108054348839815,11.108054348839815,12.089934730699824,12.089934730699824,5.374573578899572,5.374573578899572,6.082075483289302,6.082075483289302,11.000336026993864,11.816995007735045,11.237888001791518,11.925986130809449,6.638463484589693,11.255070049069744,12.096843110794865,11.470447956954445,12.18735234724437,6.938625850061797,197.201798964168,197.201798964168,0.0,219.11310996018668,0.0,197.201798964168,219.11310996018668,0,0
+2017/01/02 23:00:00,140.25893671561636,0,990.4554513008183,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.40278882149231116,20.671215086347807,0,0,268.3726839299984,562.3761810643714,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.53441259151416,0.0,0.0,0.0,226.2062437594867,0.0,0.0,0.0,0.0,0.0,3754.955233958116,0.0,5319.758084222679,0.0,3261.4500858750225,0.0,5297.187182597004,0.0,0.0,0.0,3689.0512565285826,0.0,5258.0932099657375,0.0,4072.9590402824924,0.0,5207.385896341878,0.0,1944.3719571405709,0,0,0,0,0,0,0,0,0.05273258186421138,0.0016684221325419344,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.693452624724345,-0.693452624724345,-0.6859908052752735,-0.6859908052752735,-0.7297381404450093,-0.7297381404450093,-0.38096606959879875,-0.38096606959879875,-0.47035701770592214,-0.47035701770592214,-0.56422637363225,-0.6084994996902565,-0.6287440074678594,-0.6120280388565945,-0.3133761174819489,-0.5794540221692391,-0.6244357530160581,-0.5888839595154441,-0.6267005577527941,-0.3433008542157511,15.111354870312198,15.111354870312198,14.892803572296984,14.892803572296984,16.208380372543473,16.208380372543473,8.022345630110678,8.022345630110678,9.619503880292797,9.619503880292797,11.667338124562647,12.76569133638995,13.296270122573219,12.856889317946894,7.041352553953914,12.035518270340901,13.181867440546952,12.268563306495423,13.241907342985527,7.451719983548827,140.25893671561636,140.25893671561636,0.0,155.84326301735152,0.0,140.25893671561636,155.84326301735152,0,0
+2017/01/03 00:00:00,91.23703403140155,0,869.1472953868918,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.5244457211203376,11.76963204898865,0,0,299.3284583115719,516.5833083065036,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1578.3314367252033,0.0,824.6852746351454,0.0,1910.0716002854144,0.0,0.0,0.0,0.0,0.0,3674.404703457769,0.0,5968.460158718777,0.0,4214.221756517681,0.0,5945.203854728221,0.0,5307.515729044376,0.0,3693.4945484487935,0.0,5958.265238029127,0.0,4073.5616051457528,0.0,5905.872691283698,0.0,8980.724835289398,0,0,0,0,0,0,0,0,0.046274045789594126,0.001464078553112058,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7966666516348344,-0.7966666516348344,-0.7929282665241032,-0.7929282665241032,-0.815035061041893,-0.815035061041893,-0.6011870098116945,-0.6011870098116945,-0.5597545112321973,-0.5597545112321973,-0.5865179099231004,-0.6354493641843357,-0.6274235766505611,-0.6383777618240394,-0.34418600149832346,-0.6048381550278116,-0.6548284627305292,-0.6145785258248818,-0.6563328235865145,-0.37857578908153267,18.380011135160373,18.380011135160373,18.253678928979326,18.253678928979326,19.009326841984958,19.009326841984958,12.57841435637387,12.57841435637387,11.561126244278924,11.561126244278924,12.209727732319095,13.475928193681852,13.261121417358154,13.555001283199942,7.46443708534072,12.67163214283002,14.006118236970892,12.923145185506854,14.047956822844753,7.98433620963047,91.23703403140155,91.23703403140155,0.0,101.37448225711283,0.0,91.23703403140155,101.37448225711283,0,0
+2017/01/03 01:00:00,39.3434629243556,0,546.1495697640642,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.578602947872819e-09,9.546141925353812,0,0,0.0,492.914040995248,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0290774076308661,0.0009199889088155167,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7884982953939497,-0.7884982953939497,-0.7965360879420985,-0.7965360879420985,-0.8086322742676724,-0.8086322742676724,-0.581798138117528,-0.581798138117528,-0.24516091431958084,-0.24516091431958084,-0.8519362867174927,-0.9029509763325035,-0.8729604010493122,-0.9088905695536891,-0.13671464961327442,-0.8436607212358285,-0.8980170424910926,-0.8590634748607162,-0.9036675813450018,-0.246401282511097,18.104742971988955,18.104742971988955,18.375588983261764,18.375588983261764,18.788344830107135,18.788344830107135,12.093088769018195,12.093088769018195,6.247424997495102,6.247424997495102,20.316449995033707,22.21648029649137,21.08652529367707,22.444613256775853,5.387232325498843,20.018360180161153,22.028061571586818,20.57545608656966,22.243928445500387,6.260111445418502,39.3434629243556,39.3434629243556,0.0,43.714958804839554,0.0,39.3434629243556,43.714958804839554,0,0
+2017/01/03 02:00:00,23.748091457249906,0,52.237097136549465,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5509960335721141,0,0,0.0,16.746744624005327,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0027811417439159896,8.799338616178912e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8062779839314329,-0.8062779839314329,-0.8172573969546931,-0.8172573969546931,-0.8240452723028578,-0.8240452723028578,-0.5923061442854674,-0.5923061442854674,-0.0968907254812641,-0.0968907254812641,-0.9142852033857454,-0.9722459838198769,-0.944460400678356,-0.9799886203318446,-0.07262513675941466,-0.9643675421182125,-1.0250389125993553,-0.9832011039775651,-1.0308173287109692,-0.22528232253054198,18.70752512627533,18.70752512627533,19.086431092675895,19.086431092675895,19.323223819231586,19.323223819231586,12.354091174630753,12.354091174630753,5.194413942391904,5.194413942391904,22.653051268071735,24.965763452163515,23.840489397519377,25.28469004348861,5.109208729433377,24.643629905359887,27.185737103750483,25.417694604946576,27.43508645516178,6.052920682051706,23.748091457249906,23.748091457249906,0.0,26.386768285833227,0.0,23.748091457249906,26.386768285833227,0,0
+2017/01/03 03:00:00,28.370915582568546,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5515524960956512,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8067325881932829,-0.8067325881932829,-0.8199439495203632,-0.8199439495203632,-0.8233960968275047,-0.8233960968275047,-0.5953975473320371,-0.5953975473320371,-0.016822727912583237,-0.016822727912583237,-0.9535366939650198,-1.0140333237293304,-0.9839673214580693,-1.0219284124381802,-0.050570644947315675,-1.031399317480374,-1.0952012627153342,-1.0507568371024614,-1.100627152452411,-0.2132568077271825,18.72311286272057,18.72311286272057,19.179918928876504,19.179918928876504,19.300493807929797,19.300493807929797,12.431789029786785,12.431789029786785,5.005858402388,5.005858402388,24.204734544714995,26.71425489827253,25.449476516088936,27.05202528122264,5.0529453281520915,27.46026868685071,30.294928942463343,28.304919212115863,30.542584548876775,5.94330073886232,28.370915582568546,28.370915582568546,0.0,31.523239536187273,0.0,28.370915582568546,31.523239536187273,0,0
+2017/01/03 04:00:00,23.72217141796247,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250759942846827,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9037446771643972,-0.9037446771643972,-0.9207571311176412,-0.9207571311176412,-0.9197798816475884,-0.9197798816475884,-0.6989413572008533,-0.6989413572008533,0.004092337218021647,0.004092337218021647,-1.0640251352124164,-1.1241882987123863,-1.0963195935054972,-1.1351225768917916,-0.03177265875385099,-1.1393175302670986,-1.2032885363029533,-1.161690868069448,-1.2117331692132614,-0.24050833644332656,22.24688269045329,22.24688269045329,22.904661448314343,22.904661448314343,22.86656078062971,22.86656078062971,15.273651419726207,15.273651419726207,5.0003466761693005,5.0003466761693005,28.891703151381137,31.629511377943857,30.345891003999085,32.14017633595694,5.020898140170672,32.33712439231685,35.40831634942781,33.396991032279175,35.822820163548585,6.200414466468871,23.72217141796247,23.72217141796247,0.0,26.357968242180522,0.0,23.72217141796247,26.357968242180522,0,0
+2017/01/03 05:00:00,43.45300026153961,0,405.48886873615396,0,0,0,0.0,0.019554097854722792,4.633261998087618,9.319298099999997,25.555573451546493,0,1.9993309426643233,1.400926163371813,0.525055508014614,0,0,316.7629874547936,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,433.22969461087905,0.0,337.0907399930577,0.0,475.3520115396039,0.0,0.0,0.0,0.0,2.8423519787611937,4069.4258065062177,2.3050564631969586,2718.2893482590507,2.818765411627004,4283.1908296753545,1.9489716141863729,2767.709610250408,0.0,0.0,3.1340641626102292,4033.6342887136016,1.6059810634529739,2664.9580821113445,2.9848800408571803,4194.183179941061,1.9140271200308738,2709.8735773440244,0.0,0.0,0,0,0,0,0,0,0,0,0.021588527719821164,0.000683045968609968,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8476658583330186,-0.8476658583330186,-0.8568240940510271,-0.8568240940510271,-0.858675742099322,-0.858675742099322,-0.7043655303990216,-0.7043655303990216,0.1545553522567513,0.1545553522567513,-0.7374231536585717,-0.7772037484568994,-0.7538538761457186,-0.7819646860379098,0.00496616952896862,-0.7827811877853157,-0.8273396640099886,-0.7932330120253671,-0.8309711694419818,-0.23583199873676652,20.16227113995413,20.16227113995413,20.4938486473998,20.4938486473998,20.561311463222253,20.561311463222253,15.435316859504496,15.435316859504496,5.495003689142706,5.495003689142706,16.447996334127836,17.728791492316958,16.96880187144434,17.8866032753797,5.000510533680782,17.913764888795214,19.4388452425751,18.26395509644192,19.566825636970663,6.154079847527228,43.45300026153961,43.45300026153961,0.0,48.281111401710675,0.0,43.45300026153961,48.281111401710675,0,0
+2017/01/03 06:00:00,76.1561938961691,0,326.53630358619915,0,0,0,0.04996164320838734,0.01541190020458117,5.555297838843742,9.319298099999997,57.911447091112116,0,1.6287450342393153,1.1510932567183283,0.5249390318425977,0,0,113.59418851093427,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,158.05373759483112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.215154977072757,2921.412213353101,1.4944242235363276,1984.9521126923835,1.8207279691896474,3124.3889407371275,1.4525157703920968,2027.5362881246901,0.0,0.0,2.477920953405601,3304.741177068398,1.438783244462229,2210.10304133949,2.656704651500263,3453.646204283893,1.8556684150222509,2243.5926175860377,0.0,0.0,0,0,0,0,0,0,0,0,0.017385034670546216,0.0005500503786072672,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6946024536479928,-0.6946024536479928,-0.7177957594255711,-0.7177957594255711,-0.7069460571887718,-0.7069460571887718,-0.5262600739522475,-0.5262600739522475,0.47944402020454696,0.47944402020454696,-0.682149237088213,-0.7141368274055051,-0.6933087525546908,-0.7173618017298372,0.12000677924843103,-0.6930919745858387,-0.7314465421868722,-0.7005672314594804,-0.733406677330472,-0.12530699470634168,15.145246466852413,15.145246466852413,15.841060710267953,15.841060710267953,15.5126741709919,15.5126741709919,10.793155291454326,10.793155291454326,9.801095050459836,9.801095050459836,14.781225395918824,15.729749313448593,15.107118209822076,15.827828780612833,5.298312192426295,15.10073635234032,16.26142836714459,15.321976711216735,16.32244751822691,5.325263244438574,76.1561938961691,76.1561938961691,0.0,84.61799321796566,0.0,76.1561938961691,84.61799321796566,0,0
+2017/01/03 07:00:00,102.02236450618564,0,802.1126416369176,0,0,0,0.0,0.011632430551662914,11.110595677687485,13.929299233552332,73.80580873715317,0,1.6147176043933993,1.0253415728998665,0.5249692499476969,0,0,90.13530655751909,481.29004374786166,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.075521710553706,2451.4685339966986,1.6392973728284228,1671.9172229794756,1.6328942003494071,2623.3517237281303,0.0,1709.9189413563092,0.0,0.0,1.9796057074871287,2561.0611998337035,1.6749737863875298,1718.5625784794024,1.537280950807447,2684.4130430059163,1.092856823249273,1748.4014548439202,0.0,0.0,0,0,0,0,0,0,0,0,0.042705071170930566,0.0013511586839580704,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5813163800916679,-0.5813163800916679,-0.6089919087816291,-0.6089919087816291,-0.5929874006752135,-0.5929874006752135,-0.42480094759786463,-0.42480094759786463,0.7311513395724286,0.7311513395724286,-0.6654211594486045,-0.6950226519399199,-0.6755676960690383,-0.698372691460803,0.18725614733434878,-0.669702706093008,-0.7059568750719112,-0.6764652921394506,-0.7081207357583704,-0.012480785631168535,12.081237529609723,12.081237529609723,12.778385610010403,12.778385610010403,12.371177919455647,12.371177919455647,8.762711233025428,8.762711233025428,16.252252993753785,16.252252993753785,14.30280302847845,15.157646202899045,14.591548462636595,15.256776106373664,5.726980904363785,14.424101708163917,15.482987175385205,14.617306390268112,15.547983041010752,5.003224539655932,102.02236450618564,102.02236450618564,0.0,113.35818278465071,0.0,102.02236450618564,113.35818278465071,0,0
+2017/01/03 08:00:00,164.72479480455857,0,1022.6033521504123,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.4496661305616524,27.088334322409533,0,0,156.7703007616423,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1821.5694849990882,0.0,1020.5926202155532,0.0,2053.26294576492,0.0,521.1606484019919,0.0,0.0,0.0,5684.397884323274,0.0,6580.578964955275,0.0,6074.004291856334,0.0,6558.4406310445065,0.0,2188.4635512461778,0.0,5719.124754181643,0.0,6572.1284967401925,0.0,6086.62964518871,0.0,6521.021173841877,0.0,3860.535613167519,0,0,0,0,0,0,0,0,0.05444415991760825,0.0017225752690830916,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6994451344780206,-0.6994451344780206,-0.7059837521160915,-0.7059837521160915,-0.713492301462939,-0.713492301462939,-0.610809018304825,-0.610809018304825,0.18079779501588158,0.18079779501588158,-0.6607604400949648,-0.6976719604996704,-0.670298223327826,-0.7002657036360518,-0.1827567259548024,-0.6667234867153461,-0.7107728546052553,-0.6740517070611157,-0.7119682139817185,-0.2668916986463153,15.28861281320306,15.28861281320306,15.483793242207582,15.483793242207582,15.710201409833715,15.710201409833715,12.825321641045235,12.825321641045235,5.677629915037258,5.677629915037258,14.171664697537821,15.23600092468979,14.441035934299862,15.313005885723285,5.692414897249378,14.339614700851214,15.62792012496864,14.548123953663023,15.664048401817226,6.479048583425154,164.72479480455857,164.72479480455857,0.0,183.02754978284284,0.0,164.72479480455857,183.02754978284284,0,0
+2017/01/03 09:00:00,168.2100472156841,0,1140.3733784541641,0,0,0,0.0,0.0,15.03950648019319,0.0,83.2008179303116,0,39.380909295966944,0.43725683146748573,26.719581475290628,0,0,221.30479829657799,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,868.72419107805,0.0,462.5210872591894,0.0,1099.9350644829142,0.0,0.0,0.0,0.0,0.0,5099.352895359022,0.0,6271.591919004032,0.0,5465.677520499512,0.0,6244.054556902601,0.0,138.90737301821378,0.0,5224.147932122983,0.0,6325.49860697515,0.0,5568.251076431647,0.0,6268.706819540926,0.0,2157.516994445484,0,0,0,0,0,0,0,0,0.060714323351063616,0.001920958869453168,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7340470083191646,-0.7340470083191646,-0.7359936342681218,-0.7359936342681218,-0.7478376798926037,-0.7478376798926037,-0.664930015995998,-0.664930015995998,-0.2969011225071289,-0.2969011225071289,-0.6521076014402447,-0.6934880422885394,-0.6608949885846769,-0.6954868064529806,-0.292329310011076,-0.6610822868272468,-0.7084809578449053,-0.6682826025100574,-0.7091153960053298,-0.34879657153990967,16.342416842545873,16.342416842545873,16.403232364136272,16.403232364136272,16.776763343022267,16.776763343022267,14.288939408225772,14.288939408225772,6.831619189442279,6.831619189442279,13.93069603087649,15.11239796245232,14.175437288456976,15.171351919162518,6.775452371817366,14.180690229925872,15.558822636363345,14.383781375746082,15.577927390433672,7.531216675312081,168.2100472156841,168.2100472156841,0.0,186.90005246187124,0.0,168.2100472156841,186.90005246187124,0,0
+2017/01/03 10:00:00,182.36895073462793,0,1198.3088454821707,0,0,0,0.0,0.0,12.114700184075584,0.0,106.27511244621549,0,39.380909295966944,0.39597755080530994,20.77027605511038,0,0,244.63061619818933,581.0295279022679,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,793.4791666452404,0.0,465.58451949336893,0.0,1086.7889471218898,0.0,0.0,0.0,0.0,0.0,5594.256829763564,0.0,6718.158792686729,0.0,6069.350833637944,0.0,6683.094358955174,0.0,0.0,0.0,5384.856807952764,0.0,6580.084338436844,0.0,5872.244493720895,0.0,6504.042921857803,0.0,3676.386863412291,0,0,0,0,0,0,0,0,0.06379885052882134,0.0020185511592646175,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7298264654384371,-0.7298264654384371,-0.7366128614995389,-0.7366128614995389,-0.7450491088699354,-0.7450491088699354,-0.676486584156513,-0.676486584156513,-0.3118852844664425,-0.3118852844664425,-0.6428854387763759,-0.6910318258690866,-0.6575148738324195,-0.692176548946897,-0.3098274894684646,-0.6516507013232434,-0.7068986162466209,-0.6664302097804901,-0.7058812706167271,-0.35945380463956295,16.211119897717325,16.211119897717325,16.422612072947544,16.422612072947544,16.68827738995327,16.68827738995327,14.617917821432854,14.617917821432854,7.021901019443376,7.021901019443376,13.677445245929675,15.040187727195502,14.080900261416716,15.07380897406432,6.995206665621993,13.918062237247753,15.51124942607774,14.331318506740047,15.48071989663083,7.689036749916838,182.36895073462793,182.36895073462793,0.0,202.63216748291993,0.0,182.36895073462793,202.63216748291993,0,0
+2017/01/03 11:00:00,212.90310609281997,0,1322.6338109872115,0,0,0,0.0,0.0,17.146892480886187,0.0,133.89528835348938,0,39.380909295966944,0.5431028700952594,18.504937889927845,0,0,318.91349021926885,542.3457381048688,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,264.1668191982353,0.0,0.0,0.0,0.0,0.0,4255.812751839127,0.0,6915.232361357783,0.0,4816.299682739318,0.0,6868.163960476912,0.0,2167.6594269000057,0.0,3988.9285435481743,0.0,6750.8237805333065,0.0,4590.669639729966,0.0,6669.900790720192,0.0,7728.919474941842,0,0,0,0,0,0,0,0,0.07041800378064049,0.0022279765542217536,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6839260085032638,-0.6839260085032638,-0.7028712677144483,-0.7028712677144483,-0.7095918720104738,-0.7095918720104738,-0.6152769071572187,-0.6152769071572187,-0.23586770158353476,-0.23586770158353476,-0.6348298874200834,-0.6929324027698032,-0.6546929140962721,-0.6933376952404227,-0.32624886121130175,-0.6404119379866176,-0.7062332754945025,-0.6614195403238293,-0.7052393766381302,-0.3716752372354896,14.832752319439635,14.832752319439635,15.39065420031929,15.39065420031929,15.592286863155692,15.592286863155692,12.941336783589392,12.941336783589392,6.154430124845078,6.154430124845078,13.459248644101748,15.096039918612547,14.002353238035383,15.107970424643824,7.213225215336635,13.610147375526282,15.491278161199332,14.190152628431832,15.461480269745437,7.875973783730402,212.90310609281997,212.90310609281997,0.0,236.55900676979996,0.0,212.90310609281997,236.55900676979996,0,0
+2017/01/03 12:00:00,228.7258254872945,0,1269.3890710995847,0,0,0,0.0,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.3092116842905695,20.87595093562743,0,0,173.74022440174215,581.0387352659525,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4832.313304438977,0.0,5756.764466309542,0.0,5507.212504139862,0.0,5733.204388601265,0.0,0.0,0.0,4488.817455616383,0.0,5555.455568066663,0.0,5238.89131484123,0.0,5509.65577534944,0.0,0.0,0,0,0,0,0,0,0,0,0.06758321439028944,0.0021382857939222536,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5885813398901937,-0.5885813398901937,-0.5916470889863849,-0.5916470889863849,-0.6338765602586011,-0.6338765602586011,-0.4945524151264899,-0.4945524151264899,-0.12408460255309126,-0.12408460255309126,-0.6076012699542421,-0.6689233957359877,-0.634872085087411,-0.6721262167874246,-0.3155147613079573,-0.6066928362499675,-0.6762307386038007,-0.636952887404564,-0.6791408435188211,-0.3521729165073964,12.261024640501574,12.261024640501574,12.337580428445051,12.337580428445051,13.433612619369057,13.433612619369057,10.110901113262827,10.110901113262827,5.318943907288471,5.318943907288471,12.74256213981505,14.401964304906073,13.460384297330563,14.493112954869432,7.069420698496998,12.719205809136824,14.610572143551522,13.516480120274494,14.694292371809354,7.580693069737151,228.7258254872945,228.7258254872945,0.0,254.13980609699388,0.0,228.7258254872945,254.13980609699388,0,0
+2017/01/03 13:00:00,208.04588343198475,0,1222.0264327664063,0,0,0,0.0,0.0,16.965687027080573,0.0,129.49988082968767,0,39.380909295966944,0.26693479347358534,18.5004962833217,0,0,181.46705063422877,561.4396232128321,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5973.292032569629,0.0,4873.631585735149,0.0,6653.951372483323,0.0,4877.417441947335,0.0,0.0,0.0,5490.918131522734,0.0,4579.433854193479,0.0,6253.088355164122,0.0,4560.498467078688,0.0,0.0,0,0,0,0,0,0,0,0,0.06506159244360905,0.002058503433244778,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5508720205903522,-0.5508720205903522,-0.54593610241244,-0.54593610241244,-0.6056293089071288,-0.6056293089071288,-0.41910244325310175,-0.41910244325310175,-0.07912568535725185,-0.07912568535725185,-0.5889302876731002,-0.6417598894986317,-0.618380804846243,-0.6487722342204145,-0.3000585248060854,-0.5850756779657379,-0.6448776907325823,-0.6177925438200568,-0.6520197680211965,-0.32929845130136165,11.352728655862052,11.352728655862052,11.238402441588903,11.238402441588903,12.691907446834463,12.691907446834463,8.661811069989852,8.661811069989852,5.129639549684697,5.129639549684697,12.26971775462566,13.646788921291574,13.022443913866951,13.838677528076659,6.870924981835728,12.1739835231959,13.731842429088118,13.007040109883803,13.928266637119094,7.254971573878976,208.04588343198475,208.04588343198475,0.0,231.16209270220526,0.0,208.04588343198475,231.16209270220526,0,0
+2017/01/03 14:00:00,205.61339239571572,0,1149.208384885918,0,0,0,0.0,0.0,17.02830042034,0.0,129.2730206906943,0,39.380909295966944,0.19173770488152575,16.307449081378607,0,0,164.7798327900373,540.7991456890791,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5873.70636839493,0.0,5301.611120232597,0.0,6516.7094281785485,0.0,5354.78420440598,0.0,0.0,0.0,5385.596866564107,0.0,4985.410459009827,0.0,6107.915062566076,0.0,5038.323905827903,0.0,0.0,0,0,0,0,0,0,0,0,0.06118470563763834,0.0019358414371168913,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5040786319740121,-0.5040786319740121,-0.542185701619225,-0.542185701619225,-0.5721133854267996,-0.5721133854267996,-0.4075491489690574,-0.4075491489690574,-0.09281027350458532,-0.09281027350458532,-0.5885504617048652,-0.6323398490080206,-0.6170539453885339,-0.6443311350049744,-0.3000050651693293,-0.5876748751599342,-0.6353192712566157,-0.6185283430900935,-0.649478520550974,-0.32812210919838597,10.31130872438817,10.31130872438817,11.152241229315806,11.152241229315806,11.856777622499663,11.856777622499663,8.461515378606535,8.461515378606535,5.1783775333444595,5.1783775333444595,12.260255646403365,13.392371746078837,12.987720937348712,13.716901937919744,6.87025596759409,12.23846715402432,13.4724240318439,13.02630960570771,13.858122813548547,7.238821690594008,205.61339239571572,205.61339239571572,0.0,228.45932488412856,0.0,205.61339239571572,228.45932488412856,0,0
+2017/01/03 15:00:00,190.24960139040627,0,1261.017071916094,0,0,0,0.0,0.0,17.38926645475239,0.0,115.5196477718057,0,39.380909295966944,0.4247945849160549,14.103008080510913,0,0,333.88194270807537,518.9960753137611,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4612.412370135766,0.0,6090.794586864349,0.0,5449.471268073585,0.0,6340.664022850175,0.0,0.0,0.0,4204.408409438247,0.0,5814.069753293643,0.0,5150.139324587701,0.0,6089.248400178985,0.0,2334.08008528504,0,0,0,0,0,0,0,0,0.0671374829525648,0.002124183161933088,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5297565651459059,-0.5297565651459059,-0.5603954126061438,-0.5603954126061438,-0.6257553009246086,-0.6257553009246086,-0.4553113237422271,-0.4553113237422271,-0.1529550341836168,-0.1529550341836168,-0.5875082952869878,-0.6279995862913637,-0.6299032538985199,-0.660808113655714,-0.3171670420756977,-0.588820102567886,-0.6313777824712177,-0.6355872909917828,-0.6693555287285573,-0.3489067127573971,10.871052013284867,10.871052013284867,11.576295150668386,11.576295150668386,13.216821553709096,13.216821553709096,9.3266598334435,9.3266598334435,5.484795471254614,5.484795471254614,12.234325671905523,13.276444984472178,13.32719060015512,14.17300132176696,7.09123832849501,12.266972212345777,13.366604815139056,13.47964416939783,14.414236400493863,7.53282301621438,190.24960139040627,190.24960139040627,0.0,211.38844598934028,0.0,190.24960139040627,211.38844598934028,0,0
+2017/01/03 16:00:00,186.87973223746093,0,1278.7246143658144,0,0,0,0.0,0.0,20.721365420394008,0.0,108.75639138185811,0,39.380909295966944,0.5657738315289933,14.023317105258567,0,0,333.4254803504259,537.1600801211312,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4005.7720576410393,0.0,6827.340613794851,0.0,4632.501861980386,0.0,6922.322881134946,0.0,4259.962816097211,0.0,3797.329974933318,0.0,6658.21971825528,0.0,4473.684717742816,0.0,6766.077749948528,0.0,8813.739847000374,0,0,0,0,0,0,0,0,0.06808024562868266,0.002154011515845662,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5993585858952833,-0.5993585858952833,-0.5953190948827782,-0.5953190948827782,-0.6687699274332596,-0.6687699274332596,-0.5010551200179183,-0.5010551200179183,-0.19656286447229,-0.19656286447229,-0.6245309665530149,-0.6719062273522003,-0.6464546233239878,-0.6833475585070468,-0.3376093709493444,-0.6364298699702794,-0.6858522759433967,-0.6568386099617816,-0.6969015055685392,-0.37385034712183995,12.531950084974355,12.531950084974355,12.429812113912888,12.429812113912888,14.397607921725253,14.397607921725253,10.247276868418183,10.247276868418183,5.801162192252505,5.801162192252505,13.184387066742204,14.4868381014103,13.77502160656158,14.815962100947061,7.370744405393793,13.502362555085284,14.888768903244326,14.062045548895313,15.213183048538141,7.909911278975343,186.87973223746093,186.87973223746093,0.0,207.64414693051214,0.0,186.87973223746093,207.64414693051214,0,0
+2017/01/03 17:00:00,212.77631196413012,0,1282.6733591801985,0,0,0,0.0,0.0,23.68207837024315,0.0,131.64086955684016,0,39.380909295966944,0.5706413759583465,14.069838162667155,0,0,300.30814734938787,520.9906291677368,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4391.849055242246,0.0,6845.980248579586,0.0,4948.898130211698,0.0,6942.896067305062,0.0,3271.4730144084842,0.0,4232.11497271689,0.0,6747.911929871245,0.0,4818.744740423042,0.0,6799.966454854146,0.0,7871.6227763787365,0,0,0,0,0,0,0,0,0.06829047972746208,0.002160663176185788,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.583934536097482,-0.583934536097482,-0.5718801478784573,-0.5718801478784573,-0.6553485389469711,-0.6553485389469711,-0.49640799384050827,-0.49640799384050827,-0.15679952366409303,-0.15679952366409303,-0.6276960266594327,-0.6747291313964582,-0.6504511720949329,-0.6902107758985632,-0.3434473652003146,-0.6394345988728112,-0.6911184623536885,-0.6615346822535926,-0.7042155219451596,-0.38066252591144245,12.14576548082647,12.14576548082647,11.85113673079914,11.85113673079914,14.020571262980994,14.020571262980994,10.149630337420462,10.149630337420462,5.509498674008711,5.509498674008711,13.268367602541858,14.567516036009096,13.884936991576012,15.01610783841133,7.453822638887942,13.583629516691332,15.042730315441503,14.193384320210015,15.430828841803418,8.01750526430601,212.77631196413012,212.77631196413012,0.0,236.418124404589,0.0,212.77631196413012,236.418124404589,0,0
+2017/01/03 18:00:00,234.72399486007615,0,1282.8781644892406,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.5179181427320746,18.56874157441617,0,0,260.06805098483335,561.4355308413335,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5667.015274214937,0.0,6326.5881366949725,0.0,6177.999339625243,0.0,6378.17863319578,0.0,0.0,0.0,5495.2941330734775,0.0,6199.43893710518,0.0,6029.233762500792,0.0,6228.981978360245,0.0,873.4478789947086,0,0,0,0,0,0,0,0,0.06830138371381614,0.0021610081707133244,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5714836405257468,-0.5714836405257468,-0.5649627967555265,-0.5649627967555265,-0.6382677917705596,-0.6382677917705596,-0.48717145104240744,-0.48717145104240744,-0.11329233031494741,-0.11329233031494741,-0.6271245946562983,-0.6751961577379108,-0.6464041305638282,-0.6855767148363883,-0.33317646836682513,-0.6393797765376092,-0.6901838366629302,-0.6572009141807151,-0.6996857140927115,-0.36802832146273895,11.84155254596331,11.84155254596331,11.684912193675402,11.684912193675402,13.552025131331135,13.552025131331135,9.958319353990447,9.958319353990447,5.265846159600514,5.265846159600514,13.253173283676517,14.580896790140244,13.773637355371534,14.880745648270064,7.308628313571603,13.582143265244184,15.015318253683247,14.072144380872587,15.295761515367076,7.819524867956886,234.72399486007615,234.72399486007615,0.0,260.80443873341795,0.0,234.72399486007615,260.80443873341795,0,0
+2017/01/03 19:00:00,218.26416190855537,0,1258.0754993418932,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.43857136644518085,25.14911984558951,0,0,232.53586164667453,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7029.776448452144,0.0,5483.545810435068,0.0,7505.792777762741,0.0,5514.384294930408,0.0,0.0,0.0,6827.064097563113,0.0,5334.073459720683,0.0,7320.696113074828,0.0,5343.803618272922,0.0,0.0,0,0,0,0,0,0,0,0,0.06698087144987193,0.002119228083155108,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5609700076227124,-0.5609700076227124,-0.5556700724222892,-0.5556700724222892,-0.6253744116091655,-0.6253744116091655,-0.4798950435506534,-0.4798950435506534,-0.09704876104627515,-0.09704876104627515,-0.6166280764188101,-0.6588714852025885,-0.6337385008580535,-0.668870916771682,-0.3129991673832356,-0.6279409834841272,-0.6724021429417877,-0.6434240157364388,-0.6816974833768985,-0.3440615405791156,11.589909856364429,11.589909856364429,11.46487386709991,11.46487386709991,13.206724244362931,13.206724244362931,9.810200887713492,9.810200887713492,5.195048930738324,5.195048930738324,12.976592443096493,14.118783291644633,13.429903317099829,14.40047451136465,7.036425436093154,13.274885317967147,14.500986277165467,13.692133775106683,14.768146168268999,7.462646916653796,218.26416190855537,218.26416190855537,0.0,242.5157354539504,0.0,218.26416190855537,242.5157354539504,0,0
+2017/01/03 20:00:00,210.9770018002839,0,1240.6262337440396,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.4473239540421792,27.0977424753112,0,0,250.5769485613654,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6915.691734626425,0.0,5424.375325868725,0.0,7356.94032841004,0.0,5437.008423987939,0.0,0.0,0.0,6855.697246930505,0.0,5368.832155592669,0.0,7309.306161305268,0.0,5357.00056446315,0.0,0.0,0,0,0,0,0,0,0,0,0.06605185962465486,0.002089834796579901,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5697840721992246,-0.5697840721992246,-0.5625894009863783,-0.5625894009863783,-0.6336954247506413,-0.6336954247506413,-0.488651812407467,-0.488651812407467,-0.11910016105290004,-0.11910016105290004,-0.6127591658790243,-0.6504697181120969,-0.6276372660475745,-0.6594406223820002,-0.30529774629758144,-0.6255157764117318,-0.6648941406853806,-0.6384436179866747,-0.6729961238208942,-0.3355295182184312,11.800548669277319,11.800548669277319,11.628357511164438,11.628357511164438,13.428746141729889,13.428746141729889,9.988733307052613,9.988733307052613,5.29381907196813,5.29381907196813,12.875853475536175,13.885448668920247,13.266804510316575,14.134700048690348,6.93707688030976,13.210471066030593,14.287927156944633,13.556783818993296,14.517946208672242,7.34149655718214,210.9770018002839,210.9770018002839,0.0,234.4188908892043,0.0,210.9770018002839,234.4188908892043,0,0
+2017/01/03 21:00:00,211.2860083031263,0,1110.0984360100817,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.21840234569607278,23.163876791272877,0,0,155.53950333995124,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6980.323272827937,0.0,5462.777610376425,0.0,7405.531298482457,0.0,5468.625745011352,0.0,0.0,0.0,6932.974041123034,0.0,5415.518147372551,0.0,7368.430275984433,0.0,5395.063952312328,0.0,0.0,0,0,0,0,0,0,0,0,0.05910246299048897,0.0018699607312039407,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6001627018290956,-0.6001627018290956,-0.5890724359673973,-0.5890724359673973,-0.6656794631829488,-0.6656794631829488,-0.5180739757166113,-0.5180739757166113,-0.15973348543714203,-0.15973348543714203,-0.6115121417025472,-0.6458588443738648,-0.625219017628382,-0.6543675621788931,-0.2995802946038678,-0.6258460519881693,-0.6614316777193178,-0.6374562053403484,-0.6689761493570703,-0.32964275847144775,12.552366564635179,12.552366564635179,12.273260519403053,12.273260519403053,14.310098420056192,14.310098420056192,10.612850816997835,10.612850816997835,5.528765486831631,5.528765486831631,12.843521807386239,13.758695461999281,13.202606584991031,13.993319512515953,6.864944521056827,13.219228277168824,14.190493261971554,13.530077149391289,14.4034620156973,7.259709638554099,211.2860083031263,211.2860083031263,0.0,234.7622314479181,0.0,211.2860083031263,234.7622314479181,0,0
+2017/01/03 22:00:00,197.5289969764566,0,1273.7115867218824,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.4928365704732409,25.140222955363825,0,0,354.6430065642961,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.6213337771585,0.0,60.930843383411066,0.0,818.6679710654414,0.0,0.0,0.0,0.0,0.0,5902.360703014757,0.0,6625.394620091132,0.0,6319.654647585154,0.0,6626.821802462726,0.0,0.0,0.0,5963.265503165168,0.0,6646.600834583348,0.0,6385.701258727708,0.0,6618.804920190848,0.0,3321.3230313470967,0,0,0,0,0,0,0,0,0.06781334832373671,0.002145567071159941,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.674348091881889,-0.674348091881889,-0.6678492563994209,-0.6678492563994209,-0.711117517060896,-0.711117517060896,-0.6041821958511832,-0.6041821958511832,-0.2408813872727814,-0.2408813872727814,-0.6260498370677259,-0.6643580811826993,-0.6393667241412327,-0.6715481432148893,-0.31580389180079055,-0.644614021689377,-0.6837634193687389,-0.6556749759256961,-0.6895982549450219,-0.3506485484887617,14.556605879952912,14.556605879952912,14.371494972594448,14.371494972594448,15.638330806857553,15.638330806857553,12.654842141748944,12.654842141748944,6.204150316022677,6.204150316022677,13.22463397144925,14.272808438442112,13.581789429719194,14.476628793660979,7.07323019026677,13.724633230327328,14.828031509002884,14.02964900226695,14.998162697000907,7.558295197465469,197.5289969764566,197.5289969764566,0.0,219.476663307174,0.0,197.5289969764566,219.476663307174,0,0
+2017/01/03 23:00:00,140.51787829882485,0,1126.4660929618192,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.6670733524765855,20.66587213857202,0,0,390.8568187509263,575.9026879044443,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1969.2993198173756,0.0,1100.4286220008837,0.0,2501.960666113934,0.0,827.7304864933943,0.0,0.0,0.0,5536.0326866763735,0.0,7227.755265465774,0.0,5974.28707352492,0.0,7228.984275296696,0.0,6299.0152557216215,0.0,5642.411815460758,0.0,7271.4721282574765,0.0,6076.1677379620405,0.0,7242.509004876345,0.0,10445.408715038902,0,0,0,0,0,0,0,0,0.05997388917023208,0.0018975320480968578,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7722030900712383,-0.7722030900712383,-0.7691816056064741,-0.7691816056064741,-0.7965574164547063,-0.7965574164547063,-0.7331862802390231,-0.7331862802390231,-0.47579659554366227,-0.47579659554366227,-0.644371976902014,-0.6880750876209784,-0.6584219103642837,-0.694301627276045,-0.3461823051537559,-0.6667372450424901,-0.7110251227118352,-0.6783070684584411,-0.7157397983842257,-0.38605283816146324,17.564072805772994,17.564072805772994,17.465063455518845,17.465063455518845,18.376311324046142,18.376311324046142,16.315578302654373,16.315578302654373,9.727778555778869,9.727778555778869,13.718017932537705,14.95360847677641,14.106220193055748,15.136373991229007,7.493240654474448,14.340003986761033,15.635539492274702,14.670268211103703,15.778443629209463,8.104045565736797,140.51787829882485,140.51787829882485,0.0,156.13097588758316,0.0,140.51787829882485,156.13097588758316,0,0
+2017/01/04 00:00:00,91.50451226723222,0,1008.4393377186527,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.7705476686461689,11.791008337293498,0,0,453.5250986618782,501.67871028795827,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3555.394757364902,0.0,2088.6123293618625,0.0,3952.9115311038063,0.0,1896.8141005653783,0.0,0.0,0.0,5199.357367418148,0.0,7890.826655561533,0.0,5614.0281482970495,0.0,7891.005361174464,0.0,13340.939073058778,0.0,5380.950173743706,0.0,7982.089481558739,0.0,5795.320062513538,0.0,7950.295872027514,0.0,17462.70015996034,0,0,0,0,0,0,0,0,0.05369005729788145,0.0016987159878478226,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8594995935673029,-0.8594995935673029,-0.8533623775705825,-0.8533623775705825,-0.8831654709292726,-0.8831654709292726,-0.829817779213382,-0.829817779213382,-0.6058907814053167,-0.6058907814053167,-0.6662860671507641,-0.7145961895650703,-0.679648729651065,-0.7197712310665635,-0.38049846129350856,-0.6911870734354191,-0.7402887239932467,-0.7023987375931585,-0.7437466190294717,-0.4242561281489726,20.591373289248367,20.591373289248367,20.36810621377633,20.36810621377633,21.46689102698045,21.46689102698045,19.526118311586515,19.526118311586515,12.69861430864917,12.69861430864917,14.327242377000402,15.7436922884269,14.708941200366183,15.901397879856418,8.014890695896398,15.044744128324808,16.537992995003222,15.376550597214248,16.647061460155868,8.753004209232628,91.50451226723222,91.50451226723222,0.0,101.67168029692468,0.0,91.50451226723222,101.67168029692468,0,0
+2017/01/04 01:00:00,39.67708416942752,0,639.6329452901986,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.19802386029873434,0.13650321421753533,9.545236098488074,0,0,74.08080208956376,512.3166144318186,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,306.12704587337686,0.0,244.85011444130154,0.0,441.1440299712039,0.0,96.38558450084878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03405453178763697,0.0010774616477940222,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8741920507075196,-0.8741920507075196,-0.8712203956871264,-0.8712203956871264,-0.8956357277772682,-0.8956357277772682,-0.8502592763599501,-0.8502592763599501,-0.2797290384101871,-0.2797290384101871,-0.9595539104917596,-1.0129994254763413,-0.9779720777049374,-1.0224289409732954,-0.1695428887188878,-0.969791567283418,-1.0249939496635603,-0.9881796056128753,-1.0339125517505878,-0.2939055786697784,21.132204464646733,21.132204464646733,21.022098804127964,21.022098804127964,21.937477240178552,21.937477240178552,20.255813041751992,20.255813041751992,6.625220512460473,6.625220512460473,24.448001268863536,26.670194831155484,25.20140354646246,27.073517365155908,5.595787413044164,24.865148450591448,27.18380171385671,25.624600368855468,27.569157704056835,6.794717810964471,39.67708416942752,39.67708416942752,0.0,44.08564907714169,0.0,39.67708416942752,44.08564907714169,0,0
+2017/01/04 02:00:00,23.72211860766836,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250231839905682,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9401363952813367,-0.9401363952813367,-0.9497416729707757,-0.9497416729707757,-0.9778323740237057,-0.9778323740237057,-0.8998229785127325,-0.8998229785127325,-0.1236541843168567,-0.1236541843168567,-1.0452556254021537,-1.105741188915405,-1.0719444876245234,-1.11920299512119,-0.10367848221372783,-1.1214927453126473,-1.183519320817313,-1.1451415202342727,-1.1946768390085343,-0.2771869025476806,23.66810569114395,23.66810569114395,24.052039485864313,24.052039485864313,25.19563937064288,25.19563937064288,22.09691251531335,22.09691251531335,5.316733582875486,5.316733582875486,28.063489749825763,30.77692280048302,29.24492364074328,31.39798396954224,5.222621190238229,31.504222594936863,34.446000766042076,32.61149113807977,34.98771726785466,6.595722966380123,23.72211860766836,23.72211860766836,0.0,26.357909564075953,0.0,23.72211860766836,26.357909564075953,0,0
+2017/01/04 03:00:00,28.344576177969763,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5252130914968721,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9817912652867722,-0.9817912652867722,-0.9930950133997751,-0.9930950133997751,-1.0192338452579561,-1.0192338452579561,-0.9435651066343701,-0.9435651066343701,-0.04102734017447938,-0.04102734017447938,-1.1234765486089922,-1.186857182187437,-1.1518364311837472,-1.2014121485521378,-0.08119840179681881,-1.2306848335599265,-1.296492303117954,-1.2560591194696233,-1.3086153351195058,-0.2754210951029595,25.359274955123666,25.359274955123666,25.82981541689452,25.82981541689452,26.936484016290237,26.936484016290237,23.804736205056273,23.804736205056273,5.034846596838449,5.034846596838449,31.596406106966498,34.607674298977244,32.92822129178917,35.31649034528286,5.1365224084938035,36.760314993828196,40.08811879426703,38.03062559095416,40.71242257967064,6.575393887231684,28.344576177969763,28.344576177969763,0.0,31.493973531077515,0.0,28.344576177969763,31.493973531077515,0,0
+2017/01/04 04:00:00,23.774645572174702,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5775501484969074,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0449310519488642,-1.0449310519488642,-1.06267151287701,-1.06267151287701,-1.0858549700052929,-1.0858549700052929,-1.0118556998842958,-1.0118556998842958,0.02579907477199479,0.02579907477199479,-1.2133668473680623,-1.2765997706468144,-1.245082058681284,-1.292232135338515,-0.052060385714756345,-1.3432625662450406,-1.4101391643747632,-1.3713808166806682,-1.4232526427317806,-0.28641761878040833,28.04927960213925,28.04927960213925,28.83155137002133,28.83155137002133,29.870701624601978,29.870701624601978,26.621501108529316,26.621501108529316,5.01377850441861,5.01377850441861,35.90324198969353,39.070959778984935,37.47901529528365,39.86951356108268,5.056111050100995,42.513815599020056,46.05293248324605,43.99277478924386,46.754877941623434,6.704133347607623,23.774645572174702,23.774645572174702,0.0,26.41627285797189,0.0,23.774645572174702,26.41627285797189,0,0
+2017/01/04 05:00:00,44.056547619716056,0,398.689675479879,0,0,0,0.0,0.023235264338899345,4.633261998087618,9.319298099999997,25.555573451546493,0,2.380783030076177,1.6193112806423964,0.525084495024434,0,0,309.9637941985186,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.26260015059006037,1185.1706500151186,0.16047861437974378,841.3629874428932,0.5326709010380456,1362.0593207499408,0.1262129442617069,665.5319093759966,0.0,0.0,2.728240640979162,4400.132704220777,2.1385659723771986,2969.38918787663,2.978791324867416,4634.489724459647,2.5747528521788716,3014.5535323657864,0.0,0.0,3.712056830090018,5101.3517652761075,1.7930441653560676,3340.7403783201808,3.8433688235176793,5269.478059014184,2.384481119263372,3383.5713518864145,0.0,0.0,0,0,0,0,0,0,0,0,0.021226533634649315,0.0006715927280858229,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9048651627297865,-0.9048651627297865,-0.911288673495779,-0.911288673495779,-0.926169766787015,-0.926169766787015,-0.8886008172666108,-0.8886008172666108,0.16042817700528778,0.16042817700528778,-0.8273578148055059,-0.8679453995758638,-0.8411584509387064,-0.8745269666147378,-0.020923704718974343,-0.899725763427577,-0.9424916449146786,-0.9086716643554116,-0.9489451246579674,-0.27910625067768263,22.289845927367182,22.289845927367182,22.537126190159626,22.537126190159626,23.116381321209374,23.116381321209374,21.671221801831095,21.671221801831095,5.533379929106573,5.533379929106573,19.439483532382184,20.90117534347175,19.92878901306294,21.144636555781062,5.009062886491989,22.093202833726664,23.76190979680956,22.436180011939697,24.02006191061467,6.6179688210616945,44.056547619716056,44.056547619716056,0.0,48.951719577462285,0.0,44.056547619716056,48.951719577462285,0,0
+2017/01/04 06:00:00,76.81368473120834,0,353.42287613279956,0,0,0,0.0861553389082491,0.01929639488218777,5.555297838843742,9.319298099999997,57.911447091112116,0,2.015078542286766,1.382006630077761,0.5251047950975072,0,0,140.4807610575347,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,273.74796407154236,0.0,0.0,0.0,0.0,0.0,0.0,163.40898794239138,0.0,152.03210767686164,0.0,230.346532833524,0.0,79.73815388355993,0.0,0.0,2.953501861746645,3458.2882707567883,1.607321921168932,2347.3795228277804,2.648535296783507,3683.594189640347,1.8720398246071,2404.2013841819344,0.0,0.0,3.1722631992911374,4337.629501489293,2.2059688072293966,2891.52410043342,2.984778562132078,4534.922904705151,1.8519854092289734,2931.6179017839113,0.0,0.0,0,0,0,0,0,0,0,0,0.018816495707990755,0.0005953408080213594,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7882371044723917,-0.7882371044723917,-0.7966255487742647,-0.7966255487742647,-0.8083441597125991,-0.8083441597125991,-0.7754357749284636,-0.7754357749284636,0.48540959782596277,0.48540959782596277,-0.7576251407180756,-0.7948566092401521,-0.7700304290511466,-0.7992275341211764,0.0901359286996854,-0.7848892948601449,-0.8259311165760577,-0.7936189507096676,-0.8284299675514635,-0.16268915102098494,18.095987712067142,18.095987712067142,18.378618916108238,18.378618916108238,18.778441668952766,18.778441668952766,17.670433771472602,17.670433771472602,9.922245450505898,9.922245450505898,17.08997162538718,18.318769950496673,17.49283875782045,18.466893368321237,5.16824201950098,17.9840238824044,19.38935449998867,18.27697478844935,19.477211306428785,5.548537563052719,76.81368473120834,76.81368473120834,0.0,85.34853859023148,0.0,76.81368473120834,85.34853859023148,0,0
+2017/01/04 07:00:00,102.62966223267912,0,832.9575639410342,0,0,0,0.0,0.01736137023414949,11.110595677687485,13.929299233552332,73.80580873715317,0,1.9925233268687454,1.2490339941869049,0.5250398929963415,0,0,118.65090499611456,483.6193676133828,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.319022954857154,0.0,102.13409506868058,0.0,151.56694018809623,0.0,8.84741546426354,0.0,0.0,2.111060060907372,3133.3725626035316,1.7163755442356885,2120.519476917817,1.8037788888464092,3315.35838599057,1.999493966712483,2169.211220257609,0.0,0.0,3.4544378102583924,3571.8211473092624,1.3576322193036199,2375.4002869554756,3.1518725546247874,3715.8101380909643,1.7667191892607355,2408.3531785653113,0.0,0.0,0,0,0,0,0,0,0,0,0.04434727768144132,0.001403116953238265,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7124598515042904,-0.7124598515042904,-0.7239267856884165,-0.7239267856884165,-0.731780492314796,-0.731780492314796,-0.7005679391097894,-0.7005679391097894,0.7369242153466019,0.7369242153466019,-0.7388189922704717,-0.7723496447156705,-0.748062016879551,-0.7785004067687172,0.15332007380744528,-0.7603871937892003,-0.7995138398789849,-0.7674917103832487,-0.8022216115120145,-0.058521123407787444,15.678925421152314,15.678925421152314,16.02887013675354,16.02887013675354,16.271812590713054,16.271812590713054,15.321997769304502,15.321997769304502,16.432362611551213,16.432362611551213,16.49179028504365,17.56888507169353,16.783896409458066,17.771676516946414,5.487114619098051,17.179101573473204,18.476624026000252,17.409858011881454,18.568824423127893,5.070904342148083,102.62966223267912,102.62966223267912,0.0,114.03295803631013,0.0,102.62966223267912,114.03295803631013,0,0
+2017/01/04 08:00:00,165.1534719179746,0,1242.471887249503,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.38090929596693,0.8893105858195917,27.077366980567607,0,0,376.63883586073314,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4395.286667121125,0.0,2650.5025204414974,0.0,4710.898813991503,0.0,2568.619569231566,0.0,0.0,0.0,8665.438359278307,0.0,9511.715984406595,0.0,9066.724530481808,0.0,9502.885174980256,0.0,12076.049543764078,0.0,8965.21449918093,0.0,9667.66460974616,0.0,9348.03669340617,0.0,9621.642268061161,0.0,15512.819301528663,0,0,0,0,0,0,0,0,0.06615012358437358,0.002092943799769771,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7823511537944079,-0.7823511537944079,-0.7874782469644869,-0.7874782469644869,-0.8061500247017402,-0.8061500247017402,-0.7688239079501958,-0.7688239079501958,0.05463172510101241,0.05463172510101241,-0.7389303357779116,-0.7809753276000825,-0.7481118941078981,-0.7846222603924593,-0.2277349367800136,-0.760624464056611,-0.8080454158056903,-0.7682053774630027,-0.8097897952272436,-0.32464073296726464,17.899455915151506,17.899455915151506,18.070566833289263,18.070566833289263,18.703139159654583,18.703139159654583,17.45336803452912,17.45336803452912,5.061791508438205,5.061791508438205,16.49528725073972,17.853729428488975,16.78548260942533,17.97511371005882,6.0760219139926335,17.186773367049923,18.768176852570647,17.43315720258505,18.828166802032428,7.1913701113728195,165.1534719179746,165.1534719179746,0.0,183.50385768663844,0.0,165.1534719179746,183.50385768663844,0,0
+2017/01/04 09:00:00,166.33144691891007,0,1379.1078724443137,0,0,0,0.0,0.0,12.629686762450465,0.0,83.2008179303116,0,39.380909295966944,0.8063318641848061,26.881725863541966,0,0,460.03929228672746,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2607.528665103905,0.0,2120.226402151474,0.0,3835.888864848295,0.0,1659.098380423834,0.0,0.0,0.0,7170.9887902236005,0.0,8970.607642650111,0.0,8412.434307155898,0.0,8599.441400461044,0.0,5774.925651283964,0.0,7207.700625387953,0.0,9064.476275098777,0.0,8597.363641365593,0.0,8594.512824411853,0.0,12930.229129229981,0,0,0,0,0,0,0,0,0.07342472464333044,0.002323107106459934,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7164964108139721,-0.7164964108139721,-0.7889695739083414,-0.7889695739083414,-0.8074570223509314,-0.8074570223509314,-0.7308630978142922,-0.7308630978142922,-0.24823656257255064,-0.24823656257255064,-0.6848227302782287,-0.7735627720153332,-0.7389017437880617,-0.747794486817557,-0.31711288064948007,-0.695700613030928,-0.7987955071474688,-0.7561130391805614,-0.7649190947453481,-0.38873488015332097,15.801466112384716,15.801466112384716,18.12054780782765,18.12054780782765,18.74797071894234,18.74797071894234,16.243297589060035,16.243297589060035,6.279001231285875,6.279001231285875,14.858809367052558,17.608754451971137,16.494389211295342,16.7753902144252,7.090521317745825,15.177668404770102,18.452216659502,17.0413151202049,17.32604987958956,8.14756750711662,166.33144691891007,166.33144691891007,0.0,184.81271879878898,0.0,166.33144691891007,184.81271879878898,0,0
+2017/01/04 10:00:00,182.37425275358046,0,1316.4801427345428,0,0,0,0.0,0.0,11.86011032607099,0.0,106.27511244621549,0,39.380909295966944,0.651312306458197,20.774833176414596,0,0,362.7758784367553,581.0555629160742,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1317.3482359873205,0.0,2570.1387369215786,0.0,548.1578954789279,0.0,0.0,0.0,5020.958451945815,0.0,7949.223051128867,0.0,7415.749272170413,0.0,7377.964341078232,0.0,1944.2113741565709,0.0,4627.076294684144,0.0,7932.180580471884,0.0,7415.856362559607,0.0,7223.156953104105,0.0,8587.722004519655,0,0,0,0,0,0,0,0,0.07009037792480531,0.0022176107005171886,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.542285577494123,-0.542285577494123,-0.7709924255050881,-0.7709924255050881,-0.7893045774685548,-0.7893045774685548,-0.6975133399523399,-0.6975133399523399,-0.24481610532442458,-0.24481610532442458,-0.6008827005922346,-0.7601709374732467,-0.7261719890616652,-0.7194580333807292,-0.324193153050542,-0.5972005025447942,-0.7800125999884379,-0.7394462824852605,-0.7313061307868791,-0.3902286872826915,11.154527864867731,11.154527864867731,17.524354468002016,17.524354468002016,18.13178824799583,18.13178824799583,15.231301106039965,15.231301106039965,6.2439097842182605,6.2439097842182605,12.570671125281308,17.172111331861643,16.098051306079086,15.891820619738667,7.185306829423752,12.477295137477284,17.821780424745683,16.511498535469656,16.257063687298327,8.171941021577368,182.37425275358046,182.37425275358046,0.0,202.6380586150894,0.0,182.37425275358046,202.6380586150894,0,0
+2017/01/04 11:00:00,213.43048632733374,0,1345.3726820333948,0,0,0,0.0,0.0,17.61111084770849,0.0,133.89528835348938,0,39.380909295966944,0.6014684876202188,18.509734140094416,0,0,322.5027308944483,561.4953684758729,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,643.5551880582361,0.0,1460.4842870769048,0.0,103.2810305312442,0.0,0.0,0.0,2683.75253081307,0.0,7799.293267729194,0.0,5802.795115149211,0.0,7393.4707727659825,0.0,4272.258507291312,0.0,1928.4910889383536,0.0,7674.382032896522,0.0,5620.422844223957,0.0,7158.888496073438,0.0,10438.633002427498,0,0,0,0,0,0,0,0,0.07162863811797267,0.0022662801807731984,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4019672799679951,-0.4019672799679951,-0.7419684582608879,-0.7419684582608879,-0.75348874827677,-0.75348874827677,-0.6989894327180795,-0.6989894327180795,-0.213437244503085,-0.213437244503085,-0.5067854370952551,-0.7577717732937993,-0.720060888727313,-0.7304166215711955,-0.34777109367322717,-0.4839591500036743,-0.7744792567278954,-0.7291365450935846,-0.7419286167193156,-0.4033296948928707,8.366792566064888,8.366792566064888,16.590910883920586,16.590910883920586,16.95710272094294,16.95710272094294,15.275078714106172,15.275078714106172,5.944900762309004,5.944900762309004,10.368968591412397,17.09469517975711,15.910259069783365,16.22943303523276,7.516285481022663,9.892648110793658,17.638916272045492,16.189729959758367,16.589654325321916,8.389789348231503,213.43048632733374,213.43048632733374,0.0,237.1449848081486,0.0,213.43048632733374,237.1449848081486,0,0
+2017/01/04 12:00:00,228.6500548404876,0,1225.477933309997,0,0,0,0.0,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.24707650896909522,20.86231546414205,0,0,148.396101859984,562.4717200181233,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,261.55115155128385,0.0,0.0,0.0,0.0,0.0,3035.6263168817227,0.0,6608.546216332065,0.0,6828.30423592331,0.0,6451.434589054016,0.0,0.0,0.0,2112.3373278965582,0.0,6257.723226246865,0.0,6338.888965978893,0.0,5433.335765530047,0.0,0.0,0,0,0,0,0,0,0,0,0.06524535288909931,0.0020643174856484923,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3436444431177351,-0.3436444431177351,-0.6886996829968645,-0.6886996829968645,-0.7132993548183282,-0.7132993548183282,-0.6432388281360643,-0.6432388281360643,-0.12257436705542409,-0.12257436705542409,-0.4440958714994055,-0.7211547750670781,-0.6947386094087311,-0.7112551379534928,-0.3348567621847456,-0.4051555304766471,-0.7293716256751965,-0.6981218343887942,-0.7906416384955534,-0.375784183108926,7.456652445413823,7.456652445413823,14.971866408438316,14.971866408438316,15.704352989986205,15.704352989986205,13.687081762312687,13.687081762312687,5.3112222967774585,5.3112222967774585,9.11470511709419,15.943755754959923,15.149263485831796,15.642489137427305,7.332075265446306,8.42073297902374,16.197015979577543,15.249336291567346,18.176698358223035,7.940253716763138,228.6500548404876,228.6500548404876,0.0,254.05561648943066,0.0,228.6500548404876,254.05561648943066,0,0
+2017/01/04 13:00:00,208.05656943478644,0,1261.2951552156153,0,0,0,0.0,0.0,16.840460073948062,0.0,129.49988082968767,0,39.380909295966944,0.32191882089145496,18.58142521183803,0,0,220.69082693432267,561.4845693619466,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3209.8319347855313,0.0,5148.4535514974605,0.0,7686.605335970267,0.0,5425.532241330087,0.0,0.0,0.0,2175.296892388554,0.0,4746.581451345775,0.0,7229.158014842909,0.0,5022.987303336727,0.0,0.0,0,0,0,0,0,0,0,0,0.06715228831340947,0.0021246515932300254,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2762517570539542,-0.2762517570539542,-0.5865074296765841,-0.5865074296765841,-0.6741664858541733,-0.6741664858541733,-0.5899787207933963,-0.5899787207933963,-0.08129774249695032,-0.08129774249695032,-0.39231244896058676,-0.6541901380016645,-0.6688904134273967,-0.6826085718602873,-0.314835185842719,-0.3450463209003288,-0.6509808359342605,-0.6686265470800399,-0.7210796974465875,-0.34734249201248846,6.58494061192512,6.58494061192512,12.209467664803611,12.209467664803611,14.551408236456808,14.551408236456808,12.295868491988273,12.295868491988273,5.1368567630068185,5.1368567630068185,8.206099746911235,13.98839508360932,14.401027976196815,14.79453316150014,7.060480768640389,7.476829390742182,13.899556077063437,14.393538818639612,15.941455102351185,7.510058191821614,208.05656943478644,208.05656943478644,0.0,231.1739660386516,0.0,208.05656943478644,231.1739660386516,0,0
+2017/01/04 14:00:00,205.5503368057725,0,1178.4702048548425,0,0,0,0.0,0.0,16.903073467207488,0.0,129.2730206906943,0,39.380909295966944,0.26311998036370404,16.298238169085796,0,0,193.98568184788152,540.8551166001596,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2801.3223969971004,0.0,5041.123430784769,0.0,7211.54265224618,0.0,5639.097491663937,0.0,0.0,0.0,1593.5817451091452,0.0,4469.0725713919655,0.0,6582.494334531537,0.0,5148.85524988511,0.0,0.0,0,0,0,0,0,0,0,0,0.06274262660720901,0.00198513297063361,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.37378978185076567,-0.37378978185076567,-0.5105039871964577,-0.5105039871964577,-0.6806215305407275,-0.6806215305407275,-0.5861481168965486,-0.5861481168965486,-0.09917337387217931,-0.09917337387217931,-0.3981107912724288,-0.6051184334888319,-0.6594728162536874,-0.6726399356629059,-0.3129406412487635,-0.35895858829397176,-0.5941685602022412,-0.6602774717823474,-0.6951699495668872,-0.3439206434315921,7.908963568819345,7.908963568819345,10.448696961714376,10.448696961714376,14.73703060152178,14.73703060152178,12.20055419440429,12.20055419440429,5.203686291476643,5.203686291476643,8.302127843216084,12.678811874647266,14.135600816986283,14.507774137762539,7.03566098009712,7.68159613541475,12.400850582694076,14.158129260425085,15.161994650606076,7.46062113395962,205.5503368057725,205.5503368057725,0.0,228.389263117525,0.0,205.5503368057725,228.389263117525,0,0
+2017/01/04 15:00:00,189.94736485112392,0,1195.1469674593404,0,0,0,0.0,0.0,17.18190680887554,0.0,115.5196477718057,0,39.380909295966944,0.411305372315287,14.021620399706169,0,0,267.9222715076707,519.0856420574124,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,688.1405193509115,0.0,0.0,0.0,0.0,0.0,2431.713801674899,0.0,5974.227895495109,0.0,6334.6163570835815,0.0,6772.815387409568,0.0,0.0,0.0,1397.0145474094147,0.0,5392.262214383484,0.0,5769.420947783299,0.0,6332.726456945054,0.0,2755.5353675810397,0,0,0,0,0,0,0,0,0.06363050980086173,0.0020132249759751424,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.531413210725334,-0.531413210725334,-0.44991528343071024,-0.44991528343071024,-0.712347065108042,-0.712347065108042,-0.6420004459738796,-0.6420004459738796,-0.16248767008826853,-0.16248767008826853,-0.43164750150762965,-0.5874633793677823,-0.6673702173208176,-0.6865660373523653,-0.32813733794701017,-0.40637811298769444,-0.5747176192135639,-0.6731123155099812,-0.7032661947894098,-0.36295466254145087,10.90814447751302,10.90814447751302,9.224007639817529,9.224007639817529,15.675511568348497,15.675511568348497,13.653336286057637,13.653336286057637,5.547178181114063,5.547178181114063,8.885781760522235,12.233209185640348,14.357922527105615,14.909566091519963,7.239030389511157,8.441532654845446,11.91992176985768,14.52126561497225,15.402448977967481,7.741934931969425,189.94736485112392,189.94736485112392,0.0,211.0526276123599,0.0,189.94736485112392,211.0526276123599,0,0
+2017/01/04 16:00:00,184.59167993403867,0,1259.7784677797013,0,0,0,0.0,0.0,18.360999349559563,0.0,108.75639138185811,0,39.380909295966944,0.570073003095574,14.0913317011042,0,0,312.4063403421191,539.2330735433248,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,993.2200598237102,0.0,51.27218942801106,0.0,0.0,0.0,2539.85109600304,0.0,6813.210754984324,0.0,5563.817586036863,0.0,7433.991102389246,0.0,4104.093192209695,0.0,1822.6211879179582,0.0,6344.11416185111,0.0,5160.0694509884015,0.0,7123.619346804322,0.0,9813.127969054982,0,0,0,0,0,0,0,0,0.0670715387509009,0.0021220967333593424,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6151938386012613,-0.6151938386012613,-0.5491211170434285,-0.5491211170434285,-0.7293196865075287,-0.7293196865075287,-0.6876500632332356,-0.6876500632332356,-0.20424270774781111,-0.20424270774781111,-0.49083843067672456,-0.6312834543852768,-0.6826122666821764,-0.7070109370702473,-0.34898107932866923,-0.48277039625143237,-0.6318936786285824,-0.6913751567782749,-0.7247388690155286,-0.38907236799367556,12.93917188556641,12.93917188556641,11.312053201425869,11.312053201425869,16.19540598749714,16.19540598749714,14.94119396928096,14.94119396928096,5.865103028512877,5.865103028512877,10.033830355759989,13.364080597043355,14.794640244220943,15.514622798758069,7.533907897982786,9.868458504962959,13.380417016977475,15.050265630397519,16.053867722801243,8.15306574705366,184.59167993403867,184.59167993403867,0.0,205.1018665933763,0.0,184.59167993403867,205.1018665933763,0,0
+2017/01/04 17:00:00,212.7290641817644,0,1284.0089540132217,0,0,0,0.0,0.0,23.627934855797754,0.0,131.64086955684016,0,39.380909295966944,0.5834549963398137,14.06392027436535,0,0,303.52691291165553,519.1074584384925,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,760.161680564986,0.0,10.589331558835482,0.0,0.0,0.0,3430.8202619759168,0.0,7075.629187829277,0.0,6025.102499754237,0.0,7544.05224638408,0.0,3128.050583015433,0.0,2753.7432013215634,0.0,6677.095377352802,0.0,5601.462315838728,0.0,7219.800145704893,0.0,9094.23155467116,0,0,0,0,0,0,0,0,0.06836158778565622,0.002162912985580645,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5813684589523138,-0.5813684589523138,-0.5938538414876269,-0.5938538414876269,-0.723323572962463,-0.723323572962463,-0.699220332626583,-0.699220332626583,-0.16580029355603973,-0.16580029355603973,-0.5169601010507399,-0.6588222563990686,-0.687869017836327,-0.714808707418552,-0.3557271697009508,-0.5163236530595261,-0.6712487954747132,-0.697719499392528,-0.7317977934979587,-0.39768513378132514,12.082518183217346,12.082518183217346,12.392938415532853,12.392938415532853,16.010320382742364,16.010320382742364,15.281935197667565,15.281935197667565,5.569743110549396,5.569743110549396,10.588541097972694,14.117407195346075,14.947588423704886,15.750145898471544,7.633300476241388,10.5746750592278,14.468098374325919,15.23740968127062,16.272350703886104,8.295029502877327,212.7290641817644,212.7290641817644,0.0,236.3656268686271,0.0,212.7290641817644,236.3656268686271,0,0
+2017/01/04 18:00:00,234.64545641663375,0,1259.9743722439182,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.44952030582456975,18.558600967881265,0,0,237.1233478109215,561.4764417699228,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,469.7440933133669,0.0,0.0,0.0,0.0,0.0,4851.46569106931,0.0,6541.125242152792,0.0,7171.544225452415,0.0,6885.712797890997,0.0,0.0,0.0,4166.755514443501,0.0,6124.773240650915,0.0,6680.963303056876,0.0,6518.373797605254,0.0,1542.635954861104,0,0,0,0,0,0,0,0,0.06708196884968357,0.0021224267344144474,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5737045804063909,-0.5737045804063909,-0.6065999037297729,-0.6065999037297729,-0.7199946707739544,-0.7199946707739544,-0.693858960926913,-0.693858960926913,-0.12418825391198746,-0.12418825391198746,-0.5253531152833074,-0.6634208226731799,-0.6816632046914589,-0.7076217058820505,-0.34372698666447293,-0.5278340019318064,-0.6744599797902823,-0.6904179718968404,-0.7228954299526442,-0.38212087143458445,11.895323927605304,11.895323927605304,12.71681848232096,12.71681848232096,15.908233015572222,15.908233015572222,15.123325241904894,15.123325241904894,5.319477338106836,5.319477338106836,10.773036026705299,14.246404435893808,14.767154087958588,15.532975767897213,7.457838163870306,10.828154604817456,14.559808871185439,15.022181768548904,15.997163803012683,8.040796268271961,234.64545641663375,234.64545641663375,0.0,260.7171737962597,0.0,234.64545641663375,260.7171737962597,0,0
+2017/01/04 19:00:00,218.7298435820882,0,1281.2249787780156,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.4434148318335333,25.609958053733973,0,0,255.685341082797,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,205.50209211826814,0.0,0.0,0.0,0.0,0.0,6159.194360144425,0.0,5661.835629800343,0.0,8280.662944057616,0.0,5935.151500055741,0.0,0.0,0.0,5624.681684617221,0.0,5326.53145879801,0.0,7887.863243294211,0.0,5633.4049819052325,0.0,0.0,0,0,0,0,0,0,0,0,0.06821336688202483,0.0021582233795082403,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5574544537828968,-0.5574544537828968,-0.6077303098790122,-0.6077303098790122,-0.7201616859764477,-0.7201616859764477,-0.6833499310777743,-0.6833499310777743,-0.10639015766996794,-0.10639015766996794,-0.5223365926097517,-0.6503263970609743,-0.6672705684085272,-0.6900689822647443,-0.32266824565095326,-0.5259324099497189,-0.6608758771362079,-0.674929113184267,-0.7034456650971772,-0.35649288893217934,11.506834959154517,11.506834959154517,12.745882732492888,12.745882732492888,15.913343500495444,15.913343500495444,14.816030938160168,14.816030938160168,5.234424562074523,5.234424562074523,10.706375990564538,13.881494884905422,14.355100458134089,15.01195224137824,7.164712954943255,10.785882539915107,14.174901376778678,14.573244551065827,15.407811210484937,7.6447044658024055,218.7298435820882,218.7298435820882,0.0,243.03315953565354,0.0,218.7298435820882,243.03315953565354,0,0
+2017/01/04 20:00:00,210.8616532169461,0,1207.5839676243636,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.33197537070440764,27.0977424753112,0,0,217.53468244168914,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,645.4500225266095,0.0,40.234566727231034,0.0,0.0,0.0,6566.475263721456,0.0,5856.366767918378,0.0,8496.42829056948,0.0,6096.891685952021,0.0,0.0,0.0,5954.341437044318,0.0,5457.8184875033085,0.0,7982.016815291663,0.0,5720.798198215348,0.0,0.0,0,0,0,0,0,0,0,0,0.0642926649018165,0.0020341751018091714,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5687701871907221,-0.5687701871907221,-0.6374194052613201,-0.6374194052613201,-0.729805286533369,-0.729805286533369,-0.7040465990105489,-0.7040465990105489,-0.12957498413115504,-0.12957498413115504,-0.5266831902966533,-0.6450531337557188,-0.6607095995030694,-0.681958216270489,-0.3147482327583213,-0.5338541103593692,-0.6566970579941279,-0.6684950627729268,-0.6954836851939377,-0.34696513317610106,11.776147296618745,11.776147296618745,13.529082630599618,13.529082630599618,16.2104629733156,16.2104629733156,15.425776094793875,15.425776094793875,5.347814359286417,5.347814359286417,10.802553556321342,13.736641035731182,14.170239387709728,14.775693861198079,7.05933829759725,10.963013032460495,14.05810148867485,14.389808105179824,15.171259722459993,7.50458189138277,210.8616532169461,210.8616532169461,0.0,234.29072579660678,0.0,210.8616532169461,234.29072579660678,0,0
+2017/01/04 21:00:00,211.3812502106811,0,1151.6339416070598,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.2384492572811433,23.239071787242654,0,0,197.07500893692944,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1033.944219753725,0.0,304.9977070083166,0.0,0.0,0.0,6834.856206560127,0.0,5977.52174957149,0.0,8637.688363154815,0.0,6197.092905688248,0.0,0.0,0.0,6199.57170180895,0.0,5555.672497500476,0.0,8073.012164760854,0.0,5788.673422058375,0.0,0.0,0,0,0,0,0,0,0,0,0.06131384407409796,0.001939927287229558,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6097348492801387,-0.6097348492801387,-0.6843966629486758,-0.6843966629486758,-0.7448677384631128,-0.7448677384631128,-0.726417475209401,-0.726417475209401,-0.17090049126782794,-0.17090049126782794,-0.531535607291599,-0.6423573644742536,-0.6577236446049912,-0.6769765987650131,-0.30931018346457567,-0.5412430128556657,-0.6547336452989744,-0.6657554575556901,-0.6904263684606082,-0.34046166225502733,12.797558483006597,12.797558483006597,14.846424316435503,14.846424316435503,16.682533753569743,16.682533753569743,16.105628591551636,16.105628591551636,5.605379204618629,5.605379204618629,10.9108896637659,13.663055367366596,14.086724940734868,14.631994722800982,6.988524205546312,11.130679875887623,14.00348450425362,14.312245314329886,15.022427952098596,7.411153365442431,211.3812502106811,211.3812502106811,0.0,234.86805578964564,0.0,211.3812502106811,234.86805578964564,0,0
+2017/01/04 22:00:00,197.6243409816057,0,1287.5914937118318,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.47099627989702686,25.25740725108912,0,0,368.52291355424563,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,312.03005014887856,0.0,1516.014357964808,0.0,599.4491764270239,0.0,0.0,0.0,5272.070280718002,0.0,6649.675842677414,0.0,7013.120719317654,0.0,6855.774921362453,0.0,0.0,0.0,4826.643726549157,0.0,6365.58683203345,0.0,6656.968176002458,0.0,6577.453874268531,0.0,2368.8897095719103,0,0,0,0,0,0,0,0,0.06855232485282127,0.002168947773431044,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6759654604888159,-0.6759654604888159,-0.7282796629918264,-0.7282796629918264,-0.7664829224785122,-0.7664829224785122,-0.7516932786290115,-0.7516932786290115,-0.25039628256324165,-0.25039628256324165,-0.5445054679426254,-0.6552315208703056,-0.6660116673040879,-0.6867172885258397,-0.32371604021302525,-0.559304011233728,-0.6710769550174787,-0.6774886737645774,-0.7027048649980615,-0.3580421977501326,14.602958634963954,14.602958634963954,16.16319211803348,16.16319211803348,17.37696104559558,17.37696104559558,16.89965667455948,16.89965667455948,6.3014116592208325,6.3014116592208325,11.205463326121304,14.017318284307478,14.319485262319901,14.913975993427712,7.178852823367606,11.550474433958925,14.46320324294949,14.646716466481394,15.385686480452136,7.667854925779565,197.6243409816057,197.6243409816057,0.0,219.582601090673,0.0,197.6243409816057,219.582601090673,0,0
+2017/01/04 23:00:00,140.4949797018407,0,1130.0726653778227,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.6346076353454003,20.675439258719067,0,0,389.30101825009876,581.0650608212754,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1576.348980439568,0.0,1342.8916453378622,0.0,3049.0680875750054,0.0,1575.371427861277,0.0,0.0,0.0,4958.94129250946,0.0,7189.530023477042,0.0,6622.35597462553,0.0,7393.776110091777,0.0,4009.5455522161174,0.0,4601.751846392797,0.0,6969.642532765795,0.0,6357.654375322959,0.0,7171.102684833724,0.0,9411.639411894113,0,0,0,0,0,0,0,0,0.06016590575707235,0.0019036073190578815,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7807401520989063,-0.7807401520989063,-0.8080488250713523,-0.8080488250713523,-0.8417242089594859,-0.8417242089594859,-0.823298716925055,-0.823298716925055,-0.48560049787444726,-0.48560049787444726,-0.5674460858900074,-0.678885905710149,-0.6832813140836564,-0.7075654096084573,-0.35203328500577125,-0.5882033180539921,-0.6988617221054165,-0.6982205115077534,-0.72681398979033,-0.39241511067541124,17.845921273237664,17.845921273237664,18.768293973410877,18.768293973410877,19.949018011367983,19.949018011367983,19.2970857075575,19.2970857075575,9.926147652604683,9.926147652604683,11.744347029673435,14.686943473111029,14.814040199002292,15.531283450126807,7.578637321046955,12.251613185987082,15.271287385480676,15.252262492358426,16.117873063072707,8.207787458620672,140.4949797018407,140.4949797018407,0.0,156.1055330020452,0.0,140.4949797018407,156.1055330020452,0,0
+2017/01/05 00:00:00,91.46069080851295,0,985.1504581867478,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.7278521255668621,11.789882421653523,0,0,434.5240826568113,497.3908467611203,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3102.5754318068325,0.0,2175.076174447294,0.0,4266.606580155437,0.0,2350.254123683145,0.0,0.0,0.0,4473.4616927895795,0.0,7693.352125930032,0.0,6086.580821305148,0.0,7887.349720394469,0.0,11065.711359706522,0.0,4264.161956960334,0.0,7593.255794598731,0.0,5996.3024907307,0.0,7776.27533217385,0.0,16086.199431587685,0,0,0,0,0,0,0,0,0.0524501401013745,0.0016594858720439247,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8641931968309126,-0.8641931968309126,-0.8831398427387475,-0.8831398427387475,-0.9218989071720083,-0.9218989071720083,-0.8965513396968041,-0.8965513396968041,-0.5973436699693824,-0.5973436699693824,-0.5921112985768578,-0.7035407546438724,-0.7019343464540858,-0.7294464809821645,-0.38413668615441104,-0.6188865206498287,-0.7269831085998528,-0.7196426392108141,-0.7514015808008603,-0.4292395822487661,20.76317605382188,20.76317605382188,21.465930452643377,21.465930452643377,22.949225203853544,22.949225203853544,21.9722794676195,21.9722794676195,12.480914691184239,12.480914691184239,12.349207909789158,15.410652869152472,15.36269930712838,16.199336522123943,8.073140025873457,13.0356982489713,16.123097552300678,15.897465163321328,16.89033683663112,8.842268744614799,91.46069080851295,91.46069080851295,0.0,101.6229897872366,0.0,91.46069080851295,101.6229897872366,0,0
+2017/01/05 01:00:00,39.71005016071933,0,646.4261426157715,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.21575986915538012,0.14791432498787796,9.54905497015289,0,0,80.01403277177366,513.1765810751817,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.289471111722738,0.0,318.65457372628947,0.0,724.0994773915522,0.0,431.30024977870374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034416206645017024,0.0010889047881733553,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.88004200539939,-0.88004200539939,-0.9000529658021185,-0.9000529658021185,-0.9335045707367904,-0.9335045707367904,-0.9126297292303849,-0.9126297292303849,-0.2745886796636343,-0.2745886796636343,-0.8559147770426223,-1.0116500678414273,-1.018477940687942,-1.0472674651655431,-0.17237131219665186,-0.8470418639830255,-1.0066392241364799,-1.0162078405866637,-1.0483575380306456,-0.3056828795351041,21.35001828416776,21.35001828416776,22.105690250243157,22.105690250243157,23.405159111427253,23.405159111427253,22.58896207608541,22.58896207608541,6.565856189900117,6.565856189900117,20.460770709515586,26.612751600480408,26.904119907167583,28.151655402107423,5.615857677880982,20.13980608712241,26.400034799667026,26.807053583474257,28.199487393219826,6.941985490696055,39.71005016071933,39.71005016071933,0.0,44.12227795635481,0.0,39.71005016071933,44.12227795635481,0,0
+2017/01/05 02:00:00,23.722092592106744,0,37.780271749402274,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249971684289512,0,0,0.0,2.289919236858142,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.00201144965203733,6.364086489439412e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9479731431030486,-0.9479731431030486,-1.0344521022912936,-1.0344521022912936,-1.0905709524311473,-1.0905709524311473,-1.069049174769123,-1.069049174769123,-0.12420651388241422,-0.12420651388241422,-0.9134132769104085,-1.126783231581476,-1.1658339370877242,-1.1905576147091663,-0.10591665445843561,-0.9542244644229957,-1.171119326393248,-1.2092368098497426,-1.2387610393120194,-0.32774938189516145,23.981075441647803,23.981075441647803,27.592564689231452,27.592564689231452,30.08438338481183,30.08438338481183,29.11552884024516,29.11552884024516,5.319571357393002,5.319571357393002,22.619282168722137,31.750349209914106,33.59497606400868,34.78729493188288,5.232341496297735,24.232468083260343,33.84831546047978,35.700075978280026,37.16279701754953,7.233716801057284,23.722092592106744,23.722092592106744,0.0,26.35788065789638,0.0,23.722092592106744,26.35788065789638,0,0
+2017/01/05 03:00:00,28.344550721179072,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251876347061791,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0003088028887168,-1.0003088028887168,-1.0927942072435126,-1.0927942072435126,-1.1474336311667304,-1.1474336311667304,-1.1304483811854027,-1.1304483811854027,-0.04352811534567697,-0.04352811534567697,-0.9968672139350054,-1.2197907270865038,-1.2639975797224254,-1.2885321226711142,-0.0834312598916292,-1.0496098005109051,-1.2800179783497627,-1.3252443761626969,-1.3545925591820436,-0.3293292940878998,26.132654311906478,26.132654311906478,30.18538542056558,30.18538542056558,32.71976883573086,32.71976883573086,31.92139948670487,31.92139948670487,5.039224506724921,5.039224506724921,25.987927620779672,36.22019697795054,38.4314521100325,39.679989013180084,5.144136408907698,28.254489294639583,39.24508176765048,41.57394089560091,43.10802626066894,7.255395801186808,28.344550721179072,28.344550721179072,0.0,31.493945245754524,0.0,28.344550721179072,31.493945245754524,0,0
+2017/01/05 04:00:00,23.77489844421927,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5778030205414795,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0776966308609575,-1.0776966308609575,-1.1777276530388097,-1.1777276530388097,-1.2268046535860793,-1.2268046535860793,-1.2170380902692708,-1.2170380902692708,0.020784914662693763,0.020784914662693763,-1.0822702641686834,-1.3062090693044568,-1.3557651282622722,-1.3784085547086786,-0.05430066463482648,-1.1546522198867195,-1.386671203472004,-1.4358774942455312,-1.4653070558680885,-0.3415031819804698,29.502869238255755,29.502869238255755,34.16626304590913,34.16626304590913,36.56756834048949,36.56756834048949,36.08424079745588,36.08424079745588,5.008943051964778,5.008943051964778,29.708793617888517,40.5882482382859,43.16965834550674,44.36457777170618,5.061044783513054,33.061856584266295,44.80274505427299,47.43271973425837,49.01965070438037,7.425994912454243,23.77489844421927,23.77489844421927,0.0,26.416553826910302,0.0,23.77489844421927,26.416553826910302,0,0
+2017/01/05 05:00:00,44.10027245742898,0,399.9415816825713,0,0,0,0.0,0.02071155535753193,4.633261998087618,9.319298099999997,25.555573451546493,0,2.413345427062803,1.632986675184506,0.5250952501900089,0,0,311.215700401211,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16896572496962864,991.0150562639573,0.24250164123128568,1032.153245181095,1.3960527315375846,1886.5542010985114,0.35882502914853376,1185.8623720931282,0.0,0.0,1.8479928692631802,3730.4630127887817,1.827917290612466,3235.2760150687072,3.1400336359845373,5527.227831349757,1.7619300342861384,3535.9744746870433,0.0,0.0,2.6346810257671978,3739.330007655606,1.9728041727441146,3169.5018895732605,3.3209229426029956,5454.496168847021,2.038928259384268,3484.6581582219073,0.0,0.0,0,0,0,0,0,0,0,0,0.021293186048175927,0.00067370156398924,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9438494552539941,-0.9438494552539941,-0.9846859650223342,-0.9846859650223342,-1.006597056066289,-1.006597056066289,-1.0007947539564996,-1.0007947539564996,0.15596786996786036,0.15596786996786036,-0.7623017184006599,-0.8652044893135612,-0.8793445078293708,-0.8954504511125576,-0.02316322943797276,-0.8150902857533959,-0.924283742270685,-0.9307501977488453,-0.95411115840444,-0.32499661262373913,23.816088110135027,23.816088110135027,25.479305617946196,25.479305617946196,26.398248721739392,26.398248721739392,26.153125880584426,26.153125880584426,5.5041025956298455,5.5041025956298455,17.241073593247464,20.800312320059916,21.323974235589745,21.93043906375661,5.011106814512132,19.011240351149297,23.04247453754708,23.29646508639165,24.227897871340673,7.196197208944525,44.10027245742898,44.10027245742898,0.0,49.00030273047664,0.0,44.10027245742898,49.00030273047664,0,0
+2017/01/05 06:00:00,76.76342919482963,0,348.8227853437777,0,0,0,0.0969088787724469,0.0179670436868463,5.555297838843742,9.319298099999997,57.911447091112116,0,1.981703606848554,1.35572978098629,0.5250768545796289,0,0,135.8806702685129,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,307.8880409391231,0.0,0.0,0.0,0.0,0.0,0.0,31.01360468651852,0.0,229.98587583952894,0.0,450.1527282744812,0.0,306.50020403844576,0.0,0.0,1.9160339234781532,2564.936212764504,1.841212458841028,2402.620882127977,2.876393555425807,4203.126027266223,2.009322917604891,2682.8173051322105,0.0,0.0,2.1926237401547723,3000.4232269997265,1.825447706521345,2659.054897855338,3.485942338275663,4636.061816266382,1.8200670465446365,2946.4126524197654,0.0,0.0,0,0,0,0,0,0,0,0,0.018571583467065313,0.000587591955436393,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8296499171767756,-0.8296499171767756,-0.8731868409621897,-0.8731868409621897,-0.8896697423507594,-0.8896697423507594,-0.8872166147886976,-0.8872166147886976,0.4805211236922807,0.4805211236922807,-0.7120248818456878,-0.7893487764606741,-0.7996221025677069,-0.8127975698283233,0.08727016116981766,-0.735247908888172,-0.8132094507433044,-0.8122428121679098,-0.8330203794842461,-0.21486189566087285,19.520198498302065,19.520198498302065,21.09491876523171,21.09491876523171,21.711548049687863,21.711548049687863,21.61907080183981,21.61907080183981,9.822855541137045,9.822855541137045,15.6657626479832,18.133271621135634,18.480304447846493,18.931906931124075,5.157710397292135,16.37991554952768,18.946142667840903,18.91274428306528,19.639287143212186,5.9575817403407285,76.76342919482963,76.76342919482963,0.0,85.29269910536625,0.0,76.76342919482963,85.29269910536625,0,0
+2017/01/05 07:00:00,102.23017276996204,0,811.0110341461109,0,0,0,0.0,0.01167394700472816,11.110595677687485,13.929299233552332,73.80580873715317,0,1.7564868511656038,1.0912962086889384,0.5250121147097632,0,0,98.66730746859433,481.65643534597956,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.639322741666057,0.0,42.04185165467338,0.0,0.0,1.1445426401575483,1907.4895148882356,1.2293604278992611,1846.0872202846977,1.9425857011180292,3233.4119820547185,1.0960071182043976,2068.595010138414,0.0,0.0,1.5586561850283638,2192.143332010582,1.127078447256887,1967.5165722320348,1.638290788806898,3422.610228489567,1.9374256962567715,2177.1027165689447,0.0,0.0,0,0,0,0,0,0,0,0,0.04317882817921868,0.0013661480254644302,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6912098298051317,-0.6912098298051317,-0.7811134793867459,-0.7811134793867459,-0.8008848104559366,-0.8008848104559366,-0.8018631646688467,-0.8018631646688467,0.7315426193676233,0.7315426193676233,-0.6910606684265501,-0.7629818634431724,-0.7698034320393291,-0.7829788190495452,0.14856747339575366,-0.7098071940602375,-0.7820378637777614,-0.7791278497506563,-0.7998579933018989,-0.08716398932313438,15.045412098448509,15.045412098448509,17.858317357758537,17.858317357758537,18.523267199466886,18.523267199466886,18.55660139500533,18.55660139500533,16.264415408734124,16.264415408734124,15.041034156129015,17.26312718446576,17.48540792416989,17.92034351890301,5.457354924045347,15.598779196988104,17.88903643761408,17.792453943688358,18.488325340322987,5.157326763779494,102.23017276996204,102.23017276996204,0.0,113.58908085551337,0.0,102.23017276996204,113.58908085551337,0,0
+2017/01/05 08:00:00,164.84949374883107,0,1083.411330286547,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.5877809140334976,27.074918483210187,0,0,217.57827889777704,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2602.738434246413,0.0,1678.6306853984033,0.0,3260.1762263158,0.0,1786.958417957281,0.0,0.0,0.0,5821.98431276701,0.0,7418.656403293474,0.0,7294.373304474482,0.0,7571.1679618701455,0.0,3728.249870201393,0.0,6002.671627457013,0.0,7452.177524908049,0.0,7370.496836088746,0.0,7565.560601214469,0.0,6761.620885936166,0,0,0,0,0,0,0,0,0.057681621714450834,0.0018250063036381625,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.769750902559637,-0.769750902559637,-0.8120742488498904,-0.8120742488498904,-0.8351265816644634,-0.8351265816644634,-0.8274628589622182,-0.8274628589622182,0.14872816763873462,0.14872816763873462,-0.6787562583206754,-0.7541621156904526,-0.7507080029682641,-0.7722268860325492,-0.21166355106744486,-0.698432341267701,-0.7718157028795061,-0.759371771919585,-0.7891958759085155,-0.32175306196518844,17.48368866477165,17.48368866477165,18.906924275396236,18.906924275396236,19.713947117125656,19.713947117125656,19.443177780421095,19.443177780421095,5.458345789912585,5.458345789912585,14.683207304795943,16.978682691168657,16.868191437134428,17.564854107311675,5.929231699037828,15.25854557542965,17.551356974898155,17.146296550035416,18.128140441176072,7.1524007332042885,164.84949374883107,164.84949374883107,0.0,183.16610416536784,0.0,164.84949374883107,183.16610416536784,0,0
+2017/01/05 09:00:00,167.31064549045126,0,1210.929065790463,0,0,0,0.0,0.0,13.828349561914775,0.0,83.2008179303116,0,39.380909295966944,0.5323589728590048,26.936234526944688,0,0,291.86048563287693,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1770.9914935424356,0.0,1343.607544714678,0.0,2714.7162970810336,0.0,1380.0593727893515,0.0,0.0,0.0,5595.314070457668,0.0,7296.5652737770615,0.0,7071.5942118801295,0.0,7391.592360978445,0.0,142.98930098060197,0.0,5614.875580241498,0.0,7251.731650616635,0.0,7006.040464993894,0.0,7286.304372327707,0.0,5887.9620879476115,0,0,0,0,0,0,0,0,0.06447076040591615,0.0020398099194160776,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.78581469452856,-0.78581469452856,-0.8204113480566735,-0.8204113480566735,-0.8435730559737882,-0.8435730559737882,-0.8237085293066523,-0.8237085293066523,-0.3099890932187203,-0.3099890932187203,-0.6596497569281273,-0.7439885378562439,-0.7337547323294746,-0.7570588187306942,-0.31657308237750575,-0.6793732596311819,-0.7626930871489498,-0.7439895116341384,-0.7718357516678968,-0.39217387267321624,18.014925251903307,18.014925251903307,19.196214671788667,19.196214671788667,20.0152177036326,20.0152177036326,19.311431004127158,19.311431004127158,6.997296553853602,6.997296553853602,14.14055232948023,16.654711227596138,16.33329975562816,17.071737023350806,7.083382042148585,14.700994504828842,17.253761246495785,16.65474202470864,17.552014911444886,8.20382233050708,167.31064549045126,167.31064549045126,0.0,185.90071721161252,0.0,167.31064549045126,185.90071721161252,0,0
+2017/01/05 10:00:00,182.01252228985635,0,1209.145471523719,0,0,0,0.0,0.0,11.740274384584774,0.0,106.27511244621549,0,39.380909295966944,0.3913933012427725,20.792857659392162,0,0,255.42078668466172,581.0759834573441,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,741.9230192892863,0.0,1727.590755397075,0.0,589.001490127251,0.0,0.0,0.0,4318.300388554037,0.0,6751.349533687324,0.0,6390.61755109279,0.0,6649.013642507936,0.0,0.0,0.0,4090.290150031166,0.0,6660.609766941033,0.0,6246.584953485062,0.0,6463.297672326138,0.0,3912.3588895180637,0,0,0,0,0,0,0,0,0.06437580052603453,0.00203680545500912,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7001491863333013,-0.7001491863333013,-0.8034457392427141,-0.8034457392427141,-0.8211032366290967,-0.8211032366290967,-0.7870553911097812,-0.7870553911097812,-0.323108779022413,-0.323108779022413,-0.6001471436520439,-0.7285400259614254,-0.7148142742765485,-0.7261997506025435,-0.3309228665908212,-0.6096381056259121,-0.7443552811197814,-0.7228477437188493,-0.7356775380853663,-0.39559478843299994,15.309540403280522,15.309540403280522,18.610608105145943,18.610608105145943,19.220354070342452,19.220354070342452,18.056412243624735,18.056412243624735,7.170652232089566,7.170652232089566,12.551971276747437,16.17125228186569,15.750314975509554,16.09890807624663,7.2773695195713515,12.795060487980152,16.66631288168766,15.995698921698832,16.393345975668666,8.260282997611029,182.01252228985635,182.01252228985635,0.0,202.23613587761815,0.0,182.01252228985635,202.23613587761815,0,0
+2017/01/05 11:00:00,213.15219021291543,0,1316.1441670239305,0,0,0,0.0,0.0,17.457894644239428,0.0,133.89528835348938,0,39.380909295966944,0.49502640508875073,18.491096311676603,0,0,293.23539693023884,561.5341874306179,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.04969431873636,0.0,619.0057850745393,0.0,0.0,0.0,0.0,0.0,2191.032002071763,0.0,6682.194044644542,0.0,4987.600389693575,0.0,6589.711397911348,0.0,387.3107859839823,0.0,1578.8537885978308,0.0,6536.83364774739,0.0,4779.469827124551,0.0,6350.8604777473465,0.0,6456.015429363537,0,0,0,0,0,0,0,0,0.07007249032911286,0.0022170447494581627,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49436161190415034,-0.49436161190415034,-0.7614640738033793,-0.7614640738033793,-0.7690354294935448,-0.7690354294935448,-0.7434355779182308,-0.7434355779182308,-0.2498915399929996,-0.2498915399929996,-0.5075326675430031,-0.7205800116234682,-0.7046811809685269,-0.7203275800093709,-0.34393237812064414,-0.5013209148206867,-0.7344081964309643,-0.7115261789717765,-0.7287712787302583,-0.3996602827013135,10.106927143714557,10.106927143714557,17.21394026402048,17.21394026402048,17.46028336526504,17.46028336526504,16.637229650014447,16.637229650014447,6.296156619678882,6.296156619678882,10.384941746307106,15.926149084917384,15.444763800530836,15.918420867737922,7.460789820071184,10.252890024614743,16.35368860372789,15.650681256309184,16.178413713412283,8.32803289554002,213.15219021291543,213.15219021291543,0.0,236.83576690323935,0.0,213.15219021291543,236.83576690323935,0,0
+2017/01/05 12:00:00,228.5555708402707,0,1198.1946463635975,0,0,0,0.0,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.20015972106801502,20.814748251826206,0,0,121.067480526164,562.5170544055434,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2064.5156574060647,0.0,5631.002258522025,0.0,5954.754294680529,0.0,5708.002665374852,0.0,0.0,0.0,1252.0742252124567,0.0,5233.69310251553,0.0,5383.458470748695,0.0,5264.351604317131,0.0,0.0,0,0,0,0,0,0,0,0,0.06379277048316045,0.0020183587908580484,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2994157744040167,-0.2994157744040167,-0.6605839202760392,-0.6605839202760392,-0.6823007363457247,-0.6823007363457247,-0.647337184209466,-0.647337184209466,-0.12978308917889034,-0.12978308917889034,-0.4075282187324502,-0.6767040975309175,-0.6701397692219663,-0.6900824525522607,-0.32148455284338995,-0.3752055537040003,-0.6824643281104531,-0.6704708749422587,-0.6944178706504642,-0.36447541922407,6.862889365096436,6.862889365096436,14.16671646638872,14.16671646638872,14.785613597022305,14.785613597022305,13.799234728400762,13.799234728400762,5.348933306395679,5.348933306395679,8.461157706732095,14.624165157451486,14.436528608063071,15.012346982588525,7.148795141110412,7.9311581311432064,14.79035317429961,14.445948355038595,15.139801972249074,7.765076297162167,228.5555708402707,228.5555708402707,0.0,253.95063426696743,0.0,228.5555708402707,253.95063426696743,0,0
+2017/01/05 13:00:00,208.02429128847626,0,1207.2695447121657,0,0,0,0.0,0.0,16.903073467207488,0.0,129.49988082968767,0,39.380909295966944,0.23586101589308378,18.57259147726674,0,0,166.62385095168682,561.525934841133,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1666.2982612268697,0.0,4085.709704388267,0.0,6427.668124595512,0.0,4569.999640554237,0.0,0.0,0.0,558.3429786611741,0.0,3579.2725126827613,0.0,5780.772609203968,0.0,4089.6836645633616,0.0,0.0,0,0,0,0,0,0,0,0,0.06427592479307594,0.0020336454564374384,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.24640512480614182,-0.24640512480614182,-0.526680369733363,-0.526680369733363,-0.6453791722912661,-0.6453791722912661,-0.5749455871993716,-0.5749455871993716,-0.0889193236707761,-0.0889193236707761,-0.34858451725745565,-0.6109824336204294,-0.6453372594324756,-0.6631723230934279,-0.3027752163017367,-0.3080956504962046,-0.6051517274177631,-0.641360504807997,-0.6632701597930437,-0.33684437675830553,6.260150844731413,6.260150844731413,10.802490880278228,10.802490880278228,13.745562180423576,13.745562180423576,11.925463253123453,11.925463253123453,5.163729406902149,5.163729406902149,7.528125448678267,12.829808458050934,13.744415092537281,14.239410205153703,6.905081792451043,6.972879611042828,12.679664972594509,13.63592417907148,14.242163582520718,7.359965348537955,208.02429128847626,208.02429128847626,0.0,231.13810143164028,0.0,208.02429128847626,231.13810143164028,0,0
+2017/01/05 14:00:00,205.41892390185419,0,1084.736968112842,0,0,0,0.0,0.0,16.903073467207488,0.0,129.2730206906943,0,39.380909295966944,0.128413951243715,16.301531294287404,0,0,100.1771220008279,540.9304397052124,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1064.920119542831,0.0,4053.7415232665753,0.0,6238.901942078458,0.0,4960.166295879293,0.0,0.0,0.0,0.0,0.0,3520.030213754529,0.0,5606.805016224148,0.0,4493.318454847459,0.0,0.0,0,0,0,0,0,0,0,0,0.057752199654231576,0.0018272393404559428,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2614765382564855,-0.2614765382564855,-0.4935445507494926,-0.4935445507494926,-0.6425486287026987,-0.6425486287026987,-0.557329695198903,-0.557329695198903,-0.10711805792065522,-0.10711805792065522,-0.3329547243940412,-0.5480211057074412,-0.6425233454766747,-0.6587777151383799,-0.30592706720629964,-0.29037026366475216,-0.526561341865083,-0.6386871081338386,-0.6587251112142917,-0.3368765942408575,6.419470985217785,6.419470985217785,10.089927519837076,10.089927519837076,13.668265867844994,13.668265867844994,11.50389667682515,11.50389667682515,5.237644944720685,5.237644944720685,7.305543032193299,11.286566669930153,13.667577000584473,14.1161622207553,6.945100968483558,6.7516548232853495,10.799846263032777,13.563376026317385,14.114691997042172,7.360418803763807,205.41892390185419,205.41892390185419,0.0,228.24324877983798,0.0,205.41892390185419,228.24324877983798,0,0
+2017/01/05 15:00:00,189.65981155027285,0,1198.8245716009235,0,0,0,0.0,0.0,16.903073467207488,0.0,115.5196477718057,0,39.380909295966944,0.3619796194993761,14.062226193339042,0,0,251.375608666842,539.309909039824,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,757.96944640222,0.0,4799.832601102455,0.0,5136.005474260584,0.0,5700.876541842705,0.0,0.0,0.0,0.0,0.0,4321.873590798801,0.0,4640.123431033095,0.0,5323.4272538959185,0.0,0.0,0,0,0,0,0,0,0,0,0.06382630816938552,0.002019419899872514,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4912399118624621,-0.4912399118624621,-0.4878729758122757,-0.4878729758122757,-0.6710422381102028,-0.6710422381102028,-0.5896645681100251,-0.5896645681100251,-0.17841798965267638,-0.17841798965267638,-0.3949255891570069,-0.5620817311931636,-0.6547295659063845,-0.6772685900894087,-0.3307739941249346,-0.36464723793737885,-0.5433126413433436,-0.6539291755040997,-0.6800179552043143,-0.3628308114407842,10.042132978442837,10.042132978442837,9.972720353706535,9.972720353706535,14.462214435358703,14.462214435358703,12.288027675060704,12.288027675060704,5.659883926662374,5.659883926662374,8.249198801315544,11.616292171253846,14.00337120018473,14.640387847814495,7.275312159185873,7.76769705848055,11.178067335822533,13.981154517952106,14.719597682732854,7.740054627354951,189.65981155027285,189.65981155027285,0.0,210.7331239447476,0.0,189.65981155027285,210.7331239447476,0,0
+2017/01/05 16:00:00,183.8366671192382,0,1179.0029775338742,0,0,0,0.0,0.0,17.707416768394438,0.0,108.75639138185811,0,39.380909295966944,0.46841508976099533,14.091559380803442,0,0,251.6715526014007,519.1923710382162,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.76293187683456,0.0,0.0,0.0,0.0,0.0,1015.7433571677628,0.0,5614.900234641247,0.0,4681.598660319616,0.0,6547.726399360283,0.0,1029.6132851018087,0.0,404.8655121048539,0.0,5197.171864686329,0.0,4328.090605150825,0.0,6262.392066020113,0.0,6177.811952759126,0,0,0,0,0,0,0,0,0.06277099181926894,0.0019860304261710027,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5354806218988797,-0.5354806218988797,-0.5085564700397082,-0.5085564700397082,-0.7136473319444371,-0.7136473319444371,-0.6343236148360036,-0.6343236148360036,-0.22307459940737792,-0.22307459940737792,-0.44200031090752284,-0.5846715237453133,-0.6729931370962677,-0.7035748606231834,-0.355732258216266,-0.42853542034515807,-0.5714451922390776,-0.6761770630695887,-0.7106245773330168,-0.39306245892535413,10.99971836260606,10.99971836260606,10.406866234702335,10.406866234702335,15.714901712530903,15.714901712530903,13.445629503741515,13.445629503741515,6.032341772797196,6.032341772797196,9.075702026740984,12.163983175243288,14.517860890543986,15.411672188260539,7.633376178017443,8.829591012332472,11.840623555230522,14.609031404568853,15.623442919922624,8.218439945267079,183.8366671192382,183.8366671192382,0.0,204.2629634658202,0.0,183.8366671192382,204.2629634658202,0,0
+2017/01/05 17:00:00,210.4466721994528,0,1223.4621335128763,0,0,0,0.0,0.0,21.510824128582414,0.0,131.64086955684016,0,39.380909295966944,0.4888292649086154,13.993264750700357,0,0,234.20536138713368,527.882189462669,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1845.3652733702284,0.0,5733.814281966424,0.0,4847.602229580851,0.0,6573.878997457568,0.0,746.3876399500825,0.0,1476.357898307523,0.0,5422.941360960416,0.0,4623.744727804864,0.0,6374.452501310512,0.0,5660.126692160004,0,0,0,0,0,0,0,0,0.06513803021478423,0.0020609218710432387,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5609361396438128,-0.5609361396438128,-0.46399738529779305,-0.46399738529779305,-0.6930769270893224,-0.6930769270893224,-0.6197668922324885,-0.6197668922324885,-0.17780302003695517,-0.17780302003695517,-0.4798140214669748,-0.6031176862226098,-0.677079544442125,-0.7112368083165649,-0.3593134029561091,-0.4806819388584741,-0.5993703506325833,-0.6824081140883159,-0.7207921164750886,-0.3990844208766145,11.589106976566669,11.589106976566669,9.494532606669694,9.494532606669694,15.100293435362033,15.100293435362033,13.058798436649738,13.058798436649738,5.655336593458486,5.655336593458486,9.808564463472123,12.627634583611894,14.63495341685028,15.641935244960493,7.68692615721956,9.826108749451464,12.532248589015765,14.788724412263178,15.932644815497923,8.318393402056117,210.4466721994528,210.4466721994528,0.0,233.82963577716976,0.0,210.4466721994528,233.82963577716976,0,0
+2017/01/05 18:00:00,234.56283699882013,0,1168.300630892018,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.31523058635639206,18.610271269535854,0,0,153.65525614184253,553.2707920871018,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3236.304447456036,0.0,5479.928418620013,0.0,5894.694123020203,0.0,6039.864137902341,0.0,0.0,0.0,3014.391366207526,0.0,5259.155763973711,0.0,5759.50484526727,0.0,5900.708312196357,0.0,0.0,0,0,0,0,0,0,0,0,0.06220119095675701,0.0019680023240650902,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5783273897683331,-0.5783273897683331,-0.589522239043362,-0.589522239043362,-0.6680675793903338,-0.6680675793903338,-0.5988811255080481,-0.5988811255080481,-0.13273510216038117,-0.13273510216038117,-0.49241361461600947,-0.6292957172405155,-0.6723390709449496,-0.7059344110725287,-0.34869559509672393,-0.49852011774334254,-0.6326811220641559,-0.678877497313255,-0.716489012050698,-0.38586292942145206,12.007933488098473,12.007933488098473,12.284476747999165,12.284476747999165,14.377683937419278,14.377683937419278,12.519840658580662,12.519840658580662,5.364999778248645,5.364999778248645,10.066445043876627,13.31097855743765,14.499186279856772,15.482313483668179,7.529744450191714,10.193895123977086,13.40152167602055,14.686701138535753,15.801240860677353,8.100975534374811,234.56283699882013,234.56283699882013,0.0,260.62537444313347,0.0,234.56283699882013,260.62537444313347,0,0
+2017/01/05 19:00:00,219.21131714611937,0,1240.624495291118,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.3579109770445986,26.17693547255409,0,0,215.084857595899,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4885.300552439725,0.0,4888.3938667676575,0.0,7323.927251663116,0.0,5350.210312881633,0.0,0.0,0.0,4779.080497261493,0.0,4737.955506891267,0.0,7253.563590399048,0.0,5255.5140317507285,0.0,0.0,0,0,0,0,0,0,0,0,0.06605176706813362,0.002089831868156086,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5931934342295503,-0.5931934342295503,-0.6089345711037181,-0.6089345711037181,-0.6507884273777407,-0.6507884273777407,-0.5837958036184722,-0.5837958036184722,-0.10880388963519662,-0.10880388963519662,-0.4867182049041195,-0.61275124365976,-0.6527653619174628,-0.6824404690011578,-0.32161652568584514,-0.4961270097159182,-0.6184295295799886,-0.6598390372591982,-0.6930922142915725,-0.35551789827509034,12.376349460350141,12.376349460350141,12.7769069071512,12.7769069071512,13.894244062372508,13.894244062372508,12.142338770464747,12.142338770464747,5.245187907262363,5.245187907262363,9.949026349524573,12.875647862683437,13.948899725738173,14.789661856575364,7.150566915924372,10.14375614385915,13.023720460120998,14.145850656919762,15.100743408060879,7.630188102569591,219.21131714611937,219.21131714611937,0.0,243.56813016235486,0.0,219.21131714611937,243.56813016235486,0,0
+2017/01/05 20:00:00,210.7300178311945,0,1142.2558835842776,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.20033998495276162,27.0977424753112,0,0,152.20659840160332,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5310.596922211524,0.0,5124.3858660226515,0.0,7571.947632450573,0.0,5532.355359815566,0.0,0.0,0.0,5229.805098424857,0.0,4988.886100289244,0.0,7502.010141968098,0.0,5437.995404209599,0.0,0.0,0,0,0,0,0,0,0,0,0.06081454931857495,0.001924129949201964,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5609225066345406,-0.5609225066345406,-0.5713740677998357,-0.5713740677998357,-0.6720475985662621,-0.6720475985662621,-0.6011378972938942,-0.6011378972938942,-0.12558466090923703,-0.12558466090923703,-0.4894515837253718,-0.6061500793512269,-0.6448155350847389,-0.6706948213563013,-0.3088504203006246,-0.5033846960245727,-0.6157298370700628,-0.6540112982792881,-0.6829587737821816,-0.3420292115319756,11.58878380428061,11.58878380428061,11.838905209596192,11.838905209596192,14.49087025290659,14.49087025290659,12.577164402979946,12.577164402979946,5.326707338551984,5.326707338551984,10.005203932422916,12.705268322770308,13.730142707289204,14.452322178725879,6.982594579263818,10.296577632883668,12.953146121740787,13.983432746793852,14.804685280108984,7.433508295218843,210.7300178311945,210.7300178311945,0.0,234.14446425688277,0.0,210.7300178311945,234.14446425688277,0,0
+2017/01/05 21:00:00,211.57135654487774,0,1184.5644559359116,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.29131387860404523,23.37631350011642,0,0,230.00552326578102,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5005.494469026278,0.0,4834.226294735801,0.0,7117.922668335566,0.0,5214.999541475377,0.0,0.0,0.0,4960.395972400448,0.0,4725.949034569649,0.0,7066.678208891422,0.0,5130.829203590749,0.0,0.0,0,0,0,0,0,0,0,0,0.06306708904881754,0.0019953987361171254,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5664964665068966,-0.5664964665068966,-0.6059004527197849,-0.6059004527197849,-0.6974756443564387,-0.6974756443564387,-0.6247573096541175,-0.6247573096541175,-0.17084700587730736,-0.17084700587730736,-0.49529877950367224,-0.6044839275490606,-0.6426418111804804,-0.6656090670924718,-0.3062602175731705,-0.512040392357955,-0.6163581630942457,-0.6525415465189821,-0.6779770507652453,-0.33851988143637785,11.721587332771662,11.721587332771662,12.698862438182871,12.698862438182871,15.23018437101861,15.23018437101861,13.190378340374451,13.190378340374451,5.604999862627494,5.604999862627494,10.126461183632017,12.662562979077265,13.670804958775506,14.308109904336206,6.949355548912337,10.481813150560711,12.969543341925942,13.94270347058469,14.660767482368769,7.383606235490433,211.57135654487774,211.57135654487774,0.0,235.07928504986415,0.0,211.57135654487774,235.07928504986415,0,0
+2017/01/05 22:00:00,197.57459410307672,0,1197.8745386239536,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.36298936299817425,25.315667289459018,0,0,278.80595846636777,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,596.326511879583,0.0,0.0,0.0,0.0,0.0,3743.2599875054766,0.0,5785.765162765466,0.0,5737.02444088842,0.0,6155.323286433921,0.0,0.0,0.0,3987.6715678321234,0.0,5883.789816912373,0.0,5994.494343236715,0.0,6275.828093118544,0.0,1869.0959309044715,0,0,0,0,0,0,0,0,0.06377572770999587,0.0020178195693949137,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6280047267646974,-0.6280047267646974,-0.6561862059562905,-0.6561862059562905,-0.731571097188019,-0.731571097188019,-0.6849337713414928,-0.6849337713414928,-0.25238421791607724,-0.25238421791607724,-0.5117258847392985,-0.6225386810444777,-0.6520255251709629,-0.6786585933672815,-0.32117120761256823,-0.5363193639951689,-0.6402929948285819,-0.666536071067552,-0.6947953812230027,-0.3577597986463131,13.276581801137283,13.276581801137283,14.04387484784678,14.04387484784678,16.265300860996817,16.265300860996817,14.862038430837643,14.862038430837643,6.3222128643186295,6.3222128643186295,10.475025838570247,13.131747416739131,13.928425864487778,14.680393284061182,7.144591345001629,11.018690955529195,13.606917911240188,14.334312672628243,15.150938667719856,7.663627578013617,197.57459410307672,197.57459410307672,0.0,219.52732678119634,0.0,197.57459410307672,219.52732678119634,0,0
+2017/01/05 23:00:00,140.55506795513983,0,1171.7422938009906,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.6848658993670091,20.68526924799657,0,0,430.94772050208775,581.0879869924544,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1464.2217617114839,0.0,1140.3031648908063,0.0,3035.258535575691,0.0,1461.1183492520954,0.0,0.0,0.0,4601.235144466485,0.0,7225.767986685892,0.0,6503.891036571589,0.0,7610.036600531537,0.0,7029.891174325611,0.0,4637.179387771607,0.0,7200.311990330289,0.0,6535.083479197474,0.0,7578.620192275128,0.0,11715.974373415696,0,0,0,0,0,0,0,0,0.062384427639293374,0.0019737998049740367,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7600584651581981,-0.7600584651581981,-0.7728995355618273,-0.7728995355618273,-0.8171614060668282,-0.8171614060668282,-0.7886282536898306,-0.7886282536898306,-0.480055291501107,-0.480055291501107,-0.5414088134660484,-0.6547814074475381,-0.6747220258745854,-0.7053813494621877,-0.3490588020899428,-0.5735560354576323,-0.6782454788459703,-0.6939081633464944,-0.7262988067413954,-0.39177680628207445,17.168476581247234,17.168476581247234,17.58694944050255,17.58694944050255,19.08309637905178,19.08309637905178,18.10910032283543,18.10910032283543,9.813438291461722,9.813438291461722,11.134469307839879,14.004811139171636,14.567312528871113,15.465734120899612,7.535041992198117,11.89172081443067,14.66849477821377,15.124775193854873,16.10196539376173,8.197301333068566,140.55506795513983,140.55506795513983,0.0,156.17229772793314,0.0,140.55506795513983,156.17229772793314,0,0
+2017/01/06 00:00:00,91.58516249978912,0,1059.8809749717634,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.8348923476850046,11.807313890811535,0,0,498.15520349165666,508.4902427112905,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3511.4317289623973,0.0,2333.356041770018,0.0,4738.953082288994,0.0,2597.02375890495,0.0,0.0,0.0,4577.387001213523,0.0,8255.938223645931,0.0,6409.273683202,0.0,8625.823185725898,0.0,15598.528883880153,0.0,4666.24917518538,0.0,8289.131040027169,0.0,6520.132371784282,0.0,8644.469465908991,0.0,20326.303028340964,0,0,0,0,0,0,0,0,0.05642884816840072,0.0017853694218963336,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8547731482322551,-0.8547731482322551,-0.867165616599552,-0.867165616599552,-0.9049690983087915,-0.9049690983087915,-0.8754035236148354,-0.8754035236148354,-0.6241487503317721,-0.6241487503317721,-0.5705849595987952,-0.6853340664504408,-0.6971457480380734,-0.7315803308601482,-0.381107289221781,-0.6088997888181781,-0.7129128426533068,-0.719310699107219,-0.7554460672104221,-0.42868960926561517,20.419290611884392,20.419290611884392,20.872448458033844,20.872448458033844,22.293833750979516,22.293833750979516,21.177196232364466,21.177196232364466,13.174274897499131,13.174274897499131,11.819855310319682,14.873683400565994,15.220413784739264,16.2655879682563,8.0245988858793,12.77600996328799,15.69264221768195,15.887316751403063,17.019884337458194,8.832365210127946,91.58516249978912,91.58516249978912,0.0,101.76129166643236,0.0,91.58516249978912,101.76129166643236,0,0
+2017/01/06 01:00:00,39.559400446170045,0,605.8776599007365,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.1263321933268499,0.08731953775895494,9.548427718661063,0,0,50.64846037685033,501.99367075507007,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.85329562487904,0.0,430.2354152808389,0.0,216.27225900796827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03225737539073708,0.001020600872117456,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8285603613705366,-0.8285603613705366,-0.8764015416015595,-0.8764015416015595,-0.9082034057598987,-0.9082034057598987,-0.88332822116583,-0.88332822116583,-0.29424825783577035,-0.29424825783577035,-0.717901575293323,-0.9210632734286913,-0.9599211291395592,-0.9965128365853375,-0.1691012750283453,-0.8054019225013457,-0.9664301622296994,-0.993355575354724,-1.0313870170325226,-0.28687294580454364,19.481802996885534,19.481802996885534,21.214306049800868,21.214306049800868,22.41814702283544,22.41814702283544,21.472991723024364,21.472991723024364,6.798919987130233,6.798919987130233,15.844288402513925,22.916605110503568,24.462893309879107,25.973050797900314,5.59268387553044,18.67751083964683,24.727732810702264,25.84071946630229,27.45973632630009,6.709573995426609,39.559400446170045,39.559400446170045,0.0,43.95488938463338,0.0,39.559400446170045,43.95488938463338,0,0
+2017/01/06 02:00:00,23.72212637594466,0,40.05292819221037,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250309522668685,0,0,0.0,4.5625756796662325,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002132447564424212,6.746915449981267e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8962619620649731,-0.8962619620649731,-0.9651306814712627,-0.9651306814712627,-1.0411089116106067,-1.0411089116106067,-1.0096453087590846,-1.0096453087590846,-0.12824258252215726,-0.12824258252215726,-0.8020492878877644,-1.0383856546069623,-1.1188143749011854,-1.1552831148461276,-0.10104573715802297,-0.9172523271865518,-1.1263012238141767,-1.2012776531528162,-1.2398626275364086,-0.27984954936989254,21.961276592113165,21.961276592113165,24.674727419623565,24.674727419623565,27.882230788076328,27.882230788076328,26.527533635452215,26.527533635452215,5.340692927755967,5.340692927755967,18.562947513786526,27.76353428013475,31.37997020624894,33.09183254848628,5.2114534842620515,22.768195392679644,31.727886913105053,35.309912342701494,37.2178298940403,6.6266256215925665,23.72212637594466,23.72212637594466,0.0,26.35791819549407,0.0,23.72212637594466,26.35791819549407,0,0
+2017/01/06 03:00:00,28.34446922180087,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251061353279771,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8679347265088155,-0.8679347265088155,-0.9396710781961419,-0.9396710781961419,-1.0203948834484662,-1.0203948834484662,-0.9912455920265486,-0.9912455920265486,-0.04547624652596735,-0.04547624652596735,-0.7939615071010518,-1.036898261548342,-1.124681616531919,-1.1645665664662277,-0.07915002990925527,-0.953528441812389,-1.1757034488274185,-1.2610310156299498,-1.303587487544981,-0.2599063842050294,20.9007819826287,20.9007819826287,23.649599223550695,23.649599223550695,26.986235425534048,26.986235425534048,25.75249492510612,25.75249492510612,5.042814449348029,5.042814449348029,18.288536262686748,27.69881892537383,31.652466600521635,33.534355910246916,5.129719356490597,24.204401899230078,34.068731656004346,38.281480209800385,40.453106972914135,6.402427004015465,28.34446922180087,28.34446922180087,0.0,31.493854690889854,0.0,28.34446922180087,31.493854690889854,0,0
+2017/01/06 04:00:00,23.722288768200816,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525193344523025,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9239198404323328,-0.9239198404323328,-1.0044036280929813,-1.0044036280929813,-1.0788455430180004,-1.0788455430180004,-1.0520230280043557,-1.0520230280043557,0.023150406811723218,0.023150406811723218,-0.8894235524341592,-1.1401360607932096,-1.2286050222004465,-1.2679616628133883,-0.05017243388139648,-1.054119089533065,-1.2877966296024583,-1.3757520182968481,-1.4180961818511324,-0.2727542479939799,23.028230883072396,23.028230883072396,26.305436026311384,26.305436026311384,29.554529414953322,29.554529414953322,28.360642960204302,28.360642960204302,5.011094520670454,5.011094520670454,21.70225615546714,32.375619520383154,36.65695027862236,38.63219357391532,5.052114697086282,28.453015478254116,39.64235275286461,44.223937025530965,46.478590575918936,6.544940637495401,23.722288768200816,23.722288768200816,0.0,26.35809863133424,0.0,23.722288768200816,26.35809863133424,0,0
+2017/01/06 05:00:00,43.907812962483376,0,404.7576110001352,0,0,0,0.0,0.018939990063295456,4.633261998087618,9.319298099999997,25.555573451546493,0,2.257577849333951,1.545609231499555,0.5775523419524449,0,0,316.03172971877484,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11936740288634114,720.1186086236469,0.12098079673871161,751.4232248200493,0.3176914141344945,1629.4374289651228,0.10945680543595286,1001.1721207712513,0.0,0.0,1.8227264330321302,2823.3056008208114,1.4104865725396596,2573.4993242510404,2.8266934894758045,4749.094171218039,2.0826381990609244,2990.791626431202,0.0,0.0,2.1223783428445953,3628.705776808216,2.316385433055281,3007.006516051987,3.497394268644876,5489.248375787097,2.1937909054466793,3489.753151455808,0.0,0.0,0,0,0,0,0,0,0,0,0.02154959501630805,0.000681814165009146,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8591178336595494,-0.8591178336595494,-0.8868328870979201,-0.8868328870979201,-0.9171900861516584,-0.9171900861516584,-0.9002782786327009,-0.9002782786327009,0.15791092312884394,0.15791092312884394,-0.6929794328413342,-0.8148539219033692,-0.8361758376544319,-0.8688088858653693,-0.0188936050817836,-0.7780655398871529,-0.8952841072620701,-0.9106003794128614,-0.9473612581216301,-0.2810249767330357,20.577439611975265,20.577439611975265,21.60462740749466,21.60462740749466,22.76577638664591,22.76577638664591,22.114291663029903,22.114291663029903,5.51675483607174,5.51675483607174,15.097423968595976,19.003051361383342,19.75121005842682,20.93301510710255,5.007389541049278,17.757285971977225,21.924121286610614,22.510549727475507,23.956551679063324,6.640362755712545,43.907812962483376,43.907812962483376,0.0,48.78645884720375,0.0,43.907812962483376,48.78645884720375,0,0
+2017/01/06 06:00:00,76.3823087419789,0,330.4907602302549,0,0,0,0.09827970014270397,0.01579122690129759,5.555297838843742,9.319298099999997,57.911447091112116,0,1.7479500318730943,1.2092480772179257,0.5249966758880573,0,0,117.54864515499013,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,312.1547888505631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.820040669187847,0.0,184.44396071607247,0.0,128.54766183056833,0.0,0.0,1.4297976313483218,1686.7785708716292,1.1547172097670568,1812.4292496768128,2.8404177683834178,3601.8108828528043,1.6931876860448938,2318.9004167979538,0.0,0.0,2.093375815031095,2696.0189294161096,1.6631717576301526,2402.7760943354924,2.9948903542833705,4532.131485644741,1.921668678809283,2897.2243701969096,0.0,0.0,0,0,0,0,0,0,0,0,0.017595572871368145,0.000556711660524041,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6927441062178453,-0.6927441062178453,-0.7623219960747863,-0.7623219960747863,-0.790854924540307,-0.790854924540307,-0.7777884973250129,-0.7777884973250129,0.4829102246693515,0.4829102246693515,-0.6539661502902414,-0.7500142770759499,-0.7611501239546389,-0.7913149536183142,0.09133314181464197,-0.7020962402125923,-0.789174278214997,-0.7884228142213547,-0.8229240784035694,-0.1567931324354963,15.090499488566522,15.090499488566522,17.241730807678252,17.241730807678252,18.183869369554387,18.183869369554387,17.748122321666187,17.748122321666187,9.871300668491997,9.871300668491997,13.98218022675411,16.846061918953538,17.203778395419477,18.199342838928814,5.172742654833243,15.367527019063402,18.127415725524912,18.102212505012247,19.283977828266316,5.50945709546194,76.3823087419789,76.3823087419789,0.0,84.86923193553211,0.0,76.3823087419789,84.86923193553211,0,0
+2017/01/06 07:00:00,101.82582747696524,0,791.3044581624124,0,0,0,0.0,0.011286465458542201,11.110595677687485,13.929299233552332,73.80580873715317,0,1.5151760916101487,0.9287288608438954,0.5249324106596782,0,0,78.82584144596757,481.7913253849081,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,886.382277243832,1.2270392475817666,1167.0984332645094,2.0703235008127194,2417.392949731108,1.2544112390069888,1564.8407981267715,0.0,0.0,1.445787795369218,1808.221570663809,1.7913098228621793,1673.7181972585522,2.105601368234905,3164.788674099794,1.3919924846744227,2031.1550088467864,0.0,0.0,0,0,0,0,0,0,0,0,0.04212963547705436,0.0013329522997155938,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49488102939882944,-0.49488102939882944,-0.5819618074707597,-0.5819618074707597,-0.6269572931243464,-0.6269572931243464,-0.6248361771932555,-0.6248361771932555,0.7340117891094153,0.7340117891094153,-0.6296667183167095,-0.7220922345624375,-0.7271344096067494,-0.7601692769033054,0.15290113841802785,-0.6751892349494715,-0.7580986063780315,-0.7524465676953668,-0.7879774743971587,-0.018801610238729127,10.117749039789558,10.117749039789558,12.097117324286174,12.097117324286174,13.24872743415969,13.24872743415969,13.192466476527116,13.192466476527116,16.341318040572517,16.341318040572517,13.320876772926411,15.972503369166319,16.12777264903721,17.172057663543995,5.484453534155833,14.580698376664671,17.105226939263744,16.923741351195275,18.087287642947715,5.007317754280592,101.82582747696524,101.82582747696524,0.0,113.13980830773916,0.0,101.82582747696524,113.13980830773916,0,0
+2017/01/06 08:00:00,165.11218632229995,0,1218.0934272608395,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.38090929596693,0.8577650047778034,27.067626965934796,0,0,352.26037587206935,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3765.7443935954275,0.0,2435.9172385998445,0.0,4581.728686212415,0.0,2603.3713468985725,0.0,0.0,0.0,7290.734598181369,0.0,9110.49057576457,0.0,8994.423913139637,0.0,9422.660516474136,0.0,12095.611175298478,0.0,7828.622751877221,0.0,9336.4392357395,0.0,9326.454960227122,0.0,9577.999783408482,0.0,14299.235592000447,0,0,0,0,0,0,0,0,0.06485219631728929,0.002051878285769161,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6917798214678836,-0.6917798214678836,-0.7225964300614746,-0.7225964300614746,-0.7670234950942992,-0.7670234950942992,-0.7463456360560234,-0.7463456360560234,0.05449104808361415,0.05449104808361415,-0.6463171631844883,-0.743216824853991,-0.7367265594903569,-0.7749540703550152,-0.22514394693612938,-0.6897050261155712,-0.7753494597935161,-0.7604014982903312,-0.8022879406720945,-0.3088290172366825,15.06215042366388,15.06215042366388,15.987980392812858,15.987980392812858,17.394583927918703,17.394583927918703,16.729376874724693,16.729376874724693,5.0614736489038705,5.0614736489038705,13.771253417317595,16.630317491065426,16.426172223029525,17.654556620969487,6.051624835589138,15.001289625149937,17.667588067700862,17.17956402082895,18.57108684152486,6.982318759046194,165.11218632229995,165.11218632229995,0.0,183.4579848025555,0.0,165.11218632229995,183.4579848025555,0,0
+2017/01/06 09:00:00,166.41002337059072,0,1319.7416459932726,0,0,0,0.0,0.0,12.629686762450465,0.0,83.2008179303116,0,39.380909295966944,0.7225991613293181,27.044035018078176,0,0,400.6730658356862,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1491.2241286787757,0.0,1644.2510305927003,0.0,3356.5112550408985,0.0,1522.2295398764309,0.0,0.0,0.0,5548.384338255182,0.0,8088.731868914857,0.0,7837.943315921091,0.0,8048.833852220972,0.0,3502.878043669557,0.0,5813.553755807652,0.0,8259.765743990692,0.0,8073.258427107137,0.0,8080.771535096634,0.0,10310.965613330694,0,0,0,0,0,0,0,0,0.07026402277411731,0.0022231047025089755,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6609756974027645,-0.6609756974027645,-0.7422961657174243,-0.7422961657174243,-0.7804771734343015,-0.7804771734343015,-0.718252056151778,-0.718252056151778,-0.25288989096640496,-0.25288989096640496,-0.5980435134973526,-0.7369119100129485,-0.7273884574581583,-0.7400364274248481,-0.31429426330529014,-0.6305532433994578,-0.765325590358151,-0.7461068130183961,-0.7575255010230963,-0.38077964823923766,14.177700650830559,14.177700650830559,16.601249001812192,16.601249001812192,17.837192800445067,17.837192800445067,15.854982533575907,15.854982533575907,6.327530595605467,6.327530595605467,12.498620912954593,16.431977171543167,16.135624766830546,16.53005517068334,7.053378821701628,13.344553222967093,17.339273497886595,16.721800848766634,17.086762402784274,8.019372453368092,166.41002337059072,166.41002337059072,0.0,184.90002596732302,0.0,166.41002337059072,184.90002596732302,0,0
+2017/01/06 10:00:00,182.23015934748753,0,1226.0019240759784,0,0,0,0.0,0.0,11.86011032607099,0.0,106.27511244621549,0,39.380909295966944,0.4890007168940958,20.793051359885784,0,0,272.24213456929994,581.1110881249651,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,869.0441085169821,0.0,2092.951296656137,0.0,264.64004066375344,0.0,0.0,0.0,3391.1668397882577,0.0,7062.579599177034,0.0,6797.5322114102,0.0,6678.871410670083,0.0,0.0,0.0,3095.368637032398,0.0,7117.223189534616,0.0,6833.44932187178,0.0,6532.127616057424,0.0,5864.942441787351,0,0,0,0,0,0,0,0,0.06527325054560361,0.0020652001480540175,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4516129931048356,-0.4516129931048356,-0.7286236148678529,-0.7286236148678529,-0.7649012399363144,-0.7649012399363144,-0.6711721092262997,-0.6711721092262997,-0.2506149613756192,-0.2506149613756192,-0.48547047796449166,-0.7245974450221716,-0.7143373240968777,-0.7010975795413362,-0.32011181859011373,-0.49865403834589495,-0.7484880579967493,-0.7279126054176192,-0.7105012773240899,-0.3810104547239366,9.25616914272753,9.25616914272753,16.17384059623963,16.17384059623963,17.325469210525384,17.325469210525384,14.465913694368083,14.465913694368083,6.303691720805446,6.303691720805446,9.923489735132193,16.049512362500707,15.735833851801686,15.337764744474839,7.130409546592375,10.19670825943831,16.797448839704543,16.151833916835642,15.619720620580026,8.023053733432022,182.23015934748753,182.23015934748753,0.0,202.4779548305417,0.0,182.23015934748753,202.4779548305417,0,0
+2017/01/06 11:00:00,213.40493792809062,0,1290.6506489758729,0,0,0,0.0,0.0,17.61111084770849,0.0,133.89528835348938,0,39.380909295966944,0.5012367070773701,18.584417521394112,0,0,267.68919524610783,561.5868710666912,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,358.09043441813265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6343.311886230849,0.0,4228.807805630427,0.0,6140.725139062076,0.0,2719.1587743373166,0.0,0.0,0.0,6546.209510353687,0.0,4472.150757045109,0.0,6175.6025679587565,0.0,6825.843425707061,0,0,0,0,0,0,0,0,0.06871519654501551,0.002174100920241135,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2661675154163191,-0.2661675154163191,-0.6668070754460124,-0.6668070754460124,-0.7159223174551804,-0.7159223174551804,-0.6087103317659678,-0.6087103317659678,-0.2184328736775245,-0.2184328736775245,-0.3574432479477238,-0.715697917958334,-0.6981206695982647,-0.7076666662296218,-0.343158476455035,-0.3397058434982349,-0.7335340619546542,-0.7058622682448914,-0.7145060233828414,-0.39086904632680947,6.471009599622036,6.471009599622036,14.34197993418421,14.34197993418421,15.783995130053412,15.783995130053412,12.771125285024794,12.771125285024794,5.9897410145231476,5.9897410145231476,7.658893036687175,15.777169996436072,15.24930175303146,15.534327415477549,7.449677520227411,7.400411882849198,16.326418723974214,15.480150079122524,15.74095476584995,8.182418558892508,213.40493792809062,213.40493792809062,0.0,237.11659769787846,0.0,213.40493792809062,237.11659769787846,0,0
+2017/01/06 12:00:00,228.477503206858,0,1198.2156090390456,0,0,0,0.0,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.24121147886025363,20.69562886062127,0,0,121.04868632470098,562.5568112824548,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.51553897433959,0.0,5107.43767964552,0.0,5121.339772385791,0.0,5121.1614040247205,0.0,0.0,0.0,0.0,0.0,5038.495756331571,0.0,4989.877999522347,0.0,4954.8720136901675,0.0,0.0,0,0,0,0,0,0,0,0,0.06379388655152851,0.00201839410248325,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2007541666932183,-0.2007541666932183,-0.5893469464771497,-0.5893469464771497,-0.6143248557205928,-0.6143248557205928,-0.514275081358993,-0.514275081358993,-0.11810763157819042,-0.11810763157819042,-0.3248787021957712,-0.6797066991373427,-0.6702906916692546,-0.6875940303146071,-0.32815372224203215,-0.26824928449164703,-0.6886254548577413,-0.6716163764170687,-0.6901683299661093,-0.3650571954685944,5.835752368636406,5.835752368636406,12.280104632164026,12.280104632164026,12.916542768611762,12.916542768611762,10.53016262223339,10.53016262223339,5.288939348461923,5.288939348461923,7.194597294933857,14.710613908827028,14.440821666950413,14.939557890295362,7.239254935336419,6.494178331732911,14.969695717121596,14.478573756864819,15.014863769078943,7.7739552465652935,228.477503206858,228.477503206858,0.0,253.86389245206442,0.0,228.477503206858,253.86389245206442,0,0
+2017/01/06 13:00:00,207.91464863041685,0,1144.396565278455,0,0,0,0.0,0.0,16.840460073948062,0.0,129.49988082968767,0,39.380909295966944,0.17178629283755537,18.589636935522282,0,0,103.71144243082946,561.5653639282793,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3611.9611347309346,0.0,5786.128661447485,0.0,4065.422606369514,0.0,0.0,0.0,0.0,0.0,3384.7402818882574,0.0,5509.7152339585,0.0,3819.655793539459,0.0,0.0,0,0,0,0,0,0,0,0,0.06092852079759016,0.0019277359273533311,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.11451365258862116,-0.11451365258862116,-0.443495430059986,-0.443495430059986,-0.5586529122052495,-0.5586529122052495,-0.4327845230852743,-0.4327845230852743,-0.07923069093695104,-0.07923069093695104,-0.27158422890874906,-0.6035802371767696,-0.6402820015435821,-0.6546176175733018,-0.30755348078940864,-0.18187495090434397,-0.599936630558557,-0.6368141910692344,-0.6527159543145877,-0.3357476177011935,5.271612186193451,5.271612186193451,9.103510258106581,9.103510258106581,11.535095127576668,11.535095127576668,8.906415166493986,8.906415166493986,5.129983956737263,5.129983956737263,6.531674561229892,12.639450775384304,13.606619459966709,14.000262145801884,6.965915988740704,5.685739893656418,12.546623785971008,13.512735198860966,13.947531705870631,7.344554952119054,207.91464863041685,207.91464863041685,0.0,231.01627625601873,0.0,207.91464863041685,231.01627625601873,0,0
+2017/01/06 14:00:00,205.44625858212473,0,1098.0690197097283,0,0,0,0.0,0.0,16.903073467207488,0.0,129.2730206906943,0,39.380909295966944,0.17190441754764682,16.285375508254056,0,0,113.43099647376668,541.0086168291599,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3344.274350766117,0.0,5207.685315920604,0.0,4188.6031010115275,0.0,0.0,0.0,0.0,0.0,3056.5794464555775,0.0,4921.341928767879,0.0,3942.773508385443,0.0,0.0,0,0,0,0,0,0,0,0,0.0584620079563893,0.0018496971803590122,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.11281437084347719,-0.11281437084347719,-0.24041046087164195,-0.24041046087164195,-0.5806825705126439,-0.5806825705126439,-0.4045739598045446,-0.4045739598045446,-0.10487645600305223,-0.10487645600305223,-0.2042489294051197,-0.5266655484037474,-0.63346058270081,-0.646449737431932,-0.3093125023141699,-0.14055160026235355,-0.5059878595304522,-0.63032414886928,-0.6450339983188013,-0.3350851964938455,5.263606518747466,5.263606518747466,6.199435277186595,6.199435277186595,12.065661164796737,12.065661164796737,8.410861233025983,8.410861233025983,5.227798078990759,5.227798078990759,5.865155828911,10.802161539563542,13.42243887601947,13.774887655757723,6.9885541347305065,5.40929210935947,10.35194582630568,13.338431521796934,13.736117590512237,7.335272110466349,205.44625858212473,205.44625858212473,0.0,228.27362064680526,0.0,205.44625858212473,228.27362064680526,0,0
+2017/01/06 15:00:00,189.90607757697427,0,1082.8102430059562,0,0,0,0.0,0.0,17.34113739151858,0.0,115.5196477718057,0,39.380909295966944,0.20703890059058594,14.02536901463819,0,0,135.2808390671319,539.3903500445667,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3569.1923369606457,0.0,4032.3740191765737,0.0,4840.349179193353,0.0,0.0,0.0,0.0,0.0,3269.162840525404,0.0,3866.2047451644457,0.0,4659.120380489181,0.0,0.0,0,0,0,0,0,0,0,0,0.05764961938240283,0.0018239937721596293,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2539800170613047,-0.2539800170613047,-0.3548668932819585,-0.3548668932819585,-0.5909140319702907,-0.5909140319702907,-0.41162216628081816,-0.41162216628081816,-0.17501522935827638,-0.17501522935827638,-0.20948897042458983,-0.4907175098050237,-0.6387384558394856,-0.6575338942832368,-0.32912594849308013,-0.17614746163872896,-0.4617433616221871,-0.640505821567191,-0.6598613451023437,-0.3565081673396595,6.339031096286888,6.339031096286888,7.620517996647536,7.620517996647536,12.319237925022946,12.319237925022946,8.531475267819403,8.531475267819403,5.634920500100719,5.634920500100719,5.9102008789676574,10.031331078411242,13.564766532942357,14.081430851499306,7.252599626965832,5.643173171334965,9.450657661277305,13.612696872375395,14.146475199422639,7.644932263717976,189.90607757697427,189.90607757697427,0.0,211.00675286330474,0.0,189.90607757697427,211.00675286330474,0,0
+2017/01/06 16:00:00,183.71040547117263,0,1114.800219322656,0,0,0,0.0,0.0,17.73672756885385,0.0,108.75639138185811,0,39.380909295966944,0.3132655935392321,14.091136428500203,0,0,187.36782887192936,519.293336556469,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3784.9294381334284,0.0,3463.85226211827,0.0,5412.485067028362,0.0,0.0,0.0,0.0,0.0,3472.78725764098,0.0,3411.3525335124477,0.0,5315.301294351294,0.0,2297.1806227334037,0,0,0,0,0,0,0,0,0.05935278941669266,0.0018778808848371124,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4133090287357321,-0.4133090287357321,-0.21223603943907454,-0.21223603943907454,-0.623256232749709,-0.623256232749709,-0.4232954301340724,-0.4232954301340724,-0.21760303930545546,-0.21760303930545546,-0.23085658693776684,-0.47989236638167454,-0.6505554451218915,-0.6748026437126745,-0.3477489529008703,-0.22815707121905746,-0.4513869913185744,-0.656397164777177,-0.6822153942356872,-0.3791314786276887,8.560657637145297,8.560657637145297,5.934274746456751,5.934274746456751,13.150686536304349,13.150686536304349,8.73591851881605,8.73591851881605,5.982220102970189,5.982220102970189,6.105789691524407,9.810146811706616,13.887814037270033,14.569621608631493,7.515963599411748,6.080023452527726,9.251880598383806,14.049748437209928,14.783141526563853,7.993150838180256,183.71040547117263,183.71040547117263,0.0,204.12267274574737,0.0,183.71040547117263,204.12267274574737,0,0
+2017/01/06 17:00:00,213.9237340677283,0,1204.7921025230605,0,0,0,0.0,0.0,24.999863057464953,0.0,131.64086955684016,0,39.380909295966944,0.4057261521808655,14.064390802821011,0,0,204.02851864709163,539.3890012128952,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4803.336588883469,0.0,3970.1249686894894,0.0,5683.623210419966,0.0,0.0,0.0,0.0,0.0,4573.380112081531,0.0,3872.3865067107827,0.0,5563.563142783143,0.0,2461.920252050842,0,0,0,0,0,0,0,0,0.06414402393587003,0.0020294722052579253,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5695253716993902,-0.5695253716993902,-0.3837958100170101,-0.3837958100170101,-0.6097168420827603,-0.6097168420827603,-0.4218288802421491,-0.4218288802421491,-0.176664723413436,-0.176664723413436,-0.3256511566793214,-0.5682114118029297,-0.6536695406990699,-0.682693991629229,-0.3530818943340289,-0.309853098371778,-0.5643610000377046,-0.6611523832071989,-0.6924345786564812,-0.38701525503024686,11.794318235383145,11.794318235383145,8.067658476727374,8.067658476727374,12.797093492652735,12.797093492652735,8.709912767803829,8.709912767803829,5.6469612177871085,5.6469612177871085,7.205089367256434,11.762718197542426,13.973953719075709,14.79700893416556,7.594095926781463,6.9955377707759965,11.670549104529314,14.18265653445063,15.081395291021849,8.119627513770425,213.9237340677283,213.9237340677283,0.0,237.69303785303146,0.0,213.9237340677283,237.69303785303146,0,0
+2017/01/06 18:00:00,234.37145418754906,0,1125.4570558918876,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.20828132641742625,18.52583771820372,0,0,102.50113158696445,561.5813416418491,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1111.6802831523923,0.0,4511.114841025154,0.0,5038.11584619219,0.0,5214.609024178906,0.0,0.0,0.0,865.8407510174645,0.0,4291.983838044198,0.0,4893.772449201664,0.0,5068.514442699951,0.0,0.0,0,0,0,0,0,0,0,0,0.05992016728922844,0.0018958323252291427,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6233618823374477,-0.6233618823374477,-0.41735696208842626,-0.41735696208842626,-0.6166798787137413,-0.6166798787137413,-0.40637064923189375,-0.40637064923189375,-0.1300033459645551,-0.1300033459645551,-0.3869032849387655,-0.5702654716735372,-0.6455914398276706,-0.6728547203701283,-0.3394368975304977,-0.3866684445946513,-0.5720695382837083,-0.6529111818082255,-0.6831304295850378,-0.3708164961568034,13.153476947279003,13.153476947279003,8.6311834170573,8.6311834170573,12.977945682048357,12.977945682048357,8.44140548056481,8.44140548056481,5.350119553169762,5.350119553169762,8.117812635408711,11.81215021918267,13.75137277301232,14.513907331953433,7.396595552512949,8.114007941914593,11.855716991396946,13.952937869236237,14.809663403667656,7.8626306899737415,234.37145418754906,234.37145418754906,0.0,260.4127268750545,0.0,234.37145418754906,260.4127268750545,0,0
+2017/01/06 19:00:00,218.08520964407677,0,1156.435013481044,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.21024292870838962,25.198496018847695,0,0,130.89537578582514,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2589.099623302882,0.0,3815.324269136602,0.0,6133.9841911663525,0.0,4420.422367466455,0.0,0.0,0.0,2337.0476532614366,0.0,3584.4562547564983,0.0,5913.8975307540695,0.0,4229.354119253394,0.0,0.0,0,0,0,0,0,0,0,0,0.06156945669685484,0.0019480146924368896,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5464219856004877,-0.5464219856004877,-0.48036328211151924,-0.48036328211151924,-0.6076651739350151,-0.6076651739350151,-0.39612836559135434,-0.39612836559135434,-0.11315422025706928,-0.11315422025706928,-0.4032320175220963,-0.5549749868657656,-0.6283127808343494,-0.6484168226289461,-0.3141084166591879,-0.4115345374709037,-0.5579880657620618,-0.6340416930337535,-0.6574209895619675,-0.3422073045603001,11.249609657882928,11.249609657882928,9.819663571857703,9.819663571857703,12.744206494732424,12.744206494732424,8.269134555794935,8.269134555794935,5.265198023285507,5.265198023285507,8.388137966785493,11.44856576131157,13.284782931049136,13.828900611067667,7.0509416410065455,8.529962638533561,11.51941006893712,13.438050399781432,14.078281517254396,7.43605469678846,218.08520964407677,218.08520964407677,0.0,242.31689960452974,0.0,218.08520964407677,242.31689960452974,0,0
+2017/01/06 20:00:00,210.66879531794194,0,1100.2469661530681,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.1391174717002503,27.0977424753112,0,0,110.19768097039368,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2874.334190153628,0.0,3837.941692807894,0.0,6077.709007090172,0.0,4381.091787284941,0.0,0.0,0.0,2607.3261364573045,0.0,3562.987549475726,0.0,5761.857891559284,0.0,4129.593957182861,0.0,0.0,0,0,0,0,0,0,0,0,0.058577963438252154,0.0018533659309775145,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4987626223526664,-0.4987626223526664,-0.511849603897594,-0.511849603897594,-0.6458400315428068,-0.6458400315428068,-0.409489837105797,-0.409489837105797,-0.1349603049433713,-0.1349603049433713,-0.4129896495569715,-0.5474733350413773,-0.6196093868217656,-0.6343491056479184,-0.30326800797268016,-0.4246965268738478,-0.5523724260559506,-0.6251812804695145,-0.6433032571424936,-0.33025072449070797,10.198989743358155,10.198989743358155,10.477695281033618,10.477695281033618,13.758180184211355,13.758180184211355,8.494760851006049,8.494760851006049,5.3773501282793745,5.3773501282793745,8.555123087818089,11.273894748569546,13.054663160712977,13.446314961300502,6.911311075588046,8.76084978721211,11.387690491212581,13.201606776669749,13.688839249983843,7.268088235438853,210.66879531794194,210.66879531794194,0.0,234.0764392421577,0.0,210.66879531794194,234.0764392421577,0,0
+2017/01/06 21:00:00,211.46015824658366,0,1104.7941713597893,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.17962552967945453,23.37680355074686,0,0,150.23523868965884,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2064.2774343755436,0.0,3161.3453193174623,0.0,5019.702877819236,0.0,3651.190907709641,0.0,0.0,0.0,1985.9259807771216,0.0,2999.4090891601027,0.0,4853.057108910587,0.0,3499.7531410661636,0.0,0.0,0,0,0,0,0,0,0,0,0.0588200600116032,0.0018610256978031092,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5291782499967259,-0.5291782499967259,-0.47924123657012846,-0.47924123657012846,-0.6281425439501371,-0.6281425439501371,-0.3994080307462091,-0.3994080307462091,-0.1812371529829867,-0.1812371529829867,-0.4165559125931578,-0.5429101613250606,-0.6106531613858398,-0.6236224163830478,-0.30271290144556406,-0.4318135293141484,-0.5488748286133653,-0.6157497914201183,-0.6316497465360574,-0.32893285706086944,10.858131461423184,10.858131461423184,9.797003854167727,9.797003854167727,13.280250312492228,13.280250312492228,8.323808641602,8.323808641602,5.680932020790422,5.680932020790422,8.617171265003677,11.168837373615347,12.821290230375837,13.160360227730493,6.90429481400605,8.888791188063422,11.306342305401671,12.9536666005164,13.373884730121148,7.249946079929543,211.46015824658366,211.46015824658366,0.0,234.95573138509295,0.0,211.46015824658366,234.95573138509295,0,0
+2017/01/06 22:00:00,197.48229207000242,0,1082.994849863616,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.21101759857216534,25.3753370208107,0,0,163.92626970602976,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1633.755671702214,0.0,4151.295010843949,0.0,4348.98634558527,0.0,4602.313011671828,0.0,0.0,0.0,1571.4388847641048,0.0,3985.827445917459,0.0,4178.713416564387,0.0,4446.755593592243,0.0,0.0,0,0,0,0,0,0,0,0,0.057659447988244183,0.0018243047423973462,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5462300455852049,-0.5462300455852049,-0.5529109734848446,-0.5529109734848446,-0.6732754981646337,-0.6732754981646337,-0.4488536847424242,-0.4488536847424242,-0.2714013965889273,-0.2714013965889273,-0.4404019606681801,-0.5642326916927961,-0.6225667993900189,-0.6397113216901396,-0.32431881697285975,-0.45870162479460813,-0.5746958217773288,-0.6302176811948126,-0.6500191512828473,-0.3518480517305951,11.245181212218725,11.245181212218725,11.400263304553405,11.400263304553405,14.525928462869402,14.525928462869402,9.203959660870964,9.203959660870964,6.52960675739962,6.52960675739962,9.046080022323181,11.667488799306327,13.13248915409693,13.591133552393813,7.1870083176133335,9.391796597660331,11.919392032295619,13.335587343280451,13.87302192583428,7.5759114724134236,197.48229207000242,197.48229207000242,0.0,219.42476896666935,0.0,197.48229207000242,219.42476896666935,0,0
+2017/01/06 23:00:00,140.2199864602381,0,984.3479741938025,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.3433432363373573,20.69171041612449,0,0,243.53092819810092,581.1104596892532,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1052.0612656139142,0.0,11.97136344119513,0.0,0.0,0.0,2313.4566001590842,0.0,5021.115140843428,0.0,4794.1926857145,0.0,5435.756819894987,0.0,0.0,0.0,2021.1786906089176,0.0,4702.6278772007345,0.0,4397.60855991857,0.0,5124.115041105335,0.0,670.3824021326354,0,0,0,0,0,0,0,0,0.05240741525918485,0.001658134087818716,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6778153433176046,-0.6778153433176046,-0.7017075978999705,-0.7017075978999705,-0.7904068409563849,-0.7904068409563849,-0.6565042034094867,-0.6565042034094867,-0.5101467223052195,-0.5101467223052195,-0.4729282572515564,-0.5981399528078539,-0.6459415721498025,-0.6673306398962138,-0.35516563061104495,-0.495954688619111,-0.6137134940965994,-0.6554021333265454,-0.6796895151571258,-0.3854872914738458,14.656113880669665,14.656113880669665,15.355939510862996,15.355939510862996,18.168806328583244,18.168806328583244,14.052729381818622,14.052729381818622,10.441010984095172,10.441010984095172,9.67052536847035,12.501062518828704,13.760961533030425,14.356801638286825,7.624953237339497,10.140155323309685,12.900641985582354,14.022061328144929,14.710118050233987,8.094907574171003,140.2199864602381,140.2199864602381,0.0,155.7999849558201,0.0,140.2199864602381,155.7999849558201,0,0
+2017/01/07 00:00:00,91.20760064147993,0,832.5821524676977,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.4348584812284876,11.829785898958871,0,0,262.33974292428616,517.0068807745954,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,541.5820050325548,0.0,664.1224894649131,0.0,2338.479744948954,0.0,791.9599672458908,0.0,0.0,0.0,2296.2662616476514,0.0,5364.316809958012,0.0,4606.948087412262,0.0,5782.143175435153,0.0,997.4666255896608,0.0,1996.8850529180324,0.0,5033.945262732405,0.0,4225.189639200444,0.0,5478.827142629158,0.0,6156.985062934277,0,0,0,0,0,0,0,0,0.0443272904965311,0.0014024845726399227,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.807132177320053,-0.807132177320053,-0.827541953720671,-0.827541953720671,-0.8856174769821721,-0.8856174769821721,-0.8056505184198693,-0.8056505184198693,-0.61737776716806,-0.61737776716806,-0.5014188121071654,-0.6258664552565997,-0.6664639762354252,-0.6894520394854161,-0.3862021979639019,-0.5285311057569244,-0.6464533056010241,-0.6768838297108154,-0.7036417329324433,-0.4214122356784671,18.736821415283117,18.736821415283117,19.445959731849086,19.445959731849086,21.55891949822113,21.55891949822113,18.686024560958828,18.686024560958828,12.996188077262985,12.996188077262985,10.25495822623688,13.219769422231039,14.332273499732352,14.993881392546243,8.106461172306084,10.843690318624098,13.774985479986057,14.629328901202015,15.413670934316258,8.702541400103897,91.20760064147993,91.20760064147993,0.0,101.34177849053324,0.0,91.20760064147993,101.34177849053324,0,0
+2017/01/07 01:00:00,40.73057134109476,0,546.6706662965871,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.57858266898133e-09,9.544937273716119,0,0,0.0,493.43513752777096,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0291051511962373,0.0009208666958850012,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7231614346521783,-0.7231614346521783,-0.7902389094807215,-0.7902389094807215,-0.8876451170049097,-0.8876451170049097,-0.7913977198937018,-0.7913977198937018,-0.2631625083501672,-0.2631625083501672,-0.5572224931636812,-0.8611893125786855,-0.9107971990951486,-0.9316609064582557,-0.17167307870424917,-0.5864434055785084,-0.8180257002542395,-0.8983393471660213,-0.9217693491710155,-0.2816354143026994,16.00533704097694,16.00533704097694,18.163163240053436,18.163163240053436,21.635206613285817,21.635206613285817,18.20212770589312,18.20212770589312,6.437887678147177,6.437887678147177,11.501372420965168,20.653118044872087,22.518147390279893,23.332370304458053,5.610872046936251,12.20787900909994,19.11313584429385,22.04033965047276,22.944165896054287,6.64751988809499,40.73057134109476,40.73057134109476,0.0,45.25619037899418,0.0,40.73057134109476,45.25619037899418,0,0
+2017/01/07 02:00:00,23.722201962363414,0,42.214805784841325,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251065386856237,0,0,0.0,6.724453272297191,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002247547528773029,7.111083714051579e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7778560118088504,-0.7778560118088504,-0.8658382995998932,-0.8658382995998932,-0.966624986228205,-0.966624986228205,-0.8776625069442041,-0.8776625069442041,-0.1290985350986433,-0.1290985350986433,-0.6497149365448908,-0.9261088009249007,-1.0562907788568185,-1.0710880523465829,-0.10677756577893903,-0.6856130461788937,-0.9320026134381284,-1.0700292867428822,-1.0896772052806944,-0.29479525058720385,17.750355176074237,17.750355176074237,20.823608385780815,20.823608385780815,24.735685289922472,24.735685289922472,21.261251729507507,21.261251729507507,5.345259351428439,5.345259351428439,13.864636586114855,23.11399005185737,28.548887595983516,29.20661775538896,5.2361357975690765,14.881803286087276,23.345850837602924,29.159297999796962,30.04382859330684,6.805637882183106,23.722201962363414,23.722201962363414,0.0,26.358002180403794,0.0,23.722201962363414,26.358002180403794,0,0
+2017/01/07 03:00:00,28.34437971229316,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250166258202659,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8295268265535058,-0.8295268265535058,-0.9256361124023148,-0.9256361124023148,-1.0226246536760921,-1.0226246536760921,-0.9411765598906837,-0.9411765598906837,-0.053996518518918894,-0.053996518518918894,-0.7410144710149817,-1.0185577300277726,-1.1532496387222935,-1.163811438245622,-0.08441392455758204,-0.769775819105756,-1.0219723856024945,-1.1674043020524698,-1.181627864883084,-0.31651240248338136,19.515858341701744,19.515858341701744,23.095454797975805,23.095454797975805,27.081923561713268,27.081923561713268,23.709505905678668,23.709505905678668,5.060362767784127,5.060362767784127,16.560841877623247,26.90753508768016,32.99525993712321,33.49826058935001,5.147552804674035,17.484504154199584,27.053913062039157,33.67015742717017,34.35453294520208,7.082580272458131,28.34437971229316,28.34437971229316,0.0,31.493755235881288,0.0,28.34437971229316,31.493755235881288,0,0
+2017/01/07 04:00:00,23.72220070949796,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251052858201707,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9014739170309801,-0.9014739170309801,-1.0079573854617883,-1.0079573854617883,-1.0996291249776473,-1.0996291249776473,-1.0315239382222152,-1.0315239382222152,0.006155326732611048,0.006155326732611048,-0.8158536160041814,-1.0839624349109092,-1.2315320924429367,-1.2355919067763848,-0.05589375991113297,-0.8527738965072906,-1.1015489493338557,-1.258208938414083,-1.2654078834131417,-0.3384108453399659,22.159970170322097,22.159970170322097,26.455900857787526,26.455900857787526,30.49695590766089,30.49695590766089,27.465662558146406,27.465662558146406,5.0007843028557915,5.0007843028557915,19.037702527591307,29.785167128787606,36.80245649005153,37.00465380705327,5.0646797496771825,20.3467798668473,30.584758109961598,38.13901719243583,38.50282547882622,7.382064140766559,23.72220070949796,23.72220070949796,0.0,26.35800078833107,0.0,23.72220070949796,26.35800078833107,0,0
+2017/01/07 05:00:00,41.205199753914506,0,417.4101212625351,0,0,0,0.0,0.01764798876805426,4.633261998087618,9.319298099999997,23.111338313975452,0,2.1261231726675915,1.4723204904601166,0.5252096899556679,0,0,328.68423998117476,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,187.2165270782913,0.10487905895004133,540.875422023692,0.19172433740782255,1369.929961893373,0.10707286333317825,660.0710583944484,0.0,0.0,1.9180593341282022,2831.552372751382,1.884361054333249,2881.70058856604,3.6918240337166024,5564.456313752383,1.7895858077598628,3512.2960405409053,0.0,0.0,1.4749482144243302,2515.182281798325,1.895278505140459,2468.197819243065,2.241017382575137,4930.851423443882,2.3492381762853713,3075.0990315852646,0.0,0.0,0,0,0,0,0,0,0,0,0.02222322403447692,0.0007031273175858493,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8778141682349342,-0.8778141682349342,-0.9220983140592486,-0.9220983140592486,-0.9615486201814994,-0.9615486201814994,-0.9289272444860933,-0.9289272444860933,0.13816016601025566,0.13816016601025566,-0.6229919871500083,-0.7400858718878778,-0.80335466965375,-0.8080581218797723,-0.0248663902150652,-0.66815564942728,-0.7806510461793139,-0.8416515659576909,-0.8518277319106577,-0.33198027627368054,21.266902474519995,21.266902474519995,22.957013463558823,22.957013463558823,24.52895746373872,24.52895746373872,23.22469357834278,23.22469357834278,5.39547111575763,5.39547111575763,13.143709417028305,16.5316105908271,18.607497406157904,18.768613355536417,5.012800248032391,14.380181108739734,17.842963446768607,19.94641987232535,20.31252135669351,7.292009579519018,41.205199753914506,41.205199753914506,0.0,45.78355528212723,0.0,41.205199753914506,45.78355528212723,0,0
+2017/01/07 06:00:00,75.45503904449252,0,335.25585071921273,0,0,0,0.0,0.016852903005770373,4.633261998087618,9.319298099999997,57.911447091112116,0,1.7521059231070057,1.2444526535323783,0.5776203756476137,0,0,122.31373564394792,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.82420365363434,0.0,403.917713134066,0.0,131.6390601013991,0.0,0.0,1.8768261542721802,2274.2478262804652,1.8490462164625114,2240.65783027262,3.2113465802706287,4422.678666098136,1.8094103966848252,2784.8409687653257,0.0,0.0,1.6486201580431157,2046.177319246052,1.5436188463041276,2029.9436775924764,3.076123645087705,4130.598716195943,1.8379110086452783,2573.9091980963544,0.0,0.0,0,0,0,0,0,0,0,0,0.017849269818534554,0.0005647384550910263,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7380134073632126,-0.7380134073632126,-0.8288393715825022,-0.8288393715825022,-0.8577814990096427,-0.8577814990096427,-0.835306617918783,-0.835306617918783,0.4521126483114026,0.4521126483114026,-0.5946915582560929,-0.6857920885592184,-0.7311596277961728,-0.7342693114896288,0.04187417477122977,-0.6331715494312135,-0.7114147279414224,-0.7464131014099195,-0.7554971982462984,-0.28523422856885783,16.46650513240334,16.46650513240334,19.49163046249656,19.49163046249656,20.528712926066532,20.528712926066532,19.720337594592678,19.720337594592678,9.26565825463507,9.26565825463507,12.414008491495096,14.887016203251733,16.252510554013014,16.34935369523491,5.036300076127276,13.414679454985006,15.64731230498046,16.731517476591847,17.021526578652455,6.690034086843909,75.45503904449252,75.45503904449252,0.0,83.83893227165835,0.0,75.45503904449252,83.83893227165835,0,0
+2017/01/07 07:00:00,106.03240563394823,0,805.7935131232281,0,0,0,0.1188093988133458,0.013324623735781414,8.33396954093373,13.929299233552332,80.56906512710079,0,1.5014149560732812,1.0414940262625565,0.525028727476466,0,0,93.18289215274471,481.9233296389465,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,377.6004435539281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1652212022680335,1899.0229496485154,1.2145461920010803,1857.436302970249,3.3404902366047886,3634.35484602447,1.7104663160550142,2293.954856957742,0.0,0.0,1.1620379622484809,1586.8434623545058,1.1049696868546257,1569.9475227545443,2.110136247259409,3159.718300883331,1.5167558924899822,1972.0521964300203,0.0,0.0,0,0,0,0,0,0,0,0,0.042901043495307795,0.0013573591116973873,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6254667439544442,-0.6254667439544442,-0.7302185276152289,-0.7302185276152289,-0.7821317476146791,-0.7821317476146791,-0.7482472485235406,-0.7482472485235406,0.6929189615930903,0.6929189615930903,-0.5780030474967237,-0.6627932148670899,-0.704212443161335,-0.7072402851303464,0.11785114853249375,-0.6146544648160828,-0.6854456642153739,-0.7162324869939382,-0.7249048890357036,-0.20041352342781976,13.209171380713713,13.209171380713713,16.223284311518512,16.223284311518512,17.892158411731387,17.892158411731387,16.789787699514207,16.789787699514207,15.095644375207385,15.095644375207385,12.000002411161589,14.228745036862279,15.430736739587658,15.521512583505114,5.287685017839394,12.925122236201915,14.876931121902714,15.793432539800506,16.058981652020677,5.832913664819529,106.03240563394823,106.03240563394823,0.0,117.81378403772025,0.0,106.03240563394823,117.81378403772025,0,0
+2017/01/07 08:00:00,135.12136395568228,0,808.1718594225401,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,69.33401494192633,0,39.380909295966944,0.18627707504391613,0.5249186658047643,0,0,51.78435439614147,490.20986118231787,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,257.0266924193423,0.0,275.36219375436957,0.0,1152.0617333547798,0.0,354.57323669698724,0.0,0.0,0.0,3487.589388561517,0.0,4529.202430636295,0.0,5288.323285974445,0.0,4877.526423370196,0.0,2275.191210111022,0.0,3108.529725587534,0.0,4199.3566590718,0.0,4763.9108362187835,0.0,4481.115916918998,0.0,1083.0598840219855,0,0,0,0,0,0,0,0,0.04302766841394013,0.001361365435858065,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7073546925568732,-0.7073546925568732,-0.7557254898749329,-0.7557254898749329,-0.7897440519268933,-0.7897440519268933,-0.7663009466393939,-0.7663009466393939,0.2935492010160343,0.2935492010160343,-0.5424815730984496,-0.6260665112579014,-0.6584784006803641,-0.6675389580441802,-0.18584150912711764,-0.5759317955009322,-0.6430848035033053,-0.6655090899930588,-0.6793750965434827,-0.30338485422758177,15.524950315057325,15.524950315057325,17.02886027893078,17.02886027893078,18.146541243609775,18.146541243609775,17.371031366952664,17.371031366952664,6.790352916617309,6.790352916617309,11.159016396228822,13.225076358234759,14.107798299901916,14.362702264909345,5.716022068037773,11.949462142379502,13.682881024105683,14.30528616701497,14.701047484778329,6.912789612587645,135.12136395568228,135.12136395568228,0.0,150.134848839647,0.0,135.12136395568228,150.134848839647,0,0
+2017/01/07 09:00:00,147.1592552749756,0,923.6497879021165,0,0,0,0.0,0.0,15.72246890199474,0.0,87.89947186453183,0,39.380909295966944,0.19937217218020412,0.5250578378476425,0,0,113.9863979497018,490.25021733951763,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,175.39614116511268,0.0,1029.5417746227454,0.0,264.34247803120195,0.0,0.0,0.0,4268.013851431326,0.0,4979.30105565607,0.0,5889.987113347662,0.0,5271.660334971124,0.0,176.31684381084577,0.0,3409.0380274618706,0.0,4335.828807442528,0.0,4880.7628077348945,0.0,4556.328578154613,0.0,103.6801662436909,0,0,0,0,0,0,0,0,0.049175798861464254,0.0015558879976172854,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7110948960667138,-0.7110948960667138,-0.748481371631151,-0.748481371631151,-0.7676964931708468,-0.7676964931708468,-0.7532921424940464,-0.7532921424940464,-0.17617072957732138,-0.17617072957732138,-0.5109660535988921,-0.5940051639481847,-0.6209405903301689,-0.631978581112325,-0.27115307583590054,-0.5418194451385031,-0.6073889076310278,-0.6245246658288283,-0.640058252236522,-0.3299791773896015,15.637647372698183,15.637647372698183,16.797236085365853,16.797236085365853,17.416541361289333,17.416541361289333,16.9508055910146,16.9508055910146,5.643343328836309,5.643343328836309,10.458645760693415,12.396742192327395,13.08964756774418,13.382691236404483,6.526800545711424,11.143859568818087,12.737098979810057,13.18422031916134,13.600546139336814,7.264344009839235,147.1592552749756,147.1592552749756,0.0,163.51028363886178,0.0,147.1592552749756,163.51028363886178,0,0
+2017/01/07 10:00:00,183.8496065434505,0,1110.2267888819197,0,0,0,0.0,0.0,12.044849974297332,0.0,106.27511244621549,0,39.380909295966944,0.17592517574070396,22.540834448775783,0,0,137.92267995551714,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.605077132895694,0.0,763.4012116984502,0.0,79.10825438491035,0.0,0.0,0.0,4090.9984647604215,0.0,5498.077226859908,0.0,5766.2733348323045,0.0,5714.741152929889,0.0,0.0,0.0,3276.570029552091,0.0,4904.037203904837,0.0,4809.784588638566,0.0,5027.699384885823,0.0,0.0,0,0,0,0,0,0,0,0,0.05910929659245745,0.0018701769416068095,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6619149823497782,-0.6619149823497782,-0.7344180958020302,-0.7344180958020302,-0.7476506457317216,-0.7476506457317216,-0.7331188018334418,-0.7331188018334418,-0.26159423538333204,-0.26159423538333204,-0.48727415309553046,-0.5864477078875779,-0.6061600343440782,-0.6170474971575349,-0.276529280184288,-0.5128787566988537,-0.5984398112716622,-0.6069985022092976,-0.6216655739602616,-0.3263787251352934,14.204062294913399,14.204062294913399,16.353997616792412,16.353997616792412,16.770818013664638,16.770818013664638,16.313475590055162,16.313475590055162,6.4207527649200244,6.4207527649200244,9.960426308890888,12.207985758450675,12.705523842517124,12.987552378241233,6.588136643852195,10.49992658757651,12.5086567755162,12.727060651007164,13.108732687972207,7.214994903534787,183.8496065434505,183.8496065434505,0.0,204.2773406038339,0.0,183.8496065434505,204.2773406038339,0,0
+2017/01/07 11:00:00,210.82159865750788,0,1299.2874405211878,0,0,0,0.0,0.0,15.248689214730591,0.0,131.64086955684016,0,39.380909295966944,0.3484129435061247,20.77074244400975,0,0,275.303402028298,562.6094558298163,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,570.9417989532471,0.0,0.0,0.0,0.0,0.0,2666.5981268712558,0.0,6445.48538451873,0.0,5784.548109737235,0.0,6532.184391940624,0.0,0.0,0.0,1736.8029444044496,0.0,5696.449266242045,0.0,4585.612230751198,0.0,5670.1962314851,0.0,4226.730553456501,0,0,0,0,0,0,0,0,0.06917502572421715,0.0021886495949436963,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3939595955960211,-0.3939595955960211,-0.713176134421569,-0.713176134421569,-0.7289479052465692,-0.7289479052465692,-0.6879405699234606,-0.6879405699234606,-0.21574679504813188,-0.21574679504813188,-0.3853428722886716,-0.617042631943181,-0.6256398408959796,-0.635680281601859,-0.30560424644434503,-0.36999284798902266,-0.6257414364089771,-0.6213637882949564,-0.6348468121317256,-0.3510120031971127,8.233232460427118,8.233232460427118,15.700618887016432,15.700618887016432,16.183885028968163,16.183885028968163,14.949678514176739,14.949678514176739,5.965501125151803,5.965501125151803,8.092576267196108,12.987425200959919,13.21376006360353,13.48214995555621,6.940982784340093,7.849862409831303,13.216453897419157,13.100785440033178,13.459704124538447,7.563626542772866,210.82159865750788,210.82159865750788,0.0,234.2462207305643,0.0,210.82159865750788,234.2462207305643,0,0
+2017/01/07 12:00:00,217.73113229458357,0,1337.2613017963104,0,0,0,0.0,0.0,15.081367944243603,0.0,136.4899973586286,0,39.380909295966944,0.32598603815538757,23.02089645513471,0,0,222.9957828197315,599.655407544689,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3057.8186987413997,0.0,5671.004421129765,0.0,6007.214844118682,0.0,5831.095195398844,0.0,0.0,0.0,1922.433134936887,0.0,4433.217032490824,0.0,4861.656374403797,0.0,5017.951595350701,0.0,0.0,0,0,0,0,0,0,0,0,0.07119678222599689,0.002252616561379473,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46382183788419523,-0.46382183788419523,-0.6542622562185212,-0.6542622562185212,-0.6741165690318754,-0.6741165690318754,-0.592649239689897,-0.592649239689897,-0.12176756124852067,-0.12176756124852067,-0.4273107041920978,-0.6112299310472236,-0.6202356959938248,-0.6386282746711279,-0.3072809577060671,-0.41795669766207133,-0.684844499162459,-0.6104974350047113,-0.6345326592137485,-0.3440305515983945,9.491107689281748,9.491107689281748,13.990396568625442,13.990396568625442,14.549979845389757,14.549979845389757,12.36269391005662,12.36269391005662,5.307136069649161,5.307136069649161,8.807591914097898,12.836214280290378,13.071113164970143,13.561782944401045,6.962420402470997,8.641692143239482,14.8594423621647,12.817263249137497,13.451251618253679,7.462201292738527,217.73113229458357,217.73113229458357,0.0,241.92348032731508,0.0,217.73113229458357,241.92348032731508,0,0
+2017/01/07 13:00:00,205.35739376072365,0,1241.5226360860534,0,0,0,0.0,0.0,15.081367944243603,0.0,124.80122689546741,0,39.380909295966944,0.25169928760374266,22.41021513498763,0,0,162.7474696220183,599.6554075446891,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3615.2490256780056,0.0,5481.490038515925,0.0,6054.829608608599,0.0,5656.933230612147,0.0,0.0,0.0,2549.337168343817,0.0,4663.300982668483,0.0,4886.672069885189,0.0,4835.3414676086595,0.0,0.0,0,0,0,0,0,0,0,0,0.06609958474931486,0.0020913447862569872,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48597072540734193,-0.48597072540734193,-0.6314806166976372,-0.6314806166976372,-0.6374352736853469,-0.6374352736853469,-0.5619112790470864,-0.5619112790470864,-0.10816116590126001,-0.10816116590126001,-0.44636322032935954,-0.6012806768781254,-0.6141415059736505,-0.6320567067891628,-0.30823055887596335,-0.4427421166847022,-0.6463432217328704,-0.6043858864552527,-0.6280780331608715,-0.34164336571040294,9.933719984280586,9.933719984280586,13.369357097219918,13.369357097219918,13.529511466113476,13.529511466113476,11.612243691957119,11.612243691957119,5.242298229861035,5.242298229861035,9.15711820673323,12.580798549370911,12.91177235858899,13.384784206841147,6.974614305619056,9.08948711559384,13.77196769631638,12.660053829054704,13.278533017940461,7.427996034942552,205.35739376072365,205.35739376072365,0.0,228.1748819563596,0.0,205.35739376072365,228.1748819563596,0,0
+2017/01/07 14:00:00,201.47500022170044,0,1181.6486777831751,0,0,0,0.0,0.0,15.137024940483485,0.0,122.5097643007467,0,39.380909295966944,0.24143167639653632,20.773894805652468,0,0,175.40730061528885,562.6119707610848,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3152.540383864426,0.0,4946.60893941609,0.0,5295.5048515370245,0.0,5127.8866451128515,0.0,0.0,0.0,2389.4988256684983,0.0,4319.260711495909,0.0,4390.35289258497,0.0,4481.420629696309,0.0,0.0,0,0,0,0,0,0,0,0,0.06291185086022953,0.0019904871080401445,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4861460001256244,-0.4861460001256244,-0.644807136753853,-0.644807136753853,-0.659148365050891,-0.659148365050891,-0.5333302781329627,-0.5333302781329627,-0.1300452163272568,-0.1300452163272568,-0.46039306964719856,-0.5983542661443022,-0.612506704584669,-0.6308180881750912,-0.31203631278407007,-0.46165312571149225,-0.6227495789209624,-0.6038913900251965,-0.6279245756763345,-0.3435326131517416,9.937306973621531,9.937306973621531,13.729913057561674,13.729913057561674,14.126524890165626,14.126524890165626,10.951216154215246,10.951216154215246,5.350345284450469,5.350345284450469,9.42447880447591,12.506489850011874,12.869302448346176,13.351633054496546,7.0238672666757225,9.448905759582189,13.137311554580762,12.647404619540211,13.274448664080467,7.4550464963851795,201.47500022170044,201.47500022170044,0.0,223.86111135744494,0.0,201.47500022170044,223.86111135744494,0,0
+2017/01/07 15:00:00,185.9803022792863,0,1241.821590472415,0,0,0,0.0,0.0,15.4069643482249,0.0,108.75639138185811,0,39.380909295966944,0.42183714695421864,18.582224903827843,0,0,272.06483109736786,561.6177054807896,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,179.68111102240823,0.0,0.0,0.0,0.0,0.0,4004.675498017088,0.0,6186.231681666565,0.0,6065.617907547394,0.0,6387.291413810236,0.0,0.0,0.0,2993.2766835020125,0.0,5439.5444765385455,0.0,4947.140315014753,0.0,5576.75055247692,0.0,1680.1374915160313,0,0,0,0,0,0,0,0,0.06611550130228225,0.002091848374898123,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5775577695608018,-0.5775577695608018,-0.6455790451526947,-0.6455790451526947,-0.700190322716432,-0.700190322716432,-0.5958806312249606,-0.5958806312249606,-0.17765071020741813,-0.17765071020741813,-0.4789276751121846,-0.6098008901184508,-0.6264986627506741,-0.643919648891787,-0.3236344270512739,-0.48494708673561654,-0.6279758111821386,-0.6230004099657833,-0.6445172073548094,-0.3567279056621973,11.989121553077979,11.989121553077979,13.75103342857689,13.75103342857689,15.31076382342063,15.31076382342063,12.443968101856072,12.443968101856072,5.654212792058502,5.654212792058502,9.790681187315016,12.79926394116788,13.236546077090154,13.705662218310636,7.177749791551079,9.912797748366046,13.275812211129903,13.143931765619556,13.721986904221978,7.648209616009282,185.9803022792863,185.9803022792863,0.0,206.64478031031808,0.0,185.9803022792863,206.64478031031808,0,0
+2017/01/07 16:00:00,184.26013606822926,0,1182.8716944055275,0,0,0,0.0,0.0,16.270753007406405,0.0,106.31215624428707,0,39.380909295966944,0.3366183438061573,18.52772397430839,0,0,213.11125126408857,561.6213892471815,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,328.8822867349797,0.0,0.0,0.0,0.0,0.0,4184.9013456871035,0.0,6378.090616524033,0.0,5965.002615806067,0.0,6586.283532573718,0.0,0.0,0.0,3222.5893500851657,0.0,5670.5655317991095,0.0,4902.905471937283,0.0,5809.498975884807,0.0,3438.24329348798,0,0,0,0,0,0,0,0,0.06297696517110014,0.001992547279447672,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6028832334732033,-0.6028832334732033,-0.652614100660188,-0.652614100660188,-0.716956263385716,-0.716956263385716,-0.6422481936453149,-0.6422481936453149,-0.20633452493837875,-0.20633452493837875,-0.5034520521809172,-0.6240979008497495,-0.6362435047799311,-0.6572702052901478,-0.3329866418195351,-0.5157516046944352,-0.6396258774368746,-0.6348829669381314,-0.6607018257851492,-0.3678611599271818,12.621648868267016,12.621648868267016,13.944711870100164,13.944711870100164,15.815470725513705,15.815470725513705,13.660082000950041,13.660082000950041,5.882946608262486,5.882946608262486,10.298006578555373,13.172930067190578,13.497334953842056,14.074076442366007,7.305986993422209,10.562227023623137,13.588816161982436,13.460677169859622,14.170021462340841,7.816951041498186,184.26013606822926,184.26013606822926,0.0,204.73348452025473,0.0,184.26013606822926,204.73348452025473,0,0
+2017/01/07 17:00:00,201.12555813741446,0,1281.6387122015792,0,0,0,0.0,0.0,21.361005612861113,0.0,120.17895923267236,0,39.380909295966944,0.4670264579299982,16.30568233552976,0,0,279.1884624461286,541.075667092377,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.54770652896847,0.0,0.0,0.0,0.0,0.0,4142.127295995551,0.0,6496.419699805581,0.0,5875.246226828402,0.0,6638.128574923248,0.0,0.0,0.0,3334.475024028074,0.0,5921.093903066679,0.0,4983.525439563183,0.0,5976.908284978381,0.0,3946.0936931118586,0,0,0,0,0,0,0,0,0.06823539435595047,0.0021589203134288314,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6304246842287461,-0.6304246842287461,-0.6437187936269839,-0.6437187936269839,-0.7091415756467316,-0.7091415756467316,-0.6325372879181684,-0.6325372879181684,-0.16050761887316317,-0.16050761887316317,-0.5150424464062828,-0.6356122025929323,-0.641767497864646,-0.6599755829877063,-0.33401248004837386,-0.5322952067613722,-0.6532541431469536,-0.6421441822596942,-0.6654402997164842,-0.36996291870433334,13.341117675833829,13.341117675833829,13.700178534918322,13.700178534918322,15.578716107473682,15.578716107473682,13.397664698284217,13.397664698284217,5.533908897939924,5.533908897939924,10.546815065924037,13.480315417008796,13.646995964160382,14.149673803273927,7.320279105255693,10.92794093921502,13.962439020594445,13.657249637435683,14.303343516769132,7.849398987512316,201.12555813741446,201.12555813741446,0.0,223.47284237490496,0.0,201.12555813741446,223.47284237490496,0,0
+2017/01/07 18:00:00,239.15984001103843,0,1276.3637071516607,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,138.40412594678773,0,39.380909295966944,0.4610908120299473,18.552576462782152,0,0,253.3709978471452,561.618126641442,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.65539321052177,0.0,0.0,0.0,0.0,0.0,4488.7127079359,0.0,6616.792890828038,0.0,6136.515506779128,0.0,6743.095485310848,0.0,0.0,0.0,3543.5810659127533,0.0,5941.2060336006725,0.0,5075.030415324198,0.0,5977.3248426569735,0.0,3598.876035722774,0,0,0,0,0,0,0,0,0.0679545491798614,0.00215003456782261,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5998070449840148,-0.5998070449840148,-0.6421613199120129,-0.6421613199120129,-0.707300076713127,-0.707300076713127,-0.6323073600771361,-0.6323073600771361,-0.13625778572786773,-0.13625778572786773,-0.5234359736813736,-0.6410201701192592,-0.6435877726796423,-0.664047509495802,-0.3360660909067905,-0.5414803171895939,-0.6579218464191672,-0.6439337436890292,-0.6705386351426351,-0.37194921505877804,12.543332986710652,12.543332986710652,13.657716285419781,13.657716285419781,15.52330913954971,15.52330913954971,13.391500943224585,13.391500943224585,5.384646487853502,5.384646487853502,10.730624834051497,13.626671274514138,13.696602387534313,14.264054944893047,7.349024508995896,11.136103918488203,14.09225649502541,13.70604709544854,14.447876674666688,7.880237459629029,239.15984001103843,239.15984001103843,0.0,265.73315556782046,0.0,239.15984001103843,265.73315556782046,0,0
+2017/01/07 19:00:00,227.90399530100348,0,1180.5999432471767,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,120.14191543460078,0,39.380909295966944,0.2620172894318998,25.758015787532283,0,0,155.0603055519581,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4675.005052022199,0.0,4791.685564446703,0.0,6216.212644853984,0.0,4901.965182923836,0.0,0.0,0.0,4068.7275922308195,0.0,4322.105477952497,0.0,5463.373733120751,0.0,4346.1858324709465,0.0,0.0,0,0,0,0,0,0,0,0,0.06285601545672832,0.001988720514793853,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5568775658652787,-0.5568775658652787,-0.6272552953238159,-0.6272552953238159,-0.6551357724249883,-0.6551357724249883,-0.5828008169796579,-0.5828008169796579,-0.12507487820891877,-0.12507487820891877,-0.5127907592899654,-0.6224736021576163,-0.6261302131375941,-0.644884634216945,-0.31648176373640846,-0.5288013065377523,-0.6358121268118733,-0.6247204564061705,-0.6488335641500912,-0.34666662535259596,11.493253896922852,11.493253896922852,13.256647351472864,13.256647351472864,14.01465702031767,14.01465702031767,12.117786945287648,12.117786945287648,5.324058506108045,5.324058506108045,10.498023915209572,13.130030824226921,13.226766558577552,13.732032317516527,7.082175498798549,10.84971769382463,13.485703386255977,13.189402687995056,13.84036518980784,7.500254180048827,227.90399530100348,227.90399530100348,0.0,253.22666144555942,0.0,227.90399530100348,253.22666144555942,0,0
+2017/01/07 20:00:00,218.89326247075422,0,1194.8467040065607,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.89738010901058,0,39.380909295966944,0.3011622237639198,25.952673348541172,0,0,204.79741882388626,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5917.615709757002,0.0,4667.1030437088675,0.0,7385.004535594046,0.0,4757.231719563627,0.0,0.0,0.0,5314.182556443325,0.0,4186.198607649698,0.0,6621.206715071358,0.0,4194.873583870811,0.0,0.0,0,0,0,0,0,0,0,0,0.06361452355222859,0.0020127191822117245,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5436901359788652,-0.5436901359788652,-0.6277484654177651,-0.6277484654177651,-0.6480935502768967,-0.6480935502768967,-0.5712058232065359,-0.5712058232065359,-0.12548453775725554,-0.12548453775725554,-0.5054518676769705,-0.6063500100394681,-0.6121491594847095,-0.62836735553947,-0.29740387236962573,-0.5219550110481749,-0.618846366532265,-0.6116318234127681,-0.6321448856018679,-0.3246993853221806,11.186730694561462,11.186730694561462,13.269762653514192,13.269762653514192,13.820012559252547,13.820012559252547,11.834841343004513,11.834841343004513,5.326186245775574,5.326186245775574,10.340521557363545,12.710400867296386,12.860029372153235,13.286236268452626,6.837849603764397,10.697971746286896,13.034645441726028,12.846621874236675,13.387146816763419,7.192165293400464,218.89326247075422,218.89326247075422,0.0,243.2147360786158,0.0,218.89326247075422,243.2147360786158,0,0
+2017/01/07 21:00:00,199.83237716131794,0,1188.062724172447,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,0.30898217199985617,22.891759806406718,0,0,233.50379150231652,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,481.0484511368411,0.0,0.0,0.0,0.0,0.0,6110.454496267547,0.0,5801.398824333883,0.0,7514.030326255236,0.0,5882.282542779793,0.0,0.0,0.0,5384.251752767454,0.0,5251.332525808825,0.0,6646.04116746994,0.0,5251.361301973029,0.0,0.0,0,0,0,0,0,0,0,0,0.06325333944092129,0.0020012915686960556,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6012228151500713,-0.6012228151500713,-0.6807461996122243,-0.6807461996122243,-0.7055199419353022,-0.7055199419353022,-0.645610866063594,-0.645610866063594,-0.17936409722900992,-0.17936409722900992,-0.5184301733552734,-0.6160410232012439,-0.6213973865291014,-0.6362420345217821,-0.3031676092489465,-0.53866287956837,-0.6305652066559883,-0.6237050254761551,-0.6422895106469412,-0.3318328272888684,12.579325697244514,12.579325697244514,14.740633351488142,14.740633351488142,15.469887527282097,15.469887527282097,13.751904642640596,13.751904642640596,5.6669106517189505,5.6669106517189505,10.620635968115096,12.961264903689752,13.101670023125607,13.497295296460564,6.910041121883893,11.071863492046603,13.34487295916027,13.162543365776344,13.661207246126494,7.289965270312294,199.83237716131794,199.83237716131794,0.0,222.0359746236866,0.0,199.83237716131794,222.0359746236866,0,0
+2017/01/07 22:00:00,195.10241136346684,0,1093.5338692478115,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,0.20982768046325673,25.2510650290333,0,0,174.4652890902251,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65.06797338754382,0.0,729.2171813850046,0.0,12.950953229102845,0.0,0.0,0.0,5771.395220946638,0.0,5842.528653780385,0.0,7109.7266723728135,0.0,5919.684699517896,0.0,0.0,0.0,5280.78736073143,0.0,5450.803465897892,0.0,6481.949270146192,0.0,5446.730076112702,0.0,0.0,0,0,0,0,0,0,0,0,0.05822055318658066,0.0018420577197501252,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6552725844921635,-0.6552725844921635,-0.7267883164751727,-0.7267883164751727,-0.7416920783487394,-0.7416920783487394,-0.7072384802062883,-0.7072384802062883,-0.2432967671871145,-0.2432967671871145,-0.5270927244813409,-0.6220163391555432,-0.6259346803793139,-0.640937930768512,-0.30555408083155927,-0.5494357448394411,-0.637591146683134,-0.630068268570704,-0.6481795608722919,-0.3341914252301559,14.01845974194623,14.01845974194623,16.11708005979409,16.11708005979409,16.582195566378687,16.582195566378687,15.521458353399154,15.521458353399154,6.228480129566066,6.228480129566066,10.81165751536804,13.117974733025235,13.221579052141323,13.624436132400419,6.940343223675427,11.319352564301298,13.533724429520902,13.331596762291184,13.822376892664124,7.322776768500461,195.10241136346684,195.10241136346684,0.0,216.7804570705187,0.0,195.10241136346684,216.7804570705187,0,0
+2017/01/07 23:00:00,140.46895510603943,0,1104.8172280503063,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,0.4975487460832582,18.532054755530723,0,0,383.4796987262805,561.6309430175772,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1611.2796582561546,0.0,1311.6006836449778,0.0,2697.3789595100734,0.0,1265.417678338743,0.0,0.0,0.0,6305.441494179846,0.0,6677.144150643449,0.0,7595.260221872307,0.0,6750.616038859869,0.0,0.0,0.0,5662.665508879216,0.0,6203.411571621912,0.0,6842.6593489498755,0.0,6192.120998957966,0.0,2217.223372275163,0,0,0,0,0,0,0,0,0.058821287566884574,0.0018610645367965353,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.764428205319165,-0.764428205319165,-0.8042661107671624,-0.8042661107671624,-0.8197315913400364,-0.8197315913400364,-0.7926855811765239,-0.7926855811765239,-0.45784367165701234,-0.45784367165701234,-0.547377296993211,-0.6416433998212717,-0.6424745041597465,-0.6585368510061915,-0.3231961349409283,-0.5747629482756482,-0.6608483470997121,-0.6505613845656257,-0.6695780364719134,-0.3557135134150764,17.310090269817962,17.310090269817962,18.638645653714974,18.638645653714974,19.172518144635944,19.172518144635944,18.245498276793697,18.245498276793697,9.37526625708037,9.37526625708037,11.271674380262468,13.643619256214095,13.66624634762762,14.109431306902508,7.171830943281094,11.921023456557975,14.174129423961446,13.887977929419094,14.420558525961923,7.6330973173017185,140.46895510603943,140.46895510603943,0.0,156.07661678448827,0.0,140.46895510603943,156.07661678448827,0,0
+2017/01/08 00:00:00,93.606440319744,0,986.0407518886572,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.6406429672650493,14.022841091186391,0,0,412.1375762166074,520.6676469032336,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3095.207548427562,0.0,2134.3608711609268,0.0,3977.5532593587654,0.0,2112.821264909742,0.0,0.0,0.0,5580.678782007044,0.0,7241.102132277563,0.0,6839.340598970101,0.0,7315.781591899117,0.0,4025.1404882822076,0.0,5085.209625060509,0.0,6912.586138130571,0.0,6307.212203128635,0.0,6899.376730943613,0.0,10145.163698777911,0,0,0,0,0,0,0,0,0.05249753999751063,0.001660985571717219,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8538356849836313,-0.8538356849836313,-0.8777742255685477,-0.8777742255685477,-0.8996318571908143,-0.8996318571908143,-0.8708814605989805,-0.8708814605989805,-0.5422226827802592,-0.5422226827802592,-0.5716987788259122,-0.6663511692179401,-0.6627491117823232,-0.6816375575385742,-0.34891993737072513,-0.605134752213393,-0.6889090478847557,-0.6743194036030267,-0.6961864750517976,-0.38739265507631604,20.38526914453047,20.38526914453047,21.26541415983253,21.26541415983253,22.08961978090207,22.08961978090207,21.009563705682993,21.009563705682993,11.153087854236702,11.153087854236702,11.8467519190135,14.329083250944919,14.227504722011133,14.76641185132658,7.5330159236335845,12.67923000704343,14.977990255775595,14.555784713999813,15.192029562813246,8.12574858479023,93.606440319744,93.606440319744,0.0,104.00715591082665,0.0,93.606440319744,104.00715591082665,0,0
+2017/01/08 01:00:00,43.53350460321715,0,673.7569328440051,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.29439184687641345,0.2014782922108074,11.852000399329862,0,0,104.61494605913742,515.9064580160515,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,330.6842415103742,0.0,500.86208446553627,0.0,857.8939209665504,0.0,477.34866748306945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0358713181608667,0.0011349435022384425,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8792457132822199,-0.8792457132822199,-0.9031602450011191,-0.9031602450011191,-0.9199312515812639,-0.9199312515812639,-0.897605906856744,-0.897605906856744,-0.22713583402726242,-0.22713583402726242,-0.9218265897421245,-1.0460700961182565,-1.0369517876313243,-1.057438655122313,-0.13928423649935442,-0.8937136649960253,-1.0059387167704055,-0.9953235248355816,-1.01481156712082,-0.287431583563592,21.320286934363594,21.320286934363594,22.224493769078137,22.224493769078137,22.872459828570626,22.872459828570626,22.01240564245377,22.01240564245377,6.070355668946803,6.070355668946803,22.946401087268697,28.099164930386465,27.70114639987119,28.599630528728085,5.40193789970418,21.864531097004388,26.370372687451862,25.923158211062642,26.747446524953972,6.716261046138698,43.53350460321715,43.53350460321715,0.0,48.37056067024128,0.0,43.53350460321715,48.37056067024128,0,0
+2017/01/08 02:00:00,23.72197283347082,0,51.6738721461913,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.524877409793027,0,0,0.0,16.183519633647172,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0027511552282448158,8.704463370827885e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0128205731672042,-1.0128205731672042,-1.1006784373859893,-1.1006784373859893,-1.1230698963266015,-1.1230698963266015,-1.0899410039151918,-1.0899410039151918,-0.08751456689732928,-0.08751456689732928,-1.0047453302724842,-1.1830954838246082,-1.1979710489456719,-1.214892942871932,-0.07214818625312432,-1.0357586534552028,-1.1970773262196621,-1.1996660554157301,-1.2151813033383154,-0.32366439403110175,26.66257701958382,26.66257701958382,30.544930151103088,30.544930151103088,31.57749918503235,31.57749918503235,30.055795890898167,30.055795890898167,5.158595292194704,5.158595292194704,26.31988286596176,34.42549539717366,35.14835452589752,35.97843545476225,5.107778695939558,27.649290266663613,35.10474229898608,35.23113163551214,35.992650815774695,7.178154773467114,23.72197283347082,23.72197283347082,0.0,26.357747592745355,0.0,23.72197283347082,26.357747592745355,0,0
+2017/01/08 03:00:00,28.344317809938715,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.52495472346582,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.070276628246787,-1.070276628246787,-1.1618691341500444,-1.1618691341500444,-1.178782653206563,-1.178782653206563,-1.1517328133183367,-1.1517328133183367,-0.012707209960863884,-0.012707209960863884,-1.086379672699453,-1.2765818883627416,-1.294234441547287,-1.3110183767735246,-0.0510832974269677,-1.1351952605521438,-1.3096667612864978,-1.3144565058894384,-1.3289788732021863,-0.33491725600200684,29.1703489701258,29.1703489701258,33.40549891523865,33.40549891523865,34.21714463732269,34.21714463732269,32.92330842253641,32.92330842253641,5.00334259991287,5.00334259991287,29.894437938212207,39.07004959787006,39.972207996086425,40.836556081020895,5.054024346192691,32.14358390884621,40.76672053888901,41.01437505876785,41.76820956047996,7.332921636101844,28.344317809938715,28.344317809938715,0.0,31.49368645548746,0.0,28.344317809938715,31.49368645548746,0,0
+2017/01/08 04:00:00,23.722139816119466,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525044392441677,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.1431664112098798,-1.1431664112098798,-1.239217339365469,-1.239217339365469,-1.2497865440701976,-1.2497865440701976,-1.2306285253387665,-1.2306285253387665,0.046590889806997285,0.046590889806997285,-1.158353712088369,-1.3527221839901902,-1.3750404874332183,-1.3894972984288223,-0.022785530102514013,-1.2324985516828522,-1.4116291783850594,-1.4201412098543795,-1.4320171676599485,-0.34795861328917876,32.51832262817281,32.51832262817281,37.18558884994736,37.18558884994736,37.71504141849077,37.71504141849077,36.75751498639465,36.75751498639465,5.044939180192301,5.044939180192301,33.23790489236198,43.00976838579334,44.186287385160426,44.95286063594918,5.01074754411259,36.850550461123355,46.132575423397675,46.58812394909644,47.22525164262478,7.5190124691008435,23.722139816119466,23.722139816119466,0.0,26.357933129021628,0.0,23.722139816119466,26.357933129021628,0,0
+2017/01/08 05:00:00,42.144964285383416,0,416.6305507156891,0,0,0,0.0,0.02419170939393835,4.633261998087618,9.319298099999997,23.111338313975452,0,2.7176137680383414,1.8142035571112451,0.5250568387768054,0,0,327.9046694343288,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.19839048614665,1657.5760575129257,0.9877437050082373,1434.963876050786,1.3739789134424427,2313.0920870116197,0.2993267180473064,1406.4867027918858,0.0,0.0,3.607088398784753,4912.289732746016,2.0784490459961944,3931.963128622194,2.533743801890409,6411.005896436865,2.3610434942244183,4073.3346156478497,0.0,0.0,2.5063156168868472,4697.373771111059,2.546520168825699,3641.6941853849053,2.8371888505462266,5916.655830493282,1.8619201941391637,3701.488742701738,0.0,0.0,0,0,0,0,0,0,0,0,0.022181719121129737,0.0007018141310588556,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.982447668837818,-0.982447668837818,-1.0244041997849649,-1.0244041997849649,-1.0280990219514856,-1.0280990219514856,-1.0202953077939878,-1.0202953077939878,0.17956844202351194,0.17956844202351194,-0.7848607325431363,-0.8725426731939593,-0.8789043089161815,-0.8883642893900376,0.008454664561627315,-0.8403511275621869,-0.9233602539386637,-0.9201550587269076,-0.9323027069636312,-0.3477284382993413,25.386464909607184,25.386464909607184,27.15842339014631,27.15842339014631,27.317632751592853,27.317632751592853,26.981966561087972,26.981966561087972,5.6684332236955015,5.6684332236955015,17.983070695295893,21.071046872988106,21.30754781111696,21.662304864854008,5.001479704496532,19.899945841152842,23.006338200418725,22.88118351889507,23.35769353756413,7.515665377606936,42.144964285383416,42.144964285383416,0.0,46.82773809487046,0.0,42.144964285383416,46.82773809487046,0,0
+2017/01/08 06:00:00,76.0581051901959,0,369.1543964503762,0,0,0,0.0,0.01962881358700247,4.633261998087618,9.319298099999997,57.911447091112116,0,2.1559565852422597,1.493393087654193,0.5251195145127076,0,0,156.21228137511136,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,325.3587378027466,0.0,394.7177022364753,0.0,612.7585376759761,0.0,389.08684300314064,0.0,0.0,2.2154775865324154,3330.0460259347315,2.119797603826214,2829.6182686280517,3.350609629445671,4681.090504982168,2.286229092148915,2975.507653352749,0.0,0.0,2.5594973761847086,3723.1975182022325,2.030680580098533,2971.7205785886995,3.0359783050428177,4843.940535081943,2.030543413723194,3037.189955581431,0.0,0.0,0,0,0,0,0,0,0,0,0.01965405350214051,0.0006218405528023152,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8717722794960692,-0.8717722794960692,-0.9124583395087147,-0.9124583395087147,-0.9126637199765238,-0.9126637199765238,-0.9094694241915904,-0.9094694241915904,0.49309342726974437,0.49309342726974437,-0.7332849529363517,-0.7968111490038726,-0.8029864238877169,-0.810235412757357,0.07521706995330178,-0.757563422220972,-0.8147258157740127,-0.8089748645351138,-0.819877838360157,-0.2848778407698857,21.042519680244695,21.042519680244695,22.582333296009594,22.582333296009594,22.590276865084917,22.590276865084917,22.466922761341536,22.466922761341536,10.080553882148024,10.080553882148024,16.318653421101814,18.38490605809912,18.59492266903463,18.843512367849684,5.117144979268957,17.087983729070913,18.998614018906693,18.800125006752992,19.177614719997038,6.685799557563129,76.0581051901959,76.0581051901959,0.0,84.50900576688433,0.0,76.0581051901959,84.50900576688433,0,0
+2017/01/08 07:00:00,107.14094289998852,0,855.4760207522204,0,0,0,0.11814917103436172,0.01782259696241499,8.33396954093373,13.929299233552332,80.56906512710079,0,2.1475436504940486,1.4474297973895243,0.5776637825213412,0,0,142.7697130578594,482.0190163628242,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,374.3233227662925,0.0,0.0,0.0,0.0,0.0,0.0,304.81646872373244,0.0,452.2398881934576,0.0,687.8061445634696,0.0,438.62717447664534,0.0,0.0,1.6514914297508767,3388.653320444101,1.759540451265972,2758.065331766902,4.614349394927861,4508.965900818738,1.971401401358586,2864.361053358666,0.0,0.0,1.91533077967991,3316.9448842721695,2.3712560426368627,2581.4942891638857,2.166314784698443,4185.029231311339,1.3729126780964784,2616.7979750485583,0.0,0.0,0,0,0,0,0,0,0,0,0.04554617700163996,0.0014410492920275864,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8184962302678883,-0.8184962302678883,-0.8581334823329614,-0.8581334823329614,-0.8551133320297923,-0.8551133320297923,-0.8549071541241178,-0.8549071541241178,0.7338709202784753,0.7338709202784753,-0.7226030083613619,-0.7812541576692247,-0.7850094687321396,-0.7912776058466668,0.15128789240402174,-0.7426984217521492,-0.7952156608790993,-0.7893070913333332,-0.7990650976938533,-0.22290412212759037,19.129502831157197,19.129502831157197,20.541540091585574,20.541540091585574,20.431645239293815,20.431645239293815,20.42415679839651,20.42415679839651,16.336923615337923,16.336923615337923,15.988182395726696,17.86299002448554,17.98803472761334,18.198086280021812,5.474274443255865,16.61394518581433,18.330907108612507,18.131872614200148,18.461374193162214,6.030761196108315,107.14094289998852,107.14094289998852,0.0,119.04549211109835,0.0,107.14094289998852,119.04549211109835,0,0
+2017/01/08 08:00:00,135.5819302897588,0,1012.611651420635,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,69.33401494192633,0,39.380909295966944,0.6466782590870424,0.525083815838129,0,0,256.0605414417469,490.37346613480713,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3133.1120730248194,0.0,2040.8419925465344,0.0,3707.684898662826,0.0,2046.8449477818908,0.0,0.0,0.0,7365.78721253404,0.0,7857.353676171182,0.0,8629.307286390816,0.0,7902.976747054188,0.0,2649.1644447945246,0.0,7280.480206833906,0.0,7665.261505820517,0.0,8311.21789349112,0.0,7618.999276111081,0.0,10246.653994202728,0,0,0,0,0,0,0,0,0.05391219436983556,0.0017057442499621386,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8375104332240143,-0.8375104332240143,-0.8670360590478429,-0.8670360590478429,-0.8703499550117558,-0.8703499550117558,-0.8650832032730794,-0.8650832032730794,0.1520842972100275,0.1520842972100275,-0.6956220963415913,-0.7564012779120823,-0.7516123260530748,-0.7659523897847749,-0.19258230937786355,-0.7167718420848048,-0.7704144476695317,-0.7562793696103286,-0.7740244613519572,-0.3441536513880264,19.798672968908704,19.798672968908704,20.86767804280271,20.86767804280271,20.989916158839932,20.989916158839932,20.795856273252937,20.795856273252937,5.479285967339123,5.479285967339123,15.175348557595129,17.05058254077744,16.897069848874466,17.359677596441344,5.768991268948909,15.809853159749252,17.505414757142404,17.046662524506402,17.62394432991698,7.463971718091642,135.5819302897588,135.5819302897588,0.0,150.6465892108431,0.0,135.5819302897588,150.6465892108431,0,0
+2017/01/08 09:00:00,152.9391656683497,0,1125.6591073288448,0,0,0,0.0,0.0,12.145835574324144,0.0,96.91714705112861,0,39.380909295966944,0.5383507511108334,0.5249477933649149,0,0,315.88370546498516,490.36222925096223,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2358.255452557819,0.0,1588.8752814572156,0.0,3004.3872845369215,0.0,1572.4479329173314,0.0,0.0,0.0,6933.173994252104,0.0,7545.286614087005,0.0,8121.034757629358,0.0,7567.312345023138,0.0,159.25456123256745,0.0,6793.733704234967,0.0,7349.274653961008,0.0,7763.624696947267,0.0,7258.250610245694,0.0,5044.028118743287,0,0,0,0,0,0,0,0,0.059930924657392894,0.0018961726808593617,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8186004250717442,-0.8186004250717442,-0.8498565414294141,-0.8498565414294141,-0.8545394288012197,-0.8545394288012197,-0.8452724874124767,-0.8452724874124767,-0.2469908149622785,-0.2469908149622785,-0.676507404445925,-0.7409177593317134,-0.7306933174140741,-0.7481732385975535,-0.29340401415008605,-0.6975634148190002,-0.756537093275584,-0.7359502268152395,-0.7563393915379311,-0.3847411274359871,19.133128418679988,19.133128418679988,20.24126845788365,20.24126845788365,20.410805288640617,20.410805288640617,20.076193147759312,20.076193147759312,6.266163830119666,6.266163830119666,14.618515725224213,16.557795773318546,16.238024340344083,16.787433638413958,6.788576213855677,15.232784672835677,17.054950493545107,16.40187447591498,17.04859247713233,8.082872104684654,152.9391656683497,152.9391656683497,0.0,169.9324062981663,0.0,152.9391656683497,169.9324062981663,0,0
+2017/01/08 10:00:00,150.97777025940513,0,1281.2426637267743,0,0,0,0.0,0.0,9.884131616719007,0.0,97.06762091869685,0,39.380909295966944,0.6881314150685758,0.5250018104995063,0,0,418.21613447980405,490.3778278652567,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1681.9054734314184,0.0,3143.384719588907,0.0,1045.0545252372465,0.0,0.0,0.0,4085.999595796597,0.0,8640.219998404327,0.0,7149.689742491706,0.0,8135.251776647816,0.0,5876.364036199509,0.0,3241.0839712328343,0.0,8276.362942924421,0.0,6553.447838027237,0.0,7591.267073309496,0.0,14813.557988387322,0,0,0,0,0,0,0,0,0.06821430844179609,0.002158253169803082,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5726355141655846,-0.5726355141655846,-0.8382632690765209,-0.8382632690765209,-0.8416392458601553,-0.8416392458601553,-0.7673076497566007,-0.7673076497566007,-0.3083861859719156,-0.3083861859719156,-0.5508668248401093,-0.7462595870922317,-0.7299451961463318,-0.7099377099308065,-0.33047499978055045,-0.5516315042075999,-0.7624585781198026,-0.7366123961593498,-0.7127954625059567,-0.4101417409273047,11.869413954132995,11.869413954132995,19.825479298808204,19.825479298808204,19.945979255346302,19.945979255346302,17.40385248393251,17.40385248393251,6.976616364712996,6.976616364712996,11.352607756167203,16.726646918358213,16.214803027754,15.602715450299826,7.271183013068153,11.370413636037853,17.24615799053059,16.42259750319819,15.689087039693277,8.50596465355676,150.97777025940513,150.97777025940513,0.0,167.7530780660057,0.0,150.97777025940513,167.7530780660057,0,0
+2017/01/08 11:00:00,204.0429850351945,0,1407.936466138777,0,0,0,0.0,0.0,13.342088578317588,0.0,124.87761316689259,0,39.380909295966944,0.6115587675073357,22.398840024055705,0,0,346.90647593101414,599.6554075446891,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,829.0203573975382,0.0,1755.639741532795,0.0,365.49719840907505,0.0,0.0,0.0,2767.2832497718873,0.0,7973.983542324568,0.0,6371.525307455623,0.0,7647.994696448712,0.0,4204.706012148801,0.0,2053.8966786167316,0.0,7628.094112564186,0.0,5804.012654720344,0.0,7143.461071245735,0.0,11899.001767523441,0,0,0,0,0,0,0,0,0.0749595803251552,0.002371668870350204,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48675517495479864,-0.48675517495479864,-0.7973010494424078,-0.7973010494424078,-0.7955407515904624,-0.7955407515904624,-0.7654074964238238,-0.7654074964238238,-0.2486947774807904,-0.2486947774807904,-0.48517440756609614,-0.7415043330563613,-0.7210218509071827,-0.7221863714418936,-0.3457387611043799,-0.4619855516285171,-0.7543705255062746,-0.7235666948713229,-0.7254524933217126,-0.41460824492047543,9.949784022395548,9.949784022395548,18.401508269720125,18.401508269720125,18.341900984795302,18.341900984795302,17.341938819866385,17.341938819866385,6.283739532688713,6.283739532688713,9.917440071425844,16.576277107129172,15.939682638529817,15.975392208647335,7.486826363228545,9.455361437352082,16.985365707924288,16.01779488580496,16.07585796105218,8.583216920143428,204.0429850351945,204.0429850351945,0.0,226.7144278168828,0.0,204.0429850351945,226.7144278168828,0,0
+2017/01/08 12:00:00,222.08121397671968,0,1389.0091767253762,0,0,0,0.0,0.0,13.244385240300696,0.0,143.25325374857618,0,39.380909295966944,0.5266500048693373,22.244040484552176,0,0,274.74365774879726,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.93954801677737,0.0,622.5776081459675,0.0,0.0,0.0,0.0,0.0,1494.9348482386324,0.0,7230.418152544508,0.0,6241.4903157167855,0.0,7115.253209370419,0.0,23.69361936594084,0.0,538.1552614949549,0.0,6852.181459576564,0.0,5653.938830761466,0.0,6636.1919946934195,0.0,6966.392742821201,0,0,0,0,0,0,0,0,0.0739518774172163,0.002339785852769888,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.31085305680714725,-0.31085305680714725,-0.7517856449105461,-0.7517856449105461,-0.7485493335723201,-0.7485493335723201,-0.7321936444212249,-0.7321936444212249,-0.16238633275822564,-0.16238633275822564,-0.4035382289707021,-0.7253956127124085,-0.70760558433636,-0.7205936621718207,-0.3498834532412241,-0.3665066992909679,-0.7334987571020521,-0.7068173172000701,-0.7227432793154281,-0.4096399932601348,7.008488236136287,7.008488236136287,16.90260856599076,16.90260856599076,16.79939866444637,16.79939866444637,16.284666242881258,16.284666242881258,5.546495102719646,5.546495102719646,8.393316293920776,16.074104389073852,15.53249112543675,15.926567075902454,7.547090739708125,7.796140003962165,16.325318028107233,15.508808081341144,15.992490204411936,8.497339863504862,222.08121397671968,222.08121397671968,0.0,246.75690441857742,0.0,222.08121397671968,246.75690441857742,0,0
+2017/01/08 13:00:00,199.54624428733604,0,1195.429318648501,0,0,0,0.0,0.0,13.146986305099057,0.0,124.80122689546741,0,39.380909295966944,0.3045832388544346,18.48056334949386,0,0,165.6146970359165,550.6948626932387,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,160.65871696009887,0.0,0.0,0.0,0.0,0.0,2739.3853425517855,0.0,6262.92094304372,0.0,6823.238646420125,0.0,6329.915186738422,0.0,0.0,0.0,1594.2430940325885,0.0,5692.228371163968,0.0,5999.386201944311,0.0,5709.218165811397,0.0,0.0,0,0,0,0,0,0,0,0,0.06364554238731204,0.002013700596531853,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5017255497853073,-0.5017255497853073,-0.6671265080653017,-0.6671265080653017,-0.7205632261565069,-0.7205632261565069,-0.685618205306484,-0.685618205306484,-0.1417870464308534,-0.1417870464308534,-0.43646845652815597,-0.681379154372205,-0.6812582600150762,-0.6935388633819881,-0.34083124361080375,-0.40992983162719077,-0.6824292742328086,-0.6770482593858999,-0.6925752734296949,-0.39057608753543016,10.261441122104685,10.261441122104685,14.351021412371992,14.351021412371992,15.92563511115084,15.92563511115084,14.881953477525059,14.881953477525059,5.416525447794328,5.416525447794328,8.973648436261058,14.758935170198924,14.755438184027213,15.113894802716473,7.416414585835369,8.502320723934488,14.789337496633266,14.634054225105587,15.08553306204199,8.17762300037765,199.54624428733604,199.54624428733604,0.0,221.71804920815114,0.0,199.54624428733604,221.71804920815114,0,0
+2017/01/08 14:00:00,199.61825378810641,0,1190.9974541457154,0,0,0,0.0,0.0,13.146986240304685,0.0,124.7641830973959,0,39.380909295966944,0.3104924543396948,18.583707497644877,0,0,193.71224694254,553.6558007963738,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,219.77651068525591,0.0,0.0,0.0,0.0,0.0,2049.337999592928,0.0,5648.925970300812,0.0,6674.378481299246,0.0,6259.195501114261,0.0,0.0,0.0,882.7365056337118,0.0,5014.455602483769,0.0,5880.945156855568,0.0,5663.537509795795,0.0,0.0,0,0,0,0,0,0,0,0,0.06340958663847215,0.0020062351211132838,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.43702667198766343,-0.43702667198766343,-0.5602957380986503,-0.5602957380986503,-0.7170585925196861,-0.7170585925196861,-0.6731635665412654,-0.6731635665412654,-0.1541083135939867,-0.1541083135939867,-0.383173617763853,-0.6134931687915454,-0.6696218892342098,-0.682396487009299,-0.3361436019178148,-0.35115135266768627,-0.6048589021683349,-0.6660517728068356,-0.6822811802233971,-0.3785369972840758,8.983886947938373,8.983886947938373,11.57393487653485,11.57393487653485,15.818588354472226,15.818588354472226,14.522729958742573,14.522729958742573,5.492141350302219,5.492141350302219,8.057665942953108,12.894915564731633,14.421804769918907,14.788387542825646,7.350112975418909,7.565672084427348,12.672163493524565,14.320618816713264,14.785047094898133,7.983721366612841,199.61825378810641,199.61825378810641,0.0,221.79805976456268,0.0,199.61825378810641,221.79805976456268,0,0
+2017/01/08 15:00:00,181.9361452260637,0,1235.542148373832,0,0,0,0.0,0.0,13.55104264140629,0.0,111.01081017850728,0,39.380909295966944,0.513855248191355,14.047552659537526,0,0,287.8736237899467,539.529470689628,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,647.4959266757078,0.0,8.251947333330815,0.0,0.0,0.0,2476.252170774893,0.0,6535.045179031825,0.0,5754.122105899411,0.0,6798.259199605997,0.0,545.0684139249522,0.0,1755.5773678219198,0.0,6070.684305763705,0.0,5201.636513000896,0.0,6361.857139140308,0.0,6642.33564856203,0,0,0,0,0,0,0,0,0.06578117915372907,0.0020812706551596614,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5704317167495475,-0.5704317167495475,-0.642472015928695,-0.642472015928695,-0.726801848736314,-0.726801848736314,-0.7052263632637301,-0.7052263632637301,-0.20232601031539446,-0.20232601031539446,-0.471081952537531,-0.660713014418113,-0.6725824310924883,-0.6883349209254497,-0.34590760843144464,-0.46451382274557756,-0.6681655983511445,-0.6739581669118787,-0.6934507282601045,-0.3921587871896177,11.816158999546062,11.816158999546062,13.666178560005264,13.666178560005264,16.117498043863407,16.117498043863407,15.461090400900275,15.461090400900275,5.848913979497112,5.848913979497112,9.63386002268902,14.170335120930602,14.506132429121735,14.961201775568554,7.489267154995915,9.50461596093993,14.380463225423995,14.545447815565083,15.111299018566044,8.203574459366166,181.9361452260637,181.9361452260637,0.0,202.1512724734041,0.0,181.9361452260637,202.1512724734041,0,0
+2017/01/08 16:00:00,180.86086029453162,0,1231.0043424281598,0,0,0,0.0,0.0,14.698473260691076,0.0,108.75639138185811,0,39.380909295966944,0.5618789686615511,14.031232184899654,0,0,296.43861906167996,526.4266694722226,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.190088426857997,0.0,1109.992373496361,0.0,299.8567889137376,0.0,0.0,0.0,3243.2690380167355,0.0,7223.791506676872,0.0,5966.218189638146,0.0,7403.070386298092,0.0,3171.4111698028173,0.0,2409.825414587475,0.0,6699.093050577312,0.0,5206.402531764248,0.0,6836.967568342731,0.0,10227.143615961872,0,0,0,0,0,0,0,0,0.06553958300399836,0.0020736267213885898,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5828648906012716,-0.5828648906012716,-0.6732447012240442,-0.6732447012240442,-0.73004368385217,-0.73004368385217,-0.7197128210912425,-0.7197128210912425,-0.22986227651356758,-0.22986227651356758,-0.4952802513446116,-0.6683951017864174,-0.6756920438415079,-0.6942916697933353,-0.35394398090928275,-0.49854979407240857,-0.6793563058895355,-0.6795528198304315,-0.7029488457273515,-0.4025006074300682,12.119366701878604,12.119366701878604,14.525048370259498,14.525048370259498,16.217858662061687,16.217858662061687,15.899611443048059,15.899611443048059,6.096263674477328,6.096263674477328,10.126074620659267,14.386972329966554,14.595114736602014,15.136080375297581,7.606839853703022,10.194518437956233,14.700505534442243,14.706174043488573,15.39297059157201,8.375785366029021,180.86086029453162,180.86086029453162,0.0,200.95651143836847,0.0,180.86086029453162,200.95651143836847,0,0
+2017/01/08 17:00:00,198.1259804956639,0,1269.0721689106829,0,0,0,0.0,0.0,15.78742239379582,0.0,124.87761316689259,0,39.380909295966944,0.5240313479908688,14.124029088563358,0,0,275.12704293183384,532.5705433157755,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,535.0565438003212,0.0,0.0,0.0,0.0,0.0,3430.731621371902,0.0,6898.87262465361,0.0,5956.019219509767,0.0,7058.1106667590975,0.0,768.0044229005013,0.0,2668.559470003577,0.0,6425.125827155574,0.0,5250.599867599184,0.0,6525.8300886355955,0.0,7669.211548108802,0,0,0,0,0,0,0,0,0.06756634228302075,0.002137751972209101,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6065341121922603,-0.6065341121922603,-0.666652318202505,-0.666652318202505,-0.7193348453144611,-0.7193348453144611,-0.7136812765040148,-0.7136812765040148,-0.19131335933011578,-0.19131335933011578,-0.5082764519383399,-0.6719795306880105,-0.67618068165377,-0.6946753608950799,-0.3554569587881571,-0.51630255160209,-0.6859205490360344,-0.6810066900768119,-0.7043462421527169,-0.40390919039096185,12.71512860194602,12.71512860194602,14.337601149466394,14.337601149466394,15.888054813907019,15.888054813907019,15.71593100129833,15.71593100129833,5.758874801080395,5.758874801080395,10.400865210679271,14.488928731313194,14.609135270947206,15.147397358106005,7.629282134997723,10.574215630328311,14.890757254490254,14.748163306822846,15.434739731027094,8.39959498054435,198.1259804956639,198.1259804956639,0.0,220.13997832851544,0.0,198.1259804956639,220.13997832851544,0,0
+2017/01/08 18:00:00,221.83309191266176,0,1290.9049633609031,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,129.38645076019097,0,39.380909295966944,0.5173146149067877,18.52124928905918,0,0,267.86173501483756,561.6686456829917,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,545.0246813103644,0.0,21.02355237371275,0.0,0.0,0.0,4183.209508145743,0.0,6872.657822305908,0.0,6492.665447390275,0.0,6971.262550473079,0.0,0.0,0.0,3429.804019787824,0.0,6393.080584936037,0.0,5779.498373587936,0.0,6435.138527813758,0.0,5410.064286376161,0,0,0,0,0,0,0,0,0.06872873643124687,0.002174529312803416,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5850638243225144,-0.5850638243225144,-0.6770583710339859,-0.6770583710339859,-0.7185394418000032,-0.7185394418000032,-0.7164134681199357,-0.7164134681199357,-0.16542463485471073,-0.16542463485471073,-0.5203607578766897,-0.6790786217788041,-0.6759272319527656,-0.6957328276801349,-0.35202424957717265,-0.532689484594224,-0.6932716846597095,-0.68110900954627,-0.7060671028596766,-0.3996594941606543,12.173690117043648,12.173690117043648,14.634344848382852,14.634344848382852,15.86375540428952,15.86375540428952,15.798941097834302,15.798941097834302,5.567161199403074,5.567161199403074,10.66292685675377,14.692498493552506,14.601861723181429,15.17862029298837,7.578504323974755,10.936801428288135,15.10602680178819,14.751121841903753,15.486293204433323,8.32801968626319,221.83309191266176,221.83309191266176,0.0,246.48121323629084,0.0,221.83309191266176,246.48121323629084,0,0
+2017/01/08 19:00:00,212.23748480191438,0,1269.0552095672545,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,115.6330778413024,0,39.380909295966944,0.4788246707234343,22.71750504138373,0,0,243.51557187203582,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,259.13063685501635,0.0,0.0,0.0,0.0,0.0,4629.527643031879,0.0,6149.779331248303,0.0,6763.343944899471,0.0,6230.548448020167,0.0,0.0,0.0,4247.028716134149,0.0,5901.078894228277,0.0,6394.346352801721,0.0,5924.5876554143415,0.0,0.0,0,0,0,0,0,0,0,0,0.06756543935501472,0.002137723404196383,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6249729218085829,-0.6249729218085829,-0.6728632069997279,-0.6728632069997279,-0.7184287229345968,-0.7184287229345968,-0.7102028916569996,-0.7102028916569996,-0.1657414737186291,-0.1657414737186291,-0.5211212214621349,-0.6714081206632698,-0.6661432011975339,-0.6870450511300319,-0.3397061889389572,-0.5359190795227101,-0.6856617061825584,-0.6717064993685812,-0.6974893472257893,-0.3838475816544609,13.196087634569139,13.196087634569139,14.514149709338042,14.514149709338042,15.860375126459786,15.860375126459786,15.61071537924279,15.61071537924279,5.5693384518892515,5.5693384518892515,10.679629654926288,14.472638131721553,14.323203237570965,14.923535682851693,7.400416786612155,11.009632601911122,14.883219911644588,14.48114298850895,15.23059031251249,8.068490684698844,212.23748480191438,212.23748480191438,0.0,235.81942755768264,0.0,212.23748480191438,235.81942755768264,0,0
+2017/01/08 20:00:00,200.3433558412147,0,1226.7683243814863,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,104.13412371906301,0,39.380909295966944,0.458969235156864,22.342185638490008,0,0,236.71903919881174,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.99752492695717,0.0,17.832422439681856,0.0,0.0,0.0,5274.4430648183425,0.0,5962.433561156455,0.0,7276.7640134110125,0.0,6026.527616570254,0.0,0.0,0.0,4868.7399448209035,0.0,5680.003495081859,0.0,6853.144154724226,0.0,5685.676334204375,0.0,0.0,0,0,0,0,0,0,0,0,0.06531405426554666,0.002066491149310477,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6157932576618999,-0.6157932576618999,-0.6870205617257745,-0.6870205617257745,-0.7258994933534793,-0.7258994933534793,-0.7211159273327578,-0.7211159273327578,-0.18949421026005941,-0.18949421026005941,-0.522768215033589,-0.6655698510102054,-0.6596679865934902,-0.6798702708815042,-0.33094399448616757,-0.5393096509836968,-0.6797610198487365,-0.6656041960739075,-0.6902460184101419,-0.3714761640584461,12.954800410930574,12.954800410930574,14.922821251997163,14.922821251997163,16.089643367138535,16.089643367138535,15.942565288145232,15.942565288145232,5.744489349102551,5.744489349102551,10.715889968673295,14.307002239936295,14.141062545991986,14.715334552331697,7.277661575187224,11.08658012184587,14.7121814638937,14.307972318029456,15.017140838195274,7.872877790771938,200.3433558412147,200.3433558412147,0.0,222.60372871246076,0.0,200.3433558412147,222.60372871246076,0,0
+2017/01/08 21:00:00,200.760578497636,0,1158.6972024568297,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,0.46101011572189765,18.475389960041326,0,0,245.7424343901005,558.0512429412878,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.318706941931534,0.0,730.7832467503721,0.0,176.66353092790047,0.0,0.0,0.0,5586.749678948988,0.0,5853.783901256546,0.0,7463.517156395032,0.0,5910.051931063734,0.0,0.0,0.0,5283.589926866817,0.0,5629.797202821159,0.0,7125.847607988647,0.0,5627.6734364851745,0.0,0.0,0,0,0,0,0,0,0,0,0.06168989731354412,0.0019518253495949033,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6269874912074678,-0.6269874912074678,-0.7145227709457325,-0.7145227709457325,-0.7397607397429686,-0.7397607397429686,-0.7371622224230736,-0.7371622224230736,-0.23123532594915655,-0.23123532594915655,-0.5275971695950212,-0.663266308465323,-0.6575266035877243,-0.676782736202901,-0.32585631070786925,-0.5460845119222809,-0.6776972236050925,-0.6642269724252855,-0.6873759602975321,-0.3638487758320826,13.249529824339035,13.249529824339035,15.741463209723307,15.741463209723307,16.521384531960962,16.521384531960962,16.439818987041107,16.439818987041107,6.109429118066231,6.109429118066231,10.822881327852897,14.24205518837391,14.081227470096138,14.626424291219294,7.207880179880121,11.241824519549397,14.652715357773914,14.269112615649135,14.933191857816738,7.755528725741044,200.760578497636,200.760578497636,0.0,223.06730944181777,0.0,200.760578497636,223.06730944181777,0,0
+2017/01/08 22:00:00,187.46091319723357,0,1213.9497899256262,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,0.5803650200922456,23.318580267455552,0,0,309.4689268955639,585.0676904171652,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,185.8388764439223,0.0,576.3644374318374,0.0,1613.595650405598,0.0,730.9191065076809,0.0,0.0,0.0,4456.847301015532,0.0,7001.830990425919,0.0,6242.892493894378,0.0,7051.878771760353,0.0,2172.4097537410853,0.0,4152.248829347385,0.0,6781.854293868029,0.0,5913.205443445268,0.0,6772.7714568438805,0.0,7699.288917521702,0,0,0,0,0,0,0,0,0.06463158599634274,0.0020448983289924907,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6972347222301863,-0.6972347222301863,-0.7491653451904309,-0.7491653451904309,-0.7663491988944262,-0.7663491988944262,-0.7627467055132926,-0.7627467055132926,-0.3207180575660329,-0.3207180575660329,-0.5479538601141279,-0.6834935936169533,-0.6721244754539891,-0.6953716673345405,-0.34776710575199793,-0.5717493243010506,-0.7012535370550976,-0.6821532350894987,-0.7090546898152646,-0.3907372364848172,15.2230484832305,15.2230484832305,16.819009452953892,16.819009452953892,17.37260352789069,17.37260352789069,17.255499992064344,17.255499992064344,7.138519307598202,7.138519307598202,11.285010335304833,14.820199583172482,14.493063277839738,15.167951183270446,7.516227503253674,11.847973772344247,15.342409783533853,14.781341185935972,15.5760986018484,8.180260457482248,187.46091319723357,187.46091319723357,0.0,208.28990355248175,0.0,187.46091319723357,208.28990355248175,0,0
+2017/01/08 23:00:00,131.49352133769068,0,1129.2808050382966,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,0.7173170488765108,18.54434421190733,0,0,407.8979412743093,561.6762774575386,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2226.892584363125,0.0,1764.1380344061795,0.0,3456.2369090438574,0.0,1888.2525550758237,0.0,0.0,0.0,4595.981086183778,0.0,7972.014120626075,0.0,6326.858313903931,0.0,8015.499471976482,0.0,10243.647965636676,0.0,4271.750965413183,0.0,7757.512190337466,0.0,6006.834778060097,0.0,7740.005501288827,0.0,16003.196839547409,0,0,0,0,0,0,0,0,0.06012374652605975,0.001902273430376051,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.785388637228678,-0.785388637228678,-0.8166137834314985,-0.8166137834314985,-0.8369946296796928,-0.8369946296796928,-0.8263657283641342,-0.8263657283641342,-0.3764499985211566,-0.3764499985211566,-0.5732877557434618,-0.7090715541435831,-0.6919797963237995,-0.7192710884959926,-0.3755292002598141,-0.6022831031687763,-0.729671501086013,-0.7046535751491183,-0.7355924531435152,-0.42321064935461833,18.000693631882342,18.000693631882342,19.064079442734865,19.064079442734865,19.78032035432102,19.78032035432102,19.40461614593187,19.40461614593187,7.95073747014402,7.95073747014402,11.885215834944233,15.576606627856478,15.068026194380693,15.886106052194009,7.936243832610671,12.606338060804973,16.20631368010892,15.443937428838183,16.390685547795158,8.73441262231195,131.49352133769068,131.49352133769068,0.0,146.1039125974341,0.0,131.49352133769068,146.1039125974341,0,0
+2017/01/09 00:00:00,89.274521590538,0,1028.0749370467786,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.7898836321349859,9.541681697110455,0,0,481.2723952077234,493.56701307023883,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3705.2771446381093,0.0,2600.1810450843614,0.0,4749.080642085579,0.0,2702.1179020914105,0.0,0.0,0.0,5109.067350960435,0.0,8359.78645422187,0.0,6805.770943607095,0.0,8398.228241223502,0.0,13152.201404742409,0.0,4806.058111850917,0.0,8171.914484447424,0.0,6527.178565781952,0.0,8147.804089595935,0.0,18932.202846460248,0,0,0,0,0,0,0,0,0.0547354711503302,0.0017317921534257342,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.863099695900916,-0.863099695900916,-0.8873237067861293,-0.8873237067861293,-0.9137992102011273,-0.9137992102011273,-0.8962938176064821,-0.8962938176064821,-0.5163100688487403,-0.5163100688487403,-0.5967194637329393,-0.7293425537030161,-0.7090944893618912,-0.7385080351471098,-0.39968105294571327,-0.630019320056089,-0.7519488727952117,-0.7234743241809947,-0.7567767711935658,-0.4492746475837647,20.723068540446675,20.723068540446675,21.62310278723912,21.62310278723912,22.63422531222632,22.63422531222632,21.96248765405393,21.96248765405393,10.574379296452108,10.574379296452108,12.46514004736288,16.196114802502066,15.57729755482869,16.482026872566408,8.328380838867758,13.33028963350398,16.90782598393116,16.014954755704906,17.062660690876314,9.211903620348693,89.274521590538,89.274521590538,0.0,99.19391287837556,0.0,89.274521590538,99.19391287837556,0,0
+2017/01/09 01:00:00,39.905049513528496,0,674.899826582013,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.3366699312483518,0.22993358543446524,9.541125000422499,0,0,117.87770902081076,503.7865887923861,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,409.3370619420609,0.0,606.1609237299045,0.0,1049.0222953553723,0.0,673.5932083593407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03593216667002726,0.0011368687066533728,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8866850926394958,-0.8866850926394958,-0.9115883991875082,-0.9115883991875082,-0.9329968482019191,-0.9329968482019191,-0.9198790935048347,-0.9198790935048347,-0.2554989751414301,-0.2554989751414301,-0.9592103196460128,-1.0863803150037408,-1.071134107502708,-1.0992419539087606,-0.20287994261702746,-0.8901986229222989,-1.074698596798379,-1.052975143801472,-1.0824550775635875,-0.35668472258144396,21.599066075464904,21.599066075464904,22.54870520060655,22.54870520060655,23.38510044551579,23.38510044551579,22.870427068675852,22.870427068675852,6.3551389797765125,6.3551389797765125,24.434072201845623,29.89446700039052,29.208677011659887,30.479264031246743,5.853576881598741,21.73151785007822,29.368282171591474,28.40258267292002,29.717130038723496,7.647565386900482,39.905049513528496,39.905049513528496,0.0,44.33894390392055,0.0,39.905049513528496,44.33894390392055,0,0
+2017/01/09 02:00:00,23.722141210643628,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250457869658345,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0909020321006966,-1.0909020321006966,-1.2064434608090264,-1.2064434608090264,-1.2333950294511833,-1.2333950294511833,-1.2292132014673094,-1.2292132014673094,-0.10455176805272308,-0.10455176805272308,-1.0815125614695902,-1.318133572762595,-1.3213087071659606,-1.3401666781382002,-0.14144909521796437,-1.0830075515033588,-1.3344870658284091,-1.3273174876217697,-1.3469920678872742,-0.4360059922938185,30.09941348879987,30.09941348879987,35.56293820617242,35.56293820617242,36.895184389544156,36.895184389544156,36.687164115513575,36.687164115513575,5.226389095518229,5.226389095518229,29.674628181418655,41.20483037193045,41.3695167588974,42.351871787744656,5.414540486372843,29.742057697962395,42.05525951620049,41.68174917042845,42.70914663633117,8.965176284334717,23.722141210643628,23.722141210643628,0.0,26.357934678492917,0.0,23.722141210643628,26.357934678492917,0,0
+2017/01/09 03:00:00,28.396925946127716,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5775628596548179,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.1158293322134352,-1.1158293322134352,-1.234186499037944,-1.234186499037944,-1.2583202102775108,-1.2583202102775108,-1.2588381645407487,-1.2588381645407487,-0.030062698495605035,-0.030062698495605035,-1.1136470881338634,-1.3705882497659048,-1.3758376574314444,-1.395334655122701,-0.12177626232275689,-1.1617302885153564,-1.4305097839164964,-1.4254056218530722,-1.4454927354942069,-0.422947212041434,31.24177132459411,31.24177132459411,36.934608080849145,36.934608080849145,38.14463058123647,38.14463058123647,38.17076419368474,38.17076419368474,5.018709164038967,5.018709164038967,31.140927407875523,43.95089591558593,44.22846906445805,45.26331610199754,5.307179993638869,33.39887231793517,47.14428702354347,46.87033625940074,47.95021377071085,8.729735353098235,28.396925946127716,28.396925946127716,0.0,31.552139940141906,0.0,28.396925946127716,31.552139940141906,0,0
+2017/01/09 04:00:00,23.721921058355914,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248256346781207,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.1205036995863111,-1.1205036995863111,-1.2343131287296736,-1.2343131287296736,-1.254267671775604,-1.254267671775604,-1.260306400776752,-1.260306400776752,0.008758647999207511,0.008758647999207511,-1.1218877452960936,-1.3841148692673941,-1.3911927308214045,-1.4120801600439634,-0.10276694396617694,-1.2123213426356467,-1.487991108907566,-1.4838527431095896,-1.5063150951592001,-0.3906369849758808,31.4583120892748,31.4583120892748,36.940917157713116,36.940917157713116,37.94039221482458,37.94039221482458,38.24488139462688,38.24488139462688,5.0015880218658,5.0015880218658,31.522567128416327,44.66706639853622,45.042977409178064,46.156686873299144,5.218722014416571,35.85176580309229,50.248231636896385,50.02380094027159,51.24329449741835,8.178619552728236,23.721921058355914,23.721921058355914,0.0,26.357690064839904,0.0,23.721921058355914,26.357690064839904,0,0
+2017/01/09 05:00:00,44.260752127507715,0,407.81105465266205,0,0,0,0.0,0.024822692558556222,4.633261998087618,9.319298099999997,25.555573451546493,0,2.5124093085256707,1.6903135060090142,0.5250730707803545,0,0,301.30006747594246,17.785105895359287,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.968930493532942,1295.0250152595502,0.35090589389530646,1239.5174102879469,1.1656042069556254,2044.8672028085903,0.9974019033076046,1334.4887077192489,0.0,0.0,3.638374523857199,3823.703735202519,1.6172129934067998,3357.447774007666,3.394906267823368,5395.573058140481,1.8917926287343787,3451.718673558218,0.0,0.0,3.1307647321414906,4234.255595439577,2.7002072228623697,3575.55576833577,3.0100553426983265,5816.573750043689,1.9565363493408083,3633.9227065165264,0.0,0.0,0,0,0,0,0,0,0,0,0.02171216261807465,0.0006869576906100751,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.965630681733429,-0.965630681733429,-1.0114447219298817,-1.0114447219298817,-1.0207760593631994,-1.0207760593631994,-1.0221667414524354,-1.0221667414524354,0.1530208488962831,0.1530208488962831,-0.7894948813511863,-0.9111456826521934,-0.9057280563834045,-0.922760213780602,-0.06604147992055008,-0.8438463367525026,-0.9721205023372477,-0.9557215653398784,-0.9790475100704081,-0.3869273277841481,24.69511447431225,24.69511447431225,26.60401585105315,26.60401585105315,27.00258006315947,27.00258006315947,27.06225767658826,27.06225767658826,5.485213191186531,5.485213191186531,18.13817567298551,22.531603442419012,22.322966892432262,22.982876801226922,5.09030240358851,20.025014869754628,24.960613861606788,24.292901192897332,25.245801128353634,8.118202291105263,44.260752127507715,44.260752127507715,0.0,49.17861347500857,0.0,44.260752127507715,49.17861347500857,0,0
+2017/01/09 06:00:00,76.84310754735428,0,360.2599454929509,0,0,0,0.0,0.018642453095081578,5.555297838843742,9.319298099999997,57.911447091112116,0,2.071915266501874,1.441543065444927,0.5249637323564874,0,0,147.3178304176861,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174.42877911815995,0.0,337.38207738285166,0.0,545.9007126116928,0.0,405.55480528882464,0.0,0.0,2.193703244468793,2749.778023036129,1.9351560479971113,2692.927804056856,3.1614512745200045,4431.972702105826,1.7504278957329689,2808.0560375210575,0.0,0.0,2.3888456698725804,3334.3969210801115,1.9121702540758179,3029.069259889411,2.8649181443224734,4931.830788118023,2.4357805640918286,3094.282190983146,0.0,0.0,0,0,0,0,0,0,0,0,0.01918050634498807,0.0006068578508396096,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8486729453321658,-0.8486729453321658,-0.8935365632549487,-0.8935365632549487,-0.8991270546392742,-0.8991270546392742,-0.902869822453308,-0.902869822453308,0.4764516943372249,0.4764516943372249,-0.7345327945931105,-0.8272691353471099,-0.8204062611286466,-0.8357283373153657,0.05151285041684674,-0.7552250135236003,-0.8458867494845949,-0.8276215910471203,-0.8503226883433591,-0.2731873801022472,20.19856248821749,20.19856248821749,21.857817305658557,21.857817305658557,22.070364856839916,22.070364856839916,22.213373169429175,22.213373169429175,9.740904355676648,9.740904355676648,16.35757829513092,19.436365166941812,19.19603726776515,19.735312043834725,5.0549368424382095,17.01278575928025,20.098262428368415,19.448761031789346,20.25810375055653,6.5498662687020754,76.84310754735428,76.84310754735428,0.0,85.38123060817142,0.0,76.84310754735428,85.38123060817142,0,0
+2017/01/09 07:00:00,102.92134492661194,0,828.3042795790511,0,0,0,0.2148214031303054,0.015605963391193654,11.110595677687485,13.929299233552332,73.80580873715317,0,1.9963826770397057,1.323874358713178,0.5249568759445835,0,0,125.90701540089971,471.70997284661456,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,683.2295462923375,0.0,0.0,0.0,0.0,0.0,0.0,36.3712592309334,0.0,297.1354539534255,0.0,456.6464709676353,0.0,342.68744308301837,0.0,0.0,1.6989862617912572,2618.956903969712,2.4836269914805293,2451.39125131715,2.4791258498438156,4001.364978570362,1.2539952442140625,2535.682091254996,0.0,0.0,1.5009698745679998,2803.1525830931214,2.1657317512190275,2478.3019334317905,2.47431264736133,4016.2876949657834,1.5492147707156314,2514.9111342802335,0.0,0.0,0,0,0,0,0,0,0,0,0.0440995333752906,0.001395278496083683,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7778761313153707,-0.7778761313153707,-0.8244040047683585,-0.8244040047683585,-0.8263797928261013,-0.8263797928261013,-0.8333081602632075,-0.8333081602632075,0.7294979615322753,0.7294979615322753,-0.7169650508542055,-0.8031247727826925,-0.7960794191864302,-0.8104113694018689,0.13544887007974554,-0.7326651991601805,-0.8164359136781468,-0.7980705058112126,-0.819811200518787,-0.16654735970859808,17.751020610510537,17.751020610510537,19.335791948985175,19.335791948985175,19.405110160100634,19.405110160100634,19.649477353307432,19.649477353307432,16.200932578262424,16.200932578262424,15.815738432798966,18.59964628996704,18.36012743343852,18.849574028568213,5.380089344964404,16.299345834056226,19.057905391252334,18.427604856043544,19.175292340410863,5.574895200243162,102.92134492661194,102.92134492661194,0.0,114.3570499184577,0.0,102.92134492661194,114.3570499184577,0,0
+2017/01/09 08:00:00,165.02261517074018,0,1161.0183786676869,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.7485373554992899,27.087283463653517,0,0,295.185327278917,599.655407544689,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3403.1482987602,0.0,2253.6744508701263,0.0,4089.4935656376456,0.0,2327.7735244136084,0.0,0.0,0.0,6907.557228054637,0.0,8550.643139896576,0.0,8411.25473277151,0.0,8579.173395328537,0.0,6943.536263198903,0.0,7093.93688865103,0.0,8552.662916228064,0.0,8409.326318653162,0.0,8514.156831753735,0.0,11866.919441131355,0,0,0,0,0,0,0,0,0.06181347845432086,0.001955735370745918,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8145154845619853,-0.8145154845619853,-0.8506129565639545,-0.8506129565639545,-0.8611287394382577,-0.8611287394382577,-0.8593035761409172,-0.8593035761409172,0.08915351568375769,0.08915351568375769,-0.7025780359656761,-0.7878495707754348,-0.7726077000795427,-0.7947947564687707,-0.23231020490085502,-0.7208735011399618,-0.8046356034043501,-0.7786412177196969,-0.8076760316342692,-0.36383509675554504,18.991330061799545,18.991330061799545,20.268591599800104,20.268591599800104,20.650902572390706,20.650902572390706,20.58421818618578,20.58421818618578,5.164593295525847,5.164593295525847,15.381900979944106,18.08300271118516,17.57736079872501,18.316679669530856,6.119790755396679,15.935137742486205,18.65128296396169,17.776337935429495,18.755490051508204,7.755320497195655,165.02261517074018,165.02261517074018,0.0,183.35846130082243,0.0,165.02261517074018,183.35846130082243,0,0
+2017/01/09 09:00:00,167.24229027175565,0,1309.4799977620942,0,0,0,0.0,0.0,13.42751566271981,0.0,83.2008179303116,0,39.380909295966944,0.703329704991837,27.097742475311204,0,0,390.4114176045079,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2387.2668249563562,0.0,1729.829057649467,0.0,3241.688543833602,0.0,1741.2099606777497,0.0,0.0,0.0,6189.61143779128,0.0,8065.01110106743,0.0,7745.067956958355,0.0,8020.963894405316,0.0,2302.1337442611566,0.0,6304.118616307364,0.0,8053.560485010764,0.0,7706.372715574738,0.0,7919.138102538955,0.0,10170.551478795538,0,0,0,0,0,0,0,0,0.0697176850214181,0.0022058189568424013,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7941115009869227,-0.7941115009869227,-0.8364493438907903,-0.8364493438907903,-0.8466260179746079,-0.8466260179746079,-0.8352451548387211,-0.8352451548387211,-0.269185952979901,-0.269185952979901,-0.6786966581820661,-0.7723158346190367,-0.7538681638004028,-0.7730997599593097,-0.32235731942814927,-0.695480913747191,-0.7876801173240517,-0.7590163925908153,-0.7827218989454666,-0.412147459753596,18.293600208015732,18.293600208015732,19.760930835637453,19.760930835637453,20.12484379603228,20.12484379603228,19.71815577921268,19.71815577921268,6.50466238379795,6.50466238379795,14.681489996661838,17.567774802666463,16.969259781661364,17.593530178143098,7.1605259955805,15.17117785897257,18.07732687774022,17.13482579653966,17.91179164152645,8.54054966494408,167.24229027175565,167.24229027175565,0.0,185.82476696861738,0.0,167.24229027175565,185.82476696861738,0,0
+2017/01/09 10:00:00,182.52055110424675,0,1326.4456124985522,0,0,0,0.0,0.0,11.887960008229951,0.0,106.27511244621549,0,39.380909295966944,0.6631748469385943,20.881419304441533,0,0,372.6344103408202,581.1625007760189,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1611.5530854382264,0.0,1259.4306008119343,0.0,2485.8743538889807,0.0,1276.2836942272704,0.0,0.0,0.0,5848.354412379738,0.0,7775.070965728431,0.0,7366.970938410144,0.0,7719.6693184174455,0.0,1730.3368351211936,0.0,5811.5580800056505,0.0,7672.296190236585,0.0,7198.100966033353,0.0,7534.251164271519,0.0,9090.706568538251,0,0,0,0,0,0,0,0,0.07062094691653106,0.0022343975335782965,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7784156155510688,-0.7784156155510688,-0.8186614755287005,-0.8186614755287005,-0.8266746584156974,-0.8266746584156974,-0.8199045074333215,-0.8199045074333215,-0.29032286759384623,-0.29032286759384623,-0.6613784576457155,-0.7573218803656927,-0.7349805657904197,-0.7582241110969834,-0.3347259091169562,-0.6774560216879777,-0.770772059934576,-0.7398923917674146,-0.767090020793277,-0.41368049778990923,17.768869987877252,17.768869987877252,19.135252957317036,19.135252957317036,19.41546922379146,19.41546922379146,19.17854420985624,19.17854420985624,6.751081086817663,6.751081086817663,14.188999698772847,17.08020545331135,16.37156227044568,17.109272375007208,7.330245028069143,14.645777406910184,17.51713164549689,16.525524705936604,17.39675355404829,8.567100354368918,182.52055110424675,182.52055110424675,0.0,202.80061233805193,0.0,182.52055110424675,202.80061233805193,0,0
+2017/01/09 11:00:00,213.03328991691762,0,1382.6201056865125,0,0,0,0.0,0.0,17.146892480886187,0.0,133.89528835348938,0,39.380909295966944,0.6433755020583275,18.534849082062436,0,0,359.5326213244039,561.7129016990349,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,654.7074179531712,0.0,743.0463732923457,0.0,1611.7768167352467,0.0,759.62423647137,0.0,0.0,0.0,4543.006764475652,0.0,7890.812003046015,0.0,6015.656238105508,0.0,7828.176691271882,0.0,5047.926265669441,0.0,4296.804508071831,0.0,7658.529656896731,0.0,5646.508911444115,0.0,7521.096167877905,0.0,12094.379050159081,0,0,0,0,0,0,0,0,0.07361171854267967,0.0023290234630898438,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7371021494074865,-0.7371021494074865,-0.7810731194548256,-0.7810731194548256,-0.7832961177896136,-0.7832961177896136,-0.781334688884999,-0.781334688884999,-0.23463580325987152,-0.23463580325987152,-0.6497395304613021,-0.7493067739710871,-0.723050956862819,-0.7499340374660481,-0.34833284834629485,-0.6633084164331281,-0.760881984955994,-0.7258799898250654,-0.7573018536406834,-0.41805237932201345,16.437936767466766,16.437936767466766,17.856976947230095,17.856976947230095,17.930909040690793,17.930909040690793,17.865665269171814,17.865665269171814,6.142375008648244,6.142375008648244,13.865314340909606,16.823514146340727,16.001942140011792,16.843503644446074,7.52445922015184,14.24324033592437,17.195102658654008,16.089041702255614,17.079560652715145,8.643370128943062,213.03328991691762,213.03328991691762,0.0,236.7036554632418,0.0,213.03328991691762,236.7036554632418,0,0
+2017/01/09 12:00:00,228.69794952018694,0,1335.5108198257967,0,0,0,0.0,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.4316584928738449,20.725628159936598,0,0,239.73105687201365,581.1696515218931,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,128.92046773964952,0.0,0.0,0.0,0.0,0.0,4870.234644840644,0.0,6515.944536229519,0.0,6641.346856283345,0.0,6498.889427359854,0.0,0.0,0.0,4474.278713232194,0.0,6247.971605629065,0.0,6241.358359880655,0.0,6171.840983362279,0.0,882.1146789556249,0,0,0,0,0,0,0,0,0.07110358526929307,0.0022496678746330026,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6163215242207704,-0.6163215242207704,-0.7150326156637247,-0.7150326156637247,-0.7291958184273193,-0.7291958184273193,-0.7240236512611424,-0.7240236512611424,-0.12386981757444673,-0.12386981757444673,-0.5976656187912326,-0.7153001308598615,-0.6936777783801191,-0.7202996669541654,-0.3298083941954995,-0.6011643235243025,-0.7209683136198994,-0.6925077782774395,-0.7231854169395231,-0.3874797371306892,12.968586718741108,12.968586718741108,15.75694751009857,15.75694751009857,16.191566836375216,16.191566836375216,16.031850366748685,16.031850366748685,5.317839960545072,5.317839960545072,12.48905743928124,15.765076592632852,15.1179868535269,15.917566475425247,7.261990769367131,12.577836958957931,15.938042341963694,15.083547952749072,16.006074068361713,8.127161837138118,228.69794952018694,228.69794952018694,0.0,254.1088328002077,0.0,228.69794952018694,254.1088328002077,0,0
+2017/01/09 13:00:00,208.24930670912588,0,1278.2920181246263,0,0,0,0.0,0.0,17.02830042034,0.0,129.49988082968767,0,39.380909295966944,0.391928121900682,18.51631283877627,0,0,237.44811764110457,561.724141564176,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6549.400934276149,0.0,5656.419021608387,0.0,7908.628959961595,0.0,5646.631691237381,0.0,0.0,0.0,5864.184119269165,0.0,5168.223644480924,0.0,7173.3920202000045,0.0,5109.548671582934,0.0,0.0,0,0,0,0,0,0,0,0,0.06805721388437487,0.002153282807510214,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5916409488491122,-0.5916409488491122,-0.6708889362607321,-0.6708889362607321,-0.6990831556020038,-0.6990831556020038,-0.6839585423009193,-0.6839585423009193,-0.07362153767214134,-0.07362153767214134,-0.588980439428077,-0.6846691668607239,-0.6661073361680355,-0.691148361426684,-0.30806950038761477,-0.5956344220021428,-0.6874720318912328,-0.6625320854928831,-0.6919407278203179,-0.3553667387787067,12.337426693490343,12.337426693490343,14.457848713183026,14.457848713183026,15.277861501389893,15.277861501389893,14.833697082499427,14.833697082499427,5.11222665565829,5.11222665565829,12.270967587703097,14.85434463566402,14.322189391927736,15.043607862056945,6.972543453798565,12.437759633120933,14.935996184837848,14.221402500443375,15.066878126404447,7.627941153601569,208.24930670912588,208.24930670912588,0.0,231.3881185656954,0.0,208.24930670912588,231.3881185656954,0,0
+2017/01/09 14:00:00,205.6191460625917,0,1203.2017805877867,0,0,0,0.0,0.0,16.903073550514318,0.0,129.2730206906943,0,39.380909295966944,0.311373979565359,16.31879334339642,0,0,218.35688532498432,541.2154888560011,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,128.69190736971402,0.0,0.0,0.0,0.0,0.0,5992.299813661668,0.0,5759.651726403177,0.0,7574.961104501575,0.0,5937.845965189941,0.0,0.0,0.0,5163.8041330916385,0.0,5184.046481634563,0.0,6774.547253418908,0.0,5350.252661019342,0.0,0.0,0,0,0,0,0,0,0,0,0.06405935401807399,0.00202679330807866,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5451546084241039,-0.5451546084241039,-0.6196009757139778,-0.6196009757139778,-0.6995930169761344,-0.6995930169761344,-0.6824146803885366,-0.6824146803885366,-0.0940055856318799,-0.0940055856318799,-0.5511909510024243,-0.6503802709351778,-0.6548161547733485,-0.6755708496330043,-0.30595935314797856,-0.5507858379306664,-0.6476637502009829,-0.6509331147091233,-0.6751351585112864,-0.34865730901572894,11.220398229247266,11.220398229247266,13.054442358886433,13.054442358886433,15.293006771296007,15.293006771296007,14.788914659176982,14.788914659176982,5.183003619642193,5.183003619642193,11.360152074819908,13.882980993828824,14.005776338276348,14.591638898070258,6.945513078729505,11.350723426440965,13.808202649968734,13.898238440008996,14.579148567652638,7.529186356827324,205.6191460625917,205.6191460625917,0.0,228.46571784732413,0.0,205.6191460625917,228.46571784732413,0,0
+2017/01/09 15:00:00,189.85358108406922,0,1216.7423870761925,0,0,0,0.0,0.0,17.037160639564938,0.0,115.5196477718057,0,39.380909295966944,0.42260015423827596,14.06128802003907,0,0,275.99231884498926,532.6110143369457,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,645.4217601835998,0.0,100.63805832514274,0.0,0.0,0.0,4188.563667855745,0.0,5981.2783985998685,0.0,6297.369939948207,0.0,6703.856228418361,0.0,0.0,0.0,3505.4924365523857,0.0,5424.264692117338,0.0,5656.660689087843,0.0,6218.97789338934,0.0,3041.354066477874,0,0,0,0,0,0,0,0,0.06478026593713421,0.002049602458680665,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4872849341198568,-0.4872849341198568,-0.5211034946053478,-0.5211034946053478,-0.7182314025246941,-0.7182314025246941,-0.7085901277021815,-0.7085901277021815,-0.1564215406610334,-0.1564215406610334,-0.5260204282330548,-0.6066099730092961,-0.6641489004561929,-0.6875949134933842,-0.32056591562944087,-0.5210130059003328,-0.5973940541575401,-0.6640674810301624,-0.6908903725044618,-0.36353613623158204,9.960647510349673,9.960647510349673,10.679240017910288,10.679240017910288,15.85435218814726,15.85435218814726,15.562108817706758,15.562108817706758,5.507042607447772,5.507042607447772,10.787835716035744,12.717077132127287,14.266912199765343,14.939583676766674,7.136482615292039,10.677251284469236,12.482188714047993,14.264617718862965,15.036037082484768,7.750771587677406,189.85358108406922,189.85358108406922,0.0,210.94842342674357,0.0,189.85358108406922,210.94842342674357,0,0
+2017/01/09 16:00:00,184.30152146819302,0,1257.4412531502148,0,0,0,0.0,0.0,18.108320288193177,0.0,108.75639138185811,0,39.380909295966944,0.5700996401927568,14.053825659527732,0,0,322.742363984383,526.5598352715745,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1020.1491153898345,0.0,354.82443601647543,0.0,0.0,0.0,4228.858898585815,0.0,6988.404034072684,0.0,5731.709965353825,0.0,7402.367963989862,0.0,3125.2360078540114,0.0,3599.4042694363216,0.0,6437.096820523245,0.0,5116.602886193683,0.0,6935.945177407532,0.0,9723.952078152819,0,0,0,0,0,0,0,0,0.06694710371283658,0.002118159695493364,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5916718582091948,-0.5916718582091948,-0.6285922209921734,-0.6285922209921734,-0.7277916803777791,-0.7277916803777791,-0.7251540773695949,-0.7251540773695949,-0.19997032956459732,-0.19997032956459732,-0.5784635619237756,-0.659638788949709,-0.6749030359971965,-0.7020850197405587,-0.33883946419729827,-0.5894590092148484,-0.6660597554803083,-0.6777093502990695,-0.7086701402231661,-0.38521346577368576,12.338200609588327,12.338200609588327,13.292225852189986,13.292225852189986,16.148093290522453,16.148093290522453,16.066659647790885,16.066659647790885,5.829227634268264,5.829227634268264,12.01126463912857,14.14024536184749,14.572497467117557,15.36719238532794,7.388128995238787,12.282899527173356,14.32084444978949,14.653064237411996,15.56451764457006,8.090488061071568,184.30152146819302,184.30152146819302,0.0,204.77946829799222,0.0,184.30152146819302,204.77946829799222,0,0
+2017/01/09 17:00:00,213.9643165433813,0,1310.804070739481,0,0,0,0.0,0.0,24.883914210492264,0.0,131.64086955684016,0,39.380909295966944,0.574663741224948,14.051984536402601,0,0,309.8417184211947,539.5877696552125,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,736.9243359472163,0.0,212.69223473067868,0.0,0.0,0.0,4613.007668936466,0.0,7177.6755305305105,0.0,6032.170864502075,0.0,7420.284984665102,0.0,2121.3199319790438,0.0,4038.328863570502,0.0,6773.533013690171,0.0,5439.309723802424,0.0,6966.018461745517,0.0,8748.919715041398,0,0,0,0,0,0,0,0,0.06978817964748386,0.0022080493576723138,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6117610572697411,-0.6117610572697411,-0.6535912659711822,-0.6535912659711822,-0.7216486806218964,-0.7216486806218964,-0.7222678082497566,-0.7222678082497566,-0.16182205542423436,-0.16182205542423436,-0.594144992874573,-0.679770301745345,-0.6797244616456026,-0.7093539632634407,-0.3439603392522414,-0.6085086293788345,-0.691292546230882,-0.6833973673215954,-0.7171126895047557,-0.3916125926359967,12.849970064523859,12.849970064523859,13.971783394678354,13.971783394678354,15.958896874422763,15.958896874422763,15.977891620500046,15.977891620500046,5.542699340740285,5.542699340740285,12.400257940794432,14.712449328163686,14.711126474773238,15.585115825835743,7.461191784820258,12.76592660340799,15.047840270928688,14.817407293351948,15.820236692244436,8.19460643203449,213.9643165433813,213.9643165433813,0.0,237.7381294926459,0.0,213.9643165433813,237.7381294926459,0,0
+2017/01/09 18:00:00,234.71175498573766,0,1314.8864229748551,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.5495062364420769,18.52491360636763,0,0,291.7841900714482,561.7276502403332,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,756.8768309852094,0.0,245.06502773827523,0.0,0.0,0.0,6260.729222255486,0.0,6984.090493861028,0.0,7564.201880108285,0.0,7162.99295532861,0.0,0.0,0.0,5615.280679713254,0.0,6511.517354025914,0.0,6876.89101634127,0.0,6647.113132060603,0.0,2843.068688664433,0,0,0,0,0,0,0,0,0.07000552710432069,0.0022149260797029563,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6304055979554769,-0.6304055979554769,-0.6743916209834989,-0.6743916209834989,-0.7216069181706535,-0.7216069181706535,-0.7234858016536424,-0.7234858016536424,-0.12177775747871343,-0.12177775747871343,-0.6008461613129817,-0.6843839456621416,-0.6800515041397712,-0.7089628747576814,-0.3358030972937097,-0.6161054518137004,-0.6944419853586132,-0.6833481212727051,-0.7164236256357549,-0.38029637676403777,13.340607685512836,13.340607685512836,14.557851913846022,14.557851913846022,15.957616202469197,15.957616202469197,16.0153076346338,16.0153076346338,5.3071875416691086,5.3071875416691086,12.56974164362255,14.846054767251502,14.720566254794903,15.573332953072764,7.345333261069115,12.962946358013866,15.140513180610355,14.815978428876434,15.799250305953905,8.011671813371251,234.71175498573766,234.71175498573766,0.0,260.7908388730418,0.0,234.71175498573766,260.7908388730418,0,0
+2017/01/09 19:00:00,218.4031148179672,0,1295.38478484627,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.48303234753709,25.243611773909425,0,0,269.84514715105126,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,653.0821289102126,0.0,190.15767041173677,0.0,0.0,0.0,7732.327853451067,0.0,6226.777538660589,0.0,8917.719428502229,0.0,6367.015033696543,0.0,0.0,0.0,7109.269385753919,0.0,5768.240207088955,0.0,8247.623933539178,0.0,5864.3666077551325,0.0,0.0,0,0,0,0,0,0,0,0,0.06896724544536144,0.0021820755717555035,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6462033731756419,-0.6462033731756419,-0.6903039626441833,-0.6903039626441833,-0.7265460002831369,-0.7265460002831369,-0.7288450006491656,-0.7288450006491656,-0.10866443464259712,-0.10866443464259712,-0.5973986384966271,-0.6746048016917199,-0.67193230165037,-0.6966770848650073,-0.3188089723177327,-0.6120655902641491,-0.683446493933774,-0.6740849709824054,-0.7026275901680307,-0.35784533012615444,13.768134716212515,13.768134716212515,15.018839369047598,15.018839369047598,16.109596737912184,16.109596737912184,16.180697215820175,16.180697215820175,5.244559462094458,5.244559462094458,12.48230463986809,14.563955461311238,14.487581720414738,15.206541401747444,7.113033853629162,12.857862770686665,14.81883279689228,14.549075709526221,15.38337995502495,7.664907575327092,218.4031148179672,218.4031148179672,0.0,242.6701275755191,0.0,218.4031148179672,242.6701275755191,0,0
+2017/01/09 20:00:00,210.9269268007699,0,1253.3171056865847,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.397248954528188,27.0977424753112,0,0,263.2678205039103,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,399.2184164241365,0.0,393.8505600588042,0.0,1375.4926514497013,0.0,647.1140518430402,0.0,0.0,0.0,8505.960988780025,0.0,6741.310612937605,0.0,9621.904314591067,0.0,6855.808990663587,0.0,0.0,0.0,7785.57903896652,0.0,6223.344145707931,0.0,8857.263033503099,0.0,6290.631199680627,0.0,0.0,0,0,0,0,0,0,0,0,0.0667275310470894,0.0021112125694038968,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6849285364814944,-0.6849285364814944,-0.7168947904099868,-0.7168947904099868,-0.7415077725362845,-0.7415077725362845,-0.7429712369188533,-0.7429712369188533,-0.13059562643966674,-0.13059562643966674,-0.6015591960071252,-0.6733114959423343,-0.6721116900914349,-0.6933942595929725,-0.3120697550889038,-0.6182288369179982,-0.6833702527749159,-0.6757939858154524,-0.7003950003983712,-0.34912705414051287,14.86188618962126,14.86188618962126,15.813598064913151,15.813598064913151,16.576385519268328,16.576385519268328,16.622559849382313,16.622559849382313,5.353319430978004,5.353319430978004,12.587890199487404,14.52695723326417,14.492698539058352,15.109636061479677,7.0243027847526065,13.018463146191692,14.816620557108266,14.59803891504717,15.316852143587454,7.536038106073633,210.9269268007699,210.9269268007699,0.0,234.36325200085545,0.0,210.9269268007699,234.36325200085545,0,0
+2017/01/09 21:00:00,211.85471464516547,0,1268.111198598898,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.4305630052061898,23.52042247380199,0,0,313.55226592876755,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,583.9816236577577,0.0,465.0338269948269,0.0,1448.5986860549874,0.0,696.3095471247868,0.0,0.0,0.0,8284.944953430173,0.0,6608.393643740859,0.0,9337.526641849832,0.0,6717.620901759679,0.0,0.0,0.0,7904.748971104825,0.0,6311.5552869143985,0.0,8906.194135905003,0.0,6372.9067510774785,0.0,0.0,0,0,0,0,0,0,0,0,0.06751517951182422,0.0021361332177918363,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7145814244495701,-0.7145814244495701,-0.7377158105438645,-0.7377158105438645,-0.7558875700168178,-0.7558875700168178,-0.7571373310065559,-0.7571373310065559,-0.1701593462255474,-0.1701593462255474,-0.6051791558565002,-0.671950026340915,-0.6712645113642559,-0.691292932286633,-0.30698591433088745,-0.6241644617717419,-0.6836504774004297,-0.6769847532631874,-0.699797189279897,-0.3432672149919207,15.743243982878937,15.743243982878937,16.457171412066913,16.457171412066913,17.0340683375116,17.0340683375116,17.07426416569278,17.07426416569278,5.6001333064319425,5.6001333064319425,12.68036781388939,14.488087231810695,14.46854612865117,15.047851604436858,6.958639496828155,13.174690444984236,14.824752887560294,14.632229069150199,15.299074791593057,7.451237338319942,211.85471464516547,211.85471464516547,0.0,235.39412738351717,0.0,211.85471464516547,235.39412738351717,0,0
+2017/01/09 22:00:00,198.17189369458225,0,1338.0500949639788,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.6641876862106886,25.611768557752008,0,0,418.98151480639257,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1557.1528730125879,0.0,1056.9246863532542,0.0,2339.603069302081,0.0,1257.4561510998847,0.0,0.0,0.0,7095.771889059345,0.0,7700.8448559075405,0.0,8115.707283498527,0.0,7797.815654418783,0.0,311.2667996680147,0.0,6692.765337275441,0.0,7366.538340472902,0.0,7615.69343216138,0.0,7412.777949931236,0.0,6551.413252975019,0,0,0,0,0,0,0,0,0.0712387781585079,0.0022539452834105423,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7465306726927617,-0.7465306726927617,-0.7648102445366846,-0.7648102445366846,-0.7805052519077338,-0.7805052519077338,-0.7795303386707124,-0.7795303386707124,-0.24943411865792192,-0.24943411865792192,-0.6214427018665108,-0.6883927608821007,-0.6819318378030248,-0.7055810536756941,-0.3226108537163232,-0.6439545384731955,-0.7033614882354208,-0.6904143861799316,-0.7169888998847445,-0.3640428650047227,16.73524835100922,16.73524835100922,17.32251009526634,17.32251009526634,17.838124607208997,17.838124607208997,17.805790961832827,17.805790961832827,6.291403507306626,6.291403507306626,13.102863174764352,14.962892472062634,14.774930123922331,15.47171921677932,7.163939801785574,13.706614940348544,15.40529599238242,15.022076637837571,15.816465002292546,7.758484090157182,198.17189369458225,198.17189369458225,0.0,220.19099299398027,0.0,198.17189369458225,220.19099299398027,0,0
+2017/01/09 23:00:00,140.73618812881855,0,1200.5230374590537,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.7843980143939975,20.766857306648337,0,0,459.64182260684044,581.174628545765,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3244.8650315061127,0.0,2059.571094887847,0.0,3920.969456535396,0.0,2237.002870782519,0.0,0.0,0.0,6551.963282883906,0.0,8355.14739286794,0.0,7602.8938050151755,0.0,8454.575330350719,0.0,8839.952706280279,0.0,6406.60371653304,0.0,8183.938802042936,0.0,7360.552959151042,0.0,8231.298653146689,0.0,14557.533455309094,0,0,0,0,0,0,0,0,0.06391673574973736,0.0020222809654816226,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8260714972567504,-0.8260714972567504,-0.8385184070555468,-0.8385184070555468,-0.8592347975144158,-0.8592347975144158,-0.8520290903358257,-0.8520290903358257,-0.48310417207583045,-0.48310417207583045,-0.6454300904721525,-0.7156028929248174,-0.7034234494944215,-0.731493941525426,-0.3545559154728448,-0.6721262849650341,-0.7354363341845539,-0.7170547435253206,-0.7474863964685823,-0.4021108396262047,19.394283182667948,19.394283182667948,19.834569404658282,19.834569404658282,20.58170797971904,20.58170797971904,20.319808980362552,20.319808980362552,9.875244255527747,9.875244255527747,13.746955832045245,15.77428045417679,15.40714737501915,16.26290196400538,7.615905060609265,14.49311489985351,16.38580484366426,15.818471080229742,16.765598193194492,8.369212026624197,140.73618812881855,140.73618812881855,0.0,156.37354236535396,0.0,140.73618812881855,156.37354236535396,0,0
+2017/01/10 00:00:00,91.69303296219698,0,1115.9494760875375,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.89744836901432,11.852628331890081,0,0,545.4062354089914,517.3077119097302,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4649.922889822313,0.0,2898.6436715307773,0.0,5240.3733377738345,0.0,3047.0382919220874,0.0,0.0,0.0,5978.612865965316,0.0,9008.47766127366,0.0,7003.434366599393,0.0,9108.833489250534,0.0,16683.360039368217,0.0,6061.914410743694,0.0,8972.610544113288,0.0,6961.36995021537,0.0,9019.891658359129,0.0,21986.68761004791,0,0,0,0,0,0,0,0,0.0594139766981171,0.001879816807770328,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9057838485792268,-0.9057838485792268,-0.9132019941784156,-0.9132019941784156,-0.9425506157758646,-0.9425506157758646,-0.9269990533287437,-0.9269990533287437,-0.6384406315973445,-0.6384406315973445,-0.6697631310372583,-0.7421284641557957,-0.7241290766896373,-0.7568139832512778,-0.39026675443330383,-0.7002310683169705,-0.765892097684033,-0.7411026676546778,-0.77646872291875,-0.44229609533119985,22.32510943601737,22.32510943601737,22.61110395180546,22.61110395180546,23.764261290407163,23.764261290407163,23.14892327421984,23.14892327421984,13.556702982002363,13.556702982002363,14.425819261889274,16.595957980537122,16.035094413737312,17.063857985680002,8.17256338535178,15.311975693470416,17.35771418853014,16.563620135543445,17.704513416022124,9.081195798150972,91.69303296219698,91.69303296219698,0.0,101.88114773577442,0.0,91.69303296219698,101.88114773577442,0,0
+2017/01/10 01:00:00,39.896719860857914,0,663.8190167411115,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.33244251600577046,0.22719942111101807,9.53975692731794,0,0,116.77149338371967,493.81199458857554,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,593.9078351155138,0.0,506.616058242068,0.0,899.219718606867,0.0,621.5727088685915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03534221614646793,0.0011182030833173933,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9187001473535542,-0.9187001473535542,-0.9270016087473825,-0.9270016087473825,-0.9537497208946842,-0.9537497208946842,-0.9420292123615835,-0.9420292123615835,-0.30818646184631576,-0.30818646184631576,-0.979041769676041,-1.0598341339250856,-1.0470941164516878,-1.0842430632286095,-0.1816814862640492,-0.9908096854150803,-1.075042149091082,-1.0567515600279584,-1.0947896950131457,-0.3219910606947137,22.824509094641073,22.824509094641073,23.149023593687375,23.149023593687375,24.213322618293972,24.213322618293972,23.743474836143065,23.743474836143065,6.974047207346118,6.974047207346118,25.245564026440164,28.705676944371433,28.144052892751347,29.797842477686075,5.684279716501379,25.73428959316007,29.383688841823798,28.56925117595152,30.276184682801443,7.155599180708819,39.896719860857914,39.896719860857914,0.0,44.32968873428657,0.0,39.896719860857914,44.32968873428657,0,0
+2017/01/10 02:00:00,23.722052729023627,0,48.25092901983283,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249573053458356,0,0,0.0,12.7605765072887,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0025689152008006974,8.127868627172498e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.075628553721032,-1.075628553721032,-1.1189218836978263,-1.1189218836978263,-1.155745783135932,-1.155745783135932,-1.1620133659117335,-1.1620133659117335,-0.14032936884688593,-0.14032936884688593,-1.0985648957838001,-1.2203612349564312,-1.222812674749955,-1.2601862166880313,-0.11567157531544495,-1.1778357809321562,-1.28840254501162,-1.2817407449625557,-1.321161976760039,-0.3381135640517477,29.409995849492987,29.409995849492987,31.384953074402745,31.384953074402745,33.11382341958961,33.11382341958961,33.41238320536358,33.41238320536358,5.407997720820347,5.407997720820347,30.448337971427136,36.24840134811556,36.36969613971454,38.23881241478636,5.277136122268715,34.17147640394623,39.67335742413787,39.33294408753815,41.36190157665322,7.377862264177466,23.722052729023627,23.722052729023627,0.0,26.357836365581807,0.0,23.722052729023627,26.357836365581807,0,0
+2017/01/10 03:00:00,28.344396592448774,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250335059758794,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0782947766687188,-1.0782947766687188,-1.1250066206572897,-1.1250066206572897,-1.161464402864795,-1.161464402864795,-1.1700497231741258,-1.1700497231741258,-0.05711538676674547,-0.05711538676674547,-1.122246742464176,-1.2529183863349562,-1.2587500801703817,-1.2975189162465588,-0.09424114760669673,-1.2461219963018018,-1.365397410594169,-1.362343607516342,-1.4039903009757202,-0.32363695638039175,29.529758758398913,29.529758758398913,31.66759416916703,31.66759416916703,33.38618423036098,33.38618423036098,33.79697821985462,33.79697821985462,5.067538375110246,5.067538375110246,31.539244092600782,37.87248407500457,38.166319380609416,40.14085970535884,5.183922283091761,37.5311399648164,43.67687999807053,43.515893096041786,45.72459435402165,7.177783972121588,28.344396592448774,28.344396592448774,0.0,31.49377399160975,0.0,28.344396592448774,31.49377399160975,0,0
+2017/01/10 04:00:00,23.722055724608822,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249603009310283,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.183951185053866,-1.183951185053866,-1.2358225988215459,-1.2358225988215459,-1.2652211848798738,-1.2652211848798738,-1.2762264156052945,-1.2762264156052945,-0.032155802239866804,-0.032155802239866804,-1.241755927728549,-1.3770652594389916,-1.3815477933622982,-1.421393944136919,-0.07543123179608767,-1.3753062203419304,-1.4980291182807257,-1.4941231722737358,-1.5377643155047152,-0.348687474238113,34.46690000158327,34.46690000158327,37.01615657335269,37.01615657335269,38.49337411362464,38.49337411362464,39.051958166395984,39.051958166395984,5.021405220037067,5.021405220037067,37.31248977197327,44.29344732036519,44.530922151089506,46.65524807985086,5.117813180778313,44.20034727930725,50.79308520198859,50.58099799991167,52.95482471117093,7.529626067829241,23.722055724608822,23.722055724608822,0.0,26.3578396940098,0.0,23.722055724608822,26.3578396940098,0,0
+2017/01/10 05:00:00,44.54708768667744,0,409.4059973237877,0,0,0,0.0,0.028517064477043674,4.633261998087618,9.319298099999997,25.555573451546493,0,2.690971377418121,1.7944234713755094,0.5250422237726661,0,0,320.6801160424273,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.454448506360658,1848.9586678994538,1.0599410211391007,1402.9849917860577,1.836820529864023,2311.0695749810957,0.4942713647821695,1550.2985075633062,0.0,0.0,3.6678240237727096,4892.612623418517,2.387077525317106,3585.6607569961097,2.932859984291478,5837.983137926252,2.614437052673111,3760.5175136670164,0.0,0.0,3.552930724183852,5103.859733480279,2.563344876700474,3641.7457173109715,2.866311842076432,5909.017701698159,3.0867970258825608,3800.2048314132444,0.0,0.0,0,0,0,0,0,0,0,0,0.02179707854727005,0.0006896443714185322,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9835790691085156,-0.9835790691085156,-1.0043783124357941,-1.0043783124357941,-1.0209314683736956,-1.0209314683736956,-1.0208382277400958,-1.0208382277400958,0.1197512384198802,0.1197512384198802,-0.8413051906581431,-0.9103230204718178,-0.9017794298084801,-0.9297893240480799,-0.03858404298682916,-0.9166915500525386,-0.9844435293401698,-0.9676231983172114,-1.001994367751436,-0.3360794683905845,25.43336938784715,25.43336938784715,26.304365880164923,26.304365880164923,27.00924547787629,27.00924547787629,27.005246325876044,27.005246325876044,5.2970422973392175,5.2970422973392175,19.93403449186222,22.499845732658173,22.171651378332612,23.258617977638735,5.030819481178014,22.746406341425057,25.46924049945561,24.776454286847567,26.203700093935126,7.349212347213296,44.54708768667744,44.54708768667744,0.0,49.49676409630827,0.0,44.54708768667744,49.49676409630827,0,0
+2017/01/10 06:00:00,77.60481921897095,0,399.29813785721626,0,0,0,0.021406484704982662,0.023556195901532694,5.555297838843742,9.319298099999997,57.911447091112116,0,2.507529429935475,1.688774060984764,0.5775100174882943,0,0,186.35602278195145,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.88739111433514,0.0,0.0,0.0,0.0,0.0,0.0,863.639474439882,0.0,702.361168781862,0.9068754023591737,1135.6236344395288,0.0,805.998751888285,0.0,0.0,2.927430727061983,4215.170167720556,2.5386024328852725,3123.5961155087525,3.18437288965124,5116.061957246866,2.681065134748133,3308.073509056958,0.0,0.0,3.295096522874883,4906.414121583046,2.448384619432454,3454.935985544822,3.1029329815997704,5625.221615561933,2.4714351909197836,3611.1412401763882,0.0,0.0,0,0,0,0,0,0,0,0,0.021258928622310894,0.0006726176829142661,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8773390926496534,-0.8773390926496534,-0.8959911078173545,-0.8959911078173545,-0.9072802174385052,-0.9072802174385052,-0.908999141297031,-0.908999141297031,0.44654369001329347,0.44654369001329347,-0.7758771732243941,-0.830513868540691,-0.8196639277528102,-0.8435771688390106,0.07585337947798138,-0.8065022996105663,-0.8577772038411021,-0.8370334968913112,-0.8674842757245421,-0.24972892290272078,21.249204799513933,21.249204799513933,21.950981111767945,21.950981111767945,22.382620332672275,22.382620332672275,22.448796663392415,22.448796663392415,9.160503574683418,9.160503574683418,17.684991090693586,19.550679160320257,19.170160434640323,20.015365127527602,5.119135883160737,18.715215502465682,20.52855643094378,19.781702886760627,20.88418469667144,6.294465841099196,77.60481921897095,77.60481921897095,0.0,86.22757690996771,0.0,77.60481921897095,86.22757690996771,0,0
+2017/01/10 07:00:00,103.12370373341018,0,857.4021059183589,0,0,0,0.0,0.018734137347090837,11.110595677687485,13.929299233552332,73.80580873715317,0,2.2902507378009167,1.4439645599919009,0.5250506498772572,0,0,144.41360951075322,482.3012050760688,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,410.337221451854,0.0,392.3966451954668,0.0,609.9251687943704,0.0,451.4445388376709,0.0,0.0,1.6726478942270355,3377.439188772139,2.32544721550524,2509.6177124751234,2.294329180601077,4101.799711264517,2.4546197645983434,2658.1586018699318,0.0,0.0,3.0291312367391274,3734.8136365938744,2.252053245598593,2627.751138162567,2.037350722484007,4266.71426272787,2.6685580873374115,2745.0763279473113,0.0,0.0,0,0,0,0,0,0,0,0,0.04564872320254929,0.0014442937823437591,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8004873089943878,-0.8004873089943878,-0.8216922760500993,-0.8216922760500993,-0.8290726438096799,-0.8290726438096799,-0.8348009191449024,-0.8348009191449024,0.6972691159005737,0.6972691159005737,-0.7523637751875464,-0.8030951764947725,-0.7922285562205765,-0.8151711357558092,0.1424692458180787,-0.7758092209154612,-0.8235686565431904,-0.8026214022761785,-0.8324951080384864,-0.1294773960054499,18.50973521474768,18.50973521474768,19.240921008858578,19.240921008858578,19.499849422270643,19.499849422270643,19.702391006474883,19.702391006474883,15.224067038170915,15.224067038170915,16.921093063762797,18.598635721301832,18.230099255787295,19.0140419957645,5.420546838322068,17.682749482607733,19.30653402854601,18.582463687338105,19.620696416275806,5.347290264020302,103.12370373341018,103.12370373341018,0.0,114.58189303712243,0.0,103.12370373341018,114.58189303712243,0,0
+2017/01/10 08:00:00,165.028697898139,0,1183.2230483110275,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.7805058358784357,27.061397710673173,0,0,317.3899969222577,599.655407544689,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3934.447857170793,0.0,2424.760996292339,0.0,4354.099390905961,0.0,2511.1962546727636,0.0,0.0,0.0,7782.68390829109,0.0,8787.184105926788,0.0,8684.54801507671,0.0,8868.255774652376,0.0,7801.227435808709,0.0,8051.009225080326,0.0,8842.66334289273,0.0,8780.865128296438,0.0,8870.746438768485,0.0,11829.535961586069,0,0,0,0,0,0,0,0,0.06299567151327914,0.0019931391350748195,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8343077341788354,-0.8343077341788354,-0.8501993238895668,-0.8501993238895668,-0.8649492083216435,-0.8649492083216435,-0.8624368821815865,-0.8624368821815865,0.0709095008508066,0.0709095008508066,-0.7366775443224717,-0.7895064182095065,-0.7714930907546738,-0.8022403945373336,-0.22645727789055128,-0.7578069816700513,-0.8113420681736365,-0.7838220494301327,-0.8188441101779907,-0.3440042228471954,19.68489882142174,19.68489882142174,20.253647458960472,20.253647458960472,20.79093400811793,20.79093400811793,20.698781880257144,20.698781880257144,5.104108816384382,5.104108816384382,16.424637375386013,18.138562949481866,17.540772242308435,18.569465073627853,6.0639561407203075,17.09582950310059,18.8816580809642,17.948431118118805,19.14160952762549,7.461822715349356,165.028697898139,165.028697898139,0.0,183.3652198868211,0.0,165.028697898139,183.3652198868211,0,0
+2017/01/10 09:00:00,166.44642800641347,0,1312.2777562685667,0,0,0,0.0,0.0,12.629686762450465,0.0,83.2008179303116,0,39.380909295966944,0.7052963399190048,27.097742475311204,0,0,393.2091761109806,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1772.6016834866318,0.0,1894.0821831311002,0.0,3485.970326375146,0.0,1509.5683319460968,0.0,0.0,0.0,5958.348166355724,0.0,8271.38033265424,0.0,7968.33413067253,0.0,7822.872203598904,0.0,2188.9013140444476,0.0,5935.313153771427,0.0,8290.769418851258,0.0,8007.414195312121,0.0,7707.44233145881,0.0,10006.53825378038,0,0,0,0,0,0,0,0,0.06986663975662108,0.002210531780834208,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7175669599421709,-0.7175669599421709,-0.8394734545253673,-0.8394734545253673,-0.8520823388448029,-0.8520823388448029,-0.7791459240438615,-0.7791459240438615,-0.276053349992077,-0.276053349992077,-0.6588978159048742,-0.7772637558269008,-0.7555266001341967,-0.7459474757669177,-0.3188624214903318,-0.6685641277489821,-0.7975831318288504,-0.7673007600989991,-0.7550754297864077,-0.40174973259466346,15.834083308150284,15.834083308150284,19.868620162830183,19.868620162830183,20.32173644784639,20.32173644784639,17.793052712159763,17.793052712159763,6.582657692747944,6.582657692747944,14.119519358768542,17.730774566324087,17.022470967528875,16.716747657796617,7.113745275300317,14.391767649779311,18.411072356741386,17.403627716337283,17.007983443276345,8.363127845798005,166.44642800641347,166.44642800641347,0.0,184.94047556268163,0.0,166.44642800641347,184.94047556268163,0,0
+2017/01/10 10:00:00,182.3134963312245,0,1226.1194506180568,0,0,0,0.0,0.0,11.86011032607099,0.0,106.27511244621549,0,39.380909295966944,0.48360724411022965,20.88178181640665,0,0,272.27516495211637,581.1955842842272,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1024.2232282159573,0.0,2118.20655013738,0.0,156.0594782961847,0.0,0.0,0.0,3549.461835238947,0.0,7210.607397509446,0.0,6793.765354581911,0.0,6510.6449830226575,0.0,0.0,0.0,3090.5713621968425,0.0,7182.0873334699845,0.0,6742.5503296394745,0.0,6298.69754406412,0.0,5881.1742640205575,0,0,0,0,0,0,0,0,0.06527950774575655,0.002065398121505229,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49683848343498227,-0.49683848343498227,-0.8096323648493925,-0.8096323648493925,-0.8215794464128695,-0.8215794464128695,-0.7337460089359936,-0.7337460089359936,-0.2713223749403485,-0.2713223749403485,-0.5455489769863381,-0.759985122890243,-0.7373816247035772,-0.7091569244089155,-0.3260374676945251,-0.5350287285710121,-0.7742719448005958,-0.7431753691857801,-0.7116366064913493,-0.39965884645057137,10.158636675593158,10.158636675593158,18.822747433105533,18.822747433105533,19.236980312776183,19.236980312776183,16.33302769957669,16.33302769957669,6.528713471348311,6.528713471348311,11.229480461642453,17.166106681646426,16.44669465892933,15.579178535123987,7.210346032672433,10.989509033870235,17.632090434695897,16.62900780625526,15.654019796960412,8.32800883613642,182.3134963312245,182.3134963312245,0.0,202.57055147913835,0.0,182.3134963312245,202.57055147913835,0,0
+2017/01/10 11:00:00,212.65669329847464,0,1288.5928845909382,0,0,0,0.0,0.0,16.965687027080573,0.0,133.89528835348938,0,39.380909295966944,0.48346416965737615,18.49936924982603,0,0,265.44595805069594,561.7723438771685,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.5174639375673,0.0,644.0803871027495,0.0,0.0,0.0,0.0,0.0,1177.711539633118,0.0,6649.647080407038,0.0,4818.715492332968,0.0,6202.642218567001,0.0,549.1375789458629,0.0,799.3731676460985,0.0,6560.675276088666,0.0,4686.961211010263,0.0,5986.977183252084,0.0,6375.287940923043,0,0,0,0,0,0,0,0,0.06860563964496179,0.002170634616290894,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4012101622809251,-0.4012101622809251,-0.7649502444690877,-0.7649502444690877,-0.7672601198014898,-0.7672601198014898,-0.6875603685898837,-0.6875603685898837,-0.23740452493091335,-0.23740452493091335,-0.4819582909084345,-0.7480852243064458,-0.7209522614749783,-0.7174167148328419,-0.34770722052024144,-0.4495303899922809,-0.7574633480945296,-0.7225863986268833,-0.7199284997671797,-0.40840550148654575,8.3540471900467,8.3540471900467,17.32706295471006,17.32706295471006,17.40230191199467,17.40230191199467,14.938575082597097,14.938575082597097,6.169558476545745,6.169558476545745,9.8519682655769,16.78463444081224,15.937550554047945,15.829502703672816,7.5153569524987915,9.216733438841516,17.08476077926059,15.987672356471379,15.906208586363789,8.476165469633742,212.65669329847464,212.65669329847464,0.0,236.2852147760829,0.0,212.65669329847464,236.2852147760829,0,0
+2017/01/10 12:00:00,228.29429590762592,0,1213.7946759084261,0,0,0,0.0,0.0,16.73568395689411,0.0,147.76209134187457,0,39.380909295966944,0.22471220062380765,20.75892390981217,0,0,117.98590980892033,581.1986546676159,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,979.6666981558144,0.0,4931.8452040186185,0.0,4728.513085445052,0.0,4724.052545902108,0.0,0.0,0.0,439.9136759131575,0.0,4781.046656618498,0.0,4519.674292400208,0.0,4508.027446418824,0.0,0.0,0,0,0,0,0,0,0,0,0.06462332761117302,0.0020446370394422903,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3955785383906897,-0.3955785383906897,-0.6115336663578702,-0.6115336663578702,-0.6649769398224218,-0.6649769398224218,-0.5539355793667827,-0.5539355793667827,-0.13549937995865483,-0.13549937995865483,-0.43711124241271776,-0.7018428300226547,-0.6809536055205702,-0.6879641683418241,-0.33408573233478406,-0.3971053126207922,-0.7012782829191024,-0.6746518138475772,-0.6841285092902436,-0.380333032017667,8.260013615269884,8.260013615269884,12.844079305964769,12.844079305964769,14.290263486570254,14.290263486570254,11.424218251947181,11.424218251947181,5.380373102838277,5.380373102838277,8.985439264416598,15.359970764964018,14.746628562096575,14.950367890319782,7.32130137439907,8.28537276941276,15.343146910928581,14.56530172456786,14.838633571802106,8.012255543368795,228.29429590762592,228.29429590762592,0.0,253.66032878625103,0.0,228.29429590762592,253.66032878625103,0,0
+2017/01/10 13:00:00,207.77792851751866,0,1127.6824604395329,0,0,0,0.0,0.0,16.735683873587277,0.0,129.49988082968767,0,39.380909295966944,0.13622403901177332,18.593255276810652,0,0,86.79967259960165,561.7630289205852,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,887.2862685412329,0.0,3318.034256617616,0.0,4995.833068135865,0.0,3463.007800373797,0.0,0.0,0.0,90.35346780292757,0.0,2985.5226261125244,0.0,4580.852826474746,0.0,3136.058177221369,0.0,0.0,0,0,0,0,0,0,0,0,0.06003864947571706,0.001899581019020746,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3378732950936196,-0.3378732950936196,-0.5333407178985737,-0.5333407178985737,-0.5817969297217941,-0.5817969297217941,-0.43541703308464363,-0.43541703308464363,-0.09726670505900759,-0.09726670505900759,-0.38535807192017574,-0.6335172799360707,-0.6449116039403255,-0.6522269950561275,-0.3151810362443048,-0.34119960717245224,-0.6222126040696818,-0.6347493869629871,-0.6445871465943792,-0.3502720157145781,7.374468962246624,7.374468962246624,10.951451145191058,10.951451145191058,12.093059029904481,12.093059029904481,8.954400096560192,8.954400096560192,5.195926332277139,5.195926332277139,8.092821587438337,13.423961401816385,13.73276989764311,13.933998887653388,7.0650280448067235,7.421664244434297,13.123148297231708,13.457082373552595,13.723898584872344,7.552777941836567,207.77792851751866,207.77792851751866,0.0,230.86436501946517,0.0,207.77792851751866,230.86436501946517,0,0
+2017/01/10 14:00:00,205.23321428887888,0,1078.126392689037,0,0,0,0.0,0.0,16.735683873587277,0.0,129.2730206906943,0,39.380909295966944,0.1273464002496623,16.284278825926364,0,0,93.2203478057091,541.2766384765263,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,509.84403904019376,0.0,3441.045927548538,0.0,5136.19866756565,0.0,4071.449214922236,0.0,0.0,0.0,0.0,0.0,3009.1938416335734,0.0,4618.535164264605,0.0,3683.2131481586603,0.0,0.0,0,0,0,0,0,0,0,0,0.057400247722170894,0.001816103826656277,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3010987794433497,-0.3010987794433497,-0.38621317698509655,-0.38621317698509655,-0.5943323481166686,-0.5943323481166686,-0.41400041677309,-0.41400041677309,-0.11751381652708556,-0.11751381652708556,-0.3512413661667173,-0.5626020765568489,-0.6346189102292499,-0.6425026219148813,-0.3147314581672444,-0.28396333794628625,-0.5362536841407155,-0.6255176020769591,-0.6361776382104034,-0.34636357801499945,6.883967175632421,6.883967175632421,8.10663877438283,8.10663877438283,12.404969983735327,12.404969983735327,8.572653731858708,8.572653731858708,5.286039457075134,5.286039457075134,7.566993851561051,11.628658903283622,13.453571836439181,13.667012386695973,7.059117934157925,6.674958140004847,11.017204158229191,13.210519460281887,13.495558421995895,7.495864530810508,205.23321428887888,205.23321428887888,0.0,228.03690476542099,0.0,205.23321428887888,228.03690476542099,0,0
+2017/01/10 15:00:00,189.38950985043363,0,1057.3242873476618,0,0,0,0.0,0.0,16.903073467207488,0.0,115.5196477718057,0,39.380909295966944,0.13984315402885353,14.014060958970362,0,0,109.53807589154859,539.6471575618556,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3750.5382058322307,0.0,4028.4797283744742,0.0,4628.81585030914,0.0,0.0,0.0,0.0,0.0,3278.789831161126,0.0,3589.7005913699013,0.0,4291.285803064757,0.0,0.0,0,0,0,0,0,0,0,0,0.056292728225537984,0.0017810626817875838,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4221857167427375,-0.4221857167427375,-0.3877577553259481,-0.3877577553259481,-0.5987714666758421,-0.5987714666758421,-0.4272149377238407,-0.4272149377238407,-0.18491051665981495,-0.18491051665981495,-0.35781565058986475,-0.5303067680908474,-0.6398907340364076,-0.6522285964834534,-0.3333676125875248,-0.26846630611577005,-0.4999415616542486,-0.6349030260942554,-0.6503626687805841,-0.3655839140205676,8.716231916692436,8.716231916692436,8.131675955240581,8.131675955240581,12.517060870955419,12.517060870955419,8.805874411901272,8.805874411901272,5.708855516029345,5.708855516029345,7.664463379287525,10.883357933133837,13.596000544401903,13.934043193091682,7.311289513767903,6.496604147197118,10.223793505047027,13.461217052497346,13.882495425175406,7.782006355333195,189.38950985043363,189.38950985043363,0.0,210.43278872270403,0.0,189.38950985043363,210.43278872270403,0,0
+2017/01/10 16:00:00,183.38132388267056,0,1150.988796384132,0,0,0,0.0,0.0,17.38926645475239,0.0,108.75639138185811,0,39.380909295966944,0.32064475482263954,14.102136792816152,0,0,223.17958366785214,519.6701588220225,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.44686759406986,0.0,4447.0580791575085,0.0,3634.3752650081374,0.0,5261.068069675617,0.0,0.0,0.0,0.0,0.0,4024.7612705039282,0.0,3282.5285839742633,0.0,4979.689604041816,0.0,1370.2025283786934,0,0,0,0,0,0,0,0,0.06127949606456593,0.0019388405401505023,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.480278640415943,-0.480278640415943,-0.478876044820131,-0.478876044820131,-0.6587826956716554,-0.6587826956716554,-0.4549909623269921,-0.4549909623269921,-0.23249143439743378,-0.23249143439743378,-0.4279345902812837,-0.5683237149588701,-0.6550916886707921,-0.6763520112878699,-0.35736596825415257,-0.34916319233930687,-0.5478683115623221,-0.6543829437002752,-0.679372000733393,-0.3921968672503549,9.81795233827117,9.81795233827117,9.789640518516933,9.789640518516933,14.11630142757501,14.11630142757501,9.320530416309168,9.320530416309168,6.121542550226238,6.121542550226238,8.818790492799053,11.76541610189446,14.01343187543452,14.614053696081783,7.657737838348581,7.536565610167443,11.283030679568952,13.993746492717378,14.700958195971637,8.204200175495927,183.38132388267056,183.38132388267056,0.0,203.7570265363006,0.0,183.38132388267056,203.7570265363006,0,0
+2017/01/10 17:00:00,212.07624878890488,0,1151.5594947270208,0,0,0,0.0,0.0,23.298611804095255,0.0,131.64086955684016,0,39.380909295966944,0.2566589967860817,14.067223932762065,0,0,150.53501448662033,539.6498975773267,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,550.3145275720359,0.0,4477.960837620678,0.0,3460.5538480768146,0.0,4949.115311500267,0.0,0.0,0.0,45.83948740190378,0.0,4217.617897034235,0.0,3250.5081248224647,0.0,4759.056287421548,0.0,0.0,0,0,0,0,0,0,0,0,0.0613098804670614,0.001939801881465783,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5129104183807147,-0.5129104183807147,-0.49144299059419255,-0.49144299059419255,-0.6404448400561583,-0.6404448400561583,-0.4059959928589096,-0.4059959928589096,-0.18639632846757975,-0.18639632846757975,-0.4647520556103773,-0.605589139747005,-0.6538037584201649,-0.677485933268626,-0.3595462509950881,-0.42990327209085555,-0.600732528847025,-0.6554034737832761,-0.6830870114203466,-0.3937607480907025,10.500611255657077,10.500611255657077,10.046335293120123,10.046335293120123,13.611040818632631,13.611040818632631,8.435024808136745,8.435024808136745,5.720310146918635,5.720310146918635,9.509271289868948,12.690877356647462,13.977675793636493,14.646637649232147,7.69042691092524,8.854237300967299,12.566851445340575,14.022098597974562,14.808404129866261,8.229950778161822,212.07624878890488,212.07624878890488,0.0,235.64027643211654,0.0,212.07624878890488,235.64027643211654,0,0
+2017/01/10 18:00:00,234.3895102892338,0,1144.3199998394523,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.21219635202650328,18.53997879427941,0,0,121.18438791658139,561.7610292597972,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1920.6092922574492,0.0,4259.309410540913,0.0,4469.722884830866,0.0,4630.613737560954,0.0,0.0,0.0,1436.1142289693782,0.0,3988.6842963550616,0.0,4202.685455639401,0.0,4409.895718514916,0.0,0.0,0,0,0,0,0,0,0,0,0.060924444396905114,0.001927606952877142,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4987416843973724,-0.4987416843973724,-0.5084814981097844,-0.5084814981097844,-0.6396633366166905,-0.6396633366166905,-0.377792288935465,-0.377792288935465,-0.1393510391814826,-0.1393510391814826,-0.47213717503365193,-0.6071193173522086,-0.6434029989503075,-0.6663906895832358,-0.34449885779802764,-0.45923195375468717,-0.60599789068973,-0.6450894048016659,-0.6725999236792917,-0.3764091721372241,10.198549771445997,10.198549771445997,10.405259190682386,10.405259190682386,13.589832078328513,13.589832078328513,7.971930323058203,7.971930323058203,5.40232387104696,5.40232387104696,9.65479745403448,12.730166412667074,13.691560351582282,14.330200847398999,7.468939923836587,9.40203039171378,12.701362556287378,13.737633264934317,14.506631813076666,7.9500940843891215,234.3895102892338,234.3895102892338,0.0,260.4327892102598,0.0,234.3895102892338,260.4327892102598,0,0
+2017/01/10 19:00:00,218.49700841412024,0,1163.3002700719353,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.20972570565569545,25.61081201194384,0,0,137.76063237671673,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2584.3401248438468,0.0,3261.9685277695903,0.0,4926.512017412795,0.0,3554.275905584599,0.0,0.0,0.0,2289.7865958937464,0.0,3075.190246610454,0.0,4751.307507472517,0.0,3397.519247041778,0.0,0.0,0,0,0,0,0,0,0,0,0.061934968042895215,0.0019595792166431816,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.400609318324249,-0.400609318324249,-0.46028824452236744,-0.46028824452236744,-0.64140712245232,-0.64140712245232,-0.33494203193387806,-0.33494203193387806,-0.11880204314779426,-0.11880204314779426,-0.46160932790731957,-0.5855002347515851,-0.619818902084977,-0.6391505222621653,-0.3184842523312509,-0.4547334840294067,-0.5851942228115588,-0.6206999984782736,-0.6441703564745224,-0.3476251827430762,8.343949994021301,8.343949994021301,9.422449786017523,9.422449786017523,13.63719199499377,13.63719199499377,7.3332683216885215,7.3332683216885215,5.292349088314523,5.292349088314523,9.448055565457807,12.184496343925659,13.060164182311595,13.575929519119896,7.1087143520960865,9.315607332090423,12.176918128375775,13.083319052188386,13.712509407627394,7.5141646180354655,218.49700841412024,218.49700841412024,0.0,242.77445379346693,0.0,218.49700841412024,242.77445379346693,0,0
+2017/01/10 20:00:00,210.65462199827445,0,1081.2166209969423,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.12494415203271629,27.0977424753112,0,0,91.16733581426779,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2070.6330346526674,0.0,2826.60007963902,0.0,4241.0438374688565,0.0,3075.2554642644104,0.0,0.0,0.0,1790.5215218235762,0.0,2635.439119648525,0.0,4034.9582920677385,0.0,2897.144801028411,0.0,0.0,0,0,0,0,0,0,0,0,0.057564773766236484,0.0018213093160063991,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44789947495003346,-0.44789947495003346,-0.41945087295502004,-0.41945087295502004,-0.6377806867570374,-0.6377806867570374,-0.2995211591460595,-0.2995211591460595,-0.14419791448269023,-0.14419791448269023,-0.4560107898843746,-0.5701503724754551,-0.6038583703965815,-0.6201828714121316,-0.30906022240848835,-0.4536718238888439,-0.5708516633009805,-0.6047209374826059,-0.625148244666481,-0.33714524989235956,9.185981055506446,9.185981055506446,8.667940544679539,8.667940544679539,13.538848772566396,13.538848772566396,6.864205680108938,6.864205680108938,5.430823628828463,5.430823628828463,9.340057943567885,11.80937545646718,12.646560356043835,13.069725070543868,6.985299315024477,9.295338116083386,11.826290795239586,12.66863045963592,13.200731576798589,7.364201799570509,210.65462199827445,210.65462199827445,0.0,234.06069110919384,0.0,210.65462199827445,234.06069110919384,0,0
+2017/01/10 21:00:00,211.73404903985258,0,1043.920381187166,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.11513481556486305,23.7151850581304,0,0,89.36144851703571,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2008.5843485081464,0.0,2698.721502583513,0.0,4027.4511809618625,0.0,2914.4860124667457,0.0,0.0,0.0,1656.0916827491594,0.0,2451.522958277873,0.0,3714.3631107505325,0.0,2663.6363204017716,0.0,0.0,0,0,0,0,0,0,0,0,0.05557909433319054,0.001758483802877568,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4849810117024324,-0.4849810117024324,-0.4406424466310701,-0.4406424466310701,-0.6346727136065994,-0.6346727136065994,-0.2964691544224501,-0.2964691544224501,-0.1878683351799347,-0.1878683351799347,-0.45332864659071337,-0.5591593670607115,-0.5926682553184197,-0.6057226648713213,-0.30373697791805665,-0.4533257630936368,-0.5603008095982775,-0.5927547568213745,-0.6096556143867933,-0.3307468997122096,9.913490419037558,9.913490419037558,9.050529898614045,9.050529898614045,13.455019351817512,13.455019351817512,6.826274482496828,6.826274482496828,5.7317492804663885,5.7317492804663885,9.288796548115414,11.547056273127211,12.363170855197396,12.694301719663187,6.917248770913119,9.288741605016298,11.574054958316893,12.365340661875749,12.795512547451096,7.274937825946878,211.73404903985258,211.73404903985258,0.0,235.26005448872507,0.0,211.73404903985258,235.26005448872507,0,0
+2017/01/10 22:00:00,197.6669352602739,0,1050.3544984698947,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.15783076314329295,25.613167046511034,0,0,131.28591831230875,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1639.163527958046,0.0,3590.0493068411633,0.0,3517.747887725668,0.0,3798.8682784888215,0.0,0.0,0.0,1337.6850180678323,0.0,3359.6929814985706,0.0,3235.127262561359,0.0,3571.7626722086297,0.0,0.0,0,0,0,0,0,0,0,0,0.055921651503116565,0.0017693220729519828,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5063118032799377,-0.5063118032799377,-0.5710789123093066,-0.5710789123093066,-0.6290450889113561,-0.6290450889113561,-0.34010653240274763,-0.34010653240274763,-0.26744093474293235,-0.26744093474293235,-0.46586018157882175,-0.5707594317149051,-0.5986545133199288,-0.614713244541348,-0.3198643319343371,-0.4706298827393955,-0.5752273217268057,-0.6012248961913007,-0.6211972608323575,-0.3481631371539882,10.358856468483395,10.358856468483395,11.831776684299783,11.831776684299783,13.304295236312214,13.304295236312214,7.406103337935079,7.406103337935079,6.485160249062318,6.485160249062318,9.530957410650885,11.824064924110772,12.514096746527429,12.926652721970498,7.127103352909998,9.624904865217985,11.932314817422636,12.579378666976766,13.096401784544824,7.5219884447181755,197.6669352602739,197.6669352602739,0.0,219.629928066971,0.0,197.6669352602739,219.629928066971,0,0
+2017/01/10 23:00:00,140.20438667148133,0,927.9214649314501,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.25060866948412835,20.768845194220972,0,0,187.01993584040346,581.194942784598,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,342.08747693717396,0.0,0.0,0.0,0.0,0.0,2189.009218820962,0.0,4449.020007715839,0.0,3936.702343054962,0.0,4661.774324456904,0.0,0.0,0.0,1852.097432032512,0.0,4187.184283754348,0.0,3622.910754880024,0.0,4408.38151339479,0.0,0.0,0,0,0,0,0,0,0,0,0.04940322611056563,0.001563083637248983,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6272101820629999,-0.6272101820629999,-0.6825126601344372,-0.6825126601344372,-0.7639110900540294,-0.7639110900540294,-0.5339585897913793,-0.5339585897913793,-0.49252544744202825,-0.49252544744202825,-0.4872895080363933,-0.5928561567700875,-0.6138556734475639,-0.6321628811138837,-0.3408849298261872,-0.4990010298706887,-0.6039018126021467,-0.6205162967909663,-0.6425581664472128,-0.37247205412321616,13.255448142030545,13.255448142030545,14.791753670212415,14.791753670212415,17.29328914535442,17.29328914535442,10.965367366037611,10.965367366037611,10.068764651870197,10.068764651870197,9.960741357958355,12.367884595128487,12.904338452552835,13.38762901910286,7.4171793251815785,10.204000766529049,12.6476711193788,13.078488663720336,13.668525740615905,7.888382826859541,140.20438667148133,140.20438667148133,0.0,155.78265185720147,0.0,140.20438667148133,155.78265185720147,0,0
+2017/01/11 00:00:00,91.09458574551739,0,765.4589762136294,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.30180041702263605,11.84982906720219,0,0,194.82001330804061,517.4034341367726,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.94012344397447,0.0,1183.5964196930688,0.0,0.0,0.0,0.0,0.0,1679.4575845581799,0.0,4223.560319882132,0.0,3345.077078265247,0.0,4444.340233076907,0.0,0.0,0.0,1389.838427237129,0.0,4024.1276244429855,0.0,3095.3249037875935,0.0,4230.427540463103,0.0,1031.26775013539,0,0,0,0,0,0,0,0,0.040753602874180374,0.0012894155873345078,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7725582854677313,-0.7725582854677313,-0.8046527889807443,-0.8046527889807443,-0.8564415344449884,-0.8564415344449884,-0.7161206319386153,-0.7161206319386153,-0.5609809961124294,-0.5609809961124294,-0.5086061811951995,-0.6169617335605158,-0.6301923752296925,-0.6522614989829972,-0.37204849071367124,-0.5241071202975174,-0.6298749984642527,-0.6374241095057844,-0.6636646921912958,-0.404916999239728,17.575737575489953,17.575737575489953,18.651870881878025,18.651870881878025,20.479928217789578,20.479928217789578,15.7900286910685,15.7900286910685,11.59017036197065,11.59017036197065,10.407931941046897,12.985310658171855,13.334911391812923,13.93495350543732,7.881783189389381,10.745453906005324,13.326436252223331,13.529209759104305,14.253270950193354,8.416682330622749,91.09458574551739,91.09458574551739,0.0,101.21620638390822,0.0,91.09458574551739,101.21620638390822,0,0
+2017/01/11 01:00:00,39.336919985465244,0,547.1664660582743,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.578564077608909e-09,9.5395989864635,0,0,0.0,493.93093728945814,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02913154794279171,0.0009217018705459325,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7143761301258358,-0.7143761301258358,-0.7858457721383921,-0.7858457721383921,-0.8616112731739892,-0.8616112731739892,-0.7220371858426349,-0.7220371858426349,-0.2118035916752919,-0.2118035916752919,-0.6392223997992763,-0.8581059119656328,-0.8837702322817541,-0.9015155761639618,-0.16118539261329443,-0.6303116349015421,-0.824380575922123,-0.8560919127310932,-0.8763623968558729,-0.2761452826931552,15.737011711072583,15.737011711072583,18.015963641125595,18.015963641125595,20.668555536572413,20.668555536572413,15.970814230135133,15.970814230135133,5.930464048272512,5.930464048272512,13.577877454568892,20.540535172054902,21.48956599581055,22.16156277418979,5.538432593552017,13.338097198033637,19.334970958483595,20.46721162848695,21.2128497387953,6.583715286085962,39.336919985465244,39.336919985465244,0.0,43.70768887273916,0.0,39.336919985465244,43.70768887273916,0,0
+2017/01/11 02:00:00,23.72212923694732,0,50.36111683603596,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250338132695295,0,0,0.0,14.870764323491818,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0026812631631655363,8.483329748795864e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.74296936873784,-0.74296936873784,-0.829434555443648,-0.829434555443648,-0.9077591606318818,-0.9077591606318818,-0.7780336857964265,-0.7780336857964265,-0.09363269571811556,-0.09363269571811556,-0.695418762957564,-0.9178578855798997,-0.989775888631237,-0.9962729909601136,-0.09531511924534167,-0.7013174736474905,-0.9184949284960081,-0.990908985305409,-1.0017871331305543,-0.2934602557606737,16.622500847118474,16.622500847118474,19.51260529288868,19.51260529288868,22.401047009253617,22.401047009253617,17.7562321779334,17.7562321779334,5.181554101382787,5.181554101382787,15.169342125023235,22.791738635720904,25.691142842117813,25.96298474744553,5.188139826122125,15.344314374618989,22.816521874324152,25.738436144290148,26.194959447429397,6.789264356569731,23.72212923694732,23.72212923694732,0.0,26.35792137438591,0.0,23.72212923694732,26.35792137438591,0,0
+2017/01/11 03:00:00,28.344448353958345,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250852674854511,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7284259782662622,-0.7284259782662622,-0.8206325246665536,-0.8206325246665536,-0.9004882118372648,-0.9004882118372648,-0.7770929664017637,-0.7770929664017637,-0.023044864997484933,-0.023044864997484933,-0.7122124475689792,-0.937658800926173,-1.018071551010241,-1.0225417584196967,-0.07275881398160527,-0.736805605952932,-0.9593962516866305,-1.0416651348260677,-1.0505117386175278,-0.2712773918592396,16.16772130156515,16.16772130156515,19.203929145431175,19.203929145431175,22.122307808137293,22.122307808137293,17.725130861224272,17.725130861224272,5.010993589867795,5.010993589867795,15.671437641661484,23.569666441414043,26.886729112080644,27.078362894395212,5.109611223925157,16.428647679805223,24.441609255517122,27.90650775681999,28.294139367144098,6.528205085698843,28.344448353958345,28.344448353958345,0.0,31.49383150439816,0.0,28.344448353958345,31.49383150439816,0,0
+2017/01/11 04:00:00,23.722246529614434,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251511059366398,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7515300428758162,-0.7515300428758162,-0.8484938416677391,-0.8484938416677391,-0.927473448722106,-0.927473448722106,-0.8130617071893177,-0.8130617071893177,0.012578130012469024,0.012578130012469024,-0.7471766251536854,-0.9711096137897227,-1.0578183258229028,-1.0614049037844648,-0.051545736487065535,-0.781255781850929,-1.0055383733186156,-1.0954792693253246,-1.1042897828480243,-0.25903178321345577,16.894440791620084,16.894440791620084,20.192105229558862,20.192105229558862,23.167551351159872,23.167551351159872,18.941035422062996,18.941035422062996,5.003275036021861,5.003275036021861,16.755756846987197,24.919150648096775,28.616424620941032,28.77532538343459,5.055007017106732,17.863043977029875,26.353428955867827,30.30759363743823,30.710325617601825,6.392978224407273,23.722246529614434,23.722246529614434,0.0,26.358051699571593,0.0,23.722246529614434,26.358051699571593,0,0
+2017/01/11 05:00:00,42.67474904714697,0,370.2996138228541,0,0,0,0.0,0.013395249171122997,4.633261998087618,9.319298099999997,25.555573451546493,0,1.4954216049515083,1.0801730623418986,0.5776255810483276,0,0,281.5737325414937,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,282.3094732596233,0.0,0.0,0.0,0.0,1.3722841940029298,1985.1402635038569,1.5239715213995737,2022.7432620411655,1.9457054285737456,3744.8813965290174,1.9616040712194263,2334.9761315003266,0.0,0.0,1.3513255112462161,1737.1685404252262,1.1353676597061622,1758.8094434951176,2.2203887146870898,3342.758200835552,1.8846020702878548,2068.448765074339,0.0,0.0,0,0,0,0,0,0,0,0,0.019715025723321376,0.0006237696713793337,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7369289174357212,-0.7369289174357212,-0.8357902392223139,-0.8357902392223139,-0.8741881044303391,-0.8741881044303391,-0.8055313675464716,-0.8055313675464716,0.15634216161787262,0.15634216161787262,-0.5966849462524416,-0.6973936526545707,-0.730151824930874,-0.736052686261484,-0.014549926616312804,-0.6272727405292291,-0.7323913089336598,-0.7629721089254178,-0.7756113073926243,-0.2591002691540102,16.432509896821628,16.432509896821628,19.73751068817036,19.73751068817036,21.132058006205725,21.132058006205725,18.68194364794138,18.68194364794138,5.506527572815216,5.506527572815216,12.464268231385944,15.227755572224623,16.22121427776564,16.405079780657985,5.004382345072358,13.257111106979991,16.290818414586795,17.262810756151865,17.676221839655852,6.393716952877995,42.67474904714697,42.67474904714697,0.0,47.416387830163295,0.0,42.67474904714697,47.416387830163295,0,0
+2017/01/11 06:00:00,73.31085290201908,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5248098720631991,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.530092386696302,-0.530092386696302,-0.637132858536802,-0.637132858536802,-0.6852434375470542,-0.6852434375470542,-0.6098089516381844,-0.6098089516381844,0.4799417618985438,0.4799417618985438,-0.7120679027411393,-0.8540405514647741,-0.9042029730212582,-0.908725678064035,0.10154507680677788,-0.7048856458121252,-0.8504630162077491,-0.8953069000146886,-0.9054759171810361,-0.14742594996957897,10.878561488686827,10.878561488686827,13.521340740832201,13.521340740832201,14.871046311858862,14.871046311858862,12.79947213720348,12.79947213720348,9.811144599140434,9.811144599140434,15.667064155359,20.392700835866762,22.264449164854298,22.438260690755257,5.213549494306903,15.450885416208052,20.26317358046242,21.92498689388586,22.313285762543003,5.450347059957551,73.31085290201908,73.31085290201908,0.0,81.45650322446564,0.0,73.31085290201908,81.45650322446564,0,0
+2017/01/11 07:00:00,99.3708042691462,0,713.1072030849713,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.0,2.5202719712643145e-09,0.5251006182329588,0,0,0.0,482.41991175343435,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.037966355695503246,0.0012012290294727153,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3620752905961493,-0.3620752905961493,-0.4668608975488815,-0.4668608975488815,-0.5151860653708613,-0.5151860653708613,-0.4432797176783901,-0.4432797176783901,0.7293241562903068,0.7293241562903068,-0.6681463641210491,-0.8512595053594806,-0.9165915696651806,-0.9205993065539518,0.2069509120500004,-0.6716768782721582,-0.8522430363862608,-0.9152731630479513,-0.9243414443778155,-0.016542871980459006,7.728598476767587,7.728598476767587,9.550586968162932,9.550586968162932,10.549934543731823,10.549934543731823,9.0994922183651,9.0994922183651,16.19554453569299,16.19554453569299,14.379917813797277,20.291965020649528,22.742522923151043,22.89850564079805,5.8882394283286175,14.480298509351286,20.32755402525541,22.691351287246547,23.044733570596506,5.005665105372188,99.3708042691462,99.3708042691462,0.0,110.41200474349579,0.0,99.3708042691462,110.41200474349579,0,0
+2017/01/11 08:00:00,164.39702313573846,0,901.0266029499094,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.14386911794861573,27.066359666202437,0,0,35.19355156113945,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1915.5267664802354,0.0,3342.4548094004613,0.0,3228.497326388121,0.0,3460.7245349823597,0.0,1655.6906723522084,0.0,1643.3449823630858,0.0,3050.811948137799,0.0,2738.2540447440283,0.0,3091.200103580586,0.0,2211.7265081412133,0,0,0,0,0,0,0,0,0.04797132373746483,0.001517779244282363,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49027213801844477,-0.49027213801844477,-0.5634189801531049,-0.5634189801531049,-0.6183750717279235,-0.6183750717279235,-0.4869732045651599,-0.4869732045651599,0.49875528972990024,0.49875528972990024,-0.5679141417510501,-0.6898747033614089,-0.7091003862462347,-0.7383933659641276,-0.027006163683541425,-0.5818908941701264,-0.7079147347858513,-0.7228858089480555,-0.7608474196148496,-0.17348551108003923,10.022131267065106,10.022131267065106,11.648097442933476,11.648097442933476,13.022293717856229,13.022293717856229,9.954253572165953,9.954253572165953,10.198835659870085,10.198835659870085,11.755579398951625,15.006259850544637,15.577475203040464,16.47842754418339,5.015098049720436,12.095371722544584,15.541786693686973,15.996868245898668,17.193984507796287,5.6238555709114735,164.39702313573846,164.39702313573846,0.0,182.6633590397094,0.0,164.39702313573846,182.6633590397094,0,0
+2017/01/11 09:00:00,169.076682970688,0,965.2345268868739,0,0,0,0.0,0.0,15.864717049567478,0.0,83.2008179303116,0,39.380909295966944,0.10052101707655917,27.097742475311204,0,0,46.16594672928771,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1690.4453544081068,0.0,3210.396849655639,0.0,3247.7704809278202,0.0,3417.8220501372552,0.0,27.966713504125547,0.0,1327.2637767513008,0.0,2955.895741632402,0.0,2878.0047720123334,0.0,3139.2008523196755,0.0,581.7700148504564,0,0,0,0,0,0,0,0,0.051389801167106126,0.0016259374872808808,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5520311255510761,-0.5520311255510761,-0.5483234301190806,-0.5483234301190806,-0.6014641382559952,-0.6014641382559952,-0.4408362266781061,-0.4408362266781061,-0.0102801355829586,-0.0102801355829586,-0.5092593045364047,-0.5909931588717493,-0.602133145678775,-0.620827510302789,-0.21176378368345383,-0.5220164228824624,-0.6011353752448036,-0.6036749196578105,-0.6311151878200255,-0.28747281778268563,11.379729071521055,11.379729071521055,11.293566099214019,11.293566099214019,12.585469461926891,12.585469461926891,9.054117351585077,9.054117351585077,5.002187663810432,5.002187663810432,10.421943505042037,12.321216710239327,12.602514715498145,13.086672803733919,5.93011365672011,10.699323902030073,12.577100217611914,12.64187065136693,13.359578744874995,6.716755153397898,169.076682970688,169.076682970688,0.0,187.86298107854222,0.0,169.076682970688,187.86298107854222,0,0
+2017/01/11 10:00:00,183.68681471222493,0,1001.0002721598765,0,0,0,0.0,0.0,13.637702866948949,0.0,106.27511244621549,0,39.380909295966944,0.07884064636517094,20.882274254274176,0,0,47.13618507326639,581.2153857048967,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1283.0910714349643,0.0,2724.2679571441677,0.0,2598.942608077382,0.0,2910.35491775317,0.0,0.0,0.0,826.1380533860845,0.0,2393.9554096083702,0.0,2076.687447188486,0.0,1289.6145834778972,0.0,73.59821890980407,0,0,0,0,0,0,0,0,0.05329399593736676,0.00168618488247868,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4881765238347958,-0.4881765238347958,-0.531881884990478,-0.531881884990478,-0.5604128035402793,-0.5604128035402793,-0.3393554183841222,-0.3393554183841222,-0.15844475291764476,-0.15844475291764476,-0.4811925091025737,-0.551724329264358,-0.5633816597676009,-0.5789425683975705,-0.19907584009496082,-0.4932439631370609,-0.5587754380361986,-0.5614868454697448,-0.6584049763495426,-0.28629864903532587,9.978958215398535,9.978958215398535,10.91865970920334,10.91865970920334,11.57670700895595,11.57670700895595,7.395439973760304,7.395439973760304,5.5202584297606165,5.5202584297606165,9.8364447178174,11.372576831689287,11.647208758897108,12.022988867437789,5.821813211706569,10.083680804043766,11.537987848885493,11.6021682697844,14.105747153343145,6.702713234432849,183.68681471222493,183.68681471222493,0.0,204.09646079136104,0.0,183.68681471222493,204.09646079136104,0,0
+2017/01/11 11:00:00,213.27624307236218,0,1071.540172671745,0,0,0,0.0,0.0,18.51991955838056,0.0,133.89528835348938,0,39.380909295966944,0.0711003411043545,18.549046188042354,0,0,48.36470281667391,561.8008871919977,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,651.9261514438466,0.0,2625.775659182321,0.0,1818.8176693947964,0.0,2776.6734240380433,0.0,0.0,0.0,254.95891643525528,0.0,2338.744163999069,0.0,1341.4153349562687,0.0,2259.5969719722534,0.0,55.49732316359844,0,0,0,0,0,0,0,0,0.0570495924899932,0.0018050093395370346,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4107448509481264,-0.4107448509481264,-0.41485380912752107,-0.41485380912752107,-0.4761174798747107,-0.4761174798747107,-0.1640834613983641,-0.1640834613983641,-0.037435648745761774,-0.037435648745761774,-0.45779390010544,-0.5218645579069937,-0.5344775377709599,-0.5463889455503844,-0.21703759051635577,-0.47013550077412086,-0.5288301439369454,-0.5315299910827255,-0.6026875790935052,-0.27893758005120434,8.516346082181002,8.516346082181002,8.587488966836261,8.587488966836261,9.734205599644113,9.734205599644113,5.557991283489258,5.557991283489258,5.02901208123248,5.02901208123248,9.374308271947655,10.695980461043021,10.977068316439855,11.248847243110674,5.97711188349291,9.615121619908095,10.850361157056952,10.910763685742083,12.616655524082617,6.6160076486363835,213.27624307236218,213.27624307236218,0.0,236.97360341373576,0.0,213.27624307236218,236.97360341373576,0,0
+2017/01/11 12:00:00,228.80547784324028,0,1120.8817070870089,0,0,0,0.0,0.0,18.045707129180894,0.0,147.76209134187457,0,39.380909295966944,0.034019345234908877,20.722771395604276,0,0,25.056639744621634,581.2149559104971,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,368.27467083098395,0.0,1633.4681867796605,0.0,1419.9826908269158,0.0,1744.0216302995623,0.0,0.0,0.0,0.0,0.0,1226.53408829495,0.0,777.2759006193075,0.0,1374.9759824397852,0.0,0.0,0,0,0,0,0,0,0,0,0.059676572329865334,0.0018881251505145876,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.35658290702393536,-0.35658290702393536,-0.321728630024036,-0.321728630024036,-0.3990040189770046,-0.3990040189770046,0.020480517885096763,0.020480517885096763,0.11790661744618243,0.11790661744618243,-0.4180275521243973,-0.4828428180271902,-0.4912500607694985,-0.5052183151324713,-0.11821313848978253,-0.4184232375083149,-0.48375156987536183,-0.48376146753498983,-0.5215427932598784,-0.17483210095625512,7.646046760234867,7.646046760234867,7.152072530022167,7.152072530022167,8.317048663394317,8.317048663394317,5.008683021701742,5.008683021701742,5.287956056964148,5.287956056964148,8.642934692407835,9.869930450408077,10.04234294782583,10.335547442810153,5.289456123645422,8.64987764138202,9.888419728468747,9.888621300392145,10.68889982713904,5.6335907304987245,228.80547784324028,228.80547784324028,0.0,254.22830871471143,0.0,228.80547784324028,254.22830871471143,0,0
+2017/01/11 13:00:00,206.9577667265182,0,1048.0869729452347,0,0,0,0.0,0.0,17.7527000636149,0.0,129.49988082968767,0,39.380909295966944,0.009282427635897546,18.59900650838565,0,0,7.16714587434399,561.8000681515447,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,533.650993110272,0.0,748.5720191865291,0.0,617.5936080460388,0.0,0.0,0.0,0.0,0.0,179.74596350839062,0.0,164.54766843069558,0.0,248.16758322802727,0.0,0.0,0,0,0,0,0,0,0,0,0.055800926764612416,0.0017655024263777959,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.17984097116931994,-0.17984097116931994,-0.408771213219947,-0.408771213219947,-0.49578233794066273,-0.49578233794066273,0.14509994122167832,0.14509994122167832,0.1926659956737182,0.1926659956737182,-0.3760108062178751,-0.4447426998010158,-0.45120121014101533,-0.46693707797080514,0.034063973606581296,-0.361675917427426,-0.44210512448788714,-0.43933646622218236,-0.47098242281971403,-0.05478719269071037,5.670466549506742,5.670466549506742,8.482431469640787,8.482431469640787,10.136555167663673,10.136555167663673,5.436235489886343,5.436235489886343,5.769660807694976,5.769660807694976,7.943819941119827,9.12678217189962,9.248356914263567,9.55208305358326,5.024021165528268,7.722552504718848,9.077648358493775,9.026394347878892,9.631887658782063,5.062143741084142,206.9577667265182,206.9577667265182,0.0,229.95307414057578,0.0,206.9577667265182,229.95307414057578,0,0
+2017/01/11 14:00:00,204.64526520545164,0,991.9567987905695,0,0,0,0.0,0.0,17.991563524563553,0.0,129.2730206906943,0,39.380909295966944,0.008853012707530278,16.274931080292113,0,0,6.970691712027011,541.3567006717409,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,610.6054429394442,0.0,519.3281250957409,0.0,672.1145150680668,0.0,0.0,0.0,0.0,0.0,259.0274041839186,0.0,0.0,0.0,283.6177091947877,0.0,0.0,0,0,0,0,0,0,0,0,0.05281251471662383,0.00167095115227447,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2998544238711021,-0.2998544238711021,-0.24948688882346765,-0.24948688882346765,-0.49474221405779933,-0.49474221405779933,0.23444027922404284,0.23444027922404284,0.2375299544163311,0.2375299544163311,-0.34031981214165535,-0.4136688949521505,-0.4184675755691984,-0.43637210271424076,0.06421226097438723,-0.32115746360041547,-0.41012826853495893,-0.40421541635789354,-0.43622873640646714,-0.042680770449490674,6.8683714349777745,6.8683714349777745,6.29195139875641,6.29195139875641,10.114855725905386,10.114855725905386,6.140467505310454,6.140467505310454,6.1707975692543755,6.1707975692543755,7.409135581863467,8.566899026607786,8.650656043578323,8.97188251692944,5.085368375103656,7.144407052512719,8.505732929030614,8.404782428860571,8.969255716787245,5.037712110873471,204.64526520545164,204.64526520545164,0.0,227.38362800605736,0.0,204.64526520545164,227.38362800605736,0,0
+2017/01/11 15:00:00,189.49516076504003,0,965.3930971761565,0,0,0,0.0,0.0,18.249555845086572,0.0,115.5196477718057,0,39.380909295966944,0.021682573207686164,14.03538181067024,0,0,17.536430527960245,539.7176127539387,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1330.9864194867496,0.0,709.9275827726747,0.0,1395.4507708878823,0.0,0.0,0.0,0.0,0.0,971.2529456388202,0.0,146.49924179095422,0.0,998.6381130874082,0.0,0.0,0,0,0,0,0,0,0,0,0.0513982435667616,0.0016262045989211419,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46657596489917535,-0.46657596489917535,-0.26824316432151235,-0.26824316432151235,-0.509991353369376,-0.509991353369376,0.26010631444187765,0.26010631444187765,0.22938005650399249,0.22938005650399249,-0.3403057088691158,-0.40819555655583617,-0.41133072791084735,-0.43036693807864,-0.0034088148703785835,-0.3086936866056918,-0.4064655122208592,-0.4006337986977776,-0.42977586307473326,-0.049241724354369125,9.544993474360496,9.544993474360496,6.494109950707141,6.494109950707141,10.437670194293005,10.437670194293005,6.404591476893756,6.404591476893756,6.091658686491513,6.091658686491513,7.408935012938429,8.472570921149853,8.526445794901676,8.86260997448214,5.000240540325166,6.980575208788579,8.4430220202008,8.344361085389139,8.851938222152071,5.050198944376021,189.49516076504003,189.49516076504003,0.0,210.55017862782225,0.0,189.49516076504003,210.55017862782225,0,0
+2017/01/11 16:00:00,183.74789293800941,0,960.1107943701322,0,0,0,0.0,0.0,18.108320288193177,0.0,108.75639138185811,0,39.380909295966944,0.022193316139788314,14.048103453397136,0,0,18.60580435012355,533.3659361257511,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1383.563169680695,0.0,500.40167152862824,0.0,1481.4983202605035,0.0,0.0,0.0,0.0,0.0,1068.9702405808298,0.0,26.043829627290464,0.0,1146.9206618936234,0.0,0.0,0,0,0,0,0,0,0,0,0.051117009852731966,0.0016173065602453141,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4806768003323439,-0.4806768003323439,-0.2514055445067947,-0.2514055445067947,-0.48733418505907733,-0.48733418505907733,0.3062545228229045,0.3062545228229045,0.25080616542930556,0.25080616542930556,-0.337444842632257,-0.4008754199637946,-0.40993270982961516,-0.4291209269216981,-0.033348744752249214,-0.2993105299411611,-0.39548525656137734,-0.39880928250765807,-0.4268710237670644,-0.09545431009364287,9.82600478244862,9.82600478244862,6.3119515330213005,6.3119515330213005,9.9616580884951,9.9616580884951,6.949282783226423,6.949282783226423,6.3056869632844155,6.3056869632844155,7.36842404162843,8.348419932331922,8.502370203767285,8.840130982930319,5.023022978325315,6.861575270808643,8.258467469897283,8.313792801039085,8.799709808823465,5.18868993979865,183.74789293800941,183.74789293800941,0.0,204.16432548667711,0.0,183.74789293800941,204.16432548667711,0,0
+2017/01/11 17:00:00,211.19001174743516,0,1005.5281953904918,0,0,0,0.0,0.0,22.614298311118013,0.0,131.64086955684016,0,39.380909295966944,0.020813337022497422,14.101146044033245,0,0,18.021353116188987,526.1322596112291,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.6529022567404,0.0,398.9265215550948,0.0,1424.5368900132041,0.0,0.0,0.0,0.0,0.0,1042.6814053741189,0.0,0.0,0.0,1094.1825767843943,0.0,0.0,0,0,0,0,0,0,0,0,0.053535065924027625,0.0016938121688169876,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47171087439540965,-0.47171087439540965,-0.2941508425022855,-0.2941508425022855,-0.45330911628021126,-0.45330911628021126,0.37494245032374857,0.37494245032374857,0.30639723305513383,0.30639723305513383,-0.3453886172860919,-0.4036912586719644,-0.40810593945949497,-0.4299805276238589,-0.009755367741568275,-0.32186529569376965,-0.4000687584121009,-0.39651708461530616,-0.4271700285894402,-0.10550504529582086,9.646333136738662,9.646333136738662,6.797724906179596,6.797724906179596,9.288424418167935,9.288424418167935,7.927027082857322,7.927027082857322,6.9511067022814075,6.9511067022814075,7.481768681768543,8.395905675802439,8.471037126939407,8.855631706182493,5.001970017041543,7.153908734916726,8.334879072099042,8.275590715372516,8.805069134680693,5.230538282865453,211.19001174743516,211.19001174743516,0.0,234.6555686082613,0.0,211.19001174743516,234.6555686082613,0,0
+2017/01/11 18:00:00,232.4612762853529,0,1028.627431745879,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.006168828107933876,18.533759915544202,0,0,5.461070203922506,561.7917788788825,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,528.3280342196654,0.0,0.0,0.0,574.3703678303827,0.0,0.0,0.0,0.0,0.0,273.24655386742734,0.0,0.0,0.0,280.6816904281343,0.0,0.0,0,0,0,0,0,0,0,0,0.054764886377346805,0.0017327228307044348,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.43833277280535726,-0.43833277280535726,-0.42547237436652446,-0.42547237436652446,-0.402336609311389,-0.402336609311389,0.4658550643778527,0.4658550643778527,0.3691138210555845,0.3691138210555845,-0.2672347977057367,-0.3901097014241976,-0.3778045452089373,-0.41203731650468434,0.050957320256869845,-0.22753949690092126,-0.3844091058058215,-0.33376828136530245,-0.40766905120627706,-0.05004709677946645,9.007895105355175,9.007895105355175,8.774691531141727,8.774691531141727,8.373018785319815,8.373018785319815,9.530857145004632,9.530857145004632,7.836267546381237,7.836267546381237,6.482864954433964,8.169996108786634,7.972124186348523,8.538645970833272,5.05375818354571,6.074171811853745,8.077524309698262,7.316872846344509,8.463564721175516,5.0518546148947365,232.4612762853529,232.4612762853529,0.0,258.29030698372543,0.0,232.4612762853529,258.29030698372543,0,0
+2017/01/11 19:00:00,217.18884418288707,0,1073.326515394149,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.05236677846737708,26.175994309126153,0,0,47.78687769893052,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1916.716984911908,0.0,1841.228850209433,0.0,2520.7882705619177,0.0,1872.0013165251373,0.0,0.0,0.0,882.3434482121068,0.0,1293.1921844332628,0.0,1642.8416934799625,0.0,1289.9172908828014,0.0,0.0,0,0,0,0,0,0,0,0,0.05714469869968996,0.001808018433717343,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4017099765452162,-0.4017099765452162,-0.43961999666979873,-0.43961999666979873,-0.42090872884045116,-0.42090872884045116,0.32446419423972944,0.32446419423972944,0.1696002210853464,0.1696002210853464,-0.3398643968935064,-0.4156235772016013,-0.41782388302440127,-0.4342430123673108,-0.03223632825825717,-0.3213093401344408,-0.40660537510117345,-0.3909137509975423,-0.42553187526320185,-0.11313438569470474,8.362458349383587,8.362458349383587,9.031627986214545,9.031627986214545,8.693643180410874,8.693643180410874,7.18897755962675,7.18897755962675,5.596190925429639,5.596190925429639,7.4026631875105835,8.600897263379622,8.639363600623469,8.932963485673284,5.021512567125598,7.146443998827408,8.445406096020463,8.183150669920636,8.775754141292367,5.265105006791373,217.18884418288707,217.18884418288707,0.0,241.32093798098563,0.0,217.18884418288707,241.32093798098563,0,0
+2017/01/11 20:00:00,209.7552335550395,0,1071.1984880491216,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.08354950941129395,27.0977424753112,0,0,81.14920286644711,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2680.0403555698804,0.0,2582.3837241433694,0.0,3524.583449082951,0.0,2606.7258340587323,0.0,0.0,0.0,1965.5336003413358,0.0,2087.588079905924,0.0,2752.9008018786953,0.0,2077.3021402253917,0.0,441.7255938974388,0,0,0,0,0,0,0,0,0.05703140094759666,0.001804433771816159,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47943772092779996,-0.47943772092779996,-0.4241148918503809,-0.4241148918503809,-0.4766499235510189,-0.4766499235510189,0.2394329058542947,0.2394329058542947,0.05884984398271772,0.05884984398271772,-0.38154759473682304,-0.44207895807700254,-0.44810719812215627,-0.458351250368946,-0.10256910583675465,-0.37243937838209323,-0.434771156043809,-0.4298571223464244,-0.4503665687468706,-0.18241590389489776,9.800967934723587,9.800967934723587,8.750489886824965,8.750489886824965,9.744879796307643,9.744879796307643,6.189677469475313,6.189677469475313,5.071703260485975,5.071703260485975,8.03162972710507,9.077162418106951,9.18989150702673,9.38504204111102,5.217880302495772,7.887873426392403,8.94259961086901,8.853404454456467,9.232544714184115,5.689831038104373,209.7552335550395,209.7552335550395,0.0,233.06137061671055,0.0,209.7552335550395,233.06137061671055,0,0
+2017/01/11 21:00:00,211.79539953165718,0,1064.0297970709628,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.10658516110393926,23.785085204395916,0,0,109.47086440083244,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3303.0822020571704,0.0,3011.091140170101,0.0,4150.962183278327,0.0,3029.043068405882,0.0,0.0,0.0,2577.2553565962908,0.0,2499.8772304897466,0.0,3365.9100069803308,0.0,2484.8574506168625,0.0,61.64280711476059,0,0,0,0,0,0,0,0,0.05664973453002229,0.001792358112407545,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5496513826942575,-0.5496513826942575,-0.46333971600356705,-0.46333971600356705,-0.5550800128651864,-0.5550800128651864,0.13112064111136165,0.13112064111136165,-0.03552123643309255,-0.03552123643309255,-0.427660931226894,-0.4846276652640798,-0.49444507901918117,-0.4987831004787723,-0.16139240946047775,-0.42078037394244044,-0.478088201380058,-0.4794254198928411,-0.49051011038046044,-0.2456583074281807,11.32435783934632,11.32435783934632,9.48170835500386,9.48170835500386,11.451028539148282,11.451028539148282,5.3561680931995,5.3561680931995,5.026120505975172,5.026120505975172,8.813876333683638,9.90627832381523,10.10866536832745,10.199420071143464,5.5398181125258645,8.691376568734356,9.773774878064756,9.800719711936736,10.02704587178222,6.252504555269425,211.79539953165718,211.79539953165718,0.0,235.3282217018413,0.0,211.79539953165718,235.3282217018413,0,0
+2017/01/11 22:00:00,197.80613491701837,0,1103.4870249865155,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.18344199004713727,25.72675547635169,0,0,184.41844482892944,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3894.794664288611,0.0,4605.450983569213,0.0,4679.691655537644,0.0,4606.344523617006,0.0,281.92902267058224,0.0,2990.906570426625,0.0,3973.335949816373,0.0,3718.0136665985333,0.0,3944.4295486627634,0.0,0.0,0,0,0,0,0,0,0,0,0.058750466570478076,0.0018588238098365406,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6289852778819425,-0.6289852778819425,-0.5673635693678665,-0.5673635693678665,-0.6352589358514458,-0.6352589358514458,-0.04718675818211375,-0.04718675818211375,-0.15870188243400443,-0.15870188243400443,-0.4816435735142107,-0.5464624676100712,-0.5482831727412745,-0.5590547465593123,-0.2517305773142487,-0.47929124334024,-0.5444983182125136,-0.5380674641281644,-0.5543773879582166,-0.3017042243642728,13.302700702418406,13.302700702418406,11.742367789716695,11.742367789716695,13.470799096428351,13.470799096428351,5.046096134315718,5.046096134315718,5.521950241396823,5.521950241396823,9.845585408784672,11.25054386388355,11.292633829833818,11.544584497681413,6.315355015948526,9.798012584970778,11.205298932542249,11.058331436476195,11.434561634955088,6.891579006513268,197.80613491701837,197.80613491701837,0.0,219.78459435224264,0.0,197.80613491701837,219.78459435224264,0,0
+2017/01/11 23:00:00,140.21185681005352,0,981.0974436597401,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.25373178184639306,20.773192220430914,0,0,240.17330707010072,581.2175502831908,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,569.8151753847627,0.0,30.370208017443847,0.0,1085.776037289992,0.0,0.0,0.0,0.0,0.0,4722.37371606481,0.0,5816.14024371682,0.0,5407.7387500036675,0.0,5830.62391788347,0.0,43.33195155383082,0.0,3759.819269006429,0.0,5142.660830452525,0.0,4397.108310585167,0.0,5143.602595994874,0.0,2.3476021065750765,0,0,0,0,0,0,0,0,0.05223435460586173,0.001652658569380799,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7416601074874213,-0.7416601074874213,-0.7064520373568415,-0.7064520373568415,-0.7499592758833649,-0.7499592758833649,-0.3224236147628538,-0.3224236147628538,-0.37665774340041414,-0.37665774340041414,-0.5113540050828985,-0.5754624049004868,-0.5702142169261687,-0.5875418592580918,-0.2876372311294911,-0.5181827800749814,-0.5834964285545208,-0.5677596737736588,-0.5916471812373179,-0.32744418395279834,16.581187614091547,16.581187614091547,15.497842540703033,15.497842540703033,16.844308289610893,16.844308289610893,7.1614183905397795,7.1614183905397795,7.9540124374105545,7.9540124374105545,10.467005914347538,11.938034492715772,11.810914520466099,12.235160037105913,6.718726022685317,10.615228291898035,12.13494701300111,11.75187143750719,12.337582738209306,7.229541184725434,140.21185681005352,140.21185681005352,0.0,155.79095201117056,0.0,140.21185681005352,155.79095201117056,0,0
+2017/01/12 00:00:00,91.31013481656892,0,966.623574053413,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.5200974646401312,11.847081090636216,0,0,395.90657153889794,517.481473745699,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2378.12430657834,0.0,1219.6863023487938,0.0,2863.045264623647,0.0,0.0,0.0,0.0,0.0,4835.833557405496,0.0,6691.750040040975,0.0,5589.383911911602,0.0,6722.539752063283,0.0,983.8860283202976,0.0,3977.1394014145653,0.0,6138.890917946165,0.0,4742.910141149045,0.0,6132.149057089502,0.0,8337.398803596305,0,0,0,0,0,0,0,0,0.05146375506712917,0.0016282773371274891,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8471070492737743,-0.8471070492737743,-0.828911094023454,-0.828911094023454,-0.8654927392095428,-0.8654927392095428,-0.6264440081675302,-0.6264440081675302,-0.4980141219195774,-0.4980141219195774,-0.5575360925705982,-0.6325480470758178,-0.617184192288576,-0.6427920640619783,-0.33207859172688564,-0.569466390078899,-0.6458616129071374,-0.6189697511800363,-0.6521224860359122,-0.3776174785690111,20.142152130515058,20.142152130515058,19.49415724079742,19.49415724079742,20.810905054808046,20.810905054808046,13.235095043955951,13.235095043955951,10.18327317323066,10.18327317323066,11.508758060359852,13.39795317891064,12.991126025089258,13.674899930704157,7.293373188670259,11.792898153279296,13.758771292588776,13.037880706409027,13.931107758606643,7.969165962296003,91.31013481656892,91.31013481656892,0.0,101.45570535174323,0.0,91.31013481656892,101.45570535174323,0,0
+2017/01/12 01:00:00,39.70024047013329,0,635.8815848982531,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.21500469036639133,0.14898815754002911,9.538926625803683,0,0,88.59090351571035,494.0551526137266,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,509.6753578139211,0.0,286.26509767500136,0.0,712.3702366501017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03385480658171214,0.0010711424814985136,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8810128086397785,-0.8810128086397785,-0.8703215856980956,-0.8703215856980956,-0.8953330378621612,-0.8953330378621612,-0.6708327595447819,-0.6708327595447819,-0.14878164460310428,-0.14878164460310428,-1.14351711089503,-1.1022625226784561,-1.061994605840154,-1.0908914074048857,-0.09423026667947282,-0.9221200627324209,-0.9924980838670608,-0.9603704364869711,-0.9944401350909277,-0.27490000080990934,21.386300602065717,21.386300602065717,20.98886779093006,20.98886779093006,21.925979564889616,21.925979564889616,14.456249170286924,14.456249170286924,5.458675775705544,5.458675775705544,32.53485650434605,30.61742495883749,28.801495702964672,30.098931098266775,5.183879798053866,22.95786300071319,25.80484475368121,24.481121524270947,25.88613415682316,6.569419843883381,39.70024047013329,39.70024047013329,0.0,44.1113783001481,0.0,39.70024047013329,44.1113783001481,0,0
+2017/01/12 02:00:00,23.72207461785811,0,52.52318480951253,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249791941803142,0,0,0.0,17.032832296968387,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0027963732635315898,8.847530082518172e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0812598142985799,-1.0812598142985799,-1.0773630162044006,-1.0773630162044006,-1.1258979139543572,-1.1258979139543572,-0.8454491227198455,-0.8454491227198455,0.001904813627548191,0.001904813627548191,-1.2206563637524623,-1.2609145241153412,-1.2521875181597715,-1.273873116304945,-0.010781990123091223,-1.10110546380516,-1.2025797828937916,-1.1891057255814101,-1.21680063163155,-0.33458664346113864,29.66323605339025,29.66323605339025,29.48787710223911,29.48787710223911,31.70909791453009,31.70909791453009,20.082537711728477,20.082537711728477,5.000075107945989,5.000075107945989,36.262995250474624,38.27559557397947,37.83571966573065,38.93226602299653,5.002406472831595,30.564464390995155,35.373619744030265,34.71677144111038,36.07252228259174,7.328297922612521,23.72207461785811,23.72207461785811,0.0,26.35786068650901,0.0,23.72207461785811,26.35786068650901,0,0
+2017/01/12 03:00:00,28.34441817775984,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250550912869477,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.1532251359372243,-1.1532251359372243,-1.1555627359414693,-1.1555627359414693,-1.1995928579321924,-1.1995928579321924,-0.9252352131082696,-0.9252352131082696,0.08021727270586362,0.08021727270586362,-1.2897700044225884,-1.361308466421872,-1.3568662463880163,-1.3782465594901852,0.013942365288955223,-1.2172265086069987,-1.3278352635348043,-1.3173781253411387,-1.343709185173254,-0.3488835951753027,32.99409705761268,32.99409705761268,33.10512228700962,33.10512228700962,35.22755525714442,35.22755525714442,23.079741584284292,23.079741584284292,5.133242170113618,5.133242170113618,39.74336151218673,43.46136094141195,43.22755759508968,44.35599819793035,5.00402399601613,36.09354030468738,41.708688808776635,41.165678310318526,42.53719312344128,7.532485817934997,28.34441817775984,28.34441817775984,0.0,31.49379797528871,0.0,28.34441817775984,31.49379797528871,0,0
+2017/01/12 04:00:00,23.72223855173927,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251431280614749,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.2543756577423464,-1.2543756577423464,-1.262589002760691,-1.262589002760691,-1.3011781839871956,-1.3011781839871956,-1.0425472351086513,-1.0425472351086513,0.142510905182219,0.142510905182219,-1.3822547544568229,-1.4644241679617076,-1.4652327109993466,-1.483921347798349,0.04735302767760069,-1.3473834837856091,-1.4573775409117,-1.4524059776755556,-1.4744903186033758,-0.3727426447184652,37.94582904412701,37.94582904412701,38.360215443171846,38.360215443171846,40.329042385682264,40.329042385682264,27.94503111046818,27.94503111046818,5.420793037136619,5.420793037136619,44.568405130727356,48.9719189610798,49.01563111412186,50.02752049818448,5.04642159238999,42.72966214427256,48.59121231866922,48.32290052838266,49.51652797557871,7.892602965290536,23.72223855173927,23.72223855173927,0.0,26.358042835265856,0.0,23.72223855173927,26.358042835265856,0,0
+2017/01/12 05:00:00,45.37456363306081,0,502.27939697583327,0,0,0,0.0,0.03373431785783256,4.633261998087618,9.319298099999997,25.555573451546493,0,3.2100412512904497,2.097557182736395,0.5250973315420056,0,0,413.553515694473,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6906162818830195,2821.8205956858674,0.5640170931217724,1844.6608981862187,2.5532289076686534,3162.699641115302,0.1354041609297033,963.4160369617806,0.0,0.0,3.3962894072625693,7616.4124993179175,2.3589060356083476,5257.245605034502,3.232681871411981,8342.909703278607,2.8986634955320083,5333.558352613079,0.0,0.0,5.204655160328334,6335.124059731159,4.008302770661132,4438.9618989689425,4.930185844696079,7094.695694094826,2.761366828728954,4492.9044748429915,0.0,0.0,0,0,0,0,0,0,0,0,0.02674172713669123,0.0008460896060834313,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0435470199640455,-1.0435470199640455,-1.048887411767921,-1.048887411767921,-1.063631673799085,-1.063631673799085,-0.9516138811436681,-0.9516138811436681,0.2766085779324472,0.2766085779324472,-0.8685184811623355,-0.908006135924596,-0.9068275682079708,-0.916783720247761,0.0794460120485174,-0.8868790498040503,-0.9416452841671178,-0.9332864549128239,-0.9479721282472664,-0.3878793671106859,27.988728284924235,27.988728284924235,28.222753595558302,28.222753595558302,28.874211929546803,28.874211929546803,24.127298088862148,24.127298088862148,6.5890504547902395,6.5890504547902395,20.92230343483243,22.41055266903446,22.36521381306133,22.7499867542562,5.130691617090989,21.606364639094053,23.728175905078075,23.396540719995528,23.98103475496525,8.133651576223073,45.37456363306081,45.37456363306081,0.0,50.41618181451201,0.0,45.37456363306081,50.41618181451201,0,0
+2017/01/12 06:00:00,78.40826354271249,0,434.36657871022635,0,0,0,0.233956479579106,0.028152265686721474,5.555297838843742,9.319298099999997,57.911447091112116,0,2.9327507776043653,1.8497753838413,0.5775856060451172,0,0,221.42446363496154,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,746.2007147660955,0.0,0.0,0.0,0.0,0.0,1.308979529353394,1646.881073245255,0.29544866862505614,1111.403435367543,1.4028135025824326,1746.7115211012078,0.0,498.9994564241872,0.0,0.0,3.7382199340929674,5878.276070040846,2.7871585386951665,4109.798639265318,4.489550801381256,6528.033285715104,3.3541442311391165,4172.976983478238,0.0,0.0,3.0540398250807357,5025.922787010278,2.2048206298185278,3575.489980793918,3.15762863195323,5705.175007101912,2.359461393999595,3615.7575299277755,0.0,0.0,0,0,0,0,0,0,0,0,0.023125998388753084,0.0007316904688695121,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9428070394496376,-0.9428070394496376,-0.9503508735269889,-0.9503508735269889,-0.9629073012529332,-0.9629073012529332,-0.8766154249901138,-0.8766154249901138,0.6000665026370045,0.6000665026370045,-0.7877643180328741,-0.8195252161385139,-0.8192657621230699,-0.825384336157082,0.1569944138098529,-0.7860907504217652,-0.8248685389670819,-0.8175515816254249,-0.8283427836274201,-0.31937529753766125,23.774487918960475,23.774487918960475,24.076512834006024,24.076512834006024,24.584189234623665,24.584189234623665,21.222264315356284,21.222264315356284,12.549922592171256,12.549922592171256,18.080147023161075,19.165327687196893,19.156290416656077,19.370165247188822,5.510767361559701,18.02415048213426,19.35207485302419,19.096653453592978,19.474141607736314,7.120577935697128,78.40826354271249,78.40826354271249,0.0,87.12029282523609,0.0,78.40826354271249,87.12029282523609,0,0
+2017/01/12 07:00:00,104.1841107067599,0,874.553360095337,0,0,0,0.42030669824568834,0.02210392674182064,11.110595677687485,13.929299233552332,73.80580873715317,0,2.849683096556223,1.521244661375787,0.5250686754474103,0,0,161.3311174082044,482.53495135559564,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,1359.6213189061664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,713.3475425126614,0.0,518.5130107150183,0.0,921.9994345156813,0.0,24.72267347738594,0.0,0.0,4.143847460340718,4396.861849428755,2.9797482168796705,3107.0641726820863,3.4929287191832064,4936.402906838828,1.4488666843896376,3159.209812802097,0.0,0.0,3.031009040020914,3729.63088205921,2.145745092124495,2671.041747265581,2.052169038217774,4252.396650221287,2.8096124906642213,2694.395125236939,0.0,0.0,0,0,0,0,0,0,0,0,0.04656186867897991,0.0014731850687031206,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8845753951398487,-0.8845753951398487,-0.8938258135270821,-0.8938258135270821,-0.8990117857307313,-0.8990117857307313,-0.8233672733320573,-0.8233672733320573,0.8194884454705399,0.8194884454705399,-0.7679603003611976,-0.7959668745649117,-0.7952839158899447,-0.8015556169533613,0.1922619704569709,-0.7649263900569805,-0.800695280622965,-0.793252261367844,-0.80376331689877,-0.2000127996159261,21.519778088340274,21.519778088340274,21.86878322312573,21.86878322312573,22.065969552644844,22.065969552644844,19.299485002165838,19.299485002165838,19.164046723589962,19.164046723589962,17.42515368542456,18.35631833854599,18.333214976460482,18.5461183570567,5.766431076907708,17.32628713957429,18.516814276676342,18.26460432590403,18.62145847025714,5.82958050057384,104.1841107067599,104.1841107067599,0.0,115.760123007511,0.0,104.1841107067599,115.760123007511,0,0
+2017/01/12 08:00:00,165.11388249104004,0,1242.897271397713,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.38090929596693,0.8640754097508679,27.063012729701846,0,0,377.06422000894304,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4904.05782070146,0.0,2978.2011121435453,0.0,5298.5740426352195,0.0,2493.4412896937442,0.0,0.0,0.0,9768.393216382356,0.0,9951.849045853856,0.0,10509.727211023453,0.0,9938.526517395996,0.0,8294.451220963638,0.0,8709.602240487304,0.0,9242.108090904465,0.0,9446.055517914467,0.0,9179.908595169436,0.0,16647.85956812047,0,0,0,0,0,0,0,0,0.06617277135150915,0.0020936603593351443,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9093971619024537,-0.9093971619024537,-0.9151328930350086,-0.9151328930350086,-0.9252616290732236,-0.9252616290732236,-0.8563823225879831,-0.8563823225879831,0.11482913195361387,0.11482913195361387,-0.758104127421848,-0.7947808471461748,-0.7835641763396214,-0.7992949416187896,-0.19575911196005963,-0.7592006938435099,-0.8029736181778929,-0.7836786647666737,-0.8065275622293402,-0.3665010556027502,22.464136976963417,22.464136976963417,22.685911074061494,22.685911074061494,23.08077675768986,23.08077675768986,20.477774182346323,20.477774182346323,5.2731116775162405,5.2731116775162405,17.105404886759175,18.316209633823448,17.939838280972623,18.469184030900138,5.794612880676823,17.140773904785306,18.59448548695123,17.943652911023705,18.716081732186097,7.79605345330053,165.11388249104004,165.11388249104004,0.0,183.45986943448892,0.0,165.11388249104004,183.45986943448892,0,0
+2017/01/12 09:00:00,166.61868009299923,0,1443.086787994831,0,0,0,0.0,0.0,12.629686762450465,0.0,83.2008179303116,0,39.380909295966944,0.8775484265047377,27.0977424753112,0,0,524.0182078372447,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4117.621110876265,0.0,3049.358539191644,0.0,5368.7003044067815,0.0,2204.1033111001198,0.0,0.0,0.0,9648.166176610619,0.0,10525.46264119598,0.0,11090.435039199761,0.0,10185.570503592826,0.0,2324.6750602443617,0.0,8264.408477989246,0.0,9689.050375626257,0.0,9835.566541111277,0.0,9244.432158370319,0.0,15811.198446658182,0,0,0,0,0,0,0,0,0.07683100949684925,0.002430879584848863,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8375062102968907,-0.8375062102968907,-0.9088022171097082,-0.9088022171097082,-0.9172344250853129,-0.9172344250853129,-0.8176291420910846,-0.8176291420910846,-0.22240406687834433,-0.22240406687834433,-0.7151228378853124,-0.796383394239248,-0.7807431466018668,-0.7733868069654279,-0.29776801998926034,-0.7100531789855057,-0.8061142288017326,-0.7822316719040927,-0.7757279878517571,-0.41648431324654844,19.7985226693592,19.7985226693592,22.441209277104818,22.441209277104818,22.76749960918079,22.76749960918079,19.099349139820774,19.099349139820774,6.026131971134248,6.026131971134248,15.759688781294756,18.37041821078408,17.846020680132824,17.602967478624862,6.842369036823001,15.606198516119875,18.70191233309015,17.895481664299865,17.680070027579305,8.615920170966064,166.61868009299923,166.61868009299923,0.0,185.13186676999914,0.0,166.61868009299923,185.13186676999914,0,0
+2017/01/12 10:00:00,182.61277096178898,0,1419.5199548398969,0,0,0,0.0,0.0,11.86011032607099,0.0,106.27511244621549,0,39.380909295966944,0.7820899574470209,20.88257373363432,0,0,465.64915145701656,581.2221020011668,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,512.6417720197248,0.0,2446.882665612457,0.0,4431.592321194705,0.0,1195.7218412439447,0.0,0.0,0.0,7630.411450164891,0.0,9961.02617462324,0.0,10412.023226704348,0.0,9343.290692831291,0.0,1479.4079941782713,0.0,5998.710285199543,0.0,9139.224034052815,0.0,9165.406762264962,0.0,8369.624390369416,0.0,13804.840975211475,0,0,0,0,0,0,0,0,0.07557629384357013,0.0023911812561880686,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.685900651211626,-0.685900651211626,-0.8903250158720716,-0.8903250158720716,-0.8981850915672853,-0.8981850915672853,-0.7807449243448271,-0.7807449243448271,-0.23423243648884404,-0.23423243648884404,-0.6223334589462233,-0.7903850865810809,-0.7727258754604117,-0.746576274985707,-0.319451726192589,-0.6024921026508216,-0.8002296048690634,-0.7736920266412289,-0.746242970276597,-0.42503338063890655,14.890177739441441,14.890177739441441,21.73629196471842,21.73629196471842,22.034462812621427,22.034462812621427,17.84607969508481,17.84607969508481,6.138441581746207,6.138441581746207,13.126334876285583,18.16807523755506,17.581243170227225,16.736695602186074,7.121597091225794,12.611668380243373,18.500965867240552,17.613006097326405,16.7261197762122,8.766856357405231,182.61277096178898,182.61277096178898,0.0,202.9030788464322,0.0,182.61277096178898,202.9030788464322,0,0
+2017/01/12 11:00:00,213.73161126555817,0,1459.8767011772811,0,0,0,0.0,0.0,17.72786775541331,0.0,133.89528835348938,0,39.380909295966944,0.7500004387752919,18.545570219458973,0,0,436.65249266481146,561.849625849396,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1685.4609331102079,0.0,3189.710121528968,0.0,760.9849332749445,0.0,0.0,0.0,4875.999997943532,0.0,9778.667032840409,0.0,8412.318882706846,0.0,9335.1858963633,0.0,5754.020006501109,0.0,3350.3990746268864,0.0,9029.751562306843,0.0,7290.054810396832,0.0,8474.607009202611,0.0,16466.363069259853,0,0,0,0,0,0,0,0,0.07772491691108353,0.002459162192330368,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5345040485148128,-0.5345040485148128,-0.8504041582759431,-0.8504041582759431,-0.851556051944467,-0.851556051944467,-0.7782628796697691,-0.7782628796697691,-0.1859589456870553,-0.1859589456870553,-0.5324583118021727,-0.7908361011530866,-0.7692788815434778,-0.7618229304662916,-0.34437762210662887,-0.48919425607735645,-0.7992019382800051,-0.7684729059768091,-0.7647929817239721,-0.4361544562976252,10.977666379101663,10.977666379101663,20.261047034215025,20.261047034215025,20.302691305530004,20.302691305530004,17.76381531078168,17.76381531078168,5.716928637141805,5.716928637141805,10.931605534077747,18.183236420105814,17.46824497118665,17.225560826356542,7.467194524455891,9.999901470320111,18.466023612851302,17.441896844257144,17.32194875895661,8.967895081754762,213.73161126555817,213.73161126555817,0.0,237.4795680728424,0.0,213.73161126555817,237.4795680728424,0,0
+2017/01/12 12:00:00,229.7536021336508,0,1416.6471015283876,0,0,0,0.0,0.0,17.907628336020096,0.0,147.76209134187457,0,39.380909295966944,0.544771252155634,20.72622670517916,0,0,320.79834332407876,581.2386467724189,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,788.4112194115636,0.0,1806.366021335719,0.0,207.37652044348968,0.0,0.0,0.0,4715.5466022677465,0.0,8397.72880829315,0.0,9319.115261881496,0.0,8173.933075894619,0.0,0.0,0.0,2889.0007289600753,0.0,7586.671830741367,0.0,8107.829183024544,0.0,7292.578805010057,0.0,4845.141228833021,0,0,0,0,0,0,0,0,0.07542334100532376,0.002386341935002877,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.37976662235574904,-0.37976662235574904,-0.8026095793264673,-0.8026095793264673,-0.8013707615038407,-0.8013707615038407,-0.7547732916578969,-0.7547732916578969,-0.08839214562183863,-0.08839214562183863,-0.4578946517241276,-0.7636676753776404,-0.7466216001674516,-0.7492407423574167,-0.33610380947945945,-0.40690881753694436,-0.7678858438605853,-0.7428288220647424,-0.7503651318699458,-0.4113445695604958,8.003241949313193,8.003241949313193,18.582060238534112,18.582060238534112,18.539819319270563,18.539819319270563,16.99828635984821,16.99828635984821,5.161793076168294,5.161793076168294,9.376247613848491,17.285384532339435,16.738134147183388,16.821410845625095,7.349554148972146,8.45058139726369,17.42272265665676,16.61806242819638,16.857251439842543,8.526684583693779,229.7536021336508,229.7536021336508,0.0,255.28178014850087,0.0,229.7536021336508,255.28178014850087,0,0
+2017/01/12 13:00:00,208.82051327054992,0,1295.8396930050944,0,0,0,0.0,0.0,17.512037752900426,0.0,129.49988082968767,0,39.380909295966944,0.39596740360612115,18.59974278593447,0,0,254.8843731411628,561.8355609445856,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1152.2126928090029,0.0,0.0,0.0,0.0,0.0,4849.634554281127,0.0,6809.4869876447065,0.0,10215.61618308134,0.0,7022.755039723037,0.0,0.0,0.0,2854.1854484459936,0.0,5913.6853489379755,0.0,8975.955871681963,0.0,6118.144809469991,0.0,0.0,0,0,0,0,0,0,0,0,0.06899146509269077,0.002182841864514517,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.29138787500019175,-0.29138787500019175,-0.7112922015805002,-0.7112922015805002,-0.7786574685224239,-0.7786574685224239,-0.7332829720129532,-0.7332829720129532,-0.049310574943672775,-0.049310574943672775,-0.39847566998163325,-0.6968158354543084,-0.717106022490297,-0.7200390285446813,-0.3167642721490327,-0.3421597719490934,-0.691918884225677,-0.7119308524485431,-0.7177893343864276,-0.3775167362886087,6.76399604361545,6.76399604361545,15.643609185522521,15.643609185522521,17.776875957791717,17.776875957791717,16.31859168183388,16.31859168183388,5.050339435797596,5.050339435797596,8.308218794730493,15.21064741687637,15.82003354117856,15.90959019835033,7.085909272228619,7.435374936340878,15.066236258756277,15.662918262618078,15.840864743385353,7.967573468230881,208.82051327054992,208.82051327054992,0.0,232.02279252283324,0.0,208.82051327054992,232.02279252283324,0,0
+2017/01/12 14:00:00,206.17900048078332,0,1199.4779934761393,0,0,0,0.0,0.0,17.54002700323698,0.0,129.2730206906943,0,39.380909295966944,0.30544452236631986,16.247623766064446,0,0,214.4384792719381,541.4101077973997,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,797.8155794926345,0.0,0.0,0.0,0.0,0.0,2834.2405042667106,0.0,5816.735686228336,0.0,8757.01563169689,0.0,6629.799528049134,0.0,0.0,0.0,966.3885232226951,0.0,4960.340474222723,0.0,7689.608135114871,0.0,5857.103017811489,0.0,0.0,0,0,0,0,0,0,0,0,0.06386109683401596,0.0020205205889717213,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.25792167770415886,-0.25792167770415886,-0.5276767610351455,-0.5276767610351455,-0.7679617746411402,-0.7679617746411402,-0.7125859419441943,-0.7125859419441943,-0.06984673020919145,-0.06984673020919145,-0.3633304722706292,-0.6171586583932316,-0.702575564229698,-0.7069598997338365,-0.3164683936063717,-0.30855606530455676,-0.6001513451828258,-0.6967198144892832,-0.7047777474971963,-0.36812181022283347,6.38103151817991,6.38103151817991,10.824653229238791,10.824653229238791,17.425201823528653,17.425201823528653,15.68274261389152,15.68274261389152,5.1010108232437545,5.1010108232437545,7.747644466213302,12.990458426011031,15.3818272122667,15.513089908174464,7.081998876215508,6.978802941244069,12.552078024351133,15.207805801358148,15.447654748468821,7.820964856244487,206.17900048078332,206.17900048078332,0.0,229.08777831198145,0.0,206.17900048078332,229.08777831198145,0,0
+2017/01/12 15:00:00,190.35662570719944,0,1217.6928506537492,0,0,0,0.0,0.0,17.54002700323698,0.0,115.5196477718057,0,39.380909295966944,0.4236023913547719,14.060464042380769,0,0,269.7623709229334,539.7914258365582,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1282.4536093567199,0.0,94.82351513245844,0.0,0.0,0.0,1647.5548174240644,0.0,6205.410773789838,0.0,7394.68453655203,0.0,7360.68070301047,0.0,0.0,0.0,0.0,0.0,5352.616292710993,0.0,6390.154522249844,0.0,6632.945426045576,0.0,3971.591383893382,0,0,0,0,0,0,0,0,0.06483086932201805,0.0020512035145049206,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.38915922463581604,-0.38915922463581604,-0.38908829184020677,-0.38908829184020677,-0.7737042213210454,-0.7737042213210454,-0.7330606888242435,-0.7330606888242435,-0.13619817518833796,-0.13619817518833796,-0.383822243041375,-0.563662049208478,-0.705770298587839,-0.7135363845575562,-0.33258838208197317,-0.33727665153777486,-0.5366172741272945,-0.7032726012269565,-0.7150791198559227,-0.3841437294509688,8.154481574076087,8.154481574076087,8.153325293309067,8.153325293309067,17.613407260563605,17.613407260563605,16.311664871865034,16.311664871865034,5.384309734182537,5.384309734182537,8.06808336252017,11.653886952966005,15.477392437177429,15.711537840891083,7.30045042346589,7.366053209476803,11.025437104208862,15.402640366252484,15.758360428653802,8.073253339794533,190.35662570719944,190.35662570719944,0.0,211.50736189688826,0.0,190.35662570719944,211.50736189688826,0,0
+2017/01/12 16:00:00,184.56342653743553,0,1260.758371609831,0,0,0,0.0,0.0,18.34437013288668,0.0,108.75639138185811,0,39.380909295966944,0.5735968688392282,14.076183655430231,0,0,312.84165531679804,539.7776623987755,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1618.6429767867658,0.0,344.6799030883873,0.0,0.0,0.0,1557.1439859457637,0.0,6387.106815509766,0.0,6740.0707711508985,0.0,8109.024357071898,0.0,3087.410939162582,0.0,85.89994198889923,0.0,5495.613110025903,0.0,5840.87150930073,0.0,7450.943088640552,0.0,11200.384278155081,0,0,0,0,0,0,0,0,0.06712370955663832,0.002123747381286823,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5476234296112188,-0.5476234296112188,-0.3705281165273969,-0.3705281165273969,-0.7772897993133598,-0.7772897993133598,-0.7477948083632482,-0.7477948083632482,-0.17886113963000383,-0.17886113963000383,-0.4226339906768596,-0.530684221957919,-0.7168532044627858,-0.7292652728286739,-0.35231779793320056,-0.39190793297777327,-0.4998524910897965,-0.7181081809094554,-0.7353545128547258,-0.40706780348299965,11.27736568659104,11.27736568659104,7.85815690817482,7.85815690817482,17.73163527766367,17.73163527766367,16.77540043622176,16.77540043622176,5.663170542260744,5.663170542260744,8.724178053161808,10.891807702688965,15.812331318189791,16.193719415789715,7.5828269881398285,8.199454073633973,10.221917447815372,15.85059186571526,16.383247303981662,8.45329452391097,184.56342653743553,184.56342653743553,0.0,205.07047393048393,0.0,184.56342653743553,205.07047393048393,0,0
+2017/01/12 17:00:00,208.72909613132387,0,1280.8600305320012,0,0,0,0.0,0.0,19.66317217882844,0.0,131.64086955684016,0,39.380909295966944,0.5796899890597985,14.032479908174219,0,0,299.6292816737844,519.856166195143,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1247.040068801584,0.0,133.3956794858209,0.0,0.0,0.0,2750.8472519118877,0.0,6417.562345927128,0.0,6830.9613602879635,0.0,7999.350880502755,0.0,2205.4810899121358,0.0,1587.2474322771213,0.0,5614.302389858883,0.0,6113.411674383793,0.0,7423.106368206882,0.0,10010.905312718023,0,0,0,0,0,0,0,0,0.06819393676708742,0.0021576086242155283,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.579689863636294,-0.579689863636294,-0.46078492579140234,-0.46078492579140234,-0.7610124099720583,-0.7610124099720583,-0.7366704123962516,-0.7366704123962516,-0.13374438802511998,-0.13374438802511998,-0.47160814883528296,-0.5548763854238411,-0.7144826747974938,-0.7294196957683914,-0.3543016509595134,-0.45809867507929314,-0.5346450622693316,-0.7206746900920167,-0.7380729864689696,-0.40972639838688624,12.041299649860122,12.041299649860122,9.432067849641612,9.432067849641612,17.199322224632553,17.199322224632553,16.424414056784315,16.424414056784315,5.370576006746333,5.370576006746333,9.64429466358473,11.44625406959294,15.740245939888155,16.19850614278907,7.612136447735892,9.380176145189921,10.98084805610165,15.929048382405142,16.468374206976918,8.498824355628699,208.72909613132387,208.72909613132387,0.0,231.92121792369318,0.0,208.72909613132387,231.92121792369318,0,0
+2017/01/12 18:00:00,234.73773267843853,0,1311.8677950552099,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.5619179783664054,18.53847955714425,0,0,288.15847194952545,562.3347404426107,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1205.2604540606908,0.0,186.84406410013398,0.0,0.0,0.0,4838.594907652927,0.0,6722.5963089107145,0.0,8305.653065579432,0.0,7658.912420801579,0.0,0.0,0.0,3747.158139842537,0.0,5968.001204147451,0.0,7509.793550276691,0.0,7057.810226086227,0.0,3996.979382562332,0,0,0,0,0,0,0,0,0.06984481311796095,0.0022098412012014237,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6066287773749984,-0.6066287773749984,-0.5252472355307449,-0.5252472355307449,-0.7509137061480656,-0.7509137061480656,-0.7342286534793607,-0.7342286534793607,-0.0892770860130716,-0.0892770860130716,-0.4923334528230402,-0.6068170365501824,-0.7067042595654919,-0.7230139255094459,-0.3432441061180596,-0.48535642368684123,-0.599279460321204,-0.7108708930714829,-0.7321844439526015,-0.39609116466156147,12.71756017206829,12.71756017206829,10.77068959387941,10.77068959387941,16.874757230407255,16.874757230407255,16.348084824928776,16.348084824928776,5.165050039432359,5.165050039432359,10.064782680701782,12.72239695355674,15.505413525745254,16.000804311381543,7.450905807175687,9.921158794039556,12.529942605591458,15.630880899017441,16.284379925530573,8.268517031492479,234.73773267843853,234.73773267843853,0.0,260.81970297604283,0.0,234.73773267843853,260.81970297604283,0,0
+2017/01/12 19:00:00,220.11775420787384,0,1235.4903865803121,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.34354103604199676,27.0977424753112,0,0,210.42715387818066,599.1790025516019,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,896.2441432382273,0.0,43.53287759936431,0.0,0.0,0.0,6274.034702482438,0.0,5860.564063277379,0.0,9406.488076454018,0.0,6625.799785749694,0.0,0.0,0.0,5339.142684241786,0.0,5214.562080033576,0.0,8674.235689374793,0.0,6078.626299267338,0.0,0.0,0,0,0,0,0,0,0,0,0.06577842331750176,0.002081183462422406,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6101686703616018,-0.6101686703616018,-0.5838779253075409,-0.5838779253075409,-0.750536987193827,-0.750536987193827,-0.7363500935466966,-0.7363500935466966,-0.08029659376477878,-0.08029659376477878,-0.4922899078327304,-0.6008908959510597,-0.6905191592170624,-0.7043730611976643,-0.3215590385890885,-0.48839908668846904,-0.5962169818093775,-0.6938800260188916,-0.7121501251427237,-0.3675540075896834,12.808765069341092,12.808765069341092,12.144367086047964,12.144367086047964,16.86273420288167,16.86273420288167,16.41438631752716,16.41438631752716,5.133505883271013,5.133505883271013,10.063879778435648,12.570879605759615,15.025148739070644,15.435542194785285,7.149795043738862,9.98353437264575,12.452453848060571,15.123945998801219,15.669551844398242,7.812224847623909,220.11775420787384,220.11775420787384,0.0,244.57528245319315,0.0,220.11775420787384,244.57528245319315,0,0
+2017/01/12 20:00:00,210.8824420266581,0,1237.4884365472276,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.3527641804164039,27.0977424753112,0,0,247.43915136455342,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,725.1287029678293,0.0,0.0,0.0,0.0,0.0,5860.10572410362,0.0,5506.210257493273,0.0,8686.319101592147,0.0,6189.246129742114,0.0,0.0,0.0,5257.806094411818,0.0,5062.850405164229,0.0,8215.730609940141,0.0,5824.378915066849,0.0,0.0,0,0,0,0,0,0,0,0,0.06588480097770927,0.002084549177440025,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6392176822783608,-0.6392176822783608,-0.6167808672704359,-0.6167808672704359,-0.7529407392308899,-0.7529407392308899,-0.7392940558187409,-0.7392940558187409,-0.10424591563449198,-0.10424591563449198,-0.4954409986722321,-0.5968609514937672,-0.6784268310678984,-0.6919408992046369,-0.31136123167943,-0.4968578381244128,-0.5969164639934877,-0.6828438858625504,-0.7005704070853797,-0.3536696811163884,13.57774959932452,13.57774959932452,12.980584155746783,12.980584155746783,16.939554540071526,16.939554540071526,16.506714314830646,16.506714314830646,5.22506585256437,5.22506585256437,10.129428872573882,12.468714176810167,14.673717167510262,15.066883162564125,7.015085831827065,10.159041786049556,12.470116718174083,14.80135417184458,15.322071210897903,7.602781544881438,210.8824420266581,210.8824420266581,0.0,234.31382447406457,0.0,210.8824420266581,234.31382447406457,0,0
+2017/01/12 21:00:00,211.92545898788086,0,1144.400701517162,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.22836493200876617,23.793364889714784,0,0,189.84176884703163,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1030.8433811821458,0.0,192.25996081735542,0.0,0.0,0.0,6071.5368155928345,0.0,5591.535370377545,0.0,8714.07671599906,0.0,6205.234172498836,0.0,0.0,0.0,5510.202718822633,0.0,5179.964931693686,0.0,8258.342973830786,0.0,5846.889986415549,0.0,0.0,0,0,0,0,0,0,0,0,0.060928741014002655,0.001927742894847119,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6398859603280384,-0.6398859603280384,-0.64064541037905,-0.64064541037905,-0.7622113281420494,-0.7622113281420494,-0.7500529605738719,-0.7500529605738719,-0.14690276151222217,-0.14690276151222217,-0.4997638087796382,-0.596705603325271,-0.6729013084422926,-0.6854489467711697,-0.3056242592440689,-0.5048023037636732,-0.600304140988385,-0.6788242390126525,-0.6948217752789635,-0.3458640976592066,13.595871027986377,13.595871027986377,13.616488244436326,13.616488244436326,17.238144191737277,17.238144191737277,16.847295361044004,16.847295361044004,5.447153314195347,5.447153314195347,10.220049908799481,12.464789965632121,14.515237921557812,14.877026659087548,6.9412379569395455,10.326693229245834,12.55596060289821,14.685166276368207,15.15171753196016,7.48863806415919,211.92545898788086,211.92545898788086,0.0,235.4727322087565,0.0,211.92545898788086,235.4727322087565,0,0
+2017/01/12 22:00:00,198.31379176762766,0,1325.6144438902047,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.521117667033694,25.89673664997446,0,0,406.5458637326186,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,392.40499800859584,0.0,368.71796077449756,0.0,2254.9901526796048,0.0,983.4940466631151,0.0,0.0,0.0,5654.92344432426,0.0,7058.781832027033,0.0,8123.555931578489,0.0,7623.3213369650775,0.0,0.0,0.0,4923.71972076563,0.0,6536.559427068061,0.0,7491.86519409565,0.0,7146.520195637212,0.0,4877.205922978717,0,0,0,0,0,0,0,0,0.07057669488417052,0.0022329974301206197,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7041453291507471,-0.7041453291507471,-0.7144185941931356,-0.7144185941931356,-0.7871944902604564,-0.7871944902604564,-0.7738273363882466,-0.7738273363882466,-0.22700667780059847,-0.22700667780059847,-0.5195530642024461,-0.6170093148304345,-0.6841981329476071,-0.6990946968358914,-0.32016555141606196,-0.5311377343428412,-0.6265721688269142,-0.6930739432888673,-0.7113054433197019,-0.36421000962921074,15.428729116926448,15.428729116926448,15.738300675237582,15.738300675237582,18.061067581826777,18.061067581826777,17.61745767991603,17.61745767991603,6.069136096380859,6.069136096380859,10.645214103869122,12.98655431527709,14.840656068897658,15.278204205919778,7.131127710589439,10.90196829518311,13.2384978058586,15.100205609563801,15.644009359982647,7.761030460433346,198.31379176762766,198.31379176762766,0.0,220.34865751958628,0.0,198.31379176762766,220.34865751958628,0,0
+2017/01/12 23:00:00,140.60849398174497,0,1143.258995084612,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.6584478490191922,20.765113324949553,0,0,402.3208563703668,581.2315524077964,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1618.8506139615474,0.0,1092.5009189487323,0.0,3259.784134673412,0.0,1631.9656602646355,0.0,0.0,0.0,4555.202480157919,0.0,7079.806137572615,0.0,6876.910956302165,0.0,7655.4524165418225,0.0,4943.173471574915,0.0,4226.097263801732,0.0,6818.02890836727,0.0,6662.181231730757,0.0,7451.96078067861,0.0,10779.111359934948,0,0,0,0,0,0,0,0,0.06086795571786414,0.001925819690448143,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7947328040848246,-0.7947328040848246,-0.8053473347848153,-0.8053473347848153,-0.8572877452657001,-0.8572877452657001,-0.8388725691025108,-0.8388725691025108,-0.46402015192788254,-0.46402015192788254,-0.543135827785143,-0.6429214288066097,-0.6986324616040936,-0.7191002908986299,-0.3497776528354256,-0.563507647066091,-0.6600840427809035,-0.7114993801846794,-0.7351965894332929,-0.399138871718447,18.314586184734424,18.314586184734424,18.675641711219356,18.675641711219356,20.510727942700413,20.510727942700413,19.847192066784046,19.847192066784046,9.494976879222222,9.494976879222222,11.17401165521943,13.67842640446679,15.264483125039575,15.880886393584348,7.54554330229125,11.650209047882342,14.152711146664885,15.64987113137228,16.37831180743565,8.319304260881992,140.60849398174497,140.60849398174497,0.0,156.23165997971662,0.0,140.60849398174497,156.23165997971662,0,0
+2017/01/13 00:00:00,91.52905070707406,0,1028.1712011092602,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.7712934733668844,11.814800972414593,0,0,457.371333864726,517.5643384757179,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3233.3710068917394,0.0,2071.814953142056,0.0,4575.452529402789,0.0,2474.6596858730504,0.0,0.0,0.0,4179.79626946287,0.0,7695.269035438994,0.0,6366.885725123792,0.0,8285.728573402825,0.0,12739.3897552592,0.0,4079.382679690255,0.0,7606.673870928396,0.0,6334.588898932169,0.0,8205.755898385245,0.0,18131.59701736643,0,0,0,0,0,0,0,0,0.05474059632032016,0.0017319543102316784,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8715553766846857,-0.8715553766846857,-0.8810940726389205,-0.8810940726389205,-0.9355041965980456,-0.9355041965980456,-0.9090286084067133,-0.9090286084067133,-0.5921275812101204,-0.5921275812101204,-0.5694000556832057,-0.671789451167017,-0.7164890147353907,-0.741516228833168,-0.3827595579713847,-0.5961926438304451,-0.6938636119975061,-0.7326630691214218,-0.7612157598262205,-0.4362805107889148,21.03449231730906,21.03449231730906,21.38933947634746,21.38933947634746,23.48425847654063,23.48425847654063,22.449932150639412,22.449932150639412,12.349615925537165,12.349615925537165,11.791301220996573,14.483508095152615,15.801240942411084,16.576652063245064,8.051025219281328,12.45183966349262,15.123462300381192,16.299279504050475,17.20590253650451,8.970204240576734,91.52905070707406,91.52905070707406,0.0,101.69894523008229,0.0,91.52905070707406,101.69894523008229,0,0
+2017/01/13 01:00:00,39.59800469700428,0,615.6776697427271,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.15451139207274794,0.10678730344627825,9.53938500506207,0,0,60.14114006928296,502.301000904628,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.936733298638956,0.0,635.6927769224013,0.0,323.1099556304411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03277913517365729,0.001037108987952481,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8594599320820158,-0.8594599320820158,-0.8922275494200468,-0.8922275494200468,-0.941328039376313,-0.941328039376313,-0.9181317046453387,-0.9181317046453387,-0.2637600822732857,-0.2637600822732857,-0.7153247487406036,-0.916256381059519,-1.0107341886256689,-1.0359136288065125,-0.1651904231529261,-0.7568933253889372,-0.916703696501304,-1.020094902433504,-1.0476516811584256,-0.30399859138127217,20.589925422090545,20.589925422090545,21.808233257302973,21.808233257302973,23.71553861088728,23.71553861088728,22.80238917252528,22.80238917252528,6.444443998324431,6.444443998324431,15.765824820145909,22.729506530436666,26.573800825361687,27.656022873751496,5.565554434640774,17.06641101001567,22.746878158780518,26.973376189648164,28.16850974460951,6.920565138239667,39.59800469700428,39.59800469700428,0.0,43.99778299667142,0.0,39.59800469700428,43.99778299667142,0,0
+2017/01/13 02:00:00,23.72228702129464,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251915976168497,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9253270027869048,-0.9253270027869048,-0.9783466279248609,-0.9783466279248609,-1.0958585155266398,-1.0958585155266398,-1.057023276940152,-1.057023276940152,-0.1046492743838095,-0.1046492743838095,-0.7990734159469949,-1.0142098625353815,-1.1708477215200273,-1.1905595379250224,-0.09366643130794569,-0.863911937248934,-1.0605159814866156,-1.225189226770668,-1.2486232936007577,-0.3072014329602827,23.083338704766604,23.083338704766604,25.21686121279403,25.21686121279403,30.32487460692967,30.32487460692967,28.58126289535059,28.58126289535059,5.2268117643917975,5.2268117643917975,18.46165679903953,26.721782186625887,33.835276063144434,34.78738839055194,5.181685002829482,20.752855269355024,28.735899458824704,36.4874432486928,37.65662726999722,6.961400950523,23.72228702129464,23.72228702129464,0.0,26.35809669032738,0.0,23.72228702129464,26.35809669032738,0,0
+2017/01/13 03:00:00,28.39715625680897,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5777931703360731,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9508030785577299,-0.9508030785577299,-1.0089338634223186,-1.0089338634223186,-1.1287308880335627,-1.1287308880335627,-1.0932979597873116,-1.0932979597873116,-0.023888818115167867,-0.023888818115167867,-0.8574824130620837,-1.076786934962779,-1.2434655172911073,-1.26346678378298,-0.07120562647666212,-0.9392764919788822,-1.1456630722526429,-1.3250860113403105,-1.348226017493143,-0.308206305472313,24.094688675776183,24.094688675776183,26.497327956177045,26.497327956177045,31.841190468568854,31.841190468568854,30.20829441871284,30.20829441871284,5.0118135736833835,5.0118135736833835,20.517817511472273,29.461998065235022,37.39804561333588,38.4046021048146,5.104980368336669,23.633912578873378,32.63611419761412,41.56570904379003,42.77383212625815,6.974302390905322,28.39715625680897,28.39715625680897,0.0,31.552395840898853,0.0,28.39715625680897,31.552395840898853,0,0
+2017/01/13 04:00:00,23.72189487921832,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5247994555405298,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9824570900196219,-0.9824570900196219,-1.0450989896039757,-1.0450989896039757,-1.1633331474404884,-1.1633331474404884,-1.1322302686360914,-1.1322302686360914,0.04366779389886352,0.04366779389886352,-0.9053105111263575,-1.1250887501743532,-1.3019750360202131,-1.3192894180177699,-0.04072997473507604,-1.0075149208850684,-1.2184984261470522,-1.408368326453543,-1.4299040092098523,-0.30704105334027915,25.386855280355874,25.386855280355874,28.05663160144394,28.05663160144394,33.4754072750725,33.4754072750725,32.004717427164735,32.004717427164735,5.039476669353689,5.039476669353689,22.306936235161913,31.671417500645774,40.37006120141933,41.26475679762824,5.0343432549642415,26.437141109529747,36.156342428568024,45.95831885948511,47.111757300969266,6.959345809319657,23.72189487921832,23.72189487921832,0.0,26.35766097690924,0.0,23.72189487921832,26.35766097690924,0,0
+2017/01/13 05:00:00,43.66548394893579,0,404.25656119474485,0,0,0,0.0,0.020283517334852213,4.633261998087618,9.319298099999997,25.555573451546493,0,2.140056298223842,1.4719229908303737,0.5250875929125982,0,0,297.7456106422717,17.785069271112786,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12854104883482168,600.280599020974,0.0,615.1830807870491,1.0210530247776535,1589.356279441807,0.10984207922853205,917.8132921754716,0.0,0.0,2.207564304450608,2567.952128631778,1.8647111351075925,2331.412744657055,2.610132956172575,4806.940032622312,2.6635547267197905,2968.251775726642,0.0,0.0,2.0822411194188297,3011.514358121899,1.5675568971525782,2562.3175937237047,3.730061608104981,5310.9703378017975,2.2982584348842465,3325.4684355124396,0.0,0.0,0,0,0,0,0,0,0,0,0.021522918753538137,0.000680970146649995,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.901249163611591,-0.901249163611591,-0.9288003487262486,-0.9288003487262486,-0.976655105523773,-0.976655105523773,-0.9616121969167618,-0.9616121969167618,0.17850715506390832,0.17850715506390832,-0.7024014089584866,-0.8036481663930676,-0.869405674682778,-0.886294138616764,-0.009436029824339219,-0.7590027136084099,-0.8620663216018386,-0.9255555518878624,-0.9492580079253058,-0.30248901197966827,22.15137919637101,22.15137919637101,23.219702506513215,23.219702506513215,25.14709520563696,25.14709520563696,24.531540313721095,24.531540313721095,5.660544561949166,5.660544561949166,15.376630302351444,18.617523742922728,20.955038779374462,21.584359243042172,5.001843152130235,17.134384381208704,20.685211810366653,23.092296718731504,24.03261968164962,6.901468654062015,43.66548394893579,43.66548394893579,0.0,48.51720438770643,0.0,43.66548394893579,48.51720438770643,0,0
+2017/01/13 06:00:00,76.46750087000953,0,335.3440368545866,0,0,0,0.03392628454450462,0.017091811981412772,5.555297838843742,9.319298099999997,57.911447091112116,0,1.8465806728256469,1.2587414534562031,0.5251176172458942,0,0,122.40192177932177,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.66027906483885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.64693590232804,0.0,410.8883380402244,0.0,238.07082209470815,0.0,0.0,1.5476202425289785,1930.6594513754624,1.4136940489318022,1891.2141072863128,3.029511289149582,4135.052738475533,2.1828196148147754,2608.021583577198,0.0,0.0,1.964400490461344,2427.572586296137,1.5465756112199642,2150.206325517109,3.512268640316279,4626.351486496478,1.89492204399005,2907.786220293566,0.0,0.0,0,0,0,0,0,0,0,0,0.017853964913701916,0.0005648870046293704,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7726485293709906,-0.7726485293709906,-0.8222664470417883,-0.8222664470417883,-0.8642880293424515,-0.8642880293424515,-0.853493115306553,-0.853493115306553,0.5007957508581855,0.5007957508581855,-0.6705309240292481,-0.7494966489557072,-0.794734538361752,-0.8098822778597421,0.09372559057659988,-0.7013977329968502,-0.7745620475666738,-0.8084486951665305,-0.8310053594942186,-0.19794706081232286,17.578702080835484,17.578702080835484,19.260982835084732,19.260982835084732,20.76665665801012,20.76665665801012,20.372846056163553,20.372846056163553,10.2418023545425,10.2418023545425,14.447657221795993,16.829563262711986,18.31464478692297,18.83135090328308,5.181914667722467,15.346705449974976,17.641642708844614,18.782034388389476,19.568033178541413,5.812504513589943,76.46750087000953,76.46750087000953,0.0,84.96388985556614,0.0,76.46750087000953,84.96388985556614,0,0
+2017/01/13 07:00:00,102.40839672677603,0,812.4438933433378,0,0,0,0.0,0.016300347641302098,11.110595677687485,13.929299233552332,73.80580873715317,0,1.883508718053155,1.1377905696522146,0.525093443036373,0,0,102.09735100352424,479.6592510082769,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,263.7255961176928,0.0,158.89998667290118,0.0,0.0,1.2702072388661538,1840.1271047129421,1.5045288881478882,1720.2444087023823,3.3416220832652166,3628.35796758001,1.6802359504693716,2303.4650514932587,0.0,0.0,1.8538989030695725,2060.865538760746,1.5390921740431622,1767.1021366949058,3.187798009818228,3697.8030989493996,1.9229643936225025,2337.378580577072,0.0,0.0,0,0,0,0,0,0,0,0,0.0432551146642074,0.0013685616766734069,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6824640048233293,-0.6824640048233293,-0.7486956520077298,-0.7486956520077298,-0.79251829582298,-0.79251829582298,-0.7856626482375623,-0.7856626482375623,0.7536447267296672,0.7536447267296672,-0.658163368028169,-0.7308607858931526,-0.7699060372570468,-0.7849284088368853,0.14856197976646462,-0.6840576892606196,-0.7508439399744575,-0.779479462543359,-0.8022305483567723,-0.09102068921157128,14.79034380689022,14.79034380689022,16.804055253561714,16.804055253561714,18.23986072829662,18.23986072829662,18.00984555463971,18.00984555463971,16.962099766177815,16.962099766177815,14.098999349277122,16.243225774245786,17.488766472878424,17.98532925776132,5.4573210684748545,14.836576536349853,16.87253017661169,17.804104731505575,18.569129238727,5.171562329129728,102.40839672677603,102.40839672677603,0.0,113.7871074741956,0.0,102.40839672677603,113.7871074741956,0,0
+2017/01/13 08:00:00,164.9095850462802,0,1106.4241622795976,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.6402910667201952,27.08249962797266,0,0,244.87559990602122,595.3709185294954,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2782.1171947093253,0.0,1767.5683972845757,0.0,3658.269386408173,0.0,1987.5775383650275,0.0,0.0,0.0,5936.757094569305,0.0,7540.408988966414,0.0,7839.464791454449,0.0,8029.262370115852,0.0,5371.088195996258,0.0,6107.225271296611,0.0,7542.797281910578,0.0,7845.550625869553,0.0,7981.53072708428,0.0,9017.042693828735,0,0,0,0,0,0,0,0,0.058906841935518935,0.0018637714173838122,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7635398870487358,-0.7635398870487358,-0.7912041517042077,-0.7912041517042077,-0.8336640371871885,-0.8336640371871885,-0.8191548856750287,-0.8191548856750287,0.12755886868819827,0.12755886868819827,-0.6491601613807825,-0.7250028689877832,-0.7518526822775253,-0.774025918192233,-0.21692272182489947,-0.6763438110272593,-0.7459979021882248,-0.762514123533809,-0.791574886828282,-0.32689323645692997,17.281235765615918,17.281235765615918,18.19561510153615,18.19561510153615,19.662083616382375,19.662083616382375,19.152429245309065,19.152429245309065,5.33706726667107,5.33706726667107,13.849355157393418,16.062000293503317,16.904751211090954,17.62399227528006,5.976075805727874,14.613818259130142,16.71834675391915,17.247958672604994,18.208089882876195,7.222013308529256,164.9095850462802,164.9095850462802,0.0,183.23287227364466,0.0,164.9095850462802,183.23287227364466,0,0
+2017/01/13 09:00:00,167.94176121784665,0,1219.064265459196,0,0,0,0.0,0.0,14.306023301715992,0.0,83.2008179303116,0,39.380909295966944,0.5242930120866619,27.097742475311204,0,0,299.99568530160985,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2009.469121031347,0.0,1363.3040833018445,0.0,2983.255425652704,0.0,1538.7123515995136,0.0,0.0,0.0,5735.928235649566,0.0,7254.952879282964,0.0,7500.379379765497,0.0,7695.651279194565,0.0,126.4700362291466,0.0,5669.131888712927,0.0,7104.186690011492,0.0,7256.769132349675,0.0,7489.292557393118,0.0,6191.85375798216,0,0,0,0,0,0,0,0,0.06490388446207612,0.002053513662640607,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7713037824544563,-0.7713037824544563,-0.7933220085560516,-0.7933220085560516,-0.8314048425080156,-0.8314048425080156,-0.8113898870089021,-0.8113898870089021,-0.2611306854519487,-0.2611306854519487,-0.639468482222234,-0.7181399042190227,-0.7383097159459572,-0.7630527068967526,-0.31351767100335154,-0.6655003916980619,-0.7374613993385741,-0.7458823725212851,-0.7772400932996436,-0.3901600503911544,17.53456320330372,17.53456320330372,18.266956845863163,18.266956845863163,19.582145950419758,19.582145950419758,18.883307530144975,18.883307530144975,6.415707851670675,6.415707851670675,13.584548170561504,15.851559895313983,16.47580222631504,17.265425408195185,7.043204355142194,14.305040514222298,16.449195164513313,16.71468329915821,17.72999256835716,8.17081902644351,167.94176121784665,167.94176121784665,0.0,186.6019569087185,0.0,167.94176121784665,186.6019569087185,0,0
+2017/01/13 10:00:00,182.14413917433572,0,1220.9637695524586,0,0,0,0.0,0.0,11.776367924284315,0.0,106.27511244621549,0,39.380909295966944,0.39933177877730525,20.880442526637445,0,0,267.0742584439403,581.240809726805,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,787.96279342932,0.0,2031.1476515605952,0.0,654.3833187805906,0.0,0.0,0.0,4251.849195816557,0.0,6753.908310076498,0.0,6846.615510102345,0.0,6879.400407529992,0.0,0.0,0.0,3917.1561111088,0.0,6566.2377259901905,0.0,6539.328769154278,0.0,6589.742585231745,0.0,4366.410444988953,0,0,0,0,0,0,0,0,0.06500501546697676,0.0020567133771415376,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6486880690995489,-0.6486880690995489,-0.7886351656479157,-0.7886351656479157,-0.8216391197624556,-0.8216391197624556,-0.7728948009552423,-0.7728948009552423,-0.2914349905889524,-0.2914349905889524,-0.567464275125677,-0.7108457363837021,-0.7259637049194435,-0.7309474115825512,-0.3302575143307002,-0.58087280956026,-0.7278790692143745,-0.7317917239318236,-0.7390757055916903,-0.39718178557360717,13.836361758685555,13.836361758685555,18.109332092849,18.109332092849,19.23906440184882,19.23906440184882,17.586793849756816,17.586793849756816,6.76456850365642,6.76456850365642,11.744783356111455,15.630121124351277,16.091624347115342,16.245916770308355,7.2681818972005345,12.070334607001968,16.150796464009332,16.27216192264467,16.49985368158795,8.286645578494884,182.14413917433572,182.14413917433572,0.0,202.38237686037303,0.0,182.14413917433572,202.38237686037303,0,0
+2017/01/13 11:00:00,212.6365728226148,0,1257.023996304154,0,0,0,0.0,0.0,17.05628975398338,0.0,133.89528835348938,0,39.380909295966944,0.37433716777686205,18.497773048943923,0,0,233.78260175219785,561.8668118888822,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.2303791079523,0.0,0.0,0.0,0.0,0.0,1781.2177413614697,0.0,5799.496621117945,0.0,4273.787331035235,0.0,5980.365635010901,0.0,0.0,0.0,1707.3678396308228,0.0,5744.168586646901,0.0,4177.488808152606,0.0,5816.929556837687,0.0,4263.584506436487,0,0,0,0,0,0,0,0,0.06692488864928739,0.0021174568263678446,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5770960372914601,-0.5770960372914601,-0.7029120816278328,-0.7029120816278328,-0.7643484906835514,-0.7643484906835514,-0.7021314618137695,-0.7021314618137695,-0.23641241167372623,-0.23641241167372623,-0.5427325843058606,-0.6980885908451736,-0.7065606215915314,-0.7246404057044721,-0.3470902786616641,-0.5450917723962796,-0.7109173671421294,-0.7091276739577059,-0.7295434325646948,-0.40402918430797413,11.977847700618085,11.977847700618085,15.391872824987544,15.391872824987544,17.307499589162944,17.307499589162944,15.36857748574677,15.36857748574677,6.159780860122382,6.159780860122382,11.16476728097399,15.248350572266204,15.501101590638243,16.050835309026823,7.506397354575682,11.218951750082795,15.632284566582854,15.57829728602411,16.20234241554661,8.401627191583202,212.6365728226148,212.6365728226148,0.0,236.2628586917942,0.0,212.6365728226148,236.2628586917942,0,0
+2017/01/13 12:00:00,228.69166699129107,0,1230.140911140268,0,0,0,0.0,0.0,17.05628975398338,0.0,147.76209134187457,0,39.380909295966944,0.21248612025013716,20.847915276761736,0,0,134.2766268005471,581.2541729078312,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2589.9721215930726,0.0,4665.879577633656,0.0,4988.529412688559,0.0,4883.008356238678,0.0,0.0,0.0,2091.132447820969,0.0,4327.880584055709,0.0,4470.984637581347,0.0,4460.457247221229,0.0,0.0,0,0,0,0,0,0,0,0,0.06549361328268168,0.0020721722714496693,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44533489898319184,-0.44533489898319184,-0.622132652771562,-0.622132652771562,-0.6810550224403741,-0.6810550224403741,-0.5897522667932652,-0.5897522667932652,-0.1388328998602345,-0.1388328998602345,-0.516268134144334,-0.6706173846072911,-0.6794975972047974,-0.7016577114374027,-0.336815164512011,-0.5131980739061914,-0.6785365404596478,-0.6780821221833222,-0.7035006523378625,-0.38274212640561794,9.137855008932021,9.137855008932021,13.121040570663666,13.121040570663666,14.749560765387116,14.749560765387116,12.290216082090268,12.290216082090268,5.399335040431424,5.399335040431424,10.573466321775058,14.45011797650389,14.704580959975559,15.354452600416963,7.359554229568133,10.506833649390018,14.676877153211379,14.663791824151758,15.409454403143059,8.050745811029572,228.69166699129107,228.69166699129107,0.0,254.10185221254562,0.0,228.69166699129107,254.10185221254562,0,0
+2017/01/13 13:00:00,207.8673244706591,0,1150.2269090594373,0,0,0,0.0,0.0,16.903073550514318,0.0,129.49988082968767,0,39.380909295966944,0.149660374031087,18.50182521800478,0,0,109.21866705778253,561.888483082309,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2162.656791608694,0.0,3128.0419383896638,0.0,4875.538383905294,0.0,3519.3770927234436,0.0,0.0,0.0,1768.6431746783833,0.0,2830.3561006621267,0.0,4454.3445978858335,0.0,3193.0013706009504,0.0,0.0,0,0,0,0,0,0,0,0,0.06123893261906416,0.0019375571410098801,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.40265616315050556,-0.40265616315050556,-0.5345487358718748,-0.5345487358718748,-0.6127757564581132,-0.6127757564581132,-0.4600501022303406,-0.4600501022303406,-0.10468865056384209,-0.10468865056384209,-0.4600888308200089,-0.6147397975276668,-0.6477950027237689,-0.6661551512715412,-0.3230497583877686,-0.44273682830658784,-0.6118236225182654,-0.6403846051308066,-0.6625217365415151,-0.35817631945391143,8.378410590595351,8.378410590595351,10.97867456153935,10.97867456153935,12.876284075358484,12.876284075358484,9.41784200922659,9.41784200922659,5.226982563520792,5.226982563520792,9.418591196187563,12.927344148436148,13.811808315448786,14.323541058963912,7.169856037776171,9.089388757155675,12.851591265148343,13.609405197989119,14.221111565490702,7.669863837580948,207.8673244706591,207.8673244706591,0.0,230.96369385628788,0.0,207.8673244706591,230.96369385628788,0,0
+2017/01/13 14:00:00,205.5178376497591,0,1070.8326221396323,0,0,0,0.0,0.0,17.05628967067655,0.0,129.2730206906943,0,39.380909295966944,0.08087303894515244,16.2947697510218,0,0,66.346662814496,560.8565529183348,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,680.9731699135248,0.0,2328.210340546494,0.0,3110.8677413835426,0.0,2695.348138520073,0.0,0.0,0.0,408.01329804037175,0.0,2125.982720383351,0.0,2840.857785389131,0.0,2454.4364412134255,0.0,0.0,0,0,0,0,0,0,0,0,0.057011921975576134,0.0018038174707193932,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.29707076453088016,-0.29707076453088016,-0.42690631343885027,-0.42690631343885027,-0.5184019521532126,-0.5184019521532126,-0.34419418112130873,-0.34419418112130873,-0.11901345389968017,-0.11901345389968017,-0.4597361058728635,-0.58342104938118,-0.6210173779040791,-0.6407417085655521,-0.31804804941838805,-0.4509123908866071,-0.5782744230716509,-0.6150887522104553,-0.6368959781477517,-0.3506881604156837,6.833720313343051,6.833720313343051,8.800342136904447,8.800342136904447,10.620018957710286,10.620018957710286,7.46455475902151,7.46455475902151,5.293391148513635,5.293391148513635,9.411770276881256,12.133086467001135,13.091667912871102,13.619104292293386,7.102918910147139,9.242881870692003,12.00663799218512,12.936433596970147,13.514943420010738,7.558875973276685,205.5178376497591,205.5178376497591,0.0,228.35315294417677,0.0,205.5178376497591,228.35315294417677,0,0
+2017/01/13 15:00:00,189.45111572012982,0,1058.5019152673046,0,0,0,0.0,0.0,16.903073467207488,0.0,115.5196477718057,0,39.380909295966944,0.1671464267922196,14.048363555903162,0,0,130.42526815349126,519.9375932195557,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.219748641946346,0.0,2854.135017853717,0.0,2866.497932134361,0.0,3600.234278107617,0.0,0.0,0.0,0.0,0.0,2558.463324246799,0.0,2486.6418776305663,0.0,3294.765120561323,0.0,0.0,0,0,0,0,0,0,0,0,0.056355426008256625,0.0017830463959288417,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.40705226804593775,-0.40705226804593775,-0.25182363199583996,-0.25182363199583996,-0.581250304494246,-0.581250304494246,-0.32871219539883323,-0.32871219539883323,-0.19766022688625862,-0.19766022688625862,-0.43532389421269957,-0.5369202911032556,-0.6286882033425677,-0.6522357159625198,-0.3434173111834135,-0.40462420888078615,-0.5191572879506594,-0.6239355860390063,-0.650272538306145,-0.3749193240958895,8.453029360891307,8.453029360891307,6.316330227821155,6.316330227821155,12.079612856375931,12.079612856375931,7.246915587329227,7.246915587329227,5.810147571183919,5.810147571183919,8.952697298798043,11.032302840766718,13.29478313496864,13.934240163500704,7.45339124369049,8.411713603708463,10.636545021119744,13.168638033186795,13.880009318815098,7.926664113680374,189.45111572012982,189.45111572012982,0.0,210.50123968903313,0.0,189.45111572012982,210.50123968903313,0,0
+2017/01/13 16:00:00,183.2163886946839,0,1077.880051743984,0,0,0,0.0,0.0,17.403440016440797,0.0,108.75639138185811,0,39.380909295966944,0.1847530137553215,14.058919784208426,0,0,129.9008534979608,539.8401443517657,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,228.69170803684244,0.0,3427.45018508067,0.0,2646.3125396395944,0.0,4193.114697859959,0.0,0.0,0.0,0.0,0.0,3110.2427418138127,0.0,2342.5858090423844,0.0,3922.0325992213957,0.0,0.0,0,0,0,0,0,0,0,0,0.0573871323477899,0.0018156888653530325,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3988904064839416,-0.3988904064839416,-0.45261541267609207,-0.45261541267609207,-0.6212692620824601,-0.6212692620824601,-0.32912334273827515,-0.32912334273827515,-0.24425014361478767,-0.24425014361478767,-0.4758863775438053,-0.5623962823626238,-0.6401288933437032,-0.669971204229321,-0.3670576531249653,-0.46039377502674306,-0.550310627319924,-0.6395229200879585,-0.670972741137712,-0.39894163867821825,8.315148942045056,8.315148942045056,9.27521725543157,9.27521725543157,13.098296991972688,13.098296991972688,7.2525638070132175,7.2525638070132175,6.238150820340806,6.238150820340806,9.72957636652184,11.623766514048725,13.602463345790156,14.431734864617084,7.8045958744116035,9.424492459562131,11.33967238697582,13.586024207899356,14.460235178083693,8.316005530299606,183.2163886946839,183.2163886946839,0.0,203.57376521631545,0.0,183.2163886946839,203.57376521631545,0,0
+2017/01/13 17:00:00,211.14497678399334,0,1117.1257053644324,0,0,0,0.0,0.0,22.444205949699924,0.0,131.64086955684016,0,39.380909295966944,0.17479122929795954,14.072225549734044,0,0,115.88847527943913,539.8626474219197,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,604.4031231428279,0.0,3457.6091333010436,0.0,2549.819739298334,0.0,3960.168115223173,0.0,0.0,0.0,368.97474581292596,0.0,3254.5825188679155,0.0,2300.2314075904724,0.0,3736.5587403778222,0.0,0.0,0,0,0,0,0,0,0,0,0.05947660001605985,0.0018817981658979833,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3569722693865917,-0.3569722693865917,-0.4978707872782528,-0.4978707872782528,-0.5588583117784204,-0.5588583117784204,-0.27074171389003676,-0.27074171389003676,-0.2045243941047407,-0.2045243941047407,-0.5038529755244242,-0.5972246717910782,-0.6435502682280676,-0.6761491135263337,-0.3748437768960985,-0.5067021521340941,-0.5997588015146738,-0.6432995961456558,-0.6792999615534705,-0.406385797782865,7.6518566648102535,7.6518566648102535,10.180266278509364,10.180266278509364,11.539944790195847,11.539944790195847,6.522157562782866,6.522157562782866,5.867495196769255,5.867495196769255,10.306516134297297,12.477906121084786,13.695578860426224,14.60822917126211,7.92547854947486,10.367189747538646,12.542108039808866,13.688739380872889,14.69888057177576,8.441663597888606,211.14497678399334,211.14497678399334,0.0,234.6055297599926,0.0,211.14497678399334,234.6055297599926,0,0
+2017/01/13 18:00:00,234.32980690178084,0,1139.2094509557212,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.17713290675031537,18.515338852102605,0,0,115.9492370936093,561.8856311990381,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1591.6772445836064,0.0,3240.1586026234727,0.0,3364.468019235771,0.0,3634.02374314986,0.0,0.0,0.0,1258.2784756130816,0.0,2940.5542874624025,0.0,2970.519339663372,0.0,3320.53869238947,0.0,0.0,0,0,0,0,0,0,0,0,0.060652354988917655,0.0019189982336703815,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.445616629341039,-0.445616629341039,-0.45956602100133914,-0.45956602100133914,-0.5839326283503203,-0.5839326283503203,-0.24478464771913946,-0.24478464771913946,-0.16957989626577868,-0.16957989626577868,-0.5125349952733071,-0.6064363705379469,-0.643291868177446,-0.6737529357381656,-0.3695507438376982,-0.51850747495368,-0.6097083885387558,-0.6423669211299202,-0.6766791633340146,-0.3991260146419369,9.143128046971114,9.143128046971114,9.408483126533994,9.408483126533994,12.145718353558749,12.145718353558749,6.243589333016573,6.243589333016573,5.5960478611144,5.5960478611144,10.49249570914219,12.712618417672005,13.688528569893705,14.539577578636738,7.843020793697377,10.622326217549926,12.796875206101674,13.6633156761429,14.623448903083954,8.319089175053179,234.32980690178084,234.32980690178084,0.0,260.3664521130898,0.0,234.32980690178084,260.3664521130898,0,0
+2017/01/13 19:00:00,218.26160695617656,0,1091.00345586699,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.09180825003454714,25.493328009621326,0,0,65.46381817177136,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2114.1256117237785,0.0,2434.1589024592017,0.0,3769.935753854007,0.0,2766.872247931141,0.0,0.0,0.0,1784.8194667752146,0.0,2135.885772675022,0.0,3347.462467929603,0.0,2438.353462117947,0.0,0.0,0,0,0,0,0,0,0,0,0.05808583210389167,0.0018377952386021868,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5652367734175923,-0.5652367734175923,-0.5142924487811135,-0.5142924487811135,-0.5994473435750508,-0.5994473435750508,-0.22324910045642093,-0.22324910045642093,-0.15766378195480873,-0.15766378195480873,-0.5074286187366789,-0.5919541698756667,-0.6294624996022268,-0.6544479558399225,-0.34698819027570316,-0.5135601938164989,-0.5947277229576842,-0.6271435128005018,-0.6558733785967389,-0.377904164934089,11.691456401228962,11.691456401228962,10.530539227650152,10.530539227650152,12.534202261976048,12.534202261976048,6.033960917466828,6.033960917466828,5.51513683804059,5.51513683804059,10.382716102655564,12.34527111675662,13.31542753007821,13.995551297191014,7.504916326567908,10.514671901211173,12.414918784262042,13.253676088448842,14.03516854935829,7.973700156581444,218.26160695617656,218.26160695617656,0.0,242.51289661797395,0.0,218.26160695617656,242.51289661797395,0,0
+2017/01/13 20:00:00,210.63166525496322,0,1072.4994461953045,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.10198740872151955,27.0977424753112,0,0,82.45016101263008,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2420.5905563218244,0.0,2625.20546763347,0.0,3980.8587504996367,0.0,2923.6260722780307,0.0,7.251626973491773,0.0,2090.8179460767046,0.0,2324.3025335442912,0.0,3543.632024244029,0.0,2585.63373121536,0.0,0.0,0,0,0,0,0,0,0,0,0.057100664922927806,0.001806625235714663,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5620885742404202,-0.5620885742404202,-0.561613423151488,-0.561613423151488,-0.6236352306823252,-0.6236352306823252,-0.2374773472270756,-0.2374773472270756,-0.17758964650210066,-0.17758964650210066,-0.5063491976436219,-0.5820265625026454,-0.6208758769059576,-0.6406524528194738,-0.3397086657913638,-0.5143412570816565,-0.5861676057221555,-0.6193142601069724,-0.6425263615532409,-0.3681717798903004,11.616454729602538,11.616454729602538,11.605172218261146,11.605172218261146,13.160698856085588,13.160698856085588,6.1702777929796895,6.1702777929796895,5.65376251210192,5.65376251210192,10.359654488762331,12.098711524695958,13.087945102249435,13.616679546570424,7.400451947343299,10.53159768546206,12.20103750990694,13.046917560906763,13.667659175208144,7.821734681605804,210.63166525496322,210.63166525496322,0.0,234.0351836166258,0.0,210.63166525496322,234.0351836166258,0,0
+2017/01/13 21:00:00,211.7862506410364,0,1033.2301459031212,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.08865482754366558,23.793866647335392,0,0,78.67121323299078,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1819.8996521977372,0.0,2199.83327079271,0.0,3306.0241573140156,0.0,2475.3883392332614,0.0,0.0,0.0,1679.7429772078399,0.0,2026.0377718938964,0.0,3050.1194505950984,0.0,2258.8179133995473,0.0,0.0,0,0,0,0,0,0,0,0,0.05500993828833945,0.0017404761023529695,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49962563318749015,-0.49962563318749015,-0.6083483753748914,-0.6083483753748914,-0.6464948057478318,-0.6464948057478318,-0.22998602297619533,-0.22998602297619533,-0.21555469927914295,-0.21555469927914295,-0.499470810423583,-0.5686010931516363,-0.6078376265800296,-0.6246666035905916,-0.3323068170373854,-0.508594187950712,-0.5731801321906199,-0.6067630518036786,-0.6263996630324954,-0.35981046972160813,10.217140780131615,10.217140780131615,12.761797472031716,12.761797472031716,13.776123280469264,13.776123280469264,6.097446971189058,6.097446971189058,5.963779181800561,5.963779181800561,10.213882144399477,11.772082015253872,12.74864487049075,13.18797709527351,7.296540194344431,10.407674820431225,11.882607163721516,12.721009812473525,13.233917813225673,7.694402103303602,211.7862506410364,211.7862506410364,0.0,235.3180562678182,0.0,211.7862506410364,235.3180562678182,0,0
+2017/01/13 22:00:00,198.01893584520707,0,1065.8332312910172,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.16991017165051786,25.953088222937016,0,0,146.76465113343124,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1868.6624666672617,0.0,3276.098917296921,0.0,3252.0317634073253,0.0,3522.8602221252067,0.0,0.0,0.0,1532.3120307482247,0.0,2971.531626039121,0.0,2806.0393791014617,0.0,3179.294456618355,0.0,0.0,0,0,0,0,0,0,0,0,0.05674575070371373,0.0017953959972143482,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5134350816846185,-0.5134350816846185,-0.6198240086039806,-0.6198240086039806,-0.6679955495252665,-0.6679955495252665,-0.2913966664123287,-0.2913966664123287,-0.29759405242292825,-0.29759405242292825,-0.5137747977703067,-0.5851180630007096,-0.6172539243955901,-0.6372449003880328,-0.3516473771264999,-0.5257679512065615,-0.5926276248034452,-0.6178095056368097,-0.6407199264692965,-0.3796275832122517,10.511963150345423,10.511963150345423,13.060298282582679,13.060298282582679,14.375641824909323,14.375641824909323,6.764102853209934,6.764102853209934,6.840209227639249,6.840209227639249,10.51931977910742,12.175032704536562,12.992949357186788,13.524367451951122,7.572960040074264,10.782234004951889,12.362151790049097,13.007484050243548,13.618512522108787,8.001031434856685,198.01893584520707,198.01893584520707,0.0,220.02103982800784,0.0,198.01893584520707,220.02103982800784,0,0
+2017/01/13 23:00:00,140.1334289148648,0,889.9967923148424,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.17776330697314127,20.770732800115415,0,0,149.03235994810498,581.2578460602889,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2078.057858079876,0.0,3907.1129995248384,0.0,3380.5405309676416,0.0,4147.9548940678,0.0,0.0,0.0,1796.3501825931037,0.0,3650.389477599506,0.0,3030.1699284446195,0.0,3865.5530143219103,0.0,0.0,0,0,0,0,0,0,0,0,0.047384088449399585,0.0014991995291047408,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6846832208658049,-0.6846832208658049,-0.6995679573608922,-0.6995679573608922,-0.7764281007842248,-0.7764281007842248,-0.4712602555762094,-0.4712602555762094,-0.5238264253484418,-0.5238264253484418,-0.5330194332170312,-0.6065039838326202,-0.6324801933240332,-0.6553715399951866,-0.3751882543298591,-0.5509997808688134,-0.6196274733030872,-0.6367581716742654,-0.6627878081609834,-0.4056871445299238,14.854753202034033,14.854753202034033,15.292262121145413,15.292262121145413,17.70317232764917,17.70317232764917,9.637394492076922,9.637394492076922,10.739249542601428,10.739249542601428,10.94422144039686,12.714354806414832,13.396133929733466,14.021210737562939,7.930886418888008,11.355701872601657,13.055137963280657,13.511222863150934,14.228592979069333,8.429769413711668,140.1334289148648,140.1334289148648,0.0,155.70380990540534,0.0,140.1334289148648,155.70380990540534,0,0
+2017/01/14 00:00:00,90.99969215114993,0,755.7369893928035,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.24849733048319764,11.808238559374162,0,0,184.85075676111367,517.6507038628737,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,876.9789465017863,0.0,0.0,0.0,0.0,0.0,2096.1415309236045,0.0,4240.17120027622,0.0,3354.2599012455385,0.0,4508.785047291178,0.0,0.0,0.0,1839.2137860798166,0.0,4005.131345897279,0.0,3029.5909346596914,0.0,4240.199640739325,0.0,970.2080070064105,0,0,0,0,0,0,0,0,0.040235997094699154,0.0012730389012727127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8096965910499968,-0.8096965910499968,-0.8262614388185056,-0.8262614388185056,-0.8675246239791918,-0.8675246239791918,-0.6655359699123907,-0.6655359699123907,-0.572838881675673,-0.572838881675673,-0.5477466287504613,-0.6191914109865281,-0.6421358450038549,-0.6640508748977018,-0.3930230292044905,-0.5699506695233696,-0.6367646418469127,-0.6491370278653467,-0.674845286821991,-0.42586057225505697,18.824958223677882,18.824958223677882,19.4009532350328,19.4009532350328,20.885671024819217,20.885671024819217,14.306045316640194,14.306045316640194,11.874338966165425,11.874338966165425,11.280215397234613,13.043694500219303,13.657022623569759,14.264149776686196,8.217790594271335,11.80456246586158,13.511397529150997,13.848718228376924,14.570843118815915,8.781626987850785,90.99969215114993,90.99969215114993,0.0,101.11076905683325,0.0,90.99969215114993,101.11076905683325,0,0
+2017/01/14 01:00:00,40.72912697038013,0,567.6597382103317,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.5785512947563e-09,9.543492903001516,0,0,0.0,514.4242094415156,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030222624931670553,0.0009562227859306603,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7516534370480765,-0.7516534370480765,-0.7893551514935785,-0.7893551514935785,-0.845731610624948,-0.845731610624948,-0.6712949809524267,-0.6712949809524267,-0.2200122718641269,-0.2200122718641269,-0.7116567640393678,-0.871819491660438,-0.8880433101572476,-0.9103191209697359,-0.17774912081845504,-0.7240626308140689,-0.8238025428284492,-0.8578428128847675,-0.882469453760902,-0.2911196145842378,16.898383508603914,16.898383508603914,18.133485582009598,18.133485582009598,20.092687097256245,20.092687097256245,14.469414254414815,14.469414254414815,6.0041350483229365,6.0041350483229365,15.65462927418831,21.04426721360842,21.650207827780036,22.499695262999865,5.6549387932827955,16.033049751265835,19.31472289952525,20.530946989869392,21.44081305766109,6.760738434023978,40.72912697038013,40.72912697038013,0.0,45.25458552264459,0.0,40.72912697038013,45.25458552264459,0,0
+2017/01/14 02:00:00,23.7221722616845,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250768380067041,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7860607337825499,-0.7860607337825499,-0.8318393724349219,-0.8318393724349219,-0.8935589515242451,-0.8935589515242451,-0.7319077810222601,-0.7319077810222601,-0.10322677611896587,-0.10322677611896587,-0.7659976482731106,-0.9169252378296279,-0.9903634809834461,-1.0088335914223943,-0.11140348560065007,-0.8035004900069694,-0.9239064491462676,-0.9963938779526532,-1.0180132145138654,-0.3008602490348494,18.0231472298303,18.0231472298303,19.597504434955795,19.597504434955795,21.858665957192116,21.858665957192116,16.275771911550166,16.275771911550166,5.220684670407948,5.220684670407948,17.36115153781344,22.75548476491852,25.715661702267994,26.493072260866654,5.2570506889595805,18.612478416812152,23.027706829648054,25.96805796467123,26.88423320095525,6.880972557571994,23.7221722616845,23.7221722616845,0.0,26.35796917964944,0.0,23.7221722616845,26.35796917964944,0,0
+2017/01/14 03:00:00,28.397157366560528,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5777942800876323,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7890053392350357,-0.7890053392350357,-0.8382770991086572,-0.8382770991086572,-0.8990007576610608,-0.8990007576610608,-0.7505604639915183,-0.7505604639915183,-0.03320885445480659,-0.03320885445480659,-0.8049109442260228,-0.9535067587655021,-1.035721039322757,-1.053192459163317,-0.08878830181577156,-0.8509703774624823,-0.9752295365486714,-1.0556508316249376,-1.0761728413950675,-0.29053831750747233,18.121747621718143,18.121747621718143,19.825971968185783,19.825971968185783,22.065549071023696,22.065549071023696,16.863483289918477,16.863483289918477,5.0228302217274035,5.0228302217274035,18.66070386481472,24.203527865186317,27.647656325622762,28.412159767488717,5.163247085481956,20.281510594104375,25.088384203304102,28.52061866410834,29.43442422721175,6.7536899044826555,28.397157366560528,28.397157366560528,0.0,31.55239707395614,0.0,28.397157366560528,31.55239707395614,0,0
+2017/01/14 04:00:00,23.721872663678997,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5247772400012057,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8047398496633387,-0.8047398496633387,-0.8560746280940436,-0.8560746280940436,-0.9165739563902506,-0.9165739563902506,-0.7808379030275447,-0.7808379030275447,0.002434868606873178,0.002434868606873178,-0.827907525339338,-0.9745997737017942,-1.063147417244947,-1.0783844444480313,-0.06693259364065221,-0.8908651374343393,-1.0155614646194766,-1.1013565816351418,-1.1199138346694466,-0.2779022901946897,18.654849416281664,18.654849416281664,20.466583075878503,20.466583075878503,22.741838833529116,22.741838833529116,17.849166454949426,17.849166454949426,5.000122724709229,5.000122724709229,19.458821167137913,25.062472928885526,28.852691999278733,29.53379083389092,5.0927562804577065,21.756700787047194,26.77945066156805,30.5759546210014,31.430946556545805,6.6039963763912795,23.721872663678997,23.721872663678997,0.0,26.357636292976665,0.0,23.721872663678997,26.357636292976665,0,0
+2017/01/14 05:00:00,40.15857246920141,0,407.12652663123674,0,0,0,0.0,0.014052002819594888,4.633261998087618,9.319298099999997,23.111338313975452,0,1.483292646567863,1.0723084766598285,0.5250209310910549,0,0,318.40064534987636,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.36272893762997,0.0,0.0,0.0,0.0,1.9068666558742393,2241.6696683573446,1.5908955650554901,1919.6510897230028,2.153886389230564,3588.802846993596,1.454221947967028,2289.730175182816,0.0,0.0,1.5083129290452462,2177.057628644932,1.1757929809693337,1734.4939013654723,2.371756394479007,3265.1744111961007,1.890269956973981,2061.854923276404,0.0,0.0,0,0,0,0,0,0,0,0,0.021675717839179497,0.000685804603209939,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7681869598108164,-0.7681869598108164,-0.8220972734006224,-0.8220972734006224,-0.8698678694014983,-0.8698678694014983,-0.7534539193447133,-0.7534539193447133,0.14291340044432707,0.14291340044432707,-0.628604294119885,-0.6949467370141357,-0.7305156638671794,-0.7412601327108139,-0.029435537403805702,-0.6769589447426453,-0.7382501906755488,-0.7690039043456787,-0.7853401122008292,-0.2626954313800312,17.43255564568429,17.43255564568429,19.255070382494964,19.255070382494964,20.97210553569174,20.97210553569174,16.955987056814706,16.955987056814706,5.4231754269146535,5.4231754269146535,13.29254749770196,15.155405445966494,16.232507884277226,16.568581228528572,5.017936663937519,14.631487386209756,16.473934235635113,17.459252584087892,17.999073236388014,6.432773580698381,40.15857246920141,40.15857246920141,0.0,44.620636076890456,0.0,40.15857246920141,44.620636076890456,0,0
+2017/01/14 06:00:00,72.3890411278189,0,212.9421150752648,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5250339386191649,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5584664209090919,-0.5584664209090919,-0.6183469517690484,-0.6183469517690484,-0.6649642468647503,-0.6649642468647503,-0.5538259688166458,-0.5538259688166458,0.45788097407086015,0.45788097407086015,-0.7851065166836527,-0.8673803973017885,-0.9201317658233368,-0.9331668419734522,0.03681888228646823,-0.8088639046396089,-0.8839739457955613,-0.9268684069471489,-0.9440655813179598,-0.19768447379386433,11.530693490390377,11.530693490390377,13.021557052922915,13.021557052922915,14.289905312201782,14.289905312201782,11.421653419425425,11.421653419425425,9.375984310596152,9.375984310596152,17.99127418497828,20.880358386283532,22.880275500183473,23.39181526937486,5.028063928563228,18.79630904028737,21.497207420062864,23.14379476588475,23.824718541626936,5.810346677282922,72.3890411278189,72.3890411278189,0.0,80.43226791979878,0.0,72.3890411278189,80.43226791979878,0,0
+2017/01/14 07:00:00,103.35743053018842,0,714.4738312077105,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,80.56906512710079,0,0.0,2.520259394078048e-09,0.5250966260813262,0,0,0.0,483.7865398761736,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03803911598902845,0.0012035311144417444,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.41343895238447864,-0.41343895238447864,-0.4744404251135329,-0.4744404251135329,-0.5167366762166078,-0.5167366762166078,-0.4164505668094787,-0.4164505668094787,0.6953977058834839,0.6953977058834839,-0.7744573489015921,-0.8926783203179564,-0.9653244432664562,-0.9806526403804358,0.12497998530647945,-0.8267481039961306,-0.9284864397744165,-0.9890854276926785,-1.0079477451695393,-0.08982400754869818,8.56291034585945,8.56291034585945,9.700664636791345,9.700664636791345,10.583671433973436,10.583671433973436,8.615330577441867,8.615330577441867,15.16872020478273,15.16872020478273,17.638194860600862,21.825300089025774,24.682626723316545,25.312149481679597,5.323566634992261,19.418050042997734,23.207358585497047,25.662348395008024,26.4554920471481,5.1670791924019,103.35743053018842,103.35743053018842,0.0,114.84158947798713,0.0,103.35743053018842,114.84158947798713,0,0
+2017/01/14 08:00:00,135.11949385496217,0,807.0914065423937,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,69.33401494192633,0,39.380909295966944,0.18426764667940085,0.5250579934491509,0,0,49.830560650459425,491.08320204785326,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,324.9964749003308,0.0,0.0,0.0,0.0,0.0,2823.7933814160097,0.0,3759.444999804832,0.0,4058.396816499051,0.0,3989.9882190950802,0.0,1745.0212269003691,0.0,2828.4463062065865,0.0,3609.3883596899223,0.0,3778.3481395079098,0.0,3739.7388243878922,0.0,1819.480059999325,0,0,0,0,0,0,0,0,0.042970144302302477,0.0013595454130634634,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5661136734454256,-0.5661136734454256,-0.5903831175360527,-0.5903831175360527,-0.6441288531452031,-0.6441288531452031,-0.5001029387897267,-0.5001029387897267,0.37566953463514796,0.37566953463514796,-0.6053786513638009,-0.6810197267497781,-0.7013571396989061,-0.7345946355332021,-0.09845753594499553,-0.6482801075643306,-0.7174960765037227,-0.7295703190866395,-0.7704726694703476,-0.22567479996363868,11.712423924769013,11.712423924769013,12.305967981227923,12.305967981227923,13.711375702988093,13.711375702988093,10.22719339951604,10.22719339951604,7.938450400940198,7.938450400940198,12.685480778123988,14.748540232922707,15.345496065347291,16.35950908627025,5.200755208464358,13.825141213451474,15.831922125009342,16.203176078663788,17.507321977601222,6.0566004846724155,135.11949385496217,135.11949385496217,0.0,150.13277094995797,0.0,135.11949385496217,150.13277094995797,0,0
+2017/01/14 09:00:00,146.445989025617,0,869.9032676147933,0,0,0,0.0,0.0,15.03950648019319,0.0,87.89947186453183,0,39.380909295966944,0.11652047827643768,0.5776057041943242,0,0,59.40690033425604,491.08319466764004,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2037.8838600959682,0.0,3259.855789994048,0.0,3385.120854231095,0.0,3542.8131377840205,0.0,567.4705509010624,0.0,2161.393030786023,0.0,3262.9766927759897,0.0,3367.7279538831135,0.0,3488.599487704798,0.0,308.3216014936834,0,0,0,0,0,0,0,0,0.04631429431096128,0.0014653519882725811,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5715843169852654,-0.5715843169852654,-0.5834179776143591,-0.5834179776143591,-0.6211307755465089,-0.6211307755465089,-0.42220580164210275,-0.42220580164210275,-0.1111971891780717,-0.1111971891780717,-0.5288962122524391,-0.5867567779083019,-0.5979027594659075,-0.6203457911152601,-0.2514275481325067,-0.5547497943825657,-0.6043077323938211,-0.6061868438703254,-0.6339608635569602,-0.30520889462666545,11.843985402850166,11.843985402850166,12.133010653363314,12.133010653363314,13.09465196737365,13.09465196737365,8.716587758652864,8.716587758652864,5.256099039412007,5.256099039412007,10.851835507987971,12.215656538249604,12.495058091955556,13.074006571368628,6.312181797178013,11.443286785117593,12.658053943495645,12.706211997334364,13.435878039539489,6.9359453364356085,146.445989025617,146.445989025617,0.0,162.71776558401888,0.0,146.445989025617,162.71776558401888,0,0
+2017/01/14 10:00:00,184.44118669558037,0,1066.408371443779,0,0,0,0.0,0.0,12.018208401782259,0.0,106.27511244621549,0,39.380909295966944,0.14829557931905063,23.186685769842388,0,0,94.10426251737647,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1750.2487161569652,0.0,3407.512064708751,0.0,2961.9961090622146,0.0,3597.6290184519275,0.0,84.08987027286277,0.0,1658.1835541321836,0.0,3289.4227386475113,0.0,2761.633254607411,0.0,3401.7412068086614,0.0,43.12098952498599,0,0,0,0,0,0,0,0,0.05677637159145692,0.001796364820758023,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5132050303187391,-0.5132050303187391,-0.4952282985416594,-0.4952282985416594,-0.5434264860102707,-0.5434264860102707,-0.3401455978377004,-0.3401455978377004,-0.20222646752123657,-0.20222646752123657,-0.5042408425953581,-0.5677133433436793,-0.5736775840976308,-0.5943812854890901,-0.26519402098072886,-0.5243416293652082,-0.5802512803203205,-0.578464486146284,-0.6012329617379573,-0.3107929396404676,10.506984170702935,10.506984170702935,10.124990780400836,10.124990780400836,11.180679377434274,11.180679377434274,7.406658595070553,7.406658595070553,5.848077406783304,5.848077406783304,10.314755184059635,11.7507594900069,11.894669032706958,12.406201024887068,6.460237870684338,10.750640010905101,12.055071838180865,12.011287250939844,12.5795839649481,7.007708462660261,184.44118669558037,184.44118669558037,0.0,204.93465188397818,0.0,184.44118669558037,204.93465188397818,0,0
+2017/01/14 11:00:00,210.9223455923299,0,1107.781969706512,0,0,0,0.0,0.0,15.684700137138787,0.0,131.64086955684016,0,39.380909295966944,0.08943898537849505,20.694452414551144,0,0,65.13708951799377,581.2702975254446,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1206.9431706828582,0.0,3631.643362175756,0.0,2324.7735015263843,0.0,3808.5612484310905,0.0,9.929691631191053,0.0,1076.5786735685683,0.0,3505.830384195567,0.0,2081.0178992745828,0.0,3591.9200465155773,0.0,1.9358784649932739,0,0,0,0,0,0,0,0,0.05897913260866487,0.0018660586438913936,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5245783687656461,-0.5245783687656461,-0.46410327148784974,-0.46410327148784974,-0.48309085017935777,-0.48309085017935777,-0.22883713907434564,-0.22883713907434564,-0.1523845568652698,-0.1523845568652698,-0.49883207439943966,-0.5641701882373946,-0.5648187476256328,-0.5901399869244887,-0.28036266460677534,-0.517293933151923,-0.5755148993855561,-0.5665683987272273,-0.5948904513414411,-0.31905200449662324,10.755877853552107,10.755877853552107,9.4965990804221,9.4965990804221,9.874973325753288,9.874973325753288,6.086485737301558,6.086485737301558,5.481182263941122,5.481182263941122,10.200449283652688,11.665998276875058,11.681472741501736,12.299895135445666,6.632615194678678,10.595821171793219,11.939312033725628,11.723309975880042,12.41901548253118,7.116269648024755,210.9223455923299,210.9223455923299,0.0,234.35816176925542,0.0,210.9223455923299,234.35816176925542,0,0
+2017/01/14 12:00:00,217.1569395632234,0,1178.6060466219353,0,0,0,0.0,0.0,15.081367944243603,0.0,136.4899973586286,0,39.380909295966944,0.07835024221848355,22.694339519711445,0,0,64.3405276453563,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,944.8133964001843,0.0,2613.9358508027244,0.0,2012.3720661800164,0.0,2770.93144038341,0.0,0.0,0.0,704.9082763921076,0.0,2455.971747127145,0.0,1733.1106559663597,0.0,2536.9568510760364,0.0,0.0,0,0,0,0,0,0,0,0,0.06274985892350794,0.001985361796079968,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3377710729426774,-0.3377710729426774,-0.4165065272943523,-0.4165065272943523,-0.46319212093120943,-0.46319212093120943,-0.043794571412618305,-0.043794571412618305,-0.0682870329210345,-0.0682870329210345,-0.4603833124172403,-0.535714828844771,-0.5349524368253606,-0.5618034182169938,-0.2687751100751817,-0.47060134260722947,-0.5391971290262115,-0.53013598422004,-0.5597628104769292,-0.3002009665174866,7.373026029282954,7.373026029282954,8.616308305504788,8.616308305504788,9.478832878004468,9.478832878004468,5.039706241283966,5.039706241283966,5.096549061519411,5.096549061519411,9.424289921388947,11.005013126174106,10.987786297328938,11.609682495782096,6.500059303425573,9.624339802606528,11.084018496261223,10.879536753082732,11.56132255765003,6.872708141495011,217.1569395632234,217.1569395632234,0.0,241.28548840358155,0.0,217.1569395632234,241.28548840358155,0,0
+2017/01/14 13:00:00,205.4800894351666,0,1143.7589626407018,0,0,0,0.0,0.0,15.217566656632789,0.0,124.80122689546741,0,39.380909295966944,0.07582782693752765,22.57258355770757,0,0,64.98379617666673,599.6554075446891,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1163.958872034682,0.0,2554.734556769235,0.0,2136.9209573336693,0.0,2695.1162190176574,0.0,0.0,0.0,934.9563838396855,0.0,2331.2010453895564,0.0,1787.4236972082326,0.0,2403.092155872336,0.0,0.0,0,0,0,0,0,0,0,0,0.06089457436087965,0.0019266618857584291,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2580366109435795,-0.2580366109435795,-0.39746895293472245,-0.39746895293472245,-0.3742093491468926,-0.3742093491468926,0.04327929661864444,0.04327929661864444,-0.0575709434186982,-0.0575709434186982,-0.4530541928152697,-0.5232903823146723,-0.5204612587801083,-0.5496520872669616,-0.26559719619115424,-0.4608793263616529,-0.5250773108655561,-0.5155248558104546,-0.5465059904748193,-0.29402517051421784,6.382265997650876,6.382265997650876,8.291427399832983,8.291427399832983,7.915532064832334,7.915532064832334,5.03877731464803,5.03877731464803,5.068620214590453,5.068620214590453,9.28356861943466,10.727410547256028,10.665132820266791,11.32437419682934,6.464694168458365,9.433897085908995,10.766924856981092,10.557296781467599,11.251548323126471,6.7961837678248145,205.4800894351666,205.4800894351666,0.0,228.31121048351844,0.0,205.4800894351666,228.31121048351844,0,0
+2017/01/14 14:00:00,201.2942858517903,0,1099.9171453952931,0,0,0,0.0,0.0,15.217566656632789,0.0,122.5097643007467,0,39.380909295966944,0.0836141333270849,20.67045626266246,0,0,75.01459357246243,581.273145416029,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1275.4263616688909,0.0,2649.2422204864415,0.0,2220.5495895696213,0.0,2793.797200952492,0.0,0.0,0.0,1050.3164106378533,0.0,2429.1282554867335,0.0,1902.472585992588,0.0,2514.0306078055883,0.0,0.0,0,0,0,0,0,0,0,0,0.05856040353680778,0.0018528103479360757,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.32656398549936005,-0.32656398549936005,-0.39669375940027873,-0.39669375940027873,-0.31384706607343366,-0.31384706607343366,0.0797178090775349,0.0797178090775349,-0.07352323562885732,-0.07352323562885732,-0.44155387364257437,-0.5096835635324222,-0.5085206725641317,-0.5381454863332875,-0.26054188583899845,-0.44773115157520604,-0.5102423311051066,-0.503938319314383,-0.5345863481540742,-0.2879604290581917,7.217520730848179,7.217520730848179,8.278527208861448,8.278527208861448,7.047516781323708,7.047516781323708,5.131587632832819,5.131587632832819,5.111927085585705,5.111927085585705,9.067417215776771,10.431055086496244,10.406098875610809,11.060103779134096,6.409312858671186,9.18281367818895,10.44306731222899,10.308328444129998,10.979523191678027,6.722603614190959,201.2942858517903,201.2942858517903,0.0,223.66031761310035,0.0,201.2942858517903,223.66031761310035,0,0
+2017/01/14 15:00:00,185.35007461734412,0,1076.967332457713,0,0,0,0.0,0.0,15.137024940483485,0.0,108.75639138185811,0,39.380909295966944,0.12375728765152484,18.52001650892977,0,0,106.90562383030256,561.922654733153,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,806.5076015448636,0.0,2822.9616917175663,0.0,1766.231291496697,0.0,3015.929966939887,0.0,0.0,0.0,698.7167126622501,0.0,2675.9362588582435,0.0,1564.5217170573223,0.0,2823.1845622498117,0.0,0.0,0,0,0,0,0,0,0,0,0.057338538496931574,0.0018141513897845833,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.39600298254465405,-0.39600298254465405,-0.3910345411454434,-0.3910345411454434,-0.38163762206076773,-0.38163762206076773,0.10040815397363419,0.10040815397363419,-0.12121768373588813,-0.12121768373588813,-0.4346853021193082,-0.5003424881360086,-0.5035347517153028,-0.5362129082618659,-0.26852270786317045,-0.44010386554223485,-0.4990275046769847,-0.49882425930716057,-0.5332203482764624,-0.295107610179768,8.267053471147932,8.267053471147932,8.185129230424792,8.185129230424792,8.03306831127506,8.03306831127506,5.2087922342544175,5.2087922342544175,5.304366609815773,5.304366609815773,8.941032367239018,10.23224230163143,10.299761298717144,11.016281207162749,6.497234917149612,9.040567613925973,10.204557384824753,10.200285038459711,10.948742005482302,6.8094797991976606,185.35007461734412,185.35007461734412,0.0,205.94452735260458,0.0,185.35007461734412,205.94452735260458,0,0
+2017/01/14 16:00:00,184.6302715398672,0,1076.3296092348921,0,0,0,0.0,0.0,16.7988895445009,0.0,106.31215624428707,0,39.380909295966944,0.13077011776607525,18.57557113489197,0,0,106.26575824676156,561.9247970938732,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,923.1716305286816,0.0,3110.294432394615,0.0,1779.7339278146967,0.0,3281.61355748172,0.0,0.0,0.0,895.1476626970621,0.0,3023.271096860684,0.0,1662.561103825692,0.0,3148.462260211685,0.0,0.0,0,0,0,0,0,0,0,0,0.057304585640182745,0.0018130771450641436,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4364599631760948,-0.4364599631760948,-0.4587637303336681,-0.4587637303336681,-0.3994777891728915,-0.3994777891728915,0.11202079979407843,0.11202079979407843,-0.1422684958228516,-0.1422684958228516,-0.4476306321292164,-0.5137805307868567,-0.5085058159020164,-0.5441643184962413,-0.2734269280399093,-0.459047878248601,-0.5194974628187394,-0.5071328514176483,-0.5446493454227451,-0.30040122211400855,8.97349275878156,8.97349275878156,9.392994426489352,9.392994426489352,8.324976555715537,8.324976555715537,5.259908931107887,5.259908931107887,5.419361457244705,5.419361457244705,9.180922763147734,10.519443971711183,10.405780422643161,11.197621753673886,6.552593832720419,9.398476902069689,10.643995801973915,10.376392083217453,11.208771968519926,6.875216496247489,184.6302715398672,184.6302715398672,0.0,205.144746155408,0.0,184.6302715398672,205.144746155408,0,0
+2017/01/14 17:00:00,201.54962444951462,0,1112.746630465042,0,0,0,0.0,0.0,22.12016365305192,0.0,120.17895923267236,0,39.380909295966944,0.1371374689719205,16.30047959639718,0,0,109.83570813106698,541.5363396709014,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,770.4156549484718,0.0,3019.777330298092,0.0,1571.3510764644795,0.0,3154.5077148309324,0.0,0.0,0.0,794.168013273151,0.0,3009.8525902095066,0.0,1516.3990269348033,0.0,3064.9611653551165,0.0,0.0,0,0,0,0,0,0,0,0,0.05924345482480634,0.0018744216145623264,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.34590161919781487,-0.34590161919781487,-0.41775564152642414,-0.41775564152642414,-0.44320883372795705,-0.44320883372795705,0.17512434175004832,0.17512434175004832,-0.0991807615839865,-0.0991807615839865,-0.4479248316993266,-0.5179869134708441,-0.5046530275723842,-0.5438651718245137,-0.27453825469861326,-0.4620989277285115,-0.5279284641366427,-0.5048245692576201,-0.5459025807107825,-0.3018992064098259,7.489180556215146,7.489180556215146,8.638167466074222,8.638167466074222,9.098172311089442,9.098172311089442,5.635713474722152,5.635713474722152,5.20371665222612,5.20371665222612,9.18645830454166,10.610948796088962,10.323517920486708,11.19074979628894,6.565279366126575,9.45756427813501,10.830258565021992,10.3271669293064,11.237629618716468,6.8940336775855116,201.54962444951462,201.54962444951462,0.0,223.94402716612734,0.0,201.54962444951462,223.94402716612734,0,0
+2017/01/14 18:00:00,238.85142237006994,0,1169.0082396353712,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,138.40412594678773,0,39.380909295966944,0.20414023362150413,18.501109400222116,0,0,145.7095445338589,561.9241124384384,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1183.467954399753,0.0,3351.799696439576,0.0,1954.372556997293,0.0,3465.0390552033155,0.0,0.0,0.0,1125.1193198327103,0.0,3276.542763994404,0.0,1825.6753321168771,0.0,3326.8819607367905,0.0,0.0,0,0,0,0,0,0,0,0,0.06223886457038365,0.001969194290939562,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.31627995164006084,-0.31627995164006084,-0.3896664143050827,-0.3896664143050827,-0.40137993779135506,-0.40137993779135506,0.19537479717738165,0.19537479717738165,-0.0807500630197002,-0.0807500630197002,-0.45407356482856687,-0.5282160614584872,-0.5088936839606587,-0.5514243924564596,-0.2787663795558129,-0.47063323284135333,-0.5382814147976016,-0.5111079093157087,-0.5554989097557189,-0.305707190394284,7.07951031869537,7.07951031869537,8.162755575113621,8.162755575113621,8.35690307029789,8.35690307029789,5.79149086723649,5.79149086723649,5.135018510639398,5.135018510639398,9.303002449855782,10.836666609516683,10.41409751321342,11.365588449064347,6.614018287792675,9.624971195782294,11.063192143067184,10.461701923081776,11.460856102495967,6.942295548655963,238.85142237006994,238.85142237006994,0.0,265.3904693000777,0.0,238.85142237006994,265.3904693000777,0,0
+2017/01/14 19:00:00,228.86257181728348,0,1092.8687194894137,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,120.14191543460078,0,39.380909295966944,0.096450102955353,26.882159490288817,0,0,67.32908179419508,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1825.058663096358,0.0,2318.5530344153217,0.0,2543.6424493114796,0.0,2403.511578898123,0.0,0.0,0.0,1831.596744991199,0.0,2260.2230510864533,0.0,2448.4702589026256,0.0,2289.9972463612035,0.0,0.0,0,0,0,0,0,0,0,0,0.0581851401207627,0.0018409372750325882,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2598076925806831,-0.2598076925806831,-0.3679953768532134,-0.3679953768532134,-0.5538558259574957,-0.5538558259574957,0.22353227223840288,0.22353227223840288,-0.06708765590961348,-0.06708765590961348,-0.44179611029123017,-0.5082538727579236,-0.4941108120049385,-0.5306399144535214,-0.25569037705446546,-0.45575043702626306,-0.5162716584562319,-0.49438104529675236,-0.5327799808713042,-0.27957552102059574,6.401359174722131,6.401359174722131,7.819017517630016,7.819017517630016,11.422352010098749,11.422352010098749,6.036591102663337,6.036591102663337,5.093186640474585,5.093186640474585,9.071911487294727,10.400381467514322,10.101705980324539,10.89081550506009,6.357175597519728,9.33506848527415,10.573543047836864,10.107331822350744,10.938836074298848,6.623431448840478,228.86257181728348,228.86257181728348,0.0,254.2917464636483,0.0,228.86257181728348,254.2917464636483,0,0
+2017/01/14 20:00:00,219.80577141480936,0,1044.2069822384974,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.89738010901058,0,39.380909295966944,0.0686020410490462,27.097742475311204,0,0,54.157697055823,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2201.3226893570363,0.0,1821.71717485505,0.0,2906.1874481564346,0.0,1874.4704973532084,0.0,0.0,0.0,2159.5605257299103,0.0,1716.1420790013117,0.0,2752.1880356913507,0.0,1724.0880551023479,0.0,0.0,0,0,0,0,0,0,0,0,0.05559435318545073,0.001758966582326783,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.33122119562607083,-0.33122119562607083,-0.3606680878160339,-0.3606680878160339,-0.5979429062891964,-0.5979429062891964,0.23565810021564831,0.23565810021564831,-0.07295255994345898,-0.07295255994345898,-0.4306787188855523,-0.48583614032004846,-0.4806113599815805,-0.508405207974489,-0.20808508805157508,-0.44284306644129956,-0.4926295519102532,-0.47988569647534746,-0.5094660212042221,-0.2591855342089222,7.281495143036565,7.281495143036565,7.707325522005604,7.707325522005604,12.496074216371753,12.496074216371753,6.152374510201511,6.152374510201511,5.110195897002882,5.110195897002882,8.868245162454585,9.930966606396936,9.824680837601278,10.403624140048294,5.898019966930121,9.091364908581639,10.070924445632443,9.810012087935604,10.426382075056566,6.3946369462774015,219.80577141480936,219.80577141480936,0.0,244.2286349053437,0.0,219.80577141480936,244.2286349053437,0,0
+2017/01/14 21:00:00,200.0446399049749,0,1034.358454543933,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,0.09426703666411546,23.31873768539941,0,0,79.7995218738027,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1931.6470521804556,0.0,2401.36211328501,0.0,2620.579502258938,0.0,2451.1961547704705,0.0,194.8543081044407,0.0,1894.691872787575,0.0,2309.4193144733244,0.0,2481.060452904515,0.0,2310.594717077696,0.0,0.0,0,0,0,0,0,0,0,0,0.055070010276121996,0.0017423767381727798,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.35927177864746584,-0.35927177864746584,-0.4021928477548165,-0.4021928477548165,-0.5217900044049844,-0.5217900044049844,0.19845690442207178,0.19845690442207178,-0.12823447644984626,-0.12823447644984626,-0.4339879780988777,-0.487251743026511,-0.48205508181998336,-0.5086186539004364,-0.2321033419479132,-0.448177286600899,-0.49573747192810297,-0.48345747571631154,-0.5114280674009721,-0.2674730010486415,7.686300599801072,7.686300599801072,8.370594533773755,8.370594533773755,10.694339465412142,10.694339465412142,5.8167024404320955,5.8167024404320955,5.340649828268539,5.340649828268539,8.928314604950472,9.959966522628164,9.853932163856996,10.408199347316838,6.117792867458789,9.19121136253672,10.135618192236137,9.882432249071798,10.468602658875582,6.485517461809309,200.0446399049749,200.0446399049749,0.0,222.27182211663876,0.0,200.0446399049749,222.27182211663876,0,0
+2017/01/14 22:00:00,195.54371622877545,0,1025.0107663357019,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,0.12144836287533575,25.780749211929813,0,0,105.9421861781156,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2033.904426312515,0.0,2678.0334069786077,0.0,2696.665077303035,0.0,2721.364507423402,0.0,0.0,0.0,2041.652595682743,0.0,2615.446123922368,0.0,2605.3163616465495,0.0,2612.383097368712,0.0,0.0,0,0,0,0,0,0,0,0,0.05457233243202081,0.0017266305580954922,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.34951668864083074,-0.34951668864083074,-0.4650369039007773,-0.4650369039007773,-0.539779054742501,-0.539779054742501,0.15072462973038292,0.15072462973038292,-0.18741100224941737,-0.18741100224941737,-0.43618452773456723,-0.48918088409597643,-0.4823446113265576,-0.5093977255389688,-0.24326168526770933,-0.45168188620917976,-0.4990508880535382,-0.48521195576271775,-0.5133994714103645,-0.26931170999706716,7.541728473601552,7.541728473601552,9.514840744145275,9.514840744145275,11.09727227930243,11.09727227930243,5.470745957224452,5.470745957224452,5.728185601458861,5.728185601458861,8.968445890448479,9.999626007042949,9.859809162507645,10.42491544275066,6.228125000158045,9.257476875320847,10.20504903269078,9.91820709151807,10.511192290849522,6.506072785694087,195.54371622877545,195.54371622877545,0.0,217.2707958097505,0.0,195.54371622877545,217.2707958097505,0,0
+2017/01/14 23:00:00,140.1133648569989,0,853.6965407331427,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,0.15413683631123345,18.51987641626224,0,0,132.06445299974115,561.9255014269529,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2343.2183185642407,0.0,3236.356886340232,0.0,2970.2262371658962,0.0,3283.2464393017353,0.0,0.0,0.0,2348.8062709492187,0.0,3177.8760708729674,0.0,2899.365788087049,0.0,3185.8494990150466,0.0,0.0,0,0,0,0,0,0,0,0,0.045451436167351554,0.0014380517580705103,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5367132768312483,-0.5367132768312483,-0.5839234417038772,-0.5839234417038772,-0.5887580386110028,-0.5887580386110028,-0.03574105902526655,-0.03574105902526655,-0.4066803841615511,-0.4066803841615511,-0.4530613874790557,-0.5083941554286618,-0.4985689496865311,-0.5271880174221915,-0.2638717468721256,-0.47320157835961923,-0.5227332033822041,-0.5058695897024824,-0.5351808596441213,-0.29177144101334446,11.027611896032653,11.027611896032653,12.145491417130131,12.145491417130131,12.265425962897368,12.265425962897368,5.026444817554832,5.026444817554832,8.446685031102135,8.446685031102135,9.283705625512027,10.40338728269056,10.194920797753454,10.813776922061194,6.44567080063932,9.675965677609327,10.715117928648525,10.349423924753495,10.992945043518361,6.7686591418101045,140.1133648569989,140.1133648569989,0.0,155.68151650777656,0.0,140.1133648569989,155.68151650777656,0,0
+2017/01/15 00:00:00,93.21230699588325,0,743.9742556574334,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.17699676070739856,14.092353973883283,0,0,150.83887974839809,539.8998471402192,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,264.5909177597832,0.0,0.0,0.0,0.0,0.0,2407.325723494107,0.0,4028.3827845892006,0.0,3030.1711451434317,0.0,4100.5397050817755,0.0,0.0,0.0,2391.995576193964,0.0,4015.198440361487,0.0,3004.2209041040546,0.0,4028.7604386367557,0.0,0.0,0,0,0,0,0,0,0,0,0.03960974043789275,0.001253224577188258,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.693023083115435,-0.693023083115435,-0.7023467117933334,-0.7023467117933334,-0.7359220655855451,-0.7359220655855451,-0.2674497211307197,-0.2674497211307197,-0.4865128338078633,-0.4865128338078633,-0.47412850773225723,-0.5340418849769738,-0.518764031255875,-0.5506885629050363,-0.28798749451707495,-0.499781778063124,-0.5518387942088847,-0.5299932032965281,-0.5624911384662141,-0.31760243096861945,15.098708639882247,15.098708639882247,15.374998372428166,15.374998372428166,16.40099356904284,16.40099356904284,6.48525812349844,6.48525812349844,9.94481850033614,9.94481850033614,9.694439689145554,10.967244673717317,10.62793784007279,11.348460495484971,6.722928534183026,10.220428292079873,11.375244837701771,10.876343090414878,11.62602132022485,7.097006696663854,93.21230699588325,93.21230699588325,0.0,103.56922999542583,0.0,93.21230699588325,103.56922999542583,0,0
+2017/01/15 01:00:00,42.983188469938504,0,571.0679385473206,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.6358823723766762e-09,11.797554402502556,0,0,0.0,517.8324097785045,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03040408004208855,0.00096196389913964,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5886057300931556,-0.5886057300931556,-0.6158686219741695,-0.6158686219741695,-0.648190112191353,-0.648190112191353,-0.23134488695584918,-0.23134488695584918,-0.1394057749659607,-0.1394057749659607,-0.6173180822001306,-0.6915978136043167,-0.6767765300070434,-0.7127202134560318,-0.07727294282522348,-0.6446754882630207,-0.7077211157074323,-0.6888925924182782,-0.7251653434518338,-0.16096193612027102,12.261632086344505,12.261632086344505,12.956766472067827,12.956766472067827,13.822666958506773,13.822666958506773,6.110483047658235,6.110483047658235,5.402640260895211,5.402640260895211,12.994627120656531,15.056804071004251,14.626245989740951,15.686808229296318,5.123637961346745,13.726313570543383,15.535964452486738,14.97750887072202,16.067006841655186,5.536939052237727,42.983188469938504,42.983188469938504,0.0,47.75909829993167,0.0,42.983188469938504,47.75909829993167,0,0
+2017/01/15 02:00:00,23.722248411791085,0,45.75246952604361,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251529881132943,0,0,0.0,10.262117013499477,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0024358953667257565,7.707003144406692e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.61534158846769,-0.61534158846769,-0.6473812753601329,-0.6473812753601329,-0.6825939199161379,-0.6825939199161379,-0.29606332792795464,-0.29606332792795464,-0.016969105163781854,-0.016969105163781854,-0.6875527022893438,-0.7833575505278084,-0.7860545123092437,-0.823426674011859,-0.010743481312200926,-0.7501793332900885,-0.8313553307747479,-0.822379752790116,-0.8602581357555185,-0.1409617892289236,12.943022688267959,12.943022688267959,13.80044525803595,13.80044525803595,14.794108527075608,14.794108527075608,6.821260407497562,6.821260407497562,5.005960797048786,5.005960797048786,14.938351259583541,17.932955143526698,18.022939293037425,19.30156402994234,5.002389313588154,16.851325263099596,19.58039645732785,19.264943432147746,20.61907688304595,5.411686655829911,23.722248411791085,23.722248411791085,0.0,26.358053790878984,0.0,23.722248411791085,26.358053790878984,0,0
+2017/01/15 03:00:00,28.3444260066215,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250629201486053,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6154734023129315,-0.6154734023129315,-0.6493883821214324,-0.6493883821214324,-0.6840543564163398,-0.6840543564163398,-0.3161958815104333,-0.3161958815104333,0.05471563578258677,0.05471563578258677,-0.7309662581108409,-0.8296681577239455,-0.8335362479937469,-0.871333658524674,0.011435950574255959,-0.8084939564153516,-0.8936884572228886,-0.8858350872931868,-0.9247071574759516,-0.13936469932010143,12.946458950290165,12.946458950290165,13.855639942660616,13.855639942660616,14.836479736045675,14.836479736045675,7.078400576952518,7.078400576952518,5.061981494931587,5.061981494931587,16.246502273689217,19.52084171123701,19.657556317329437,21.026288746678347,5.002707247282842,18.783590089539587,21.86357541158607,21.56709872293588,23.059054312769163,5.4024028192201,28.3444260066215,28.3444260066215,0.0,31.493806674023887,0.0,28.3444260066215,31.493806674023887,0,0
+2017/01/15 04:00:00,23.722224454714464,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251290310366721,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6251512916230013,-0.6251512916230013,-0.659816783857312,-0.659816783857312,-0.6918327094407783,-0.6918327094407783,-0.34309739049608945,-0.34309739049608945,0.09127010179597225,0.09127010179597225,-0.7608884114720361,-0.8601434091951351,-0.8648026654122923,-0.9020017475072897,0.03268854772967135,-0.8563561846767834,-0.9425655714402061,-0.9342843501327976,-0.9733209582322983,-0.13243840174044516,13.200812296206593,13.200812296206593,14.145227660065956,14.145227660065956,15.06370423897819,15.06370423897819,7.448801482917716,7.448801482917716,5.172504187705698,5.172504187705698,17.195310555025415,20.61488529242783,20.785551646975733,22.180154024174954,5.022120397374437,20.476823371979933,23.76485767716038,23.435985968296322,25.009903972549168,5.363368589179942,23.722224454714464,23.722224454714464,0.0,26.358027171904958,0.0,23.722224454714464,26.358027171904958,0,0
+2017/01/15 05:00:00,39.87683131356916,0,422.81124549879246,0,0,0,0.0,0.011668711696832914,4.633261998087618,9.319298099999997,23.111338313975452,0,1.294693653447275,0.9446065222565333,0.5619640141054417,0,0,334.08536421743213,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5813296570191009,1848.6875625915886,0.8902656154373614,1404.8707597555147,1.7256819234374754,2369.586575479284,0.8653265916905508,1536.558846108484,0.0,0.0,1.8636507878258528,2297.3099975459054,1.354980772532534,1638.2947151481665,1.8330713573422401,2696.5426376288306,1.5544049915477962,1733.9346792178626,0.0,0.0,0,0,0,0,0,0,0,0,0.022510783889463995,0.0007122255109518866,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5939137932065283,-0.5939137932065283,-0.6304849541077632,-0.6304849541077632,-0.6608551879845974,-0.6608551879845974,-0.32807804349862857,-0.32807804349862857,0.2311393447367712,0.2311393447367712,-0.5840855945621801,-0.6383549196647723,-0.6297886039258694,-0.6568711077577857,0.06979770502360667,-0.629807538547463,-0.6814318278713942,-0.6639427555383207,-0.6966172305173336,-0.11826136354258451,12.394445296724498,12.394445296724498,13.34272820685294,13.34272820685294,14.174321241940262,14.174321241940262,7.238217857665163,7.238217857665163,6.108506234056165,6.108506234056165,12.149497594441229,13.554383055971769,13.32412995356492,14.062951157022297,5.100869043845577,13.324635384803045,14.760458999816478,14.261103386525406,15.204770402121596,5.2896924850536635,39.87683131356916,39.87683131356916,0.0,44.30759034841018,0.0,39.87683131356916,44.30759034841018,0,0
+2017/01/15 06:00:00,74.59588249220508,0,310.7453748058674,0,0,0,0.0,0.009397487413522643,4.633261998087618,9.319298099999997,57.911447091112116,0,1.2616459624857006,0.9202459820206247,0.5405858710854892,0,0,97.80325973060256,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2758982687565208,1592.2538557540324,0.6109807958189322,1268.8025646606102,1.728367564923019,2157.0853368446756,1.022873793867518,1415.9889035494261,0.0,0.0,1.6013287872492583,2079.6074493320903,0.6093992120313487,1519.697900038051,1.613225430163311,2508.1093335509568,0.9354135607127319,1624.2205513810486,0.0,0.0,0,0,0,0,0,0,0,0,0.01654431392583514,0.0005234505602753098,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4055597461300407,-0.4055597461300407,-0.4457746303695454,-0.4457746303695454,-0.4698432179149253,-0.4698432179149253,-0.1587289772045847,-0.1587289772045847,0.5441370842348912,0.5441370842348912,-0.5629499679974312,-0.6072377594042594,-0.5976032465135112,-0.6208056057432234,0.1356664448506434,-0.5831528593759185,-0.6244483200304256,-0.605854489933976,-0.6328715210463279,-0.05307215409043468,8.427602779299264,8.427602779299264,9.146086784706057,9.146086784706057,9.609342636342305,9.609342636342305,5.522128674845504,5.522128674845504,11.196995971407304,11.196995971407304,11.636933577571952,12.733211784885185,12.487479564711705,13.086096630890182,5.381312407559477,12.126468867966153,13.182199977643208,12.697683242266265,13.40662869127101,5.058313503183598,74.59588249220508,74.59588249220508,0.0,82.88431388022786,0.0,74.59588249220508,82.88431388022786,0,0
+2017/01/15 07:00:00,105.47872484604066,0,774.5152041680423,0,0,0,0.16193606686416467,0.0061892212451468065,8.33396954093373,13.929299233552332,80.56906512710079,0,1.159517395274147,0.7936705655523888,0.5250776955180085,0,0,59.88235826993274,483.9455545665728,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,512.2482319110015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3124458238002412,1216.386546171319,1.0842125529929945,993.367591028356,1.4464910451479227,1685.3545695255302,0.0,1114.891212009855,0.0,0.0,1.2710793281889132,1544.102301032703,0.0,1140.3199801425956,1.0749924950167344,1874.3420593747742,0.0,1219.817379749428,0.0,0.0,0,0,0,0,0,0,0,0,0.04123576315848173,0.0013046708026363601,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2588210304158996,-0.2588210304158996,-0.30253458887534956,-0.30253458887534956,-0.31990315893476107,-0.31990315893476107,-0.029470711168720458,-0.029470711168720458,0.7850648749681449,0.7850648749681449,-0.5516359274277579,-0.5930667319268046,-0.5834046556930443,-0.6057279563799756,0.20989817891742923,-0.5663379435122041,-0.6053639078611079,-0.5865768782257041,-0.6130277143132585,0.03589370643613469,6.3907061625200186,6.3907061625200186,6.9020438000267035,6.9020438000267035,7.1276218741956825,7.1276218741956825,5.017979557773245,5.017979557773245,17.989884136894446,17.989884136894446,11.37051670631024,12.373168953752796,12.132681862533516,12.69443744074971,5.913766941580107,11.717791793698936,12.685102850845226,12.21119112072222,12.88282497826377,5.026671200719548,105.47872484604066,105.47872484604066,0.0,117.1985831622674,0.0,105.47872484604066,117.1985831622674,0,0
+2017/01/15 08:00:00,135.09561610355271,0,795.5311803545042,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,69.33401494192633,0,39.380909295966944,0.1604804547592805,0.5249674339598231,0,0,39.25257429899147,490.1009622114318,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,211.47710621448556,0.0,0.0,0.0,0.0,0.0,3194.433533391491,0.0,4071.2990292138434,0.0,3871.3164374172247,0.0,4129.10313830682,0.0,2247.601373074388,0.0,3397.044463137961,0.0,4130.716513941408,0.0,3957.5469640596857,0.0,4124.921466383894,0.0,1659.5600017082716,0,0,0,0,0,0,0,0,0.04235466929732262,0.0013400722129273694,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4899923717785195,-0.4899923717785195,-0.5017889794814187,-0.5017889794814187,-0.549917545204764,-0.549917545204764,-0.2274408757382059,-0.2274408757382059,0.35130916885549557,0.35130916885549557,-0.5402921758530411,-0.5859590275798652,-0.5699515882802113,-0.5974440837274932,-0.1311138773741896,-0.5547954696445199,-0.5985832972718449,-0.5739969741832641,-0.6050092117679361,-0.1825372750627086,10.016356662249024,10.016356662249024,10.262782215056376,10.262782215056376,11.330538646015981,11.330538646015981,6.073238837582693,6.073238837582693,7.567989700539329,7.567989700539329,11.108971159110368,12.19586570664049,11.804584604627763,12.483453878993018,5.356131321140836,11.444357329700154,12.512292102138616,11.90241904134885,12.676013599328925,5.690750627871054,135.09561610355271,135.09561610355271,0.0,150.10624011505857,0.0,135.09561610355271,150.10624011505857,0,0
+2017/01/15 09:00:00,151.79107974612344,0,905.0397004976421,0,0,0,0.0,0.0,11.351083962480427,0.0,96.91714705112861,0,39.38090929596693,0.1849334706224353,0.525030763470788,0,0,94.42935703223688,491.197170852508,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2929.6253586219455,0.0,4060.1583899207717,0.0,3761.5946697390664,0.0,4029.0011217453753,0.0,142.81301618549134,0.0,2994.5247571155337,0.0,4083.9560041281866,0.0,3763.213755427518,0.0,3960.6229751694364,0.0,176.56544292112233,0,0,0,0,0,0,0,0,0.04818498402343422,0.0015245393067969295,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5623690527249061,-0.5623690527249061,-0.5485825864399255,-0.5485825864399255,-0.6025717989526015,-0.6025717989526015,-0.22998928577831296,-0.22998928577831296,-0.1557260891190915,-0.1557260891190915,-0.5208969917708716,-0.5836088110416896,-0.5631369462419018,-0.5862138834651764,-0.2521003929849796,-0.5345566289433834,-0.5989903438295936,-0.5689212116454787,-0.5940659095445531,-0.29077952381826466,11.623119315659451,11.623119315659451,11.29956925225801,11.29956925225801,12.613701452736123,12.613701452736123,6.097478179665458,6.097478179665458,5.502539238208257,5.502539238208257,10.674702079345764,12.137721350903902,11.641383064835168,12.202185246465561,6.3192328311235855,10.978852644519336,12.522609798277529,11.77977920589133,12.398269427544534,6.756612924345745,151.79107974612344,151.79107974612344,0.0,168.65675527347048,0.0,151.79107974612344,168.65675527347048,0,0
+2017/01/15 10:00:00,150.37398302423853,0,976.3190248299036,0,0,0,0.0,0.0,9.779556935483168,0.0,97.06762091869685,0,39.380909295966944,0.18894987995712276,0.5249707916801927,0,0,112.47203977626928,491.19828367192093,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,809.9397535836708,0.0,4338.317255081109,0.0,2647.6570605468532,0.0,4003.1986931163046,0.0,1.6492177547715348,0.0,488.6982298035873,0.0,4310.795075709653,0.0,2596.2573052619928,0.0,3844.6848614742426,0.0,11.095676307013902,0,0,0,0,0,0,0,0,0.051979948047954555,0.0016446093232246155,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3670180540560821,-0.3670180540560821,-0.5347414139170805,-0.5347414139170805,-0.5509707786976334,-0.5509707786976334,-0.09668700595507085,-0.09668700595507085,-0.24289722904596792,-0.24289722904596792,-0.4325260947157924,-0.5883128365305202,-0.5618178797069509,-0.561358066326216,-0.2800838978290676,-0.42864485392273816,-0.6013244505662456,-0.5663279831759103,-0.5632381235326438,-0.31754966345870533,7.803987688570302,7.803987688570302,10.983022522452984,10.983022522452984,11.355026876639172,11.355026876639172,5.193596924835219,5.193596924835219,6.224438718626018,6.224438718626018,8.901720620726053,12.254339184481239,11.610025860038306,11.599112789154631,6.629359783783187,8.831559857971925,12.581912891408166,11.717553348315889,11.643791394633212,7.096307164283445,150.37398302423853,150.37398302423853,0.0,167.08220336026503,0.0,150.37398302423853,167.08220336026503,0,0
+2017/01/15 11:00:00,204.32579041539418,0,1153.9493725245302,0,0,0,0.0,0.0,13.195685805097062,0.0,124.87761316689259,0,39.380909295966944,0.14772086786364716,23.29188607711962,0,0,92.91938231676731,599.6554075446891,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4088.036538893972,0.0,2396.0552071640814,0.0,3858.4214645450143,0.0,0.0,0.0,0.0,0.0,3963.1359292404413,0.0,2207.933021442646,0.0,3627.403302722042,0.0,0.0,0,0,0,0,0,0,0,0,0.06143711933119921,0.001943827630434299,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.23466653661040562,-0.23466653661040562,-0.4757359311998018,-0.4757359311998018,-0.5369074488386993,-0.5369074488386993,0.005145336246061974,0.005145336246061974,-0.19587349512903265,-0.19587349512903265,-0.3638407299657403,-0.5846955253352809,-0.5547402207936286,-0.5687153705719136,-0.2943977273150158,-0.317183040669533,-0.5938130445756268,-0.5552350971018576,-0.5698482163743367,-0.32294363724866865,6.142674984545408,6.142674984545408,9.726563998948578,9.726563998948578,11.032011780960431,11.032011780960431,5.000548035730361,5.000548035730361,5.795543274298808,5.795543274298808,7.755406247279382,12.164576869995273,11.443062409172768,11.774829284734452,6.800754442329023,7.091450148092036,12.391913077922723,11.454666018113201,11.802093939740232,7.168424824379571,204.32579041539418,204.32579041539418,0.0,227.02865601710465,0.0,204.32579041539418,227.02865601710465,0,0
+2017/01/15 12:00:00,222.0283944283626,0,1181.0691943401139,0,0,0,0.0,0.0,13.065493488391114,0.0,143.25325374857618,0,39.380909295966944,0.10681890806509911,22.789943784908868,0,0,66.80367536353492,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3140.1409464635617,0.0,1904.5142603491454,0.0,3090.0845536489724,0.0,0.0,0.0,0.0,0.0,2914.1818771729268,0.0,1582.978035112264,0.0,2804.061315117261,0.0,0.0,0,0,0,0,0,0,0,0,0.0628809987324937,0.00198951096822429,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.11662503018977957,-0.11662503018977957,-0.43319750372019,-0.43319750372019,-0.47572079676551166,-0.47572079676551166,0.1274063016412476,0.1274063016412476,-0.11844111218511003,-0.11844111218511003,-0.21673252632161172,-0.5582486479130406,-0.5350622343016144,-0.5578175705634055,-0.2952194848019721,-0.126772274129699,-0.5596560293500551,-0.5292637086649703,-0.5547869985510774,-0.3177762640573823,5.2817264523649925,5.2817264523649925,8.91392322349985,8.91392322349985,9.7262610181714,9.7262610181714,5.3362608724956715,5.3362608724956715,5.29057432340656,5.29057432340656,5.974361520222644,11.525555439607444,10.990265703209133,11.515390833693132,6.81085682176851,5.33292008355329,11.558796945820234,10.860039842720354,11.444158775934753,7.099312014924635,222.0283944283626,222.0283944283626,0.0,246.698216031514,0.0,222.0283944283626,246.698216031514,0,0
+2017/01/15 13:00:00,199.34038180641542,0,1093.1116195063505,0,0,0,0.0,0.0,13.146986240304685,0.0,124.80122689546741,0,39.380909295966944,0.07597296037880746,18.503311211843243,0,0,52.02591369015768,561.9659468968467,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2220.4825090683034,0.0,2045.0249583470031,0.0,2540.3346059809774,0.0,0.0,0.0,0.0,0.0,1908.7974554835691,0.0,1674.7670553447156,0.0,2235.822230742843,0.0,0.0,0,0,0,0,0,0,0,0,0.058198072297582074,0.0018413464400926821,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.031531228391847556,-0.031531228391847556,-0.3342958813777665,-0.3342958813777665,-0.4973313211832546,-0.4973313211832546,0.19969685835046935,0.19969685835046935,-0.10986011774621833,-0.10986011774621833,-0.10304213947213367,-0.5058254906921995,-0.5278021471965612,-0.5501580436922838,-0.2940118517908635,-0.05779161721742355,-0.49553452683892135,-0.5196207735186947,-0.5448758110803589,-0.3127123594433911,5.020581736028177,5.020581736028177,7.324235364443254,7.324235364443254,10.168957238042935,10.168957238042935,5.826957280385457,5.826957280385457,5.249973958353266,5.249973958353266,5.219895549332605,10.34848374364664,10.827445190218924,11.336126125502972,6.796020477011638,5.069147354555284,10.131381002051995,10.646697887670044,11.213981646517723,7.032680597538885,199.34038180641542,199.34038180641542,0.0,221.48931311823935,0.0,199.34038180641542,221.48931311823935,0,0
+2017/01/15 14:00:00,199.78533252292797,0,1050.5412421155074,0,0,0,0.0,0.0,13.642399071783913,0.0,124.7641830973959,0,39.380909295966944,0.062365753146725655,18.503500102180137,0,0,44.94872097198928,561.9631147367165,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1651.6692190971398,0.0,1831.8063633215816,0.0,2364.3559378678083,0.0,0.0,0.0,0.0,0.0,1298.645235481314,0.0,1464.2416160044481,0.0,2067.027514362995,0.0,0.0,0,0,0,0,0,0,0,0,0.055931593873131256,0.001769636642608844,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.022206809939590465,-0.022206809939590465,-0.258283220360092,-0.258283220360092,-0.6363356968070766,-0.6363356968070766,0.2404297946936365,0.2404297946936365,-0.13591309493933534,-0.13591309493933534,-0.08392924179122464,-0.4355296104547898,-0.5237758695680377,-0.5458540404231346,-0.2997465445976538,-0.010970491851372952,-0.4087573329382389,-0.5151250582623542,-0.5400935521080829,-0.31784546464290814,5.01020852052045,5.01020852052045,6.384916665453247,6.384916665453247,13.499821843466663,13.499821843466663,6.19962866916714,6.19962866916714,5.382701294196011,5.382701294196011,5.145862719374762,8.956458773164002,10.738132441273564,11.236510637601242,6.867022447648083,5.002491353659224,8.48219354430455,10.54860932893385,11.104441293499718,7.100230086993179,199.78533252292797,199.78533252292797,0.0,221.9837028032533,0.0,199.78533252292797,221.9837028032533,0,0
+2017/01/15 15:00:00,181.64181347478328,0,1016.118416527517,0,0,0,0.0,0.0,13.642399071783913,0.0,111.01081017850728,0,39.380909295966944,0.09470248239448509,14.081017243676339,0,0,68.00400885399502,539.9753537792644,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1400.138737232315,0.0,1580.304618284068,0.0,2766.9925949146173,0.0,0.0,0.0,0.0,0.0,939.1365247495788,0.0,1244.9913666439104,0.0,2488.629562047485,0.0,0.0,0,0,0,0,0,0,0,0,0.05409889714161025,0.0017116513955185225,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.13973623078352151,-0.13973623078352151,-0.40646904570774095,-0.40646904570774095,-0.5820399328251147,-0.5820399328251147,0.2262374925010388,0.2262374925010388,-0.21375952736505766,-0.21375952736505766,-0.12941087901206103,-0.3971890722321296,-0.539962148418807,-0.5689645778533791,-0.33074694690204326,-0.05903303306800913,-0.36156058293932647,-0.5336543031587311,-0.5659081656225338,-0.35021028333080456,5.404553046619938,5.404553046619938,8.443082241027852,8.443082241027852,12.099040710559763,12.099040710559763,6.061887463162805,6.061887463162805,5.947761998573924,5.947761998573924,5.346933262668003,8.286766870048183,11.101445405686192,11.780822280312236,7.274938477889023,5.072150423943526,7.72080776003429,10.95851190497811,11.70750704267725,7.551873965553725,181.64181347478328,181.64181347478328,0.0,201.82423719420365,0.0,181.64181347478328,201.82423719420365,0,0
+2017/01/15 16:00:00,179.7969808123909,0,1019.5801634119628,0,0,0,0.0,0.0,14.11330961877246,0.0,108.75639138185811,0,39.380909295966944,0.11705083269385735,13.99734448064524,0,0,78.69167859389779,532.7494309238075,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1266.9785475537215,0.0,1539.438756634483,0.0,3153.3202142824816,0.0,0.0,0.0,0.0,0.0,781.639139740902,0.0,1349.5112816748865,0.0,2959.2564676414668,0.0,0.0,0,0,0,0,0,0,0,0,0.054283203109877144,0.0017174827078826292,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.28467253602147585,-0.28467253602147585,-0.38892159352179967,-0.38892159352179967,-0.5510833074477273,-0.5510833074477273,0.21946497304773832,0.21946497304773832,-0.2450881730521781,-0.2450881730521781,-0.12950507237506528,-0.3755609442509588,-0.5534597370361519,-0.5887316620843847,-0.3466742316098017,-0.08995334077386927,-0.3386123003825712,-0.5526990873912427,-0.5906909580219657,-0.36825613661682055,6.683362600546275,6.683362600546275,8.150608777945237,8.150608777945237,11.357646072279252,11.357646072279252,5.999135341014167,5.999135341014167,6.246683008675319,6.246683008675319,5.3474388592330655,7.936742890427325,11.413087554971739,12.264768873819378,7.50036440712681,5.16756085057564,7.384913709663024,11.395315156732494,12.313660811865617,7.8230345104419285,179.7969808123909,179.7969808123909,0.0,199.77442312487878,0.0,179.7969808123909,199.77442312487878,0,0
+2017/01/15 17:00:00,195.08247325666716,0,1058.6956596092268,0,0,0,0.0,0.0,13.169247900146194,0.0,124.87761316689259,0,39.380909295966944,0.11211686896997643,14.110610822237087,0,0,69.98483040967523,527.3362465364777,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1719.3675227639924,0.0,1765.662265771595,0.0,3284.922054691675,0.0,0.0,0.0,0.0,0.0,1315.4499288720199,0.0,1637.0856069792321,0.0,3133.3083942930575,0.0,0.0,0,0,0,0,0,0,0,0,0.05636574110052828,0.0017833727582581046,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42869005690256257,-0.42869005690256257,-0.532076453611687,-0.532076453611687,-0.5363600959369017,-0.5363600959369017,0.24207858125320914,0.24207858125320914,-0.2032431709157901,-0.2032431709157901,-0.18041737688198722,-0.42362669776945666,-0.5611326024104202,-0.5962181744543976,-0.3502370136557278,-0.1792301659706482,-0.3994262532892139,-0.5634594045481205,-0.6016638202580632,-0.3740193037355258,8.832373265586611,8.832373265586611,10.923027868184562,10.923027868184562,11.019613099878939,11.019613099878939,6.2161788712371475,6.2161788712371475,5.856641439966793,5.856641439966793,5.674777296344018,8.741805529855341,11.593765047404588,12.452483945886257,7.552265370356267,5.665913676239896,8.324113708170813,11.64906010871239,12.590555010579351,7.912555896663136,195.08247325666716,195.08247325666716,0.0,216.75830361851905,0.0,195.08247325666716,216.75830361851905,0,0
+2017/01/15 18:00:00,221.4024948794035,0,1097.150276569427,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,129.38645076019097,0,39.380909295966944,0.1132323130700393,18.494734557637717,0,0,73.80804959562096,561.9676443107321,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3079.817159659597,0.0,2911.0605798093666,0.0,4044.2056727867966,0.0,0.0,0.0,0.0,0.0,2724.167131492286,0.0,2706.0752579762875,0.0,3846.313394931244,0.0,0.0,0,0,0,0,0,0,0,0,0.05841309339108048,0.0018481495576089058,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5216694495040181,-0.5216694495040181,-0.4857094286967271,-0.4857094286967271,-0.5522055469128486,-0.5522055469128486,0.19184264691416214,0.19184264691416214,-0.15985317159835485,-0.15985317159835485,-0.2935543010863257,-0.4787854082452458,-0.5649596336385287,-0.5988142703381368,-0.338852850180032,-0.297524066772388,-0.4706496817162288,-0.5705800492700998,-0.6085363573090213,-0.3643830784442816,10.69168644289772,10.69168644289772,9.928375020463378,9.928375020463378,11.383797118045607,11.383797118045607,5.7630862673769485,5.7630862673769485,5.529559060066177,5.529559060066177,6.790415344161687,9.787813910660134,11.684836658462046,12.518145856803145,7.388318529347586,6.839340715847271,9.625296883382035,11.819736854405292,12.766641158988875,7.763668337237533,221.4024948794035,221.4024948794035,0.0,246.0027720882261,0.0,221.4024948794035,246.0027720882261,0,0
+2017/01/15 19:00:00,212.64737277274156,0,1173.1218898819025,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,115.6330778413024,0,39.380909295966944,0.22431994295663402,23.38189773997778,0,0,147.58225218668366,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,513.0835610887817,0.0,3090.93158131526,0.0,3740.470888967244,0.0,3872.8537747985047,0.0,0.0,0.0,72.24690155587479,0.0,2781.3873796867438,0.0,3526.2167266086426,0.0,3672.79404729842,0.0,0.0,0,0,0,0,0,0,0,0,0.06245787835651713,0.0019761237344676228,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5878066556192579,-0.5878066556192579,-0.37363392198224804,-0.37363392198224804,-0.5279977605373677,-0.5279977605373677,0.15229574055033424,0.15229574055033424,-0.15606969121853276,-0.15606969121853276,-0.3445428641099552,-0.48225635049773746,-0.5592187498096102,-0.5903214749132506,-0.3221512998886286,-0.35317906767421975,-0.47948964364981445,-0.5657693784630766,-0.6009781990097851,-0.3471074287831292,12.241744311832136,12.241744311832136,7.906525432093673,7.906525432093673,10.831802251989856,10.831802251989856,5.480620951411126,5.480620951411126,5.504761701679513,5.504761701679513,7.469573626037899,9.858017221728218,11.548459467626145,12.304428046947521,7.157753975961157,7.595530825285579,9.802015756108545,11.704187523622963,12.573100675828158,7.506646200200265,212.64737277274156,212.64737277274156,0.0,236.27485863637952,0.0,212.64737277274156,236.27485863637952,0,0
+2017/01/15 20:00:00,200.5491030341675,0,1075.9941607607625,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,104.13412371906301,0,39.380909295966944,0.13559563168397124,22.8713064349157,0,0,85.94487557808802,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1026.487154932007,0.0,2926.7703341347724,0.0,3984.6489888312053,0.0,3613.723558450962,0.0,0.0,0.0,712.9700084875033,0.0,2651.9831317683747,0.0,3762.558558766531,0.0,3413.492820386114,0.0,0.0,0,0,0,0,0,0,0,0,0.05728672611495116,0.0018125120821349326,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5258064352080036,-0.5258064352080036,-0.4685280082880769,-0.4685280082880769,-0.5559942268459462,-0.5559942268459462,0.10883841106109039,0.10883841106109039,-0.17733138996435238,-0.17733138996435238,-0.3702658507148871,-0.4809068904695804,-0.5539019699805642,-0.5801741347919251,-0.3088859039492565,-0.3789637111348591,-0.4817359599663327,-0.560797878037342,-0.5910393575174365,-0.3329622587838673,10.783087671742052,10.783087671742052,9.583384018750237,9.583384018750237,11.472486344550035,11.472486344550035,5.245343600615811,5.245343600615811,5.6518598654416365,5.6518598654416365,7.854091322090497,9.830661277020113,11.423431753604305,12.053178560303863,6.98305189798819,7.990488236632785,9.847458676832744,11.58582984054759,12.322372159733732,7.305647829258788,200.5491030341675,200.5491030341675,0.0,222.83233670463056,0.0,200.5491030341675,222.83233670463056,0,0
+2017/01/15 21:00:00,200.49831820242343,0,1044.481068820823,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,0.1721946706642404,18.50194510988639,0,0,127.61728070077167,561.9602629946103,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2202.315654867467,0.0,3387.0111637374757,0.0,4866.830117795118,0.0,4012.4537031303016,0.0,0.0,0.0,1732.4973043474042,0.0,3003.8596360014226,0.0,4438.87078336645,0.0,3679.4942820297374,0.0,0.0,0,0,0,0,0,0,0,0,0.05560894575811151,0.0017594282811539078,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49192308506917193,-0.49192308506917193,-0.561450506844064,-0.561450506844064,-0.6022762423271619,-0.6022762423271619,0.03368096729953273,0.03368096729953273,-0.20856691567333738,-0.20856691567333738,-0.38146211315041334,-0.48057346295237413,-0.5497305425897571,-0.5738600671968886,-0.29674541774366076,-0.39442085434068175,-0.4844118510658881,-0.5569858563905469,-0.5852337461706038,-0.3205441050074455,10.056276984873364,10.056276984873364,11.601306007899865,11.601306007899865,12.606163114148899,12.606163114148899,5.02348399972324,5.02348399972324,5.90219128980705,5.90219128980705,8.030264101414502,9.823914215051715,11.326195763914882,11.899096447863613,6.8296917577853975,8.240851358614648,9.90187602671189,11.49580216610751,12.177896673857362,7.136190721450973,200.49831820242343,200.49831820242343,0.0,222.7759091138038,0.0,200.49831820242343,222.7759091138038,0,0
+2017/01/15 22:00:00,186.65603242554042,0,1085.243200220153,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,0.22465111373782728,22.86941340211681,0,0,166.17462006256696,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1702.32160973172,0.0,4416.57993263042,0.0,4098.835782198663,0.0,4980.465242892766,0.0,0.0,0.0,1241.3181075839593,0.0,4023.6937573026757,0.0,3651.1855230909064,0.0,4634.976958794316,0.0,0.0,0,0,0,0,0,0,0,0,0.05777915182659431,0.0018280920884022858,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5163906657077754,-0.5163906657077754,-0.5812477511948818,-0.5812477511948818,-0.6500370370629763,-0.6500370370629763,-0.0655712055773365,-0.0655712055773365,-0.29358223370589315,-0.29358223370589315,-0.4045562568281233,-0.49988314245281806,-0.5616688208061456,-0.5879212429605074,-0.31290727997426393,-0.4198601323243914,-0.5093232599747585,-0.5712221680269983,-0.6018069984488322,-0.3387765970915977,10.576134211638234,10.576134211638234,12.079550079403916,12.079550079403916,13.87351505227383,13.87351505227383,5.089020668694843,5.089020668694843,6.790757273614815,6.790757273614815,8.410560964732682,10.222563006376191,11.60648713702983,12.244594518344286,7.035225287081758,8.675146765176265,10.423316543255268,11.83523609036645,12.594202572036835,7.38723895239923,186.65603242554042,186.65603242554042,0.0,207.3955915839338,0.0,186.65603242554042,207.3955915839338,0,0
+2017/01/15 23:00:00,131.13311651568588,0,966.7343470111496,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,0.4062883684642191,18.494968070314833,0,0,245.0621766456668,561.9655840590341,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,519.0017221416674,0.0,0.0,0.0,0.0,0.0,1685.0538862890749,0.0,4943.269807876346,0.0,3883.93938881836,0.0,5469.178285947753,0.0,1029.9946667587797,0.0,1409.9849545913744,0.0,4668.6600046948,0.0,3622.467945569557,0.0,5244.5323701760335,0.0,5369.714811865704,0,0,0,0,0,0,0,0,0.051469652701449334,0.001628463934166389,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6287966975193074,-0.6287966975193074,-0.6783535173607066,-0.6783535173607066,-0.738654682212388,-0.738654682212388,-0.25723528127329826,-0.25723528127329826,-0.41215562192433114,-0.41215562192433114,-0.43006908241945774,-0.5271159575640018,-0.5802965189511883,-0.6094254585280747,-0.3351691858148115,-0.4505167687681425,-0.5428785969788038,-0.5925696407848556,-0.6261970270313415,-0.36665664600701714,13.297674254854044,13.297674254854044,14.671605785637055,14.671605785637055,16.486630770880012,16.486630770880012,6.373670614852543,6.373670614852543,8.54069075897192,8.54069075897192,8.857230369875637,10.812174205240595,12.056182188544199,12.789571205216802,7.336448063777311,9.235388027753345,11.168113814082275,12.360697600972088,13.228539519093701,7.798440058914807,131.13311651568588,131.13311651568588,0.0,145.70346279520655,0.0,131.13311651568588,145.70346279520655,0,0
+2017/01/16 00:00:00,88.96383619839604,0,788.7290808109095,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.44722404378709896,9.573655893316369,0,0,240.0074718427277,495.4860801993657,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.81547706961466,0.0,258.7866992166324,0.0,1579.4599100844305,0.0,0.0,0.0,0.0,0.0,1641.16303200851,0.0,4945.164923865831,0.0,3703.7356597001426,0.0,5431.38248334011,0.0,4108.777116511284,0.0,1668.2185191614942,0.0,4883.273129214975,0.0,3769.765926991611,0.0,5417.063811661637,0.0,7553.379309514504,0,0,0,0,0,0,0,0,0.04199252047926117,0.001328614076762455,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7575094514334973,-0.7575094514334973,-0.7870029821943942,-0.7870029821943942,-0.8222490430168049,-0.8222490430168049,-0.4595386417680776,-0.4595386417680776,-0.5618808324694264,-0.5618808324694264,-0.4517502734269129,-0.5495900715296954,-0.5961330167070437,-0.626409198036838,-0.3559749745772485,-0.4777479862867915,-0.571158168453456,-0.6117533688064286,-0.6460497620578728,-0.391282927753845,17.086245512908548,17.086245512908548,18.05465844728647,18.05465844728647,19.26037452601021,19.26037452601021,9.407954097356551,9.407954097356551,11.611520675354697,11.611520675354697,9.258775207102474,11.322934511041339,12.450335043288192,13.234170931877756,7.636988346089083,9.766931881869496,11.833690488711895,12.84977085156639,13.76392550805977,8.189199799382024,88.96383619839604,88.96383619839604,0.0,98.8487068871067,0.0,88.96383619839604,98.8487068871067,0,0
+2017/01/16 01:00:00,39.34217391854051,0,567.6171445792789,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.578543344715589e-09,9.544852919538778,0,0,0.0,514.3816158104627,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030220357215203917,0.0009561510369623848,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.649794129045255,-0.649794129045255,-0.710672892557554,-0.710672892557554,-0.7755521397843499,-0.7755521397843499,-0.3998252465429737,-0.3998252465429737,-0.2510870897627343,-0.2510870897627343,-0.4814533997505642,-0.6918447564652129,-0.8064899825431551,-0.8381651108708558,-0.15893631170008427,-0.5238558826292592,-0.7300955065408629,-0.8217485993027931,-0.8546484955217514,-0.25561323362256005,13.866819052741874,13.866819052741874,15.624901685159415,15.624901685159415,17.674270679849045,17.674270679849045,8.330796880168464,8.330796880168464,6.308621238064518,6.308621238064518,9.841730521707163,15.064058189865008,18.714793172420173,19.821982823477413,5.52349509531733,10.739900493809941,16.21946665641731,19.242888359066527,20.41476473875447,6.356354565164878,39.34217391854051,39.34217391854051,0.0,43.71352657615612,0.0,39.34217391854051,43.71352657615612,0,0
+2017/01/16 02:00:00,23.722229827858186,0,42.59338246283181,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525134404180392,0,0,0.0,7.103029950287674,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0022677032315235116,7.174854952585726e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6999326664788915,-0.6999326664788915,-0.7772341294958449,-0.7772341294958449,-0.8511200610377689,-0.8511200610377689,-0.47568786658656803,-0.47568786658656803,-0.10981103697449349,-0.10981103697449349,-0.5859232734140307,-0.7862009116784456,-0.9497310490911766,-0.9773634404186504,-0.10004566430617712,-0.6337102587857263,-0.8362092810614948,-0.9942600833593658,-1.0256555537854561,-0.26010392359407525,15.303102180092637,15.303102180092637,17.729795480641442,17.729795480641442,20.286922491474627,20.286922491474627,9.725601813173299,9.725601813173299,5.249750533786354,5.249750533786354,12.194979353095974,18.02783275244896,24.05161282368539,25.176296675860115,5.207286739408133,13.429144626867895,19.75239851397393,25.878591593718397,27.212287439630785,6.404565583301348,23.722229827858186,23.722229827858186,0.0,26.35803314206465,0.0,23.722229827858186,26.35803314206465,0,0
+2017/01/16 03:00:00,28.344407484658515,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250443981856201,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6811129692509718,-0.6811129692509718,-0.7614117189723997,-0.7614117189723997,-0.8369008099610176,-0.8369008099610176,-0.4665814814433502,-0.4665814814433502,-0.03125487035578009,-0.03125487035578009,-0.5932829636722392,-0.7992916111455787,-0.9700782852291386,-0.9980811091344679,-0.07879395871169276,-0.6734365758512899,-0.8808346858344289,-1.0524455994098514,-1.084614475789487,-0.2457172976776478,14.751236344613815,14.751236344613815,17.212245360245177,17.212245360245177,19.77698338501621,19.77698338501621,9.545101736063856,9.545101736063856,5.020222520702234,5.020222520702234,12.378597266452005,18.469070849206005,24.876889939914207,26.038923341743583,5.128554525830523,14.530532292942922,21.37964063208416,28.379252759589562,29.814622551951416,6.253107674476496,28.344407484658515,28.344407484658515,0.0,31.493786094065015,0.0,28.344407484658515,31.493786094065015,0,0
+2017/01/16 04:00:00,23.722228030318636,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251326066408415,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7268711651090992,-0.7268711651090992,-0.8133146439062321,-0.8133146439062321,-0.8887772673610402,-0.8887772673610402,-0.5313952528958021,-0.5313952528958021,0.03131147144720768,0.03131147144720768,-0.673912127177672,-0.8828311728992918,-1.0596954614104397,-1.0865289169073529,-0.051799042143582656,-0.7565549382003489,-0.967574310176189,-1.147952321040642,-1.1791865309181442,-0.25692417300212717,16.119639209370916,16.119639209370916,18.94977957896043,18.94977957896043,21.677875337262904,21.677875337262904,10.907741762725834,10.907741762725834,5.020295834304775,5.020295834304775,14.544130780268702,21.454363263218326,28.699532395633454,29.90119113693555,5.055549040721715,17.055524462143794,24.774456692963767,32.744294540018075,34.236632111592144,6.3703408231220635,23.722228030318636,23.722228030318636,0.0,26.358031144798485,0.0,23.722228030318636,26.358031144798485,0,0
+2017/01/16 05:00:00,42.471168539683944,0,340.07242754458184,0,0,0,0.0,0.01058705338152054,4.633261998087618,9.319298099999997,25.555573451546493,0,1.407104733452625,1.0202685874346342,0.5250746157810497,0,0,251.3465462632215,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,176.09567322068116,0.0,0.0,0.0,0.0,0.2805091505337158,1294.485679825915,0.5280999817870855,1518.6234517254206,2.64843315173357,3576.351871933283,1.3477266559962118,2280.826426644137,0.0,0.0,1.5699603525911745,1595.8425040201373,0.49780601495523213,1564.85214176133,2.356279585888084,3693.286543750785,1.3582384880354665,2341.8111740014424,0.0,0.0,0,0,0,0,0,0,0,0,0.01810570793638777,0.0005728519783877887,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6921306429788889,-0.6921306429788889,-0.7785659295320233,-0.7785659295320233,-0.8286456098004786,-0.8286456098004786,-0.5066446014216425,-0.5066446014216425,0.16509774106308417,0.16509774106308417,-0.56917217344088,-0.6681134427031905,-0.731960498209027,-0.7544056423632202,-0.020929951693750382,-0.617844540583409,-0.7214875315534794,-0.7824410349018288,-0.811722916791509,-0.2417994427330522,15.072459596710132,15.072459596710132,17.773845483461884,17.773845483461884,19.484805322126448,19.484805322126448,10.365960724448783,10.365960724448783,5.564919238423343,5.564919238423343,11.785816644827776,14.378984321323472,16.2774118858638,16.986491972924412,5.009068299031455,13.00840105680534,15.953955550498407,17.902445973880887,18.894797638060638,6.213368904206561,42.471168539683944,42.471168539683944,0.0,47.19018726631549,0.0,42.471168539683944,47.19018726631549,0,0
+2017/01/16 06:00:00,75.67697786114148,0,307.1943196341451,0,0,0,0.0,0.010691709675975571,5.555297838843742,9.319298099999997,57.911447091112116,0,1.3322765261491978,0.970392665563282,0.5775739297971695,0,0,94.2522045588803,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5768869905661518,1168.2130899739316,0.34560999887162325,1279.0361275458404,1.9541904005970991,3054.364469527845,1.6188386664734367,1952.8820363475404,0.0,0.0,0.9587441031138155,1438.0150186104024,0.8967972085555402,1483.5302694396146,2.658033467266023,3454.5092158542293,1.6826088405318842,2186.9308574021297,0.0,0.0,0,0,0,0,0,0,0,0,0.0163552531182024,0.0005174688081080639,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5343565907851267,-0.5343565907851267,-0.6256144749792786,-0.6256144749792786,-0.6858278372486108,-0.6858278372486108,-0.36865060236792163,-0.36865060236792163,0.4902088111893612,0.4902088111893612,-0.5532057995562906,-0.6334686714863184,-0.6782203338128605,-0.6974933777254947,0.09814406678182869,-0.5848863774807428,-0.6612504105999255,-0.6916964554673058,-0.7184282837315165,-0.13955891838615386,10.974340228629288,10.974340228629288,13.213087549003035,13.213087549003035,14.888057211957417,14.888057211957417,7.829116746584361,7.829116746584361,10.020823853439651,10.020823853439651,11.407151576917414,13.422656080633018,14.667770790497073,15.230709715841556,5.199478368320612,12.169298610166265,14.185406701148821,15.059701428511488,15.860361718518533,5.403526139832422,75.67697786114148,75.67697786114148,0.0,84.08553095682386,0.0,75.67697786114148,84.08553095682386,0,0
+2017/01/16 07:00:00,101.79857004135471,0,786.4347374208768,0,0,0,0.24095871186338202,0.0067237533846750165,11.110595677687485,13.929299233552332,73.80580873715317,0,1.3094322263263887,0.8706935328445564,0.5250581685426953,0,0,69.72272969573318,486.0247163936067,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,764.4408059104863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1597494212900679,1052.379930139133,0.0,1111.3253335987279,1.721717377121725,2578.62837908909,1.0571535423465925,1664.316996855311,0.0,0.0,0.0,1153.9844540171448,0.0,1163.0710594542209,1.5936978691876595,2653.817183836588,1.1914351747289704,1697.7442710471216,0.0,0.0,0,0,0,0,0,0,0,0,0.041870367937740384,0.0013247492554960825,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42799325112672937,-0.42799325112672937,-0.5215758364029038,-0.5215758364029038,-0.5769572701055756,-0.5769572701055756,-0.27764868589295183,-0.27764868589295183,0.7432123970883773,0.7432123970883773,-0.544075337830995,-0.6182854700952674,-0.658915981218018,-0.6774482797834975,0.1815772761008928,-0.5705521816316718,-0.6397992674653106,-0.6650139006889271,-0.6916202519509562,-0.03652617532886762,8.819844297514678,8.819844297514678,10.689626755889634,10.689626755889634,11.974461309442773,11.974461309442773,6.601060990618805,6.601060990618805,16.630177603726253,16.630177603726253,11.19557729652621,13.019946523117895,14.120027182324918,14.645554759858456,5.683493836388081,11.819064600161383,13.593519118923922,14.291306501116168,15.057463104259156,5.02761946398563,101.79857004135471,101.79857004135471,0.0,113.1095222681719,0.0,101.79857004135471,113.1095222681719,0,0
+2017/01/16 08:00:00,164.53999534018467,0,952.4638698463416,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.2907792547440201,27.062421733853295,0,0,88.97585825798438,597.3103677442763,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,624.4767793561595,0.0,430.62655927012287,0.0,1515.2187923382567,0.0,0.0,0.0,0.0,0.0,3712.295469069277,0.0,5315.906695315965,0.0,5365.492942653904,0.0,5782.3190776684805,0.0,2262.5539059405332,0.0,3754.557364003421,0.0,5317.401923552101,0.0,5367.681148243953,0.0,5727.361803467354,0.0,2005.6504109495356,0,0,0,0,0,0,0,0,0.05070988192695738,0.0016044253164653806,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6134882146471718,-0.6134882146471718,-0.6475066851954457,-0.6475066851954457,-0.6889936674801636,-0.6889936674801636,-0.483807563299705,-0.483807563299705,0.2634327807601296,0.2634327807601296,-0.5402268276244832,-0.6187524726085514,-0.6480647061433445,-0.6730287701789516,-0.17409081191048037,-0.5680629859322318,-0.6411918685204718,-0.6548642090495789,-0.6870096389132044,-0.264929440100178,12.894786827000985,12.894786827000985,13.803888866055217,13.803888866055217,14.980465885994946,14.980465885994946,9.889560124670282,9.889560124670282,6.4408511269643896,6.4408511269643896,11.107480621473812,13.032183894985536,13.819219738652407,14.518878802636465,5.628222226883679,11.75915334186061,13.63133872479338,14.007111259434453,14.922502608493858,6.457317176484324,164.53999534018467,164.53999534018467,0.0,182.82221704464965,0.0,164.53999534018467,182.82221704464965,0,0
+2017/01/16 09:00:00,165.97353565354186,0,1042.3828373860963,0,0,0,0.0,0.0,12.629686762450465,0.0,83.2008179303116,0,39.380909295966944,0.232403987047365,27.097742475311204,0,0,123.31425722851029,599.655407544689,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,380.7658963208096,0.0,0.0,0.0,0.0,0.0,2670.742714177,0.0,4827.38321793613,0.0,4635.94158947242,0.0,5000.122782770338,0.0,162.1270860576032,0.0,2557.4381561149958,0.0,4836.265957423739,0.0,4641.307882895804,0.0,4900.651868590229,0.0,118.54373580093575,0,0,0,0,0,0,0,0,0.05549723436235265,0.001755893810461364,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5627802813032713,-0.5627802813032713,-0.6521002166687098,-0.6521002166687098,-0.7093355144242592,-0.7093355144242592,-0.4245893852884221,-0.4245893852884221,-0.21720231309218,-0.21720231309218,-0.49240045793686693,-0.6103731377717212,-0.6330477899436799,-0.6388361974562065,-0.28953464040985555,-0.5150854748555967,-0.6328414509391381,-0.6407783430786617,-0.648825427810542,-0.3404098664673328,11.632896886577413,11.632896886577413,13.930491761829629,13.930491761829629,15.584559843521902,15.584559843521902,8.758940324454983,8.758940324454983,5.978598591533483,5.978598591533483,10.066172186896168,12.81404976018419,13.411358101376948,13.567413712414691,6.741553386792802,10.547749572364879,13.40582202515904,13.620099615386167,13.840141286660739,7.410416483804127,165.97353565354186,165.97353565354186,0.0,184.4150396150465,0.0,165.97353565354186,184.4150396150465,0,0
+2017/01/16 10:00:00,181.97887785013768,0,1081.061361577777,0,0,0,0.0,0.0,11.812461463983857,0.0,106.27511244621549,0,39.380909295966944,0.2144514607191227,20.863967980798044,0,0,127.10629910221937,581.3063610938444,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1761.7313208032044,0.0,4476.609059789409,0.0,4238.646806000611,0.0,4550.760501148914,0.0,0.0,0.0,1680.3637544125909,0.0,4400.449543111816,0.0,4097.231389104851,0.0,4343.28044518957,0.0,0.0,0,0,0,0,0,0,0,0,0.05755650763975844,0.0018210477815265994,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44690012637237303,-0.44690012637237303,-0.5920067181534532,-0.5920067181534532,-0.6700866711177127,-0.6700866711177127,-0.33144369227562687,-0.33144369227562687,-0.2563741152401872,-0.2563741152401872,-0.4499248702551422,-0.601118245546421,-0.6214796625376217,-0.6227205230064171,-0.2981902553418488,-0.45697179619403455,-0.6214832113724001,-0.6268198917215582,-0.629755941170931,-0.3428566384233562,9.167193954815772,9.167193954815772,12.346587572341633,12.346587572341633,14.435018442412911,14.435018442412911,7.284574531216734,7.284574531216734,6.364463518738404,6.364463518738404,9.224188905037437,12.576664279399921,13.103836414239751,13.136544855111794,6.847616413244111,9.358500135927713,13.10392986442021,13.245077055119381,13.323258107018788,7.4453503873910165,181.97887785013768,181.97887785013768,0.0,202.19875316681964,0.0,181.97887785013768,202.19875316681964,0,0
+2017/01/16 11:00:00,212.29921633197426,0,1173.9051469311041,0,0,0,0.0,0.0,16.903073633821148,0.0,133.89528835348938,0,39.380909295966944,0.19273022509023402,18.4952396211522,0,0,131.70028853752686,580.8302757305032,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,428.9612191529284,0.0,4321.694618360088,0.0,3010.9866179179808,0.0,4451.527355245425,0.0,0.0,0.0,179.18616442418542,0.0,4174.770529730635,0.0,2770.9073910778643,0.0,4198.181305055161,0.0,0.0,0,0,0,0,0,0,0,0,0.06249957954198035,0.001977443130907555,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4033114363021638,-0.4033114363021638,-0.5045182194274378,-0.5045182194274378,-0.5698976694838466,-0.5698976694838466,-0.22049380019657333,-0.22049380019657333,-0.22001577123364857,-0.22001577123364857,-0.42379848637690093,-0.5878539915924802,-0.6042098467642233,-0.6146759952146121,-0.3148440555716938,-0.4208351977530234,-0.6031565776974928,-0.6052262835480134,-0.6187018706319313,-0.3495355384350601,8.38948062852809,8.38948062852809,10.320651194575987,10.320651194575987,11.803285415740547,11.803285415740547,6.008544306127419,6.008544306127419,6.004167056294634,6.004167056294634,8.744860266673243,12.242921661638505,12.655549520456773,12.925682819727456,7.060597325442799,8.692344612779152,12.628627736329179,12.68157551584541,13.030857459478952,7.542003926753921,212.29921633197426,212.29921633197426,0.0,235.88801814663807,0.0,212.29921633197426,235.88801814663807,0,0
+2017/01/16 12:00:00,228.43806411695732,0,1184.1299378237197,0,0,0,0.0,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.13397108951451978,20.76343016006637,0,0,88.20856421606301,581.3112621757668,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,233.91631827689451,0.0,3171.263742141411,0.0,3061.9836454825017,0.0,3356.1375875596714,0.0,0.0,0.0,0.0,0.0,2962.2734562250944,0.0,2741.3389783205394,0.0,3075.7056027364056,0.0,0.0,0,0,0,0,0,0,0,0,0.06304395498267398,0.0019946667903901175,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.45812413742295666,-0.45812413742295666,-0.42621108922717027,-0.42621108922717027,-0.5139061294432165,-0.5139061294432165,-0.07265028751618408,-0.07265028751618408,-0.122219245914527,-0.122219245914527,-0.38964314888657126,-0.5643107133242744,-0.58296593913884,-0.5995436266898037,-0.3052488253824988,-0.37397157873523196,-0.5746177905228305,-0.5804834401613234,-0.6013249065806237,-0.3328684980397846,9.38066655608607,9.38066655608607,8.78789480070185,8.78789480070185,10.522165134168759,10.522165134168759,5.109284400345217,5.109284400345217,5.309420382225284,5.309420382225284,8.162375795888039,11.669349622073511,12.121858449416209,12.536645779350337,6.936453821312057,7.911808750844415,11.917495827497206,12.060770979613409,12.581924500554493,7.304343867241883,228.43806411695732,228.43806411695732,0.0,253.8200712410637,0.0,228.43806411695732,253.8200712410637,0,0
+2017/01/16 13:00:00,207.7664641252366,0,1071.0368275654741,0,0,0,0.0,0.0,16.903073550514318,0.0,129.49988082968767,0,39.380909295966944,0.0420924946457611,18.50853275196758,0,0,29.918112912936678,561.9989557331918,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1528.693529971736,0.0,2442.8168225344884,0.0,1801.3482122380112,0.0,0.0,0.0,0.0,0.0,1220.6179062259298,0.0,2082.2532489828063,0.0,1511.0717660592509,0.0,0.0,0,0,0,0,0,0,0,0,0.05702279402370426,0.0018041614547437245,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3976012990880211,-0.3976012990880211,-0.30025810065511604,-0.30025810065511604,-0.49245811120055627,-0.49245811120055627,0.08757061586880886,0.08757061586880886,-0.09170687599636851,-0.09170687599636851,-0.27960087909334,-0.4986170802201469,-0.5477195214413798,-0.5611707548151597,-0.23443654693214105,-0.22772623273195175,-0.49729023294666264,-0.53971264362282,-0.556383742570353,-0.30112355602410157,8.293632374023034,8.293632374023034,6.8734236174779255,6.8734236174779255,10.067367916004557,10.067367916004557,5.158798572302956,5.158798572302956,5.17415979923409,5.17415979923409,6.62372689865424,10.19593183983109,11.27958832352219,11.594669823095643,6.140431109232182,6.075939484353242,10.16809640440897,11.095758975943625,11.481639800295,6.884278369895483,207.7664641252366,207.7664641252366,0.0,230.85162680581846,0.0,207.7664641252366,230.85162680581846,0,0
+2017/01/16 14:00:00,205.3523237612443,0,1013.5557389765263,0,0,0,0.0,0.0,16.903073467207488,0.0,129.2730206906943,0,39.380909295966944,0.03664802259793179,16.326697082323335,0,0,28.282692726019363,541.6436398437055,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1328.9052530274519,0.0,1989.233296036515,0.0,1818.1108359303823,0.0,0.0,0.0,0.0,0.0,1061.7718974826337,0.0,1582.7199887057363,0.0,1502.6387533791535,0.0,0.0,0,0,0,0,0,0,0,0,0.053962458290603164,0.0017073345653783828,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46906956843165143,-0.46906956843165143,-0.21299366810941286,-0.21299366810941286,-0.49296583021727425,-0.49296583021727425,0.16307868876656362,0.16307868876656362,-0.11188064870880811,-0.11188064870880811,-0.27812068216598534,-0.46941120430404915,-0.5326037523337029,-0.544928297998063,-0.20968644132262348,-0.23487729905659555,-0.46050534074551047,-0.5244577431416598,-0.5395011598571706,-0.29634264875058886,9.594063897068992,9.594063897068992,5.940969791724726,5.940969791724726,10.077904210248775,10.077904210248775,5.551170553553533,5.551170553553533,5.259258625080022,5.259258625080022,6.606526364464983,9.600807655099729,10.934874219776717,11.215189387193305,5.911920871297326,6.144733220217574,9.426652473620692,10.753208716935404,11.090941190206834,6.824710730664108,205.3523237612443,205.3523237612443,0.0,228.16924862360477,0.0,205.3523237612443,228.16924862360477,0,0
+2017/01/16 15:00:00,189.35410315374799,0,983.8406719233587,0,0,0,0.0,0.0,16.903073467207488,0.0,115.5196477718057,0,39.380909295966944,0.04405869816630333,14.074438718147249,0,0,35.67592930225142,540.0256887268499,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1416.218991459008,0.0,1262.8327808762563,0.0,2192.960291671519,0.0,484.4117618304916,0.0,0.0,0.0,1152.619595829426,0.0,971.6516129908223,0.0,1952.9267216939797,0.0,96.1122244586316,0,0,0,0,0,0,0,0,0.05238040611054426,0.0016572795371826573,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4970160431416115,-0.4970160431416115,-0.3949992196056496,-0.3949992196056496,-0.42689045453098384,-0.42689045453098384,0.20026213856898073,0.20026213856898073,-0.17478303356627573,-0.17478303356627573,-0.23283759102081314,-0.4329430869576485,-0.5298746055726894,-0.5465009305556234,-0.27829431505559477,-0.20488053785346838,-0.4164005066287134,-0.5238453393359969,-0.5431038414263025,-0.3267383162206376,10.162353761200421,10.162353761200421,8.250417432263845,8.250417432263845,8.8000579669025,8.8000579669025,5.831653677551685,5.831653677551685,5.6332346699843185,5.6332346699843185,6.124892388334288,8.909297018087855,10.873691018359125,11.251431541609776,6.608539270771615,5.870524432570647,8.614456051810336,10.739667502290317,11.173278109268878,7.219898873481213,189.35410315374799,189.35410315374799,0.0,210.39344794860887,0.0,189.35410315374799,210.39344794860887,0,0
+2017/01/16 16:00:00,186.15814138695168,0,1016.5786123379548,0,0,0,0.0,0.0,20.453847701218795,0.0,108.75639138185811,0,39.380909295966944,0.0835143400485575,14.051503465404991,0,0,68.3970937284841,540.0424647152133,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2539.562498179223,0.0,1486.5822017738112,0.0,2940.9534167517745,0.0,56.08869035266046,0.0,0.0,0.0,2330.944299379685,0.0,1179.1099791069016,0.0,2681.9114112792026,0.0,5.895058727571582,0,0,0,0,0,0,0,0,0.054123398307428065,0.0017124265953262767,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49360363887001346,-0.49360363887001346,-0.5057061238867292,-0.5057061238867292,-0.4901662050289537,-0.4901662050289537,0.18242549807015837,0.18242549807015837,-0.20950136777456121,-0.20950136777456121,-0.34766522228534935,-0.5007189715454978,-0.5469727501953009,-0.5695998936899624,-0.31862850923353525,-0.3197748324666429,-0.5044347430896625,-0.5471808362056273,-0.5736317363974632,-0.35168925765430137,10.091155929221713,10.091155929221713,10.34593929161943,10.34593929161943,10.019944325676889,10.019944325676889,5.689903707653087,5.689903707653087,5.910308813169436,5.910308813169436,7.51474651572903,10.24018232857425,11.262325778932222,11.796112693924485,7.110632739771702,7.1259083615417325,10.318876445059132,11.267133516313308,11.893556900324612,7.5735758586962305,186.15814138695168,186.15814138695168,0.0,206.84237931883519,0.0,186.15814138695168,206.84237931883519,0,0
+2017/01/16 17:00:00,210.9995616061776,0,1050.4243342951893,0,0,0,0.0,0.0,22.444205949699924,0.0,131.64086955684016,0,39.380909295966944,0.0841067059219613,14.017494895294275,0,0,68.88802888552657,520.1617227465889,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2323.1627735538614,0.0,1210.5917335515444,0.0,2690.106949629544,0.0,0.0,0.0,0.0,0.0,2237.891106752756,0.0,1071.1830795595038,0.0,2545.6567104629676,0.0,0.0,0,0,0,0,0,0,0,0,0.05592536961418312,0.0017694397113943913,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.45823751345881913,-0.45823751345881913,-0.40802095318094284,-0.40802095318094284,-0.4660447597051358,-0.4660447597051358,0.25578230837967847,0.25578230837967847,-0.1658432018608747,-0.1658432018608747,-0.34274883558898966,-0.5019593123333623,-0.5440316887233515,-0.5709792033749844,-0.32363522418120066,-0.3511888991420924,-0.510079618571862,-0.5448832568335912,-0.5757977290765232,-0.3539306227412322,9.382850544782215,9.382850544782215,8.469582906770043,8.469582906770043,9.53457476022389,9.53457476022389,6.35815434332531,6.35815434332531,5.570038394769014,5.570038394769014,7.443805870388758,10.2663844199475,11.19457452172611,11.829369391791957,7.177760563688807,7.566223378677776,10.439567971281463,11.214152968401805,11.94619722421946,7.60664214333454,210.9995616061776,210.9995616061776,0.0,234.44395734019733,0.0,210.9995616061776,234.44395734019733,0,0
+2017/01/16 18:00:00,234.28513312217981,0,1092.1900137389637,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.060145398886682175,18.587652580365205,0,0,49.98970912107943,580.8257219548105,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1989.4231545189764,0.0,1607.2454007054614,0.0,2294.1509263297185,0.0,0.0,0.0,0.0,0.0,1899.4021864685615,0.0,1469.7484896199737,0.0,2154.2240791400664,0.0,0.0,0,0,0,0,0,0,0,0,0.05814900532388687,0.0018397939952474681,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4356435294288086,-0.4356435294288086,-0.35741233844829423,-0.35741233844829423,-0.4250927200874519,-0.4250927200874519,0.3053331388516871,0.3053331388516871,-0.12293817738812944,-0.12293817738812944,-0.34725010651298677,-0.5026976940032585,-0.5354035449984192,-0.5621995287007573,-0.31226618570666015,-0.3583560377371639,-0.5105077867190625,-0.536528346828139,-0.5674124731484699,-0.3390021196769228,8.958542537491823,8.958542537491823,7.6584309623922735,7.6584309623922735,8.767914966454654,8.767914966454654,6.937527704605756,6.937527704605756,5.3130737367933705,5.3130737367933705,7.508716916883884,10.28201423951441,10.997976389223226,11.619090764777908,7.02686185033464,7.672556908112682,10.44877873197494,11.023422950851199,11.743540759351475,7.390432573851115,234.28513312217981,234.28513312217981,0.0,260.3168145801998,0.0,234.28513312217981,260.3168145801998,0,0
+2017/01/16 19:00:00,218.09192663042305,0,1063.8637481610178,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.04346288618106741,25.371993047721308,0,0,38.32411046579901,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,340.13368874974606,0.0,1488.9435322779927,0.0,2318.0617252794236,0.0,1776.0122984731415,0.0,0.0,0.0,224.86529518807964,0.0,1326.9972352316845,0.0,2057.1394279557517,0.0,1555.9918738625265,0.0,0.0,0,0,0,0,0,0,0,0,0.05664089396306328,0.0017920784030313454,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.41332058197677346,-0.41332058197677346,-0.3993037896522116,-0.3993037896522116,-0.4169833855068662,-0.4169833855068662,0.30721804067815056,0.30721804067815056,-0.10869389390165549,-0.10869389390165549,-0.3741235018763557,-0.48689847455758417,-0.5222571379979035,-0.5432177433178297,-0.2369703287211448,-0.3795453187648936,-0.49343361657870644,-0.522544262555293,-0.5471384890802695,-0.3040396811919753,8.560857926164744,8.560857926164744,8.322063797479174,8.322063797479174,8.624645302254947,8.624645302254947,6.96161382781203,6.96161382781203,5.244692151107785,5.244692151107785,7.914187480044177,9.952721395511617,10.704625501927126,11.17589043341107,6.165274239548921,7.999723941683314,10.087621667001429,10.710952520418516,11.26615495217959,6.921086280079535,218.09192663042305,218.09192663042305,0.0,242.32436292269227,0.0,218.09192663042305,242.32436292269227,0,0
+2017/01/16 20:00:00,210.56802129824408,0,1025.7162258163723,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.03834345200237704,27.097742475311204,0,0,35.66694063369804,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.32405103148645,0.0,1339.7343103038588,0.0,2067.390668928392,0.0,1618.9363343183154,0.0,0.0,0.0,52.361116004095365,0.0,1240.665994769786,0.0,1891.903909152473,0.0,1456.9904823152594,0.0,0.0,0,0,0,0,0,0,0,0,0.05460989161731023,0.0017278189045371378,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.32203247913867444,-0.32203247913867444,-0.3757739509545201,-0.3757739509545201,-0.4572467806799496,-0.4572467806799496,0.3130112841311999,0.3130112841311999,-0.1344758035356803,-0.1344758035356803,-0.3845925833360835,-0.4770050872565121,-0.5125381897453037,-0.5293179346538873,-0.2077965061435851,-0.39399848791213854,-0.4838535645088608,-0.5132436310667171,-0.5331291539484374,-0.288023020066444,7.156156045422037,7.156156045422037,7.940092751525825,7.940092751525825,9.363784540911865,9.363784540911865,7.036583720615312,7.036583720615312,5.37464350149375,5.37464350149375,8.08047895753046,9.752006759644914,10.492564738543123,10.861250929659548,5.895526281513597,8.233874517899082,9.890497114562464,10.507819443163697,10.946689927210883,6.723355064235392,210.56802129824408,210.56802129824408,0.0,233.96446810916007,0.0,210.56802129824408,233.96446810916007,0,0
+2017/01/16 21:00:00,211.929518554708,0,990.1218068913722,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.036619618269059434,23.989169770281652,0,0,35.56287422124176,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.84509301113081,0.0,1271.0340818746495,0.0,1938.9319852170142,0.0,1536.6840234806023,0.0,0.0,0.0,119.93198293122458,0.0,1213.867948453014,0.0,1818.3009522488,0.0,1412.6395534088365,0.0,0.0,0,0,0,0,0,0,0,0,0.05271481838871983,0.0016678601085595459,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.38041890980165255,-0.38041890980165255,-0.3776034603893275,-0.3776034603893275,-0.4836772070981244,-0.4836772070981244,0.3066964559993727,0.3066964559993727,-0.17693539342530798,-0.17693539342530798,-0.388365009447382,-0.4717362070601733,-0.5058563869608058,-0.520400032993193,-0.19929703334530222,-0.3996188306941589,-0.47925073949041636,-0.5074607029895235,-0.5244717814106357,-0.281328886652057,8.013623360144933,8.013623360144933,7.968944342526129,7.968944342526129,9.886905419986022,9.886905419986022,6.954933741469006,6.954933741469006,5.6489478569920095,5.6489478569920095,8.141547285639334,9.646835904886004,10.349142436415576,10.663788881292433,5.823643568313599,8.327338546301206,9.797195537678903,10.38340234714724,10.753519315547194,6.643924011072471,211.929518554708,211.929518554708,0.0,235.47724283856445,0.0,211.929518554708,235.47724283856445,0,0
+2017/01/16 22:00:00,198.1262137021256,0,1000.8804131605614,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.0849831281461719,26.145293123359888,0,0,81.81183300297513,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,328.87421947135925,0.0,2489.8417969936527,0.0,2007.7799524408638,0.0,2721.1497224765462,0.0,476.0406293483172,0.0,425.50055230145887,0.0,2465.901771356351,0.0,1942.0563338070758,0.0,2628.8627656787353,0.0,134.807069097041,0,0,0,0,0,0,0,0,0.05328761455546285,0.0016859829800034306,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42269365328251,-0.42269365328251,-0.44744606812151294,-0.44744606812151294,-0.5553792483634489,-0.5553792483634489,0.23332318613363773,0.23332318613363773,-0.25144432351539986,-0.25144432351539986,-0.40486168890353647,-0.48978753755003124,-0.5163493089659862,-0.5357382450537796,-0.2615979531052228,-0.4220601633686712,-0.5029345806458583,-0.5232900457207634,-0.5447533514847214,-0.312863607820764,8.725236286767412,8.725236286767412,9.177451980669986,9.177451980669986,11.458048000782696,11.458048000782696,6.129600078747089,6.129600078747089,6.312357362348521,6.312357362348521,8.415743419007,10.012130858525708,10.575233675260264,11.005542631774517,6.420793262242682,8.714007893451765,10.28703357022799,10.727403117182263,11.211164276473738,7.034655006826668,198.1262137021256,198.1262137021256,0.0,220.14023744680622,0.0,198.1262137021256,220.14023744680622,0,0
+2017/01/16 23:00:00,140.10155714182042,0,857.7184208159408,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.12275840419055604,20.793865929853627,0,0,116.70104935594905,581.3107851535433,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,687.3047936239557,0.0,3188.354613344478,0.0,2186.968968783315,0.0,3374.728399607372,0.0,75.12121613439422,0.0,845.6716463689489,0.0,3198.8014267872304,0.0,2212.6169451791693,0.0,3337.7776449227176,0.0,11.586768297515452,0,0,0,0,0,0,0,0,0.045665564041993116,0.0014448266147647282,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5599585601060648,-0.5599585601060648,-0.5438820910321212,-0.5438820910321212,-0.686670099951608,-0.686670099951608,0.03833067952834156,0.03833067952834156,-0.47724579679054,-0.47724579679054,-0.4271225590500886,-0.5164501458010399,-0.5352057634678543,-0.5606539314101472,-0.30859538545938614,-0.45115100859057605,-0.5364278697074556,-0.5475931997040037,-0.574910024672881,-0.3472125926485936,11.565953757035757,11.565953757035757,11.191138358604448,11.191138358604448,14.912600050129527,14.912600050129527,5.03041602912414,5.03041602912414,9.756840098420184,9.756840098420184,8.804218040271834,10.577429510810333,10.993507613035675,11.582418836554425,6.979309218817519,9.247405003710085,11.021147612705505,11.27666654124198,11.924598644953875,7.508172385156541,140.10155714182042,140.10155714182042,0.0,155.66839682424492,0.0,140.10155714182042,155.66839682424492,0,0
+2017/01/17 00:00:00,90.9543144085092,0,778.1589716882004,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.24741975731263469,11.763938389903995,0,0,207.05687368519767,517.8665692341866,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,328.37099939552695,0.0,0.0,0.0,0.0,0.0,1251.3153038057708,0.0,4128.2280160901055,0.0,2642.2491691018135,0.0,4303.398859037798,0.0,10.544881900816328,0.0,1374.915475535643,0.0,4127.654809120764,0.0,2699.8597546136934,0.0,4288.778468732732,0.0,2137.533193343947,0,0,0,0,0,0,0,0,0.041429760040217846,0.001310808728747509,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7159122783354062,-0.7159122783354062,-0.7066688015773749,-0.7066688015773749,-0.793376137543033,-0.793376137543033,-0.21792589841514173,-0.21792589841514173,-0.5467478785752197,-0.5467478785752197,-0.4555179575953201,-0.5487874037557922,-0.560467061795371,-0.5911270377341317,-0.3376793087018626,-0.48638684744759064,-0.5748294241022232,-0.5768284487486917,-0.6094386566430909,-0.37729075447065713,15.7836897428447,15.7836897428447,15.50434901318907,15.50434901318907,18.268782717834597,18.268782717834597,5.985142794036051,5.985142794036051,11.257132327103378,11.257132327103378,9.33061566499795,11.30431574432086,11.577992056543977,12.324565337220847,7.371731094596825,9.942238066266555,11.92263925972999,11.97131837812519,12.789911844891776,7.964002812428035,90.9543144085092,90.9543144085092,0.0,101.060349342788,0.0,90.9543144085092,101.060349342788,0,0
+2017/01/17 01:00:00,39.34524309770394,0,568.8252655522261,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5785395448330704e-09,9.547922098702214,0,0,0.0,515.58973678341,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030284678470666886,0.0009581861166496195,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5799213758209492,-0.5799213758209492,-0.5956714478420041,-0.5956714478420041,-0.6699476690504301,-0.6699476690504301,-0.1509648615249229,-0.1509648615249229,-0.21160824996877556,-0.21160824996877556,-0.43378121197850095,-0.6225187405751426,-0.6708389937867444,-0.7000486861389664,-0.12245225048555614,-0.5037168993372185,-0.6708469673289649,-0.7021992956274782,-0.7330531726901839,-0.21029360397049957,12.046977249432501,12.046977249432501,12.438693117194433,12.438693117194433,14.431065656200374,14.431065656200374,5.472249242213792,5.472249242213792,5.928745278722488,5.928745278722488,8.924547628267888,13.131221425393832,14.456426673700292,15.306551775854686,5.310602075691122,10.303627152690325,14.456653701502063,15.370600746253103,16.311430690482666,5.917219547536561,39.34524309770394,39.34524309770394,0.0,43.7169367752266,0.0,39.34524309770394,43.7169367752266,0,0
+2017/01/17 02:00:00,23.774679580672622,0,40.92635994652603,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5775841569948325,0,0,0.0,5.436007433981891,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0021789497179807004,6.894045022366504e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6138696373245633,-0.6138696373245633,-0.6295449067297108,-0.6295449067297108,-0.7056410824430962,-0.7056410824430962,-0.2265797532955799,-0.2265797532955799,-0.08097358340732523,-0.08097358340732523,-0.5440634327223356,-0.7186678361758081,-0.7986655187958703,-0.8235330088096864,-0.05312486844262242,-0.5985772888703439,-0.77274935905333,-0.8324316476148539,-0.8611196562769718,-0.19403070116181886,12.904701541402545,12.904701541402545,13.317626211924889,13.317626211924889,15.473518603409417,15.473518603409417,6.065109790110995,6.065109790110995,5.135767240519499,5.135767240519499,11.195303785771571,15.867675981439547,18.44780227495886,19.30528612511253,5.058429416090348,12.512139856805234,17.582014738800126,19.618451168405812,20.65057036738264,5.780620547165455,23.774679580672622,23.774679580672622,0.0,26.4163106451918,0.0,23.774679580672622,26.4163106451918,0,0
+2017/01/17 03:00:00,28.344217481837866,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.524854395364972,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5892326342968868,-0.5892326342968868,-0.6090987150991475,-0.6090987150991475,-0.6843187444169078,-0.6843187444169078,-0.22544127165235067,-0.22544127165235067,-0.006411722497010445,-0.006411722497010445,-0.5540475784495339,-0.738415751972927,-0.8213510288701482,-0.8445449824683411,-0.030336638751751452,-0.6297845518286581,-0.8099573502351808,-0.8761651054058653,-0.9036095810636355,-0.185062305164327,12.277254196556413,12.277254196556413,12.781140458593484,12.781140458593484,14.844160206646663,14.844160206646663,6.054410184219961,6.054410184219961,5.000851002964183,5.000851002964183,11.426839512975647,16.479130169861406,19.229004223176744,20.050075601088167,5.019051698624352,13.324021790946404,18.833935848994642,21.20551081843604,22.241706083882477,5.710021476880186,28.344217481837866,28.344217481837866,0.0,31.49357497981985,0.0,28.344217481837866,31.49357497981985,0,0
+2017/01/17 04:00:00,23.72201849653015,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249230728523547,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6082638261423734,-0.6082638261423734,-0.628219710131277,-0.628219710131277,-0.7016644523418012,-0.7016644523418012,-0.2684487495298737,-0.2684487495298737,0.032125397677934944,0.032125397677934944,-0.5929321211193103,-0.776539245252228,-0.8641066081241587,-0.8850580143057705,-0.008379060646498739,-0.6717960933228225,-0.8516423658977447,-0.9222632876495828,-0.9478048462508705,-0.1868532918015495,12.75961941156774,12.75961941156774,13.282304734147303,13.282304734147303,15.354653512799544,15.354653512799544,6.4964078301517105,6.4964078301517105,5.021364758364058,5.021364758364058,12.369790689584534,17.706841788519057,20.759998343816562,21.537900114531723,5.001453358894977,14.483697487975903,20.30581402473038,22.963458063820852,23.974328791726265,5.7238515738593065,23.72201849653015,23.72201849653015,0.0,26.357798329477944,0.0,23.72201849653015,26.357798329477944,0,0
+2017/01/17 05:00:00,41.7282477221138,0,366.5306216006042,0,0,0,0.0,0.004875239345102652,4.633261998087618,9.319298099999997,25.555573451546493,0,0.9703389155333061,0.7198132816624151,0.5250867359388514,0,0,277.8047403192439,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,575.1662482068898,0.27144802175541827,859.3138395064335,1.535121052231034,1848.4769057184344,0.4780328987095951,1180.2757187628717,0.0,0.0,0.23158843849804117,917.5064738824196,0.3668841165207747,1024.494275051661,1.2004469346840854,2103.890503367191,0.7917178827037029,1307.3800989981548,0.0,0.0,0,0,0,0,0,0,0,0,0.019514361785691128,0.0006174208042670155,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5455109437488889,-0.5455109437488889,-0.567029459975431,-0.567029459975431,-0.6365058956450408,-0.6365058956450408,-0.225081714302039,-0.225081714302039,0.1756493743649096,0.1756493743649096,-0.5311396148763641,-0.6213995952888991,-0.6488159838835152,-0.668835923134818,0.02894483301011891,-0.5682925046513642,-0.6610731303430525,-0.6766243013847979,-0.7026507808069321,-0.16509795659284632,11.228604269808386,11.228604269808386,11.73435686620573,11.73435686620573,13.504413943577532,13.504413943577532,6.051042307111047,6.051042307111047,5.639536097502557,5.639536097502557,10.902010445617151,13.101728177647004,13.839881403738232,14.399481164465456,5.017343600901995,11.764666269101696,14.180433393061278,14.621873045269808,15.384072130043549,5.564920715139962,41.7282477221138,41.7282477221138,0.0,46.36471969123755,0.0,41.7282477221138,46.36471969123755,0,0
+2017/01/17 06:00:00,73.31106533629982,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5250223063439428,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.31247475846237127,-0.31247475846237127,-0.33813386200443896,-0.33813386200443896,-0.3997072845282948,-0.3997072845282948,-0.016064283788314874,-0.016064283788314874,0.49852288036954345,0.49852288036954345,-0.5440210345445133,-0.6860805480651955,-0.7392314593349775,-0.7591171100543661,0.14444443122826756,-0.5930611934287076,-0.7249344432757071,-0.7591400198354246,-0.7850596239927489,-0.002789204823841995,7.029580889914357,7.029580889914357,7.378149043074757,7.378149043074757,8.328820296956835,8.328820296956835,5.005342058079606,5.005342058079606,10.193953147860682,10.193953147860682,11.194329769989807,14.895417775372294,16.504747304268548,17.138076155397854,5.432299284116056,12.373029941156744,16.059892138203068,17.13881556150578,17.98970885856214,5.000161042981588,73.31106533629982,73.31106533629982,0.0,81.45673926255536,0.0,73.31106533629982,81.45673926255536,0,0
+2017/01/17 07:00:00,99.37075517301415,0,718.7458914448606,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.0,2.520247837274706e-09,0.5250515221008949,0,0,0.0,488.05860011332373,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03826656364039781,0.0012107273995869794,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.17810725818703335,-0.17810725818703335,-0.20710172751807027,-0.20710172751807027,-0.26287520073799375,-0.26287520073799375,0.09755264987893264,0.09755264987893264,0.7495658132330811,0.7495658132330811,-0.5223402032225712,-0.6823895747264053,-0.7521000532492228,-0.7722556018898918,0.25041578691212163,-0.5669956166652844,-0.7160121981076707,-0.7608197268318335,-0.7881766191764016,0.09218235377141398,5.657584280034911,5.657584280034911,5.88953687835307,5.88953687835307,6.434740815867855,6.434740815867855,5.197080482382418,5.197080482382418,16.83176711082659,16.83176711082659,10.706455543560168,14.788187277167694,16.912659335256677,17.565796977743148,6.301614940278654,11.733545676993387,15.786729467751798,17.193088713494575,18.093960625480307,5.175971117413425,99.37075517301415,99.37075517301415,0.0,110.41195019223794,0.0,99.37075517301415,110.41195019223794,0,0
+2017/01/17 08:00:00,164.37664049627523,0,885.6502635715367,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.09377450814392058,27.09607163654392,0,0,23.671512454228342,595.8011072732273,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,645.4901481982564,0.0,2263.681045429663,0.0,1705.9886887690823,0.0,2381.7362855766205,0.0,0.0,0.0,759.6937391842575,0.0,2244.446898596301,0.0,1751.812801231842,0.0,2320.9976092994075,0.0,1857.216514320245,0,0,0,0,0,0,0,0,0.04715267603960318,0.0014918778017665385,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.34364901232658046,-0.34364901232658046,-0.3586291317030881,-0.3586291317030881,-0.43434639605948744,-0.43434639605948744,0.019257778234200787,0.019257778234200787,0.5312891220558384,0.5312891220558384,-0.5035271931259301,-0.6246364002163972,-0.6533010663405713,-0.6901615354887869,0.04241060141115918,-0.5367718946707356,-0.6566373440452923,-0.6627754572609952,-0.7100074348486591,-0.094361171134895,7.456718073443625,7.456718073443625,7.676651841463382,7.676651841463382,8.934848806328986,8.934848806328986,5.0076771571852134,5.0076771571852134,10.905362001972264,10.905362001972264,10.299600908161821,13.18717760607808,13.963739343080334,15.014664633531211,5.037236148674722,11.02893998824851,14.05643794027469,14.228245628043993,15.604818598535047,5.184391246012268,164.37664049627523,164.37664049627523,0.0,182.64071166252802,0.0,164.37664049627523,182.64071166252802,0,0
+2017/01/17 09:00:00,168.20316005556361,0,939.5333015586648,0,0,0,0.0,0.0,15.03950648019319,0.0,83.2008179303116,0,39.380909295966944,0.05220867132638568,27.097742475311204,0,0,20.4647214010785,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,189.4889308329227,0.0,1973.6434980802376,0.0,1409.6820224932349,0.0,2206.3723930117153,0.0,0.0,0.0,345.3707098740127,0.0,2077.4948555715932,0.0,1551.6339977380078,0.0,2266.240332189626,0.0,909.3880771268891,0,0,0,0,0,0,0,0,0.05002144889356333,0.0015826437751662024,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48326818825575224,-0.48326818825575224,-0.4820515720439912,-0.4820515720439912,-0.5506323791429485,-0.5506323791429485,0.05588317057299717,0.05588317057299717,0.02429956538174206,0.02429956538174206,-0.48692917550766573,-0.5783486865365592,-0.585485287074911,-0.6194140962747798,-0.19560232925607213,-0.5111911670050938,-0.6002193280188247,-0.5896160419809416,-0.6323674863741473,-0.28803293568982635,9.878580509252188,9.878580509252188,9.8538609430517,9.8538609430517,11.34715366677203,11.34715366677203,5.064655240801983,5.064655240801983,5.012223325152917,5.012223325152917,9.953350822703854,12.008454413421347,12.184126078623464,13.049537337810278,5.7933384975519004,10.463496045412526,12.553805359610749,12.286816911813318,13.393112548183026,6.723474123597626,168.20316005556361,168.20316005556361,0.0,186.89240006173733,0.0,168.20316005556361,186.89240006173733,0,0
+2017/01/17 10:00:00,181.8019240138922,0,986.2339717221906,0,0,0,0.0,0.0,11.818109798451697,0.0,106.27511244621549,0,39.380909295966944,0.03674640639283301,20.859070864411006,0,0,17.950004568590703,595.6352657718866,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1715.0695426722089,0.0,1100.0589571321575,0.0,1859.8290331259313,0.0,0.0,0.0,0.0,0.0,1658.6083077416479,0.0,972.0058321436989,0.0,1726.1605525606856,0.0,0.0,0,0,0,0,0,0,0,0,0.05250782716456718,0.001661311050512141,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4570500163764314,-0.4570500163764314,-0.42816299686966747,-0.42816299686966747,-0.5192562919176135,-0.5192562919176135,0.14361092990046978,0.14361092990046978,-0.21306865888033022,-0.21306865888033022,-0.4538602131311879,-0.5581612998472952,-0.5615462033863274,-0.586525805013849,-0.21651818519815713,-0.4676903575730621,-0.5734829168550679,-0.5608974307837357,-0.5913444288820368,-0.32652783731667223,9.360002969910397,9.360002969910397,8.822894503608964,8.822894503608964,10.638712968251639,10.638712968251639,5.427320107489464,5.427320107489464,5.941633780630767,5.941633780630767,9.29893130378673,11.523495161388553,11.603576868593734,12.209923652293156,5.9724314195837,9.566889956303086,11.889947597789885,11.588189398971082,12.33000446099966,7.217027774662412,181.8019240138922,181.8019240138922,0.0,202.00213779321356,0.0,181.8019240138922,202.00213779321356,0,0
+2017/01/17 11:00:00,212.6749983000996,0,1065.941170979299,0,0,0,0.0,0.0,17.326262865157265,0.0,133.89528835348938,0,39.380909295966944,0.06947707688216867,18.57108550614947,0,0,38.403847424809,566.1627408914161,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2475.928901242361,0.0,1045.4796145751898,0.0,2607.307273350447,0.0,521.7103778337142,0.0,0.0,0.0,2434.357315251064,0.0,927.897500834242,0.0,2481.949532744105,0.0,103.54671616604244,0,0,0,0,0,0,0,0,0.0567514974926695,0.0017955778216110663,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4233592017678877,-0.4233592017678877,-0.3524519475064035,-0.3524519475064035,-0.4706755668307845,-0.4706755668307845,0.2558382869601132,0.2558382869601132,-0.1495674489188367,-0.1495674489188367,-0.4501405557287606,-0.5389027907050605,-0.5439279850054884,-0.5684167796158767,-0.2657063700782726,-0.4623889064766901,-0.5557630050404584,-0.5432337203185389,-0.5741918527038272,-0.3284829539196041,8.7370514490255,8.7370514490255,7.584803636284889,7.584803636284889,9.625809432073055,9.625809432073055,6.358750492780857,6.358750492780857,5.463538403461669,5.463538403461669,9.228268075731208,11.07732031308096,11.192192410647195,11.767652246493398,6.465902045705448,9.46320093851196,11.467055840893394,11.176256908673508,11.907149947655043,7.243769450058963,212.6749983000996,212.6749983000996,0.0,236.3055536667773,0.0,212.6749983000996,236.3055536667773,0,0
+2017/01/17 12:00:00,228.28094648308783,0,1116.5357808878125,0,0,0,0.0,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.032932309082340475,20.707351306629015,0,0,20.59892748595175,581.3267419699708,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1665.00446786706,0.0,958.8220613624699,0.0,1755.2283484908996,0.0,0.0,0.0,0.0,0.0,1545.9274624664868,0.0,779.119115331629,0.0,1595.7385478066753,0.0,7.199290897051641,0,0,0,0,0,0,0,0,0.059445191999963606,0.0018808044381618911,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42869967018206,-0.42869967018206,-0.2319689528773971,-0.2319689528773971,-0.45433220958578646,-0.45433220958578646,0.3990654635289531,0.3990654635289531,-0.06629302606808299,-0.06629302606808299,-0.4128464168415421,-0.5061147757369064,-0.5120151774834903,-0.5370948932949354,-0.22249453202739128,-0.4187879897276001,-0.5172771496893045,-0.5077015584120159,-0.5387330604730638,-0.3029605094000824,8.832546263604883,8.832546263604883,6.116495896286793,6.116495896286793,9.30794049825488,9.30794049825488,8.318076311519363,8.318076311519363,5.090991756770848,5.090991756770848,8.552642415261488,10.354652769698276,10.481268836781766,11.03626077071523,6.026968669096831,8.656283762956562,10.595455049799398,10.388555382925603,11.073459511053045,6.907422841421635,228.28094648308783,228.28094648308783,0.0,253.6454960923198,0.0,228.28094648308783,253.6454960923198,0,0
+2017/01/17 13:00:00,208.0169639049987,0,1057.760139055411,0,0,0,0.0,0.0,17.7527000636149,0.0,129.49988082968767,0,39.380909295966944,0.024505938558304227,18.49898844179229,0,0,16.605917568966397,562.0344625670986,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,236.77666459411637,0.0,1002.553110841729,0.0,1316.211033394156,0.0,1092.1535078371476,0.0,0.0,0.0,111.5860871603442,0.0,853.2070137170102,0.0,994.6016653682018,0.0,835.6628942683149,0.0,0.0,0,0,0,0,0,0,0,0,0.056315933293296816,0.0017817968739562067,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2789402053709106,-0.2789402053709106,-0.27074801935418186,-0.27074801935418186,-0.5162109155294603,-0.5162109155294603,0.4707767488995009,0.4707767488995009,-0.00574034190680784,-0.00574034190680784,-0.3944150800306029,-0.4686587359133453,-0.47412177727089194,-0.49866708403317866,-0.11290695137963816,-0.4023235697604605,-0.47861916044366637,-0.46982733328108794,-0.4995450690858837,-0.16149482956727934,6.616038164644223,6.616038164644223,6.522228677839578,6.522228677839578,10.572220718620713,10.572220718620713,9.627813205671984,9.627813205671984,5.000682114057355,5.000682114057355,8.24075592451139,9.585960885664136,9.694305415293627,10.19698233849455,5.264039595119655,8.372798862862211,9.78446442332158,9.609028672650396,10.215444976073968,5.540504248629773,208.0169639049987,208.0169639049987,0.0,231.129959894443,0.0,208.0169639049987,231.129959894443,0,0
+2017/01/17 14:00:00,205.73144464240346,0,1007.1943285904766,0,0,0,0.0,0.0,17.88678723597235,0.0,129.2730206906943,0,39.380909295966944,0.030181645372090813,16.30056643901917,0,0,21.8769499408296,541.6879722428456,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,205.08979848277232,0.0,1305.3265774787337,0.0,1295.7042424668457,0.0,1404.4256515595555,0.0,0.0,0.0,152.07119632982943,0.0,1198.4863573751018,0.0,1050.1918239693225,0.0,1197.9544904507188,0.0,0.0,0,0,0,0,0,0,0,0,0.05362377208971079,0.0016966187700659047,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.28778402403318526,-0.28778402403318526,-0.3468458018640275,-0.3468458018640275,-0.5414372099876313,-0.5414372099876313,0.5054389119007043,0.5054389119007043,-0.022378983420796836,-0.022378983420796836,-0.385637878777263,-0.450886418243956,-0.4570208129798146,-0.4807954298649726,-0.11601245344386889,-0.3959870914134832,-0.46117667528429007,-0.4540385247557964,-0.4823271772243326,-0.1587829135722256,6.720486635009053,6.720486635009053,7.502851393532367,7.502851393532367,11.13511843991354,11.13511843991354,10.340245568323084,10.340245568323084,5.010367434820921,5.010367434820921,8.097339399559814,9.242389692436603,9.359441858118046,9.828405285811897,5.2787729140298865,8.266789761090322,9.43966143878393,9.302333685845596,9.859455175010083,5.5224839655253675,205.73144464240346,205.73144464240346,0.0,228.59049404711496,0.0,205.73144464240346,228.59049404711496,0,0
+2017/01/17 15:00:00,191.14461499508653,0,979.3943537521081,0,0,0,0.0,0.0,18.67313568705791,0.0,115.5196477718057,0,39.380909295966944,0.04049333683910207,14.09845370096256,0,0,31.164505130148935,540.0907947277018,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1858.7932264335632,0.0,864.1892057706436,0.0,1932.5140918606724,0.0,0.0,0.0,0.0,0.0,1772.4340533517743,0.0,675.6584001464954,0.0,1751.7862094490947,0.0,441.5110513894738,0,0,0,0,0,0,0,0,0.05214368083768936,0.0016497897145606553,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3776230387364906,-0.3776230387364906,-0.37055984079631965,-0.37055984079631965,-0.5857493670850368,-0.5857493670850368,0.5106146081996308,0.5106146081996308,-0.07634075624633571,-0.07634075624633571,-0.3865896535530023,-0.4535273199625001,-0.45564868664349273,-0.4810333579921424,-0.16371718790239792,-0.4001045933183303,-0.467428983841808,-0.4576549096582016,-0.4853903554091759,-0.22574576859384476,7.969253867831782,7.969253867831782,7.858648889531139,7.858648889531139,12.190668968518068,12.190668968518068,10.451077913217333,10.451077913217333,5.120672156102813,5.120672156102813,8.11273196092209,9.292582997263011,9.33311931190542,9.833221661170839,5.55550002275848,8.335480016563054,9.561749471977407,9.371633597945177,9.921852202092495,6.057266564157445,191.14461499508653,191.14461499508653,0.0,212.38290555009613,0.0,191.14461499508653,212.38290555009613,0,0
+2017/01/17 16:00:00,185.75020905242124,0,986.9663368648773,0,0,0,0.0,0.0,20.084827476143527,0.0,108.75639138185811,0,39.380909295966944,0.047784707277414615,14.048320988720977,0,0,38.731996176207915,540.095286794412,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2236.0315174307652,0.0,806.4998559568164,0.0,2279.522956872263,0.0,172.2595253988309,0.0,0.0,0.0,2119.802346208328,0.0,598.1613227757181,0.0,2084.6199892988734,0.0,85.47740386680191,0,0,0,0,0,0,0,0,0.05254681882723156,0.0016625447195394113,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.37620058430031045,-0.37620058430031045,-0.40227505272509,-0.40227505272509,-0.4802577074640285,-0.4802577074640285,0.5207950147791764,0.5207950147791764,-0.08484789899129226,-0.08484789899129226,-0.3931433844248661,-0.4582900606733777,-0.4581782483907007,-0.4826996252565099,-0.2228795625971251,-0.41053521378714797,-0.4761924986687622,-0.4618333132417822,-0.4892363179879997,-0.26273504088960686,7.946808044329842,7.946808044329842,8.371980648152046,8.371980648152046,9.817529176431862,9.817529176431862,10.67246179648997,10.67246179648997,5.149074338815268,5.149074338815268,8.219772880451288,9.38386296155754,9.381708839093122,9.867020329653727,6.03053359330336,8.512735797810805,9.735708803518207,9.452404392558662,10.000767997460741,6.433206914915402,185.75020905242124,185.75020905242124,0.0,206.38912116935694,0.0,185.75020905242124,206.38912116935694,0,0
+2017/01/17 17:00:00,210.73913405534483,0,1039.1664874963858,0,0,0,0.0,0.0,22.230831924649085,0.0,131.64086955684016,0,39.380909295966944,0.04445557455463344,14.010092500879692,0,0,37.709578412977145,540.0823264203349,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2061.3372698199687,0.0,782.4998996326458,0.0,2152.6317327104157,0.0,0.0,0.0,0.0,0.0,1927.9392291209099,0.0,525.0310232972671,0.0,1930.6457039693219,0.0,2.8572266408881974,0,0,0,0,0,0,0,0,0.05532599351185265,0.0017504758693162629,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.24893670826046338,-0.24893670826046338,-0.38606808842917295,-0.38606808842917295,-0.4453453735687264,-0.4453453735687264,0.5773000404826151,0.5773000404826151,-0.028531341037371687,-0.028531341037371687,-0.3902412831317808,-0.4460428089500177,-0.45041536239833846,-0.477808877058292,-0.22644478192218423,-0.40791233543227634,-0.4636044712207057,-0.4527285085949734,-0.4842055428837841,-0.2638821508794927,6.28624484631554,6.28624484631554,8.104292165707534,8.104292165707534,9.138050996612563,9.138050996612563,11.982827589115928,11.982827589115928,5.016851597646621,5.016851597646621,8.172146945558865,9.151111171721453,9.233468280406242,9.768156255917987,6.063838471091572,8.467724773213732,9.486868720751971,9.277369033501586,9.897669517707513,6.445785130925927,210.73913405534483,210.73913405534483,0.0,234.1545933948276,0.0,210.73913405534483,234.1545933948276,0,0
+2017/01/17 18:00:00,233.83856911357867,0,1046.3652412349468,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.025950156490266565,18.60428071446728,0,0,22.952501545087042,562.0381570267859,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1420.4657496345953,0.0,773.589911258589,0.0,1491.234363621977,0.0,0.0,0.0,0.0,0.0,1259.039612668918,0.0,471.4410110964692,0.0,1245.7167514397893,0.0,0.0,0,0,0,0,0,0,0,0,0.055709260493058514,0.0017626021694424926,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3397577175604806,-0.3397577175604806,-0.39734885419790905,-0.39734885419790905,-0.5459253938209724,-0.5459253938209724,0.6253512846993585,0.6253512846993585,0.020668144389174376,0.020668144389174376,-0.37296757825579535,-0.43670651301330893,-0.4349470675921999,-0.462058233328529,-0.14116473325210963,-0.38142811689621414,-0.4509904374016747,-0.4362188487652783,-0.4676563368296184,-0.20167586347809707,7.401148326759383,7.401148326759383,8.289427124041453,8.289427124041453,11.238155556094966,11.238155556094966,13.206111356727277,13.206111356727277,5.008842847637666,5.008842847637666,7.896113411676595,8.978013113490306,8.945811824521229,9.45677354265463,5.412873964587504,8.029721075147037,9.244361016792155,8.969074585028963,9.56622069756078,5.843457534099329,233.83856911357867,233.83856911357867,0.0,259.82063234842076,0.0,233.83856911357867,259.82063234842076,0,0
+2017/01/17 19:00:00,216.69268367589274,0,1035.494455449672,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.010933687425887326,25.721266893173283,0,0,9.954817754453286,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,554.9798689215509,0.0,671.1088398965317,0.0,632.8640592259172,0.0,0.0,0.0,0.0,0.0,381.6340149396687,0.0,337.26576438129575,0.0,367.0028399934963,0.0,0.0,0,0,0,0,0,0,0,0,0.05513049180578698,0.001744290331612276,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.33854724412403603,-0.33854724412403603,-0.3965278512306758,-0.3965278512306758,-0.5474220544635093,-0.5474220544635093,0.6665932120293393,0.6665932120293393,0.0386375153737164,0.0386375153737164,-0.33671579265544244,-0.4069597543157307,-0.407817337850833,-0.430609851197606,-0.057178966746239734,-0.3319294653456237,-0.41636723953298027,-0.40532926596150104,-0.43233515891263835,-0.10514280795168433,7.383993304540397,7.383993304540397,8.275769627987017,8.275769627987017,11.272709108619296,11.272709108619296,14.335929041308134,14.335929041308134,5.030904969553845,5.030904969553845,7.35815598960167,8.451450525653527,8.466100055225084,8.86700007516761,5.067688846199317,7.291305006264736,8.613874952152472,8.423684823223923,8.898253970230385,5.228957181639672,216.69268367589274,216.69268367589274,0.0,240.7696485287697,0.0,216.69268367589274,240.7696485287697,0,0
+2017/01/17 20:00:00,209.4143577845825,0,1016.8106767884216,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.02867167249219804,27.097742475311204,0,0,26.76139160574715,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,515.3917127113609,0.0,1077.1272726223667,0.0,1364.559683895528,0.0,1149.5183469742735,0.0,0.0,0.0,449.84003768388624,0.0,949.9427051433984,0.0,1119.5942394742092,0.0,941.0757120953351,0.0,0.0,0,0,0,0,0,0,0,0,0.054135753590662604,0.0017128175078754747,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.35542615709140896,-0.35542615709140896,-0.4068396265867009,-0.4068396265867009,-0.5830150638135495,-0.5830150638135495,0.6395887015278705,0.6395887015278705,-0.02197789569934208,-0.02197789569934208,-0.3499852650481709,-0.40713663649452936,-0.4100568751451536,-0.42948489988932137,-0.06271001553780373,-0.3530433137153672,-0.4161743048399775,-0.40790364250531647,-0.43084052311335896,-0.1263213179677718,7.62882427630116,7.62882427630116,8.449400977988901,8.449400977988901,12.12306997077107,12.12306997077107,13.587807988286883,13.587807988286883,5.009999135962133,5.009999135962133,7.5485802893421265,8.454469508599203,8.504505095779763,8.846690442657518,5.081420020082007,7.593526342109726,8.610505762050508,8.467576084367664,8.871171288853361,5.330554097101256,209.4143577845825,209.4143577845825,0.0,232.6826197606472,0.0,209.4143577845825,232.6826197606472,0,0
+2017/01/17 21:00:00,211.58681308719494,0,1009.7749196469207,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.05669808556492001,24.05538273577946,0,0,55.21598697679031,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1653.7409879283662,0.0,1871.2376949168672,0.0,2516.4592667965526,0.0,1930.0713337170457,0.0,0.0,0.0,1289.6231925848394,0.0,1577.277078159097,0.0,2017.84432623472,0.0,1553.5614468400731,0.0,0.0,0,0,0,0,0,0,0,0,0.05376116466901688,0.0017009657755046213,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.41474537448289983,-0.41474537448289983,-0.44232653242621817,-0.44232653242621817,-0.5397200255323756,-0.5397200255323756,0.5290992618739847,0.5290992618739847,-0.08188571185521926,-0.08188571185521926,-0.3710782960296666,-0.41956649124831774,-0.42409758429284455,-0.4395524307332655,-0.09413213669408614,-0.3791944157787368,-0.42811056438704453,-0.4217423627537149,-0.44036055464760254,-0.15610619144551244,8.58560222564364,8.58560222564364,9.081761336919953,9.081761336919953,11.095927177318686,11.095927177318686,10.856367855374032,10.856367855374032,5.138844092553242,5.138844092553242,7.866695196957409,8.669975618515068,8.750181832398667,9.03038048505293,5.183496867360773,7.99415000992083,8.821952198485889,8.708381468811424,9.045314109193129,5.504998078950749,211.58681308719494,211.58681308719494,0.0,235.09645898577216,0.0,211.58681308719494,235.09645898577216,0,0
+2017/01/17 22:00:00,198.25706350217007,0,996.1485119556148,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.0767027633049291,26.284423288245574,0,0,77.0799317980286,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1096.1129861931663,0.0,2487.36397539288,0.0,1906.8036412966303,0.0,2541.0806194688294,0.0,581.4315027276316,0.0,943.4200279921854,0.0,2320.8956994790833,0.0,1603.2546169026582,0.0,2298.268460503735,0.0,300.7875288045565,0,0,0,0,0,0,0,0,0.053035684630360735,0.0016780120927828435,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46492766803449465,-0.46492766803449465,-0.42645133372270005,-0.42645133372270005,-0.5625322483161752,-0.5625322483161752,0.45916760386882727,0.45916760386882727,-0.1697124153778003,-0.1697124153778003,-0.38775202091932476,-0.4412269219714006,-0.4388014048753639,-0.46016869438060637,-0.18324369128763296,-0.4005898561892224,-0.4538474404874241,-0.4407847696465241,-0.4646956748505376,-0.22771079019464838,9.512704512752308,9.512704512752308,8.792193807469971,8.792193807469971,11.626998655759493,11.626998655759493,9.400787982076437,9.400787982076437,5.596980959581174,5.596980959581174,8.131582813633997,9.061355206300533,9.01652715518378,9.420136324370475,5.696115121942782,8.343623190681555,9.298687640199205,9.053164569409248,9.508169327747865,6.07579324725566,198.25706350217007,198.25706350217007,0.0,220.28562611352228,0.0,198.25706350217007,220.28562611352228,0,0
+2017/01/17 23:00:00,140.06104308128874,0,845.2370069691375,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.10406957599862544,20.77204069751388,0,0,104.2030842433126,581.3273364193765,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1295.4089252606773,0.0,3073.4682792206313,0.0,2038.9628221314283,0.0,3117.934267482604,0.0,102.06993288504484,0.0,1230.7378172707377,0.0,2976.3896028455265,0.0,1847.6238568567837,0.0,2939.720304884964,0.0,45.05056570915741,0,0,0,0,0,0,0,0,0.04500104432372286,0.0014238016740871114,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5792637809685495,-0.5792637809685495,-0.5280316231972442,-0.5280316231972442,-0.6471309964396076,-0.6471309964396076,0.2702143316533244,0.2702143316533244,-0.40455627109161596,-0.40455627109161596,-0.41204894967095734,-0.4717998102972268,-0.4624915288602115,-0.4898088039780671,-0.24314072371663137,-0.43132704476861605,-0.4902863385282454,-0.47012291112200394,-0.5002250472181979,-0.27711012948964203,12.030856486937537,12.030856486937537,10.83255667193734,10.83255667193734,13.793574928701972,13.793574928701972,6.516215505288784,6.516215505288784,8.410561206656908,8.410561206656908,8.538847011628434,9.648098337025289,9.465196598926255,10.012569508301922,6.2269009195756695,8.879976493756388,10.022424467362214,9.614872622851308,10.229766728523245,6.594836373323773,140.06104308128874,140.06104308128874,0.0,155.62338120143193,0.0,140.06104308128874,155.62338120143193,0,0
+2017/01/18 00:00:00,90.84203726090958,0,714.5947149416997,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.14664176018880573,11.752439239428211,0,0,143.42380432571025,517.9353818471734,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,378.7589708717799,0.0,0.0,0.0,0.0,0.0,1955.034311812042,0.0,4051.8138152263145,0.0,2608.4337093590702,0.0,4057.643660160897,0.0,13.005645396154828,0.0,1814.5856191418438,0.0,3877.629916891414,0.0,2375.624949719167,0.0,3859.80414924652,0.0,6.5020733323688065,0,0,0,0,0,0,0,0,0.038045551928565416,0.0012037347430824742,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6992086836601833,-0.6992086836601833,-0.6806038496837753,-0.6806038496837753,-0.7588809272800546,-0.7588809272800546,0.00481933846567863,0.00481933846567863,-0.45395193154893787,-0.45395193154893787,-0.44454582672868925,-0.5111812532978931,-0.4948703696341892,-0.5286154694168188,-0.28073141579614863,-0.46838762462837946,-0.5357947771434632,-0.5062467894209013,-0.5431190043877492,-0.3140810112472228,15.281589230977033,15.281589230977033,14.736519705599122,14.736519705599122,17.13045473742747,17.13045473742747,5.000480790795919,5.000480790795919,9.30068122126113,9.30068122126113,9.12310441297005,10.46328239892975,10.117526829907774,10.845571881373289,6.636926470426118,9.580617634808206,11.006821077408802,10.357469173951941,11.173625837256267,7.050582371983566,90.84203726090958,90.84203726090958,0.0,100.9355969565662,0.0,90.84203726090958,100.9355969565662,0,0
+2017/01/18 01:00:00,39.34655802418778,0,568.9028107133871,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5785358632197565e-09,9.549237025186056,0,0,0.0,515.667281944571,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03028880703248531,0.0009583167414677095,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6265787939376833,-0.6265787939376833,-0.6334803455421305,-0.6334803455421305,-0.6994962295112434,-0.6994962295112434,-0.0004520615984751095,-0.0004520615984751095,-0.11495313462797904,-0.11495313462797904,-0.603671672530657,-0.7743425473551522,-0.7273021870564594,-0.7594112468552703,-0.05010181251050533,-0.6471552687545371,-0.7223399395842386,-0.6886793655231751,-0.7256558476421466,-0.15471592186583297,13.23867372690519,13.23867372690519,13.42296956394354,13.42296956394354,15.290130867407726,15.290130867407726,5.00000423034777,5.00000423034777,5.273702201307984,5.273702201307984,12.641787655495222,17.634414849571414,16.13295800769602,17.14757103514603,5.0519680733575285,13.794241101600264,15.980105672478189,14.971272230524576,16.08212830852277,5.496033830651143,39.34655802418778,39.34655802418778,0.0,43.71839780465309,0.0,39.34655802418778,43.71839780465309,0,0
+2017/01/18 02:00:00,23.724890094807805,0,42.908039965359855,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5277946711300153,0,0,0.0,7.417687452815716,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0022844558300270145,7.227859006498367e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6534781945410472,-0.6534781945410472,-0.6701304104207918,-0.6701304104207918,-0.7370052739671424,-0.7370052739671424,-0.0762308720975693,-0.0762308720975693,0.006430210330684277,0.006430210330684277,-0.6698502243812365,-0.8062588421861564,-0.7933105250988145,-0.8248904897522488,0.02824735004923138,-0.7273417556961006,-0.8197595575212577,-0.8000195607837379,-0.8367345684310016,-0.13859128147578292,13.968648730538547,13.968648730538547,14.436262425102669,14.436262425102669,16.43490177347465,16.43490177347465,5.120324927432762,5.120324927432762,5.000855917685129,5.000855917685129,14.428295131835768,18.706868974430634,18.26656950334413,19.352844498539028,5.016517785450162,16.13418109928969,19.17349267100785,18.4938204095415,19.77107142839995,5.397945110169516,23.724890094807805,23.724890094807805,0.0,26.360988994230894,0.0,23.724890094807805,26.360988994230894,0,0
+2017/01/18 03:00:00,28.394252578530647,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5748894920577533,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6683989043074672,-0.6683989043074672,-0.6913629702007209,-0.6913629702007209,-0.7543249647698873,-0.7543249647698873,-0.12499047201952429,-0.12499047201952429,0.07794841098171221,0.07794841098171221,-0.7306167836465264,-0.8579736110918618,-0.8537093549960073,-0.8848377924791271,0.05296987735086029,-0.7940148343396535,-0.8901488426107238,-0.8726361222050057,-0.9091427597706695,-0.13600668205923258,14.387080195084692,14.387080195084692,15.049907826654305,15.049907826654305,16.983904566319012,16.983904566319012,5.323620973780905,5.323620973780905,5.125809517031797,5.125809517031797,16.235647665503933,20.535713341273677,20.380687294425115,21.529629749423677,5.058088936576723,18.29033653495732,21.72963772717108,21.07450889356906,22.45433119708619,5.383228945598418,28.394252578530647,28.394252578530647,0.0,31.54916953170072,0.0,28.394252578530647,31.54916953170072,0,0
+2017/01/18 04:00:00,23.721929452268128,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248340285903329,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6870209558077771,-0.6870209558077771,-0.7141163978108607,-0.7141163978108607,-0.7746561224694214,-0.7746561224694214,-0.17413402089870855,-0.17413402089870855,0.11373608769517216,0.11373608769517216,-0.7655676560045233,-0.8870779271743868,-0.8898947606268431,-0.9186158238989482,0.07700457170989404,-0.8459294991513344,-0.9420074284966519,-0.9278031628459326,-0.9627252100667186,-0.1289133326204092,14.922832748369743,14.922832748369743,15.729129427135234,15.729129427135234,17.644741102628544,17.644741102628544,5.628534522234688,5.628534522234688,5.267934030624815,5.267934030624815,17.347151433037652,21.6138499468977,21.72004303282793,22.82122697875488,5.122780429603381,20.09979892853633,23.742606627261907,23.180503533270112,24.5767828563761,5.344268731504968,23.721929452268128,23.721929452268128,0.0,26.35769939140903,0.0,23.721929452268128,26.35769939140903,0,0
+2017/01/18 05:00:00,42.502732733253644,0,479.8947605155329,0,0,0,0.0,0.012815671776275295,4.633261998087618,9.319298099999997,25.555573451546493,0,1.4240680189305777,1.0327042289428066,0.5250112639698659,0,0,391.16887923417255,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7512101638594038,2413.1827243002085,1.3792545257122777,1885.8184609811651,1.8437456098874592,3080.807447597931,1.4733880596634208,1992.353969475883,0.0,0.0,1.8512194867685787,2392.6393422841893,1.2775229920695048,1739.7244081553727,1.8099243634945714,2791.7052338324966,1.4294065748200797,1793.765521607649,0.0,0.0,0,0,0,0,0,0,0,0,0.025549952511095382,0.0008083826876650204,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.685960543951229,-0.685960543951229,-0.7174623539909929,-0.7174623539909929,-0.7704948700429268,-0.7704948700429268,-0.20206251284865273,-0.20206251284865273,0.25422677792462184,0.25422677792462184,-0.5846430886450695,-0.6428237338820215,-0.6378899600134751,-0.6571436850800207,0.11575189625154975,-0.6252155403508903,-0.6795021551753604,-0.6612319029255065,-0.6878531382509276,-0.13236616527391235,14.89192213991332,14.89192213991332,15.830894026730277,15.830894026730277,17.508049258484064,17.508049258484064,5.84670041046958,5.84670041046958,6.341641285346071,6.341641285346071,12.163279847117153,13.67576318066645,13.541803756489799,14.070548804293466,5.2775213638994956,13.20251445541345,14.704712445065766,14.18488743491642,14.94712459903738,5.362972004319488,42.502732733253644,42.502732733253644,0.0,47.22525859250405,0.0,42.502732733253644,47.22525859250405,0,0
+2017/01/18 06:00:00,73.31109446198407,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5250514320282017,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49554514403044464,-0.49554514403044464,-0.5358811891941277,-0.5358811891941277,-0.5814178610729243,-0.5814178610729243,-0.04193539433835551,-0.04193539433835551,0.5788565679839764,0.5788565679839764,-0.7544673501909913,-0.8139974174580585,-0.8097832247729412,-0.8331323935457409,0.2317758486496197,-0.7525785299155581,-0.8180068416425795,-0.7993804155844632,-0.8282392232627979,-0.026405987562960673,10.131602629042504,10.131602629042504,11.008775511304236,11.008775511304236,12.083733122788246,12.083733122788246,5.036406302686842,5.036406302686842,12.020883176236055,12.020883176236055,16.988471189241395,18.97339688562637,18.82794060040419,19.643253107301774,6.114633599526371,16.927963038928127,19.11248005767365,18.47208891035551,19.47049571759672,5.014434417542574,73.31109446198407,73.31109446198407,0.0,81.45677162442674,0.0,73.31109446198407,81.45677162442674,0,0
+2017/01/18 07:00:00,99.37711436625075,0,720.732504587225,0,0,0,0.00507456707470323,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.0013713645311230938,2.520244217156658e-09,0.5249647837316842,0,0,0.0,490.04521325568805,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,16.631492458786404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03837233239559489,0.0012140738492745112,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.34181344815510445,-0.34181344815510445,-0.3837208921393194,-0.3837208921393194,-0.4219748504892422,-0.4219748504892422,0.08762696896530632,0.08762696896530632,0.8296748492241041,0.8296748492241041,-0.7307378642747558,-0.8185426977139321,-0.8190405839371961,-0.8457150138024899,0.33742413307684926,-0.7611925345831801,-0.8410513605745245,-0.8232318736806815,-0.8554462281160169,0.10038449122060802,7.430425082599683,7.430425082599683,8.066454405028423,8.066454405028423,8.712497066744575,8.712497066744575,5.159003086810344,5.159003086810344,19.521077675826618,19.521077675826618,16.239407811696623,19.131119667188287,19.148449332682503,20.09209070528776,7.368132053592404,17.205150888462484,19.924961439979114,19.294746559234866,20.443739844906005,5.208693791517106,99.37711436625075,99.37711436625075,0.0,110.41901596250084,0.0,99.37711436625075,110.41901596250084,0,0
+2017/01/18 08:00:00,164.45617247750604,0,913.8776024558983,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.18126187364892005,27.088116252269742,0,0,53.38637023439036,594.3135883774271,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,120.87119193731692,0.0,0.0,0.0,476.4596422591039,0.0,0.0,0.0,0.0,0.0,2451.1792435117895,0.0,4258.946207201351,0.0,3859.8726372748565,0.0,4278.212266253977,0.0,1908.6359550303464,0.0,3084.5574899090107,0.0,4097.545576725226,0.0,3575.1716532563432,0.0,4052.331998097412,0.0,2263.859881329749,0,0,0,0,0,0,0,0,0.048655520469984684,0.001539426751974827,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5509025886487992,-0.5509025886487992,-0.5612330261933715,-0.5612330261933715,-0.6001679716309637,-0.6001679716309637,-0.08219033284694101,-0.08219033284694101,0.4534333871550429,0.4534333871550429,-0.6228166133508439,-0.659943990976602,-0.6385721483493412,-0.6779508535580971,-0.0068217159639874575,-0.6225711211992033,-0.6891302957780008,-0.6519677702424329,-0.7002950354735694,-0.14590676224986068,11.353439966429036,11.353439966429036,11.596146710411602,11.596146710411602,12.5525004573078,12.5525004573078,5.139879346494283,5.139879346494283,9.290792551715683,9.290792551715683,13.139080534263044,14.148789186148278,13.56026330588574,14.660013504809157,5.000963316521862,13.13260316268439,14.984463735679,13.926828582680614,15.31387837182237,5.441104845825734,164.45617247750604,164.45617247750604,0.0,182.72908053056227,0.0,164.45617247750604,182.72908053056227,0,0
+2017/01/18 09:00:00,168.0691174902339,0,1009.3348945724255,0,0,0,0.0,0.0,14.793507351838642,0.0,83.2008179303116,0,39.380909295966944,0.1641652343512467,27.097742475311204,0,0,90.2663144148393,599.655407544689,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3310.3141711087424,0.0,4494.801577666438,0.0,4046.3436114007027,0.0,4534.509876504918,0.0,498.9111880404449,0.0,3265.605687678063,0.0,4376.4362905976795,0.0,3827.0989809481716,0.0,4344.978260803337,0.0,296.50281905887874,0,0,0,0,0,0,0,0,0.053737737408121246,0.0017002245533000316,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.581426642294869,-0.581426642294869,-0.6038730508672406,-0.6038730508672406,-0.6602172421852485,-0.6602172421852485,-0.12396823650823285,-0.12396823650823285,-0.09549365021520881,-0.09549365021520881,-0.5655604317100865,-0.6017590334998394,-0.5819918448449197,-0.6115080766662184,-0.2273906680764131,-0.5652846627346289,-0.6182746360329361,-0.5852623925281666,-0.6224945266660359,-0.28548209930436735,12.083949089259093,12.083949089259093,12.646935708314345,12.646935708314345,14.156442003487072,14.156442003487072,5.318345573812948,5.318345573812948,5.188845566586977,5.188845566586977,11.699191499203621,12.592980533345113,12.09785679004952,12.84341652331301,6.072764020581758,11.692600619904965,13.019662738795859,12.17860596170857,13.13058273209846,6.69298239846853,168.0691174902339,168.0691174902339,0.0,186.74346387803766,0.0,168.0691174902339,186.74346387803766,0,0
+2017/01/18 10:00:00,181.94249149724294,0,1095.383015282448,0,0,0,0.0,0.0,11.740274384584774,0.0,106.27511244621549,0,39.380909295966944,0.17729593902249396,20.936924228999008,0,0,123.07890635604566,599.655407544689,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2582.396514199162,0.0,4072.2413760092054,0.0,3370.9159279344303,0.0,4030.3694748208636,0.0,26.899144327208795,0.0,2346.0570824415554,0.0,3938.2466206894946,0.0,3118.9550759451363,0.0,3800.033252840707,0.0,14.651927892342231,0,0,0,0,0,0,0,0,0.0583190030911395,0.0018451726061051224,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5568877057491161,-0.5568877057491161,-0.5797241942668263,-0.5797241942668263,-0.624694170255462,-0.624694170255462,-0.05532284364837471,-0.05532284364837471,-0.21775533226056817,-0.21775533226056817,-0.5221623375748852,-0.5846539790638368,-0.5630069961437305,-0.5869769804596957,-0.26137635967402156,-0.5289668880556323,-0.5997521096338948,-0.5659773380003092,-0.5940955370512485,-0.30480400252978024,11.493492484896464,11.493492484896464,12.04214142660247,12.04214142660247,13.188706824810453,13.188706824810453,5.06336499956025,5.06336499956025,5.983598195053361,5.983598195053361,10.702537282551589,12.163549212087773,11.638290505290811,12.221124253522916,6.41838045043319,10.853412886776653,12.541938134661663,11.70916182345222,12.399014365511675,6.930793182690778,181.94249149724294,181.94249149724294,0.0,202.1583238858255,0.0,181.94249149724294,202.1583238858255,0,0
+2017/01/18 11:00:00,212.54449004168112,0,1143.2569859746725,0,0,0,0.0,0.0,17.146892480886187,0.0,133.89528835348938,0,39.380909295966944,0.17485723570363873,18.514567473180602,0,0,119.80843722839171,562.0739660832071,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1839.7459593853741,0.0,4266.783102035684,0.0,2625.640061356942,0.0,4233.027556212501,0.0,0.0,0.0,1561.3574937421095,0.0,4100.287906779671,0.0,2346.7397365515026,0.0,3983.700745504577,0.0,0.0,0,0,0,0,0,0,0,0,0.06086784875136278,0.0019258163061026017,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44729239347991034,-0.44729239347991034,-0.480262519700244,-0.480262519700244,-0.5652940553847569,-0.5652940553847569,0.033481381095991504,0.033481381095991504,-0.15107927489355405,-0.15107927489355405,-0.5168209825788401,-0.5849054639660766,-0.5592314665219691,-0.588726472942884,-0.2785007506591606,-0.5235917408935864,-0.5976595740789774,-0.5607129564994284,-0.5951533939404479,-0.31518562316054627,9.174563199810422,9.174563199810422,9.817626454623166,9.817626454623166,11.692825050010285,11.692825050010285,5.02320648809291,5.02320648809291,5.472966045252392,5.472966045252392,10.585508682606843,12.169770902564196,11.548759979166064,12.264639606061507,6.610934109539457,10.73406479350838,12.488904514633575,11.583817404719198,12.42563750939648,7.06508838808638,212.54449004168112,212.54449004168112,0.0,236.1605444907568,0.0,212.54449004168112,236.1605444907568,0,0
+2017/01/18 12:00:00,228.37438508541226,0,1192.8676753204934,0,0,0,0.0,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.13018371343105659,20.70353850460468,0,0,96.91543110123065,581.3421327873724,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2280.9967841347816,0.0,3455.654470662379,0.0,2978.5405804160496,0.0,3434.432078275114,0.0,0.0,0.0,1905.867430746847,0.0,3221.1371909573627,0.0,2601.8004834246913,0.0,3131.2451377307525,0.0,0.0,0,0,0,0,0,0,0,0,0.06350915859910262,0.0020093855085402497,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4296263301132838,-0.4296263301132838,-0.36699941370114164,-0.36699941370114164,-0.5226966961235266,-0.5226966961235266,0.15137212378645332,0.15137212378645332,-0.057083483277984855,-0.057083483277984855,-0.49629004086903017,-0.5636541464443595,-0.5390225542557718,-0.5692442124347078,-0.2671038033246549,-0.5011793618868123,-0.5719266546906231,-0.5368119938780644,-0.5720241964292958,-0.29805209116776643,8.849240808478555,8.849240808478555,7.80370142214467,7.80370142214467,10.714312965571168,10.714312965571168,5.474803235552571,5.474803235552571,5.067462934068345,5.067462934068345,10.147164022667212,11.653698681661467,11.080045289204406,11.787550206227976,6.4814072882319635,10.249900275670242,11.852261317974524,11.029848593397375,11.854620292012712,6.845898533268453,228.37438508541226,228.37438508541226,0.0,253.74931676156916,0.0,228.37438508541226,253.74931676156916,0,0
+2017/01/18 13:00:00,207.9431556232327,0,1116.1472135754568,0,0,0,0.0,0.0,16.965687027080573,0.0,129.49988082968767,0,39.380909295966944,0.08951169392532943,18.575191574117916,0,0,74.96216536091593,562.0652892951952,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2565.4515816599805,0.0,2482.9388855214584,0.0,3282.0205345761024,0.0,2490.143843409619,0.0,0.0,0.0,2181.877580988312,0.0,2175.9008567966102,0.0,2816.939787655615,0.0,2132.932410648077,0.0,0.0,0,0,0,0,0,0,0,0,0.0594245043884394,0.0018801498965537202,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.38988854836924985,-0.38988854836924985,-0.26222015599991494,-0.26222015599991494,-0.38266041506410314,-0.38266041506410314,0.24595468552330452,0.24595468552330452,-0.010814311809999451,-0.010814311809999451,-0.4597182679318699,-0.5242136878813243,-0.5081443404314926,-0.5350794663898814,-0.22342606308274635,-0.45661775420602996,-0.526151035684834,-0.5018520855770574,-0.5330601386578339,-0.27179897317161655,8.166382804083028,8.166382804083028,6.427579144434333,6.427579144434333,8.04943624373881,8.04943624373881,6.255536217562195,6.255536217562195,5.002420922530405,5.002420922530405,9.411425472915496,10.747810324347327,10.398035126783043,10.990654879240509,6.035604205957682,9.351701268007133,10.790734588255702,10.264116638675546,10.945137166786125,6.534105082764512,207.9431556232327,207.9431556232327,0.0,231.04795069248078,0.0,207.9431556232327,231.04795069248078,0,0
+2017/01/18 14:00:00,205.8568598230325,0,1080.2048503523213,0,0,0,0.0,0.0,17.42256904755241,0.0,129.2730206906943,0,39.380909295966944,0.09717796903728503,16.251207617327246,0,0,88.20922906023465,548.3662148852852,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2657.7491098099426,0.0,2885.717551368479,0.0,3272.8757019926343,0.0,2865.925902599384,0.0,196.95639494146178,0.0,2242.2051775965974,0.0,2561.88659471906,0.0,2781.151389972226,0.0,2491.682609446483,0.0,0.0,0,0,0,0,0,0,0,0,0.05751090634769161,0.0018196049884323274,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4196914384193452,-0.4196914384193452,-0.35756793065847114,-0.35756793065847114,-0.4259217249720382,-0.4259217249720382,0.2553786218264665,0.2553786218264665,-0.027075185470227837,-0.027075185470227837,-0.4659935919484484,-0.5200748455880816,-0.5033874827757621,-0.5283581016567483,-0.2318549864326849,-0.47020907924111727,-0.5258597525248291,-0.5007930773299737,-0.5295759968162909,-0.2695698184247008,8.672175540482428,8.672175540482428,7.660757364471536,7.660757364471536,8.7827201181358,8.7827201181358,6.353859145853249,6.353859145853249,5.015175325441362,5.015175325441362,9.53357183095703,10.656653561587632,10.296636749293228,10.839832772001444,6.115396614939485,9.616576985129953,10.784270482731301,10.241745939426835,10.867016252350922,6.508969634506883,205.8568598230325,205.8568598230325,0.0,228.72984424781387,0.0,205.8568598230325,228.72984424781387,0,0
+2017/01/18 15:00:00,190.5932751033267,0,1089.4811325054986,0,0,0,0.0,0.0,18.05417691782298,0.0,115.5196477718057,0,39.380909295966944,0.16354410904602965,14.043021806230788,0,0,148.01759248055637,533.3244861306848,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2023.828052333167,0.0,3573.5635928598604,0.0,2596.6500312088588,0.0,3563.4463953839168,0.0,5.3555204707475195,0.0,1757.695648438999,0.0,3384.143362299411,0.0,2299.9105194785125,0.0,3313.8488415630677,0.0,0.0,0,0,0,0,0,0,0,0,0.0580047824805308,0.0018352308850152967,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4406788634350686,-0.4406788634350686,-0.3150004708402937,-0.3150004708402937,-0.4647000087641778,-0.4647000087641778,0.2452489698396174,0.2452489698396174,-0.08780618598973106,-0.08780618598973106,-0.4759578692645971,-0.5305018281317613,-0.5119833886285137,-0.5393287063546778,-0.25580877451708356,-0.48649792577918377,-0.5419132321032342,-0.5145298524826886,-0.5448663767321009,-0.28747791555707225,9.05120396032558,9.05120396032558,7.062653320555526,7.062653320555526,9.50825402924454,9.50825402924454,6.248323495006559,6.248323495006559,5.159654370124656,5.159654370124656,9.731008178053983,10.887723822022778,10.480582649597409,11.087013982384505,6.358436180658373,9.944513120551164,11.146005299391348,10.535688537591767,11.213764571820889,6.716816244718501,190.5932751033267,190.5932751033267,0.0,211.770305670363,0.0,190.5932751033267,211.770305670363,0,0
+2017/01/18 16:00:00,185.2848176629474,0,1102.0767872770286,0,0,0,0.0,0.0,19.4328608449896,0.0,108.75639138185811,0,39.380909295966944,0.18455097992787106,14.098129957750617,0,0,153.81174312839084,540.1259902543803,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1820.533947432495,0.0,4178.70270987998,0.0,2373.250387190827,0.0,4183.726843199919,0.0,0.0,0.0,1580.595188488421,0.0,4043.690136783117,0.0,2148.08142179048,0.0,3975.776152558731,0.0,0.0,0,0,0,0,0,0,0,0,0.05867538447025253,0.0018564482645219455,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48105453641589824,-0.48105453641589824,-0.3315131591731408,-0.3315131591731408,-0.4929285144643903,-0.4929285144643903,0.22841925859152235,0.22841925859152235,-0.12840759756266903,-0.12840759756266903,-0.49012804299950674,-0.5483151730038555,-0.5243109762084156,-0.5567377942510932,-0.2743299727445089,-0.5059790751850681,-0.563406278582939,-0.5301519048262879,-0.5657833751311369,-0.3058830861420207,9.833650494042757,9.833650494042757,7.28553639420322,7.28553639420322,10.07712944668934,10.07712944668934,6.08251256734097,6.08251256734097,5.341570896492982,5.341570896492982,10.019156605567517,11.293374877464416,10.749961989353338,11.489965573254665,6.562897912470035,10.351758494394389,11.647794982614371,10.879892913101003,11.704522258834146,6.944539648124689,185.2848176629474,185.2848176629474,0.0,205.8720196254971,0.0,185.2848176629474,205.8720196254971,0,0
+2017/01/18 17:00:00,210.47318715277248,0,1148.427082313196,0,0,0,0.0,0.0,21.771208972671015,0.0,131.64086955684016,0,39.380909295966944,0.18953648806450174,14.058687636775552,0,0,146.91173613262708,540.1407635174953,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2124.9462232066853,0.0,4231.454699388124,0.0,2694.399198993745,0.0,4249.158703956467,0.0,0.0,0.0,1842.341707319138,0.0,4063.100303422548,0.0,2438.8931892985424,0.0,3996.979915632208,0.0,0.0,0,0,0,0,0,0,0,0,0.061143108509950604,0.001934525332992441,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5027817946368909,-0.5027817946368909,-0.3202505805549893,-0.3202505805549893,-0.4704631901394339,-0.4704631901394339,0.24807208419849866,0.24807208419849866,-0.08746731459966976,-0.08746731459966976,-0.4932894252860506,-0.5487457743282804,-0.5279194717488908,-0.560158863279595,-0.27921420993415796,-0.509344400516427,-0.5650333647973286,-0.5356138606308496,-0.569092016941897,-0.3087085122779642,10.283795948736284,10.283795948736284,7.132264414250912,7.132264414250912,9.621605034965413,9.621605034965413,6.277302548236335,6.277302548236335,5.158424017379716,5.158424017379716,10.08462533345184,11.303350865442667,10.830058260597,11.570694407851391,6.619224718091942,10.42377044146697,11.686597470890547,11.002730226083841,11.783888006684592,6.980766179512614,210.47318715277248,210.47318715277248,0.0,233.85909683641387,0.0,210.47318715277248,233.85909683641387,0,0
+2017/01/18 18:00:00,234.31538592730934,0,1136.4472288666232,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.1505460617031542,18.527504722678263,0,0,113.00432939126857,562.0683168122811,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2184.563578101742,0.0,3307.9703048030105,0.0,2701.7088869418385,0.0,3302.2802514875293,0.0,0.0,0.0,2019.5802107141167,0.0,3200.6701088586674,0.0,2547.805822469902,0.0,3134.941427514137,0.0,0.0,0,0,0,0,0,0,0,0,0.060505292238897744,0.0019143452707709445,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4878914711914678,-0.4878914711914678,-0.29658182823206164,-0.29658182823206164,-0.4809788037701775,-0.4809788037701775,0.2985506970562461,0.2985506970562461,-0.0489365298635684,-0.0489365298635684,-0.48492408892121536,-0.5425822197809343,-0.5166950584828941,-0.550281533714523,-0.267809057396425,-0.5008864279323852,-0.5566960060373742,-0.5225656952943558,-0.5590577359161604,-0.29503355238722406,9.97310031689669,9.97310031689669,6.827667826447708,6.827667826447708,9.832117105115188,9.832117105115188,6.852101804516138,6.852101804516138,5.049578551695831,5.049578551695831,9.912328213545308,11.1613219712482,10.582764591774477,11.338996132157675,6.48926367296211,10.243715948191635,11.48898261128005,10.711424951019481,11.544655117967181,6.808568540639527,234.31538592730934,234.31538592730934,0.0,260.3504288081215,0.0,234.31538592730934,260.3504288081215,0,0
+2017/01/18 19:00:00,219.00308375639068,0,1105.5240027998666,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.09782416843398448,26.22878889143598,0,0,79.98436510464778,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2796.2875922832427,0.0,2536.156890062777,0.0,3296.7624419077406,0.0,2515.8650792745375,0.0,0.0,0.0,2577.9234887361713,0.0,2370.4824696221813,0.0,3053.8484224871836,0.0,2298.2774029367743,0.0,0.0,0,0,0,0,0,0,0,0,0.05885891677806393,0.0018622550988085262,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4817747579439884,-0.4817747579439884,-0.28023867220277643,-0.28023867220277643,-0.410235581786692,-0.410235581786692,0.3250121066182753,0.3250121066182753,-0.03886403460639376,-0.03886403460639376,-0.4691924989315784,-0.5197150307855287,-0.49925949410520254,-0.5274955208945513,-0.2462330253014592,-0.48340787750208397,-0.5317269037378668,-0.5038729860809412,-0.5345593667874144,-0.27077561101696074,9.848245471368315,9.848245471368315,6.631166818899942,6.631166818899942,8.507578927673052,8.507578927673052,7.196407489125377,7.196407489125377,5.031268428050581,5.031268428050581,9.596489917553399,10.648763774292462,10.209436130821999,10.820618776356653,6.258386726004289,9.881422844056075,10.915181478670661,10.306941038288784,10.978914416213456,6.522539885207934,219.00308375639068,219.00308375639068,0.0,243.33675972932298,0.0,219.00308375639068,243.33675972932298,0,0
+2017/01/18 20:00:00,210.63868902910258,0,1086.4527903107296,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.10901118286084555,27.0977424753112,0,0,96.40350512805514,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3074.3324053349297,0.0,2746.740671156607,0.0,3585.5458329640746,0.0,2718.4186925053828,0.0,0.0,0.0,2861.5735339456537,0.0,2560.330637150552,0.0,3313.9959600639095,0.0,2485.2040058457396,0.0,0.0,0,0,0,0,0,0,0,0,0.05784355129896804,0.0018301296428180553,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4930264893953891,-0.4930264893953891,-0.3258728191475082,-0.3258728191475082,-0.4044932213761553,-0.4044932213761553,0.300154133631725,0.300154133631725,-0.06756575901324754,-0.06756575901324754,-0.4663199150172515,-0.5114664367587548,-0.49523250837984467,-0.5189451225855025,-0.24214759771504601,-0.48045302910867743,-0.5236429011096132,-0.5006425904432438,-0.5262203098508298,-0.26633729003686585,10.079163767026984,10.079163767026984,7.208104830012957,7.208104830012957,8.409491900479225,8.409491900479225,6.872121768344542,6.872121768344542,5.094519842430444,5.094519842430444,9.53996996032211,10.46942997528285,10.125078601775812,10.63190054175162,6.216874134776646,9.821478358871204,10.7351948436269,10.238570957520935,10.792272449208511,6.472892244881535,210.63868902910258,210.63868902910258,0.0,234.04298781011397,0.0,210.63868902910258,234.04298781011397,0,0
+2017/01/18 21:00:00,212.15490800790033,0,1074.7692241689415,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.1291817701658947,24.121997071577127,0,0,120.21029149881086,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3197.0837325313714,0.0,2825.8633390299688,0.0,3706.632650904058,0.0,2794.9879834769235,0.0,0.0,0.0,2951.702672070544,0.0,2617.7427604212703,0.0,3400.3943806834145,0.0,2538.4598234083587,0.0,0.0,0,0,0,0,0,0,0,0,0.057221509583483925,0.0018104486765389814,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46771996401456223,-0.46771996401456223,-0.4699457916587869,-0.4699457916587869,-0.4556351084074725,-0.4556351084074725,0.2536124987557657,0.2536124987557657,-0.11844546597607471,-0.11844546597607471,-0.4693639654297235,-0.5107186653130917,-0.49790740112004367,-0.5175041775432587,-0.2446069982401785,-0.483379551450087,-0.5226741839713689,-0.5037311493827245,-0.5245452562028281,-0.26839707601101404,9.567472417136216,9.567472417136216,9.611370293441766,9.611370293441766,9.332859235172762,9.332859235172762,6.33514830529144,6.33514830529144,5.290595699553251,5.290595699553251,9.599874878589986,10.453318069842737,10.181034284540317,10.600408569966689,6.241780440032244,9.880846410058453,10.713816614920631,10.303929652450563,10.75514509448955,6.495830094262885,212.15490800790033,212.15490800790033,0.0,235.7276755643337,0.0,212.15490800790033,235.7276755643337,0,0
+2017/01/18 22:00:00,198.3987974388755,0,1025.4881549436109,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.10854344432471126,26.394316543931243,0,0,106.41957478602457,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2808.320785865383,0.0,3767.1617075818426,0.0,3290.374321832987,0.0,3733.617023312096,0.0,0.0,0.0,2545.3203161915417,0.0,3559.3894371237175,0.0,2985.321064569236,0.0,3478.155354343382,0.0,0.0,0,0,0,0,0,0,0,0,0.054597748955110804,0.0017274347191692815,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5450206562187472,-0.5450206562187472,-0.4433797487920588,-0.4433797487920588,-0.5551643032220807,-0.5551643032220807,0.18007914384214183,0.18007914384214183,-0.2024604952633274,-0.2024604952633274,-0.48333206410330537,-0.5299003589247403,-0.5121484832282867,-0.535688326955595,-0.2655938793075346,-0.5003928694721537,-0.544820185999375,-0.5209368115591048,-0.5454941650397228,-0.291041812299562,11.217314869104271,11.217314869104271,9.101355233070933,9.101355233070933,11.453005428257939,11.453005428257939,5.672246082305676,5.672246082305676,5.850044869644449,5.850044869644449,9.87988012217329,10.874266860826054,10.4841468209912,11.004413873415928,6.464657479001772,10.233304487940657,11.212701826012676,10.675576983051315,11.22821774972725,6.759794213659163,198.3987974388755,198.3987974388755,0.0,220.4431082654172,0.0,198.3987974388755,220.4431082654172,0,0
+2017/01/18 23:00:00,140.1463176027555,0,981.662466578813,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.2739997628592008,20.687385032120048,0,0,240.6107145820617,581.3451656903028,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2944.962175386874,0.0,4428.411415815891,0.0,3140.2767263811156,0.0,4403.744343392141,0.0,0.0,0.0,2698.713342553273,0.0,4285.376218728612,0.0,3185.7809509070103,0.0,4204.337391468255,0.0,0.0,0,0,0,0,0,0,0,0,0.05226443684458942,0.0016536103504450929,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6844535268184676,-0.6844535268184676,-0.6173620414490625,-0.6173620414490625,-0.6871011372061092,-0.6871011372061092,-0.04967879094720392,-0.04967879094720392,-0.4379818774433308,-0.4379818774433308,-0.5076315144008909,-0.5615346042631875,-0.5741618964294795,-0.5663282722655137,-0.29485432778360193,-0.530102192580018,-0.580384540151211,-0.54918507155251,-0.580244090682008,-0.32321866197080007,14.84807679823983,14.84807679823983,12.995776783413248,12.995776783413248,14.92517198298539,14.92517198298539,5.051094123765708,5.051094123765708,9.00143790485717,9.00143790485717,10.387056551854343,11.603301602462693,11.906422616536503,11.71756026891326,6.806364195543807,10.878780836385218,12.058342861445823,11.313536598183319,12.05489538174524,7.172134957550682,140.1463176027555,140.1463176027555,0.0,155.7181306697283,0.0,140.1463176027555,155.7181306697283,0,0
+2017/01/19 00:00:00,91.12470123615725,0,830.7889895451285,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.3553371336318078,11.82640784123286,0,0,248.83038345204776,528.7230773242648,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,811.1236430774482,0.0,125.12956875832064,0.0,1120.0929125654939,0.0,0.0,0.0,0.0,0.0,2943.366788560426,0.0,5065.9672373912235,0.0,3497.9443625084523,0.0,5042.463560820618,0.0,0.0,0.0,2832.3186867112727,0.0,4972.955173017778,0.0,3325.647979947793,0.0,4890.634313009665,0.0,4038.7024745686635,0,0,0,0,0,0,0,0,0.04423182117432579,0.0013994639898329538,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7818898691135697,-0.7818898691135697,-0.7433173892873948,-0.7433173892873948,-0.7820752873191613,-0.7820752873191613,-0.26851087017021236,-0.26851087017021236,-0.5248932307881782,-0.5248932307881782,-0.530988923656312,-0.5873120493503046,-0.5674396352683865,-0.5913841523749492,-0.3208218055643626,-0.5558750813646541,-0.6094547997351414,-0.5741678418730137,-0.6087303266203202,-0.35419120501556434,17.884115845635804,17.884115845635804,16.633494870983668,16.633494870983668,17.890280859590646,17.890280859590646,6.497102518987603,6.497102518987603,10.76284791268968,10.76284791268968,10.898633325668172,12.229448181846664,11.7441922945265,12.330998563917305,7.139908722940248,11.469687789690141,12.79032850388279,11.90656696737534,12.771640729019751,7.610500316580158,91.12470123615725,91.12470123615725,0.0,101.24966804017473,0.0,91.12470123615725,101.24966804017473,0,0
+2017/01/19 01:00:00,39.36356111361655,0,557.9853797735955,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5785323009649638e-09,9.566240114614828,0,0,0.0,504.74985100477943,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029707554922636926,0.0009399263298782495,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7346694817598759,-0.7346694817598759,-0.6989675391287792,-0.6989675391287792,-0.7412788505680172,-0.7412788505680172,-0.24723045696119741,-0.24723045696119741,-0.17457242594610292,-0.17457242594610292,-0.7821249214962421,-0.827333951945794,-0.8014287067481206,-0.8295980108775395,-0.10315256287376841,-0.756101764244757,-0.8174980709329097,-0.7817435378386788,-0.8157671492667187,-0.20945199280318877,16.361846146787087,16.361846146787087,15.274428711908143,15.274428711908143,16.569171023955334,16.569171023955334,6.268628269310412,6.268628269310412,5.631707523929151,5.631707523929151,17.891931406189087,19.438644375320507,18.541793675637848,19.518368212676847,5.220367319293061,17.040952681919578,19.094793787219785,17.87925147452964,19.03470377475415,5.909878981440187,39.36356111361655,39.36356111361655,0.0,43.73729012624061,0.0,39.36356111361655,43.73729012624061,0,0
+2017/01/19 02:00:00,23.722184844317816,0,45.26742646783964,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250894206400257,0,0,0.0,9.777073955295512,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.00241007131503235,7.625297644933648e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7944523698073401,-0.7944523698073401,-0.7617853154410963,-0.7617853154410963,-0.802687628740076,-0.802687628740076,-0.3241406745735344,-0.3241406745735344,-0.04096257954014727,-0.04096257954014727,-0.8559487158861067,-0.927591711306463,-0.9036776264640254,-0.9364626201053171,-0.03284659711504705,-0.8876193428677004,-0.9601297909640214,-0.9230376773482446,-0.9589667845870867,-0.21104679135832982,18.305111830234083,18.305111830234083,17.22434251154401,17.22434251154401,18.584723722294626,18.584723722294626,7.184596469583653,7.184596469583653,5.034736666421637,5.034736666421637,20.462004675888537,23.17219656814926,22.244313352095347,23.52222734146315,5.02233482946059,21.634235842192368,24.471357651674637,22.993723752861982,24.42420216554497,5.923814020683977,23.722184844317816,23.722184844317816,0.0,26.35798316035313,0.0,23.722184844317816,26.35798316035313,0,0
+2017/01/19 03:00:00,28.344362650368677,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5249995638957808,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8028744558378279,-0.8028744558378279,-0.773985547606912,-0.773985547606912,-0.8124873085811845,-0.8124873085811845,-0.35041619323548745,-0.35041619323548745,0.03455483630003082,0.03455483630003082,-0.8992278880894378,-0.976522289264355,-0.9548057932910353,-0.9863792194121827,-0.009171849268856098,-0.9509483292382749,-1.0283610761353068,-0.9932854637818546,-1.0272597865509763,-0.2035910825312797,18.59110035692801,18.59110035692801,17.622663692013717,17.622663692013717,18.921188171398,18.921188171398,7.554889832318452,7.554889832318452,5.024718482014833,5.024718482014833,22.074210167295092,25.141621946193013,24.255923987929407,25.549666804557987,5.001741390996102,24.100528563162996,27.32894381215725,25.837785168344723,27.281425866043435,5.8595819466934245,28.344362650368677,28.344362650368677,0.0,31.493736278187416,0.0,28.344362650368677,31.493736278187416,0,0
+2017/01/19 04:00:00,23.722183925173166,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250885014953734,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8522506019184641,-0.8522506019184641,-0.8285568554784761,-0.8285568554784761,-0.8629758044417859,-0.8629758044417859,-0.42489217731283385,-0.42489217731283385,0.09521618036149881,0.09521618036149881,-0.9676280951908215,-1.0436153097864678,-1.026437613965139,-1.0538785332480312,0.021415957503620735,-1.0312939440716233,-1.107293462063552,-1.0760530816292093,-1.1058683617471272,-0.20980949735916776,20.32782793933673,20.32782793933673,19.481679531008893,19.481679531008893,20.71852755853115,20.71852755853115,8.764337913488106,8.764337913488106,5.187749286191348,5.187749286191348,24.77665438067757,27.991714326757105,27.245980379362877,28.442406231600714,5.009494339886743,27.45570833063914,30.848226962613538,29.42904835264038,30.782761466850403,5.912993527897484,23.722183925173166,23.722183925173166,0.0,26.357982139081294,0.0,23.722183925173166,26.357982139081294,0,0
+2017/01/19 05:00:00,42.905503855352286,0,406.37527359043725,0,0,0,0.0,0.015355874327160223,4.633261998087618,9.319298099999997,25.555573451546493,0,1.6637263596744685,1.1932425297893823,0.5250455419271729,0,0,317.649392309077,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.8282936708731,0.0,0.0,0.0,63.89895422457233,0.0,0.0,0.0,0.0,2.271777619323501,3320.4325031149474,1.521273809218826,2358.7755294606395,2.022323888780363,3703.6093917720978,1.839902533400732,2388.0519754946454,0.0,0.0,2.527878545274774,3279.755229620289,1.4390326680186831,2277.1069304157577,2.1050572730882777,3557.615192757853,1.6286279900550653,2258.263199634938,0.0,0.0,0,0,0,0,0,0,0,0,0.021635720570829197,0.0006845391175197313,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8229178383146523,-0.8229178383146523,-0.8064284110552158,-0.8064284110552158,-0.8283896671890995,-0.8283896671890995,-0.41672545120483623,-0.41672545120483623,0.2285396502432922,0.2285396502432922,-0.6817210140161873,-0.7209862078922945,-0.7076456230741057,-0.7255003529770495,0.052737623724696044,-0.7227924504041902,-0.7663928646033872,-0.7421840385827009,-0.7655714088918916,-0.2012065070450623,19.283759549511416,19.283759549511416,18.712682093123433,18.712682093123433,19.475792312909405,19.475792312909405,8.620134580863564,8.620134580863564,6.083656489253315,6.083656489253315,14.768827212248567,15.938590580024808,15.533694782062966,16.077333533917738,5.057580592361745,15.994000479736272,17.37402633507986,16.597711232314367,17.347273589034472,5.839529386074261,42.905503855352286,42.905503855352286,0.0,47.67278206150254,0.0,42.905503855352286,47.67278206150254,0,0
+2017/01/19 06:00:00,75.95194241311498,0,314.022343626251,0,0,0,0.043927741231002654,0.012688560549703482,5.555297838843742,9.319298099999997,57.911447091112116,0,1.4994741696272802,1.0321428015444578,0.5776661102066547,0,0,101.08022855098619,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,138.91798617772182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7892994135437448,2317.667806328323,1.3358843642442935,1708.5737455388244,1.9511870854357767,2675.2027062312764,1.1019460020191332,1738.3892367861804,0.0,0.0,1.733595807985921,2546.8879062384685,1.2428585593061712,1814.3927922176508,2.077310642485827,2816.562947877041,1.4564786746826144,1797.775127600913,0.0,0.0,0,0,0,0,0,0,0,0,0.016718782173105004,0.0005289706140045279,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6359796647514725,-0.6359796647514725,-0.6252120912875712,-0.6252120912875712,-0.6444198807065463,-0.6444198807065463,-0.24877594553382915,-0.24877594553382915,0.5516586315249021,0.5516586315249021,-0.6335780636895036,-0.6642465379202189,-0.6532982930434351,-0.667384501576894,0.15503422915436635,-0.6467282277777345,-0.680798559541954,-0.6600755866722723,-0.679817110728717,-0.09481300925026435,13.490219878637603,13.490219878637603,13.202423073881405,13.202423073881405,13.719326984183382,13.719326984183382,6.28457979404584,6.28457979404584,11.371045772565566,11.371045772565566,13.425593820292704,14.269664099828262,13.963662487588252,14.358327094163243,5.498079120353694,13.782524352611787,14.742146675732826,14.152474320724323,14.71380023539949,5.186162055699313,75.95194241311498,75.95194241311498,0.0,84.3910471256833,0.0,75.95194241311498,84.3910471256833,0,0
+2017/01/19 07:00:00,101.81560472936457,0,795.349599408084,0,0,0,0.0,0.007934657946387006,11.110595677687485,13.929299233552332,73.80580873715317,0,1.534402294148346,0.902550411205682,0.5250137176711632,0,0,72.67969711643896,491.98261096010816,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2050017765612513,1880.8017526099097,1.3860480996296092,1400.2559723361742,1.3467560263949658,2180.3186992633114,0.0,1421.9208849555353,0.0,0.0,1.274193563376381,1894.7555557211701,0.0,1365.759429604897,1.5000368432941587,2108.428556792169,1.2226216371306386,1347.5000059251524,0.0,0.0,0,0,0,0,0,0,0,0,0.04234500179323701,0.0013397663398369067,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5126743728425537,-0.5126743728425537,-0.507213278864459,-0.507213278864459,-0.5228728143481997,-0.5228728143481997,-0.14635539402498954,-0.14635539402498954,0.8043862227395223,0.8043862227395223,-0.6154649661733474,-0.6439395778971059,-0.6336337202128822,-0.6468240973600814,0.2078711133497397,-0.6231947254857143,-0.655059227190428,-0.6352076126933921,-0.6539259944242082,0.020887468491450692,10.495507931934156,10.495507931934156,10.378111387448826,10.378111387448826,10.718196798506781,10.718196798506781,5.443824168859024,5.443824168859024,18.64275306546847,18.64275306546847,12.946239005541315,13.706206408761062,13.427088681602541,13.78515404383235,5.896170641010528,13.149062232970024,14.012529782505325,13.46941700049831,13.981066275135007,5.0090315223641255,101.81560472936457,101.81560472936457,0.0,113.12844969929395,0.0,101.81560472936457,113.12844969929395,0,0
+2017/01/19 08:00:00,164.44106518690714,0,911.0230954615741,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.19581738106322685,27.058453454256533,0,0,51.98454517099512,592.8609064464981,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,386.6764490375367,0.0,57.15186362325389,0.0,578.8884675689678,0.0,0.0,0.0,0.0,0.0,3688.336937304491,0.0,4764.411506305278,0.0,4202.05619461889,0.0,4730.890712481476,0.0,2266.433888978499,0.0,3678.8776734302674,0.0,4707.788806685651,0.0,4132.043014723574,0.0,4614.844824019228,0.0,1733.5964842766027,0,0,0,0,0,0,0,0,0.0485035444032545,0.0015346183351595411,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6510386335827832,-0.6510386335827832,-0.642419368053227,-0.642419368053227,-0.6580273784431715,-0.6580273784431715,-0.29900458687834297,-0.29900458687834297,0.35806161135791365,0.35806161135791365,-0.5994957717706553,-0.6336879553052508,-0.6156269023265644,-0.6363669482980671,-0.14565637634423131,-0.6082851605462869,-0.646141892983126,-0.6190825951212605,-0.6449727175543504,-0.21486593260465364,13.901152067761274,13.901152067761274,13.664744321136922,13.664744321136922,14.095202450726717,14.095202450726717,6.8577578900571154,6.8577578900571154,7.668145660739228,7.668145660739228,12.535431244808805,13.428545494410514,12.950461500492665,13.500664939390262,5.439590807559782,12.760168974773237,13.766449930668557,13.04084016198189,13.734441376958685,5.9576177943986295,164.44106518690714,164.44106518690714,0.0,182.71229465211903,0.0,164.44106518690714,182.71229465211903,0,0
+2017/01/19 09:00:00,167.3583170745911,0,1019.3647220094157,0,0,0,0.0,0.0,14.059988445742029,0.0,83.2008179303116,0,39.380909295966944,0.1868837248050517,27.097742475311204,0,0,100.29614185182949,599.655407544689,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3501.3449724250336,0.0,4649.144940373942,0.0,4015.956894401419,0.0,4607.320539541272,0.0,170.98335192534867,0.0,3370.2466308191515,0.0,4531.821771590582,0.0,3836.743028258731,0.0,4420.153203199481,0.0,186.17397372646766,0,0,0,0,0,0,0,0,0.054271732850026656,0.0017171197968563906,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6608275707099973,-0.6608275707099973,-0.6510449267028909,-0.6510449267028909,-0.6666234650214995,-0.6666234650214995,-0.3012062081468832,-0.3012062081468832,-0.1618188243747941,-0.1618188243747941,-0.5845380205046994,-0.6248306507550968,-0.6017305278681669,-0.6262260494394166,-0.26839422743177227,-0.5940141009883189,-0.6387679304746933,-0.6064776078164492,-0.6355473113215213,-0.31585383645440146,14.17354686773922,14.17354686773922,13.901325851066801,13.901325851066801,14.336784876750244,14.336784876750244,6.885316669640559,6.885316669640559,5.542677644440445,5.542677644440445,12.16068134303147,13.192320147011046,12.592254321462775,13.229309712422975,6.495798248987612,12.396966872846008,13.565564763899218,12.713677415767464,13.478566966199693,7.073888603850023,167.3583170745911,167.3583170745911,0.0,185.95368563843456,0.0,167.3583170745911,185.95368563843456,0,0
+2017/01/19 10:00:00,183.16826449010767,0,1110.4482789436145,0,0,0,0.0,0.0,12.990833890274297,0.0,106.27511244621549,0,39.380909295966944,0.2103604576412556,20.879073197555442,0,0,138.14417001721176,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3077.738463047884,0.0,4356.384918210871,0.0,3556.984834482494,0.0,4312.307541607528,0.0,0.0,0.0,3005.357296758364,0.0,4270.569047181523,0.0,3438.4106768628726,0.0,4165.737441281683,0.0,0.0,0,0,0,0,0,0,0,0,0.059121088887401245,0.0018705500415989236,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6748223547541756,-0.6748223547541756,-0.6557679585244901,-0.6557679585244901,-0.6645826183109834,-0.6645826183109834,-0.2574469903359042,-0.2574469903359042,-0.2584260022715186,-0.2584260022715186,-0.5751171634201316,-0.6164199447888348,-0.5895777650552754,-0.6182763164555022,-0.2855145130774932,-0.58625887687905,-0.6300749904361594,-0.5957849142053782,-0.6282809359804337,-0.3267850967531852,14.570186220856527,14.570186220856527,14.032235558634483,14.032235558634483,14.279139641577316,14.279139641577316,6.37593886514135,6.37593886514135,6.386452518643367,6.386452518643367,11.929635443185845,12.971156563895235,12.285861945959553,13.019706754968936,6.69336813753182,12.203301219418876,13.331776272154784,12.441554166757243,13.283934954701238,7.220537252173983,183.16826449010767,183.16826449010767,0.0,203.52029387789742,0.0,183.16826449010767,203.52029387789742,0,0
+2017/01/19 11:00:00,212.47090720610592,0,1163.6888256506297,0,0,0,0.0,0.0,16.965687027080573,0.0,133.89528835348938,0,39.380909295966944,0.19084365312379722,18.60620367399095,0,0,140.21389081468536,562.1003521728705,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2482.232321664673,0.0,4924.750731642516,0.0,3184.0439422984764,0.0,4840.881917883718,0.0,0.0,0.0,2136.1422724677614,0.0,4702.078660284719,0.0,2864.8094796039713,0.0,4553.5720751036515,0.0,0.0,0,0,0,0,0,0,0,0,0.06195565502971062,0.001960233738486002,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5512857643201188,-0.5512857643201188,-0.5755720924767737,-0.5755720924767737,-0.5775649930084443,-0.5775649930084443,-0.15709762901820742,-0.15709762901820742,-0.18455331025989383,-0.18455331025989383,-0.5492227717798898,-0.6098411257914282,-0.580076932372525,-0.6077215248220195,-0.2985080869499559,-0.5528768759117656,-0.6202239296188112,-0.5829858116337961,-0.6137902005406063,-0.3328524053466855,11.362359798277112,11.362359798277112,11.940704059256106,11.940704059256106,11.989297997351628,11.989297997351628,5.5114399085324095,5.5114399085324095,5.706115437727149,5.706115437727149,11.314411121462186,12.800303091891891,12.05079342107804,12.745656643131255,6.8515712716785515,11.399466897051099,13.070803964352422,12.122348535764218,12.90263613832137,7.304120098294987,212.47090720610592,212.47090720610592,0.0,236.07878578456211,0.0,212.47090720610592,236.07878578456211,0,0
+2017/01/19 12:00:00,228.38786450277226,0,1212.581093774189,0,0,0,0.0,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.1627241361497407,20.684477499246025,0,0,116.61378868564852,581.3571936566506,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2787.071276427242,0.0,3933.038050201717,0.0,3529.1234291724827,0.0,3871.3255249128415,0.0,0.0,0.0,2272.788994926255,0.0,3620.254382573363,0.0,3079.2408454036467,0.0,3504.5648352465782,0.0,0.0,0,0,0,0,0,0,0,0,0.06455871559943785,0.0020425927604292766,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3971933441811148,-0.3971933441811148,-0.44782692343094443,-0.44782692343094443,-0.5264838240068765,-0.5264838240068765,-0.033006782200420595,-0.033006782200420595,-0.07691208507140714,-0.07691208507140714,-0.5195943468922583,-0.5838708335611451,-0.5565753534666102,-0.5848456154328623,-0.2830388003917197,-0.5168876584778824,-0.5884697049454023,-0.5544281749689381,-0.5862912371861569,-0.3117372419145394,8.286837980697953,8.286837980697953,9.184615688481657,9.184615688481657,10.798124264536426,10.798124264536426,5.022553214682276,5.022553214682276,5.12248559711152,5.12248559711152,10.646118750254189,12.144191916151058,11.486144989783611,12.16829001195039,6.664033634582751,10.586961936671116,12.258244665822701,11.435751175205766,12.204103907371433,7.019974581319886,228.38786450277226,228.38786450277226,0.0,253.76429389196917,0.0,228.38786450277226,253.76429389196917,0,0
+2017/01/19 13:00:00,207.90367078019372,0,1120.4875196985224,0,0,0,0.0,0.0,16.903073550514318,0.0,129.49988082968767,0,39.380909295966944,0.09702241737602312,18.590809484194487,0,0,79.27307346309782,562.0946873160785,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2894.322096730436,0.0,2696.8545329393305,0.0,3578.188608990359,0.0,2678.3257526123452,0.0,0.0,0.0,2388.455730554556,0.0,2351.941631753062,0.0,3095.3035590734276,0.0,2296.1427581519765,0.0,0.0,0,0,0,0,0,0,0,0,0.0596555855013251,0.0018874611418886007,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.395498324120217,-0.395498324120217,-0.3402102314225721,-0.3402102314225721,-0.49239246204138787,-0.49239246204138787,0.07839410636081086,0.07839410636081086,-0.03318970781740588,-0.03318970781740588,-0.4853222736101599,-0.545009723582538,-0.5267439951430386,-0.5516649891407517,-0.26335766049898907,-0.4754603441273398,-0.5431009459052838,-0.5205306957228895,-0.5482520066159696,-0.2870100026091004,8.258684042141198,8.258684042141198,7.407577407843533,7.407577407843533,10.066006363300005,10.066006363300005,5.127252739308133,5.127252739308133,5.02280390238748,5.02280390238748,9.92046097400194,11.217063252065515,10.803904791157407,11.371193926042565,6.440027149223653,9.721048486310536,11.173211708221714,10.666657194843523,11.291912141441472,6.711213384277585,207.90367078019372,207.90367078019372,0.0,231.00407864465967,0.0,207.90367078019372,231.00407864465967,0,0
+2017/01/19 14:00:00,205.34113480875556,0,1121.1903446936965,0,0,0,0.0,0.0,16.903073550514318,0.0,129.2730206906943,0,39.380909295966944,0.13497656719297563,16.217179501932648,0,0,116.48903463032963,561.0719036565653,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3027.8808110064483,0.0,3204.4838420971428,0.0,3757.4200844048855,0.0,3211.046347195401,0.0,0.0,0.0,2467.9587934148485,0.0,2820.6962902927335,0.0,3216.6652367786846,0.0,2793.9305946985023,0.0,0.0,0,0,0,0,0,0,0,0,0.05969300442465531,0.0018886450505396276,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42381662321566504,-0.42381662321566504,-0.32847369108081115,-0.32847369108081115,-0.506694684653065,-0.506694684653065,0.09806368067341982,0.09806368067341982,-0.05373750987844573,-0.05373750987844573,-0.48145067842231964,-0.5329771035331969,-0.5220911215776308,-0.5444643935085909,-0.2649468752854228,-0.47300394104224897,-0.5294757335258338,-0.5169904708709454,-0.5413078184514032,-0.28864135998980606,8.745182848956901,8.745182848956901,7.243642372619163,7.243642372619163,10.36703026781231,10.36703026781231,5.199151592192777,5.199151592192777,5.059784989884179,5.059784989884179,9.841675370779015,10.943269250477726,10.700968825722953,11.204518932802259,6.457509551842961,9.672031491045814,10.864775944775545,10.589203191214295,11.132160889047285,6.730787567505217,205.34113480875556,205.34113480875556,0.0,228.15681645417283,0.0,205.34113480875556,228.15681645417283,0,0
+2017/01/19 15:00:00,189.63708406906258,0,1104.0963282166495,0,0,0,0.0,0.0,17.02830042034,0.0,115.5196477718057,0,39.380909295966944,0.20987656230474444,14.066374816190928,0,0,175.5809225936443,520.3763517287476,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2596.1248662112876,0.0,4067.7294152686572,0.0,3275.122677759069,0.0,4108.653758911528,0.0,0.0,0.0,2070.2893636302874,0.0,3692.0588345686765,0.0,2778.5426717635037,0.0,3716.5297933347515,0.0,0.0,0,0,0,0,0,0,0,0,0.058782906325765376,0.001859850181081456,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4690767246931848,-0.4690767246931848,-0.3980789876958798,-0.3980789876958798,-0.557663186947859,-0.557663186947859,0.06166666858572572,0.06166666858572572,-0.11678319778660452,-0.11678319778660452,-0.49366152688055126,-0.5441305457526008,-0.5340714938076511,-0.5601524907264446,-0.2837049343974152,-0.4903755111958308,-0.5441086255053447,-0.533211900726707,-0.5612863358655346,-0.3093757655816355,9.59420510728485,9.59420510728485,8.301597213208595,8.301597213208595,11.511752498566167,11.511752498566167,5.078732826413571,5.078732826413571,5.282491589899578,5.282491589899578,10.092359535208885,11.19684573652816,10.967912070216158,11.570543559434583,6.6719011646219855,10.024265829323767,11.196342087948366,10.948551901404016,11.597411186975776,6.989370755862097,189.63708406906258,189.63708406906258,0.0,210.7078711878473,0.0,189.63708406906258,210.7078711878473,0,0
+2017/01/19 16:00:00,183.91947604207093,0,1131.1060531000421,0,0,0,0.0,0.0,18.000033403377582,0.0,108.75639138185811,0,39.380909295966944,0.24873082689802173,14.10143593151595,0,0,182.80167146831414,540.1653277374704,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2411.108884596945,0.0,4692.558237904525,0.0,3005.542825172538,0.0,4742.708487546103,0.0,0.0,0.0,1927.7671684098987,0.0,4360.099915790815,0.0,2589.4448690586505,0.0,4399.651551780633,0.0,0.0,0,0,0,0,0,0,0,0,0.06022092408484048,0.0019053480605975273,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49482547231198387,-0.49482547231198387,-0.4952334665825599,-0.4952334665825599,-0.5551552319884222,-0.5551552319884222,0.029851956362516953,0.029851956362516953,-0.15414452650797958,-0.15414452650797958,-0.5147014608872719,-0.5655045415609069,-0.55021765349985,-0.5806027405189472,-0.30046602879432444,-0.5197369898335342,-0.571645321300577,-0.5537679844495829,-0.5867859119622005,-0.32774827484581387,10.116590969243035,10.116590969243035,10.125098590936076,10.125098590936076,11.45279266287777,11.45279266287777,5.018447767241298,5.018447767241298,5.492372907688903,5.492372907688903,10.539412259095386,11.697855457970249,11.337511422465482,12.063700516433386,6.8760286126933465,10.649245117636283,11.845459792277381,11.42029682464323,12.216379827391421,7.233701647638128,183.91947604207093,183.91947604207093,0.0,204.3549733800788,0.0,183.91947604207093,204.3549733800788,0,0
+2017/01/19 17:00:00,211.99656364453557,0,1145.4649585992684,0,0,0,0.0,0.0,23.298611804095255,0.0,131.64086955684016,0,39.380909295966944,0.21723308695089516,14.026964698227967,0,0,143.88925428391232,540.201121652282,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2547.5206922961133,0.0,4693.730822136053,0.0,3112.948637482242,0.0,4693.687712801297,0.0,0.0,0.0,2140.4715658357027,0.0,4435.575612613569,0.0,2756.932848802422,0.0,4391.99508615903,0.0,0.0,0,0,0,0,0,0,0,0,0.06098540284935632,0.0019295356358211516,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5145277419310976,-0.5145277419310976,-0.48357165876117036,-0.48357165876117036,-0.4693909599696544,-0.4693909599696544,0.0507836238540141,0.0507836238540141,-0.1092192832785725,-0.1092192832785725,-0.5224731401794465,-0.5771925946072909,-0.5524267487366312,-0.5845278585689367,-0.3004305306151618,-0.5306261919223629,-0.5890850354379547,-0.5573290676001259,-0.5926606393337289,-0.3276790593915859,10.535642748776795,10.535642748776795,9.884756464821095,9.884756464821095,9.600407899683631,9.600407899683631,5.053392278688278,5.053392278688278,5.247064638691256,5.247064638691256,10.709384949725887,11.980204520377143,11.388958126752698,12.16043004742393,6.87558374990617,10.890508227565135,12.273574578566254,11.503881897485002,12.36297983112945,7.232754321747919,211.99656364453557,211.99656364453557,0.0,235.5517373828173,0.0,211.99656364453557,235.5517373828173,0,0
+2017/01/19 18:00:00,234.3287541143961,0,1138.2385903661834,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.15810434309105806,18.533314628377177,0,0,114.77042767672609,562.0935800263835,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3102.728028076247,0.0,4009.885024489534,0.0,3619.478882113859,0.0,3992.7274959020187,0.0,0.0,0.0,2700.3819617011814,0.0,3749.8169760588085,0.0,3258.197069544849,0.0,3690.8476671709986,0.0,0.0,0,0,0,0,0,0,0,0,0.06060066565200775,0.001917362819080992,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5161620479973585,-0.5161620479973585,-0.4551007374146651,-0.4551007374146651,-0.48678352406595754,-0.48678352406595754,0.08071857185761533,0.08071857185761533,-0.06648773286394055,-0.06648773286394055,-0.516253255957686,-0.5672647258272717,-0.5429626027979649,-0.573845281739486,-0.2852395606867172,-0.5256191803142108,-0.5781822052622575,-0.5480406663670653,-0.5822610304093799,-0.31097277816621677,10.571157023950803,10.571157023950803,9.322630225791485,9.322630225791485,9.95036505567856,9.95036505567856,5.1349131907088434,5.1349131907088434,5.09152714450272,5.09152714450272,10.573142422010037,11.739997318946664,11.1700396015993,11.89873766848413,6.690097482712531,10.778934515286167,12.004382756008113,11.28701941939444,12.104485398793216,7.010041585064158,234.3287541143961,234.3287541143961,0.0,260.365282349329,0.0,234.3287541143961,260.365282349329,0,0
+2017/01/19 19:00:00,219.67215800481523,0,1153.8867313681615,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.15717147165166814,26.83851583664288,0,0,128.34709367294292,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4292.082901449743,0.0,3521.8092300457847,0.0,4768.24474153646,0.0,3487.251546944631,0.0,0.0,0.0,3630.362002048394,0.0,3091.375680851027,0.0,4146.492134444301,0.0,3016.8689424516506,0.0,0.0,0,0,0,0,0,0,0,0,0.061433784269635416,0.0019437221114111502,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5141592582021178,-0.5141592582021178,-0.4931249867824287,-0.4931249867824287,-0.500905429139245,-0.500905429139245,0.07209887639661976,0.07209887639661976,-0.05257299202915856,-0.05257299202915856,-0.5010913822657788,-0.5457403393797645,-0.5266732578118178,-0.5514858827681157,-0.2605497802430199,-0.5090794638008771,-0.5543708926532157,-0.529829117007328,-0.557629925059948,-0.28367040412105393,10.527651378287786,10.527651378287786,10.081209353349237,10.081209353349237,10.244116983097015,10.244116983097015,5.107631388867546,5.107631388867546,5.05722160896228,5.05722160896228,10.248042488577696,11.233889929659782,10.802332847026463,11.367020825799486,6.409398503832804,10.418083511539791,11.434409509106217,10.872673968588515,11.510968756043212,6.671492876660963,219.67215800481523,219.67215800481523,0.0,244.08017556090581,0.0,219.67215800481523,244.08017556090581,0,0
+2017/01/19 20:00:00,210.6839382100948,0,1124.234998421377,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.15426036385304745,27.0977424753112,0,0,134.18571323870253,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3668.505663417358,0.0,3118.951970844855,0.0,4132.268599273913,0.0,3083.6026008207764,0.0,0.0,0.0,3285.8422858729123,0.0,2849.50236906625,0.0,3755.928747510765,0.0,2775.987324882793,0.0,0.0,0,0,0,0,0,0,0,0,0.05985510404431234,0.00189377376951282,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4808050160916826,-0.4808050160916826,-0.5373385109605687,-0.5373385109605687,-0.5171925191160307,-0.5171925191160307,0.07834329787029723,0.07834329787029723,-0.07836133637124273,-0.07836133637124273,-0.4929128613661547,-0.5333906290511411,-0.516408469712404,-0.5393796875829332,-0.2541139796175345,-0.5010780983237548,-0.5422641554981958,-0.5201500852737723,-0.5457076153830821,-0.2769666490282673,9.828599292431832,9.828599292431832,11.041785368959637,11.041785368959637,10.593609066119797,10.593609066119797,5.127087798497257,5.127087798497257,5.127146345055209,5.127146345055209,10.076804469137286,10.952574671508216,10.57652191375,11.08817482134208,6.340447808754334,10.247762012501994,11.154037376707862,10.658304077207362,11.233135774465438,6.593180093965032,210.6839382100948,210.6839382100948,0.0,234.0932646778831,0.0,210.6839382100948,234.0932646778831,0,0
+2017/01/19 21:00:00,212.22538924291553,0,1073.4024804338212,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.13326187229007463,24.188398204468136,0,0,118.8435477636908,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3705.126595180453,0.0,3138.7377597407803,0.0,4158.841050727749,0.0,3099.184886438031,0.0,0.0,0.0,3324.3467207903027,0.0,2867.26335064905,0.0,3778.219936212653,0.0,2790.5513197201926,0.0,0.0,0,0,0,0,0,0,0,0,0.05714874313466992,0.0018081463968209054,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48748144970835955,-0.48748144970835955,-0.5720861889879739,-0.5720861889879739,-0.5041303584356792,-0.5041303584356792,0.056442258339353735,0.056442258339353735,-0.13237021097063695,-0.13237021097063695,-0.4961608289691623,-0.5340467566043798,-0.5197552529577777,-0.5394111035523911,-0.258610893247502,-0.5044987952616999,-0.5429100641902176,-0.5239097124628669,-0.5455333171589436,-0.28104543645737323,9.964680430833027,9.964680430833027,11.856119750228842,11.856119750228842,10.312407623630804,10.312407623630804,5.065955594973829,5.065955594973829,5.362994209830305,5.362994209830305,10.144462981336304,10.967354479803177,10.649645462054636,11.088890216815955,6.38844259830644,10.320238200015623,11.16883514689627,10.741090130208065,11.229119690313155,6.640602383063722,212.22538924291553,212.22538924291553,0.0,235.8059880476839,0.0,212.22538924291553,235.8059880476839,0,0
+2017/01/19 22:00:00,198.74482521726048,0,1080.1313534497478,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.18373608407343758,26.665151682567522,0,0,161.06277329216172,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3265.944676191469,0.0,4079.13148788444,0.0,3697.5643570634033,0.0,4038.855668983996,0.0,0.0,0.0,2867.2327007891613,0.0,3811.4046927089403,0.0,3321.9981819474187,0.0,3733.198406752594,0.0,0.0,0,0,0,0,0,0,0,0,0.05750699331815895,0.0018194811829055206,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5504512476018383,-0.5504512476018383,-0.5879499368040539,-0.5879499368040539,-0.5682227602813904,-0.5682227602813904,-0.015634251938450965,-0.015634251938450965,-0.2261729225863118,-0.2261729225863118,-0.514016744931432,-0.5574907069424174,-0.5388679452790114,-0.5615507586209688,-0.2845619851628653,-0.5255158732082059,-0.568953851031438,-0.5458542557244034,-0.5699269786442531,-0.30845950034725245,11.342941496818014,11.342941496818014,12.245308328447535,12.245308328447535,11.762990801803909,11.762990801803909,5.005059875329792,5.005059875329792,6.0612800991832785,6.0612800991832785,10.524562243336476,11.507688910866676,11.076527592949091,11.603684973345153,6.682051104224669,10.776643900048029,11.780564263680446,11.2365156006355,11.803991612735388,6.977559869974044,198.74482521726048,198.74482521726048,0.0,220.82758357473386,0.0,198.74482521726048,220.82758357473386,0,0
+2017/01/19 23:00:00,140.13554507917212,0,955.1952299560022,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.26244909337211647,20.688163178023796,0,0,214.1298535361776,581.358790113376,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3182.5012534205275,0.0,4634.0377220446735,0.0,3613.829709825092,0.0,4603.421829480712,0.0,0.0,0.0,2895.386951632357,0.0,4471.203631956983,0.0,3395.065636564267,0.0,4394.9459371171,0.0,0.0,0,0,0,0,0,0,0,0,0.05085530156233236,0.0016090262923627973,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6686507846943222,-0.6686507846943222,-0.6858292778111287,-0.6858292778111287,-0.6793605755150199,-0.6793605755150199,-0.20287771652644906,-0.20287771652644906,-0.45687135266478895,-0.45687135266478895,-0.5351490581777313,-0.5836333656637276,-0.5592898966034102,-0.5870017858810898,-0.31167155249966616,-0.552310674288389,-0.5994534120182703,-0.5705675829659975,-0.5997583407313408,-0.33874670834833265,14.394226614316224,14.394226614316224,14.888099162572956,14.888099162572956,14.700628675434174,14.700628675434174,5.853558117081789,5.853558117081789,9.35657071397209,9.35657071397209,10.992226697484796,12.138327593203144,11.550140843925774,12.221740313685842,7.019120079736027,11.386249651137959,12.534356257851755,11.81943612415455,12.542096340575199,7.38681586054112,140.13554507917212,140.13554507917212,0.0,155.70616119908013,0.0,140.13554507917212,155.70616119908013,0,0
+2017/01/20 00:00:00,91.17616724026126,0,871.8776998174436,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.4214124588214687,11.811798520147228,0,0,280.1539188213378,538.4882522272896,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,900.5615370799383,0.0,557.2280165380283,0.0,1291.4234919619998,0.0,0.0,0.0,0.0,0.0,3246.1101130506895,0.0,5332.105140387538,0.0,3743.578065849337,0.0,5299.300179744212,0.0,922.9607608091275,0.0,3080.035001861988,0.0,5194.299576259126,0.0,3567.3270000774,0.0,5115.758731762195,0.0,5197.7745556774325,0,0,0,0,0,0,0,0,0.04641941454390547,0.0014686779191680885,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7848213724824282,-0.7848213724824282,-0.7992679148931235,-0.7992679148931235,-0.800831994793091,-0.800831994793091,-0.43722802560900803,-0.43722802560900803,-0.5598583041281148,-0.5598583041281148,-0.5607021165437069,-0.6126608934031493,-0.583800675732966,-0.6152238255174044,-0.34113430967914304,-0.5799654755008231,-0.6321322638559764,-0.5981867313275788,-0.6315286954083156,-0.3734214998083864,17.981757220619514,17.981757220619514,18.468265577195098,18.468265577195098,18.521468831699636,18.521468831699636,8.9875833614186,8.9875833614186,11.56358161431585,11.56358161431585,11.583560546395788,12.873303109652582,12.142459098179032,12.939953357515336,7.420733250070555,12.04805901267602,13.38680861663076,12.502246981145731,13.370644045771513,7.903204152002246,91.17616724026126,91.17616724026126,0.0,101.30685248917918,0.0,91.17616724026126,101.30685248917918,0,0
+2017/01/20 01:00:00,39.35997442672877,0,548.0734322737361,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5785288591226832e-09,9.562653427727053,0,0,0.0,494.83790350492,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029179835495898816,0.0009232296550670403,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7659266508573132,-0.7659266508573132,-0.7955873382864883,-0.7955873382864883,-0.7886553654008809,-0.7886553654008809,-0.43473857732057003,-0.43473857732057003,-0.20754925155320658,-0.20754925155320658,-0.8530294573713252,-0.8910603963774865,-0.8610787911983128,-0.8911562178804,-0.1278776085325171,-0.8064991611780294,-0.8654157447347217,-0.8320036795646892,-0.8632623561044493,-0.2423426246594741,17.358839391142197,17.358839391142197,18.343476814564468,18.343476814564468,18.110009437431444,18.110009437431444,8.942004856504326,8.942004856504326,5.893392485021579,5.893392485021579,20.3560395356823,21.764081696420007,20.64907582164045,21.767704378069283,5.338755091362103,18.715107890661315,20.808075291715767,19.60331394000488,20.729031473436024,6.218839894203072,39.35997442672877,39.35997442672877,0.0,43.73330491858752,0.0,39.35997442672877,43.73330491858752,0,0
+2017/01/20 02:00:00,23.72217975047009,0,47.62936418571372,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250843267922953,0,0,0.0,12.139011673169586,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.00253582262863498,8.023166035582732e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8241930428009405,-0.8241930428009405,-0.8561723708085301,-0.8561723708085301,-0.8474785646889373,-0.8474785646889373,-0.5003378684355937,-0.5003378684355937,-0.07184180446804615,-0.07184180446804615,-0.9216935896748402,-0.984208763410162,-0.9593982513074859,-0.9895709306663475,-0.06050033862378926,-0.9347440250972807,-1.0052453172939986,-0.9740592167592038,-1.0044160719797675,-0.26541721132923163,19.328400278499856,19.328400278499856,20.470137634620187,20.470137634620187,20.155526489088246,20.155526489088246,10.232144910289222,10.232144910289222,5.106865051088789,5.106865051088789,22.941207760199745,25.459495955614756,24.441690320716006,25.682593530409633,5.075782287594592,23.45416955008001,26.34102978360336,25.040244233801417,26.30596206449009,6.46270394904225,23.72217975047009,23.72217975047009,0.0,26.35797750052232,0.0,23.72217975047009,26.35797750052232,0,0
+2017/01/20 03:00:00,28.344357574838355,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.524994488365461,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8521593836321636,-0.8521593836321636,-0.8873581945584756,-0.8873581945584756,-0.8759864318421259,-0.8759864318421259,-0.5420352703759648,-0.5420352703759648,0.004255532459708673,0.004255532459708673,-0.9846429089770509,-1.0519121569040613,-1.0278358709524031,-1.0577996329321957,-0.037639191545161516,-1.0159676107780764,-1.0894869886419083,-1.0585532387447327,-1.0884850363573904,-0.2544071985097105,20.324525491735628,20.324525491735628,21.62440134260264,21.62440134260264,21.198865834187345,21.198865834187345,11.14879795582452,11.14879795582452,5.000374877179652,5.000374877179652,25.47751791008787,28.355761327516575,27.306276903146667,28.615597651586953,5.029328444398686,26.796792954968723,30.035200852721545,28.6489469255894,29.989775472948438,6.343551360348272,28.344357574838355,28.344357574838355,0.0,31.493730638709284,0.0,28.344357574838355,31.493730638709284,0,0
+2017/01/20 04:00:00,23.722178930249697,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250835065719076,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.922375552772533,-0.922375552772533,-0.9609696488260173,-0.9609696488260173,-0.9462372709541936,-0.9462372709541936,-0.6329713417546721,-0.6329713417546721,0.06585581134847557,0.06585581134847557,-1.0697760414236888,-1.135971055701549,-1.1161808182213542,-1.1420832442557538,-0.008003966612478762,-1.1141475458007768,-1.1858670222375067,-1.1585775528983149,-1.1843835163830616,-0.2628606051247668,22.96784426196237,22.96784426196237,24.505443615275098,24.505443615275098,23.9115418805129,23.9115418805129,13.409306780810581,13.409306780810581,5.089795267905416,5.089795267905416,29.14798549262042,32.17996557172141,31.25802872506813,32.46728112092431,5.0013261499163235,31.164040070177478,34.55968013947617,33.24856480617895,34.48782740338177,6.434581043779744,23.722178930249697,23.722178930249697,0.0,26.35797658916633,0.0,23.722178930249697,26.35797658916633,0,0
+2017/01/20 05:00:00,43.39631897433061,0,416.6392472976131,0,0,0,0.0,0.018717153711788264,4.633261998087618,9.319298099999997,25.555573451546493,0,1.9653805784522425,1.37899979507142,0.5250878974610449,0,0,327.9133660162528,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.2464523906484,0.0,323.89169767048156,0.0,425.64063838629124,0.0,0.0,0.0,0.0,2.7617525037615747,4021.776193345144,2.1426062216781547,2784.057406175029,2.6794958530812325,4347.480485026052,1.881922059302825,2798.239086654287,0.0,0.0,2.3367114418887613,3840.7515009178255,1.6639348905170865,2630.5707970044236,3.1280708670909805,4127.514725117165,2.1226598744676464,2609.755507896186,0.0,0.0,0,0,0,0,0,0,0,0,0.022182182133592993,0.0007018287804504467,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.870337571589635,-0.870337571589635,-0.8885367471061776,-0.8885367471061776,-0.8806880830453997,-0.8806880830453997,-0.6277241945604068,-0.6277241945604068,0.2005624141316937,0.2005624141316937,-0.7378537806499369,-0.7719741809287974,-0.7583476297708517,-0.774699608990932,0.02319248803423785,-0.7717004095972182,-0.8125315811241477,-0.7909819143791047,-0.8116812745938107,-0.2542552063834775,20.98945853415806,20.98945853415806,21.66880617538071,21.66880617538071,21.374160164716116,21.374160164716116,13.269116950565362,13.269116950565362,5.834153827983727,5.834153827983727,16.461498184440615,17.556558180755516,17.11325445154263,17.646173475679447,5.01113489202163,17.54757375398428,18.92271743020487,18.188139883728795,18.893360653840134,6.341942160633835,43.39631897433061,43.39631897433061,0.0,48.218132193700676,0.0,43.39631897433061,48.218132193700676,0,0
+2017/01/20 06:00:00,76.26212505479292,0,323.8854700048037,0,0,0,0.123604415754955,0.01593074971175412,5.555297838843742,9.319298099999997,57.911447091112116,0,1.6304600566410172,1.1284266168360029,0.5776601858933182,0,0,110.94335492953888,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,391.73683910678295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.329827049001892,2866.83407007394,1.6459159478001766,2037.0832762129655,2.137994342091133,3169.466400887466,1.6874009514606314,2052.0602341422095,0.0,0.0,2.2587859773857417,2977.314550490908,1.7087419565952473,2082.3956041405836,2.520552291554168,3252.3283656555814,1.6415311958651273,2065.1577517764194,0.0,0.0,0,0,0,0,0,0,0,0,0.01724390232718262,0.0005455850496406016,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7169376342597376,-0.7169376342597376,-0.7570450597178289,-0.7570450597178289,-0.7374297163082684,-0.7374297163082684,-0.46810983785966803,-0.46810983785966803,0.5226701741166904,0.5226701741166904,-0.6852071254044444,-0.7116639838554469,-0.7008295142599941,-0.7134351217291263,0.13205231152411184,-0.6908683304832675,-0.7225773557018289,-0.7041036256687166,-0.7215347505918565,-0.15327544340047747,15.814903206428383,15.814903206428383,17.071294177286887,17.071294177286887,16.44820203927297,16.44820203927297,9.575146104182522,9.575146104182522,10.713728207461699,10.713728207461699,14.869989813256808,15.654847574517348,15.329783140492339,15.708468063462988,5.361251438239066,15.035390384652217,15.987394678110448,15.427481712933542,15.955403315028747,5.486830778046468,76.26212505479292,76.26212505479292,0.0,84.73569450532547,0.0,76.26212505479292,84.73569450532547,0,0
+2017/01/20 07:00:00,101.96046573314322,0,808.0257299373693,0,0,0,0.0,0.010634612477672134,11.110595677687485,13.929299233552332,73.80580873715317,0,1.6018750310154397,0.9772441025614185,0.5250083386957076,0,0,83.469605318192,493.8688332876404,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3437561480633726,2250.3731851988764,0.0,1615.7864420811973,1.8755583545650245,2500.673236397308,1.1271702796781633,1625.9591446711383,0.0,0.0,1.534704792108338,2208.7792779795664,1.1288501070077928,1559.6180726911703,2.0733988086575055,2423.2089114953424,1.5511739875919373,1542.1190083740512,0.0,0.0,0,0,0,0,0,0,0,0,0.04301988837191055,0.0013611192807513857,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5908601254614048,-0.5908601254614048,-0.6366536055269698,-0.6366536055269698,-0.6110667884775045,-0.6110667884775045,-0.3530715862433394,-0.3530715862433394,0.7755299487554712,0.7755299487554712,-0.6664438754970435,-0.6911498349493008,-0.6806297262405934,-0.6927268865021923,0.18940225076723585,-0.667696860221418,-0.6973282008631179,-0.6794370504957514,-0.696343703441383,-0.03021146931144067,12.317890000515717,12.317890000515717,13.508400292188881,13.508400292188881,12.831991463812443,12.831991463812443,7.5939437371627605,7.5939437371627605,17.673538928643765,17.673538928643765,14.331704998680806,15.043651111379404,14.737267424361107,15.089992892806862,5.743765824193687,14.367176107564859,15.225816935214553,14.702834436878945,15.19667911870981,5.018894801327974,101.96046573314322,101.96046573314322,0.0,113.28940637015913,0.0,101.96046573314322,113.28940637015913,0,0
+2017/01/20 08:00:00,164.52915793962083,0,950.4434981773885,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.2843948885672577,27.057968699466237,0,0,92.8198650238647,591.4459893094429,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1242.5056196410496,0.0,714.5137880402832,0.0,1552.216782914086,0.0,15.429907953000683,0.0,0.0,0.0,4988.24820246997,0.0,5892.951669459732,0.0,5456.024857866784,0.0,5849.37784592392,0.0,2258.430063104975,0.0,4861.546808421185,0.0,5773.166715257284,0.0,5314.468965453541,0.0,5681.001100496509,0.0,1798.1612994723196,0,0,0,0,0,0,0,0,0.050602315842799554,0.0016010220005423727,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7132978855943278,-0.7132978855943278,-0.7290428159176482,-0.7290428159176482,-0.7302223530363366,-0.7302223530363366,-0.5615242581435875,-0.5615242581435875,0.2888187630424555,0.2888187630424555,-0.6602802810722396,-0.6937148746118634,-0.673451022180394,-0.6949874494664382,-0.17356885743471806,-0.6643102538646573,-0.7035011813567565,-0.6756756596373635,-0.7019754550807318,-0.26867617793598664,15.704308462385157,15.704308462385157,16.186825607202252,16.186825607202252,16.223403034440878,16.223403034440878,11.603056077074768,11.603056077074768,6.732922948712826,6.732922948712826,14.15820796300902,15.119079746730762,14.530945244514413,15.15660711163386,5.624455926142289,14.271460148631007,15.409470212534401,14.59464480200677,15.363925069395762,6.498951930836441,164.52915793962083,164.52915793962083,0.0,182.8101754884676,0.0,164.52915793962083,182.8101754884676,0,0
+2017/01/20 09:00:00,166.09754198789878,0,1061.6516984361876,0,0,0,0.0,0.0,12.741278846396103,0.0,83.2008179303116,0,39.380909295966944,0.24481823745868803,27.097742475311204,0,0,142.58311827860143,599.655407544689,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.72397141446632,0.0,425.55252692780306,0.0,0.0,0.0,0.0,0.0,4107.800257674097,0.0,5403.19269076579,0.0,4883.0613127815905,0.0,5216.2192532769595,0.0,166.53824029199058,0.0,3819.0811782051032,0.0,5225.250001843727,0.0,4651.496470842008,0.0,4963.99481706342,0.0,132.78241748455122,0,0,0,0,0,0,0,0,0.05652312279723334,0.0017883522054377603,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6887422120271317,-0.6887422120271317,-0.7485712198410405,-0.7485712198410405,-0.7502563984241661,-0.7502563984241661,-0.5291518840748872,-0.5291518840748872,-0.2069490628628364,-0.2069490628628364,-0.6247589255216368,-0.6817876455308092,-0.6573371608940599,-0.6694861991585687,-0.2987387434186878,-0.626507872961159,-0.692906311596678,-0.6611995037247758,-0.6755498316372152,-0.3546670332955724,14.973110213868026,14.973110213868026,16.800095137341273,16.800095137341273,16.853783130449614,16.853783130449614,10.857542746687457,10.857542746687457,5.888223525868099,5.888223525868099,13.190421120177561,14.770755848717045,14.075943580022113,14.417948887238381,6.854444061794979,13.23679061317955,15.095272121577437,14.183978452550619,14.591036168598805,7.6175528709919575,166.09754198789878,166.09754198789878,0.0,184.55282443099864,0.0,166.09754198789878,184.55282443099864,0,0
+2017/01/20 10:00:00,182.2229695884677,0,1154.7177500718888,0,0,0,0.0,0.0,11.906616317836622,0.0,106.27511244621549,0,39.380909295966944,0.27519612115722253,20.95316020483719,0,0,182.41364114548645,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3871.73810664999,0.0,5409.8817025621975,0.0,4785.452513316224,0.0,5207.592593193182,0.0,0.0,0.0,3456.7537113260755,0.0,5180.254906208775,0.0,4490.678083465758,0.0,4900.038553337937,0.0,0.0,0,0,0,0,0,0,0,0,0.061478028320962955,0.0019451219623545057,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6299224525404041,-0.6299224525404041,-0.7260669844495028,-0.7260669844495028,-0.7381561882536263,-0.7381561882536263,-0.48086772738339856,-0.48086772738339856,-0.2915465516084938,-0.2915465516084938,-0.6020509910912266,-0.6711531486526099,-0.643162694184972,-0.6588924527270373,-0.31839043409761536,-0.6030998040164628,-0.682360947775288,-0.6486678141583607,-0.6655720356230953,-0.36332730864963125,13.32770317462409,13.32770317462409,16.09481097818818,16.09481097818818,16.47098461091558,16.47098461091558,9.829868545041236,9.829868545041236,6.765924357214715,6.765924357214715,12.600420499981468,14.465373574387328,13.685005220425694,14.119369430255816,7.107467191787961,12.627177956424461,14.787357906724907,13.835804497986146,14.307063942918461,7.747596377413245,182.2229695884677,182.2229695884677,0.0,202.46996620940854,0.0,182.2229695884677,202.46996620940854,0,0
+2017/01/20 11:00:00,212.7735824830763,0,1244.3651580557619,0,0,0,0.0,0.0,17.146892480886187,0.0,133.89528835348938,0,39.380909295966944,0.35716869356146447,18.56134845671798,0,0,220.8546198290279,562.13595556366,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2931.3745124738684,0.0,5866.182515262424,0.0,3938.0962629621517,0.0,5700.346171428731,0.0,0.0,0.0,2514.4489505208558,0.0,5654.890118984207,0.0,3656.8877063285504,0.0,5421.067125359117,0.0,2921.372055384692,0,0,0,0,0,0,0,0,0.0662509227244571,0.0020961330142992168,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5434544038868728,-0.5434544038868728,-0.6419932817165729,-0.6419932817165729,-0.6541876570035763,-0.6541876570035763,-0.4056689637231303,-0.4056689637231303,-0.20703363877347564,-0.20703363877347564,-0.5845977046913409,-0.6636848121701935,-0.6342067105169472,-0.654433300434387,-0.3260305736236396,-0.5833322748404207,-0.6741757919711148,-0.638098097101761,-0.6612794648666428,-0.36650908431222157,11.181320008387758,11.181320008387758,13.653141256064885,13.653141256064885,13.988326232888028,13.988326232888028,8.429460174533148,8.429460174533148,5.888950999991366,5.888950999991366,12.16215737018183,14.253837573596059,13.442486263513146,13.995144431929745,7.21025216724064,12.130895606104843,14.551674546871794,13.547433663847102,14.18622190100929,7.796176580658496,212.7735824830763,212.7735824830763,0.0,236.41509164786254,0.0,212.7735824830763,236.41509164786254,0,0
+2017/01/20 12:00:00,228.40754256287335,0,1219.9369991557633,0,0,0,0.0,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.1948741231549946,20.67200557234187,0,0,123.9518371568605,581.375050567013,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3249.209838041708,0.0,4433.034672138794,0.0,4131.273010308009,0.0,4312.034136928274,0.0,0.0,0.0,2683.4862012244257,0.0,4110.271663838419,0.0,3682.004235131449,0.0,3937.001923132655,0.0,0.0,0,0,0,0,0,0,0,0,0.06495034945052101,0.002054983782486235,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4423402250782742,-0.4423402250782742,-0.5388490958976224,-0.5388490958976224,-0.5786530412034049,-0.5786530412034049,-0.27045586572666613,-0.27045586572666613,-0.11178071260236046,-0.11178071260236046,-0.5669249535982348,-0.6414756250187106,-0.6131830378777998,-0.6358150290872442,-0.3181513449678275,-0.5617132004659123,-0.6459099213249347,-0.6121425466178406,-0.6377349628888911,-0.3510494447179602,9.082015767273433,9.082015767273433,11.07609879864657,11.07609879864657,12.015901169866993,12.015901169866993,6.518935434391011,6.518935434391011,5.258795416307706,5.258795416307706,11.731852116370717,13.639055165415243,12.886858598185455,13.485781615512039,7.104290578181377,11.607540628681903,13.760094521727709,12.859857917043058,13.537612454507709,7.5641760739758155,228.40754256287335,228.40754256287335,0.0,253.7861584031926,0.0,228.40754256287335,253.7861584031926,0,0
+2017/01/20 13:00:00,207.9220876199493,0,1151.1149953286208,0,0,0,0.0,0.0,16.903073550514318,0.0,129.49988082968767,0,39.380909295966944,0.14674117997952346,18.55950756134655,0,0,109.87282743418686,562.1224089750881,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3764.434771397273,0.0,3481.814589375036,0.0,4774.091624065743,0.0,3461.724354367537,0.0,0.0,0.0,3073.7759956711297,0.0,3071.241541680603,0.0,4212.092612231994,0.0,3020.756241485603,0.0,0.0,0,0,0,0,0,0,0,0,0.06128621498984691,0.0019390531222629151,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4292774680794748,-0.4292774680794748,-0.46660702531765275,-0.46660702531765275,-0.5247474473439214,-0.5247474473439214,-0.1826728135079583,-0.1826728135079583,-0.0750538026676764,-0.0750538026676764,-0.5259709091562378,-0.6087905661102927,-0.5941374977817231,-0.6132016438927208,-0.3043377548214515,-0.5125471892810619,-0.6072570012138904,-0.5901231468488473,-0.6114150583075001,-0.3311777456893246,8.842951444512948,8.842951444512948,9.545603049484797,9.545603049484797,10.759620190294143,10.759620190294143,5.69177828546222,5.69177828546222,5.116636850246621,5.116636850246621,10.786736818093502,12.773193737606633,12.40006946855597,12.887341850677984,6.9248688843206025,10.49275921204105,12.733706586189342,12.299474603925518,12.84100755219761,7.280894034342424,207.9220876199493,207.9220876199493,0.0,231.02454179994368,0.0,207.9220876199493,231.02454179994368,0,0
+2017/01/20 14:00:00,205.4792890627683,0,1116.4330685537254,0,0,0,0.0,0.0,16.965686943773743,0.0,129.2730206906943,0,39.380909295966944,0.12732734960822123,16.30036958027074,0,0,111.70080550538384,561.1028566415399,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3757.224332821056,0.0,3878.2882920871643,0.0,4789.680493871166,0.0,3930.2563377488314,0.0,0.0,0.0,3075.525973512258,0.0,3436.71450845504,0.0,4206.009992107877,0.0,3475.8732159818805,0.0,0.0,0,0,0,0,0,0,0,0,0.059439723519217114,0.0018806314192429177,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4176780080484404,-0.4176780080484404,-0.40507997197771495,-0.40507997197771495,-0.5306691095994223,-0.5306691095994223,-0.16105177690396733,-0.16105177690396733,-0.0956115900464999,-0.0956115900464999,-0.5236612782901519,-0.5939851229757583,-0.5913511301170571,-0.6080493279459076,-0.3072684522118886,-0.5111658501493933,-0.5907691350646533,-0.5885966742348618,-0.6068774922970577,-0.3336018833919509,8.636806951972645,8.636806951972645,8.419449609241966,8.419449609241966,10.891469275379038,10.891469275379038,5.53753928103076,5.53753928103076,5.189312513284946,5.189312513284946,10.73560079480444,12.396238367416203,12.33017215840114,12.754095146747986,6.9622600729989585,10.462950460045661,12.315615084809693,12.261406544270258,12.723950517493947,7.314553257782634,205.4792890627683,205.4792890627683,0.0,228.31032118085363,0.0,205.4792890627683,228.31032118085363,0,0
+2017/01/20 15:00:00,189.50024704346393,0,1163.9556130330534,0,0,0,0.0,0.0,16.903073467207488,0.0,115.5196477718057,0,39.380909295966944,0.2631167913398302,14.001524514689683,0,0,215.56807568213287,540.248483456663,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2528.0124844795337,0.0,4158.738658499924,0.0,3711.7998366542733,0.0,4410.446527156412,0.0,0.0,0.0,1901.6140609269,0.0,3728.545123791072,0.0,3199.936915512513,0.0,4002.760670264667,0.0,0.0,0,0,0,0,0,0,0,0,0.061969858987562035,0.0019606831418114454,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.457294409246893,-0.457294409246893,-0.43899269118330864,-0.43899269118330864,-0.5245132950554644,-0.5245132950554644,-0.17764333605235066,-0.17764333605235066,-0.16804013064394405,-0.16804013064394405,-0.520371310002549,-0.5821288989687438,-0.6025304176376611,-0.6235990027018756,-0.3311336478394072,-0.5074787466863966,-0.5750128288339966,-0.6018119420292628,-0.6245355535675988,-0.3581507072398355,9.364700154671013,9.364700154671013,9.020053298423193,9.020053298423193,10.754437860501596,10.754437860501596,5.654158407236494,5.654158407236494,5.585259702998698,5.585259702998698,10.66315845209121,12.101231311272002,12.6126457706862,13.15974152042969,7.280284043998648,10.383788300187561,11.927098204438579,12.594328528989507,13.184508462376996,7.669480151629841,189.50024704346393,189.50024704346393,0.0,210.55583004829325,0.0,189.50024704346393,210.55583004829325,0,0
+2017/01/20 16:00:00,184.4719857733757,0,1170.3864593979652,0,0,0,0.0,0.0,18.465775638150767,0.0,108.75639138185811,0,39.380909295966944,0.364659955070167,14.072274299875444,0,0,241.7927488454106,520.4546566582969,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3348.657664037498,0.0,5787.42220356552,0.0,4235.450144284874,0.0,5930.590407360258,0.0,0.0,0.0,2694.825722501757,0.0,5308.815594992615,0.0,3693.643169957132,0.0,5499.853210573698,0.0,3503.198073443423,0,0,0,0,0,0,0,0,0.06231224201140071,0.0019715159020250463,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5475563488197431,-0.5475563488197431,-0.48752617322851804,-0.48752617322851804,-0.6174706608104746,-0.6174706608104746,-0.2483727742777611,-0.2483727742777611,-0.20725879567570804,-0.20725879567570804,-0.5652591818211364,-0.6280987967746885,-0.627023903652787,-0.6532467501999125,-0.34966222040934386,-0.5661254466792704,-0.6346236577014637,-0.6320435701130456,-0.6607482576616827,-0.3816414911285828,11.275814322122201,11.275814322122201,9.965598486052045,9.965598486052045,12.998617856580083,12.998617856580083,6.280408845393595,6.280408845393595,5.890889131543233,5.890889131543233,11.69199179246904,13.279085731216398,13.25049738831953,13.962234158005359,7.543855529934405,11.71270566102099,13.453699556437442,13.384432259534606,14.171323154296516,8.033130144478633,184.4719857733757,184.4719857733757,0.0,204.96887308152856,0.0,184.4719857733757,204.96887308152856,0,0
+2017/01/20 17:00:00,207.96293361126203,0,1159.84236347313,0,0,0,0.0,0.0,19.17529098509264,0.0,131.64086955684016,0,39.380909295966944,0.24019069401408535,14.093697876893922,0,0,158.25581072243958,540.2119700876168,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2650.381045685261,0.0,4736.218261602258,0.0,3571.7901836081815,0.0,5203.436065955623,0.0,0.0,0.0,2296.8970845773324,0.0,4431.521970873452,0.0,3344.8785817517714,0.0,4983.105083933358,0.0,0.0,0,0,0,0,0,0,0,0,0.06175086653428036,0.0019537543732399453,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.512969018146909,-0.512969018146909,-0.4541421609508081,-0.4541421609508081,-0.5975682307784588,-0.5975682307784588,-0.23407913011798973,-0.23407913011798973,-0.1654008012949507,-0.1654008012949507,-0.568262598251808,-0.5945669981120589,-0.6293844424747027,-0.6594200080687244,-0.3532752659689674,-0.5726082648277158,-0.5937893507605079,-0.6356073029702638,-0.6688513743868194,-0.3852196109741751,10.501878560764709,10.501878560764709,9.304311807228771,9.304311807228771,12.486593821489208,12.486593821489208,6.136948406972209,6.136948406972209,5.5669975892780315,5.5669975892780315,11.763947802554924,12.410873653322795,13.313345181092728,14.13412329418287,7.596951721629381,11.868754185051642,12.391317620918016,13.480183393660795,14.399919764904837,8.09058720872325,207.96293361126203,207.96293361126203,0.0,231.0699262347356,0.0,207.96293361126203,231.0699262347356,0,0
+2017/01/20 18:00:00,234.35971627567076,0,1187.6194743308545,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.22396415985812507,18.498416972884737,0,0,145.34957197343383,580.8953196943469,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3148.154196836742,0.0,4248.7583744395115,0.0,3898.7547850336623,0.0,4415.631986418484,0.0,0.0,0.0,3045.0248917334525,0.0,4105.282477969661,0.0,3891.6983536038697,0.0,4347.132968761547,0.0,0.0,0,0,0,0,0,0,0,0,0.0632297404910368,0.002000544914371535,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5287734338783464,-0.5287734338783464,-0.5388598966760886,-0.5388598966760886,-0.5469322691474227,-0.5469322691474227,-0.17197385954722788,-0.17197385954722788,-0.12543777224430538,-0.12543777224430538,-0.571178509043679,-0.623127227362557,-0.6207565973636096,-0.6526795336585536,-0.3432624705335562,-0.5790385745363649,-0.6306365520673348,-0.6279897582238695,-0.6628350736488903,-0.37318771034439835,10.849095791530488,10.849095791530488,11.076344497785414,11.076344497785414,11.261390699860115,11.261390699860115,5.613017233611359,5.613017233611359,5.32594299659641,5.32594299659641,11.83418169850259,13.147279910049207,13.084807600373395,13.946523342157448,7.451169270161259,12.02533992454633,13.34677990252547,13.276183407974031,14.229922312922213,7.899551012975451,234.35971627567076,234.35971627567076,0.0,260.3996847507453,0.0,234.35971627567076,260.3996847507453,0,0
+2017/01/20 19:00:00,218.2469886134907,0,1166.1210093786492,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.19776751685057523,25.372750400119457,0,0,140.58137168343052,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4065.3562462012246,0.0,3443.205557794538,0.0,4742.411329798277,0.0,3555.0561004617134,0.0,0.0,0.0,3960.005790229543,0.0,3330.8806288115693,0.0,4702.098801732727,0.0,3469.982209643127,0.0,0.0,0,0,0,0,0,0,0,0,0.062085146292925074,0.001964330751791251,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5211364475785727,-0.5211364475785727,-0.5572268035069068,-0.5572268035069068,-0.5261917884349001,-0.5261917884349001,-0.1264685081666033,-0.1264685081666033,-0.10699919812278884,-0.10699919812278884,-0.554931528503098,-0.6008359137350074,-0.6003632744089825,-0.6282952867720425,-0.3186669827495653,-0.5639095089333909,-0.6078793473280988,-0.6081701813751793,-0.6381190251327651,-0.34609500440094243,10.679964336427034,10.679964336427034,11.501473905777146,11.501473905777146,10.791639259128033,10.791639259128033,5.331325415699894,5.331325415699894,5.237117581111207,5.237117581111207,11.447546836461655,12.569480977408077,12.557463469439327,13.284317087351454,7.111144525366129,11.659783673913793,12.749718822102793,12.757207404473348,13.547999850851497,7.491977497730872,218.2469886134907,218.2469886134907,0.0,242.49665401498964,0.0,218.2469886134907,242.49665401498964,0,0
+2017/01/20 20:00:00,210.72854613606793,0,1151.4198401482872,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.19886828982622048,27.0977424753112,0,0,161.37055496561263,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4738.880995036363,0.0,3895.079916587419,0.0,5403.368381475195,0.0,3974.270352116331,0.0,0.0,0.0,4390.008804647208,0.0,3619.681147489504,0.0,5100.862570318009,0.0,3713.789317122814,0.0,0.0,0,0,0,0,0,0,0,0,0.06130244515384654,0.0019395666333385058,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.52506209722675,-0.52506209722675,-0.5150146568678738,-0.5150146568678738,-0.599722900103228,-0.599722900103228,-0.15990572619755442,-0.15990572619755442,-0.12599267677990894,-0.12599267677990894,-0.5494814166246507,-0.5923987065059156,-0.5924298340768657,-0.6167751846623093,-0.307164664735111,-0.5593870212719966,-0.6012897086527345,-0.6008274218839595,-0.6270699945645354,-0.3339612116371937,10.766587854767636,10.766587854767636,10.546211565880057,10.546211565880057,12.541196534880271,12.541196534880271,5.529907709389477,5.529907709389477,5.3288351742909725,5.3288351742909725,11.3204125060646,12.356411566081732,12.357191969603406,12.98043567754928,6.96092969790439,11.552436496593273,12.581028463469622,12.5692649748283,13.251722214323962,7.319563766638424,210.72854613606793,210.72854613606793,0.0,234.14282904007547,0.0,210.72854613606793,234.14282904007547,0,0
+2017/01/20 21:00:00,212.27634367452282,0,1147.7795120813578,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.2286505665506374,24.1439639418149,0,0,193.22057941122725,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5499.751342796174,0.0,4407.396244151669,0.0,6147.5337929223115,0.0,4468.299280424255,0.0,0.0,0.0,4973.239976097284,0.0,4024.3178448585304,0.0,5666.909002947798,0.0,4089.466237368987,0.0,0.0,0,0,0,0,0,0,0,0,0.06110863139114795,0.0019334345009860596,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6127026110183932,-0.6127026110183932,-0.5787109814468636,-0.5787109814468636,-0.646789259703295,-0.646789259703295,-0.22853408843889356,-0.22853408843889356,-0.16005838854997367,-0.16005838854997367,-0.5461859981890942,-0.5857999163928402,-0.5868572009331174,-0.6082757289617221,-0.29510513425734747,-0.5569986573031627,-0.5961141784652835,-0.5955223270909702,-0.6189183483806961,-0.321758356611533,12.87438571340789,12.87438571340789,12.017319270302039,12.017319270302039,13.784198404964087,13.784198404964087,6.083603629422768,6.083603629422768,5.5309211304040815,5.5309211304040815,11.244165174650249,12.191921731593212,12.218149820142486,12.759926019598993,6.809449329982911,11.496103428016,12.449859714529438,12.434933893470273,13.036532795059387,7.152471861456618,212.27634367452282,212.27634367452282,0.0,235.86260408280313,0.0,212.27634367452282,235.86260408280313,0,0
+2017/01/20 22:00:00,198.87236751260713,0,1144.080730399425,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.2722086564616356,26.70422140552597,0,0,225.01215024183873,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4553.4580983532205,0.0,5231.10606557907,0.0,5182.108789898595,0.0,5296.8059794151,0.0,0.0,0.0,4090.1781151933897,0.0,4914.319277576569,0.0,4790.389824485731,0.0,4974.367182510103,0.0,0.0,0,0,0,0,0,0,0,0,0.0609117055146896,0.0019272039035235766,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6443021994597432,-0.6443021994597432,-0.6242834235712816,-0.6242834235712816,-0.6591373143326285,-0.6591373143326285,-0.3099591367074538,-0.3099591367074538,-0.23413652379410607,-0.23413652379410607,-0.5535178547043639,-0.5950341725225259,-0.5925208017417204,-0.6154287314027655,-0.3051475965817512,-0.5683298029239796,-0.6090403734606923,-0.603780377423346,-0.6287076458390073,-0.3336346716904701,13.716111325161421,13.716111325161421,13.177837179962182,13.177837179962182,14.126215846927138,14.126215846927138,6.996909067498493,6.996909067498493,6.137507294912055,6.137507294912055,11.414446491953157,12.422634628906323,12.359472873186391,12.945294337528878,6.935164888199651,11.765562371186618,12.779635595050067,12.644566377946475,13.295301195151922,7.315010233846607,198.87236751260713,198.87236751260713,0.0,220.96929723623015,0.0,198.87236751260713,220.96929723623015,0,0
+2017/01/20 23:00:00,140.31811338904276,0,1062.5450455029247,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.44684335338673503,20.686337227879804,0,0,303.18305165178697,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,817.6934646116224,0.0,370.95489464298043,0.0,1437.8728093439663,0.0,0.0,0.0,0.0,0.0,4669.742172035326,0.0,6090.199482845083,0.0,5326.0613537702775,0.0,6166.470912697349,0.0,0.0,0.0,4266.741741621969,0.0,5831.5923101032095,0.0,5006.743379679005,0.0,5888.571209456817,0.0,4428.967468354797,0,0,0,0,0,0,0,0,0.05657068525677455,0.0017898570485038751,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7572933312066661,-0.7572933312066661,-0.7467602763431426,-0.7467602763431426,-0.7719700926727376,-0.7719700926727376,-0.5267416125061831,-0.5267416125061831,-0.468158585788662,-0.468158585788662,-0.5789279626129731,-0.6257823937606357,-0.6167473503352963,-0.6436085337417402,-0.3311744734745773,-0.5990439278527517,-0.644372142037705,-0.6318347952131381,-0.6606618112131649,-0.3665559602567387,17.079286261054406,17.079286261054406,16.742536042479742,16.742536042479742,17.556423991865714,17.556423991865714,10.803851840030575,10.803851840030575,9.576106045368846,9.576106045368846,12.022631227091551,13.217540019872231,12.979708427741116,13.69716900009928,7.280848768090337,12.523968565921692,13.718022444975972,13.378839934554065,14.168899750896884,7.796895519550375,140.31811338904276,140.31811338904276,0.0,155.90901487671417,0.0,140.31811338904276,155.90901487671417,0,0
+2017/01/21 00:00:00,91.33825848912494,0,919.7272151204263,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.5770624675160954,11.818239760316274,0,0,348.2750288178138,518.2166575337964,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2183.618049241043,0.0,1229.3281510804495,0.0,2733.8694169628807,0.0,396.65163130032226,0.0,0.0,0.0,4090.2618483921697,0.0,6468.719221615274,0.0,4765.880584991087,0.0,6550.28337515541,0.0,6368.378592488067,0.0,4020.1498537100015,0.0,6385.73577553021,0.0,4701.8828811279345,0.0,6442.279608221354,0.0,10883.821317389278,0,0,0,0,0,0,0,0,0.04896695818109125,0.0015492804240642463,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8371836512305713,-0.8371836512305713,-0.8318863540062892,-0.8318863540062892,-0.8533437159196753,-0.8533437159196753,-0.7035534371107149,-0.7035534371107149,-0.5686864614709927,-0.5686864614709927,-0.6023175851726508,-0.6520705668618018,-0.63689884140883,-0.6684428420356666,-0.36114062013530546,-0.625584799220646,-0.6745587698238119,-0.6548989232051701,-0.6888030537087355,-0.4011469949283924,19.78704456915554,19.78704456915554,19.599165474938545,19.599165474938545,20.367429701260605,20.367429701260605,15.411031901835756,15.411031901835756,11.77413424622766,11.77413424622766,12.607217358690022,13.929671646810121,13.515020732267232,14.388326610519954,7.714459478977375,13.212300805030353,14.562637362746287,14.00807566169729,14.974889727626987,8.352984934673543,91.33825848912494,91.33825848912494,0.0,101.48695387680549,0.0,91.33825848912494,101.48695387680549,0,0
+2017/01/21 01:00:00,40.745979012624325,0,548.1596192838284,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.578525538711269e-09,9.56034494524574,0,0,0.0,494.92409051501227,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02918442415615543,0.0009233748370789996,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8180493188868695,-0.8180493188868695,-0.8283525883169898,-0.8283525883169898,-0.8590693036968551,-0.8590693036968551,-0.658726287059098,-0.658726287059098,-0.22447987024693714,-0.22447987024693714,-0.8594876679113602,-0.9144103406013071,-0.8998440585755951,-0.9324914512556514,-0.14636006700252338,-0.8511426611364469,-0.9080919480457083,-0.896861308975362,-0.9297887623735969,-0.2637460554724717,19.113957176299238,19.113957176299238,19.474486809633746,19.474486809633746,20.575668772027342,20.575668772027342,14.11472485934344,14.11472485934344,6.045417124810996,6.045417124810996,20.590937928918706,22.657900259694173,22.097716971190934,23.36514386196845,5.443852537597806,20.287739692217244,22.413856009577714,21.984069071208168,23.258595865060528,6.444289930090719,40.745979012624325,40.745979012624325,0.0,45.273310014027025,0.0,40.745979012624325,45.273310014027025,0,0
+2017/01/21 02:00:00,23.722145905053186,0,51.508508119757224,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250504813753927,0,0,0.0,16.018155607213085,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002742351124991229,8.676607801830157e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9110265762256495,-0.9110265762256495,-0.9285437678951871,-0.9285437678951871,-0.9567406407482555,-0.9567406407482555,-0.7531100578895707,-0.7531100578895707,-0.08456505693898483,-0.08456505693898483,-0.9765130906522327,-1.0477559909554715,-1.0560971282652476,-1.0853224721451618,-0.08100594667586496,-1.0050325287180826,-1.0760157366449283,-1.0831313280423076,-1.1120752725094942,-0.28786392295707364,22.52700381493564,22.52700381493564,23.209612619705183,23.209612619705183,24.33408830571547,24.33408830571547,16.94497503889049,16.94497503889049,5.148081795124469,5.148081795124469,25.14124290346939,28.173086409228503,28.540331752722366,29.84662243309745,5.135875820012146,26.332028751175514,29.427372083276822,29.747643959400918,31.068390600010872,6.721445313178492,23.722145905053186,23.722145905053186,0.0,26.357939894503538,0.0,23.722145905053186,26.357939894503538,0,0
+2017/01/21 03:00:00,28.34432384430309,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5249607578301968,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9265137359050779,-0.9265137359050779,-0.9491471500552751,-0.9491471500552751,-0.9756023524089313,-0.9756023524089313,-0.774825763630943,-0.774825763630943,-0.007196517581368266,-0.007196517581368266,-1.027134456922021,-1.1000281062359487,-1.1114944360034082,-1.1399102277855147,-0.05860417489957264,-1.075732618652387,-1.1496189853365113,-1.1605355189508266,-1.1886519859043745,-0.2833489445489652,23.129875639711685,23.129875639711685,24.0281698881097,24.0281698881097,25.10373075702921,25.10373075702921,17.650329253700065,17.650329253700065,5.001072078601069,5.001072078601069,27.27602104207115,30.515192794103314,31.041606834294882,32.36499654356396,5.0711057666999295,29.41466562261391,32.82315872924163,33.341875017832095,34.69474440672805,6.667694334687766,28.34432384430309,28.34432384430309,0.0,31.49369316033677,0.0,28.34432384430309,31.49369316033677,0,0
+2017/01/21 04:00:00,23.722145750057013,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250503263792242,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0001721661782865,-1.0001721661782865,-1.0288354003712448,-1.0288354003712448,-1.0516132340152056,-1.0516132340152056,-0.8612842775675784,-0.8612842775675784,0.05464990268143571,0.05464990268143571,-1.1170596924870082,-1.1876382388829498,-1.2049302431723297,-1.2282946145940683,-0.029681341924024492,-1.1750173189556508,-1.2474077548538827,-1.2636750204960117,-1.287066518816287,-0.29828859756489945,26.126899855643728,26.126899855643728,27.349423550262088,27.349423550262088,28.342602020626586,28.342602020626586,20.65659171054176,20.65659171054176,5.061832640479508,5.061832640479508,31.298697584751466,34.64555347465627,35.488740403351855,36.64153335506569,5.018237490561589,34.03570023575476,37.59562477640708,38.41513480348317,39.60500433001391,6.848839654008884,23.722145750057013,23.722145750057013,0.0,26.35793972228557,0.0,23.722145750057013,26.35793972228557,0,0
+2017/01/21 05:00:00,41.45507946286674,0,439.4747502836597,0,0,0,0.0,0.020005091656304055,4.633261998087618,9.319298099999997,23.111338313975452,0,2.2788573095852196,1.5671628558404251,0.5251557937217008,0,0,350.7488690022994,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14540779967687742,846.391786506767,0.1091473665173453,661.6193102476552,0.4241816858602988,1171.0388574920194,0.0,120.14006546045299,0.0,0.0,2.9070977099235056,4558.005307737204,1.7086106748821066,3150.59269075714,3.5201208005493987,5167.81119919413,1.8662482213209388,3303.442765799526,0.0,0.0,2.6961564593189906,4278.093308419312,2.0049354506016246,2921.1622750295896,2.219107105071271,4857.35565197836,2.4040783825817016,3050.7387966493657,0.0,0.0,0,0,0,0,0,0,0,0,0.023397961226979413,0.000740295183497257,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9132155829460147,-0.9132155829460147,-0.928233828992384,-0.928233828992384,-0.9357252134411356,-0.9357252134411356,-0.850046900208088,-0.850046900208088,0.18699913168395707,0.18699913168395707,-0.7676188879197869,-0.8047845467591606,-0.8068594752013638,-0.821940153546266,0.0015318589187773431,-0.810227914789188,-0.8508385575241962,-0.8474917542320115,-0.867296499883928,-0.3005588603651363,22.61162988424141,22.61162988424141,23.197427968137532,23.197427968137532,23.49301102810189,23.49301102810189,20.24814233557116,20.24814233557116,5.72498365663138,5.72498365663138,17.41400840361834,18.65637872510834,18.727465196569156,19.24958027508343,5.000048575627574,18.843254093805697,20.276745338347368,20.156001411294042,20.877268391536276,6.877192228747575,41.45507946286674,41.45507946286674,0.0,46.06119940318527,0.0,41.45507946286674,46.06119940318527,0,0
+2017/01/21 06:00:00,75.47078557710041,0,342.59736866968586,0,0,0,0.0,0.016786647174307404,4.633261998087618,9.319298099999997,57.911447091112116,0,1.7916795303502993,1.2731883743556924,0.5251238360203564,0,0,129.65525359442105,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.7749169965429,0.0,121.39293676945027,0.0,0.0,0.0,0.0,2.2106332990506417,3336.791378021612,1.6082943929297926,2348.0510386755896,2.7802827904401965,3890.6621058153924,1.6886218997071865,2491.39150257452,0.0,0.0,2.5266420760234496,3513.266078214847,1.617500388207759,2425.833650012635,2.473079997961463,4053.4011760791027,1.8815923299869155,2552.6434122731544,0.0,0.0,0,0,0,0,0,0,0,0,0.01824013767212903,0.0005771052415213865,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7987366604139721,-0.7987366604139721,-0.8260036637882365,-0.8260036637882365,-0.8302185936048755,-0.8302185936048755,-0.6960444480739674,-0.6960444480739674,0.5006400959160549,0.5006400959160549,-0.7156411322678554,-0.7426385681235463,-0.7433988135215958,-0.7550713263574002,0.06836545878060567,-0.7298788142793117,-0.7610451931336439,-0.754043424011411,-0.7728170621898841,-0.2456337994323968,18.450218144822756,18.450218144822756,19.391901486445505,19.391901486445505,19.540258185855123,19.540258185855123,15.187830460681226,15.187830460681226,10.238518336073085,10.238518336073085,15.77544319781093,16.612055619408338,16.63606782519676,17.007851718097356,5.0967710033147995,16.212743729690985,17.200382953846102,16.974877470514812,17.584239300529475,6.252254027308197,75.47078557710041,75.47078557710041,0.0,83.85642841900047,0.0,75.47078557710041,83.85642841900047,0,0
+2017/01/21 07:00:00,106.26302252606428,0,829.5346455957683,0,0,0,0.12616594362641204,0.011902369683004357,8.33396954093373,13.929299233552332,80.56906512710079,0,1.6059617848904761,1.1089900487663777,0.5776684775111929,0,0,103.14538315204167,495.70197111218977,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,400.12065118870305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4695958729500185,2751.5232824036016,1.0611600983910041,1941.0529947096081,2.0032122165672868,3203.862358300921,1.1169933278730846,2057.5326069526104,0.0,0.0,1.5493041245299537,2776.4425590423043,1.2189030179032063,1918.2681572642296,2.0528277718587256,3187.8417546721566,1.4303732529310764,2011.8000670862384,0.0,0.0,0,0,0,0,0,0,0,0,0.04416503897336093,0.0013973510475454598,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6906679496122278,-0.6906679496122278,-0.727845199614191,-0.727845199614191,-0.733319808200848,-0.733319808200848,-0.5924108574132996,-0.5924108574132996,0.7414223126627444,0.7414223126627444,-0.7027999989506065,-0.7275981280661706,-0.7278871750661771,-0.7390867982074784,0.14370988910267,-0.7137215666603496,-0.7425214719213341,-0.735000240657108,-0.7515542499237772,-0.14266820310910094,15.029512309898934,15.029512309898934,16.149748746533845,16.149748746533845,16.31973977969264,16.31973977969264,12.356716198112935,12.356716198112935,16.57369198107645,16.57369198107645,15.388526424966528,16.142107362325305,16.151047216611275,16.50020216574859,5.427909757863574,15.717152769778025,16.608359361435006,16.37217691760395,16.895214208987994,5.421723288853997,106.26302252606428,106.26302252606428,0.0,118.0700250289603,0.0,106.26302252606428,118.0700250289603,0,0
+2017/01/21 08:00:00,135.26775515511446,0,882.3579227254285,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,69.33401494192633,0,39.380909295966944,0.33272395971718605,0.5248629805636779,0,0,120.47388112935357,495.706397751994,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1720.9598488739598,0.0,1001.6801860143468,0.0,2124.802717690148,0.0,616.4489446628464,0.0,0.0,0.0,5849.378769285845,0.0,6144.968040361062,0.0,6500.783697832638,0.0,6198.706004380451,0.0,2255.2715254933983,0.0,5777.083809044781,0.0,6053.563892639374,0.0,6404.59431084029,0.0,6059.662217907049,0.0,2132.7039760650214,0,0,0,0,0,0,0,0,0.04697738937429756,0.0014863318538611535,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7553846286660657,-0.7553846286660657,-0.7696739444012813,-0.7696739444012813,-0.7822668331298499,-0.7822668331298499,-0.7000118833411322,-0.7000118833411322,0.24867083505897775,0.24867083505897775,-0.6784664354665948,-0.7077085324630925,-0.7005371074592769,-0.7184424371205044,-0.18687939754571983,-0.6896218571270604,-0.7223974923602895,-0.7083328789408847,-0.7304226490282716,-0.30634403377123665,17.017911184724085,17.017911184724085,17.481170081408123,17.481170081408123,17.896651146968907,17.896651146968907,15.305457460664101,15.305457460664101,6.283491730772283,6.283491730772283,14.674857842362101,15.535586122774887,15.32108030850749,15.860793795733471,5.724054154537399,14.998853874196769,15.9818724001328,15.55436605398367,16.229620150515373,6.950426684022702,135.26775515511446,135.26775515511446,0.0,150.29750572790496,0.0,135.26775515511446,150.29750572790496,0,0
+2017/01/21 09:00:00,144.17158521960428,0,976.7648701990743,0,0,0,0.0,0.0,12.671428636617847,0.0,87.89947186453183,0,39.380909295966944,0.26279696763643595,0.5250032523969823,0,0,161.650904549096,495.7007930370811,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,290.22021433071114,0.0,437.8833263645438,0.0,1198.8604852167086,0.0,0.0,0.0,0.0,0.0,4937.547206083394,0.0,5697.401047422319,0.0,5941.0049553670915,0.0,5550.710493265255,0.0,165.00991411709163,0.0,4617.818483401022,0.0,5502.337991010493,0.0,5680.915856808833,0.0,5271.274204369933,0.0,97.83565909285667,0,0,0,0,0,0,0,0,0.05200368518564984,0.0016453603497151442,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7292143324357304,-0.7292143324357304,-0.7705084174084652,-0.7705084174084652,-0.7794579226351854,-0.7794579226351854,-0.6763848592564455,-0.6763848592564455,-0.20995034468802753,-0.20995034468802753,-0.6313421825315718,-0.68731289026259,-0.6757826253655093,-0.6799739424410073,-0.2980098906302065,-0.6376939259223103,-0.7008882340877187,-0.6832344697849794,-0.6878174348485395,-0.3606703226177078,16.192140615206966,16.192140615206966,17.50849307447939,17.50849307447939,17.803390849378772,17.803390849378772,14.614996820354207,14.614996820354207,5.914222045884728,5.914222045884728,13.365652115962945,14.931351062281465,14.597713021291852,14.718327089339496,6.845373988943763,13.536502941809871,15.331531249342731,14.812681253512096,14.946081782979547,7.7073592390727725,144.17158521960428,144.17158521960428,0.0,160.19065024400476,0.0,144.17158521960428,160.19065024400476,0,0
+2017/01/21 10:00:00,184.63315938711904,0,1128.9106098862846,0,0,0,0.0,0.0,11.698532510417394,0.0,106.27511244621549,0,39.380909295966944,0.2540481517133211,23.59258178035164,0,0,173.17033111324312,583.091577391328,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,395.3566409946065,0.0,0.0,0.0,0.0,0.0,2945.066285514348,0.0,5492.5869470754715,0.0,5072.403613738693,0.0,5001.655492280122,0.0,0.0,0.0,2251.9963298071266,0.0,5245.635249153902,0.0,4711.980852779265,0.0,4602.686111787206,0.0,0.0,0,0,0,0,0,0,0,0,0.06010403706196061,0.0019016498366705842,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5215342917195065,-0.5215342917195065,-0.7450380346124498,-0.7450380346124498,-0.755211761094594,-0.755211761094594,-0.5296191210371282,-0.5296191210371282,-0.25167724611276454,-0.25167724611276454,-0.5364437172617844,-0.6772442890167298,-0.6628139002877101,-0.6389335129101203,-0.31160736479476064,-0.5245377402429838,-0.6881124545522327,-0.6667701159784287,-0.6384590446964351,-0.36593783965169563,10.688712806141169,10.688712806141169,16.687926650039543,16.687926650039543,17.012360257584277,17.012360257584277,10.867979964398842,10.867979964398842,6.314796269758958,6.314796269758958,11.021506456848357,14.639689186523043,14.229326803754674,13.570049761579654,7.018285289174258,10.754978777890031,14.95470029828661,14.340934088850304,13.557201402588646,7.7874228939571,184.63315938711904,184.63315938711904,0.0,205.1479548745767,0.0,184.63315938711904,205.1479548745767,0,0
+2017/01/21 11:00:00,210.39037534271424,0,1247.7586991734227,0,0,0,0.0,0.0,15.025710948003718,0.0,131.64086955684016,0,39.380909295966944,0.29464168273443686,20.61626865671466,0,0,204.99253146219166,581.391585048157,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1316.7332463873663,0.0,5697.129862546066,0.0,4107.6865474403785,0.0,5298.657708637648,0.0,0.0,0.0,639.1901501246866,0.0,5408.776110167873,0.0,3695.9029953814907,0.0,4887.020077102124,0.0,2187.261863169709,0,0,0,0,0,0,0,0,0.06643159736717989,0.0021018494340543513,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3890386262824867,-0.3890386262824867,-0.6583725292337896,-0.6583725292337896,-0.6836682231652011,-0.6836682231652011,-0.43481286169558214,-0.43481286169558214,-0.22777031594010907,-0.22777031594010907,-0.46092503556331643,-0.6813655431467286,-0.6596577147730053,-0.6519668021517886,-0.33764400581504955,-0.42390709473835464,-0.6888795795962086,-0.6605051119360176,-0.6516158092966589,-0.3819929324732988,8.152515819329807,8.152515819329807,14.10484080085034,14.10484080085034,14.825267997402108,14.825267997402108,8.943361052182766,8.943361052182766,6.076356996707958,6.076356996707958,9.434782948634549,14.758541420760324,14.140775053896334,13.92680181020502,7.371233011776212,8.746792188555148,14.97712820441349,14.164507734568616,13.917097806023023,8.038749342243364,210.39037534271424,210.39037534271424,0.0,233.76708371412693,0.0,210.39037534271424,233.76708371412693,0,0
+2017/01/21 12:00:00,217.89865922147058,0,1241.4331759131178,0,0,0,0.0,0.0,15.081367944243603,0.0,136.4899973586286,0,39.380909295966944,0.19731931442162184,23.317090105755504,0,0,127.16765693653883,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,917.728272729201,0.0,4754.955022767113,0.0,4356.6263955769255,0.0,4570.419831204179,0.0,0.0,0.0,1.7586447948367234,0.0,4431.963703844151,0.0,3900.8657010407314,0.0,4172.383896546491,0.0,0.0,0,0,0,0,0,0,0,0,0.06609482182344402,0.002091194090602467,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.35281690512036595,-0.35281690512036595,-0.575423954447796,-0.575423954447796,-0.5932717888189166,-0.5932717888189166,-0.35045689963487286,-0.35045689963487286,-0.13287552841026992,-0.13287552841026992,-0.4128004496326673,-0.6597489244312909,-0.6403860644283668,-0.6476073658835741,-0.32881134103164994,-0.371003289409827,-0.6625957965401327,-0.6374380517345907,-0.6463270738909943,-0.3647251661883887,7.590185036826213,7.590185036826213,11.937098812558688,11.937098812558688,12.378316681609519,12.378316681609519,7.555486253539527,7.555486253539527,5.365773085275478,5.365773085275478,8.55184648741006,14.14332802866511,13.609444821930992,13.806653933949832,7.248276964352158,7.865530402167565,14.22319367981018,13.529586542504163,13.771525071709362,7.768886117449554,217.89865922147058,217.89865922147058,0.0,242.10962135718952,0.0,217.89865922147058,242.10962135718952,0,0
+2017/01/21 13:00:00,205.7823675186485,0,1197.510653441055,0,0,0,0.0,0.0,14.970053803661084,0.0,124.80122689546741,0,39.380909295966944,0.17613206564429615,23.022070255454487,0,0,118.73548697702012,599.6554075446891,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,255.81574618335935,0.0,4109.746886305158,0.0,4132.436743432103,0.0,4255.657002284304,0.0,0.0,0.0,0.0,0.0,3753.1580077536637,0.0,3687.6772462874533,0.0,3883.5511113092916,0.0,0.0,0,0,0,0,0,0,0,0,0.06375635419332618,0.00201720660483194,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3128419982578318,-0.3128419982578318,-0.46073931221905084,-0.46073931221905084,-0.5347311448020162,-0.5347311448020162,-0.27577567596043606,-0.27577567596043606,-0.11773610058864725,-0.11773610058864725,-0.3739684183904682,-0.6102536197934726,-0.619999547992026,-0.629752539011602,-0.32695613624073866,-0.28966080212214823,-0.6046928754757481,-0.6144936136549728,-0.6260672865941647,-0.35699619955194534,7.034372854430643,7.034372854430643,9.431184115361532,9.431184115361532,10.98279074966814,10.98279074966814,6.5794654954633955,6.5794654954633955,5.2871232638104,5.2871232638104,7.911759278352392,12.810960462905058,13.064908740900293,13.323167297963366,7.222872089292139,6.743076603576981,12.667911941909153,12.920934816951714,13.225096929153509,7.6522139513589735,205.7823675186485,205.7823675186485,0.0,228.64707502072054,0.0,205.7823675186485,228.64707502072054,0,0
+2017/01/21 14:00:00,201.27604037853254,0,1167.9065694501035,0,0,0,0.0,0.0,15.137024940483485,0.0,122.5097643007467,0,39.380909295966944,0.20877719839636427,20.607589440484738,0,0,142.88631028504724,581.3908527582546,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1701.796893454853,0.0,4422.121855162484,0.0,4348.180996944314,0.0,4430.179022153543,0.0,0.0,0.0,802.676783962039,0.0,3997.0873744061155,0.0,3783.4541003799345,0.0,3990.063698598851,0.0,0.0,0,0,0,0,0,0,0,0,0.06218021083370554,0.001967338527596094,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4221080706781515,-0.4221080706781515,-0.5251291144188649,-0.5251291144188649,-0.5720651176853392,-0.5720651176853392,-0.2605093087956075,-0.2605093087956075,-0.14168572800926796,-0.14168572800926796,-0.4481961553590471,-0.6161023341501368,-0.6118547828154342,-0.6237295045367756,-0.3280142007944789,-0.4059810448310329,-0.6142919728044502,-0.6074868061092158,-0.621926438594445,-0.35798235274793816,8.714856432609437,8.714856432609437,10.768072449317756,10.768072449317756,11.85561006490515,11.85561006490515,6.408959463136867,6.408959463136867,5.415929853647114,5.415929853647114,9.191566721429751,12.9628649892569,12.852398759076408,13.16319033894699,7.237343166271074,8.434770356940874,12.91568711061133,12.739617239178543,13.115605502762264,7.666958797949263,201.27604037853254,201.27604037853254,0.0,223.64004486503615,0.0,201.27604037853254,223.64004486503615,0,0
+2017/01/21 15:00:00,185.3597329545391,0,1084.539475676014,0,0,0,0.0,0.0,15.137024940483485,0.0,108.75639138185811,0,39.380909295966944,0.14359766412516217,18.50983446965107,0,0,114.2500013521847,562.1504204295719,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2391.516886815958,0.0,5320.909976286333,0.0,4792.375743249093,0.0,5422.535976722988,0.0,0.0,0.0,1400.3856555396037,0.0,4777.785430300799,0.0,4075.099803445893,0.0,4874.613758235767,0.0,0.0,0,0,0,0,0,0,0,0,0.05774168501061089,0.0018269066644610954,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.41252683651891126,-0.41252683651891126,-0.49989005759368965,-0.49989005759368965,-0.593700202908102,-0.593700202908102,-0.3103646607325275,-0.3103646607325275,-0.18818984075341966,-0.18818984075341966,-0.4609193789207175,-0.6116422254341284,-0.6203309631959045,-0.6322833608596824,-0.33645172815880525,-0.4403884307383006,-0.6115731476249437,-0.6207206786452096,-0.6352506842809241,-0.36747514802295594,8.547110716032165,8.547110716032165,10.222708654072761,10.222708654072761,12.389077435420774,12.389077435420774,7.002157728925894,7.002157728925894,5.734259781129069,5.734259781129069,9.43467331574611,12.846891342944446,13.07361684863973,13.390857720098396,7.354442432597352,9.045829742621066,12.845101941400955,13.083862923548764,13.470576879828883,7.811012073684907,185.3597329545391,185.3597329545391,0.0,205.95525883837678,0.0,185.3597329545391,205.95525883837678,0,0
+2017/01/21 16:00:00,183.61818311388708,0,1243.4180972845295,0,0,0,0.0,0.0,15.591914349208635,0.0,106.31215624428707,0,39.380909295966944,0.35440239889180947,18.546825623078337,0,0,254.36745122323052,580.9115921670414,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2020.7248844684,0.0,4616.235397261131,0.0,4452.629328012536,0.0,5440.133869858081,0.0,0.0,0.0,1210.9379449302542,0.0,4469.03546035952,0.0,3909.158434151515,0.0,5007.277353329313,0.0,397.3965807410647,0,0,0,0,0,0,0,0,0.06620050050750247,0.002094537690501957,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47152586562269205,-0.47152586562269205,-0.4995341264652555,-0.4995341264652555,-0.6457395973619308,-0.6457395973619308,-0.35046906568850555,-0.35046906568850555,-0.21174696253946204,-0.21174696253946204,-0.46651510375504257,-0.6365577047900128,-0.6285929347799563,-0.6448503732899675,-0.34507098822053656,-0.45120722466910224,-0.5715338228969936,-0.6308240567033759,-0.6506856452774713,-0.3759062493280617,9.642662173918978,9.642662173918978,10.215214665088894,10.215214665088894,13.755429581832999,13.755429581832999,7.5556645215643385,7.5556645215643385,5.929965616272895,5.929965616272895,9.543799166688075,13.505812045001463,13.292244868348746,13.731095379756425,7.4771851703514045,9.248470967670784,11.84276515310738,13.351792640279086,13.891407112150858,7.942174323306389,183.61818311388708,183.61818311388708,0.0,204.02020345987452,0.0,183.61818311388708,204.02020345987452,0,0
+2017/01/21 17:00:00,200.3182608703391,0,1189.9657942741826,0,0,0,0.0,0.0,20.71091352360404,0.0,120.17895923267236,0,39.380909295966944,0.32219581279204274,16.293307802849338,0,0,186.70137038545786,541.889841225651,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2196.1559954782388,0.0,5186.178723378071,0.0,4141.895476943902,0.0,5343.04059954908,0.0,0.0,0.0,1642.1704864196158,0.0,4851.635304024598,0.0,3780.314466655039,0.0,5034.0969522274945,0.0,239.10168980942305,0,0,0,0,0,0,0,0,0.06335466030275441,0.0020044972901379883,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5610428143061935,-0.5610428143061935,-0.5628986973021309,-0.5628986973021309,-0.6071828801834939,-0.6071828801834939,-0.31805187498807574,-0.31805187498807574,-0.16489318019666666,-0.16489318019666666,-0.49400196737978047,-0.6439919682518693,-0.6277118846357699,-0.6465373475848387,-0.34469978611992635,-0.4890552875146902,-0.6281832225645577,-0.6320137123634143,-0.6549214549783579,-0.3756985421300013,11.591635991810577,11.591635991810577,11.635713763048827,11.635713763048827,12.731800659215324,12.731800659215324,7.102969702064115,7.102969702064115,5.563518549161017,5.563518549161017,10.099440893460951,13.707637085677959,13.26878946656177,13.777289718254934,7.471834013375059,9.9970390899081,13.281333280969463,13.383632362462336,14.008701650230137,7.938906609360714,200.3182608703391,200.3182608703391,0.0,222.57584541148788,0.0,200.3182608703391,222.57584541148788,0,0
+2017/01/21 18:00:00,238.91002801659087,0,1194.7093729500543,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,138.40412594678773,0,39.380909295966944,0.277951505881545,18.485903774482995,0,0,152.42415778129435,580.9106325056862,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2027.0775494830816,0.0,4909.252936173081,0.0,3754.8171881259404,0.0,5036.6037391828295,0.0,0.0,0.0,1634.1055049593426,0.0,4696.230800062589,0.0,3500.303374284541,0.0,4806.101013667481,0.0,0.0,0,0,0,0,0,0,0,0,0.06360721194505817,0.0020124878480574627,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5600824197950395,-0.5600824197950395,-0.5744012514626057,-0.5744012514626057,-0.5981339147635426,-0.5981339147635426,-0.2769393708348635,-0.2769393708348635,-0.13826429838336754,-0.13826429838336754,-0.5001423107179812,-0.6306609608255067,-0.6228441400824083,-0.6442228021190148,-0.34291718024561796,-0.5009342546133422,-0.6307933391040638,-0.628423067713989,-0.6544681579328935,-0.37369765172380737,11.568884985751978,11.568884985751978,11.912235186268035,11.912235186268035,12.500909638569397,12.500909638569397,6.592865303933749,6.592865303933749,5.396067980255623,5.396067980255623,10.228023058306192,13.347432358454597,13.139806996988213,13.713942119296561,7.446218001113351,10.244725396413429,13.3509713333399,13.287720030229352,13.996112165565194,7.9075222397339076,238.91002801659087,238.91002801659087,0.0,265.45558668510097,0.0,238.91002801659087,265.45558668510097,0,0
+2017/01/21 19:00:00,227.51416762627613,0,1149.20482581679,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,120.14191543460078,0,39.380909295966944,0.20180248074622276,25.428402921490587,0,0,123.6651881215712,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3147.0534259430424,0.0,3819.7568110600864,0.0,4769.0550032144865,0.0,3904.9261020687136,0.0,0.0,0.0,2760.093721828468,0.0,3584.511799908244,0.0,4483.033429992403,0.0,3654.9333499919608,0.0,0.0,0,0,0,0,0,0,0,0,0.06118451615016175,0.0019358354418652158,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5799069188367577,-0.5799069188367577,-0.5549616974711857,-0.5549616974711857,-0.5686568212422132,-0.5686568212422132,-0.24018569320070007,-0.24018569320070007,-0.12683184502161265,-0.12683184502161265,-0.4912819209164202,-0.6075586576464184,-0.6066435756084749,-0.6248651517982414,-0.32064750650108303,-0.492049875746307,-0.6127995698092755,-0.6109265236745358,-0.6329702293510929,-0.3477668016778285,12.046622638600638,12.046622638600638,11.44825416945082,11.44825416945082,11.773421667434945,11.773421667434945,6.197188127466163,6.197188127466163,5.333233260390017,5.333233260390017,10.043002127049292,12.74146575328723,12.717940314682664,13.193233690356493,7.137574733257736,10.058904199961177,12.876902159339096,12.828361743740928,13.409276933755976,7.516223082546674,227.51416762627613,227.51416762627613,0.0,252.79351958475127,0.0,227.51416762627613,252.79351958475127,0,0
+2017/01/21 20:00:00,219.7865504059339,0,1137.9240677594003,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.89738010901058,0,39.380909295966944,0.21058171711996465,26.93654179036481,0,0,147.87478257672595,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4117.727389903036,0.0,3539.513225665677,0.0,5652.045857801727,0.0,3593.7250208721657,0.0,0.0,0.0,3679.0435241776595,0.0,3254.5654354816315,0.0,5282.613649430769,0.0,3292.141626493044,0.0,0.0,0,0,0,0,0,0,0,0,0.06058392023545362,0.0019168330057737376,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.585107080830966,-0.585107080830966,-0.5804975057662812,-0.5804975057662812,-0.6246451030769229,-0.6246451030769229,-0.2436285671698842,-0.2436285671698842,-0.12809342504176668,-0.12809342504176668,-0.4830794439493347,-0.5879171885736182,-0.5913105737975451,-0.6057354082711327,-0.2998011441945394,-0.48494470227717995,-0.5944471809615354,-0.5952939152659469,-0.6130435412540298,-0.32528091825879724,12.174760849039842,12.174760849039842,12.061116342169512,12.061116342169512,13.187407968431046,13.187407968431046,6.231841451560882,6.231841451560882,5.339900304014776,5.339900304014776,9.874741361313,12.244493661181224,12.329157272381096,12.694628575213443,6.867705132360086,9.91274906501566,12.407858818715013,12.429177671746487,12.883235942449815,7.2000573462295705,219.7865504059339,219.7865504059339,0.0,244.20727822881543,0.0,219.7865504059339,244.20727822881543,0,0
+2017/01/21 21:00:00,200.41694983640937,0,1101.2346799894458,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,0.18993855843121407,23.595376095066808,0,0,146.67574731931558,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3256.1132538925176,0.0,3855.176059312223,0.0,4690.859781858613,0.0,3907.526684747561,0.0,0.0,0.0,3020.3059451082454,0.0,3696.5053291552317,0.0,4503.59561905647,0.0,3729.72440263334,0.0,0.0,0,0,0,0,0,0,0,0,0.05863055005450713,0.0018550297348599268,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5999115675389594,-0.5999115675389594,-0.5834687099421084,-0.5834687099421084,-0.6243649983465926,-0.6243649983465926,-0.26002988159764717,-0.26002988159764717,-0.17686769262886887,-0.17686769262886887,-0.482930397796261,-0.5817936331235052,-0.5844644783703494,-0.5996123092337265,-0.29872711442271416,-0.48964074394270357,-0.5918445798819217,-0.590941596989931,-0.6093078039739078,-0.3262160805619324,12.54598725884722,12.54598725884722,12.134262819850889,12.134262819850889,13.179995321659604,13.179995321659604,6.403763805550128,6.403763805550128,5.64845066608639,5.64845066608639,9.871710778709343,12.092977899593222,12.158862812777741,12.538389082558822,6.854299170642392,10.009103567945843,12.342526020166588,12.319927233108771,12.7865349080068,7.212778618278364,200.41694983640937,200.41694983640937,0.0,222.68549981823264,0.0,200.41694983640937,222.68549981823264,0,0
+2017/01/21 22:00:00,196.23559134522563,0,1078.8168508457695,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,0.20190426437122483,26.392168426884126,0,0,159.7482706881834,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3254.396052575019,0.0,4043.818590646837,0.0,4612.9379475198375,0.0,4091.784575471049,0.0,0.0,0.0,3042.728264747315,0.0,3903.6031736533773,0.0,4447.407006327519,0.0,3928.9895032619165,0.0,0.0,0,0,0,0,0,0,0,0,0.0574370082258623,0.0018172669033688883,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6416370702041735,-0.6416370702041735,-0.5715248985227583,-0.5715248985227583,-0.6264920819284325,-0.6264920819284325,-0.2977282273964261,-0.2977282273964261,-0.23707894714626074,-0.23707894714626074,-0.4849288981514101,-0.5807172907728456,-0.5815587455953207,-0.5976850655172853,-0.2975801669391302,-0.4950707692259014,-0.5927698697202329,-0.5895330456845065,-0.6086057151499885,-0.3254976941919832,13.643447045224505,13.643447045224505,11.842549496483926,11.842549496483926,13.236371354940786,13.236371354940786,6.841874898528502,6.841874898528502,6.166345241043686,6.166345241043686,9.91242639929412,12.066513990991297,12.087198458145025,12.489549431063494,6.840036894333636,10.121705113832121,12.365719787674948,12.284746328948557,12.768428673732913,7.203002907370788,196.23559134522563,196.23559134522563,0.0,218.03954593913957,0.0,196.23559134522563,218.03954593913957,0,0
+2017/01/21 23:00:00,140.31243520660658,0,953.6156629151012,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,0.3067560267120011,18.566327575469163,0,0,213.00031309882513,580.9087635098274,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,232.8611192179103,0.0,0.0,0.0,0.0,0.0,3244.9657805583975,0.0,4350.180577394518,0.0,4526.959434496994,0.0,4399.987667541326,0.0,0.0,0.0,3014.0967091177376,0.0,4205.703289101012,0.0,4346.675443462514,0.0,4226.703383928309,0.0,0.0,0,0,0,0,0,0,0,0,0.05077120424307894,0.0016063655118022863,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7060699529365189,-0.7060699529365189,-0.6815918601121776,-0.6815918601121776,-0.7433219292579899,-0.7433219292579899,-0.46104356462793233,-0.46104356462793233,-0.45480832406569266,-0.45480832406569266,-0.49947970198226715,-0.5941808017074572,-0.5920524386332398,-0.6094619181098326,-0.31563075518981315,-0.5153273305693489,-0.6098300007368831,-0.6032173596330921,-0.6233589241826585,-0.34543833758456804,15.486378692886333,15.486378692886333,14.765089424011634,14.765089424011634,16.633638323692992,16.633638323692992,9.43708050876134,9.43708050876134,9.317038008282594,9.317038008282594,10.214069261655027,12.401158426382864,12.34773307332891,12.790512235277788,7.070948571822981,10.553003766996113,12.800015762504884,12.630180026587269,13.153398810070144,7.482486553274413,140.31243520660658,140.31243520660658,0.0,155.90270578511843,0.0,140.31243520660658,155.90270578511843,0,0
+2017/01/22 00:00:00,93.3356663192195,0,828.1795785121783,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.36950222254488346,14.023207835382058,0,0,242.09498535160657,532.8490643917556,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1338.8930584904372,0.0,800.110082094667,0.0,2095.0099975607864,0.0,134.6773915962355,0.0,0.0,0.0,3480.7972536672914,0.0,5470.360362582624,0.0,4703.920806675094,0.0,5521.034602265349,0.0,0.0,0.0,3304.54279446085,0.0,5365.557372030411,0.0,4581.475150884865,0.0,5383.598733834311,0.0,3870.011839186217,0,0,0,0,0,0,0,0,0.04409289419812337,0.0013950684371460003,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8073820343518044,-0.8073820343518044,-0.8081423830376807,-0.8081423830376807,-0.8407293808019914,-0.8407293808019914,-0.686116608853407,-0.686116608853407,-0.5798123271124422,-0.5798123271124422,-0.5222601336421706,-0.6182597422243933,-0.6112763851576444,-0.6319468248835642,-0.33761420264703773,-0.5436712508073482,-0.6380419130586459,-0.6260581185927342,-0.6494535800607641,-0.3729555791669589,18.74539659163446,18.74539659163446,18.771508225837678,18.771508225837678,19.913456274463854,19.913456274463854,14.896468322435965,14.896468322435965,12.044302651646007,12.044302651646007,10.704691494917483,13.019272622960145,12.837416919508456,13.381840569411182,7.370812564815836,11.186297140301335,13.545913754558114,13.22485368899153,13.857435790328154,7.895926092286643,93.3356663192195,93.3356663192195,0.0,103.70629591024388,0.0,93.3356663192195,103.70629591024388,0,0
+2017/01/22 01:00:00,43.045932841097915,0,583.4512421572585,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.009158095430306743,0.00655463307327003,11.844586047794275,0,0,4.215891324180728,525.9998220642617,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.597588492392907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.031063376298677184,0.0009828235731307036,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7911612571970964,-0.7911612571970964,-0.8213742406577204,-0.8213742406577204,-0.8568756656923536,-0.8568756656923536,-0.6783660626045116,-0.6783660626045116,-0.23205090150514518,-0.23205090150514518,-0.7255812752768674,-0.9022099663113173,-0.891479855076719,-0.9133542041780565,-0.12845518001289907,-0.7398936787561027,-0.8836473156977497,-0.8770471132904821,-0.898528220338578,-0.24763222993556178,18.19417213039658,18.19417213039658,19.229814653191497,19.229814653191497,20.49572568044607,20.49572568044607,14.671967063115673,14.671967063115673,6.117286681519843,6.117286681519843,16.079828693508418,22.188119270402296,21.779942758562697,22.616995432238042,5.341824271023995,16.525565182643447,21.484956138520133,21.238332488465787,22.047536668249933,6.272765451860025,43.045932841097915,43.045932841097915,0.0,47.82881426788657,0.0,43.045932841097915,47.82881426788657,0,0
+2017/01/22 02:00:00,23.72221246869831,0,38.54009671930828,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525117045020514,0,0,0.0,3.0497442067641516,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002051903296242547,6.492078999853106e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8520823314310677,-0.8520823314310677,-0.8919054221448499,-0.8919054221448499,-0.9263977951456543,-0.9263977951456543,-0.7481600384068312,-0.7481600384068312,-0.09158875258689503,-0.09158875258689503,-0.8022609710023325,-1.0006184397822615,-1.0151895900554968,-1.028814640698275,-0.06279638811274127,-0.8351610951295083,-1.0236381259884615,-1.0352651311047751,-1.0500179854836227,-0.26560500725641256,20.32173617947889,20.32173617947889,21.796042135926385,21.796042135926385,23.12532661642871,23.12532661642871,16.787013799726907,16.787013799726907,5.17371126642557,5.17371126642557,18.570166911803696,26.145697291973548,26.76357716351086,27.348527042937036,5.081644499081477,19.715172084899606,27.12547669767315,27.627856004236833,28.272429859801235,6.464780571794407,23.72221246869831,23.72221246869831,0.0,26.35801385410923,0.0,23.72221246869831,26.35801385410923,0,0
+2017/01/22 03:00:00,28.34439018246063,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250270959877359,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.857258341930325,-0.857258341930325,-0.9042874422674193,-0.9042874422674193,-0.9374055963269223,-0.9374055963269223,-0.762901517612389,-0.762901517612389,-0.015125690070787165,-0.015125690070787165,-0.8411299374737796,-1.0446164005279337,-1.0634321034541838,-1.0760796534599046,-0.04100255294347016,-0.889515779027135,-1.0901556204630187,-1.105803054375833,-1.119656655223469,-0.2535224148689787,20.50965724491728,20.50965724491728,22.267687799379033,22.267687799379033,23.559619903902785,23.559619903902785,17.260520954744578,17.260520954744578,5.00473604362017,5.00473604362017,19.927769851548334,28.035507504763885,28.865342189570455,29.430241087332192,5.034804500284736,21.705736754313904,30.065533800028405,30.779763054191704,31.419018866953877,6.334197445588316,28.34439018246063,28.34439018246063,0.0,31.493766869400698,0.0,28.34439018246063,31.493766869400698,0,0
+2017/01/22 04:00:00,23.72221101038591,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525115586708119,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.918501012823937,-0.918501012823937,-0.971552306093599,-0.971552306093599,-1.0005384543626672,-1.0005384543626672,-0.837299723143583,-0.837299723143583,0.046523222092484696,0.046523222092484696,-0.9225541433147884,-1.1249913631167898,-1.1480226346361553,-1.1570706155702941,-0.012902627767132295,-0.9747651596456889,-1.1780055635184274,-1.1970169081072313,-1.2077358782315912,-0.2660601792039413,22.81675865504181,22.81675865504181,24.937303501290444,24.937303501290444,26.14232768045072,26.14232768045072,19.79117442824854,19.79117442824854,5.044808724729151,5.044808724729151,22.974822836144938,31.66688391746058,32.74761990123908,33.17683046945956,5.003446199540377,25.069276163472082,34.17966313733716,35.10179482870062,35.62636111455902,6.469819965493656,23.72221101038591,23.72221101038591,0.0,26.35801223376212,0.0,23.72221101038591,26.35801223376212,0,0
+2017/01/22 05:00:00,40.490859533822,0,395.1285917791508,0,0,0,0.0,0.015734423200347288,4.633261998087618,9.319298099999997,23.111338313975452,0,1.6859073286429689,1.2002616272877136,0.5250577426278932,0,0,306.40271049779045,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.385802716169,0.0,167.05808278558638,0.1799102492712892,421.7043237248718,0.0,0.0,0.0,0.0,1.6616883077950761,2497.4202694387072,1.9430614146747551,2326.2789599981497,2.2317802885729883,3902.5831909427934,2.1030529400095466,2449.3282933484397,0.0,0.0,1.748923985107922,2585.5369031650966,2.1891420222328226,2304.8382334781154,2.2903502211279876,3864.5922959454674,1.3865137715548976,2403.8177152888143,0.0,0.0,0,0,0,0,0,0,0,0,0.021036938900704107,0.0006655940828622279,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8520289566006607,-0.8520289566006607,-0.8833774241749843,-0.8833774241749843,-0.8959691372852672,-0.8959691372852672,-0.7840342832919681,-0.7840342832919681,0.17806702215763576,0.17806702215763576,-0.6792300049189192,-0.7712636535054714,-0.7775920374813551,-0.7858246586790603,0.018054912058988546,-0.7145839571566932,-0.8118466768479233,-0.8103925442168292,-0.8251752150271419,-0.2376767649188663,20.319804139620743,20.319804139620743,21.474836312541,21.474836312541,21.95014611764003,21.95014611764003,17.955505287050926,17.955505287050926,5.657286797857495,5.657286797857495,14.69686322347367,17.533247227974073,17.741626060757298,18.015258177365382,5.006748044683036,15.743320881484934,18.899068767564344,18.848925443441914,19.36282946086523,6.172248719665134,40.490859533822,40.490859533822,0.0,44.989843926468886,0.0,40.490859533822,44.989843926468886,0,0
+2017/01/22 06:00:00,75.11238218825402,0,323.71869087847324,0,0,0,0.0,0.015883342208829164,4.633261998087618,9.319298099999997,57.911447091112116,0,1.5431958118008766,1.111740296300886,0.5775555487436773,0,0,110.77657580320842,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7762494585269906,2182.830686497974,1.6640502443685818,2028.5266315620238,2.1562020114553206,3413.694142078096,1.774530115422408,2140.8012686769825,0.0,0.0,2.0881112929715755,2379.503612862287,1.5995228864092041,2129.980064425967,2.9244771834934227,3577.136450345493,1.9001990161816593,2222.987717510728,0.0,0.0,0,0,0,0,0,0,0,0,0.017235022882962376,0.0005453041102149562,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.699257429773473,-0.699257429773473,-0.7547117000803837,-0.7547117000803837,-0.7714431035834443,-0.7714431035834443,-0.6368459970662208,-0.6368459970662208,0.4920395472061894,0.4920395472061894,-0.6504507805009353,-0.719850815063376,-0.7219297919352536,-0.7299459236802295,0.08457568067426606,-0.6657093814399248,-0.7318329550518458,-0.7260347836444689,-0.7397057407356721,-0.19563679112772056,15.283036997727166,15.283036997727166,16.996310065605215,16.996310065605215,17.539132586780326,17.539132586780326,13.51359391464753,13.51359391464753,10.058690157493245,10.058690157493245,13.884926187811857,15.903832148835633,15.96751928388511,16.214825598357663,5.148119015744683,14.310943601926155,16.273444362102154,16.09381739146295,16.51965515135086,5.793618527249379,75.11238218825402,75.11238218825402,0.0,83.45820243139335,0.0,75.11238218825402,83.45820243139335,0,0
+2017/01/22 07:00:00,105.75391634803941,0,805.7990410197635,0,0,0,0.1224892782008305,0.011739410249854016,8.33396954093373,13.929299233552332,80.56906512710079,0,1.3350685263339321,0.92724360358518,0.525041628082793,0,0,77.63163256115132,497.48011712707535,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,387.9036168652995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2880491820220261,1488.4305037508916,1.1929623246919618,1475.8822605681867,1.877044678686919,2498.9988177495848,1.245125494024478,1569.2595710942217,0.0,0.0,1.8144087882121767,1661.3415994990778,1.1864181850946807,1531.7786636870699,1.7386883559552189,2572.907760743875,1.3967132411665564,1602.0605560909405,0.0,0.0,0,0,0,0,0,0,0,0,0.04290133780461389,0.0013573684234386815,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5420183740978932,-0.5420183740978932,-0.6034671079981686,-0.6034671079981686,-0.6168745214184805,-0.6168745214184805,-0.4879735555181151,-0.4879735555181151,0.7324631695872158,0.7324631695872158,-0.6367039405506534,-0.7009888464941988,-0.7025927212148992,-0.7105408422049772,0.16016783197157744,-0.6485002261442924,-0.7090136783096653,-0.7026383702937418,-0.7163246938447984,-0.0703349683047946,11.14841127224085,11.14841127224085,12.636559952556127,12.636559952556127,12.983031402842059,12.983031402842059,9.974786809405984,9.974786809405984,16.293055444040192,16.293055444040192,13.509758934439489,15.334526860218205,15.382339259022032,15.620914971868842,5.531648248236706,13.831194443024742,15.574863210314632,15.383701708418542,15.796238881496308,5.1024282306086945,105.75391634803941,105.75391634803941,0.0,117.50435149782156,0.0,105.75391634803941,117.50435149782156,0,0
+2017/01/22 08:00:00,135.1612902000575,0,831.7411431597707,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,69.33401494192633,0,39.380909295966944,0.22619047227044517,0.5249315129534405,0,0,68.07542708180328,497.4880722338864,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1033.3816215546651,0.0,618.7310886514442,0.0,1593.7208118396188,0.0,390.7453652452282,0.0,0.0,0.0,4354.186834664188,0.0,5260.59606240502,0.0,5520.564115586456,0.0,5285.7907460505185,0.0,2250.4233584773497,0.0,4254.677002518522,0.0,5121.118134352774,0.0,5322.382121181092,0.0,5099.065167969409,0.0,1587.04994109879,0,0,0,0,0,0,0,0,0.04428251453803587,0.0014010678925245514,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6801249371182715,-0.6801249371182715,-0.7032277369323636,-0.7032277369323636,-0.7228893999984014,-0.7228893999984014,-0.6398751828116536,-0.6398751828116536,0.2762798842454462,0.2762798842454462,-0.6122550929333924,-0.6766295658707352,-0.6714786847787332,-0.6852682294774538,-0.17311752080222612,-0.6258072453397996,-0.6864184147766671,-0.6734767426857161,-0.692510599550664,-0.2592933883745641,14.722686466096675,14.722686466096675,15.401300110948256,15.401300110948256,15.996978562444482,15.996978562444482,13.595578624715742,13.595578624715742,6.585264384444926,6.585264384444926,12.86277622042897,14.6220242570202,14.474649112608105,14.871767663648427,5.621208351204501,13.218199078874918,14.905262939278089,14.531680493311029,15.083630925665773,6.395801110026696,135.1612902000575,135.1612902000575,0.0,150.1792113333972,0.0,135.1612902000575,150.1792113333972,0,0
+2017/01/22 09:00:00,151.81675614091407,0,929.817499192909,0,0,0,0.0,0.0,11.36510937780451,0.0,96.91714705112861,0,39.380909295966944,0.19654477991231623,0.5250704336474661,0,0,116.44337908200238,493.96094749800955,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,196.74434848277164,0.0,0.0,0.0,0.0,0.0,3542.380752888535,0.0,4661.337763274994,0.0,4682.668299592207,0.0,4668.428213072054,0.0,161.96924883161086,0.0,3467.3264903067934,0.0,4565.254197081351,0.0,4518.83650038953,0.0,4503.422113378114,0.0,157.95712418351502,0,0,0,0,0,0,0,0,0.049504172379050915,0.0015662775068185039,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6625034271308554,-0.6625034271308554,-0.6957963398802828,-0.6957963398802828,-0.7393403569313354,-0.7393403569313354,-0.6131624009672594,-0.6131624009672594,-0.20635690994359543,-0.20635690994359543,-0.5832372648864984,-0.6524267113399272,-0.6439205024048685,-0.6588249350044039,-0.2869674347627557,-0.5976291024211602,-0.6642890410594603,-0.6473282920060893,-0.6664954885820499,-0.34141300406559494,14.220596853447091,14.220596853447091,15.180497102024262,15.180497102024262,16.508169373408293,16.508169373408293,12.886322614981808,12.886322614981808,5.883138546591155,5.883138546591155,12.128551240723624,13.939525139516263,13.705685524372626,14.117482067893036,6.710704129095703,12.48813363896889,14.270862174641522,13.798990601739874,14.33316478590119,7.424708064192885,151.81675614091407,151.81675614091407,0.0,168.68528460101564,0.0,151.81675614091407,168.68528460101564,0,0
+2017/01/22 10:00:00,150.7847802508359,0,1074.226010338143,0,0,0,0.0,0.0,10.045965191392305,0.0,97.06762091869685,0,39.380909295966944,0.33321292822914955,0.5250967140964058,0,0,209.71764246184307,491.8596664945865,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.04558055024745,0.0,0.0,0.0,0.0,0.0,2850.573435428325,0.0,5501.546163977913,0.0,3969.3028315987494,0.0,5482.381258318583,0.0,3.6272269387006753,0.0,2660.57729754178,0.0,5337.189015897669,0.0,3719.2390884628285,0.0,5246.872117778128,0.0,2356.8136693258098,0,0,0,0,0,0,0,0,0.0571925884767701,0.0018095336328822302,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6333644297058207,-0.6333644297058207,-0.6722583706125019,-0.6722583706125019,-0.7237604781444563,-0.7237604781444563,-0.583871916312747,-0.583871916312747,-0.2751391974890001,-0.2751391974890001,-0.5815453027134638,-0.6573827721104469,-0.6425565013270045,-0.6614779611452662,-0.31172991652049953,-0.5951435412268797,-0.6692291856492094,-0.6463977311534804,-0.6689688432004363,-0.36586897399542234,13.41985713917532,13.41985713917532,14.496883442626654,14.496883442626654,16.023754351008165,16.023754351008165,12.144218660548674,12.144218660548674,6.572160673613993,6.572160673613993,12.086867766529082,14.077215614967315,13.668480371177381,14.191792255491464,7.019879282019076,12.42538932153154,14.41064756138833,13.773461924422051,14.40325458180682,7.7863685438804,150.7847802508359,150.7847802508359,0.0,167.53864472315098,0.0,150.7847802508359,167.53864472315098,0,0
+2017/01/22 11:00:00,204.09564805052617,0,1248.7857560928974,0,0,0,0.0,0.0,13.47613703358734,0.0,124.87761316689259,0,39.380909295966944,0.30122961014248756,22.627783741482514,0,0,187.7557658851346,599.6554075446891,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2768.143345366173,0.0,5260.420966405805,0.0,3817.3238111951987,0.0,5234.428155798609,0.0,0.0,0.0,2370.00279637356,0.0,4967.424076064693,0.0,3353.949721026501,0.0,4869.079132781681,0.0,482.78967607985294,0,0,0,0,0,0,0,0,0.06648627863832063,0.002103579511357254,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5784970698254889,-0.5784970698254889,-0.5855892142460667,-0.5855892142460667,-0.6364249810538776,-0.6364249810538776,-0.49771101929515676,-0.49771101929515676,-0.23369655562619482,-0.23369655562619482,-0.5725949590985399,-0.6495023788695707,-0.6314630449039997,-0.6535035618150474,-0.32275785798298123,-0.583758249561923,-0.6597757616091845,-0.6321580757086588,-0.6592711048896039,-0.36729430734305557,12.012084459285091,12.012084459285091,12.186700634219577,12.186700634219577,13.50223064682379,13.50223064682379,10.176915688867467,10.176915688867467,6.133226506151814,6.133226506151814,11.868432034480378,13.858780051964658,13.368886768649134,13.969351935869483,7.165920443118864,12.141411324000273,14.144079274739767,13.387500253531712,14.12995777549304,7.808231942502388,204.09564805052617,204.09564805052617,0.0,226.7729422783624,0.0,204.09564805052617,226.7729422783624,0,0
+2017/01/22 12:00:00,222.18335551953732,0,1226.3722840736225,0,0,0,0.0,0.0,13.146986369893432,0.0,143.25325374857618,0,39.380909295966944,0.16741268943164234,22.802818213214742,0,0,112.10676509704363,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2220.3070348550477,0.0,4475.177051326615,0.0,3338.06452242918,0.0,4453.009898212438,0.0,0.0,0.0,1695.9348026860869,0.0,4136.854422534058,0.0,2820.347942275524,0.0,4059.227770571997,0.0,0.0,0,0,0,0,0,0,0,0,0.06529296878620629,0.002065824019441939,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5031618444203505,-0.5031618444203505,-0.5406470190625967,-0.5406470190625967,-0.5518315470852606,-0.5518315470852606,-0.34092586116418344,-0.34092586116418344,-0.1443944569810843,-0.1443944569810843,-0.5303276652680173,-0.6202417500871225,-0.6029967761369901,-0.6254683147673155,-0.3206532206073089,-0.5328062787853437,-0.6241894570892804,-0.5984104580331296,-0.6262855239488487,-0.35742003910191317,10.291851283989743,10.291851283989743,11.117068061597962,11.117068061597962,11.375075901288085,11.375075901288085,7.417762458506303,7.417762458506303,5.43199993261652,5.43199993261652,10.883825580852573,13.07127225873765,12.624547380735123,13.209213016055486,7.137651228832098,10.939427402101657,13.175351561227643,12.507913199054244,13.230888154303486,7.658546077699114,222.18335551953732,222.18335551953732,0.0,246.87039502170813,0.0,222.18335551953732,246.87039502170813,0,0
+2017/01/22 13:00:00,199.4775329313833,0,1165.0868496525886,0,0,0,0.0,0.0,13.195685805097062,0.0,124.80122689546741,0,39.380909295966944,0.18454649399437814,18.48318923840318,0,0,123.77845228316424,562.1886384500785,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2849.574084383778,0.0,4006.0571658491776,0.0,3840.1572730396083,0.0,4000.787915456961,0.0,0.0,0.0,2254.393583590029,0.0,3562.0455845078677,0.0,3175.3819984620645,0.0,3512.7909130752796,0.0,0.0,0,0,0,0,0,0,0,0,0.0620300868631006,0.0019625887098111932,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4354193109445295,-0.4354193109445295,-0.5145510528921442,-0.5145510528921442,-0.5044667225141868,-0.5044667225141868,-0.2617306228134869,-0.2617306228134869,-0.12315245356827204,-0.12315245356827204,-0.5160658481228776,-0.5975343224867,-0.5832780101807196,-0.605493555725049,-0.3094068683533783,-0.516990668742332,-0.5990201106678856,-0.5775273693833769,-0.6050140453101776,-0.34103740563267637,8.954441745866973,8.954441745866973,10.536148495163886,10.536148495163886,10.319556308342243,10.319556308342243,6.422238820535171,6.422238820535171,5.314166768100407,5.314166768100407,10.569063352803184,12.485736142399844,12.129556580642642,12.688426500026395,6.989772301831124,10.589207505144401,12.52336460148139,11.988379004885772,12.676137424387989,7.419351951737369,199.4775329313833,199.4775329313833,0.0,221.64170325709256,0.0,199.4775329313833,221.64170325709256,0,0
+2017/01/22 14:00:00,199.41614071663753,0,1125.024173990308,0,0,0,0.0,0.0,13.244385240300696,0.0,124.7641830973959,0,39.380909295966944,0.1268761318632813,18.46781174865637,0,0,100.48054915438024,580.9142184291262,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3259.319188874888,0.0,4317.314131020916,0.0,4189.558031900244,0.0,4332.34058316,0.0,0.0,0.0,2655.6444034375168,0.0,3863.4168586959872,0.0,3522.067013365397,0.0,3842.881219887555,0.0,0.0,0,0,0,0,0,0,0,0,0.059897120336149835,0.001895103135698787,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.40867556460515775,-0.40867556460515775,-0.5210817708470664,-0.5210817708470664,-0.48404364573376957,-0.48404364573376957,-0.24423552382952649,-0.24423552382952649,-0.129573692315475,-0.129573692315475,-0.5071329544825874,-0.5819215807038112,-0.5707029046556507,-0.5927383795071888,-0.3014775458636288,-0.5102872193940297,-0.58368340717247,-0.5663464602161511,-0.5934658457144362,-0.33176527734737477,8.480792100585361,8.480792100585361,10.678762547385105,10.678762547385105,9.894369811179558,9.894369811179558,6.238002234481286,6.238002234481286,5.347807419027205,5.347807419027205,10.37639428626629,12.096127075446617,11.82270091062793,12.364929827841962,6.8887273227826995,10.444032893734033,12.139563175978964,11.717995682670932,12.383189947308352,7.289029031054213,199.41614071663753,199.41614071663753,0.0,221.5734896851528,0.0,199.41614071663753,221.5734896851528,0,0
+2017/01/22 15:00:00,181.27740253751068,0,1044.9765069035732,0,0,0,0.0,0.0,13.244385240300696,0.0,111.01081017850728,0,39.380909295966944,0.12680874882687537,14.082513871454557,0,0,115.2914317162703,521.5460212930453,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2675.1041076000047,0.0,4711.779585474641,0.0,3575.934433982778,0.0,4762.841030571797,0.0,0.0,0.0,2199.9165702351,0.0,4345.986550763841,0.0,3057.974781201967,0.0,4371.0486463489215,0.0,0.0,0,0,0,0,0,0,0,0,0.05563532324861141,0.001760262846566697,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4068167592656016,-0.4068167592656016,-0.5611288654270007,-0.5611288654270007,-0.49297639938724114,-0.49297639938724114,-0.26005277883695105,-0.26005277883695105,-0.18043692186631835,-0.18043692186631835,-0.51197614339444,-0.5831619927365472,-0.5737892223791572,-0.5976173963163207,-0.3119130417635608,-0.5191049355348533,-0.5868280342266164,-0.5722448660828998,-0.6010726027810122,-0.3426668047383014,8.449010899398047,8.449010899398047,11.59367642907823,11.59367642907823,10.078123662220435,10.078123662220435,6.404011727991872,6.404011727991872,5.674923709918758,5.674923709918758,10.48042626169476,12.12669418266674,11.897377435372078,12.487837507234943,7.022262321020705,10.635398801425268,12.217425630147815,11.859958545777204,12.575502766799872,7.442630925625352,181.27740253751068,181.27740253751068,0.0,201.41933615278964,0.0,181.27740253751068,201.41933615278964,0,0
+2017/01/22 16:00:00,179.55043372939332,0,1167.4745764732252,0,0,0,0.0,0.0,13.6553329413235,0.0,108.75639138185811,0,39.380909295966944,0.27469883661113503,14.051126071179358,0,0,219.99659861519797,539.3389239637698,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1127.4052880172903,0.0,4063.350117435892,0.0,2029.781762655166,0.0,4179.978099376262,0.0,0.0,0.0,1185.1965916919335,0.0,4045.900342096869,0.0,2069.1609376759893,0.0,4156.650701404638,0.0,0.0,0,0,0,0,0,0,0,0,0.062157211207636474,0.0019666108354593303,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4366888577465878,-0.4366888577465878,-0.5288414150034337,-0.5288414150034337,-0.51446337010178,-0.51446337010178,-0.19393051288431887,-0.19393051288431887,-0.20886395501916996,-0.20886395501916996,-0.5095875660305501,-0.5783714790812408,-0.5699371617931692,-0.5989032951270659,-0.32126313733820316,-0.5186534529305958,-0.5814440509870142,-0.5700360213186088,-0.6033567745738265,-0.3506853913638759,8.977689327156213,8.977689327156213,10.850612663756593,10.850612663756593,10.534246282355753,10.534246282355753,5.779813302935764,5.779813302935764,5.904767688245045,5.904767688245045,10.428992718641851,12.009011947684925,11.80423698192088,12.520402708951991,7.1458242300750925,10.625518825564185,12.08437725070307,11.806619296310785,12.633741105490401,7.55883537226633,179.55043372939332,179.55043372939332,0.0,199.50048192154813,0.0,179.55043372939332,199.50048192154813,0,0
+2017/01/22 17:00:00,195.8646764925427,0,1153.2913603400577,0,0,0,0.0,0.0,13.885894462274942,0.0,124.87761316689259,0,39.380909295966944,0.23112090423768927,14.057163460716223,0,0,151.5784101897514,540.3383674872325,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2615.575650244203,0.0,4794.585737388554,0.0,3422.9010474105366,0.0,4873.085602980782,0.0,0.0,0.0,2196.9999494296026,0.0,4482.00673621806,0.0,3007.0166988066885,0.0,4545.778503454788,0.0,0.0,0,0,0,0,0,0,0,0,0.0614020862751039,0.0019427192089594978,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3912766105033325,-0.3912766105033325,-0.4575678496702511,-0.4575678496702511,-0.5172890241884831,-0.5172890241884831,-0.19154810340635356,-0.19154810340635356,-0.1641544053490951,-0.1641544053490951,-0.5242063192981387,-0.5886961498890136,-0.5766211865263674,-0.6050994708728614,-0.3199183883284447,-0.5406131802475916,-0.5971903155556921,-0.5803020251766509,-0.6132913003041984,-0.34971030212331816,8.189096239367387,8.189096239367387,9.369958675567347,9.369958675567347,10.595714084198306,10.595714084198306,5.760741181726587,5.760741181726587,5.558474465317559,5.558474465317559,10.74764737469765,12.263884245673651,11.96626318945951,12.678326012709775,7.127825274973105,11.11629568360712,12.477037624284023,12.056317341035808,12.889670699891354,7.544558478330416,195.8646764925427,195.8646764925427,0.0,217.62741832504744,0.0,195.8646764925427,217.62741832504744,0,0
+2017/01/22 18:00:00,221.56851461921772,0,1239.5344855070841,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,129.38645076019097,0,39.380909295966944,0.3061841250287073,18.467802485493216,0,0,197.2451678780451,580.9147349659653,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2858.02012243428,0.0,4580.512009146625,0.0,3638.7032306339042,0.0,4609.378139988703,0.0,0.0,0.0,2507.935764061379,0.0,4302.26582894947,0.0,3250.2507566324352,0.0,4301.552041117973,0.0,0.0,0,0,0,0,0,0,0,0,0.06599373413985414,0.002087995746757611,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.37376438111071897,-0.37376438111071897,-0.44151324264610503,-0.44151324264610503,-0.4812434135086404,-0.4812434135086404,-0.18247081951652508,-0.18247081951652508,-0.13715441540474302,-0.13715441540474302,-0.5252056728161554,-0.5923929641423468,-0.573397176409978,-0.6026644664927299,-0.314189275297945,-0.542758725539174,-0.6032736233430944,-0.5777966598633971,-0.6120152028258667,-0.3435025473629867,7.908566150983859,7.908566150983859,9.0666636266603,9.0666636266603,9.837475841593132,9.837475841593132,5.690247039673437,5.690247039673437,5.389729590760638,5.389729590760638,10.769768642782708,12.356267603105906,11.887868581299045,12.616065771363083,7.052001836125541,11.165366356300638,12.63161707024696,11.994958031812331,12.856556580958781,7.454614823298854,221.56851461921772,221.56851461921772,0.0,246.18723846579746,0.0,221.56851461921772,246.18723846579746,0,0
+2017/01/22 19:00:00,211.81840910631058,0,1155.832161748502,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,115.6330778413024,0,39.380909295966944,0.21233235351744276,22.56492166298596,0,0,130.29252405328344,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3427.7582971561847,0.0,4111.526360036241,0.0,4152.552356264521,0.0,4118.522275222855,0.0,0.0,0.0,3032.8675653938044,0.0,3813.0456082981545,0.0,3718.873339928013,0.0,3783.140395238263,0.0,0.0,0,0,0,0,0,0,0,0,0.061537360424077994,0.001946999188739178,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.45579878132267704,-0.45579878132267704,-0.45845449306085817,-0.45845449306085817,-0.48384343087134646,-0.48384343087134646,-0.1797075711752788,-0.1797075711752788,-0.14084201567462704,-0.14084201567462704,-0.517078685358675,-0.5809071712281613,-0.5626334115658581,-0.5899321140868032,-0.29969183975191427,-0.5345163281872451,-0.5911781102193638,-0.5663548261357573,-0.5984501698146587,-0.32708557804923477,9.33599474521948,9.33599474521948,9.387031815804093,9.387031815804093,9.890290696582241,9.890290696582241,5.669470871686727,5.669470871686727,5.4109867339540045,5.4109867339540045,10.5911265838525,12.071178908551474,11.629403998255768,12.294704982411957,6.866338573353616,10.977943409693253,12.32584298583653,11.718195964945181,12.50891918713289,7.22463990689603,211.81840910631058,211.81840910631058,0.0,235.35378789590064,0.0,211.81840910631058,235.35378789590064,0,0
+2017/01/22 20:00:00,200.5319438767976,0,1143.813802014882,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,104.13412371906301,0,39.380909295966944,0.22853811876723412,22.76120479046252,0,0,153.7645168322076,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3686.93559700491,0.0,3849.426124912421,0.0,4365.551848894755,0.0,3845.1377819396307,0.0,0.0,0.0,3279.7846422640805,0.0,3546.129351464634,0.0,3919.3021587234894,0.0,3502.2444194144946,0.0,0.0,0,0,0,0,0,0,0,0,0.06089749404978089,0.0019267542626800731,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4253069851292854,-0.4253069851292854,-0.5569355152021483,-0.5569355152021483,-0.5556578243944503,-0.5556578243944503,-0.1911083479574163,-0.1911083479574163,-0.16436100051379923,-0.16436100051379923,-0.5105909496575165,-0.5713036868139898,-0.5541150166618853,-0.5794926060091878,-0.28968905802629774,-0.5280058419583263,-0.5812273678805926,-0.5575049500484397,-0.5874501575302866,-0.31574670142711847,8.771738688147622,8.771738688147622,11.494617484920894,11.494617484920894,11.464586322415457,11.464586322415457,5.757246700063433,5.757246700063433,5.559882729481004,5.559882729481004,10.450568654026824,11.837205041602118,11.428418119982993,12.036463943222316,6.743417844105991,10.831982291965062,12.079048932977642,11.508024426177073,12.23288054378989,7.07247638710173,200.5319438767976,200.5319438767976,0.0,222.81327097421956,0.0,200.5319438767976,222.81327097421956,0,0
+2017/01/22 21:00:00,200.52218456719862,0,1052.9551032298978,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,0.19643534410439595,18.501570801221437,0,0,135.8680959501928,562.1834821542637,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3524.807408599043,0.0,3499.178325664476,0.0,4171.741129940756,0.0,3489.023720458876,0.0,0.0,0.0,3159.553691381263,0.0,3223.5969144285436,0.0,3764.9049722070868,0.0,3172.8417352048136,0.0,0.0,0,0,0,0,0,0,0,0,0.05606010962682442,0.0017737027914728257,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42466122637142745,-0.42466122637142745,-0.5525526646796272,-0.5525526646796272,-0.5998046538381648,-0.5998046538381648,-0.20352851126804006,-0.20352851126804006,-0.20809985831578715,-0.20809985831578715,-0.5054663220747408,-0.5632404164973398,-0.547569582071005,-0.5708611027254208,-0.28419810175572024,-0.5225682755781214,-0.5725046693211918,-0.5505924966384016,-0.5780535771836386,-0.3092172738853593,8.7602206120619,8.7602206120619,11.391896903803186,11.391896903803186,12.54327227089722,12.54327227089722,5.859052728504551,5.859052728504551,5.898147693064331,5.898147693064331,10.340829479192166,11.643845979369615,11.276120349518237,11.826518622420835,6.677737894441705,10.711481828199027,11.866246193830335,11.34622608672754,12.001237703369469,6.987325217153881,200.52218456719862,200.52218456719862,0.0,222.80242729688734,0.0,200.52218456719862,222.80242729688734,0,0
+2017/01/22 22:00:00,187.11348583518117,0,1105.1632880206107,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,0.27685866095482636,23.274659264540567,0,0,186.09470786302438,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3226.4022336598605,0.0,4718.251408617842,0.0,3867.297093051268,0.0,4703.478734617745,0.0,0.0,0.0,2785.521405009246,0.0,4398.290461121463,0.0,2990.9847418862673,0.0,4340.932911819711,0.0,0.0,0,0,0,0,0,0,0,0,0.05883971205603251,0.0018616474747902478,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5445697661492086,-0.5445697661492086,-0.5934153985035174,-0.5934153985035174,-0.643644522065761,-0.643644522065761,-0.29447939705497544,-0.29447939705497544,-0.2981940647111298,-0.2981940647111298,-0.5223462307099133,-0.5840562368488194,-0.563201426430168,-0.5901725041308252,-0.30685572192094734,-0.5423144019448878,-0.5961685570255751,-0.6114474451605887,-0.5998636539003711,-0.33376116036267184,11.20694183283861,11.20694183283861,12.381922931419325,12.381922931419325,13.698151240594186,13.698151240594186,6.80175718271343,6.80175718271343,6.847663788900277,6.847663788900277,10.706588349052566,12.148772192974477,11.642917839744243,12.300707192171387,6.9569722855423635,11.155187874516187,12.451231842775016,12.841846257922398,12.54477046895839,7.316773555460713,187.11348583518117,187.11348583518117,0.0,207.9038731502013,0.0,187.11348583518117,207.9038731502013,0,0
+2017/01/22 23:00:00,131.1321955301595,0,965.8597137397917,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,0.4161808002673026,18.48415465298536,0,0,243.96956209013646,562.1835653432065,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.875643080781522,0.0,723.992604036436,0.0,0.0,0.0,0.0,0.0,3321.035541704289,0.0,5502.6743936932235,0.0,4057.158312764539,0.0,5486.465658601297,0.0,248.82924116977108,0.0,3017.0147798637263,0.0,5237.701623117429,0.0,3716.2868614720273,0.0,5176.988294411167,0.0,5059.8347682397125,0,0,0,0,0,0,0,0,0.05142308657823554,0.00162699061448717,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6707550504327835,-0.6707550504327835,-0.7161909653792987,-0.7161909653792987,-0.7420752522581334,-0.7420752522581334,-0.48175198756109416,-0.48175198756109416,-0.406583183615375,-0.406583183615375,-0.5419861470182262,-0.6057689337662758,-0.5825973562148243,-0.6109386541483691,-0.3286937694331645,-0.5633486077501699,-0.621076460118616,-0.6005122717877585,-0.623622455124172,-0.3613289479394056,14.454036751773174,14.454036751773174,15.792168937265856,15.792168937265856,16.594279385558806,16.594279385558806,9.847783696828145,9.847783696828145,8.44502776831061,8.44502776831061,11.147673766436341,12.69548850453296,12.112771733021233,12.828675617873472,7.246662624796144,11.646421764939817,13.09322258939629,12.561250887236952,13.160361251485696,7.717305368429223,131.1321955301595,131.1321955301595,0.0,145.70243947795498,0.0,131.1321955301595,145.70243947795498,0,0
+2017/01/23 00:00:00,88.97100138618079,0,830.1590567812418,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.4652570706225285,9.562788054265672,0,0,261.00497503055544,515.9185529818701,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1302.9275267669511,0.0,926.7432200994442,0.0,2087.4787316442557,0.0,146.16138442485965,0.0,0.0,0.0,3724.1859902409797,0.0,5758.050073487105,0.0,4460.390585834229,0.0,5738.216155160395,0.0,2499.364328745097,0.0,3439.2977807144935,0.0,5500.98362034979,0.0,4099.987635080084,0.0,5436.249926208793,0.0,7404.180075904745,0,0,0,0,0,0,0,0,0.044198283087381066,0.0013984028681399978,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7839163831197606,-0.7839163831197606,-0.8055115378249896,-0.8055115378249896,-0.8275645326708126,-0.8275645326708126,-0.6858196577618358,-0.6858196577618358,-0.585972057799173,-0.585972057799173,-0.561003989138185,-0.624573180568404,-0.600596774446586,-0.6288794168002103,-0.3497840935423009,-0.5833731675177023,-0.6419079171468987,-0.6132133515204891,-0.6433835210072006,-0.3858663658720067,17.951575207789674,17.951575207789674,18.681264538925248,18.681264538925248,19.446753935558448,19.446753935558448,14.887819018855623,14.887819018855623,12.196188742402754,12.196188742402754,11.590715477672063,13.18550429782448,12.56339931880629,13.299878876263492,7.545637490503054,12.13190475124317,13.65081757844358,12.88764593963056,13.691028931064977,8.101031073746043,88.97100138618079,88.97100138618079,0.0,98.85666820686754,0.0,88.97100138618079,98.85666820686754,0,0
+2017/01/23 01:00:00,39.370994698509094,0,566.9769190568453,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.008960969185538962,0.006467899575779059,9.558244833324588,0,0,3.7668556086042018,509.97453467942483,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.05407558168377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030186271134170238,0.0009550725771184375,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7746774942570067,-0.7746774942570067,-0.8250369579032253,-0.8250369579032253,-0.841977544521021,-0.841977544521021,-0.6738744472188507,-0.6738744472188507,-0.24187978954133862,-0.24187978954133862,-0.8682566023509312,-0.912975236302216,-0.8868442522857702,-0.9170064344959462,-0.1523496029016825,-0.8235628961836583,-0.8891994875864819,-0.8576632558510644,-0.8905075458240183,-0.27580418551168523,17.645445043383546,17.645445043383546,19.35798052992122,19.35798052992122,19.95808049707847,19.95808049707847,14.54305295708923,14.54305295708923,6.214177385438418,6.214177385438418,20.912646933377317,22.60232873478263,21.605055103175985,22.75863964953564,5.48096131827235,19.306332374734794,21.69380147547153,20.52440499778757,21.743187637600855,6.5797930973393335,39.370994698509094,39.370994698509094,0.0,43.7455496650101,0.0,39.370994698509094,43.7455496650101,0,0
+2017/01/23 02:00:00,23.722111046352886,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250156226750946,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8435920742543728,-0.8435920742543728,-0.8992955271034643,-0.8992955271034643,-0.9145477168096907,-0.9145477168096907,-0.748540597092586,-0.748540597092586,-0.10652428279319175,-0.10652428279319175,-0.9437482530264466,-1.0309868337927015,-1.0131872392593175,-1.040974283499099,-0.09414306620134506,-0.9652643925057833,-1.0496587097949275,-1.0223897109508906,-1.053838147316751,-0.3040899652481633,20.01589941167674,20.01589941167674,22.076789830698942,22.076789830698942,22.66322423174809,22.66322423174809,16.79912065470559,16.79912065470559,5.235016306049474,5.235016306049474,23.81204749830708,27.442419528752495,26.678195627433567,27.876356493496957,5.1835394975845475,24.680178410280945,28.256638640209204,27.071832539597807,28.44062529621695,6.921724129654365,23.722111046352886,23.722111046352886,0.0,26.35790116261432,0.0,23.722111046352886,26.35790116261432,0,0
+2017/01/23 03:00:00,28.344289104787375,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5249260183144835,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8643476376772419,-0.8643476376772419,-0.9241156104856395,-0.9241156104856395,-0.9363590457608135,-0.9363590457608135,-0.7747436889460173,-0.7747436889460173,-0.030004462487290023,-0.030004462487290023,-0.9961285582942876,-1.0907782250427842,-1.0738872483769597,-1.1016172714280468,-0.07265134570232303,-1.040633041199887,-1.1292858986673235,-1.1023138226945377,-1.133855996369782,-0.2960741707398983,20.768844631968676,20.768844631968676,23.035892951969785,23.035892951969785,23.518122383454397,23.518122383454397,17.647625477656504,17.647625477656504,5.018636746341457,5.018636746341457,25.956924127156555,30.093792547773162,29.331913558348447,30.587885095403408,5.1092875846776025,27.861469862919378,31.867099608583345,30.619774100779807,32.08082367106644,6.821394282317527,28.344289104787375,28.344289104787375,0.0,31.49365456087486,0.0,28.344289104787375,31.49365456087486,0,0
+2017/01/23 04:00:00,23.722111579002416,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525016155324623,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9519253534870167,-0.9519253534870167,-1.016477836364993,-1.016477836364993,-1.0240828197796974,-1.0240828197796974,-0.8733263874978847,-0.8733263874978847,0.03092183098368484,0.03092183098368484,-1.0974529339187447,-1.1956116917614972,-1.1845006291042093,-1.206370290554721,-0.046393737224404645,-1.150241920285715,-1.2413139917288494,-1.220952635600304,-1.2452749545504496,-0.31436183010075264,24.139831979279947,24.139831979279947,26.818588142463767,26.818588142463767,27.144599083101426,27.144599083101426,21.10009240252215,21.10009240252215,5.019793832258173,5.019793832258173,30.397580690437735,35.03327190312969,34.49349731139979,35.55934893751862,5.04455962175733,32.85265769656631,37.29038572056428,36.277648095394305,37.48868166331126,7.05426525076885,23.722111579002416,23.722111579002416,0.0,26.357901754447127,0.0,23.722111579002416,26.357901754447127,0,0
+2017/01/23 05:00:00,43.73031720856564,0,417.42122213971066,0,0,0,0.0,0.01776540916229114,4.633261998087618,9.319298099999997,25.555573451546493,0,2.1749840146623325,1.5043119503140687,0.5251222847928146,0,0,328.69534085835033,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10061426800707524,522.6183914745353,0.13091341763913533,562.531408395593,0.18769700725165422,916.996227496825,0.0,104.33895230919224,0.0,0.0,2.613746568484635,4268.425228543374,1.706346616624342,3084.2733067759605,2.2923275897371695,4879.029043796983,1.8733573560842163,3118.480607371748,0.0,0.0,2.7292592350449927,4177.666340108766,1.9945666166232061,2932.4842589747195,2.33783162470038,4656.532389976752,1.7987488620943395,2932.4875166398306,0.0,0.0,0,0,0,0,0,0,0,0,0.022223815053400243,0.0007031460170126092,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8812606202618689,-0.8812606202618689,-0.9126696418103833,-0.9126696418103833,-0.9150206442465004,-0.9150206442465004,-0.8459408236709793,-0.8459408236709793,0.1657264805483273,0.1657264805483273,-0.7508857718817603,-0.8002148927853423,-0.7904039437710249,-0.8050800921223557,-0.01523320285818585,-0.7891715387814577,-0.8380008812979794,-0.8193924842099813,-0.8397444282822482,-0.3021483432024777,21.395568385674267,21.395568385674267,22.590505931080344,22.590505931080344,22.681558203295282,22.681558203295282,20.10020596496318,20.10020596496318,5.569235327511905,5.569235327511905,16.873865496544354,18.50046531830965,18.16870896281621,18.66649291893839,5.004803610813255,18.127323804607457,19.816133732399948,19.160704031166432,19.87828825559906,6.897172453898364,43.73031720856564,43.73031720856564,0.0,48.589241342850706,0.0,43.73031720856564,48.589241342850706,0,0
+2017/01/23 06:00:00,76.42252377633952,0,342.46726686304993,0,0,0,0.0,0.01828310545862769,5.555297838843742,9.319298099999997,57.911447091112116,0,1.8098679897375893,1.2832390719155218,0.5250905792718886,0,0,129.52515178778512,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,120.11714006710191,0.0,186.43741268498462,0.0,0.0,0.0,0.0,2.260550147725098,3315.6514099574347,2.0909758446142632,2458.2816555076024,2.799955357349404,3885.340290450772,1.6959689687857917,2490.535979179027,0.0,0.0,2.663952125296646,3455.719449882244,1.8974807152783342,2469.0322006828333,2.7887260100528692,3904.776981751483,2.085496289525281,2466.8804637315175,0.0,0.0,0,0,0,0,0,0,0,0,0.01823321095557646,0.0005768860850379829,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7769629408836312,-0.7769629408836312,-0.8206977000058162,-0.8206977000058162,-0.8194088617142898,-0.8194088617142898,-0.7229019197265434,-0.7229019197265434,0.4914433392321049,0.4914433392321049,-0.6992764622652403,-0.7358089562421121,-0.7278095863417664,-0.7389522000875286,0.10453389161319585,-0.7069133434936166,-0.7438071534263115,-0.7271252947503768,-0.7459922696776325,-0.21162102125979768,17.720835024589803,17.720835024589803,19.206202804527194,19.206202804527194,19.161274493965365,19.161274493965365,15.997363171017597,15.997363171017597,10.046342509026815,10.046342509026815,15.283602293385115,16.39745575707647,16.148647143751333,16.495974005649316,5.22631164783752,15.511691703915687,16.648975395951055,16.127490978393524,16.718168133301106,5.92885760174569,76.42252377633952,76.42252377633952,0.0,84.91391530704391,0.0,76.42252377633952,84.91391530704391,0,0
+2017/01/23 07:00:00,102.44041295025731,0,832.1628945024203,0,0,0,0.2421904497697312,0.0132669682059042,11.110595677687485,13.929299233552332,73.80580873715317,0,1.6563638878864315,1.1052556497902717,0.5776323462120099,0,0,102.27555978207607,499.2000433888074,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,768.1241338501437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4842399885462023,2745.553387423451,1.9139461324415,2043.1929491124663,1.9832318926428338,3217.865603563838,1.1049337736929676,2067.0344266261905,0.0,0.0,1.6714064610867656,2711.368922071715,1.1773540339158899,1943.7053199372017,2.3286482997793123,3061.9971858428726,1.6032076237987285,1935.9293934977097,0.0,0.0,0,0,0,0,0,0,0,0,0.04430496889191257,0.0014017783326292345,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6772882682302661,-0.6772882682302661,-0.7411831096968505,-0.7411831096968505,-0.7325591167745635,-0.7325591167745635,-0.6290947369286164,-0.6290947369286164,0.7443613077521282,0.7443613077521282,-0.6867484553988322,-0.7206750227912146,-0.7128280698577372,-0.7234915654857209,0.18623533333951772,-0.6889360727719835,-0.723267052378105,-0.7070238923985045,-0.7235152760707763,-0.09398451005273815,14.640953617502433,14.640953617502433,16.566154409057674,16.566154409057674,16.296042635669565,16.296042635669565,13.30561894697503,13.30561894697503,16.666503577947793,16.666503577947793,14.914884822349293,15.929058571188136,15.690074582730446,16.015484847814264,5.719064526191076,14.978780862026682,16.008583086883206,15.515011925907189,16.016213861914736,5.182921539639565,102.44041295025731,102.44041295025731,0.0,113.82268105584146,0.0,102.44041295025731,113.82268105584146,0,0
+2017/01/23 08:00:00,164.8261770744751,0,1077.931749509586,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.5876100172662503,27.051772705621485,0,0,219.41417305934618,592.3399326061589,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2609.5112836770786,0.0,1638.3105917125556,0.0,3072.478531148907,0.0,1324.7814690929647,0.0,0.0,0.0,6681.640249650681,0.0,7587.045356591528,0.0,7359.22879442474,0.0,7551.213697495159,0.0,3216.865706232998,0.0,6503.54301326487,0.0,7386.653439159391,0.0,7085.227990345352,0.0,7298.236547716206,0.0,7636.012545496437,0,0,0,0,0,0,0,0,0.05738988477512343,0.0018157759502352652,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7658881890751036,-0.7658881890751036,-0.7943857029136712,-0.7943857029136712,-0.8012217106722713,-0.8012217106722713,-0.7366169000602643,-0.7366169000602643,0.15048882233918764,0.15048882233918764,-0.687805686470488,-0.7328212715133625,-0.7129938728046111,-0.7346488191904613,-0.19303539055388916,-0.6937639795355574,-0.7409264938947749,-0.7122548715621959,-0.7396899848740527,-0.3144481560452297,17.357586910318474,17.357586910318474,18.302860007539977,18.302860007539977,18.534741393522154,18.534741393522154,16.42273852022349,16.42273852022349,5.469272696050211,5.469272696050211,14.945738651337493,16.3042065014844,15.695096783329916,16.361200937575816,5.772619677708832,15.120526519802894,16.558070867235585,15.672721433447734,16.519159750301938,7.055398068046017,164.8261770744751,164.8261770744751,0.0,183.1401967494168,0.0,164.8261770744751,183.1401967494168,0,0
+2017/01/23 09:00:00,166.28074163272717,0,1215.9604637091352,0,0,0,0.0,0.0,12.629686762450465,0.0,83.2008179303116,0,39.380909295966944,0.5396099662327084,27.097742475311204,0,0,296.8918835515488,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1433.2288678388993,0.0,1321.008063493593,0.0,2518.2942042966165,0.0,681.5373025141392,0.0,0.0,0.0,6102.6291249816995,0.0,7550.00102093824,0.0,7167.070999872118,0.0,7277.165007519336,0.0,133.48116753184766,0.0,5806.8047190308025,0.0,7331.739744432607,0.0,6855.214555329064,0.0,6965.102877220665,0.0,7295.67161818802,0,0,0,0,0,0,0,0,0.06473863575789623,0.0020482853088282043,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7596702856410079,-0.7596702856410079,-0.8147969354147935,-0.8147969354147935,-0.826392876017667,-0.826392876017667,-0.7492876047265175,-0.7492876047265175,-0.32424872525541903,-0.32424872525541903,-0.6622780485374596,-0.7396652534342684,-0.712581158599134,-0.720226574980577,-0.31319520828821756,-0.6680986699129643,-0.7518332770041504,-0.7164869204547923,-0.725629410467997,-0.3923511051038072,17.1559359967617,17.1559359967617,19.00107737697843,19.00107737697843,19.405569714602237,19.405569714602237,16.822903530392665,16.822903530392665,7.186059193918453,7.186059193918453,14.21426222596915,16.518382157621346,15.682597793024982,15.915329357925756,7.038987137518006,14.378565451566757,16.90413096088777,15.801177183496705,16.08131302844461,8.2067351833726,166.28074163272717,166.28074163272717,0.0,184.75637959191909,0.0,166.28074163272717,184.75637959191909,0,0
+2017/01/23 10:00:00,182.57503955403917,0,1322.6824432199157,0,0,0,0.0,0.0,11.82401678637145,0.0,106.27511244621549,0,39.380909295966944,0.6094606241869053,21.053565198844133,0,0,350.3783342935133,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1114.6625325648995,0.0,2213.743921069318,0.0,135.40861197239724,0.0,0.0,0.0,5267.049466131551,0.0,7739.800566655448,0.0,7383.989424856885,0.0,7191.084541799851,0.0,318.39158722085955,0.0,4554.868394027479,0.0,7409.854665091967,0.0,6912.220163017244,0.0,6723.825360815745,0.0,7951.975006802002,0,0,0,0,0,0,0,0,0.07042059299673188,0.0022280584752140528,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6252582361390494,-0.6252582361390494,-0.8102697973404704,-0.8102697973404704,-0.8204729871121853,-0.8204729871121853,-0.7233366674344537,-0.7233366674344537,-0.34163777566274184,-0.34163777566274184,-0.5934868481166252,-0.7387100536277466,-0.7104102116167063,-0.6969888153931806,-0.3340684985702138,-0.588397504499908,-0.7511339539417194,-0.7157315325666896,-0.6998940310390551,-0.4043796477298765,13.203645705726345,13.203645705726345,18.84469680513763,18.84469680513763,19.198364388913916,19.198364388913916,16.010722892391513,16.010722892391513,7.427916221038757,7.427916221038757,12.383717469435169,16.488369363960246,15.616971862169237,15.215767537840037,7.321060848845704,12.256446991633823,16.8817892787592,15.77819225003762,15.301953567125906,8.407566151381104,182.57503955403917,182.57503955403917,0.0,202.8611550600435,0.0,182.57503955403917,202.8611550600435,0,0
+2017/01/23 11:00:00,213.04622262999905,0,1351.7264299678093,0,0,0,0.0,0.0,17.146892480886187,0.0,133.89528835348938,0,39.380909295966944,0.6024408013044635,18.588716495897742,0,0,328.13154992873325,562.2202973760023,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,514.0933939975405,0.0,1192.9369035052046,0.0,0.0,0.0,0.0,0.0,3883.044871173186,0.0,7747.007042688927,0.0,5849.291629019357,0.0,7373.876057877998,0.0,4191.48954737829,0.0,3139.458504746214,0.0,7407.924972066397,0.0,5360.946306438361,0.0,6926.702818977537,0.0,11081.995654560847,0,0,0,0,0,0,0,0,0.07196691636426436,0.002276983068686479,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5632033105640568,-0.5632033105640568,-0.776533770187979,-0.776533770187979,-0.7775292151016582,-0.7775292151016582,-0.7072852834064417,-0.7072852834064417,-0.26464414948327375,-0.26464414948327375,-0.5814650515343196,-0.7352249854429916,-0.703580005063788,-0.7091233961892107,-0.35059151425904367,-0.5739815447756272,-0.7460920679687383,-0.7067869415938807,-0.714262624076743,-0.41318950210889355,11.64296268912095,11.64296268912095,17.706661015661197,17.706661015661197,17.73954908438283,17.73954908438283,15.52286463111463,15.52286463111463,6.454171171277423,6.454171171277423,12.084893770223388,16.37919917380988,15.41182594356387,15.578168409749438,7.557459099350353,11.90204454464083,16.721333181399757,15.507895999567737,15.733566703512807,8.558585838167488,213.04622262999905,213.04622262999905,0.0,236.71802514444337,0.0,213.04622262999905,236.71802514444337,0,0
+2017/01/23 12:00:00,228.77669079071245,0,1343.24808277929,0,0,0,0.0,0.0,17.146892480886187,0.0,147.76209134187457,0,39.380909295966944,0.45348968525826,20.60133278427215,0,0,247.2202428316742,581.4177285157259,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,221.8924074224371,0.0,0.0,0.0,0.0,0.0,5273.34018107327,0.0,6923.651623830161,0.0,7049.8593103063995,0.0,6688.269742163569,0.0,0.0,0.0,4552.3082085307215,0.0,6525.342520544356,0.0,6473.219801900113,0.0,6219.566857295871,0.0,1931.1029216929435,0,0,0,0,0,0,0,0,0.07151552287997928,0.0022627012934909128,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5150955807444532,-0.5150955807444532,-0.7347549297065341,-0.7347549297065341,-0.7372106782600394,-0.7372106782600394,-0.6499329243828329,-0.6499329243828329,-0.1527296935119712,-0.1527296935119712,-0.5734115237002877,-0.717123263590249,-0.6873906959082625,-0.7008813718920932,-0.33991042063786675,-0.5644390388162364,-0.724652330665483,-0.6881492614479988,-0.704996959434363,-0.3925345278741929,10.547969067097426,10.547969067097426,16.36451453835275,16.36451453835275,16.441337327780843,16.441337327780843,13.87064477015177,13.87064477015177,5.48336662114049,5.48336662114049,11.888216449193308,15.82055889987258,14.933621963958856,15.33132695181051,7.40331688008682,11.672410770566202,16.051202544596507,14.95577581516855,15.454218870719743,8.209751189639874,228.77669079071245,228.77669079071245,0.0,254.1963231007916,0.0,228.77669079071245,254.1963231007916,0,0
+2017/01/23 13:00:00,208.14254687540648,0,1272.2823809510617,0,0,0,0.0,0.0,17.02830042034,0.0,129.49988082968767,0,39.380909295966944,0.3506726566618512,18.450808470295716,0,0,212.23416252636596,580.92845950535,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5975.374723097584,0.0,5354.5328645172685,0.0,7306.749369975566,0.0,5186.021991434294,0.0,0.0,0.0,5505.88752696355,0.0,5073.177238687766,0.0,6915.759599116453,0.0,4852.4096360605745,0.0,0.0,0,0,0,0,0,0,0,0,0.06773725634987598,0.0021431595741474687,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5084188820475405,-0.5084188820475405,-0.6503129064667532,-0.6503129064667532,-0.6639340624419011,-0.6639340624419011,-0.5609486184226474,-0.5609486184226474,-0.10609524134358868,-0.10609524134358868,-0.574195387681471,-0.6853680429970346,-0.6622036706739164,-0.6741241642421377,-0.32295132663759635,-0.5695706751466044,-0.6891326466038635,-0.6614117468137497,-0.6757917221966753,-0.3646175662887711,10.403917184352693,10.403917184352693,13.881122767036643,13.881122767036643,14.260858470297762,14.260858470297762,11.589402794733033,11.589402794733033,5.23312605369162,5.23312605369162,11.90723577862812,14.874672129978194,14.212172199518847,14.550197178600499,7.16852851205212,11.795409094841176,14.984532529722856,14.189933908518654,14.597973978861603,7.767244385164801,208.14254687540648,208.14254687540648,0.0,231.2694965282294,0.0,208.14254687540648,231.2694965282294,0,0
+2017/01/23 14:00:00,205.88850901654948,0,1180.7667361778833,0,0,0,0.0,0.0,17.209505874145613,0.0,129.2730206906943,0,39.380909295966944,0.2505925471500268,16.342505406138265,0,0,195.15395042539475,541.9833793456871,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106.4160257716318,0.0,701.6657352987609,0.0,0.0,0.0,0.0,0.0,7327.732147072775,0.0,6776.967248352582,0.0,8642.954513890843,0.0,6663.54463193542,0.0,0.0,0.0,6350.052380681471,0.0,6142.721897796875,0.0,7736.6187588319735,0.0,5992.566791236875,0.0,0.0,0,0,0,0,0,0,0,0,0.06286489563590378,0.001989001477472969,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5749112741750921,-0.5749112741750921,-0.6810722078344498,-0.6810722078344498,-0.6981487588190387,-0.6981487588190387,-0.6142792327031098,-0.6142792327031098,-0.11727405076816086,-0.11727405076816086,-0.576422573830072,-0.6795598245928498,-0.6642816208635101,-0.6745984596732101,-0.3206082705924758,-0.5756960323661076,-0.6844627313943532,-0.6660992707214023,-0.6790893126140094,-0.3592536014774235,11.924629022344078,11.924629022344078,14.75005767990433,14.75005767990433,15.250134674963576,15.250134674963576,12.915355608537311,12.915355608537311,5.284872715189948,5.284872715189948,11.961420714135755,14.706376128993583,14.270653009162046,14.56377385546699,7.13704951379313,11.943721125473417,14.848344299236288,14.321961402633605,14.692806702794542,7.686027444506053,205.88850901654948,205.88850901654948,0.0,228.7650100183883,0.0,205.88850901654948,228.7650100183883,0,0
+2017/01/23 15:00:00,190.51961922525837,0,1370.9176392436812,0,0,0,0.0,0.0,17.556656219909858,0.0,115.5196477718057,0,39.380909295966944,0.6116744222122913,14.0187563129093,0,0,422.38578382005585,540.3928015293678,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,423.2975927879303,0.0,1245.0039729510281,0.0,73.02782473523857,0.0,0.0,0.0,6087.963648982939,0.0,7695.386113265191,0.0,7268.841060346405,0.0,7570.096566525837,0.0,391.76719844015963,0.0,5295.505438803833,0.0,7195.977419314808,0.0,6569.595703635804,0.0,7032.581928970041,0.0,7176.593663635552,0,0,0,0,0,0,0,0,0.07298867056116842,0.0023093106592550964,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6630688988782772,-0.6630688988782772,-0.7245878672249925,-0.7245878672249925,-0.7318058858095488,-0.7318058858095488,-0.6817892230857638,-0.6817892230857638,-0.17176310833808822,-0.17176310833808822,-0.5983761570102322,-0.6937802173819551,-0.6741326433573182,-0.6869444919399453,-0.3337984870100304,-0.6071440966785987,-0.703760053324573,-0.6802594597734284,-0.6957783759910572,-0.37684872922148427,14.236500031495396,14.236500031495396,16.049217431234084,16.049217431234084,16.272602400883954,16.272602400883954,14.770801513071063,14.770801513071063,5.6115137478215615,5.6115137478215615,12.507044332662147,15.121004956638899,14.550439807265818,14.920602228934712,7.317294039218453,12.73080348628713,15.417207884579199,14.726571108832658,15.17996624477486,7.957024833239672,190.51961922525837,190.51961922525837,0.0,211.6884658058426,0.0,190.51961922525837,211.6884658058426,0,0
+2017/01/23 16:00:00,183.94521454888311,0,1333.1695134564168,0,0,0,0.0,0.0,17.619269613169283,0.0,108.75639138185811,0,39.380909295966944,0.6742273982485735,14.0824416571859,0,0,384.6534942576553,540.3769653045041,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7542578342922026,0.0,118.36237754328572,0.0,1419.1705150074454,0.0,226.50477466493567,0.0,0.0,0.0,4704.876810587601,0.0,7870.341640262648,0.0,6028.098809948742,0.0,8029.53414504044,0.0,7644.1254878549635,0.0,4182.570014692403,0.0,7498.450474756248,0.0,5598.577712284704,0.0,7669.873287326628,0.0,13644.104407442645,0,0,0,0,0,0,0,0,0.07097893238396606,0.0022457239442314845,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6807330706829957,-0.6807330706829957,-0.70013790358073,-0.70013790358073,-0.743484371504941,-0.743484371504941,-0.7087299191639909,-0.7087299191639909,-0.21001818471019065,-0.21001818471019065,-0.6028987259429541,-0.6817611443849524,-0.6844927755275032,-0.7029709264791728,-0.35284427786296413,-0.6131759669550895,-0.689257264934862,-0.6930572722787689,-0.7146575226753847,-0.39882495986622774,14.740253913369557,14.740253913369557,15.309204860373185,15.309204860373185,16.63877170962492,16.63877170962492,15.56631750706174,15.56631750706174,5.914814065805174,5.914814065805174,12.622044326435642,14.769988755110646,14.849217459534657,15.393629945195656,7.590588883902669,12.88667494963228,14.988179674712427,15.099714918691092,15.745554614416577,8.314054855853257,183.94521454888311,183.94521454888311,0.0,204.38357172098122,0.0,183.94521454888311,204.38357172098122,0,0
+2017/01/23 17:00:00,211.83292273310676,0,1381.7932306520433,0,0,0,0.0,0.0,22.625411556095855,0.0,131.64086955684016,0,39.380909295966944,0.6875705107907851,14.066186610958669,0,0,380.0341111287208,540.3845368602488,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,168.87212601792154,0.0,280.03315301217435,0.0,1202.5497957739483,0.0,200.4662945316475,0.0,0.0,0.0,5405.963146412276,0.0,8180.952152530132,0.0,6548.654382854962,0.0,8167.705904874385,0.0,6621.397803075498,0.0,4901.456498148026,0.0,7851.396792651697,0.0,6087.3975596538485,0.0,7789.363497912862,0.0,12862.259991160068,0,0,0,0,0,0,0,0,0.07356769510337269,0.0023276305921570394,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6997698831471667,-0.6997698831471667,-0.727137507098365,-0.727137507098365,-0.7358507278708893,-0.7358507278708893,-0.7122446113043079,-0.7122446113043079,-0.16956241419225634,-0.16956241419225634,-0.6268609962697697,-0.7129987437496734,-0.6919329514935494,-0.7141521891610928,-0.3592091977408023,-0.6429789456480998,-0.73113690382061,-0.7018574667281023,-0.7276919604659596,-0.40597142380725204,15.298263146481162,15.298263146481162,16.127868369675696,16.127868369675696,16.398762217940998,16.398762217940998,15.672410940834268,15.672410940834268,5.595924820379864,5.595924820379864,13.246169004541642,15.695244343032726,15.066649618950422,15.73021544036979,7.685360231710433,13.679994542548869,16.25180440336011,15.360407130816654,16.14500908466171,8.43460658915889,211.83292273310676,211.83292273310676,0.0,235.3699141478964,0.0,211.83292273310676,235.3699141478964,0,0
+2017/01/23 18:00:00,234.7935371007808,0,1361.2451740909523,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.6320056064256169,18.524196351427314,0,0,337.652720962319,562.2178704655595,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.26682772324192,0.0,249.52888129017714,0.0,937.6058653098387,0.0,99.87488760252921,0.0,0.0,0.0,6802.266360482332,0.0,7607.750467668641,0.0,7859.025774651604,0.0,7551.610452788769,0.0,0.0,0.0,6372.372683685658,0.0,7308.06029778452,0.0,7438.596953199035,0.0,7204.84883926351,0.0,5688.938313720538,0,0,0,0,0,0,0,0,0.07247370135197773,0.0022930173924394525,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7038621419876605,-0.7038621419876605,-0.7324940538915712,-0.7324940538915712,-0.7346632003187519,-0.7346632003187519,-0.717220275784207,-0.717220275784207,-0.1267486028977258,-0.1267486028977258,-0.6279887722007413,-0.712059444385273,-0.6895125596027101,-0.7123881177625245,-0.34878557688570133,-0.644057244332599,-0.7273131227668085,-0.6994903402861061,-0.726123135942592,-0.3945095102722836,15.420260105402278,15.420260105402278,16.294016943753505,16.294016943753505,16.36165000062151,16.36165000062151,15.823515226053459,15.823515226053459,5.3327956798188865,5.3327956798188865,13.276157164950803,15.666808259160476,14.995653357435003,15.676754099064212,7.5310563534621195,13.709419812804143,16.13329603066309,15.289955890388356,16.096543693068455,8.242316786110692,234.7935371007808,234.7935371007808,0.0,260.88170788975646,0.0,234.7935371007808,260.88170788975646,0,0
+2017/01/23 19:00:00,219.90645947618114,0,1346.5173178138784,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.5906060414103719,26.63938273825011,0,0,320.9776801186598,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,384.74129566094626,0.0,443.24489580173497,0.0,1187.763577688685,0.0,300.06921818311906,0.0,0.0,0.0,8979.958096694927,0.0,7146.274742369081,0.0,9967.599625714616,0.0,7078.958843590336,0.0,0.0,0.0,8397.030686104243,0.0,6741.965556423488,0.0,9394.360580393244,0.0,6634.356427013717,0.0,0.0,0,0,0,0,0,0,0,0,0.07168957937476497,0.002268208319658547,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.714189378233256,-0.714189378233256,-0.7412297463323606,-0.7412297463323606,-0.7412145166473543,-0.7412145166473543,-0.7267322435290513,-0.7267322435290513,-0.11162320940067566,-0.11162320940067566,-0.6242744680254245,-0.7021524745578548,-0.682376852478102,-0.7016967922859372,-0.3293475257874496,-0.6402755091407566,-0.7165792534273533,-0.691698996319594,-0.7145137583953202,-0.37017593822055384,15.731343923013114,15.731343923013114,16.56762379265794,16.56762379265794,16.56714393969075,16.56714393969075,16.115348164279695,16.115348164279695,5.258066223345196,5.258066223345196,13.177600269692007,15.369204205855183,14.78781868807387,15.355617430799853,7.25564658819593,13.606443203385666,15.803988376006046,15.059776065233976,15.741189593721742,7.852698193687985,219.90645947618114,219.90645947618114,0.0,244.34051052909015,0.0,219.90645947618114,244.34051052909015,0,0
+2017/01/23 20:00:00,211.09621891504105,0,1320.6305316395355,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.5890603667258436,27.075223177384686,0,0,330.581246456861,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,675.6483796948401,0.0,592.3539666120756,0.0,1402.9952225020359,0.0,462.71508662294656,0.0,0.0,0.0,8901.849755276895,0.0,7071.748344998036,0.0,9833.97711664748,0.0,7000.787290550808,0.0,0.0,0.0,8374.58075318025,0.0,6705.277410930743,0.0,9313.957618822495,0.0,6593.029003941952,0.0,0.0,0,0,0,0,0,0,0,0,0.07031134770432786,0.00222460203031264,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7272061558069904,-0.7272061558069904,-0.7519668549187075,-0.7519668549187075,-0.7518765392645136,-0.7518765392645136,-0.7389627832373146,-0.7389627832373146,-0.13419426868948592,-0.13419426868948592,-0.6239827535393678,-0.6961204371371364,-0.6788256676114286,-0.6956691416932328,-0.32173035285025753,-0.641437231372432,-0.711073042541899,-0.6891754219710511,-0.7091464253757733,-0.36006465576858476,16.12998990125763,16.12998990125763,16.908400834489584,16.908400834489584,16.90551377338646,16.90551377338646,16.496306428274835,16.496306428274835,5.373075216124803,5.373075216124803,13.169885149135126,15.190077008845961,14.685207445855113,15.176738523429364,7.152095672546395,13.638010888872003,15.636987146567563,14.985784340245004,15.578862219057712,7.698229158671779,211.09621891504105,211.09621891504105,0.0,234.5513543500456,0.0,211.09621891504105,234.5513543500456,0,0
+2017/01/23 21:00:00,212.4835090435587,0,1192.8750776970912,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.3195552136904945,24.26022466371089,0,0,238.316145026961,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1352.3997498044698,0.0,999.8686928734547,0.0,2023.6066639006758,0.0,878.2945492810912,0.0,0.0,0.0,9407.750600480373,0.0,7388.321955386016,0.0,10311.391488314954,0.0,7308.799823000508,0.0,0.0,0.0,8713.170380881988,0.0,6908.728241652224,0.0,9619.408532307392,0.0,6787.729781015458,0.0,0.0,0,0,0,0,0,0,0,0,0.06350955270711568,0.002009397977843067,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7457490207137543,-0.7457490207137543,-0.7685033880221595,-0.7685033880221595,-0.7699343349120937,-0.7699343349120937,-0.7563723629959631,-0.7563723629959631,-0.17510413842159572,-0.17510413842159572,-0.6266949844765614,-0.6944207613137209,-0.6791846078469994,-0.6933982502146654,-0.31613672053751085,-0.6449491841027342,-0.7095810233559577,-0.689952091149712,-0.7070617406339137,-0.3524380331393888,16.71045541429126,16.71045541429126,17.442892827799696,17.442892827799696,17.48969281132537,17.48969281132537,17.04965271113204,17.04965271113204,5.635566609497147,5.635566609497147,13.241759322440743,15.139887224449112,14.69555421565623,15.109753577573343,7.07761982029524,13.733797709421893,15.591959810275057,15.008527124823473,15.516148779631507,7.584598577251768,212.4835090435587,212.4835090435587,0.0,236.09278782617633,0.0,212.4835090435587,236.09278782617633,0,0
+2017/01/23 22:00:00,199.72134829665478,0,1422.566506055904,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.727668370724043,27.0977424753112,0,0,503.49792589831793,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2213.636819407978,0.0,1507.067685226322,0.0,2831.029878121947,0.0,1400.9097456191164,0.0,0.0,0.0,7964.721298101945,0.0,8409.493209825421,0.0,8867.642437746668,0.0,8328.838428006406,0.0,1942.585369001889,0.0,7381.982354693851,0.0,7995.3264967812975,0.0,8274.86271254941,0.0,7872.062808181356,0.0,8651.09256567843,0,0,0,0,0,0,0,0,0.07573849448691115,0.002396313171480204,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7727681322254372,-0.7727681322254372,-0.792955215236611,-0.792955215236611,-0.7965045544846019,-0.7965045544846019,-0.7821369745806195,-0.7821369745806195,-0.25384908572318743,-0.25384908572318743,-0.641627937047582,-0.70948674232717,-0.6912000678872913,-0.708025193340418,-0.33162698531065776,-0.6630429529966533,-0.7276150037273944,-0.7049528141112289,-0.7245650428844815,-0.37312637175728874,17.582631560368753,17.582631560368753,18.25458749404902,18.25458749404902,18.37452106306165,18.37452106306165,17.892332238100266,17.892332238100266,6.337647169566907,6.337647169566907,13.643198560912225,15.589117746886728,15.045125553102324,15.545108972610535,7.287112913447146,14.235770033184394,16.142629206197398,15.452896808390435,16.04851461208385,7.8985929367136976,199.72134829665478,199.72134829665478,0.0,221.9126092185053,0.0,199.72134829665478,221.9126092185053,0,0
+2017/01/23 23:00:00,140.86317907268352,0,1265.7263671397784,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.8357517278444493,20.842494537062848,0,0,506.36437328864076,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3863.2274759078323,0.0,2495.490842493544,0.0,4416.1034869584155,0.0,2407.304004712719,0.0,0.0,0.0,7449.495955867969,0.0,9038.138755449145,0.0,8351.560257710396,0.0,8956.94663530129,0.0,9670.551384599057,0.0,7022.372419889257,0.0,8715.64630277801,0.0,7902.5631351920465,0.0,8591.178310501078,0.0,16191.35163148335,0,0,0,0,0,0,0,0,0.06738820931848012,0.0021321159693799547,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8451750177774692,-0.8451750177774692,-0.8611624015568444,-0.8611624015568444,-0.8707931961388446,-0.8707931961388446,-0.8514934836849283,-0.8514934836849283,-0.4840298288714791,-0.4840298288714791,-0.6609687719233555,-0.7289934075397524,-0.7074751546442503,-0.727268698450192,-0.3598652239878482,-0.6861681218451195,-0.7511233656189422,-0.7249439411144568,-0.7477329734019795,-0.40691933181106715,20.07269269235404,20.07269269235404,20.6521337511127,20.6521337511127,21.006300129997854,21.006300129997854,20.30042786620686,20.30042786620686,9.8940882552059,9.8940882552059,14.177506424682434,16.185294759447174,15.528570588116253,16.13192290637683,7.6952262575615435,14.897969130973578,16.881451168371157,16.060184748899644,16.773434811406887,8.450760792013256,140.86317907268352,140.86317907268352,0.0,156.5146434140928,0.0,140.86317907268352,156.5146434140928,0,0
+2017/01/24 00:00:00,91.65206537487715,0,1161.9287120965303,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.9541439951152988,11.754965118469299,0,0,590.2883155090151,518.404867818699,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5363.0253304777725,0.0,3387.272121593405,0.0,5847.943095090767,0.0,3321.4496276924847,0.0,0.0,0.0,7013.3830193244485,0.0,9788.217895842552,0.0,7903.955184333309,0.0,9708.127929314931,0.0,17376.49791069825,0.0,6724.014613543501,0.0,9545.642878264942,0.0,7580.63315377264,0.0,9422.346039741988,0.0,23733.351042094477,0,0,0,0,0,0,0,0,0.061861945280362506,0.001957268827337711,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9229977412622072,-0.9229977412622072,-0.9344123648931403,-0.9344123648931403,-0.9520687665086716,-0.9520687665086716,-0.9258430236254027,-0.9258430236254027,-0.6423364506772719,-0.6423364506772719,-0.6833836507665725,-0.7522043104260886,-0.7274983060873339,-0.7502443641576924,-0.392488591505838,-0.7115503145468981,-0.7776563614488912,-0.7479085172561786,-0.7739547286142265,-0.4438273399015265,22.992162331374402,22.992162331374402,23.441049063812287,23.441049063812287,24.145604315407937,24.145604315407937,23.103567183814775,23.103567183814775,13.662485721138893,13.662485721138893,14.81700929965325,16.915993084700304,16.139020830770775,16.853399300295948,8.20899572654524,15.651410899082705,17.743752855350436,16.779015469895413,17.62164949539907,9.109696595913064,91.65206537487715,91.65206537487715,0.0,101.83562819430794,0.0,91.65206537487715,101.83562819430794,0,0
+2017/01/24 01:00:00,40.19857980077443,0,721.535370227184,0,0,0,0.0,0.0021666749132263955,4.166984770466865,9.319298099999997,16.311038125956312,0,0.5081813992692031,0.3452324674147066,9.545678262754114,0,0,163.04730499864667,505.25253645972117,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.051360494018457,1499.2292949286493,0.0,1134.1204054340694,1.1153144192079376,1757.1234359418904,0.0,1061.000167141828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03841507755695424,0.0012154262763840855,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9498517151472388,-0.9498517151472388,-0.9657794249902342,-0.9657794249902342,-0.9782707828871253,-0.9782707828871253,-0.9555353586511883,-0.9555353586511883,-0.31053617963169927,-0.31053617963169927,-1.1483715931384453,-1.212610856154366,-1.1852986317025638,-1.207500166769791,-0.1833976684072171,-1.0881860184719088,-1.1720497424168068,-1.142653983390386,-1.1633736760027844,-0.3662958120537662,24.056459115726753,24.056459115726753,24.701181225960767,24.701181225960767,25.21373065499955,25.21373065499955,24.285379838887025,24.285379838887025,7.004379777517045,7.004379777517045,32.76412561625391,35.86601713724039,34.53214275173502,35.61479048592908,5.697287183501103,29.976225656137075,33.89300056693517,32.494171083534766,33.477343504792415,7.792906794702105,40.19857980077443,40.19857980077443,0.0,44.665088667527144,0.0,40.19857980077443,44.665088667527144,0,0
+2017/01/24 02:00:00,23.770410234950393,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5733148112726018,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.2249342650958726,-1.2249342650958726,-1.2920753293879603,-1.2920753293879603,-1.2902698457723667,-1.2902698457723667,-1.2621557827055487,-1.2621557827055487,-0.1358605324602078,-0.1358605324602078,-1.2792643673606914,-1.3919346319907764,-1.3701546480395554,-1.3858996576860132,-0.11592507857820748,-1.293003610471102,-1.4097375729197539,-1.3843181649845218,-1.3983255059026725,-0.40254782998831096,36.47480367382834,36.47480367382834,39.86147515438411,39.86147515438411,39.7689605714971,39.7689605714971,38.33831592758013,38.33831592758013,5.382405102675506,5.382405102675506,39.206669214026455,45.082425313577446,43.92798911222808,44.76178403141435,5.278352906701926,39.909070196264786,46.03147216867039,44.67785263173984,45.422580967286386,8.376582204561316,23.770410234950393,23.770410234950393,0.0,26.41156692772266,0.0,23.770410234950393,26.41156692772266,0,0
+2017/01/24 03:00:00,28.344219775373208,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248566889003119,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.2869705297426721,-1.2869705297426721,-1.355900323336888,-1.355900323336888,-1.350292926652078,-1.350292926652078,-1.3276298473005175,-1.3276298473005175,-0.054567317960135156,-0.054567317960135156,-1.3655864951715349,-1.4897225675061887,-1.4676029267416153,-1.4832685445035128,-0.09540426654366414,-1.411901201088048,-1.5387221217226577,-1.5129848401477448,-1.526157646972259,-0.412251960452235,39.600094982503244,39.600094982503244,43.17676602050348,43.17676602050348,42.88224649909081,42.88224649909081,41.698000446223915,41.698000446223915,5.061645878819931,5.061645878819931,43.68685330178644,50.342166838052556,49.14380521657746,49.99212867839051,5.188492063810358,46.14711861490745,53.006999469660926,51.60594755848704,52.3227570083968,8.542356314813873,28.344219775373208,28.344219775373208,0.0,31.493577528192453,0.0,28.344219775373208,31.493577528192453,0,0
+2017/01/24 04:00:00,23.72204338766867,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249479639908794,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.3924163122119664,-1.3924163122119664,-1.4651722561563574,-1.4651722561563574,-1.4524025503517157,-1.4524025503517157,-1.437932476695158,-1.437932476695158,0.013101216021295539,0.013101216021295539,-1.478125380041404,-1.605416328349101,-1.5860603586297037,-1.5984136470767998,-0.0677956269604582,-1.545359061179861,-1.674603794016854,-1.651730487093096,-1.6608718475325746,-0.4406824600974701,45.108041409718616,45.108041409718616,49.01236254968303,49.01236254968303,48.32271564272056,48.32271564272056,47.54323238136548,47.54323238136548,5.003553099745403,5.003553099745403,49.71340201570345,56.64001718700555,55.5863657865296,56.25897521652317,5.095164207612001,53.36858311699534,60.38778361875325,59.15312388061229,59.647188804413275,9.051270536322406,23.72204338766867,23.72204338766867,0.0,26.357825986298522,0.0,23.72204338766867,26.357825986298522,0,0
+2017/01/24 05:00:00,45.72052534203738,0,492.1275775207456,0,0,0,0.0,0.032629761182411926,4.633261998087618,9.319298099999997,25.555573451546493,0,3.4411423817120212,2.2135245197441233,0.5250951297647107,0,0,385.62018623414144,17.781510005243813,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0037648908652756,3541.3136101930095,1.7599876945167645,2566.309122049734,1.8268347306112507,3939.955545342026,1.8500201761817803,2449.543997228526,0.0,0.0,3.1230219697310977,7646.651215218915,2.181162304527853,5430.001380736968,3.148574459300611,8491.505460563058,2.688298780033944,5374.9236331074835,0.0,0.0,3.832364657945813,7082.044333157022,2.6270981974846883,4987.706489465973,3.641311903690572,7862.6568796081265,3.947321417522273,4898.330380791529,0.0,0.0,0,0,0,0,0,0,0,0,0.02620123674938202,0.0008289888669818464,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0979419880193482,-1.0979419880193482,-1.129757883778626,-1.129757883778626,-1.1241887509208421,-1.1241887509208421,-1.118459323831158,-1.118459323831158,0.14978322625128568,0.14978322625128568,-0.9299344658646825,-0.9868860567423672,-0.9769888940529179,-0.9859241551064607,-0.036372693743448606,-0.9854130812793725,-1.048986008942724,-1.0309108922148147,-1.0431532921318347,-0.44743249713126176,30.419899150260164,30.419899150260164,31.88914084600428,31.88914084600428,31.62953241658647,31.62953241658647,31.36351685612972,31.36351685612972,5.464878152813327,5.464878152813327,23.264332492137413,25.570749226441976,25.16085339346239,25.53074633090428,5.027387826049377,25.5095065912667,28.227084015676738,27.439134038023795,27.971515445486475,9.177196831875307,45.72052534203738,45.72052534203738,0.0,50.80058371337486,0.0,45.72052534203738,50.80058371337486,0,0
+2017/01/24 06:00:00,78.3920814214976,0,459.2162419644657,0,0,0,0.06385524167843765,0.032528698072762666,5.555297838843742,9.319298099999997,57.911447091112116,0,3.011032196879473,1.9735976165756295,0.5250246383354199,0,0,246.2741268892009,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,202.83192926796204,0.0,0.0,0.0,0.0,0.0,1.5980448128746048,1834.446807045619,0.9763186623695788,1389.3881152585475,1.5091269323255574,2087.600068782729,0.31180172343499635,1317.9201697838494,0.0,0.0,4.433788721058136,5979.3962815485365,2.9675094569372504,4322.589272062934,3.9922504422997918,6759.209046647232,3.1042011332995116,4274.87934832065,0.0,0.0,3.9557635730034235,5921.6211610351265,2.848589315867912,4218.187871060158,4.29227464594419,6638.028450165916,2.5390286533477138,4139.680522430729,0.0,0.0,0,0,0,0,0,0,0,0,0.02444901286672002,0.0007735497247352208,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9867881666255938,-0.9867881666255938,-1.0140686686971574,-1.0140686686971574,-1.0065416807464616,-1.0065416807464616,-1.005552058381176,-1.005552058381176,0.4746456124981106,0.4746456124981106,-0.8426979241420792,-0.8842615262134239,-0.8754263547013942,-0.8819500750102213,0.07669654431035965,-0.8588776430888992,-0.9016632593909736,-0.8864062415579764,-0.8976376456851967,-0.3683531386703218,25.566676618343465,25.566676618343465,26.715761848910518,26.715761848910518,26.3959033371479,26.3959033371479,26.354008048776393,26.354008048776393,9.704761857052802,9.704761857052802,19.983865020649972,21.50799763947498,21.17804471458777,21.421366213548936,5.12179986444491,20.56867610280574,22.16720918371125,21.58857567017685,22.013614003170687,7.824529562453776,78.3920814214976,78.3920814214976,0.0,87.10231269055288,0.0,78.3920814214976,87.10231269055288,0,0
+2017/01/24 07:00:00,103.74129723703153,0,910.4921168052973,0,0,0,0.0,0.025137453359643437,11.110595677687485,13.929299233552332,73.80580873715317,0,2.6725116477799316,1.6728906622246222,0.5250538252743188,0,0,184.96698427266637,494.8378412010941,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1069.3989542005033,0.0,825.4093463400781,0.0,1214.4308719034311,0.0,785.1662528762411,0.0,0.0,3.6846798882297658,4572.44502235,2.4240025159841325,3327.8840528212004,2.9479931481261397,5199.295535192576,3.1431032345129397,3289.3488590222087,0.0,0.0,4.423710351002531,4412.703049871038,3.157212785211565,3151.279051682982,3.4822312724115054,4952.949252810751,1.8745201641648537,3090.2612891824556,0.0,0.0,0,0,0,0,0,0,0,0,0.048475274706294896,0.0015337239016533436,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9171339362041968,-0.9171339362041968,-0.9463001719503561,-0.9463001719503561,-0.935619211344418,-0.935619211344418,-0.9381956683310015,-0.9381956683310015,0.7272798185884581,0.7272798185884581,-0.8154093992117597,-0.8552157257101731,-0.8466426149807124,-0.8533147619245093,0.1421915848406964,-0.8286975194186673,-0.8677640191115202,-0.8529466388730569,-0.8642695638555933,-0.2413658267692723,22.76359424529548,22.76359424529548,23.914059417464998,23.914059417464998,23.48881296600011,23.48881296600011,23.59097645160206,23.59097645160206,16.132266614041825,16.132266614041825,19.02229999159232,20.43536486291667,20.1254408243947,20.366380104635,5.418907760555172,19.48663365234769,20.89449112122233,20.353038497909438,20.76597889661656,6.209010369560346,103.74129723703153,103.74129723703153,0.0,115.26810804114615,0.0,103.74129723703153,115.26810804114615,0,0
+2017/01/24 08:00:00,165.21791429048994,0,1282.7941912676797,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.38090929596693,0.9349305038996585,27.096189435002945,0,0,416.9611398789099,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5220.594800013235,0.0,3241.4741737055124,0.0,5563.511228813021,0.0,3229.428750251005,0.0,0.0,0.0,9715.034430428434,0.0,10320.983984434099,0.0,10518.79698375825,0.0,10232.805473355007,0.0,10687.354070737883,0.0,9445.376723871865,0.0,10064.671530114992,0.0,10181.144515458183,0.0,9931.752116752174,0.0,18047.06027849323,0,0,0,0,0,0,0,0,0.06829691291730071,0.0021608667178279785,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9340352474126893,-0.9340352474126893,-0.9571483290883275,-0.9571483290883275,-0.9530563437589751,-0.9530563437589751,-0.950053078426436,-0.950053078426436,0.04596380220765583,0.04596380220765583,-0.7925154576962743,-0.8378152386440185,-0.8205730717810978,-0.8361148505605659,-0.2372234706190863,-0.8076978518153292,-0.8526798787773309,-0.8290288251921869,-0.8493198176974102,-0.396344821752812,23.426135609097926,23.426135609097926,24.35057691442978,24.35057691442978,24.1853760164296,24.1853760164296,24.064547715931923,24.064547715931923,5.043737494461482,5.043737494461482,18.23976509311953,19.80952336426263,19.20185527142003,19.74904292206854,6.167771042069319,18.75623932336569,20.343374030111036,19.49830537199807,20.22189541727795,8.272728837296512,165.21791429048994,165.21791429048994,0.0,183.5754603227666,0.0,165.21791429048994,183.5754603227666,0,0
+2017/01/24 09:00:00,166.25417562188883,0,1439.1103137045552,0,0,0,0.0,0.0,12.270840403871876,0.0,83.2008179303116,0,39.380909295966944,0.8718903139729115,27.0977424753112,0,0,520.0417335469688,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4020.259231864969,0.0,2798.72185438432,0.0,4813.508705022467,0.0,2565.298900482202,0.0,0.0,0.0,8674.744751325155,0.0,9906.069491316593,0.0,9958.769570213364,0.0,9557.606060461787,0.0,5243.690280268906,0.0,8205.501748388968,0.0,9595.700608916864,0.0,9536.08409638313,0.0,9152.561825010962,0.0,15658.51860012617,0,0,0,0,0,0,0,0,0.07661929906023396,0.002424181214208703,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8710812879682273,-0.8710812879682273,-0.9319009959532212,-0.9319009959532212,-0.9258502791880137,-0.9258502791880137,-0.8946020443303172,-0.8946020443303172,-0.26550350163491027,-0.26550350163491027,-0.7481115749268451,-0.8236335527876338,-0.8007461818454769,-0.7990320949098209,-0.3275617404759992,-0.7553560694695622,-0.837504942685149,-0.8103664266324477,-0.8075236762427735,-0.43523634662749117,21.01695350294112,21.01695350294112,23.341841483889823,23.341841483889823,23.103851684381155,23.103851684381155,21.898228168344318,21.898228168344318,6.463657951518925,6.463657951518925,16.78547245846275,19.308805957865246,18.51854716148914,18.460252979308194,7.2311490859989505,17.016994036068326,19.79847755352982,18.848025637640433,18.750258959068177,8.951097062624896,166.25417562188883,166.25417562188883,0.0,184.7268618020987,0.0,166.25417562188883,184.7268618020987,0,0
+2017/01/24 10:00:00,182.44781736726986,0,1406.9664317662848,0,0,0,0.0,0.0,11.63813426782361,0.0,106.27511244621549,0,39.380909295966944,0.7452587759175577,20.976427378892033,0,0,434.66232283988245,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.0731182871381,0.0,1983.6934686540496,0.0,3502.1113414133565,0.0,1078.8721642420353,0.0,0.0,0.0,5857.143723473522,0.0,9008.680797393192,0.0,8753.948910348336,0.0,8207.609444771088,0.0,4143.042302577769,0.0,5138.864643352501,0.0,8764.273722314028,0.0,8429.683671441171,0.0,7794.055260691427,0.0,12836.598181203473,0,0,0,0,0,0,0,0,0.07490793497665278,0.0023700348475233653,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6756510784151193,-0.6756510784151193,-0.9002376855973464,-0.9002376855973464,-0.8929975326966753,-0.8929975326966753,-0.8079386258600103,-0.8079386258600103,-0.28124048290880743,-0.28124048290880743,-0.629288602394672,-0.8024036915005172,-0.777899920859043,-0.7443397688131168,-0.34235137017296385,-0.6174905142902941,-0.8136392605334376,-0.7837812176925865,-0.7447352075893038,-0.434734819571851,14.593939780900442,14.593939780900442,22.112741854382108,22.112741854382108,21.837390939509888,21.837390939509888,18.76450847275501,18.76450847275501,6.642887682845952,6.642887682845952,13.310788793497423,18.575035427043574,17.751807450331228,16.665822044429802,7.438115555170512,12.999137204139842,18.961005699071052,17.94707033619406,16.678337658921592,8.941936258299577,182.44781736726986,182.44781736726986,0.0,202.7197970747443,0.0,182.44781736726986,202.7197970747443,0,0
+2017/01/24 11:00:00,212.92657305869372,0,1431.6063647957978,0,0,0,0.0,0.0,16.903073633821148,0.0,133.89528835348938,0,39.380909295966944,0.7195702138837535,18.595756359078177,0,0,407.9805632059529,562.2512189267711,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1445.7996912423464,0.0,2594.236934011995,0.0,730.5496272548835,0.0,0.0,0.0,3879.797725067784,0.0,9053.763654455173,0.0,7226.4805195337885,0.0,8427.00604181315,0.0,7423.193318516766,0.0,2870.696344099168,0.0,8663.440580360486,0.0,6680.312671295378,0.0,7909.409591202617,0.0,15518.16298925822,0,0,0,0,0,0,0,0,0.07621978326210674,0.0024115408128414415,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5646022635816544,-0.5646022635816544,-0.8544879567754098,-0.8544879567754098,-0.8408794767326685,-0.8408794767326685,-0.7988157795441303,-0.7988157795441303,-0.22882827658613003,-0.22882827658613003,-0.5493080119859841,-0.7946483949693698,-0.7672828082302853,-0.7515963989119608,-0.3611078059520359,-0.5183863347343814,-0.8026107865482967,-0.7697386359165896,-0.753340737838918,-0.43995195726845726,11.67630545796051,11.67630545796051,20.408936870749883,20.408936870749883,19.918819049755086,19.918819049755086,18.45290517146529,18.45290517146529,6.086401397545643,6.086401397545643,11.316388645527056,18.311734107532814,17.403042065636825,16.896560932846455,7.713963766527058,10.61967752321415,18.582101433752882,17.483287201611006,16.952361908083148,9.03775997791979,212.92657305869372,212.92657305869372,0.0,236.58508117632636,0.0,212.92657305869372,236.58508117632636,0,0
+2017/01/24 12:00:00,228.62061283634623,0,1376.038857205366,0,0,0,0.0,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.4981247642646626,20.58182520470508,0,0,279.9983637661786,581.4303820072975,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,518.9115425831232,0.0,1118.8522042339955,0.0,174.93617984109682,0.0,0.0,0.0,4244.516972285222,0.0,7614.615442422844,0.0,7940.0166990354055,0.0,7266.878824005116,0.0,0.0,0.0,3300.131654590922,0.0,7238.317402697094,0.0,7419.021692394534,0.0,6821.963197512612,0.0,4072.926663784379,0,0,0,0,0,0,0,0,0.0732613279987688,0.0023179373505228607,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5124626520434589,-0.5124626520434589,-0.8084196581618345,-0.8084196581618345,-0.7922706013769781,-0.7922706013769781,-0.7810535507806293,-0.7810535507806293,-0.12664098097205448,-0.12664098097205448,-0.5124403674279261,-0.7690024569591085,-0.7436412900193832,-0.7452248064562026,-0.3458983699284713,-0.4744429019028015,-0.7724454838190589,-0.7425883392859289,-0.7462472895181138,-0.41309436389664694,10.490932561206037,10.490932561206037,18.781036385858684,18.781036385858684,18.231515557368525,18.231515557368525,17.85632706877209,17.85632706877209,5.3322303684575445,5.3322303684575445,10.490451094566978,17.45920525975025,16.64373161304971,16.693842724393136,7.489133575422699,9.700714082961,17.572032538051715,16.610470024206222,16.726256796166908,8.556937210076015,228.62061283634623,228.62061283634623,0.0,254.0229031514958,0.0,228.62061283634623,254.0229031514958,0,0
+2017/01/24 13:00:00,208.08700656459433,0,1321.4270315238725,0,0,0,0.0,0.0,16.840460073948062,0.0,129.49988082968767,0,39.380909295966944,0.4469658103343894,18.48681535220299,0,0,261.36692003249226,580.9403525720345,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,303.3725777366256,0.0,0.0,0.0,0.0,0.0,4816.8668877357395,0.0,6018.852317011281,0.0,8718.243250025547,0.0,6033.492296231532,0.0,0.0,0.0,3818.736415177734,0.0,5570.884983920871,0.0,8150.562093840689,0.0,5582.494880102025,0.0,0.0,0,0,0,0,0,0,0,0,0.07035375394814274,0.0022259437343073525,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4749308862121259,-0.4749308862121259,-0.7187681985720022,-0.7187681985720022,-0.7566641685422004,-0.7566641685422004,-0.7368868449638541,-0.7368868449638541,-0.0838378535995409,-0.0838378535995409,-0.4672568951888903,-0.7087902739859956,-0.7106873571285608,-0.7137178050445583,-0.3275512030508453,-0.42479041558544894,-0.7023632525940006,-0.7050621225607473,-0.7100147770105131,-0.3809744063519685,9.710461272633466,9.710461272633466,15.870741084452973,15.870741084452973,17.059038070904492,17.059038070904492,16.43119207903463,16.43119207903463,5.1455451412668225,5.1455451412668225,9.558366580491807,15.568134864886787,15.62533842863536,15.717038698667054,7.23100493448446,8.762523463925831,15.37549186569342,15.456170527013725,15.60504007610362,8.022478625069752,208.08700656459433,208.08700656459433,0.0,231.20778507177147,0.0,208.08700656459433,231.20778507177147,0,0
+2017/01/24 14:00:00,205.56095695070275,0,1198.3758079753238,0,0,0,0.0,0.0,16.840460073948062,0.0,129.2730206906943,0,39.380909295966944,0.3240850638201612,16.310506623818927,0,0,212.72650632898987,542.0198952395326,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,420.50817229600756,0.0,0.0,0.0,0.0,0.0,4182.091343365852,0.0,5830.7659293129445,0.0,8008.123824844261,0.0,6163.9141781521885,0.0,0.0,0.0,3146.282277857347,0.0,5303.285159062111,0.0,7384.4787577627885,0.0,5682.569272501689,0.0,0.0,0,0,0,0,0,0,0,0,0.06380241566155638,0.0020186639575792515,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5373604756952847,-0.5373604756952847,-0.6142010703293934,-0.6142010703293934,-0.751101864477698,-0.751101864477698,-0.7308320356072059,-0.7308320356072059,-0.10869495664507957,-0.10869495664507957,-0.4664595678893839,-0.6677880884107528,-0.7004980727739614,-0.704176505104401,-0.3281860250881822,-0.4300046787737909,-0.6555315071193366,-0.6955160584320764,-0.7011016457150624,-0.3756963630926993,11.042283596850552,11.042283596850552,12.913321949300766,12.913321949300766,16.880764600447534,16.880764600447534,16.242332728182262,16.242332728182262,5.244696938540457,5.244696938540457,9.54270949878763,14.369761368096604,15.3199188079695,15.429661678223795,7.239697677350719,8.856067669135797,14.025658773875293,15.172215993502746,15.33788583807592,7.938872337826993,205.56095695070275,205.56095695070275,0.0,228.4010632785586,0.0,205.56095695070275,228.4010632785586,0,0
+2017/01/24 15:00:00,189.65582473008678,0,1213.7469912504991,0,0,0,0.0,0.0,16.798297266846703,0.0,115.5196477718057,0,39.380909295966944,0.4508628673808878,14.074132325632274,0,0,265.20078534956104,540.4071520066806,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,478.183733935095,0.0,0.0,0.0,0.0,0.0,2536.539253045262,0.0,5990.056155949108,0.0,5926.308022819566,0.0,6516.954806487457,0.0,0.0,0.0,1802.3767722265638,0.0,5592.949213404652,0.0,5544.348063454827,0.0,6199.97785650589,0.0,3811.4858806303228,0,0,0,0,0,0,0,0,0.06462078884466464,0.0020445567146396317,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5603787643322071,-0.5603787643322071,-0.5726564179715595,-0.5726564179715595,-0.751371077112329,-0.751371077112329,-0.7295158299115136,-0.7295158299115136,-0.17514052638048944,-0.17514052638048944,-0.4858988033702587,-0.6474149412727879,-0.6972461211347882,-0.7075655630349839,-0.3458435639942958,-0.4558339567338979,-0.6311473411167869,-0.6941280174961432,-0.7064437404604575,-0.3935049142203992,11.575900892611287,11.575900892611287,11.869920105141148,11.869920105141148,16.88936244455695,16.88936244455695,16.201486579872466,16.201486579872466,5.6358311388805475,5.6358311388805475,9.932248486658267,13.801369617832535,15.223386051620679,15.531288062083576,7.488341210677191,9.336668757117067,13.36043888850665,15.131255379613023,15.497593538362906,8.22573110723323,189.65582473008678,189.65582473008678,0.0,210.72869414454087,0.0,189.65582473008678,210.72869414454087,0,0
+2017/01/24 16:00:00,183.82413354150154,0,1268.9906296537522,0,0,0,0.0,0.0,17.619269613169283,0.0,108.75639138185811,0,39.380909295966944,0.6100200017870058,14.025568046265883,0,0,320.43979297304736,540.4117827864474,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1218.9473902569785,0.0,317.81324679328645,0.0,0.0,0.0,2960.23721664383,0.0,7177.65469918302,0.0,5637.777716920518,0.0,7542.933275680559,0.0,5686.125421899991,0.0,2336.0308863493588,0.0,6754.634870886791,0.0,5244.306522790391,0.0,7214.868080122582,0.0,11533.823758579303,0,0,0,0,0,0,0,0,0.06756200107258509,0.00213761461933699,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6215844275391479,-0.6215844275391479,-0.6363978307784703,-0.6363978307784703,-0.765785545783788,-0.765785545783788,-0.747956705722761,-0.747956705722761,-0.21982243276599725,-0.21982243276599725,-0.5388691158422428,-0.6918218853636928,-0.7134663154658636,-0.7298408544686681,-0.3656169875297191,-0.5295282044698342,-0.6922979205643841,-0.7174423893043516,-0.7361487684721305,-0.41644285408267256,13.106595383140345,13.106595383140345,13.501498121842886,13.501498121842886,17.35424471304566,17.35424471304566,16.78054764501144,16.78054764501144,6.002399400394779,6.002399400394779,11.0765542219616,15.063386224577911,15.709413652888074,16.211566225704075,7.782512291907636,10.865948314137924,15.077377055826986,15.830285386391822,16.408085991850257,8.615195833068483,183.82413354150154,183.82413354150154,0.0,204.24903726833503,0.0,183.82413354150154,204.24903726833503,0,0
+2017/01/24 17:00:00,208.22047267133993,0,1308.38964516999,0,0,0,0.0,0.0,19.09225265500451,0.0,131.64086955684016,0,39.380909295966944,0.5963502544207026,14.078115706653294,0,0,306.59480612699156,540.4202563799246,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,613.8920644652128,0.0,3.9489994120422183,0.0,0.0,0.0,3101.9369024022817,0.0,6553.937959836215,0.0,5642.271906472588,0.0,7343.937681607018,0.0,4701.667956675692,0.0,2729.9750796749313,0.0,6242.4390731290405,0.0,5479.03554226108,0.0,7165.094458667883,0.0,10003.073683658418,0,0,0,0,0,0,0,0,0.06965963384178303,0.002203982257983758,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5922511367734035,-0.5922511367734035,-0.518645675223741,-0.518645675223741,-0.745478638144649,-0.745478638144649,-0.7408890433127318,-0.7408890433127318,-0.17280709529542707,-0.17280709529542707,-0.5483230700314159,-0.6471361622623597,-0.7153195311444522,-0.7335996223592228,-0.36860064846912477,-0.546277783537943,-0.6393736819086908,-0.7219304602939169,-0.7424093850120791,-0.41914260054653824,12.352712397676854,12.352712397676854,10.625348700149132,10.625348700149132,16.701885344118494,16.701885344118494,16.556891389142223,16.556891389142223,5.618979629648507,5.618979629648507,11.293557760090707,13.793716706657236,15.765666236118534,16.32846283621815,7.828346144595358,11.246282474493484,13.581978045911,15.967539788223391,16.60482177771972,8.662517240111256,208.22047267133993,208.22047267133993,0.0,231.35608074593324,0.0,208.22047267133993,231.35608074593324,0,0
+2017/01/24 18:00:00,234.71071140891067,0,1314.4142131038257,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.5865249240144409,18.486851341968322,0,0,290.8007960472273,562.2388343935247,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,569.987514607931,0.0,20.46805426539924,0.0,0.0,0.0,4989.658167535868,0.0,6692.904091246245,0.0,7150.646022799129,0.0,7042.084781764489,0.0,0.0,0.0,4705.146197201708,0.0,6447.6905926611435,0.0,7028.8673205873065,0.0,6899.843155165637,0.0,4412.873007103333,0,0,0,0,0,0,0,0,0.06998038630101809,0.0022141306422110473,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5976830717725196,-0.5976830717725196,-0.6154721911487646,-0.6154721911487646,-0.7385830709659664,-0.7385830709659664,-0.7405461298484082,-0.7405461298484082,-0.12641105802326638,-0.12641105802326638,-0.5631503206937672,-0.6936529004969018,-0.708012534664036,-0.7299390739171268,-0.3571881073441098,-0.568356154937306,-0.6979112208648578,-0.7151969230822275,-0.7402919373075971,-0.40680657842818224,12.489498989630704,12.489498989630704,12.946427372955796,12.946427372955796,16.484382462613596,16.484382462613596,16.5460943841627,16.5460943841627,5.331024253400315,5.331024253400315,11.641701392339755,15.117253958761225,15.544728208959128,16.21461309604969,7.655080089897098,11.766195522517535,15.243092101528077,15.76194001466422,16.538094110803286,8.448837238391349,234.71071140891067,234.71071140891067,0.0,260.78967934323407,0.0,234.71071140891067,260.78967934323407,0,0
+2017/01/24 19:00:00,220.2375600015062,0,1264.196417752998,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.463346829674355,27.0977424753112,0,0,238.6567800577793,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.413828403553296,0.0,0.0,0.0,0.0,0.0,6041.647562539679,0.0,5505.513169105747,0.0,8026.656808924178,0.0,5736.208297636921,0.0,0.0,0.0,5852.448057421269,0.0,5348.852380170348,0.0,7937.009690480481,0.0,5626.051444288188,0.0,0.0,0,0,0,0,0,0,0,0,0.06730675367988423,0.002129538769754044,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6258698191312464,-0.6258698191312464,-0.6072641399379529,-0.6072641399379529,-0.7324725293523688,-0.7324725293523688,-0.7168359304658853,-0.7168359304658853,-0.11227399017175217,-0.11227399017175217,-0.5533306666842303,-0.6757174892700625,-0.6886783999030506,-0.7086495930926754,-0.33547695375186054,-0.5601879906308876,-0.6793159725693974,-0.6949848920823656,-0.7181897389084702,-0.3802676127064092,13.219858642227848,13.219858642227848,12.733890161886208,12.733890161886208,16.29334683081464,16.29334683081464,15.811805158037473,15.811805158037473,5.2610858119009976,5.2610858119009976,11.410070089842819,14.595844589843779,14.971243991722048,15.563899034042308,7.340759751094154,11.571383920766891,14.699342313237025,15.156531625971311,15.853080677084776,8.011213789772157,220.2375600015062,220.2375600015062,0.0,244.70840000167357,0.0,220.2375600015062,244.70840000167357,0,0
+2017/01/24 20:00:00,210.88779605692145,0,1209.9759971281503,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.35811821067975697,27.0977424753112,0,0,219.92671194547586,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,653.6278678805494,0.0,95.650341282514,0.0,0.0,0.0,6678.929768732093,0.0,5902.998272312334,0.0,8529.010272951187,0.0,6091.903647337778,0.0,0.0,0.0,6414.4500838226995,0.0,5690.441848733189,0.0,8327.231780165443,0.0,5908.715928666235,0.0,0.0,0,0,0,0,0,0,0,0,0.0644200183243903,0.002038204475326748,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6291166419404592,-0.6291166419404592,-0.6402653555685226,-0.6402653555685226,-0.7392025183703433,-0.7392025183703433,-0.7303688012162323,-0.7303688012162323,-0.13247333241707818,-0.13247333241707818,-0.5542865937584008,-0.6694655452026295,-0.6800851284419469,-0.6984750746204017,-0.3243095005799858,-0.5646797171007788,-0.6762990301354022,-0.687586279072801,-0.7092708993968956,-0.36642253215023657,13.306203010295874,13.306203010295874,13.606167556575087,13.606167556575087,16.503837930115793,16.503837930115793,16.227948564163952,16.227948564163952,5.363560439662621,5.363560439662621,11.43243531955656,14.417362037057103,14.7215370515801,15.259813324370299,7.186882150772291,11.678153971748472,14.612532610268389,14.939331576097132,15.582612692416703,7.79484937154686,210.88779605692145,210.88779605692145,0.0,234.31977339657936,0.0,210.88779605692145,234.31977339657936,0,0
+2017/01/24 21:00:00,212.47687615805356,0,1154.182151270213,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.24866618892410822,24.324480802972136,0,0,199.62321860008228,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.491970500766982,0.0,1127.5553640290705,0.0,407.11773918861576,0.0,0.0,0.0,7084.020847779398,0.0,6123.4518716346665,0.0,8806.37937907857,0.0,6281.420015659385,0.0,0.0,0.0,6743.642070983626,0.0,5864.134593566335,0.0,8506.427814033019,0.0,6033.94088690353,0.0,0.0,0,0,0,0,0,0,0,0,0.06144951264404012,0.0019442197462137337,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6599057440986772,-0.6599057440986772,-0.690222109692278,-0.690222109692278,-0.7512712200147015,-0.7512712200147015,-0.7474539025403053,-0.7474539025403053,-0.1714443885280735,-0.1714443885280735,-0.5563978105609364,-0.6648858580005378,-0.6747260036521103,-0.691214610129877,-0.31589621008408586,-0.569216195198366,-0.6736581067526937,-0.6826042209580715,-0.7025001151845363,-0.35572882283236457,14.147718282018374,14.147718282018374,15.016440039482617,15.016440039482617,16.886172946260828,16.886172946260828,16.764565677312916,16.764565677312916,5.609243540739172,5.609243540739172,11.481970515244853,14.287693462126455,14.567426454944538,15.045552418669757,7.074447292500466,11.78687596684749,14.53686579648695,14.794407065124105,15.37957560153339,7.6333250697350365,212.47687615805356,212.47687615805356,0.0,236.08541795339283,0.0,212.47687615805356,236.08541795339283,0,0
+2017/01/24 22:00:00,199.4230454578268,0,1267.8919852419215,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.4293655318960634,27.0977424753112,0,0,348.8234050843353,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,260.5420656569722,0.0,367.4574238586382,0.0,1663.2642148736447,0.0,735.732784007369,0.0,0.0,0.0,5459.134446832419,0.0,6861.417651938579,0.0,7100.683189263365,0.0,7012.563467097275,0.0,0.0,0.0,5276.390462307367,0.0,6713.163413036962,0.0,6954.000780992163,0.0,6865.91872475795,0.0,4459.963588184995,0,0,0,0,0,0,0,0,0.06750350843032599,0.002135763952908647,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7146926205186469,-0.7146926205186469,-0.7363427132038718,-0.7363427132038718,-0.7719780858275084,-0.7719780858275084,-0.7694578836743841,-0.7694578836743841,-0.2509061420505568,-0.2509061420505568,-0.5688669838646799,-0.6765403108744885,-0.6816494870517397,-0.7006036296159335,-0.32918975834660413,-0.58663609037932,-0.689222295945583,-0.6924660297867512,-0.7145388408929255,-0.3725851530971944,15.746620402497228,15.746620402497228,16.41415532418982,16.41415532418982,17.55668635196959,17.55668635196959,17.47410048597736,17.47410048597736,6.306730845981932,6.306730845981932,11.778474996093237,14.61946074930276,14.766757091632442,15.323059866843835,7.2534768776473015,12.212660712496671,14.98715618630844,15.082320180620371,15.741951093037258,7.890146341787386,199.4230454578268,199.4230454578268,0.0,221.58116161980755,0.0,199.4230454578268,221.58116161980755,0,0
+2017/01/24 23:00:00,140.7459812174475,0,1212.0808335139388,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.6936265129884469,20.86742189668282,0,0,452.7188396628013,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1917.7116208413781,0.0,1363.2509059183722,0.0,3138.1095678497472,0.0,1663.7671538367488,0.0,0.0,0.0,4919.850147447658,0.0,7393.558536569575,0.0,6517.45642679993,0.0,7544.162674093292,0.0,7089.131557248157,0.0,4907.972692678931,0.0,7374.52631871688,0.0,6559.550759773713,0.0,7519.682982034887,0.0,11817.721372609893,0,0,0,0,0,0,0,0,0.06453208137263602,0.0020417500720588547,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8004747921991339,-0.8004747921991339,-0.8154069580450077,-0.8154069580450077,-0.845511300630723,-0.845511300630723,-0.8373383012880963,-0.8373383012880963,-0.48441641935742014,-0.48441641935742014,-0.5895129104130306,-0.6981209575666055,-0.6968407269161616,-0.720143997199913,-0.3577629286576493,-0.6139111787903057,-0.7155342839817399,-0.7117950794096863,-0.7378469188270205,-0.40593730987869187,18.509309219011527,18.509309219011527,19.022215370838467,19.022215370838467,20.08477138958324,20.08477138958324,19.792547170098587,19.792547170098587,9.901969192420154,9.901969192420154,12.284244041375345,15.249310291904564,15.211384112289394,15.912802186163844,7.66367441382836,12.905781752985675,15.772194420084531,15.65881180627828,16.461282976878138,8.434025938359696,140.7459812174475,140.7459812174475,0.0,156.38442357494168,0.0,140.7459812174475,156.38442357494168,0,0
+2017/01/25 00:00:00,91.5123245188902,0,1035.6947393641537,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.7714323691924987,11.797935888405142,0,0,463.99784628124826,518.4613643140895,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3332.700535284238,0.0,2188.5620212839094,0.0,4324.135669634517,0.0,2413.9509339086744,0.0,0.0,0.0,4369.547486821331,0.0,7857.766328681612,0.0,5960.84374665368,0.0,8002.846154475979,0.0,13307.169880961632,0.0,4410.094912372437,0.0,7895.2637143224765,0.0,6079.981150306457,0.0,8026.885824315438,0.0,17945.424992804663,0,0,0,0,0,0,0,0,0.05514115506974563,0.0017446277098510194,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8763064162182752,-0.8763064162182752,-0.8878409755389487,-0.8878409755389487,-0.9243587167724805,-0.9243587167724805,-0.9070152850147605,-0.9070152850147605,-0.6137147773261173,-0.6137147773261173,-0.6117203603064152,-0.720521633663579,-0.7129626675981475,-0.7403617040322926,-0.3904120604220565,-0.6418898750466657,-0.7411421609401475,-0.7305334155028237,-0.7604353620990557,-0.44143972375184176,21.21076718769224,21.21076718769224,21.642584422921473,21.642584422921473,23.04540980946544,23.04540980946544,22.372431412168055,22.372431412168055,12.90067534385615,12.90067534385615,12.848915609560265,15.92436159442498,15.694151481593508,16.54028962249444,8.174939577299682,13.650326501509127,16.564864310776215,16.23305904287747,17.180658831986534,9.065300241167506,91.5123245188902,91.5123245188902,0.0,101.68036057654466,0.0,91.5123245188902,101.68036057654466,0,0
+2017/01/25 01:00:00,39.66180701328137,0,638.0686050363718,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.19369953319107908,0.1329587542965888,9.537827729370516,0,0,73.10443670039119,511.7286395671644,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.116008113845236,0.0,222.6203371381135,0.0,603.4093815138596,0.0,381.6009588875463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033971245153805965,0.0010748265167551821,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8860846151814736,-0.8860846151814736,-0.899742964369445,-0.899742964369445,-0.933181295420427,-0.933181295420427,-0.9173120520774031,-0.9173120520774031,-0.2869657437042807,-0.2869657437042807,-0.8636099208884407,-0.9929497725480168,-0.9995535457811041,-1.0251385607806431,-0.1785378213611643,-0.8520525250011672,-1.0088915958958247,-1.014790026554299,-1.0423305206154625,-0.3087170804947922,21.57648000521408,21.57648000521408,22.093859185553228,22.093859185553228,23.39238623960108,23.39238623960108,22.770516755017695,22.770516755017695,6.710683899905803,6.710683899905803,20.741776459451472,25.823738472568294,26.10085551205826,27.190026638861582,5.660771848250334,20.32065724416009,26.49553401230483,26.746527527243757,27.935564061613576,6.980876551671386,39.66180701328137,39.66180701328137,0.0,44.06867445920152,0.0,39.66180701328137,44.06867445920152,0,0
+2017/01/25 02:00:00,23.7220369592652,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249415355874057,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9496357648109269,-0.9496357648109269,-1.0126343963218156,-1.0126343963218156,-1.0742634985835147,-1.0742634985835147,-1.0641517202656248,-1.0641517202656248,-0.130331995977569,-0.130331995977569,-0.917963832983312,-1.118708244976749,-1.151327382175444,-1.1701085229519306,-0.11253178234040041,-0.9743005526604122,-1.1794020999545458,-1.2112194263023657,-1.2325923886363188,-0.3072506023746615,24.0477863415788,24.0477863415788,26.654648510023804,26.654648510023804,29.34877605915723,29.34877605915723,28.897331627301497,28.897331627301497,5.351893329119193,5.351893329119193,22.79585923545433,31.375051622661886,32.9040888304708,33.79979949791054,5.262286818682767,25.05016701130951,34.2470355236069,35.79754542497743,36.85522141352828,6.96203123665066,23.7220369592652,23.7220369592652,0.0,26.357818843628,0.0,23.7220369592652,26.357818843628,0,0
+2017/01/25 03:00:00,28.344484284047404,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251211975745126,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9849659254056508,-0.9849659254056508,-1.053628545902106,-1.053628545902106,-1.1142942794471231,-1.1142942794471231,-1.1077398777825787,-1.1077398777825787,-0.04759864834384719,-0.04759864834384719,-0.9819010392263968,-1.196145775655383,-1.2318521219301712,-1.250590920346472,-0.08981573320487471,-1.0638933778555049,-1.28308208902429,-1.3197732276560987,-1.3410090249602613,-0.31044664182322346,25.49093144550686,25.49093144550686,28.43138325364967,28.43138325364967,31.170818263137704,31.170818263137704,30.868748254337106,30.868748254337106,5.046904468985218,5.046904468985218,25.36382092427526,35.05930881036731,36.81837935303893,37.7554546341361,5.167048401006994,28.885845299782233,39.401402168857814,41.2898489034418,42.395916088588514,7.00321964875576,28.344484284047404,28.344484284047404,0.0,31.493871426719338,0.0,28.344484284047404,31.493871426719338,0,0
+2017/01/25 04:00:00,23.72230359076991,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5252081670921205,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0452470547201407,-1.0452470547201407,-1.1200228544956177,-1.1200228544956177,-1.175796130051957,-1.175796130051957,-1.1745263412182643,-1.1745263412182643,0.017808646520533506,0.017808646520533506,-1.061384525080568,-1.280204993621693,-1.320611771931229,-1.3362427458124482,-0.061181251654247155,-1.1599416923199504,-1.3846602511707895,-1.4251179252490984,-1.4444252576905687,-0.3220110641910439,28.063114467676428,28.063114467676428,31.436003432797463,31.436003432797463,34.07319457414107,34.07319457414107,34.012072506933706,34.012072506933706,5.006565213443579,5.006565213443579,28.77442122107621,39.25461627478788,41.33335040856898,42.14688063863655,5.077497987518669,33.31356259942369,44.696004132835604,46.85490453166266,47.89271175872993,7.155868115611852,23.72230359076991,23.72230359076991,0.0,26.358115100855457,0.0,23.72230359076991,26.358115100855457,0,0
+2017/01/25 05:00:00,43.917702432975496,0,389.4583475360356,0,0,0,0.0,0.022840601772586178,4.633261998087618,9.319298099999997,25.555573451546493,0,2.2633097339935357,1.545849959983091,0.5775685875921701,0,0,300.7324662546753,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14261867508494935,824.4682892846705,0.13768244383457137,824.0110324375506,1.1767671166728217,1563.954197481061,0.17137936833759423,1024.4834005109192,0.0,0.0,2.6698216058585698,3247.684373640681,2.4052437155623085,2850.2507854979585,2.7473223335351076,4889.666558946427,2.441635873380495,3067.5422671161014,0.0,0.0,1.9989195306503373,3682.046192137724,2.281476998754029,2997.983045536736,4.105306871841838,5156.453691473204,2.5624272390735476,3204.0293398627127,0.0,0.0,0,0,0,0,0,0,0,0,0.020735050897212944,0.0006560425568650646,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9163872549534418,-0.9163872549534418,-0.9452267723294546,-0.9452267723294546,-0.9703682027536746,-0.9703682027536746,-0.9676734380207073,-0.9676734380207073,0.15371014040219858,0.15371014040219858,-0.7618420135024804,-0.8669374689315423,-0.8723422551679788,-0.8905051773759766,-0.02981535633460943,-0.8213153366536612,-0.9328931257708336,-0.9308452060523233,-0.9536246523797124,-0.3057742943956967,22.73458822335988,22.73458822335988,23.87111932173572,23.87111932173572,24.888765704056212,24.888765704056212,24.778507203176574,24.778507203176574,5.489598901299658,5.489598901299658,17.226178930824744,20.864048338300435,21.063623167000642,21.743098152927402,5.0184025573528,19.227758088305194,23.38100393268003,23.300209297315206,24.208280327713027,6.943151515290495,43.917702432975496,43.917702432975496,0.0,48.797447147750546,0.0,43.917702432975496,48.797447147750546,0,0
+2017/01/25 06:00:00,76.75655066178268,0,347.78904670942705,0,0,0,0.09034132640809468,0.017739202550467553,5.555297838843742,9.319298099999997,57.911447091112116,0,1.980392853174614,1.3570229065481556,0.5250113431455059,0,0,134.84693163416225,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,287.20947224629583,0.0,0.0,0.0,0.0,0.0,0.0,53.59816217493555,0.0,201.26211403288895,0.0,427.97803375630895,0.0,305.2614500049114,0.0,0.0,1.9909508447555027,2534.332950735651,1.598783172918047,2350.6345075963854,3.0944289651222334,4107.888862776587,1.9077595650717285,2562.193572532512,0.0,0.0,2.2665964982633113,3163.067204144345,1.7110914134832456,2717.4325421020917,3.3260511621394926,4710.3368375568125,1.8435409287139919,2934.906583047391,0.0,0.0,0,0,0,0,0,0,0,0,0.01851654645647539,0.0005858506227852889,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8050561223544217,-0.8050561223544217,-0.8375121560312544,-0.8375121560312544,-0.8565501034748737,-0.8565501034748737,-0.8557579004882896,-0.8557579004882896,0.4782198380565567,0.4782198380565567,-0.7157428314195503,-0.7961303611670503,-0.7972175244776881,-0.81415775126483,0.0810491022567973,-0.7421152109404613,-0.821647223745193,-0.8124909492676973,-0.8366658309099699,-0.19301051433655703,18.66567248473787,18.66567248473787,19.798734286106082,19.798734286106082,20.48387816835904,20.48387816835904,20.45506752999553,20.45506752999553,9.776423922776829,9.776423922776829,15.778535870298327,18.36185175121905,18.39867697759631,18.978945719792463,5.136020675537608,16.595539890107773,19.2393474446269,18.92131392459632,19.76862729113394,5.772420238966248,76.75655066178268,76.75655066178268,0.0,85.28505629086965,0.0,76.75655066178268,85.28505629086965,0,0
+2017/01/25 07:00:00,102.471102221738,0,841.3532119611373,0,0,0,0.0,0.01613437570709948,11.110595677687485,13.929299233552332,73.80580873715317,0,1.8993251804206048,1.184992026676944,0.5249469905403893,0,0,108.20083413560792,502.4650864939925,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69.00940726905692,0.0,193.32580714327477,0.0,161.5112293343434,0.0,0.0,1.4772761573252258,2175.8618836893693,2.0407187483870075,1992.9801323594838,1.577796984087096,3454.7758710004628,2.0098028435115034,2164.261816533091,0.0,0.0,2.013339724791573,2538.8991822708076,1.8249784540935252,2148.108338598492,3.203660674467149,3693.2401300216684,1.9868021204363986,2311.2557147436623,0.0,0.0,0,0,0,0,0,0,0,0,0.04479426820074407,0.00141725942169091,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7001393097052888,-0.7001393097052888,-0.7610212459333399,-0.7610212459333399,-0.7770810111280548,-0.7770810111280548,-0.7797502651506264,-0.7797502651506264,0.729431376762816,0.729431376762816,-0.6994514584199574,-0.7739730517873298,-0.7739354920296748,-0.7909498310618229,0.1428587084664451,-0.7207248622705121,-0.7942471082238951,-0.7833515530902112,-0.8079953929325799,-0.08434108153737795,15.309246677450844,15.309246677450844,17.199608115729774,17.199608115729774,17.724735847915966,17.724735847915966,17.81308143741971,17.81308143741971,16.19886826626798,16.19886826626798,15.28880069397664,17.62225247259518,17.62101647514109,18.187060896113508,5.422851306469738,15.930584939602383,18.298179266333264,17.93275538345482,18.76645843893644,5.147298179406263,102.471102221738,102.471102221738,0.0,113.85678024637555,0.0,102.471102221738,113.85678024637555,0,0
+2017/01/25 08:00:00,165.01337437004074,0,1154.1159721910437,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.7574247050869951,27.069155313366355,0,0,299.34870489303336,588.5896234539294,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3529.412594549944,0.0,2241.2422656215767,0.0,4170.90871069327,0.0,2371.717343258744,0.0,0.0,0.0,7029.522938887245,0.0,8540.749921793953,0.0,8449.584064909972,0.0,8648.62237609409,0.0,7805.539054671328,0.0,7222.3295017080545,0.0,8563.171075392407,0.0,8508.847823145405,0.0,8639.237174704023,0.0,11424.059816515673,0,0,0,0,0,0,0,0,0.06144598922084588,0.0019441082675598965,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7779175487031951,-0.7779175487031951,-0.8072119639813709,-0.8072119639813709,-0.8340928111534396,-0.8340928111534396,-0.8252795616943118,-0.8252795616943118,0.08259514698342194,0.08259514698342194,-0.6950030502203468,-0.772878072710139,-0.7619369915375386,-0.7865981578233764,-0.22771699600735662,-0.7165076986246539,-0.7914760934862218,-0.7735333251656921,-0.8049815815937904,-0.33270722494147764,17.752390507307965,17.752390507307965,18.739559433536584,18.739559433536584,19.677279158631023,19.677279158631023,19.366489621219827,19.366489621219827,5.141261062367278,5.141261062367278,15.157067601281867,17.586244126383036,17.229255525339553,18.041115455688526,6.075852013600823,15.801809768770013,18.20476503851404,17.607785939698545,18.663121268092596,7.302101861189826,165.01337437004074,165.01337437004074,0.0,183.3481937444897,0.0,165.01337437004074,183.3481937444897,0,0
+2017/01/25 09:00:00,166.6217006118344,0,1303.68563919556,0,0,0,0.0,0.0,12.8119515409512,0.0,83.2008179303116,0,39.380909295966944,0.6983041668391826,27.097742475311204,0,0,384.61705903797383,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2348.1171046573972,0.0,1632.2118105284587,0.0,3196.1584159752333,0.0,1688.4978504189376,0.0,0.0,0.0,6120.661134896946,0.0,7948.241019662517,0.0,7634.801987438805,0.0,7957.334180107749,0.0,2026.6655766823883,0.0,6279.802616802963,0.0,8002.2133013117855,0.0,7701.68202237854,0.0,7932.783613998538,0.0,9144.448815204101,0,0,0,0,0,0,0,0,0.0694091890794158,0.002196058360276859,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7744862395030842,-0.7744862395030842,-0.8040733989367949,-0.8040733989367949,-0.82787887069541,-0.82787887069541,-0.8086889090990399,-0.8086889090990399,-0.27184677048210815,-0.27184677048210815,-0.6739674366896566,-0.7619308103432578,-0.7482104046563901,-0.7674451203427899,-0.32173360430800263,-0.6922001491466362,-0.7805569863589705,-0.7575294194928797,-0.7808983447198689,-0.3974494406419012,17.639146214898474,17.639146214898474,18.632056853176465,18.632056853176465,19.457812845269444,19.457812845269444,18.790291911802328,18.790291911802328,6.534646327350657,6.534646327350657,14.545713002486025,17.22905528807297,16.788615763662065,17.40833773593114,7.152139349342832,15.074502722683278,17.83984154448278,17.086888601912335,17.851173230288822,8.29110237553401,166.6217006118344,166.6217006118344,0.0,185.1352229020382,0.0,166.6217006118344,185.1352229020382,0,0
+2017/01/25 10:00:00,182.8693561809809,0,1315.914548115575,0,0,0,0.0,0.0,12.054301941481798,0.0,106.27511244621549,0,39.380909295966944,0.6242415217238685,21.102815773138545,0,0,343.61043918917267,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1458.6435764900768,0.0,1034.6681690404587,0.0,2197.3605821444953,0.0,1109.479752249111,0.0,0.0,0.0,5589.738654783339,0.0,7364.357161404008,0.0,6951.101093142201,0.0,7400.1054789896,0.0,189.28559955333427,0.0,5635.947539051183,0.0,7334.407336507181,0.0,6909.446559726738,0.0,7304.698385067745,0.0,6875.04826364242,0,0,0,0,0,0,0,0,0.07006026524835175,0.002216657956424465,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.77164583374942,-0.77164583374942,-0.7948667368796307,-0.7948667368796307,-0.8142979578133949,-0.8142979578133949,-0.8038633237597341,-0.8038633237597341,-0.28961308304993094,-0.28961308304993094,-0.6636030375898885,-0.7455031833258663,-0.7289562891471459,-0.7546392561477187,-0.3328924732602275,-0.6820727218362261,-0.7619199393951327,-0.7380022376990663,-0.7677743452091819,-0.40109240421593173,17.54578310581428,17.54578310581428,18.319112224043565,18.319112224043565,18.983798877260128,18.983798877260128,18.62487618945508,18.62487618945508,6.74250038706154,6.74250038706154,14.251534728537465,16.702663201042967,16.184144768311754,16.993985758669837,7.30467726314204,14.779009496253522,17.2287031321044,16.466154742373377,17.41908263207344,8.35206704611673,182.8693561809809,182.8693561809809,0.0,203.1881735344232,0.0,182.8693561809809,203.1881735344232,0,0
+2017/01/25 11:00:00,213.03842007857494,0,1355.1884391642243,0,0,0,0.0,0.0,17.146892480886187,0.0,133.89528835348938,0,39.380909295966944,0.6164886154306412,18.56686613034746,0,0,331.5397637024276,562.2740927987229,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,335.63301247195614,0.0,384.5836232488962,0.0,1150.5031201259865,0.0,456.0827383099572,0.0,0.0,0.0,3877.6984166588477,0.0,7366.896669616606,0.0,5223.020063643036,0.0,7381.13968332049,0.0,4957.386246132111,0.0,3945.0520248068333,0.0,7351.044297306166,0.0,5199.4831679392455,0.0,7311.971376300563,0.0,10527.090744445284,0,0,0,0,0,0,0,0,0.07215123629821478,0.002282814822915078,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7282353183603455,-0.7282353183603455,-0.756766066851493,-0.756766066851493,-0.7694337545031679,-0.7694337545031679,-0.7626679750943322,-0.7626679750943322,-0.23074275755037768,-0.23074275755037768,-0.6484292036642653,-0.7341466506448743,-0.7146274759963103,-0.7414367560474018,-0.3447455483139294,-0.6633022996697574,-0.7473142879573889,-0.7205230088657957,-0.7519202475274013,-0.404293515964751,16.16181961349804,16.16181961349804,17.06231629054693,17.06231629054693,17.473311093220644,17.473311093220644,17.252946950687132,17.252946950687132,6.104697043932205,6.104697043932205,13.829241105405089,16.34552586601899,15.744642253161317,16.57414718801965,7.472493393252833,14.2430681721208,16.760129847255882,15.924403700424975,16.90691092306062,8.406106073593094,213.03842007857494,213.03842007857494,0.0,236.70935564286106,0.0,213.03842007857494,236.70935564286106,0,0
+2017/01/25 12:00:00,228.37310610323013,0,1279.8899852798968,0,0,0,0.0,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.3383079424784405,20.494135293375187,0,0,183.83785494203838,581.4420189059687,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4543.8249367450935,0.0,6042.999182801466,0.0,5905.534271500059,0.0,6065.164503093036,0.0,0.0,0.0,4504.961222026861,0.0,5974.773972458244,0.0,5807.345915563261,0.0,5954.015691913634,0.0,0.0,0,0,0,0,0,0,0,0,0.0681422908393464,0.0021559745830619834,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5998386516066091,-0.5998386516066091,-0.6616699096610787,-0.6616699096610787,-0.6921864384093054,-0.6921864384093054,-0.6747282156959171,-0.6747282156959171,-0.12021750774042216,-0.12021750774042216,-0.6129443884630318,-0.7008371613446501,-0.6828752291516275,-0.709944312203679,-0.3264761567074414,-0.6207843195117834,-0.7074531112799453,-0.6833775005231653,-0.7148586896513757,-0.37473791976268866,12.544135563248872,12.544135563248872,14.197180485018222,14.197180485018222,15.074099680576623,15.074099680576623,14.56748980957967,14.56748980957967,5.299361436933339,5.299361436933339,12.880661508821177,15.330010788323008,14.802262895618327,15.602914589037184,7.216323097559794,13.08553674236478,15.527908067355469,14.816830849460914,15.751664010506772,7.923817740251735,228.37310610323013,228.37310610323013,0.0,253.7478956702557,0.0,228.37310610323013,253.7478956702557,0,0
+2017/01/25 13:00:00,208.1362405217625,0,1288.6976170435503,0,0,0,0.0,0.0,16.903073550514318,0.0,129.49988082968767,0,39.380909295966944,0.3578402306648764,18.562561412474388,0,0,228.611348191537,580.9665099326675,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5445.475171821581,0.0,4814.713239199865,0.0,6728.012482680413,0.0,4883.156856403306,0.0,0.0,0.0,5191.31318833751,0.0,4607.284494515428,0.0,6435.098568461102,0.0,4651.620525327055,0.0,0.0,0,0,0,0,0,0,0,0,0.06861121567831488,0.00217081103809937,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5215828039764248,-0.5215828039764248,-0.5638181028199097,-0.5638181028199097,-0.6387554194165946,-0.6387554194165946,-0.5865370451870762,-0.5865370451870762,-0.07555716972462134,-0.07555716972462134,-0.5766053883703882,-0.6596525495799869,-0.6494604780422611,-0.6740474747185213,-0.30559479542716833,-0.5789590867946215,-0.659768856563418,-0.6456216103448452,-0.6744101836356784,-0.34348554128249914,10.689780044238788,10.689780044238788,11.657605247140694,11.657605247140694,13.565225935294066,13.565225935294066,12.210202586552768,12.210202586552768,5.118207004833863,5.118207004833863,11.965877944075771,14.140630489997008,13.857625802879625,14.54800286022352,6.940862285320776,12.023393351572892,14.143885980624987,13.75219881663402,14.558383300403946,7.454370673514703,208.1362405217625,208.1362405217625,0.0,231.26248946862498,0.0,208.1362405217625,231.26248946862498,0,0
+2017/01/25 14:00:00,205.46538207574937,0,1136.4916621293016,0,0,0,0.0,0.0,16.903073550514318,0.0,129.2730206906943,0,39.380909295966944,0.2093000503713844,16.26710328574807,0,0,150.78547945538466,542.0767762671153,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4239.303974270987,0.0,4469.3064867293815,0.0,5432.7012721823485,0.0,4598.215010314095,0.0,0.0,0.0,4238.053557914471,0.0,4405.18688441966,0.0,5376.826021392102,0.0,4521.41277851972,0.0,0.0,0,0,0,0,0,0,0,0,0.06050765789871477,0.0019144201185985542,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47838862709843905,-0.47838862709843905,-0.518132096722273,-0.518132096722273,-0.617926703444145,-0.617926703444145,-0.5177497523757238,-0.5177497523757238,-0.09481309691976489,-0.09481309691976489,-0.5564104659741864,-0.6339589181731787,-0.6309117219958982,-0.6550289472765127,-0.30416766993878797,-0.555478980760606,-0.6301449487586644,-0.6259488601399491,-0.6531346805948719,-0.33732961950165274,9.779821711945573,9.779821711945573,10.614120750484389,10.614120750484389,13.010551800845946,13.010551800845946,10.60576927733105,10.60576927733105,5.186162400109083,5.186162400109083,11.482268030193993,13.435825759205187,13.354136802253961,14.011688355695028,6.922710018303377,11.460388384377637,13.33364465098822,13.221955187023255,13.95912893835326,7.366799719608608,205.46538207574937,205.46538207574937,0.0,228.29486897305486,0.0,205.46538207574937,228.29486897305486,0,0
+2017/01/25 15:00:00,189.71319760299883,0,1172.9216534050445,0,0,0,0.0,0.0,17.02830042034,0.0,115.5196477718057,0,39.380909295966944,0.3195297226429913,14.0328351897889,0,0,224.34812304592313,540.4344764648639,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3545.8153307851717,0.0,5592.868299347779,0.0,4698.288711987052,0.0,5737.664403808615,0.0,0.0,0.0,3439.7832008184046,0.0,5463.164445050784,0.0,4563.115901505302,0.0,5605.405693621677,0.0,691.8131849982409,0,0,0,0,0,0,0,0,0.06244721761817273,0.001975786436137554,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4930893751488047,-0.4930893751488047,-0.5366334578151624,-0.5366334578151624,-0.6152444927131572,-0.6152444927131572,-0.5308663612517601,-0.5308663612517601,-0.15833413753260653,-0.15833413753260653,-0.5687731814249513,-0.64413549038975,-0.6395547229436838,-0.6662089862129427,-0.31987950827363776,-0.5756976915915982,-0.6449499312434204,-0.6402935204246787,-0.6691921328998436,-0.3539897190783644,10.080469725264251,10.080469725264251,11.025803692488594,11.025803692488594,12.940491976253526,12.940491976253526,10.895887321814556,10.895887321814556,5.519531471354668,5.519531471354668,11.776219293801063,13.71155700089406,13.5868865752917,14.325063017012639,7.127306020115583,11.943761520486746,13.733818144227925,13.606932180520715,14.40959519036015,7.607516868576312,189.71319760299883,189.71319760299883,0.0,210.7924417811098,0.0,189.71319760299883,210.7924417811098,0,0
+2017/01/25 16:00:00,183.72587254995415,0,1243.070314630538,0,0,0,0.0,0.0,17.556656219909858,0.0,108.75639138185811,0,39.380909295966944,0.5027062830822239,14.097234166682709,0,0,294.46623675884524,540.4650239774353,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2760.515711145301,0.0,6041.138356916976,0.0,3859.897900290856,0.0,6199.9690320031805,0.0,2621.632900436347,0.0,2739.8019878164305,0.0,5962.05107989874,0.0,3810.6752090916125,0.0,6121.79287003343,0.0,6451.858408044667,0,0,0,0,0,0,0,0,0.06618198430139902,0.002093951850647704,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.537125047845211,-0.537125047845211,-0.5865987003688811,-0.5865987003688811,-0.6393121381826858,-0.6393121381826858,-0.5535523687427858,-0.5535523687427858,-0.19659791303462176,-0.19659791303462176,-0.5861396669266846,-0.6597687064516132,-0.6484503034398185,-0.6818746464412268,-0.33850235149639846,-0.6001178973540355,-0.6649710368548195,-0.6532390226750463,-0.6887104096589778,-0.37605950404614197,11.036944455989996,11.036944455989996,12.211732708755434,12.211732708755434,13.580309746932329,13.580309746932329,11.41525358611807,11.41525358611807,5.801448397139239,5.801448397139239,12.200344643470643,14.143881778542791,13.829821391585398,14.773274362516915,7.383358275932849,12.551228242077187,14.290096913674873,13.962020026614724,14.972180113381768,7.944586554007756,183.72587254995415,183.72587254995415,0.0,204.13985838883792,0.0,183.72587254995415,204.13985838883792,0,0
+2017/01/25 17:00:00,209.1273726052828,0,1272.6580505527675,0,0,0,0.0,0.0,20.084827476143527,0.0,131.64086955684016,0,39.380909295966944,0.5299692055398044,14.058821868338006,0,0,270.83693827672516,540.4465296129684,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3783.028996968073,0.0,6487.746184319771,0.0,4876.704474969423,0.0,6656.630139487115,0.0,1636.1316047402534,0.0,3625.197736940103,0.0,6308.8850766988435,0.0,4664.798657993411,0.0,6457.551817222886,0.0,6386.0403722691735,0,0,0,0,0,0,0,0,0.06775725727773177,0.002143792389563029,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5546805389435419,-0.5546805389435419,-0.5554254087276036,-0.5554254087276036,-0.6438305166641529,-0.6438305166641529,-0.5666743782977888,-0.5666743782977888,-0.16142526738256854,-0.16142526738256854,-0.6016572808896186,-0.6723755637220603,-0.6600356252213672,-0.6948513765064075,-0.34482468982332815,-0.6196396063883797,-0.6826045615045355,-0.6685582538371392,-0.7045897019865087,-0.38423035942195094,11.441663736868378,11.441663736868378,11.459131175513733,11.459131175513733,13.7032285440756,13.7032285440756,11.725848398722931,11.725848398722931,5.540038187749502,5.540038187749502,12.590388436982053,14.500227717892514,14.151355182574505,15.15259107267083,7.473633940238457,13.055456486482441,14.794416934696983,14.391600984301434,15.442025531459777,8.074647232840462,209.1273726052828,209.1273726052828,0.0,232.36374733920312,0.0,209.1273726052828,232.36374733920312,0,0
+2017/01/25 18:00:00,234.5182007354534,0,1265.2431853255378,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.45570065493072953,18.425164937594765,0,0,222.91284589163166,580.9557567708323,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4348.609514178855,0.0,5568.431001772252,0.0,5310.43858027353,0.0,5668.537336711552,0.0,0.0,0.0,4444.988289466837,0.0,5557.178542731594,0.0,5333.474889514811,0.0,5635.147107929933,0.0,0.0,0,0,0,0,0,0,0,0,0.06736248436079396,0.0021313020496505396,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5779728266523252,-0.5779728266523252,-0.5961698661517988,-0.5961698661517988,-0.656049322032861,-0.656049322032861,-0.5381669784184617,-0.5381669784184617,-0.11783299403026108,-0.11783299403026108,-0.5973837032141726,-0.6707486408335387,-0.6489740507877203,-0.6858821279678016,-0.33390520254286404,-0.6155894588778087,-0.6812536758407898,-0.6562507753870683,-0.6955664755927591,-0.37096774833959933,11.999263659335853,11.999263659335853,12.451264877395374,12.451264877395374,14.040064709415148,14.040064709415148,11.060592036980879,11.060592036980879,5.2875963368159375,5.2875963368159375,12.481926969400277,14.453854278846592,13.844231680701427,14.889638273809368,7.318782409677411,12.949485059162043,14.755305594793867,14.045672407738635,15.173705352980349,7.864978560599241,234.5182007354534,234.5182007354534,0.0,260.57577859494825,0.0,234.5182007354534,260.57577859494825,0,0
+2017/01/25 19:00:00,218.71587299065126,0,1248.498089921591,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.4297097654202444,25.609692528710337,0,0,222.9584522263723,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6509.647481590375,0.0,5331.67835329117,0.0,7394.360257716566,0.0,5400.587491195225,0.0,0.0,0.0,6422.364745867074,0.0,5211.783332659296,0.0,7238.853619387105,0.0,5249.533407945647,0.0,0.0,0,0,0,0,0,0,0,0,0.06647096307828403,0.002103094937713522,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5608143789953545,-0.5608143789953545,-0.5807937981026828,-0.5807937981026828,-0.6440649444622354,-0.6440649444622354,-0.542887825767782,-0.542887825767782,-0.10063543510662616,-0.10063543510662616,-0.5908681923834104,-0.6579858278400075,-0.6394658397393789,-0.671996237548074,-0.3129009788783416,-0.6090372450755831,-0.6687631766651546,-0.6465734168578375,-0.6815611411623061,-0.3464713833379449,11.58622090978119,11.58622090978119,12.068393408506893,12.068393408506893,13.709630119935184,13.709630119935184,11.168325364076807,11.168325364076807,5.209738962185469,5.209738962185469,12.318091704717048,14.094042496525162,13.58447652511316,14.489405247787744,7.035143001047729,12.77955490569397,14.397416316433166,13.77827874884045,14.764200506151681,7.497425646546191,218.71587299065126,218.71587299065126,0.0,243.01763665627917,0.0,218.71587299065126,243.01763665627917,0,0
+2017/01/25 20:00:00,210.86289962581458,0,1198.3609086302588,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.33322177957289084,27.0977424753112,0,0,208.31162344758445,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.88462169821124,0.0,0.0,0.0,0.0,0.0,6975.233896537715,0.0,5638.372634627871,0.0,7817.162854971417,0.0,5692.344173329264,0.0,0.0,0.0,6847.412736417034,0.0,5494.9344109350595,0.0,7614.271303260539,0.0,5513.644021780275,0.0,0.0,0,0,0,0,0,0,0,0,0.06380162240938907,0.00201863885963362,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5811147000482442,-0.5811147000482442,-0.5975939258564651,-0.5975939258564651,-0.6738015711377235,-0.6738015711377235,-0.5821609556914265,-0.5821609556914265,-0.12156436187897228,-0.12156436187897228,-0.5918270123646481,-0.6537094281486658,-0.6381541086777704,-0.6666439347380806,-0.3044813525026239,-0.6120370432379767,-0.6662775026595577,-0.6464954528212818,-0.6776963227118392,-0.33771671480666604,12.076279194387354,12.076279194387354,12.487243788116487,12.487243788116487,14.540968534439983,14.540968534439983,12.102020723572124,12.102020723572124,5.306111191456424,5.306111191456424,12.342086023612723,13.975059781048913,13.548949043784276,14.337363972827589,6.92669250427727,12.857122734770371,14.327000214808123,13.7761410217323,14.652689439726203,7.372258909137187,210.86289962581458,210.86289962581458,0.0,234.29211069534952,0.0,210.86289962581458,234.29211069534952,0,0
+2017/01/25 21:00:00,212.38826671926296,0,1133.0444145565596,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.22222213192035792,24.262315421185278,0,0,178.48548188642928,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,307.73123237073224,0.0,0.0,0.0,0.0,0.0,6919.3501095011725,0.0,5572.939067397676,0.0,7719.121962690519,0.0,5615.00205308032,0.0,0.0,0.0,6768.084645258638,0.0,5416.239421680173,0.0,7490.631193523002,0.0,5419.156568643163,0.0,0.0,0,0,0,0,0,0,0,0,0.060324123884542724,0.0019086132303239118,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6160819927896377,-0.6160819927896377,-0.6279779572668819,-0.6279779572668819,-0.698493422021942,-0.698493422021942,-0.6233506483019616,-0.6233506483019616,-0.16064931564553014,-0.16064931564553014,-0.5904081386575619,-0.647663962168571,-0.6341166691232814,-0.6597040181037915,-0.29741800473161195,-0.6115337728627389,-0.6611674807458446,-0.6430902740335283,-0.671404248654925,-0.3301805701873784,12.962334104861142,12.962334104861142,13.275869328060978,13.275869328060978,15.26035765172324,15.26035765172324,13.153180211552609,13.153180211552609,5.534853048078503,5.534853048078503,12.306593097121052,13.808208472372513,13.440065698686965,14.142071047422846,6.838024895858268,12.844082064540373,14.183080070038883,13.683030205122378,14.472527791012183,7.2671206135080695,212.38826671926296,212.38826671926296,0.0,235.98696302140328,0.0,212.38826671926296,235.98696302140328,0,0
+2017/01/25 22:00:00,199.4062004358635,0,1253.4785738341996,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.41252050993276795,27.0977424753112,0,0,334.40999367661334,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,535.3191282676635,0.0,307.5678503669664,0.0,1287.8000255918314,0.0,382.6853714363565,0.0,0.0,0.0,6006.7792525371515,0.0,6770.9572976315385,0.0,6814.346613038369,0.0,6806.96372464253,0.0,0.0,0.0,5859.881896949354,0.0,6612.194311887453,0.0,6589.751051843463,0.0,6605.6802089079065,0.0,2867.6705784818396,0,0,0,0,0,0,0,0,0.06673612773086894,0.0021114845624862987,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6841270890818916,-0.6841270890818916,-0.6921695593511167,-0.6921695593511167,-0.7316695729251382,-0.7316695729251382,-0.6887910682856638,-0.6887910682856638,-0.24009119975916265,-0.24009119975916265,-0.6056571054175053,-0.6642648654549008,-0.647527279897356,-0.6747893272245112,-0.3119943849335972,-0.6295902328983852,-0.6812257352863617,-0.6600309121188369,-0.6895207088338259,-0.34845403797425706,14.838592318361975,14.838592318361975,15.073603513370728,15.073603513370728,16.268363005974976,16.268363005974976,14.974539162115846,14.974539162115846,6.196244048012119,6.196244048012119,12.692620296177125,14.270180705195258,13.804454437768314,14.569240174478665,7.023321308502332,13.318835672527953,14.754497482719174,14.15122319460977,14.99589197037767,7.526224333917028,199.4062004358635,199.4062004358635,0.0,221.56244492873722,0.0,199.4062004358635,221.56244492873722,0,0
+2017/01/25 23:00:00,140.71670394785212,0,1192.720067102182,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.6567575211462774,20.87501361892962,0,0,433.35807325104435,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2231.9882214406616,0.0,1346.5120940248112,0.0,2915.339303610348,0.0,1423.0521199784544,0.0,0.0,0.0,5698.2596780389185,0.0,7374.726523564548,0.0,6509.659103409031,0.0,7404.945928114619,0.0,4714.719901479599,0.0,5593.4677394853825,0.0,7235.907307398439,0.0,6317.721158694587,0.0,7219.620226694552,0.0,9958.289131369524,0,0,0,0,0,0,0,0,0.06350129982822533,0.0020091368625077075,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7799052941997875,-0.7799052941997875,-0.7850143589971521,-0.7850143589971521,-0.8127393060908052,-0.8127393060908052,-0.7824129045782663,-0.7824129045782663,-0.47552236997435277,-0.47552236997435277,-0.6265634419112855,-0.6881128586544,-0.6667491131647008,-0.6970096880400662,-0.3412243603850952,-0.6530347957803482,-0.7082873543404371,-0.6821309147536725,-0.7145319720354051,-0.383111133666262,17.818221825579386,17.818221825579386,17.98819795492055,17.98819795492055,18.929893753462352,18.929893753462352,17.90151013050665,17.90151013050665,9.722289566424408,9.722289566424408,13.238266077072723,14.95471210604687,14.340339796726099,15.21638544527228,7.422017216535025,13.956361793149412,15.552996135752295,14.78069475375014,15.74174255328218,8.056663349060443,140.71670394785212,140.71670394785212,0.0,156.35189327539123,0.0,140.71670394785212,156.35189327539123,0,0
+2017/01/26 00:00:00,91.50064564035412,0,1017.7550899775327,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.7326753781172609,11.825014000944293,0,0,446.0040755986946,518.5154856100219,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3522.1214758694136,0.0,2133.711145214132,0.0,4067.375855285266,0.0,2201.7344861871175,0.0,0.0,0.0,5101.327057896832,0.0,7762.586564158051,0.0,5898.3565045136365,0.0,7791.30173769099,0.0,11081.978172468709,0.0,5139.0181364182745,0.0,7710.832536246247,0.0,5840.095790168664,0.0,7690.790212477105,0.0,15994.981356428183,0,0,0,0,0,0,0,0,0.054186034848384024,0.0017144083718208525,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8626412921664128,-0.8626412921664128,-0.8634625679665106,-0.8634625679665106,-0.8954037653852432,-0.8954037653852432,-0.8630075679111158,-0.8630075679111158,-0.5872279039853833,-0.5872279039853833,-0.6469324721956257,-0.7104600213819313,-0.6853494243799204,-0.7183730595757702,-0.3735816831628541,-0.674826118817135,-0.732836259841464,-0.7025596494155444,-0.7378597949749982,-0.4192598481942896,20.706269883349904,20.706269883349904,20.736372508749852,20.736372508749852,21.928665815482745,21.928665815482745,20.719691721442175,20.719691721442175,12.227357347653196,12.227357347653196,13.788127232516047,15.618475292835129,14.87413031551391,15.85867590801793,7.905708485097676,14.57029404233576,16.30467334826274,15.38135224921254,16.461686813564185,8.664579447655726,91.50064564035412,91.50064564035412,0.0,101.66738404483792,0.0,91.50064564035412,101.66738404483792,0,0
+2017/01/26 01:00:00,39.79810751031204,0,666.0598153430723,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.26823374227042013,0.18390967873104977,9.548643092887385,0,0,96.65170160409777,516.1725849701584,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,404.35676767782235,0.0,351.5939403713151,0.0,668.2156803298876,0.0,382.78596641049467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0354615179238108,0.0011219777083923226,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8786597427878462,-0.8786597427878462,-0.8824883248820588,-0.8824883248820588,-0.9083259111886863,-0.9083259111886863,-0.8823299982110935,-0.8823299982110935,-0.263755185006466,-0.263755185006466,-0.9555297583037482,-1.0276869494892975,-1.0051882161823458,-1.0385445958399646,-0.16120782137657708,-0.9498490284344492,-1.0227550998185126,-0.9958525020791866,-1.030173654511894,-0.29788934708871095,21.29842504125193,21.29842504125193,21.441519848027696,21.441519848027696,22.42286394202607,22.42286394202607,21.435590405684096,21.435590405684096,6.444390206553919,6.444390206553919,24.285153647932148,27.299851576673376,26.338614218450758,27.7704544820118,5.538582618132281,24.05635120345073,27.087527237880195,25.945342585738246,27.407249680055358,6.843876071187523,39.79810751031204,39.79810751031204,0.0,44.22011945590227,0.0,39.79810751031204,44.22011945590227,0,0
+2017/01/26 02:00:00,23.722135267811552,0,35.7102396307555,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250398441337596,0,0,0.0,0.21988711821137205,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.001901239608753986,6.015389594764643e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0113229069965162,-1.0113229069965162,-1.042155989243435,-1.042155989243435,-1.075977231597257,-1.075977231597257,-1.0493648635433697,-1.0493648635433697,-0.11315404490992588,-0.11315404490992588,-1.0800852460157884,-1.1798198399441993,-1.167696133671462,-1.1984338190048365,-0.0946351372385978,-1.1262186409402062,-1.2174006819812095,-1.1978332875478845,-1.2300088151695177,-0.33609033538939725,26.598834393547932,26.598834393547932,27.927941002176027,27.927941002176027,29.425643794467277,29.425643794467277,28.243726705096037,28.243726705096037,5.2651972009030175,5.2651972009030175,29.610323715937938,34.267199724824096,33.68413723715153,35.170946054152964,5.18546394203932,31.724039189815386,36.10213762134365,35.14163048233624,36.726704663405485,7.349364940372183,23.722135267811552,23.722135267811552,0.0,26.35792807534617,0.0,23.722135267811552,26.35792807534617,0,0
+2017/01/26 03:00:00,28.34431324284607,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5249501563731762,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0752860177737844,-1.0752860177737844,-1.1102737899605108,-1.1102737899605108,-1.1398211488235939,-1.1398211488235939,-1.1180614368091335,-1.1180614368091335,-0.03217494038911327,-0.03217494038911327,-1.1801295367290943,-1.2841654419468929,-1.27342666799583,-1.3028772627768312,-0.07186662386240031,-1.2406671443946877,-1.337034646261627,-1.3189067811646003,-1.3495472864262335,-0.33770680640424017,29.39462769694724,29.39462769694724,30.98535676720526,30.98535676720526,32.36080680176309,32.36080680176309,31.345083423863443,31.345083423863443,5.021430708266891,5.021430708266891,34.282152088721276,39.45672409888093,38.909574108278896,40.41652131228385,5.106938918826842,37.25804201155082,42.18822626523651,41.24491534717268,42.84312667626487,7.3721190919787745,28.34431324284607,28.34431324284607,0.0,31.493681380940078,0.0,28.34431324284607,31.493681380940078,0,0
+2017/01/26 04:00:00,23.722135321804302,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.52503989812651,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.165648718274822,-1.165648718274822,-1.2051212980235861,-1.2051212980235861,-1.2280567078427855,-1.2280567078427855,-1.215130151540817,-1.215130151540817,0.03193592436761018,0.03193592436761018,-1.2753722562688865,-1.377642549572809,-1.372259428199816,-1.3973620484981868,-0.04281286956185034,-1.3569973305822316,-1.4523021148639703,-1.4383977660158478,-1.4654116423480688,-0.34826818555569533,33.58611369599325,33.58611369599325,35.49810481801087,35.49810481801087,36.62971908067556,36.62971908067556,35.99012900622671,35.99012900622671,5.021113474399229,5.021113474399229,39.00849898943671,44.324012478301334,44.039212644879846,45.37126170956608,5.03794593306894,43.234451756711735,48.31729774163309,47.568261344485656,49.025305445684026,7.523517669143814,23.722135321804302,23.722135321804302,0.0,26.357928135338113,0.0,23.722135321804302,26.357928135338113,0,0
+2017/01/26 05:00:00,44.65032436867704,0,425.01307892800327,0,0,0,0.0,0.025023813826457665,4.633261998087618,9.319298099999997,25.555573451546493,0,2.755738039303857,1.8363765610394447,0.5250524048731627,0,0,336.28719764664294,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.461436319310413,1870.3739776331724,1.2693133891926132,1348.5145672947172,1.5431652205964685,2231.9588146376923,0.9747769415318619,1399.2981689161315,0.0,0.0,2.8521237676134397,5526.721433133903,2.0339431091598876,3897.1997750606647,2.4940924697806777,6205.705329528166,2.214712494171977,3964.8344307293582,0.0,0.0,3.0973821041316305,5366.916029286147,2.4264544978564495,3701.581729767564,2.846756340860111,5914.110107625375,1.8096571722521348,3733.309515966412,0.0,0.0,0,0,0,0,0,0,0,0,0.022628011132147872,0.0007159344991962757,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9843575273083895,-0.9843575273083895,-1.0022728954729023,-1.0022728954729023,-1.0126397483547813,-1.0126397483547813,-1.0054513284298772,-1.0054513284298772,0.167467434716821,0.167467434716821,-0.8449398765245326,-0.8941926867826621,-0.8858552276318408,-0.9025314003203287,-0.011497487179354856,-0.8991300624206664,-0.948083667934345,-0.9305092047000252,-0.95247937867916,-0.3474836863879664,25.465670525415604,25.465670525415604,26.215450269253054,26.215450269253054,26.654876413047944,26.654876413047944,26.34974575653351,26.34974575653351,5.581272414051654,5.581272414051654,20.064249625548428,21.882696852025447,21.567855827134423,22.200418929673887,5.00273646112376,22.07047955340329,23.98550674678468,23.286969334735232,24.16213582345611,7.512108786894771,44.65032436867704,44.65032436867704,0.0,49.61147152075227,0.0,44.65032436867704,49.61147152075227,0,0
+2017/01/26 06:00:00,77.53462348089619,0,392.6377013095553,0,0,0,0.09779110532732917,0.02275733500932927,5.555297838843742,9.319298099999997,57.911447091112116,0,2.4582502337204035,1.6446666350529031,0.5251151418303426,0,0,179.69558623429054,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,310.5162262549524,0.0,0.0,0.0,0.0,0.0,0.0,795.4580142884761,0.0,603.6622302879649,0.2612798465584092,969.4050686050273,0.0,631.2105724722082,0.0,0.0,3.3673057742068977,4429.657554231502,2.2899650300992107,3188.7135335978646,3.239208330885731,5092.560946852118,2.696133340760184,3256.5850891505042,0.0,0.0,3.207033505039135,4622.3504683537985,2.452873602952195,3226.123490504532,3.15198811035134,5154.393484373706,2.091547468476165,3257.276419753086,0.0,0.0,0,0,0,0,0,0,0,0,0.020904322047083666,0.0006613981780552497,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8869511367351353,-0.8869511367351353,-0.9052882929346471,-0.9052882929346471,-0.9107551034173929,-0.9107551034173929,-0.9077673027501475,-0.9077673027501475,0.49223878857840514,0.49223878857840514,-0.7766674760135456,-0.8158371458936325,-0.808573346129724,-0.8214007691092091,0.09901693612122936,-0.7936319650016734,-0.831823100470001,-0.8153872039218333,-0.834433120832691,-0.26223090497240525,21.609077646056093,21.609077646056093,22.30608341844382,22.30608341844382,22.51652227508474,22.51652227508474,22.40136034622593,22.40136034622593,10.062819928832852,10.062819928832852,17.711076010942506,19.037131303430513,18.78631904920404,19.23074091089387,5.203043922376779,18.277413937349465,19.596929158927466,19.021530621935042,19.689345045280575,6.427696518292137,77.53462348089619,77.53462348089619,0.0,86.14958164544021,0.0,77.53462348089619,86.14958164544021,0,0
+2017/01/26 07:00:00,102.85155301351433,0,861.2671518652481,0,0,0,0.0,0.016230534361546235,11.110595677687485,13.929299233552332,73.80580873715317,0,2.102064050670584,1.3098957489426002,0.5776590311466401,0,0,126.57378901096371,504.0060715227475,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.9963910988657,0.0,179.7607258121057,0.0,286.0461979616804,0.0,208.06042309626218,0.0,0.0,1.9729556328904132,3199.960586705072,1.2851255670105577,2335.1210944296618,3.0813292573958884,3727.714915877523,1.499915759792657,2392.8425070806798,0.0,0.0,1.9180352815281667,3316.8254531233197,1.4366872925247662,2330.249274966942,3.1484644100872474,3712.5275668463746,1.888021160316536,2352.4453863889094,0.0,0.0,0,0,0,0,0,0,0,0,0.04585450111162698,0.0014508044519479422,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8072153241459099,-0.8072153241459099,-0.829011389835443,-0.829011389835443,-0.8311838599093421,-0.8311838599093421,-0.8321455352877596,-0.8321455352877596,0.7431807351255828,0.7431807351255828,-0.7524475278325299,-0.7868995579595913,-0.7795568688280264,-0.7924391096341332,0.15981977849745477,-0.7644495903799781,-0.7997892418343193,-0.7833753290163199,-0.8024197962062566,-0.11308170245379681,18.739674749333872,18.739674749333872,19.497691019287444,19.497691019287444,19.574338341753204,19.574338341753204,19.608330526665938,19.608330526665938,16.629177325117084,16.629177325117084,16.923772064864494,18.05119783172644,17.80667031686697,18.237192552359105,5.5293375886987945,17.310785318385,18.485987370220855,17.933547310759565,18.575584848638073,5.264858021940583,102.85155301351433,102.85155301351433,0.0,114.27950334834925,0.0,102.85155301351433,114.27950334834925,0,0
+2017/01/26 08:00:00,164.86669995006483,0,1094.7869639035187,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.6260782671498392,27.0538273313276,0,0,244.68821594295954,583.9211041164783,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3252.92678446808,0.0,1984.2708100922787,0.0,3648.785067133578,0.0,2033.4224910045239,0.0,0.0,0.0,7240.476520007644,0.0,8012.161466989242,0.0,7966.499299687427,0.0,8006.31391451169,0.0,3730.109042882782,0.0,7125.640125604338,0.0,7850.979978926453,0.0,7744.502806857983,0.0,7788.049953540136,0.0,7446.435974768611,0,0,0,0,0,0,0,0,0.05828726887422608,0.0018441685576025557,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8371657243491804,-0.8371657243491804,-0.8501181233587496,-0.8501181233587496,-0.8603417391149133,-0.8603417391149133,-0.8533764759315674,-0.8533764759315674,0.15465595899100484,0.15465595899100484,-0.7348538275546728,-0.7753560517025391,-0.7597224066232534,-0.7799659563122517,-0.2054347003761087,-0.7456733118058944,-0.7880198980876846,-0.7635832068721459,-0.7912995202284061,-0.32796821136821547,19.78640677776201,19.78640677776201,20.250714599267155,20.250714599267155,20.62213171573454,20.62213171573454,20.368617309857484,20.368617309857484,5.4956490104889895,5.4956490104889895,16.367603338632307,17.66780538363635,17.15761945049725,17.82023351280084,5.87524850141304,16.708055422035926,18.088709043193845,17.282642105752274,18.198823578190854,7.236713184875569,164.86669995006483,164.86669995006483,0.0,183.1852221667387,0.0,164.86669995006483,183.1852221667387,0,0
+2017/01/26 09:00:00,167.04790768519095,0,1231.1782598474472,0,0,0,0.0,0.0,13.391422123020266,0.0,83.2008179303116,0,39.380909295966944,0.5450406581266778,27.097742475311204,0,0,312.1096796898609,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2399.840368084655,0.0,1488.3564246933627,0.0,2841.3225832210646,0.0,1506.6661586114449,0.0,0.0,0.0,6667.660246339159,0.0,7591.8571044380515,0.0,7405.105092456852,0.0,7548.27549497787,0.0,141.456672831526,0.0,6448.970637176337,0.0,7377.031441325349,0.0,7100.220356287906,0.0,7270.567803644502,0.0,5991.300398646663,0,0,0,0,0,0,0,0,0.065548842496223,0.002073919685268179,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8342886964123503,-0.8342886964123503,-0.8475093818411513,-0.8475093818411513,-0.8597639742762467,-0.8597639742762467,-0.8468499513119588,-0.8468499513119588,-0.3106248816457218,-0.3106248816457218,-0.7135545614282282,-0.7605384037756564,-0.7397900022057856,-0.7618569541890262,-0.31417967780334904,-0.7251858150391968,-0.7740612744491964,-0.745740387988362,-0.7718440779519484,-0.396117595368239,19.684223797752352,19.684223797752352,20.156636148381864,20.156636148381864,20.601026336200306,20.601026336200306,20.132900104400107,20.132900104400107,7.005529411631031,7.005529411631031,15.712088918570217,17.183990453280927,16.522304709401467,17.22666287437886,7.051875982066619,16.067637741273074,17.625155895617894,16.710181742218296,17.552288158258335,8.268955767227467,167.04790768519095,167.04790768519095,0.0,185.60878631687882,0.0,167.04790768519095,185.60878631687882,0,0
+2017/01/26 10:00:00,182.54600113649204,0,1259.9446564687069,0,0,0,0.0,0.0,11.887960008229951,0.0,106.27511244621549,0,39.380909295966944,0.4244415864915749,21.145602597133834,0,0,287.64054754230443,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.169092747529,0.0,879.648379391656,0.0,1864.975617361505,0.0,887.3070397756894,0.0,0.0,0.0,5873.3542573192435,0.0,7070.36765027772,0.0,6672.071838380612,0.0,7004.815459935985,0.0,0.0,0.0,5644.958844320735,0.0,6871.821987187906,0.0,6391.531756408976,0.0,6740.494955951868,0.0,4539.388248868705,0,0,0,0,0,0,0,0,0.06708038675980063,0.002122376678193359,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8075854113496406,-0.8075854113496406,-0.824454330120599,-0.824454330120599,-0.8325297741302807,-0.8325297741302807,-0.8238071606297211,-0.8238071606297211,-0.32323285064018503,-0.32323285064018503,-0.6894364211667706,-0.7421033950018102,-0.7188543339415261,-0.7421863302084344,-0.32866362282625217,-0.6989554688444631,-0.7539688195917359,-0.7240369722015711,-0.750558876674346,-0.39832781867729994,18.75237850373938,18.75237850373938,19.33755552118373,19.33755552118373,19.621922983693423,19.621922983693423,19.31488460198706,19.31488460198706,7.172326452245727,7.172326452245727,14.993424130427911,16.595167146850045,15.873372034934519,16.59778353094491,7.246248785440912,15.274070364198565,16.972485983146385,16.03226023915265,16.8634326417764,8.305750013986497,182.54600113649204,182.54600113649204,0.0,202.82889015165782,0.0,182.54600113649204,202.82889015165782,0,0
+2017/01/26 11:00:00,212.77354443569897,0,1355.873298228735,0,0,0,0.0,0.0,16.965687027080573,0.0,133.89528835348938,0,39.380909295966944,0.5375378586588286,18.56214669804899,0,0,332.204344527026,562.2943710386353,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,239.32681423003885,0.0,808.4285693637669,0.0,187.1662160924708,0.0,0.0,0.0,4086.5798949265836,0.0,7076.339015382155,0.0,5284.175043512111,0.0,6962.979125258026,0.0,1046.2507623162878,0.0,3668.407848768723,0.0,6817.511716812171,0.0,4913.651297192024,0.0,6634.225516366543,0.0,7755.771707264195,0,0,0,0,0,0,0,0,0.072187698702089,0.002283968467957266,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7092288157978223,-0.7092288157978223,-0.780258999058037,-0.780258999058037,-0.7805353831082091,-0.7805353831082091,-0.7731798206318635,-0.7731798206318635,-0.2495306458356019,-0.2495306458356019,-0.6538105057760047,-0.7343513293729828,-0.7079560790902629,-0.7304434322545308,-0.3435530630027295,-0.6550030658865574,-0.743127652354498,-0.7100423541802813,-0.7352602752792382,-0.405286528645778,15.581344614782111,15.581344614782111,17.829953650779913,17.829953650779913,17.83912457268032,17.83912457268032,17.596161995397935,17.596161995397935,6.292405799022504,6.292405799022504,13.97786292934282,16.35191355595431,15.543030151067654,16.230265353192195,7.455340129468766,14.010969187809522,16.627500407410494,15.605871966907898,16.380302018360993,8.422958577133628,212.77354443569897,212.77354443569897,0.0,236.41504937299885,0.0,212.77354443569897,236.41504937299885,0,0
+2017/01/26 12:00:00,228.28564696992842,0,1296.4250718015924,0,0,0,0.0,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.3129638904072163,20.432020212144728,0,0,182.1595528250133,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4637.292752217307,0.0,6143.049261343891,0.0,6244.252360203691,0.0,6083.249805607764,0.0,0.0,0.0,3926.47526461917,0.0,5752.606837515499,0.0,5677.96446594625,0.0,5638.8585194317575,0.0,0.0,0,0,0,0,0,0,0,0,0.0690226310934103,0.002183827935052788,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5900340967521316,-0.5900340967521316,-0.6967434146965797,-0.6967434146965797,-0.7097970692324747,-0.7097970692324747,-0.6948476888903793,-0.6948476888903793,-0.1361312750593594,-0.1361312750593594,-0.5977603270312178,-0.7054003416236556,-0.6812226305183758,-0.7068737852523631,-0.329431997569114,-0.588271246755478,-0.708706217445638,-0.6786157231126262,-0.7079267392479369,-0.3794268002786692,12.297251043434358,12.297251043434358,15.208504181879064,15.208504181879064,15.598473871053287,15.598473871053287,15.152482248000467,15.152482248000467,5.383931975994642,5.383931975994642,12.491453661845682,15.466303238199075,14.754407686997354,15.510503741125788,7.256808727833146,12.253303921926815,15.565603862165744,14.679158193553604,15.542147728252317,7.997840742556974,228.28564696992842,228.28564696992842,0.0,253.65071885547601,0.0,228.28564696992842,253.65071885547601,0,0
+2017/01/26 13:00:00,208.99275114704437,0,1267.4744044552497,0,0,0,0.0,0.0,17.7527000636149,0.0,129.49988082968767,0,39.380909295966944,0.33202411403827614,18.595261641282317,0,0,226.05029497220318,562.3043505637007,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5923.678346057153,0.0,5046.672459162915,0.0,6948.480639965152,0.0,4990.880153663081,0.0,0.0,0.0,5333.744584601313,0.0,4698.575740005357,0.0,6419.374439298821,0.0,4577.351133400415,0.0,0.0,0,0,0,0,0,0,0,0,0.0674812761199387,0.002135060538105192,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6416254551170114,-0.6416254551170114,-0.6370903210252615,-0.6370903210252615,-0.654626809950059,-0.654626809950059,-0.6379044226219386,-0.6379044226219386,-0.08571314246827809,-0.08571314246827809,-0.6190631449609847,-0.6858548080596257,-0.6633079157938526,-0.6875370851029853,-0.31007381615623514,-0.6219755411625695,-0.6911667826158426,-0.6618203690325752,-0.6894706928524966,-0.3503247474544954,13.643131036054228,13.643131036054228,13.520191770335572,13.520191770335572,14.000517418095967,14.000517418095967,13.542194895344494,13.542194895344494,5.152131236978832,5.152131236978832,13.040330020876311,14.88884264372652,14.243226244757338,14.937895312749319,6.998392647513882,13.116899503394322,15.04414854862685,14.201405179455435,14.994427526487087,7.553550245825235,208.99275114704437,208.99275114704437,0.0,232.2141679411604,0.0,208.99275114704437,232.2141679411604,0,0
+2017/01/26 14:00:00,205.54899259141487,0,1159.0494952342244,0,0,0,0.0,0.0,17.02830042034,0.0,129.2730206906943,0,39.380909295966944,0.19480446937220144,16.239982512587066,0,0,154.13445811342626,561.2856307139969,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5912.579840241309,0.0,5442.82247638536,0.0,6793.844083705882,0.0,5415.66802523926,0.0,0.0,0.0,5248.961419527795,0.0,4982.611722620139,0.0,6111.806273871965,0.0,4910.134801255142,0.0,0.0,0,0,0,0,0,0,0,0,0.06170865364195823,0.0019524187867516862,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6039891660914666,-0.6039891660914666,-0.6151147109471063,-0.6151147109471063,-0.648452579278359,-0.648452579278359,-0.6218030252322606,-0.6218030252322606,-0.10134724881452573,-0.10134724881452573,-0.6063385542200416,-0.6684696422725669,-0.649753929040371,-0.6735419285753859,-0.30939078623146515,-0.6075828823424204,-0.6708112480357684,-0.6471278292671536,-0.6745482106237874,-0.3466217068128931,12.64990488773725,12.64990488773725,12.937109972171356,12.937109972171356,13.829883982866647,13.829883982866647,13.112353650724984,13.112353650724984,5.212717860585116,5.212717860585116,12.710106731006135,14.389086914561801,13.865711146572167,14.533544031560496,6.989564671775568,12.742089029044806,14.455636700357942,13.793488005030667,14.562335018483651,7.4996032872675755,205.54899259141487,205.54899259141487,0.0,228.38776954601653,0.0,205.54899259141487,228.38776954601653,0,0
+2017/01/26 15:00:00,189.71676687910428,0,1206.4927397022866,0,0,0,0.0,0.0,17.02830042034,0.0,115.5196477718057,0,39.380909295966944,0.3350725657555734,14.020861622781778,0,0,269.40361439392126,528.9500714141078,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.558553438083266,0.0,0.0,0.0,0.0,0.0,4778.876614332401,0.0,6194.153459170365,0.0,5718.6988070390935,0.0,6220.700616089431,0.0,0.0,0.0,4180.149345950716,0.0,5770.751083725702,0.0,5127.73024805979,0.0,5766.708430818712,0.0,601.9328259997603,0,0,0,0,0,0,0,0,0.06423456711896532,0.0020323369284572556,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.609611822028623,-0.609611822028623,-0.6262164984489912,-0.6262164984489912,-0.684037149390984,-0.684037149390984,-0.646692683222794,-0.646692683222794,-0.16053606996304895,-0.16053606996304895,-0.6104533785609788,-0.6696669822731477,-0.6553952732649545,-0.6793986143078239,-0.3238608042019321,-0.6143247438040421,-0.6734765618763392,-0.655971623041024,-0.6829578486857508,-0.3617874398504363,12.79438189559761,12.79438189559761,13.229056245302402,13.229056245302402,14.83597997677704,14.83597997677704,13.78154947096806,13.78154947096806,5.534098405337289,5.534098405337289,12.816124169634165,14.42308634790804,14.02187059338496,14.701725793513674,7.180810056475892,12.916539856312,14.53167532457715,14.037902333764961,14.804658455197455,7.724240120416525,189.71676687910428,189.71676687910428,0.0,210.7964076434492,0.0,189.71676687910428,210.7964076434492,0,0
+2017/01/26 16:00:00,183.70201263622718,0,1252.2204500727084,0,0,0,0.0,0.0,17.556656219909858,0.0,108.75639138185811,0,39.380909295966944,0.48442909831350023,14.091651437724463,0,0,311.72375051192387,532.357645666527,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3737.774490545866,0.0,6363.080857496956,0.0,4578.247575772538,0.0,6424.054486063841,0.0,251.8458627168168,0.0,3363.9020348018707,0.0,6063.152448871248,0.0,4179.36681274174,0.0,6102.2961776123575,0.0,5746.569293642125,0,0,0,0,0,0,0,0,0.0666691442899065,0.0021093652531055567,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.616751314516783,-0.616751314516783,-0.6250836569955146,-0.6250836569955146,-0.7023879994104294,-0.7023879994104294,-0.6524437367377136,-0.6524437367377136,-0.2008042497723167,-0.2008042497723167,-0.6222175847940804,-0.6771155303849482,-0.6606921292845461,-0.6892099320283216,-0.33932237423201733,-0.6302868874748183,-0.683216111607507,-0.6631625369989892,-0.6953334912344699,-0.3798742788573119,12.979812001040159,12.979812001040159,13.199020626950272,13.199020626950272,15.37623020673145,15.37623020673145,13.93999632096748,13.93999632096748,5.836170138318408,5.836170138318408,13.123279611409188,14.635987773350394,14.16974963810351,14.986794326158773,7.3949714051378095,13.33743606459538,14.812148711650735,14.239134821996643,15.166823744728504,8.004954093478034,183.70201263622718,183.70201263622718,0.0,204.11334737358575,0.0,183.70201263622718,204.11334737358575,0,0
+2017/01/26 17:00:00,210.77373482926882,0,1265.7178108814758,0,0,0,0.0,0.0,21.771208972671015,0.0,131.64086955684016,0,39.380909295966944,0.4903528589724846,14.058418942363891,0,0,263.8728693817244,540.4703588366776,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4110.323251784802,0.0,6446.076517924395,0.0,4890.315306871954,0.0,6435.234456384125,0.0,0.0,0.0,3773.4551756250144,0.0,6206.6367164240855,0.0,4549.630417260592,0.0,6121.456774332709,0.0,4760.651736240797,0,0,0,0,0,0,0,0,0.06738775377695042,0.0021321015563634934,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6500815691232097,-0.6500815691232097,-0.6053717214000185,-0.6053717214000185,-0.6793699453329863,-0.6793699453329863,-0.6262147102222404,-0.6262147102222404,-0.16076754366951845,-0.16076754366951845,-0.6303166886870262,-0.6871829459733348,-0.6642174097619782,-0.6921117629059617,-0.3415405279529253,-0.6406990773456748,-0.6996193223615192,-0.6702199085279872,-0.6993736475830983,-0.38281020328331783,13.87474289996861,13.87474289996861,12.685303137862178,12.685303137862178,14.700898914705917,14.700898914705917,13.22900878923096,13.22900878923096,5.535641462278605,5.535641462278605,13.338232214391581,14.927558981367255,14.268843083009344,15.07190465514411,7.426527944553925,13.617946117949757,15.293788468856008,14.438808084930983,15.286489097660521,8.051837079862935,210.77373482926882,210.77373482926882,0.0,234.19303869918758,0.0,210.77373482926882,234.19303869918758,0,0
+2017/01/26 18:00:00,234.55038051575664,0,1232.8104436997871,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.35438773164714193,18.558657641181583,0,0,190.4569635524585,580.9788974842548,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4954.403296163378,0.0,5731.245927725835,0.0,5682.3651550840905,0.0,5707.816708189774,0.0,0.0,0.0,4611.145455296157,0.0,5473.745696373358,0.0,5314.7585048571855,0.0,5393.753663759699,0.0,0.0,0,0,0,0,0,0,0,0,0.06563574117349105,0.0020766690988435654,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6293154377361011,-0.6293154377361011,-0.6221214928821386,-0.6221214928821386,-0.637781230052758,-0.637781230052758,-0.5903191925136192,-0.5903191925136192,-0.11618212356491865,-0.11618212356491865,-0.6206820189838457,-0.6764570899953024,-0.6518060125463334,-0.680889070783516,-0.3283070524885302,-0.6304722697285416,-0.6862877346786392,-0.6560830011096963,-0.6882964925865087,-0.36538099994491113,13.311504545028498,13.311504545028498,13.120746388678057,13.120746388678057,13.538863463170316,13.538863463170316,12.304371032010181,12.304371032010181,5.27958941723351,5.27958941723351,13.082846221372321,14.617070859031728,13.922355749184632,14.744762941667005,7.2413568695153145,13.342389241922888,14.90145444116743,14.041002084911128,14.960078572213192,7.7789033307832085,234.55038051575664,234.55038051575664,0.0,260.6115339063963,0.0,234.55038051575664,260.6115339063963,0,0
+2017/01/26 19:00:00,218.91077999512217,0,1233.4325984901932,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.3370993705487687,25.897209928052707,0,0,207.8929607949746,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6094.0068214268895,0.0,4934.2465486826895,0.0,6776.381886169226,0.0,4903.987876843635,0.0,0.0,0.0,5666.345231964554,0.0,4620.096528838318,0.0,6322.551235168593,0.0,4540.522688488081,0.0,0.0,0,0,0,0,0,0,0,0,0.06566886515536648,0.0020777171185407837,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6427730385227653,-0.6427730385227653,-0.5790364636569203,-0.5790364636569203,-0.6100886959878553,-0.6100886959878553,-0.5634797048432927,-0.5634797048432927,-0.09644960247278221,-0.09644960247278221,-0.6038818370096066,-0.6550511252524742,-0.6325774071513034,-0.659285442747099,-0.3058407329057739,-0.6125153697179029,-0.6632645809124963,-0.6354969134955938,-0.6653225423766527,-0.3382558730091928,13.67438135706935,13.67438135706935,12.025288227738102,12.025288227738102,12.806698535081011,12.806698535081011,11.649543566289935,11.649543566289935,5.192646990938002,5.192646990938002,12.647160358071645,14.012304639668784,13.398740423427185,14.130358830661336,6.943999180714016,12.869527250926055,14.242006567268575,13.477209157359027,14.300018503223043,7.37987323989617,218.91077999512217,218.91077999512217,0.0,243.2341999945802,0.0,218.91077999512217,243.2341999945802,0,0
+2017/01/26 20:00:00,210.86565961008924,0,1206.9253481251528,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.33598176384754797,27.0977424753112,0,0,216.87606294247826,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6101.8523106885405,0.0,4924.5161002766,0.0,6749.184268173175,0.0,4889.2811765760425,0.0,0.0,0.0,5663.500930260949,0.0,4605.528346134297,0.0,6286.914020345368,0.0,4521.9009023304625,0.0,0.0,0,0,0,0,0,0,0,0,0.06425759951183466,0.002033065657312739,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6185751273178768,-0.6185751273178768,-0.573824015211069,-0.573824015211069,-0.6197192787516494,-0.6197192787516494,-0.5691138663152464,-0.5691138663152464,-0.12017647262434804,-0.12017647262434804,-0.5968398712874395,-0.644396900861465,-0.6239762739829181,-0.6484101297433879,-0.29816898627351107,-0.6060271856832311,-0.6526652975066557,-0.6272874189147559,-0.6547270626748818,-0.32923197627387235,13.027535609939548,13.027535609939548,11.898221638052405,11.898221638052405,13.057548239833224,13.057548239833224,11.784413694813864,11.784413694813864,5.2991569730705805,5.2991569730705805,12.468181613576988,13.718699009032392,13.169713822948282,13.828716550905256,6.847351909319173,12.702114304234485,13.946129207308445,13.25750132081896,14.003301673937429,7.25405737990981,210.86565961008924,210.86565961008924,0.0,234.2951773445436,0.0,210.86565961008924,234.2951773445436,0,0
+2017/01/26 21:00:00,212.41534703014315,0,1097.5441025839275,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.18590684182582548,24.325711022159997,0,0,142.9851699137972,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6042.475431924315,0.0,4863.25361637505,0.0,6628.864210776082,0.0,4825.502398550012,0.0,0.0,0.0,5657.602985120996,0.0,4574.284787472542,0.0,6204.67147585751,0.0,4489.969179046798,0.0,0.0,0,0,0,0,0,0,0,0,0.05843406097980204,0.001848812957500441,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6126559038989735,-0.6126559038989735,-0.5865261512107013,-0.5865261512107013,-0.6423249556766613,-0.6423249556766613,-0.5866174550336721,-0.5866174550336721,-0.1615179589121788,-0.1615179589121788,-0.5925114346233175,-0.6364218042775758,-0.6170415617281301,-0.6402644775283296,-0.2927714068558778,-0.6026137090441271,-0.6448096215517594,-0.6203467230307802,-0.6467563146756748,-0.32295753823618556,12.873173633292069,12.873173633292069,12.209932243374524,12.209932243374524,13.662172630464667,13.662172630464667,12.212198183767143,12.212198183767143,5.540659258006357,5.540659258006357,12.359237987496144,13.502144934512955,12.987397225549145,13.606143719954787,6.78084516854166,12.614770700199841,13.729981003263546,13.074031065255866,13.783294731603405,7.16861227427043,212.41534703014315,212.41534703014315,0.0,236.01705225571462,0.0,212.41534703014315,236.01705225571462,0,0
+2017/01/26 22:00:00,199.28786105815573,0,1166.4248397257556,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.2941811322249846,27.0977424753112,0,0,247.35625956816952,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.51743744507848,0.0,0.0,0.0,0.0,0.0,4716.9606718732175,0.0,5519.791863195186,0.0,5301.265809553539,0.0,5487.194973154252,0.0,0.0,0.0,4519.742436144034,0.0,5351.48908524441,0.0,5059.036656371516,0.0,5272.9947168505205,0.0,0.0,0,0,0,0,0,0,0,0,0.06210132244565419,0.0019648425539878916,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6486747139404196,-0.6486747139404196,-0.6265320668758685,-0.6265320668758685,-0.693037755138652,-0.693037755138652,-0.6309418888518008,-0.6309418888518008,-0.24177554700045026,-0.24177554700045026,-0.599033683656436,-0.6452494029932336,-0.6230238858239021,-0.6488163646169507,-0.30812417454724417,-0.6122404806941277,-0.6564320303843769,-0.6295235857300189,-0.6580202696138389,-0.33961664114596546,13.835994325094575,13.835994325094575,13.237432992285093,13.237432992285093,15.099140470705763,15.099140470705763,13.354943538353012,13.354943538353012,6.21312850824232,6.21312850824232,12.52370878701862,13.742010849540051,13.144551506210789,13.839891880885219,6.973246318097097,12.862397296942802,14.050719363364863,13.317057323957684,14.095003990626637,7.399145765230173,199.28786105815573,199.28786105815573,0.0,221.43095673128414,0.0,199.28786105815573,221.43095673128414,0,0
+2017/01/26 23:00:00,140.63814767447275,0,1084.2169959434575,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.5031646972973892,20.950050169399123,0,0,324.8550020923202,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1019.0553485267706,0.0,503.697215304372,0.0,1542.868091884892,0.0,562.1571459042472,0.0,0.0,0.0,4397.775320046247,0.0,6063.057447279938,0.0,4984.26304313617,0.0,6034.935197556473,0.0,176.13217402631074,0.0,4364.995094205315,0.0,6000.258681350559,0.0,4913.450610741169,0.0,5927.371137247476,0.0,4487.053543756607,0,0,0,0,0,0,0,0,0.057724515950786696,0.0018263634473760799,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7590113974984504,-0.7590113974984504,-0.746479326780745,-0.746479326780745,-0.7816843306463581,-0.7816843306463581,-0.7491711430442276,-0.7491711430442276,-0.4751760412161239,-0.4751760412161239,-0.6149290824241946,-0.6650219411110967,-0.6382203891790792,-0.6681743916943951,-0.33307191086393917,-0.6320132272697717,-0.6802389802443647,-0.6493326680243697,-0.6813319377900088,-0.3707565654454046,17.134664605965085,17.134664605965085,16.73361892490273,16.73361892490273,17.877283556934614,17.877283556934614,16.81919410540796,16.81919410540796,9.715361969597225,9.715361969597225,12.93227391886262,14.291533405073864,13.550742422849538,14.380712577451902,7.307173270746333,13.3836193669936,14.725979666080377,13.854105469147427,14.757569309668796,7.861700662094748,140.63814767447275,140.63814767447275,0.0,156.26460852719194,0.0,140.63814767447275,156.26460852719194,0,0
+2017/01/27 00:00:00,91.31020347420368,0,930.3036292931305,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.6113510201416024,11.7558961927695,0,0,358.50109066903616,518.5670098552782,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2664.3561940684262,0.0,1544.8481270202055,0.0,3095.024700986925,0.0,1597.8204749667916,0.0,0.0,0.0,4350.432135413928,0.0,6783.981833390986,0.0,4934.733377658916,0.0,6753.029432525675,0.0,7235.7014816891415,0.0,4354.576895454121,0.0,6739.914422812405,0.0,4898.313528192671,0.0,6664.022511959775,0.0,11675.276148574138,0,0,0,0,0,0,0,0,0.04953005430566651,0.0015670963929354303,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8475746947897513,-0.8475746947897513,-0.838917187233103,-0.838917187233103,-0.8655853135832042,-0.8655853135832042,-0.8408094426645484,-0.8408094426645484,-0.5544677400079244,-0.5544677400079244,-0.6343765886089389,-0.6887272492675298,-0.6574980944435348,-0.6909739676631799,-0.36283189465038146,-0.6545338358273938,-0.7072305382389971,-0.6719462630966667,-0.707229337024756,-0.4051834291044244,20.15898805771613,20.15898805771613,19.848782669748772,19.848782669748772,20.81430774722685,20.81430774722685,19.91631668654982,19.91631668654982,11.436677950405624,11.436677950405624,13.447054020078724,14.97267260359034,14.080432200492666,15.038489898095136,7.740071069786282,13.997935695593881,15.521219733545479,14.487979902263532,15.521183642779192,8.421206902199089,91.31020347420368,91.31020347420368,0.0,101.45578163800408,0.0,91.31020347420368,101.45578163800408,0,0
+2017/01/27 01:00:00,39.455475732581746,0,597.2820378892968,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.06874573103238939,0.04752993237381434,9.541879072752367,0,0,27.82493498280058,516.22157413768,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.082126467742285,0.0,132.33425536546238,0.0,58.47894710779785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0317997381080135,0.0010061215474915825,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8546575601688933,-0.8546575601688933,-0.852490859800944,-0.852490859800944,-0.8726047203914967,-0.8726047203914967,-0.8543114180116005,-0.8543114180116005,-0.23725485159800658,-0.23725485159800658,-0.8729624152996797,-0.9401267193188186,-0.9077700952309955,-0.9449631665938726,-0.15091606735025823,-0.8864631791495521,-0.9526873713542816,-0.9158118313422848,-0.953620721352055,-0.2653552094383712,20.415093834945026,20.415093834945026,20.33652783960997,20.33652783960997,21.07334550539585,21.07334550539585,20.402529406253322,20.402529406253322,6.168080748000534,6.168080748000534,21.086599946795275,23.667720773854256,22.40146781119944,23.860581050307175,5.471943711139133,21.590717409525013,24.170512272976183,22.71225029225539,24.208121853480762,6.462018666347134,39.455475732581746,39.455475732581746,0.0,43.83941748064638,0.0,39.455475732581746,43.83941748064638,0,0
+2017/01/27 02:00:00,23.75595914698052,0,36.518001866647865,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5588637233027267,0,0,0.0,1.0276493541037246,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0019442454685077684,6.151457137269899e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9327916449438838,-0.9327916449438838,-0.9431284557108686,-0.9431284557108686,-0.9694687920925222,-0.9694687920925222,-0.9506336240201291,-0.9506336240201291,-0.09740552685559752,-0.09740552685559752,-1.0049976302803714,-1.0903957878849804,-1.0607141730937786,-1.0973397710104995,-0.08434358850476527,-1.0575771611118383,-1.1392432002255102,-1.103258836885461,-1.140482262198951,-0.2653107855362108,23.376996366966182,23.376996366966182,23.787310244805354,23.787310244805354,24.85193419079893,24.85193419079893,24.08787670883659,24.08787670883659,5.196486230487906,5.196486230487906,26.330552698039867,30.076432925128927,28.744687307578843,30.392417554481,5.147306938939423,28.605756508698647,32.333629750028976,30.66306437177049,32.39190769569706,6.461527765839733,23.75595914698052,23.75595914698052,0.0,26.395510163311688,0.0,23.75595914698052,26.395510163311688,0,0
+2017/01/27 03:00:00,28.363006799787385,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5436437133144936,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9581911285735508,-0.9581911285735508,-0.9725986923236966,-0.9725986923236966,-0.9952470861002098,-0.9952470861002098,-0.9810760231841423,-0.9810760231841423,-0.01946489478555791,-0.01946489478555791,-1.0687305119219097,-1.1566446886528023,-1.1271072719165343,-1.1640137663265184,-0.061544127886784684,-1.1431017143144526,-1.2290140551111426,-1.1925389777491704,-1.2302708482942384,-0.2664144639611813,24.392781712983094,24.392781712983094,24.980241403762406,24.980241403762406,25.91995338599098,25.91995338599098,25.32966664097478,25.32966664097478,5.007843182990229,5.007843182990229,29.101305534660966,33.15656803558217,31.765454264553227,33.50793019695884,5.078420177047448,32.51527289671688,36.67726958727036,34.883636841615726,36.739730979435166,6.473748434408137,28.363006799787385,28.363006799787385,0.0,31.51445199976376,0.0,28.363006799787385,31.51445199976376,0,0
+2017/01/27 04:00:00,23.721937665591064,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248422419132714,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9883137582837087,-0.9883137582837087,-1.0051890924379392,-1.0051890924379392,-1.02389121361619,-1.02389121361619,-1.0149008772226538,-1.0149008772226538,0.020402445335271777,0.020402445335271777,-1.112223133253913,-1.1991703706355639,-1.1711033674001965,-1.2077898177891093,-0.0399914292073365,-1.2104040359448418,-1.296762747234601,-1.2604964396798441,-1.2992081727429365,-0.26189281397344205,25.630188886913842,25.630188886913842,26.338651286019314,26.338651286019314,27.13635888024656,27.13635888024656,26.75125699900967,26.75125699900967,5.00861694659622,5.00861694659622,31.075210617970612,35.2069158448044,33.847549227741894,35.6290091270028,5.033108984614216,35.7574457399046,40.102010200769456,38.254478597974554,40.227694687071185,6.424007048631481,23.721937665591064,23.721937665591064,0.0,26.357708517323402,0.0,23.721937665591064,26.357708517323402,0,0
+2017/01/27 05:00:00,43.38033744651418,0,387.9641335716121,0,0,0,0.0,0.016942806666105484,4.633261998087618,9.319298099999997,25.555573451546493,0,1.96434417155231,1.3659423779263358,0.5249745407353216,0,0,299.23825229025175,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13157957217736113,509.22157506510575,0.1083859391022088,393.59912720531725,0.12162340424820287,681.1551426991876,0.0,434.2660545126938,0.0,0.0,2.476087129042753,3292.237937271905,1.749101029685653,2354.123899388766,2.2537050663594984,3618.038608005958,2.119765236707099,2381.085949864134,0.0,0.0,1.927879735553961,3913.8701948686066,1.4730131056334812,2662.274636919811,2.7470576739905486,4191.004621191626,1.8346087736047143,2671.0218826475566,0.0,0.0,0,0,0,0,0,0,0,0,0.020655497838972792,0.0006535255535554022,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8806832193575772,-0.8806832193575772,-0.8856553209198353,-0.8856553209198353,-0.8963145994625992,-0.8963145994625992,-0.8894971920965804,-0.8894971920965804,0.1651344419557747,0.1651344419557747,-0.7733120288433116,-0.8205491124913729,-0.7978219115172582,-0.8244383936612588,-0.0025090270642663657,-0.8251761976762433,-0.8780391071102471,-0.8473873063417805,-0.879239169109438,-0.24021463664717593,21.373978360079647,21.373978360079647,21.56034178272229,21.56034178272229,21.9632777465511,21.9632777465511,21.705035262200255,21.705035262200255,5.565170724968283,5.565170724968283,17.600508645471933,19.201019549987976,18.419170886195232,19.336997041721446,5.000130314172424,19.362863927043534,21.275285207873864,20.15224070441063,21.320042700862118,6.197477375067379,43.38033744651418,43.38033744651418,0.0,48.200374940571315,0.0,43.38033744651418,48.200374940571315,0,0
+2017/01/27 06:00:00,76.29550965073665,0,329.78624823872843,0,0,0,0.08301036899870279,0.016439765836127378,5.555297838843742,9.319298099999997,57.911447091112116,0,1.698975469103092,1.1860970558844448,0.5249439609583876,0,0,116.84413316346362,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,263.3901937392253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.667846045094491,0.0,6.71319472383706,0.0,0.0,2.2465433671833352,2903.3113198209758,1.5036582021637628,2100.7872833152414,2.427364116224453,3283.565047098813,1.7937380397648894,2132.4381875199797,0.0,0.0,2.719209452197333,3429.0238955713157,1.6794312056283616,2396.4222129376203,2.549422527705133,3743.7564266781324,1.5203989252601104,2399.4158763340583,0.0,0.0,0,0,0,0,0,0,0,0,0.017558064131102547,0.0005555249101277862,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7433358514657684,-0.7433358514657684,-0.7669536176855197,-0.7669536176855197,-0.7747992047237221,-0.7747992047237221,-0.7760126628644047,-0.7760126628644047,0.4885240649693171,0.4885240649693171,-0.7143105236206366,-0.7528778832207044,-0.7326666570359386,-0.7554704993672124,0.1073155562943605,-0.7308761154119939,-0.7738781654112599,-0.7458584829328424,-0.7742065493975971,-0.12244591696815525,16.634078239196327,16.634078239196327,17.392305194689115,17.392305194689115,17.649454295546946,17.649454295546946,17.68946120456505,17.68946120456505,9.98610501243735,9.98610501243735,15.735020428728618,16.937542605632828,16.299391232829578,17.02066904248379,5.238522513545192,16.243701956778224,17.619130115747353,16.713925829831624,17.629937641897385,5.310569925128931,76.29550965073665,76.29550965073665,0.0,84.77278850081849,0.0,76.29550965073665,84.77278850081849,0,0
+2017/01/27 07:00:00,102.11734767810283,0,829.5348368710394,0,0,0,0.0,0.01476680086317083,11.110595677687485,13.929299233552332,73.80580873715317,0,1.6871211527047363,1.0447819554346427,0.5249741207072801,0,0,93.36548151360114,505.48206402590137,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.2103662225649714,2394.0021295612946,1.4637210971305494,1740.088651136527,1.4754967513831616,2708.9401281790488,1.7468154084847356,1762.8851351343942,0.0,0.0,1.8385676739242929,2624.044572630949,1.3745031479669858,1842.1610146039548,2.813123605496154,2867.529695988216,1.8442069562199774,1838.9389040616477,0.0,0.0,0,0,0,0,0,0,0,0,0.04416504915699804,0.0013973513697486393,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.618133032432365,-0.618133032432365,-0.6464907475025898,-0.6464907475025898,-0.648826513913402,-0.648826513913402,-0.6577491243948924,-0.6577491243948924,0.7396919922368801,0.7396919922368801,-0.6931514733916804,-0.7293180132730691,-0.7098088499320395,-0.7316596919069833,0.16810458215992377,-0.7036648699863989,-0.7430125461051826,-0.715500006720998,-0.7449699056556371,-0.01733571387412076,13.015954083057977,13.015954083057977,13.77601201314954,13.77601201314954,13.840171174855115,13.840171174855115,14.087435953110102,14.087435953110102,16.519222865880337,16.519222865880337,15.1024877714557,16.195354123091292,15.598829132145099,16.268055732696894,5.585709290966321,15.414362522517166,16.62386454467304,15.771152306344277,16.68576900981546,5.006221142639546,102.11734767810283,102.11734767810283,0.0,113.46371964233647,0.0,102.11734767810283,113.46371964233647,0,0
+2017/01/27 08:00:00,164.72981491168426,0,1009.7788047649534,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.4541526916028797,27.088867868494034,0,0,160.7854946249819,582.8156662958908,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2018.6359373372652,0.0,1152.1610973587553,0.0,2366.4959512590513,0.0,1207.183943945978,0.0,0.0,0.0,5578.067443227625,0.0,6606.3490430650745,0.0,6100.26296983342,0.0,6575.2653376522085,0.0,2210.1852879495486,0.0,5725.670478739137,0.0,6648.052864723337,0.0,6199.68785925759,0.0,6570.415041519036,0.0,3534.981449703112,0,0,0,0,0,0,0,0,0.053761371515578665,0.0017009723199856524,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7183501602914684,-0.7183501602914684,-0.7235685830948662,-0.7235685830948662,-0.7402558856464555,-0.7402558856464555,-0.7298938679021519,-0.7298938679021519,0.18568235301559233,0.18568235301559233,-0.6816623291433009,-0.7240713913870974,-0.6970877331425636,-0.7261150351888961,-0.19511535320473034,-0.6921101454444849,-0.7378420280498265,-0.7035492469909178,-0.7376091546960153,-0.27809492363286353,15.85797690726207,15.85797690726207,16.01785294701719,16.01785294701719,16.536959671237256,16.536959671237256,16.213210706521508,16.213210706521508,5.714794357941187,5.714794357941187,14.767128748851789,16.03331931942664,15.218696035227453,16.096293712777864,5.789386743357937,15.071857113850953,16.46112958851691,15.410906673667881,16.453827221668533,6.606227857017672,164.72981491168426,164.72981491168426,0.0,183.03312767964917,0.0,164.72981491168426,183.03312767964917,0,0
+2017/01/27 09:00:00,166.8629947350379,0,1142.3041334906652,0,0,0,0.0,0.0,13.319235139665633,0.0,83.2008179303116,0,39.380909295966944,0.43231469132824496,27.097742475311204,0,0,223.23555333307908,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1055.247108658867,0.0,629.1224975527261,0.0,1463.6963385883355,0.0,653.5871174130299,0.0,0.0,0.0,5084.322740110349,0.0,6313.915652286077,0.0,5641.191732169586,0.0,6257.229937215321,0.0,141.73777869305582,0.0,5162.576775905173,0.0,6322.570223210756,0.0,5688.864230934735,0.0,6215.9549521760055,0.0,1396.6530485237488,0,0,0,0,0,0,0,0,0.060817118179330054,0.001924211226165612,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7471876849340309,-0.7471876849340309,-0.7508408822681549,-0.7508408822681549,-0.7708385381059936,-0.7708385381059936,-0.750894383721863,-0.750894383721863,-0.2989588577193914,-0.2989588577193914,-0.6652773026173143,-0.7149617021011992,-0.6835912516911569,-0.7142755996134572,-0.30243426100881526,-0.6758330528521426,-0.7287055322198849,-0.691541146175954,-0.7253676005450121,-0.3587682943358013,16.75610814225861,16.75610814225861,16.872432574243376,16.872432574243376,17.519310352303776,17.519310352303776,16.874140405139542,16.874140405139542,6.857187647943178,6.857187647943178,14.298741266416272,15.754793150638193,14.823033829693557,15.733960494261353,6.900777854354146,14.59915966181552,16.176377442733994,15.055139797464037,16.073240853277184,7.678739750018778,166.8629947350379,166.8629947350379,0.0,185.40332748337542,0.0,166.8629947350379,185.40332748337542,0,0
+2017/01/27 10:00:00,182.42491215434902,0,1183.7771329680065,0,0,0,0.0,0.0,11.734626050116935,0.0,106.27511244621549,0,39.380909295966944,0.37879306968319876,21.223496089912214,0,0,211.47302404160402,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.53087129902474,0.0,605.4611701114499,0.0,0.0,0.0,0.0,0.0,3689.3009491999237,0.0,5893.544022616343,0.0,5073.144368895881,0.0,5579.792164820306,0.0,11.765117987858705,0.0,3541.207088722398,0.0,5872.322534665982,0.0,5074.4767343641515,0.0,5466.239820118599,0.0,369.5385856793075,0,0,0,0,0,0,0,0,0.0630251713908309,0.001994072490637446,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5920784897152923,-0.5920784897152923,-0.7294968289751792,-0.7294968289751792,-0.7439869357496955,-0.7439869357496955,-0.6833737264524715,-0.6833737264524715,-0.27725225579364077,-0.27725225579364077,-0.6004614451517941,-0.7001404686390399,-0.6679238905262191,-0.6778527096539632,-0.3088143602297291,-0.5980551836767449,-0.7100571176801856,-0.6725631156830614,-0.681472064514166,-0.35858112981940105,12.348385809156014,12.348385809156014,16.200897464266887,16.200897464266887,16.654660558783775,16.654660558783775,14.81672134506968,14.81672134506968,6.596477876624135,6.596477876624135,12.559958798472678,15.30928114332555,14.373610449721326,14.657189105064091,6.9821298861126735,12.498916351693012,15.606317334998067,14.505581022031961,14.761623115501976,7.675931842664667,182.42491215434902,182.42491215434902,0.0,202.69434683816556,0.0,182.42491215434902,202.69434683816556,0,0
+2017/01/27 11:00:00,212.58071054419835,0,1266.285913990608,0,0,0,0.0,0.0,16.903073633821148,0.0,133.89528835348938,0,39.380909295966944,0.4622954985929457,18.50716855987359,0,0,242.59462305713478,562.3167082703998,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2040.0443745744005,0.0,6109.886096982808,0.0,3833.8040986503966,0.0,5844.582986885642,0.0,377.8207982397108,0.0,1721.1335143884226,0.0,6048.0817546827875,0.0,3773.757196277846,0.0,5700.219735687873,0.0,4841.493519230142,0,0,0,0,0,0,0,0,0.06741800000727836,0.002133058526007708,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4679286666480509,-0.4679286666480509,-0.6484321834485218,-0.6484321834485218,-0.6749927087885389,-0.6749927087885389,-0.5973338373163399,-0.5973338373163399,-0.2255722585693275,-0.2255722585693275,-0.5498992556146884,-0.6887527645728438,-0.6529881400889505,-0.6711255806759862,-0.32520735564784353,-0.5350809117705759,-0.6938824379702777,-0.653303839074619,-0.6713865297950196,-0.3661936141568416,9.5715793894353,9.5715793894353,13.82932305428291,13.82932305428291,14.575066621560921,14.575066621560921,12.480666073951767,12.480666073951767,6.055638450486754,6.055638450486754,11.330113828215914,14.973418846075589,13.955069421796878,14.464588287570223,7.19905822700332,10.99068752285217,15.124017076640456,13.963816183300992,14.472022864541529,7.791340633480075,212.58071054419835,212.58071054419835,0.0,236.2007894935537,0.0,212.58071054419835,236.2007894935537,0,0
+2017/01/27 12:00:00,228.01700743705902,0,1223.084713075521,0,0,0,0.0,0.0,16.73568395689411,0.0,147.76209134187457,0,39.380909295966944,0.20241942198068583,20.503928217888376,0,0,108.81919409894186,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2296.6002571000736,0.0,4825.4093042061295,0.0,4381.949614099694,0.0,4700.815547075357,0.0,0.0,0.0,1833.5502790754906,0.0,4631.116487308581,0.0,4125.592637365182,0.0,4457.948861692797,0.0,0.0,0,0,0,0,0,0,0,0,0.06511793607114162,0.0020602861063451603,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.36814509957819197,-0.36814509957819197,-0.5487550047742584,-0.5487550047742584,-0.5611075615643448,-0.5611075615643448,-0.45645758194562563,-0.45645758194562563,-0.11615561942325335,-0.11615561942325335,-0.4687008811571472,-0.6552407649332044,-0.6237317685505787,-0.6491340571650661,-0.31160294002779854,-0.4321289168518642,-0.6534961749180472,-0.6184303007588497,-0.645462560350625,-0.3420416437286654,7.821323635391806,7.821323635391806,11.303564800466134,11.303564800466134,11.593171243688133,11.593171243688133,9.348627162411375,9.348627162411375,5.279461792574679,5.279461792574679,9.58679179807875,14.01757523788342,13.163250177368383,13.848636438545768,7.0182277494755425,8.894511176292468,13.969147161073195,13.023740665174273,13.74784460471858,7.433686008928191,228.01700743705902,228.01700743705902,0.0,253.35223048562113,0.0,228.01700743705902,253.35223048562113,0,0
+2017/01/27 13:00:00,207.81513550163515,0,1167.4219210124174,0,0,0,0.0,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,0.19416527742550982,18.572520939206598,0,0,125.97870058881463,562.3234615042569,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3398.8492699006383,0.0,3970.4997168699283,0.0,5522.234680592042,0.0,4024.5506701402273,0.0,0.0,0.0,2703.130558150438,0.0,3637.9221437815904,0.0,5086.132147086531,0.0,3681.401520168625,0.0,0.0,0,0,0,0,0,0,0,0,0.06215440779190082,0.001966522137339596,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4829812358907448,-0.4829812358907448,-0.45444175349652527,-0.45444175349652527,-0.49789191297113033,-0.49789191297113033,-0.37880585275201023,-0.37880585275201023,-0.07316505466093134,-0.07316505466093134,-0.4567104330421887,-0.6065755154076612,-0.5961899401121463,-0.6178205606040637,-0.29250437367809234,-0.4225345622537655,-0.5962091522892925,-0.5861701866727951,-0.6095057334414182,-0.31711985748788624,9.872744371235385,9.872744371235385,9.310032779586393,9.310032779586393,10.180709400562563,10.180709400562563,7.987983997311375,7.987983997311375,5.110838938264877,5.110838938264877,9.3534805106205,12.716192037186602,12.451771435007174,13.007773397794196,6.777586850477874,8.722414833839693,12.452256262275483,12.201101517742387,12.791643195233192,7.090613672966398,207.81513550163515,207.81513550163515,0.0,230.90570611292793,0.0,207.81513550163515,230.90570611292793,0,0
+2017/01/27 14:00:00,205.6564577109118,0,1191.4510055155279,0,0,0,0.0,0.0,17.02830042034,0.0,129.2730206906943,0,39.380909295966944,0.26748826487324034,16.274763836583013,0,0,186.51882544729537,561.302773661431,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3943.1625322340496,0.0,4457.184487727654,0.0,5380.711972949326,0.0,4437.819521096495,0.0,0.0,0.0,3389.505898085454,0.0,4125.958114293568,0.0,4944.627016264306,0.0,4091.728851587832,0.0,0.0,0,0,0,0,0,0,0,0,0.0634337340493495,0.002006999128361309,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5390830104011741,-0.5390830104011741,-0.5405055417530925,-0.5405055417530925,-0.5657798427241792,-0.5657798427241792,-0.38019352927319583,-0.38019352927319583,-0.09129744110049814,-0.09129744110049814,-0.5036024357511834,-0.6185548266709663,-0.6018587046872236,-0.6219219553716399,-0.2957832758344978,-0.4880390678771582,-0.6164234471564186,-0.5980271920001538,-0.6198586455545934,-0.32214071304413844,11.081421081899123,11.081421081899123,11.113839142479407,11.113839142479407,11.704437779284873,11.704437779284873,8.01003428708401,8.01003428708401,5.1726075862935375,5.1726075862935375,10.301197639741474,13.027003609605956,12.595520042179459,13.11548736154431,6.817804361172989,9.976133025411116,12.97124802145224,12.498207732772968,13.061207899679744,7.157611577198622,205.6564577109118,205.6564577109118,0.0,228.50717523434645,0.0,205.6564577109118,228.50717523434645,0,0
+2017/01/27 15:00:00,189.5623167320731,0,1131.748633134964,0,0,0,0.0,0.0,16.965686943773743,0.0,115.5196477718057,0,39.380909295966944,0.2515112203848855,14.012586297687548,0,0,183.05774429490617,540.5518349458002,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2807.443887172596,0.0,5009.840880198084,0.0,4153.858755509764,0.0,5075.059362465052,0.0,0.0,0.0,2383.762833918435,0.0,4742.724033940229,0.0,3826.988038299985,0.0,4802.368756323255,0.0,0.0,0,0,0,0,0,0,0,0,0.06025513552186303,0.0019064304866175821,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5676601958456174,-0.5676601958456174,-0.5141790203660932,-0.5141790203660932,-0.5660573095191374,-0.5660573095191374,-0.3945628186096593,-0.3945628186096593,-0.15755275201091506,-0.15755275201091506,-0.5091787959233216,-0.6165561263152728,-0.6060348742041052,-0.6306611607340143,-0.3158093990406898,-0.4973469507831275,-0.6132221033673316,-0.6039164328713319,-0.6301908950444323,-0.3432378124156366,11.749484045010632,11.749484045010632,10.528079814711688,10.528079814711688,11.711075206059391,11.711075206059391,8.243198101609295,8.243198101609295,5.514410769363238,5.514410769363238,10.420215343639029,12.974713073188951,12.702311607932444,13.347437702196174,7.073302786279243,10.169284710651993,12.887873260269899,12.648044959956593,13.334871855220285,7.450815518591554,189.5623167320731,189.5623167320731,0.0,210.6247963689701,0.0,189.5623167320731,210.6247963689701,0,0
+2017/01/27 16:00:00,183.5397154629815,0,1205.8410613755266,0,0,0,0.0,0.0,17.46605349300705,0.0,108.75639138185811,0,39.380909295966944,0.4539213999607257,14.05046468973438,0,0,263.4901608344546,534.2118466468144,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2669.740452921472,0.0,5834.238090822919,0.0,3878.303034379485,0.0,5945.28699848409,0.0,247.82572861459016,0.0,2279.211503340652,0.0,5564.775150133618,0.0,3596.8857399214403,0.0,5683.42504974759,0.0,4585.393193661377,0,0,0,0,0,0,0,0,0.06419987128214613,0.0020312391763652898,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5459609029224829,-0.5459609029224829,-0.5161891488930441,-0.5161891488930441,-0.5987259920514243,-0.5987259920514243,-0.4342077832377362,-0.4342077832377362,-0.20304632275585724,-0.20304632275585724,-0.5357988318586845,-0.6372426111492422,-0.623587220622999,-0.6542689874632786,-0.33558656937218123,-0.5331777824107388,-0.6392422679101485,-0.6278731062729717,-0.6588708689893505,-0.3667071470625172,11.238974233924154,11.238974233924154,10.571746913668918,10.571746913668918,12.515908268761379,12.515908268761379,8.93232114679138,8.93232114679138,5.854979946316391,5.854979946316391,11.006912778136282,13.524305604749031,13.159430187601842,13.990583391256237,7.342296386770968,10.947784132579116,13.578415934882727,13.273079006916646,14.118766065942538,7.799214917802772,183.5397154629815,183.5397154629815,0.0,203.93301718109055,0.0,183.5397154629815,203.93301718109055,0,0
+2017/01/27 17:00:00,208.55447534747174,0,1214.6732230778857,0,0,0,0.0,0.0,19.556471201505786,0.0,131.64086955684016,0,39.380909295966944,0.43658175801689536,14.10766833268761,0,0,222.3238464335343,530.9747939812778,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3291.245789951138,0.0,5851.707513723497,0.0,4446.716249303231,0.0,6047.453553182419,0.0,0.0,0.0,2813.014392471688,0.0,5089.898080109,0.0,4085.568298414762,0.0,5735.533873269129,0.0,3291.8043467135317,0,0,0,0,0,0,0,0,0.06467010211322077,0.002046116952082564,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5820000299450547,-0.5820000299450547,-0.5688247525158816,-0.5688247525158816,-0.6270112884923874,-0.6270112884923874,-0.4427715397282098,-0.4427715397282098,-0.1607039354114717,-0.1607039354114717,-0.5588666364476033,-0.6454224623653079,-0.639503882761553,-0.6725914550019255,-0.3453134664974701,-0.5627383790461611,-0.7119111420977607,-0.6448301176290273,-0.6801271046918564,-0.3789967010717553,12.098058299181915,12.098058299181915,11.777459395843408,11.777459395843408,13.250162167439697,13.250162167439697,9.090034376138235,9.090034376138235,5.535217212493592,5.535217212493592,11.540141381452912,13.746747040453997,13.585508012052898,14.506390044916458,7.480683839262568,11.63190026252748,15.66232207364115,13.730541469660835,14.722749053429823,7.99101171789637,208.55447534747174,208.55447534747174,0.0,231.72719483052416,0.0,208.55447534747174,231.72719483052416,0,0
+2017/01/27 18:00:00,234.48216078950313,0,1178.7230865305476,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.27107820603243477,18.57374744054279,0,0,139.92908675793367,577.41941710954,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3818.0524809423887,0.0,5098.130172778545,0.0,4855.087355098158,0.0,5161.479189108541,0.0,0.0,0.0,3599.1810903106625,0.0,4890.28045155755,0.0,4709.364113322721,0.0,5003.196988489177,0.0,0.0,0,0,0,0,0,0,0,0,0.06275609021493471,0.0019855589497971425,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5765089436291578,-0.5765089436291578,-0.5539603653329523,-0.5539603653329523,-0.5945341611665073,-0.5945341611665073,-0.4116753011273205,-0.4116753011273205,-0.11845064566908232,-0.11845064566908232,-0.5588796092812864,-0.6529438829129871,-0.6306222797027934,-0.6641885302683692,-0.33328309110268334,-0.5651273964227942,-0.693689346789174,-0.6360517827928164,-0.6726421788362852,-0.3646601868840805,11.963526329028483,11.963526329028483,11.424798303474816,11.424798303474816,12.410047349362543,12.410047349362543,8.532392630086079,8.532392630086079,5.290621131721522,5.290621131721522,11.540447747446962,13.953843576967046,13.346398408453041,14.268029111421981,7.310112574444446,11.688843431500885,15.118327664396546,13.492164413632068,14.5078381814359,7.767894620522384,234.48216078950313,234.48216078950313,0.0,260.53573421055904,0.0,234.48216078950313,260.53573421055904,0,0
+2017/01/27 19:00:00,219.03344090533994,0,1223.2529314555075,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.31368616201488847,26.04328404680434,0,0,197.71329376028862,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5271.764419456695,0.0,4513.255221406896,0.0,6208.749284074602,0.0,4529.885618323799,0.0,0.0,0.0,4916.322022713071,0.0,4218.902188897577,0.0,5890.99034822462,0.0,4264.209386307224,0.0,0.0,0,0,0,0,0,0,0,0,0.06512689214229256,0.002060569470193479,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5702373843168107,-0.5702373843168107,-0.5202385102720422,-0.5202385102720422,-0.6092689962360125,-0.6092689962360125,-0.3979141813925771,-0.3979141813925771,-0.10058479253765028,-0.10058479253765028,-0.549460021035922,-0.6353431602191998,-0.6155073804199309,-0.6451208566330745,-0.31149120515853795,-0.5558223850926698,-0.6599465542962818,-0.6201851028055044,-0.6528680008265266,-0.33933425715100596,11.811473048074717,11.811473048074717,10.660244149116565,10.660244149116565,12.785533533052671,12.785533533052671,8.298848178659512,8.298848178659512,5.209527827483214,5.209527827483214,11.31991595021367,13.473067446008528,12.947344849574762,13.73849370608744,7.016775023235837,11.468450226865144,14.148860960799013,13.06978370338507,13.951741976098404,7.395139900504006,219.03344090533994,219.03344090533994,0.0,243.37048989482216,0.0,219.03344090533994,243.37048989482216,0,0
+2017/01/27 20:00:00,210.76297040603728,0,1156.5497815976662,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.2332925597956202,27.0977424753112,0,0,166.50049641499186,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4809.62512526793,0.0,4206.540777516396,0.0,5690.004869791383,0.0,4223.04607211007,0.0,0.0,0.0,4720.926952836186,0.0,4146.305753736264,0.0,5637.115470356228,0.0,4133.681495652004,0.0,0.0,0,0,0,0,0,0,0,0,0.0615755670363933,0.0019482080193206285,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5884614850149582,-0.5884614850149582,-0.5123576259872679,-0.5123576259872679,-0.5902568421796093,-0.5902568421796093,-0.3877106753256733,-0.3877106753256733,-0.12103625920205162,-0.12103625920205162,-0.5390997599591175,-0.6180546812706565,-0.6005874684138783,-0.6279108112100357,-0.2997740968940674,-0.5471709774910459,-0.6361033697785154,-0.6066188535426487,-0.6365783886199973,-0.32735820295532375,12.258039991452392,12.258039991452392,10.48866362574357,10.48866362574357,12.302813591869452,12.302813591869452,8.130911295753961,8.130911295753961,5.303455621711024,5.303455621711024,11.081802277438385,13.0139024082914,12.563162703083577,13.274082365306313,6.867366931353857,11.266905692621833,13.49355550355429,12.717305250236251,13.506370243307728,7.228365534740377,210.76297040603728,210.76297040603728,0.0,234.18107822893032,0.0,210.76297040603728,234.18107822893032,0,0
+2017/01/27 21:00:00,212.4653327641487,0,1092.8410938405423,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.1713066746707963,24.3902969233206,0,0,138.28216117041208,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5342.2142024035975,0.0,4543.5374284968475,0.0,6192.344115937311,0.0,4543.631331036485,0.0,0.0,0.0,5094.343721362169,0.0,4380.010927174184,0.0,5964.306041843239,0.0,4340.284732462388,0.0,0.0,0,0,0,0,0,0,0,0,0.058183669310754284,0.0018408907396291608,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5711175859320027,-0.5711175859320027,-0.5322999742079977,-0.5322999742079977,-0.578047925723612,-0.578047925723612,-0.4159097796257775,-0.4159097796257775,-0.15737322333131346,-0.15737322333131346,-0.5349263842310299,-0.608426933039294,-0.5931748150953481,-0.617158924040443,-0.2886975641633596,-0.5452536211560091,-0.6236222382967507,-0.6003870397556453,-0.6268421212904698,-0.315878527158163,11.832710505298138,11.832710505298138,10.928048036422481,10.928048036422481,12.001099537412202,12.001099537412202,8.605888990530701,8.605888990530701,5.513237847166295,5.513237847166295,10.987198063956086,12.763821462636017,12.375882035442828,12.990465371371783,6.73146394721293,11.222677839809904,13.160355521704417,12.558067504722601,13.24566757835413,7.074214137070882,212.4653327641487,212.4653327641487,0.0,236.07259196016523,0.0,212.4653327641487,236.07259196016523,0,0
+2017/01/27 22:00:00,199.1604025382816,0,1076.7135465925683,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.16672261235086178,27.0977424753112,0,0,157.64496643498208,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4185.574414038065,0.0,5285.909858937588,0.0,5005.595151280975,0.0,5283.500076206896,0.0,0.0,0.0,3977.0223048295393,0.0,5159.160002323242,0.0,4828.224039226545,0.0,5112.440083702633,0.0,0.0,0,0,0,0,0,0,0,0,0.05732502674949039,0.001813723887514009,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6284544029698452,-0.6284544029698452,-0.565432229156119,-0.565432229156119,-0.6316116996783023,-0.6316116996783023,-0.47879173414542736,-0.47879173414542736,-0.234104400831284,-0.234104400831284,-0.5431917798029944,-0.61727546440015,-0.5991220648515334,-0.6248949267312558,-0.30206992270828703,-0.5574748518387431,-0.6335566442634595,-0.6090541973152661,-0.6371029410121182,-0.33083380031013726,13.288554629702901,13.288554629702901,11.696127047522097,11.696127047522097,13.372866101454491,13.372866101454491,9.78794138564949,9.78794138564949,6.13719447100334,6.13719447100334,11.175294914318144,12.993512620769351,12.525950163931995,13.19402213389192,6.8961841819185565,11.507315433153167,13.425018558376706,12.779992154039533,13.520532637577915,7.276138544715138,199.1604025382816,199.1604025382816,0.0,221.28933615364622,0.0,199.1604025382816,221.28933615364622,0,0
+2017/01/27 23:00:00,140.68266444269136,0,1171.697231140647,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.538962131128834,20.95876950378629,0,0,412.3352372895094,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1214.7129243699735,0.0,701.634603501652,0.0,1847.648001507009,0.0,492.48549498779846,0.0,0.0,0.0,4949.6032219266735,0.0,6610.294696343206,0.0,5798.307264874768,0.0,6594.863591378422,0.0,868.0056995355874,0.0,4476.802330050688,0.0,6349.145736387389,0.0,5424.841446144644,0.0,6284.1849331836365,0.0,6092.416600634335,0,0,0,0,0,0,0,0,0.06238202846987847,0.001973723896926108,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7480194807203052,-0.7480194807203052,-0.7206411933336803,-0.7206411933336803,-0.7596232641268913,-0.7596232641268913,-0.672678029071548,-0.672678029071548,-0.46708209558454916,-0.46708209558454916,-0.5690903367972955,-0.6461672791911848,-0.624163445370836,-0.6515518206632451,-0.32731979286215296,-0.5892127866310253,-0.6652939317842542,-0.6379017113728646,-0.6672721749151689,-0.3628292617085966,16.782543755029963,16.782543755029963,15.92802258165571,15.92802258165571,17.154417350206728,17.154417350206728,14.508861752364638,14.508861752364638,9.55493170390433,9.55493170390433,11.783847583862212,13.767145587160869,13.174663562156667,13.91532926870184,7.227840440655186,12.276759342127434,14.299210741017646,13.542121569370593,14.355145951181697,7.740031103494914,140.68266444269136,140.68266444269136,0.0,156.3140716029904,0.0,140.68266444269136,156.3140716029904,0,0
+2017/01/28 00:00:00,91.37991992537786,0,967.7972481584858,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.6398242565027108,11.797139407582579,0,0,395.945672087642,518.6160473020278,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2566.97766772878,0.0,1542.4851516225026,0.0,3125.4764769263456,0.0,1414.6543865374,0.0,0.0,0.0,4153.403678100614,0.0,6994.015204693973,0.0,5057.307079232175,0.0,6987.719602199835,0.0,8762.11138700367,0.0,4126.562564974981,0.0,6964.247875693846,0.0,5039.495025280574,0.0,6909.420576421581,0.0,12998.80013153403,0,0,0,0,0,0,0,0,0.05152624234583148,0.001630254391068404,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8383258712521234,-0.8383258712521234,-0.8257423498130847,-0.8257423498130847,-0.8545055249061005,-0.8545055249061005,-0.7975646760536665,-0.7975646760536665,-0.5580875991392042,-0.5580875991392042,-0.5940850340247391,-0.6715636046531182,-0.6451753026309192,-0.676571364077818,-0.3576911728989482,-0.6166753459796205,-0.6931338843588388,-0.6615162844979692,-0.6950989420018773,-0.39857347345422883,19.827709449591012,19.827709449591012,19.38272831431979,19.38272831431979,20.409574575849106,20.409574575849106,18.410446505190706,18.410446505190706,11.521757040639088,11.521757040639088,12.398750278748125,14.477069498807737,13.739983309844348,14.620352594459732,7.662600803866638,12.97782726812062,15.101970001134973,14.192867911332442,15.15989828338897,8.309852404290694,91.37991992537786,91.37991992537786,0.0,101.53324436153096,0.0,91.37991992537786,101.53324436153096,0,0
+2017/01/28 01:00:00,40.854530789979755,0,601.3029309531618,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.07669559076070166,0.05341588526840819,9.538785249150587,0,0,31.799804005991845,516.2675981783538,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.83409966256876,0.0,245.13794789283966,0.0,3.121206826503872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03201381343303598,0.0010128947415524825,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8561350922743033,-0.8561350922743033,-0.8505781435949562,-0.8505781435949562,-0.8710530847007801,-0.8710530847007801,-0.8260932322106695,-0.8260932322106695,-0.23475424532759112,-0.23475424532759112,-0.8913118761145307,-0.9698826765323054,-0.9433404240815634,-0.9756924994813888,-0.14298342614319823,-0.8620385835414787,-0.9653356652288536,-0.9350169795529679,-0.9674299578626667,-0.2668389420676207,20.468781898693237,20.468781898693237,20.267333567353347,20.267333567353347,21.015910420791514,21.015910420791514,19.395046357979894,19.395046357979894,6.143531292112542,6.143531292112542,21.773590079773484,24.86887915182271,23.79576858187737,25.107442369274125,5.4235906011685415,20.684196260585225,24.68308426645011,23.46497092101481,24.768558928201088,6.478462199447847,40.854530789979755,40.854530789979755,0.0,45.393923099977506,0.0,40.854530789979755,45.393923099977506,0,0
+2017/01/28 02:00:00,23.722051766359638,0,37.29257578820782,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249563426818465,0,0,0.0,1.802223275663684,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.001985484357823688,6.281934108477756e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9488561458938255,-0.9488561458938255,-0.9689277370592039,-0.9689277370592039,-0.9963332081104949,-0.9963332081104949,-0.9291543931529764,-0.9291543931529764,-0.09202261408499589,-0.09202261408499589,-0.9906957183832893,-1.1201822276136753,-1.1018049957126572,-1.1312462346887078,-0.07759448228868658,-1.0176124488397833,-1.157953523617721,-1.1328741684623391,-1.1622316763246598,-0.2920973720377041,24.016491395941415,24.016491395941415,24.829792744497652,24.829792744497652,25.965511787591183,25.965511787591183,23.23362941055116,23.23362941055116,5.175361547517042,5.175361547517042,25.729531038067364,31.44339665061881,30.59647773115516,31.958692940875494,5.1246693157365115,26.867089984044625,33.218850711678016,32.03485046150311,33.42280455092768,6.772626441996067,23.722051766359638,23.722051766359638,0.0,26.35783529595515,0.0,23.722051766359638,26.35783529595515,0,0
+2017/01/28 03:00:00,28.344510779340265,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251476928673677,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.004704482651273,-1.004704482651273,-1.0315613206667529,-1.0315613206667529,-1.0543104398942447,-1.0543104398942447,-0.9931394383358697,-0.9931394383358697,-0.013666154090031484,-0.013666154090031484,-1.0804066266966161,-1.2178137462333485,-1.20015712212038,-1.2289613183724752,-0.055260425827471156,-1.1248961568142903,-1.2744848187724334,-1.2500268101369787,-1.2783849403135992,-0.29640788059287,26.31815563569974,26.31815563569974,27.46728066755351,27.46728066755351,28.461456084203704,28.461456084203704,25.831674337468897,25.831674337468897,5.003866135808124,5.003866135808124,29.62479659486216,36.122530127845835,35.25512881382441,36.674649557869465,5.063222077970394,31.66245215456108,38.963365238825745,37.72711104400122,39.16186074304673,6.825516984860883,28.344510779340265,28.344510779340265,0.0,31.493900865933625,0.0,28.344510779340265,31.493900865933625,0,0
+2017/01/28 04:00:00,23.731798534923513,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5347031112457232,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.074355488117025,-1.074355488117025,-1.108918669371897,-1.108918669371897,-1.1256646060426525,-1.1256646060426525,-1.0735033160316787,-1.0735033160316787,0.04824281000581238,0.04824281000581238,-1.1611386158182933,-1.299742738972363,-1.2868796058675047,-1.3112698794492488,-0.02625622741128394,-1.2237948922600916,-1.3752937747327079,-1.3544879793373867,-1.3790367387716647,-0.3074791079508292,29.352899534649893,29.352899534649893,30.922968398038194,30.922968398038194,31.69823123482874,31.69823123482874,29.314711898085505,29.314711898085505,5.048182727092353,5.048182727092353,33.37064063132209,40.25518700170925,39.59544489156589,40.8495551219914,5.014271148717285,36.418341679373285,44.19968875752654,43.102530595973796,44.397851647222694,6.964961714918616,23.731798534923513,23.731798534923513,0.0,26.368665038803904,0.0,23.731798534923513,26.368665038803904,0,0
+2017/01/28 05:00:00,41.770261581548176,0,435.5552685685863,0,0,0,0.0,0.02414321797861251,4.633261998087618,9.319298099999997,23.111338313975452,0,2.452315604008854,1.6617849027373335,0.5681194447602924,0,0,346.829387287226,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3979281574074569,1240.6256289322641,0.21863402244503055,942.2153682191656,1.0553110503270668,1560.838958624005,0.16065599861229368,848.7177078249978,0.0,0.0,2.6024530083578528,4548.82623022735,2.9432088959758853,3409.550690033478,3.554512086137947,5395.973554769974,2.175333995387208,3448.70687431036,0.0,0.0,2.92368884957159,4420.2590552332285,1.85663264304838,3306.3454612109813,3.8962256450095074,5246.720734919447,2.3586336263322827,3306.1124379538387,0.0,0.0,0,0,0,0,0,0,0,0,0.023189285117282667,0.0007336928168456994,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9417835667557263,-0.9417835667557263,-0.9546639265214373,-0.9546639265214373,-0.9619651337788316,-0.9619651337788316,-0.9367086473742032,-0.9367086473742032,0.18098736950356237,0.18098736950356237,-0.793162117766022,-0.8603604636950503,-0.847905372612568,-0.865533886763448,0.005148863149739025,-0.8378075375979946,-0.9135686369349534,-0.892653738551496,-0.9169044752117647,-0.29940731523818737,23.733685574254864,23.733685574254864,24.250198613411058,24.250198613411058,24.545881497690218,24.545881497690218,23.531979841177133,23.531979841177133,5.679053721497155,5.679053721497155,18.261564155860682,20.622815943937255,20.17089844131523,20.812417443357404,5.000548787297944,19.809249176337303,22.625296908653297,21.824369174471343,22.75467807903631,6.862783725688061,41.770261581548176,41.770261581548176,0.0,46.41140175727575,0.0,41.770261581548176,46.41140175727575,0,0
+2017/01/28 06:00:00,76.14435146026297,0,372.9751327200953,0,0,0,0.0,0.02068244770688307,4.633261998087618,9.319298099999997,57.911447091112116,0,2.208592152848086,1.526032431482043,0.5250372390262222,0,0,160.03301764483047,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,432.28442046140975,0.0,404.41672595992844,0.0,626.4794271603686,0.0,338.786796554112,0.0,0.0,2.6633049713241235,3823.6163845735437,1.9364456975623625,2918.177255797438,3.482721551871009,4628.540732936297,2.3344732705020306,2956.6164337487303,0.0,0.0,3.0189900041934834,4084.042994068178,2.3170984267336507,3073.513217663864,2.9753454238434642,4880.601081513253,1.9540683608529434,3074.588361069071,0.0,0.0,0,0,0,0,0,0,0,0,0.019857472331185178,0.0006282765827586679,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8444233227778978,-0.8444233227778978,-0.8592647835549413,-0.8592647835549413,-0.8626446774959456,-0.8626446774959456,-0.8425210859334004,-0.8425210859334004,0.49484617449823837,0.49484617449823837,-0.7435967375813427,-0.7932416621534225,-0.7828659636605875,-0.796657025233948,0.07192874449350498,-0.7556418411308696,-0.810750100926142,-0.7917161934783744,-0.8111984012118076,-0.26047150902430943,20.045710151059353,20.045710151059353,20.58280235306323,20.58280235306323,20.706393910229195,20.706393910229195,19.977533451809407,19.977533451809407,10.117022484423913,10.117022484423913,16.64232328570381,18.264246840462732,17.916586653528014,18.379685067283546,5.10712391484455,17.02617286586127,18.861246918618562,18.212846212557082,18.87670305406843,6.408549467465804,76.14435146026297,76.14435146026297,0.0,84.60483495584774,0.0,76.14435146026297,84.60483495584774,0,0
+2017/01/28 07:00:00,106.92213378102252,0,871.755661140564,0,0,0,0.12168623795935347,0.018468170310924965,8.33396954093373,13.929299233552332,80.56906512710079,0,2.041487363671127,1.3831853742819162,0.5249727332123884,0,0,135.46748541708533,505.60088439194186,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,385.69597604674624,0.0,0.0,0.0,0.0,0.0,0.0,204.26056713578538,0.0,256.91443067199214,0.0,400.02442138367456,0.0,201.0632307241553,0.0,0.0,3.46609353560522,3468.916269381483,2.058570541693522,2618.436769655613,2.22715860080613,4139.754497488369,2.5014669302249786,2641.4962336477797,0.0,0.0,1.760436035950382,3411.7600366927454,2.479460270305026,2542.4796728847778,2.454360145084441,4028.8301289630626,1.520624251255261,2532.312588445606,0.0,0.0,0,0,0,0,0,0,0,0,0.04641291711435353,0.0014684723450261472,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7870953074173412,-0.7870953074173412,-0.8032507599459139,-0.8032507599459139,-0.8026896991151543,-0.8026896991151543,-0.7890530932903103,-0.7890530932903103,0.7358215940934757,0.7358215940934757,-0.7320983521914287,-0.7776743745359763,-0.768052759221848,-0.7804102225895512,0.1477177907317368,-0.7395027887554123,-0.7903812980291685,-0.7722484673385637,-0.7902556743002331,-0.18658823659230753,18.05774806930873,18.05774806930873,18.603948550525274,18.603948550525274,18.584794378611576,18.584794378611576,18.123349704280443,18.123349704280443,16.397851014059498,16.397851014059498,16.281700937731927,17.744348467971463,17.428172826311297,17.834971118048458,5.452133521160945,16.513274682842223,18.167947919182893,17.56556271513189,18.16372654321769,5.721796356198141,106.92213378102252,106.92213378102252,0.0,118.80237086780281,0.0,106.92213378102252,118.80237086780281,0,0
+2017/01/28 08:00:00,135.58863994345774,0,1012.2005985063888,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,69.33401494192633,0,39.380909295966944,0.6533722660592746,0.5250994625648682,0,0,253.74155973817398,492.28139492413396,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3095.9152366202907,0.0,1888.0236345730925,0.0,3487.3112499412264,0.0,1850.9419734929527,0.0,0.0,0.0,7533.392497789726,0.0,7838.568866764197,0.0,8374.850387474075,0.0,7810.875811798337,0.0,3069.109158642107,0.0,7473.512184602542,0.0,7750.884397983955,0.0,8273.850619272484,0.0,7667.854434577794,0.0,9158.552525310639,0,0,0,0,0,0,0,0,0.053890309608211465,0.0017050518313592895,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8190046491734787,-0.8190046491734787,-0.8290775577619155,-0.8290775577619155,-0.8366430445096582,-0.8366430445096582,-0.8187900847311481,-0.8187900847311481,0.11203544260664434,0.11203544260664434,-0.7097181403479367,-0.7587658245300837,-0.741809194498229,-0.7615820299937883,-0.20483973718205845,-0.7201535671523525,-0.772444728412085,-0.747949310514214,-0.7724326639979966,-0.33807362850081624,19.147198220985388,19.147198220985388,19.50002258175543,19.50002258175543,19.76781710634816,19.76781710634816,19.13972903427566,19.13972903427566,5.259976921355658,5.259976921355658,15.596093830447202,17.126741333609147,16.585888287191537,17.21775933592845,5.87017712697498,15.913095045469959,17.572007728087257,16.780312504389983,17.571611497703984,7.377298087257145,135.58863994345774,135.58863994345774,0.0,150.6540443816197,0.0,135.58863994345774,150.6540443816197,0,0
+2017/01/28 09:00:00,144.0973279737201,0,1130.7771612698355,0,0,0,0.0,0.0,12.306393185476153,0.0,87.89947186453183,0,39.380909295966944,0.5534399274215089,0.5251384978694089,0,0,319.06447676364814,492.2995118932902,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1650.9769949873507,0.0,1686.384826467721,0.0,3126.68659581003,0.0,1122.1308264425786,0.0,0.0,0.0,6768.847953934519,0.0,7945.979767179377,0.0,8492.294800937914,0.0,7451.033112262638,0.0,122.48232635732482,0.0,6305.829915421967,0.0,7738.67282380229,0.0,8176.775861109609,0.0,7082.121375353447,0.0,6089.978306473409,0,0,0,0,0,0,0,0,0.06020341364018791,0.0019047940423345066,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7307818912452797,-0.7307818912452797,-0.8233629498595791,-0.8233629498595791,-0.8301440007410121,-0.8301440007410121,-0.7518774447338071,-0.7518774447338071,-0.25165186684347945,-0.25165186684347945,-0.6445205356012259,-0.7475540131865257,-0.728550498263107,-0.7104713914392989,-0.2964747120499372,-0.6462647124012233,-0.7629854324081323,-0.7357904055430838,-0.7144977549677928,-0.37945212674451634,16.24077522086911,16.24077522086911,19.299333686125337,19.299333686125337,19.537626199332294,19.537626199332294,16.905542716194503,16.905542716194503,6.314530415437048,6.314530415437048,13.722077871869615,16.767746903796365,16.17157653820658,15.618818495412981,6.826343196507281,13.769815802063917,17.263242959689094,16.39687558437855,15.740703747217097,7.9982431169909916,144.0973279737201,144.0973279737201,0.0,160.10814219302233,0.0,144.0973279737201,160.10814219302233,0,0
+2017/01/28 10:00:00,184.1023197465526,0,1270.4735250190263,0,0,0,0.0,0.0,11.63813426782361,0.0,106.27511244621549,0,39.380909295966944,0.44261679179359664,22.933571742298717,0,0,298.16941609262386,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1219.4482559118167,0.0,2355.527447424572,0.0,180.33737349589873,0.0,0.0,0.0,4785.874361992915,0.0,7760.6217686767,0.0,7440.208522423135,0.0,7025.454655417379,0.0,0.0,0.0,3972.7493265776984,0.0,7478.0259617222855,0.0,7033.379447513546,0.0,6549.224554307653,0.0,7298.022164755001,0,0,0,0,0,0,0,0,0.06764095152022276,0.0021401125564672442,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6087734381414502,-0.6087734381414502,-0.8097854019510651,-0.8097854019510651,-0.813871426385744,-0.813871426385744,-0.7210489322087369,-0.7210489322087369,-0.2813090272719775,-0.2813090272719775,-0.5580649084348783,-0.7360453595207773,-0.7130861288727421,-0.6792321170635025,-0.3156876072949898,-0.5466787666748627,-0.7495003440624355,-0.7201480273911895,-0.6798950761145933,-0.387093352065306,12.772752152726554,12.772752152726554,18.82801555411183,18.82801555411183,18.9690373451768,18.9690373451768,15.94051241314304,15.94051241314304,6.643691177329984,6.643691177329984,11.52122196180288,16.404850558550507,15.697891748993982,14.696924128553974,7.071697636797737,11.25553661521694,16.829680998281987,15.912925517437301,14.71605052681447,8.120893674378408,184.1023197465526,184.1023197465526,0.0,204.55813305172512,0.0,184.1023197465526,204.55813305172512,0,0
+2017/01/28 11:00:00,210.46638908592575,0,1395.3995192898542,0,0,0,0.0,0.0,15.025710948003718,0.0,131.64086955684016,0,39.380909295966944,0.5798236580308552,20.40710042462974,0,0,352.54724997866293,581.4776866481178,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,539.4559222529124,0.0,1216.9076135350474,0.0,0.0,0.0,0.0,0.0,2483.176174039993,0.0,7676.69823211792,0.0,5752.6022770216205,0.0,7089.032929136045,0.0,3636.1298150887515,0.0,1766.1856573161986,0.0,7382.369790070296,0.0,5320.30829648925,0.0,6649.196194832764,0.0,10408.409673851027,0,0,0,0,0,0,0,0,0.07429210398871844,0.002350550384334732,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4870742774722692,-0.4870742774722692,-0.7709195808618236,-0.7709195808618236,-0.767502369746183,-0.767502369746183,-0.6916706363773764,-0.6916706363773764,-0.23045255125983527,-0.23045255125983527,-0.4822856222492437,-0.7319501024230421,-0.7035949587589834,-0.6873406179160683,-0.33721738001703233,-0.4488957769433631,-0.7417765327949875,-0.7062153406105317,-0.6886538492569798,-0.3985305225489735,9.9563262363111,9.9563262363111,17.52196664300989,17.52196664300989,17.410205849736826,17.410205849736826,15.058943016830781,15.058943016830781,6.101913814921474,6.101913814921474,9.85861148260318,16.27708847482083,15.412272881039868,14.93216031512003,7.365218000690845,9.204753636802366,16.58485839095998,15.49074008132753,14.970526040888984,8.309134945740439,210.46638908592575,210.46638908592575,0.0,233.8515434288064,0.0,210.46638908592575,233.8515434288064,0,0
+2017/01/28 12:00:00,218.36797586529838,0,1341.4281358697515,0,0,0,0.0,0.0,15.081367944243603,0.0,136.4899973586286,0,39.380909295966944,0.41392740427393704,23.569798659730917,0,0,227.1626168931724,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,126.97485750921331,0.0,0.0,0.0,0.0,0.0,3132.975800284193,0.0,6803.254058742983,0.0,6614.841494472621,0.0,6464.421582473385,0.0,0.0,0.0,2093.2225863509448,0.0,6346.897000680761,0.0,5940.477600304552,0.0,5920.84797431646,0.0,1694.0043765730136,0,0,0,0,0,0,0,0,0.07141862755846866,0.0022596355930599274,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4682970126638031,-0.4682970126638031,-0.7164270622653277,-0.7164270622653277,-0.7213889594629883,-0.7213889594629883,-0.6404131044763223,-0.6404131044763223,-0.13073714967704425,-0.13073714967704425,-0.45910417423550565,-0.7068583651114299,-0.6800856330150336,-0.6806408453873768,-0.32750174706430757,-0.4253139342146975,-0.7111939598008474,-0.6777450470851892,-0.6804223134069004,-0.3788154906466553,9.578832497045298,9.578832497045298,15.799354922477079,15.799354922477079,15.95093357935977,15.95093357935977,13.610179050305021,13.610179050305021,5.354086189365432,5.354086189365432,9.399563514326672,15.510040681348826,14.721551619925691,14.737588727730483,7.230328441680271,8.771862732808245,15.640640487487076,14.654091255139576,14.731274919450513,7.9881368607975105,218.36797586529838,218.36797586529838,0.0,242.63108429477597,0.0,218.36797586529838,242.63108429477597,0,0
+2017/01/28 13:00:00,206.34013531572046,0,1298.8096302841368,0,0,0,0.0,0.0,15.025710873952344,0.0,124.80122689546741,0,39.380909295966944,0.3894423492576695,23.310870698621738,0,0,220.03446382010196,599.6554075446891,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3763.56767756125,0.0,6446.68646829155,0.0,6577.021078665713,0.0,6255.686542659911,0.0,0.0,0.0,2920.719670812902,0.0,6045.085755037386,0.0,6022.0947060841045,0.0,5801.8574240860935,0.0,410.7652320671822,0,0,0,0,0,0,0,0,0.06914958675327933,0.0021878447236356492,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5190747950343966,-0.5190747950343966,-0.6635643915013201,-0.6635643915013201,-0.7035895968433288,-0.7035895968433288,-0.609123726073097,-0.609123726073097,-0.11631115012765994,-0.11631115012765994,-0.49251193628268836,-0.6864861442484443,-0.6692873505118099,-0.6721728240966902,-0.3268550020495667,-0.4707534292258711,-0.6894382367494921,-0.6684109726832045,-0.6732781419521978,-0.3721287776820611,10.634738949946467,10.634738949946467,14.250446521032487,14.250446521032487,15.412112622480961,15.412112622480961,12.7817856366038,12.7817856366038,5.280211132157845,5.280211132157845,10.068484378160349,14.907237115379516,14.412299677894893,14.494442624172905,7.2214913700793915,9.627351352042083,14.993477285236835,14.387422539683442,14.526004017024434,7.88303357118977,206.34013531572046,206.34013531572046,0.0,229.26681701746716,0.0,206.34013531572046,229.26681701746716,0,0
+2017/01/28 14:00:00,201.28738170147244,0,1300.7637965437832,0,0,0,0.0,0.0,15.081367870192226,0.0,122.5097643007467,0,39.380909295966944,0.47026990784725814,20.41309512426498,0,0,257.4789825922927,599.6554075446891,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,124.37519783887106,0.0,0.0,0.0,0.0,0.0,4215.7576460620485,0.0,6363.335522191974,0.0,6601.897041760279,0.0,6273.879503950322,0.0,0.0,0.0,3395.193790353147,0.0,5898.1076779236755,0.0,5965.26382811501,0.0,5781.0347178632455,0.0,359.1982930469794,0,0,0,0,0,0,0,0,0.06925362801240686,0.0021911365165517044,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5772684940608606,-0.5772684940608606,-0.6391989453964431,-0.6391989453964431,-0.7059259549506005,-0.7059259549506005,-0.6121002396085685,-0.6121002396085685,-0.1363813986596996,-0.1363813986596996,-0.5039260997526648,-0.673079882681968,-0.662139808139112,-0.6686437855378671,-0.3269764330825751,-0.4896805768500405,-0.6757047318843331,-0.6619124937693732,-0.6715389965944173,-0.3689971964421364,11.982057396555632,11.982057396555632,13.57724179793884,13.57724179793884,15.482059891575503,15.482059891575503,12.85876104694293,12.85876104694293,5.385345276909945,5.385345276909945,10.30806893749272,14.520339003390148,14.210377846226336,14.39402799522746,7.223149241115308,10.009924940798143,14.595478665236456,14.20399240078548,14.476368087811267,7.834466327301612,201.28738170147244,201.28738170147244,0.0,223.65264633496938,0.0,201.28738170147244,223.65264633496938,0,0
+2017/01/28 15:00:00,185.6816502902481,0,1209.2018365430388,0,0,0,0.0,0.0,15.137024940483485,0.0,108.75639138185811,0,39.380909295966944,0.4061612779162091,18.569188191568987,0,0,238.71339457262167,562.3493880761596,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.69836712965972,0.0,940.8476614067503,0.0,42.26494993336938,0.0,0.0,0.0,4568.606037616787,0.0,7244.093358524477,0.0,6591.195754938317,0.0,7161.612436204305,0.0,0.0,0.0,3663.361121854464,0.0,6683.64432852338,0.0,5818.9634379194695,0.0,6582.947708292693,0.0,6747.050910345099,0,0,0,0,0,0,0,0,0.06437880144141304,0.0020369004018798856,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6113216519292067,-0.6113216519292067,-0.6737328072687484,-0.6737328072687484,-0.719148043242159,-0.719148043242159,-0.6589888424031813,-0.6589888424031813,-0.18479987006957682,-0.18479987006957682,-0.5264384962446649,-0.6784182451548674,-0.6656205221615541,-0.6751041664419608,-0.3368254161323393,-0.5203082053957235,-0.6834830450439472,-0.6675158149346195,-0.6807155523035978,-0.3802180986365204,12.8385889100946,12.8385889100946,14.539001941245473,14.539001941245473,15.88234560219135,15.88234560219135,14.122064209484833,14.122064209484833,5.708006192465987,5.708006192465987,10.79711746433685,14.6734698873871,14.308433467130001,14.578260404435667,7.359698501767795,10.661773520207987,14.819893465666922,14.36204664186613,14.739747627719751,8.010425436702334,185.6816502902481,185.6816502902481,0.0,206.3129447669423,0.0,185.6816502902481,206.3129447669423,0,0
+2017/01/28 16:00:00,183.68984056416642,0,1298.9579506566542,0,0,0,0.0,0.0,15.526154330738613,0.0,106.31215624428707,0,39.380909295966944,0.5699420516234308,18.46870343909609,0,0,328.48365331296606,562.3352434494308,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.020565360691535,0.0,952.7431111566725,0.0,42.21732466261847,0.0,0.0,0.0,4346.044339604423,0.0,7216.82203132146,0.0,6173.011915837249,0.0,7183.015493607295,0.0,1755.458548822706,0.0,3614.5572196804537,0.0,6751.438467758445,0.0,5577.008127400941,0.0,6707.461592730994,0.0,8117.3233391967515,0,0,0,0,0,0,0,0,0.06915748343977404,0.0021880945692918973,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6212197784927997,-0.6212197784927997,-0.6936846730004459,-0.6936846730004459,-0.7292589248065268,-0.7292589248065268,-0.6888179795357089,-0.6888179795357089,-0.21067777687616981,-0.21067777687616981,-0.5434548376951448,-0.6827938472167047,-0.6715249500136913,-0.6845117700231604,-0.34514097923408893,-0.5438462054259192,-0.6896340598618307,-0.676660882039497,-0.6925870746234764,-0.3898152167366986,13.096994467263002,13.096994467263002,15.118189971646785,15.118189971646785,16.19352266483301,16.19352266483301,14.975326306642444,14.975326306642444,5.920580175796957,5.920580175796957,11.181329963243925,14.799903508931408,14.475967725592682,14.849769508897154,7.478194799631538,11.190314233441185,14.999211234157414,14.622923775650037,15.085880168806511,8.165185138103027,183.68984056416642,183.68984056416642,0.0,204.0998228490738,0.0,183.68984056416642,204.0998228490738,0,0
+2017/01/28 17:00:00,199.98475739062718,0,1337.5905147206995,0,0,0,0.0,0.0,20.07401285433463,0.0,120.17895923267236,0,39.380909295966944,0.5909161876519493,16.32798461754695,0,0,314.9058998758622,561.3100321817633,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,66.27812185015519,0.0,809.0956109452778,0.0,0.0,0.0,0.0,0.0,4683.527516402613,0.0,7507.172816713101,0.0,6365.498218189114,0.0,7387.551766792124,0.0,2137.6599235985364,0.0,3964.9517916547134,0.0,7099.52042108381,0.0,5792.773414952381,0.0,6932.310928368258,0.0,8543.871785536297,0,0,0,0,0,0,0,0,0.07121430976594156,0.00225317112052562,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6259293962210388,-0.6259293962210388,-0.7101300471524237,-0.7101300471524237,-0.7261323541778929,-0.7261323541778929,-0.6966099314940245,-0.6966099314940245,-0.17147533619849267,-0.17147533619849267,-0.5643628962278493,-0.7029758888715598,-0.6802392447264901,-0.6950801236388223,-0.349936787895785,-0.5729516352963724,-0.7169021106030837,-0.6870597420914498,-0.7059260047275521,-0.39586566826557945,13.221438885839476,13.221438885839476,15.60851752434533,15.60851752434533,16.09682816103789,16.09682816103789,15.20455444564476,15.20455444564476,5.609463791924526,5.609463791924526,11.670594336252776,15.393778130156335,14.725987304130427,15.159342742481428,7.547870993195218,11.877070327610312,15.813821052530159,14.9239642755892,15.482061384336035,8.264775125387985,199.98475739062718,199.98475739062718,0.0,222.20528598958575,0.0,199.98475739062718,222.20528598958575,0,0
+2017/01/28 18:00:00,239.12317544616332,0,1340.301287780799,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,138.40412594678773,0,39.380909295966944,0.5752162794217289,18.401786430515266,0,0,297.93385453109073,580.9928505866347,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,406.92840372843716,0.0,0.0,0.0,0.0,0.0,4304.138860854563,0.0,7227.5776740667,0.0,5888.810777338373,0.0,7101.626013689429,0.0,2063.0780492271433,0.0,3864.8604820882224,0.0,6977.852888809501,0.0,5545.88153104857,0.0,6804.250779170907,0.0,7732.636004645881,0,0,0,0,0,0,0,0,0.07135863333154893,0.002257737417539613,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.611357756584986,-0.611357756584986,-0.7050624789866893,-0.7050624789866893,-0.7199278097729447,-0.7199278097729447,-0.6887687802233041,-0.6887687802233041,-0.14582384329514964,-0.14582384329514964,-0.5723298029185017,-0.7065907281795272,-0.6812917831134447,-0.699248070286324,-0.35253648444636104,-0.583662530190825,-0.7208730534017265,-0.6896086899733488,-0.7119923945590975,-0.39895974818313257,12.839523750399707,12.839523750399707,15.456181202587445,15.456181202587445,15.906187477741867,15.906187477741867,14.97388726788887,14.97388726788887,5.440603160861926,5.440603160861926,11.862013828964592,15.502005300579171,14.756407808715736,15.282759011621437,7.586049652474742,12.139047685925675,15.93512402685299,14.998468278219079,15.664779865820648,8.316308343119971,239.12317544616332,239.12317544616332,0.0,265.6924171624037,0.0,239.12317544616332,265.6924171624037,0,0
+2017/01/28 19:00:00,227.92263586919395,0,1258.1552835434882,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,120.14191543460078,0,39.380909295966944,0.443720140907521,25.594953504247094,0,0,232.61564584826934,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5478.619206251253,0.0,5657.870953064661,0.0,6928.414285374023,0.0,5545.918242634979,0.0,0.0,0.0,5296.448039270018,0.0,5554.070561670499,0.0,6804.141438442617,0.0,5402.105051200533,0.0,0.0,0,0,0,0,0,0,0,0,0.06698511921986153,0.002119362479636639,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6301517685800526,-0.6301517685800526,-0.6683413434002227,-0.6683413434002227,-0.6972288730503382,-0.6972288730503382,-0.6511069040008965,-0.6511069040008965,-0.1306515749669411,-0.1306515749669411,-0.5616838013482861,-0.6878824758493525,-0.6636029788522211,-0.6816446293707907,-0.32738564833875505,-0.5725309898366555,-0.7002750975396773,-0.6704482837255021,-0.6926572513471456,-0.3724948604263351,13.333826799503115,13.333826799503115,14.385447446907605,14.385447446907605,15.222875267166032,15.222875267166032,13.90303743397952,13.90303743397952,5.3536224548070095,5.3536224548070095,11.606842738049579,14.947981525525222,14.251533074536496,14.766616509523516,7.22874077154988,11.866883355165399,15.313285306736276,14.445305498428098,15.087944390664546,7.888738394098979,227.92263586919395,227.92263586919395,0.0,253.24737318799328,0.0,227.92263586919395,253.24737318799328,0,0
+2017/01/28 20:00:00,220.22238986953707,0,1258.8838883894684,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.89738010901058,0,39.380909295966944,0.48522049577673254,27.0977424753112,0,0,268.8346032067939,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,435.46464018734486,0.0,0.0,0.0,0.0,0.0,7713.433016216281,0.0,5952.727128690671,0.0,9084.547325203956,0.0,5838.2817147494725,0.0,0.0,0.0,7391.73487710493,0.0,5746.153915836423,0.0,8800.646891431608,0.0,5591.165479272236,0.0,0.0,0,0,0,0,0,0,0,0,0.06702391068154398,0.0021205898144443926,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6386788932175468,-0.6386788932175468,-0.6903358907966213,-0.6903358907966213,-0.7142552288024867,-0.7142552288024867,-0.6733784670562724,-0.6733784670562724,-0.13259837208986744,-0.13259837208986744,-0.5606275184684679,-0.6778067985862829,-0.6574838335064276,-0.6718606653859251,-0.3097889515207944,-0.5731070245296513,-0.690506943435683,-0.6653866727928933,-0.6832510704429678,-0.35085906262161537,13.563153575274526,13.563153575274526,15.019775347331475,15.019775347331475,15.73334226975463,15.73334226975463,14.528871331192363,14.528871331192363,5.364247613636735,5.364247613636735,11.581793044850514,14.655868012668378,14.080034401352492,14.485538779689136,6.9947084493120855,11.880835404656594,15.024790529766221,14.301829224602557,14.813162825045666,7.561382445032635,220.22238986953707,220.22238986953707,0.0,244.69154429948563,0.0,220.22238986953707,244.69154429948563,0,0
+2017/01/28 21:00:00,200.6786310881974,0,1130.7077309369347,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,0.24265178542289487,23.804344119863103,0,0,176.1487982668043,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,241.73602757618912,0.0,922.9038253252049,0.0,184.42347294940103,0.0,0.0,0.0,6665.748176865732,0.0,6456.376193916444,0.0,7968.694019229442,0.0,6346.035978179911,0.0,13.071429332349563,0.0,6429.111155183951,0.0,6305.855185629986,0.0,7769.701214833774,0.0,6154.445878291162,0.0,0.0,0,0,0,0,0,0,0,0,0.060199717117836754,0.001904677086944005,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6730821195598581,-0.6730821195598581,-0.7184111713221271,-0.7184111713221271,-0.7337526709345534,-0.7337526709345534,-0.7066969864963687,-0.7066969864963687,-0.1829893669415056,-0.1829893669415056,-0.5669762481427585,-0.678686503893219,-0.659131600955919,-0.6731685182423272,-0.3146474384838442,-0.5835280652857328,-0.6936573493151811,-0.669807730421045,-0.6869700374459807,-0.353799273084321,14.520402909921785,14.520402909921785,15.859839319315128,15.859839319315128,16.33323546670924,16.33323546670924,15.505195170712213,15.505195170712213,5.694181393377761,5.694181393377761,11.73308145585213,14.681197428053238,14.12605606930282,14.522871444701167,7.058014368762869,12.13572795988965,15.117385017612278,14.427087082088718,14.921347386084705,7.60469847957161,200.6786310881974,200.6786310881974,0.0,222.97625676466376,0.0,200.6786310881974,222.97625676466376,0,0
+2017/01/28 22:00:00,197.19155320479408,0,1271.3477900508087,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,0.4522920755125487,27.0977424753112,0,0,352.2792098932226,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,749.3095730863381,0.0,756.0710675604406,0.0,1735.5162567960908,0.0,707.1385013526475,0.0,0.0,0.0,7137.010740599464,0.0,7103.349971197845,0.0,8389.476714221173,0.0,6992.180240148311,0.0,32.637194172141925,0.0,6857.725201281754,0.0,6927.869672797921,0.0,8153.517801127889,0.0,6775.753563958868,0.0,1825.5035046474009,0,0,0,0,0,0,0,0,0.0676874980380888,0.002141585255846926,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7158165827345027,-0.7158165827345027,-0.7472890814826652,-0.7472890814826652,-0.758729267893607,-0.758729267893607,-0.7390649280817462,-0.7390649280817462,-0.24388225423047288,-0.24388225423047288,-0.5769581583672061,-0.6851888377314159,-0.6653032616237878,-0.6795900990226393,-0.3163344122027714,-0.596883097071752,-0.7018195305374223,-0.677926989307863,-0.6950472713733665,-0.3548061075663542,15.780778927451962,15.780778927451962,16.759329076971255,16.759329076971255,17.125562074980564,17.125562074980564,16.499515101809564,16.499515101809564,6.234414565046322,6.234414565046322,11.974482983389947,14.869457756602046,14.29947414626983,14.707249562533605,7.080229368296273,12.469273676006964,15.35927615369468,14.659326697548437,15.158372940410317,7.6196159990139165,197.19155320479408,197.19155320479408,0.0,219.1017257831045,0.0,197.19155320479408,219.1017257831045,0,0
+2017/01/28 23:00:00,140.75790414363482,0,1174.5380390545974,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,0.674972767888838,18.64357977132053,0,0,433.8355373570477,580.9959153911012,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2305.5936123067636,0.0,1674.593838640409,0.0,3202.3911528717917,0.0,1636.4864184224298,0.0,0.0,0.0,6814.442678700462,0.0,7452.885665486074,0.0,8036.903801362153,0.0,7342.4286892894,0.0,1600.8067619856267,0.0,6574.173127094089,0.0,7327.0784378389735,0.0,7879.136116549083,0.0,7175.489693842438,0.0,6849.010598418478,0,0,0,0,0,0,0,0,0.06253327518742255,0.001978509237641544,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8005649459083187,-0.8005649459083187,-0.8214613575892052,-0.8214613575892052,-0.8358784153575716,-0.8358784153575716,-0.8158900596040465,-0.8158900596040465,-0.4630854004341004,-0.4630854004341004,-0.5956454765135136,-0.7015973304848627,-0.6799621968490698,-0.6959769062282589,-0.33608215083307635,-0.6218049856652706,-0.7215375817138614,-0.6961981009959487,-0.7147566255441853,-0.37903671000543515,18.5123776521242,18.5123776521242,19.232856507012386,19.232856507012386,19.74064282251075,19.74064282251075,19.03896652235231,19.03896652235231,9.47675431223162,9.47675431223162,12.438038329827563,15.352653036036344,14.717988022965883,15.185833856234481,7.34925001329897,13.112405301538232,15.95549012200675,15.192373328528717,15.748564128473618,7.991646638274204,140.75790414363482,140.75790414363482,0.0,156.39767127070536,0.0,140.75790414363482,156.39767127070536,0,0
+2017/01/29 00:00:00,93.78507190333859,0,1050.0691495528977,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.7619566371945453,14.080159004851485,0,0,456.25179276827777,540.5818280158035,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3899.775437414488,0.0,2603.046042684667,0.0,4652.440249812903,0.0,2573.2849052674223,0.0,0.0,0.0,6186.377136106219,0.0,8168.407708435404,0.0,7442.872772307412,0.0,8051.911652768567,0.0,8521.367788403119,0.0,5901.553215101668,0.0,7988.516667066555,0.0,7207.534170191486,0.0,7830.490792794359,0.0,14264.355972981271,0,0,0,0,0,0,0,0,0.0559064593154158,0.001768841402722959,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8813351324066453,-0.8813351324066453,-0.8970164431151744,-0.8970164431151744,-0.9192326840453016,-0.9192326840453016,-0.892550240575578,-0.892550240575578,-0.5875223391673373,-0.5875223391673373,-0.6188746615458526,-0.7231926182063196,-0.6989268981220071,-0.7169091093765391,-0.3636261774838291,-0.6489021296979316,-0.7456835902864991,-0.7177049994542112,-0.7381505973828204,-0.4111315349888442,21.39835552092049,21.39835552092049,21.989971027563072,21.989971027563072,22.845243586613535,22.845243586613535,21.820449963594342,21.820449963594342,12.2346747821272,12.2346747821272,13.035387305942251,16.006295383644925,15.273222169563894,15.814034251225053,7.75214123245226,13.842252152537341,16.70838123815426,15.838292650929787,16.470809191528275,8.52301033325702,93.78507190333859,93.78507190333859,0.0,104.20563544815398,0.0,93.78507190333859,104.20563544815398,0,0
+2017/01/29 01:00:00,43.423940907158666,0,671.3401979637741,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.28084414696667637,0.19227079659778792,11.765191898794138,0,0,99.4136951742266,518.6909740207313,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,329.1613905056649,0.0,465.84535061595165,0.0,749.7156320867416,0.0,435.422902567432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03574264940575157,0.0011308725125161207,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8965974494665641,-0.8965974494665641,-0.9134636526344566,-0.9134636526344566,-0.9313460019364252,-0.9313460019364252,-0.9097548746654301,-0.9097548746654301,-0.2665598553621497,-0.2665598553621497,-0.9359983067462452,-1.049109684381564,-1.0226257572023743,-1.0409028133101492,-0.15389064091963298,-0.9048790548010335,-1.0525393181101184,-1.0233258303532233,-1.0405619754609774,-0.2927294296797053,21.974032993510733,21.974032993510733,22.621232350636546,22.621232350636546,23.319951267888655,23.319951267888655,22.477929229672156,22.477929229672156,6.475362129451682,6.475362129451682,23.5038285593281,28.232516378587476,27.081970964096598,27.873238268297186,5.490750630066017,22.290378916127338,28.38338094882397,27.11205198478443,27.858370168178723,6.780332766774649,43.423940907158666,43.423940907158666,0.0,48.24882323017629,0.0,43.423940907158666,48.24882323017629,0,0
+2017/01/29 02:00:00,23.75133061640736,0,46.717538772964964,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5542351927295651,0,0,0.0,11.227186260420838,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002487276368265074,7.869569051725842e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.044191626568689,-1.044191626568689,-1.126109106071593,-1.126109106071593,-1.1383891873133558,-1.1383891873133558,-1.113554392830585,-1.113554392830585,-0.1145913611168269,-0.1145913611168269,-1.0398667761370406,-1.236904967015855,-1.2144882328185012,-1.221839930359028,-0.0868481910622545,-1.0720344523996825,-1.277645758175252,-1.2510533059062825,-1.2575419689825167,-0.33731019885383406,28.01692112028121,28.01692112028121,31.718936057179718,31.718936057179718,32.2934909100416,32.2934909100416,31.136647374114858,31.136647374114858,5.271981155428151,5.271981155428151,27.82805718337262,37.07014455581212,35.958488308655404,36.32154590165008,5.156188445732411,29.248949007538513,39.12421228921644,37.77869319785896,38.10537679313091,7.366525998626415,23.75133061640736,23.75133061640736,0.0,26.390367351563732,0.0,23.75133061640736,26.390367351563732,0,0
+2017/01/29 03:00:00,28.367790621757113,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5484275352842152,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.062897266371197,-1.062897266371197,-1.148229344669296,-1.148229344669296,-1.1577357692963597,-1.1577357692963597,-1.1369674265905367,-1.1369674265905367,-0.036610326770868715,-0.036610326770868715,-1.0764235686075179,-1.2877203315778292,-1.2651675988297113,-1.2729303990460448,-0.06592096215036407,-1.1452907609882557,-1.3655604499426182,-1.3382543452745184,-1.3449183940587743,-0.3234195171394599,28.84157878837034,28.84157878837034,32.757396806585064,32.757396806585064,33.208484869882284,33.208484869882284,32.22671988196089,32.22671988196089,5.027746881375634,5.027746881375634,29.44568070503813,39.638449189239175,38.4906615504002,38.88435558975968,5.089973058270928,32.618536077704434,43.685479504065526,42.251931572373714,42.60050625198983,7.174846556126468,28.367790621757113,28.367790621757113,0.0,31.519767357507902,0.0,28.367790621757113,31.519767357507902,0,0
+2017/01/29 04:00:00,23.721959386938916,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248639632611247,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.1109359480329783,-1.1109359480329783,-1.199317742143383,-1.199317742143383,-1.2037368725988176,-1.2037368725988176,-1.1899140860427084,-1.1899140860427084,0.026830235241681277,0.026830235241681277,-1.1354624133645634,-1.3519659543188614,-1.3314756235562528,-1.3378871979278844,-0.03749800257840937,-1.234076258009628,-1.460330754193342,-1.4337837923275047,-1.4402499685069607,-0.31710235701374045,31.015864273604066,31.015864273604066,35.214114673973754,35.214114673973754,35.43027182390874,35.43027182390874,34.756028766544745,34.756028766544745,5.014901975204012,5.014901975204012,32.156110100364714,42.970059031393184,41.898248135769215,42.232752276679804,5.0291088144414005,36.92911588671046,48.75070855183765,47.32017489117509,47.66791967394216,7.090382016041104,23.721959386938916,23.721959386938916,0.0,26.35773265215435,0.0,23.721959386938916,26.35773265215435,0,0
+2017/01/29 05:00:00,41.75729842819391,0,391.20386414242114,0,0,0,0.0,0.024407122619268074,4.633261998087618,9.319298099999997,23.111338313975452,0,2.4724496018453888,1.6714943441805752,0.5250489474856149,0,0,302.47798286106075,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2132058864915505,1295.7537720304917,0.2470675736695037,1175.6320808221967,1.6214025829746619,1812.3794920468008,0.24355197618718777,1147.0983341421197,0.0,0.0,2.6648465638646397,4002.689950075268,1.9140380035844164,3363.994594560491,3.826889743066617,5261.5683770241,2.1507115580103675,3297.2136397494337,0.0,0.0,3.080640925135991,4345.472141560916,1.7932454593396043,3439.142939924094,3.430052237693912,5452.921615656257,2.2214701092496147,3365.242699393778,0.0,0.0,0,0,0,0,0,0,0,0,0.020827983494252703,0.0006589828794560388,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.959511649360448,-0.959511649360448,-0.9949872066371127,-0.9949872066371127,-0.9988438295128098,-0.9988438295128098,-0.9911638335209892,-0.9911638335209892,0.15869778925921532,0.15869778925921532,-0.7981428390068047,-0.8982732927080146,-0.8824774089515744,-0.8923294427178254,-0.0065013777603047775,-0.8564504681449663,-0.9618138649598557,-0.9392373683107519,-0.9524971798223696,-0.3145791350183169,24.446287766286375,24.446287766286375,25.909059158072893,25.909059158072893,26.070993854572222,26.070993854572222,25.749079785591945,25.749079785591945,5.5219232883276845,5.5219232883276845,18.430059369974572,22.037822985812355,21.441111005964984,21.812090358405683,5.000874968590082,20.480253224553437,24.539734266720984,23.63235756718143,24.1628526589068,7.057117450002423,41.75729842819391,41.75729842819391,0.0,46.396998253548794,0.0,41.75729842819391,46.396998253548794,0,0
+2017/01/29 06:00:00,76.05173665733984,0,366.8610734773504,0,0,0,0.0,0.020787411181709445,4.633261998087618,9.319298099999997,57.911447091112116,0,2.1513623894920704,1.4906377002281972,0.5249419672381612,0,0,153.91895840208556,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,337.860999404351,0.0,381.99471799157755,0.0,562.2333048813375,0.0,373.8252487584578,0.0,0.0,2.4611154441157623,3213.2590507134373,2.1432650418639696,2818.540048661088,3.169205003623347,4430.622338536856,1.8426362230941322,2761.380095058583,0.0,0.0,2.8392535069426685,3841.6366052036965,2.524092826705555,3194.758251737444,3.410135920357334,5027.98423071877,2.397707215006676,3111.9398440560144,0.0,0.0,0,0,0,0,0,0,0,0,0.019531955288377,0.0006179774504283134,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.851898159296756,-0.851898159296756,-0.8848672572388773,-0.8848672572388773,-0.886116425243139,-0.886116425243139,-0.8821973602908441,-0.8821973602908441,0.47283000089598015,0.47283000089598015,-0.7519628814802302,-0.8271806128301337,-0.813813852856189,-0.8231598869659374,0.059937349338083215,-0.7748805170686031,-0.8481380010019173,-0.828000444635711,-0.8429270881015108,-0.25871784791848185,20.315070093873743,20.315070093873743,21.530736174626938,21.530736174626938,21.577676123471235,21.577676123471235,21.43062381578818,21.43062381578818,9.668570415737818,9.668570415737818,16.908273810851,19.43325264926031,18.96704540976566,19.292227627453485,5.074378231596327,17.652133148902166,20.179279998904192,19.46209112038909,19.992072016883128,6.389594464862981,76.05173665733984,76.05173665733984,0.0,84.50192961926649,0.0,76.05173665733984,84.50192961926649,0,0
+2017/01/29 07:00:00,106.50976526407123,0,852.361687381421,0,0,0,0.1162618923361317,0.016983765368943905,8.33396954093373,13.929299233552332,80.56906512710079,0,1.7915010601237111,1.227712496392947,0.5249721482626397,0,0,116.0631960208083,505.6112000290759,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,368.84126350098006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,118.28847906417228,0.0,137.41113296410938,0.0,113.02500771622894,0.0,0.0,1.920905689800444,2510.0390215258203,1.4835909484086185,2226.2303061031844,2.9833659669109993,3493.245212442079,1.95660799102158,2183.416443443009,0.0,0.0,2.7065114919006796,2948.0640881033396,1.2474403425808305,2439.072026900635,2.860728035810401,3831.353018495983,1.8246149025103473,2379.5526714740063,0.0,0.0,0,0,0,0,0,0,0,0,0.04538036758617111,0.0014358031977008488,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7479575204050952,-0.7479575204050952,-0.8008928934673571,-0.8008928934673571,-0.7989854355660898,-0.7989854355660898,-0.7985928297446825,-0.7985928297446825,0.7144254294455877,0.7144254294455877,-0.7349084401316944,-0.8044872010274284,-0.7895429879106759,-0.7993837855930065,0.13613948195375394,-0.7535645513656264,-0.8207205750254708,-0.8007848945197459,-0.8163972471121295,-0.14725543817568204,16.780573549077417,16.780573549077417,18.523542435568075,18.523542435568075,18.45866788556593,18.45866788556593,18.44533407771887,18.44533407771887,15.738508161338743,15.738508161338743,16.36930919121795,18.646206643492036,18.139790581479787,18.472203448274286,5.383978307014942,16.959531076713404,19.20700084802924,18.51986517188918,19.0565634091801,5.449304937789947,106.50976526407123,106.50976526407123,0.0,118.34418362674582,0.0,106.50976526407123,118.34418362674582,0,0
+2017/01/29 08:00:00,135.59760462946005,0,1018.3645622147466,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,69.33401494192633,0,39.380909295966944,0.6623906630436248,0.5250457515828106,0,0,259.8461076427369,492.3408107279288,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3316.720700284871,0.0,2130.83456055259,0.0,3817.033852007174,0.0,2135.7735057750624,0.0,0.0,0.0,7498.604927708369,0.0,8087.232639516408,0.0,8658.619355509927,0.0,7983.380700776141,0.0,3513.821877846133,0.0,7576.166074228594,0.0,8047.646874004036,0.0,8641.234243134406,0.0,7905.001160090103,0.0,7756.358349561578,0,0,0,0,0,0,0,0,0.05421848360173344,0.0017154350277581811,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8012576799980661,-0.8012576799980661,-0.8335828972420972,-0.8335828972420972,-0.84128195286889,-0.84128195286889,-0.8318640113244458,-0.8318640113244458,0.09180571314324637,0.09180571314324637,-0.7096448102139526,-0.7786623910729108,-0.7594044774660889,-0.7750564734540584,-0.2122656645296731,-0.728549776836457,-0.7969380014385758,-0.7716182604029826,-0.792191855541162,-0.3346559096028567,18.535966725454045,18.535966725454045,19.65920892167145,19.65920892167145,19.93320375483448,19.93320375483448,19.598375534790875,19.598375534790875,5.174535544019037,5.174535544019037,15.593882856621889,17.777038933020037,17.147352474371132,17.65793103550527,5.9345360871811295,16.171554200352247,18.389203978730606,17.54487846522389,18.228863045527817,7.329266245698562,135.59760462946005,135.59760462946005,0.0,150.6640051438445,0.0,135.59760462946005,150.6640051438445,0,0
+2017/01/29 09:00:00,151.43835902171432,0,1106.5879668154532,0,0,0,0.0,0.0,10.61849273103617,0.0,96.91714705112861,0,39.380909295966944,0.512415522993562,0.5774192181347461,0,0,294.8184822607418,492.35631194181457,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1946.3934153251585,0.0,1429.1195645832586,0.0,2682.039673965178,0.0,1353.9024125571962,0.0,0.0,0.0,6312.416042779031,0.0,7287.963554669408,0.0,7570.237145221285,0.0,7097.710873258942,0.0,122.14475366239873,0.0,6357.917310681709,0.0,7253.767462005447,0.0,7557.028656956978,0.0,7010.360534239626,0.0,3766.485675616527,0,0,0,0,0,0,0,0,0.058915563010339,0.0018640473461120285,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7823030885299737,-0.7823030885299737,-0.8207316800164323,-0.8207316800164323,-0.8285346165519991,-0.8285346165519991,-0.8077677466288818,-0.8077677466288818,-0.2721977241508051,-0.2721977241508051,-0.6789742061284952,-0.7594371834878214,-0.7364638443445995,-0.7480584412515502,-0.3056253290656239,-0.6950120128671492,-0.7743860040541689,-0.7461498891202819,-0.760564021265215,-0.3851585492275117,17.89785707755827,17.89785707755827,19.20738827708759,19.20738827708759,19.480896361868005,19.480896361868005,18.758639540359923,18.758639540359923,6.5386233860046445,6.5386233860046445,14.689488523954154,17.148408459779347,16.417946837747337,16.783782701119307,6.94125159814412,15.157332157743198,17.635845659734215,16.723167142861755,17.18481880773173,8.089602100304106,151.43835902171432,151.43835902171432,0.0,168.26484335746036,0.0,151.43835902171432,168.26484335746036,0,0
+2017/01/29 10:00:00,151.3051289260755,0,1280.8020012777629,0,0,0,0.0,0.0,10.214674134550792,0.0,97.06762091869685,0,39.380909295966944,0.6851222818854834,0.524827092521152,0,0,415.8068042189668,492.3464956770829,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2128.7196504888398,0.0,1470.9512111963083,0.0,2732.5665692874572,0.0,1436.5284574211742,0.0,0.0,0.0,5421.659329198526,0.0,8280.244800622922,0.0,6553.267978658267,0.0,8127.809136909236,0.0,5120.256521626211,0.0,5198.669055796566,0.0,8068.071773667043,0.0,6257.842307394727,0.0,7858.186219520492,0.0,13066.189014189311,0,0,0,0,0,0,0,0,0.06819084724660912,0.002157510873941168,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7922465666547213,-0.7922465666547213,-0.8179776346827077,-0.8179776346827077,-0.8242760901268528,-0.8242760901268528,-0.8139111549596071,-0.8139111549596071,-0.3224413495298329,-0.3224413495298329,-0.6842660014149877,-0.7613987241586366,-0.7336449120998337,-0.7541786814595212,-0.3388506352903689,-0.7035346588643308,-0.778567647164745,-0.7451534567019004,-0.7691448154753434,-0.4111790975234649,18.23070593257519,18.23070593257519,19.11146444863371,19.11146444863371,19.331309861796882,19.331309861796882,18.970411960258318,18.970411960258318,7.161657148074255,7.161657148074255,14.842627781249519,17.211824692112742,16.329875035917453,16.97921383284664,7.38828716787188,15.410470691001905,17.773902343837037,16.6915825152752,17.46386029933427,8.523830485361017,151.3051289260755,151.3051289260755,0.0,168.11680991786167,0.0,151.3051289260755,168.11680991786167,0,0
+2017/01/29 11:00:00,204.55959317112962,0,1403.1929874691639,0,0,0,0.0,0.0,13.146986369893432,0.0,124.87761316689259,0,39.380909295966944,0.5976331241791953,23.124476011743138,0,0,342.1629972614012,599.6554075446891,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,722.4653451140782,0.0,1485.119963958118,0.0,520.0190074810498,0.0,0.0,0.0,3712.714866400895,0.0,7745.151542619538,0.0,5978.9844047465185,0.0,7457.207504376445,0.0,3494.588535717372,0.0,3102.031425658946,0.0,7445.936981611438,0.0,5560.604585806338,0.0,7090.243915118643,0.0,10714.981156138729,0,0,0,0,0,0,0,0,0.07470703400725873,0.002363678480891265,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5731032447273571,-0.5731032447273571,-0.7753518056593958,-0.7753518056593958,-0.7748285169994583,-0.7748285169994583,-0.7535266206653101,-0.7535266206653101,-0.2556051564376216,-0.2556051564376216,-0.5939022107616039,-0.7465334199878938,-0.7172854913554075,-0.727717161572545,-0.3480819344465863,-0.5932589510261583,-0.7575951475372996,-0.7228676499417774,-0.7352558264373756,-0.4105640054413212,11.880743807715646,11.880743807715646,17.6676654038167,17.6676654038167,17.65041996254844,17.65041996254844,16.958315934073894,16.958315934073894,6.35626861470584,6.35626861470584,12.394154160831079,16.735335537656923,15.825502817479162,16.145788481399237,7.520806671523715,12.377994349387123,17.08900555213225,15.99631041235827,16.38016298442058,8.513231524239416,204.55959317112962,204.55959317112962,0.0,227.28843685681068,0.0,204.55959317112962,227.28843685681068,0,0
+2017/01/29 12:00:00,222.87291178164682,0,1359.4700714562016,0,0,0,0.0,0.0,13.195685805097062,0.0,143.25325374857618,0,39.380909295966944,0.4434744427846068,23.167613286767654,0,0,245.2045524796225,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0806123140227983,0.0,0.0,0.0,0.0,0.0,3101.9272836954415,0.0,6714.76622943047,0.0,5491.7530490157205,0.0,6555.208780532937,0.0,0.0,0.0,2371.596767319693,0.0,6378.2162923518335,0.0,5022.865083127848,0.0,6174.4794305165515,0.0,4743.149760172156,0,0,0,0,0,0,0,0,0.07237919357287323,0.002290027232185943,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.449982668850885,-0.449982668850885,-0.7058154595741082,-0.7058154595741082,-0.7208404856501872,-0.7208404856501872,-0.6888226315950572,-0.6888226315950572,-0.16650594577512826,-0.16650594577512826,-0.5236815408525674,-0.7189617583524331,-0.6915629110496722,-0.7111552676950891,-0.3462680943153975,-0.5059280844366874,-0.7241567426778645,-0.6917105163799637,-0.7153185202521175,-0.39966693906437833,9.22528182984398,9.22528182984398,15.478746510254396,15.478746510254396,15.934126397128452,15.934126397128452,14.975462380903025,14.975462380903025,5.574608982655562,5.574608982655562,10.73604841093595,15.876653693446698,15.055778996637699,15.639471392633197,7.4944822555991095,10.350671149214023,16.035945803375384,15.060114466818732,15.765635511113118,8.328144400986517,222.87291178164682,222.87291178164682,0.0,247.63656864627424,0.0,222.87291178164682,247.63656864627424,0,0
+2017/01/29 13:00:00,199.36627001822254,0,1234.4333643560658,0,0,0,0.0,0.0,13.016794053187484,0.0,124.80122689546741,0,39.380909295966944,0.3172924011303943,18.418072170016018,0,0,174.30991495067198,581.0036904860481,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3837.201464008093,0.0,6094.380395050577,0.0,6318.699666370683,0.0,6129.8934893496025,0.0,0.0,0.0,3055.368506584555,0.0,5626.613133788306,0.0,5699.297470476486,0.0,5658.584674836847,0.0,0.0,0,0,0,0,0,0,0,0,0.06572214667133948,0.0020794029085658894,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48958374793372755,-0.48958374793372755,-0.626829989374469,-0.626829989374469,-0.6907645437046541,-0.6907645437046541,-0.6493462965466528,-0.6493462965466528,-0.14500605218843454,-0.14500605218843454,-0.5067558347599165,-0.6790913249420268,-0.6692529815995621,-0.6882378331254625,-0.3371231479506628,-0.48419927305090354,-0.6766148408485158,-0.6656553489354107,-0.688385700737196,-0.3818711781564417,10.007928403188231,10.007928403188231,13.245345294220442,13.245345294220442,15.032345633695982,15.032345633695982,13.85448081246085,13.85448081246085,5.435670607583305,5.435670607583305,10.368336294859816,14.692864717345572,14.411323444572417,14.958364166249368,7.36389046185532,9.897541708063727,14.62160131344254,14.309417227943214,14.962686092060082,8.036802014785124,199.36627001822254,199.36627001822254,0.0,221.51807779802505,0.0,199.36627001822254,221.51807779802505,0,0
+2017/01/29 14:00:00,200.34708355856304,0,1247.969513600884,0,0,0,0.0,0.0,13.807812491738058,0.0,124.7641830973959,0,39.380909295966944,0.364993753328027,18.597209717679743,0,0,241.96984098294485,562.3702662111376,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,460.3031684427049,0.0,8.744419230145045,0.0,0.0,0.0,5251.84656873181,0.0,6619.573129284804,0.0,6968.547486624683,0.0,6554.392725397505,0.0,0.0,0.0,4428.696407634014,0.0,6083.755947691087,0.0,6215.193355743453,0.0,5993.389445927557,0.0,690.0601350229643,0,0,0,0,0,0,0,0,0.0664428212834496,0.0021022045509414096,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.57803576411102,-0.57803576411102,-0.6686906953012807,-0.6686906953012807,-0.7075600524198633,-0.7075600524198633,-0.6833142862474937,-0.6833142862474937,-0.15624663057570404,-0.15624663057570404,-0.5599814263969682,-0.6947485516424468,-0.6740242142351083,-0.6931515579156097,-0.3341729027441284,-0.5586769370556454,-0.7028461068037731,-0.676720127549518,-0.6998505996243771,-0.37750699296548873,12.00080221702467,12.00080221702467,14.395359221100023,14.395359221100023,15.531122415232275,15.531122415232275,14.814996773021946,14.814996773021946,5.505908087342931,5.505908087342931,11.566494854201053,15.149556844062047,14.547337358009116,15.102490259628297,7.322518174120617,11.535662280719407,15.389902979914467,14.62462564651915,15.30066244907924,7.967419472605883,200.34708355856304,200.34708355856304,0.0,222.6078706206256,0.0,200.34708355856304,222.6078706206256,0,0
+2017/01/29 15:00:00,181.6108748109031,0,1260.7842967010301,0,0,0,0.0,0.0,13.19568574030269,0.0,111.01081017850728,0,39.380909295966944,0.5268847840689077,14.064609609603009,0,0,312.0355807780972,540.6096620286754,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,502.6967775457568,0.0,2.757986519373111,0.0,0.0,0.0,3972.863952554361,0.0,6722.293212415118,0.0,5661.59568859473,0.0,6777.323114435351,0.0,536.5047939123459,0.0,3357.2092945428535,0.0,6310.20533777156,0.0,5131.0013459524225,0.0,6362.826711204301,0.0,6590.208058673675,0,0,0,0,0,0,0,0,0.06712508982769665,0.00212379105210098,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5512175103346695,-0.5512175103346695,-0.6575371852721246,-0.6575371852721246,-0.7086755434460658,-0.7086755434460658,-0.6936994034517776,-0.6936994034517776,-0.20669020362723375,-0.20669020362723375,-0.550687083212499,-0.6739073740217142,-0.6654411435724774,-0.6861539043398855,-0.3447282967060709,-0.5491364701920268,-0.6767634278428191,-0.6671752590721861,-0.691819842943783,-0.38885276034405436,11.360770468278773,11.360770468278773,14.081522657752572,14.081522657752572,15.564680321917692,15.564680321917692,15.118623943189462,15.118623943189462,5.885998825451523,5.885998825451523,11.348426076229472,14.543994814374699,14.303367346178206,14.897554898699397,7.472244807238226,11.31240929479479,14.62586957537458,14.35240168879163,15.063326218279698,8.149487419022279,181.6108748109031,181.6108748109031,0.0,201.78986090100346,0.0,181.6108748109031,201.78986090100346,0,0
+2017/01/29 16:00:00,180.54086024195385,0,1259.7604980082174,0,0,0,0.0,0.0,14.306840228810247,0.0,108.75639138185811,0,39.380909295966944,0.5794787913566369,14.085265341507627,0,0,311.0104807859871,540.6109633279727,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,669.3082351329662,0.0,114.23702100041827,0.0,0.0,0.0,3715.997151895941,0.0,7128.374993531543,0.0,5227.507352947191,0.0,7122.394386495369,0.0,4809.009485049144,0.0,3278.923588100995,0.0,6847.543789906018,0.0,4885.829106493124,0.0,6830.263611060939,0.0,10353.146345668538,0,0,0,0,0,0,0,0,0.06707058202695677,0.002122066463280642,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5933931712653464,-0.5933931712653464,-0.6944511680832336,-0.6944511680832336,-0.7210146123849116,-0.7210146123849116,-0.7130764054588528,-0.7130764054588528,-0.2355294764198249,-0.2355294764198249,-0.5797412478722677,-0.6974323476758277,-0.6774060405005738,-0.7010571483643397,-0.3560901836868356,-0.5900089004940637,-0.7080125578110551,-0.6838883849476304,-0.7114681348114109,-0.40196918834729306,12.381364714322643,12.381364714322643,15.140784010750323,15.140784010750323,15.939460854610147,15.939460854610147,15.697597153701722,15.697597153701722,6.151113976451015,6.151113976451015,12.04255959489356,15.228901779132116,14.644340058976113,15.336560713543932,7.638703795584007,12.296621961111612,15.544728905198099,14.831659809763025,15.64892662562309,8.366824722857103,180.54086024195385,180.54086024195385,0.0,200.60095582439317,0.0,180.54086024195385,200.60095582439317,0,0
+2017/01/29 17:00:00,196.68939879049228,0,1300.6083995574606,0,0,0,0.0,0.0,14.424175594858164,0.0,124.87761316689259,0,39.380909295966944,0.5710224261706413,14.00370310414965,0,0,298.6211246536748,540.612692240712,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,243.19269300179116,0.0,0.0,0.0,0.0,0.0,3571.2689719246446,0.0,7000.601894800376,0.0,5265.5133032594995,0.0,6953.853151193007,0.0,3775.414790619905,0.0,3600.594615449607,0.0,6853.877644496669,0.0,5084.84989199428,0.0,6753.814483215751,0.0,8930.31478060386,0,0,0,0,0,0,0,0,0.06924535456175149,0.002190874750340039,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6066028097407954,-0.6066028097407954,-0.6685139756772334,-0.6685139756772334,-0.704297246616808,-0.704297246616808,-0.6904742523372219,-0.6904742523372219,-0.19171844873731633,-0.19171844873731633,-0.6306136306551727,-0.7010364416984655,-0.6759081354465736,-0.702592458665628,-0.3602603752970213,-0.6034245699972757,-0.7154828652518624,-0.6849699186264314,-0.7145319557940235,-0.4067056610173918,12.716893128638787,12.716893128638787,14.390344690629064,14.390344690629064,15.433273795429415,15.433273795429415,15.023831944492343,15.023831944492343,5.762096988844107,5.762096988844107,13.34616722748703,15.33594410123213,14.601313800626556,15.38233142319639,7.701177809974382,12.635473110335468,15.770631182155384,14.863089705546955,15.741742060193303,8.447116066073292,196.68939879049228,196.68939879049228,0.0,218.5437764338803,0.0,196.68939879049228,218.5437764338803,0,0
+2017/01/29 18:00:00,221.85345289785255,0,1321.1429739376752,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,129.38645076019097,0,39.380909295966944,0.5731981777078111,18.485726711448997,0,0,297.4149359650792,562.3534553095222,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.40633959633149,0.0,631.4932876245089,0.0,126.41391186931804,0.0,0.0,0.0,5151.402073909479,0.0,7262.0268415443425,0.0,6476.0673288892085,0.0,7196.195834400444,0.0,835.2069771305098,0.0,4615.7504178139425,0.0,6920.612229259516,0.0,6002.421143637301,0.0,6813.954589816859,0.0,7052.626496400852,0,0,0,0,0,0,0,0,0.07033863051185024,0.0022254652393249624,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6203358069470388,-0.6203358069470388,-0.6903166150959086,-0.6903166150959086,-0.7071358513590116,-0.7071358513590116,-0.7011694651419034,-0.7011694651419034,-0.1649487715914538,-0.1649487715914538,-0.61435118249601,-0.7045255284415521,-0.677368439097888,-0.7044312708925006,-0.35522786974072385,-0.6134088498666714,-0.7192075802246928,-0.6866874962530966,-0.7180677244030682,-0.4017297997649173,13.073744156072806,13.073744156072806,15.019210272181354,15.019210272181354,15.518375034715348,15.518375034715348,15.339905654986524,15.339905654986524,5.563899027382547,5.563899027382547,12.917227860778624,15.440104820090795,14.643258797401046,15.437284017965695,7.625877756333509,12.892724609680755,15.884165061474064,14.913107287234652,15.8493574074772,8.362792166213836,221.85345289785255,221.85345289785255,0.0,246.5038365531695,0.0,221.85345289785255,246.5038365531695,0,0
+2017/01/29 19:00:00,213.0818713077093,0,1299.8905054292873,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,115.6330778413024,0,39.380909295966944,0.5313222852707469,23.50939393263137,0,0,274.35086773406863,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.28485293971208,0.0,542.5717098481749,0.0,77.01976583146165,0.0,0.0,0.0,5853.727309282607,0.0,6677.085993086459,0.0,7180.116926949961,0.0,6611.481376899236,0.0,0.0,0.0,5558.725698982211,0.0,6418.092171510801,0.0,6827.367013774035,0.0,6314.922729020746,0.0,1577.7656379147966,0,0,0,0,0,0,0,0,0.06920713334661856,0.002189665457735618,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6228664397329933,-0.6228664397329933,-0.7046483076690347,-0.7046483076690347,-0.7090729667899169,-0.7090729667899169,-0.7098747450796958,-0.7098747450796958,-0.16304902612783598,-0.16304902612783598,-0.6011001817200302,-0.6934821540180268,-0.6671483419426595,-0.693626296561522,-0.34083649507038555,-0.6092497432713446,-0.7076080376252145,-0.6759467170760188,-0.7067564177621412,-0.38449285670609257,13.140395535023856,13.140395535023856,15.44377975218147,15.44377975218147,15.57664918338861,15.57664918338861,15.60081638951695,15.60081638951695,5.5509698332957385,5.5509698332957385,12.576204582113647,15.112224541669306,14.351639577362363,15.116470244615698,7.4164893854403005,12.785036763689689,15.53256487495878,14.602420812317291,15.50697950714823,8.078872821929949,213.0818713077093,213.0818713077093,0.0,236.75763478634366,0.0,213.0818713077093,236.75763478634366,0,0
+2017/01/29 20:00:00,201.3701942265538,0,1258.046510268796,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,104.13412371906301,0,39.380909295966944,0.5177712060403439,23.310222052945644,0,0,267.9972250861216,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.66880688663889,0.0,674.8408464568255,0.0,171.86196866340373,0.0,0.0,0.0,6363.23756753672,0.0,6398.792177633597,0.0,7564.403675203993,0.0,6335.788305000233,0.0,0.0,0.0,6115.989572755544,0.0,6194.241292729039,0.0,7290.419635207873,0.0,6094.37274274039,0.0,0.0,0,0,0,0,0,0,0,0,0.06697932805014783,0.0021191792510636765,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6438471428655632,-0.6438471428655632,-0.7164354651472788,-0.7164354651472788,-0.7188920801563685,-0.7188920801563685,-0.7204506617875052,-0.7204506617875052,-0.18721112162524312,-0.18721112162524312,-0.5977016069528132,-0.6876032488818408,-0.6623936620743763,-0.6879168032447016,-0.3318801583793875,-0.6096498155715826,-0.7014783756540505,-0.6713422370159133,-0.7009136024157311,-0.3723323852016087,13.703682481213704,13.703682481213704,15.799610721840892,15.799610721840892,15.874525069918462,15.874525069918462,15.922188685031372,15.922188685031372,5.726630813878543,5.726630813878543,12.489967933465437,14.93982704960088,14.217511455311723,14.948984247004958,7.290621392550477,12.795362826111372,15.349108224815339,14.470760732366273,15.332286518966,7.886205768289301,201.3701942265538,201.3701942265538,0.0,223.74466025172643,0.0,201.3701942265538,223.74466025172643,0,0
+2017/01/29 21:00:00,200.8499588199685,0,1236.5151266026935,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,0.5679228075252346,18.457857590570445,0,0,300.60844020685613,581.0031612703959,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,501.6463702849527,0.0,619.9595318353172,0.0,1466.4285285589453,0.0,676.6798641465721,0.0,0.0,0.0,7450.359556126094,0.0,6838.5233636646435,0.0,8595.512345085152,0.0,6770.901025404072,0.0,0.0,0.0,7087.025371448478,0.0,6557.769854612844,0.0,8205.151141295886,0.0,6453.056627404017,0.0,0.0,0,0,0,0,0,0,0,0,0.0658329812353251,0.0020829096369123306,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.688381959499949,-0.688381959499949,-0.7379132522557363,-0.7379132522557363,-0.7415012499576783,-0.7415012499576783,-0.7413057090479902,-0.7413057090479902,-0.22853309588859214,-0.22853309588859214,-0.6037820792972634,-0.6907001819358373,-0.6674903405395857,-0.6905520091816008,-0.32638226069001713,-0.6193105955753682,-0.7054065110187838,-0.6776427768731055,-0.7043005136963998,-0.36516017655272837,14.962576730227298,14.962576730227298,16.46336347891632,16.46336347891632,16.576179928530294,16.576179928530294,16.570017354815505,16.570017354815505,6.083594196282334,6.083594196282334,12.64460988545008,15.030457712225342,14.36132500246184,15.026112046561366,7.215043093425152,13.046821409042536,15.466488113053643,14.651149027722042,15.433371542505114,7.775528424950323,200.8499588199685,200.8499588199685,0.0,223.1666209110761,0.0,200.8499588199685,223.1666209110761,0,0
+2017/01/29 22:00:00,186.9364993045266,0,1323.0269238760202,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,0.7286513534712808,22.645880041369576,0,0,403.958343718434,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1665.6436994082733,0.0,1318.8189349773493,0.0,2567.803100260401,0.0,1370.277772916972,0.0,0.0,0.0,6234.804761027983,0.0,8272.452015089431,0.0,7371.046909165631,0.0,8202.928743161025,0.0,6691.686459714614,0.0,5924.05680298674,0.0,8018.950342575059,0.0,7024.596594189975,0.0,7911.694716317412,0.0,12584.112224985456,0,0,0,0,0,0,0,0,0.07043893340202202,0.0022286387528531156,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7348225594943998,-0.7348225594943998,-0.767603625545723,-0.767603625545723,-0.773981470519334,-0.773981470519334,-0.7707115157450275,-0.7707115157450275,-0.3166245862355717,-0.3166245862355717,-0.6241815669839244,-0.7145477519671551,-0.6863120106933314,-0.7136104004139232,-0.35098646825220825,-0.6452861788409104,-0.7327312452693723,-0.6999310614875408,-0.7305242588163988,-0.39535289714378485,16.366626721985128,16.366626721985128,17.413510285256294,17.413510285256294,17.62252952020451,17.62252952020451,17.515147578624678,17.515147578624678,7.0840626903068085,7.0840626903068085,13.175142868139673,15.742221637890026,14.902161877575892,15.713781907311073,7.5632517992226695,13.743017201457633,16.301402625203963,15.303054463192055,16.232774741385455,8.256274252433755,186.9364993045266,186.9364993045266,0.0,207.707221449474,0.0,186.9364993045266,207.707221449474,0,0
+2017/01/29 23:00:00,131.44118932245573,0,1214.5463356639552,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,0.8278936959831497,18.381435549565758,0,0,492.4830482280187,562.3567011294878,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3434.8075672408218,0.0,2352.1917301230405,0.0,4209.843656926971,0.0,2394.530078662513,0.0,0.0,0.0,6032.062592366302,0.0,8976.382439004921,0.0,7152.778043966521,0.0,8903.199915761043,0.0,13243.408396772373,0.0,5700.405055099,0.0,8703.594941105583,0.0,6780.465341838505,0.0,8590.666715761292,0.0,19493.526022643735,0,0,0,0,0,0,0,0,0.06466334653331679,0.002045903210243429,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8095611120817726,-0.8095611120817726,-0.8323884261638506,-0.8323884261638506,-0.8468871812852105,-0.8468871812852105,-0.8354149691382933,-0.8354149691382933,-0.3974561258580054,-0.3974561258580054,-0.6456201379009974,-0.7386110463392154,-0.7061832586914363,-0.7366572714326814,-0.38040014004587885,-0.6698420673487456,-0.7590237071766807,-0.7216954700549196,-0.755565837774043,-0.4291824853802839,18.820294978096342,18.820294978096342,19.61692207768415,19.61692207768415,20.13423970610512,20.13423970610512,19.724184229145806,19.724184229145806,8.291213732098598,8.291213732098598,13.752158501432206,16.48526075184695,15.489777598703085,16.42400258578388,8.013324378332513,14.428063231616349,17.135061838603917,15.960331791122485,17.023731338453345,8.841239979610208,131.44118932245573,131.44118932245573,0.0,146.0457659138397,0.0,131.44118932245573,146.0457659138397,0,0
+2017/01/30 00:00:00,89.3709210573395,0,1096.7933172311912,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.8558469757989904,9.572117820247936,0,0,527.2770709422872,516.2807175200878,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4169.483225503562,0.0,2714.3316258503637,0.0,4810.012023231928,0.0,2766.0534082483264,0.0,0.0,0.0,5537.060959761132,0.0,8694.74301704052,0.0,6600.7155078432,0.0,8639.101638803822,0.0,16172.59056923401,0.0,5650.299295711747,0.0,8706.58443735035,0.0,6661.451857360595,0.0,8613.460785166531,0.0,20981.47951489639,0,0,0,0,0,0,0,0,0.05839408861151064,0.0018475482596307402,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8802048464108497,-0.8802048464108497,-0.8969113915316862,-0.8969113915316862,-0.9177531398530339,-0.9177531398530339,-0.9012076684587187,-0.9012076684587187,-0.5587993887775307,-0.5587993887775307,-0.6607455545200442,-0.7516938930211816,-0.7171704265058906,-0.7507584282254578,-0.40367596667545086,-0.6874676370526257,-0.7740553781339458,-0.7345856123727725,-0.7717617737719673,-0.45414081116248445,21.356101523642735,21.356101523642735,21.985974315618208,21.985974315618208,22.787665216562885,22.787665216562885,22.149793310081662,22.149793310081662,11.538553379753353,11.538553379753353,14.171247370656502,16.899676308428866,15.821996080545787,16.869800781849193,8.395646878221214,14.935867890918374,17.624961836524122,16.359227355895854,17.54958728063349,9.304286040622628,89.3709210573395,89.3709210573395,0.0,99.30102339704389,0.0,89.3709210573395,99.30102339704389,0,0
+2017/01/30 01:00:00,39.93224848031055,0,689.1051280592867,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.3420220541375907,0.23354066628239495,9.559364763467379,0,0,119.51449244664836,516.3551068438222,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,571.009364218171,0.0,607.8817867470286,0.0,944.7491906149749,0.0,634.1285056175655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03668846744263881,0.0011607975359136762,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8961907668126585,-0.8961907668126585,-0.915529749517361,-0.915529749517361,-0.9323710771239442,-0.9323710771239442,-0.919286945108634,-0.919286945108634,-0.2877642759450312,-0.2877642759450312,-0.9827873169483035,-1.0903021495492313,-1.0546696584017707,-1.0887326597813698,-0.20669146641989283,-0.9788333761846326,-1.0950704443386021,-1.0547385776681244,-1.0904441568686383,-0.3502326479063178,21.95857008960914,21.95857008960914,22.701304753382686,22.701304753382686,23.36039215640504,23.36039215640504,22.84735689903279,22.84735689903279,6.720249726409392,6.720249726409392,25.40054053413094,30.072183253291342,28.477305034922125,30.0009987187822,5.8860096713979715,25.236957378546748,30.288970378313863,28.48034632763175,30.07862821608326,7.552201441810965,39.93224848031055,39.93224848031055,0.0,44.36916497812283,0.0,39.93224848031055,44.36916497812283,0,0
+2017/01/30 02:00:00,23.747483505658213,0,39.17115678783709,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.550388081980421,0,0,0.0,3.680804275292958,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0020855014017214205,6.598381063607119e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0362968986011234,-1.0362968986011234,-1.1097938874352105,-1.1097938874352105,-1.118474936255092,-1.118474936255092,-1.1204406177002952,-1.1204406177002952,-0.12724405457659052,-0.12724405457659052,-1.083637713472957,-1.2455415603402444,-1.2129791610456,-1.24463001634017,-0.14678515848564355,-1.1439380918618838,-1.3041312511800183,-1.2653917182798116,-1.2991773405128004,-0.37961227434371647,27.6726770777301,27.6726770777301,30.963255489710477,30.963255489710477,31.364240260422335,31.364240260422335,31.455384989032083,31.455384989032083,5.3354043763727645,5.3354043763727645,29.77050360799481,37.50204336827595,35.88415038967419,37.45636642209356,5.446436988377528,32.5547090079815,40.48112528825358,38.502007106314096,40.226109205245976,8.000788097166634,23.747483505658213,23.747483505658213,0.0,26.38609278406468,0.0,23.747483505658213,26.38609278406468,0,0
+2017/01/30 03:00:00,28.34422723698356,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248641505106679,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0530053014635183,-1.0530053014635183,-1.1309966126412665,-1.1309966126412665,-1.1370058493729531,-1.1370058493729531,-1.1428616968565086,-1.1428616968565086,-0.047069267589701876,-0.047069267589701876,-1.1253582507938762,-1.2976094139616596,-1.2647227487986532,-1.298025947295621,-0.12637364659488726,-1.2215294552165898,-1.3934640937436942,-1.3536857045650923,-1.3897561949224972,-0.36248828417081314,28.40391162034993,28.40391162034993,31.94702281998518,31.94702281998518,32.22852349777513,32.22852349777513,32.503959940275124,32.503959940275124,5.045866847251219,5.045866847251219,31.683964975691254,40.14551004715291,38.46814567778743,40.166916526644734,5.330828210834497,36.30618306089295,45.163775353102,43.06037775434779,44.96661881427803,7.734857788374313,28.34422723698356,28.34422723698356,0.0,31.49358581887062,0.0,28.34422723698356,31.49358581887062,0,0
+2017/01/30 04:00:00,23.722075879533353,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249804558555609,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.1509753229842226,-1.1509753229842226,-1.2337187783489405,-1.2337187783489405,-1.2348523615948357,-1.2348523615948357,-1.2449035598041442,-1.2449035598041442,-0.024594517299881904,-0.024594517299881904,-1.231958625120439,-1.409831549492011,-1.3774424272910455,-1.4088496468623843,-0.10898861946884962,-1.3368094110683104,-1.516912833496725,-1.4766205430788206,-1.511153919579965,-0.3857445427096152,32.887403558395945,32.887403558395945,36.911308534632724,36.911308534632724,36.967788185362785,36.967788185362785,37.4700712516388,37.4700712516388,5.012521871439873,5.012521871439873,36.82367896296325,46.03649390642303,44.3134161992161,45.984030909769054,5.2460216242318864,42.17646533923594,51.81961998821062,49.63188772605376,51.50637390815137,8.099062495037145,23.722075879533353,23.722075879533353,0.0,26.357862088370393,0.0,23.722075879533353,26.357862088370393,0,0
+2017/01/30 05:00:00,44.60162174923414,0,411.84904087121475,0,0,0,0.0,0.024443323319881968,4.633261998087618,9.319298099999997,25.555573451546493,0,2.7265412023426667,1.8174414381404862,0.525062235796992,0,0,323.1231595898545,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.47760050710779,1774.5268392949995,0.26138904234492577,1472.867747575131,1.521465536854445,2256.7688475908913,0.2633738978800958,1514.4415620323973,0.0,0.0,3.274780478966704,5075.466518014509,2.0579029698673894,3884.910331276702,2.6651693383340858,6071.452443870248,2.4924669549557352,3867.037921741985,0.0,0.0,3.676029528769353,5038.55787955437,2.2338928017571784,3806.3369017573186,2.7602071440472478,5972.293104029864,1.7590451189970127,3760.4806361567776,0.0,0.0,0,0,0,0,0,0,0,0,0.021927147995313707,0.0006937596780887492,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9679373650537976,-0.9679373650537976,-1.0011192455627949,-1.0011192455627949,-1.005176157762693,-1.005176157762693,-1.005951948673151,-1.005951948673151,0.12639968415656735,0.12639968415656735,-0.8302175506394308,-0.9159721400556063,-0.8916254739994305,-0.9153022198574243,-0.07254355939291188,-0.8932791360233648,-0.9828917345947945,-0.9496790380077073,-0.9800617130435125,-0.3801939445296013,24.789293516528417,24.789293516528417,26.166800660885002,26.166800660885002,26.338104123313656,26.338104123313656,26.37093280437719,26.37093280437719,5.330964646151401,5.330964646151401,19.540221383529286,22.718472132792897,21.78545075054845,22.692478321726327,5.108963468647502,21.848060716777866,25.404868679969937,24.049524087669766,25.28771183774279,8.010040897842416,44.60162174923414,44.60162174923414,0.0,49.55735749914904,0.0,44.60162174923414,49.55735749914904,0,0
+2017/01/30 06:00:00,77.11270785039665,0,376.712142890724,0,0,0,0.0,0.020638657196334977,5.555297838843742,9.319298099999997,57.911447091112116,0,2.2380569601041005,1.542937419226198,0.5250317839141575,0,0,163.7700278154592,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,403.54912935231397,0.0,460.3008250794636,0.0,652.2400964773483,0.0,492.93792381007586,0.0,0.0,2.5614846316739204,3626.9041537899493,1.923746596943488,2921.994226663304,3.6231710402689714,4566.729049758207,1.9117444429309671,2916.91130630705,0.0,0.0,2.7155653724341846,4226.982981061214,2.4137033947160944,3242.42812754034,3.312667799826386,5081.787558194242,2.1765739175409635,3213.8902467552834,0.0,0.0,0,0,0,0,0,0,0,0,0.020056433520697803,0.0006345715761074579,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8547691433948637,-0.8547691433948637,-0.8845039868272399,-0.8845039868272399,-0.8860766335226277,-0.8860766335226277,-0.8888708340432704,-0.8888708340432704,0.4508674818599216,0.4508674818599216,-0.7610570532688209,-0.8284373705748523,-0.8073078316213251,-0.828139165489049,0.04712960931706396,-0.7843624345570185,-0.8510539108319843,-0.8208451133741652,-0.8491442880860082,-0.26876045044285557,20.419145194781848,20.419145194781848,21.517097564122096,21.517097564122096,21.576179886300608,21.576179886300608,21.681404042268696,21.681404042268696,9.242030868674078,9.242030868674078,17.200766710694126,19.477471977548646,18.74284965409865,19.46697356493536,5.0459845348481025,17.96644697769304,20.28453067716528,19.211346017958775,20.215562277175692,6.4998951884132055,77.11270785039665,77.11270785039665,0.0,85.68078650044072,0.0,77.11270785039665,85.68078650044072,0,0
+2017/01/30 07:00:00,102.46587939710037,0,844.7796923751227,0,0,0,0.21385034406944645,0.01755552470864738,11.110595677687485,13.929299233552332,73.80580873715317,0,1.7150811330939386,1.1486278602810858,0.5250608865542598,0,0,108.39846460139525,505.6939364421906,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,680.3810417862196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.955506133001634,0.0,0.0,0.0,42.432873338172655,0.0,0.0,2.1691514889269756,2406.3751459488126,1.9491508110157456,2025.8790989607162,2.118114419221304,3144.598178088007,1.1884337955411866,2013.9531613937756,0.0,0.0,2.7858312220510015,2920.2868515849923,1.5510286853066948,2271.2165011068946,3.640912688021216,3533.546595938898,2.1529015985632514,2245.651121646557,0.0,0.0,0,0,0,0,0,0,0,0,0.04497669655600154,0.001423031327688203,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7192805905651009,-0.7192805905651009,-0.7869771242170628,-0.7869771242170628,-0.780530151954739,-0.780530151954739,-0.7903712532722902,-0.7903712532722902,0.7044703445480839,0.7044703445480839,-0.7339300388782966,-0.7975592465278075,-0.775775049707292,-0.7968664716399229,0.13074923014251869,-0.7526906384609576,-0.8150595640438377,-0.7842279970447361,-0.8132876885036305,-0.12196433698009723,15.886396476987073,15.886396476987073,18.05379318660772,18.05379318660772,17.83895096339016,17.83895096339016,18.16761035724474,18.16761035724474,15.438453310687919,15.438453310687919,16.338767725502322,18.410262387944528,17.68162231845413,18.386780375048914,5.3541516786730625,16.93155016077324,19.010175843129588,17.961963815728566,18.948847587988283,5.308130184505856,102.46587939710037,102.46587939710037,0.0,113.85097710788929,0.0,102.46587939710037,113.85097710788929,0,0
+2017/01/30 08:00:00,165.0504353263844,0,1169.8863868229473,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.766770257298592,27.096870717498412,0,0,304.0533354341774,599.655407544689,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3567.3542088977124,0.0,2238.3338481796904,0.0,3976.426358601374,0.0,2264.1022774166354,0.0,0.0,0.0,7226.757712391785,0.0,8627.351032054456,0.0,8142.8865495237405,0.0,8559.945879897274,0.0,8376.91076965077,0.0,7614.138251367878,0.0,8776.828285720381,0.0,8417.196535325902,0.0,8677.522125884168,0.0,11480.748837209925,0,0,0,0,0,0,0,0,0.06228561777709968,0.001970673529810384,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7883888001645533,-0.7883888001645533,-0.8222122858896737,-0.8222122858896737,-0.8279731892229757,-0.8279731892229757,-0.8257904992195292,-0.8257904992195292,0.06522087774881252,0.06522087774881252,-0.7225059184039134,-0.788354044044843,-0.7589134418564155,-0.7875814096281261,-0.23496604512618444,-0.7404462689251169,-0.8076249777527604,-0.7707600377508921,-0.8056498908322938,-0.34615278576304265,18.101072280538162,18.101072280538162,19.259089825140364,19.259089825140364,19.461131928746894,19.461131928746894,19.38441833687841,19.38441833687841,5.088071806419308,5.088071806419308,15.985201198360372,18.099907231251976,17.13150381368716,18.074021231199666,6.1456004424612445,16.542951102559314,18.753737017340256,17.516737659392376,18.686003064536365,7.49281350142779,165.0504353263844,165.0504353263844,0.0,183.38937258487155,0.0,165.0504353263844,183.38937258487155,0,0
+2017/01/30 09:00:00,166.59860947554526,0,1340.1737800216974,0,0,0,0.0,0.0,12.734656885179541,0.0,83.2008179303116,0,39.380909295966944,0.7525076863217297,27.0977424753112,0,0,421.10519986411134,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2892.9369506911817,0.0,1936.165131872208,0.0,3462.5252352737807,0.0,1922.045835540944,0.0,0.0,0.0,7057.493443542595,0.0,8503.668261266506,0.0,8062.309139766561,0.0,8372.029484867711,0.0,3680.049718260512,0.0,7141.150776210549,0.0,8477.75048169327,0.0,8075.582971366135,0.0,8303.63088680318,0.0,11308.272028367182,0,0,0,0,0,0,0,0,0.07135184472400853,0.0022575226307290845,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7871955830782388,-0.7871955830782388,-0.8138115106901087,-0.8138115106901087,-0.8212601607870049,-0.8212601607870049,-0.8106113417308068,-0.8106113417308068,-0.27011015090116397,-0.27011015090116397,-0.7050000777382107,-0.7783247286000116,-0.7469824473725648,-0.7719861167722276,-0.3238005080310975,-0.7201485831564106,-0.7960155343406901,-0.7567298912642554,-0.7858254048285941,-0.40443645035279446,18.061104159252636,18.061104159252636,18.966964378198355,18.966964378198355,19.225831819293347,19.225831819293347,18.85646460890902,18.85646460890902,6.515043078565526,6.515043078565526,15.454312260734994,17.765862034160975,16.749589971223756,17.556949955199656,7.179994734292805,15.91294252493121,18.357965172399147,17.061152417436503,18.015283108127903,8.408529224813606,166.59860947554526,166.59860947554526,0.0,185.10956608393917,0.0,166.59860947554526,185.10956608393917,0,0
+2017/01/30 10:00:00,182.39581539589108,0,1378.8189931756601,0,0,0,0.0,0.0,11.435487997441953,0.0,106.27511244621549,0,39.380909295966944,0.7173112197215831,21.15501923409086,0,0,406.51488424925753,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,428.57640166664976,0.0,1697.373576975765,0.0,3094.9233048517135,0.0,1118.1396332076129,0.0,0.0,0.0,5642.779819288176,0.0,8579.538713703232,0.0,8195.661899363238,0.0,7961.33903636565,0.0,4048.189976956585,0.0,5099.201226780772,0.0,8376.43978108569,0.0,7917.058248938211,0.0,7616.3326173231335,0.0,11617.120719837418,0,0,0,0,0,0,0,0,0.07340934449709252,0.0023226204893538127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6250656656986353,-0.6250656656986353,-0.8063403554638146,-0.8063403554638146,-0.8155427521550811,-0.8155427521550811,-0.7408846673645623,-0.7408846673645623,-0.2869890577099168,-0.2869890577099168,-0.6021565749610844,-0.7677691942495619,-0.7355855374943301,-0.7225263741062625,-0.33706665754472276,-0.5981952555574769,-0.7809934648753557,-0.742573438039468,-0.7261872790314959,-0.40887900530001275,13.19854406347666,13.19854406347666,18.709663241197106,18.709663241197106,19.026922927506305,19.026922927506305,16.556753575851616,16.556753575851616,6.710962802999461,6.710962802999461,12.603112008701942,17.418914484835454,16.39046932359645,15.985829267548212,7.363094807306581,12.502462830379415,17.854331709085884,16.609999651000052,16.098523177442942,8.484279441139094,182.39581539589108,182.39581539589108,0.0,202.66201710654565,0.0,182.39581539589108,202.66201710654565,0,0
+2017/01/30 11:00:00,212.89007711224758,0,1431.7046146658697,0,0,0,0.0,0.0,16.903073633821148,0.0,133.89528835348938,0,39.380909295966944,0.7273537569996956,18.551476869516094,0,0,407.9476606142913,562.3823713885049,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1307.1313239154838,0.0,2391.713016937641,0.0,738.541460976171,0.0,0.0,0.0,3778.2570030766647,0.0,8925.977584440983,0.0,6899.862985257748,0.0,8395.389831750294,0.0,8759.94871576217,0.0,2828.7208566174177,0.0,8599.676227695185,0.0,6444.552528320942,0.0,7952.970599851178,0.0,15861.686176511043,0,0,0,0,0,0,0,0,0.07622501415796369,0.00241170631474012,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5171838373679437,-0.5171838373679437,-0.7761554054689395,-0.7761554054689395,-0.776858453049907,-0.776858453049907,-0.7352667610432518,-0.7352667610432518,-0.22844952245827613,-0.22844952245827613,-0.5179688126491412,-0.766150044855815,-0.7305742487288627,-0.7301098254972553,-0.3556772270806752,-0.4951217750689272,-0.776017398056171,-0.7345978646819359,-0.7340444802826641,-0.41816822004842363,10.59341971513804,10.59341971513804,17.694171456073207,17.694171456073207,17.717383434157057,17.717383434157057,16.38050471113607,16.38050471113607,6.082800067459118,6.082800067459118,10.610553394434064,17.366115307802886,16.234326897673583,16.21991097639689,7.632557539016261,10.122768850492236,17.689617443537415,16.359609910915495,16.342337968714347,8.645402172878832,212.89007711224758,212.89007711224758,0.0,236.54453012471953,0.0,212.89007711224758,236.54453012471953,0,0
+2017/01/30 12:00:00,228.4969895440501,0,1368.905719697573,0,0,0,0.0,0.0,16.86091082671979,0.0,147.76209134187457,0,39.380909295966944,0.44262032385369443,20.618482553180712,0,0,254.64020072099416,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,309.69547258515263,0.0,832.0468093797258,0.0,89.27014280529622,0.0,0.0,0.0,3331.537594615861,0.0,7374.255310190447,0.0,7583.1063836840385,0.0,7133.186858940693,0.0,0.0,0.0,2405.429844089517,0.0,7005.40169736519,0.0,7083.166604442504,0.0,6719.750632353234,0.0,3770.2493764427063,0,0,0,0,0,0,0,0,0.07288155447429141,0.00230592158093238,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.30963400553358256,-0.30963400553358256,-0.7345262320551439,-0.7345262320551439,-0.733319660363599,-0.733319660363599,-0.7194014690311116,-0.7194014690311116,-0.12685095284089717,-0.12685095284089717,-0.42261856934039804,-0.7385447933397136,-0.7081411018633565,-0.7226094039168856,-0.33997698795243236,-0.376519882860178,-0.7408307884786712,-0.7064246970794752,-0.7239181133056729,-0.39037436277198606,6.992705951204783,6.992705951204783,16.35737340992209,16.35737340992209,16.319735171834694,16.319735171834694,15.890091390934472,15.890091390934472,5.333333745508654,5.333333745508654,8.723904550274014,16.483180787696497,15.548595736851851,15.988378788809925,7.404262519917538,7.951838947235402,16.5550568162907,15.497022029085159,16.028603336207212,8.174323020140946,228.4969895440501,228.4969895440501,0.0,253.88554393783346,0.0,228.4969895440501,253.88554393783346,0,0
+2017/01/30 13:00:00,207.925158683088,0,1236.2128386952636,0,0,0,0.0,0.0,16.735683873587277,0.0,129.49988082968767,0,39.380909295966944,0.31905804689272094,18.5576514344991,0,0,194.70990176467362,562.383178011244,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,195.1440785788803,0.0,0.0,0.0,0.0,0.0,3289.4412284937907,0.0,5801.620520734745,0.0,8634.736726860177,0.0,6067.17773339329,0.0,0.0,0.0,2099.5760728612677,0.0,5337.651708243951,0.0,8065.4877312727895,0.0,5623.73003904413,0.0,0.0,0,0,0,0,0,0,0,0,0.06581688720322688,0.0020824004329552085,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.17531718561784282,-0.17531718561784282,-0.5959367524145524,-0.5959367524145524,-0.7120866378165659,-0.7120866378165659,-0.6835635733200129,-0.6835635733200129,-0.08587841152779792,-0.08587841152779792,-0.3574381960306686,-0.6662173040042091,-0.6810301364238788,-0.6926294935188841,-0.31973671965870504,-0.3009515382222588,-0.6560433609404289,-0.6739935659902078,-0.687807314719191,-0.3579546984094799,5.63711618301862,5.63711618301862,12.445383634949835,12.445383634949835,15.667630970887942,15.667630970887942,14.822230502187608,14.822230502187608,5.152718663633394,5.152718663633394,7.6588175114604695,14.325298179003866,14.748841210533016,15.087127879179278,7.125399584735945,6.882118358933283,14.039898801971773,14.546460521410111,14.94578620679276,7.666544749339948,207.925158683088,207.925158683088,0.0,231.02795409232,0.0,207.925158683088,231.02795409232,0,0
+2017/01/30 14:00:00,205.4482049819185,0,1214.145983366563,0,0,0,0.0,0.0,16.840460073948062,0.0,129.2730206906943,0,39.380909295966944,0.28628860442170884,16.23555111443315,0,0,209.14003393101441,561.3765430287469,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,470.2072693243715,0.0,0.0,0.0,0.0,0.0,3587.840940601547,0.0,5944.712359135815,0.0,8145.203494243116,0.0,6343.752474487699,0.0,0.0,0.0,2427.237111987256,0.0,5403.466522231114,0.0,7493.70440393644,0.0,5847.323896037791,0.0,0.0,0,0,0,0,0,0,0,0,0.06464203148046001,0.002045228816828858,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3960415780043749,-0.3960415780043749,-0.5910841450788064,-0.5910841450788064,-0.7139271770537868,-0.7139271770537868,-0.6971882715580425,-0.6971882715580425,-0.1031433959099254,-0.1031433959099254,-0.4113475321701529,-0.6414085780448856,-0.6756226102696128,-0.6860374202170169,-0.3188125509860452,-0.3744102737754418,-0.6287235876862672,-0.6715216465884689,-0.6840424022392213,-0.35539663693654283,8.267693999838272,8.267693999838272,12.323492405782389,12.323492405782389,15.72338883865963,15.72338883865963,15.221672946036946,15.221672946036946,5.22032813533545,5.22032813533545,8.526735694129272,13.637231582883558,14.593123310507835,14.89416141980719,7.1130814828060664,7.918680280166541,13.295725990098276,14.475873571061356,14.836132538662497,7.6283855052622584,205.4482049819185,205.4482049819185,0.0,228.27578331324278,0.0,205.4482049819185,228.27578331324278,0,0
+2017/01/30 15:00:00,189.74358267678753,0,1317.5148923757288,0,0,0,0.0,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,0.5933070037935905,14.08205952917972,0,0,368.73552935471736,540.6403091267539,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1377.450205715495,0.0,531.6824072354007,0.0,0.0,0.0,2692.306051897027,0.0,6757.754896449895,0.0,7147.181000651093,0.0,7594.343810616108,0.0,1911.3432293562785,0.0,1628.863106239367,0.0,6186.263241673425,0.0,6533.109849555818,0.0,7121.306947641366,0.0,7814.859298119705,0,0,0,0,0,0,0,0,0.07014546876214801,0.0022193537362092306,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4878181260006775,-0.4878181260006775,-0.5176126359575735,-0.5176126359575735,-0.7283684433054587,-0.7283684433054587,-0.7189174389422248,-0.7189174389422248,-0.16218196566362025,-0.16218196566362025,-0.41472889938974833,-0.595292874435773,-0.6824599807117521,-0.6971047436794086,-0.3347553815413232,-0.38355024298623386,-0.5733931028023217,-0.6818127203296136,-0.6987299350269515,-0.37585680066860216,9.971593623446395,9.971593623446395,10.60277581097776,10.60277581097776,16.165940199308608,16.165940199308608,15.875299740118862,15.875299740118862,5.545118839967358,5.545118839967358,8.585315606403327,12.429151446897919,14.790227206582003,15.219199681185287,7.330657194435702,8.063712645773052,11.887769813243679,14.771481683710718,15.267375777606759,7.94139621475604,189.74358267678753,189.74358267678753,0.0,210.82620297420834,0.0,189.74358267678753,210.82620297420834,0,0
+2017/01/30 16:00:00,183.45175493674512,0,1303.3175742701872,0,0,0,0.0,0.0,17.14544752438053,0.0,108.75639138185811,0,39.380909295966944,0.6652842298900359,14.071747302195227,0,0,354.5377306202548,540.640789755675,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1486.1291112475278,0.0,586.0635500372138,0.0,0.0,0.0,2020.1697483176943,0.0,7066.2001270600085,0.0,5814.979068603693,0.0,8036.315536362567,0.0,9141.295081448796,0.0,1379.245521783964,0.0,6644.2295115055,0.0,5515.258851117369,0.0,7768.312820973886,0.0,14253.394597450273,0,0,0,0,0,0,0,0,0.0693895930301608,0.002195438354938004,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5543787897990428,-0.5543787897990428,-0.4860573529174732,-0.4860573529174732,-0.7416143454030576,-0.7416143454030576,-0.7318740006089861,-0.7318740006089861,-0.20435712421277916,-0.20435712421277916,-0.46348347777986487,-0.6023232880019261,-0.6971201452129493,-0.7192966213544963,-0.3583121979410186,-0.4480759909526883,-0.5849346564944498,-0.7015228228968838,-0.7260212342868593,-0.40298774611114213,11.434594467560231,11.434594467560231,9.935492646711637,9.935492646711637,16.579744939225876,16.579744939225876,16.274721102437468,16.274721102437468,5.866074288390351,5.866074288390351,9.484510053018909,12.607362786932,15.219655698742812,15.886886456840585,7.67189984390312,9.189303904172064,12.170493298157226,15.350432665214143,16.093399326370246,8.384009982174504,183.45175493674512,183.45175493674512,0.0,203.83528326305012,0.0,183.45175493674512,203.83528326305012,0,0
+2017/01/30 17:00:00,208.02805352230115,0,1350.57287421399,0,0,0,0.0,0.0,18.897825586318167,0.0,131.64086955684016,0,39.380909295966944,0.6635986252486357,14.012875255472935,0,0,348.54602434858026,540.6522672023358,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1185.7112359574855,0.0,409.53652741152115,0.0,0.0,0.0,3209.0244169846965,0.0,7329.607340729815,0.0,6261.988428262031,0.0,8038.514514505231,0.0,7292.21850344161,0.0,2700.9587685111187,0.0,6957.24173045244,0.0,5988.900317708985,0.0,7790.2910255042525,0.0,12663.297404912271,0,0,0,0,0,0,0,0,0.07190550020148458,0.002275039904106723,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5624408547803748,-0.5624408547803748,-0.5541645341449369,-0.5541645341449369,-0.7358012779343002,-0.7358012779343002,-0.7286568769275552,-0.7286568769275552,-0.16762875260535706,-0.16762875260535706,-0.5084952627225557,-0.6466507187562452,-0.7062343497908539,-0.7338778078545625,-0.36781183533193407,-0.5068559550792195,-0.6442464854206797,-0.7140760554998916,-0.7448250355175035,-0.41409298086440705,11.624825987809203,11.624825987809203,11.42957736055672,11.42957736055672,16.39721561637849,16.39721561637849,16.17487063306683,16.17487063306683,5.582394176128119,5.582394176128119,10.40555422074381,13.780398580716863,15.491310392528149,16.337138454530248,7.816191806376736,10.37047498594265,13.714589139523866,15.7279053907465,16.68118164220826,8.574261342141455,208.02805352230115,208.02805352230115,0.0,231.1422816914457,0.0,208.02805352230115,231.1422816914457,0,0
+2017/01/30 18:00:00,234.8520111756107,0,1345.7805254740867,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.6355711537259747,18.579104878956887,0,0,322.0274342561038,562.378508554909,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,778.0610703518734,0.0,207.49449911986355,0.0,0.0,0.0,4711.44786007748,0.0,6898.11978123109,0.0,7360.158472992814,0.0,7389.68524406166,0.0,1935.030682024153,0.0,4557.177896894342,0.0,6756.242085046168,0.0,7368.225013866662,0.0,7337.034709735244,0.0,6425.858687374829,0,0,0,0,0,0,0,0,0.07165035200484747,0.0022669671930180897,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5665260223138111,-0.5665260223138111,-0.5945865083902161,-0.5945865083902161,-0.7290452373473468,-0.7290452373473468,-0.7288088198686451,-0.7288088198686451,-0.12283739722142505,-0.12283739722142505,-0.522483207469051,-0.6688073480127152,-0.6996354008443926,-0.7286638282180754,-0.35443239406435556,-0.5285760404959725,-0.6748814938271398,-0.7087575151104063,-0.7411297319472895,-0.40055231850291095,11.7222951123032,11.7222951123032,12.411364629191041,12.411364629191041,16.186900634428,16.186900634428,16.17957650364417,16.17957650364417,5.31256031305179,5.31256031305179,10.709606824233376,14.398670056066564,15.294266275875444,16.175085901910407,7.614073929193751,10.844692459776468,14.571880328829081,15.567148435412875,16.56447274725103,8.342992912945064,234.8520111756107,234.8520111756107,0.0,260.94667908401186,0.0,234.8520111756107,260.94667908401186,0,0
+2017/01/30 19:00:00,220.401691612582,0,1338.7644324131477,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.6274784407501393,27.0977424753112,0,0,313.224794717929,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1064.8417261720374,0.0,412.29399754086324,0.0,0.0,0.0,7366.48731635249,0.0,6658.157164649579,0.0,9777.954745525085,0.0,7053.139097468998,0.0,0.0,0.0,7243.139807393559,0.0,6547.407472480315,0.0,9768.943473816811,0.0,6992.765716602515,0.0,0.0,0,0,0,0,0,0,0,0,0.07127681001341617,0.00225514858478945,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.585452807868813,-0.585452807868813,-0.6333797534027675,-0.6333797534027675,-0.728524543432994,-0.728524543432994,-0.731654835658958,-0.731654835658958,-0.10050490402456258,-0.10050490402456258,-0.5251517271230989,-0.6620185548251096,-0.6889071583619163,-0.7150963607654877,-0.3302510979105407,-0.5360964016743281,-0.6711807435128383,-0.6993886027071524,-0.728611786708592,-0.37310704304912684,12.183321577447046,12.183321577447046,13.420268558182912,13.420268558182912,16.17077290133456,16.17077290133456,16.267904717889436,16.267904717889436,5.209194979515445,5.209194979515445,10.76857341983397,14.20697146350986,14.977934979442807,15.758884276094875,7.268093386490179,11.013644508717775,14.46615965994603,15.28693336265188,16.17347432131986,7.898291065772483,220.401691612582,220.401691612582,0.0,244.89076845842445,0.0,220.401691612582,244.89076845842445,0,0
+2017/01/30 20:00:00,211.13785352829947,0,1297.9810336155344,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.6081756820577713,27.0977424753112,0,0,307.9317484328599,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1206.160157599045,0.0,512.8934699263507,0.0,0.0,0.0,7279.149760456721,0.0,6529.270002816494,0.0,9512.407526691524,0.0,6873.621257821338,0.0,0.0,0.0,7195.878532809645,0.0,6447.802779148142,0.0,9518.623663119246,0.0,6824.279176396068,0.0,0.0,0,0,0,0,0,0,0,0,0.06910547165289586,0.0021864489526102777,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6046449110298066,-0.6046449110298066,-0.6726272718888088,-0.6726272718888088,-0.7348025818461559,-0.7348025818461559,-0.7387263597229735,-0.7387263597229735,-0.12187887271858024,-0.12187887271858024,-0.5294936590268999,-0.6578716875872592,-0.6822554464023429,-0.7059913679387416,-0.32007404112803994,-0.5451509929372963,-0.6702498619734703,-0.6943488696701509,-0.7208597398836429,-0.3611997666384929,12.666683908425796,12.666683908425796,14.507412585038068,14.507412585038068,16.36600276846268,16.36600276846268,16.48888138000889,16.48888138000889,5.307698219681072,5.307698219681072,10.865176444617973,14.090856466522752,14.784301662283426,15.484021653271256,7.129904706642876,11.220314996458029,14.439660150044546,15.137767084356014,15.93471619577926,7.715353100444318,211.13785352829947,211.13785352829947,0.0,234.59761503144387,0.0,211.13785352829947,234.59761503144387,0,0
+2017/01/30 21:00:00,212.70390005182614,0,1153.0110713948113,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.28463037057318863,24.515540515095648,0,0,198.45213872468113,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,360.271162488786,0.0,1701.8265847842715,0.0,834.7883632750783,0.0,0.0,0.0,7692.966192250734,0.0,6741.679492149622,0.0,9796.855623335949,0.0,7043.155352020536,0.0,0.0,0.0,7476.787151212865,0.0,6567.469771597162,0.0,9640.297348575845,0.0,6883.636089468676,0.0,0.0,0,0,0,0,0,0,0,0,0.06138716348404708,0.0019422470622525035,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6559310163481188,-0.6559310163481188,-0.7067033753347529,-0.7067033753347529,-0.7487082255455809,-0.7487082255455809,-0.7515346846335198,-0.7515346846335198,-0.16110170993172662,-0.16110170993172662,-0.5351998132849495,-0.6561383495940627,-0.679020054986739,-0.7000825320623467,-0.31163712943822347,-0.5537900611408704,-0.6706578112451977,-0.691922056465946,-0.715523172828848,-0.3506360992458432,14.036772346954407,14.036772346954407,15.505386978889291,15.505386978889291,16.804455449624015,16.804455449624015,16.89458909425339,16.89458909425339,5.5378730304365575,5.5378730304365575,10.993373197839588,14.042542682628863,14.690810141968058,15.307558221282164,7.018672370334912,11.42081331088481,14.451268670176532,15.066329472830361,15.771856607934112,7.558112684931544,212.70390005182614,212.70390005182614,0.0,236.33766672425125,0.0,212.70390005182614,236.33766672425125,0,0
+2017/01/30 22:00:00,199.69338032392415,0,1381.560166008987,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.6997003979934344,27.0977424753112,0,0,462.49158585140077,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,656.8835189842345,0.0,798.8473876215108,0.0,2311.6406261958628,0.0,1220.5705428467675,0.0,0.0,0.0,5966.80083542542,0.0,7564.793453849962,0.0,7941.986439628523,0.0,7853.633495878021,0.0,3459.388700630553,0.0,5870.68134741082,0.0,7469.340941061384,0.0,7891.203315522927,0.0,7762.9694658957,0.0,8425.30140622511,0,0,0,0,0,0,0,0,0.07355528656914383,0.0023272379947835,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7075489272217552,-0.7075489272217552,-0.7396202114673747,-0.7396202114673747,-0.7707395853075546,-0.7707395853075546,-0.7713996729034921,-0.7713996729034921,-0.23970370767802182,-0.23970370767802182,-0.5502976822645966,-0.6694352867834655,-0.6860220884999269,-0.7097664303117002,-0.32637033560129114,-0.5740813696234445,-0.6876573930665475,-0.7015882921828339,-0.7276560564956285,-0.3689412904510642,15.530788000289007,15.530788000289007,16.516966039666542,16.516966039666542,17.51606741441499,17.51606741441499,17.537708080664785,17.537708080664785,6.192376554419312,6.192376554419312,11.339371486220102,14.416502324273281,14.893714811564891,15.59754994575519,7.2148805556446405,11.904467638094829,14.941407999694235,15.352383676443296,16.14389872673334,7.83360308789841,199.69338032392415,199.69338032392415,0.0,221.88153369324905,0.0,199.69338032392415,221.88153369324905,0,0
+2017/01/30 23:00:00,141.00816442470907,0,1208.368173016548,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.7742639789285808,21.04896763800427,0,0,449.0061791654106,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2371.3874423844154,0.0,1794.7729756836256,0.0,3768.028899696161,0.0,2116.1494194100906,0.0,0.0,0.0,5430.13626973735,0.0,8027.416250185266,0.0,7313.121918575024,0.0,8302.100823414636,0.0,9678.055744683817,0.0,5357.154785014381,0.0,7954.443697332919,0.0,7290.063121863908,0.0,8230.938046551793,0.0,14747.652732202074,0,0,0,0,0,0,0,0,0.06433441657776255,0.0020354960957327858,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7911949798204296,-0.7911949798204296,-0.8141641526445641,-0.8141641526445641,-0.8458941828738294,-0.8458941828738294,-0.8386855082069467,-0.8386855082069467,-0.4746724065431793,-0.4746724065431793,-0.5721534760985489,-0.691493377869853,-0.7008865888081307,-0.7277786238811969,-0.35592322708854673,-0.6014178454018716,-0.7131702251621135,-0.7192991335744345,-0.7486257622500448,-0.40284357041417246,18.195306552822487,18.195306552822487,18.979167281298317,18.979167281298317,20.098529592323672,20.098529592323672,19.840524390993167,19.840524390993167,9.70529701958445,9.70529701958445,11.85774746023452,15.053736991259257,15.331482266794112,16.147689445906792,7.636218016193567,12.584290711627105,15.700439827722974,15.88696324365408,16.80183089524874,8.381574730692677,141.00816442470907,141.00816442470907,0.0,156.67573824967673,0.0,141.00816442470907,156.67573824967673,0,0
+2017/01/31 00:00:00,91.60745121333498,0,1098.0226454759606,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.8777049572566498,11.786789994785769,0,0,526.0390068827215,518.748109824423,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4007.146862826524,0.0,2721.389712037709,0.0,5142.247136419242,0.0,2969.9234725976444,0.0,0.0,0.0,5042.661810921171,0.0,8710.658812792683,0.0,6869.965919381378,0.0,8976.92550216806,0.0,16693.630485723545,0.0,4998.476101905335,0.0,8694.4720004211,0.0,6918.249254020861,0.0,8952.554882818069,0.0,21728.065360815905,0,0,0,0,0,0,0,0,0.0584595389578338,0.00184961906296575,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8725982265916874,-0.8725982265916874,-0.8911000466816259,-0.8911000466816259,-0.9310888415901545,-0.9310888415901545,-0.9147691899414886,-0.9147691899414886,-0.6316852340909455,-0.6316852340909455,-0.5987288552796526,-0.7178218931351747,-0.7204330766014759,-0.7507829970371549,-0.3895447696522085,-0.6344929109163804,-0.7429290058331686,-0.7415450378584562,-0.7741264486525634,-0.44021737376380493,21.07310492531731,21.07310492531731,21.765580692668067,21.765580692668067,23.30981245035727,23.30981245035727,22.671808955464286,22.671808955464286,13.374834895167723,13.374834895167723,12.515980837645259,15.841857819704401,15.921650321966183,16.87058494595604,8.160770132070908,13.450182467326044,16.621226112795796,16.577560151858435,17.62730100288445,9.042666170465253,91.60745121333498,91.60745121333498,0.0,101.78605690370553,0.0,91.60745121333498,101.78605690370553,0,0
+2017/01/31 01:00:00,39.72668990297281,0,655.8113705145755,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.23128352264629776,0.1584282110352997,9.53965717286804,0,0,86.17940872486254,516.3964330208968,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.393657170085724,0.0,314.13627064226125,0.0,751.2533001344726,0.0,517.9400115568671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03491588313005022,0.001104714203856564,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8825463060692044,-0.8825463060692044,-0.9014085510429101,-0.9014085510429101,-0.9393555851235974,-0.9393555851235974,-0.9266158020602595,-0.9266158020602595,-0.3013554344857825,-0.3013554344857825,-0.8219983608553101,-0.9977949222046351,-1.016165206460367,-1.049249088058818,-0.18100966332114363,-0.8512007768398727,-1.02251644764051,-1.0419186885788503,-1.0760717690596087,-0.30976480729221634,21.443691540308976,21.443691540308976,22.15747140950522,22.15747140950522,23.63705640541629,23.63705640541629,23.13388072768177,23.13388072768177,6.88719202539275,6.88719202539275,19.251614043335877,26.026895587498217,26.805232449111685,28.2386402573963,5.679221258667482,20.2898412051442,27.07727575080918,27.917578129979418,29.42988717620956,6.994396346180494,39.72668990297281,39.72668990297281,0.0,44.14076655885867,0.0,39.72668990297281,44.14076655885867,0,0
+2017/01/31 02:00:00,23.722219428111508,0,39.42167249276578,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251240044337167,0,0,0.0,3.9313199802216428,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0020988390434104765,6.640580432200975e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9436344396872152,-0.9436344396872152,-1.0241943352170344,-1.0241943352170344,-1.0926449488824215,-1.0926449488824215,-1.0947384915383775,-1.0947384915383775,-0.13325394259271325,-0.13325394259271325,-0.8717923317540025,-1.1055337865451913,-1.1595966491877596,-1.1912643478877272,-0.11507681834609898,-0.9684562848974446,-1.1925582567205382,-1.2468631817434221,-1.2809469052368396,-0.2985483629603491,23.80750385813124,23.80750385813124,27.149395536234834,27.149395536234834,30.178599318574967,30.178599318574967,30.273853100075442,30.273853100075442,5.367861040534848,5.367861040534848,21.04326189277647,30.767401865895778,33.297116695608025,34.82164594750245,5.274291842542311,24.81050891861635,34.884574828933054,37.568307490711845,39.292448963388,6.852072741007788,23.722219428111508,23.722219428111508,0.0,26.358021586790564,0.0,23.722219428111508,26.358021586790564,0,0
+2017/01/31 03:00:00,28.344400145432314,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250370589594191,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0034982165749886,-1.0034982165749886,-1.0906409703381676,-1.0906409703381676,-1.153668370721596,-1.153668370721596,-1.1603235662126636,-1.1603235662126636,-0.030305413290986277,-0.030305413290986277,-0.9796820912048956,-1.2272516312601442,-1.28461987209346,-1.314790574993877,-0.08232548866367648,-1.0780392114716975,-1.3194820394897402,-1.3819642317887806,-1.4133959178350877,-0.31687647272973707,26.267177431633257,26.267177431633257,30.087561689835482,30.087561689835482,33.015135487503926,33.015135487503926,33.331768294749295,33.331768294749295,5.019012497418402,5.019012497418402,25.27201977930015,36.5897509774495,39.479937993045596,41.031666477981055,5.140339905936358,29.518268346066407,41.27474625223635,44.55300068662785,46.2270487763434,7.0873931096144815,28.344400145432314,28.344400145432314,0.0,31.493777939369238,0.0,28.344400145432314,31.493777939369238,0,0
+2017/01/31 04:00:00,23.77463706696435,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5775416432865542,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0648615884770216,-1.0648615884770216,-1.1567005287761243,-1.1567005287761243,-1.2169083568806203,-1.2169083568806203,-1.227393647420025,-1.227393647420025,-0.015733605873974463,-0.015733605873974463,-1.0314120843541266,-1.2837624798395115,-1.345133225771907,-1.3758012402836113,-0.07165327386948239,-1.1576487956490356,-1.405831844139756,-1.4712354459461467,-1.50393480028261,-0.32627276204002725,28.928905756375215,28.928905756375215,33.15922417025196,33.15922417025196,36.07783829779537,36.07783829779537,36.59680010293547,36.59680010293547,5.0051243902802725,5.0051243902802725,27.460821240101737,39.43614342676112,42.61175756550246,44.22654184737174,5.106304778156698,33.20434504376132,45.82287378066368,49.34033544944818,51.11392522987642,7.213550864208457,23.77463706696435,23.77463706696435,0.0,26.416263407738164,0.0,23.77463706696435,26.416263407738164,0,0
+2017/01/31 05:00:00,44.00393643705947,0,393.02523902256763,0,0,0,0.0,0.022646619193644576,4.633261998087618,9.319298099999997,25.555573451546493,0,2.3529574158005775,1.5951231653168072,0.5250756871143026,0,0,304.2993577412073,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1705638555936654,983.6281499347928,0.16185075648112007,982.5776461199279,1.5182693269136203,1838.7486958104973,0.4003326232004648,1243.759697001104,0.0,0.0,2.6862195063222694,3127.054966371171,2.380568269497227,2797.9661227951433,2.398924123745777,4925.0497358607345,2.220392701462894,3179.142309868602,0.0,0.0,3.7597794665979336,3883.9121099777576,1.8168368249345879,3256.30406980449,3.1443971681564253,5745.195712774383,1.988484570738592,3616.6755947138704,0.0,0.0,0,0,0,0,0,0,0,0,0.020924954841976214,0.0006620509853034053,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9248631159197112,-0.9248631159197112,-0.9588170872133694,-0.9588170872133694,-0.9883112235261957,-0.9883112235261957,-0.9880869691497287,-0.9880869691497287,0.1345064244347419,0.1345064244347419,-0.7463183839141122,-0.8671643220434231,-0.879767027992407,-0.9059165276694283,-0.03503153937948807,-0.8196766017378666,-0.9405782311853516,-0.9484737522928878,-0.9797317424309092,-0.30858393573271375,23.065163026836686,23.065163026836686,24.41813635414168,24.41813635414168,25.63008328785881,25.63008328785881,25.62074173104729,25.62074173104729,5.3748142735275195,5.3748142735275195,16.728512249398804,20.872400787988312,21.339748444442336,22.330205112652067,5.025405234440569,19.170602039805786,23.685686223411665,24.00115036929033,25.274071847803498,6.979161787929584,44.00393643705947,44.00393643705947,0.0,48.89326270784386,0.0,44.00393643705947,48.89326270784386,0,0
+2017/01/31 06:00:00,77.09568855254379,0,367.9657884186218,0,0,0,0.054598151197604146,0.019856449896806676,5.555297838843742,9.319298099999997,57.911447091112116,0,2.2053551247427565,1.504743855644395,0.5250919411063454,0,0,155.02367334335702,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,173.25893185380582,0.0,0.0,0.0,0.0,0.0,0.0,342.17434071700933,0.0,432.63662524708525,0.0,817.2810181940476,0.0,604.6031844556271,0.0,0.0,2.4656755461592184,2805.8726526541323,1.7174803395764684,2622.5559397143843,3.330657378076694,4696.227983909719,2.2710064191523998,2983.2966493919707,0.0,0.0,2.687628120159502,3439.167604232073,2.022825709745689,2975.503068127093,2.9021227537919003,5288.943785727871,2.4590536301448083,3333.699266330225,0.0,0.0,0,0,0,0,0,0,0,0,0.019590771130120012,0.0006198383426630386,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8221919446182101,-0.8221919446182101,-0.8560548078127156,-0.8560548078127156,-0.8782677085394737,-0.8782677085394737,-0.8797183779845926,-0.8797183779845926,0.45738112957065535,0.45738112957065535,-0.7048349741837348,-0.7971252460202278,-0.8032098606506078,-0.8258287511564749,0.07778254004659846,-0.7404642847764873,-0.8281439424420042,-0.8237593451949093,-0.8521488008938408,-0.2148259021038304,19.25837890036938,19.25837890036938,20.46586233029312,20.46586233029312,21.283806562326646,21.283806562326646,21.337931790002344,21.337931790002344,9.366367520925536,9.366367520925536,15.44936815484219,18.395549306981536,18.602551831302648,19.385761032052912,5.125274507675101,16.543518148537927,19.46714170981879,19.313210282808583,20.324142378892333,5.957260311048188,77.09568855254379,77.09568855254379,0.0,85.6618761694931,0.0,77.09568855254379,85.6618761694931,0,0
+2017/01/31 07:00:00,102.76700753600909,0,860.7128803778276,0,0,0,0.0,0.014222082504030823,11.110595677687485,13.929299233552332,73.80580873715317,0,2.073698899975367,1.3083557910588626,0.5250271140778392,0,0,124.28652429035994,505.7390647559309,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.69830286072181,0.0,259.4676824719285,0.0,495.8702314925394,0.0,382.6950505440865,0.0,0.0,2.167577571159957,2407.6155876073626,1.4862431279023745,2226.3554214698443,2.592898997625222,3948.2675726860725,1.2944729947589622,2511.494030629389,0.0,0.0,1.6089292072403318,2741.2909501444165,1.4078853218223533,2346.0334007271185,2.2670104149422814,4130.815715420182,1.3970648685793396,2602.4214629717485,0.0,0.0,0,0,0,0,0,0,0,0,0.04582499128708412,0.0014498707816694508,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7488485799405413,-0.7488485799405413,-0.7857465551905968,-0.7857465551905968,-0.8037117181385641,-0.8037117181385641,-0.809246751635687,-0.809246751635687,0.7082346263691748,0.7082346263691748,-0.688828834037418,-0.774105597555339,-0.778989314033941,-0.8004576349769544,0.1439482363064244,-0.7176936202675326,-0.7988494615835775,-0.7924279625834194,-0.8200434483304093,-0.10599754906449835,16.808923170500606,16.808923170500606,18.012648671056127,18.012648671056127,18.619695255832994,18.619695255832994,18.809477536871157,18.809477536871157,15.551409566668951,15.551409566668951,14.975643805829819,17.62661470184713,17.78786496892478,18.50872530207964,5.429331627653227,15.837945625783888,18.454049153956873,18.23681697421516,19.183387162473423,5.232696713641317,102.76700753600909,102.76700753600909,0.0,114.18556392889899,0.0,102.76700753600909,114.18556392889899,0,0
+2017/01/31 08:00:00,165.06831511816844,0,1193.0318674229059,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.38090929596693,0.805872480198801,27.075648286382325,0,0,327.1988160341357,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3725.7232782401734,0.0,2412.117601874585,0.0,4446.568771944017,0.0,2576.3632963343143,0.0,0.0,0.0,7124.122405198359,0.0,8800.561209160758,0.0,8780.261398635552,0.0,9016.190321873648,0.0,9392.623209698118,0.0,7441.835399122177,0.0,8891.14936857853,0.0,8935.301504571029,0.0,9050.307711255784,0.0,13285.825872332465,0,0,0,0,0,0,0,0,0.06351790030825326,0.002009662090124302,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7994782008608046,-0.7994782008608046,-0.8267450985208116,-0.8267450985208116,-0.8514216684850643,-0.8514216684850643,-0.8483233423654363,-0.8483233423654363,0.04923296796272031,0.04923296796272031,-0.6839153648266751,-0.7712965133308385,-0.7650555490221331,-0.7939135344460782,-0.23297841948932102,-0.7125743060990224,-0.7957604922158921,-0.7800952799489812,-0.814345823577435,-0.34048509256489023,18.47541257564977,18.47541257564977,19.417944428547443,19.417944428547443,20.297830114575717,20.297830114575717,20.185959425886878,20.185959425886878,5.05018109080703,5.05018109080703,14.832443243035797,17.534324817003224,17.330488056632305,18.286916858602225,6.126256656965836,15.682390328003677,18.349334681522095,17.824522687761444,18.98545590883667,7.411486738194583,165.06831511816844,165.06831511816844,0.0,183.40923902018716,0.0,165.06831511816844,183.40923902018716,0,0
+2017/01/31 09:00:00,167.2172662213708,0,1418.5300316988485,0,0,0,0.0,0.0,13.241940483893973,0.0,83.2008179303116,0,39.380909295966944,0.8638808334328233,27.0977424753112,0,0,499.4614515412623,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4032.902668744792,0.0,2673.938526933537,0.0,4817.882073662556,0.0,2800.5795298067824,0.0,0.0,0.0,8278.057131422394,0.0,9620.428739263114,0.0,9897.79056138492,0.0,9764.697743877636,0.0,5234.499778648703,0.0,7990.910633798067,0.0,9348.104995726682,0.0,9455.247282300228,0.0,9397.6249755102,0.0,14759.174366185085,0,0,0,0,0,0,0,0,0.07552358960229803,0.0023895137307321066,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8055891127071367,-0.8055891127071367,-0.832436692167713,-0.832436692167713,-0.8567759978062055,-0.8567759978062055,-0.8462771339431931,-0.8462771339431931,-0.2632818995780044,-0.2632818995780044,-0.681305602568504,-0.7707037812763328,-0.7620649852846868,-0.7879362764614042,-0.32077315406815377,-0.7076956116814501,-0.79395082501378,-0.7758755352837949,-0.806441016262715,-0.3991282452587901,18.683921342665556,18.683921342665556,19.618629639954207,19.618629639954207,20.492098206418007,20.492098206418007,20.112296376862332,20.112296376862332,6.439196384838439,6.439196384838439,14.756807537851671,17.51489412702975,17.233402197438778,18.085907384590683,7.139257114913988,15.535197651722058,18.28817566099019,17.68493705606069,18.713114270271475,8.319126490500096,167.2172662213708,167.2172662213708,0.0,185.79696246818978,0.0,167.2172662213708,185.79696246818978,0,0
+2017/01/31 10:00:00,182.7527117830933,0,1437.0962328274188,0,0,0,0.0,0.0,11.698532510417394,0.0,106.27511244621549,0,39.380909295966944,0.7940061518397095,21.172176176199553,0,0,464.79212390101634,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1605.9014384316722,0.0,1998.4623536580282,0.0,3733.5330019373478,0.0,1778.8272089276384,0.0,0.0,0.0,6467.766995348986,0.0,9047.289048983435,0.0,8972.285019348154,0.0,8846.536432786315,0.0,5642.291475149905,0.0,6088.7582138175585,0.0,8869.715498186586,0.0,8675.439145934717,0.0,8522.196322339882,0.0,13602.75961447244,0,0,0,0,0,0,0,0,0.07651206790249207,0.002420788495124032,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7052981038239852,-0.7052981038239852,-0.8262875686198369,-0.8262875686198369,-0.8474880597146366,-0.8474880597146366,-0.7999150880593698,-0.7999150880593698,-0.2739315126640016,-0.2739315126640016,-0.613946079680333,-0.7617296767696848,-0.7510590218938877,-0.7521359758081351,-0.33471235255012166,-0.6269526883828562,-0.781265446352622,-0.7605660007992329,-0.7616051060006536,-0.40769003489732525,15.463239773630036,15.463239773630036,19.401870936465357,19.401870936465357,20.155868380304085,20.155868380304085,18.49026706306418,18.49026706306418,6.558347095898597,6.558347095898597,12.906689346155858,17.22254053885935,16.879396623075692,16.913807950015297,7.330055454388315,13.248605085521007,17.863365017602547,17.184882818130447,17.218506538182922,8.463923433085213,182.7527117830933,182.7527117830933,0.0,203.05856864788143,0.0,182.7527117830933,203.05856864788143,0,0
+2017/01/31 11:00:00,212.9574631517165,0,1466.6823066914333,0,0,0,0.0,0.0,16.903073633821148,0.0,133.89528835348938,0,39.380909295966944,0.7770635492835374,18.56915311670117,0,0,442.91216758987713,562.3955564384826,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1343.1899796086059,0.0,2635.4913881364755,0.0,1118.0283317724288,0.0,0.0,0.0,4158.194896650559,0.0,9045.323333827484,0.0,7007.778546883459,0.0,8873.769577927535,0.0,10444.198898414015,0.0,3526.4260380103933,0.0,8831.948127168454,0.0,6677.318337854085,0.0,8530.88360476507,0.0,17309.5653700257,0,0,0,0,0,0,0,0,0.07808725238961436,0.0024706262343024204,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5628929736342496,-0.5628929736342496,-0.7840697236396541,-0.7840697236396541,-0.7959826966851414,-0.7959826966851414,-0.7694620019530953,-0.7694620019530953,-0.21438217450405728,-0.21438217450405728,-0.5528434830177127,-0.7529555371571923,-0.737955611501404,-0.7467590031346896,-0.3528302421861159,-0.5536081600140905,-0.7672271403754719,-0.7429374363112409,-0.7531058932723325,-0.4159744456713503,11.635577594610282,11.635577594610282,17.956686769562353,17.956686769562353,18.35685380890699,18.35685380890699,17.47423521912758,17.47423521912758,5.953302196987664,5.953302196987664,11.398686997391763,16.940028225936473,16.46469214614072,16.742495624216247,7.590381802860534,11.416558347338793,17.401226079300883,16.621492356932976,16.94484169980298,8.607017333225244,212.9574631517165,212.9574631517165,0.0,236.61940350190721,0.0,212.9574631517165,236.61940350190721,0,0
+2017/01/31 12:00:00,228.7428204623177,0,1415.1552365822258,0,0,0,0.0,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.5328828695284874,20.669274725412734,0,0,300.8897176056471,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,367.2494722832989,0.0,1065.4322846902528,0.0,350.67862085313016,0.0,0.0,0.0,5797.970219493808,0.0,7540.645341973194,0.0,7929.138603833368,0.0,7508.192615260577,0.0,0.0,0.0,5334.979499387508,0.0,7245.226857928032,0.0,7479.6232840471885,0.0,7124.362738305771,0.0,4962.650237551308,0,0,0,0,0,0,0,0,0.0753439130105558,0.0023838288886142986,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.616533473504044,-0.616533473504044,-0.7433915416816437,-0.7433915416816437,-0.7491382303154036,-0.7491382303154036,-0.7440158598356468,-0.7440158598356468,-0.1126335244438125,-0.1126335244438125,-0.5809875022282275,-0.7290611198643239,-0.7148769709527643,-0.7337474766614842,-0.3389937159245847,-0.5868949913230181,-0.739368751290919,-0.7168688274746577,-0.7391492178899566,-0.3943483904373021,12.974121417806728,12.974121417806728,16.635838028098362,16.635838028098362,16.8181459062762,16.8181459062762,16.65557533953428,16.65557533953428,5.26276157637561,5.26276157637561,12.073152923800833,16.18739275539282,15.752219295972864,16.333073473231977,7.390313529709218,12.219088185384734,16.509061739952756,15.812807200961089,16.50216323276949,8.239653824882609,228.7428204623177,228.7428204623177,0.0,254.15868940257522,0.0,228.7428204623177,254.15868940257522,0,0
+2017/01/31 13:00:00,208.32134144718253,0,1385.954864759883,0,0,0,0.0,0.0,16.903073550514318,0.0,129.49988082968767,0,39.380909295966944,0.5919097460692558,18.513592822490033,0,0,344.43044696379417,562.4046588767433,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,414.3653474201006,0.0,1197.586913740465,0.0,489.9791306322387,0.0,0.0,0.0,8340.185816715513,0.0,7192.866871871311,0.0,10298.067000058429,0.0,7268.859474173059,0.0,0.0,0.0,7670.77141409494,0.0,6696.930441664148,0.0,9581.007477201787,0.0,6732.474149749688,0.0,0.0,0,0,0,0,0,0,0,0,0.07378926358582422,0.0023346408644958332,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5977089787331935,-0.5977089787331935,-0.7260270384770325,-0.7260270384770325,-0.7314359575432711,-0.7314359575432711,-0.7319634670400128,-0.7319634670400128,-0.06535366023167144,-0.06535366023167144,-0.5633679253612859,-0.698891725695747,-0.6946169873274051,-0.7122523864349186,-0.3173600880916784,-0.5661695442224897,-0.7045003536265942,-0.694862856232833,-0.7163056523790711,-0.3642561579604593,12.490154445154118,12.490154445154118,16.09357841354708,16.09357841354708,16.261099314610846,16.261099314610846,16.277504246517424,16.277504246517424,5.0884308488846415,5.0884308488846415,11.646881726365393,15.272178034944034,15.145675217480957,15.672646228911546,7.093794960166264,11.71376097902288,15.43935138751489,15.152929852875133,15.795659319070381,7.761733718376846,208.32134144718253,208.32134144718253,0.0,231.46815716353615,0.0,208.32134144718253,231.46815716353615,0,0
+2017/01/31 14:00:00,205.55921467024945,0,1273.8319824313933,0,0,0,0.0,0.0,16.735683873587277,0.0,129.2730206906943,0,39.380909295966944,0.43737592552314203,16.300249682023434,0,0,268.8189035738917,561.3836724507004,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,978.9016021230807,0.0,342.6264571770563,0.0,0.0,0.0,6587.591935314841,0.0,6715.97418738723,0.0,9010.987246990693,0.0,7126.973685375179,0.0,0.0,0.0,6119.974944480873,0.0,6315.069399017837,0.0,8540.274222319666,0.0,6760.844029507179,0.0,386.4309008594758,0,0,0,0,0,0,0,0,0.06781975828048899,0.0021457698777234743,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.541612200626384,-0.541612200626384,-0.6620281732985054,-0.6620281732985054,-0.7233064868158201,-0.7233064868158201,-0.7244650068965617,-0.7244650068965617,-0.08213896297658628,-0.08213896297658628,-0.5155734280058276,-0.6511918055736838,-0.6813158150305139,-0.698571552394845,-0.31550021987609506,-0.5054196187062456,-0.647122374066482,-0.6798758307063142,-0.7006772283462828,-0.3568826579763389,11.139119420493486,11.139119420493486,14.207241653085717,14.207241653085717,16.009795184505776,16.009795184505776,16.045434515502293,16.045434515502293,5.139704496287109,5.139704496287109,10.55835270833326,13.90538237054848,14.757102939656505,15.26267577206788,7.069229198715362,10.339834590556407,13.793338286994342,14.715495027956678,15.325250231592662,7.650518948627379,205.55921467024945,205.55921467024945,0.0,228.39912741138826,0.0,205.55921467024945,228.39912741138826,0,0
+2017/01/31 15:00:00,189.97314726794133,0,1353.2799015192,0,0,0,0.0,0.0,16.903073467207488,0.0,115.5196477718057,0,39.380909295966944,0.6989700348587872,14.03857149564813,0,0,404.46340674410976,540.6774408808325,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,179.52751318865876,0.0,1906.964096916986,0.0,937.3415885476265,0.0,0.0,0.0,5515.870386690412,0.0,7805.954394434428,0.0,7771.949121675648,0.0,8285.747060690399,0.0,4464.361655229173,0.0,4940.8806639867125,0.0,7343.015089103897,0.0,7241.860056135519,0.0,7870.677777466697,0.0,10570.256217831808,0,0,0,0,0,0,0,0,0.07204962434032713,0.0022795998913968897,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5928047662275369,-0.5928047662275369,-0.6768233145024183,-0.6768233145024183,-0.7419009837194337,-0.7419009837194337,-0.7425078966446346,-0.7425078966446346,-0.14273857472031973,-0.14273857472031973,-0.5451301510614921,-0.6597121302753852,-0.6954041468823136,-0.7150456713510894,-0.33189616476386213,-0.5468691341646448,-0.6613864735170748,-0.699871056959148,-0.7223555612093203,-0.3767395345108899,12.366595247681644,12.366595247681644,14.627590130305435,14.627590130305435,16.588782850754484,16.588782850754484,16.60793088238239,16.60793088238239,5.422139796303085,5.422139796303085,11.219835202832826,14.142298110238443,15.168910437514711,15.757344166497887,7.290843300875011,11.259932475196322,14.189224647592738,15.301270589378163,15.980585203573824,7.9553023279879795,189.97314726794133,189.97314726794133,0.0,211.08127474215704,0.0,189.97314726794133,211.08127474215704,0,0
+2017/01/31 16:00:00,183.5484267051345,0,1391.8959637518585,0,0,0,0.0,0.0,17.13658730515559,0.0,108.75639138185811,0,39.380909295966944,0.8000439030904726,14.042519616609068,0,0,443.0798018226397,540.6771080349616,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,406.3550944031028,0.0,407.66346017511927,0.0,2334.8257315485985,0.0,1217.4740589694127,0.0,0.0,0.0,4684.623204518524,0.0,8535.1752224707,0.0,6706.849050165656,0.0,9077.835129256091,0.0,12572.33423033855,0.0,4289.711858637076,0.0,8189.4085834890075,0.0,6385.359287922903,0.0,8794.534425502157,0.0,18285.314911160825,0,0,0,0,0,0,0,0,0.0741055720967686,0.002344648645296893,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.650507175628375,-0.650507175628375,-0.6890639290353711,-0.6890639290353711,-0.7525377393606479,-0.7525377393606479,-0.7530080235927924,-0.7530080235927924,-0.18205901499993465,-0.18205901499993465,-0.5708273607745116,-0.6708937826887925,-0.7075500351389914,-0.731427993381251,-0.3523309792400346,-0.5825028687630541,-0.6762425027919233,-0.7159722879963153,-0.7425072912356369,-0.40011066722876204,13.88648215258084,13.88648215258084,14.982521692678944,14.982521692678944,16.926658002606274,16.926658002606274,16.941708407381597,16.941708407381597,5.687130570754633,5.687130570754633,11.825704254371075,14.457986713937856,15.53082130319413,16.2608517300733,7.583021176276375,12.110443272533885,14.610909847452959,15.785515284497237,16.607911773926645,8.335581880314436,183.5484267051345,183.5484267051345,0.0,203.94269633903832,0.0,183.5484267051345,203.94269633903832,0,0
+2017/01/31 17:00:00,208.71803149185786,0,1440.2540293005295,0,0,0,0.0,0.0,19.397240690900343,0.0,131.64086955684016,0,39.380909295966944,0.782182821784055,14.084853923912053,0,0,438.2026713729319,540.6767752645238,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,583.5054932803567,0.0,514.3310637321094,0.0,2063.7777950158043,0.0,1022.5116185026327,0.0,0.0,0.0,5498.211388511141,0.0,8635.956313616667,0.0,7279.690774520567,0.0,9020.714185860601,0.0,10082.741069427568,0.0,5070.197548851738,0.0,8288.930909174107,0.0,6908.679927475826,0.0,8698.31963625768,0.0,16235.722214773774,0,0,0,0,0,0,0,0,0.07668019132572139,0.0024261078030433153,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6806871644200162,-0.6806871644200162,-0.7112840569437472,-0.7112840569437472,-0.7482069141626563,-0.7482069141626563,-0.746901334057453,-0.746901334057453,-0.14469264769773776,-0.14469264769773776,-0.5993326919571039,-0.7013299934419842,-0.7172064191745949,-0.7425080496912456,-0.35939124572032877,-0.621234179810191,-0.7154571997728215,-0.7285944083643215,-0.7564650815743816,-0.4080775999208037,14.738927238801793,14.738927238801793,15.6433630527562,15.6433630527562,16.7885047404733,16.7885047404733,16.74701437880296,16.74701437880296,5.433787669905811,5.433787669905811,12.531293105048263,15.344687344289568,15.823092938261382,16.607935712977763,7.688096227332707,13.097373532917757,15.769850940033024,16.172936188340458,17.052634429674654,8.470552168065836,208.71803149185786,208.71803149185786,0.0,231.90892387984206,0.0,208.71803149185786,231.90892387984206,0,0
+2017/01/31 18:00:00,234.85500632419755,0,1429.202284338386,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.7361207881081093,18.48155039316156,0,0,405.429964509139,562.3977371661734,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,600.0121405892553,0.0,620.4999732548604,0.0,1843.9936931018367,0.0,924.6040663394655,0.0,0.0,0.0,7283.501877939488,0.0,8235.621813052538,0.0,8906.97612511621,0.0,8486.825390272743,0.0,3108.976082948358,0.0,6870.874952678658,0.0,7936.403978424007,0.0,8529.404634695638,0.0,8168.565333423323,0.0,9301.250683582884,0,0,0,0,0,0,0,0,0.07609178823783569,0.002407491139493397,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6936033505273344,-0.6936033505273344,-0.7263736082898961,-0.7263736082898961,-0.7451895124920139,-0.7451895124920139,-0.7483470978701559,-0.7483470978701559,-0.10203315986670487,-0.10203315986670487,-0.604638319266585,-0.7083585181895146,-0.7118700468137205,-0.7389054261883111,-0.3482618723042066,-0.6291652976542403,-0.7249729051911298,-0.7228979688732786,-0.7534390689736914,-0.3960781259511061,15.115794311602542,15.115794311602542,16.10427438533516,16.10427438533516,16.69272465907089,16.69272465907089,16.79296401654298,16.79296401654298,5.2156082579111995,5.2156082579111995,12.666515147347155,15.555137625065413,15.661079097597636,16.494504869016453,7.523425751795145,13.307500414258868,16.061077102042518,15.997241799280118,16.95551137538162,8.268300606807031,234.85500632419755,234.85500632419755,0.0,260.95000702688617,0.0,234.85500632419755,260.95000702688617,0,0
+2017/01/31 19:00:00,220.40790488096744,0,1371.1406612926753,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.6336917091355923,27.0977424753112,0,0,345.6010235974566,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,384.4151567580357,0.0,464.1342250330376,0.0,1464.2138034477405,0.0,703.2240651855697,0.0,0.0,0.0,8824.6326336773,0.0,7160.084143927454,0.0,10301.690260732828,0.0,7359.322386225937,0.0,0.0,0.0,8483.456666680762,0.0,6907.683878852702,0.0,9960.68494152124,0.0,7072.052418255589,0.0,0.0,0,0,0,0,0,0,0,0,0.07300054442025079,0.0023096863398797,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7019981738216532,-0.7019981738216532,-0.7313699859302175,-0.7313699859302175,-0.7446688823959484,-0.7446688823959484,-0.7493936667044102,-0.7493936667044102,-0.08816279907730536,-0.08816279907730536,-0.5975908581180339,-0.6942453830898958,-0.6973999756631252,-0.7217863381748618,-0.32653807090416936,-0.622479901555851,-0.7103690055097606,-0.7074629499202221,-0.7351891708356162,-0.36941092641017426,15.364602519946857,15.364602519946857,16.259048515502442,16.259048515502442,16.676238002387592,16.676238002387592,16.826282219574395,16.826282219574395,5.1609542829686035,5.1609542829686035,12.487166187016925,15.134715577182405,15.227942865184616,15.963118761828497,7.217167325439178,13.130196976070309,15.615728200458179,15.528203768423154,16.37807998429686,7.84085883609518,220.40790488096744,220.40790488096744,0.0,244.8976720899638,0.0,220.40790488096744,244.8976720899638,0,0
+2017/01/31 20:00:00,211.20238380295183,0,1358.6013334111751,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.6727059567101473,27.0977424753112,0,0,368.5520482285008,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1122.7361458643675,0.0,901.8379176151359,0.0,2087.2352364070507,0.0,1100.7287838206905,0.0,0.0,0.0,9440.352057814103,0.0,7559.485894604902,0.0,10837.308111731036,0.0,7722.729870087113,0.0,0.0,0.0,8978.526123617045,0.0,7226.816994215879,0.0,10362.134286877976,0.0,7346.617166336799,0.0,267.6800581628781,0,0,0,0,0,0,0,0,0.07233294131587598,0.0022885638430150323,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7184039438441504,-0.7184039438441504,-0.7454180891265539,-0.7454180891265539,-0.7565442189775758,-0.7565442189775758,-0.760600834105124,-0.760600834105124,-0.11135843796811762,-0.11135843796811762,-0.5998774631764274,-0.6905569398419008,-0.6940606768199742,-0.7153595614501269,-0.3166794250977327,-0.6267679165730721,-0.7080389697901337,-0.70511097042329,-0.7295474782063405,-0.3572814281976143,15.859618686216038,15.859618686216038,16.699966606517165,16.699966606517165,17.055179684762663,17.055179684762663,17.186009218598286,17.186009218598286,5.256842732465159,5.256842732465159,12.545121151943277,15.026256639540179,15.129270296034576,15.76688295039493,7.0847875356598,13.243696431277257,15.545523365912643,15.457633656120166,16.202467855677043,7.656474401260468,211.20238380295183,211.20238380295183,0.0,234.66931533661312,0.0,211.20238380295183,234.66931533661312,0,0
+2017/01/31 21:00:00,212.94125675022627,0,1280.1310524638068,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.5179326343527708,24.51959494971624,0,0,325.5721197936762,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1424.3004955471495,0.0,1054.8691928129724,0.0,2290.6828820515557,0.0,1231.6177752277251,0.0,0.0,0.0,9383.601294129612,0.0,7501.339473156262,0.0,10705.420989209675,0.0,7645.786636611109,0.0,0.0,0.0,9000.399455150404,0.0,7221.390214169216,0.0,10299.48773693949,0.0,7315.489597139683,0.0,274.45890393663615,0,0,0,0,0,0,0,0,0.06815512543477784,0.002156380660714983,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7352844049196117,-0.7352844049196117,-0.7595276800378674,-0.7595276800378674,-0.7704572408343597,-0.7704572408343597,-0.7732110795280239,-0.7732110795280239,-0.15288958523487253,-0.15288958523487253,-0.6016570022215445,-0.6868922369020871,-0.6907160204445808,-0.7099087025467427,-0.3092961481899507,-0.6300178129380437,-0.7050229509066873,-0.7023296105523488,-0.7244254648264902,-0.3482368117575195,16.38105612582727,16.38105612582727,17.151330577045968,17.151330577045968,17.506816554728005,17.506816554728005,17.59718963651133,17.59718963651133,5.484380251716303,5.484380251716303,12.590381338670596,14.919078048119715,15.030922286031853,15.601840547531197,6.988343058370106,13.330249388837615,15.45499730159311,15.37448817089242,16.044217138440416,7.523060901214251,212.94125675022627,212.94125675022627,0.0,236.6013963891403,0.0,212.94125675022627,236.6013963891403,0,0
+2017/01/31 22:00:00,199.46830854843782,0,1249.8709698036753,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.47462862250710786,27.0977424753112,0,0,330.8023896460891,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1366.0313584875857,0.0,983.8692835841032,0.0,2152.629548710079,0.0,1143.614265670637,0.0,0.0,0.0,6515.801696754803,0.0,7402.881777222048,0.0,7793.34125535523,0.0,7536.278290269751,0.0,0.0,0.0,6265.633348045356,0.0,7208.907321967008,0.0,7512.555979662522,0.0,7289.386631667197,0.0,5544.015390013044,0,0,0,0,0,0,0,0,0.06654405622010748,0.002105407553770693,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7529075648523468,-0.7529075648523468,-0.7744311059553168,-0.7744311059553168,-0.7861267886146547,-0.7861267886146547,-0.7870270378726025,-0.7870270378726025,-0.23738864193178255,-0.23738864193178255,-0.6079168673264659,-0.6925967206412204,-0.6921579854110581,-0.7136579628075449,-0.3239543059866564,-0.6386431194549846,-0.7123297883610759,-0.705210984960347,-0.7294694337895574,-0.3664285539415516,16.938492652763728,16.938492652763728,17.63733072320035,17.63733072320035,18.0253550446255,18.0253550446255,18.055463424855773,18.055463424855773,6.169401618696668,6.169401618696668,12.750684704938834,15.086163890166745,15.073263299518132,15.715224063059054,7.182074688363173,13.562184894625815,15.674988678965022,15.460629690355006,16.200048116006386,7.794941700632535,199.46830854843782,199.46830854843782,0.0,221.63145394270867,0.0,199.46830854843782,221.63145394270867,0,0
+2017/01/31 23:00:00,140.8789114190223,0,1165.6293061104252,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.6387248162645366,21.055253794981535,0,0,406.2673122592874,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2307.868633222465,0.0,1525.9380122598986,0.0,3005.422400896172,0.0,1665.8036481868646,0.0,0.0,0.0,5212.998137029647,0.0,7169.837395725364,0.0,6507.191693786668,0.0,7297.81158891795,0.0,3927.546586185388,0.0,5154.981969401891,0.0,7065.7779179367935,0.0,6358.929356780231,0.0,7137.508286262047,0.0,9201.437303745812,0,0,0,0,0,0,0,0,0.062058967646716943,0.0019635024776732475,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8166647578128652,-0.8166647578128652,-0.8338188141607136,-0.8338188141607136,-0.8506625663613374,-0.8506625663613374,-0.8459593822138133,-0.8459593822138133,-0.4748326929350831,-0.4748326929350831,-0.6193973689201633,-0.7017347892435941,-0.6975190758772472,-0.7211336134271412,-0.3501148050221854,-0.6520409719788889,-0.7237987992377404,-0.7127220283461765,-0.7391702261339137,-0.3958533110233311,19.065849064181705,19.065849064181705,19.66756795019974,19.66756795019974,20.2703844306848,20.2703844306848,20.100873024936732,20.100873024936732,9.708499096496638,9.708499096496638,13.049098369150883,15.356750018306158,15.231471038649545,15.94310726043436,7.550476151054198,13.92885308899092,16.024933040493636,15.686863187789683,16.502823295758773,8.264570131118433,140.8789114190223,140.8789114190223,0.0,156.53212379891366,0.0,140.8789114190223,156.53212379891366,0,0
+2017/02/01 00:00:00,91.3898725154562,0,946.6871192117183,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.6232036285930481,11.823712625570572,0,0,374.66448983332975,518.7871006095722,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2930.60338083039,0.0,1869.8450468441877,0.0,3537.7636105435136,0.0,1987.6973439335593,0.0,0.0,0.0,4094.7511165249566,0.0,6852.7323758358625,0.0,5369.47084369338,0.0,6973.726022411393,0.0,7146.117019309134,0.0,4183.293030154444,0.0,6823.599298554369,0.0,5333.163224537829,0.0,6886.589395663322,0.0,11976.48594785762,0,0,0,0,0,0,0,0,0.05040232344429233,0.0015946943804598056,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8796896592983068,-0.8796896592983068,-0.8924935692289653,-0.8924935692289653,-0.9160620733037818,-0.9160620733037818,-0.9046311271866884,-0.9046311271866884,-0.5550001851495437,-0.5550001851495437,-0.6286889382933223,-0.7077145933225313,-0.701330900499319,-0.7257660200622783,-0.3769357580985721,-0.6619933461371892,-0.731071141613292,-0.7175803720766047,-0.7450309817530286,-0.42438954916120236,21.33685944258444,21.33685944258444,21.8183041458054,21.8183041458054,22.721963040846006,22.721963040846006,22.280868001916573,22.280868001916573,11.449156597822437,11.449156597822437,13.294802717995182,15.535768348631464,15.344714366152132,16.085526173103815,7.958398045171407,14.206263353032412,16.24976095881344,15.83449225846789,16.68770327714462,8.75538018806536,91.3898725154562,91.3898725154562,0.0,101.54430279495134,0.0,91.3898725154562,101.54430279495134,0,0
+2017/02/01 01:00:00,39.55051448973291,0,619.9474653477969,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.12846064372984514,0.08811674840407714,9.536616101175795,0,0,50.27441962868278,516.437516950298,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,139.84008312872814,0.0,281.9080269732604,0.0,219.8301173204377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033006462254337274,0.0010443014583251492,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8707531425585687,-0.8707531425585687,-0.8902713637291642,-0.8902713637291642,-0.9108847000192095,-0.9108847000192095,-0.902018437085404,-0.902018437085404,-0.23894517493755052,-0.23894517493755052,-0.831914902384354,-0.9318450787650798,-0.9380787699029619,-0.9624424545326431,-0.16655326250212274,-0.8554140101575969,-0.9494722923413147,-0.9474588168002961,-0.9747898822203533,-0.28518401762819323,21.004819256034736,21.004819256034736,21.734265336227324,21.734265336227324,22.521525616492255,22.521525616492255,22.18079240596181,22.18079240596181,6.184824016725301,6.184824016725301,19.600174851961484,23.339635427192434,23.586335398130757,24.565284623130054,5.574936001112405,20.442569117969356,24.04122235201187,23.960460746674684,25.070293230089305,6.689437165980266,39.55051448973291,39.55051448973291,0.0,43.94501609970323,0.0,39.55051448973291,43.94501609970323,0,0
+2017/02/01 02:00:00,23.722221539746155,0,40.06217849951367,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251261160683633,0,0,0.0,4.571825986969538,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0021329400576368036,6.748473664176299e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8895699187482735,-0.8895699187482735,-0.9399068126644848,-0.9399068126644848,-0.9660143232379034,-0.9660143232379034,-0.968561192668667,-0.968561192668667,-0.09946898634623103,-0.09946898634623103,-0.8650367780589112,-1.0114216304511106,-1.0367993207765873,-1.057205345835873,-0.10041206180360855,-0.9406958745324134,-1.0714593712032472,-1.0859556091994416,-1.1101758543852676,-0.2682898835618542,21.707780130018435,21.707780130018435,23.658973718361025,23.658973718361025,24.710763714572565,24.710763714572565,24.814799217381292,24.814799217381292,5.204902917225837,5.204902917225837,20.794150772655797,26.603033600963997,27.694516960444574,28.589313049535917,5.208808494002184,23.690368526212453,29.22322260231661,29.875253565145172,30.980845845562627,6.494631987512236,23.722221539746155,23.722221539746155,0.0,26.35802393305128,0.0,23.722221539746155,26.35802393305128,0,0
+2017/02/01 03:00:00,28.34439922530013,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250361388272361,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8521579726331358,-0.8521579726331358,-0.907391017873633,-0.907391017873633,-0.932986895924265,-0.932986895924265,-0.9377355819501626,-0.9377355819501626,-0.021915842519946344,-0.021915842519946344,-0.8565049099766024,-1.0111001777526456,-1.0411106667023078,-1.0601433726931733,-0.07784608483289308,-0.9550762064730164,-1.0942651101866456,-1.112660820112652,-1.1357060544531512,-0.25205174825043924,20.324474410939857,20.324474410939857,22.38688240074174,22.38688240074174,23.384707362149086,23.384707362149086,23.572713427634397,23.572713427634397,5.009942750618535,5.009942750618535,20.482233882381948,26.589361937475246,27.882307373221437,28.719381722141037,5.125479333750846,24.266839351854173,30.25230163596322,31.0954030389033,32.16753589330034,6.31872242345618,28.34439922530013,28.34439922530013,0.0,31.493776917000144,0.0,28.34439922530013,31.493776917000144,0,0
+2017/02/01 04:00:00,23.722198001490707,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251025778129165,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8199181510230403,-0.8199181510230403,-0.8766239752739998,-0.8766239752739998,-0.9006938972465354,-0.9006938972465354,-0.9072731057227431,-0.9072731057227431,0.01837619413569984,0.01837619413569984,-0.8359461833760777,-0.9909845043232853,-1.025148930513616,-1.0413366290209873,-0.05617828105965442,-0.9517721794672691,-1.093748304375796,-1.1161273844981567,-1.1377476008342104,-0.23249411520929814,19.179019737694404,19.179019737694404,21.222582497109016,21.222582497109016,22.130163490605824,22.130163490605824,22.382346789192965,22.382346789192965,5.0069903442498855,5.0069903442498855,19.743050254193307,25.74158990931751,27.190473043803905,27.89216839871301,5.065340009484331,24.133667659756398,30.228781976797194,31.255556971988725,32.2633516191287,6.121568473748283,23.722198001490707,23.722198001490707,0.0,26.35799777943412,0.0,23.722198001490707,26.35799777943412,0,0
+2017/02/01 05:00:00,42.22395503939207,0,317.0719787271303,0,0,0,0.0,0.009542217749271713,4.633261998087618,9.319298099999997,25.555573451546493,0,1.2612031233283958,0.9200162972244474,0.5250598514558241,0,0,228.34609744577,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.128012594763474,0.0,18.79997835087855,0.0,25.60535960519768,0.0,0.0,0.4660916978220939,1555.9985127806033,1.1558259584141979,1408.664469494296,1.8740918847632315,2482.0552151803777,0.9703144202068188,1560.5615679928965,0.0,0.0,1.7215317676857467,1983.0899912187783,0.5349744692097147,1612.1204267293672,2.233487329213517,2780.638594040109,0.5859002219563934,1741.0214907853824,0.0,0.0,0,0,0,0,0,0,0,0,0.016881147004760875,0.000534107724100496,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7325428170873459,-0.7325428170873459,-0.7908881047706167,-0.7908881047706167,-0.8102294968264658,-0.8102294968264658,-0.8159773155878086,-0.8159773155878086,0.16288090692658966,0.16288090692658966,-0.6329994317194426,-0.7075580260221632,-0.7149096634537893,-0.7297686766010971,-0.018841445848486016,-0.6992087765380414,-0.7737678373162781,-0.7711832455052726,-0.7931096458975377,-0.1998254599614426,16.29553513808895,16.29553513808895,18.184985114409542,18.184985114409542,18.84330858826023,18.84330858826023,19.04199310009163,19.04199310009163,5.549832902360222,5.549832902360222,13.410060484341201,15.531061502870202,15.753212350384658,16.20932745688286,5.007348796373861,15.281591989365552,17.615500111873914,17.530610561534075,18.259794655870593,5.828024539438843,42.22395503939207,42.22395503939207,0.0,46.91550559932452,0.0,42.22395503939207,46.91550559932452,0,0
+2017/02/01 06:00:00,73.36360871106437,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5775656811084955,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48830653203697083,-0.48830653203697083,-0.5513050889375258,-0.5513050889375258,-0.5644262921137393,-0.5644262921137393,-0.5808398455637659,-0.5808398455637659,0.4862096954225481,0.4862096954225481,-0.7033051877040587,-0.8156081088151815,-0.8358330123246626,-0.8505214218912152,0.09697288040618862,-0.7713122631502934,-0.8682004032251859,-0.8734651970275779,-0.8950918282563918,-0.06276927118542654,9.981631079091883,9.981631079091883,11.362809818853663,11.362809818853663,11.672106671603686,11.672106671603686,12.069524695827496,12.069524695827496,9.938610823536521,9.938610823536521,15.40361389413917,19.02918891512489,19.739030005407983,20.26528392930203,5.194743912263064,17.534841325194463,20.91057501948194,21.105239511022162,21.91681989078485,5.081573989933261,73.36360871106437,73.36360871106437,0.0,81.51512079007152,0.0,73.36360871106437,81.51512079007152,0,0
+2017/02/01 07:00:00,99.37075439777433,0,736.4668418712693,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.0,2.5202063364320037e-09,0.5250507468611495,0,0,0.0,505.77955053973244,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03921004016712593,0.0012405783392352677,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3283283996989456,-0.3283283996989456,-0.3938765189856945,-0.3938765189856945,-0.40532823264536544,-0.40532823264536544,-0.42415328017668863,-0.42415328017668863,0.73765206413338,0.73765206413338,-0.6800672082267262,-0.8132834366938703,-0.8372140005216313,-0.8542815108995577,0.20317817042079786,-0.7536922676890018,-0.871205210481475,-0.8771895150030481,-0.9031201925149518,0.04597010675142818,7.241649587742799,7.241649587742799,8.231861198966243,8.231861198966243,8.423667262897283,8.423667262897283,8.751173200316245,8.751173200316245,16.455172586867192,16.455172586867192,14.721019655206874,18.948700583211377,19.788124347903747,20.401444057468993,5.856092625095272,16.963623031846836,21.021537096613642,21.24363460267898,22.222959911815806,5.043749494773152,99.37075439777433,99.37075439777433,0.0,110.41194933086037,0.0,99.37075439777433,110.41194933086037,0,0
+2017/02/01 08:00:00,164.38329674400396,0,897.9172477545873,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.13603096978644608,27.06047142263016,0,0,32.084196365817235,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1660.3843717801751,0.0,3015.8442886586845,0.0,2306.193417214439,0.0,3024.2754529883405,0.0,1757.8849047579884,0.0,2043.436456815457,0.0,3212.318329859945,0.0,2820.6302006488854,0.0,3194.8585351080624,0.0,2443.2518109361104,0,0,0,0,0,0,0,0,0.047805779363745755,0.001512541535691839,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.43322824035773466,-0.43322824035773466,-0.48128195746359576,-0.48128195746359576,-0.517360657114474,-0.517360657114474,-0.4466966642051443,-0.4466966642051443,0.5121534610204551,0.5121534610204551,-0.5732380126234049,-0.6674045734264318,-0.6631762837125935,-0.6987968149547763,-0.01760548649437316,-0.6231634805972055,-0.707856484437261,-0.6879833333747477,-0.7349303442744152,-0.1255812357225607,8.9144823135277,8.9144823135277,9.838256665441634,9.838256665441634,10.59727683882592,10.59727683882592,9.163374260968155,9.163374260968155,10.484254303167575,10.484254303167575,11.884010056432757,14.35889559575989,14.239521659151663,15.269360765096764,5.006416274612064,13.148237170921334,15.540034900914236,14.950927772523968,16.369993414639268,5.3266895052206,164.38329674400396,164.38329674400396,0.0,182.64810749333773,0.0,164.38329674400396,182.64810749333773,0,0
+2017/02/01 09:00:00,169.07258634248674,0,963.1236612649623,0,0,0,0.0,0.0,15.864717049567478,0.0,83.2008179303116,0,39.380909295966944,0.09642438887528824,27.097742475311204,0,0,44.055081107376026,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1294.3425890072538,0.0,2972.7431463746225,0.0,2480.751613789074,0.0,3084.1176372213463,0.0,897.590651343622,0.0,1624.270351279114,0.0,3105.6029776628225,0.0,2648.0012147125144,0.0,3163.415187746425,0.0,638.4561595698252,0,0,0,0,0,0,0,0,0.05127741711786331,0.0016223817343009824,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5174244729287277,-0.5174244729287277,-0.49066288621692145,-0.49066288621692145,-0.5336984145800852,-0.5336984145800852,-0.3838739756492709,-0.3838739756492709,-0.0005230955722715228,-0.0005230955722715228,-0.5094651954422155,-0.5748820793478651,-0.5655283457491517,-0.5938899240336978,-0.20212131816287343,-0.5415918513201124,-0.5971933184044638,-0.5791274350710712,-0.6132843830593724,-0.2547751982351961,10.598669241164117,10.598669241164117,10.030202286814088,10.030202286814088,10.959505469842895,10.959505469842895,8.068915001457981,8.068915001457981,5.000005664256719,5.000005664256719,10.426364340819703,11.923919267261496,11.698424475082035,12.393845328471542,5.8471941658228985,11.138654086406575,12.47711353173807,12.02751635211682,12.889491010191833,6.347451540441028,169.07258634248674,169.07258634248674,0.0,187.8584292694297,0.0,169.07258634248674,187.8584292694297,0,0
+2017/02/01 10:00:00,183.42329298602186,0,1035.2280520444558,0,0,0,0.0,0.0,12.990833890274297,0.0,106.27511244621549,0,39.380909295966944,0.10774026202754555,21.236721889083345,0,0,62.92394311805331,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.8401813952833,0.0,3050.842574080988,0.0,2436.548945857374,0.0,3133.4600221575683,0.0,109.75650925846837,0.0,1538.526511811157,0.0,3050.440792112471,0.0,2408.967555930205,0.0,3071.800105498505,0.0,66.98920848334517,0,0,0,0,0,0,0,0,0.05511630829116649,0.001743841575096409,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5004065952498185,-0.5004065952498185,-0.44316422216582885,-0.44316422216582885,-0.5305514019485404,-0.5305514019485404,-0.3221310143977094,-0.3221310143977094,-0.17048223843789367,-0.17048223843789367,-0.4944757644072222,-0.5552433920965683,-0.5441836721721915,-0.5703005520564371,-0.22574132633679386,-0.521281714443967,-0.5716228844810974,-0.5542327600558206,-0.5834966006947583,-0.2693640047174491,10.233593886596239,10.233593886596239,9.097341724259877,9.097341724259877,10.88883365975228,10.88883365975228,7.1574811293483975,7.1574811293483975,5.602415952947268,5.602415952947268,10.109304475246063,11.45486060542683,11.198066477292528,11.812996036465293,6.057224864945184,10.683157915962013,11.844917506796605,11.43117475327631,12.134951262133683,6.506659482473353,183.42329298602186,183.42329298602186,0.0,203.80365887335762,0.0,183.42329298602186,203.80365887335762,0,0
+2017/02/01 11:00:00,212.9773656717887,0,1122.5348392530814,0,0,0,0.0,0.0,17.64441317879931,0.0,133.89528835348938,0,39.380909295966944,0.14342095982477157,18.481358681254004,0,0,98.74813327094297,562.4121233190648,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1208.8808193167986,0.0,3662.3507001276457,0.0,2208.3606015454297,0.0,3732.041011764969,0.0,59.57896746013559,0.0,1212.2346337868266,0.0,3595.4122230084076,0.0,2061.2020903155276,0.0,3587.425473654239,0.0,39.00096581672069,0,0,0,0,0,0,0,0,0.05976458631087305,0.001890909851522866,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42196988697946075,-0.42196988697946075,-0.4339592510571728,-0.4339592510571728,-0.4271465310794246,-0.4271465310794246,-0.2301396774862978,-0.2301396774862978,-0.12968135956299337,-0.12968135956299337,-0.48285358650489835,-0.5501202707794033,-0.5329118826193305,-0.5633622043802268,-0.24349803824074565,-0.5043280735160035,-0.5631813417020031,-0.5389366860414744,-0.5718839735369412,-0.2792481800439852,8.712409176341367,8.712409176341367,8.92779113039387,8.92779113039387,8.804647829283837,8.804647829283837,6.098917150606965,6.098917150606965,5.348386097738384,5.348386097738384,9.870149335008222,11.335248384888558,10.94180228305818,11.646745505423127,6.2305185676880654,10.316609033884149,11.642439758267557,11.078091469507356,11.851229235994637,6.619619996251529,212.9773656717887,212.9773656717887,0.0,236.64151741309854,0.0,212.9773656717887,236.64151741309854,0,0
+2017/02/01 12:00:00,228.8737249710459,0,1198.3247408967463,0,0,0,0.0,0.0,17.431039153748472,0.0,147.76209134187457,0,39.380909295966944,0.11880834301117159,20.748901633990332,0,0,84.05922192016729,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1470.0857551069635,0.0,2888.0533423086326,0.0,2375.832237423183,0.0,2951.7527529696044,0.0,3.964129057244191,0.0,1429.8594393914661,0.0,2804.8498875428286,0.0,2201.744800332057,0.0,2796.2662787624013,0.0,0.0,0,0,0,0,0,0,0,0,0.06379969681246718,0.0020185779350892635,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4113627250815742,-0.4113627250815742,-0.3538656228192152,-0.3538656228192152,-0.41224876191254084,-0.41224876191254084,-0.10376370274115608,-0.10376370274115608,-0.03814774139991772,-0.03814774139991772,-0.46791377494467723,-0.5351571852365637,-0.515830114308126,-0.5482246022796265,-0.23739294257866234,-0.4836432697476068,-0.5426487962453724,-0.5164271277776431,-0.5515264206634383,-0.2661621922408393,8.526997805548689,8.526997805548689,7.605680206714837,7.605680206714837,8.542301010239655,8.542301010239655,5.222987491059769,5.222987491059769,5.030126374165945,5.030126374165945,9.571286279616132,10.992410271031147,10.563934590796833,11.291277596494382,6.169444090122084,9.886214405979132,11.162847320181683,10.576928228702798,11.36796521929854,6.470950590100713,228.8737249710459,228.8737249710459,0.0,254.30413885671766,0.0,228.8737249710459,254.30413885671766,0,0
+2017/02/01 13:00:00,208.42462019830376,0,1090.563053804878,0,0,0,0.0,0.0,17.53932603856406,0.0,129.49988082968767,0,39.380909295966944,0.06345495610634973,18.509073875524436,0,0,49.026280338218754,562.4170145473133,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1793.294550833119,0.0,1960.2865561165274,0.0,2587.2901693158974,0.0,2005.036599102159,0.0,0.0,0.0,1668.3303589619204,0.0,1834.4753764375882,0.0,2352.8041989859157,0.0,1808.0339018757713,0.0,0.0,0,0,0,0,0,0,0,0,0.05806238477189609,0.0018370533813619853,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2861869173599814,-0.2861869173599814,-0.2896293667694614,-0.2896293667694614,-0.39043293549628155,-0.39043293549628155,-0.00575210404081646,-0.00575210404081646,0.0014642881347674522,0.0014642881347674522,-0.44819208460605253,-0.5094977091439676,-0.4944425631535003,-0.5221283308252292,-0.17779315185619504,-0.4592174464285145,-0.5126909736111178,-0.4905720104243696,-0.5208691097327112,-0.23996597906837477,6.701380064360052,6.701380064360052,6.7426970051426025,6.7426970051426025,8.175281021960984,8.175281021960984,5.000684912270017,5.000684912270017,5.000044384768998,5.000044384768998,9.191490054872858,10.427062634126614,10.108612970365016,10.70178829256588,5.655263752833136,9.401750281760329,10.495866763117732,10.028324632089763,10.674089507729065,6.1949935517326224,208.42462019830376,208.42462019830376,0.0,231.5829113314486,0.0,208.42462019830376,231.5829113314486,0,0
+2017/02/01 14:00:00,205.35836979169082,0,1062.2613352808926,0,0,0,0.0,0.0,16.903073550514318,0.0,129.2730206906943,0,39.380909295966944,0.06749867987469609,16.301892372186185,0,0,57.22930961311724,561.402619260974,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1630.8770912103946,0.0,2173.065697166242,0.0,2439.0561000657945,0.0,2263.700643304153,0.0,0.0,0.0,1375.9944119912968,0.0,1944.92031049416,0.0,2101.460737771731,0.0,1997.5916732062328,0.0,27.15725876530905,0,0,0,0,0,0,0,0,0.0565555803144075,0.0017893791386563952,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3214882649529231,-0.3214882649529231,-0.3570230833259824,-0.3570230833259824,-0.2883578117620872,-0.2883578117620872,0.04597033224513564,0.04597033224513564,-0.021845120440321757,-0.021845120440321757,-0.42229841630555964,-0.4848694169861311,-0.47961885164239876,-0.5045764998835734,-0.19341754730146446,-0.4241393065749024,-0.47991784644393914,-0.47123372684132453,-0.498718544528218,-0.24429803687588658,7.1488449671989684,7.1488449671989684,7.65261536549292,7.65261536549292,6.727377287556834,6.727377287556834,5.043749924017078,5.043749924017078,5.009878682583647,5.009878682583647,8.718228826327447,9.911212095748326,9.804623730071327,10.321890445356274,5.775686772826617,8.750924462419704,9.810661494785577,9.636868530911912,10.198063552472718,6.238637638762299,205.35836979169082,205.35836979169082,0.0,228.17596643521202,0.0,205.35836979169082,228.17596643521202,0,0
+2017/02/01 15:00:00,189.473015782388,0,1061.8813755499227,0,0,0,0.0,0.0,16.965686943773743,0.0,115.5196477718057,0,39.380909295966944,0.13246276634944973,14.042333802037914,0,0,113.04098425538541,540.7013374002797,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1222.6138388452368,0.0,3032.9856986642553,0.0,2081.6113401129683,0.0,3161.329207501014,0.0,121.7565900617175,0.0,1052.112967643207,0.0,2842.419373960378,0.0,1812.6023587898683,0.0,2939.5587163313758,0.0,0.0,0,0,0,0,0,0,0,0,0.05653535097689196,0.0017887390965184151,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.41575367116235423,-0.41575367116235423,-0.4150220817145497,-0.4150220817145497,-0.35964525577320294,-0.35964525577320294,0.038059792414579095,0.038059792414579095,-0.0850111938198962,-0.0850111938198962,-0.4268199480702831,-0.4890239810835444,-0.4853273209306172,-0.5151977932194317,-0.23507675335874378,-0.42831380296699334,-0.48244015787829314,-0.4785827293410141,-0.5104971494312976,-0.26673223249346,8.603165829064167,8.603165829064167,8.590417874005084,8.590417874005084,7.691916097677719,7.691916097677719,5.02998761356848,5.02998761356848,5.149648880735668,5.149648880735668,8.79879471792853,9.996394376294546,9.920564107389751,10.55018931804372,6.146682741247091,8.8256054155501,9.861749402646893,9.783730584787762,10.448549806421099,6.477276491771164,189.473015782388,189.473015782388,0.0,210.5255730915422,0.0,189.473015782388,210.5255730915422,0,0
+2017/02/01 16:00:00,184.9185529008426,0,1069.3570044121245,0,0,0,0.0,0.0,19.16534330549337,0.0,108.75639138185811,0,39.380909295966944,0.14645842447893836,14.037475290590907,0,0,120.51767081608122,540.7002797017857,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1389.1721768665298,0.0,3935.488532327325,0.0,2115.538405374232,0.0,4014.228889177629,0.0,11.821173301043906,0.0,1265.7929201103748,0.0,3776.396834672765,0.0,1916.7589071838074,0.0,3836.566964057066,0.0,0.0,0,0,0,0,0,0,0,0,0.05693335899476373,0.001801331792769404,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49755950679305677,-0.49755950679305677,-0.45663340874795494,-0.45663340874795494,-0.406511828186845,-0.406511828186845,0.0026610774593411072,0.0026610774593411072,-0.12805255431621804,-0.12805255431621804,-0.45967073263751207,-0.5324552051077894,-0.5087853602868119,-0.5471264163177294,-0.2614905132259059,-0.47200674919650876,-0.5376911189544119,-0.5091685442638848,-0.5494286986828885,-0.2911306899092912,10.173739248627157,10.173739248627157,9.35200177699204,9.35200177699204,8.443811420517477,8.443811420517477,5.000146587185469,5.000146587185469,5.339683278202415,5.339683278202415,9.410506691726624,10.931535723042145,10.411774064009464,11.265875987092784,6.419623149015294,9.652206981150243,11.049786130440125,10.419995306280029,11.319189046543372,6.760872866639957,184.9185529008426,184.9185529008426,0.0,205.465058778714,0.0,184.9185529008426,205.465058778714,0,0
+2017/02/01 17:00:00,212.53161423878373,0,1150.6319605090628,0,0,0,0.0,0.0,23.798027217215836,0.0,131.64086955684016,0,39.380909295966944,0.19209626628120463,14.087736700025209,0,0,148.5581602380633,540.6992176079259,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1391.5329698699384,0.0,3778.947306220688,0.0,2120.3510525475413,0.0,3833.976856377196,0.0,0.0,0.0,1307.3024591258227,0.0,3677.398033368548,0.0,1977.580511291244,0.0,3692.687184523505,0.0,0.0,0,0,0,0,0,0,0,0,0.06126049785826653,0.0019382394501460314,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4799156388951405,-0.4799156388951405,-0.3763214056682191,-0.3763214056682191,-0.44704562867052405,-0.44704562867052405,0.03725710244388507,0.03725710244388507,-0.08885950634824205,-0.08885950634824205,-0.46642512093082555,-0.5417512261430942,-0.512847814243724,-0.5549712742924353,-0.2697928707507949,-0.4801619656064899,-0.5475363683275595,-0.5138474208025645,-0.5581949774325319,-0.2977127945587059,9.81061690242015,9.81061690242015,7.9487112074107245,7.9487112074107245,9.169926631678464,9.169926631678464,5.028735982437112,5.028735982437112,5.163509117299938,5.163509117299938,9.542033682606416,11.142299041418738,10.499257514307828,11.448478713111726,6.5114752960775775,9.815593985593068,11.275352274847421,10.520893094953877,11.52428947516907,6.8416832739358,212.53161423878373,212.53161423878373,0.0,236.14623804309304,0.0,212.53161423878373,236.14623804309304,0,0
+2017/02/01 18:00:00,234.20076580310115,0,1142.5994543070804,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.16037008537912306,18.40306057479413,0,0,118.81318564517117,562.4116859988354,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2528.651249635828,0.0,3647.283137410005,0.0,3216.3210286770804,0.0,3695.395360021074,0.0,0.0,0.0,2285.181841253469,0.0,3444.8186677048407,0.0,2924.0739796493144,0.0,3455.2837790169733,0.0,0.0,0,0,0,0,0,0,0,0,0.06083284127834209,0.001924708694058449,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49346190752755614,-0.49346190752755614,-0.3433657679284017,-0.3433657679284017,-0.42338241926716974,-0.42338241926716974,0.036757542740215705,0.036757542740215705,-0.05061675415835686,-0.05061675415835686,-0.4709953735929929,-0.5423777027304917,-0.5158751762424107,-0.5550086848395447,-0.26163513659450466,-0.48481623967104664,-0.5487405220939223,-0.5167352654294862,-0.5587299946157919,-0.28745796557666475,10.088209665841688,10.088209665841688,7.4526514814516105,7.4526514814516105,8.73746396109621,8.73746396109621,5.0279704928669275,5.0279704928669275,5.0530419320432856,5.0530419320432856,9.632144277942501,11.156637434522253,10.564914798600725,11.449355900429154,6.421198335779451,9.910126614107313,11.303229135499521,10.583640691973613,11.536914895900338,6.716577172002786,234.20076580310115,234.20076580310115,0.0,260.2230731145568,0.0,234.20076580310115,260.2230731145568,0,0
+2017/02/01 19:00:00,219.89545100364464,0,1133.7605284263316,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.13571362695261763,27.08326668017135,0,0,108.22089073111263,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3445.076453675723,0.0,3021.483288007763,0.0,4079.9009286323485,0.0,3058.230486712936,0.0,0.0,0.0,3136.1501582235505,0.0,2777.960187877772,0.0,3723.7892016124274,0.0,2777.6620880171795,0.0,0.0,0,0,0,0,0,0,0,0,0.06036225031739971,0.001909819524083191,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5148068791246623,-0.5148068791246623,-0.35012286069058207,-0.35012286069058207,-0.42509751491803166,-0.42509751491803166,0.026671478011536652,0.026671478011536652,-0.041068286775421806,-0.041068286775421806,-0.46651415806584606,-0.5271493604779297,-0.5097805563942673,-0.5397921491147453,-0.24348375090724356,-0.47851673460770405,-0.5320071043638256,-0.5090922519885702,-0.5421260881699708,-0.26676675437487146,10.541700355377372,10.541700355377372,7.550594072080742,7.550594072080742,8.76800051228642,8.76800051228642,5.01472613833333,5.01472613833333,5.03491619285262,5.03491619285262,9.543780610230684,10.812917107033456,10.433139242943597,11.097570681969117,6.2303738119562695,9.782401386277186,10.921470756236118,10.41835794333008,11.150876598872529,6.477660030552812,219.89545100364464,219.89545100364464,0.0,244.32827889293847,0.0,219.89545100364464,244.32827889293847,0,0
+2017/02/01 20:00:00,210.64315426532158,0,1088.833459947437,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.11347641907990809,27.097742475311204,0,0,98.78417476476238,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3173.7070374800583,0.0,2844.023671790783,0.0,3780.884942102579,0.0,2865.407112483433,0.0,0.0,0.0,2996.429131962491,0.0,2673.9084244931037,0.0,3536.0944530056727,0.0,2658.96480354948,0.0,0.0,0,0,0,0,0,0,0,0,0.057970299913804216,0.0018341398806403994,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5410610011580953,-0.5410610011580953,-0.35735465385343607,-0.35735465385343607,-0.4349154152471882,-0.4349154152471882,0.020515389530356774,0.020515389530356774,-0.06870080905707135,-0.06870080905707135,-0.46426618895682104,-0.5173601061267304,-0.504926284315779,-0.529399747189885,-0.23838442155882406,-0.4763590950293533,-0.5227323527776296,-0.5050755002890137,-0.5321648223631484,-0.26155221273811097,11.126521305230938,11.126521305230938,7.6575687288771235,7.6575687288771235,8.945233742271427,8.945233742271427,5.00871261614455,5.00871261614455,5.09772290611744,5.09772290611744,9.499779519203813,10.597264817547654,10.329331197389095,10.863078377376567,6.179256253866967,9.739047878853142,10.715099172673348,10.33250698757766,10.925012330477301,6.420295050684132,210.64315426532158,210.64315426532158,0.0,234.04794918369063,0.0,210.64315426532158,234.04794918369063,0,0
+2017/02/01 21:00:00,212.7177802315691,0,1063.0905462936346,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.11736561600841779,24.696685449403347,0,0,108.53161362350394,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3032.674770276135,0.0,2747.2127015798487,0.0,3612.4292438737853,0.0,2756.437412183872,0.0,0.0,0.0,2931.6258468362407,0.0,2625.48555472397,0.0,3441.5616173778394,0.0,2598.9903397971816,0.0,0.0,0,0,0,0,0,0,0,0,0.056599728122928024,0.0017907759445444235,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5092126393678904,-0.5092126393678904,-0.4034903055263401,-0.4034903055263401,-0.4502857106246808,-0.4502857106246808,0.005733147508118514,0.005733147508118514,-0.11231511290328526,-0.11231511290328526,-0.4618589698911924,-0.5107357510079144,-0.5002434252003349,-0.5220721027938807,-0.23606279384446296,-0.47453045875613636,-0.51680187519362,-0.5013846944181498,-0.5253257215265815,-0.25928958729546464,10.420941777537394,10.420941777537394,8.392505597961716,8.392505597961716,9.231014457152568,9.231014457152568,5.0006804053324885,5.0006804053324885,5.26127721016185,5.26127721016185,9.452902671716586,10.453685937913008,10.230154084307472,10.700549994313718,6.156345101866123,9.70246222197457,10.585092257459237,10.254237400713592,10.77242889894373,6.395760073354822,212.7177802315691,212.7177802315691,0.0,236.35308914618787,0.0,212.7177802315691,236.35308914618787,0,0
+2017/02/01 22:00:00,199.1661387737941,0,1081.9876646378011,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.17245884786338325,27.0977424753112,0,0,162.91908448021505,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2774.2583814865075,0.0,3804.7227640420724,0.0,3339.3638767367456,0.0,3823.08295227859,0.0,0.0,0.0,2583.670700555346,0.0,3640.4946848357795,0.0,3104.29870527291,0.0,3621.1595056742253,0.0,0.0,0,0,0,0,0,0,0,0,0.05760582470079297,0.0018226081389609045,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5384681680245481,-0.5384681680245481,-0.4803942776311811,-0.4803942776311811,-0.47795687120243946,-0.47795687120243946,-0.06480063253467999,-0.06480063253467999,-0.19467660582962268,-0.19467660582962268,-0.47530882870136604,-0.5284977214026805,-0.513417853547464,-0.5389534839237247,-0.25526226170766636,-0.49144092036022136,-0.5376686264320645,-0.5177735799306941,-0.5452531765764506,-0.2802052242373679,11.067436576801825,11.067436576801825,9.820290297465192,9.820290297465192,9.771132746088284,9.771132746088284,5.086940284104202,5.086940284104202,5.7858348485908095,5.7858348485908095,9.718017499667269,10.842945832453495,10.51159020412986,11.078473658369745,6.352622354740802,10.046292444718006,11.049275608789046,10.606289553170228,11.222667603123625,6.630776218744799,199.1661387737941,199.1661387737941,0.0,221.2957097486601,0.0,199.1661387737941,221.2957097486601,0,0
+2017/02/01 23:00:00,140.50872397692297,0,964.7998120884275,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.25358181389989337,21.07020935524684,0,0,205.43781823728992,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2785.521215891031,0.0,4427.777908418223,0.0,3355.908985488047,0.0,4447.71166416291,0.0,0.0,0.0,2662.7540854305234,0.0,4336.343368880636,0.0,3232.2962328638496,0.0,4316.722349448184,0.0,0.0,0,0,0,0,0,0,0,0,0.0513666566292407,0.0016252052102358925,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6315213444244382,-0.6315213444244382,-0.6104671165493809,-0.6104671165493809,-0.639937019296597,-0.639937019296597,-0.256997815439025,-0.256997815439025,-0.4250983320388554,-0.4250983320388554,-0.49508598544924487,-0.5528379360305885,-0.531801317225055,-0.5620306510884999,-0.2804186347825247,-0.5168240624640135,-0.5664432392892229,-0.5405760333064271,-0.5725975385930763,-0.30847643571000827,13.370447271562,13.370447271562,12.816479356332863,12.816479356332863,13.597256370098052,13.597256370098052,6.371128650257589,6.371128650257589,8.768015090852032,8.768015090852032,10.12202243933335,11.39855745075782,10.916851404161108,11.615078814379004,6.6332692039897125,10.585575806908153,11.72031278422348,11.115447854072741,11.868494487100733,6.977777848710531,140.50872397692297,140.50872397692297,0.0,156.1208044188033,0.0,140.50872397692297,156.1208044188033,0,0
+2017/02/02 00:00:00,91.1823512644094,0,856.1935707300709,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.4322928631150393,11.807102140001803,0,0,284.14625341736956,518.8117885438852,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1061.4118559738602,0.0,399.17609296237185,0.0,1075.7926969075747,0.0,0.0,0.0,0.0,0.0,2993.4323360049366,0.0,5318.337040895755,0.0,3641.234656927236,0.0,5340.065908511351,0.0,1757.6602694335263,0.0,2993.0373979010537,0.0,5248.249518374913,0.0,3553.7264419389394,0.0,5229.1800209874355,0.0,5560.471465987937,0,0,0,0,0,0,0,0,0.04558437989395476,0.001442258004910814,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7526672867030874,-0.7526672867030874,-0.7437284623600949,-0.7437284623600949,-0.7633188249125804,-0.7633188249125804,-0.5039478768750967,-0.5039478768750967,-0.5340804589211934,-0.5340804589211934,-0.5212058063163317,-0.5819107712219863,-0.5557953122824753,-0.5901359608269204,-0.30844328761067974,-0.5450196367630629,-0.5993370972848585,-0.5681447011730668,-0.6044432406225666,-0.34137031835786646,16.930802933394418,16.930802933394418,16.646487425446495,16.646487425446495,17.27406042509601,17.27406042509601,10.308531422392619,10.308531422392619,10.9681141554384,10.9681141554384,10.681489020638395,12.095860994024704,11.467814473421512,12.2997945943425,6.977351203688016,11.21729140588738,12.531404874787157,11.76111583998015,12.661521634439353,7.424099055166707,91.1823512644094,91.1823512644094,0.0,101.31372362712156,0.0,91.1823512644094,101.31372362712156,0,0
+2017/02/02 01:00:00,39.36811200453479,0,569.7301731231427,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5784954861948034e-09,9.570791005533108,0,0,0.0,516.4946443543265,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030332856420013554,0.000959710433384147,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6755518872251111,-0.6755518872251111,-0.6605980520258053,-0.6605980520258053,-0.666573301618111,-0.666573301618111,-0.43645600023102293,-0.43645600023102293,-0.18130253302514857,-0.18130253302514857,-0.6727276693036413,-0.7409293608934671,-0.7147660366760303,-0.7533357415549974,-0.09450215019627678,-0.6988810530180825,-0.7662114555038446,-0.7337831378827455,-0.7742580776644504,-0.1779475952670679,14.591095115497978,14.591095115497978,14.167112560096058,14.167112560096058,14.335365811686572,14.335365811686572,8.97342012170131,8.97342012170131,5.681424089878249,5.681424089878249,14.510279137519476,16.55816116369664,15.748849943751722,16.952201892169583,5.184942851111501,15.271861214584831,17.368115818802494,16.33418566090208,17.631633918413044,5.6564042217061115,39.36811200453479,39.36811200453479,0.0,43.74234667170532,0.0,39.36811200453479,43.74234667170532,0,0
+2017/02/02 02:00:00,23.730071546827837,0,40.66055647790253,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5329761231500445,0,0,0.0,5.1702039653584,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002164798144428785,6.849270430094292e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7432954732963206,-0.7432954732963206,-0.7305441850618194,-0.7305441850618194,-0.7295867202766166,-0.7295867202766166,-0.5133962598837372,-0.5133962598837372,-0.04165249202440519,-0.04165249202440519,-0.7884302726089552,-0.8849213399365013,-0.8685493543387081,-0.9074203840686949,-0.026533545954449202,-0.8477473167333298,-0.9292193767191176,-0.9024902168764096,-0.9446318484952217,-0.16712502728695963,16.63280238811764,16.63280238811764,16.233393426275683,16.233393426275683,16.20368464118866,16.20368464118866,10.51112277327826,10.51112277327826,5.035916716972693,5.035916716972693,18.102462532800914,21.53276711552128,20.923442036715528,22.388012089003084,5.014574214366533,20.165205002543672,23.23618618715109,22.19884281268979,23.847339712949633,5.578894999341401,23.730071546827837,23.730071546827837,0.0,26.36674616314204,0.0,23.730071546827837,26.36674616314204,0,0
+2017/02/02 03:00:00,28.344229741881023,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248666554081264,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7380901207698304,-0.7380901207698304,-0.7272508307111564,-0.7272508307111564,-0.7220539289636166,-0.7220539289636166,-0.5167775931393297,-0.5167775931393297,0.035187163309614224,0.035187163309614224,-0.8209936504070675,-0.9187687409786283,-0.9022268641528138,-0.941210810038754,-0.0036450710095428268,-0.9035757033433724,-0.9881599136771582,-0.9611193503916049,-1.00403618201992,-0.16106000794521846,16.46891176064817,16.46891176064817,16.131370651102486,16.131370651102486,15.971327969590575,15.971327969590575,10.584563078691687,10.584563078691687,5.025631468540524,5.025631468540524,19.216529359770774,22.827179170361205,22.188765761202873,23.71086984606916,5.000275038240602,22.24040807492706,25.623780102259374,24.511522210278656,26.289905682023658,5.537594289670594,28.344229741881023,28.344229741881023,0.0,31.493588602090025,0.0,28.344229741881023,31.493588602090025,0,0
+2017/02/02 04:00:00,23.722030600828905,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249351771511129,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7626030821666153,-0.7626030821666153,-0.7525844410840714,-0.7525844410840714,-0.7450745235145307,-0.7450745235145307,-0.55446469757389,-0.55446469757389,0.07568510034465659,0.07568510034465659,-0.86744350299047,-0.9633976173646766,-0.9484032620141828,-0.9871575123933741,0.018373905112867343,-0.9634400675698568,-1.0483319651777034,-1.0217701965111308,-1.0647697013425317,-0.15891424656253025,17.250842825520493,17.250842825520493,16.928152164343942,16.928152164343942,16.689082333347372,16.689082333347372,11.43660668173547,11.43660668173547,5.118607733619314,5.118607733619314,20.882682800041835,24.604138794266092,23.998323040567286,25.582044755387216,5.0069886028334025,24.605866413240307,28.198364773022163,27.045233619861023,28.924817711792215,5.523349591714364,23.722030600828905,23.722030600828905,0.0,26.357811778698782,0.0,23.722030600828905,26.357811778698782,0,0
+2017/02/02 05:00:00,42.634720666287535,0,375.1640049517332,0,0,0,0.0,0.014881801506156195,4.633261998087618,9.319298099999997,25.555573451546493,0,1.5011712706373452,1.0854991553726652,0.5250348891372548,0,0,286.43812367037293,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9803204747344125,2600.3443603512073,1.6055344979399138,1914.7464073973488,1.8555437902628,3021.132376320876,1.444989217688203,1983.6810008381535,0.0,0.0,2.104518245029908,2972.58475337671,1.573007500403378,2057.297632391999,2.498883765419748,3284.342994029042,1.8190040146778301,2102.2482095352702,0.0,0.0,0,0,0,0,0,0,0,0,0.019974009510109837,0.0006319637378667294,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7509218085576567,-0.7509218085576567,-0.7455375898465918,-0.7455375898465918,-0.7335638416765136,-0.7335638416765136,-0.5568914070057649,-0.5568914070057649,0.22061586281711468,0.22061586281711468,-0.6355165800631856,-0.6886793870381686,-0.6715824670037446,-0.6985326769371568,0.05618633080854031,-0.6852319325487498,-0.7376947079503885,-0.7111489851261494,-0.7438864983589369,-0.1552109774713757,16.87501588648132,16.87501588648132,16.70375361538248,16.70375361538248,16.327347205026825,16.327347205026825,11.493579575300998,11.493579575300998,6.009663552635871,6.009663552635871,13.477738997252374,14.97127285971412,14.47760715588393,15.261522308183544,5.065358738525816,14.870711568772762,16.456509702227848,15.639281568811967,16.651484308580535,5.499216642744855,42.634720666287535,42.634720666287535,0.0,47.371911851430596,0.0,42.634720666287535,47.371911851430596,0,0
+2017/02/02 06:00:00,75.79750137092081,0,306.23355949963803,0,0,0,0.12013952396182062,0.011830419984119205,5.555297838843742,9.319298099999997,57.911447091112116,0,1.3878920034040043,0.9665616405623579,0.5250347530526385,0,0,93.29144442437322,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,380.1495831384516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3632572416337325,1829.3800374342845,1.165560814494313,1421.51563426853,1.7441557344914145,2292.6757487725595,1.227660908067321,1506.5143827376776,0.0,0.0,1.88860168180247,2340.210457612882,1.0819552358727833,1680.7981078999583,1.990181238165519,2670.4140997994505,1.3690471295916495,1732.6107206713684,0.0,0.0,0,0,0,0,0,0,0,0,0.01630410153699981,0.0005158504077344073,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5380634477406763,-0.5380634477406763,-0.537780117233049,-0.537780117233049,-0.519710407525665,-0.519710407525665,-0.3571124514405169,-0.3571124514405169,0.5420943248411305,0.5420943248411305,-0.5957221173712864,-0.6391387477236118,-0.6227684204761882,-0.6463959465128535,0.16388117148046988,-0.6143040237343212,-0.6572275774951629,-0.6317153216300679,-0.6609280794714584,-0.034114754622131795,11.058240207857182,11.058240207857182,11.051806374393237,11.051806374393237,10.648662434882311,10.648662434882311,7.653949983494883,7.653949983494883,11.150149557282333,11.150149557282333,12.439970678188843,13.575610441607338,13.137808746960786,13.773413001293775,5.556614688679474,12.916000686675645,14.072887816172965,13.375640519755493,14.176365240507636,5.024092841966322,75.79750137092081,75.79750137092081,0.0,84.2194459676898,0.0,75.79750137092081,84.2194459676898,0,0
+2017/02/02 07:00:00,101.7462154617915,0,806.6193774374331,0,0,0,0.0,0.007003809778924582,11.110595677687485,13.929299233552332,73.80580873715317,0,1.478631273331451,0.8898129106617454,0.5250638196263785,0,0,70.11493302141105,505.817153084485,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.58638556388784,1707.7084823343018,0.0,1317.5790065912415,1.5072704500559362,2102.6810195216012,0.0,1378.9029112527505,0.0,0.0,1.3233893837228454,1873.3596041381566,0.0,1354.9957987080456,1.4434729260956374,2140.5731891131136,1.1432914551623221,1383.1047326708049,0.0,0.0,0,0,0,0,0,0,0,0,0.04294501312311927,0.0013587502800719835,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4345448506552544,-0.4345448506552544,-0.4425715028777259,-0.4425715028777259,-0.41806754185437567,-0.41806754185437567,-0.27058893473563134,-0.27058893473563134,0.795936792869799,0.795936792869799,-0.5800951435963463,-0.620641972379164,-0.6051994549548656,-0.6268560913569333,0.22165310656751638,-0.5915192276022159,-0.6323618152380615,-0.6075759031055871,-0.6349941164216432,0.06815245092305841,8.938469140632776,8.938469140632776,9.086314479044901,9.086314479044901,8.643636072902552,8.643636072902552,6.520434982268412,6.520434982268412,18.355300308527703,18.355300308527703,12.051240254304233,13.08179311265782,12.68088799009692,13.246038700833068,6.019199699119383,12.334379410357116,13.392960534268013,12.741909458064995,13.46366892489037,5.0961687944400325,101.7462154617915,101.7462154617915,0.0,113.05135051310165,0.0,101.7462154617915,113.05135051310165,0,0
+2017/02/02 08:00:00,164.50935662438508,0,930.4850322683177,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.22540557507219455,27.097156697725556,0,0,64.65198087954772,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,734.3631342042466,0.0,291.6270090096575,0.0,836.378735641922,0.0,0.0,0.0,0.0,0.0,4141.118024442569,0.0,5329.488628032231,0.0,4744.314111455583,0.0,5340.358120717312,0.0,2266.7312556073716,0.0,4259.71922664351,0.0,5327.148301865098,0.0,4760.466901647,0.0,5290.937337294907,0.0,1804.443413285758,0,0,0,0,0,0,0,0,0.04953971233443188,0.001567401966233365,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6030430849030501,-0.6030430849030501,-0.5984418422042371,-0.5984418422042371,-0.6039934732998496,-0.6039934732998496,-0.4732118442125958,-0.4732118442125958,0.32622670416788246,0.32622670416788246,-0.5784138075768852,-0.6257484960726314,-0.6020633197880921,-0.6316393437840184,-0.13535384847057094,-0.5901387074574399,-0.6381559454503221,-0.6058311633919437,-0.6409126637358216,-0.1964004635531208,12.625729709657548,12.625729709657548,12.508708224498818,12.508708224498818,12.650015038508258,12.650015038508258,9.676170076627088,9.676170076627088,7.212923347185125,7.212923347185125,12.010047415640997,13.216641103042946,12.60073475405163,13.373606210963501,5.379555813666997,12.29986318407505,13.548998739535406,12.69708482442637,13.623749471279893,5.799836704412371,164.50935662438508,164.50935662438508,0.0,182.78817402709453,0.0,164.50935662438508,182.78817402709453,0,0
+2017/02/02 09:00:00,166.03635187794973,0,1078.905995301519,0,0,0,0.0,0.0,12.645266267858833,0.0,83.2008179303116,0,39.38090929596693,0.2796407060469071,27.0977424753112,0,0,159.83741514393267,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.28463464761907,0.0,0.0,0.0,244.44405321230522,0.0,0.0,0.0,0.0,0.0,4392.657920602166,0.0,5624.166440325944,0.0,5101.628293041543,0.0,5576.200956540187,0.0,147.81877683830905,0.0,4214.219797776599,0.0,5452.240280724594,0.0,4866.788942729267,0.0,5347.867030912852,0.0,149.02406169529738,0,0,0,0,0,0,0,0,0.0574417543427163,0.0018174170671978321,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6559341717034808,-0.6559341717034808,-0.6534705509395938,-0.6534705509395938,-0.6651803196813374,-0.6651803196813374,-0.530355511037474,-0.530355511037474,-0.16861589255267292,-0.16861589255267292,-0.5723202705941458,-0.6306247817349239,-0.6035377488585054,-0.6305618414036197,-0.2616209306475578,-0.5824638813423216,-0.6432749132871564,-0.608128704106024,-0.6391847525896809,-0.30246916401532115,14.036860150360937,14.036860150360937,13.96843684799343,13.96843684799343,14.296003483006231,14.296003483006231,10.884448757109752,10.884448757109752,5.589282126240505,5.589282126240505,11.861783152249174,13.346465286040598,12.638364993888217,13.344783017053999,6.421043570621094,12.109482615865986,13.688066067098134,12.756139196591732,13.576857158858019,6.901218215215792,166.03635187794973,166.03635187794973,0.0,184.48483541994415,0.0,166.03635187794973,184.48483541994415,0,0
+2017/02/02 10:00:00,182.1095049359192,0,1147.0448341915724,0,0,0,0.0,0.0,11.508635620542387,0.0,106.27511244621549,0,39.380909295966944,0.27404917592203176,21.238823194818114,0,0,174.7407252651698,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3749.397316800641,0.0,5241.065508173739,0.0,4494.083363565059,0.0,5175.182133116657,0.0,0.0,0.0,3580.979324674114,0.0,5107.248051379097,0.0,4301.239631643026,0.0,4974.125377697064,0.0,0.0,0,0,0,0,0,0,0,0,0.06106951659611496,0.0019321969361364769,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6247258219174376,-0.6247258219174376,-0.6337574205482063,-0.6337574205482063,-0.6506345937451485,-0.6506345937451485,-0.5022321290764762,-0.5022321290764762,-0.2582202436449697,-0.2582202436449697,-0.5622945154985627,-0.6254411349371101,-0.5964394742363475,-0.6246950289657599,-0.2831555511399561,-0.57046194736173,-0.6371632341048347,-0.6000442576166953,-0.6319885568194601,-0.31837579132274924,13.189544730801174,13.189544730801174,13.430411591794922,13.430411591794922,13.889998178494025,13.889998178494025,10.272156570083496,10.272156570083496,6.384239520394203,6.384239520394203,11.62134786741359,13.20849261337733,12.458069779436798,13.188729556645058,6.665411193148088,11.816888099647699,13.522161256030017,12.54935750720999,13.382958468752022,7.1072725736378715,182.1095049359192,182.1095049359192,0.0,202.34389437324356,0.0,182.1095049359192,202.34389437324356,0,0
+2017/02/02 11:00:00,212.4655472773177,0,1239.1530856830916,0,0,0,0.0,0.0,16.903073633821148,0.0,133.89528835348938,0,39.380909295966944,0.35904584342465007,18.49525494816128,0,0,215.35085137192672,562.4276516480909,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2867.2767654213067,0.0,5744.918097582975,0.0,3719.858387722511,0.0,5673.777686322792,0.0,0.0,0.0,2582.849966647916,0.0,5555.157485212661,0.0,3457.996868934297,0.0,5429.6402051889145,0.0,2806.268036881361,0,0,0,0,0,0,0,0,0.06597342813071937,0.002087353278783043,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5437861823695269,-0.5437861823695269,-0.5946677453304079,-0.5946677453304079,-0.5887322708193836,-0.5887322708193836,-0.41330113844735694,-0.41330113844735694,-0.18433642980866397,-0.18433642980866397,-0.5471934738340795,-0.623890810325611,-0.5910302271550265,-0.6223896596429712,-0.29752831363309895,-0.5503440713631995,-0.6322163989744158,-0.5921493912980692,-0.6272763601611924,-0.3289454572868194,11.188935908247714,11.188935908247714,12.4134091332201,12.4134091332201,12.264784038217158,12.264784038217158,8.560520853004448,8.560520853004448,5.704454379263083,5.704454379263083,11.267425563707562,13.167454245770884,12.322143797803236,13.127816935265471,6.839393412874074,11.34044980915931,13.389063150650102,12.350162468147914,13.257207331304869,7.2501191895129296,212.4655472773177,212.4655472773177,0.0,236.0728303081308,0.0,212.4655472773177,236.0728303081308,0,0
+2017/02/02 12:00:00,228.32289757263567,0,1267.8883693964374,0,0,0,0.0,0.0,16.73568395689411,0.0,147.76209134187457,0,39.380909295966944,0.24919121618066012,20.76304655926507,0,0,153.62285041985837,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3159.6212033228694,0.0,4528.670584450451,0.0,4016.9382720795206,0.0,4488.979351135984,0.0,0.0,0.0,2817.302979323382,0.0,4323.053201955721,0.0,3735.9481192805633,0.0,4246.025383367128,0.0,0.0,0,0,0,0,0,0,0,0,0.06750331592003413,0.0021357578620172036,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4343119897552165,-0.4343119897552165,-0.529476673822612,-0.529476673822612,-0.4911062763329837,-0.4911062763329837,-0.26203168659967824,-0.26203168659967824,-0.08248730177458609,-0.08248730177458609,-0.5164627570702632,-0.5983666909771831,-0.5674428129016008,-0.6006749305014417,-0.2868870365243357,-0.5125176778212284,-0.600141205722578,-0.5632275669867252,-0.6005298464010894,-0.31133612988379616,8.934221316796837,8.934221316796837,10.864796952975638,10.864796952975638,10.039368625657403,10.039368625657403,6.425521935107511,6.425521935107511,5.140892299794359,5.140892299794359,10.577704166337199,12.506804561107145,11.744268518201707,12.565386667490259,6.709742503344145,10.49212150370073,12.551820414053594,11.643540095722031,12.561697686162404,7.014759680458127,228.32289757263567,228.32289757263567,0.0,253.69210841403964,0.0,228.32289757263567,253.69210841403964,0,0
+2017/02/02 13:00:00,207.77787375427354,0,1158.2099220345806,0,0,0,0.0,0.0,16.798297350153536,0.0,129.49988082968767,0,39.380909295966944,0.17355069633727388,18.493260379673835,0,0,116.65370747126751,562.4364556439673,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4351.133870967255,0.0,3824.513577899565,0.0,5152.182302326066,0.0,3833.177475086416,0.0,0.0,0.0,3978.7336656930147,0.0,3530.5331881466886,0.0,4753.68108766199,0.0,3520.069969350492,0.0,0.0,0,0,0,0,0,0,0,0,0.06166395414293172,0.0019510045257606088,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3903193383686139,-0.3903193383686139,-0.4749164716664516,-0.4749164716664516,-0.44996940440085204,-0.44996940440085204,-0.17034327519158493,-0.17034327519158493,-0.038493256513158054,-0.038493256513158054,-0.4966334730159542,-0.566358368554847,-0.5478671153699787,-0.5749245450764918,-0.2692184076174791,-0.4877526579516989,-0.5627273057233477,-0.5414775674806718,-0.5715901472865927,-0.2892843701810095,8.173423187391307,8.173423187391307,9.710173203684718,9.710173203684718,9.22503099709212,9.22503099709212,5.6014330364250355,5.6014330364250355,5.030674608544359,5.030674608544359,10.154346623034186,11.718280772287201,11.283003001056414,11.924951663288553,6.50502630831204,9.97024894231862,11.631636901850285,11.136041054680291,11.844126306144162,6.738533731542319,207.77787375427354,207.77787375427354,0.0,230.86430417141503,0.0,207.77787375427354,230.86430417141503,0,0
+2017/02/02 14:00:00,205.44968391334683,0,1196.59545581835,0,0,0,0.0,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,0.2607181539400348,16.304763220137648,0,0,191.54129849291834,561.4247509186299,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4163.938146335377,0.0,4193.116121682822,0.0,5006.02268263356,0.0,4249.870490487388,0.0,0.0,0.0,3741.9788143385194,0.0,3883.0528437078056,0.0,4591.990060478637,0.0,3926.53789207729,0.0,0.0,0,0,0,0,0,0,0,0,0.06370762839400039,0.002015664954505956,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.38749873832799236,-0.38749873832799236,-0.463495036106193,-0.463495036106193,-0.5275495522857961,-0.5275495522857961,-0.15414564520083707,-0.15414564520083707,-0.05921834779513493,-0.05921834779513493,-0.49272661815409924,-0.5530999602951054,-0.5459499283763306,-0.5699980460795437,-0.2731325265613419,-0.48421402763832966,-0.5462345701942958,-0.5402714166727356,-0.5666982400900783,-0.2932767355229872,8.127470250120808,8.127470250120808,9.484735345854205,9.484735345854205,10.821821380455589,10.821821380455589,5.492380061852046,5.492380061852046,5.072604191021696,5.072604191021696,10.072938643156476,11.404678330628968,11.238721205139484,11.805704119793631,6.549242030287928,9.897842480912942,11.245285585757046,11.108497639772665,11.72642000360321,6.787019393011121,205.44968391334683,205.44968391334683,0.0,228.27742657038536,0.0,205.44968391334683,228.27742657038536,0,0
+2017/02/02 15:00:00,189.4003274046065,0,1062.717143966288,0,0,0,0.0,0.0,16.86091074341296,0.0,115.5196477718057,0,39.380909295966944,0.14181023206970741,14.065074158896952,0,0,113.86598069580377,540.7121093762265,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3219.3475031773355,0.0,4983.360293139576,0.0,3996.468799121828,0.0,5079.894624701301,0.0,0.0,0.0,2875.7325738189284,0.0,4709.00256831126,0.0,3664.4063210866984,0.0,4810.421581018654,0.0,0.0,0,0,0,0,0,0,0,0,0.05657984790643849,0.0017901469483523487,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4823905178605557,-0.4823905178605557,-0.5077450529773956,-0.5077450529773956,-0.5434058788214804,-0.5434058788214804,-0.18471402367544368,-0.18471402367544368,-0.12278562859903658,-0.12278562859903658,-0.5075402916917705,-0.5648982309682208,-0.5583668545564574,-0.5872117419973649,-0.29233722729272743,-0.5050085586028661,-0.5613957611484799,-0.5575792333753451,-0.5885637339282904,-0.3146665993085901,9.860741325950428,9.860741325950428,10.389486204599322,10.389486204599322,11.180206526352876,11.180206526352876,5.707347587522435,5.707347587522435,5.3122967423527285,5.3122967423527285,10.385104848162626,11.683370449069585,11.52834410568606,12.22695579164018,6.775548875999149,10.331082136685495,11.60000708157412,11.509774411334504,12.260586174406,7.058266012321013,189.4003274046065,189.4003274046065,0.0,210.44480822734053,0.0,189.4003274046065,210.44480822734053,0,0
+2017/02/02 16:00:00,183.28541781135115,0,1260.0628816909891,0,0,0,0.0,0.0,17.241363593746797,0.0,108.75639138185811,0,39.380909295966944,0.45144069310465623,14.023337644220321,0,0,311.2013002968046,540.7225274999271,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3012.495093928874,0.0,5745.5991840935485,0.0,3729.0275782705803,0.0,5884.288615138357,0.0,193.48129548692586,0.0,2627.653080677913,0.0,5436.662907579299,0.0,3393.8701827622604,0.0,5606.129020593888,0.0,4370.626818862462,0,0,0,0,0,0,0,0,0.06708668115820515,0.0021225758285713203,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49481979469956405,-0.49481979469956405,-0.49923529703688474,-0.49923529703688474,-0.524154932337252,-0.524154932337252,-0.23830590374339272,-0.23830590374339272,-0.16873927179588066,-0.16873927179588066,-0.5312501496285642,-0.588518857679478,-0.5793991626730383,-0.6131351983211336,-0.31221600578998754,-0.5373626778768864,-0.5914269051174661,-0.5842713118125888,-0.6198923834219434,-0.3391827993205348,10.116472628650541,10.116472628650541,10.208927156983364,10.208927156983364,10.746511063202632,10.746511063202632,6.178477698211793,6.178477698211793,5.590145884617954,5.590145884617954,10.904488249743949,12.259468618743696,12.034173799525476,12.885616134298914,7.026207959326953,11.042333550270342,12.33206855203646,12.154087359559114,13.062093955584814,7.3929927338356975,183.28541781135115,183.28541781135115,0.0,203.6504642348346,0.0,183.28541781135115,203.6504642348346,0,0
+2017/02/02 17:00:00,208.2408512384338,0,1232.9024007981209,0,0,0,0.0,0.0,19.281291998196856,0.0,131.64086955684016,0,39.380909295966944,0.4309036496850278,14.074901535290435,0,0,230.7875934055564,540.7402247294906,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2970.243972299824,0.0,5528.4126390245865,0.0,3619.240387012098,0.0,5457.0544027194355,0.0,0.0,0.0,2806.8424021743126,0.0,5383.362821381348,0.0,3527.6581383644675,0.0,5514.659689376356,0.0,2786.958468219066,0,0,0,0,0,0,0,0,0.06564063703751959,0.0020768240005687296,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5251228270920432,-0.5251228270920432,-0.5316842221764144,-0.5316842221764144,-0.5691497936980553,-0.5691497936980553,-0.21180472307013629,-0.21180472307013629,-0.12981762530624663,-0.12981762530624663,-0.5539810833169498,-0.6146066581014575,-0.5941200591626249,-0.6698961355798341,-0.3248506876451745,-0.5672890613439402,-0.6228018290790298,-0.6021638764441906,-0.645190423538108,-0.3541861400905054,10.767933161402425,10.767933161402425,10.914223762839214,10.914223762839214,11.78527813985103,11.78527813985103,5.93047400782531,5.93047400782531,5.349119175790321,5.349119175790321,11.42528317482153,12.923877572386218,12.399630965001137,14.42960041722948,7.194217255159074,11.740580895208893,13.138690373564998,12.603298153555272,13.740397029910852,7.610425297918624,208.2408512384338,208.2408512384338,0.0,231.37872359825977,0.0,208.2408512384338,231.37872359825977,0,0
+2017/02/02 18:00:00,234.35837794442887,0,1188.7010255744178,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.2827270181794753,18.438315783321478,0,0,146.28643115405163,581.0400117572923,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4275.563126051675,0.0,5207.551346933853,0.0,4883.226021602761,0.0,5265.410025872463,0.0,0.0,0.0,4071.444053696029,0.0,5033.620250301668,0.0,4706.712222738586,0.0,5088.532375640124,0.0,0.0,0,0,0,0,0,0,0,0,0.06328732308035631,0.0020023667873592284,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.544661296534146,-0.544661296534146,-0.5069403207956926,-0.5069403207956926,-0.5899352841765452,-0.5899352841765452,-0.21028138270905533,-0.21028138270905533,-0.08830579785876842,-0.08830579785876842,-0.5560852328419098,-0.6184500043731894,-0.5915584601010466,-0.6460581213976058,-0.3132219837434778,-0.5707202739602851,-0.6297537554615257,-0.6001563413531408,-0.6433417862442994,-0.3407792873074116,11.209046839609286,11.209046839609286,10.37227747610703,10.37227747610703,12.294784118887918,12.294784118887918,5.917112741045543,5.917112741045543,5.161477018824314,5.161477018824314,11.474624358250793,13.024256912893364,12.3353615230712,13.764154541985818,7.039337143471002,11.823120021972244,13.323199766893126,12.552204962228387,13.689890328787541,7.415674605008633,234.35837794442887,234.35837794442887,0.0,260.3981977160321,0.0,234.35837794442887,260.3981977160321,0,0
+2017/02/02 19:00:00,218.60177870221344,0,1183.8435450360987,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.24376844989818983,25.681539555794572,0,0,158.30390734087985,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5422.329215784512,0.0,4391.092554639042,0.0,5967.972082550194,0.0,4404.655198644108,0.0,0.0,0.0,5190.790076125593,0.0,4215.811282552413,0.0,5767.075593469057,0.0,4235.755961529088,0.0,0.0,0,0,0,0,0,0,0,0,0.06302870721852799,0.0019941843617611067,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5417147736165668,-0.5417147736165668,-0.5676993081277545,-0.5676993081277545,-0.6115283627912795,-0.6115283627912795,-0.20901721130249398,-0.20901721130249398,-0.07409326901790085,-0.07409326901790085,-0.5467017885338183,-0.6006862978492592,-0.5794872886972332,-0.6208613452109718,-0.29238005376123305,-0.5615570091572001,-0.6116654028675201,-0.5875740942546374,-0.6240785348879194,-0.3171691715961038,11.141465262982976,11.141465262982976,11.750422657995287,11.750422657995287,12.843941939257888,12.843941939257888,5.906098415200432,5.906098415200432,5.113669805516281,5.113669805516281,11.256068139667363,12.565675737988158,12.03633361441642,13.087562830832297,6.77607093607736,11.603833312429785,12.847491780925296,12.235961411412134,13.172417919745953,7.091266522481959,218.60177870221344,218.60177870221344,0.0,242.8908652246816,0.0,218.60177870221344,242.8908652246816,0,0
+2017/02/02 20:00:00,210.76715286489647,0,1164.1261998948958,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.237475018654759,27.0977424753112,0,0,174.07691471222134,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5226.4906415152245,0.0,4263.4519123879745,0.0,5740.861286800153,0.0,4274.86646336866,0.0,0.0,0.0,5096.83390221341,0.0,4150.804604364988,0.0,5624.954928001725,0.0,4148.874338022162,0.0,0.0,0,0,0,0,0,0,0,0,0.06197894115844135,0.0019609704953672718,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5580145992934803,-0.5580145992934803,-0.5676154470306664,-0.5676154470306664,-0.5908722937051084,-0.5908722937051084,-0.21820229477663938,-0.21820229477663938,-0.10085783377802975,-0.10085783377802975,-0.5437990460230057,-0.5915988675625969,-0.5741298045262194,-0.6070002170386891,-0.2854542179889022,-0.5600178628995476,-0.6038751167538507,-0.5834317599333726,-0.6146651738601655,-0.309956373430822,11.520035680860786,11.520035680860786,11.748410248413961,11.748410248413961,12.318194254680066,12.318194254680066,5.987648349372677,5.987648349372677,5.210667428262212,5.210667428262212,11.189231286553792,12.336373118623612,11.90564347605762,12.727104729222788,6.69265063324751,11.567357117331227,12.646988529934944,12.133350815114227,12.925401063346598,6.996873326531883,210.76715286489647,210.76715286489647,0.0,234.1857254054405,0.0,210.76715286489647,234.1857254054405,0,0
+2017/02/02 21:00:00,212.72861988973898,0,1145.6348425280003,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.2479088823177855,24.576981841263873,0,0,191.07590985787007,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5304.2946825519675,0.0,4326.961340902322,0.0,5792.786513023968,0.0,4331.192710833734,0.0,0.0,0.0,5268.634575447815,0.0,4280.625962753462,0.0,5767.786079543261,0.0,4261.880031834495,0.0,0.0,0,0,0,0,0,0,0,0,0.06099444759555617,0.0019298218052862066,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.536151125188323,-0.536151125188323,-0.5479332780771876,-0.5479332780771876,-0.5768217455451182,-0.5768217455451182,-0.24549830709802137,-0.24549830709802137,-0.1450330767552309,-0.1450330767552309,-0.5438696748198857,-0.5876613797274954,-0.5724695076813843,-0.6002659876349888,-0.28149529891368025,-0.5619251796222783,-0.6013046178021523,-0.5831838918844566,-0.6104961041288468,-0.30618800074889563,11.014882901121325,11.014882901121325,11.284534023016505,11.284534023016505,11.971154855785628,11.971154855785628,6.250869440138075,6.250869440138075,5.4358331629715195,5.4358331629715195,11.190853209749733,12.238131587917252,11.865395055365596,12.554991021998958,6.64587570211792,11.612573803069836,12.581408000576957,12.12723443666792,12.817228838103546,6.948432887201278,212.72861988973898,212.72861988973898,0.0,236.36513321082109,0.0,212.72861988973898,236.36513321082109,0,0
+2017/02/02 22:00:00,199.15576527648133,0,1065.2265445698574,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.16208535055062803,27.0977424753112,0,0,146.15796441227113,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4168.721356058815,0.0,5119.376570085449,0.0,4649.6342334141555,0.0,5128.216728347699,0.0,0.0,0.0,4122.271395318071,0.0,5080.819772925108,0.0,4633.3668323553065,0.0,5061.030846145772,0.0,0.0,0,0,0,0,0,0,0,0,0.05671345025330229,0.0017943740334786012,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.590726271680793,-0.590726271680793,-0.5972710397827979,-0.5972710397827979,-0.6383075890430927,-0.6383075890430927,-0.3097784665268878,-0.3097784665268878,-0.22827417759077612,-0.22827417759077612,-0.554917374671531,-0.6021542483973478,-0.5827481574488266,-0.6126532338257089,-0.29824113741483993,-0.5771904170977328,-0.6190713604560135,-0.5969209456953322,-0.6267338804505663,-0.3247617702551341,12.314543551323183,12.314543551323183,12.47907834623112,12.47907834623112,13.553102116047086,13.553102116047086,6.994572910808486,6.994572910808486,6.081134863009552,6.081134863009552,11.447215003378062,12.603052695503521,12.116488740297399,12.873104346015793,6.84824926457614,11.980151366165074,13.040545495849528,12.470229955663825,13.24279238804425,7.193011240114089,199.15576527648133,199.15576527648133,0.0,221.28418364053482,0.0,199.15576527648133,221.28418364053482,0,0
+2017/02/02 23:00:00,140.80344684509984,0,1127.4490080585117,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.4973643346972968,21.121149702626305,0,0,368.08701420737407,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,569.8474758340135,0.0,222.7865335619075,0.0,1079.1107316810505,0.0,0.0,0.0,0.0,0.0,4128.862247423574,0.0,5890.81532758379,0.0,4660.708346656265,0.0,5904.636685512645,0.0,811.9723625816587,0.0,4169.446063809425,0.0,5878.451701127614,0.0,4685.762106254473,0.0,5859.436967977732,0.0,4556.456514205127,0,0,0,0,0,0,0,0,0.060026220298031764,0.0018991877685026347,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.724805785490659,-0.724805785490659,-0.7225547056204169,-0.7225547056204169,-0.7512242542502382,-0.7512242542502382,-0.5132540177346223,-0.5132540177346223,-0.46189934894977247,-0.46189934894977247,-0.5776851656718189,-0.6294218959319475,-0.6040976832159737,-0.6381953567163373,-0.32549975692734984,-0.6036777460175757,-0.6504939626011754,-0.6223675237292298,-0.6566797433984274,-0.3582329978764204,16.055928814184128,16.055928814184128,15.986699184367964,15.986699184367964,16.88467297794662,16.88467297794662,10.508044208819214,10.508044208819214,9.45368693298613,9.45368693298613,11.992233739182836,13.314344303096178,12.652680305333718,13.550065086711058,7.203030945482865,12.641942892887187,13.886117587357191,13.127233176502628,14.057619111970851,7.6707130127912535,140.80344684509984,140.80344684509984,0.0,156.44827427233315,0.0,140.80344684509984,156.44827427233315,0,0
+2017/02/03 00:00:00,91.30409717893941,0,930.8037499598033,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.6003544120041517,11.760786505642692,0,0,358.7186627394521,518.849558451535,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2213.755828257903,0.0,1238.5707099133897,0.0,2649.69100811404,0.0,515.4906682892199,0.0,0.0,0.0,3933.7352242796815,0.0,6545.996241496845,0.0,4480.593235114306,0.0,6558.48840385756,0.0,7886.320191919105,0.0,4080.3382754428144,0.0,6586.793330501987,0.0,4588.470940122371,0.0,6564.179741827743,0.0,11632.97810684191,0,0,0,0,0,0,0,0,0.049556681100402886,0.0015679388461604822,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8126556206583654,-0.8126556206583654,-0.811202782962792,-0.811202782962792,-0.8320740565711019,-0.8320740565711019,-0.6874483177182369,-0.6874483177182369,-0.5749104255010303,-0.5749104255010303,-0.5985352637892734,-0.6529278618445213,-0.6235151897556391,-0.6604831106523107,-0.35446178319200367,-0.6270609727998536,-0.6771681765863165,-0.6447652479090001,-0.6821669563144731,-0.391277395514446,18.927002434376163,18.927002434376163,18.87685416636927,18.87685416636927,19.60580264756517,19.60580264756517,14.935303931730758,14.935303931730758,11.924608389717648,11.924608389717648,12.511075037937928,13.953399842877403,13.157526955529832,14.16389116087835,7.614509546669865,13.251482461497048,14.637501102423016,13.728767665889677,14.781738584981753,8.189109108126658,91.30409717893941,91.30409717893941,0.0,101.44899686548824,0.0,91.30409717893941,101.44899686548824,0,0
+2017/02/03 01:00:00,39.33911127702362,0,569.7475884405895,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5784938203411317e-09,9.541790278021947,0,0,0.0,516.5120596717734,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030333783624414065,0.0009597397694850645,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7783378354567521,-0.7783378354567521,-0.7880806990549086,-0.7880806990549086,-0.8094688524111413,-0.8094688524111413,-0.6326447277702916,-0.6326447277702916,-0.233767651189115,-0.233767651189115,-0.812080637769584,-0.8702740721569444,-0.8388886020978368,-0.8804678694016204,-0.14217970374294275,-0.8368556953622007,-0.8965434773913507,-0.8634854411097491,-0.9050026170350294,-0.23923996391395333,17.766295791109812,17.766295791109812,18.09074630494564,18.09074630494564,18.817119802980855,18.817119802980855,13.400545661739812,13.400545661739812,6.133917699318701,6.133917699318701,18.907144844618827,20.987112035968224,19.847763621497023,21.365929552306127,5.418837696097555,19.775378884994268,21.971980477665426,20.737211288609927,22.29511989834009,6.187756293385775,39.33911127702362,39.33911127702362,0.0,43.71012364113735,0.0,39.33911127702362,43.71012364113735,0,0
+2017/02/03 02:00:00,23.774751116306053,0,41.204195608054754,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5776556926282609,0,0,0.0,5.713843095510625,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0021937418943952167,6.940846437442282e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8664083872581988,-0.8664083872581988,-0.8838477356624034,-0.8838477356624034,-0.9036617878301412,-0.9036617878301412,-0.7198455840670782,-0.7198455840670782,-0.08674675244323586,-0.08674675244323586,-0.9410731726760381,-1.019524336220847,-0.9962718559812334,-1.0395791379478314,-0.0753621139304204,-1.0089973773544656,-1.0777329564635056,-1.0499479912787228,-1.0939555603241438,-0.23924522174972745,20.84457646643868,20.84457646643868,21.492472996841414,21.492472996841414,22.24370645277108,22.24370645277108,15.903672137791915,15.903672137791915,5.155823680664639,5.155823680664639,23.705389008586323,26.948927073962636,25.962937118864502,27.815520371210226,5.1175973198528055,26.500023779229494,29.504501890955964,28.26935304342598,30.238213025043123,6.187808626388858,23.774751116306053,23.774751116306053,0.0,26.416390129228947,0.0,23.774751116306053,26.416390129228947,0,0
+2017/02/03 03:00:00,28.344175461800013,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248123753271156,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9050251724594883,-0.9050251724594883,-0.9256696429080603,-0.9256696429080603,-0.9430068413810411,-0.9430068413810411,-0.7639878828011213,-0.7639878828011213,-0.006968271682457713,-0.006968271682457713,-1.0158353972507226,-1.0967889258850234,-1.073615998546487,-1.117280538125759,-0.052657195711403655,-1.110221363426371,-1.1824484208479507,-1.154309934217478,-1.1994594457686638,-0.24363881940281037,22.29598539837076,22.29598539837076,23.096769314962316,23.096769314962316,23.78245817784301,23.78245817784301,17.295783427023906,17.295783427023906,5.001005152443113,5.001005152443113,26.79114680821735,30.367291112453486,29.319759974723013,31.308920992030252,5.057405076835735,30.982941956156196,34.394200618219145,33.04559865215025,35.22103722920886,6.231945386149789,28.344175461800013,28.344175461800013,0.0,31.493528290888904,0.0,28.344175461800013,31.493528290888904,0,0
+2017/02/03 04:00:00,23.72199980524402,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249043815662302,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9417691831916856,-0.9417691831916856,-0.9661215019565987,-0.9661215019565987,-0.9803180138414911,-0.9803180138414911,-0.8085435726529362,-0.8085435726529362,0.05828998159116677,0.05828998159116677,-1.0710062503475555,-1.1517166551922484,-1.1318011331080937,-1.1721290194973404,-0.022876905430966484,-1.1931647726205872,-1.2667487348914235,-1.2399626767048877,-1.2832313149001817,-0.24178869907390405,23.73311244668845,23.73311244668845,24.715136700246774,24.715136700246774,25.298309436536172,25.298309436536172,18.785295577928935,18.785295577928935,5.070345259259199,5.070345259259199,29.202960341236235,32.922542342284274,31.984642353528088,33.8968092273997,5.010833919337443,34.914089439194086,38.57072961903343,37.22282971530361,39.40902082023867,6.2132608178277735,23.72199980524402,23.72199980524402,0.0,26.357777561382246,0.0,23.72199980524402,26.357777561382246,0,0
+2017/02/03 05:00:00,43.71291068011128,0,425.0707925861085,0,0,0,0.0,0.019893845235164513,4.633261998087618,9.319298099999997,25.555573451546493,0,2.163059345799155,1.496788191614019,0.5250357478288011,0,0,336.34491130474817,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16109922064828827,776.154487227492,0.12787084019727343,569.1861230877531,0.14752318429186237,955.9949256041878,0.0,164.42548206327592,0.0,0.0,3.1289429394756647,3857.138504560271,2.3327604617661053,2703.719702012514,2.883640395663481,4245.983431254626,1.9275222870187712,2773.375129601983,0.0,0.0,2.739375811321552,4395.88394328776,2.0865948859753485,2910.5827881035607,2.4883735937276263,4643.164687990663,1.8701416150785357,2978.1341633632487,0.0,0.0,0,0,0,0,0,0,0,0,0.022631083850054294,0.0007160317178489738,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8675509073113602,-0.8675509073113602,-0.8788804520203957,-0.8788804520203957,-0.8843740659468335,-0.8843740659468335,-0.8012352496145089,-0.8012352496145089,0.1923175513410122,0.1923175513410122,-0.7571002487701042,-0.802738963936919,-0.7841057892638238,-0.8122489310645267,0.00819108978832736,-0.8197261376176357,-0.8650996006414488,-0.8387390600263543,-0.8745433661708367,-0.2526876557735287,20.886639272771717,20.886639272771717,21.30665779656769,21.30665779656769,21.512221131606097,21.512221131606097,18.535202605036503,18.535202605036503,5.76687497936345,5.76687497936345,17.073070534908382,18.586475707560908,17.9578891518547,18.9129555735378,5.001388882538194,19.17232810477742,20.79645867671509,19.842433064824704,21.1452454264721,6.325402570747144,43.71291068011128,43.71291068011128,0.0,48.5699007556792,0.0,43.71291068011128,48.5699007556792,0,0
+2017/02/03 06:00:00,76.42610896919432,0,334.94043934539997,0,0,0,0.10757082041976526,0.016264091844190604,5.555297838843742,9.319298099999997,57.911447091112116,0,1.7685173709116382,1.2227318203996178,0.5249818356632134,0,0,121.99832427013514,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,341.22062707228423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.49706617038863,0.0,37.62388183955019,0.0,0.0,0.0,0.0,1.986251689066421,3027.5982367360375,1.4221485588371934,2140.793368557725,2.198926517111204,3392.5701479535046,1.5859875688221337,2225.4327820551416,0.0,0.0,2.8376509375228807,3604.1066282271545,1.9544451576813344,2441.7379412519335,2.299378179630139,3870.5768170029996,1.9793032355192963,2509.945159707782,0.0,0.0,0,0,0,0,0,0,0,0,0.017832477083365453,0.000564207144655778,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7499836429332555,-0.7499836429332555,-0.7769062776769994,-0.7769062776769994,-0.7784738642014742,-0.7784738642014742,-0.6533567603075014,-0.6533567603075014,0.5148598662926568,0.5148598662926568,-0.7048332266610848,-0.7403451226384121,-0.7235425761975262,-0.7471986937333115,0.11773978982821838,-0.7266964292821814,-0.7654287210406525,-0.7406760364535554,-0.7700854405444543,-0.14951611629813014,16.84508517993595,16.84508517993595,17.718963187428926,17.718963187428926,17.770797943924066,17.770797943924066,13.965282842652002,13.965282842652002,10.542850620103309,10.542850620103309,15.449315830720096,16.539767798309853,16.01705327130736,16.75645782340851,5.28714126902743,16.11424205929663,17.342629541176535,16.550184041852148,17.49463991083681,5.463219967591783,76.42610896919432,76.42610896919432,0.0,84.91789885466035,0.0,76.42610896919432,84.91789885466035,0,0
+2017/02/03 07:00:00,102.29449562214542,0,839.6772607636342,0,0,0,0.0,0.014722699136829609,11.110595677687485,13.929299233552332,73.80580873715317,0,1.7951069656652312,1.113950771644251,0.5250115373061502,0,0,103.13803613494079,505.8519332971565,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.98011060119173,2777.4753056740733,1.0511870098168097,1948.1893313211913,2.2894819146376904,3068.6077802958107,1.1780154192086532,2022.7646954355946,0.0,0.0,2.676730728719273,2966.732705938386,1.079686993316803,1998.8309811965062,2.1251413494763556,3155.488024812171,1.342345120462293,2057.5268068270043,0.0,0.0,0,0,0,0,0,0,0,0,0.04470503931760078,0.0014144362820259183,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6662975843568886,-0.6662975843568886,-0.7013613486299584,-0.7013613486299584,-0.6971250639167028,-0.6971250639167028,-0.578405491477008,-0.578405491477008,0.7678881310187796,0.7678881310187796,-0.6902961975110712,-0.7226365329025423,-0.7067115295828934,-0.7293799107352891,0.17766556159398333,-0.7052631440752388,-0.7394665235273918,-0.7153891256705799,-0.7460806675235313,-0.041265406139218454,14.32756803263004,14.32756803263004,15.345621457532985,15.345621457532985,15.219801336740773,15.219801336740773,12.00984397551035,12.00984397551035,17.422797329588107,17.422797329588107,15.01861173973731,15.989211878334217,15.505631791438518,16.197272807686787,5.6543223287855255,15.462192339372336,16.512134751302185,15.76778159412899,16.72097160092933,5.035252204052341,102.29449562214542,102.29449562214542,0.0,113.66055069127269,0.0,102.29449562214542,113.66055069127269,0,0
+2017/02/03 08:00:00,164.91308779466974,0,1107.8544163252423,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.634168848586484,27.092124594495903,0,0,242.02136493647225,599.655407544689,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2850.8700235053175,0.0,1702.3023053275233,0.0,3197.2531693515316,0.0,1359.9061528882169,0.0,0.0,0.0,6754.82923671888,0.0,7717.520106634547,0.0,7262.375625076367,0.0,7729.571860249866,0.0,5295.230918579035,0.0,6908.622004795651,0.0,7740.542176094938,0.0,7336.76264165021,0.0,7714.454208673039,0.0,8754.577691506254,0,0,0,0,0,0,0,0,0.05898298972030777,0.0018661806802151464,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7471158314171905,-0.7471158314171905,-0.7584681141875577,-0.7584681141875577,-0.768440695998983,-0.768440695998983,-0.6962965877960701,-0.6962965877960701,0.1372784432523366,0.1372784432523366,-0.6849795546297267,-0.7255477044859759,-0.7006313958468723,-0.7311140406915758,-0.19787068702580565,-0.7014454736872375,-0.744621103291009,-0.7117508086820385,-0.7480954152314595,-0.29385631937195433,16.75382593007548,16.75382593007548,17.11713933623868,17.11713933623868,17.440844444577507,17.440844444577507,15.195285703426492,15.195285703426492,5.390435353103911,5.390435353103911,14.863369959827494,16.078793536969883,15.323886187510524,16.251093950892454,5.811876606674176,15.348127865852604,16.674725576222954,15.657473009655689,16.784958534967714,6.794114166173202,164.91308779466974,164.91308779466974,0.0,183.2367642162997,0.0,164.91308779466974,183.2367642162997,0,0
+2017/02/03 09:00:00,166.64539941723612,0,1236.4022143320253,0,0,0,0.0,0.0,12.95419968852394,0.0,83.2008179303116,0,39.380909295966944,0.5797548246681602,27.097742475311204,0,0,317.33363417443917,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2239.7162532532757,0.0,1376.478886383728,0.0,2635.8486404043542,0.0,989.3736290370126,0.0,0.0,0.0,6595.667276313364,0.0,7627.664305059296,0.0,7146.887630216243,0.0,7621.154570125132,0.0,410.02113343313374,0.0,6577.975222369993,0.0,7572.398684428035,0.0,7070.18384528385,0.0,7500.618320144573,0.0,6850.785254015816,0,0,0,0,0,0,0,0,0.06582696970239986,0.0020827194362009597,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7560531670292939,-0.7560531670292939,-0.7647620515709874,-0.7647620515709874,-0.7761086201136899,-0.7761086201136899,-0.7204548979831684,-0.7204548979831684,-0.2458388951861957,-0.2458388951861957,-0.6752431028141824,-0.7205790833541691,-0.6939296163477721,-0.7240725188573391,-0.2946610205511401,-0.6910119876767168,-0.7411210168421752,-0.7055649351281,-0.7404750944893659,-0.363085097949372,17.03939056307256,17.03939056307256,17.320943032436958,17.320943032436958,17.69262752715001,17.69262752715001,15.922318376367642,15.922318376367642,6.254351354701782,6.254351354701782,14.582242333868052,15.926120660841505,15.125407427639544,16.033354012611625,6.803988164680021,15.03960556598473,16.564198190158123,15.471236083257978,16.543858389170225,7.743915905816422,166.64539941723612,166.64539941723612,0.0,185.16155490804013,0.0,166.64539941723612,185.16155490804013,0,0
+2017/02/03 10:00:00,182.2148052037656,0,1245.0993632674051,0,0,0,0.0,0.0,11.46689374637501,0.0,106.27511244621549,0,39.380909295966944,0.4159472674485,21.243967245305427,0,0,272.7952543410029,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.29610203281175,0.0,776.9215502686668,0.0,1656.139965939924,0.0,163.01488799993766,0.0,0.0,0.0,5219.653804686844,0.0,7068.917956264586,0.0,6457.91824250901,0.0,6840.326407084919,0.0,0.0,0.0,4935.207823799872,0.0,6951.17812500412,0.0,6297.989002296939,0.0,6624.0742852653175,0.0,5117.534494601011,0,0,0,0,0,0,0,0,0.06629001235375569,0.002097369782922505,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6890956463970899,-0.6890956463970899,-0.7584461670709113,-0.7584461670709113,-0.7674924741539684,-0.7674924741539684,-0.695187536725258,-0.695187536725258,-0.272489018469753,-0.272489018469753,-0.6194088403664291,-0.7071800263305559,-0.6785276858041843,-0.6920623132334182,-0.31117613482345713,-0.6244624315039006,-0.7242435234435404,-0.6881492674121713,-0.7025074913367425,-0.37162342054343567,14.98344979162809,14.98344979162809,17.116431629875862,17.116431629875862,17.409882935195512,17.409882935195512,15.162513912627062,15.162513912627062,6.541928318038259,6.541928318038259,13.04939940799541,15.519702145012317,14.676622091145632,15.070451255010298,7.0126814676611815,13.18257339100306,16.038616597404683,14.955775989449563,15.37979571573048,7.875167766054901,182.2148052037656,182.2148052037656,0.0,202.46089467085065,0.0,182.2148052037656,202.46089467085065,0,0
+2017/02/03 11:00:00,212.6461340276822,0,1347.3563434922582,0,0,0,0.0,0.0,16.903073633821148,0.0,133.89528835348938,0,39.380909295966944,0.5436719006591932,18.491215641291205,0,0,323.5397943021892,562.4419665269951,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.7905433305056,0.0,461.77496161832335,0.0,0.0,0.0,0.0,0.0,3101.037465785588,0.0,6967.806190230973,0.0,4798.51214396706,0.0,6752.330878082921,0.0,2705.264817351363,0.0,2679.229313509025,0.0,6832.401125311064,0.0,4630.877505438056,0.0,6537.9281906737015,0.0,8182.47899139805,0,0,0,0,0,0,0,0,0.07173424972335384,0.002269621658350097,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5390404943337699,-0.5390404943337699,-0.7203076681019752,-0.7203076681019752,-0.7220483989605001,-0.7220483989605001,-0.6263459129380983,-0.6263459129380983,-0.21190714246950249,-0.21190714246950249,-0.5735095761685929,-0.7006919385493937,-0.66885850497787,-0.6879621468882179,-0.3277402445079268,-0.5691247750373111,-0.7136478852107949,-0.6752872127379277,-0.6965463252434999,-0.37975484531183007,11.080453532720796,11.080453532720796,15.917811379589281,15.917811379589281,15.971158287776987,15.971158287776987,13.232491023335541,13.232491023335541,5.931375817323499,5.931375817323499,11.89059409228284,15.325688048572928,14.40012217790229,14.950308837034285,7.233591729003109,11.78467616252631,15.71491848863117,14.58350670312555,15.202672622507933,8.00305467994157,212.6461340276822,212.6461340276822,0.0,236.27348225298022,0.0,212.6461340276822,236.27348225298022,0,0
+2017/02/03 12:00:00,228.60482498530286,0,1277.210999679912,0,0,0,0.0,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.2902741270711421,20.773887990855226,0,0,162.94548070333283,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4262.430452086954,0.0,5607.68805727578,0.0,5378.164641802737,0.0,5510.796845350787,0.0,0.0,0.0,3795.674223378045,0.0,5374.522916580556,0.0,5070.834260684031,0.0,5232.09090628296,0.0,0.0,0,0,0,0,0,0,0,0,0.06799965966166072,0.0021514618320221408,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5072240962679685,-0.5072240962679685,-0.6037748519048148,-0.6037748519048148,-0.6426127738521085,-0.6426127738521085,-0.5082491587231474,-0.5082491587231474,-0.10874866034365216,-0.10874866034365216,-0.5768139599566484,-0.6703008598021071,-0.6408431656261628,-0.6671534822340122,-0.3156774439848807,-0.5750536414824654,-0.6779857812306173,-0.6430831741536254,-0.673028924120404,-0.3575517287317974,10.37834265332178,10.37834265332178,12.644425121863932,12.644425121863932,13.670013692196264,13.670013692196264,10.400280475394325,10.400280475394325,5.244938923332995,5.244938923332995,11.970964931486918,14.441110939655132,13.621860921802693,14.35178511329498,7.071563718257252,11.928090642030654,14.661018759070032,13.682836592092741,14.518883200322634,7.6605150665118344,228.60482498530286,228.60482498530286,0.0,254.00536109478094,0.0,228.60482498530286,254.00536109478094,0,0
+2017/02/03 13:00:00,207.80861119166613,0,1191.9806328880102,0,0,0,0.0,0.0,16.735683873587277,0.0,129.49988082968767,0,39.380909295966944,0.2220939655332506,18.538068024436697,0,0,150.41457472399716,562.4462992446673,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3745.920336063129,0.0,3798.223029183393,0.0,5402.482218733797,0.0,3953.408115353024,0.0,0.0,0.0,3094.9809915001942,0.0,3498.0199470716557,0.0,5050.637827425078,0.0,3660.95343409365,0.0,0.0,0,0,0,0,0,0,0,0,0.06346193180295898,0.0020078912856300573,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4237035821742398,-0.4237035821742398,-0.5355308783675867,-0.5355308783675867,-0.5533333844776225,-0.5533333844776225,-0.37959894890387647,-0.37959894890387647,-0.06661770119728616,-0.06661770119728616,-0.46592134449856387,-0.605830277781063,-0.6032198333794977,-0.6274125434646665,-0.29539257335440927,-0.4414088990777376,-0.6019024541030092,-0.5998607259612593,-0.6272704260966768,-0.32564354620550423,8.743172528169922,8.743172528169922,11.000854320493787,11.000854320493787,11.410133620203595,11.410133620203595,8.000576294636346,8.000576294636346,5.0918853946106,5.0918853946106,9.532155914789811,12.697062105478352,12.630243206194919,13.26082804235709,6.8129883455935385,9.06472867609503,12.596634863847555,12.544696115767266,13.257049580384589,7.204985872516872,207.80861119166613,207.80861119166613,0.0,230.89845687962904,0.0,207.80861119166613,230.89845687962904,0,0
+2017/02/03 14:00:00,205.56026801977404,0,1129.3366027863963,0,0,0,0.0,0.0,17.02830042034,0.0,129.2730206906943,0,39.380909295966944,0.16476348778950708,16.281298922528933,0,0,124.26913176561173,561.4380646139829,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3458.181430988747,0.0,3886.3048903806475,0.0,4664.9408749075565,0.0,3915.232793918951,0.0,0.0,0.0,3057.9985573135414,0.0,3613.3575087157787,0.0,4341.339827513491,0.0,3643.634663501549,0.0,0.0,0,0,0,0,0,0,0,0,0.06012671723949833,0.0019023674216784897,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5226070559431388,-0.5226070559431388,-0.48403275112009,-0.48403275112009,-0.5401626429907661,-0.5401626429907661,-0.3225184364650119,-0.3225184364650119,-0.08591087544586701,-0.08591087544586701,-0.5143688151569596,-0.6058882945404906,-0.5926780534532237,-0.6154945442923687,-0.29331058783109876,-0.5072654597982987,-0.6081180521289585,-0.5932205631247637,-0.6189243846503877,-0.32264383386527096,10.712336698263002,10.712336698263002,9.894147803245403,9.894147803245403,11.10601680455386,11.10601680455386,7.162695099922814,7.162695099922814,5.1528341854074995,5.1528341854074995,10.53219535596834,12.698550505712547,12.363416615639792,12.947010171827358,6.787433393991321,10.379227013202168,12.755864877035648,12.377030545873936,13.036691075369077,7.1643840754816495,205.56026801977404,205.56026801977404,0.0,228.40029779974893,0.0,205.56026801977404,228.40029779974893,0,0
+2017/02/03 15:00:00,189.62988379424328,0,1129.5522507755172,0,0,0,0.0,0.0,17.02830042034,0.0,115.5196477718057,0,39.380909295966944,0.22719176782195538,14.041859335854415,0,0,180.67528024314885,540.7379166381108,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2638.1860562322245,0.0,4626.665415166515,0.0,3741.9902226097156,0.0,4705.499056274366,0.0,0.0,0.0,2321.7305910535124,0.0,4400.4035986771,0.0,3494.972443561912,0.0,4485.066491437316,0.0,0.0,0,0,0,0,0,0,0,0,0.06013819849817103,0.0019027306806997965,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5500979795768595,-0.5500979795768595,-0.45928964737729455,-0.45928964737729455,-0.5666060429922581,-0.5666060429922581,-0.31547838741115103,-0.31547838741115103,-0.14714311220748352,-0.14714311220748352,-0.5146554313932125,-0.6000509621841918,-0.5918290717862397,-0.6174376801595828,-0.30894403010995014,-0.5105357108757858,-0.6016161246728846,-0.5941462283719159,-0.6224022492905715,-0.33881994030457696,11.334730426483816,11.334730426483816,9.40314443979419,9.40314443979419,11.724211575586367,11.724211575586367,7.068941698298957,7.068941698298957,5.448619093102195,5.448619093102195,10.538413342567964,12.54952781948279,12.342137603253391,12.997755152909818,6.98380115203264,10.449379712304946,12.589340130778211,12.400289008949144,13.12814895350337,7.3878525672002695,189.62988379424328,189.62988379424328,0.0,210.69987088249252,0.0,189.62988379424328,210.69987088249252,0,0
+2017/02/03 16:00:00,183.41892191814165,0,1152.911004899686,0,0,0,0.0,0.0,17.46605349300705,0.0,108.75639138185811,0,39.380909295966944,0.28909909025864705,14.094493454596627,0,0,204.02940852608643,540.7425424793421,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2519.8229774999472,0.0,5455.812307740341,0.0,3518.160615820475,0.0,5562.937469998675,0.0,0.0,0.0,2207.8398641540607,0.0,5229.656898640587,0.0,3313.2079362675045,0.0,5351.223838596276,0.0,2968.5467177997452,0,0,0,0,0,0,0,0,0.061381835869726696,0.00194207850024906,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5254203071563208,-0.5254203071563208,-0.46768705033050917,-0.46768705033050917,-0.5558541940878531,-0.5558541940878531,-0.33974318660535713,-0.33974318660535713,-0.19048730191636815,-0.19048730191636815,-0.5357279101619739,-0.6171926283530699,-0.6047705569896898,-0.6351334077690629,-0.3255071888976133,-0.5402961457520871,-0.6238478308712084,-0.6131436056389022,-0.6445686669297339,-0.35766038397376876,10.77452533757564,10.77452533757564,9.566824893778843,9.566824893778843,11.46919724120687,11.46919724120687,7.400942022668318,7.400942022668318,5.752325371981442,5.752325371981442,11.005308928204016,12.991346597296484,12.669901033151291,13.467418917001083,7.203131967409789,11.10906171509994,13.166318029964927,12.885834477554752,13.72339345128023,7.662140207041659,183.41892191814165,183.41892191814165,0.0,203.7988021312685,0.0,183.41892191814165,203.7988021312685,0,0
+2017/02/03 17:00:00,210.22469615945386,0,1217.1224700781934,0,0,0,0.0,0.0,21.40522441490659,0.0,131.64086955684016,0,39.380909295966944,0.34905959139141274,14.016658097894396,0,0,214.98824349773955,540.7596439173801,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2592.828445365976,0.0,5374.442011843616,0.0,3490.886826797148,0.0,5405.984947617972,0.0,0.0,0.0,2441.128208530774,0.0,5313.772868614969,0.0,3468.3145848094164,0.0,5306.928551846252,0.0,1593.9475141108524,0,0,0,0,0,0,0,0,0.06480050183769076,0.002050242708468688,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.480172290135017,-0.480172290135017,-0.4597774073520367,-0.4597774073520367,-0.579472272919949,-0.579472272919949,-0.31382921922413226,-0.31382921922413226,-0.1476932056358302,-0.1476932056358302,-0.5507782489914589,-0.6354448561538422,-0.6100311940799649,-0.6445940029465899,-0.32952535075533196,-0.5620462040084325,-0.6504529746691342,-0.6210268284890939,-0.656400846982911,-0.36201632588290394,9.815802652025056,9.815802652025056,9.412568679108318,9.412568679108318,12.035965580131702,12.035965580131702,7.047283013409796,7.047283013409796,5.4519828902494964,5.4519828902494964,11.350546868477252,13.475806753830327,12.805212859882076,13.724086004042903,7.25809340754769,11.615448246478408,13.884986723237517,13.091916583329848,14.049850975596542,7.7277054029477625,210.22469615945386,210.22469615945386,0.0,233.5829957327265,0.0,210.22469615945386,233.5829957327265,0,0
+2017/02/03 18:00:00,234.32105027575747,0,1187.0888826264436,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.2413766213309061,18.44233851149866,0,0,144.66842135336432,581.0458786100057,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3401.5384964590066,0.0,4679.80679830396,0.0,4235.586762138011,0.0,4687.556165122798,0.0,0.0,0.0,3268.518531628619,0.0,4613.56617827849,0.0,4188.896800881724,0.0,4590.428493243604,0.0,0.0,0,0,0,0,0,0,0,0,0.06320149139568115,0.001999651132685726,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44274595305437314,-0.44274595305437314,-0.44669891232232095,-0.44669891232232095,-0.5601253374535512,-0.5601253374535512,-0.27568179354417305,-0.27568179354417305,-0.10516650410946914,-0.10516650410946914,-0.5459562068057207,-0.6276768104584013,-0.6013842128814204,-0.6356708540898609,-0.31842779362499696,-0.5584120375961982,-0.6405373474167131,-0.6111778583356187,-0.6475298949421544,-0.3484278004836949,9.089558468908535,9.089558468908535,9.163416456235225,9.163416456235225,11.569900818237116,11.569900818237116,6.5783869393614225,6.5783869393614225,5.229060444580398,5.229060444580398,11.238865959767551,13.26785641550424,12.583434388466884,13.481895898529288,7.1079637810502305,11.529410199153034,13.61355307217653,12.83486629379955,13.804526253445474,7.525842134748828,234.32105027575747,234.32105027575747,0.0,260.3567225286194,0.0,234.32105027575747,260.3567225286194,0,0
+2017/02/03 19:00:00,218.79043182415188,0,1182.2755731202637,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.23022921958921438,25.883731908042,0,0,156.73593542504494,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4479.373295832695,0.0,3913.235858563048,0.0,5243.860786818079,0.0,3907.1093459127087,0.0,0.0,0.0,4385.417841157412,0.0,3849.8255295429226,0.0,5195.279446585479,0.0,3816.474350243223,0.0,0.0,0,0,0,0,0,0,0,0,0.0629452272323217,0.00199154311318789,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44046798314150026,-0.44046798314150026,-0.46133471017437505,-0.46133471017437505,-0.5473808761604527,-0.5473808761604527,-0.24637449936825886,-0.24637449936825886,-0.08905067458754264,-0.08905067458754264,-0.5313391114754077,-0.6046117210456092,-0.5831525379827373,-0.6121431521849356,-0.2942409397962305,-0.5435626836908805,-0.6165639928352153,-0.5921250969599845,-0.6231072595712216,-0.32130356217214423,9.047301433816372,9.047301433816372,9.442726624368092,9.442726624368092,11.271757122268724,11.271757122268724,6.259836825380958,6.259836825380958,5.164213654576713,5.164213654576713,10.906482848746506,12.665834203868002,12.126460939449018,12.859873617805391,6.798830196271538,11.183805022401245,12.97491853938142,12.349553673610671,13.146752688063785,7.14636648773552,218.79043182415188,218.79043182415188,0.0,243.1004798046132,0.0,218.79043182415188,243.1004798046132,0,0
+2017/02/03 20:00:00,210.75329012683187,0,1165.8167991717096,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.2236122805901724,27.0977424753112,0,0,175.7675139890351,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4773.468382578149,0.0,4108.4844269883415,0.0,5502.418761011573,0.0,4094.7301907508436,0.0,0.0,0.0,4685.814027269688,0.0,4040.446197428809,0.0,5442.522154240818,0.0,3998.9521066348157,0.0,0.0,0,0,0,0,0,0,0,0,0.062068949916177084,0.0019638183097207503,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.530369793697052,-0.530369793697052,-0.5100018741496422,-0.5100018741496422,-0.5780599900225118,-0.5780599900225118,-0.25975392730094016,-0.25975392730094016,-0.10862555641128069,-0.10862555641128069,-0.5254051642183188,-0.5933697888148142,-0.5742466098528033,-0.6005309355640251,-0.28368910845874296,-0.5390674457962501,-0.6062206672570952,-0.5842640328990627,-0.6124484796212072,-0.31055153594805474,10.884768409871057,10.884768409871057,10.437896382339375,10.437896382339375,12.001394485068914,12.001394485068914,6.400777614538313,6.400777614538313,5.244384403757948,5.244384403757948,10.774189676618164,12.380777508248542,11.908479538653594,12.561725376363768,6.67171403157333,11.081066865059256,12.707080230493489,12.153907442308395,12.867791982283407,7.004578781235338,210.75329012683187,210.75329012683187,0.0,234.1703223631465,0.0,210.75329012683187,234.1703223631465,0,0
+2017/02/03 21:00:00,212.7335409239856,0,1129.0081180817967,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.2144561260974905,24.61535563173083,0,0,174.44918541166624,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4683.923418562854,0.0,4019.5573639203003,0.0,5384.717503531072,0.0,4002.769229342548,0.0,0.0,0.0,4566.444426966071,0.0,3929.522200420365,0.0,5290.147106306269,0.0,3885.3187362609924,0.0,0.0,0,0,0,0,0,0,0,0,0.06010922847051465,0.0019018140892185238,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.593153127347269,-0.593153127347269,-0.4988436065468924,-0.4988436065468924,-0.5914486538888777,-0.5914486538888777,-0.2825319313538952,-0.2825319313538952,-0.14638866345182047,-0.14638866345182047,-0.5187458919249279,-0.582276375526804,-0.5651593297649474,-0.5892553501447456,-0.27417985088276275,-0.5332910419336329,-0.5954607779651349,-0.5756667667178141,-0.6015662709991476,-0.3006560671058242,12.375337593347083,12.375337593347083,10.20069165282571,10.20069165282571,12.332612896727866,12.332612896727866,6.658059683655537,6.658059683655537,5.444026160890473,5.444026160890473,10.627540987289322,12.104863362149317,11.689606251785676,12.277820583274135,6.561182583481354,10.950333020198556,12.43338256695543,11.94300865228405,12.588070386681991,6.878411076770249,212.7335409239856,212.7335409239856,0.0,236.37060102665066,0.0,212.7335409239856,236.37060102665066,0,0
+2017/02/03 22:00:00,199.24877891604115,0,1148.6955671301064,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.28842068482263405,27.06442078059896,0,0,229.62698697252011,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4477.151710522037,0.0,5412.022717788155,0.0,5170.37817977027,0.0,5404.152704123623,0.0,0.0,0.0,4190.530616242047,0.0,5225.873217538792,0.0,4934.884538277341,0.0,5191.548413617149,0.0,0.0,0,0,0,0,0,0,0,0,0.061157402840471414,0.0019349775956461492,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6379306015365298,-0.6379306015365298,-0.5832919151511976,-0.5832919151511976,-0.6294403294086177,-0.6294403294086177,-0.3762646712372769,-0.3762646712372769,-0.22423190890137445,-0.22423190890137445,-0.5316569419362901,-0.5966819267480188,-0.5773170462559767,-0.603347012977072,-0.2871205135904526,-0.5503374183569648,-0.6127922895360978,-0.5908045468389012,-0.6186172772215116,-0.31525731739500584,13.54290292283514,13.54290292283514,12.129899685139819,12.129899685139819,13.314836063550345,13.314836063550345,7.9478174561853905,7.9478174561853905,6.0431039518435625,6.0431039518435625,10.91361167290799,12.464191969524961,11.983242795800507,12.633491737344443,6.712535825834777,11.340295153103213,12.87671319465315,12.316500397088348,13.028640250711533,7.06603167901261,199.24877891604115,199.24877891604115,0.0,221.3875321289346,0.0,199.24877891604115,221.3875321289346,0,0
+2017/02/03 23:00:00,140.84594195427485,0,1085.8319058532873,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.5213891201168854,21.13962002638171,0,0,326.4699120021497,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1037.2133956468588,0.0,482.2474484912162,0.0,1464.143378688124,0.0,3.467871429398972,0.0,0.0,0.0,4532.3791672512125,0.0,6273.608382489441,0.0,5247.84933475306,0.0,6267.373941611918,0.0,878.7725812161385,0.0,4290.312766752818,0.0,6137.1226671520435,0.0,5091.988172797046,0.0,6104.067300441835,0.0,5425.337413710714,0,0,0,0,0,0,0,0,0.057810494950560565,0.0018290837629966186,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7432391250431734,-0.7432391250431734,-0.7187912846520513,-0.7187912846520513,-0.7496712222121574,-0.7496712222121574,-0.5971642149004961,-0.5971642149004961,-0.45646053123932284,-0.45646053123932284,-0.5561080014777058,-0.6248656763220383,-0.600361089128566,-0.6304145167631174,-0.3135911597429448,-0.5803827843219147,-0.6447968942397027,-0.617502802980351,-0.6492390272318331,-0.34837994981392756,16.631022038459037,16.631022038459037,15.87144620285251,15.87144620285251,16.835126252982846,16.835126252982846,12.476377855865323,12.476377855865323,9.348683756741593,9.348683756741593,11.475159320432255,13.193247579472072,12.55740792818223,13.340845996468715,7.0441660683987095,12.058299757488697,13.72963298335992,12.999458672789501,13.851526724566767,7.525145173715899,140.84594195427485,140.84594195427485,0.0,156.4954910603054,0.0,140.84594195427485,156.4954910603054,0,0
+2017/02/04 00:00:00,91.34549672462677,0,930.5047588858798,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.6200770105941383,11.782463452740062,0,0,358.38846953740284,518.8807605796608,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2547.6057740824886,0.0,1459.5206415606299,0.0,2963.216299118789,0.0,975.1274366118428,0.0,0.0,0.0,4159.234052131616,0.0,6841.45446932296,0.0,4930.706264783272,0.0,6832.099153062501,0.0,7945.443075756278,0.0,4138.97068507618,0.0,6793.714350563212,0.0,4911.887914290877,0.0,6756.006627289773,0.0,12288.957452576298,0,0,0,0,0,0,0,0,0.04954076259416252,0.0015674351957191512,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8196170876031595,-0.8196170876031595,-0.8047414059323035,-0.8047414059323035,-0.8317005236552723,-0.8317005236552723,-0.7357884972620636,-0.7357884972620636,-0.5710262268636963,-0.5710262268636963,-0.5793056073662682,-0.6495294512950985,-0.6205957006511849,-0.6540794799032712,-0.3431635993131638,-0.6057138780605307,-0.6724541411364668,-0.6404936231182108,-0.6756970035717462,-0.38214633353168204,19.168528421583247,19.168528421583247,18.654902662525487,18.654902662525487,19.592595957354675,19.592595957354675,16.396815903770587,16.396815903770587,11.83050463543654,11.83050463543654,12.031881291160715,13.859525861065094,13.080576388047191,13.985324445896552,7.449750994642272,12.694076350797573,14.502470371267748,13.612365590423522,14.59525699473862,8.041203725829945,91.34549672462677,91.34549672462677,0.0,101.4949963606964,0.0,91.34549672462677,101.4949963606964,0,0
+2017/02/04 01:00:00,40.8088034512672,0,590.2866236013233,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.04978558423890278,0.0348941904272429,9.538489611800994,0,0,20.506156486070555,516.5449383464367,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.37032715598019,0.0,133.7724467715175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0314272970697718,0.0009943377726544342,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8315217166497918,-0.8315217166497918,-0.8275447035320908,-0.8275447035320908,-0.8466326009559577,-0.8466326009559577,-0.7344229099504674,-0.7344229099504674,-0.22683938809012974,-0.22683938809012974,-0.8625143802223834,-0.934434845116332,-0.9066655729758553,-0.9422526960996854,-0.12843714562252803,-0.8486878005882966,-0.9283639835536734,-0.8999176144030062,-0.9363835488457648,-0.24937113740855485,19.586276096024008,19.586276096024008,19.44605645399946,19.44605645399946,20.125080598005354,20.125080598005354,16.354147893998146,16.354147893998146,6.0675574837970885,6.0675574837970885,20.70162060646045,23.441938243632137,22.358986339819225,23.75238299939653,5.341728227580731,20.199098127557065,23.202544276552118,22.10052414493856,23.51909347474519,6.290749751489017,40.8088034512672,40.8088034512672,0.0,45.34311494585245,0.0,40.8088034512672,45.34311494585245,0,0
+2017/02/04 02:00:00,23.72209285608178,0,41.729760832237396,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249974324039874,0,0,0.0,6.239408319693258,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0022217233762203653,7.029377895466874e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9211288553999922,-0.9211288553999922,-0.9323951203992059,-0.9323951203992059,-0.9560379176461503,-0.9560379176461503,-0.8320365366576917,-0.8320365366576917,-0.08101104800621038,-0.08101104800621038,-0.9654386500198048,-1.0767990996553418,-1.0563130259608553,-1.0905350984320552,-0.06329635659642388,-1.0015519607221572,-1.1126509179152624,-1.0899863272659778,-1.1254050028245002,-0.2752457627748225,22.919164177731687,22.919164177731687,23.361341205877224,23.361341205877224,24.30568257495709,24.30568257495709,19.604475823457193,19.604475823457193,5.135892939053193,5.135892939053193,24.687283403411882,29.46254441401878,28.549870600611456,30.082755938758893,5.082949972773093,26.18504242371229,31.09494613609195,30.057852238766714,31.686141910901554,6.573382526151306,23.72209285608178,23.72209285608178,0.0,26.357880951201977,0.0,23.72209285608178,26.357880951201977,0,0
+2017/02/04 03:00:00,28.344550979944547,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251878934716523,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9807566960688,-0.9807566960688,-0.9984333178430161,-0.9984333178430161,-1.0178793949027327,-1.0178793949027327,-0.8994402972517217,-0.8994402972517217,-0.0019169690823583256,-0.0019169690823583256,-1.062246582190416,-1.1784128228675508,-1.1598821869284517,-1.1939853102826714,-0.04092728175741285,-1.1103054151927363,-1.2275132266144593,-1.2072393935148413,-1.2426009668791538,-0.28220851710850586,25.316454070842028,25.316454070842028,26.053730104743465,26.053730104743465,26.878508245106744,26.878508245106744,22.082311799493525,22.082311799493525,5.000076069598521,5.000076069598521,28.812681914577198,34.19930428156894,33.3107261102824,34.954036016950454,5.034676821993543,30.986813497089145,36.60273597087037,35.601991460636754,37.35476988959317,6.654253592884103,28.344550979944547,28.344550979944547,0.0,31.493945533271717,0.0,28.344550979944547,31.493945533271717,0,0
+2017/02/04 04:00:00,23.7748987225085,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5778032988307081,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0474134969401159,-1.0474134969401159,-1.0722026737253083,-1.0722026737253083,-1.0853761230688586,-1.0853761230688586,-0.9765997900159664,-0.9765997900159664,0.06192595641934847,0.06192595641934847,-1.136454874639465,-1.2523149121485633,-1.2387427657931598,-1.268564142339474,-0.011899607327008786,-1.2066322935087122,-1.3242674797732223,-1.3080582783474621,-1.340233099992394,-0.28851485056471393,28.15806072478162,28.15806072478162,29.256476636047097,29.256476636047097,29.8490480459715,29.8490480459715,25.144815611758844,25.144815611758844,5.079396422847523,5.079396422847523,32.202664579301995,37.84212690252047,37.161884384320224,38.66273709010125,5.002931222995542,35.57220184521772,41.523169730680074,40.68366467096934,42.355344329045224,6.72926559899588,23.7748987225085,23.7748987225085,0.0,26.416554136120553,0.0,23.7748987225085,26.416554136120553,0,0
+2017/02/04 05:00:00,41.63906628506504,0,431.65653526024914,0,0,0,0.0,0.02367475745044298,4.633261998087618,9.319298099999997,23.111338313975452,0,2.3964348883744973,1.629950901935855,0.5251073252411594,0,0,342.9306539788888,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18902554144712916,1178.3194116766647,0.1691645849184831,864.3115855479709,0.5861048287644569,1414.7752508584101,0.11715759504789441,564.536960119134,0.0,0.0,2.726700969652401,4575.1971259380325,1.9258416775293095,3328.9385836468714,3.859968763250187,5269.918349523619,2.0949781364171773,3399.7226015621222,0.0,0.0,2.959439583571111,4406.642313072142,2.140874041111849,3159.3175664443024,4.369691574216879,5061.381991317179,2.5358101545161014,3230.5357378973986,0.0,0.0,0,0,0,0,0,0,0,0,0.022981713668129043,0.0007271254008837143,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9187435539535546,-0.9187435539535546,-0.928662317729012,-0.928662317729012,-0.9344299508726157,-0.9344299508726157,-0.8830249607932521,-0.8830249607932521,0.19430711087895625,0.19430711087895625,-0.7665553374194974,-0.8233220113977822,-0.811749094871057,-0.8305238796791967,0.019523978566086016,-0.8141685981894925,-0.8756965159021353,-0.8579900773356403,-0.8823933360559871,-0.2860123695441443,22.82619871814424,22.82619871814424,23.214274193577552,23.214274193577552,23.441744655639837,23.441744655639837,21.46162487471662,21.46162487471662,5.782849831048111,5.782849831048111,17.379321077985054,19.297900930921344,18.895701025681248,19.55103254190567,5.007890870497633,18.97932114939742,21.188086468069656,20.536313429607645,21.4379623280591,6.699298433573901,41.63906628506504,41.63906628506504,0.0,46.265629205627825,0.0,41.63906628506504,46.265629205627825,0,0
+2017/02/04 06:00:00,75.97218394365372,0,364.1912551794218,0,0,0,0.0,0.02023724901704691,4.633261998087618,9.319298099999997,57.911447091112116,0,2.100997785015975,1.4618648934896241,0.5250768269313056,0,0,151.24914010415694,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,329.0055864592658,0.0,307.87861099128673,0.0,502.23913118342625,0.0,98.50627234735576,0.0,0.0,2.826690940068147,3751.8087666097244,1.759003521305317,2780.3941859808274,3.2319497013477303,4412.360301672849,2.049922669996249,2849.482665889333,0.0,0.0,2.6100800105624558,3958.8893016062602,2.27816838176318,2863.847598087297,3.6194845133236413,4589.343880229529,1.8619492786801857,2929.699697169045,0.0,0.0,0,0,0,0,0,0,0,0,0.019389812184643068,0.0006134801417080884,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8229523659892839,-0.8229523659892839,-0.8339985699028372,-0.8339985699028372,-0.8355348398265948,-0.8355348398265948,-0.7972089204955699,-0.7972089204955699,0.5085715318112962,0.5085715318112962,-0.7174911898582511,-0.7589912107852322,-0.7498083114540023,-0.7643060860796151,0.08630413346702516,-0.7321597358022459,-0.7771644819026311,-0.761129829612011,-0.7815460055359763,-0.24399200767853743,19.284967350545656,19.284967350545656,19.673938634574966,19.673938634574966,19.728440394614438,19.728440394614438,18.398385340419836,18.398385340419836,10.407189117252614,10.407189117252614,15.83177314280941,17.134013195864114,16.83949568439938,17.306121574044838,5.154237053502669,16.28361102920418,17.727493926642595,17.203121656959354,17.872686513775534,6.235528617235161,75.97218394365372,75.97218394365372,0.0,84.41353771517079,0.0,75.97218394365372,84.41353771517079,0,0
+2017/02/04 07:00:00,106.58545645477648,0,857.6874692019483,0,0,0,0.1274278699908004,0.0163495335529542,8.33396954093373,13.929299233552332,80.56906512710079,0,1.8307767235712509,1.2535563364616342,0.5250120896130229,0,0,121.11631590067076,505.8838619697406,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,403.50641695756303,0.0,0.0,0.0,0.0,0.0,0.0,8.56929047322791,0.0,101.9225315324678,0.0,140.73192980770474,0.0,0.0,0.0,0.0,1.9410158962197477,3221.6652774407034,1.2196832635130097,2378.0464530098848,2.9990330131123906,3766.9395264519208,1.4253426744454978,2436.7740271671037,0.0,0.0,2.1483516802889726,3198.7952974494387,1.4968417843695834,2301.8486166612447,3.2298401860756103,3685.979822502465,1.8894250549293852,2355.0981962002807,0.0,0.0,0,0,0,0,0,0,0,0,0.045663916155138075,0.0014447744767733066,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7603563051482971,-0.7603563051482971,-0.7752117638975754,-0.7752117638975754,-0.773961310649476,-0.773961310649476,-0.726400300616652,-0.726400300616652,0.7499740536495343,0.7499740536495343,-0.7052427035329175,-0.7431623429025831,-0.7347042385896545,-0.7482359602901961,0.1620343875762252,-0.7155047951521306,-0.7568831668546522,-0.7417020206008932,-0.7611360070387925,-0.15934346999703122,17.17810301061283,17.17810301061283,17.663049060407417,17.663049060407417,17.621866094727636,17.621866094727636,16.10509838854159,16.10509838854159,16.8447794434708,16.8447794434708,15.46157994165597,16.628596289687124,16.362931504618558,16.789428635330765,5.544126092110957,15.771297883485076,17.066084119682472,16.58250902685998,17.203321560745877,5.526183650872099,106.58545645477648,106.58545645477648,0.0,118.42828494975164,0.0,106.58545645477648,118.42828494975164,0,0
+2017/02/04 08:00:00,135.4866597038357,0,967.5646700264308,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,69.33401494192633,0,39.380909295966944,0.551458047224817,0.5250334417772847,0,0,208.75681764114427,492.6302085412055,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2645.5019793396896,0.0,1582.4323579534073,0.0,2982.685480883606,0.0,1411.2018308211477,0.0,0.0,0.0,6968.376813423239,0.0,7249.929188506829,0.0,7700.89649803015,0.0,7249.090559875391,0.0,2034.4254446759157,0.0,6887.065754209077,0.0,7127.691762813388,0.0,7578.246734324092,0.0,7099.670082499086,0.0,6510.164102660894,0,0,0,0,0,0,0,0,0.051513859713808695,0.0016298626132226096,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.788506095078585,-0.788506095078585,-0.7975848687943714,-0.7975848687943714,-0.804110303864219,-0.804110303864219,-0.7644440183861553,-0.7644440183861553,0.17794967655949434,0.17794967655949434,-0.6812406865841694,-0.7229019042497492,-0.7073580055523424,-0.7276119173271781,-0.18020181341171393,-0.6930100748518215,-0.7361735809852067,-0.7147741237552089,-0.7399257991695832,-0.3100156998946539,18.105004466139533,18.105004466139533,18.41113125951081,18.41113125951081,18.633318507892568,18.633318507892568,17.310604217821947,17.310604217821947,5.65641959755942,5.65641959755942,14.754929908173267,15.997362695563183,15.525049872853955,16.142533764930718,5.673163545149549,15.098325785044665,16.408862387840955,15.749095550711033,16.52657541544933,6.9976407420640925,135.4866597038357,135.4866597038357,0.0,150.54073300426188,0.0,135.4866597038357,150.54073300426188,0,0
+2017/02/04 09:00:00,144.25494113475256,0,1085.8215108078916,0,0,0,0.0,0.0,12.524469680950402,0.0,87.89947186453183,0,39.380909295966944,0.49308567221860894,0.5250294186304929,0,0,273.7802990250341,492.6280391699603,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1794.928325835223,0.0,1099.3905416008363,0.0,2189.7736568012792,0.0,881.3245405291377,0.0,0.0,0.0,6393.105248519378,0.0,6933.6414605626815,0.0,7201.601215323062,0.0,6855.521912073456,0.0,133.54560808263474,0.0,6221.504798949185,0.0,6775.245843103033,0.0,7020.839576574024,0.0,6654.382854126423,0.0,2497.7766270320067,0,0,0,0,0,0,0,0,0.05780994151064402,0.0018290662525434383,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7795815343118481,-0.7795815343118481,-0.7919156501935617,-0.7919156501935617,-0.8006751141186021,-0.8006751141186021,-0.7632764067655593,-0.7632764067655593,-0.276527353664464,-0.276527353664464,-0.6532587342224243,-0.7060462337042681,-0.6848401053670552,-0.7039274183665648,-0.2803669480232124,-0.6650668871144942,-0.7197974698014725,-0.6942926443324412,-0.7154359880495598,-0.35337928073127545,17.807487893252457,17.807487893252457,18.219561293372294,18.219561293372294,18.516127757094736,18.516127757094736,17.272683835288547,17.272683835288547,6.588114446332781,6.588114446332781,13.962566242988629,15.485667241878275,14.859314597833048,15.422211957643427,6.632665241562663,14.29280185099752,15.902200424876227,15.13610911130776,15.769206115512375,7.598488514091088,144.25494113475256,144.25494113475256,0.0,160.28326792750283,0.0,144.25494113475256,160.28326792750283,0,0
+2017/02/04 10:00:00,184.2432472064159,0,1244.6081691713127,0,0,0,0.0,0.0,11.508635620542387,0.0,106.27511244621549,0,39.380909295966944,0.41517348307750895,23.231441158159356,0,0,272.30406024491043,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,742.4347602651728,0.0,769.2273283027132,0.0,1657.7493645797329,0.0,414.2543813319205,0.0,0.0,0.0,5370.138869058758,0.0,7024.913052950234,0.0,6483.539924298134,0.0,6859.17887516217,0.0,0.0,0.0,5046.812505242312,0.0,6828.341982580585,0.0,6226.704628701485,0.0,6596.588783368466,0.0,5060.41806090271,0,0,0,0,0,0,0,0,0.06626386081624898,0.002096542366504918,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7349164077886907,-0.7349164077886907,-0.7787830381348876,-0.7787830381348876,-0.7845394598939711,-0.7845394598939711,-0.7409345571795177,-0.7409345571795177,-0.2969861453745678,-0.2969861453745678,-0.6211877453546715,-0.6966947180237454,-0.6717347674861086,-0.6876316073338815,-0.30033868229415905,-0.6287387893508046,-0.709861036812097,-0.6804089027012387,-0.6970902882832121,-0.3617932296433921,16.36955807588616,16.36955807588616,17.781033624282443,17.781033624282443,17.97235151097661,17.97235151097661,16.558324822235903,16.558324822235903,6.8326720994728305,6.8326720994728305,13.096151336223429,15.207063169750626,14.481948930494255,14.940655069117426,6.874432955027771,13.296131072012216,15.600402961926434,14.73088752570537,15.218771686731287,7.7243277490592135,184.2432472064159,184.2432472064159,0.0,204.71471911823988,0.0,184.2432472064159,204.71471911823988,0,0
+2017/02/04 11:00:00,210.4865152208802,0,1386.833947647206,0,0,0,0.0,0.0,14.932575465546352,0.0,131.64086955684016,0,39.380909295966944,0.5456054270668182,20.55458027300558,0,0,325.8039574394433,599.6554075446891,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.674074832224946,0.0,472.51848371087146,0.0,0.0,0.0,0.0,0.0,2904.8019472732567,0.0,6982.6054756889225,0.0,4813.289910747471,0.0,6750.45229302617,0.0,2948.184851694785,0.0,2397.2700099110625,0.0,6788.522787144988,0.0,4570.837018881661,0.0,6492.748508981191,0.0,8832.634086916769,0,0,0,0,0,0,0,0,0.07383606660988784,0.0023361216795528073,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5352888956356195,-0.5352888956356195,-0.7317048718023408,-0.7317048718023408,-0.7303192130812308,-0.7303192130812308,-0.6563433569218092,-0.6563433569218092,-0.22935068437662015,-0.22935068437662015,-0.5489300821874117,-0.6882506259475025,-0.6584614308663944,-0.6732533449074637,-0.3194347678573313,-0.5394686699633132,-0.6955000787072959,-0.6617831889341236,-0.6769481662567588,-0.37256626702191825,10.995385736972139,10.995385736972139,16.269460741062304,16.269460741062304,16.226409320315895,16.226409320315895,14.048250116836911,14.048250116836911,6.091378510799245,6.091378510799245,11.307623287523029,14.958738041939938,14.10732421863895,14.525295379024868,7.121370935024643,11.09020121362694,15.171743963761344,14.200361121650118,14.631177643584465,7.889851819516494,210.4865152208802,210.4865152208802,0.0,233.87390580097798,0.0,210.4865152208802,233.87390580097798,0,0
+2017/02/04 12:00:00,217.13472843088698,0,1276.8153893918907,0,0,0,0.0,0.0,14.876918395255093,0.0,136.4899973586286,0,39.380909295966944,0.29443850587878384,22.660489672703207,0,0,162.54987041531194,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3587.2093616594734,0.0,5761.758054762372,0.0,5225.1055575623395,0.0,5662.788270541321,0.0,0.0,0.0,3043.994843678826,0.0,5471.708576067151,0.0,4843.264140634567,0.0,5339.928205362665,0.0,0.0,0,0,0,0,0,0,0,0,0.06797859707689528,0.0021507954265219953,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.429842805213964,-0.429842805213964,-0.6194145142126053,-0.6194145142126053,-0.6252124837092677,-0.6252124837092677,-0.5494734151810409,-0.5494734151810409,-0.13071074836740576,-0.13071074836740576,-0.5314648206842244,-0.6672919101762894,-0.6382539173498899,-0.6637777255018992,-0.31502942030739844,-0.5149078683491491,-0.6690133494800455,-0.6367673686937684,-0.6648919824378646,-0.35802284261134554,8.853146097308993,8.853146097308993,13.049548305725523,13.049548305725523,13.202433470908886,13.202433470908886,11.320226803610367,11.320226803610367,5.353943086578084,5.353943086578084,10.909301938642443,14.355704823333866,13.551649681071439,14.256454447341838,7.063033959464917,10.543892771065885,14.4045182246592,13.511471142480673,14.287866262000378,7.667565082414285,217.13472843088698,217.13472843088698,0.0,241.2608093676522,0.0,217.13472843088698,241.2608093676522,0,0
+2017/02/04 13:00:00,206.26868965821035,0,1321.2112906458874,0,0,0,0.0,0.0,15.081367944243603,0.0,124.80122689546741,0,39.380909295966944,0.411573921025485,23.161636399052576,0,0,242.43612418185234,599.6554075446891,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4202.244811299659,0.0,5619.550391888059,0.0,5452.933922226279,0.0,5575.572659779819,0.0,0.0,0.0,3642.237872565492,0.0,5275.9004897016575,0.0,5004.435647356974,0.0,5218.332233737556,0.0,0.0,0,0,0,0,0,0,0,0,0.07034226774399811,0.002225580318814761,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.41149183703164227,-0.41149183703164227,-0.5477754408691782,-0.5477754408691782,-0.5715636189315189,-0.5715636189315189,-0.4890975638464766,-0.4890975638464766,-0.1094218067528977,-0.1094218067528977,-0.5459000581375003,-0.6524511106988579,-0.6275722523248749,-0.6536245798930089,-0.31439713443591877,-0.5373548476435289,-0.6534140005794188,-0.6265971809752157,-0.6555358128496093,-0.352064921047266,8.529225672124,8.529225672124,11.280881943244694,11.280881943244694,11.843485196368732,11.843485196368732,9.997909780941114,9.997909780941114,5.247982230129736,5.247982230129736,11.237571464261677,13.940200400786608,13.265075253535102,13.972707057762321,7.054728495839072,11.042155933296485,13.966869336528646,13.239161980324624,14.02577851408111,7.5791030154118175,206.26868965821035,206.26868965821035,0.0,229.18743295356705,0.0,206.26868965821035,229.18743295356705,0,0
+2017/02/04 14:00:00,201.20998925488917,0,1273.8083848971107,0,0,0,0.0,0.0,14.970053803661084,0.0,122.5097643007467,0,39.380909295966944,0.43833629118631173,20.478950360873764,0,0,230.52357094562032,599.6554075446891,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4261.449441247575,0.0,5702.647029410213,0.0,5920.070161537993,0.0,5924.313088690867,0.0,0.0,0.0,3601.2090201265883,0.0,5254.383928150351,0.0,5370.425940233059,0.0,5494.987006917204,0.0,0.0,0,0,0,0,0,0,0,0,0.06781850193028494,0.0021457301276787666,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.41084838122804807,-0.41084838122804807,-0.5138554007714098,-0.5138554007714098,-0.5937594059454468,-0.5937594059454468,-0.5022959846733455,-0.5022959846733455,-0.1311745640362643,-0.1311745640362643,-0.5107649869807519,-0.6229667956778648,-0.62696675938886,-0.6520703842069817,-0.3160423380284768,-0.4944758656235483,-0.6191277817436662,-0.6263172318272174,-0.6538462122119442,-0.35073350034207834,8.518129732191284,8.518129732191284,10.521065988061068,10.521065988061068,12.390565102846878,12.390565102846878,10.273508066429926,10.273508066429926,5.356461321212095,5.356461321212095,10.454315440039792,13.143044421646039,13.248978957048749,13.929666594687504,7.076374546414499,10.109306583419482,13.042025385435366,13.231729737934813,13.978853268510008,7.559540812869145,201.20998925488917,201.20998925488917,0.0,223.56665472765462,0.0,201.20998925488917,223.56665472765462,0,0
+2017/02/04 15:00:00,185.4877675057602,0,1214.0179378551136,0,0,0,0.0,0.0,14.876918321203716,0.0,108.75639138185811,0,39.380909295966944,0.4980437334091437,18.543529570868014,0,0,243.4153552353188,562.4635287255373,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3468.133480927413,0.0,5895.197343369333,0.0,5452.575660181508,0.0,6494.039058920609,0.0,0.0,0.0,2780.2104649220764,0.0,5416.931331702335,0.0,4955.025031679316,0.0,6097.907672380503,0.0,4642.444318925307,0,0,0,0,0,0,0,0,0.06463521424258625,0.0020450131241745396,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.405161750781736,-0.405161750781736,-0.44144158707791337,-0.44144158707791337,-0.6426099888118973,-0.6426099888118973,-0.5404202223581427,-0.5404202223581427,-0.1821737526533737,-0.1821737526533737,-0.4979542619375312,-0.5827847538547603,-0.6321509016420657,-0.6597070087787393,-0.328549587464083,-0.4801531577454145,-0.5698894473092561,-0.6326037919181275,-0.6626543111394431,-0.3645672895233572,8.420838642508002,8.420838642508002,9.06533479311257,9.06533479311257,13.669937801831537,13.669937801831537,11.111892327678845,11.111892327678845,5.68799817487421,5.68799817487421,10.182017313977767,12.117390931494683,13.387308019207865,14.142154757237748,7.244683706910706,9.815415975777768,11.803087311163907,13.39944792159747,14.224838920576218,7.766477443977891,185.4877675057602,185.4877675057602,0.0,206.09751945084466,0.0,185.4877675057602,206.09751945084466,0,0
+2017/02/04 16:00:00,183.10100691019798,0,1235.0971571114849,0,0,0,0.0,0.0,15.025710799900967,0.0,106.31215624428707,0,39.380909295966944,0.516916169740335,18.43333919784844,0,0,245.90606462602204,581.0520385912054,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.746297246688215,0.0,0.0,0.0,0.0,0.0,3455.015029940326,0.0,5858.65387408841,0.0,5328.11120846888,0.0,6687.677338346112,0.0,1060.8173501141919,0.0,2810.7129647275933,0.0,5370.889630086578,0.0,4876.5843504961695,0.0,6320.9026851230465,0.0,6397.601867659093,0,0,0,0,0,0,0,0,0.0657574874893137,0.0020805210674120114,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46238491036160084,-0.46238491036160084,-0.37768361927882177,-0.37768361927882177,-0.6795574465660338,-0.6795574465660338,-0.5750358007780952,-0.5750358007780952,-0.20931670593756113,-0.20931670593756113,-0.5156625381639267,-0.5622483018116834,-0.6422078758373752,-0.6723407016260403,-0.3390898467782634,-0.5046199890612341,-0.5454123223934662,-0.6454887782849011,-0.678311101384777,-0.37747361622804504,9.46312323668053,9.46312323668053,7.970211723936401,7.970211723936401,14.70630752332383,14.70630752332383,11.92765680229725,11.92765680229725,5.908701770220901,5.908701770220901,10.560290168628256,11.620249676091817,13.658984039615362,14.499232815323381,7.391675459433884,10.322815276351392,11.226332569442818,13.74856228115543,14.670384342323445,7.966891975744531,183.10100691019798,183.10100691019798,0.0,203.44556323355332,0.0,183.10100691019798,203.44556323355332,0,0
+2017/02/04 17:00:00,195.67227538286505,0,1296.8810331957104,0,0,0,0.0,0.0,15.796363976625099,0.0,120.17895923267236,0,39.380909295966944,0.5943974026247667,16.28967027252152,0,0,293.15254761185616,542.3539029207805,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,585.5995831198513,0.0,0.0,0.0,0.0,0.0,4804.3646165204145,0.0,6639.629028855233,0.0,6381.238204607238,0.0,7581.036917184949,0.0,2828.390218977881,0.0,4018.4775541104927,0.0,6009.953997840981,0.0,5766.009729819791,0.0,7103.782877572654,0.0,9081.200257203882,0,0,0,0,0,0,0,0,0.06904690681576678,0.002184596001986573,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5108149876665883,-0.5108149876665883,-0.40093964028652157,-0.40093964028652157,-0.6913187103670007,-0.6913187103670007,-0.6182098978122889,-0.6182098978122889,-0.1640082538549777,-0.1640082538549777,-0.5498070136385206,-0.5697930904099333,-0.6589155563248973,-0.690143117550852,-0.3447683874972185,-0.5498134753554201,-0.5563903304603304,-0.6662053510492191,-0.7008186111162206,-0.3865060841129034,10.455392128775884,10.455392128775884,8.349499150202632,8.349499150202632,15.048608390754254,15.048608390754254,13.017967110564356,13.017967110564356,5.5574792924999485,5.5574792924999485,11.327971517112715,11.800765912432468,14.120015303988424,15.0141248424909,7.472822512561621,11.32812157785854,11.481794669511146,14.324960243994383,15.329458566650459,8.111378885984024,195.67227538286505,195.67227538286505,0.0,217.4136393142945,0.0,195.67227538286505,217.4136393142945,0,0
+2017/02/04 18:00:00,239.38954391104787,0,1364.090899729462,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,138.40412594678773,0,39.380909295966944,0.6279900527382328,18.61538112208332,0,0,321.65627773054143,581.0600393358469,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,597.409936515898,0.0,0.0,0.0,0.0,0.0,4945.5485299539105,0.0,7195.824787563683,0.0,6253.510192341118,0.0,7662.26129588723,0.0,4250.622356076572,0.0,4411.481410712127,0.0,6767.690784556356,0.0,5882.258993224548,0.0,7346.954735665835,0.0,9968.660420867342,0,0,0,0,0,0,0,0,0.07262520989281993,0.002297811017061535,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5853304055918971,-0.5853304055918971,-0.5484413897282031,-0.5484413897282031,-0.6974954256811625,-0.6974954256811625,-0.6470152586215925,-0.6470152586215925,-0.138246294851302,-0.138246294851302,-0.576127263880651,-0.6327624033596874,-0.6667674043720064,-0.700594553015086,-0.34881162135552524,-0.5858992060241678,-0.6369963368602305,-0.6767719796451104,-0.7144453139365262,-0.3928831489580062,12.180290117395373,12.180290117395373,11.296298180147133,11.296298180147133,15.230770386682806,15.230770386682806,13.79039876395123,13.79039876395123,5.395964755599678,5.395964755599678,11.954223779029078,13.403701667647084,14.340857360612006,15.32278975519371,7.531436137049184,12.19438274850799,13.517653464922233,14.626115260755597,15.739111772364154,8.21548750317875,239.38954391104787,239.38954391104787,0.0,265.9883821233865,0.0,239.38954391104787,265.9883821233865,0,0
+2017/02/04 19:00:00,228.8667788874303,0,1327.9978306308046,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,120.14191543460078,0,39.380909295966944,0.5861398122083792,26.396676851182637,0,0,302.45819293558594,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,775.4848277001547,0.0,7.233830406560044,0.0,0.0,0.0,7630.953050789244,0.0,6637.910302094115,0.0,8826.475741904718,0.0,7029.618774106368,0.0,0.0,0.0,7157.264524658409,0.0,6260.433321548517,0.0,8465.380610963557,0.0,6724.629805848723,0.0,308.7281465874623,0,0,0,0,0,0,0,0,0.07070358815963051,0.0022370122449042644,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6007274796640589,-0.6007274796640589,-0.6032958530859642,-0.6032958530859642,-0.7052150300574908,-0.7052150300574908,-0.674787840802827,-0.674787840802827,-0.11819188325363339,-0.11819188325363339,-0.5778437275665612,-0.633758398125047,-0.660666913629969,-0.691920187144791,-0.32777902109057533,-0.5893967687158798,-0.6409204987923742,-0.6705713557947597,-0.7054364802232129,-0.3681506100321683,12.566723034308296,12.566723034308296,12.632184882811984,12.632184882811984,15.460750874315067,15.460750874315067,14.569197598264253,14.569197598264253,5.289351977822264,5.289351977822264,11.996108264364892,13.430437854674949,14.16904278091394,15.066274544075668,7.234122525110095,12.28134715388751,13.623962395129922,14.448807910080802,15.467386207003727,7.821408528885726,228.8667788874303,228.8667788874303,0.0,254.29642098603367,0.0,228.8667788874303,254.29642098603367,0,0
+2017/02/04 20:00:00,220.27551183972267,0,1279.4519866701785,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.89738010901058,0,39.380909295966944,0.5383424659623454,27.0977424753112,0,0,289.40270148750386,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,602.5653823058701,0.0,0.0,0.0,0.0,0.0,8482.668674187507,0.0,5929.178944720629,0.0,9565.524912260638,0.0,6263.313731786176,0.0,0.0,0.0,8254.952064554094,0.0,5718.87346021387,0.0,9415.149256246472,0.0,6101.964520104732,0.0,0.0,0,0,0,0,0,0,0,0,0.06811897146893652,0.0021552367744371572,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6131007515817439,-0.6131007515817439,-0.6207844460450735,-0.6207844460450735,-0.7124886255613212,-0.7124886255613212,-0.6894675300076568,-0.6894675300076568,-0.11929571633639975,-0.11929571633639975,-0.5744727582131428,-0.6246856939692941,-0.6505825848574409,-0.6779684770980559,-0.3088809914573194,-0.5881797249177424,-0.6347231531190284,-0.6613519878412413,-0.6917768256114174,-0.3461539171001402,12.884721563149071,12.884721563149071,13.085540070492684,13.085540070492684,15.679796450808624,15.679796450808624,14.994334923545281,14.994334923545281,5.2947853375466565,5.2947853375466565,11.913972159935213,13.188482441730855,13.888562939667978,14.660520721778553,6.982988581858152,12.251026002957929,13.45637648048428,14.188256898331517,15.062062410905924,7.492829871478946,220.27551183972267,220.27551183972267,0.0,244.75056871080295,0.0,220.27551183972267,244.75056871080295,0,0
+2017/02/04 21:00:00,201.0971253088824,0,1234.0693717938364,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,0.4591618675721514,24.006328258398902,0,0,279.5104391237061,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,127.91903314676668,0.0,54.37383555799455,0.0,1296.4282787934071,0.0,403.69349500878275,0.0,0.0,0.0,7618.080968264441,0.0,6702.643611215664,0.0,8640.649000162137,0.0,7019.918607522017,0.0,0.0,0.0,7528.636965794424,0.0,6597.962924709191,0.0,8632.028165637917,0.0,6954.0458517140205,0.0,1430.0803104393624,0,0,0,0,0,0,0,0,0.06570276743771467,0.0020787897631224404,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6638168208387096,-0.6638168208387096,-0.6696979286883729,-0.6696979286883729,-0.7297592661318991,-0.7297592661318991,-0.7126931375097275,-0.7126931375097275,-0.16900784673492403,-0.16900784673492403,-0.5843015952094478,-0.6327509484309938,-0.6553877384406331,-0.6820025499117804,-0.31054439029521824,-0.6037343178853563,-0.648334921824907,-0.6699908360498402,-0.6990927404811756,-0.34977154200768784,14.257555666550886,14.257555666550886,14.42396591918201,14.42396591918201,16.20903558522531,16.20903558522531,15.68598833249709,15.68598833249709,5.592028330052429,5.592028330052429,12.154835917037559,13.403394425265404,14.021661100107664,14.77697752344308,7.004486178913254,12.643388938037688,13.826648401387004,14.43229310177125,15.2781461136654,7.54545393982788,201.0971253088824,201.0971253088824,0.0,223.44125034320265,0.0,201.0971253088824,223.44125034320265,0,0
+2017/02/04 22:00:00,197.23624573278894,0,1253.5303729706768,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,0.4969846035074657,27.0977424753112,0,0,334.46179281309054,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,942.1603197713359,0.0,558.4595460970397,0.0,1981.7437550635507,0.0,866.4083856788232,0.0,0.0,0.0,7800.043810094813,0.0,7183.050893002211,0.0,8792.93169554256,0.0,7483.295979140988,0.0,0.0,0.0,7673.970945002385,0.0,7084.33809004202,0.0,8761.13262098698,0.0,7400.302014952325,0.0,4458.392446882675,0,0,0,0,0,0,0,0,0.06673888555526297,0.0021115718181277635,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7048635060176368,-0.7048635060176368,-0.7100932434281814,-0.7100932434281814,-0.7507399283269236,-0.7507399283269236,-0.7361035798377714,-0.7361035798377714,-0.2288369116306469,-0.2288369116306469,-0.5929946218271669,-0.6410616091507056,-0.6600874221469638,-0.6864832499583101,-0.3095174246304856,-0.6165149884622971,-0.6599091816247931,-0.6768906182068557,-0.7052770340039335,-0.35076343441674857,15.450222470366526,15.450222470366526,15.60740717416924,15.60740717416924,16.869210336637295,16.869210336637295,16.406672084716362,16.406672084716362,6.086483572795316,6.086483572795316,12.371359142674962,13.627797636324303,14.152805791720581,14.907152748662924,6.991199947447939,12.973638634431708,14.14781452939782,14.62952396353198,15.462608491289146,7.559979797497277,197.23624573278894,197.23624573278894,0.0,219.15138414754327,0.0,197.23624573278894,219.15138414754327,0,0
+2017/02/04 23:00:00,140.88472671307218,0,1207.0425727086117,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,0.7550012088940702,18.69037389975267,0,0,466.273333147517,581.062653254646,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2642.579842664431,0.0,1601.4077510310162,0.0,3559.843830037722,0.0,1871.5276051417572,0.0,0.0,0.0,7546.436128330046,0.0,7662.044385971583,0.0,8551.458923607162,0.0,7955.288398195215,0.0,4807.944983825127,0.0,7463.016262523984,0.0,7581.901398086338,0.0,8529.773413437666,0.0,7874.962154557314,0.0,9846.866071336819,0,0,0,0,0,0,0,0,0.06426384063548704,0.0020332631221146786,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7883943784081544,-0.7883943784081544,-0.7918731144932258,-0.7918731144932258,-0.82707394153033,-0.82707394153033,-0.8080555648990498,-0.8080555648990498,-0.44765658731944075,-0.44765658731944075,-0.6118560517642464,-0.6606935630571544,-0.6749644605177375,-0.7021656878480839,-0.3301050597968781,-0.6397176780074211,-0.683671414774283,-0.6950744575261855,-0.7237446677022336,-0.3747648688551601,18.10125927191612,18.10125927191612,18.218129108459323,18.218129108459323,19.429502443562754,19.429502443562754,18.768525512775454,18.768525512775454,9.181410975910836,9.181410975910836,12.852431643752723,14.16978983112503,14.574257261929134,15.369598311437755,7.266079349663229,13.591305958955388,14.825360642318302,15.159175474958545,16.02326806800393,7.924240503448971,140.88472671307218,140.88472671307218,0.0,156.53858523674685,0.0,140.88472671307218,156.53858523674685,0,0
+2017/02/05 00:00:00,93.88776829155321,0,1119.1094274894874,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.8824825477108491,14.062329482549789,0,0,525.1015143945701,540.7723843261009,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4305.560737765067,0.0,2618.5011327200673,0.0,5061.595943077629,0.0,2830.683210667373,0.0,0.0,0.0,6697.573967138233,0.0,8530.716127062215,0.0,7732.593914445348,0.0,8820.75284791523,0.0,13912.354437126025,0.0,6817.068302006367,0.0,8546.558956099805,0.0,7846.769610442985,0.0,8827.481657147024,0.0,18753.66419333694,0,0,0,0,0,0,0,0,0.05958221485135398,0.0018851397456670763,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.866176783312711,-0.866176783312711,-0.8667617251765198,-0.8667617251765198,-0.9045437704112624,-0.9045437704112624,-0.8801517681308604,-0.8801517681308604,-0.6035865351352768,-0.6035865351352768,-0.6361300172292397,-0.6869142147306453,-0.6944271472733028,-0.7250751577522494,-0.359635479786539,-0.6674556532916566,-0.7140831293562752,-0.7179645245739426,-0.7499104882411727,-0.40842333615760396,20.8360563499578,20.8360563499578,20.857579132421478,20.857579132421478,22.277517444766275,22.277517444766275,21.35411856275465,21.35411856275465,12.63961172527327,12.63961172527327,13.49427412147989,14.91971908550866,15.140075562125986,16.064227685954577,7.691769032972843,14.36034242627629,15.728120015364084,15.846208767740364,16.84275287831558,8.476470910928,93.88776829155321,93.88776829155321,0.0,104.31974254617023,0.0,93.88776829155321,104.31974254617023,0,0
+2017/02/05 01:00:00,43.397088429184336,0,656.2971376714604,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.22801393165826941,0.1566836923271372,11.826756740398867,0,0,84.11337677393793,518.9482321287063,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,204.04266820146916,0.0,213.79789842717378,0.0,628.8272357029748,0.0,366.37030596510994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03494174573329374,0.001105532478595467,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8768626418785614,-0.8768626418785614,-0.8795317544288328,-0.8795317544288328,-0.9122957632130453,-0.9122957632130453,-0.8913045599743288,-0.8913045599743288,-0.28424472937489664,-0.28424472937489664,-0.9130108071708428,-0.9687216018235553,-0.9887672342910643,-1.0257576461993885,-0.15007469319441116,-0.9347751575313201,-0.9976711930154077,-1.0172268534909938,-1.0540505597402845,-0.2780695409535788,21.231465211301412,21.231465211301412,21.3309639254186,21.3309639254186,22.57604648523754,22.57604648523754,21.773313421960722,21.773313421960722,6.678290272266992,6.678290272266992,22.603705141160574,24.821360123458874,25.649084846145584,27.216684528603537,5.466690933098988,23.455401374851093,26.021696508278524,26.85060135512269,28.449992898762133,6.605933732590941,43.397088429184336,43.397088429184336,0.0,48.21898714353815,0.0,43.397088429184336,48.21898714353815,0,0
+2017/02/05 02:00:00,23.72195788989619,0,52.9627390130177,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248624662183976,0,0,0.0,17.472386500473565,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028197754549069347,8.92157298476246e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9706611871089474,-0.9706611871089474,-0.9990184542398145,-0.9990184542398145,-1.0659749605451951,-1.0659749605451951,-1.0394759985644921,-1.0394759985644921,-0.11473565044434875,-0.11473565044434875,-1.0048399091773308,-1.081744703107502,-1.140619767959157,-1.17714308964149,-0.08327747705391482,-1.0908193454646393,-1.1623678431316558,-1.221894280967215,-1.2589340248029377,-0.27922943046638093,24.90077041045646,24.90077041045646,26.078339501721246,26.078339501721246,28.978463350371726,28.978463350371726,27.811025740962975,27.811025740962975,5.272666923512418,5.272666923512418,26.323882350439007,29.685093513253776,32.39837817064556,34.13808457540176,5.143605382022756,30.095659389777495,33.429305406724396,36.32423553578488,38.17560160697677,6.619401819065914,23.72195788989619,23.72195788989619,0.0,26.357730988773543,0.0,23.72195788989619,26.357730988773543,0,0
+2017/02/05 03:00:00,28.3443030745626,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5249399880897059,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0192847096249826,-1.0192847096249826,-1.0488702105020569,-1.0488702105020569,-1.11288067267859,-1.11288067267859,-1.0921216949392774,-1.0921216949392774,-0.031785050614662316,-0.031785050614662316,-1.0881864330107651,-1.168501962432651,-1.2304237036016816,-1.2693550744196003,-0.06237603122305032,-1.1960734222894107,-1.2711138567407856,-1.3379100749576784,-1.3768288455544115,-0.28894540838059385,26.93866254282773,26.93866254282773,28.221998146376848,28.221998146376848,31.10554822355587,31.10554822355587,30.154815378063276,30.154815378063276,5.020914445327236,5.020914445327236,29.97624443857883,33.7227529657672,36.74733065252152,38.7028479804243,5.080554916949254,35.05578105486616,38.79209672937523,42.23394726576882,44.28093175254752,6.734448177743303,28.3443030745626,28.3443030745626,0.0,31.49367008284733,0.0,28.3443030745626,31.49367008284733,0,0
+2017/02/05 04:00:00,23.72212532189102,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250298982132324,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0596184264457025,-1.0596184264457025,-1.0912841193010803,-1.0912841193010803,-1.1519457144198986,-1.1519457144198986,-1.136610591260002,-1.136610591260002,0.037105511729626735,0.037105511729626735,-1.1412955290843156,-1.2208260995901328,-1.2885467955142018,-1.3274406241511005,-0.03393463288789869,-1.282755220011701,-1.3575037454701901,-1.4289714046681097,-1.4693747593921729,-0.2873819146548063,28.696119290292103,28.696119290292103,30.11676388660365,30.11676388660365,32.933403141824414,32.933403141824414,32.20997183982374,32.20997183982374,5.028502603334687,5.028502603334687,32.43018562095273,36.2713896527349,39.68073997165527,41.688155412452794,5.023839085974217,39.384715869168076,43.261088745197206,47.061685666629536,49.239652606969976,6.71566596178279,23.72212532189102,23.72212532189102,0.0,26.357917024323356,0.0,23.72212532189102,26.357917024323356,0,0
+2017/02/05 05:00:00,41.78940576105623,0,403.31237425593406,0,0,0,0.0,0.02635137527956841,4.633261998087618,9.319298099999997,23.111338313975452,0,2.4900928020493547,1.6840547867475668,0.5250083849166609,0,0,314.5864929745737,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2094123304246667,1350.1647410510168,0.12405746888138806,978.9076213027857,1.549593643652274,1849.8854572530724,0.2578669766781291,1159.0360242763236,0.0,0.0,3.337995258329721,4138.399299304758,1.937749296920339,2830.1263854181525,4.466422922302377,5012.60139607814,2.29920415918274,3226.0558447790836,0.0,0.0,4.0034563120876046,4921.1501497670915,1.9026649479626276,3291.811387145684,3.1744806249439947,5808.467250993577,2.088471338202535,3709.23181389228,0.0,0.0,0,0,0,0,0,0,0,0,0.02147264954155029,0.0006793796638232308,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9185028925747972,-0.9185028925747972,-0.9309920301896012,-0.9309920301896012,-0.9580106813523595,-0.9580106813523595,-0.9480217925787806,-0.9480217925787806,0.16867243747900462,0.16867243747900462,-0.8006140499662322,-0.8451106801450577,-0.8625202870001749,-0.8893356962622505,-0.0029501453463638538,-0.875131009331478,-0.9221779333663856,-0.9338895531199629,-0.9650651271763525,-0.28627146537075704,22.816831808657852,22.816831808657852,23.305996242700843,23.305996242700843,24.385475495830732,24.385475495830732,23.98302590022884,23.98302590022884,5.589677909433448,5.589677909433448,18.51404908150691,20.070382333108697,20.70183697986208,21.69894081795195,5.000180163923716,21.167070313494648,22.96012361054001,23.420375512468922,24.672055225856923,6.7023888334291115,41.78940576105623,41.78940576105623,0.0,46.432673067840255,0.0,41.78940576105623,46.432673067840255,0,0
+2017/02/05 06:00:00,76.20535404267947,0,376.00629404611516,0,0,0,0.0,0.021010481380894702,4.633261998087618,9.319298099999997,57.911447091112116,0,2.2463321358697543,1.5488986896831796,0.5251055465459131,0,0,163.06417897085032,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,471.5070861980156,0.0,373.66809056971454,0.0,738.4118989815742,0.0,479.91192874339947,0.0,0.0,2.573748651292135,3623.2423874300493,1.8907052054131555,2540.4582313033607,3.624745914022469,4570.784747426024,1.8314040240776421,2953.943239499319,0.0,0.0,3.5889665956517547,4457.048208408457,1.9454728317704166,3015.7354889114395,2.774633249239514,5357.971486221821,2.7808049094276157,3427.4977999977446,0.0,0.0,0,0,0,0,0,0,0,0,0.020018853605383878,0.0006333825737822871,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8145774661037355,-0.8145774661037355,-0.8290979267985896,-0.8290979267985896,-0.85005796958229,-0.85005796958229,-0.843645678130432,-0.843645678130432,0.4838097320524322,0.4838097320524322,-0.7513208363518716,-0.7879204184368056,-0.7985620303530712,-0.8208243286475453,0.06364490899539087,-0.7839512150354779,-0.8214557951400996,-0.821929947062596,-0.8489743667158499,-0.23953650151429723,18.993476344092585,18.993476344092585,19.50074036344516,19.50074036344516,20.248542098330347,20.248542098330347,20.017820917503386,20.017820917503386,9.889604297531562,9.889604297531562,16.88775766980048,18.08537611089342,18.444288334678234,19.210620789020567,5.083866210933067,17.95273623187822,19.232662273959008,19.24922367436116,20.20943270450367,6.1907096449648975,76.20535404267947,76.20535404267947,0.0,84.67261560297719,0.0,76.20535404267947,84.67261560297719,0,0
+2017/02/05 07:00:00,106.74864645408624,0,862.0082365857219,0,0,0,0.11396227714599837,0.0174518294654816,8.33396954093373,13.929299233552332,80.56906512710079,0,1.9062802873261049,1.3009695525815486,0.5776486059802806,0,0,125.45553870805634,505.8654065461287,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,361.36320095168827,0.0,0.0,0.0,0.0,0.0,0.0,35.38992490103303,0.0,117.06697193561683,0.0,298.07404924599706,0.0,217.5074760026466,0.0,0.0,2.655631056011316,2892.023357647913,1.9380240405810885,2030.538924878679,3.3029251380254814,3644.1127548139157,1.551602615167667,2366.8928440576847,0.0,0.0,3.0354292343066236,3474.7263595795307,1.4055603667031087,2347.7857452367866,2.250750825101022,4139.976352109601,1.3119061895852913,2656.0269270607337,0.0,0.0,0,0,0,0,0,0,0,0,0.045893957011071386,0.0014520528091033326,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7324571452592741,-0.7324571452592741,-0.749005639839507,-0.749005639839507,-0.7661938316964844,-0.7661938316964844,-0.764244875122882,-0.764244875122882,0.725334600941192,0.725334600941192,-0.7355253473853357,-0.7695805632529579,-0.7778736287308049,-0.8000912195560693,0.13996676305904324,-0.7626813773509807,-0.7980720035225117,-0.7958179735799545,-0.8228236777921273,-0.129541430765187,16.292867897577125,16.292867897577125,16.81392365683344,16.81392365683344,17.367541689835022,17.367541689835022,17.30413254754177,17.30413254754177,16.072223612246646,16.072223612246646,16.38858751063802,17.478114367688775,17.750937838856686,18.49625794858315,5.405890133194845,17.253381535487165,18.427655676289575,18.351279579986056,19.280466006303953,5.347634116867582,106.74864645408624,106.74864645408624,0.0,118.60960717120693,0.0,106.74864645408624,118.60960717120693,0,0
+2017/02/05 08:00:00,135.7899811419096,0,1112.334821891823,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,69.33401494192633,0,39.38090929596693,0.8547470762220543,0.5250658508539597,0,0,353.48880231168397,492.6683757360581,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4048.470601626749,0.0,2457.0554231097567,0.0,4581.804481298285,0.0,2598.1028128582866,0.0,0.0,0.0,8602.212177902742,0.0,8845.250442272129,0.0,9556.193407458615,0.0,9105.910164895067,0.0,9602.186880350002,0.0,9099.731079940342,0.0,9099.337660060937,0.0,9966.201936165935,0.0,9303.691412935887,0.0,13120.0163479328,0,0,0,0,0,0,0,0,0.0592215298313388,0.0018737279230519946,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.785458728336813,-0.785458728336813,-0.7961596056071465,-0.7961596056071465,-0.8225122402556064,-0.8225122402556064,-0.8103839692030966,-0.8103839692030966,0.04959839736238153,0.04959839736238153,-0.7190589289858798,-0.7588737675163426,-0.7570787436658466,-0.7854110619724478,-0.21612693955859757,-0.7449179513140086,-0.7874656325885312,-0.7774187694664673,-0.8094130375570481,-0.3302395656162917,18.00303435977466,18.00303435977466,18.362841685998376,18.362841685998376,19.269575209368426,19.269575209368426,18.8486300129819,18.8486300129819,5.05092887141717,5.05092887141717,15.879622542116863,17.130223735165387,17.07237833945962,18.001442494798724,5.9689132902181825,16.68412375248849,18.070144472392826,17.735898038601604,18.81519907371917,7.267934309722406,135.7899811419096,135.7899811419096,0.0,150.877756824344,0.0,135.7899811419096,150.877756824344,0,0
+2017/02/05 09:00:00,150.99338501887664,0,1225.9244654350096,0,0,0,0.0,0.0,9.992678281614394,0.0,96.91714705112861,0,39.380909295966944,0.7455761280622193,0.5250990596502043,0,0,413.85377039756594,492.6575224245465,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1921.3518307278857,0.0,1854.9507506484802,0.0,3608.1491622761396,0.0,1496.9500446723428,0.0,0.0,0.0,6844.269777465849,0.0,8205.922299039124,0.0,8743.606397661873,0.0,7902.093839127288,0.0,2296.381000712346,0.0,6931.869953155694,0.0,8344.689400534931,0.0,8967.131593427539,0.0,7870.544143793381,0.0,9627.697112741078,0,0,0,0,0,0,0,0,0.06526912659018429,0.0020650696689791847,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6914487717385379,-0.6914487717385379,-0.7859667253495839,-0.7859667253495839,-0.8129393376915881,-0.8129393376915881,-0.7295908341693956,-0.7295908341693956,-0.24450407029425017,-0.24450407029425017,-0.6459663860117235,-0.7430384907365004,-0.7374359050280846,-0.7245754284233334,-0.30080014374119335,-0.6594791681836603,-0.7671949634100821,-0.7541639463802005,-0.7362283544414732,-0.379951076004349,15.052427137292668,15.052427137292668,18.020005414291433,18.020005414291433,18.93680601121696,18.93680601121696,16.20381220519201,16.20381220519201,6.240732996092149,6.240732996092149,13.761641289727109,16.624684008503735,16.44839602534327,16.048834406303342,6.880218348144695,14.135778546088062,17.400176468675582,16.978741387270134,16.41057637038486,8.006175759898525,150.99338501887664,150.99338501887664,0.0,167.77042779875183,0.0,150.99338501887664,167.77042779875183,0,0
+2017/02/05 10:00:00,150.58350424649825,0,1305.2401560703456,0,0,0,0.0,0.0,9.390899105965717,0.0,97.06762091869685,0,39.380909295966944,0.7871129291248764,0.5249867942895797,0,0,439.94306355612343,492.6483911325088,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1576.955918223994,0.0,3092.0537723048783,0.0,845.5064486435264,0.0,0.0,0.0,3879.3757694867495,0.0,8739.013045262513,0.0,6422.2254872741205,0.0,8283.069318535598,0.0,11993.465570964285,0.0,3685.1397717467357,0.0,8828.425836150838,0.0,6569.610415141305,0.0,8180.323726506121,0.0,18258.4031001255,0,0,0,0,0,0,0,0,0.0694919527092704,0.0021986769438344495,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6199335360692765,-0.6199335360692765,-0.7801738809091369,-0.7801738809091369,-0.8017154050459083,-0.8017154050459083,-0.7177098100428825,-0.7177098100428825,-0.28560045706752735,-0.28560045706752735,-0.5875747085973598,-0.7400666061274929,-0.7272702535921388,-0.7098072701018567,-0.33403924433306953,-0.5886362786535021,-0.7597451043636207,-0.740281389140249,-0.7167565855995064,-0.40543854612693536,13.063174812352457,13.063174812352457,17.827129931412486,17.827129931412486,18.551564377297154,18.551564377297154,15.838439358631106,15.838439358631106,6.694391125878113,6.694391125878113,12.23597668464437,16.531004517532097,16.131970973283686,15.598781490128133,7.320652586675479,12.262392944473973,17.158352600296553,16.537762185280258,15.809388505130556,8.425542204488423,150.58350424649825,150.58350424649825,0.0,167.31500471833138,0.0,150.58350424649825,167.31500471833138,0,0
+2017/02/05 11:00:00,204.95149764947104,0,1444.4939365290718,0,0,0,0.0,0.0,13.065493553185489,0.0,124.87761316689259,0,39.380909295966944,0.6990220263443239,23.496484404627374,0,0,383.46394632130887,599.6554075446891,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,721.6324418978156,0.0,1710.7171787470745,0.0,198.06171213040898,0.0,0.0,0.0,2989.9864139650026,0.0,8043.041553728114,0.0,5724.305512073802,0.0,7731.950959746072,0.0,9575.108276596342,0.0,2656.280267372581,0.0,8005.56479325199,0.0,5669.34372416283,0.0,7545.908717593747,0.0,15078.383851907207,0,0,0,0,0,0,0,0,0.07690592712709653,0.002433249926447991,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49573357066404095,-0.49573357066404095,-0.7353946087848257,-0.7353946087848257,-0.7512813032319202,-0.7512813032319202,-0.6986936130345961,-0.6986936130345961,-0.2274102056009871,-0.2274102056009871,-0.524944827904816,-0.7257786844727931,-0.7091209651163338,-0.7061852322070568,-0.3471799556111774,-0.5064006859548433,-0.7385847258276198,-0.7151095944083304,-0.709406957669832,-0.40619578005005225,10.135536722901236,10.135536722901236,16.38450057122772,16.38450057122772,16.88649499115813,16.88649499115813,15.266297826558528,15.266297826558528,6.072948775610499,6.072948775610499,10.76399052050678,16.085916793898903,15.578095169200793,15.489836804431164,7.507698691582277,10.360753382060793,16.48443441620175,15.759286375514435,15.586712970150586,8.438426582453005,204.95149764947104,204.95149764947104,0.0,227.72388627719005,0.0,204.95149764947104,227.72388627719005,0,0
+2017/02/05 12:00:00,223.09000734497948,0,1437.6063112856598,0,0,0,0.0,0.0,13.016794053187484,0.0,143.25325374857618,0,39.380909295966944,0.6221417442436373,23.384933300550877,0,0,323.3407923090807,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,459.7156294713259,0.0,0.0,0.0,0.0,0.0,3070.2502985353526,0.0,7284.728216696862,0.0,5619.373159694693,0.0,7150.647267637785,0.0,5253.986592265617,0.0,2759.9690089796413,0.0,7213.268196611544,0.0,5521.059313900412,0.0,6990.236607540544,0.0,10051.664600866658,0,0,0,0,0,0,0,0,0.07653922485742733,0.002421647722248225,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4502071603922876,-0.4502071603922876,-0.69421000479018,-0.69421000479018,-0.706831924549303,-0.706831924549303,-0.6571567125521623,-0.6571567125521623,-0.14508443654118675,-0.14508443654118675,-0.5279440342852758,-0.7098679211577069,-0.6912700152746282,-0.7043591162840549,-0.35117147952847544,-0.510754124028794,-0.7182339115171344,-0.6937265460190197,-0.7075821428122407,-0.4028650231042791,9.229528146742851,9.229528146742851,15.133672483923732,15.133672483923732,15.509246707236201,15.509246707236201,14.07091200439912,14.07091200439912,5.436142180855867,5.436142180855867,10.830605396609243,15.60061058586679,15.047178836746767,15.435124939373068,7.56596759932809,10.454081537184237,15.854428761218998,15.119423610704146,15.531786451348964,8.381937028736559,223.09000734497948,223.09000734497948,0.0,247.87778593886608,0.0,223.09000734497948,247.87778593886608,0,0
+2017/02/05 13:00:00,199.50271686192443,0,1292.9067596468806,0,0,0,0.0,0.0,12.968094553189474,0.0,124.80122689546741,0,39.380909295966944,0.43953627418772606,18.480974640658552,0,0,232.72879816852634,581.0582025590085,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3477.063956617246,0.0,6065.372726918698,0.0,6064.793483791476,0.0,6166.988771327931,0.0,0.0,0.0,3093.1526695822145,0.0,5899.78636083079,0.0,5873.454258376169,0.0,5968.743332462515,0.0,2407.9429238089156,0,0,0,0,0,0,0,0,0.06883531354825617,0.0021779013384952113,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4506502197925009,-0.4506502197925009,-0.5939414601108141,-0.5939414601108141,-0.6643176663765804,-0.6643176663765804,-0.5933108973805319,-0.5933108973805319,-0.1263264612688923,-0.1263264612688923,-0.49219924948631205,-0.6650917777911067,-0.6650620147133749,-0.6804228302811148,-0.34155849718422926,-0.467238995447618,-0.6644192865567576,-0.6628153430902973,-0.6792532104541723,-0.38494680713364593,9.237915093973157,9.237915093973157,12.39514075453846,12.39514075453846,14.271669106699648,14.271669106699648,12.37929866626682,12.37929866626682,5.33058103427804,5.33058103427804,10.062000246794895,14.29350434213849,14.292664340052866,14.731289850501184,7.426784437156741,9.558014783479237,14.27453401072475,14.229367382532189,14.697532380955991,8.086187301190932,199.50271686192443,199.50271686192443,0.0,221.66968540213824,0.0,199.50271686192443,221.66968540213824,0,0
+2017/02/05 14:00:00,199.49234619447682,0,1189.2056081703743,0,0,0,0.0,0.0,13.01679398839311,0.0,124.7641830973959,0,39.380909295966944,0.3387341085165147,18.559750501750052,0,0,183.09852707010305,562.4776746934697,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2831.4980893299517,0.0,5481.967607171318,0.0,5425.678000493706,0.0,5786.624235741265,0.0,0.0,0.0,2601.7020231704896,0.0,5399.261804261288,0.0,5416.052353389124,0.0,5717.921859788283,0.0,1635.634493409728,0,0,0,0,0,0,0,0,0.06331418743151275,0.002003216756703821,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.529786769760995,-0.529786769760995,-0.5678670933413303,-0.5678670933413303,-0.6341143891904917,-0.6341143891904917,-0.551314064022732,-0.551314064022732,-0.14363280377783957,-0.14363280377783957,-0.4814609555463631,-0.6294772589100831,-0.6514801877950386,-0.668881561804705,-0.3378358309844501,-0.4582629216444843,-0.621970358570611,-0.6489969182372892,-0.6674898997070744,-0.37673667956638424,10.871727234093157,10.871727234093157,11.75444990516499,11.75444990516499,13.44000441227395,13.44000441227395,11.363018830981531,11.363018830981531,5.4274504083300315,5.4274504083300315,9.841883650500264,13.315821297442696,13.913349668251314,14.400776697120492,7.373940080162598,9.383340064419997,13.116762921540797,13.84486112249428,14.36131251479297,7.955257299142929,199.49234619447682,199.49234619447682,0.0,221.65816243830758,0.0,199.49234619447682,221.65816243830758,0,0
+2017/02/05 15:00:00,181.4807787061735,0,1284.5094421391045,0,0,0,0.0,0.0,13.01679398839311,0.0,111.01081017850728,0,39.380909295966944,0.6239238650250098,14.016366175826853,0,0,335.5802100662416,540.7901781786055,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1107.7636969471218,0.0,209.0154427126409,0.0,0.0,0.0,3928.9482315815803,0.0,7144.524704083253,0.0,6272.965854792928,0.0,7528.199278926227,0.0,5071.149976033535,0.0,3168.004618170731,0.0,6664.55166876357,0.0,5702.390254494536,0.0,7077.384484457025,0.0,10773.319686603103,0,0,0,0,0,0,0,0,0.06838823414419312,0.0021637560577907086,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5470535492839181,-0.5470535492839181,-0.5764894609701181,-0.5764894609701181,-0.681976771327251,-0.681976771327251,-0.6314873673207261,-0.6314873673207261,-0.19886110326091813,-0.19886110326091813,-0.5103128857114702,-0.6342007710576396,-0.6667228129577486,-0.6857295080262307,-0.35287120630721713,-0.498955971603451,-0.6317336899018068,-0.6706361162407135,-0.6910576949759679,-0.39615886990931776,11.264192384099132,11.264192384099132,11.963051331759573,11.963051331759573,14.776231104847184,14.776231104847184,13.369537788705259,13.369537788705259,5.820038238746349,5.820038238746349,10.444585035052327,13.4423265833788,14.339595637382246,14.885193979130094,7.590986207075588,10.203053510781658,13.376132368296922,14.450651140218397,15.04094689401488,8.26964096250498,181.4807787061735,181.4807787061735,0.0,201.64530967352613,0.0,181.4807787061735,201.64530967352613,0,0
+2017/02/05 16:00:00,179.73532758529925,0,1315.0404573701524,0,0,0,0.0,0.0,13.410102682663197,0.0,108.75639138185811,0,39.380909295966944,0.6796566705228337,14.076292351833919,0,0,366.1357476120648,540.7656558638301,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1577.285516936317,0.0,523.7838531999885,0.0,0.0,0.0,4223.321950577718,0.0,7715.596201776626,0.0,6220.176020201868,0.0,8086.651864033184,0.0,8523.476349805087,0.0,3502.7258728077645,0.0,7210.61682704413,0.0,5659.094675189231,0.0,7636.378021870029,0.0,14679.68321744165,0,0,0,0,0,0,0,0,0.07001372800962062,0.0022151855506301436,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.578591537950662,-0.578591537950662,-0.6263795491460443,-0.6263795491460443,-0.7155230093775746,-0.7155230093775746,-0.6866368874441179,-0.6866368874441179,-0.23278216995054588,-0.23278216995054588,-0.5441660648158058,-0.654427006391222,-0.6814951233677962,-0.7014711151944978,-0.3665663085785962,-0.545297623210846,-0.6612151153457657,-0.6901021752175595,-0.7121605747953306,-0.4134106532826011,12.01439602335472,12.01439602335472,13.233383877814305,13.233383877814305,15.771851638568137,15.771851638568137,14.911631684290498,14.911631684290498,6.124355727716136,6.124355727716136,11.19766188127879,13.994969698747866,14.762290279594595,15.348891885505651,7.797054244939275,11.2236910534468,14.184416441881567,15.012924961292669,15.669868025898438,8.5624196142724,179.73532758529925,179.73532758529925,0.0,199.70591953922138,0.0,179.73532758529925,199.70591953922138,0,0
+2017/02/05 17:00:00,195.03575630000134,0,1400.7969524535804,0,0,0,0.0,0.0,12.58541987708568,0.0,124.87761316689259,0,39.380909295966944,0.721350336325181,14.038488421276659,0,0,398.66069740095134,540.7616723895552,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,144.32683983190304,0.0,1741.5984416630215,0.0,651.8603158228018,0.0,0.0,0.0,5355.65096360436,0.0,8186.591212207463,0.0,7140.186787884797,0.0,8538.665396070759,0.0,8319.031896424429,0.0,4570.97260504718,0.0,7669.632456970735,0.0,6526.078570734643,0.0,8050.993820993851,0.0,15039.73618776516,0,0,0,0,0,0,0,0,0.07457946732826995,0.0023596423600893706,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6302874243270716,-0.6302874243270716,-0.6532383961122824,-0.6532383961122824,-0.7200040545922747,-0.7200040545922747,-0.6970300046215964,-0.6970300046215964,-0.19263755159210472,-0.19263755159210472,-0.5701592033352759,-0.6696580661285887,-0.6924383720648468,-0.7122649660581453,-0.37039169609859485,-0.5823265778685714,-0.6822388041793175,-0.7041443105137123,-0.7267029690885954,-0.4186977161378305,13.337450406450102,13.337450406450102,13.96200266453802,13.96200266453802,15.908520118440862,15.908520118440862,15.21698690918548,15.21698690918548,5.769433205763335,5.769433205763335,11.809588326740595,14.422832937409183,15.08150684226419,15.673026914255104,7.856041783163576,12.106099960124823,14.783819601600072,15.42869864730784,16.11444403380787,8.654697762102828,195.03575630000134,195.03575630000134,0.0,216.70639588889037,0.0,195.03575630000134,216.70639588889037,0,0
+2017/02/05 18:00:00,222.08574722380672,0,1444.3496665908203,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,129.38645076019097,0,39.380909295966944,0.7218395979702483,18.569379617140697,0,0,401.9228654177265,581.0522185100203,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,223.8800958447114,0.0,475.4722767964898,0.0,1781.7812630643652,0.0,735.4376493461996,0.0,0.0,0.0,6172.5890651240015,0.0,8252.695873145363,0.0,7817.294758245197,0.0,8461.75865144692,0.0,6184.536480797435,0.0,5519.676380426777,0.0,7834.289762430693,0.0,7290.804923008821,0.0,8037.867052582109,0.0,12825.332971192773,0,0,0,0,0,0,0,0,0.07689824608872232,0.002433006903747957,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.669126133503465,-0.669126133503465,-0.6959885931383085,-0.6959885931383085,-0.728036382655234,-0.728036382655234,-0.7124574468010482,-0.7124574468010482,-0.16400149722774413,-0.16400149722774413,-0.5887923163747336,-0.6939640023070726,-0.6980322489792901,-0.7202112994872323,-0.36821756721071236,-0.6064859846655153,-0.7126718557241208,-0.7112603625848127,-0.737318559748392,-0.4175345643457492,14.4077208248126,14.4077208248126,15.18617931887654,15.18617931887654,16.155663422659217,16.155663422659217,15.678852629145837,15.678852629145837,5.557433306899085,5.557433306899085,12.26627993182322,15.126420845512115,15.246680063169265,15.914861851743225,7.822440167782872,12.713892547304937,15.685343913010797,15.642647020126319,16.444718105282334,8.634293804085189,222.08574722380672,222.08574722380672,0.0,246.76194135978523,0.0,222.08574722380672,246.76194135978523,0,0
+2017/02/05 19:00:00,212.8361032039453,0,1411.9359423051853,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,115.6330778413024,0,39.380909295966944,0.7016060547246797,23.093342059413423,0,0,386.39630460996676,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,617.679352297004,0.0,723.1144344299738,0.0,1979.5065086519105,0.0,895.6439072840335,0.0,0.0,0.0,7647.951148308592,0.0,7993.482915836465,0.0,9180.653525891315,0.0,8142.353450347277,0.0,1236.911778018457,0.0,6991.006726735163,0.0,7595.590872964669,0.0,8641.244419518984,0.0,7715.252469111277,0.0,7946.752359763733,0,0,0,0,0,0,0,0,0.07517251539869343,0.002378405987648964,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6934367202633873,-0.6934367202633873,-0.714752998854685,-0.714752998854685,-0.7384722641218965,-0.7384722641218965,-0.7256062968653686,-0.7256062968653686,-0.16514384176032038,-0.16514384176032038,-0.5942156152682281,-0.6939161837271137,-0.6956803377987779,-0.7166095923573627,-0.35627547285296185,-0.6144336555331406,-0.7132016962005086,-0.7085409989579402,-0.7335974032025738,-0.4044106824552038,15.110886481417552,15.110886481417552,15.748453987238932,15.748453987238932,16.480904002331783,16.480904002331783,16.08060026661974,16.08060026661974,5.565235144543365,5.565235144543365,12.402033937191192,15.125011557317748,15.177069329048578,15.804912162730147,7.641463913425952,12.919374221541716,15.701393464025216,15.56062990301109,16.328393641964894,8.408092319816944,212.8361032039453,212.8361032039453,0.0,236.48455911549476,0.0,212.8361032039453,236.48455911549476,0,0
+2017/02/05 20:00:00,201.4956072841102,0,1381.9587969967506,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,104.13412371906301,0,39.380909295966944,0.7121887107731344,23.241217605769283,0,0,391.9095118140761,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1244.6065171880266,0.0,1068.716581461225,0.0,2439.205824468876,0.0,1207.141083960884,0.0,0.0,0.0,8712.026442152783,0.0,8047.703312952963,0.0,10157.087964913573,0.0,8168.075404736884,0.0,0.0,0.0,8008.5727735360315,0.0,7611.754885411772,0.0,9540.957016045077,0.0,7693.2194933173605,0.0,6016.633945332689,0,0,0,0,0,0,0,0,0.073576509978201,0.0023279094886521326,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7172207691609699,-0.7172207691609699,-0.7360935186757357,-0.7360935186757357,-0.7563752230536576,-0.7563752230536576,-0.7440489111243092,-0.7440489111243092,-0.18794134065933263,-0.18794134065933263,-0.6012708376797421,-0.6951719668142803,-0.696556257422863,-0.7152728629883979,-0.3457385358771932,-0.6234259348449049,-0.7153042020364496,-0.7095317890690308,-0.7324260946681316,-0.39343874960832537,15.8235302621339,15.8235302621339,16.40635729296359,16.40635729296359,17.04974468166843,17.04974468166843,16.656620695056944,16.656620695056944,5.732318970347237,5.732318970347237,12.580548085410655,15.162054209291242,15.202966459553295,15.764247852679503,7.486823108240685,13.155168934340196,15.765200328790499,15.590475614841623,16.291901270329163,8.224640257214347,201.4956072841102,201.4956072841102,0.0,223.88400809345578,0.0,201.4956072841102,223.88400809345578,0,0
+2017/02/05 21:00:00,201.04387185387066,0,1351.6476858369565,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,0.7427734032718416,18.47692002872602,0,0,415.68541687517177,581.0587438363433,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1949.1623299846808,0.0,1470.8308720390885,0.0,3016.0551263788075,0.0,1583.661816142613,0.0,0.0,0.0,9564.202117096489,0.0,8287.631224289318,0.0,10945.885024478079,0.0,8385.564459636369,0.0,0.0,0.0,8799.115783621868,0.0,7802.438683164932,0.0,10241.380252620562,0.0,7854.192698241973,0.0,5879.632214613764,0,0,0,0,0,0,0,0,0.07196272396841145,0.002276850424204034,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7406746841404153,-0.7406746841404153,-0.7581675614397999,-0.7581675614397999,-0.7774682113993678,-0.7774682113993678,-0.7645805531111708,-0.7645805531111708,-0.2259251547143252,-0.2259251547143252,-0.6077574671932755,-0.6958348385517356,-0.6977994625443115,-0.713965964170716,-0.33666619117550867,-0.6314375517215632,-0.7165176526632093,-0.7110086714908109,-0.7312578318217051,-0.38426647749965803,16.55014146524603,16.55014146524603,17.107449507548324,17.107449507548324,17.737532396258956,17.737532396258956,17.315042241925127,17.315042241925127,6.058951142713326,6.058951142713326,12.746581665457526,15.181634836834789,15.239779510984988,15.72456543836816,7.357458214759248,13.368204439124625,15.80211282313654,15.63504252500934,16.25556251276342,8.07522847438399,201.04387185387066,201.04387185387066,0.0,223.38207983763405,0.0,201.04387185387066,223.38207983763405,0,0
+2017/02/05 22:00:00,187.26946064518563,0,1448.5359445530385,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,0.9050451405647982,22.802447594935053,0,0,529.4673643954523,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3204.6084279340275,0.0,2214.499571451493,0.0,4162.159747225719,0.0,2312.09983391342,0.0,0.0,0.0,8006.557177348094,0.0,9769.80217984453,0.0,9399.512576179033,0.0,9858.584320033551,0.0,11374.66218402209,0.0,7312.39327513443,0.0,9307.525313883678,0.0,8723.53614557153,0.0,9343.730720151718,0.0,18799.948552708178,0,0,0,0,0,0,0,0,0.07712112662823482,0.00244005868865758,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7749987215011263,-0.7749987215011263,-0.7913858161113909,-0.7913858161113909,-0.8112760717242867,-0.8112760717242867,-0.7972623253129173,-0.7972623253129173,-0.3113960188716806,-0.3113960188716806,-0.6321046432881738,-0.71970691986821,-0.7164389698479586,-0.7356752279483166,-0.36044347294263707,-0.6597973878476295,-0.7441110170342359,-0.7327880661539322,-0.7562311034074743,-0.4124788384632988,17.65602792265325,17.65602792265325,18.20172715711027,18.20172715711027,18.879381776757597,18.879381776757597,18.40019557965813,18.40019557965813,7.015537871095489,7.015537871095489,13.386068546638583,15.899430965574012,15.799717412350475,16.393273738416767,7.703937780601919,14.144684675059352,16.658585125087228,16.30317227674246,17.04511067873105,8.546280283108416,187.26946064518563,187.26946064518563,0.0,208.0771784946507,0.0,187.26946064518563,208.0771784946507,0,0
+2017/02/05 23:00:00,131.70847907175283,0,1374.2836578561166,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,1.029751986149995,18.44686700869601,0,0,633.5163351647312,581.0607363849367,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5151.396081387997,0.0,3372.1982916649886,0.0,5950.8349169452285,0.0,3451.740362593892,0.0,0.0,0.0,7861.136032200556,0.0,10688.41404625274,0.0,9170.387003159909,0.0,10765.573690221308,0.0,18602.746910478894,0.0,7185.425835528365,0.0,10195.888421978505,0.0,8431.960328014558,0.0,10215.784331688199,0.0,26512.156827103536,0,0,0,0,0,0,0,0,0.07316787988532693,0.002314980717352268,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8466628365246892,-0.8466628365246892,-0.8595918641547848,-0.8595918641547848,-0.8847010901853523,-0.8847010901853523,-0.8653417165501222,-0.8653417165501222,-0.4347726693705047,-0.4347726693705047,-0.6593945897764181,-0.7447935471607505,-0.7354288320766358,-0.7586034472688507,-0.3892462653973926,-0.6896129608792485,-0.771768577122399,-0.7530358836131156,-0.7814020577498262,-0.4450400156071232,20.126168250324156,20.126168250324156,20.594741936512435,20.594741936512435,21.524496934471486,21.524496934471486,20.80535477909652,20.80535477909652,8.942627239138673,8.942627239138673,14.13341215760839,16.680184670556173,16.38557033368491,17.121503739620223,8.155900725758585,14.998593349541338,17.549810527081107,16.942600302656658,17.8679034728258,9.132339446273079,131.70847907175283,131.70847907175283,0.0,146.3427545241698,0.0,131.70847907175283,146.3427545241698,0,0
+2017/02/06 00:00:00,89.56168189664429,0,1231.6266055196656,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,1.0774828462436643,9.54124278910805,0,0,682.5828096435074,495.80826710734215,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6271.39018598027,0.0,4026.8566691777805,0.0,6975.820910784241,0.0,4088.8746099156865,0.0,1345.1764253677345,0.0,8057.853679442556,0.0,10823.700545377116,0.0,9406.892690112276,0.0,10892.405727344585,0.0,20838.417209209347,0.0,7507.097098951146,0.0,10406.311961810125,0.0,8788.58403712774,0.0,10414.15847937531,0.0,28476.047412476233,0,0,0,0,0,0,0,0,0.06557271275190454,0.0020746749235190025,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9195773157207184,-0.9195773157207184,-0.9308334143107547,-0.9308334143107547,-0.9624305927347294,-0.9624305927347294,-0.9370473547273226,-0.9370473547273226,-0.6165320584724919,-0.6165320584724919,-0.6780695854389663,-0.7627931061833775,-0.7526103936966655,-0.7752575373186176,-0.4129776984610411,-0.7089020663616873,-0.7914392657033026,-0.7718245515735715,-0.7995766203537553,-0.4700041305204481,22.858668010679636,22.858668010679636,23.299744573426622,23.299744573426622,24.56480233225085,24.56480233225085,23.545410109381365,23.545410109381365,12.974084460173287,12.974084460173287,14.663430945452191,17.257004780128327,16.928982525256984,17.664557845772023,8.55491607107696,15.571501485577258,18.203525722394886,17.551647358374183,18.478758206226516,9.612523726599306,89.56168189664429,89.56168189664429,0.0,99.51297988516032,0.0,89.56168189664429,99.51297988516032,0,0
+2017/02/06 01:00:00,40.3680178013768,0,760.0446500996517,0,0,0,0.0,0.006288515510374947,4.166984770466865,9.319298099999997,16.311038125956312,0,0.6068963835854505,0.41070304975222044,9.54680885610558,0,0,190.20774693081438,516.6013744000211,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7923540506247333,1960.8859142041335,1.3372900581645912,1488.5833213058324,2.0151570314752947,2427.3694466617367,1.1437143701103263,1527.1356790812113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04046534014144474,0.0012802951554064523,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9526866807390704,-0.9526866807390704,-0.9696773913059961,-0.9696773913059961,-0.9940102895664598,-0.9940102895664598,-0.9750190304337124,-0.9750190304337124,-0.32350826766509866,-0.32350826766509866,-1.2048215360712415,-1.287623309100343,-1.277140266463875,-1.2969663849363393,-0.21642855713097656,-1.126778648828405,-1.2250806420955942,-1.2151290252872375,-1.2339599285937348,-0.4297970005847429,24.170484457144298,24.170484457144298,24.860473678601892,24.860473678601892,25.86812950588275,25.86812950588275,25.07972132727828,25.07972132727828,7.176045256827095,7.176045256827095,35.483412669174456,39.63348551524861,39.09847381335833,40.11247117470483,5.971624906679708,31.75013561076787,36.48206001005625,35.990073482177195,36.923320722839605,8.852319597507815,40.3680178013768,40.3680178013768,0.0,44.85335311264089,0.0,40.3680178013768,44.85335311264089,0,0
+2017/02/06 02:00:00,23.72215758596361,0,47.11466218018371,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250621622858178,0,0,0.0,11.624309667639563,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002508419512617355,7.936464486657722e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.2470922315137256,-1.2470922315137256,-1.3323676550508023,-1.3323676550508023,-1.3681966594307935,-1.3681966594307935,-1.3544710506982853,-1.3544710506982853,-0.1445201284472148,-0.1445201284472148,-1.303703410671382,-1.4391034375770757,-1.4544356461476677,-1.4652769099152876,-0.15422722844039072,-1.3139689480325085,-1.4555025546509515,-1.4656138072905316,-1.4756049149604913,-0.4579487652969441,37.57979631971556,37.57979631971556,41.944738268051054,41.944738268051054,43.82459022530602,43.82459022530602,43.10164101576502,43.10164101576502,5.432752917178931,5.432752917178931,40.45907955521621,47.60622567873043,48.43241086689265,49.01802080278556,5.492901936122195,40.989143327526385,48.48999207827865,49.03623629769158,49.57688308049964,9.377289412427402,23.72215758596361,23.72215758596361,0.0,26.357952873292902,0.0,23.72215758596361,26.357952873292902,0,0
+2017/02/06 03:00:00,28.34443400905841,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250709225855138,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.3376878901629055,-1.3376878901629055,-1.4250065783026091,-1.4250065783026091,-1.451803219068718,-1.451803219068718,-1.4442187059358875,-1.4442187059358875,-0.04514988306943589,-0.04514988306943589,-1.42592373955148,-1.5749215438986284,-1.5945793924019322,-1.6032872568752943,-0.12427691601138896,-1.4586383913390293,-1.6134213640807735,-1.6284502382672905,-1.6347794589356226,-0.4831167173039126,42.22234180366197,42.22234180366197,46.84893228117714,46.84893228117714,48.2903867702833,48.2903867702833,47.88158681411102,47.88158681411102,5.042202076717288,5.042202076717288,46.898130113544475,54.97955166286581,56.0502601749301,56.524187680953276,5.319933982675053,48.65929780050252,57.07533547892839,57.89167752889568,58.235038391731095,9.875499397060551,28.34443400905841,28.34443400905841,0.0,31.493815565620455,0.0,28.34443400905841,31.493815565620455,0,0
+2017/02/06 04:00:00,23.74109127749109,0,38.127070029689804,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.010313252250339968,0.008485155429908298,0.5251974461330516,0,0,2.6367175171456734,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.333956027739507,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0020299134493556364,6.422504657121692e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.4093761523434114,-1.4093761523434114,-1.4956718223919576,-1.4956718223919576,-1.516185767923237,-1.516185767923237,-1.5149029865412689,-1.5149029865412689,-0.03073456032035819,-0.03073456032035819,-1.4779478118133988,-1.6343870161833083,-1.6560712565449298,-1.6654849470373227,-0.11492142625882859,-1.5533480294717947,-1.7151343094696931,-1.7285807886579017,-1.738295896838827,-0.4895627554117984,46.0121604106458,46.0121604106458,50.66507627477685,50.66507627477685,51.780064526936755,51.780064526936755,51.71028124532652,51.71028124532652,5.019554794920779,5.019554794920779,49.703782546345046,58.21375657454821,59.387828607103145,59.89620467175116,5.273551139366802,53.80390904530571,62.56031538055489,63.27585059231151,63.79096842272766,10.00749560696201,23.74109127749109,23.74109127749109,0.0,26.378990308323434,0.0,23.74109127749109,26.378990308323434,0,0
+2017/02/06 05:00:00,45.855539798977865,0,474.1374972529279,0,0,0,0.0,0.03370384766183772,4.633261998087618,9.319298099999997,25.555573451546493,0,3.4991247479708325,2.2369485398769817,0.5776291138341028,0,0,385.4116159715676,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9227420578392713,3660.7930551128416,1.433651066321969,2711.8196844926524,2.6616553868630337,4360.725662092525,1.2861640446262754,2792.7644000064943,0.0,0.0,2.849122596543551,7501.661750978685,2.161370630027371,5449.391547709853,6.903333201987213,8850.43910904828,2.3063870680037626,5576.185334286077,0.0,0.0,3.776968637527776,7068.761037245695,2.385147904052004,5107.093752312856,2.8331409423163376,8266.092949089025,3.1841641257291484,5183.347205752167,0.0,0.0,0,0,0,0,0,0,0,0,0.025243431550551015,0.0007986845781361313,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.100944530013668,-1.100944530013668,-1.1366880664293966,-1.1366880664293966,-1.1458471732386994,-1.1458471732386994,-1.1445947734146165,-1.1445947734146165,0.11934887046797893,0.11934887046797893,-0.9278745968783157,-0.9989079669896426,-1.0021656853839858,-1.0116666535324765,-0.07866637617635508,-0.9880961582511616,-1.068822901380319,-1.0632670664273942,-1.0784046281602666,-0.49318790260236584,30.557101778334868,30.557101778334868,32.21360778228352,32.21360778228352,32.64480788116694,32.64480788116694,32.58568790843549,32.58568790843549,5.295048254115699,5.295048254115699,23.183310254172895,26.07369168433509,26.210927077936972,26.613457251871623,5.12813843918866,25.621124475081828,29.105428907238462,28.858008325756856,29.534698470165694,10.08251620365425,45.855539798977865,45.855539798977865,0.0,50.95059977664207,0.0,45.855539798977865,50.95059977664207,0,0
+2017/02/06 06:00:00,78.34921664813423,0,464.11572639877005,0,0,0,0.0,0.032142701557627905,5.555297838843742,9.319298099999997,57.911447091112116,0,3.012583187973121,1.9934469206054182,0.5250008080421344,0,0,251.17361132350524,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2811766556498014,1771.2812890703967,0.9551375478920932,1401.3817343286057,1.8099919899231054,2227.6644243556743,0.9056442871645345,1456.1777009918062,0.0,0.0,4.019212811707348,5739.391919716152,3.073841622243208,4276.540850003644,3.524982112120597,7012.350563025669,2.830549208938237,4400.89021809755,0.0,0.0,4.055898840078044,5874.73777740876,2.6821489405226657,4297.634331196998,3.5113945713917474,7043.158162348101,3.492722969996521,4369.0386845664925,0.0,0.0,0,0,0,0,0,0,0,0,0.024709865047083168,0.000781802905892942,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.98142881894604,-0.98142881894604,-1.0106248363493608,-1.0106248363493608,-1.0149634635735898,-1.0149634635735898,-1.0163194318703275,-1.0163194318703275,0.4426729211094456,0.4426729211094456,-0.8373256859788767,-0.8897008451066981,-0.8914434328214865,-0.8987735721111748,0.03931353492860393,-0.8554754147272444,-0.9120093638152548,-0.9025847453109125,-0.916951710532967,-0.40569692985315514,25.344268586944295,25.344268586944295,26.569152365652698,26.569152365652698,26.753927464606704,26.753927464606704,26.811820573026836,26.811820573026836,9.088200243520717,9.088200243520717,19.79209826756103,21.71272213062501,21.778565233004343,22.0568879708364,5.0319959608095814,20.444800456802994,22.564974041032684,22.202460579206544,22.756513328787364,8.429935859120292,78.34921664813423,78.34921664813423,0.0,87.0546851645936,0.0,78.34921664813423,87.0546851645936,0,0
+2017/02/06 07:00:00,104.2106893174361,0,945.0113783254096,0,0,0,0.21807039512362306,0.02638015019607731,11.110595677687485,13.929299233552332,73.80580873715317,0,2.793882769186092,1.8017158353971015,0.5249365191401721,0,0,208.40443947548115,505.9196475183916,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,694.2087240076496,0.0,0.0,0.0,0.0,0.0,1.2227874202997857,1424.1410011590808,0.0,1089.5665063530791,1.267202612626079,1687.1929130383735,0.0,1123.011074703953,0.0,0.0,2.7538544239544835,5022.537969826184,1.7485087500164505,3688.359251672595,5.84771317081019,5974.448882234427,2.0579847158743783,3778.1472929461615,0.0,0.0,3.489561891086547,4781.353028798576,2.4324790299468377,3440.201642753964,2.369255373073429,5563.139862249652,3.1908028083891313,3479.1977682687634,0.0,0.0,0,0,0,0,0,0,0,0,0.05031310575827281,0.0015918715950640054,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9179213014749154,-0.9179213014749154,-0.9490807263865862,-0.9490807263865862,-0.948556987177231,-0.948556987177231,-0.9540740203586474,-0.9540740203586474,0.6956846086773883,0.6956846086773883,-0.8148042083478728,-0.8614228497382485,-0.8611727607541458,-0.8693889280802896,0.1225984504964211,-0.8287207484138732,-0.8770044852515535,-0.8656298057597077,-0.8812049532019357,-0.2990948237102732,22.79420500831671,22.79420500831671,24.025503899054016,24.025503899054016,24.004489130018555,24.004489130018555,24.226400013590236,24.226400013590236,15.177195519946793,15.177195519946793,19.00132930024793,20.66166112617995,20.65251264411083,20.954420568642433,5.311344687980011,19.487451847024076,21.23674545945724,20.81594324146519,21.39348630159772,6.8588834016903775,104.2106893174361,104.2106893174361,0.0,115.78965479715123,0.0,104.2106893174361,115.78965479715123,0,0
+2017/02/06 08:00:00,165.33776580138482,0,1376.0697166718635,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,1.0837055952438133,27.06726585455363,0,0,510.2366652830935,599.655407544689,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6166.370587759995,0.0,3857.6997219402974,0.0,6582.789123684972,0.0,3902.362829071049,0.0,0.0,0.0,10921.927724264075,0.0,11479.55718592479,0.0,12013.229485269258,0.0,11506.850653561365,0.0,14248.28652932605,0.0,10554.018830386025,0.0,11136.835470145268,0.0,11481.03903590023,0.0,11092.224502161,0.0,24135.73071934874,0,0,0,0,0,0,0,0,0.07326297097962295,0.0023179893332918337,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9371831973205851,-0.9371831973205851,-0.9636903235260175,-0.9636903235260175,-0.9679984126915853,-0.9679984126915853,-0.9687987847782091,-0.9687987847782091,0.0046969003593811415,0.0046969003593811415,-0.7902888897458247,-0.8418412486716985,-0.8333495102693914,-0.8490705168126236,-0.25190636184243037,-0.8082491402801929,-0.8591078345607931,-0.8401711305497275,-0.8626163930779817,-0.42043711064370987,23.550797758974483,23.550797758974483,24.61605264532203,24.61605264532203,24.7917888305971,24.7917888305971,24.824517345514096,24.824517345514096,5.000456671553863,5.000456671553863,18.1648426277697,19.953204499859453,19.65094182644495,20.212900978871005,6.317197541277025,18.775176400414523,20.577074740669218,19.89351881283146,20.70535768059733,8.68531837323323,165.33776580138482,165.33776580138482,0.0,183.70862866820536,0.0,165.33776580138482,183.70862866820536,0,0
+2017/02/06 09:00:00,168.28051308872452,0,1576.995687783306,0,0,0,0.0,0.0,14.096081985441572,0.0,83.2008179303116,0,39.380909295966944,1.0729861992389436,27.097742475311204,0,0,657.9271076257197,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5822.952097312609,0.0,3686.9048112278524,0.0,6311.802224164748,0.0,3718.1992945914535,0.0,0.0,0.0,11016.660282382743,0.0,11494.210402601948,0.0,11990.651543091273,0.0,11518.261271105175,0.0,10527.11167529043,0.0,10420.549302389994,0.0,10996.583424375975,0.0,11220.993821565324,0.0,10955.096604390554,0.0,22636.48171793511,0,0,0,0,0,0,0,0,0.08396041850880247,0.002656449116379036,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9156722193777134,-0.9156722193777134,-0.9422882756028224,-0.9422882756028224,-0.9475142197719538,-0.9475142197719538,-0.9463406388030297,-0.9463406388030297,-0.25717335978738304,-0.25717335978738304,-0.7790379671463115,-0.8301493307937874,-0.8176568836549605,-0.8370920382614959,-0.33097976404177265,-0.7969834104524891,-0.8464879288359045,-0.8240459963490151,-0.8501844890588577,-0.44632022020267825,22.70683256927019,22.70683256927019,23.75380139716485,23.75380139716485,23.962680849367743,23.962680849367743,23.915679137373274,23.915679137373274,6.373007544641553,6.373007544641553,17.789476502898154,19.53781426088902,19.100313385183142,19.783785361219557,7.278156068923096,18.39074265909595,20.11987689118469,19.32324918062072,20.253111623308627,9.156311788930992,168.28051308872452,168.28051308872452,0.0,186.97834787636057,0.0,168.28051308872452,186.97834787636057,0,0
+2017/02/06 10:00:00,183.37827646273928,0,1642.1159005111665,0,0,0,0.0,0.0,11.887960008229951,0.0,106.27511244621549,0,39.380909295966944,1.0797520207182372,21.32256748915442,0,0,669.811791584764,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5624.59655687313,0.0,3599.3930105500444,0.0,6129.152596604293,0.0,3631.365675566794,0.0,0.0,0.0,11376.163065463661,0.0,11741.679956908538,0.0,12329.119946339575,0.0,11716.841658838512,0.0,10860.983159870415,0.0,10422.081654575702,0.0,11021.894785115233,0.0,11222.769334393426,0.0,10925.22139346933,0.0,23040.849752931066,0,0,0,0,0,0,0,0,0.08742746686940946,0.0027661441097765766,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8968977759849032,-0.8968977759849032,-0.9204969671867007,-0.9204969671867007,-0.9218931453450261,-0.9218931453450261,-0.9245138307795469,-0.9245138307795469,-0.26053630474899897,-0.26053630474899897,-0.7652268171529655,-0.8200733415901502,-0.803939472708528,-0.8235747891152119,-0.3424125237157227,-0.7796332591764935,-0.8350963142091334,-0.8095265037010819,-0.8347613394754122,-0.4467733260389717,21.985456341849883,21.985456341849883,22.894514518976266,22.894514518976266,22.949000187178143,22.949000187178143,23.05148327968874,23.05148327968874,6.40925231187623,6.40925231187623,17.336059679856618,19.18442923422832,18.627478851636056,19.30674871398996,7.438990623144491,17.809202479581685,19.712872891689273,18.81910386661825,19.70098682717058,9.164813261714471,183.37827646273928,183.37827646273928,0.0,203.75364051415474,0.0,183.37827646273928,203.75364051415474,0,0
+2017/02/06 11:00:00,213.137242437867,0,1690.3930334224397,0,0,0,0.0,0.0,16.903073633821148,0.0,133.89528835348938,0,39.380909295966944,1.0800283800368153,18.445967572098393,0,0,666.5350089079184,562.4834418514474,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4463.128920435306,0.0,3035.345081697702,0.0,5179.481175426247,0.0,3028.164736792637,0.0,0.0,0.0,9149.915891485241,0.0,11916.89491029383,0.0,10289.22179747166,0.0,11832.675665296008,0.0,16434.920003387408,0.0,8120.420357615177,0.0,11192.258755260671,0.0,9172.578848962034,0.0,11025.558937208669,0.0,27394.95928941085,0,0,0,0,0,0,0,0,0.08999777718479982,0.0028474669365014436,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8346087876172564,-0.8346087876172564,-0.8760192811860057,-0.8760192811860057,-0.8713417547757608,-0.8713417547757608,-0.8734786270304495,-0.8734786270304495,-0.20547748373688343,-0.20547748373688343,-0.7405159715887811,-0.8078906635647709,-0.7886407611131174,-0.8072449242223099,-0.35874713372150324,-0.7488950343160433,-0.821885750094387,-0.7929966007396486,-0.8167377172387985,-0.45170033999528075,19.695575314169673,19.695575314169673,21.20008742383098,21.20008742383098,21.026588272284656,21.026588272284656,21.105737542565706,21.105737542565706,5.8756137510187045,5.8756137510187045,16.54514505980822,18.762861059372,18.1095197200448,18.740690600069968,7.678422216324549,16.810402078767694,19.247679542647234,18.255982849695357,19.068382106529953,9.2578272007501,213.137242437867,213.137242437867,0.0,236.81915826429668,0.0,213.137242437867,236.81915826429668,0,0
+2017/02/06 12:00:00,229.35719367594206,0,1667.930581137304,0,0,0,0.0,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.9164360675160295,20.900094741049546,0,0,553.6650621607251,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2971.771796819766,0.0,2130.557331967858,0.0,3703.3536314871562,0.0,2134.969624897633,0.0,0.0,0.0,10521.791936370528,0.0,10463.85513685353,0.0,11588.023470862314,0.0,10403.160660738402,0.0,5164.352120432229,0.0,9449.417043877987,0.0,9711.394008966909,0.0,10428.957405768051,0.0,9579.812495875916,0.0,15574.595375728597,0,0,0,0,0,0,0,0,0.08880185958705106,0.0028096289373320043,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7941743643049213,-0.7941743643049213,-0.8320259884549754,-0.8320259884549754,-0.821683215095473,-0.821683215095473,-0.8315897378265242,-0.8315897378265242,-0.10045183935902782,-0.10045183935902782,-0.7208970552203247,-0.7838512432204414,-0.764304928595708,-0.7859358247589793,-0.34177812737130153,-0.7273079553899521,-0.7926297496024383,-0.7639746226332799,-0.7913599092771192,-0.4247162645904083,18.295722820815612,18.295722820815612,19.60410281589752,19.60410281589752,19.24060452554265,19.24060452554265,19.588680119211006,19.588680119211006,5.208974037019317,5.208974037019317,15.935859290368853,17.949404090579378,17.3060839605661,18.018972780881285,7.429920544543663,16.133136306327813,18.24361661010589,17.295352709588713,18.200855442275923,8.761201603830017,229.35719367594206,229.35719367594206,0.0,254.84132630660227,0.0,229.35719367594206,254.84132630660227,0,0
+2017/02/06 13:00:00,208.47621961171646,0,1512.2046713460127,0,0,0,0.0,0.0,16.903073550514318,0.0,129.49988082968767,0,39.380909295966944,0.7885455818553625,18.471835151237837,0,0,470.59827487099545,562.4866375556715,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2343.1459795588125,0.0,1721.3872832643697,0.0,3059.3385455731527,0.0,1744.089208190123,0.0,0.0,0.0,12063.500792312218,0.0,9237.505561531496,0.0,13078.746578756354,0.0,9208.5567548357,0.0,0.0,0.0,10819.58820580179,0.0,8366.201967253523,0.0,11752.120835769514,0.0,8281.333318271829,0.0,4773.966636382139,0,0,0,0,0,0,0,0,0.08051089680254314,0.00254730865410797,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7657046924058951,-0.7657046924058951,-0.8039412502664478,-0.8039412502664478,-0.7913000804473096,-0.7913000804473096,-0.804878877291529,-0.804878877291529,-0.05101323969982128,-0.05101323969982128,-0.6909999513461655,-0.7490774487032306,-0.7335857565955887,-0.7541875123081623,-0.3176177038780225,-0.6941413981090038,-0.7532476723458782,-0.7302982936756082,-0.7561372496492653,-0.3892890577340462,17.35161234000003,17.35161234000003,18.627539608951295,18.627539608951295,18.198842426736476,18.198842426736476,18.659606516483123,18.659606516483123,5.053876248140668,5.053876248140668,15.039252362417116,16.81621026555412,16.328030499247816,16.97949697764045,7.09720918975556,15.13164983965406,16.949381476290014,16.225760001796857,17.042093395852064,8.156598549940938,208.47621961171646,208.47621961171646,0.0,231.64024401301828,0.0,208.47621961171646,231.64024401301828,0,0
+2017/02/06 14:00:00,205.84501727011585,0,1444.972038384685,0,0,0,0.0,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,0.6527538790920061,16.308060851754718,0,0,439.88020877955194,561.4624231983315,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2631.929588329267,0.0,1873.1812326019087,0.0,3469.414277724918,0.0,1954.9532883812376,0.0,0.0,0.0,11493.96662297199,0.0,9574.016274208514,0.0,12642.233414992932,0.0,9595.715035440571,0.0,0.0,0.0,10184.390274722058,0.0,8665.94960860499,0.0,11297.76809501758,0.0,8645.41754282055,0.0,8373.297242174694,0,0,0,0,0,0,0,0,0.0769313816240226,0.0024340552889874838,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7588977043539598,-0.7588977043539598,-0.7936330900275061,-0.7936330900275061,-0.7893969606862935,-0.7893969606862935,-0.7996776770117042,-0.7996776770117042,-0.06834502148971432,-0.06834502148971432,-0.6778416958914464,-0.7338675625384424,-0.7267173334096941,-0.7435128560915638,-0.31257657782552406,-0.6805247432549331,-0.7370679629574239,-0.725009334141167,-0.7457216494159381,-0.3812097238405565,17.13099604069474,17.13099604069474,18.277451900094178,18.277451900094178,18.134888838131516,18.134888838131516,18.482193910031086,18.482193910031086,5.096713142100825,5.096713142100825,14.656872175391257,16.33681888051423,16.114887666047267,16.639671976169865,7.0309089177424795,14.734234057108068,16.43686570004907,16.06219949143116,16.70958770860537,8.026233833079758,205.84501727011585,205.84501727011585,0.0,228.71668585568426,0.0,205.84501727011585,228.71668585568426,0,0
+2017/02/06 15:00:00,189.95234509018448,0,1497.4250204061443,0,0,0,0.0,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,0.8673066493017904,14.016822297068492,0,0,548.4893100260241,540.7966564858629,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1091.210168039724,0.0,596.2957838586549,0.0,3779.0820820645185,0.0,2135.6853127524632,0.0,0.0,0.0,8154.020907102836,0.0,9275.432962744131,0.0,10372.70213305693,0.0,10229.427381103007,0.0,7970.891216913536,0.0,6780.5234089670075,0.0,8303.473045398068,0.0,9169.67543173173,0.0,9368.506383939048,0.0,17371.65495912316,0,0,0,0,0,0,0,0,0.07972401723911857,0.002522412333221518,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6534156194613597,-0.6534156194613597,-0.6538982278183654,-0.6538982278183654,-0.7918131614221572,-0.7918131614221572,-0.799845958620056,-0.799845958620056,-0.12860421485253568,-0.12860421485253568,-0.6091898140201252,-0.648764127846284,-0.7265879948421249,-0.7448550467567224,-0.3280599008546634,-0.5990066103415304,-0.6362789658447952,-0.7249777376315734,-0.7469620706149043,-0.39511708091473496,13.966914208161867,13.966914208161867,13.980296051070653,13.980296051070653,18.21611060774991,18.21611060774991,18.48791607314287,18.48791607314287,5.342618484448394,5.342618484448394,12.78349055852648,13.838454471093442,16.110893452591682,16.68213188552862,7.237969272686868,12.523022266452713,13.4982914761638,16.061225988030642,16.74894292118323,8.252368594715719,189.95234509018448,189.95234509018448,0.0,211.05816121131608,0.0,189.95234509018448,211.05816121131608,0,0
+2017/02/06 16:00:00,183.4804785343997,0,1501.568579254213,0,0,0,0.0,0.0,16.903073467207488,0.0,108.75639138185811,0,39.380909295966944,0.9316816966847615,14.076447490228116,0,0,552.6371276511462,540.7923977088095,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1491.117512412668,0.0,0.0,0.0,4153.781833920588,0.0,2373.397902880921,0.0,0.0,0.0,7097.7814038837905,0.0,9583.749335754688,0.0,9243.121307017473,0.0,10903.377766447058,0.0,14517.281991264743,0.0,5763.191807174941,0.0,8609.606063924955,0.0,8119.999362568789,0.0,10091.873096445684,0.0,23794.530615949898,0,0,0,0,0,0,0,0,0.07994462338135142,0.0025293921577865994,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6966248005321559,-0.6966248005321559,-0.6103998778605401,-0.6103998778605401,-0.8041162370003795,-0.8041162370003795,-0.8104869802534466,-0.8104869802534466,-0.17041341943338326,-0.17041341943338326,-0.6303389113745496,-0.6214966034038228,-0.7419824581513745,-0.7635208089365432,-0.3487364622113279,-0.6294649628426733,-0.6051017505370415,-0.7448408905736017,-0.7704367226617713,-0.41630739475537404,15.204994378865038,15.204994378865038,12.814741022102453,12.814741022102453,18.633521347132657,18.633521347132657,18.852179203956965,18.852179203956965,5.601929080851832,5.601929080851832,13.338825926331793,13.104282516854113,16.59135244130617,17.28061643683128,7.530340235869616,13.315493246845605,12.678384421655409,16.68168365469218,17.506144420709788,8.612829720932353,183.4804785343997,183.4804785343997,0.0,203.86719837155522,0.0,183.4804785343997,203.86719837155522,0,0
+2017/02/06 17:00:00,207.41302414344077,0,1572.6314941097712,0,0,0,0.0,0.0,17.949790742260653,0.0,131.64086955684016,0,39.380909295966944,0.958312665916249,14.051166680002401,0,0,570.4688669100607,540.7880445366369,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2540.734786763557,0.0,276.3457462563394,0.0,4113.901647267521,0.0,2300.785690769446,0.0,0.0,0.0,8278.250876399063,0.0,9906.724844037792,0.0,10025.1027555287,0.0,11135.624987166822,0.0,13491.737107789042,0.0,7039.056286274454,0.0,8912.153736047787,0.0,8904.305101129055,0.0,10320.620779296905,0.0,23077.5840089174,0,0,0,0,0,0,0,0,0.08372806560503611,0.002649097632467203,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.740963888414906,-0.740963888414906,-0.6618424182908093,-0.6618424182908093,-0.8014809376814368,-0.8014809376814368,-0.8037007541190864,-0.8037007541190864,-0.13377684730849246,-0.13377684730849246,-0.668905187799065,-0.6460766216889451,-0.7535950057215245,-0.7764709511481164,-0.3565062382869915,-0.6783833266722181,-0.6384830459551601,-0.7598341665475444,-0.7869408959307395,-0.42383912142854135,16.559248639745263,16.559248639745263,14.20202437501581,14.20202437501581,18.54357345116837,18.54357345116837,18.619320611768103,18.619320611768103,5.370756045092392,5.370756045092392,14.401447397300359,13.764661434222162,16.960506752794146,17.70458698022827,7.644903501391099,14.67246424424772,13.557851110054457,17.161229571749743,18.052580961994508,8.745583022362098,207.41302414344077,207.41302414344077,0.0,230.45891571493416,0.0,207.41302414344077,230.45891571493416,0,0
+2017/02/06 18:00:00,235.0715015422839,0,1570.3420233756265,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.8955474392827797,18.53861896007322,0,0,527.9070147283692,581.0604259841834,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2445.5888420130873,0.0,1153.234247158475,0.0,3485.605554936855,0.0,1956.7794269855517,0.0,0.0,0.0,9813.412853769258,0.0,9442.48411040017,0.0,11197.373085200763,0.0,10188.160565559183,0.0,6479.735513438368,0.0,8940.581533818497,0.0,8686.514022211872,0.0,10334.496784914967,0.0,9548.847713254932,0.0,15167.352711174819,0,0,0,0,0,0,0,0,0.08360617248732402,0.0026452410191893047,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.755738564499875,-0.755738564499875,-0.7502466852137591,-0.7502466852137591,-0.7954980510509531,-0.7954980510509531,-0.8034260136329276,-0.8034260136329276,-0.091852794634983,-0.091852794634983,-0.6797750985079167,-0.6966269418391601,-0.7473596748595408,-0.7719779589129315,-0.34644950056902946,-0.6917777060829543,-0.7030030506218894,-0.753656018748377,-0.7829775293518566,-0.4115075213610943,17.02928035912774,17.02928035912774,16.853473329361066,16.853473329361066,18.340456687940673,18.340456687940673,18.609934300158002,18.609934300158002,5.174714674164903,5.174714674164903,14.712587758370063,15.205057734932367,16.761571786817555,17.556682186218694,7.497108724871282,15.062088277501545,15.394589242220505,16.962461566364837,17.920300582842856,8.529496358716727,235.0715015422839,235.0715015422839,0.0,261.1905572692043,0.0,235.0715015422839,261.1905572692043,0,0
+2017/02/06 19:00:00,219.68215910910033,0,1527.3475092011304,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.8547464920621279,26.15094192051755,0,0,501.8078715059117,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2913.608728855162,0.0,1671.6309052604197,0.0,3786.948347793661,0.0,2167.530942029764,0.0,0.0,0.0,12596.577066587502,0.0,9185.190391706827,0.0,13845.4056892065,0.0,9733.069392271394,0.0,0.0,0.0,11458.57771253772,0.0,8317.983216574323,0.0,12687.439342646996,0.0,8902.702199503223,0.0,6891.655784660418,0,0,0,0,0,0,0,0,0.08131711270635056,0.0025728167633255936,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7649773821587256,-0.7649773821587256,-0.7671210531945635,-0.7671210531945635,-0.7987688852380489,-0.7987688852380489,-0.8065885622313826,-0.8065885622313826,-0.07775866664784285,-0.07775866664784285,-0.675225987638411,-0.6927419616367841,-0.7362871550493116,-0.7578060081951575,-0.32368956603500887,-0.6873641009444402,-0.6996537844890406,-0.7419675304672683,-0.7678120062101994,-0.38446566622572964,17.3279455811616,17.3279455811616,17.39776568932099,17.39776568932099,18.451312525285772,18.451312525285772,18.71817347185265,18.71817347185265,5.125197599006285,5.125197599006285,14.58175176621188,15.090436395323863,16.41241651479696,17.095798139530217,7.178494984196675,14.932845711311955,15.29481259945625,16.590881621551247,17.420312067161973,8.078434982509663,219.68215910910033,219.68215910910033,0.0,244.09128789900035,0.0,219.68215910910033,244.09128789900035,0,0
+2017/02/06 20:00:00,211.3529259670078,0,1483.585605101413,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.8483595038656278,27.072631092211658,0,0,493.53631991873834,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2915.0371997975394,0.0,1695.2346573499026,0.0,3667.0579300590953,0.0,2094.839831264635,0.0,0.0,0.0,12127.510155804654,0.0,8916.748467173697,0.0,13273.069315440445,0.0,9394.414120176425,0.0,0.0,0.0,11331.913658992216,0.0,8292.584321469309,0.0,12444.863994144585,0.0,8782.578574372279,0.0,6431.728445513025,0,0,0,0,0,0,0,0,0.0789871965173475,0.0024990998391910923,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7766581460490284,-0.7766581460490284,-0.7816400453197049,-0.7816400453197049,-0.8056319696829862,-0.8056319696829862,-0.8137175680013515,-0.8137175680013515,-0.10078804426737145,-0.10078804426737145,-0.6747433861476154,-0.6916710455466598,-0.7299812838896546,-0.7500517084941986,-0.3127211093077046,-0.6888784002375528,-0.7019990424268988,-0.7372516045706191,-0.7610627469150453,-0.3721717788606108,17.710767908789563,17.710767908789563,17.875811706979093,17.875811706979093,18.685389227989674,18.685389227989674,18.96371444770824,18.96371444770824,5.21037585117017,5.21037585117017,14.567924308684937,15.058955035572154,16.215922621094265,16.8472554368727,7.032794792621502,14.97709370479484,15.36462842134469,16.442619812902805,17.200950941398474,7.88370338059498,211.3529259670078,211.3529259670078,0.0,234.83658440778643,0.0,211.3529259670078,234.83658440778643,0,0
+2017/02/06 21:00:00,213.14922934788245,0,1395.6218870096534,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.6620679495806748,24.58343223214444,0,0,441.0629543395229,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3184.912342929587,0.0,1878.2538290999978,0.0,3852.575887893498,0.0,2215.192651034711,0.0,0.0,0.0,12051.861137822532,0.0,8877.15529040665,0.0,13123.081403338327,0.0,9304.577674208549,0.0,0.0,0.0,11344.681275778297,0.0,8324.321376006934,0.0,12374.450356806365,0.0,8745.726333908498,0.0,6373.496012270811,0,0,0,0,0,0,0,0,0.07430394301082979,0.002350924962741856,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7905651349788564,-0.7905651349788564,-0.796112519756297,-0.796112519756297,-0.8167708347796986,-0.8167708347796986,-0.823863557049547,-0.823863557049547,-0.14205405463310716,-0.14205405463310716,-0.6748397259110029,-0.6909135643874529,-0.7258878966819802,-0.7445939172663896,-0.3042479988956143,-0.6904569923671867,-0.7034742635558778,-0.7343834511521088,-0.7562842746425599,-0.3627283083351122,18.174126660306996,18.174126660306996,18.36124783086406,18.36124783086406,19.0695319720529,19.0695319720529,19.316859518846456,19.316859518846456,5.418097085728789,5.418097085728789,14.57068382227773,15.036717539143183,16.089285619129257,16.673865058483983,6.923729471160385,15.023325857365506,15.40866580659548,16.352916187771186,17.04682023574844,7.738498921679906,213.14922934788245,213.14922934788245,0.0,236.83247705320272,0.0,213.14922934788245,236.83247705320272,0,0
+2017/02/06 22:00:00,199.95115798187925,0,1529.6638431665317,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.9574780559485156,27.0977424753112,0,0,610.5952630089455,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4205.020910872765,0.0,2531.583648416458,0.0,4816.280775458756,0.0,2818.13964347044,0.0,0.0,0.0,10457.917606726674,0.0,10061.862065770682,0.0,11495.555068905576,0.0,10456.746640829335,0.0,8003.833284507562,0.0,9660.031282908254,0.0,9452.961044318756,0.0,10649.167722478844,0.0,9831.049337207702,0.0,16536.00866567722,0,0,0,0,0,0,0,0,0.08144043604239255,0.0025767186277145062,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8156266297270064,-0.8156266297270064,-0.8206846230894932,-0.8206846230894932,-0.8410651551839317,-0.8410651551839317,-0.8452087003806195,-0.8452087003806195,-0.22286933301686815,-0.22286933301686815,-0.6884227961770853,-0.7087364821815355,-0.7368338490822716,-0.7575024945998887,-0.3223726806032471,-0.7069664683396458,-0.7252479032298336,-0.747964761034741,-0.7717041444470016,-0.38326291303173743,19.02983108831242,19.02983108831242,19.205746598491586,19.205746598491586,19.925454453519748,19.925454453519748,20.07390230073314,20.07390230073314,6.03043879922798,6.03043879922798,14.963770478725039,15.566515119969424,16.4295322201896,17.086021465937932,7.160732754259698,15.513287187914969,16.06955130431662,16.780803777177667,17.547696300047377,8.059099027110733,199.95115798187925,199.95115798187925,0.0,222.16795331319915,0.0,199.95115798187925,222.16795331319915,0,0
+2017/02/06 23:00:00,141.39911062240546,0,1413.3005222005988,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,1.0623674509034466,21.151810363725748,0,0,653.9385283494611,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5773.900780294084,0.0,3502.951710941802,0.0,6310.307742174835,0.0,3741.337147223529,0.0,0.0,0.0,9705.554471848625,0.0,10665.995092740272,0.0,10716.04706934256,0.0,11048.638182082188,0.0,15708.175157230107,0.0,9084.572354296142,0.0,10178.824572742426,0.0,10037.382843486888,0.0,10529.94035693027,0.0,23923.533846403407,0,0,0,0,0,0,0,0,0.07524516664307868,0.002380704622379218,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8906052940583905,-0.8906052940583905,-0.8918049148696732,-0.8918049148696732,-0.9178687359184067,-0.9178687359184067,-0.915100847742147,-0.915100847742147,-0.45947347700405233,-0.45947347700405233,-0.7098671673538556,-0.7352623551732886,-0.7555019293322126,-0.779883774047908,-0.3561625482343722,-0.731906224508994,-0.7564182740330258,-0.7700733722396389,-0.7975956906690868,-0.4204159686982348,21.7468809599317,21.7468809599317,21.792239237724573,21.792239237724573,22.792160615888776,22.792160615888776,22.684668345007083,22.684668345007083,9.40669509544881,9.40669509544881,15.60058785191056,16.380367018909837,17.021678538673214,17.817508208290974,7.639781583672232,16.27572349193146,17.051129109186434,17.49424476665388,18.411498246294144,8.684945407824145,141.39911062240546,141.39911062240546,0.0,157.11012291378384,0.0,141.39911062240546,157.11012291378384,0,0
+2017/02/07 00:00:00,91.92888459155877,0,1299.143995897645,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,1.1547555203316806,11.831172809934532,0,0,726.9491935875047,518.9592735413239,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6897.613851407832,0.0,4188.570839176724,0.0,7381.382698957141,0.0,4403.2964138946745,0.0,2808.4014683735704,0.0,8731.205309404762,0.0,11127.210621189824,0.0,9703.744096814684,0.0,11496.545356420987,0.0,22734.389499234283,0.0,8331.80762562434,0.0,10788.633182698983,0.0,9239.260255796835,0.0,11115.645038972125,0.0,30359.9416264428,0,0,0,0,0,0,0,0,0.06916738862620934,0.002188407962486226,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9627653203069461,-0.9627653203069461,-0.962103247900188,-0.962103247900188,-0.9932884725648284,-0.9932884725648284,-0.9843621197128507,-0.9843621197128507,-0.6352411436868682,-0.6352411436868682,-0.7299565080790482,-0.7596878202580033,-0.7732280502922368,-0.8008038635119107,-0.3904331867771546,-0.7545219405399608,-0.7844710562316369,-0.7920485015373154,-0.8230151495857213,-0.4568946817545534,24.578414189350468,24.578414189350468,24.55149493190082,24.55149493190082,25.837911087581872,25.837911087581872,25.465861150528184,25.465861150528184,13.470319953225285,13.470319953225285,16.215153965384744,17.15650233376448,17.597747570487186,18.520511012700155,8.175285132168199,16.990222255454228,17.970069805675166,18.22403491684655,19.28716369085646,9.357018804249293,91.92888459155877,91.92888459155877,0.0,102.14320510173197,0.0,91.92888459155877,102.14320510173197,0,0
+2017/02/07 01:00:00,40.244645131718386,0,742.0088083854565,0,0,0,0.0,0.004519385619413242,4.166984770466865,9.319298099999997,16.311038125956312,0,0.5278025091362388,0.35826225048862065,9.55673999005093,0,0,172.14603961250435,516.627240004136,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.517478677275614,1640.4825761290601,0.0,1080.6933213695631,1.9320667433850383,1868.541030542741,1.0698401987525892,1232.9282679767832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03950509856931281,0.0012499137814077882,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9806130330789358,-0.9806130330789358,-0.9800063513700407,-0.9800063513700407,-1.0070498493140199,-1.0070498493140199,-1.0017741897143246,-1.0017741897143246,-0.30737706043752594,-0.30737706043752594,-1.1440989862847284,-1.1772913488945262,-1.2002139431872123,-1.2333555127619635,-0.18217507238244646,-1.1302025622669978,-1.157144840933145,-1.181265142751865,-1.2164120121687474,-0.37101039547381265,25.310511111353847,25.310511111353847,25.285423060021856,25.285423060021856,26.417430814252583,26.417430814252583,26.19441357992993,26.19441357992993,6.963652729759616,6.963652729759616,32.56229791703227,34.1452303343258,35.25790596366183,36.8932164739435,5.68800815737977,31.909913542069134,33.180362140003226,34.337004490181386,36.053347413574656,7.865640743558288,40.244645131718386,40.244645131718386,0.0,44.716272368575986,0.0,40.244645131718386,44.716272368575986,0,0
+2017/02/07 02:00:00,23.722132878135678,0,43.06272789459971,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250374544578889,0,0,0.0,7.572375382055573,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002292691529958125,7.253916187004759e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.2610191164710314,-1.2610191164710314,-1.2784715351219171,-1.2784715351219171,-1.3529178389883676,-1.3529178389883676,-1.3706972454752515,-1.3706972454752515,-0.1225902244419073,-0.1225902244419073,-1.2985795228629076,-1.3248452528511874,-1.3938778152830322,-1.426029151068197,-0.11354220669256665,-1.347056398930357,-1.3634581586567491,-1.4298223939865813,-1.4642002951320998,-0.40101819742389105,38.28087910136549,38.28087910136549,39.166272093854865,39.166272093854865,43.02004387596953,43.02004387596953,43.95665456706577,43.95665456706577,5.311302880748499,5.311302880748499,40.19537191747996,41.553195329668476,45.18578674525515,46.90378520589166,5.267020817480045,42.71251825834914,43.57462977913432,47.107374951956245,48.95981679241847,8.350819537160888,23.722132878135678,23.722132878135678,0.0,26.357925420150753,0.0,23.722132878135678,26.357925420150753,0,0
+2017/02/07 03:00:00,28.344439919036372,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.52507683256348,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.3739611155757734,-1.3739611155757734,-1.3945904980263855,-1.3945904980263855,-1.4502701148425756,-1.4502701148425756,-1.4730618317073765,-1.4730618317073765,-0.01768727289073279,-0.01768727289073279,-1.4733437444923922,-1.4994962570535186,-1.5716191591277207,-1.604902104336423,-0.08153156395462932,-1.5322102186552142,-1.5466178978325393,-1.619044375632108,-1.653939068748963,-0.43235107893739216,44.12919004763122,44.12919004763122,45.22370994430884,45.22370994430884,48.20770531121648,48.20770531121648,49.439190490715326,49.439190490715326,5.006476027606226,5.006476027606226,49.45445177181395,50.872772385881184,54.79960686593026,56.612043249601506,5.137645359596306,52.65231764156898,53.43717328093028,57.3809225672887,59.2725632168751,8.898542956054953,28.344439919036372,28.344439919036372,0.0,31.493822132262636,0.0,28.344439919036372,31.493822132262636,0,0
+2017/02/07 04:00:00,23.788878642770523,0,44.988808257805594,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.037788813188838456,0.02900738550160644,0.52498702040229,0,0,9.498455745261456,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.4564429524386,0.0,82.7566634259225,0.0,0.0,0,0,0,0,0,0,0,0,0.0023952374751557716,7.578364409568087e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.4606903798750035,-1.4606903798750035,-1.4838616776391387,-1.4838616776391387,-1.5289493680356336,-1.5289493680356336,-1.5551729499724969,-1.5551729499724969,-0.003790615947955733,-0.003790615947955733,-1.5507663126126308,-1.5769206933762756,-1.6531708265422387,-1.6874793140258857,-0.07192320093118337,-1.6436759263167238,-1.657545955825078,-1.7270174724982301,-1.7580298339396763,-0.4483683404891782,48.77013672976978,48.77013672976978,50.02428534401103,50.02428534401103,52.474751615035515,52.474751615035515,53.903358591965805,53.903358591965805,5.000297440900184,5.000297440900184,53.66322177906842,55.08847685333281,59.231021981414045,61.08026416385656,5.107107399545043,58.71717261186253,59.46752538633876,63.19281087702864,64.83210033584268,9.1948102239825,23.788878642770523,23.788878642770523,0.0,26.432087380856135,0.0,23.788878642770523,26.432087380856135,0,0
+2017/02/07 05:00:00,45.94690968060789,0,488.4456217847988,0,0,0,0.0,0.04020382940737781,4.633261998087618,9.319298099999997,25.555573451546493,0,3.5890451817470503,2.284407414476044,0.5251197053432911,0,0,399.71974050343846,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0252254193278225,4177.360201831784,1.3558561104420732,2760.6283041981187,3.3004393461398047,4588.516744980446,2.5163176551343587,3045.3207520932847,0.0,0.0,6.500024018514886,8272.372512904989,2.1105189416172836,5308.208967612604,6.49841079190813,9019.42953438555,2.164345132299968,5806.816384490172,0.0,0.0,3.9201597943377537,7868.864085717723,2.672363996632642,4934.422611845737,2.858502201292382,8250.869468256755,3.281665999730709,5142.86686007979,0.0,0.0,0,0,0,0,0,0,0,0,0.026005206698751046,0.0008227866128240995,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.1191344980383207,-1.1191344980383207,-1.1302608523624469,-1.1302608523624469,-1.147712264260623,-1.147712264260623,-1.1588460954530408,-1.1588460954530408,0.1472336806867575,0.1472336806867575,-0.9605583175215964,-0.9777112984072647,-1.000243176611452,-1.0223565139380508,-0.035459446016631924,-1.026745216220612,-1.0439025279859464,-1.0610588652917468,-1.0856132776563134,-0.45925259417382924,31.394808551947023,31.394808551947023,31.912636981774,31.912636981774,32.732942646899346,32.732942646899346,33.26135559990264,33.26135559990264,5.449172048963874,5.449172048963874,24.488746123140814,25.190644398780577,26.129890372308353,27.07040686049855,5.026029704850885,27.259238792467883,28.00427509157987,28.759974358236775,29.85977124220298,9.402428936100549,45.94690968060789,45.94690968060789,0.0,51.052121867342095,0.0,45.94690968060789,51.052121867342095,0,0
+2017/02/07 06:00:00,78.62222236060474,0,479.1175059490251,0,0,0,0.054325529851043136,0.029861895401983758,5.555297838843742,9.319298099999997,57.911447091112116,0,3.1646030854145457,2.0623260411136757,0.525062778867653,0,0,266.1753908737603,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,172.36861284283646,0.0,0.0,0.0,0.0,0.0,1.622788320280506,2192.6147017617327,0.9217449079542348,1488.195476138828,1.6318999461877866,2462.2333430474177,1.0660760954913826,1680.3513808527814,0.0,0.0,3.3928346578679793,6500.962248122127,2.6112515403341376,4191.05557396249,3.171395370794471,7225.314807006339,2.9846851623713064,4650.295868189355,0.0,0.0,3.3981008087530427,6670.747249023265,2.884997693200944,4201.44470978794,3.2011332279141698,7229.924694646413,2.974987670833798,4601.436554624818,0.0,0.0,0,0,0,0,0,0,0,0,0.025508570902256868,0.0008070734024067307,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.997172418481968,-0.997172418481968,-1.0081436114446387,-1.0081436114446387,-1.0177686195555835,-1.0177686195555835,-1.0285888802468122,-1.0285888802468122,0.46993841248134827,0.46993841248134827,-0.8629989779688361,-0.8767357611838428,-0.8928129112299865,-0.9085342254835704,0.0771597864902402,-0.880407548241078,-0.8975832782808191,-0.9030613360613698,-0.9245069514930061,-0.3743097038280044,26.00074398860356,26.00074398860356,26.463798728771167,26.463798728771167,26.873769654816158,26.873769654816158,27.338778596436185,27.338778596436185,9.61122440821147,9.61122440821147,20.719376887351615,21.226742663177035,21.83039750050547,22.43088621861331,5.123276026430403,21.363675361209303,22.01154415230822,22.220706052483578,23.051213901623086,7.917104270784833,78.62222236060474,78.62222236060474,0.0,87.35802484511638,0.0,78.62222236060474,87.35802484511638,0,0
+2017/02/07 07:00:00,104.15599719385506,0,947.0064308493623,0,0,0,0.0,0.024197540203011077,11.110595677687485,13.929299233552332,73.80580873715317,0,2.901919611452684,1.8065742540025924,0.5776021398037668,0,0,210.35636210185626,505.96277741596913,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.090663263340275,1484.9531222499302,1.0610419842809429,1021.1965531331072,1.2999326908538933,1673.1124334741653,1.2674473421933876,1161.3834906885813,0.0,0.0,2.3773779359250207,5254.619539657155,2.283902375891254,3393.6604687952768,1.9776999032634799,5838.674244958295,2.0915747231780792,3759.9786122569376,0.0,0.0,2.6958007691888874,5190.783717454363,2.8140371702491693,3278.667498458292,2.2974197012614845,5614.060579116589,2.9406423433852065,3577.6279464765075,0.0,0.0,0,0,0,0,0,0,0,0,0.05041932383239676,0.0015952322608891816,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9304823259314284,-0.9304823259314284,-0.9434566527350183,-0.9434566527350183,-0.9492222669876913,-0.9492222669876913,-0.9632484299607214,-0.9632484299607214,0.7222372265068773,0.7222372265068773,-0.8393572010922851,-0.852198256753422,-0.8662373384919846,-0.8813134408542892,0.14348757630867115,-0.8520547509129692,-0.8686503067029114,-0.8709699800768034,-0.8921007828327969,-0.24847366258933182,23.285910385203664,23.285910385203664,23.800407298530075,23.800407298530075,24.031185000806687,24.031185000806687,24.59806779193218,24.59806779193218,15.976952989697978,15.976952989697978,19.864473287920674,20.325932803743868,20.838283806127222,21.397544122439626,5.426585673394371,20.320737816601934,20.92716543165345,21.012837033158107,21.80343518612395,6.281451929623671,104.15599719385506,104.15599719385506,0.0,115.72888577095006,0.0,104.15599719385506,115.72888577095006,0,0
+2017/02/07 08:00:00,151.43651730213142,0,1407.3660601279998,0,0,0,0.0,0.0,11.110595677687485,0.0,69.33401494192633,0,39.380909295966944,1.131392884001806,27.04762930009457,0,0,541.53300873923,599.655407544689,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6808.284061207337,0.0,4168.707749312991,0.0,7123.969107124678,0.0,4290.126987875261,0.0,0.0,0.0,12036.17151134049,0.0,11856.983694389372,0.0,12768.647890107453,0.0,12124.807858707592,0.0,15139.071779317208,0.0,11463.442306229135,0.0,11407.779236796096,0.0,12059.417526560874,0.0,11583.244656036932,0.0,24180.80742245456,0,0,0,0,0,0,0,0,0.07492921148663788,0.002370708021468343,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9574895134825656,-0.9574895134825656,-0.9660611969184207,-0.9660611969184207,-0.9770548175136956,-0.9770548175136956,-0.9835035413964603,-0.9835035413964603,0.020819424186554893,0.020819424186554893,-0.819589428838177,-0.8396768735472303,-0.8429506213386871,-0.8651992274623297,-0.24069961208868187,-0.8324307618359275,-0.8569554959180188,-0.8485653629796217,-0.8766714030049535,-0.40342586062755603,24.364380838354123,24.364380838354123,24.71267614674757,24.71267614674757,25.16357115412643,25.16357115412643,25.430236700762975,25.430236700762975,5.008972773778481,5.008972773778481,19.167564773167356,19.875877678276197,19.992914931311617,20.800118987131796,6.202329231510902,19.618419830488236,20.49863144775614,20.194683640994512,21.224347480046404,8.391415572128523,151.43651730213142,151.43651730213142,0.0,168.26279700236825,0.0,151.43651730213142,168.26279700236825,0,0
+2017/02/07 09:00:00,165.95676766981325,0,1577.5815875719038,0,0,0,0.0,0.0,11.770719589816478,0.0,83.2008179303116,0,39.380909295966944,1.0746031759527361,27.097742475311204,0,0,658.5130074143176,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5467.42597132427,0.0,3823.850143334894,0.0,6524.141155338406,0.0,3398.005449283821,0.0,0.0,0.0,10667.92961367542,0.0,11597.036549268229,0.0,12318.354650434607,0.0,11302.743954056998,0.0,10533.443893682144,0.0,9792.678200277427,0.0,11085.93552740573,0.0,11491.567856697908,0.0,10593.75985868606,0.0,22917.30396437393,0,0,0,0,0,0,0,0,0.0839916122475273,0.0026574360645284603,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8456549634817523,-0.8456549634817523,-0.9447159571920946,-0.9447159571920946,-0.9551581627122031,-0.9551581627122031,-0.893916838058277,-0.893916838058277,-0.24399746675463618,-0.24399746675463618,-0.753302081760683,-0.8263293170315792,-0.8258502179785836,-0.8080718654206431,-0.32440799026411704,-0.756018311661524,-0.842359168286534,-0.8299072616721519,-0.8106213899069385,-0.43841150779749044,20.089932946605927,20.089932946605927,23.85070075896256,23.85070075896256,24.27014812382093,24.27014812382093,21.872234806987336,21.872234806987336,6.23558404278873,6.23558404278873,16.951123898267085,19.40333723658489,19.386514573697468,18.769085507185963,7.188216129183019,17.038270227212124,19.971737247265494,19.52927447756528,18.85681089014446,9.009344718741076,165.95676766981325,165.95676766981325,0.0,184.39640852201472,0.0,165.95676766981325,184.39640852201472,0,0
+2017/02/07 10:00:00,182.58800369037576,0,1569.8011441069946,0,0,0,0.0,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,0.975616995044619,21.325978109869858,0,0,597.4970351805921,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3177.2614581126118,0.0,3282.0109525411617,0.0,5668.644271294831,0.0,2684.1148270791,0.0,0.0,0.0,9473.305601257765,0.0,11023.57928999103,0.0,11647.502934447453,0.0,10598.424945366902,0.0,8625.892284574371,0.0,8182.34840674049,0.0,10328.675269703708,0.0,10549.783597224812,0.0,9693.329949457968,0.0,20466.85384710065,0,0,0,0,0,0,0,0,0.08357737567442916,0.002644329908102346,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7857003254007655,-0.7857003254007655,-0.9121420151160483,-0.9121420151160483,-0.9179231730638189,-0.9179231730638189,-0.8626639967000279,-0.8626639967000279,-0.2511996841825202,-0.2511996841825202,-0.6980750056509953,-0.8041452664106088,-0.8014065618182749,-0.7796453305445067,-0.33810600092121357,-0.6906093838212616,-0.8170707813604582,-0.801208188029241,-0.7773997183472612,-0.4396718896134468,18.011104215172594,18.011104215172594,22.570102041511547,22.570102041511547,22.79427780065754,22.79427780065754,20.707101708771475,20.707101708771475,6.309798226225766,6.309798226225766,15.247947765283072,18.634513812264686,18.541039119239926,17.809602640126855,7.3777554132333165,15.027794638775333,19.07994844194492,18.534280744989033,17.735268310607324,9.032586242840381,182.58800369037576,182.58800369037576,0.0,202.87555965597306,0.0,182.58800369037576,202.87555965597306,0,0
+2017/02/07 11:00:00,212.95675382312407,0,1631.0677453789115,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.9947605220874945,18.455523015665587,0,0,607.1999081949548,562.4932545208829,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2730.2158890441183,0.0,2874.126299729683,0.0,4974.389899859357,0.0,2562.415364672032,0.0,0.0,0.0,8173.466579257686,0.0,11437.564690193349,0.0,10161.552101282645,0.0,11183.269571720011,0.0,13451.847938287665,0.0,6689.411815254575,0.0,10590.671826336338,0.0,8834.325867354393,0.0,10179.237397607874,0.0,24907.85153784869,0,0,0,0,0,0,0,0,0.08683925490672605,0.002747533493294834,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7698627183348304,-0.7698627183348304,-0.8736982756104996,-0.8736982756104996,-0.8747992695359337,-0.8747992695359337,-0.849564606608041,-0.849564606608041,-0.2008927004351116,-0.2008927004351116,-0.6959182370407266,-0.7983803415442418,-0.7902792359614083,-0.7877269985841923,-0.35548707061325646,-0.6900897938616447,-0.8083719662533202,-0.7907407145962474,-0.7887911745482896,-0.4465918093314354,17.487348471601067,17.487348471601067,21.113883935046744,21.113883935046744,21.15474785261665,21.15474785261665,20.230729585557754,20.230729585557754,5.8369082087358635,5.8369082087358635,15.18409969633295,18.438120205090115,18.164518242540098,18.078897040811043,7.6297297779742195,15.012562119928361,18.77939729107497,18.18002921207828,18.114563882936025,9.161406464707241,212.95675382312407,212.95675382312407,0.0,236.61861535902673,0.0,212.95675382312407,236.61861535902673,0,0
+2017/02/07 12:00:00,228.97421260732148,0,1564.832058007559,0,0,0,0.0,0.0,16.73568395689411,0.0,147.76209134187457,0,39.380909295966944,0.7684555967882531,20.895097213343238,0,0,450.56653903098,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.82413463131502,0.0,1500.4161822609092,0.0,2779.419910810706,0.0,1344.0800431678742,0.0,0.0,0.0,8054.220831454888,0.0,9249.10976906266,0.0,10238.93292850933,0.0,9150.259395900026,0.0,1548.136192978975,0.0,6835.245502788392,0.0,8581.741111324214,0.0,9185.128384835127,0.0,8376.67526760916,0.0,11158.731909200314,0,0,0,0,0,0,0,0,0.08331281784986003,0.002635959482944994,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6903175000797712,-0.6903175000797712,-0.8213365129377491,-0.8213365129377491,-0.815387355593305,-0.815387355593305,-0.8102194484725115,-0.8102194484725115,-0.10028939360322085,-0.10028939360322085,-0.6428055171593812,-0.7654726757032188,-0.7579863066480225,-0.7652377315285542,-0.3390996332619797,-0.6284287220117462,-0.7697306186902709,-0.7518965954300476,-0.7634465767333488,-0.4188185883202178,15.019236215498154,15.019236215498154,19.228497416877843,19.228497416877843,19.021535879350736,19.021535879350736,18.842962467004824,18.842962467004824,5.208298396996113,5.208298396996113,13.675266627373816,17.344060036738014,17.10160771535672,17.336414784209083,7.3918141310338825,13.287870626581423,17.483024816990877,16.90615486546848,17.278206800198745,8.656821423543747,228.97421260732148,228.97421260732148,0.0,254.41579178591275,0.0,228.97421260732148,254.41579178591275,0,0
+2017/02/07 13:00:00,207.87617911964685,0,1303.357758607084,0,0,0,0.0,0.0,16.67307048032785,0.0,129.49988082968767,0,39.380909295966944,0.4152585760604253,18.475084735149665,0,0,261.7424535046607,562.4955461830774,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,218.18564264843366,0.0,1432.898111327474,0.0,572.8901451860032,0.0,0.0,0.0,7679.919704736826,0.0,7018.848903340075,0.0,10491.225641068777,0.0,7301.888150997859,0.0,0.0,0.0,6407.217222056718,0.0,6261.172755455749,0.0,9375.015033177417,0.0,6508.429634624924,0.0,0.0,0,0,0,0,0,0,0,0,0.069391732474022,0.0021955060454504566,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5381899895643257,-0.5381899895643257,-0.7419507286882183,-0.7419507286882183,-0.7744891065816819,-0.7744891065816819,-0.7758094713858363,-0.7758094713858363,-0.06329654872398716,-0.06329654872398716,-0.5230755922334402,-0.6894652733657624,-0.7146460217521854,-0.7215732058436665,-0.316060764098031,-0.4812430656145503,-0.6805483293454228,-0.702150876576713,-0.7128363423555348,-0.3768783879711539,11.06111482707665,11.06111482707665,16.590351704201694,16.590351704201694,17.639240628425398,17.639240628425398,17.682757744753474,17.682757744753474,5.082950476431009,5.082950476431009,10.72267020415488,14.994268853012997,15.745205386644244,15.956582447424793,7.076617628588508,9.837468794242838,14.734915509581725,15.3691565442562,15.690325130069795,7.957492776652657,207.87617911964685,207.87617911964685,0.0,230.97353235516317,0.0,207.87617911964685,230.97353235516317,0,0
+2017/02/07 14:00:00,205.35588685570173,0,1190.177882675501,0,0,0,0.0,0.0,16.735683873587277,0.0,129.2730206906943,0,39.380909295966944,0.22219281488597084,16.312104978112885,0,0,185.07685374711912,561.4716225215802,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,936.7326761276252,0.0,275.289817010347,0.0,0.0,0.0,5340.655532422648,0.0,5930.5111234063625,0.0,8787.729521747846,0.0,6739.052124401149,0.0,0.0,0.0,3941.0042171528826,0.0,5133.968368504681,0.0,7710.131741678812,0.0,5978.431851550492,0.0,0.0,0,0,0,0,0,0,0,0,0.0633659520463359,0.0020048545530339124,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4853943143385404,-0.4853943143385404,-0.6299148029224475,-0.6299148029224475,-0.7561993910851277,-0.7561993910851277,-0.759519844157998,-0.759519844157998,-0.08899103455833154,-0.08899103455833154,-0.468586431921887,-0.6094329196130197,-0.6935060540656494,-0.700524168331273,-0.311916914242966,-0.42447118810198015,-0.5861014656419244,-0.6801489539944688,-0.6904351142331895,-0.3613951376726592,9.921933107603678,9.921933107603678,13.32749893957046,13.32749893957046,17.04409112442434,17.04409112442434,17.151077544054388,17.151077544054388,5.1639936926642775,5.1639936926642775,9.584535558295585,12.789763772813629,15.11292845289718,15.32069528968401,7.022312729563055,8.75683440160077,12.199397327886274,14.723379949743347,15.02268437753635,7.718305944121923,205.35588685570173,205.35588685570173,0.0,228.17320761744637,0.0,205.35588685570173,228.17320761744637,0,0
+2017/02/07 15:00:00,189.62846886184084,0,1314.5122528650734,0,0,0,0.0,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,0.5107774025565278,14.049475315470117,0,0,365.56424855665426,540.8089504141616,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,921.087295022058,0.0,272.10219783079583,0.0,0.0,0.0,3601.7827330922,0.0,6100.073753926333,0.0,6644.028045289264,0.0,6966.816186748836,0.0,0.0,0.0,2519.3822183403045,0.0,5435.941626253995,0.0,5803.932059097321,0.0,6363.050643146148,0.0,4582.427532768361,0,0,0,0,0,0,0,0,0.06998560601052563,0.0022142957901814283,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5467763310544832,-0.5467763310544832,-0.5822565434693058,-0.5822565434693058,-0.7583803149099436,-0.7583803149099436,-0.761073404170788,-0.761073404170788,-0.15983439895628615,-0.15983439895628615,-0.5026952134640412,-0.5952053597222547,-0.6930872375576371,-0.7050031451680384,-0.3309000470178217,-0.47095043947218107,-0.5694255002667851,-0.6828046747385744,-0.6981943107455466,-0.3815370221654353,11.257789321290247,11.257789321290247,12.104374883555309,12.104374883555309,17.114308285788113,17.114308285788113,17.201295784554233,17.201295784554233,5.529434549506206,5.529434549506206,10.281961692832098,12.426946586655788,15.100596918774684,15.454404127534602,7.277054100794956,9.631253940741246,11.791913750583944,14.800217398821133,15.251485486124494,8.031460806279028,189.62846886184084,189.62846886184084,0.0,210.6982987353787,0.0,189.62846886184084,210.6982987353787,0,0
+2017/02/07 16:00:00,183.41101103747732,0,1278.9128147023432,0,0,0,0.0,0.0,17.241363593746797,0.0,108.75639138185811,0,39.380909295966944,0.5802413236351792,14.020130239815964,0,0,329.9680030172833,540.8057577908025,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1272.9195093933915,0.0,510.9720072542479,0.0,0.0,0.0,3716.9028034871585,0.0,6945.963746736286,0.0,5965.599778389174,0.0,7548.05859889352,0.0,3491.502577886882,0.0,2845.852145184824,0.0,6345.0470862209795,0.0,5208.630196890007,0.0,6992.712109699831,0.0,10589.329953661443,0,0,0,0,0,0,0,0,0.06809026555400069,0.0021543285392982606,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6327247431981982,-0.6327247431981982,-0.6438863075844916,-0.6438863075844916,-0.7702934885476875,-0.7702934885476875,-0.7724716210304493,-0.7724716210304493,-0.21130372379468898,-0.21130372379468898,-0.5595299327868116,-0.6479796980122375,-0.708485672870917,-0.7249901858110747,-0.35233330707673743,-0.5470596468837371,-0.6396785599911717,-0.7053060178641488,-0.7254808466627751,-0.4063905701802079,13.402691573842901,13.402691573842901,13.704751823973226,13.704751823973226,17.501452859674743,17.501452859674743,17.572890982075307,17.572890982075307,5.926069005279203,5.926069005279203,11.55581511753445,13.816883383295178,15.558964555310297,16.0616095171995,7.583055470933189,11.26433326117187,13.590244963141814,15.463476894689478,16.0767321180236,8.441744917168734,183.41101103747732,183.41101103747732,0.0,203.79001226386367,0.0,183.41101103747732,203.79001226386367,0,0
+2017/02/07 17:00:00,210.29903932666042,0,1310.5873584908738,0,0,0,0.0,0.0,21.1986728410311,0.0,131.64086955684016,0,39.380909295966944,0.5728094874388675,14.073802942929055,0,0,308.41191717914086,540.8008586486593,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,940.6502088058234,0.0,326.6469016771857,0.0,0.0,0.0,4400.126053805861,0.0,7082.309308140429,0.0,6325.979354561097,0.0,7521.8261096083515,0.0,1693.1029597435686,0.0,3582.351078823675,0.0,6526.618390219597,0.0,5598.571946285453,0.0,6984.360789310664,0.0,8947.9170981958,0,0,0,0,0,0,0,0,0.0697766417268478,0.002207684305905983,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.62892704922435,-0.62892704922435,-0.6707762755077668,-0.6707762755077668,-0.7592420527177769,-0.7592420527177769,-0.7635115309634272,-0.7635115309634272,-0.17427865112738972,-0.17427865112738972,-0.5859346106778024,-0.6806660967291568,-0.7136683022811908,-0.7327507112961765,-0.3570928535921228,-0.5843736833204919,-0.6848158308854551,-0.7131515930176441,-0.7365402830883998,-0.4116284397437147,13.301148502916135,13.301148502916135,14.454641014657966,14.454641014657966,17.142108913782693,17.142108913782693,17.280315253539925,17.280315253539925,5.629580411982943,5.629580411982943,12.195260400323377,14.738318420594581,15.715537582706858,16.302008867026373,7.65365728131367,12.156617980782357,14.858608750945379,15.69987525606669,16.420339763369967,8.531583571577272,210.29903932666042,210.29903932666042,0.0,233.6655992518449,0.0,210.29903932666042,233.6655992518449,0,0
+2017/02/07 18:00:00,234.65670163853318,0,1292.0820586229445,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,133.89528835348938,0,39.380909295966944,0.46793150284827484,18.551434992757013,0,0,249.6431819813841,581.0642939784866,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,490.55586333197135,0.0,67.6189108960672,0.0,0.0,0.0,5462.032919019512,0.0,6306.622259726573,0.0,7203.561822682753,0.0,6656.913270108692,0.0,0.0,0.0,4547.477346397514,0.0,5698.800478757829,0.0,6328.230468240082,0.0,6028.156765922217,0.0,7.010705464920078,0,0,0,0,0,0,0,0,0.06879140585488026,0.0021765121296829846,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6685886064641728,-0.6685886064641728,-0.6733150327235481,-0.6733150327235481,-0.7507234211261956,-0.7507234211261956,-0.7567617891854745,-0.7567617891854745,-0.133677439488838,-0.133677439488838,-0.5873098841458358,-0.6764639896065111,-0.7021379344746911,-0.7219011804430168,-0.34675703597203617,-0.5872218456189641,-0.6807645473884221,-0.7002912677565434,-0.7251501622346407,-0.39572956307648216,14.392462221192915,14.392462221192915,14.527058312968848,14.527058312968848,16.868683503006764,16.868683503006764,17.062178662759678,17.062178662759678,5.370204809058279,5.370204809058279,12.229394377247544,14.61726898678154,15.368770535453336,15.966641540096276,7.501564536585192,12.227206821930253,14.741163631570558,15.313766297639901,16.066538993920176,8.262517636766162,234.65670163853318,234.65670163853318,0.0,260.72966848725906,0.0,234.65670163853318,260.72966848725906,0,0
+2017/02/07 19:00:00,219.37484297217742,0,1271.1601367842557,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.43085406892893185,26.26751820672781,0,0,245.62049908903703,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,602.5848355425359,0.0,148.66457719128326,0.0,0.0,0.0,7147.435324674163,0.0,5846.186156226403,0.0,8710.83649757582,0.0,6135.82492692815,0.0,0.0,0.0,6234.015286499228,0.0,5234.081766095793,0.0,7804.942404808105,0.0,5490.948870892819,0.0,0.0,0,0,0,0,0,0,0,0,0.06767750723918149,0.0021412691539336604,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6562128512798394,-0.6562128512798394,-0.6829296800038918,-0.6829296800038918,-0.7458629570388192,-0.7458629570388192,-0.754116775302843,-0.754116775302843,-0.11064922695395572,-0.11064922695395572,-0.5739298211730841,-0.6563826580977496,-0.6784071639128312,-0.6978820414611183,-0.32043533257396434,-0.5750953202823067,-0.6613185374493478,-0.6761377130661664,-0.7008488082752115,-0.36395344665929646,14.044616609862729,14.044616609862729,14.803841668990472,14.803841668990472,16.71406768884981,16.71406768884981,16.977229020381642,16.977229020381642,5.253579862232243,5.253579862232243,11.900789204397327,14.04934447541119,14.67315074480942,15.24222715267652,7.134735309551402,11.929104216332789,14.187318250799578,14.607901954553,15.330357513340957,7.757122332117902,219.37484297217742,219.37484297217742,0.0,243.74982552464158,0.0,219.37484297217742,243.74982552464158,0,0
+2017/02/07 20:00:00,210.97045352398965,0,1259.5674414367716,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.4407756777479475,27.0977424753112,0,0,269.51815625409694,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.08086403826032,0.0,1009.3792418415362,0.0,411.8430010387622,0.0,0.0,0.0,7461.657689271892,0.0,6023.674968953957,0.0,8905.027868857702,0.0,6271.502639741902,0.0,0.0,0.0,6465.252965939663,0.0,5356.5222567604205,0.0,7902.905972777642,0.0,5563.968777458189,0.0,0.0,0,0,0,0,0,0,0,0,0.0670603035520947,0.0021217412595006943,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6721524566398496,-0.6721524566398496,-0.7113315324110744,-0.7113315324110744,-0.7481898869652086,-0.7481898869652086,-0.7570530009987329,-0.7570530009987329,-0.12611857094008558,-0.12611857094008558,-0.5661919300962021,-0.642937104744166,-0.6627176685858296,-0.6813564935645775,-0.30656146438839504,-0.5696155789708154,-0.6492487449222245,-0.6612915712397975,-0.6852106385085317,-0.34750625800123036,14.4938615453313,14.4938615453313,15.644797812372616,15.644797812372616,16.787963158744347,16.787963158744347,17.071549773486325,17.071549773486325,5.3294931197292925,5.3294931197292925,11.714296737641604,13.678853778711314,14.226620493737258,14.758279636284655,6.9532067398083655,11.796490419653452,13.851794319333933,14.186561590439766,14.870092024220767,7.512436677678309,210.97045352398965,210.97045352398965,0.0,234.41161502665517,0.0,210.97045352398965,234.41161502665517,0,0
+2017/02/07 21:00:00,212.92000999824347,0,1209.9088830578487,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.3739103821170626,24.64237044996909,0,0,255.34995038771834,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,276.4354401677422,0.0,393.40644693890886,0.0,1460.0158017472195,0.0,702.0038892416227,0.0,0.0,0.0,7815.009680715728,0.0,6227.46472132944,0.0,9161.473268774069,0.0,6444.85290642275,0.0,0.0,0.0,6727.582411869795,0.0,5500.82286000681,0.0,8060.979377166917,0.0,5673.157858926368,0.0,0.0,0,0,0,0,0,0,0,0,0.06441644512157561,0.0020380914216804194,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7041111430395486,-0.7041111430395486,-0.7345674912295199,-0.7345674912295199,-0.7560789854240645,-0.7560789854240645,-0.7642507690693487,-0.7642507690693487,-0.1602814786852516,-0.1602814786852516,-0.560312741597563,-0.6324398344764836,-0.650750533567565,-0.6681452774433052,-0.2947780249193749,-0.5654693511776678,-0.6395868660756856,-0.6498012757948975,-0.6724766658581912,-0.3337114438733902,15.427706561476555,15.427706561476555,16.358661569530057,16.358661569530057,17.040220462261985,17.040220462261985,17.30432406210423,17.30432406210423,5.5324038201363095,5.5324038201363095,11.574337485804378,13.39505195017648,13.893198079359578,14.379887000113683,6.805426132251412,11.697014309416772,13.587758214201017,13.867016023436065,14.503113291584967,7.3160803992658145,212.92000999824347,212.92000999824347,0.0,236.57778888693718,0.0,212.92000999824347,236.57778888693718,0,0
+2017/02/07 22:00:00,199.39688415866016,0,1210.2283919274973,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.403204232729433,27.0977424753112,0,0,291.15981176991096,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,656.910755692561,0.0,603.6415120608451,0.0,1762.116867418717,0.0,885.5342797593651,0.0,0.0,0.0,6122.144488622314,0.0,6740.010978099846,0.0,7421.364155737772,0.0,6949.628246551085,0.0,0.0,0.0,5323.8645563828295,0.0,6210.857114518851,0.0,6617.171131862268,0.0,6372.3337667668675,0.0,1891.304729773114,0,0,0,0,0,0,0,0,0.06443345601045805,0.002038629634347092,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7332852899343577,-0.7332852899343577,-0.7568405037987567,-0.7568405037987567,-0.7715574515371413,-0.7715574515371413,-0.7776859203689706,-0.7776859203689706,-0.2367854131949965,-0.2367854131949965,-0.5680347595280815,-0.6396327602224711,-0.6545247994519943,-0.6726228746495562,-0.3062300178054893,-0.5776615826393438,-0.6500790195245811,-0.6564802584038006,-0.6796525979289213,-0.34665638376761077,16.318663924306264,16.318663924306264,17.064711318196814,17.064711318196814,17.542883531112977,17.542883531112977,17.744730244547128,17.744730244547128,6.16345207115377,6.16345207115377,11.758475515244086,13.589002822861687,13.997684791838807,14.507287044795689,6.94896968165645,11.99165757126292,13.874672599558068,14.052062488486172,14.70905281492584,7.5001057666568585,199.39688415866016,199.39688415866016,0.0,221.55209350962238,0.0,199.39688415866016,221.55209350962238,0,0
+2017/02/07 23:00:00,141.01168189516667,0,1173.5795262994604,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.6398841217458662,21.186864965644567,0,0,414.21753244832274,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2465.8148443183027,0.0,1680.7476464070542,0.0,3409.871095826308,0.0,1909.7058186376191,0.0,0.0,0.0,5960.511009996587,0.0,7445.79040192042,0.0,7255.093681104744,0.0,7649.243581722498,0.0,2612.517477726311,0.0,5200.392871950753,0.0,6970.275358631346,0.0,6530.5020750851745,0.0,7121.266140843729,0.0,9613.981329758522,0,0,0,0,0,0,0,0,0.062482243258362276,0.0019768946229782656,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8044593205648111,-0.8044593205648111,-0.8229765303489268,-0.8229765303489268,-0.8403796924754311,-0.8403796924754311,-0.839836053371449,-0.839836053371449,-0.4662400015031568,-0.4662400015031568,-0.5864268571817902,-0.6577642058231709,-0.668140580290213,-0.687684129606319,-0.32889004137996886,-0.6027600016920728,-0.672628138802463,-0.673957000937059,-0.6985560325367841,-0.3754088459596898,18.645253055316132,18.645253055316132,19.28581266571578,19.28581266571578,19.90096591303069,19.90096591303069,19.881558047614973,19.881558047614973,9.538402693174305,9.538402693174305,12.207468416005312,14.087856812931946,14.379753808879414,14.942188723717692,7.249357902339284,12.618503645595496,14.50743733533669,14.54541445998322,15.262215278454647,7.934352093194079,141.01168189516667,141.01168189516667,0.0,156.6796465501852,0.0,141.01168189516667,156.6796465501852,0,0
+2017/02/08 00:00:00,91.45669772393902,0,1032.034253978767,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.7379633796996204,11.775778082946818,0,0,459.8092941249692,518.9894310849817,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4100.47536602158,0.0,2657.58703078302,0.0,4886.842523604621,0.0,2833.7256806164505,0.0,0.0,0.0,5950.464061972161,0.0,8190.789042843744,0.0,7279.511916516842,0.0,8380.914861487065,0.0,8840.573954379093,0.0,5189.594011641568,0.0,7655.436815118987,0.0,6461.3076320001155,0.0,7788.573928302539,0.0,16338.10077216375,0,0,0,0,0,0,0,0,0.05494626811648171,0.0017384616224971616,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8744044553973499,-0.8744044553973499,-0.8892683055106598,-0.8892683055106598,-0.9136727998490157,-0.9136727998490157,-0.9050658867952451,-0.9050658867952451,-0.5551969085309164,-0.5551969085309164,-0.6074473974207177,-0.6766303964774067,-0.6832587377631377,-0.7034924547510581,-0.355252153753309,-0.6262534158039705,-0.6946652237035118,-0.6915954278708307,-0.7170996010004287,-0.406151122083744,21.140088399313413,21.140088399313413,21.696397976568917,21.696397976568917,22.62933010527496,22.62933010527496,22.297547746981095,22.297547746981095,11.453770213777986,11.453770213777986,12.738603472696056,14.622048114632662,14.813385251766775,15.40920942504738,7.626238523164275,13.230035991337985,15.147098279488631,15.05673400126966,15.819837873319855,8.437666043451628,91.45669772393902,91.45669772393902,0.0,101.6185530265989,0.0,91.45669772393902,101.6185530265989,0,0
+2017/02/08 01:00:00,40.1710205987202,0,725.3247551658762,0,0,0,0.0,0.0024228304230681386,4.166984770466865,9.319298099999997,16.311038125956312,0,0.4778043831189304,0.32490491529812165,9.56856747345689,0,0,155.44260044172307,516.646625955337,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.093394329506943,1200.2869084280326,0.0,971.1953451454718,1.329436093561195,1655.7802934761426,0.0,1087.904532383407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.038616827217912895,0.0012218094950257029,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9013602178845364,-0.9013602178845364,-0.918960512234687,-0.918960512234687,-0.9382006963444097,-0.9382006963444097,-0.9339309254123296,-0.9339309254123296,-0.2365166145298838,-0.2365166145298838,-1.0651907431829803,-1.1289968469576128,-1.1315289280592358,-1.152646446792121,-0.14441670010257582,-0.959308648342697,-1.0527265370189558,-1.0591509865415074,-1.0816089055744793,-0.33818556468213873,22.155623878188848,22.155623878188848,22.834645062802267,22.834645062802267,23.59117608390754,23.59117608390754,23.4220111007414,23.4220111007414,6.16080587310239,6.16080587310239,28.943552261922335,31.853604771344465,31.971911634300838,32.96663849557346,5.432133158639218,24.438057944704312,28.39162865074408,28.67541348420953,29.678971306246567,7.378879601554587,40.1710205987202,40.1710205987202,0.0,44.63446733191133,0.0,40.1710205987202,44.63446733191133,0,0
+2017/02/08 02:00:00,23.747296245428593,0,43.426862806462175,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5502008217508014,0,0,0.0,7.936510293918037,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002312078342382839,7.315254710144253e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.1237908068093412,-1.1237908068093412,-1.1971562329226317,-1.1971562329226317,-1.2302601274096694,-1.2302601274096694,-1.2425453491555019,-1.2425453491555019,-0.08599046083086828,-0.08599046083086828,-1.157235135837099,-1.2692075313821694,-1.3103878670897284,-1.324699311271976,-0.07526446590195592,-1.119806034971148,-1.2443813447916676,-1.2812881682692168,-1.2973338978022169,-0.3755029163778733,31.61102098277101,31.61102098277101,35.10859188633523,35.10859188633523,36.73919798128254,36.73919798128254,37.35198657349473,37.35198657349473,5.153117572316418,5.153117572316418,33.18465863734296,38.695364401857034,40.803973869134744,41.54561041855289,5.117292694428187,31.425946662769135,37.4439093983652,39.30985554802902,40.13135286814327,7.935830647515431,23.747296245428593,23.747296245428593,0.0,26.38588471714288,0.0,23.747296245428593,26.38588471714288,0,0
+2017/02/08 03:00:00,28.344224915695424,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248618292225277,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.1458013254834805,-1.1458013254834805,-1.2228968572049366,-1.2228968572049366,-1.2563220943535889,-1.2563220943535889,-1.2694678254360714,-1.2694678254360714,-0.010435414733795237,-0.010435414733795237,-1.1860650964561203,-1.315441765291602,-1.3675923367735068,-1.3781364706571944,-0.0543393435942311,-1.185161993490541,-1.3253685342987789,-1.3744155339822763,-1.3850544017337876,-0.3704457433212949,32.64264274096267,32.64264274096267,36.373864342052784,36.373864342052784,38.04387822663767,38.04387822663767,38.70856722076774,38.70856722076774,5.002254251607042,5.002254251607042,34.56927869277946,41.065378914752436,43.79268998847088,44.35016792988286,5.061131791725757,34.525524332999694,41.58039503298426,44.15322580965959,44.716920531480696,7.856879661231474,28.344224915695424,28.344224915695424,0.0,31.493583239661582,0.0,28.344224915695424,31.493583239661582,0,0
+2017/02/08 04:00:00,23.722048445516837,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249530218390455,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.2215186172441628,-1.2215186172441628,-1.3020618795155785,-1.3020618795155785,-1.3302076092846271,-1.3302076092846271,-1.3480286735242715,-1.3480286735242715,0.0512627512183001,0.0512627512183001,-1.2675374457309605,-1.4022378344265427,-1.4605030389994695,-1.4681458996618333,-0.025560232123948614,-1.2888542058056514,-1.4339119820640855,-1.4901541929629385,-1.4963058202983635,-0.38286364604595247,36.30564682747464,36.30564682747464,40.374532416480484,40.374532416480484,41.832190302929135,41.832190302929135,42.76348513753123,42.76348513753123,5.054404628836338,5.054404628836338,38.61069266448302,45.63111363551832,48.76001580039601,49.17317448483336,5.013524560634622,39.696474426056334,47.32706413500172,50.36558655520182,50.69950113905404,8.052693903233603,23.722048445516837,23.722048445516837,0.0,26.357831606129817,0.0,23.722048445516837,26.357831606129817,0,0
+2017/02/08 05:00:00,44.872419410659106,0,413.4540551380995,0,0,0,0.0,0.030052005083375754,4.633261998087618,9.319298099999997,25.555573451546493,0,2.8971126135314815,1.9120396016774743,0.5250816407326608,0,0,324.72817385673915,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3663983149693613,2102.6089368815205,1.4592260486620208,1657.97174380241,1.7415185757830698,2797.9230904744177,0.4021785858183368,1846.1112238657506,0.0,0.0,3.2874826241678905,5641.900117613705,2.3124809982679415,4164.896906069668,4.956877273674675,7038.342806721195,2.4815727221713444,4444.6073142707455,0.0,0.0,3.388299819778764,5144.467747244655,2.8630177043268157,3808.74015246451,3.282575063675651,6499.624672570596,2.5103773520798724,4045.039712471769,0.0,0.0,0,0,0,0,0,0,0,0,0.02201260014372742,0.0006964633244994979,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0073486824936018,-1.0073486824936018,-1.0426225713911945,-1.0426225713911945,-1.052538890066294,-1.052538890066294,-1.062128755737507,-1.062128755737507,0.18724828266459623,0.18724828266459623,-0.8235606633526219,-0.8831152640045105,-0.9059659980733111,-0.9126986655040142,0.005958154792655437,-0.8579034637091244,-0.9251834681570384,-0.9401000964989429,-0.9503500982273092,-0.37045406029837064,26.43009478955061,26.43009478955061,27.948322533661837,27.948322533661837,28.383362093319775,28.383362093319775,28.807450857600188,28.807450857600188,5.726919747727891,5.726919747727891,19.30625421004268,21.465009238433183,22.332105256773303,22.59162863438543,5.0007348608184685,20.533157047743572,23.077713914354746,23.666661716614485,24.076481678679627,7.857008607918004,44.872419410659106,44.872419410659106,0.0,49.85824378962123,0.0,44.872419410659106,49.85824378962123,0,0
+2017/02/08 06:00:00,77.78973614183606,0,409.96144661824883,0,0,0,0.09305138535138731,0.023555382694239423,5.555297838843742,9.319298099999997,57.911447091112116,0,2.620766450083033,1.7412903007911198,0.5250295929603778,0,0,197.01933154298408,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,295.0167745840749,0.0,0.0,0.0,0.0,0.0,0.2665607834435946,1045.7670447672458,0.0,858.6929267831099,0.61702413805682,1426.99257420612,0.25406758312311695,974.4354599450289,0.0,0.0,2.993584902444809,4605.872642185148,2.202130443745318,3461.238339547692,3.796325890612934,5902.312492095185,2.2144820061957944,3723.0367954067174,0.0,0.0,3.0523103032928702,4390.786560796118,2.3019472935342264,3296.7437672310216,3.277145393343517,5645.621901496023,2.579803956446426,3514.6717098449544,0.0,0.0,0,0,0,0,0,0,0,0,0.021826651079132155,0.000690580025712894,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9092261880874692,-0.9092261880874692,-0.9408295790113925,-0.9408295790113925,-0.9458101205777336,-0.9458101205777336,-0.956128985605543,-0.956128985605543,0.5116449820784728,0.5116449820784728,-0.7571292590685724,-0.8030994101183169,-0.8182523849074638,-0.8228687259180965,0.11691791937284375,-0.764872610106785,-0.8122579572846977,-0.818801678647342,-0.8280893660429088,-0.29351917179528997,22.45754660394097,22.45754660394097,23.6956907418745,23.6956907418745,23.89444983536498,23.89444983536498,24.309362664342146,24.309362664342146,10.473280589796644,10.473280589796644,17.07400433510294,18.5987802765964,19.12101971452182,19.282041651483198,5.2831441268482,17.324538147696373,18.913267259136745,19.140132579725787,19.465220721664053,6.789985365434248,77.78973614183606,77.78973614183606,0.0,86.43304015759561,0.0,77.78973614183606,86.43304015759561,0,0
+2017/02/08 07:00:00,103.2513253685082,0,887.0215367715431,0,0,0,0.0,0.020558835204054656,11.110595677687485,13.929299233552332,73.80580873715317,0,2.3780722278871047,1.4819319352787865,0.5250587217452396,0,0,150.35083766773698,505.9834077722693,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,497.81074845455396,0.0,496.3694940922701,0.0,815.381931059985,0.0,574.6840344002329,0.0,0.0,3.225982225863693,3558.0367054331014,1.8856174519560227,2697.864304095634,4.345417928567864,4604.741928983847,1.884360940249432,2909.483480810648,0.0,0.0,1.8495496912106921,3357.2171093802713,2.535531352147548,2522.993076432696,1.980688304698257,4303.868749937805,2.851687309361144,2683.0652353036467,0.0,0.0,0,0,0,0,0,0,0,0,0.04722568364048271,0.0014941877113678712,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8414549177668756,-0.8414549177668756,-0.8735274757388986,-0.8735274757388986,-0.8754329703737264,-0.8754329703737264,-0.8893458130410727,-0.8893458130410727,0.7632674761176221,0.7632674761176221,-0.7397159275807735,-0.7806159897359759,-0.7954338847704003,-0.8006428493758198,0.17899160347516854,-0.7444011222568628,-0.788017050417193,-0.7925037538639346,-0.8023196303027593,-0.1510005573469414,19.939387686562924,19.939387686562924,21.10754908638701,21.10754908638701,21.178290579883324,21.178290579883324,21.699322568307295,21.699322568307295,17.272394020095163,17.272394020095163,16.51997545519842,17.84179985823114,18.33828648224609,18.515029418202744,5.664139687417531,16.667763437939797,18.088613629971064,18.239370717549747,18.572167807415653,5.472472819051305,103.2513253685082,103.2513253685082,0.0,114.723694853898,0.0,103.2513253685082,114.723694853898,0,0
+2017/02/08 08:00:00,151.15306173675197,0,1195.9680354636819,0,0,0,0.0,0.0,11.110595677687485,0.0,69.33401494192633,0,39.380909295966944,0.7989007530745912,27.096665865642315,0,0,330.13498407491204,599.655407544689,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4128.542403366644,0.0,2610.162604037275,0.0,4672.366561109235,0.0,2716.6401515297766,0.0,0.0,0.0,8130.322984952174,0.0,9076.30434279301,0.0,9326.68423156555,0.0,9218.390964200067,0.0,7866.837900286809,0.0,7863.843410725551,0.0,8848.568373886435,0.0,8968.754771109885,0.0,8915.753427459551,0.0,12568.395665676051,0,0,0,0,0,0,0,0,0.06367422406958342,0.002014608064966138,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8606751855586784,-0.8606751855586784,-0.886724435726054,-0.886724435726054,-0.8953526734419187,-0.8953526734419187,-0.9010356347916814,-0.9010356347916814,0.11308284621183029,0.11308284621183029,-0.7241974246544638,-0.7737483742825108,-0.7738723020334054,-0.790377664833847,-0.19974603032819274,-0.7307861596769067,-0.7844567774774954,-0.7750218059205893,-0.7962996464045815,-0.3432911741188085,20.63431859225851,20.63431859225851,21.600546422364317,21.600546422364317,21.926725309126354,21.926725309126354,22.143219171497307,22.143219171497307,5.264863382780149,5.264863382780149,16.037197805221524,17.614859794916967,17.618937186429633,18.167825822308544,5.827365274772504,16.240907796141627,17.969593541803732,17.65678861157768,18.3675826193177,7.451581091569508,151.15306173675197,151.15306173675197,0.0,167.94784637416885,0.0,151.15306173675197,167.94784637416885,0,0
+2017/02/08 09:00:00,166.03231367558905,0,1318.0911495188977,0,0,0,0.0,0.0,12.209901403182826,0.0,83.2008179303116,0,39.380909295966944,0.7109673683621675,27.097742475311204,0,0,399.0225693613116,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,930.6050635842047,0.0,2126.116676144621,0.0,3883.128348347055,0.0,1229.3959952145415,0.0,0.0,0.0,5708.658882848962,0.0,8656.002794913515,0.0,8775.028265166202,0.0,7752.324668905666,0.0,2058.407726769386,0.0,5008.0965640905815,0.0,8418.264085657904,0.0,8367.598884348694,0.0,7238.803884744854,0.0,11339.579956712805,0,0,0,0,0,0,0,0,0.07017614911928785,0.002220324441323162,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6435984071121174,-0.6435984071121174,-0.8679741203283361,-0.8679741203283361,-0.8747091999258421,-0.8747091999258421,-0.7208528850151767,-0.7208528850151767,-0.2473990743707555,-0.2473990743707555,-0.5984747559010593,-0.7639660023006537,-0.7592901805855591,-0.6937240251130757,-0.2976854230466355,-0.5863666117859847,-0.7754939980375193,-0.7619167401520082,-0.684471332622662,-0.3985646418803202,13.696892620979838,13.696892620979838,20.902233883492272,20.902233883492272,21.15140300227762,21.15140300227762,15.934506214560912,15.934506214560912,6.270363749671674,6.270363749671674,12.509542041892274,17.295072707540825,17.143662508875806,15.1193493390642,6.841343435415169,12.205973728470639,17.67235349494885,17.228599496055907,14.848594269213265,8.309704873872334,166.03231367558905,166.03231367558905,0.0,184.48034852843227,0.0,166.03231367558905,184.48034852843227,0,0
+2017/02/08 10:00:00,182.54648910023485,0,1313.4223543468504,0,0,0,0.0,0.0,11.435487997441953,0.0,106.27511244621549,0,39.380909295966944,0.625254651823327,21.397749506332882,0,0,341.118245420448,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1374.5913568530466,0.0,2708.4539691364207,0.0,0.0,0.0,0.0,0.0,3866.033325217156,0.0,7895.39036276582,0.0,7749.195478375463,0.0,6834.355968338192,0.0,1432.5422604907512,0.0,3055.791873523122,0.0,7658.44554694024,0.0,7344.531660738842,0.0,6318.063965786794,0.0,9195.454894534294,0,0,0,0,0,0,0,0,0.06992757900612033,0.0022124598562102034,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4990734830618834,-0.4990734830618834,-0.8353641953817579,-0.8353641953817579,-0.8408190704092345,-0.8408190704092345,-0.6783543657474483,-0.6783543657474483,-0.25782445251294295,-0.25782445251294295,-0.48214742929052107,-0.7473393747635576,-0.738352037267396,-0.6630715272689867,-0.3109003620756385,-0.44199785178457923,-0.7538604692474099,-0.7350624619918972,-0.6487489473811822,-0.3972379112171868,10.205524127141771,10.205524127141771,19.722381621742073,19.722381621742073,19.9166606800471,19.9166606800471,14.671630217233172,14.671630217233172,6.379987671937386,6.379987671937386,9.855806281035655,16.76092684289324,16.477130424245672,14.23657398400205,7.009101935379107,9.075656367821068,16.969013175061463,16.37412083520944,13.838036769347,8.287579887903718,182.54648910023485,182.54648910023485,0.0,202.82943233359427,0.0,182.54648910023485,202.82943233359427,0,0
+2017/02/08 11:00:00,212.4921456797601,0,1344.5730742695573,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.6106136138768361,18.37506178051227,0,0,320.6975320254003,562.5009595810833,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,861.5192448827324,0.0,1850.7565231316464,0.0,0.0,0.0,0.0,0.0,1076.1627550394676,0.0,8056.387108919592,0.0,6363.512576948544,0.0,7273.642404098808,0.0,4966.08097997082,0.0,0.0,0.0,7694.873486081788,0.0,5786.5231713024405,0.0,6711.776185565963,0.0,12238.109825240917,0,0,0,0,0,0,0,0,0.07158606640835116,0.002264933241555703,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.28999712947974615,-0.28999712947974615,-0.7935576248182521,-0.7935576248182521,-0.7926750943241545,-0.7926750943241545,-0.687462491816756,-0.687462491816756,-0.20961803458341474,-0.20961803458341474,-0.39730130661294866,-0.7440714274448781,-0.7292772159843588,-0.6826724223194238,-0.33346888267984837,-0.33578911325137056,-0.746998945250311,-0.7228401469164203,-0.671368631547372,-0.4060663546142323,6.747140544957574,6.747140544957574,18.274905529504437,18.274905529504437,18.245144832994555,18.245144832994555,14.935717692498685,14.935717692498685,5.911324856599819,5.911324856599819,8.28863537707359,16.657332874450603,16.19408958732714,14.79638374807324,7.312700072334209,7.34513707021307,16.750113863114976,15.995465563304023,14.471512839936736,8.436222662035803,212.4921456797601,212.4921456797601,0.0,236.10238408862233,0.0,212.4921456797601,236.10238408862233,0,0
+2017/02/08 12:00:00,228.67603268892773,0,1326.7465144998253,0,0,0,0.0,0.0,16.73568395689411,0.0,147.76209134187457,0,39.380909295966944,0.4172687915900604,20.948104100147667,0,0,212.48099552324624,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,144.88072755873466,0.0,0.0,0.0,0.0,0.0,587.0039877790232,0.0,6538.2336204250205,0.0,6744.848215016066,0.0,6125.851930894378,0.0,0.0,0.0,0.0,0.0,6146.111865385935,0.0,6128.989141273645,0.0,5615.961504377129,0.0,823.6682011773339,0,0,0,0,0,0,0,0,0.07063696716195897,0.002234904402976603,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.12681679974072252,-0.12681679974072252,-0.7165222849961768,-0.7165222849961768,-0.7263427201536625,-0.7263427201536625,-0.619429775930635,-0.619429775930635,-0.11262290735903976,-0.11262290735903976,-0.3299592873623023,-0.7069116083048876,-0.6936018578163742,-0.6710839586208621,-0.3245387559004798,-0.2153387218746718,-0.7010557743327063,-0.6797771691633855,-0.6558078083226972,-0.37946377605099485,5.333154150225468,5.333154150225468,15.802253857673591,15.802253857673591,16.103320893999467,16.103320893999467,13.049948823194086,13.049948823194086,5.2627120139332675,5.2627120139332675,7.264069879289437,15.511639593519234,15.11575034084369,14.463402726034516,7.189987899828779,5.961845009626714,15.336519796445145,14.712647515911726,14.03334420063446,7.998428204635445,228.67603268892773,228.67603268892773,0.0,254.08448076547526,0.0,228.67603268892773,254.08448076547526,0,0
+2017/02/08 13:00:00,207.71206802188277,0,1221.170361777352,0,0,0,0.0,0.0,16.568294279967066,0.0,129.49988082968767,0,39.380909295966944,0.36354443246107165,18.467463981345745,0,0,179.55121558926834,562.4993872687378,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,587.6373877054737,0.0,4946.829809071642,0.0,7602.557614041965,0.0,5125.678352472445,0.0,0.0,0.0,0.0,0.0,4474.837569254826,0.0,6958.363308610327,0.0,4645.670201525541,0.0,0.0,0,0,0,0,0,0,0,0,0.06501601459005431,0.00205706138172869,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.0046993478616919404,0.0046993478616919404,-0.5632794724866201,-0.5632794724866201,-0.6606459929798931,-0.6606459929798931,-0.5427952132749719,-0.5427952132749719,-0.07269800516417985,-0.07269800516417985,-0.2646859289632877,-0.6230787583381262,-0.6593769246407195,-0.6384779871184705,-0.30681510784032395,-0.11395219276567338,-0.6000016720156939,-0.6383584374461343,-0.6152436271011799,-0.34708704888305864,5.000457147611229,5.000457147611229,11.644775754338326,11.644775754338326,14.16845634423592,14.16845634423592,11.166202590622134,11.166202590622134,5.1094280401896555,5.1094280401896555,6.454631674879167,13.14600018229197,14.13291795033247,13.557714166659892,6.956452338592825,5.268953763327701,12.548275775226443,13.554478263895007,12.940469416709263,7.5063504923841435,207.71206802188277,207.71206802188277,0.0,230.79118669098085,0.0,207.71206802188277,230.79118669098085,0,0
+2017/02/08 14:00:00,205.3465072827296,0,1163.5854184553104,0,0,0,0.0,0.0,16.67307048032785,0.0,129.2730206906943,0,39.380909295966944,0.2770623779966452,16.310469235289503,0,0,158.47386951192593,561.4821425365828,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,850.1055963351687,0.0,5182.02584153968,0.0,7467.969818239528,0.0,5681.397844492894,0.0,0.0,0.0,0.0,0.0,4620.87565367004,0.0,6659.634934035716,0.0,5113.603011884398,0.0,0.0,0,0,0,0,0,0,0,0,0.06195014955403741,0.0019600595490733346,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.11312631035702732,-0.11312631035702732,-0.5176991097301877,-0.5176991097301877,-0.6664699987392214,-0.6664699987392214,-0.5457802528002387,-0.5457802528002387,-0.09048558490284042,-0.09048558490284042,-0.28886749813025436,-0.5659388828667441,-0.6512774668177621,-0.6327846086412371,-0.30701578621782805,-0.14953771798945328,-0.5294572466913879,-0.632294496972728,-0.6115686211539108,-0.3436896059169661,5.2650671412345815,5.2650671412345815,10.604663574253067,10.604663574253067,14.332443835177386,14.332443835177386,11.234809834691035,11.234809834691035,5.1695503199699715,5.1695503199699715,6.733509800311225,11.708241852362718,13.907748605507507,13.404297270595308,6.959022129861552,5.463353957768788,10.864362917936376,13.391156185283407,12.844984694271432,7.4573011624314915,205.3465072827296,205.3465072827296,0.0,228.16278586969955,0.0,205.3465072827296,228.16278586969955,0,0
+2017/02/08 15:00:00,189.56225772985192,0,1197.6238025912694,0,0,0,0.0,0.0,16.735683873587277,0.0,115.5196477718057,0,39.38090929596695,0.49906529201699656,13.994976294020757,0,0,248.6324915148645,540.8522571821474,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,456.3154471416775,0.0,0.0,0.0,0.0,0.0,309.26712538946236,0.0,5888.8910384564215,0.0,6219.992930703729,0.0,6338.835637187825,0.0,0.0,0.0,0.0,0.0,5269.3464655916605,0.0,5516.768329579013,0.0,6176.4194057593495,0.0,5297.933944226972,0,0,0,0,0,0,0,0,0.06376237833789392,0.002017397204566888,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2971885407065593,-0.2971885407065593,-0.510840366158704,-0.510840366158704,-0.7041929759346113,-0.7041929759346113,-0.611080438257767,-0.611080438257767,-0.15739410753230565,-0.15739410753230565,-0.3327903826482748,-0.5469248424951165,-0.6595064365228306,-0.7099076932752293,-0.32773745912078345,-0.23443991143109402,-0.5098850310273629,-0.6460422842518622,-0.6369673746367456,-0.36983625641707213,6.83517976118199,6.83517976118199,10.45593865737672,10.45593865737672,15.430154384454966,15.430154384454966,12.832344733306684,12.832344733306684,5.5133742217599035,5.5133742217599035,7.30325777530048,11.261219157980719,14.13654154309856,15.601810107161441,7.23355360348134,6.140463918689093,10.435384620763742,13.76372062946156,13.516871336244861,7.8474381829808095,189.56225772985192,189.56225772985192,0.0,210.62473081094657,0.0,189.56225772985192,210.62473081094657,0,0
+2017/02/08 16:00:00,182.96917587035847,0,1222.9654742500165,0,0,0,0.0,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,0.58376667746955,14.080449439022356,0,0,274.0109154038021,540.8155049519569,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,783.928626491628,0.0,0.0,0.0,0.0,0.0,395.6618205541853,0.0,6450.9588275937485,0.0,5241.485957571933,0.0,7246.401853439664,0.0,6427.8843369884235,0.0,0.0,0.0,5904.829737944187,0.0,4704.715912761099,0.0,6821.280361958445,0.0,11716.240788375366,0,0,0,0,0,0,0,0,0.06511158770775076,0.0020600852485526473,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4951395061708872,-0.4951395061708872,-0.5633845795193904,-0.5633845795193904,-0.7176742977847378,-0.7176742977847378,-0.655914655525164,-0.655914655525164,-0.1954012710387002,-0.1954012710387002,-0.3909022871823913,-0.569587126717728,-0.672443004367178,-0.6913961582104133,-0.3501830797089394,-0.30016058169326354,-0.5409694750450185,-0.6654839589785891,-0.6668542172556228,-0.3956336312461311,10.123138662353682,10.123138662353682,11.64727828271053,11.64727828271053,15.83735637083727,15.83735637083727,14.036317084711897,14.036317084711897,5.791705731858585,5.791705731858585,8.182962923329768,11.795805253441955,14.502152503967466,15.050882257544686,7.551475661595575,6.872202496070315,11.124430675370988,14.304576438717433,14.34331399600076,8.26092695356121,182.96917587035847,182.96917587035847,0.0,203.2990843003983,0.0,182.96917587035847,203.2990843003983,0,0
+2017/02/08 17:00:00,207.13148000397854,0,1274.7051208612327,0,0,0,0.0,0.0,18.045706811626918,0.0,131.64086955684016,0,39.380909295966944,0.5716908406429299,14.060328296447263,0,0,272.4978695447686,540.8326686533903,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,427.32371138722254,0.0,0.0,0.0,0.0,0.0,1448.599037766231,0.0,6468.329740938257,0.0,5469.303465142653,0.0,7077.4400174866905,0.0,4628.000407430394,0.0,613.7360386369801,0.0,6063.8157298232545,0.0,5099.2391338954185,0.0,6785.172333235547,0.0,9789.295233531755,0,0,0,0,0,0,0,0,0.06786624481723308,0.0021472406793422685,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6005167030461027,-0.6005167030461027,-0.5399908575651936,-0.5399908575651936,-0.7115837811970338,-0.7115837811970338,-0.6496046441856961,-0.6496046441856961,-0.15342430527744616,-0.15342430527744616,-0.43624030361117816,-0.600076948731264,-0.6830626297277251,-0.6966699085512849,-0.3543615692522574,-0.39095846023062375,-0.5859107136507266,-0.6824658074237013,-0.6889344971957106,-0.40083344239097213,12.56136354173563,12.56136354173563,11.102099884946682,11.102099884946682,15.652422671212875,15.652422671212875,13.861597491272192,13.861597491272192,5.487777834935841,5.487777834935841,8.96946762180987,12.550187959230414,14.807697013962837,15.206329057314605,7.613024286343645,8.183882941089749,12.194668006999436,14.790396038213558,14.978734768074148,8.347714597632972,207.13148000397854,207.13148000397854,0.0,230.14608889330947,0.0,207.13148000397854,230.14608889330947,0,0
+2017/02/08 18:00:00,220.77322170464421,0,1282.4015834825375,0,0,0,0.0,0.0,24.999863057464953,0.0,133.89528835348938,0,39.380909295966944,0.5172927139161356,18.547893081352438,0,0,239.95939906614234,581.0676017533214,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.573274119059025,0.0,0.0,0.0,0.0,0.0,2982.87958143596,0.0,6042.0565296144305,0.0,6505.435303381167,0.0,6387.919892663256,0.0,0.0,0.0,2427.274520089467,0.0,5773.153436978271,0.0,6272.905684419294,0.0,6176.427014693247,0.0,2478.9277230213584,0,0,0,0,0,0,0,0,0.06827601018801253,0.002160205370043705,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6491211250649896,-0.6491211250649896,-0.559396501959043,-0.559396501959043,-0.7026109601425196,-0.7026109601425196,-0.6275629283472685,-0.6275629283472685,-0.10899672948629495,-0.10899672948629495,-0.45140425147323093,-0.6255821073778278,-0.6749085944783093,-0.6867849888613664,-0.3432301346037599,-0.4332419169404472,-0.6228148484495668,-0.6753903425556618,-0.6859061903756355,-0.3879292566493125,13.848280394199648,13.848280394199648,11.552660605392703,11.552660605392703,15.382883610060745,15.382883610060745,13.264827266290993,13.264827266290993,5.246058258587723,5.246058258587723,9.252208044569684,13.212229442574412,14.572656709279912,14.915950194985498,7.450705376044013,8.91473109942217,13.139033957570362,14.58646315041679,14.890339063344186,8.134462229948426,220.77322170464421,220.77322170464421,0.0,245.3035796718269,0.0,220.77322170464421,245.3035796718269,0,0
+2017/02/08 19:00:00,219.4301533907542,0,1205.516587961223,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.3653873195236313,26.38829537470992,0,0,179.97695026600414,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.572608440421263,0.0,0.0,0.0,0.0,0.0,4877.235124064816,0.0,5371.94608276432,0.0,8079.734237501943,0.0,5650.17827883245,0.0,0.0,0.0,4354.925494576146,0.0,5105.614835517759,0.0,7790.907578317738,0.0,5403.088356433098,0.0,0.0,0,0,0,0,0,0,0,0,0.064182596077229,0.002030692600923523,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.591462359469182,-0.591462359469182,-0.6081542562959041,-0.6081542562959041,-0.7045061387817743,-0.7045061387817743,-0.6201359965555413,-0.6201359965555413,-0.09773425914100319,-0.09773425914100319,-0.45378072326126734,-0.614473424745413,-0.6612482394891152,-0.6659663161458736,-0.3188992408104372,-0.4458810454515688,-0.6147587833645916,-0.6625845937200221,-0.6684136236194659,-0.35815612159463606,12.332955940896355,12.332955940896355,12.756797260271412,12.756797260271412,15.439524523383241,15.439524523383241,13.068493421023433,13.068493421023433,5.19781526831791,5.19781526831791,9.29741499050192,12.920409320768101,14.185345785945515,14.318203527011889,7.114235419947278,9.14808012551201,12.927838548882278,14.222878709756614,14.387497739853359,7.6695612595045475,219.4301533907542,219.4301533907542,0.0,243.81128154528244,0.0,219.4301533907542,243.81128154528244,0,0
+2017/02/08 20:00:00,210.8802464855273,0,1213.793166557814,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.35056863928561255,27.0977424753112,0,0,223.7438813751396,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,401.7582182086775,0.0,0.0,0.0,0.0,0.0,5274.554939697376,0.0,5545.817484999955,0.0,8227.795716607297,0.0,5784.704605340228,0.0,0.0,0.0,4889.844789636994,0.0,5338.175683512736,0.0,8005.8775879833365,0.0,5582.971502544833,0.0,0.0,0,0,0,0,0,0,0,0,0.06462324725222844,0.0020446344969412985,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5865537844183316,-0.5865537844183316,-0.6296320512214126,-0.6296320512214126,-0.7128588479451704,-0.7128588479451704,-0.639734913906516,-0.639734913906516,-0.11918147889287388,-0.11918147889287388,-0.46206213542244934,-0.6093882530482645,-0.654808361894435,-0.6550783119155921,-0.306092908296954,-0.46257012893729726,-0.6141140750945433,-0.6586787161005252,-0.6609738925514821,-0.3429265402795703,12.210617994679353,12.210617994679353,13.31995161060236,13.31995161060236,15.691006766889188,15.691006766889188,13.59177346836644,13.59177346836644,5.294220681591042,5.294220681591042,9.456849361398852,12.788610982833092,14.00555986585043,14.013060134659824,6.9472182968316645,9.466725412964834,12.911058785000137,14.113395402479085,14.17765003329518,7.446352151940559,210.8802464855273,210.8802464855273,0.0,234.3113849839192,0.0,210.8802464855273,234.3113849839192,0,0
+2017/02/08 21:00:00,212.76703026178748,0,1128.272384076138,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.21940098183716567,24.64390011379297,0,0,173.71345140600772,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,751.6481703287809,0.0,0.0,0.0,0.0,0.0,5588.934763774822,0.0,5672.781810900719,0.0,8332.322913356858,0.0,5874.848795424845,0.0,0.0,0.0,5335.078871933858,0.0,5520.323364973363,0.0,8186.651944308493,0.0,5727.96030177076,0.0,0.0,0,0,0,0,0,0,0,0,0.06007005744709029,0.0019005747453418329,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5724776244790257,-0.5724776244790257,-0.6502711584329031,-0.6502711584329031,-0.7256673450593086,-0.7256673450593086,-0.6758566862272191,-0.6758566862272191,-0.15906383340253066,-0.15906383340253066,-0.46981574360081524,-0.6098848457582543,-0.6516967970186626,-0.6511017104716232,-0.299808749990992,-0.47572156702308177,-0.6179725154074039,-0.657430138853434,-0.6592152339528529,-0.3358196545341609,11.86559152945766,11.86559152945766,13.879971259934564,13.879971259934564,16.082482879821598,16.082482879821598,14.59983768307319,14.59983768307319,5.524336406062943,5.524336406062943,9.608799606633013,12.801432309738857,13.919336423802378,13.90289400158737,6.867800241249157,9.726276437950048,13.011751129328402,14.078536704587876,14.128395051806706,7.345565563662333,212.76703026178748,212.76703026178748,0.0,236.4078114019861,0.0,212.76703026178748,236.4078114019861,0,0
+2017/02/08 22:00:00,199.6290246028612,0,1349.8120471530478,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.6353446769304647,27.0977424753112,0,0,430.7434669954616,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,417.5643671282046,0.0,1900.2264782756781,0.0,678.9790216950839,0.0,0.0,0.0,4885.3503341068335,0.0,7062.324884595698,0.0,7430.794105780527,0.0,7270.06894757431,0.0,1640.3190349372867,0.0,4659.89082841757,0.0,6904.698444475824,0.0,7284.639411462587,0.0,7122.023839092773,0.0,6553.958207493291,0,0,0,0,0,0,0,0,0.07186499320521034,0.002273758290980312,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6417771289059367,-0.6417771289059367,-0.7110827700066946,-0.7110827700066946,-0.7526552770466819,-0.7526552770466819,-0.7223851666177012,-0.7223851666177012,-0.23645845699210438,-0.23645845699210438,-0.49241811663286245,-0.6321281395742882,-0.6648237165944265,-0.6691264339594314,-0.3151256068983148,-0.5065298838093649,-0.6467423904910328,-0.6749675551709663,-0.682019641869715,-0.3561438482144983,13.64725805273585,13.64725805273585,15.637281024600242,15.637281024600242,16.930418648329038,16.930418648329038,15.981494018372246,15.981494018372246,6.160233738232179,6.160233738232179,10.066538413130047,13.386698107853505,14.285940245637264,14.407729357255903,7.06429891324801,10.363511301957601,13.78291280906349,14.574345927172871,14.777472436719563,7.639503046670512,199.6290246028612,199.6290246028612,0.0,221.81002733651243,0.0,199.6290246028612,221.81002733651243,0,0
+2017/02/08 23:00:00,141.25514466442235,0,1246.9692061280884,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.8451091492648953,21.22510270738122,0,0,487.60721227695103,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2272.023939014822,0.0,1980.378196286022,0.0,4286.377699576764,0.0,2222.037573855667,0.0,0.0,0.0,5512.040850592697,0.0,8580.360591517652,0.0,7900.944987735784,0.0,8806.273240397644,0.0,12403.590672912309,0.0,5268.068376777912,0.0,8465.956797248615,0.0,7782.551406163686,0.0,8675.853717957707,0.0,17730.74675377622,0,0,0,0,0,0,0,0,0.06638956417266353,0.0021005195330794073,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7672009725626038,-0.7672009725626038,-0.8080971401386863,-0.8080971401386863,-0.8389488362484091,-0.8389488362484091,-0.812079085325414,-0.812079085325414,-0.46683110522794175,-0.46683110522794175,-0.5275848460911937,-0.6696321361992835,-0.6912521609348644,-0.7022885777912972,-0.3470168493029159,-0.5534473924005502,-0.6909027810304844,-0.7069862781813037,-0.7211584342721088,-0.39468536500203383,17.400372483504597,17.400372483504597,18.769953826783905,18.769953826783905,19.849910983871,19.849910983871,18.907091248325358,18.907091248325358,9.550001953347348,9.550001953347348,10.822607000841316,14.42209598862226,15.046654708100306,15.373264043506211,7.505332047265384,11.412798925256467,15.036401149391537,15.513882162641792,15.943867892573394,8.245224549997033,141.25514466442235,141.25514466442235,0.0,156.95016073824704,0.0,141.25514466442235,156.95016073824704,0,0
+2017/02/09 00:00:00,91.66140631135129,0,1144.3717653864956,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.9579524956819838,11.760497554376737,0,0,572.1372269251292,518.9990096925503,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3981.045475237259,0.0,2905.1285652060146,0.0,5591.515917262899,0.0,3086.526862666088,0.0,691.4585089276917,0.0,4870.4688981968375,0.0,9226.797071459408,0.0,7164.62041266098,0.0,9436.053625880299,0.0,20146.12232697683,0.0,4920.269060058204,0.0,9270.569749277724,0.0,7274.708595320397,0.0,9454.267948109773,0.0,25047.837239799912,0,0,0,0,0,0,0,0,0.0609272004329728,0.0019276941519372078,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8516374089766691,-0.8516374089766691,-0.8827085060870802,-0.8827085060870802,-0.9172917082467931,-0.9172917082467931,-0.8862471835414591,-0.8862471835414591,-0.6362194204836801,-0.6362194204836801,-0.5567241452234785,-0.6995364542994127,-0.7120534086132596,-0.728605529098373,-0.38043531279083764,-0.5890046701084363,-0.7257199186758799,-0.7317444692732821,-0.7514555551344608,-0.43273241322074213,20.305634681815306,20.305634681815306,21.449767493339806,21.449767493339806,22.769726023309246,22.769726023309246,21.582593316815093,21.582593316815093,13.496685338155132,13.496685338155132,11.489644506094976,15.29132604150685,15.666625656868717,16.173280548404634,8.013884654250973,12.271571480172497,16.084104281242702,16.27069221883653,16.892061058957452,8.905468320778084,91.66140631135129,91.66140631135129,0.0,101.84600701261253,0.0,91.66140631135129,101.84600701261253,0,0
+2017/02/09 01:00:00,39.746751389738115,0,660.2335874288952,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.24341103141493606,0.16668923050303788,9.539330131396955,0,0,90.33967390810596,516.6583847519732,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,427.39037423825545,0.0,1020.8342428265059,0.0,554.8946623482614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03515132523413415,0.0011121634279130945,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8687587200385213,-0.8687587200385213,-0.902184567565736,-0.902184567565736,-0.9326893474640883,-0.9326893474640883,-0.9063072145215335,-0.9063072145215335,-0.30933913297703525,-0.30933913297703525,-0.7397457136093791,-1.0264712123819457,-1.0491471485575763,-1.0605506094078756,-0.16881174513258962,-0.7905537746935263,-1.0382515192953983,-1.0622530252857822,-1.07456722701478,-0.30971246889917986,20.93116447557324,20.93116447557324,22.18714756718174,22.18714756718174,23.372956966451525,23.372956966451525,22.345213982790114,22.345213982790114,6.988897870627667,6.988897870627667,16.52091203956131,27.247428383310265,28.234162077249877,28.737434765445784,5.590653554862072,18.17374480070869,27.75769483158605,28.81296797835971,29.36239196387106,6.993719872673225,39.746751389738115,39.746751389738115,0.0,44.163057099709015,0.0,39.746751389738115,44.163057099709015,0,0
+2017/02/09 02:00:00,23.722321299361138,0,43.74162145666923,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5252258756833494,0,0,0.0,8.251268944125096,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0023288363260636933,7.368275802382655e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.943621544561972,-0.943621544561972,-1.0680350741375553,-1.0680350741375553,-1.14152403936533,-1.14152403936533,-1.0971218178020865,-1.0971218178020865,-0.12977057712683693,-0.12977057712683693,-0.828778642422869,-1.1429910692647582,-1.2174709761931775,-1.2102229456735278,-0.10081869485176248,-0.9094131741525122,-1.2104922865853125,-1.2818374768466716,-1.2768807623240677,-0.321344533124085,23.806989093089726,23.806989093089726,29.070277609187443,29.070277609187443,32.44094470104251,32.44094470104251,30.38247452115374,30.38247452115374,5.348865980235956,5.348865980235956,19.489491145602443,32.5100575363022,36.10560763065677,35.748542536364326,5.210503882881838,22.464754247203572,35.76178486970508,39.337879565239874,39.08526283576781,7.1469161416817,23.722321299361138,23.722321299361138,0.0,26.35813477706793,0.0,23.722321299361138,26.35813477706793,0,0
+2017/02/09 03:00:00,28.396913018772533,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5775499322996365,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9898112560678394,-0.9898112560678394,-1.1236271637215118,-1.1236271637215118,-1.193938483914993,-1.193938483914993,-1.1543660500474286,-1.1543660500474286,-0.04393573491145552,-0.04393573491145552,-0.9097771055480199,-1.2304115837275276,-1.3123052124194872,-1.3035879196596307,-0.07926840305531391,-1.004686591709764,-1.3201506617120418,-1.4023188949520067,-1.394856964511285,-0.3289559569818498,25.692618269351513,25.692618269351513,31.603410199865593,31.603410199865593,34.951755820020026,34.951755820020026,33.04826379765865,33.04826379765865,5.039962647089055,5.039962647089055,22.47878655164419,36.74672805255368,40.903081152990225,40.453129235740384,5.1301077600462435,26.317399142078045,41.30942738795754,45.63543662419061,45.23789109366152,7.250263445867091,28.396913018772533,28.396913018772533,0.0,31.552125576413925,0.0,28.396913018772533,31.552125576413925,0,0
+2017/02/09 04:00:00,23.72193232326585,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248368995880569,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0237348239689426,-1.0237348239689426,-1.1658386935107241,-1.1658386935107241,-1.231421291913214,-1.231421291913214,-1.1972333530940589,-1.1972333530940589,0.028353842543477024,0.028353842543477024,-0.9581195612678454,-1.2811404789550678,-1.3718212601741504,-1.3574041208571148,-0.05036740299001134,-1.0754224648373096,-1.3984641707780958,-1.4883197908624162,-1.4765280781385832,-0.32921255883009565,27.129634206525083,27.129634206525083,33.59520366371018,33.59520366371018,36.796944323365736,36.796944323365736,35.11235448953127,35.11235448953127,5.016642568802624,5.016642568802624,24.38988383608907,39.302322115480656,44.01605222067079,43.25584821043564,5.05252056358961,29.400749011274456,45.429968179313256,50.266061744663894,49.62687964787987,7.253790378016191,23.72193232326585,23.72193232326585,0.0,26.3577025814065,0.0,23.72193232326585,26.3577025814065,0,0
+2017/02/09 05:00:00,44.03732516325517,0,394.20716250908686,0,0,0,0.0,0.019881757068626372,4.633261998087618,9.319298099999997,25.555573451546493,0,2.3746665653675842,1.6095572453666822,0.5250860458181443,0,0,305.48128122772647,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13404688987232777,849.2044278785672,0.1351951415976676,1085.9170370404167,0.5228205756590872,2097.582596322618,0.42368824081423395,1232.6205992833263,0.0,0.0,2.004899949828579,2897.8050368449017,2.2178688700224334,2944.124757971776,3.4777117259113,5358.922579900669,2.1135617140132577,3234.9147660724066,0.0,0.0,2.2338220975514105,3502.672998380388,1.8656664977117998,3326.2864322256914,2.7536902486275867,5974.115640978954,1.9987851170166853,3611.7789688874313,0.0,0.0,0,0,0,0,0,0,0,0,0.020987881323857104,0.0006640419353267405,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9086679328574694,-0.9086679328574694,-0.9635314963449537,-0.9635314963449537,-0.9886547247873105,-0.9886547247873105,-0.9724337750668609,-0.9724337750668609,0.16310576676987817,0.16310576676987817,-0.7161417639017066,-0.8634202535686585,-0.8902342469286709,-0.8956446850012862,-0.019110324641742008,-0.7820182779343542,-0.9330199760054154,-0.9510383807522652,-0.962872033194354,-0.3184660655479685,22.43603627410755,22.43603627410755,24.609587578544478,24.609587578544478,25.644395936396805,25.644395936396805,24.973471292276514,24.973471292276514,5.55135381620174,5.55135381620174,15.790671714188989,20.734820856678724,21.73286337406047,21.93781753714478,5.0075600399324145,17.888385185364953,23.386013935566353,24.104149553578253,24.582754640213068,7.10847255935272,44.03732516325517,44.03732516325517,0.0,48.930361292505744,0.0,44.03732516325517,48.930361292505744,0,0
+2017/02/09 06:00:00,76.80901243793464,0,351.3448709933793,0,0,0,0.09671644220143663,0.017887475513079495,5.555297838843742,9.319298099999997,57.911447091112116,0,2.010084070901688,1.373226640365712,0.5250547789968496,0,0,138.4027559181145,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,307.17870203135635,0.0,0.0,0.0,0.0,0.0,0.0,11.11580124936595,0.0,312.6212785722059,0.0,682.9530053603727,0.0,398.435272446774,0.0,0.0,1.6574995466709197,2126.3428400142025,1.8857893971037356,2383.4551339686304,3.051899998045201,4486.310623290356,2.0037377342721356,2685.6250300379384,0.0,0.0,1.9617136061781366,2754.022512826877,1.9947875922495086,2759.543848949016,3.3275576057772014,5074.748032075829,2.0044900327826554,3050.333660957279,0.0,0.0,0,0,0,0,0,0,0,0,0.01870586117517576,0.000591840408521724,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.79166180795351,-0.79166180795351,-0.8507542780714072,-0.8507542780714072,-0.8688211596097996,-0.8688211596097996,-0.8576157221383528,-0.8576157221383528,0.4885856632057125,0.4885856632057125,-0.6776559480152845,-0.7894226608591168,-0.8065023188552438,-0.8142858343702778,0.09105093764635017,-0.7114605608394154,-0.8171191149634557,-0.8206264220804916,-0.8367330736583117,-0.21081790303067344,18.21101551561115,18.21101551561115,20.273699037116614,20.273699037116614,20.9334679048127,20.9334679048127,20.522673375314668,20.522673375314668,9.987372255675936,9.987372255675936,14.651527924943096,18.135751458570923,18.71521616233599,18.98337919953937,5.171676418981548,15.648697680939776,19.081627313522674,19.203716264232284,19.77101827585686,5.921807494829565,76.80901243793464,76.80901243793464,0.0,85.34334715326071,0.0,76.80901243793464,85.34334715326071,0,0
+2017/02/09 07:00:00,102.19659400736613,0,833.4223611269806,0,0,0,0.0,0.013569391285748831,11.110595677687485,13.929299233552332,73.80580873715317,0,1.735339618714495,1.076850598493331,0.5251307504795266,0,0,96.73388848968901,506.0011813057548,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.44511799905331,0.0,56.08297585460841,0.0,0.0,1.4340726919036417,1428.31857734991,1.437126089911923,1748.7770646518939,1.7700168344927076,3332.6172073801645,1.2378794195551563,1986.8446606959756,0.0,0.0,1.253962818218497,1899.2094328951532,1.1245515042895324,1969.2748272640526,3.3763811283609653,3627.4586971219887,1.9354007990164064,2178.2656728461843,0.0,0.0,0,0,0,0,0,0,0,0,0.04437202382789948,0.0014038999040627143,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6317138945800244,-0.6317138945800244,-0.7537859626291551,-0.7537859626291551,-0.7744192519382065,-0.7744192519382065,-0.7654019618851278,-0.7654019618851278,0.7413188665610926,0.7413188665610926,-0.6541717539391567,-0.7586732266791802,-0.7734513314056112,-0.7799774249673245,0.15291566876571394,-0.6828671122086939,-0.780926678647664,-0.7815180864531587,-0.7984781015157081,-0.08033621739694667,13.375602308145986,13.375602308145986,16.966625406035945,16.966625406035945,17.636940399379128,17.636940399379128,17.34175871029133,17.34175871029133,16.570431969222355,16.570431969222355,13.98788490980013,17.123754385967572,17.60508934461832,17.82061385587599,5.48454570879764,14.802027560176242,17.852114022295964,17.871758760484056,18.441438871891606,5.133637714909739,102.19659400736613,102.19659400736613,0.0,113.5517711192957,0.0,102.19659400736613,113.5517711192957,0,0
+2017/02/09 08:00:00,150.96702786877802,0,1099.814910926802,0,0,0,0.0,0.0,11.110595677687485,0.0,69.33401494192633,0,39.380909295966944,0.6239806728854764,27.085552077857507,0,0,233.98185953803204,599.655407544689,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2623.91253689565,0.0,1768.0917640730981,0.0,3484.6534044485734,0.0,1870.6959218466613,0.0,0.0,0.0,5514.693430407877,0.0,7541.522679154876,0.0,7516.628069476689,0.0,7706.959978963895,0.0,5269.054874447909,0.0,5853.64083604639,0.0,7652.859125898132,0.0,7663.072334297455,0.0,7763.702274307625,0.0,8086.81396096354,0,0,0,0,0,0,0,0,0.058554960497979563,0.001852638133981662,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.725554066451728,-0.725554066451728,-0.7833329069105884,-0.7833329069105884,-0.8115350903019782,-0.8115350903019782,-0.7931744497713831,-0.7931744497713831,0.11520431497678403,0.11520431497678403,-0.6357283985339901,-0.7378732252814584,-0.7431786260371913,-0.7572705068846566,-0.2104400324416471,-0.6641646074272922,-0.7574871081480988,-0.7528224731618035,-0.7731795386002639,-0.31628382638374186,16.078989704688198,16.078989704688198,17.932134334290822,17.932134334290822,18.88831672180875,18.88831672180875,18.261980042943506,18.261980042943506,5.274900326441411,5.274900326441411,13.483446693324822,16.462108037995066,16.62911069539942,17.07855141544421,5.918499730766712,14.267354870967978,17.085525947867083,16.93576914611991,17.59615272375443,7.079561473268043,150.96702786877802,150.96702786877802,0.0,167.74114207642,0.0,150.96702786877802,167.74114207642,0,0
+2017/02/09 09:00:00,165.8716981238317,0,1187.3704401045993,0,0,0,0.0,0.0,12.273941130108357,0.0,83.2008179303116,0,39.380909295966944,0.4863120896792955,27.097742475311204,0,0,268.30185994701304,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1177.726301406904,0.0,1101.5621531744364,0.0,2443.441859969561,0.0,1147.336619871875,0.0,0.0,0.0,4650.420496585584,0.0,6888.120770733468,0.0,6635.977169075194,0.0,6933.376916080007,0.0,129.56337975783035,0.0,4880.117861613424,0.0,6969.183231909305,0.0,6710.362159031505,0.0,6924.42588849466,0.0,5149.39394785089,0,0,0,0,0,0,0,0,0.06321648172436965,0.002000125416236309,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7244520269310226,-0.7244520269310226,-0.7703437526007336,-0.7703437526007336,-0.7965227104924146,-0.7965227104924146,-0.7712114068279502,-0.7712114068279502,-0.2601657602919173,-0.2601657602919173,-0.6072722542467182,-0.7175035358907463,-0.7183288585818897,-0.7271120390540278,-0.3003636499686682,-0.6321111026817902,-0.7356293564597386,-0.7248696219505003,-0.73895271180022,-0.37419593677700946,16.045034895412215,16.045034895412215,17.50309913369216,17.50309913369216,18.375135933958447,18.375135933958447,17.531533970797824,17.531533970797824,6.405235370468901,6.405235370468901,12.73409882789521,15.832149545964512,15.857326692756274,16.127081352366858,6.874745747133261,13.386241617718227,16.39183939899702,16.057895217709486,16.495990078719174,7.915321972570439,165.8716981238317,165.8716981238317,0.0,184.30188680425744,0.0,165.8716981238317,184.30188680425744,0,0
+2017/02/09 10:00:00,182.0773215392788,0,1223.9026784808764,0,0,0,0.0,0.0,11.268261791783145,0.0,106.27511244621549,0,39.380909295966944,0.38960209802012863,21.331460704838864,0,0,251.59856955447393,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,190.46626609273213,0.0,617.7237770268458,0.0,1600.7185479990976,0.0,573.1198930771274,0.0,0.0,0.0,4174.565186725048,0.0,6544.974883389206,0.0,6157.892855774331,0.0,6523.846114541106,0.0,0.0,0.0,4173.448584015412,0.0,6508.150147197938,0.0,6063.009014371221,0.0,6396.902695092537,0.0,4201.679446857093,0,0,0,0,0,0,0,0,0.06516148515519515,0.002061663969008398,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6993906400159505,-0.6993906400159505,-0.7552992000753602,-0.7552992000753602,-0.7757486486183918,-0.7757486486183918,-0.7496925741142239,-0.7496925741142239,-0.2837817119492239,-0.2837817119492239,-0.5760672264317811,-0.6965027259350248,-0.693221952673721,-0.7017870289965192,-0.3114431828863274,-0.5961127424252451,-0.7098882039116908,-0.6969185334627772,-0.7093940068340026,-0.3745918129061943,15.28699388479454,15.28699388479454,17.01516783902828,17.01516783902828,17.68075149184544,17.68075149184544,16.835806747050455,16.835806747050455,6.672809167087522,6.672809167087522,11.952761082118982,15.20138281581481,15.10456261201982,15.358307247109337,7.016150821764597,12.44982348082803,15.601222302262542,15.21368707147596,15.586322646949583,7.921526231965174,182.0773215392788,182.0773215392788,0.0,202.30813504364312,0.0,182.0773215392788,202.30813504364312,0,0
+2017/02/09 11:00:00,212.3072027459575,0,1256.9884288388275,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.34089930343580527,18.459833157150673,0,0,230.85328777197304,564.7605584037808,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,490.3460425559617,0.0,0.0,0.0,0.0,0.0,3098.733463194473,0.0,6407.560550194708,0.0,4936.639474869666,0.0,6371.541145282221,0.0,0.0,0.0,2614.3902337254335,0.0,6108.038701123882,0.0,4434.499427523946,0.0,5981.124751134298,0.0,5613.580587310111,0,0,0,0,0,0,0,0,0.06692299501108835,0.002117396912975201,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6542353483486317,-0.6542353483486317,-0.7051733312157944,-0.7051733312157944,-0.7249302846337429,-0.7249302846337429,-0.6989235400024045,-0.6989235400024045,-0.22526354265350781,-0.22526354265350781,-0.5491669229099039,-0.6777074221890067,-0.672239163347801,-0.6823541915276773,-0.3213506979707793,-0.5646766298887809,-0.6876394486048878,-0.6719728981550366,-0.686480801679586,-0.37611412190432764,13.989649772573742,13.989649772573742,15.459501684596788,15.459501684596788,16.05976401942253,16.05976401942253,15.273122477548654,15.273122477548654,6.052744766981732,6.052744766981732,11.313115630369978,14.653008766110332,14.496335392189536,14.787162172150929,7.146998853565577,11.678080287045248,14.940884027291972,14.488739560203769,14.90708138317801,7.945446481798513,212.3072027459575,212.3072027459575,0.0,235.89689193995278,0.0,212.3072027459575,235.89689193995278,0,0
+2017/02/09 12:00:00,228.52405274073126,0,1279.917489798832,0,0,0,0.0,0.0,16.73568395689411,0.0,147.76209134187457,0,39.380909295966944,0.2502987529864846,20.963094190554788,0,0,167.84693924942346,597.4604391175187,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3523.460609191293,0.0,5176.3228870594585,0.0,5309.99456003828,0.0,5181.486418172124,0.0,0.0,0.0,3130.445050178165,0.0,4782.995189689067,0.0,4665.918041825271,0.0,4717.4560958968195,0.0,0.0,0,0,0,0,0,0,0,0,0.0681437552003073,0.0021560209144220427,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.509138568924646,-0.509138568924646,-0.5824600145258585,-0.5824600145258585,-0.6444311221161154,-0.6444311221161154,-0.5813748588059595,-0.5813748588059595,-0.11584371399588854,-0.11584371399588854,-0.5129798304995665,-0.6419986206288332,-0.6373512614138714,-0.6513175434480223,-0.30404178851611857,-0.5147240293745043,-0.6453283510326997,-0.6308344355249009,-0.6506492843814373,-0.34859190286492364,10.419351954122362,10.419351954122362,12.109387340446943,12.109387340446943,13.71963418893229,13.71963418893229,12.08267556796865,12.08267556796865,5.277962075770475,5.277962075770475,10.502112409835306,13.653286595136464,13.527241204406977,13.908855758226792,6.921113009185049,10.539902066264574,13.7441712937039,13.352070151625696,13.890403602972029,7.528233080417067,228.52405274073126,228.52405274073126,0.0,253.91561415636806,0.0,228.52405274073126,253.91561415636806,0,0
+2017/02/09 13:00:00,207.60986423157027,0,1210.3950482796547,0,0,0,0.0,0.0,16.67307048032785,0.0,129.49988082968767,0,39.380909295966944,0.21926114636271318,18.404767276770816,0,0,168.76863113826286,562.5066582220459,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4154.909776703278,0.0,4156.008710114014,0.0,5986.28766089877,0.0,4236.349451133223,0.0,0.0,0.0,3540.295476089354,0.0,3652.166091769524,0.0,5201.584758010152,0.0,3688.4171854953374,0.0,0.0,0,0,0,0,0,0,0,0,0.06444232891809037,0.0020389103669596516,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3854169222375337,-0.3854169222375337,-0.5032232420265621,-0.5032232420265621,-0.5866188605570896,-0.5866188605570896,-0.4763950880888745,-0.4763950880888745,-0.06509564853799424,-0.06509564853799424,-0.46576798847780604,-0.5889027347087546,-0.5950524668445145,-0.6079367241540932,-0.2790296871963815,-0.45919251929963867,-0.5835260005359006,-0.5828645939637153,-0.6014962552771174,-0.31437321887144054,8.093771517614329,8.093771517614329,10.293153221073595,10.293153221073595,12.212233068291454,12.212233068291454,9.739769441619472,9.739769441619472,5.087733857531688,5.087733857531688,9.529151166183084,12.269031153003368,12.423095375697514,12.751195906896598,6.617078451032484,9.401269005622254,12.1356769905952,12.119359387769876,12.586287309062016,7.0544146825097584,207.60986423157027,207.60986423157027,0.0,230.67762692396695,0.0,207.60986423157027,230.67762692396695,0,0
+2017/02/09 14:00:00,205.25517711428427,0,1155.6140552940162,0,0,0,0.0,0.0,16.67307048032785,0.0,129.2730206906943,0,39.380909295966944,0.1863543381050888,16.30984710673573,0,0,150.49552766110693,561.4891212261076,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3182.394430831781,0.0,3960.685998529132,0.0,5101.5854636225695,0.0,4131.863377453657,0.0,0.0,0.0,2587.7917474011865,0.0,3497.669355342763,0.0,4386.139760328804,0.0,3633.235142851222,0.0,0.0,0,0,0,0,0,0,0,0,0.06152574827488828,0.0019466317884331511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.40859141365172186,-0.40859141365172186,-0.44057579678238856,-0.44057579678238856,-0.5702260279689967,-0.5702260279689967,-0.4080380031737879,-0.4080380031737879,-0.07812913047233119,-0.07812913047233119,-0.4373121533392021,-0.5452796919936903,-0.5695325853434837,-0.5816836402411949,-0.2730338094435281,-0.4273097133772236,-0.5308823762939484,-0.555033760034828,-0.5725155733729732,-0.30458437734278243,8.479350119630041,8.479350119630041,9.049296381916108,9.049296381916108,11.811199262334853,11.811199262334853,8.469874628400689,8.469874628400689,5.126393718441506,5.126393718441506,8.989128278992922,11.223278150014451,11.79449192640186,12.090271210837287,6.548118939737918,8.807574142536382,10.896246100998198,11.449943887392124,11.866510153106745,6.9280014064772075,205.25517711428427,205.25517711428427,0.0,228.0613079047603,0.0,205.25517711428427,228.0613079047603,0,0
+2017/02/09 15:00:00,189.33852586063236,0,1074.5192519577697,0,0,0,0.0,0.0,16.798297350153536,0.0,115.5196477718057,0,39.380909295966944,0.14603676173798108,14.061659478513883,0,0,125.54706413426025,540.8331339292521,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3096.562219493982,0.0,5121.0143686217825,0.0,4789.716019193734,0.0,5316.909006440865,0.0,0.0,0.0,2402.3276380130947,0.0,4557.223776071405,0.0,3949.868523097933,0.0,4730.988190076666,0.0,0.0,0,0,0,0,0,0,0,0,0.05720820087780505,0.001810027598368235,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.45712528277779446,-0.45712528277779446,-0.4351851836398166,-0.4351851836398166,-0.5581473930770712,-0.5581473930770712,-0.430526134081782,-0.430526134081782,-0.1363612438025818,-0.1363612438025818,-0.45760185618461857,-0.5516054322073712,-0.5769270804556873,-0.5907644658343056,-0.28531251563303484,-0.4572972080492953,-0.5425832785651225,-0.5685921282822609,-0.5878976948234554,-0.31818740361690256,9.361449301932268,9.361449301932268,8.95016203374091,8.95016203374091,11.523167173025541,11.523167173025541,8.865486793145422,8.865486793145422,5.385231297287632,5.385231297287632,9.370612878404174,11.369806121185903,11.973724689988941,12.315498355748772,6.690964996326699,9.364753962014731,11.16134622779721,11.77186652059585,12.24400874348369,7.104769509677126,189.33852586063236,189.33852586063236,0.0,210.37613984514707,0.0,189.33852586063236,210.37613984514707,0,0
+2017/02/09 16:00:00,182.7895425476488,0,1191.5649759418075,0,0,0,0.0,0.0,16.86091074341296,0.0,108.75639138185811,0,39.380909295966944,0.2916463760866883,14.067709547869788,0,0,242.57818659336138,540.8477354541888,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2493.427115968426,0.0,5462.705469121036,0.0,4102.298765806072,0.0,5796.988931885775,0.0,0.0,0.0,1953.9697138681777,0.0,4971.4440923479415,0.0,3437.014182853013,0.0,5321.564770875133,0.0,3721.6666813776683,0,0,0,0,0,0,0,0,0.06343980191926328,0.002007191111535727,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44236200206510373,-0.44236200206510373,-0.42580522258804054,-0.42580522258804054,-0.6088602959482199,-0.6088602959482199,-0.4556324428474475,-0.4556324428474475,-0.17491478382195808,-0.17491478382195808,-0.4707775301595417,-0.550192526892611,-0.5881131030908497,-0.6066786268345826,-0.3027122157953008,-0.4751240126499315,-0.5410648129318918,-0.5829725116985713,-0.6072387635284565,-0.3383133861724213,9.082420433493965,9.082420433493965,8.780637727840357,8.780637727840357,12.774991609469339,12.774991609469339,9.3328081801249,9.3328081801249,5.634190951045397,5.634190951045397,9.62782867918392,11.336927476072816,12.249368057662721,12.718840761743266,6.904286155796882,9.714321691645381,11.126608381240345,12.122020536970524,12.733237605445993,7.380686205620123,182.7895425476488,182.7895425476488,0.0,203.09949171960977,0.0,182.7895425476488,203.09949171960977,0,0
+2017/02/09 17:00:00,206.27455977348242,0,1242.0894549816983,0,0,0,0.0,0.0,17.46605349300705,0.0,131.64086955684016,0,39.380909295966944,0.3508233703973384,14.003928854816552,0,0,239.8723518862703,540.8425204323541,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2798.0407701156987,0.0,5336.474722123285,0.0,4240.682186862214,0.0,5734.970415508927,0.0,0.0,0.0,2387.396933000216,0.0,4906.8995535975255,0.0,3737.3356939369346,0.0,5347.680924568067,0.0,2319.471369068704,0,0,0,0,0,0,0,0,0.06612976260716552,0.00209229959264368,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.43319793284182645,-0.43319793284182645,-0.4118002543354444,-0.4118002543354444,-0.5955493848708375,-0.5955493848708375,-0.4429021528169285,-0.4429021528169285,-0.14107211946867387,-0.14107211946867387,-0.4940231397572629,-0.5635139812071512,-0.6012127439772545,-0.6244247432188261,-0.3101905140333461,-0.5060353216361521,-0.5584265642759023,-0.6012165573401603,-0.6289221536597741,-0.34548296643230575,8.913931028811831,8.913931028811831,8.534550398339093,8.534550398339093,12.435615928396743,12.435615928396743,9.092464193032086,9.092464193032086,5.412331921984588,5.412331921984588,10.09988145642815,11.650359908673366,12.579069353548363,13.181576114769669,6.999902910893496,10.352958044459058,11.52975297485213,12.579166415364739,13.301018008708354,7.483131002900478,206.27455977348242,206.27455977348242,0.0,229.19395530386936,0.0,206.27455977348242,229.19395530386936,0,0
+2017/02/09 18:00:00,220.49793008785093,0,1179.103234520217,0,0,0,0.0,0.0,24.999863057464953,0.0,133.89528835348938,0,39.380909295966944,0.19265101194414522,18.59724316653115,0,0,136.64130610468652,581.0873457524567,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4104.299846069158,0.0,5175.018941929164,0.0,5386.481032585551,0.0,4849.951483909305,0.0,0.0,0.0,3610.63401753943,0.0,4704.240371723527,0.0,4788.534537379294,0.0,4930.334714316658,0.0,0.0,0,0,0,0,0,0,0,0,0.06277632957548285,0.0019861993090568874,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5018567905490817,-0.5018567905490817,-0.5264560225812115,-0.5264560225812115,-0.5956183642159866,-0.5956183642159866,-0.4304942609602301,-0.4304942609602301,-0.0960761994608476,-0.0960761994608476,-0.5010732816337478,-0.584287577698321,-0.5972375136709451,-0.6868533940950595,-0.29794716469527166,-0.5169084523584629,-0.5894351366532512,-0.5964266597989177,-0.6235879189909069,-0.3296582639121251,10.264216135575126,10.264216135575126,10.797506741022914,10.797506741022914,12.437354807658295,12.437354807658295,8.86491072932526,8.86491072932526,5.191157608603831,5.191157608603831,10.247660315183225,12.154489421476072,12.478230766184524,14.917945153247317,6.844594457087595,10.58741519512408,12.282304089082018,12.457746271913436,13.15944864129574,7.259923129691401,220.49793008785093,220.49793008785093,0.0,244.99770009761215,0.0,220.49793008785093,244.99770009761215,0,0
+2017/02/09 19:00:00,219.50340069944963,0,1238.4055400054544,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.27399990794462337,26.552930094984305,0,0,212.8659023102355,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5472.475142718062,0.0,4614.637479144965,0.0,6659.083357670166,0.0,4692.733857197905,0.0,0.0,0.0,4867.835045766775,0.0,4097.235845998399,0.0,5912.9990084442325,0.0,4218.122604769607,0.0,0.0,0,0,0,0,0,0,0,0,0.06593362824512991,0.0020860940381458013,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.561457050080589,-0.561457050080589,-0.5394957579189754,-0.5394957579189754,-0.6008973626872693,-0.6008973626872693,-0.4429951732609262,-0.4429951732609262,-0.0871934784330794,-0.0871934784330794,-0.5005924030425136,-0.5782920478195761,-0.5907712841755567,-0.640997788225948,-0.2813562466590495,-0.5162997495189732,-0.5832598936310762,-0.5894538393568484,-0.6119257087687213,-0.30989190859102583,11.601461265005312,11.601461265005312,11.090818154694531,11.090818154694531,12.571044114129435,12.571044114129435,9.094195114830583,9.094195114830583,5.157433270647246,5.157433270647246,10.237512318154756,12.007069056883921,12.315668812118801,13.626062939197695,6.644244810310056,10.574154623765452,12.129109568212954,12.282770576601635,12.854236904977029,6.996039612594458,219.50340069944963,219.50340069944963,0.0,243.89266744383292,0.0,219.50340069944963,243.89266744383292,0,0
+2017/02/09 20:00:00,210.7305385363163,0,1165.4040625068403,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.20086069007459345,27.0977424753112,0,0,175.354777324166,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6430.90607065608,0.0,5258.9191869142105,0.0,7546.898322960403,0.0,5291.795398032461,0.0,0.0,0.0,5663.463476234448,0.0,4637.548049104973,0.0,6635.4638380583365,0.0,4722.829585953055,0.0,0.0,0,0,0,0,0,0,0,0,0.06204697551042263,0.001963123054840104,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5785006529952309,-0.5785006529952309,-0.5429562328594625,-0.5429562328594625,-0.6506160625820909,-0.6506160625820909,-0.49935630752179566,-0.49935630752179566,-0.11284314135009914,-0.11284314135009914,-0.5095544439110341,-0.5820808780229125,-0.5952610507956619,-0.6246357720263066,-0.2776592151764768,-0.5266079125274323,-0.5890466809489843,-0.5947490804271592,-0.6123131558065373,-0.30549760645034124,12.012172129692416,12.012172129692416,11.169893563524056,11.169893563524056,13.889486778515604,13.889486778515604,10.211472808156316,10.211472808156316,5.263741064268132,5.263741064268132,10.428281230148684,12.100048855686893,12.428349638359151,13.187160978184266,6.601182809625243,10.800880918904411,12.272618561518271,12.415456394507586,12.864281994041818,6.939623360003367,210.7305385363163,210.7305385363163,0.0,234.1450428181292,0.0,210.7305385363163,234.1450428181292,0,0
+2017/02/09 21:00:00,212.83560837528958,0,1211.995636342548,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.2865580096604546,24.645321199471827,0,0,257.4367036724177,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.676809436661195,0.0,0.0,0.0,0.0,0.0,6302.411974664791,0.0,5161.896322967206,0.0,7365.920733755967,0.0,5233.633229372079,0.0,0.0,0.0,5639.794262430332,0.0,4620.190588355227,0.0,6557.734380382069,0.0,4679.577053424985,0.0,0.0,0,0,0,0,0,0,0,0,0.06452754541212508,0.002041606557430114,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5867439904489905,-0.5867439904489905,-0.5734410884949452,-0.5734410884949452,-0.6840647293350546,-0.6840647293350546,-0.5480161588188511,-0.5480161588188511,-0.15729415441413364,-0.15729415441413364,-0.5155305513809806,-0.584728022768473,-0.5975677683337395,-0.6192971219955498,-0.2769802038721085,-0.5334843496191416,-0.5927967451352786,-0.5977367086283255,-0.6128708079092902,-0.3043120837703043,12.215339085291404,12.215339085291404,11.88893331256483,11.88893331256483,14.836781012332509,14.836781012332509,11.286452172269577,11.286452172269577,5.512721688908783,5.512721688908783,10.557420594058698,12.165380754726954,12.48658212403923,13.046467887338594,6.593336528372177,10.954684662327324,12.366394015258578,12.490856053858096,12.878751316441495,6.924542966492368,212.83560837528958,212.83560837528958,0.0,236.4840093058773,0.0,212.83560837528958,236.4840093058773,0,0
+2017/02/09 22:00:00,199.30947656505793,0,1189.6983555913998,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.3157966391271991,27.0977424753112,0,0,270.6297754338137,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,620.9649408019104,0.0,0.0,0.0,0.0,0.0,5175.76792208784,0.0,5922.303737076001,0.0,6194.613044196005,0.0,6022.991454511018,0.0,0.0,0.0,4632.540450928513,0.0,5478.814983045177,0.0,5523.259560889391,0.0,5532.343364445114,0.0,0.0,0,0,0,0,0,0,0,0,0.06334042166918942,0.0020040467896971386,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6411564437444011,-0.6411564437444011,-0.6362799731258437,-0.6362799731258437,-0.7181851635410982,-0.7181851635410982,-0.6218691997093304,-0.6218691997093304,-0.23902603011090304,-0.23902603011090304,-0.5314213039512574,-0.6037716012416565,-0.6100903511180125,-0.630865912661161,-0.29557653732149464,-0.5531780330789159,-0.6155774446648636,-0.6134181152408344,-0.6324333140343205,-0.32434520744224654,13.630375632806832,13.630375632806832,13.498318647233319,13.498318647233319,15.852941048292266,15.852941048292266,13.114097217725401,13.114097217725401,6.1856279229340885,6.1856279229340885,10.908325977383527,12.644342021514149,12.806741300757679,13.352911823203726,6.815255184004059,11.406502684344346,12.949171768274326,12.892965347403546,13.394877150400049,7.187365729362284,199.30947656505793,199.30947656505793,0.0,221.45497396117548,0.0,199.30947656505793,221.45497396117548,0,0
+2017/02/09 23:00:00,140.97065901546802,0,1127.9380839189273,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.5583068466943203,21.22741936099745,0,0,368.5760900677897,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1481.0944304390487,0.0,906.6010729423397,0.0,2444.308846034729,0.0,951.4931709777901,0.0,0.0,0.0,5188.932935985256,0.0,6726.7092996621595,0.0,6185.980069919132,0.0,6838.417922474604,0.0,868.6814184613244,0.0,4700.682491068457,0.0,6361.307913410329,0.0,5625.573508226634,0.0,6409.890362766915,0.0,6813.422425941274,0,0,0,0,0,0,0,0,0.06005225905910203,0.0019000116167523843,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7548819610333906,-0.7548819610333906,-0.7534050245047519,-0.7534050245047519,-0.8000224498210836,-0.8000224498210836,-0.7439038245410711,-0.7439038245410711,-0.4735242227017055,-0.4735242227017055,-0.5576740925997851,-0.6342450149099571,-0.63300901624587,-0.6558174788677811,-0.32372248639289936,-0.585632108029167,-0.6511314543550244,-0.640724799523911,-0.665076703246708,-0.36044228350014845,17.001773639315473,17.001773639315473,16.954420911534314,16.954420911534314,18.49391867860018,18.49391867860018,16.6520322040206,16.6520322040206,9.682391884018273,9.682391884018273,11.512009476478255,13.443516099501664,13.410317662001475,14.033613250577929,7.1789399578862,12.187763365257595,13.903715469672179,13.618644910170758,14.293078889113644,7.703919846620096,140.97065901546802,140.97065901546802,0.0,156.63406557274223,0.0,140.97065901546802,156.63406557274223,0,0
+2017/02/10 00:00:00,91.41773215587337,0,998.9024139144101,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.6990679064285507,11.775707988152256,0,0,426.648525704127,519.0183594414669,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3420.679176246952,0.0,2126.9722893191156,0.0,4241.084326609094,0.0,2171.8487587995623,0.0,0.0,0.0,5371.411897396602,0.0,7751.221461386747,0.0,6460.230423066802,0.0,7855.7402841546855,0.0,8747.421782927278,0.0,4856.415475360006,0.0,7370.326589100035,0.0,5884.00293370353,0.0,7406.614113313583,0.0,15085.997792646769,0,0,0,0,0,0,0,0,0.053182304410480524,0.0016826510404234162,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.854772268715648,-0.854772268715648,-0.8555865247330567,-0.8555865247330567,-0.893308030828792,-0.893308030828792,-0.8495469781748799,-0.8495469781748799,-0.6048540854067352,-0.6048540854067352,-0.589063985031766,-0.6692540193367918,-0.6627866779555341,-0.6873012684853141,-0.36100475628454,-0.6204847852308065,-0.6906071658937288,-0.6740874762615122,-0.7020870141347688,-0.40391365857012224,20.41925867625939,20.41925867625939,20.4488384053316,20.4488384053316,21.849155706148153,21.849155706148153,20.23009331109064,20.23009331109064,12.672040130781355,12.672040130781355,12.273049872048844,14.411352920277679,14.228561193416908,14.931011881680448,7.712407329179953,13.077660222521459,15.027729592279528,14.549147393155039,15.367251864744418,8.399670642358416,91.41773215587337,91.41773215587337,0.0,101.57525795097041,0.0,91.41773215587337,101.57525795097041,0,0
+2017/02/10 01:00:00,39.79264414680393,0,668.1393081356642,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.27048832658892313,0.18559965336766665,9.539235170424147,0,0,98.2318326584627,516.6719467083853,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,340.9513273615636,0.0,352.6848716740856,0.0,797.1448105173579,0.0,378.568389878396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.035572231660382564,0.001125480613843613,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.876847501801445,-0.876847501801445,-0.8810859931958784,-0.8810859931958784,-0.9109346152097254,-0.9109346152097254,-0.8765435077644319,-0.8765435077644319,-0.285233849257958,-0.285233849257958,-0.9816130336814478,-1.0302039699923866,-1.02151555998421,-1.045514341065259,-0.1487253156103078,-0.9048970922760069,-0.9924564285829065,-0.984239702568984,-1.0083001506231626,-0.2964536346066442,21.23090165705257,21.23090165705257,21.389037332747108,21.389037332747108,22.523452875292193,22.523452875292193,21.219588178267742,21.219588178267742,6.690029577097349,6.690029577097349,25.351894998643786,27.40856038124305,27.034304911001314,28.07481931872158,5.458328194486143,22.291070960774206,25.803102743900084,25.46078004119218,26.470438588317094,6.826082603790667,39.79264414680393,39.79264414680393,0.0,44.21404905200436,0.0,39.79264414680393,44.21404905200436,0,0
+2017/02/10 02:00:00,23.722229280413217,0,44.01230298358578,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251338567354226,0,0,0.0,8.521950471041642,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0023432476110523425,7.41387210353731e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0184436580514318,-1.0184436580514318,-1.0565612318215907,-1.0565612318215907,-1.114188723967807,-1.114188723967807,-1.061267974130412,-1.061267974130412,-0.1210748932493818,-0.1210748932493818,-1.0602287205521739,-1.172390998542128,-1.192164439966496,-1.210502774769429,-0.08052131461322551,-1.0689689203121846,-1.1856629912388297,-1.1968369486841315,-1.2152236239885559,-0.3315336784229145,26.902652598716188,26.902652598716188,28.560838963341325,28.560838963341325,31.165942175958804,31.165942175958804,28.769250373166102,28.769250373166102,5.303649500447705,5.303649500447705,28.7231647521686,33.909396687152324,34.86541646905769,35.76230057001271,5.1342544136947765,29.11194639712673,34.5497941412784,35.09301621753366,35.99473730056984,7.285820550098592,23.722229280413217,23.722229280413217,0.0,26.35803253379246,0.0,23.722229280413217,26.35803253379246,0,0
+2017/02/10 03:00:00,28.344570711542232,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5252076250693374,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0566108108414929,-1.0566108108414929,-1.097594752625719,-1.097594752625719,-1.1508976846097396,-1.1508976846097396,-1.103706753855645,-1.103706753855645,-0.03919735908396553,-0.03919735908396553,-1.1124608407537757,-1.2404170569348374,-1.264118319565555,-1.2828199588529143,-0.05868414142475124,-1.1609399287667332,-1.285716824734498,-1.3002441280999073,-1.3186533003797856,-0.3271576491228786,28.563030154228457,28.563030154228457,30.404051884498315,30.404051884498315,32.883724540421824,32.883724540421824,30.683593629326054,30.683593629326054,5.031807124002285,5.031807124002285,31.086176315660936,37.24554007571984,38.43756064247123,39.38802051519253,5.071299979390858,33.36116270610498,39.53599412741681,40.280978853102106,41.23177291318318,7.225624506704875,28.344570711542232,28.344570711542232,0.0,31.493967457269147,0.0,28.344570711542232,31.493967457269147,0,0
+2017/02/10 04:00:00,23.774639556447017,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5775441327692223,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.1231746244511773,-1.1231746244511773,-1.1680427178564632,-1.1680427178564632,-1.2152836396503428,-1.2152836396503428,-1.177008196971405,-1.177008196971405,0.027790410676636557,0.027790410676636557,-1.183733067714576,-1.3161271998632267,-1.3452059888539476,-1.3615820079035983,-0.02964188864062286,-1.2643451913552173,-1.390317358337466,-1.4092143279090774,-1.4255583629959192,-0.3314329711403423,31.58236790143134,31.58236790143134,33.700743290121466,33.700743290121466,35.99769626734384,35.99769626734384,34.13158363127333,34.13158363127333,5.015987693992756,5.015987693992756,34.456343939899284,41.100873917471034,42.61556856217413,43.47576950725922,5.018189037292075,38.449039636174824,44.996443494661655,46.00351424192395,46.87852954369251,7.284426100864991,23.774639556447017,23.774639556447017,0.0,26.416266173830017,0.0,23.774639556447017,26.416266173830017,0,0
+2017/02/10 05:00:00,44.247058210614185,0,399.601040096464,0,0,0,0.0,0.022541883600940723,4.633261998087618,9.319298099999997,25.555573451546493,0,2.501764381664502,1.6895392800328273,0.5250791156817856,0,0,310.87515881510365,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9377721462241299,1313.204903524879,0.21283345757638017,1009.8921999318029,1.5182001603525968,1854.75889976713,0.2631154326627645,1069.780065611722,0.0,0.0,2.599706449067112,4470.440551600795,1.7555122439574995,3351.4373534055835,3.296879495268037,5564.83334055163,1.8901747145338377,3537.7862061532774,0.0,0.0,2.6111085978212607,4574.296095792962,1.8337835145679569,3312.4636606987488,3.3673317805277367,5484.761350987386,2.2554656083814075,3442.2392403530225,0.0,0.0,0,0,0,0,0,0,0,0,0.02127505536189015,0.000673127921713289,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9614826803032234,-0.9614826803032234,-0.9804891075161987,-0.9804891075161987,-1.000346524988843,-1.000346524988843,-0.9828858763131554,-0.9828858763131554,0.16290065462866835,0.16290065462866835,-0.7997219013759758,-0.8639386242243234,-0.8705478827587101,-0.8839071601359125,0.001756097190791796,-0.854827305851844,-0.9208676627780582,-0.9136239274225176,-0.9323203343526033,-0.31377675704643954,24.52627877635409,24.52627877635409,25.305385276235782,25.305385276235782,26.134243103180623,26.134243103180623,25.40462584116021,25.40462584116021,5.549966388042876,5.549966388042876,18.483697576967998,20.75383440406371,20.99723136197977,21.49470205991446,5.000063837811794,20.421257160127453,22.90897323359185,22.627437706404535,23.35838928530586,7.0465959128571996,44.247058210614185,44.247058210614185,0.0,49.16339801179354,0.0,44.247058210614185,49.16339801179354,0,0
+2017/02/10 06:00:00,77.08220148020243,0,364.34102173658846,0,0,0,0.10109270007877905,0.019660486547194066,5.555297838843742,9.319298099999997,57.911447091112116,0,2.1760141450677666,1.474291645565153,0.5250994729876529,0,0,151.39890666132365,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,320.57561317555314,0.0,0.0,0.0,0.0,0.0,0.0,362.0161613960546,0.0,327.6490465991805,0.0,600.1628473206569,0.0,357.66252042424765,0.0,0.0,2.621716456801778,3375.3307646273956,1.7255869851452417,2618.939489841077,3.231142883812936,4403.603777869039,1.7606736790994546,2805.1745654277997,0.0,0.0,2.707298844998263,3911.6460543059907,2.2636542992732984,2866.597172810765,3.229509470649191,4754.370389117385,2.120903927413906,2995.586200946751,0.0,0.0,0,0,0,0,0,0,0,0,0.019397785867079707,0.0006137324234622686,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8517286127647826,-0.8517286127647826,-0.8728289848101296,-0.8728289848101296,-0.8878100132693593,-0.8878100132693593,-0.8751529715268576,-0.8751529715268576,0.4881098401211636,0.4881098401211636,-0.7404583661692954,-0.7881781064944811,-0.7928633337747325,-0.8042822050347054,0.11199859846174054,-0.7621228856204871,-0.8078928748518543,-0.7990850238017759,-0.8168423040255662,-0.21216336907597452,20.30893462612579,20.30893462612579,21.08165504271905,21.08165504271905,21.641417998512026,21.641417998512026,21.167886258119935,21.167886258119935,9.977587535180533,9.977587535180533,16.54333185980731,18.09401046916237,18.251489873774602,18.639195986320928,5.259805861747907,17.235278251097867,18.762937010731235,18.46205117134903,19.072013594477,5.933633833152868,77.08220148020243,77.08220148020243,0.0,85.64689053355825,0.0,77.08220148020243,85.64689053355825,0,0
+2017/02/10 07:00:00,102.62912135359004,0,853.7863589003639,0,0,0,0.0,0.01796334604445398,11.110595677687485,13.929299233552332,73.80580873715317,0,1.9965081537048903,1.2439116020664291,0.5250346033812481,0,0,117.08288694397903,506.01618062484806,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.83971399985789,0.0,267.6346418143237,0.0,151.55385959385427,0.0,0.0,1.9611539427808868,2766.355288278397,1.6451165800261456,2151.342890168835,3.4185917268652393,3600.6288248459095,1.6878027800671587,2300.843494587444,0.0,0.0,2.445655464466957,3058.165057020368,1.6268911812182218,2236.2950472516104,3.2302830308913144,3682.9185873060233,1.9478513381380556,2328.4704206070296,0.0,0.0,0,0,0,0,0,0,0,0,0.045456218153103314,0.001438203056766377,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7698067890129496,-0.7698067890129496,-0.7976643883830238,-0.7976643883830238,-0.8091977579703153,-0.8091977579703153,-0.8004579494858468,-0.8004579494858468,0.7395481369297713,0.7395481369297713,-0.7204339030357838,-0.7648300995659947,-0.7665986386916254,-0.7781710232021817,0.17312087418699645,-0.735868753473364,-0.7802505024691099,-0.7702502334167945,-0.78826350816678,-0.09263092146632117,17.48551779997004,17.48551779997004,18.41382800942519,18.41382800942519,18.80779199395033,18.80779199395033,18.50873600574384,18.50873600574384,16.514700199715108,16.514700199715108,15.921675622606372,17.323155738632167,17.380732390997224,17.760775869443947,5.6212324490139025,16.399326014750002,17.829671770102635,17.5000362317231,18.096872646487924,5.177688522164772,102.62912135359004,102.62912135359004,0.0,114.03235705954448,0.0,102.62912135359004,114.03235705954448,0,0
+2017/02/10 08:00:00,149.67793513623374,0,1155.7360201521765,0,0,0,0.0,0.0,9.71115417508052,0.0,69.33401494192633,0,39.380909295966944,0.7434422654300769,27.076439255375597,0,0,289.9029687634066,599.655407544689,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3033.184926532708,0.0,2098.409879818564,0.0,3953.4011847957145,0.0,2173.84747867459,0.0,0.0,0.0,6866.082152803565,0.0,8428.961931256068,0.0,8190.866983458911,0.0,8242.952567707136,0.0,7877.921757473497,0.0,7071.574773579868,0.0,8488.221314579923,0.0,8262.307856241647,0.0,8171.186516383037,0.0,11380.814373808875,0,0,0,0,0,0,0,0,0.06153224177427691,0.0019468372382274648,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7741008554769302,-0.7741008554769302,-0.819769315176716,-0.819769315176716,-0.8377502330412195,-0.8377502330412195,-0.8246834280565765,-0.8246834280565765,0.09823763966078118,0.09823763966078118,-0.6876296771966638,-0.7563656519835843,-0.7468974611219253,-0.7460062166360266,-0.20237317091607615,-0.7024773530996954,-0.7728362467475812,-0.7538168600254347,-0.7531386945128041,-0.32222700413563343,17.626458621839234,17.626458621839234,19.173832699879114,19.173832699879114,19.807208983602592,19.807208983602592,19.34558523911764,19.34558523911764,5.199859087575405,5.199859087575405,14.9405987112263,17.049436907276018,16.7468914084713,16.718610427778245,5.849310469032844,15.378896365435892,17.58486969433426,16.967615569046075,16.94589192145625,7.158772377327352,149.67793513623374,149.67793513623374,0.0,166.30881681803749,0.0,149.67793513623374,166.30881681803749,0,0
+2017/02/10 09:00:00,165.5953079793186,0,1250.126841018659,0,0,0,0.0,0.0,11.86011032607099,0.0,83.2008179303116,0,39.380909295966944,0.6237527492035295,27.097742475311207,0,0,331.0582608610728,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,349.23391749174687,0.0,1385.225265861945,0.0,2837.216200439123,0.0,565.8168271791692,0.0,0.0,0.0,4872.0257952407255,0.0,7630.520533984071,0.0,7239.268752219961,0.0,6324.965659480959,0.0,822.12142373798,0.0,4698.7084315822885,0.0,7622.974931395002,0.0,7190.309262207643,0.0,6553.422757085439,0.0,7865.522199438043,0,0,0,0,0,0,0,0,0.06655767899311874,0.0021058385688129135,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6679714498750701,-0.6679714498750701,-0.8084951310834781,-0.8084951310834781,-0.8256303864577902,-0.8256303864577902,-0.69879471438416,-0.69879471438416,-0.2765050278260764,-0.2765050278260764,-0.599700808445489,-0.7389459722612084,-0.7235448618335527,-0.73563873551526,-0.3070173082207515,-0.6029856468394538,-0.7548467766884115,-0.7285514944725159,-0.6715123358680339,-0.3854648395210276,14.374958627957625,14.374958627957625,18.783630465903585,18.783630465903585,19.378798826983896,19.378798826983896,15.269298417498675,15.269298417498675,6.587857217606157,6.587857217606157,12.54063567512668,16.495778388404986,16.01712355025103,16.392132662030974,6.959041626413395,12.62426324774944,17.000644492720227,16.17160738431852,14.475608198588205,8.0945450818907,165.5953079793186,165.5953079793186,0.0,183.99478664368732,0.0,165.5953079793186,183.99478664368732,0,0
+2017/02/10 10:00:00,182.25533960222432,0,1243.2472637410024,0,0,0,0.0,0.0,11.268261791783145,0.0,106.27511244621549,0,39.380909295966944,0.496692007450209,21.40238885835431,0,0,270.94315481460006,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,712.2187630870867,0.0,1680.5732382821755,0.0,0.0,0.0,0.0,0.0,3390.8323326047284,0.0,6934.919623376266,0.0,6323.841861407331,0.0,5967.455823425835,0.0,8.88948923697018,0.0,2814.909216171985,0.0,6851.734198156573,0.0,6169.156044601547,0.0,5611.316244954547,0.0,5922.132583628934,0,0,0,0,0,0,0,0,0.06619140520310754,0.0020942499214108515,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4551280360704233,-0.4551280360704233,-0.7791739569264997,-0.7791739569264997,-0.7892509094078561,-0.7892509094078561,-0.5887281402528229,-0.5887281402528229,-0.274634022367334,-0.274634022367334,-0.496550514080438,-0.7180536662006418,-0.6999683125558106,-0.6513566158844577,-0.31327864132530314,-0.47857021080974865,-0.7262838754464682,-0.6987713408171913,-0.620780791537747,-0.3806464115941214,9.323152482860266,9.323152482860266,17.793981418094106,17.793981418094106,18.129987192600993,18.129987192600993,12.264681140630628,12.264681140630628,6.566374967937094,6.566374967937094,10.152611138524293,15.84892846297133,15.304161977897692,13.909935236221827,7.040077865541178,9.783478434879996,16.101504519897375,15.268604673262246,13.085443948496874,8.017248412256393,182.25533960222432,182.25533960222432,0.0,202.50593289136035,0.0,182.25533960222432,202.50593289136035,0,0
+2017/02/10 11:00:00,212.47033440908206,0,1310.5349276349664,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.5557361321814582,18.408127991529568,0,0,279.1712509069773,569.9890940649153,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,144.2458549749372,0.0,753.1141275486261,0.0,0.0,0.0,0.0,0.0,1252.6755448592571,0.0,7153.109388838205,0.0,4968.600502248366,0.0,6437.033816966748,0.0,4228.84528908371,0.0,703.8316745517982,0.0,6959.089170141153,0.0,4648.791731217406,0.0,6050.7694561516355,0.0,9651.830211126085,0,0,0,0,0,0,0,0,0.06977385026924342,0.0022075959861331865,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.39765390288904107,-0.39765390288904107,-0.7278043271486739,-0.7278043271486739,-0.7315880023246984,-0.7315880023246984,-0.5261800130666546,-0.5261800130666546,-0.22530269063284508,-0.22530269063284508,-0.43279252051568545,-0.7107737700976297,-0.6852039314525867,-0.6475534678137028,-0.3410167042679423,-0.394974555521393,-0.714641046895212,-0.6799857296672344,-0.6328909282938665,-0.39456908925463546,8.294508996098372,8.294508996098372,16.14848446908688,16.14848446908688,16.26582650378853,16.26582650378853,10.791377850176815,10.791377850176815,6.053111491078312,6.053111491078312,8.906560491579484,15.627947771037213,14.869896888235758,13.80517363689735,7.419056920208291,8.25000920009829,15.74505432590945,14.718667363592544,13.407149334417127,8.243301778494327,212.47033440908206,212.47033440908206,0.0,236.0781493434245,0.0,212.47033440908206,236.0781493434245,0,0
+2017/02/10 12:00:00,228.44747245796688,0,1220.2297395054782,0,0,0,0.0,0.0,16.73568395689411,0.0,147.76209134187457,0,39.380909295966944,0.21368149289305927,20.923131167883838,0,0,113.24099624581334,592.3786318277749,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,857.9558341433191,0.0,5826.213997890526,0.0,5606.950517634968,0.0,5439.867734266314,0.0,0.0,0.0,0.0,0.0,5535.718836917915,0.0,5145.578783245824,0.0,5055.856702458498,0.0,0.0,0,0,0,0,0,0,0,0,0.06496593516357457,0.002055476903583111,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2031157894801905,-0.2031157894801905,-0.6248795989742132,-0.6248795989742132,-0.6561457870699029,-0.6561457870699029,-0.44247108362993776,-0.44247108362993776,-0.11838171955378486,-0.11838171955378486,-0.3491800906574946,-0.6717058318123181,-0.6495978193936668,-0.6324662137249449,-0.3236915807279634,-0.2895828872085356,-0.6660190343081832,-0.6362255496821129,-0.6142432453905046,-0.3620537915559585,5.855566093966601,5.855566093966601,13.193616248377609,13.193616248377609,14.042749711212736,14.042749711212736,9.084447725214645,9.084447725214645,5.290282797441449,5.290282797441449,7.5368122915460845,14.48112395647398,13.861409452141032,13.395759142935091,7.1785222148212,6.742135816432125,14.319693480390484,13.496850656083637,12.914419243615939,7.728272837239388,228.44747245796688,228.44747245796688,0.0,253.83052495329653,0.0,228.44747245796688,253.83052495329653,0,0
+2017/02/10 13:00:00,207.63622317868828,0,1161.3586553761832,0,0,0,0.0,0.0,16.67307048032785,0.0,129.49988082968767,0,39.380909295966944,0.19090924324115507,18.45947812701038,0,0,119.72155937772905,562.5173370791082,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,485.91981040506573,0.0,3448.863765435216,0.0,4939.079193361718,0.0,3414.8489631678076,0.0,0.0,0.0,0.0,0.0,3272.1662442680527,0.0,4715.54926268577,0.0,3224.712914385245,0.0,0.0,0,0,0,0,0,0,0,0,0.06183159503832643,0.0019563085668355537,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.24352680115580058,-0.24352680115580058,-0.5017745775450922,-0.5017745775450922,-0.6595162129840717,-0.6595162129840717,-0.28778410140996563,-0.28778410140996563,-0.08231106520455127,-0.08231106520455127,-0.3400683578432151,-0.5961930150934898,-0.6062020529318178,-0.5882198170142211,-0.30518535704087857,-0.2701789237554219,-0.5732667167169868,-0.5853599651174669,-0.561897443352555,-0.3327827711968179,6.230810012441935,6.230810012441935,10.262477699911855,10.262477699911855,14.13681510668438,14.13681510668438,6.720487563294569,6.720487563294569,5.140290720179735,5.140290720179735,7.405560805899384,12.451849032361494,12.706602401873099,12.252023824402272,6.935645636507331,6.515816981482828,11.884705833608905,12.181022139989537,11.611915129952749,7.30315196191016,207.63622317868828,207.63622317868828,0.0,230.706914642987,0.0,207.63622317868828,230.706914642987,0,0
+2017/02/10 14:00:00,205.3556298320709,0,1147.881223673429,0,0,0,0.0,0.0,16.735683873587277,0.0,129.2730206906943,0,39.380909295966944,0.21797627818154483,16.316064491186456,0,0,142.73335799305463,561.518459273573,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1549.396454313955,0.0,4384.099869030303,0.0,5805.212509885176,0.0,4568.329311472262,0.0,0.0,0.0,554.7234122738994,0.0,3950.083997173095,0.0,5250.961164468541,0.0,4141.771044986911,0.0,0.0,0,0,0,0,0,0,0,0,0.061114046591648284,0.0019336058341551839,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.34265271346937515,-0.34265271346937515,-0.4425038285119892,-0.4425038285119892,-0.6318328088271412,-0.6318328088271412,-0.30068312560403926,-0.30068312560403926,-0.10254732190447537,-0.10254732190447537,-0.3569430974693912,-0.563408531932667,-0.6068055702414882,-0.5899913411561796,-0.30558658281691264,-0.30992654789741847,-0.5377860097631507,-0.5903804718528148,-0.5696049071958235,-0.3321878348046684,7.442429122257707,7.442429122257707,9.085056391908466,9.085056391908466,13.378786735533893,13.378786735533893,6.878750426762778,6.878750426762778,5.217787721011888,5.217787721011888,7.651421149865314,11.647848640735688,12.722102315533334,12.29618356829286,6.940757578868215,6.996487575594244,11.051940145813973,12.305901884314636,11.796233425709389,7.294888842206134,205.3556298320709,205.3556298320709,0.0,228.17292203563431,0.0,205.3556298320709,228.17292203563431,0,0
+2017/02/10 15:00:00,189.4426327740745,0,1161.5940036948625,0,0,0,0.0,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,0.3415077670283831,14.03290886323192,0,0,212.59332731318585,540.8616224874191,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,744.6421581340325,0.0,4940.27868921644,0.0,4804.068534620941,0.0,5527.671412097144,0.0,0.0,0.0,0.0,0.0,4449.061230161105,0.0,4236.773070363763,0.0,5107.307056744419,0.0,363.23632400492016,0,0,0,0,0,0,0,0,0.06184412515713698,0.0019567050110605062,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.432588189184956,-0.432588189184956,-0.3793416558757461,-0.3793416558757461,-0.6216548860634707,-0.6216548860634707,-0.35193570472840774,-0.35193570472840774,-0.16426250269867076,-0.16426250269867076,-0.36987943130574596,-0.5269380202729932,-0.6129809377350112,-0.6028385229771983,-0.3233521684470892,-0.3265264596102401,-0.49369470291070794,-0.6008125538003042,-0.5870410158148593,-0.35179856505182355,8.902848351742037,8.902848351742037,7.9964882108818784,7.9964882108818784,13.108451164536135,13.108451164536135,7.577201171062654,7.577201171062654,5.559211093256593,5.559211093256593,7.848106478075252,10.808217582114224,12.881610435733705,12.62050765410251,7.173937140144091,7.21700898784583,10.093049395591976,12.56888679103723,12.222714671311024,7.575183485334151,189.4426327740745,189.4426327740745,0.0,210.4918141934161,0.0,189.4426327740745,210.4918141934161,0,0
+2017/02/10 16:00:00,183.75158270950106,0,1196.7955163107843,0,0,0,0.0,0.0,17.661432508501065,0.0,108.75639138185811,0,39.380909295966944,0.4951991896375428,14.025675131083084,0,0,247.822668882272,540.8337935342548,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,910.483498313911,0.0,5930.008001190447,0.0,3811.988438557305,0.0,6010.922900812664,0.0,3380.3967883954847,0.0,536.7916960088274,0.0,5713.201114430929,0.0,3589.2043891996,0.0,5823.13571372352,0.0,7128.992833671508,0,0,0,0,0,0,0,0,0.06371827976280373,0.0020160019563902768,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5204872656908528,-0.5204872656908528,-0.49751654167356707,-0.49751654167356707,-0.6474002957071235,-0.6474002957071235,-0.4007376618944257,-0.4007376618944257,-0.2031782459053314,-0.2031782459053314,-0.4492041817023799,-0.6092839886047696,-0.6358432547938161,-0.6376778652069504,-0.34426209895950854,-0.43517855187651844,-0.6012430481636629,-0.6357249499828451,-0.635174978905284,-0.3790698555775091,10.6657037350421,10.6657037350421,10.172838670883564,10.172838670883564,13.800967490745208,13.800967490745208,8.346105513212805,8.346105513212805,5.856093262326908,5.856093262326908,9.210573332617443,12.785920380694563,13.486542443155841,13.536068729610932,7.46553194836207,8.950040843220222,12.579840705733218,13.483353752501827,13.468538255354929,7.9921726925166325,183.75158270950106,183.75158270950106,0.0,204.16842523277896,0.0,183.75158270950106,204.16842523277896,0,0
+2017/02/10 17:00:00,208.10587718411867,0,1264.425997972801,0,0,0,0.0,0.0,19.02059706414517,0.0,131.64086955684016,0,39.380909295966944,0.5545268870068195,14.07699917770522,0,0,262.20069154934754,540.8507237603797,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2350.6526150295863,0.0,6529.126134827111,0.0,4881.721222865262,0.0,6683.6697281162305,0.0,3793.7322446241433,0.0,1992.8643333762932,0.0,6281.77047672029,0.0,4660.638718987446,0.0,6433.088590824258,0.0,8271.214240335106,0,0,0,0,0,0,0,0,0.06731897670083814,0.002129925497616878,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5557700944697176,-0.5557700944697176,-0.5548103669879899,-0.5548103669879899,-0.6532333141131778,-0.6532333141131778,-0.42293533452785376,-0.42293533452785376,-0.1544824335600747,-0.1544824335600747,-0.4731981189039829,-0.6238377843598321,-0.6450061152436875,-0.6517751140980411,-0.3460797076034315,-0.474367378161022,-0.6259039921448553,-0.6509120040848339,-0.65676055924993,-0.38329393051653315,11.467222309650609,11.467222309650609,11.444706515739625,11.444706515739625,13.961861842789006,13.961861842789006,8.729524540694754,8.729524540694754,5.494536230615736,5.494536230615736,9.67589679888799,13.166052449388715,13.735354884203417,13.921501491560335,7.491756201349503,9.699206459675082,13.220765040384507,13.897655583266143,14.059870715764461,8.059596900979813,208.10587718411867,208.10587718411867,0.0,231.2287524267985,0.0,208.10587718411867,231.2287524267985,0,0
+2017/02/10 18:00:00,218.8093806179985,0,1255.3981852447075,0,0,0,0.0,0.0,23.037713935229082,0.0,133.89528835348938,0,39.380909295966944,0.44231054238421763,18.621183288474544,0,0,212.93550323338266,581.0880993482509,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3861.183188363413,0.0,6186.735010861004,0.0,6157.710581636711,0.0,6199.384057388277,0.0,0.0,0.0,3682.2524743519853,0.0,5695.118733202297,0.0,6051.933195795762,0.0,6048.682738164682,0.0,1874.264463604084,0,0,0,0,0,0,0,0,0.06683832926423337,0.002114718147761604,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5742766819036518,-0.5742766819036518,-0.5628308938350836,-0.5628308938350836,-0.640921872128662,-0.640921872128662,-0.43342214411885116,-0.43342214411885116,-0.10755606312743686,-0.10755606312743686,-0.4845074807499555,-0.6405840366952716,-0.6427672350577595,-0.6511016461955189,-0.3323820981029358,-0.49227982027828143,-0.6048138632867532,-0.6495984496135273,-0.6591182995660492,-0.3694735564982102,11.909209791396151,11.909209791396151,11.63410078165414,11.63410078165414,13.623999716902446,13.623999716902446,8.918010298813215,8.918010298813215,5.239593374467489,5.239593374467489,9.903826485778708,13.614821169566682,13.674223176821926,13.902892226448188,7.297585329149072,10.063670625395844,12.671010035851594,13.861426816101272,14.125684094326175,7.841827164509041,218.8093806179985,218.8093806179985,0.0,243.12153401999834,0.0,218.8093806179985,243.12153401999834,0,0
+2017/02/10 19:00:00,219.65368139845233,0,1255.3324236932,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.4232266826343844,26.55398401929727,0,0,229.79278599798144,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5973.547644070267,0.0,5700.394143630344,0.0,8094.630889129287,0.0,5718.309089316112,0.0,0.0,0.0,5832.585755339022,0.0,5449.392216531124,0.0,7981.783621243447,0.0,5573.05973408207,0.0,0.0,0,0,0,0,0,0,0,0,0.06683482807052109,0.00211460737243308,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.61063759494704,-0.61063759494704,-0.5882224248013103,-0.5882224248013103,-0.6528480903825473,-0.6528480903825473,-0.4583543898694576,-0.4583543898694576,-0.08903516363385587,-0.08903516363385587,-0.48598641212569,-0.6258411540730978,-0.633310499701891,-0.6380375289381147,-0.30781872362837015,-0.49787729480211546,-0.6210223140735803,-0.6412238619389644,-0.6478066856434468,-0.34241111327128215,12.82088764521707,12.82088764521707,12.25208873003153,12.25208873003153,13.951190585489996,13.951190585489996,9.385102541279252,9.385102541279252,5.164156433513668,5.164156433513668,9.934040958251089,13.219098375054813,13.418409277905539,13.545795159640335,6.969321210988156,10.180402775046545,13.091797796361178,13.632208575368509,13.812129295576327,7.438970438798904,219.65368139845233,219.65368139845233,0.0,244.05964599828036,0.0,219.65368139845233,244.05964599828036,0,0
+2017/02/10 20:00:00,210.87608329980114,0,1221.7464095328494,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.3464054535594332,27.0977424753112,0,0,231.697124350175,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5616.360844697316,0.0,5421.662889206929,0.0,7605.350010361623,0.0,5437.819905859915,0.0,0.0,0.0,5800.796754533352,0.0,5412.221663600059,0.0,7794.566530806607,0.0,5495.989634232048,0.0,0.0,0,0,0,0,0,0,0,0,0.06504668379923942,0.002058031734129105,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5936676368066262,-0.5936676368066262,-0.6055715138518267,-0.6055715138518267,-0.6617324255726565,-0.6617324255726565,-0.4746687007026819,-0.4746687007026819,-0.10981902048903179,-0.10981902048903179,-0.48688435758532755,-0.616921047927542,-0.6258360278336019,-0.6284168682847425,-0.2962429620886274,-0.5037931649298839,-0.6168854388950842,-0.636301219669896,-0.6407170634233765,-0.33095387172337926,12.388259171846244,12.388259171846244,12.690425383700656,12.690425383700656,14.198935727670303,14.198935727670303,9.705223000286438,9.705223000286438,5.249786869377687,5.249786869377687,9.952431984696403,12.98424731394205,13.218962418453387,13.287554916460024,6.823478968275396,10.305246219805554,12.983316708762842,13.498891775910394,13.618434741170503,7.277798116940602,210.87608329980114,210.87608329980114,0.0,234.30675922200126,0.0,210.87608329980114,234.30675922200126,0,0
+2017/02/10 21:00:00,212.9945929293678,0,1195.7351393437134,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.327825098779465,24.76303866443102,0,0,241.176206673583,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,835.7611809927085,0.0,0.0,0.0,0.0,0.0,6891.004822453195,0.0,6215.31802906874,0.0,8745.656073456092,0.0,6217.465840216921,0.0,0.0,0.0,6866.880091007108,0.0,6080.809144476301,0.0,8729.551363812861,0.0,6141.745767087332,0.0,0.0,0,0,0,0,0,0,0,0,0.06366182450764858,0.0020142157514697273,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6305988511597257,-0.6305988511597257,-0.6434457388539222,-0.6434457388539222,-0.6935547917242834,-0.6935547917242834,-0.5547186571373012,-0.5547186571373012,-0.14963337625702908,-0.14963337625702908,-0.4991413436225795,-0.6210112667153568,-0.6301787415273435,-0.6308844764590942,-0.28815265664033995,-0.5214778191788162,-0.6265044840673711,-0.6433222055777252,-0.646084029050623,-0.32217929345168905,13.345772192886713,13.345772192886713,13.6927264903578,13.6927264903578,15.114363965216427,15.114363965216427,11.442557036898236,11.442557036898236,5.463947536905849,5.463947536905849,10.206951131359048,13.09150711302641,13.334547231440652,13.353408223361,6.724911970517127,10.687470575270027,13.236700635781375,13.68935615766533,13.764864393787889,7.1581305273571445,212.9945929293678,212.9945929293678,0.0,236.66065881040865,0.0,212.9945929293678,236.66065881040865,0,0
+2017/02/10 22:00:00,199.64503557427403,0,1319.1869422431967,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.6513556483433112,27.0977424753112,0,0,400.1183620856105,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106.7343057928683,0.0,397.0997869384661,0.0,1710.5310312667384,0.0,208.0438616176964,0.0,0.0,0.0,5502.96272290026,0.0,7228.714670070855,0.0,7279.8305476771075,0.0,7232.139187166438,0.0,2336.755487138552,0.0,5503.222459609264,0.0,7107.5356121881705,0.0,7263.737939825361,0.0,7160.496637824004,0.0,6875.769248080872,0,0,0,0,0,0,0,0,0.07023448993559049,0.0022221703040840738,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6860124994572059,-0.6860124994572059,-0.6996208457924528,-0.6996208457924528,-0.7273666405352255,-0.7273666405352255,-0.6460981246445715,-0.6460981246445715,-0.22932604225084935,-0.22932604225084935,-0.5175787452383939,-0.6397628538825944,-0.6433734207395232,-0.6481550915956776,-0.30363190150821673,-0.5452666100557034,-0.6503110409671915,-0.6595466499690485,-0.6666493772281171,-0.34188663877222153,14.893435490841185,14.893435490841185,15.293833740434394,15.293833740434394,16.134950339843073,16.134950339843073,13.765250615552745,13.765250615552745,6.091143481696491,6.091143481696491,10.602036048827472,13.592531344324243,13.690753369971262,13.82170422744582,6.9159175749038155,11.222976920074899,13.881071310641687,14.137666816702549,14.337517945996993,7.4314707392129264,199.64503557427403,199.64503557427403,0.0,221.82781730474892,0.0,199.64503557427403,221.82781730474892,0,0
+2017/02/10 23:00:00,141.15193501366736,0,1169.3762837299591,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.7375896335648937,21.22941257232624,0,0,410.01428987882144,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1864.8466608861509,0.0,1393.943134750794,0.0,3169.033194377218,0.0,1238.0626034007964,0.0,0.0,0.0,4888.317754814314,0.0,7678.317907213251,0.0,6546.375584549718,0.0,7678.387059522553,0.0,9390.172440089476,0.0,5021.231350164278,0.0,7658.787294218048,0.0,6674.567075724952,0.0,7700.870057721226,0.0,13688.691824845442,0,0,0,0,0,0,0,0,0.06225845951059222,0.0019698142611889614,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7695050298831728,-0.7695050298831728,-0.7815321433695613,-0.7815321433695613,-0.8049751681046534,-0.8049751681046534,-0.7465599384944904,-0.7465599384944904,-0.46291410599350846,-0.46291410599350846,-0.5419800393863077,-0.6662075189506295,-0.6608115062079454,-0.6729877448247257,-0.3360056185912562,-0.575059527515937,-0.6816262710492874,-0.6803922877536897,-0.6947633550675294,-0.3791268576952972,17.47564295938743,17.47564295938743,17.872225868764772,17.872225868764772,18.662901772309553,18.662901772309553,16.736177131033372,16.736177131033372,9.473419083097397,9.473419083097397,11.147534000420734,14.32502153463706,14.173096442549806,14.517706857061853,7.348175489567922,11.928233778152872,14.766085225809007,14.730407582127796,15.149993645828005,7.993077484275474,141.15193501366736,141.15193501366736,0.0,156.8354833485193,0.0,141.15193501366736,156.8354833485193,0,0
+2017/02/11 00:00:00,91.54210850120106,0,1048.4374170009896,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.8172225302017563,11.781929709706743,0,0,476.16385961184966,519.0380286203239,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3361.6364652838784,0.0,2266.5480255887564,0.0,4439.1467188794995,0.0,2163.4137140219996,0.0,0.0,0.0,4349.300936085289,0.0,8164.476378436997,0.0,5947.625728834523,0.0,8162.440131190622,0.0,15605.113244274826,0.0,4530.777714027148,0.0,8203.413458868787,0.0,6152.872317660619,0.0,8237.904112591592,0.0,19845.631002122813,0,0,0,0,0,0,0,0,0.055819584665717036,0.0017660927493631164,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8477005699828835,-0.8477005699828835,-0.8583709908060396,-0.8583709908060396,-0.8902994088042797,-0.8902994088042797,-0.8327065097092541,-0.8327065097092541,-0.6133158775531441,-0.6133158775531441,-0.5683071036151631,-0.6944658843270276,-0.6815356756448232,-0.7000259803635291,-0.3723544015390471,-0.6067712599476746,-0.7136653271286238,-0.7036714952930523,-0.7243825970885704,-0.4190731099305637,20.163521305184332,20.163521305184332,20.55019840484293,20.55019840484293,21.73532468182745,21.73532468182745,19.628177084029304,19.628177084029304,12.890309161413853,12.890309161413853,11.765017006358548,15.141218051003733,14.763463638424398,15.305876622586268,7.886548887871555,12.721220713039159,15.715447367895337,15.414560563389216,16.04289745043407,8.661295284204286,91.54210850120106,91.54210850120106,0.0,101.71345389022339,0.0,91.54210850120106,101.71345389022339,0,0
+2017/02/11 01:00:00,40.95559714489967,0,623.0041985380985,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.13560230282840116,0.0937250641951447,9.540635713076066,0,0,53.068548533188114,516.7001212360942,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,173.128514572231,0.0,500.3050643089277,0.0,92.8503296222176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033169204993531584,0.0010494505251522103,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8421610351932715,-0.8421610351932715,-0.8703108303116966,-0.8703108303116966,-0.8976598258089643,-0.8976598258089643,-0.8465023352631482,-0.8465023352631482,-0.28046728260393966,-0.28046728260393966,-0.762289181792256,-0.9710384118622006,-0.9647627795392355,-0.9784088285549898,-0.15789304083164363,-0.8285436704928342,-0.9776849375633558,-0.9828982647221528,-0.9952040925651796,-0.28109181220336116,19.964646117713087,19.964646117713087,20.988470341911892,20.988470341911892,22.01445846919779,22.01445846919779,20.120395036422636,20.120395036422636,6.633837759214927,6.633837759214927,17.240667281275606,24.916231682216207,24.65973277961524,25.219428753729673,5.5166376778065285,19.481215204210386,25.189556957812954,25.405139369835766,25.918150906069812,6.641145608111344,40.95559714489967,40.95559714489967,0.0,45.50621904988852,0.0,40.95559714489967,45.50621904988852,0,0
+2017/02/11 02:00:00,23.722226467996027,0,44.2513864552643,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251310443182372,0,0,0.0,8.761033942720168,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0023559765921752286,7.454145712526946e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9241101771351931,-0.9241101771351931,-0.9969385199533157,-0.9969385199533157,-1.0497535257505535,-1.0497535257505535,-0.957050196429634,-0.957050196429634,-0.11629046803351198,-0.11629046803351198,-0.8556437664897815,-1.108624919252005,-1.1300005738047836,-1.1238891524663535,-0.09135080639355282,-0.9485752787301903,-1.1530462967264303,-1.1901056689114413,-1.184686049500699,-0.28874231669873857,23.03568028020412,23.03568028020412,25.990921637053233,25.990921637053233,28.26080562620288,28.26080562620288,24.346607426568653,24.346607426568653,5.280111428866746,5.280111428866746,20.450918879371002,30.909452582188266,31.900477060233996,31.61559530891627,5.172809505795243,24.005222886888845,32.98561008588848,34.765335643307296,34.502475108856586,6.7320026094790535,23.722226467996027,23.722226467996027,0.0,26.358029408884473,0.0,23.722226467996027,26.358029408884473,0,0
+2017/02/11 03:00:00,28.34456793877101,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.525204852298119,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9445335016545389,-0.9445335016545389,-1.0249118924245184,-1.0249118924245184,-1.0760631753615746,-1.0760631753615746,-0.9851050668079694,-0.9851050668079694,-0.034496118228055275,-0.034496118228055275,-0.9056146740181119,-1.167621841764504,-1.19172737823382,-1.1833638226039167,-0.06995683570449775,-1.020245522304557,-1.240570431231287,-1.2829487242148039,-1.2745797893112798,-0.2869923032470192,23.84341005507804,23.84341005507804,27.180269825608065,27.180269825608065,29.429501428959284,29.429501428959284,25.49671064698323,25.49671064698323,5.024634542051359,5.024634542051359,22.318613147591464,33.68057813312184,34.84415965319907,34.438477090961015,5.1013296082761315,26.979832367534584,37.253207100273045,39.394593739734525,38.9681943919029,6.711001630851243,28.34456793877101,28.34456793877101,0.0,31.493964376412233,0.0,28.34456793877101,31.493964376412233,0,0
+2017/02/11 04:00:00,23.77463650795003,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5775410842722418,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.000130188177497,-1.000130188177497,-1.0871886252327425,-1.0871886252327425,-1.1339852764537717,-1.1339852764537717,-1.0495490845918567,-1.0495490845918567,0.03373593843387222,0.03373593843387222,-0.9832388845657355,-1.246483535379755,-1.2763070543125714,-1.263551542115811,-0.0410822357174622,-1.1102030831365428,-1.3360028002658908,-1.3839285815348359,-1.372242961463275,-0.29586030832607335,26.12513209393046,26.12513209393046,29.931051728860794,29.931051728860794,32.08687942503114,32.08687942503114,28.251821220273612,28.251821220273612,5.023560723265547,5.023560723265547,25.41926117568245,37.54926793952411,39.056061927013445,38.40888908604425,5.034939917413098,30.982099972048672,42.13435536236105,44.65718313242947,44.038342197375755,6.818754667663413,23.77463650795003,23.77463650795003,0.0,26.416262786611146,0.0,23.77463650795003,26.416262786611146,0,0
+2017/02/11 05:00:00,41.341807082088785,0,396.4291162521198,0,0,0,0.0,0.02071620191342275,4.633261998087618,9.319298099999997,23.111338313975452,0,2.2150798818236366,1.5170362013749874,0.525076384913659,0,0,307.7032349707594,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20450972573648457,766.0506354361338,0.14396176994060542,836.4883592143691,1.1211223414354041,1517.0965936305622,0.18684815839014846,732.3324384155678,0.0,0.0,1.9391871107985603,3063.9095279520097,2.303846231952238,2893.218139991363,2.7491041043736413,4889.293437418817,2.156672258477308,2952.888031287176,0.0,0.0,2.150986262231113,3592.528182499428,2.4219016412368792,2934.029330911496,2.403226399856645,5064.37485584366,2.9348359089937146,3052.089508696524,0.0,0.0,0,0,0,0,0,0,0,0,0.02110617978695213,0.0006677848162382363,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8929026008014377,-0.8929026008014377,-0.9251335642750534,-0.9251335642750534,-0.9451143402270233,-0.9451143402270233,-0.904310924417693,-0.904310924417693,0.1653406917136793,0.1653406917136793,-0.721219706187135,-0.8453556003189832,-0.8462288979363412,-0.8525499652647613,-0.009766586194212895,-0.7925129003565696,-0.9046596868373068,-0.9056658882731956,-0.9190086420380261,-0.28502422297605784,21.8337947570878,21.8337947570878,23.075758489880457,23.075758489880457,23.866624242715673,23.866624242715673,22.268588179650095,22.268588179650095,5.566585060510064,5.566585060510064,15.945745677395792,20.079178318483514,20.110561994751876,20.338668455977526,5.001974550616453,18.23967891979798,22.281963470492286,22.320579648172654,22.836519047745824,6.6875381932747615,41.341807082088785,41.341807082088785,0.0,45.93534120232087,0.0,41.341807082088785,45.93534120232087,0,0
+2017/02/11 06:00:00,76.00200212629214,0,363.0402510880916,0,0,0,0.0,0.01938788044371233,4.633261998087618,9.319298099999997,57.911447091112116,0,2.121251843016074,1.472258439737996,0.5250967738946081,0,0,150.09813601282684,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,271.4766530127335,0.0,404.63967475957145,0.0,707.5729422846855,0.0,376.9399571294946,0.0,0.0,2.162944125460399,2937.717160361319,1.8709462020823366,2720.340074429745,3.4471477622046223,4645.944594561303,1.7821956074310492,2794.371570809226,0.0,0.0,2.6020807065832514,3478.952991731478,2.1863671351148923,2900.4833549257005,3.3223432333536493,5072.081698704769,2.0138556714821334,3042.6622711024793,0.0,0.0,0,0,0,0,0,0,0,0,0.019328531874264247,0.0006115412754036025,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7990993406470037,-0.7990993406470037,-0.8308504347229166,-0.8308504347229166,-0.845763767298223,-0.845763767298223,-0.8125296245483562,-0.8125296245483562,0.4801851687561975,0.4801851687561975,-0.6905911605333124,-0.7837386622673658,-0.7834900417430074,-0.7893040373734467,0.05678379635899655,-0.7263306931139843,-0.8066214245741055,-0.800664877860185,-0.8160239852628518,-0.2522703910232598,18.462537588400536,18.462537588400536,19.56256185884618,19.56256185884618,20.09384265120157,20.09384265120157,18.922649844567843,18.922649844567843,9.816062945022509,9.816062945022509,15.027260199742699,17.945652185080334,17.937368493925277,18.131770122245143,5.066756333970673,16.102949640286894,18.71930041343711,18.515779295162048,19.04361202495666,6.321017326699732,76.00200212629214,76.00200212629214,0.0,84.44666902921348,0.0,76.00200212629214,84.44666902921348,0,0
+2017/02/11 07:00:00,106.66020587492268,0,859.3226519093417,0,0,0,0.11618947744186085,0.01548461505012392,8.33396954093373,13.929299233552332,80.56906512710079,0,1.88478034239231,1.286385620056479,0.5250319183951022,0,0,122.60706098668913,506.0282995911157,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,368.68209464959466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,222.36650532022497,0.0,439.30718838553173,0.0,167.44759778522575,0.0,0.0,1.7709802954937004,2584.219732651753,1.2612538901266817,2350.0752935160735,2.5085356841867297,3989.615980084549,1.462533230810853,2413.713424903154,0.0,0.0,2.9798675528412177,2850.1249100828463,1.4251850711082927,2336.75757415193,2.3951588448856755,4060.163139219894,1.6811004806707692,2448.2725357829377,0.0,0.0,0,0,0,0,0,0,0,0,0.045750974493670445,0.001447528941919803,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7301899123864841,-0.7301899123864841,-0.7694348234030393,-0.7694348234030393,-0.7799037346143746,-0.7799037346143746,-0.7515817206260953,-0.7515817206260953,0.7214640733878871,0.7214640733878871,-0.6810736406328858,-0.7662060496386188,-0.7642696026889625,-0.7715922570352919,0.13273543113919703,-0.7107961203329949,-0.7842103088616945,-0.7774205806680552,-0.7929903932620865,-0.16788861844801148,16.22239625052879,16.22239625052879,17.4733460620608,17.4733460620608,17.81817010840882,17.81817010840882,16.896091930801546,16.896091930801546,15.95323634451097,15.95323634451097,14.750099109751957,17.367939711074968,17.304936041030516,17.544025363004835,5.365001588928877,15.628622715382548,17.961374015299924,17.735957908032603,18.25577355344862,5.584203496879695,106.66020587492268,106.66020587492268,0.0,118.51133986102519,0.0,106.66020587492268,118.51133986102519,0,0
+2017/02/11 08:00:00,121.35416990365295,0,1023.3346096245627,0,0,0,0.0,0.0,8.010618550050419,0.0,69.33401494192633,0,39.380909295966944,0.6715737650067171,0.5250781482482444,0,0,264.3335870377497,492.82337874273213,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3163.277091394487,0.0,2127.2539790659052,0.0,3969.43988209127,0.0,2092.9951785997146,0.0,0.0,0.0,7304.541036412849,0.0,8065.811760711265,0.0,8927.852737937355,0.0,8017.44208854827,0.0,3535.3789648712773,0.0,7279.746520648532,0.0,7866.401630242959,0.0,8735.193541456554,0.0,7823.832136629281,0.0,9322.680110778094,0,0,0,0,0,0,0,0,0.054483092607179304,0.0017238070722427963,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7705448302813864,-0.7705448302813864,-0.802501202913883,-0.802501202913883,-0.8215930805193095,-0.8215930805193095,-0.790722694250962,-0.790722694250962,0.10120043717212665,0.10120043717212665,-0.6553456313158748,-0.7420508979305129,-0.7367228459883243,-0.7423145506725637,-0.20879086806009706,-0.6829279499131693,-0.7568865898385407,-0.7476876118855383,-0.7590900787455339,-0.32999395845318374,17.509686010543874,17.509686010543874,18.57836225461469,18.57836225461469,19.237456470144636,19.237456470144636,18.17942335248098,18.17942335248098,5.212101740775594,5.212101740775594,14.020490426724507,16.593511157065677,16.42605593582448,16.601829124582963,5.904133419137935,14.803791503961875,17.066194267003283,16.77199295265686,17.13720375711189,7.26454773793202,121.35416990365295,121.35416990365295,0.0,134.8379665596144,0.0,121.35416990365295,134.8379665596144,0,0
+2017/02/11 09:00:00,143.9000507672591,0,1124.9047085370967,0,0,0,0.0,0.0,12.128592376084008,0.0,87.89947186453183,0,39.38090929596693,0.5340703356598633,0.525031692562191,0,0,312.6772850123682,492.8142509118314,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2020.782811902,0.0,1505.1507384396373,0.0,2990.4208702874703,0.0,1350.9114258746633,0.0,0.0,0.0,6470.295509445186,0.0,7469.131198087996,0.0,8091.295065326052,0.0,7315.371146578828,0.0,77.05115878024577,0.0,5130.099297518101,0.0,7215.094014181698,0.0,7786.443422253767,0.0,7042.709759637517,0.0,4467.065573131801,0,0,0,0,0,0,0,0,0.05989075990693201,0.00189490189615192,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7592808078890986,-0.7592808078890986,-0.7986307572754379,-0.7986307572754379,-0.8175236258331064,-0.8175236258331064,-0.7745256039834367,-0.7745256039834367,-0.2637602301605847,-0.2637602301605847,-0.626991984713293,-0.7223709095940036,-0.7128097158320945,-0.7140708460532206,-0.2987707762621647,-0.710418544199629,-0.7357274093928756,-0.72224723647203,-0.7279361665624184,-0.3706008799245421,17.143359945109836,17.143359945109836,18.446621900255494,18.446621900255494,19.095681886063062,19.095681886063062,17.640442526472796,17.640442526472796,6.4444456227400195,6.4444456227400195,13.249649224204802,15.981056357342027,15.689518708884123,15.727747334703764,6.854843203679565,15.617223360837016,16.394905491498406,15.977260216337484,16.152562817067306,7.859285389792902,143.9000507672591,143.9000507672591,0.0,159.88894529695455,0.0,143.9000507672591,159.88894529695455,0,0
+2017/02/11 10:00:00,184.28758792157072,0,1279.2890180080037,0,0,0,0.0,0.0,11.268261791783145,0.0,106.27511244621549,0,39.380909295966944,0.5158036786214552,23.41552550652947,0,0,306.98490908160136,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,731.4376242863237,0.0,1051.8039155947508,0.0,2204.865964905462,0.0,727.5676183005756,0.0,0.0,0.0,5231.99944927182,0.0,7338.210064319096,0.0,7054.937657568499,0.0,7085.2631042824205,0.0,0.0,0.0,4976.3127769956045,0.0,7024.576559071076,0.0,6649.720063242739,0.0,6729.661167963488,0.0,6473.070804905691,0,0,0,0,0,0,0,0,0.06811029489665035,0.0021549622537380925,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7072079873631633,-0.7072079873631633,-0.7742889621833984,-0.7742889621833984,-0.7874046082369169,-0.7874046082369169,-0.7398951483248093,-0.7398951483248093,-0.25965142519102863,-0.25965142519102863,-0.5895040041276152,-0.7074260739436433,-0.6954370266193363,-0.6902676677747184,-0.3078488474602006,-0.6586535682803992,-0.7164765489460343,-0.7005440178383109,-0.6981408895278233,-0.3756064263826925,15.52054219752462,15.52054219752462,17.63265067060337,17.63265067060337,18.068101319692275,18.068101319692275,16.525611401708275,16.525611401708275,6.399669222174282,6.399669222174282,12.284021873847863,15.52709547969647,15.169881557399094,15.017775433344283,6.969708132934542,14.11269264057563,15.800861432919959,15.32128593784445,15.249901325601897,7.937458005031573,184.28758792157072,184.28758792157072,0.0,204.76398657952302,0.0,184.28758792157072,204.76398657952302,0,0
+2017/02/11 11:00:00,210.43933625197704,0,1339.3497800783557,0,0,0,0.0,0.0,14.876918395255093,0.0,131.64086955684016,0,39.380909295966944,0.49163679540095206,20.617027006059534,0,0,278.3197898705928,599.6554075446891,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,320.30644731862736,0.0,0.0,0.0,0.0,0.0,1854.2255678813349,0.0,6552.872209877281,0.0,4611.795513739676,0.0,6122.814276138403,0.0,1311.686599586686,0.0,1015.431920218731,0.0,6255.339926990976,0.0,4217.7981360895,0.0,5767.801838415427,0.0,7184.344728024813,0,0,0,0,0,0,0,0,0.07130797435668276,0.0022561346028870657,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4688828308182938,-0.4688828308182938,-0.7078208649611355,-0.7078208649611355,-0.7231074482994551,-0.7231074482994551,-0.5843812489536545,-0.5843812489536545,-0.2287614509567443,-0.2287614509567443,-0.4363663507559062,-0.686896638708729,-0.6693680095028148,-0.6530274869686199,-0.3311976387590949,-0.44505025521931013,-0.686603548665271,-0.6649668235854914,-0.6498582051922367,-0.3843381086255894,9.590379895951727,9.590379895951727,15.538963770141066,15.538963770141066,16.003678014560776,16.003678014560776,12.156805021099416,12.156805021099416,6.085765558365992,6.085765558365992,8.971777110837081,14.91920643595725,14.414590960712005,13.956159331469138,7.2811692353224515,9.132530907544734,14.910659684761,14.289978022454434,13.868585126672741,8.076381385645604,210.43933625197704,210.43933625197704,0.0,233.82148472441892,0.0,210.43933625197704,233.82148472441892,0,0
+2017/02/11 12:00:00,217.23175869804072,0,1247.512130225498,0,0,0,0.0,0.0,14.876918395255093,0.0,136.4899973586286,0,39.380909295966944,0.2528628405638796,22.79909560517182,0,0,133.2466112489191,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1829.9871665587973,0.0,5323.417315517458,0.0,4865.391138052555,0.0,5153.499148557314,0.0,0.0,0.0,1471.4039657655762,0.0,4938.632230612885,0.0,4334.867106449707,0.0,4758.001373444054,0.0,0.0,0,0,0,0,0,0,0,0,0.06641846985375711,0.0021014340886802863,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5287617562174234,-0.5287617562174234,-0.6262209878085194,-0.6262209878085194,-0.6384869916701174,-0.6384869916701174,-0.4913110527911864,-0.4913110527911864,-0.13627603503722413,-0.13627603503722413,-0.4456587786133236,-0.6600740555232454,-0.6434368260920497,-0.6490014962011164,-0.32388803856308346,-0.4350375121408305,-0.6539245463347481,-0.6340186556856788,-0.6448880777716774,-0.3662763273957619,10.848835246409024,10.848835246409024,13.229175384812933,13.229175384812933,13.557957921863434,13.557957921863434,10.043604897301478,10.043604897301478,5.384749611962732,5.384749611962732,9.143917232059962,14.152431438942273,13.692483303178406,13.844987136723816,7.181178368849729,8.94746389466755,13.981026105433003,13.437431222778528,13.73212649164391,7.792608162087475,217.23175869804072,217.23175869804072,0.0,241.3686207756008,0.0,217.23175869804072,241.3686207756008,0,0
+2017/02/11 13:00:00,205.9652369473999,0,1223.6635762958829,0,0,0,0.0,0.0,14.876918395255093,0.0,124.80122689546741,0,39.380909295966944,0.2343235363981232,23.239883621858016,0,0,144.88840983184792,599.6554075446891,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2331.019838388894,0.0,4858.002720594526,0.0,4651.768333093221,0.0,4773.433196987612,0.0,0.0,0.0,1979.4388783137654,0.0,4491.885776513016,0.0,4161.090711175331,0.0,4418.464031953401,0.0,0.0,0,0,0,0,0,0,0,0,0.06514875517776152,0.002061261201395924,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5006761916905113,-0.5006761916905113,-0.579945838301818,-0.579945838301818,-0.5973669573749637,-0.5973669573749637,-0.41442445522078364,-0.41442445522078364,-0.12728987651472487,-0.12728987651472487,-0.4724804950906486,-0.6378697407712921,-0.6268671353520178,-0.6341370428647058,-0.3243194106549698,-0.4703967204953488,-0.6304970251664163,-0.6185875600197918,-0.6312902351181798,-0.36109164779204717,10.2392797939128,10.2392797939128,12.047577302610279,12.047577302610279,12.481503526656411,12.481503526656411,8.580021246861094,8.580021246861094,5.335646157747604,5.335646157747604,9.66161986401083,13.541256945635695,13.246332096613898,13.440613371127625,7.187016357651942,9.62028954245072,13.343050788486863,13.027861431124308,13.364262036472184,7.713719687675535,205.9652369473999,205.9652369473999,0.0,228.85026327488876,0.0,205.9652369473999,228.85026327488876,0,0
+2017/02/11 14:00:00,200.99392922338433,0,1212.9827970178285,0,0,0,0.0,0.0,14.821261324963833,0.0,122.5097643007467,0,39.380909295966944,0.2721580795156888,20.577861019736844,0,0,169.69798306633814,599.6554075446891,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1874.350570571462,0.0,4467.857317549593,0.0,4647.513864383211,0.0,4757.112860461897,0.0,0.0,0.0,1322.9066001662814,0.0,3968.6497507627414,0.0,4022.6834885322114,0.0,4320.627226955665,0.0,0.0,0,0,0,0,0,0,0,0,0.06458010257767349,0.0020432694295126987,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42413045685384215,-0.42413045685384215,-0.5087969196865908,-0.5087969196865908,-0.566114269579139,-0.566114269579139,-0.38614480064273954,-0.38614480064273954,-0.15047742115368584,-0.15047742115368584,-0.4233073351032803,-0.5820756048117312,-0.6130471831792705,-0.6224840452022513,-0.32586230810639144,-0.40876464875101387,-0.5612668573478281,-0.6022773559139183,-0.6175495918934806,-0.3581268973086702,8.750766936786988,8.750766936786988,10.41202197896395,10.41202197896395,11.712438190244313,11.712438190244313,8.105532768670813,8.105532768670813,5.469201523197626,5.469201523197626,8.736130002416374,12.099919015570137,12.883330510643063,13.13030626911329,7.20796179233642,8.482318945429498,11.596949152791623,12.60619150969238,13.000682717476707,7.669123489979498,200.99392922338433,200.99392922338433,0.0,223.32658802598257,0.0,200.99392922338433,223.32658802598257,0,0
+2017/02/11 15:00:00,185.84631568994942,0,1143.504051748931,0,0,0,0.0,0.0,15.487506064374205,0.0,108.75639138185811,0,39.380909295966944,0.2959867705459315,18.493546974749915,0,0,172.8376624652732,562.5273353894003,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1647.6379866931386,0.0,4660.678423213822,0.0,3660.7727603636163,0.0,4679.40367059324,0.0,0.0,0.0,1424.0554487150714,0.0,4365.044540763523,0.0,3304.7811826441766,0.0,4404.375913971604,0.0,0.0,0,0,0,0,0,0,0,0,0.06088100271618758,0.0019262324883805887,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5371919380557197,-0.5371919380557197,-0.5186893032070531,-0.5186893032070531,-0.6023993539044142,-0.6023993539044142,-0.3907064026056386,-0.3907064026056386,-0.20412905848321167,-0.20412905848321167,-0.48595769872185934,-0.6245495825196772,-0.6246025789983048,-0.6375305400035927,-0.3383876308054979,-0.49234556557498466,-0.6200419213745175,-0.6230514771255837,-0.6419057195389289,-0.37141407685087957,11.038461178713348,11.038461178713348,10.626303029245463,10.626303029245463,12.609302683722674,12.609302683722674,8.179755726484203,8.179755726484203,5.864138823477347,5.864138823477347,9.933453446675585,13.184879745158455,13.186282398829533,13.532086216072884,7.381735883396246,10.06503385230549,13.066021857933492,13.145279921214566,13.65075776233607,7.87191255406718,185.84631568994942,185.84631568994942,0.0,206.495906322166,0.0,185.84631568994942,206.495906322166,0,0
+2017/02/11 16:00:00,182.83954545665725,0,1113.3791382110644,0,0,0,0.0,0.0,14.988232387734861,0.0,106.31215624428707,0,39.380909295966944,0.23048413437717738,18.495788191836947,0,0,124.14666485635128,581.0934194604555,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1534.3881956674325,0.0,4581.39849179358,0.0,3479.2569446841494,0.0,4802.795573180765,0.0,0.0,0.0,1331.4088476556362,0.0,4262.129569290717,0.0,3164.114477837815,0.0,4559.2328302877195,0.0,0.0,0,0,0,0,0,0,0,0,0.05927713000570727,0.0018754870738124944,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5334890758746571,-0.5334890758746571,-0.5187232559576473,-0.5187232559576473,-0.591644229416781,-0.591644229416781,-0.36829868499800655,-0.36829868499800655,-0.22597913960985475,-0.22597913960985475,-0.4773404064700484,-0.5939311150337894,-0.6165526395979738,-0.6318490873847922,-0.344123257515911,-0.4817801565324714,-0.5829469953522237,-0.6140444394616952,-0.6351130832525989,-0.37522326575136944,10.954791077602593,10.954791077602593,10.627045776940705,10.627045776940705,12.337508831177132,12.337508831177132,7.823690241437262,7.823690241437262,6.059458368004627,6.059458368004627,9.758740502176352,12.394880708377812,12.974622004231392,13.379222709882768,7.463534532514117,9.848354955931086,12.121391282401092,12.909247464083265,13.466871689318424,7.931436338268767,182.83954545665725,182.83954545665725,0.0,203.15505050739694,0.0,182.83954545665725,203.15505050739694,0,0
+2017/02/11 17:00:00,195.26046538721238,0,1144.6837491498188,0,0,0,0.0,0.0,15.771209018570609,0.0,120.17895923267236,0,39.380909295966944,0.20810408437446157,16.289308553173676,0,0,121.78453981147634,561.5246266752688,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1527.6678177884578,0.0,4282.986403261304,0.0,3271.9708713721952,0.0,4523.862517621335,0.0,0.0,0.0,1338.183183616734,0.0,3965.0080155606647,0.0,2987.6873986136407,0.0,4281.439548607725,0.0,0.0,0,0,0,0,0,0,0,0,0.060943810679620576,0.0019282196885628466,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44533365116449747,-0.44533365116449747,-0.48139718426827044,-0.48139718426827044,-0.5796712090422811,-0.5796712090422811,-0.31627700848342194,-0.31627700848342194,-0.1854225575043549,-0.1854225575043549,-0.4931323190708916,-0.5946454527724494,-0.6187999285634226,-0.6354209962167692,-0.3462848617249244,-0.5046276556104484,-0.5872380605097691,-0.6212079906069302,-0.6421472624191351,-0.37610974672883807,9.137831661583618,9.137831661583618,9.840591313493462,9.840591313493462,12.040842266265628,12.040842266265628,7.079471463409476,7.079471463409476,5.712792601240054,5.712792601240054,10.081361646520179,12.412848064070147,13.033427964427716,13.475164016155787,7.494724961902222,10.322978319925681,12.227609699478606,13.09668419799452,13.657333507389211,7.9453775924053645,195.26046538721238,195.26046538721238,0.0,216.9560726524582,0.0,195.26046538721238,216.9560726524582,0,0
+2017/02/11 18:00:00,223.8148117961253,0,1142.4231738310402,0,0,0,0.0,0.0,23.859832241204728,0.0,138.40412594678773,0,39.380909295966944,0.19198414067645983,18.54598496903502,0,0,118.52410506132632,562.5244861066401,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1342.508754374739,0.0,4124.397497200198,0.0,2911.630832362316,0.0,4204.962646814485,0.0,0.0,0.0,1279.206866910094,0.0,3828.1840666325297,0.0,2741.652158300161,0.0,4042.405791845553,0.0,0.0,0,0,0,0,0,0,0,0,0.06082345597522559,0.0019244117496099388,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47990666706045315,-0.47990666706045315,-0.47791519754762607,-0.47791519754762607,-0.5349831642067897,-0.5349831642067897,-0.25600968966542376,-0.25600968966542376,-0.16024725931046646,-0.16024725931046646,-0.5007762170750732,-0.614502633641285,-0.6154818854128709,-0.6326380724013211,-0.3464149257618265,-0.5171960507370374,-0.6050815506116582,-0.6188744140594661,-0.641045973844559,-0.3761904950340821,9.810435674011785,9.810435674011785,9.770294500997238,9.770294500997238,10.988480119040787,10.988480119040787,6.360576682616227,6.360576682616227,5.532176258476895,5.532176258476895,10.241390172017574,12.921169603470958,12.946680122491102,13.400367185712653,7.496608029649536,10.59368609254338,12.677866872427671,13.03538081697009,13.62737264149095,7.946649147645076,223.8148117961253,223.8148117961253,0.0,248.683124217917,0.0,223.8148117961253,248.683124217917,0,0
+2017/02/11 19:00:00,228.83574587346516,0,1123.2848945255917,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,120.14191543460078,0,39.380909295966944,0.14117309476930415,26.810610554656527,0,0,97.74525683037284,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2077.6171523124913,0.0,2883.965447835304,0.0,3527.1853622687195,0.0,2937.9578283315764,0.0,0.0,0.0,1927.5659570802623,0.0,2597.9349173208534,0.0,3227.276920198723,0.0,2702.8779897444224,0.0,0.0,0,0,0,0,0,0,0,0,0.05980451980915245,0.0018921733195724816,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5011965781976059,-0.5011965781976059,-0.45828543366299124,-0.45828543366299124,-0.5750364946846114,-0.5750364946846114,-0.20517510302920652,-0.20517510302920652,-0.14599836589493667,-0.14599836589493667,-0.4871922658250099,-0.5928432908633956,-0.5933398777922588,-0.6104034216760309,-0.3220186517967537,-0.5025517582116372,-0.5911052568752274,-0.5945587765269054,-0.6177245491460638,-0.3488174818051683,10.25026385626397,10.25026385626397,9.383773809092048,9.383773809092048,11.927673676048812,11.927673676048812,5.873033912285649,5.873033912285649,5.441659408593452,5.441659408593452,9.95874633698405,12.367561789105153,12.380026384011813,12.814832636120073,7.155970130815945,10.278923250500824,12.324020493445545,12.410666762198659,13.005260615715116,7.531521598805327,228.83574587346516,228.83574587346516,0.0,254.26193985940571,0.0,228.83574587346516,254.26193985940571,0,0
+2017/02/11 20:00:00,219.83746881203407,0,1066.4813915694951,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.89738010901058,0,39.380909295966944,0.1002994382737344,27.097742475311204,0,0,76.43210638682083,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2619.02400505892,0.0,2460.4625667742293,0.0,4002.5059257435914,0.0,2489.561555582599,0.0,0.0,0.0,2485.1138134399616,0.0,2193.430095451179,0.0,3692.1059189989883,0.0,2252.0161954112887,0.0,0.0,0,0,0,0,0,0,0,0,0.056780259237036536,0.0017964878231542499,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5178223666593011,-0.5178223666593011,-0.4591316655290901,-0.4591316655290901,-0.596512306785061,-0.596512306785061,-0.17881300105719414,-0.17881300105719414,-0.1488566607523719,-0.1488566607523719,-0.4734507821681552,-0.5688254593186927,-0.5731828843014503,-0.5850443503305307,-0.3012488053251249,-0.4876317215748926,-0.5670862408700605,-0.5733766629276488,-0.5911248094025752,-0.3259096563084732,10.607354890437037,10.607354890437037,9.40009419457111,9.40009419457111,12.459908612565272,12.459908612565272,5.662813126349647,5.662813126349647,5.459138872216343,5.459138872216343,9.680928751847034,11.777476392748511,11.882673865464241,12.173208102186138,6.885851900444507,9.967765455920585,11.73571795724223,11.887371221923914,12.324509595012714,7.208606159100029,219.83746881203407,219.83746881203407,0.0,244.2638542355934,0.0,219.83746881203407,244.2638542355934,0,0
+2017/02/11 21:00:00,200.89412677994065,0,1061.6606420236817,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,0.12558140973058252,24.13691018729874,0,0,107.10170935355147,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2590.045694907039,0.0,3177.593289274272,0.0,3886.5489992220582,0.0,3204.6845346451655,0.0,0.0,0.0,2266.517394733887,0.0,2798.9242037187123,0.0,3397.996998691346,0.0,2849.21158265382,0.0,0.0,0,0,0,0,0,0,0,0,0.05652359896045609,0.0017883672709102154,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5562115384731822,-0.5562115384731822,-0.5076684002931202,-0.5076684002931202,-0.6402149914291554,-0.6402149914291554,-0.2193324612537687,-0.2193324612537687,-0.20536239462115913,-0.20536239462115913,-0.48036365914040413,-0.5712954565300676,-0.5753334700578508,-0.5865205871783116,-0.30858630285152644,-0.496109861503016,-0.5716632906708704,-0.5762325082029996,-0.593387218748807,-0.3339997862009024,11.477592265140473,11.477592265140473,10.38784582517691,10.38784582517691,13.604800348761671,13.604800348761671,5.997926701007117,5.997926701007117,5.874631387673517,5.874631387673517,9.819671195086514,11.83700623964684,11.93489715533272,12.209794169222121,6.979192267366301,10.143397757438223,11.845894117738638,11.956788231775434,12.381215225863059,7.320101979967205,200.89412677994065,200.89412677994065,0.0,223.21569642215627,0.0,200.89412677994065,223.21569642215627,0,0
+2017/02/11 22:00:00,196.8718467081788,0,1032.4899751989306,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,0.13258557889730607,27.0977424753112,0,0,113.42139504134428,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2450.5294169280714,0.0,3250.1030456187427,0.0,3681.2679733275445,0.0,3270.918766693523,0.0,0.0,0.0,2199.2015885026062,0.0,2931.3698119504506,0.0,3276.2267465093446,0.0,2971.2660097004964,0.0,0.0,0,0,0,0,0,0,0,0,0.05497053105179896,0.0017392292848579381,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5958596881643363,-0.5958596881643363,-0.5926807628795022,-0.5926807628795022,-0.6864276905669329,-0.6864276905669329,-0.26120272715562426,-0.26120272715562426,-0.27248456209578015,-0.27248456209578015,-0.4861737434872321,-0.574995758216653,-0.5775833982729539,-0.588766175988712,-0.3140927383833941,-0.5028789465941264,-0.5765330478268041,-0.5787141826714,-0.5956871030544457,-0.33935920733497016,12.443439894416713,12.443439894416713,12.363484575207536,12.363484575207536,14.905533297944004,14.905533297944004,6.416491303411107,6.416491303411107,6.541877730512624,6.541877730512624,9.937874861838651,11.926683121169106,11.9897475856379,12.265628686433914,7.050736104029951,10.285854536568607,11.964114024582486,12.017397625235773,12.43908782948678,7.395493704339202,196.8718467081788,196.8718467081788,0.0,218.74649634242087,0.0,196.8718467081788,218.74649634242087,0,0
+2017/02/11 23:00:00,140.3596309768631,0,882.9111553237398,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,0.1646967767115616,18.755582595726104,0,0,142.11169435023936,581.0928746670519,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.88238307524864,0.0,0.0,0.0,0.0,0.0,2960.853607314113,0.0,3954.654239721887,0.0,4115.389504964076,0.0,3982.0503927501027,0.0,0.0,0.0,2717.955100473599,0.0,3656.1540474536196,0.0,3746.565213495509,0.0,3706.860818905572,0.0,0.0,0,0,0,0,0,0,0,0,0.04700684388761473,0.0014872637741310194,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7181470747372375,-0.7181470747372375,-0.6941275756945892,-0.6941275756945892,-0.7776073264481468,-0.7776073264481468,-0.4434320076067655,-0.4434320076067655,-0.4839697534053481,-0.4839697534053481,-0.5024062379315188,-0.5908306676586061,-0.5902724810735075,-0.603262922586756,-0.330543362973654,-0.5245452782722255,-0.5976272769915385,-0.5955177017210371,-0.6140994244179476,-0.3582308974890053,15.851778708056997,15.851778708056997,15.131242355449189,15.131242355449189,17.742131556091095,17.742131556091095,9.102328690703189,9.102328690703189,9.892864150731725,9.892864150731725,10.275841978741298,12.317153465677876,12.303204217728208,12.63134374932055,7.272126782085209,10.755145582854865,12.488087460310126,12.434817306750602,12.9106776827809,7.67068154163961,140.3596309768631,140.3596309768631,0.0,155.95514552984787,0.0,140.3596309768631,155.95514552984787,0,0
+2017/02/12 00:00:00,93.27022677842841,0,815.5502000567641,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.2621110728774889,14.06515944425835,0,0,221.45935286839543,540.8553184195525,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,482.951556238386,0.0,200.87397433780507,0.0,1358.5277774000954,0.0,0.0,0.0,0.0,0.0,2659.323342774509,0.0,4454.096600355445,0.0,3774.4975245148225,0.0,4487.156715821905,0.0,0.0,0.0,2521.3108326208303,0.0,4243.324009368884,0.0,3527.7034392713726,0.0,4290.449409943932,0.0,0.0,0,0,0,0,0,0,0,0,0.043420496734492296,0.0013737942500964084,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8181230636772772,-0.8181230636772772,-0.8040154740021985,-0.8040154740021985,-0.8550301633308222,-0.8550301633308222,-0.6500310150873312,-0.6500310150873312,-0.5640439219117123,-0.5640439219117123,-0.5208984173099216,-0.6103629390834007,-0.605295973111584,-0.6212790796637978,-0.35226062462540597,-0.5475006552832784,-0.6214962984483065,-0.6140113327394282,-0.6355240391939151,-0.3823202173116024,19.116521783888416,19.116521783888416,18.630076711550288,18.630076711550288,20.428624315893813,20.428624315893813,13.873349019644294,13.873349019644294,11.662987715579561,11.662987715579561,10.67473339950827,12.81378612058677,12.683361568700974,13.098555426484822,7.581984791654904,11.274526456673726,13.104274486372304,12.908386385404171,13.477939959180105,8.043987043360701,93.27022677842841,93.27022677842841,0.0,103.63358530936489,0.0,93.27022677842841,103.63358530936489,0,0
+2017/02/12 01:00:00,42.94543640594406,0,592.441466392687,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.635819147740098e-09,11.75980233850818,0,0,0.0,539.2059376238708,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03154202249609042,0.0009979676051729365,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7555175920334259,-0.7555175920334259,-0.7691298189099877,-0.7691298189099877,-0.8314715429642134,-0.8314715429642134,-0.6337439432817207,-0.6337439432817207,-0.2193401739877477,-0.2193401739877477,-0.6687797043409831,-0.8405616623926321,-0.8344601905765379,-0.8513658136171457,-0.14311355363593917,-0.7145672790740699,-0.8201307808348975,-0.8212374055947989,-0.8415045430952229,-0.2454446814626728,17.022181623329402,17.022181623329402,17.46336987974648,17.46336987974648,19.584502967982203,19.584502967982203,13.43004952542077,13.43004952542077,5.997997028684011,5.997997028684011,14.39788542064801,19.907464978367685,19.690305027564364,20.295809839880732,5.424362654032663,15.742814502985965,19.186431657781256,19.22503744001365,19.9411621478025,6.250321656385296,42.94543640594406,42.94543640594406,0.0,47.71715156216006,0.0,42.94543640594406,47.71715156216006,0,0
+2017/02/12 02:00:00,23.774735132764306,0,35.72470969222493,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5776397090865114,0,0,0.0,0.23435717968079053,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.001902010005544689,6.017827076509341e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8482129915870971,-0.8482129915870971,-0.8720058610397206,-0.8720058610397206,-0.9338180763674612,-0.9338180763674612,-0.7484876363335311,-0.7484876363335311,-0.09766996610568929,-0.09766996610568929,-0.790724489007137,-0.9723658386958154,-0.9921858527833783,-0.9984568573556787,-0.07795674745245149,-0.8390471614197447,-0.9752875187987934,-0.9985225799134393,-1.0124559804628368,-0.26996319320658635,20.18198237581366,20.18198237581366,21.051166474680613,21.051166474680613,23.41754995255721,23.41754995255721,16.797435422691038,16.797435422691038,5.197554983984446,5.197554983984446,18.179483693118414,24.970682704689125,25.79178896866928,26.054719867737646,5.1258364360606095,19.85341662616021,25.090770625479493,26.05748340743679,26.647051728874217,6.513390027220851,23.774735132764306,23.774735132764306,0.0,26.416372369738117,0.0,23.774735132764306,26.416372369738117,0,0
+2017/02/12 03:00:00,28.34417667534199,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248135888690951,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8531499305048561,-0.8531499305048561,-0.8830379594215448,-0.8830379594215448,-0.9425166104825452,-0.9425166104825452,-0.7676120817695425,-0.7676120817695425,-0.02671832591715746,-0.02671832591715746,-0.8295045385853225,-1.0163101885482657,-1.038366137285702,-1.0434185934939488,-0.05642580610512131,-0.9000184386085681,-1.0438884681878455,-1.070486861071822,-1.0835211016743203,-0.2621029105929753,20.360405547608096,20.360405547608096,21.46211201383231,21.46211201383231,23.762905294927194,23.762905294927194,17.41378626994897,17.41378626994897,5.014777917747537,5.014777917747537,19.515072539246745,26.811425696373234,27.76268457187689,27.983113166733972,5.065917144586052,22.104372342253228,28.003660151855826,29.179743660966125,29.765238636498324,6.4262991941169645,28.34417667534199,28.34417667534199,0.0,31.49352963926888,0.0,28.34417667534199,31.49352963926888,0,0
+2017/02/12 04:00:00,23.721978193197348,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248827695195603,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8824812892855107,-0.8824812892855107,-0.917082616994751,-0.917082616994751,-0.9736609705653145,-0.9736609705653145,-0.8107608974039877,-0.8107608974039877,0.00987823888061444,0.00987823888061444,-0.8746817797235575,-1.0625337299463737,-1.0864195158410583,-1.0903103566687553,-0.03551178129101741,-0.9604458380972334,-1.1060143769630155,-1.1345715560128646,-1.1468642041113417,-0.2578521369899691,21.441256338295958,21.441256338295958,22.761599950690453,22.761599950690453,25.023874859307156,25.023874859307156,18.86161905125995,18.86161905125995,5.002019955434875,5.002019955434875,21.150384784222894,28.8254322815024,29.896240737732327,30.072555712209592,5.026106601380604,24.48418131078897,30.78946588453266,32.11434880544638,32.69285391162066,6.380284862402064,23.721978193197348,23.721978193197348,0.0,26.357753547997053,0.0,23.721978193197348,26.357753547997053,0,0
+2017/02/12 05:00:00,40.23030801316893,0,426.99694842483626,0,0,0,0.0,0.015071278341395074,4.633261998087618,9.319298099999997,23.111338313975452,0,1.5285387584268617,1.097762403983901,0.5250371603536981,0,0,338.27106714347593,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.076169655609615,0.12356479837308143,249.0281494272206,0.0,0.0,0.0,0.0,1.7792268166780454,2245.6922035712714,1.2625916353889957,2081.0977058500694,2.7812050967243316,3498.5894139196203,1.3882754719033477,2179.5570247654023,0.0,0.0,1.863079099555408,2452.496827693809,1.468908628915465,1986.28892401665,2.7577726349127762,3391.927347064414,1.6466541589436217,2122.20074483435,0.0,0.0,0,0,0,0,0,0,0,0,0.02273363381362463,0.000719276327213118,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8155112609857966,-0.8155112609857966,-0.8484081414333855,-0.8484081414333855,-0.8777115927668396,-0.8777115927668396,-0.7519349007398404,-0.7519349007398404,0.1509473781685778,0.1509473781685778,-0.6451974645614397,-0.7312867414868875,-0.7365202013815861,-0.7431704685918431,0.0013981241196815025,-0.6980938916634761,-0.7714927047691548,-0.7742159900866646,-0.7885634345652593,-0.2296521720334497,19.025831158091805,19.025831158091805,20.18901593481857,20.18901593481857,21.263080513754446,21.263080513754446,16.90737933635033,16.90737933635033,5.4721397565036085,5.4721397565036085,13.740589681301401,16.256461038668277,16.419711078415332,16.628852989513433,5.000040464327739,15.248507746021929,17.540759580986034,17.6302484146823,18.106926923189917,6.094256070477911,40.23030801316893,40.23030801316893,0.0,44.70034223685437,0.0,40.23030801316893,44.70034223685437,0,0
+2017/02/12 06:00:00,74.76331965306234,0,312.76418263264594,0,0,0,0.0,0.012715710995584686,4.633261998087618,9.319298099999997,57.911447091112116,0,1.368038985907769,0.9935745289287702,0.5249832380304783,0,0,99.8220675573811,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.414393776232771,1612.3463069426396,1.110318142170513,1604.3739607094649,2.1890285939476826,2756.3312625306035,1.4276490917714,1701.1758636689583,0.0,0.0,1.612557949122106,2067.761679554149,1.398734877843026,1739.2268593937295,2.046293263818825,3014.5186312121564,1.5167353006783628,1873.7417711488004,0.0,0.0,0,0,0,0,0,0,0,0,0.01665179674987724,0.0005268512419062931,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6082365169673501,-0.6082365169673501,-0.6514420182231853,-0.6514420182231853,-0.6914768429951195,-0.6914768429951195,-0.5550056097184158,-0.5550056097184158,0.463587037894299,0.463587037894299,-0.614784312301532,-0.6808455705190917,-0.6835256950427493,-0.6894282460678964,0.0669004153571164,-0.6454580752112077,-0.6969021772453571,-0.6940100271279968,-0.7076874203113254,-0.16395919892407798,12.758915970177256,12.758915970177256,13.912294929042389,13.912294929042389,15.0532514365173,15.0532514365173,11.449283793948737,11.449283793948737,9.486528833492997,9.486528833492997,12.928503359500851,14.74350550379279,14.821131189814139,14.993184789852108,5.092667097680987,13.74772183377226,15.213202929826977,15.127777362119772,15.534951376993561,5.557145467921757,74.76331965306234,74.76331965306234,0.0,83.07035517006926,0.0,74.76331965306234,83.07035517006926,0,0
+2017/02/12 07:00:00,105.50561591140551,0,801.1955854677344,0,0,0,0.11797102635880068,0.010446051499183871,8.33396954093373,13.929299233552332,80.56906512710079,0,1.1914525344772695,0.8283994745615778,0.5250129229218676,0,0,64.4320299519687,506.0762641842289,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,374.06461787342647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0831588501863127,1080.2630845004505,1.2213950240611666,1171.1395529749661,1.6683904860415164,2023.9265605889425,1.272511601265402,1246.3069993468118,0.0,0.0,1.5011812573714753,1445.70080135559,1.1182820354166172,1253.7196768903682,1.3697386130719071,2172.3075546522255,1.2113936317694727,1350.8045255345685,0.0,0.0,0,0,0,0,0,0,0,0,0.04265624642121364,0.001349613902910685,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4378658734238036,-0.4378658734238036,-0.48642200172031047,-0.48642200172031047,-0.5219130855519191,-0.5219130855519191,-0.39334842194640374,-0.39334842194640374,0.7039651141981672,0.7039651141981672,-0.5990595595831051,-0.6610844082833507,-0.6628087239729242,-0.6688528048002805,0.1434651147048225,-0.6264249849174313,-0.6744572818562953,-0.6702122503224471,-0.6839932462280055,-0.05645711201765989,8.999304354422236,8.999304354422236,9.942958021988858,9.942958021988858,10.697048731306197,10.697048731306197,8.223151335313105,8.223151335313105,15.423339197867321,15.423339197867321,12.524364974147218,14.180749736704684,14.2291812208057,14.39996036925524,5.426452007571513,13.234590023100495,14.559731631631095,14.43859024344728,14.834704915341547,5.0659903190232,105.50561591140551,105.50561591140551,0.0,117.2284621237839,0.0,105.50561591140551,117.2284621237839,0,0
+2017/02/12 08:00:00,121.03860676860903,0,805.4189532881894,0,0,0,0.0,0.0,8.133639853923029,0.0,69.33401494192633,0,39.380909295966944,0.18037413835085364,0.5776933359875588,0,0,46.40548210150996,492.83582734259846,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,198.63025836668342,0.0,109.48779157311023,0.0,594.4844226010023,0.0,22.054493920392567,0.0,0.0,0.0,3248.8647382421104,0.0,4468.179952131048,0.0,4384.1171609846515,0.0,4462.262388556823,0.0,2273.4910892309667,0.0,3509.798537568399,0.0,4481.88116075572,0.0,4448.955918993982,0.0,4466.359090120373,0.0,1606.8583230034524,0,0,0,0,0,0,0,0,0.04288110165225137,0.0013567281656836933,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6112554316243602,-0.6112554316243602,-0.6288253830413226,-0.6288253830413226,-0.6611137326991723,-0.6611137326991723,-0.5470123191547218,-0.5470123191547218,0.2803138201484295,0.2803138201484295,-0.5648127241234188,-0.6282197646813049,-0.6234667824851986,-0.6338715609336804,-0.16621858320776672,-0.5896947029676445,-0.6392219584914081,-0.6292846899757307,-0.6458925837725877,-0.23676474726790844,12.836874446963265,12.836874446963265,13.298438743301134,13.298438743301134,14.181572305645858,14.181572305645858,11.263239858148012,11.263239858148012,6.632044557069932,6.632044557069932,11.681328938315119,13.28230618654274,13.156248043282432,13.433478285892434,5.572624948828803,12.288779613753263,13.57786549410929,13.310684444170462,13.759619612428807,6.1632485170717075,121.03860676860903,121.03860676860903,0.0,134.48734085401003,0.0,121.03860676860903,134.48734085401003,0,0
+2017/02/12 09:00:00,150.6734537744573,0,895.4590719295119,0,0,0,0.0,0.0,10.259086586540795,0.0,96.91714705112861,0,39.380909295966944,0.1592335808450445,0.5251020575216634,0,0,83.23014311357036,492.81575620304426,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2790.7643371538184,0.0,4120.586025285928,0.0,3909.0071463766826,0.0,4064.527361160249,0.0,167.21976241725764,0.0,2880.544547689665,0.0,4057.5311595188828,0.0,3843.9149620316425,0.0,3969.2171895715946,0.0,179.88690518386542,0,0,0,0,0,0,0,0,0.04767490426203151,0.0015084007387010715,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6059744496131845,-0.6059744496131845,-0.6528278321235678,-0.6528278321235678,-0.6478689432242554,-0.6478689432242554,-0.5055969804289219,-0.5055969804289219,-0.18878101291740002,-0.18878101291740002,-0.532471691752133,-0.6039028456479837,-0.5939959462855547,-0.6047089200587142,-0.2684423414591293,-0.5542393497921234,-0.6127852444155637,-0.5983072799371757,-0.6129550629587153,-0.31465110192238277,12.700761054351574,12.700761054351574,13.950629580289757,13.950629580289757,13.813839879284785,13.813839879284785,10.343613302054038,10.343613302054038,5.738887264117082,5.738887264117082,10.93190620188959,12.647697534077096,12.396510460486056,12.668322753577783,6.496336178593793,11.43132905134,12.876530335711934,12.505299787482244,12.880938644222994,7.058062480349179,150.6734537744573,150.6734537744573,0.0,167.4149486382859,0.0,150.6734537744573,167.4149486382859,0,0
+2017/02/12 10:00:00,150.48497663868122,0,1143.038825941937,0,0,0,0.0,0.0,9.591225724869576,0.0,97.06762091869685,0,39.380909295966944,0.4883581077703665,0.5248873889232315,0,0,277.5675232027639,492.8226013574596,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.854750449557397,0.0,93.52132301482223,0.0,802.2339991986939,0.0,0.0,0.0,0.0,0.0,3653.4963030021245,0.0,6457.198810343884,0.0,4751.88225795809,0.0,6362.756229861645,0.0,302.96932216309256,0.0,3316.801154812746,0.0,6143.069166484721,0.0,4286.750676214711,0.0,5998.182963885252,0.0,6659.349243523355,0,0,0,0,0,0,0,0,0.060856233749627356,0.001925448815544017,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6268005942268812,-0.6268005942268812,-0.6698004975802206,-0.6698004975802206,-0.6705983027912534,-0.6705983027912534,-0.5563541116758304,-0.5563541116758304,-0.2550064056094247,-0.2550064056094247,-0.5423436920392962,-0.6260194462071564,-0.6063288848356092,-0.6232145200641247,-0.2937286890861395,-0.5630464227234856,-0.6359872136938922,-0.6101756264570841,-0.6309980926318546,-0.34517199447639146,13.244564439127657,13.244564439127657,14.42688146932332,14.42688146932332,14.449574861062928,14.449574861062928,11.480943255551622,11.480943255551622,6.3499048643683125,6.3499048643683125,11.155858583147008,13.223827695548849,12.709858467134325,13.149584956560233,6.792550606206518,11.639228703798338,13.49042341190102,12.808944827660937,13.356446671294847,7.4786422650299045,150.48497663868122,150.48497663868122,0.0,167.2055295985347,0.0,150.48497663868122,167.2055295985347,0,0
+2017/02/12 11:00:00,205.04013108101174,0,1331.8990250501497,0,0,0,0.0,0.0,13.146986369893432,0.0,124.87761316689259,0,39.380909295966944,0.5149350194888493,23.68771202631557,0,0,270.8690348423867,599.6554075446891,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,156.46283913836402,0.0,0.0,0.0,0.0,0.0,3831.329131985453,0.0,6782.2055273413525,0.0,4955.309493855346,0.0,6664.901508764211,0.0,1189.7171527836124,0.0,3255.3273977460403,0.0,6351.36669242341,0.0,4315.533303474694,0.0,6185.20461915278,0.0,7745.5745385329055,0,0,0,0,0,0,0,0,0.07091129064015715,0.0022435838066075554,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5778163901925091,-0.5778163901925091,-0.6403379120293238,-0.6403379120293238,-0.6597292557467119,-0.6597292557467119,-0.5476056644435624,-0.5476056644435624,-0.21080847586263293,-0.21080847586263293,-0.5311643930100209,-0.6313132459938323,-0.6047307395259341,-0.6259362359083229,-0.30841836540577466,-0.5456613955631416,-0.6372687621699918,-0.6042350644290828,-0.6297425820788644,-0.3551617582169093,11.995440186549757,11.995440186549757,13.608137400631989,13.608137400631989,14.142777468157263,14.142777468157263,11.27695481601441,11.27695481601441,5.921724899564694,5.921724899564694,10.90256583905797,13.364877778314082,12.668881445530843,13.221620313957672,6.977030463742537,11.23207067443174,13.525012127132158,12.656194679593114,13.322901534443076,7.624895721064803,205.04013108101174,205.04013108101174,0.0,227.8223678677908,0.0,205.04013108101174,227.8223678677908,0,0
+2017/02/12 12:00:00,222.99601986668617,0,1341.9639488135933,0,0,0,0.0,0.0,13.016794053187484,0.0,143.25325374857618,0,39.380909295966944,0.4322991033702482,23.480788463130953,0,0,227.69842983701423,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4442.683638239434,0.0,6724.406312255366,0.0,5514.692990870938,0.0,6633.019815507013,0.0,0.0,0.0,3652.972526493941,0.0,6155.972380620694,0.0,4666.585601079183,0.0,6027.877623276683,0.0,5219.100030320855,0,0,0,0,0,0,0,0,0.07144715463647903,0.002260538169923162,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5227241690340142,-0.5227241690340142,-0.5807486928904892,-0.5807486928904892,-0.6107463428424381,-0.6107463428424381,-0.4901042852467603,-0.4901042852467603,-0.12710974688039922,-0.12710974688039922,-0.520876078976386,-0.6271464856860259,-0.5988138344564469,-0.6247913268139551,-0.3105442889220457,-0.5301670918444764,-0.6301303004929879,-0.5947415708879428,-0.6267162524831367,-0.35389671226056374,10.714918721338222,10.714918721338222,12.067285359420936,12.067285359420936,12.823700344528106,12.823700344528106,10.018666242556861,10.018666242556861,5.334696199128558,5.334696199128558,10.674242619668377,13.25375510295062,12.518134807687417,13.191278962499865,7.004484865208241,10.880232672242968,13.333253421780782,12.415267362121398,13.242324186292336,7.606140278254273,222.99601986668617,222.99601986668617,0.0,247.77335540742908,0.0,222.99601986668617,247.77335540742908,0,0
+2017/02/12 13:00:00,199.66235467805924,0,1319.641431799667,0,0,0,0.0,0.0,13.016794053187484,0.0,124.80122689546741,0,39.380909295966944,0.47419957558640624,18.557249655396657,0,0,259.4374625764363,581.0842103038848,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5587.509441012461,0.0,6461.750715342265,0.0,6685.492422619553,0.0,6427.013659245198,0.0,0.0,0.0,4664.694519732362,0.0,5738.360103090727,0.0,5623.0866124251925,0.0,5684.767677038979,0.0,678.8678719516723,0,0,0,0,0,0,0,0,0.07025868729622042,0.002222935891707453,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4849861664304722,-0.4849861664304722,-0.5431750823377323,-0.5431750823377323,-0.5952686370513635,-0.5952686370513635,-0.4687681497126551,-0.4687681497126551,-0.1024175128747803,-0.1024175128747803,-0.5074716843673412,-0.610312460012653,-0.590246947639049,-0.6145495373245787,-0.3058337505991316,-0.5079073032850754,-0.6081260057768025,-0.5824521849933549,-0.6132640101439266,-0.34401787667329214,9.913595671208355,9.913595671208355,11.17491194387975,11.17491194387975,12.428540772924535,12.428540772924535,9.58811818645907,9.58811818645907,5.217236442480015,5.217236442480015,10.383637236146683,12.812481285729575,12.30256645305677,12.922390543897691,6.943910087154521,10.39295922450323,12.756069706258572,12.109194428703077,12.888961793763428,7.462019038105822,199.66235467805924,199.66235467805924,0.0,221.84706075339915,0.0,199.66235467805924,221.84706075339915,0,0
+2017/02/12 14:00:00,199.37028224394976,0,1230.1544611809863,0,0,0,0.0,0.0,12.968094553189474,0.0,124.7641830973959,0,39.380909295966944,0.38038175175007294,18.444738343193034,0,0,223.99630221988372,562.5287525543011,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.54874899658252,0.0,0.0,0.0,0.0,0.0,6027.877186872026,0.0,6759.383338859424,0.0,7149.136476285895,0.0,6789.812148076406,0.0,0.0,0.0,4929.062998264119,0.0,5923.935539622635,0.0,5945.517472055911,0.0,5954.089906596875,0.0,2162.337586934114,0,0,0,0,0,0,0,0,0.06549433469688615,0.002072195096492231,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48178421372156055,-0.48178421372156055,-0.5454974349164018,-0.5454974349164018,-0.6238417719390112,-0.6238417719390112,-0.49486117035994126,-0.49486117035994126,-0.11999622345026352,-0.11999622345026352,-0.5061850502214504,-0.5976099135200634,-0.5894686057701928,-0.6118875259805162,-0.3069662994481801,-0.5056790512289085,-0.592696621628277,-0.5814240425013154,-0.61056100594688,-0.3431848935712519,9.84843723744649,9.84843723744649,11.22829307476728,11.22829307476728,13.166157860936096,13.166157860936096,10.11733506886479,10.11733506886479,5.2982596822743915,5.2982596822743915,10.356151924714084,12.487648216519887,12.28313889490741,12.853247317152523,6.958388267682693,10.345362289914505,12.363882360906004,12.083885149262585,12.818907024536216,7.450056418752311,199.37028224394976,199.37028224394976,0.0,221.52253582661083,0.0,199.37028224394976,221.52253582661083,0,0
+2017/02/12 15:00:00,181.43338354932152,0,1285.7678750029802,0,0,0,0.0,0.0,13.01679398839311,0.0,111.01081017850728,0,39.380909295966944,0.5841336776030539,14.008761206396791,0,0,336.7845633453859,540.844257763337,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,639.5913778024642,0.0,0.0,0.0,0.0,0.0,5310.023402136485,0.0,7341.395743372784,0.0,6365.82974586604,0.0,7432.900157323901,0.0,2107.7416328849686,0.0,4328.0135836636255,0.0,6569.783430916011,0.0,5288.02258457638,0.0,6680.012654798562,0.0,9212.077737836802,0,0,0,0,0,0,0,0,0.06845523404199547,0.0021658758878543936,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5315840666745828,-0.5315840666745828,-0.5764430392451718,-0.5764430392451718,-0.6579133690253479,-0.6579133690253479,-0.5505149906548633,-0.5505149906548633,-0.17504760307172837,-0.17504760307172837,-0.5232286682053648,-0.6037758275546323,-0.6028125980196382,-0.6266529175732928,-0.32168023591926515,-0.5279123454652017,-0.6012962296244511,-0.598605132660177,-0.6293381048179012,-0.3610849075908784,10.911976720195156,10.911976720195156,11.961919612548627,11.961919612548627,14.092019867167096,14.092019867167096,11.344423663840558,11.344423663840558,5.635155724323553,5.635155724323553,10.726048333679572,12.64445006358443,12.619845971618929,13.240642111778996,7.151422509043627,10.829899525916531,12.581194464424854,12.512845396595992,13.312109145187947,7.713617876116658,181.43338354932152,181.43338354932152,0.0,201.59264838813502,0.0,181.43338354932152,201.59264838813502,0,0
+2017/02/12 16:00:00,179.53949990250266,0,1325.315629255437,0,0,0,0.0,0.0,13.231210797335399,0.0,108.75639138185811,0,39.380909295966944,0.6514926787368185,14.087520546151145,0,0,360.0117465468687,557.1648288143108,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.36777064916543,0.0,0.0,0.0,1258.3502714812594,0.0,118.99224045784975,0.0,0.0,0.0,5366.805966495243,0.0,7857.437120654336,0.0,6359.279612472725,0.0,8064.94774882384,0.0,6357.704540270679,0.0,4410.762581363368,0.0,7106.054027850563,0.0,5354.366714057036,0.0,7355.094437876707,0.0,13591.243053318984,0,0,0,0,0,0,0,0,0.0705607857716815,0.0022324940768910333,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6124543597855165,-0.6124543597855165,-0.6123080706543428,-0.6123080706543428,-0.69000962448503,-0.69000962448503,-0.6258278900144597,-0.6258278900144597,-0.20564143381482974,-0.20564143381482974,-0.5519309703831397,-0.6197485104836289,-0.6270230594668004,-0.6529684906556664,-0.3379185534238725,-0.5663096218965199,-0.6231526749577095,-0.6287166874982385,-0.6619089295703395,-0.3808223851595905,12.867944518227006,12.867944518227006,12.86415011239339,12.86415011239339,15.010212879580664,15.010212879580664,13.218746591972788,13.218746591972788,5.877014132831249,5.877014132831249,11.377393738795774,13.0583157716856,13.250474955668679,13.954525157065873,7.375107955110053,11.717113799907338,13.147951843769874,13.295542122662354,14.203892297361122,8.020053920259613,179.53949990250266,179.53949990250266,0.0,199.48833322500295,0.0,179.53949990250266,199.48833322500295,0,0
+2017/02/12 17:00:00,194.71332231901368,0,1355.6611145610595,0,0,0,0.0,0.0,12.351776215739633,0.0,124.87761316689259,0,39.380909295966944,0.6337104679805582,14.03733796997964,0,0,350.11200001392655,544.1745318840591,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,898.7085140806778,0.0,0.0,0.0,0.0,0.0,5629.999065278738,0.0,7690.032672820842,0.0,6537.260467509036,0.0,7901.7057205329265,0.0,4631.553826657124,0.0,4760.120651568149,0.0,7013.852287179247,0.0,5662.799057821089,0.0,7275.719359464267,0.0,11690.89829876327,0,0,0,0,0,0,0,0,0.07217640188645612,0.0022836110445851716,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6528150898992773,-0.6528150898992773,-0.6279545423048937,-0.6279545423048937,-0.6953988109348065,-0.6953988109348065,-0.6514390722499613,-0.6514390722499613,-0.1743795967583577,-0.1743795967583577,-0.5751871485164202,-0.6375033257639677,-0.6413758594459542,-0.6686557441266224,-0.3471447701709784,-0.5960605812975072,-0.6463346331065114,-0.6458725818553172,-0.6809914769762584,-0.39158703818107393,13.950276723241132,13.950276723241132,13.275246161809733,13.275246161809733,15.168752841974168,15.168752841974168,13.912213525633518,13.912213525633518,5.630310914876361,5.630310914876361,11.931337625717873,13.53135066031733,13.636341754209027,14.394367352263373,7.507188061250162,12.448507428659056,13.771732274138984,13.75907173718133,14.747723463505537,8.194187162928785,194.71332231901368,194.71332231901368,0.0,216.3481359100152,0.0,194.71332231901368,216.3481359100152,0,0
+2017/02/12 18:00:00,208.08654384646752,0,1382.1380623709354,0,0,0,0.0,0.0,16.665893516531224,0.0,129.38645076019097,0,39.380909295966944,0.649031831285543,18.57228324003846,0,0,358.2295357355514,562.5339439723102,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,508.4368694880947,0.0,275.39478937019834,0.0,1270.29797298949,0.0,280.33506078269676,0.0,0.0,0.0,6770.167874579003,0.0,8013.458183473017,0.0,7614.96442774771,0.0,8111.732497136092,0.0,2385.434217142849,0.0,5807.182633563807,0.0,7280.128885579374,0.0,6594.389855291284,0.0,7391.289145336066,0.0,10111.958209557815,0,0,0,0,0,0,0,0,0.07358605419950566,0.0023282114611613406,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6731943211993825,-0.6731943211993825,-0.6708426053237804,-0.6708426053237804,-0.705318727397962,-0.705318727397962,-0.6726974679031834,-0.6726974679031834,-0.14850228478120753,-0.14850228478120753,-0.5910610996283584,-0.6608581140267987,-0.6493620681291946,-0.6769323199122566,-0.34590788811227036,-0.6147215874879027,-0.6748775932985117,-0.655467690270551,-0.6913411113247309,-0.3910500896626012,14.523608735000138,14.523608735000138,14.456529503355242,14.456529503355242,15.4638577043401,15.4638577043401,14.509416779597274,14.509416779597274,5.456953267411436,5.456953267411436,12.322915972036725,14.17440328859729,13.854915187876244,14.630722274434191,7.4892711989593295,12.926869964823851,14.571768588958221,14.023884153424206,15.049266055683745,8.185383962737362,208.08654384646752,208.08654384646752,0.0,231.20727094051946,0.0,208.08654384646752,231.20727094051946,0,0
+2017/02/12 19:00:00,213.132425307968,0,1376.711369042841,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,115.6330778413024,0,39.380909295966944,0.6426814808837439,23.448588737277053,0,0,351.1717313476224,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,674.2541419823012,0.0,426.1823754866461,0.0,1397.176169440952,0.0,392.9161435218185,0.0,0.0,0.0,7703.2740688611175,0.0,7662.5600945218475,0.0,8600.938723907811,0.0,7717.883629649943,0.0,0.0,0.0,7030.743175926095,0.0,7130.871116978252,0.0,7855.471235673542,0.0,7173.527339226061,0.0,5776.991994040514,0,0,0,0,0,0,0,0,0.07329713302712998,0.0023190701966620446,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6911235718399051,-0.6911235718399051,-0.6953660673606923,-0.6953660673606923,-0.7196388324049607,-0.7196388324049607,-0.6927009357856173,-0.6927009357856173,-0.15156395715208693,-0.15156395715208693,-0.5964925912849309,-0.6647620904934702,-0.6538460535743673,-0.6785964035817191,-0.33582879085539874,-0.6207837958133152,-0.6805220689256043,-0.6618299031502625,-0.6937774050697156,-0.380451838778089,15.042880277633046,15.042880277633046,15.16778579768254,15.16778579768254,15.897348750871174,15.897348750871174,15.089229459397245,15.089229459397245,5.4760086401781365,5.4760086401781365,12.459410824549366,14.284201732802785,13.978848868480554,14.678601624548051,7.345693753721193,13.085522967851034,14.734156791547207,14.201672917548677,15.120922093001724,8.014147919289272,213.132425307968,213.132425307968,0.0,236.8138058977422,0.0,213.132425307968,236.8138058977422,0,0
+2017/02/12 20:00:00,201.60690320567002,0,1358.7990948065974,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,104.13412371906301,0,39.380909295966944,0.672509276813754,23.39219296128843,0,0,368.74980962392294,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1321.6723092785812,0.0,829.6865712683489,0.0,1976.7124116453956,0.0,794.7865518114257,0.0,0.0,0.0,8806.445367182474,0.0,7835.386411070811,0.0,9678.737070286476,0.0,7871.573676015164,0.0,0.0,0.0,8110.1302780577,0.0,7291.866724991714,0.0,8905.936508833573,0.0,7307.118762932391,0.0,4590.9255763016245,0,0,0,0,0,0,0,0,0.07234347027905143,0.002288896972070611,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7123077401154672,-0.7123077401154672,-0.7192213802793884,-0.7192213802793884,-0.7382715021598362,-0.7382715021598362,-0.7143852292301494,-0.7143852292301494,-0.17521351373411742,-0.17521351373411742,-0.6040695643941509,-0.6687546336948784,-0.6582287211478236,-0.6806583319817938,-0.3279343513777327,-0.6296711202843628,-0.6858276641100651,-0.667863317867672,-0.6966214838357767,-0.37197599012025195,15.674321396475818,15.674321396475818,15.884586815043875,15.884586815043875,16.474603003928806,16.474603003928806,15.737287900858107,15.737287900858107,5.636361901280878,5.636361901280878,12.65196109353218,14.397173846362463,14.100824326780966,14.738094038264848,7.236249414643993,13.320994252164965,14.888052169996541,14.371893521346763,15.204896246275155,7.88065430805419,201.60690320567002,201.60690320567002,0.0,224.00767022852224,0.0,201.60690320567002,224.00767022852224,0,0
+2017/02/12 21:00:00,200.95918496460035,0,1290.392518533551,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,0.6369679093501145,18.498038633377416,0,0,354.4044483539741,581.0845450541359,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1445.3753263605552,0.0,890.6245258777333,0.0,2006.8432262564356,0.0,855.0563866470317,0.0,0.0,0.0,8786.348673771117,0.0,7449.103580471879,0.0,9555.78363566839,0.0,7473.855499129138,0.0,0.0,0.0,8190.087341539793,0.0,6966.067157294437,0.0,8854.760505385628,0.0,6963.908493361445,0.0,2199.8025390071575,0,0,0,0,0,0,0,0,0.06870145348906735,0.0021736660995306353,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7312264561479771,-0.7312264561479771,-0.737995630128565,-0.737995630128565,-0.7539808899321527,-0.7539808899321527,-0.7326767566024751,-0.7326767566024751,-0.21496468635579388,-0.21496468635579388,-0.6080688221358637,-0.6669288365683619,-0.6558699698033736,-0.6778328061485457,-0.3214789440316986,-0.6348459822626691,-0.6844770374215764,-0.66596242516135,-0.6939825279171559,-0.36350240395323596,16.254587382808154,16.254587382808154,16.465947466789004,16.465947466789004,16.97287288866373,16.97287288866373,16.299705739457096,16.299705739457096,5.958499979488423,5.958499979488423,12.754597124736293,14.345425837930193,14.03507370258545,14.656616369880112,7.148719857492651,13.459681790685366,14.848760064560068,14.318093562365249,15.126966850706594,7.750258564700076,200.95918496460035,200.95918496460035,0.0,223.28798329400038,0.0,200.95918496460035,223.28798329400038,0,0
+2017/02/12 22:00:00,187.21715154501987,0,1323.0364596003371,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,0.710483158894521,22.944700476439596,0,0,403.967879442751,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2066.726122859066,0.0,1272.1930224810594,0.0,2578.94508099628,0.0,1235.1925811268607,0.0,0.0,0.0,6808.23742639821,0.0,8214.350295095057,0.0,7577.248275688677,0.0,8233.34037681388,0.0,5197.971013237717,0.0,6271.779527602657,0.0,7755.5167827255045,0.0,6907.113437476997,0.0,7742.983475908443,0.0,11937.659253942958,0,0,0,0,0,0,0,0,0.07043944109104783,0.002228654815780004,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7569903936937906,-0.7569903936937906,-0.7635032494180689,-0.7635032494180689,-0.7786455934019598,-0.7786455934019598,-0.7580350359408825,-0.7580350359408825,-0.3038659467369386,-0.3038659467369386,-0.6238064229654884,-0.6834053045397395,-0.6682870252423004,-0.6927615898036951,-0.3441494252688851,-0.6527041876063272,-0.7037588206441965,-0.6809177026962214,-0.7114126615799615,-0.3895839235116981,17.069534782688038,17.069534782688038,17.28004641957766,17.28004641957766,17.776482801931024,17.776482801931024,17.103178109012717,17.103178109012717,6.918883294321759,6.918883294321759,13.16522343583236,14.817637599997951,14.383906812747497,15.091013860367681,7.463910927227033,13.947205919575083,15.417171032963395,14.745590633061312,15.647249847884368,8.161409119167118,187.21715154501987,187.21715154501987,0.0,208.0190572722443,0.0,187.21715154501987,208.0190572722443,0,0
+2017/02/12 23:00:00,131.50747177777856,0,1223.735310510386,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,0.8073969086803449,18.46821479219137,0,0,482.9420423619228,581.0866818420146,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3558.7204060503914,0.0,2184.65684299638,0.0,4025.8546618792084,0.0,2155.009676438537,0.0,0.0,0.0,6234.261061362287,0.0,8738.16658187963,0.0,7008.832716324366,0.0,8756.506256319366,0.0,12448.906658775808,0.0,5886.059973070199,0.0,8392.394492898824,0.0,6506.299434136178,0.0,8374.420096401032,0.0,18818.28167392943,0,0,0,0,0,0,0,0,0.06515257436047568,0.0020613820376748104,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.820281553119841,-0.820281553119841,-0.824054039408955,-0.824054039408955,-0.8436779002333886,-0.8436779002333886,-0.8194065143394499,-0.8194065143394499,-0.3757724523588385,-0.3757724523588385,-0.6422438006869504,-0.7021068937773609,-0.6840268542742916,-0.7104272790096969,-0.37053973602098855,-0.6731192134531394,-0.725248027140171,-0.6992119147894061,-0.7317167092204935,-0.4190995904542908,19.19168847977852,19.19168847977852,19.32353090885435,19.32353090885435,20.01897602145405,20.01897602145405,19.161192729287478,19.161192729287478,7.940069177021087,7.940069177021087,13.659962365567026,15.367844750669505,14.835680972472545,15.617487002962633,7.8583370988119725,14.521462696289177,16.06955512340903,15.281685192816553,16.269828876637874,8.661760905860703,131.50747177777856,131.50747177777856,0.0,146.11941308642062,0.0,131.50747177777856,146.11941308642062,0,0
+2017/02/13 00:00:00,89.37363486327209,0,1113.047210068142,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.8915725121713316,9.5391060898082,0,0,556.8445976687863,502.96708363053966,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5030.035671569965,0.0,3102.226885963324,0.0,5481.650339470429,0.0,3077.076094243868,0.0,0.0,0.0,6861.944689593624,0.0,9254.34700572212,0.0,7698.274042503506,0.0,9266.804940403446,0.0,15514.786899035284,0.0,6493.871262589797,0.0,8892.805232254603,0.0,7188.214958693071,0.0,8867.20253414328,0.0,22117.186553044725,0,0,0,0,0,0,0,0,0.05925945790551669,0.0018749279408809346,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8912643234134978,-0.8912643234134978,-0.8928314500182958,-0.8928314500182958,-0.9181798338681572,-0.9181798338681572,-0.8887152628228103,-0.8887152628228103,-0.5318693346282634,-0.5318693346282634,-0.65930183886458,-0.7197541193731377,-0.7016101791154197,-0.7270091341710423,-0.3930198730381822,-0.6909451436701647,-0.7451642114260182,-0.7191154190221607,-0.7503854655340899,-0.4429968874944622,21.771791926620153,21.771791926620153,21.83109968479627,21.83109968479627,22.804261530798115,22.804261530798115,21.675537140842636,21.675537140842636,10.91837800382963,10.91837800382963,14.130817469909331,15.900874512957827,15.353035957157985,16.123901654384014,8.217738619608227,15.037644121944624,16.691923188189904,15.881348665778845,16.857900086162218,9.094227016730201,89.37363486327209,89.37363486327209,0.0,99.30403873696898,0.0,89.37363486327209,99.30403873696898,0,0
+2017/02/13 01:00:00,40.09170580557405,0,711.3786651637208,0,0,0,0.0,0.002207556776736601,4.166984770466865,9.319298099999997,16.311038125956312,0,0.4419345677928423,0.3009983174185517,9.549244367162744,0,0,148.42224918932496,509.7208872055797,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1353674249114645,1183.7513876985945,0.0,863.1255029642113,1.0721893518251364,1409.8037130700002,0.0,829.5885827743962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.037874327056236314,0.0011983173074755628,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9170633537348439,-0.9170633537348439,-0.9213801380446078,-0.9213801380446078,-0.9411231195743245,-0.9411231195743245,-0.9175254656326234,-0.9175254656326234,-0.26286030723139786,-0.26286030723139786,-1.0929547679908735,-1.1445690636584356,-1.1246624190370653,-1.1498739613371616,-0.19587221545300304,-1.0398321790923848,-1.1041274932483152,-1.082348352959692,-1.1100488031615179,-0.3687524909776568,22.760851396463295,22.760851396463295,22.928971049902273,22.928971049902273,23.70737784995005,23.70737784995005,22.778812797598647,22.778812797598647,6.434577782958712,6.434577782958712,30.192686245483344,32.58447479396938,31.65157314687663,32.835231586702236,5.795532862378238,27.82654909905338,30.70288345336681,29.71231584209451,30.974994334254262,7.830688836826141,40.09170580557405,40.09170580557405,0.0,44.54633978397117,0.0,40.09170580557405,44.54633978397117,0,0
+2017/02/13 02:00:00,23.72217522421461,0,49.71009390002808,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.52507980053682,0,0,0.0,14.219741387483937,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0026466022198354472,8.373664940166516e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.1709043553513905,-1.1709043553513905,-1.2053744956486363,-1.2053744956486363,-1.2236628215119254,-1.2236628215119254,-1.192613992394291,-1.192613992394291,-0.10225217770531693,-0.10225217770531693,-1.2262604213228374,-1.3153224794386071,-1.3098051554330459,-1.330556240423678,-0.13517229041231968,-1.2479850765232645,-1.3265598633448776,-1.3161419767969678,-1.3392353491966449,-0.4157649349186952,33.837994794223704,33.837994794223704,35.51051672132395,35.51051672132395,36.411799170976224,36.411799170976224,34.88728661963701,34.88728661963701,5.216535302970371,5.216535302970371,36.54056649388099,41.05920275442268,40.77386930117576,41.8503491958573,5.37853743838204,37.624593217782845,41.64234016650117,41.10163924574163,42.30319082672037,8.603362279459134,23.72217522421461,23.72217522421461,0.0,26.357972471349566,0.0,23.72217522421461,26.357972471349566,0,0
+2017/02/13 03:00:00,28.34448019593635,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251171094634517,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.2399088360423305,-1.2399088360423305,-1.2795504141669747,-1.2795504141669747,-1.292690839282605,-1.292690839282605,-1.2662221392993769,-1.2662221392993769,-0.024371180557062947,-0.024371180557062947,-1.3245964684180511,-1.4216088804663187,-1.417668833758829,-1.437750688493984,-0.11533955010668986,-1.3705327463566537,-1.4535171904073803,-1.4453575861049255,-1.4667308682414995,-0.433909775798296,37.22013906848511,37.22013906848511,39.221247809707315,39.221247809707315,39.89303151798873,39.89303151798873,38.54405617970596,38.54405617970596,5.012295481908154,5.012295481908154,41.54026570759752,46.66676683900257,46.455708336172826,47.53345425035848,5.2755464807883214,43.94796354018338,48.38285068729973,47.94293297989466,49.09664117404989,8.926889657387875,28.34448019593635,28.34448019593635,0.0,31.49386688437372,0.0,28.34448019593635,31.49386688437372,0,0
+2017/02/13 04:00:00,23.722138777334454,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525043353656663,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.3968515736096527,-1.3968515736096527,-1.4392353687202304,-1.4392353687202304,-1.4408764009022121,-1.4408764009022121,-1.423952060615705,-1.423952060615705,-0.003580784543384091,-0.003580784543384091,-1.4832994344371664,-1.5797735723673612,-1.571221440840348,-1.595236046903548,-0.09835330074685379,-1.5339606175920857,-1.6115401378508862,-1.598417631644772,-1.623621828680444,-0.49077081688427254,45.34407645873628,45.34407645873628,47.61332404758543,47.61332404758543,47.70163374150761,47.70163374150761,46.7923794173934,46.7923794173934,5.000265422335389,5.000265422335389,49.99380331053454,55.24390695927438,54.77793459685737,56.08600833210367,5.200330179191411,52.747645833917296,56.97306130174043,56.25919208646023,57.629554845757134,10.032432788682414,23.722138777334454,23.722138777334454,0.0,26.357931974816058,0.0,23.722138777334454,26.357931974816058,0,0
+2017/02/13 05:00:00,46.0785594829324,0,504.99443935555496,0,0,0,0.0,0.04231731725874788,4.633261998087618,9.319298099999997,25.555573451546493,0,3.6363481318727704,2.3141535900414536,0.5776068941253144,0,0,416.2685580741946,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0572742750401045,3920.9837051976206,1.4914629347413209,2709.6548254322893,2.8790152693203312,4253.289159885592,1.4858368025001838,2633.0550800974343,0.0,0.0,6.260058563989819,8523.979113047482,3.9621490610558268,5872.620202162608,5.92483398364834,9281.542709147105,4.90703026704211,5923.148364601113,0.0,0.0,3.295372525871065,7729.608107636188,2.593300892232881,5170.388561317656,3.0838192146520664,8234.947063443722,3.3041515607066483,5192.846904362263,0.07301190794719657,54.534937726365825,0,0,0,0,0,0,0,0,0.026886278004037607,0.0008506630947660044,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.085802978302847,-1.085802978302847,-1.1056918003822203,-1.1056918003822203,-1.1075297769329826,-1.1075297769329826,-1.0991531074476024,-1.0991531074476024,0.1476702464614453,0.1476702464614453,-0.9025775299706177,-0.9490291832246283,-0.9433672721885653,-0.9568378419670236,-0.061881870812534816,-0.9580638330445073,-1.0017881254205205,-0.9894433744978854,-1.006663403720359,-0.4917694665784603,29.86835016204327,29.86835016204327,30.77465545739527,30.77465545739527,30.859089288419128,30.859089288419128,30.47520489090948,30.47520489090948,5.451842243953763,5.451842243953763,22.20218442288514,24.02343527587702,23.796840049503018,24.338018934504902,5.0792833977766065,24.38762744848961,26.19500129590446,25.67727365351743,26.401058984465422,10.053094803803177,46.0785594829324,46.0785594829324,0.0,51.19839942548044,0.0,46.0785594829324,51.19839942548044,0,0
+2017/02/13 06:00:00,78.48952722390901,0,475.3620771353059,0,0,0,0.0,0.030866610115923267,5.555297838843742,9.319298099999997,57.911447091112116,0,3.1037087993394143,2.0438993070168783,0.5250094774808878,0,0,262.41996206004114,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.639802688312102,2181.9383245126533,1.0377211501176475,1553.13761271859,1.7504487307165846,2402.8631876878912,1.0447906195647647,1503.24928157999,0.0,0.0,3.169210486538077,6635.398109011729,2.3682463854022444,4636.244498623801,2.9780003430403212,7352.325997234076,2.9314212537001367,4678.088555947901,0.0,0.0,4.394080853835931,6165.617989997227,2.929914224363415,4184.55430656122,4.194385154906968,6689.5901220191345,2.4285882254250737,4202.052184349821,0.0,0.0,0,0,0,0,0,0,0,0,0.025308629090543305,0.0008007473828550531,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.976652994467359,-0.976652994467359,-0.9955279385113358,-0.9955279385113358,-0.9940132583083312,-0.9940132583083312,-0.9900782959121557,-0.9900782959121557,0.47148133686813015,0.47148133686813015,-0.8102543093367613,-0.843925297806977,-0.8405924252257441,-0.8480423210335619,0.0579906532147844,-0.829273404867733,-0.8608882537088454,-0.8499624073676701,-0.863035891190585,-0.42479833372358244,25.147008205235778,25.147008205235778,25.93172969798721,25.93172969798721,25.86825383142876,25.86825383142876,25.70375994434042,25.70375994434042,9.641778850150075,9.641778850150075,18.844163287505438,20.027846217865616,19.90856381119373,20.175832394748994,5.0696245375040405,19.506924731373672,20.642108266293818,20.245091103242103,20.720729833152816,8.762664631343142,78.48952722390901,78.48952722390901,0.0,87.21058580434334,0.0,78.48952722390901,87.21058580434334,0,0
+2017/02/13 07:00:00,104.3081181280779,0,952.0146611584537,0,0,0,0.21740043262729558,0.03140492473344754,11.110595677687485,13.929299233552332,73.80580873715317,0,2.8529925986773064,1.835671387779832,0.5249451358670216,0,0,215.30589072382438,506.0214791030924,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,691.4056936261728,0.0,0.0,0.0,0.0,0.0,1.345578276224008,1717.4784476041982,1.2353486640102649,1207.4510397263841,1.0136537707840034,1818.7787563261222,1.233013711461884,1172.248758094322,0.0,0.0,5.212321250699157,5646.103904220159,3.9840305832515996,3908.909167327769,5.403839523611471,6133.334412323633,1.8057038378019568,3936.2958203730377,0.0,0.0,3.114336301263999,4964.072382975675,2.688133382527212,3331.9339673081076,2.8894156217193085,5251.2743560765475,1.479549810092673,3332.5825599793316,0.0,0.0,0,0,0,0,0,0,0,0,0.05068596572368236,0.0016036686244647277,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9230983836227679,-0.9230983836227679,-0.9423553360253942,-0.9423553360253942,-0.93595798605945,-0.93595798605945,-0.936798734475947,-0.936798734475947,0.7240717895510927,0.7240717895510927,-0.7883155797119545,-0.8190120819417089,-0.8138507770176235,-0.822476970897912,0.14097213062151345,-0.8053235595455037,-0.8317410170336004,-0.8189071116369574,-0.833255237389927,-0.33310605756732126,22.99609736990061,22.99609736990061,23.756474936620833,23.756474936620833,23.502231225115978,23.502231225115978,23.535551488205428,23.535551488205428,16.033331571253413,16.033331571253413,18.09861793986576,19.1474569972287,18.968322899966722,19.268342116482714,5.411747115924527,18.67482766677614,19.59402736540285,19.143802609030274,19.64760311395804,7.307648411978377,104.3081181280779,104.3081181280779,0.0,115.89790903119766,0.0,104.3081181280779,115.89790903119766,0,0
+2017/02/13 08:00:00,151.21727739859787,0,1268.4102068717873,0,0,0,0.0,0.0,11.110595677687485,0.0,69.33401494192633,0,39.380909295966944,0.891677963992788,27.06810431657002,0,0,402.5771554830174,599.655407544689,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5332.592872454114,0.0,3293.728831042198,0.0,5614.740642669137,0.0,3271.987807410427,0.0,0.0,0.0,10112.143506983124,0.0,10161.872736516209,0.0,10768.360516785746,0.0,10124.959939543873,0.0,6960.429611605388,0.0,9301.930584286969,0.0,9498.969068343247,0.0,9784.635828173205,0.0,9414.336245303917,0.0,19545.745396986033,0,0,0,0,0,0,0,0,0.06753109893375026,0.002136636897204824,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9277173549927178,-0.9277173549927178,-0.9432604492202239,-0.9432604492202239,-0.941097531103908,-0.941097531103908,-0.938207444591961,-0.938207444591961,0.08832275238283026,0.08832275238283026,-0.7623885590517291,-0.7953498277146831,-0.783000906826116,-0.7982090172224617,-0.2238109447005307,-0.7794203486931044,-0.8102195986927866,-0.7903146918809105,-0.8108941436436807,-0.4072157192518504,23.17713231908445,23.17713231908445,23.79257707441768,23.79257707441768,23.70635892730634,23.70635892730634,23.591444017988962,23.591444017988962,5.1615390527936995,5.1615390527936995,17.24388828651894,18.335443802844466,17.921078866626615,18.432305218327258,6.039182778456848,17.802145609725912,18.8429676413961,18.165709647222627,18.866212182999092,8.455819707651443,151.21727739859787,151.21727739859787,0.0,168.01919710955318,0.0,151.21727739859787,168.01919710955318,0,0
+2017/02/13 09:00:00,167.32302386925457,0,1416.7838987292641,0,0,0,0.0,0.0,13.391422123020266,0.0,83.2008179303116,0,39.380909295966944,0.8201568421903019,27.097742475311204,0,0,497.71531857167787,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4381.454388941869,0.0,2705.4915260572993,0.0,4665.04352987518,0.0,2678.9011056680542,0.0,0.0,0.0,9330.668332436402,0.0,9566.468738820324,0.0,9916.555477874888,0.0,9529.40777753277,0.0,2316.4617873415955,0.0,8576.431062587819,0.0,8944.980316107358,0.0,8991.069604167076,0.0,8860.023120739592,0.0,14362.244934456212,0,0,0,0,0,0,0,0,0.07543062418962504,0.002386572369877371,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.901689119767915,-0.901689119767915,-0.9153390410466093,-0.9153390410466093,-0.9114813041108384,-0.9114813041108384,-0.9100877586500585,-0.9100877586500585,-0.2661351173174962,-0.2661351173174962,-0.7449321941239431,-0.7789190516111896,-0.7625854000821491,-0.781292442585964,-0.31342520849752387,-0.7600107676740414,-0.7933511478524793,-0.7697118815714376,-0.7938428566881496,-0.4284088175691857,22.168198001027264,22.168198001027264,22.693906564206983,22.693906564206983,22.544567484426352,22.544567484426352,22.490768810232993,22.490768810232993,6.470650472256693,6.470650472256693,16.684574773297058,17.785537848914004,17.25026952275344,17.864261813929744,7.041994665830586,17.166935312219465,18.26793975339669,17.482411606648327,18.284531180272424,8.827313912817857,167.32302386925457,167.32302386925457,0.0,185.9144709658384,0.0,167.32302386925457,185.9144709658384,0,0
+2017/02/13 10:00:00,182.85607474080433,0,1433.9038112062508,0,0,0,0.0,0.0,11.66787656657516,0.0,106.27511244621549,0,39.380909295966944,0.7624365608020034,21.337764668790456,0,0,461.59970227984826,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3156.708660916452,0.0,1971.217739950603,0.0,3546.241909402968,0.0,1940.002649790221,0.0,0.0,0.0,8244.57929857501,0.0,8917.31384479913,0.0,8903.009896893058,0.0,8843.787955175985,0.0,2600.6930607772356,0.0,7644.212414794201,0.0,8435.152481102235,0.0,8165.032480886347,0.0,8292.245001084757,0.0,12761.76416875811,0,0,0,0,0,0,0,0,0.07634210101073312,0.002415410861145476,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8618039417110717,-0.8618039417110717,-0.8805676295545881,-0.8805676295545881,-0.876373314862856,-0.876373314862856,-0.8748093318383021,-0.8748093318383021,-0.28476139884691665,-0.28476139884691665,-0.7185723338278809,-0.7601465807022175,-0.7403075771995511,-0.7594530110883002,-0.32557516164939704,-0.7302982000983119,-0.7717464043949476,-0.7439951091430608,-0.7676193406145473,-0.42458762900890584,20.67560679463746,20.67560679463746,21.36965789923285,21.36965789923285,21.21325591759276,21.21325591759276,21.155121549832145,21.155121549832145,6.684417179467005,6.684417179467005,15.864759708782813,17.17132415194631,16.538586269473328,17.148919504880325,7.204056021972818,16.22575709728855,17.549082954208416,16.654919054687355,17.414023178376723,8.758909028382945,182.85607474080433,182.85607474080433,0.0,203.17341637867148,0.0,182.85607474080433,203.17341637867148,0,0
+2017/02/13 11:00:00,212.69296703398115,0,1475.3032366466543,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.7335060140791287,18.45299073453102,0,0,436.18674459485607,577.7419093887245,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1378.8711042352083,0.0,1369.2245042981092,0.0,2566.765874821272,0.0,1220.7061016234566,0.0,0.0,0.0,6058.469218967127,0.0,8967.753169774738,0.0,7392.581446741834,0.0,8790.528522076522,0.0,6579.090309592632,0.0,5135.243350842378,0.0,8376.80611790676,0.0,6514.179699798496,0.0,8119.667323164774,0.0,15920.700128141329,0,0,0,0,0,0,0,0,0.0785462370860106,0.002485148190157672,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.759003269332884,-0.759003269332884,-0.8297414089612504,-0.8297414089612504,-0.8196277154062126,-0.8196277154062126,-0.8126093950619262,-0.8126093950619262,-0.22763667623638992,-0.22763667623638992,-0.6659676483760438,-0.7454497464460031,-0.7251899231982928,-0.7364534701131272,-0.3398127996293709,-0.6655068663564833,-0.7523692544207466,-0.7255898571129976,-0.7392297522349501,-0.4259081055762152,17.13440231406092,17.13440231406092,19.523424896085587,19.523424896085587,19.168898709347218,19.168898709347218,18.925405473548068,18.925405473548068,6.075091545151636,6.075091545151636,14.3182411778443,16.700969775585605,16.067764349944127,16.41762209030921,7.401930439116811,14.30522336789781,16.921268319157633,16.080093322513605,16.5046936632951,8.78247665187476,212.69296703398115,212.69296703398115,0.0,236.3255189266457,0.0,212.69296703398115,236.3255189266457,0,0
+2017/02/13 12:00:00,228.8371897562262,0,1433.1462866135619,0,0,0,0.0,0.0,16.73568395689411,0.0,147.76209134187457,0,39.380909295966944,0.5608010003898565,20.965728958646395,0,0,333.7044810607286,584.8316941209434,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,792.9182127277134,0.0,1580.5374474522655,0.0,679.7486760977388,0.0,0.0,0.0,7066.9992121442865,0.0,8205.080263369799,0.0,8865.42302785915,0.0,8093.004611505648,0.0,0.0,0.0,5796.339235692431,0.0,7453.3227002683325,0.0,7753.97173686647,0.0,7283.284105447607,0.0,6859.620115891581,0,0,0,0,0,0,0,0,0.07630176984031484,0.0024141348110265862,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6361528170360876,-0.6361528170360876,-0.7838123560241372,-0.7838123560241372,-0.7674553567533813,-0.7674553567533813,-0.7740745914094447,-0.7740745914094447,-0.11753181025062494,-0.11753181025062494,-0.6070789552594422,-0.7185295074096844,-0.6990277127834823,-0.7161596945534638,-0.32302484221685046,-0.5948195444197911,-0.719863775135373,-0.6944125382089713,-0.7154711561493641,-0.39725428756729414,13.49488900211638,13.49488900211638,17.948108063691407,17.948108063691407,17.408671751500776,17.408671751500776,17.625594187884886,17.625594187884886,5.286127114023458,5.286127114023458,12.729128764978967,15.863452083024313,15.276215266682684,15.791217339903497,7.169519960448227,12.417230254610644,15.904228589796077,15.139644707431003,15.770275216645459,8.28785252625687,228.8371897562262,228.8371897562262,0.0,254.26354417358465,0.0,228.8371897562262,254.26354417358465,0,0
+2017/02/13 13:00:00,208.02018825352113,0,1371.905390165353,0,0,0,0.0,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,0.532123159159052,18.439615809359054,0,0,330.25560056515144,562.5300306808556,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,340.9192768813163,0.0,1087.1151655862393,0.0,401.8694861970875,0.0,0.0,0.0,8539.961986020284,0.0,7094.575580944477,0.0,10119.822248908991,0.0,7104.8828350757785,0.0,0.0,0.0,7145.740781530653,0.0,6207.4551393345655,0.0,8837.6399844158,0.0,6191.56896271022,0.0,0.0,0,0,0,0,0,0,0,0,0.07304125915187193,0.002310974525607684,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5879517938421499,-0.5879517938421499,-0.7438646442070472,-0.7438646442070472,-0.7391676078742473,-0.7391676078742473,-0.7482786408151757,-0.7482786408151757,-0.06670360601180342,-0.06670360601180342,-0.578255009488518,-0.6777503683875451,-0.6713434582881566,-0.686529154288569,-0.3030086832129992,-0.5612918320213321,-0.6724231005694227,-0.6633681650408259,-0.6819898833648645,-0.36397662583906537,12.245354526785377,12.245354526785377,16.650793246235096,16.650793246235096,16.502741031005286,16.502741031005286,16.790786276638258,16.790786276638258,5.0921225705439355,5.0921225705439355,12.00616319189487,14.654244356889322,14.470795531640391,14.908490873372557,6.9080317217518115,11.597541559824137,14.501584420228511,14.244922118966144,14.776610760142248,7.757475296711519,208.02018825352113,208.02018825352113,0.0,231.13354250391237,0.0,208.02018825352113,231.13354250391237,0,0
+2017/02/13 14:00:00,205.33635680534442,0,1201.6949150716325,0,0,0,0.0,0.0,16.67307048032785,0.0,129.2730206906943,0,39.380909295966944,0.25967626622545187,16.317704869675566,0,0,196.56187961605514,561.5036290487759,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1116.0737883738873,0.0,423.6652809925833,0.0,0.0,0.0,7318.8089761021865,0.0,6798.62704336827,0.0,9338.949502847756,0.0,7189.958494087719,0.0,0.0,0.0,5932.966115837733,0.0,5874.016114317741,0.0,8087.631579381549,0.0,6298.392173555871,0.0,0.0,0,0,0,0,0,0,0,0,0.0639791273818486,0.0020242549932310673,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5326235624476937,-0.5326235624476937,-0.6597098795290274,-0.6597098795290274,-0.7288689993613392,-0.7288689993613392,-0.7381685751973263,-0.7381685751973263,-0.08356739041888997,-0.08356739041888997,-0.5248496682990456,-0.6232599945850088,-0.6572809714543902,-0.6714107176514276,-0.3015268881778636,-0.4964046735551666,-0.6076104484483577,-0.6477303517556106,-0.664875389698033,-0.35455248635242714,10.93531951068249,10.93531951068249,14.142235110692923,14.142235110692923,16.18144061526901,16.18144061526901,16.47137326893926,16.47137326893926,5.144607299156661,5.144607299156661,10.76188331981102,13.150785885371093,14.074376656715586,14.472712138515448,6.8893478789389775,10.149560904337918,12.742798306720317,13.81003218185154,14.28739810465619,7.615854217176462,205.33635680534442,205.33635680534442,0.0,228.1515075614938,0.0,205.33635680534442,228.1515075614938,0,0
+2017/02/13 15:00:00,189.6866617263195,0,1367.8679677870305,0,0,0,0.0,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,0.6116277071298704,14.006817875375416,0,0,418.85039037830074,540.8785235144721,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1572.6861086015558,0.0,696.4800033021564,0.0,0.0,0.0,5590.560790147752,0.0,7194.038660471452,0.0,7726.654341076368,0.0,7913.059209435329,0.0,421.8353130054122,0.0,4306.01931774842,0.0,6335.647868423959,0.0,6617.791337817485,0.0,7113.0426598503855,0.0,8580.532103857435,0,0,0,0,0,0,0,0,0.07282630379390435,0.0023041734879178347,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5408551568871288,-0.5408551568871288,-0.5610165209944079,-0.5610165209944079,-0.7401648230180383,-0.7401648230180383,-0.7458699295708038,-0.7458699295708038,-0.14699038282589766,-0.14699038282589766,-0.5271461313757876,-0.5889013730843471,-0.6651958260899943,-0.6821137774831636,-0.3184745632556128,-0.5031796358898615,-0.5649892231049516,-0.6587453466110841,-0.6787357912826544,-0.3732720559169457,11.12181994180304,11.12181994180304,11.591012590963047,11.591012590963047,16.53409444696075,16.53409444696075,16.714288766356802,16.714288766356802,5.447687394261138,5.447687394261138,10.812845287663833,12.268997223079268,14.296441194388535,14.78019844594688,7.1085855343791025,10.292228535579397,11.685543271685418,14.11525754066406,14.682617553759627,7.900868708202779,189.6866617263195,189.6866617263195,0.0,210.76295747368832,0.0,189.6866617263195,210.76295747368832,0,0
+2017/02/13 16:00:00,183.1976774931707,0,1327.7797008495747,0,0,0,0.0,0.0,16.903073467207488,0.0,108.75639138185811,0,39.380909295966944,0.6597727525867529,14.06555539309711,0,0,378.7886816131124,540.851965342205,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1666.894839229393,0.0,765.0655741203076,0.0,0.0,0.0,4978.950481265539,0.0,7732.702571594058,0.0,6535.9968548884335,0.0,8230.608732803881,0.0,6156.321928880928,0.0,3984.038022835952,0.0,7011.406666636949,0.0,5660.365607625775,0.0,7581.25902739323,0.0,13802.576298351698,0,0,0,0,0,0,0,0,0.07069197476850764,0.002236644805304338,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6242220912786917,-0.6242220912786917,-0.6417396756170827,-0.6417396756170827,-0.7529114705902428,-0.7529114705902428,-0.7569556138350392,-0.7569556138350392,-0.19352721058239644,-0.19352721058239644,-0.5791883175314477,-0.6387281147172169,-0.6820353807588556,-0.7033399502155114,-0.3389500157466815,-0.5725646196876858,-0.6309850493884105,-0.6818980833061148,-0.7067032145779101,-0.39671124751736625,13.176214763407842,13.176214763407842,13.646238862680349,13.646238862680349,16.938617670096647,16.938617670096647,17.068415479432673,17.068415479432673,5.776568030199584,5.776568030199584,12.02900772104907,13.564486483988958,14.777928181825928,15.404652482026762,7.389694539096936,11.86769750304451,13.356097826160124,14.773952871939983,15.505382152563584,8.278817949670156,183.1976774931707,183.1976774931707,0.0,203.55297499241186,0.0,183.1976774931707,203.55297499241186,0,0
+2017/02/13 17:00:00,209.04006390025907,0,1373.4816265018683,0,0,0,0.0,0.0,19.89659661093832,0.0,131.64086955684016,0,39.380909295966944,0.6466570980084381,14.043056136050922,0,0,363.036663344155,549.0703804946394,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.69559854822894,0.0,154.82751469279088,0.0,1466.4692541593017,0.0,657.3545290956425,0.0,0.0,0.0,5788.758680780549,0.0,7945.41162474257,0.0,7190.679585318709,0.0,8273.972952162338,0.0,3626.620033102244,0.0,4698.944781042374,0.0,7189.429119977885,0.0,6226.1080971717665,0.0,7560.19786900304,0.0,11891.576218846734,0,0,0,0,0,0,0,0,0.07312517914195676,0.0023136296955969097,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6695319248680877,-0.6695319248680877,-0.6889932048854022,-0.6889932048854022,-0.7446031542114572,-0.7446031542114572,-0.749709478534373,-0.749709478534373,-0.15415617783323243,-0.15415617783323243,-0.6069253771233015,-0.6725428672763728,-0.6914176045777206,-0.711978589851329,-0.3432300239525081,-0.6119791987135548,-0.6778306233998465,-0.6947484070294437,-0.7188493401149416,-0.4008018038982087,14.41924817819013,14.41924817819013,14.9804523514849,14.9804523514849,16.67415743144265,16.67415743144265,16.836345511856464,16.836345511856464,5.492447421743918,5.492447421743918,12.725181152282659,14.505002997520236,15.051511968188947,15.664362269445718,7.450703788707628,12.855623316591661,14.656553561033462,15.149552577041177,15.873219492929593,8.347183036763013,209.04006390025907,209.04006390025907,0.0,232.26673766695453,0.0,209.04006390025907,232.26673766695453,0,0
+2017/02/13 18:00:00,220.8169660198506,0,1346.6252823744192,0,0,0,0.0,0.0,24.883914210492264,0.0,133.89528835348938,0,39.380909295966944,0.5706271608388865,18.654251796608825,0,0,311.9556259699941,573.2950737413513,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,847.4598199709791,0.0,285.2987025175605,0.0,0.0,0.0,6529.702961690657,0.0,7089.681046294452,0.0,7784.028737631988,0.0,7331.296073410556,0.0,0.0,0.0,5732.47630175248,0.0,6555.629046483349,0.0,7042.70652704443,0.0,6772.938840238919,0.0,3978.2798744660404,0,0,0,0,0,0,0,0,0.07169532748793823,0.002268390185952583,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6675360293509417,-0.6675360293509417,-0.6998844697731677,-0.6998844697731677,-0.7337087118906698,-0.7337087118906698,-0.7418889667530156,-0.7418889667530156,-0.10855708057033464,-0.10855708057033464,-0.603723904777537,-0.6673267639309446,-0.6778570549507823,-0.7007385813525069,-0.32982139098786084,-0.6098207930193752,-0.6751838367428772,-0.6803086920247783,-0.7076969501708936,-0.38330649009037204,14.362619296437273,14.362619296437273,15.301669325255759,15.301669325255759,16.331864555294445,16.331864555294445,16.588403876403504,16.588403876403504,5.244076227904841,5.244076227904841,12.643122756015913,14.356691869097745,14.657314145839152,15.327076331223992,7.262169810098868,12.799777956692878,14.580543660544407,14.727992995947545,15.535237893875987,8.0597985113329,220.8169660198506,220.8169660198506,0.0,245.35218446650066,0.0,220.8169660198506,245.35218446650066,0,0
+2017/02/13 19:00:00,220.2123744240735,0,1301.9683091442657,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.49080684890648396,27.04509687864634,0,0,276.4286714490468,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,739.113425279806,0.0,227.79632558999714,0.0,0.0,0.0,7979.940315790285,0.0,6282.746815785937,0.0,9107.738138762645,0.0,6475.28462885967,0.0,0.0,0.0,7172.382100748242,0.0,5733.717799556898,0.0,8336.262912567565,0.0,5902.559472662094,0.0,0.0,0,0,0,0,0,0,0,0,0.06931775715544707,0.002193165517935796,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6693557461076944,-0.6693557461076944,-0.7082238417591673,-0.7082238417591673,-0.7311911913302782,-0.7311911913302782,-0.740833772225561,-0.740833772225561,-0.091103922013844,-0.091103922013844,-0.5929724736050235,-0.6523630076900967,-0.6604658533508255,-0.6823559980266146,-0.30724649273159227,-0.6001880466075028,-0.6595409895120781,-0.662714439059169,-0.6888082997991224,-0.35415493601095843,14.414242575853848,14.414242575853848,15.5510850757085,15.5510850757085,16.253491431981658,16.253491431981658,16.555150777504707,16.555150777504707,5.171876354818181,5.171876354818181,12.370803314416591,13.937762239115116,14.163407549316872,14.787214507857641,6.96197855260543,12.553010524007433,14.137508418609315,14.226529677190484,14.975043174173024,7.609963145705933,220.2123744240735,220.2123744240735,0.0,244.6804160267483,0.0,220.2123744240735,244.6804160267483,0,0
+2017/02/13 20:00:00,211.02269528953818,0,1280.3264766916504,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.4930174432964813,27.0977424753112,0,0,290.27719150897605,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.34680942428832,0.0,177.10877693843773,0.0,1028.4242273232355,0.0,412.99453068780747,0.0,0.0,0.0,8046.476025931593,0.0,6311.1712495479405,0.0,9096.057414872479,0.0,6473.264895210396,0.0,0.0,0.0,7244.538492234363,0.0,5765.864885994965,0.0,8321.933014154194,0.0,5900.159528857942,0.0,0.0,0,0,0,0,0,0,0,0,0.06816552996542027,0.002156709852811954,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.691800275323506,-0.691800275323506,-0.7227327935390458,-0.7227327935390458,-0.7367924094075472,-0.7367924094075472,-0.7460720389489179,-0.7460720389489179,-0.11358649467105472,-0.11358649467105472,-0.5888312562333964,-0.6445937011468135,-0.6518686884900858,-0.6721443056924384,-0.2982845626422673,-0.5979949256138085,-0.6527866377300457,-0.6550694349644031,-0.6791855534311837,-0.34143275167156106,15.062751330719635,15.062751330719635,15.992168150379186,15.992168150379186,16.42823439183026,16.42823439183026,16.720697937771206,16.720697937771206,5.267229283926184,5.267229283926184,12.267250110336647,13.724077754268677,13.924088694795032,14.493629005714624,6.848789457129385,12.497390940297777,13.94948885257071,14.012813447970771,14.69558148031804,7.424989835045764,211.02269528953818,211.02269528953818,0.0,234.4696614328202,0.0,211.02269528953818,234.4696614328202,0,0
+2017/02/13 21:00:00,212.88416979822728,0,1161.6621619103757,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.2748722850060944,24.70556834706384,0,0,207.1032292402454,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,647.7892942492986,0.0,519.5241923069921,0.0,1507.2658404052745,0.0,717.1485251144849,0.0,0.0,0.0,8368.677404487811,0.0,6512.140746699561,0.0,9368.784793368994,0.0,6650.36752208365,0.0,0.0,0.0,7478.510467455551,0.0,5907.484862581869,0.0,8497.821951629268,0.0,6014.179806491926,0.0,0.0,0,0,0,0,0,0,0,0,0.06184775395101615,0.0019568198235693653,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7147899798355108,-0.7147899798355108,-0.7396823731971225,-0.7396823731971225,-0.7500294719792335,-0.7500294719792335,-0.7570738986594923,-0.7570738986594923,-0.15553078451136268,-0.15553078451136268,-0.5889067564973219,-0.6417782629646903,-0.6491175491519677,-0.6670096754960929,-0.29263389137004137,-0.5992820686686756,-0.6504446657313517,-0.6527735544371858,-0.6741506068286607,-0.33276402814744704,15.749577112685145,15.749577112685145,16.518920425237354,16.518920425237354,16.846546408169644,16.846546408169644,17.072222393569135,17.072222393569135,5.501278174882046,5.501278174882046,12.269131371257188,13.647288914029431,13.84818194405942,14.347713976691452,6.779166839113543,12.530008777131258,13.884757487088038,13.949126574125458,14.55095383970233,7.302891409002214,212.88416979822728,212.88416979822728,0.0,236.53796644247475,0.0,212.88416979822728,236.53796644247475,0,0
+2017/02/13 22:00:00,199.50354955541755,0,1311.0554940035436,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.5098696294868131,27.0977424753112,0,0,391.98691384595736,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1227.336733263177,0.0,857.6307960622669,0.0,2009.5404540760294,0.0,1033.71312890646,0.0,0.0,0.0,6785.06555714344,0.0,7174.370707831361,0.0,7780.860844514176,0.0,7305.374677638668,0.0,0.0,0.0,6025.772337336802,0.0,6647.877088133877,0.0,7024.996432536365,0.0,6744.066997836611,0.0,3751.2955484805807,0,0,0,0,0,0,0,0,0.06980156560829343,0.0022084728801415442,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7416766360093437,-0.7416766360093437,-0.7619775246138448,-0.7619775246138448,-0.7720731630944464,-0.7720731630944464,-0.7760632828590999,-0.7760632828590999,-0.23772785936692473,-0.23772785936692473,-0.6013768875832404,-0.65528724340384,-0.6583826014757033,-0.6781976236621609,-0.30832507102366324,-0.6149764699382642,-0.6669080739184691,-0.6646397300639401,-0.68778584262264,-0.35095558084969486,16.581708706916245,16.581708706916245,17.230568618259014,17.230568618259014,17.559807291314257,17.559807291314257,17.691131474860754,17.691131474860754,6.172753975683548,6.172753975683548,12.5832478843504,14.018867237748566,14.105122146138825,14.6671169325802,6.975830031473549,12.93350833129955,14.344838198622085,14.28075035215413,14.945159091088598,7.562798541599591,199.50354955541755,199.50354955541755,0.0,221.6706106171306,0.0,199.50354955541755,221.6706106171306,0,0
+2017/02/13 23:00:00,141.13808289534666,0,1214.558576493661,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.7199137383253182,21.233236349245107,0,0,455.19658264252337,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3241.7081780273293,0.0,2082.030386346194,0.0,3928.928063038728,0.0,2229.1429625552078,0.0,0.0,0.0,6888.884398655853,0.0,8153.862531928181,0.0,7897.402812964546,0.0,8279.563573055671,0.0,5022.356532288946,0.0,6162.783965836485,0.0,7636.871228386587,0.0,7156.103148228556,0.0,7724.329564890729,0.0,12407.98828698492,0,0,0,0,0,0,0,0,0.06466399824415718,0.0020459238299201394,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8197935253510308,-0.8197935253510308,-0.8345877584125847,-0.8345877584125847,-0.8509091412664878,-0.8509091412664878,-0.8471192077154976,-0.8471192077154976,-0.47294168783235124,-0.47294168783235124,-0.6264542713307888,-0.6826706737906487,-0.6805049342079191,-0.7031888980977865,-0.33770965932510066,-0.6441814507834048,-0.6988057548971782,-0.6905099478822461,-0.716717999185085,-0.38671799277761376,19.174676378671776,19.174676378671776,19.69482941590597,19.69482941590597,20.279296832035058,20.279296832035058,20.142589737032296,20.142589737032296,9.6707926216924,9.6707926216924,13.23536751240944,14.79633306787693,14.733661750070894,15.400139927609516,7.372159349028877,13.712812472339294,15.269626116048173,15.024878630017469,15.808213354193583,8.114810485446668,141.13808289534666,141.13808289534666,0.0,156.82009210594072,0.0,141.13808289534666,156.82009210594072,0,0
+2017/02/14 00:00:00,91.5469225853515,0,1069.0196340780876,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.7992260186553684,11.80474030540357,0,0,496.7203809661732,519.0637243430983,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4347.104883333069,0.0,2727.634842047513,0.0,4936.152545712097,0.0,2851.2605303948653,0.0,0.0,0.0,6059.2644494518145,0.0,8466.719455353403,0.0,7048.724972446806,0.0,8589.423607635834,0.0,12047.055639851913,0.0,5638.764920512036,0.0,8145.270731292172,0.0,6601.4552783557465,0.0,8224.94512841541,0.0,18594.981905606954,0,0,0,0,0,0,0,0,0.05691539714828714,0.0018007634924673242,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8953460310222037,-0.8953460310222037,-0.904688437451862,-0.904688437451862,-0.9294008022014074,-0.9294008022014074,-0.9170859278065842,-0.9170859278065842,-0.5914340539696212,-0.5914340539696212,-0.648704876735091,-0.7069320289861454,-0.7001070197805573,-0.7256146417727987,-0.3713576856568385,-0.6691773792269251,-0.7264785674205643,-0.7127677254874746,-0.7420451856583581,-0.42445282600989803,21.926473033370044,21.926473033370044,22.283066297303137,22.283066297303137,23.243325260775947,23.243325260775947,22.76172860758328,22.76172860758328,12.33224747664741,12.33224747664741,13.836824189465148,15.512252866333782,15.308286421110381,16.080857598645053,7.871036012688876,14.409176173550634,16.10751469393813,15.688247035159137,16.59333097387278,8.756507297436286,91.5469225853515,91.5469225853515,0.0,101.71880287261277,0.0,91.5469225853515,101.71880287261277,0,0
+2017/02/14 01:00:00,40.05853169324728,0,713.1077753064553,0,0,0,0.0,0.0012104163955367314,4.166984770466865,9.319298099999997,16.311038125956312,0,0.428751520762922,0.29206986165998333,9.539178898005659,0,0,143.16236467830643,516.7098818593328,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1030.6178823534415,0.0,803.4228075020264,1.2104163955367313,1349.1451296153962,0.0,885.2355199066048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0379663861609989,0.0012012299933797615,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.919011227496791,-0.919011227496791,-0.9308658862217637,-0.9308658862217637,-0.9503556759297047,-0.9503556759297047,-0.9423361025543161,-0.9423361025543161,-0.2677046135063624,-0.2677046135063624,-1.0641047176945053,-1.114552021096472,-1.1093370599555137,-1.134567783943598,-0.16242868289046913,-0.9999829394677308,-1.0686485765598015,-1.0648370776850162,-1.0904994351549517,-0.3398479311071451,22.836619717960914,22.836619717960914,23.301024336106124,23.301024336106124,24.076705818521745,24.076705818521745,23.755708125677458,23.755708125677458,6.488098868102085,6.488098868102085,28.895241639138533,31.182726083486514,30.942224089285034,32.11417203435549,5.546780517621258,26.11893174022167,29.097648984643754,28.927815245628565,30.081137193697103,7.402429339599209,40.05853169324728,40.05853169324728,0.0,44.509479659163645,0.0,40.05853169324728,44.509479659163645,0,0
+2017/02/14 02:00:00,23.722163351568916,0,44.67077539620658,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250679278911273,0,0,0.0,9.18042288366244,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0023783051700351793,7.524791776445563e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.1316859757393807,-1.1316859757393807,-1.1774919425449473,-1.1774919425449473,-1.200560582372601,-1.200560582372601,-1.2092555583138316,-1.2092555583138316,-0.1098210871209178,-0.1098210871209178,-1.177898460798623,-1.26111088893008,-1.2770047924811365,-1.3029896663426492,-0.0953334181984814,-1.1807512572652525,-1.2666909894368101,-1.278781679223642,-1.3061151399519668,-0.37203743336998313,31.979256280695495,31.979256280695495,34.154899546995125,34.154899546995125,35.27485009344224,35.27485009344224,35.70099717040233,35.70099717040233,5.249796275728087,5.249796275728087,34.17449865850227,38.28551525182589,39.09157682903599,40.42231079054647,5.188212101814415,34.31217784536375,38.56780432730554,39.182073058563546,40.58340361829276,7.881611004879588,23.722163351568916,23.722163351568916,0.0,26.35795927952102,0.0,23.722163351568916,26.35795927952102,0,0
+2017/02/14 03:00:00,28.344468455792537,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251053693196419,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.1937505505571384,-1.1937505505571384,-1.244557554437235,-1.244557554437235,-1.2625156396028792,-1.2625156396028792,-1.275438670505689,-1.275438670505689,-0.03149233790511335,-0.03149233790511335,-1.2708566413615272,-1.3614096232478916,-1.3791268028360837,-1.4063479058278905,-0.07439250821350522,-1.297679296824657,-1.3886810209990945,-1.4028978766224298,-1.4312850794727379,-0.38469128826554394,34.94260510183091,34.94260510183091,37.45273632804017,37.45273632804017,38.35650656531477,38.35650656531477,39.01187748171074,39.01187748171074,5.020530994224032,5.020530994224032,38.77903971836078,43.46668913705813,44.402622720372705,45.85042354476832,5.1145900393676555,40.149101194376286,44.909489121595385,45.66631668404477,47.18592632639354,8.082069056479739,28.344468455792537,28.344468455792537,0.0,31.493853839769486,0.0,28.344468455792537,31.493853839769486,0,0
+2017/02/14 04:00:00,23.722288013802277,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251925901244887,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.2973083893191049,-1.2973083893191049,-1.353236094289549,-1.353236094289549,-1.3630414725000763,-1.3630414725000763,-1.3827369610939686,-1.3827369610939686,0.032433716782342935,0.032433716782342935,-1.3802773724246562,-1.4715946810742444,-1.4931370236194794,-1.5180348973548343,-0.04639646696066013,-1.4266456507005207,-1.5166630260502627,-1.534830252561699,-1.5604666484953407,-0.4128938058154012,40.13004222150485,40.13004222150485,43.03675964295085,43.03675964295085,43.552667920597536,43.552667920597536,44.59397626261837,44.59397626261837,5.021776836393897,5.021776836393897,44.46358485542811,49.35977723459301,50.5274665213926,51.880669349034385,5.044564866056874,46.936861784786075,51.8060291497189,52.79500982573961,54.19184788098111,8.553463055922535,23.722288013802277,23.722288013802277,0.0,26.35809779311364,0.0,23.722288013802277,26.35809779311364,0,0
+2017/02/14 05:00:00,45.23869203859603,0,442.16203440262507,0,0,0,0.0,0.035328599777863304,4.633261998087618,9.319298099999997,25.555573451546493,0,3.094374477169241,2.0232603228741235,0.5775950891406934,0,0,353.4361531212648,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.925140631900726,2660.1813261555103,1.6584982694048622,1920.0699269602492,1.4978165030153061,3078.2995715068864,1.3470023423368063,2042.3622954131451,0.0,0.0,4.256601927323467,6560.147840443755,3.346488023016735,4547.750332488575,4.226395792764641,7383.09582355108,3.712118246555991,4745.00110007173,0.0,0.0,2.981986715375045,6154.838422280075,2.2694631303771664,4201.660212457356,5.29626236709625,6860.6272314148155,2.810825828696299,4364.231940825886,0.0,0.0,0,0,0,0,0,0,0,0,0.023541034223962386,0.0007448219133916925,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0405577736707674,-1.0405577736707674,-1.0661158092583145,-1.0661158092583145,-1.0694951928822585,-1.0694951928822585,-1.0789819768236972,-1.0789819768236972,0.1680590173567564,0.1680590173567564,-0.8733945447239232,-0.9157455292749067,-0.9223211308405556,-0.9366569583861811,-0.0151865435644446,-0.9217734422216647,-0.9654699883767266,-0.9638763714123288,-0.9849848717510016,-0.39928996545784873,27.85818690326002,27.85818690326002,28.984735841014498,28.984735841014498,29.13544259616566,29.13544259616566,29.560667149868465,29.560667149868465,5.585391431200193,5.585391431200193,21.102619598441976,22.709677304317054,22.965717934030096,23.529930694404683,5.004774228660523,22.94432572152057,24.688561286317977,24.623626984403558,25.4917183332402,8.321832435507133,45.23869203859603,45.23869203859603,0.0,50.26521337621781,0.0,45.23869203859603,50.26521337621781,0,0
+2017/02/14 06:00:00,77.76281883903675,0,413.0356973761507,0,0,0,0.06315294084470141,0.022949103499087527,5.555297838843742,9.319298099999997,57.911447091112116,0,2.617521455984703,1.748156346350784,0.5249959624015819,0,0,200.0935823008859,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.32355558776317,0.0,0.0,0.0,0.0,0.0,0.0,1068.4018782297665,0.0,836.4798514575114,0.7026657670742225,1306.8011677080922,0.0,911.6990631800148,0.0,0.0,3.1085697109826924,4878.045261182541,2.2296954623324154,3448.4383629621334,3.243867281193843,5642.05662291316,2.396595610424015,3630.9459104933094,0.0,0.0,3.3001566387279127,4912.414328571091,2.081890423191794,3402.918188021901,3.3957697300907057,5579.164306075119,2.489892875069927,3553.138587359356,0.0,0.0,0,0,0,0,0,0,0,0,0.021990326466600884,0.0006957586008812481,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9275990680511439,-0.9275990680511439,-0.9507259976554252,-0.9507259976554252,-0.9504761666119552,-0.9504761666119552,-0.9608127738176008,-0.9608127738176008,0.49277341402588637,0.49277341402588637,-0.7897883358290163,-0.8227879528158429,-0.8259227602643437,-0.8366997529651894,0.0979348196910592,-0.8042124127048808,-0.8372651207952395,-0.8318321163619421,-0.8480907133867612,-0.306587542333001,23.172485551019093,23.172485551019093,24.091589931215807,24.091589931215807,24.08154803311109,24.08154803311109,24.499074685017675,24.499074685017675,10.073909838037778,10.073909838037778,18.148028292466208,19.279216516899396,19.389061140905824,19.769833451338926,5.198628321314558,18.63680956394468,19.789943211692375,19.59724790372826,20.177576052531236,6.953540305296173,77.76281883903675,77.76281883903675,0.0,86.40313204337417,0.0,77.76281883903675,86.40313204337417,0,0
+2017/02/14 07:00:00,103.31056323155339,0,892.0743431476096,0,0,0,0.0,0.02043807927956929,11.110595677687485,13.929299233552332,73.80580873715317,0,2.4058032697725316,1.5136865325102908,0.5249317015979885,0,0,155.33917470410958,506.0478771119633,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,617.9324679043636,0.0,528.4279535913819,0.0,803.7874116469383,0.0,572.4084613281804,0.0,0.0,2.394407857587187,3931.152821994899,1.707153522741464,2785.875215680032,4.51547201831939,4543.303357418811,1.8424340764042122,2929.3433349874,0.0,0.0,2.929746969573595,3775.5185059219084,2.2823565787689404,2616.1969600460056,2.0308841122441663,4268.975832235196,2.7356241439303326,2721.4902002677204,0.0,0.0,0,0,0,0,0,0,0,0,0.04749469879459187,0.0015026991633248542,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8573901471778824,-0.8573901471778824,-0.8820886902322705,-0.8820886902322705,-0.8787804354341728,-0.8787804354341728,-0.8923242004591598,-0.8923242004591598,0.7436773608074005,0.7436773608074005,-0.7664990492942166,-0.7972755855614415,-0.799461907166142,-0.8099920988588732,0.16375648862194342,-0.7768487515930895,-0.8073030739708437,-0.8009777307436551,-0.8169330109742213,-0.17857171080255624,20.514457102227837,20.514457102227837,21.42655523336741,21.42655523336741,21.302926793651366,21.302926793651366,21.81189190595407,21.81189190595407,16.644871893080037,16.644871893080037,17.377486605707716,18.40064507509733,18.474858734243014,18.835132418950806,5.555767064275017,17.71706298544987,18.74268636024101,18.526431411933004,19.07516351614626,5.661023068862875,103.31056323155339,103.31056323155339,0.0,114.78951470172598,0.0,103.31056323155339,114.78951470172598,0,0
+2017/02/14 08:00:00,150.84974070773714,0,1193.6398174636354,0,0,0,0.0,0.0,10.843536854875632,0.0,69.33401494192633,0,39.380909295966944,0.7924406864236583,27.06686372609033,0,0,327.8067660748657,599.655407544689,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4192.248321991683,0.0,2622.0818969254583,0.0,4623.083745400638,0.0,2690.9383359929707,0.0,0.0,0.0,8445.114683362479,0.0,9079.595623074281,0.0,9247.473338789028,0.0,9138.90939846862,0.0,7109.5463719975805,0.0,8133.260856923983,0.0,8802.92358657518,0.0,8833.77821019846,0.0,8796.116125634078,0.0,12731.61967157459,0,0,0,0,0,0,0,0,0.06355026801873434,0.002010686181921768,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8696376128127763,-0.8696376128127763,-0.8923468754258631,-0.8923468754258631,-0.8956554027837417,-0.8956554027837417,-0.9015557569388762,-0.9015557569388762,0.10423112172550777,0.10423112172550777,-0.7428943636342571,-0.7795664678155603,-0.7717928801842158,-0.7893486830038776,-0.2088508496060653,-0.7520249014987791,-0.7926325433450432,-0.7761750756309898,-0.7986581260918042,-0.35543605920442717,20.96360210209042,20.96360210209042,21.812750304077355,21.812750304077355,21.93822472438363,21.93822472438363,22.163098928061203,22.163098928061203,5.2250019465278115,5.2250019465278115,16.620132104543174,17.806988487379883,17.550608028533233,18.133268484521835,5.904653939346716,16.910256555695867,18.243710763227682,17.694820604384688,18.447551241355427,7.628971464066595,150.84974070773714,150.84974070773714,0.0,167.6108230085968,0.0,150.84974070773714,167.6108230085968,0,0
+2017/02/14 09:00:00,165.63069005820896,0,1347.9702644776162,0,0,0,0.0,0.0,11.770719589816478,0.0,83.2008179303116,0,39.380909295966944,0.7485255643484148,27.097742475311204,0,0,428.90168432003,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2626.070868453215,0.0,2231.0745740855805,0.0,3990.8910144472015,0.0,1839.7262895992553,0.0,0.0,0.0,7286.349765936847,0.0,8835.692293334565,0.0,8858.511942021934,0.0,8386.710438534208,0.0,2213.4950381123695,0.0,6713.002476009544,0.0,8504.5319899827,0.0,8341.692658670005,0.0,7889.208161464219,0.0,11920.351802271936,0,0,0,0,0,0,0,0,0.07176693533134965,0.002270655808203336,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7824043140561969,-0.7824043140561969,-0.8723346450655942,-0.8723346450655942,-0.8750026966388559,-0.8750026966388559,-0.8107337837623316,-0.8107337837623316,-0.2557572559607829,-0.2557572559607829,-0.682086404489469,-0.7665832529020502,-0.7540233158232096,-0.7350493556245928,-0.3041781297089161,-0.6821468245978178,-0.7775011240758991,-0.7560042532380928,-0.7340133932288205,-0.4043875005953471,17.901224346573628,17.901224346573628,21.0633413129721,21.0633413129721,21.162303606925306,21.162303606925306,18.86068450848599,18.86068450848599,6.35788758779529,6.35788758779529,14.779405730512593,17.380230914692447,16.974232867584234,16.373711352539033,6.922842747538155,14.781155525764419,17.738620418802242,17.03781837017479,16.34136808623761,8.407699286409127,165.63069005820896,165.63069005820896,0.0,184.0341000646766,0.0,165.63069005820896,184.0341000646766,0,0
+2017/02/14 10:00:00,182.35637527563156,0,1344.5890565617433,0,0,0,0.0,0.0,11.268261791783145,0.0,106.27511244621549,0,39.380909295966944,0.6618011858520503,21.33831535335968,0,0,372.2849476353409,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1569.9028621090338,0.0,2893.960824221578,0.0,340.75757954312934,0.0,0.0,0.0,5099.683080310551,0.0,8235.863599523123,0.0,7988.661984483009,0.0,7352.769168344704,0.0,1868.2219012561868,0.0,4247.272208536211,0.0,7896.786520986616,0.0,7465.375531558118,0.0,6795.974882391381,0.0,10255.33663593831,0,0,0,0,0,0,0,0,0.07158691731742534,0.002264960163725678,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6220403881915908,-0.6220403881915908,-0.84671376521544,-0.84671376521544,-0.8448171789895547,-0.8448171789895547,-0.7362616963322111,-0.7362616963322111,-0.2785536574763894,-0.2785536574763894,-0.5712504162405286,-0.749364956811753,-0.7321333273910233,-0.6811572583854234,-0.3210712746278034,-0.5525717037021839,-0.7552857265052958,-0.7302029203865492,-0.6709224281493739,-0.40522685680459636,13.118608578337671,13.118608578337671,20.128000374320862,20.128000374320862,20.05984491835936,20.05984491835936,16.411619774942963,16.411619774942963,6.611548165542956,6.611548165542956,11.835918346521325,16.82536759540102,16.282789251230994,14.752517098938796,7.143251533189698,11.392341319129983,17.014735194351616,16.222799943703862,14.458802406604718,8.421944689139991,182.35637527563156,182.35637527563156,0.0,202.61819475070172,0.0,182.35637527563156,202.61819475070172,0,0
+2017/02/14 11:00:00,212.56456782969235,0,1356.3157163266221,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.5914709071119684,18.46662663720941,0,0,316.4538585892401,578.4872750743081,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,563.7525831471601,0.0,1279.5633169557866,0.0,0.0,0.0,0.0,0.0,2458.132399075743,0.0,7616.958890931197,0.0,5648.681742965877,0.0,6963.203734253996,0.0,4430.670841765258,0.0,1731.553855940529,0.0,7299.271692314193,0.0,5159.234437649871,0.0,6483.297899281451,0.0,11176.644350367706,0,0,0,0,0,0,0,0,0.07221125336932255,0.0022847137212095776,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5143015971638489,-0.5143015971638489,-0.7891470328664586,-0.7891470328664586,-0.7819540738791902,-0.7819540738791902,-0.6947859562722548,-0.6947859562722548,-0.22262436354443413,-0.22262436354443413,-0.4967788091063753,-0.7331932952222497,-0.7125212792344163,-0.6833515824270411,-0.33962925682062006,-0.45411912539187826,-0.7340045003437918,-0.7055588088659328,-0.6724953083442891,-0.40924133653661077,10.530737611819518,10.530737611819518,18.126501529731556,18.126501529731556,17.88625043966276,17.88625043966276,15.150660553409963,15.150660553409963,6.028170059827232,6.028170059827232,10.1573877419426,16.315796909644547,15.680784964922168,14.816078850165894,7.3993248086862025,9.303872083713983,16.341090645474196,15.471052459068815,14.503645418346366,8.49049484188059,212.56456782969235,212.56456782969235,0.0,236.1828531441026,0.0,212.56456782969235,236.1828531441026,0,0
+2017/02/14 12:00:00,228.5672120154258,0,1257.1991731460487,0,0,0,0.0,0.0,16.73568395689411,0.0,147.76209134187457,0,39.380909295966944,0.29925992558558906,20.95729229265029,0,0,158.48153617218483,584.1075255419738,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2386.313443219504,0.0,6070.85307774156,0.0,6024.689371269544,0.0,5731.250070228971,0.0,0.0,0.0,1468.109819763391,0.0,5726.813427138541,0.0,5498.637924577127,0.0,5294.483250573929,0.0,0.0,0,0,0,0,0,0,0,0,0.06693421519410452,0.00211775191174472,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4086118748991529,-0.4086118748991529,-0.7014318672738499,-0.7014318672738499,-0.7037142239074278,-0.7037142239074278,-0.6182809949586606,-0.6182809949586606,-0.1193803715568045,-0.1193803715568045,-0.4441020506947098,-0.7029813252483919,-0.6829661464952715,-0.6764726911721823,-0.32620696073989713,-0.39542161259321906,-0.697358668634493,-0.6706210104221884,-0.6645120417983273,-0.3810402738972845,8.479700708420282,8.479700708420282,15.347722457870361,15.347722457870361,15.415837834606677,15.415837834606677,13.019829302055413,13.019829302055413,5.2952041235323435,5.2952041235323435,9.114820404936523,15.3939404702692,14.804899067119308,14.617518862004914,7.212654379736591,8.257412785305462,15.22671934661652,14.450221177900517,14.277149382418898,8.023529504354542,228.5672120154258,228.5672120154258,0.0,253.96356890602868,0.0,228.5672120154258,253.96356890602868,0,0
+2017/02/14 13:00:00,207.66139446543392,0,1175.477978321779,0,0,0,0.0,0.0,16.67307048032785,0.0,129.49988082968767,0,39.380909295966944,0.21433407356694248,18.46122458343019,0,0,133.82769988884124,562.5305195135917,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1526.3902724145855,0.0,4019.201038857131,0.0,6022.432567794869,0.0,4146.111873628432,0.0,0.0,0.0,411.7139422871464,0.0,3593.5837663255606,0.0,5443.476174553476,0.0,3714.621081449894,0.0,0.0,0,0,0,0,0,0,0,0,0.06258331825022657,0.001980092565265771,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.24812996127380924,-0.24812996127380924,-0.5241765083590568,-0.5241765083590568,-0.609816577245212,-0.609816577245212,-0.48985551976706926,-0.48985551976706926,-0.08486707655466538,-0.08486707655466538,-0.3600249756530966,-0.6225147546229444,-0.6430276989188745,-0.6366269377593037,-0.31014169044577883,-0.29730545735095204,-0.6007961812557847,-0.6231647290610718,-0.6163692712579842,-0.34862084784158814,6.27790015556576,6.27790015556576,10.746988156337466,10.746988156337466,12.799669077995205,12.799669077995205,10.013533155246009,10.013533155246009,5.149141756465426,5.149141756465426,7.697631548911502,13.131116285687071,13.6813238631417,13.507680520715496,6.9992709828520105,6.836629137800998,12.568470350958691,13.148270137426167,12.969833382192704,7.528654922941826,207.66139446543392,207.66139446543392,0.0,230.73488273937102,0.0,207.66139446543392,230.73488273937102,0,0
+2017/02/14 14:00:00,205.33631166875873,0,1147.0705098065944,0,0,0,0.0,0.0,16.735683873587277,0.0,129.2730206906943,0,39.380909295966944,0.22128488664401838,16.29343771941186,0,0,141.9335290852246,561.5075743145683,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.90825694263387,0.0,3342.4747984325195,0.0,4843.656586587783,0.0,3858.7424712213074,0.0,0.0,0.0,0.0,0.0,2895.6329224011715,0.0,4276.429925626353,0.0,3452.3686083466196,0.0,0.0,0,0,0,0,0,0,0,0,0.06107088358487684,0.001932240186708033,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2544427465358981,-0.2544427465358981,-0.466926001898497,-0.466926001898497,-0.6123002517314706,-0.6123002517314706,-0.416890940492571,-0.416890940492571,-0.11518723667422746,-0.11518723667422746,-0.34567615863679674,-0.5477193604586544,-0.6298536468430151,-0.6249936531390489,-0.3177068791431213,-0.23302142976203313,-0.5068203050278893,-0.607841140431575,-0.601837637236575,-0.3500700088024195,6.343927861307208,6.343927861307208,9.551865518246217,9.551865518246217,12.863947333545426,12.863947333545426,8.623028308032644,8.623028308032644,5.274818780235023,5.274818780235023,7.485921714094005,11.27958459960196,13.325866241444047,13.196636695380676,7.0983917010921544,6.126673482684339,10.36971340805637,12.748735319132223,12.594983231489977,7.549820462367279,205.33631166875873,205.33631166875873,0.0,228.1514574097319,0.0,205.33631166875873,228.1514574097319,0,0
+2017/02/14 15:00:00,189.28265908318983,0,1070.5426167089352,0,0,0,0.0,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,0.20224849699855718,14.012194442377078,0,0,121.52730851677805,540.8762542978997,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3481.016707847815,0.0,3105.5267749801387,0.0,3919.29924654558,0.0,0.0,0.0,0.0,0.0,3084.6378399950004,0.0,2678.6951869067616,0.0,3602.559815694477,0.0,0.0,0,0,0,0,0,0,0,0,0.05699648187163686,0.0018033289565933946,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49196892701005795,-0.49196892701005795,-0.512739422957198,-0.512739422957198,-0.616000566879435,-0.616000566879435,-0.3668591666409257,-0.3668591666409257,-0.19417098071665617,-0.19417098071665617,-0.3763802174916584,-0.5693692192572605,-0.629758600957538,-0.6328787373390391,-0.34426062498772403,-0.311769567468749,-0.5365771038648339,-0.6130931868418615,-0.6150318952944093,-0.3765725143286882,10.057226790353454,10.057226790353454,10.496914080149182,10.496914080149182,12.960209168939897,12.960209168939897,7.801548074007158,7.801548074007158,5.7817515227242495,5.7817515227242495,7.949637829267033,11.79055893077934,13.32332910131268,13.406822282675463,7.465510739046422,7.0203951459270115,11.024527227915613,12.884525116094252,12.93495224769434,7.952668631980828,189.28265908318983,189.28265908318983,0.0,210.31406564798868,0.0,189.28265908318983,210.31406564798868,0,0
+2017/02/14 16:00:00,182.6593308368599,0,1066.0269321068736,0,0,0,0.0,0.0,16.798297266846703,0.0,108.75639138185811,0,39.380909295966944,0.2143265361167431,14.077431153617141,0,0,117.00344087951271,540.8844373331035,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2857.165540763417,0.0,2178.016248350123,0.0,3999.845942355934,0.0,0.0,0.0,0.0,0.0,2415.510129313242,0.0,1918.6495943866241,0.0,3786.8493332682656,0.0,0.0,0,0,0,0,0,0,0,0,0.056756063478625406,0.0017957222862239565,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5288907094432809,-0.5288907094432809,-0.3121611072460956,-0.3121611072460956,-0.6135699841056695,-0.6135699841056695,-0.311279068351163,-0.311279068351163,-0.24364033186899464,-0.24364033186899464,-0.3504013042428066,-0.47873843864695925,-0.6337619550357068,-0.6453092809082072,-0.3687343578103858,-0.25834003725844995,-0.4282564583819723,-0.6204490724386915,-0.6313689914055863,-0.3982078806056696,10.85171270254881,10.85171270254881,7.025492702333835,7.025492702333835,12.896911813470808,12.896911813470808,7.014018370705415,7.014018370705415,6.231960719529738,6.231960719529738,7.5546716996722125,9.786867467095135,13.430533412441932,13.743649407487325,7.830409018763419,6.385527721450487,8.824574466091178,13.076721382720493,13.36636955004974,8.303748007708421,182.6593308368599,182.6593308368599,0.0,202.95481204095546,0.0,182.6593308368599,202.95481204095546,0,0
+2017/02/14 17:00:00,206.07223380663225,0,1129.7268154131955,0,0,0,0.0,0.0,17.340826539874538,0.0,131.64086955684016,0,39.380909295966944,0.23519778372110514,14.042455427775172,0,0,117.47854789531736,550.8736848548043,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.946963511002984,0.0,3083.2346957265368,0.0,2993.4570428105685,0.0,4422.306585099478,0.0,0.0,0.0,0.0,0.0,2511.662516234088,0.0,2615.6762092457648,0.0,4100.37750004145,0.0,0.0,0,0,0,0,0,0,0,0,0.060147492448782224,0.0019030247348187168,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5249037223361601,-0.5249037223361601,-0.35130262572884596,-0.35130262572884596,-0.593050082017957,-0.593050082017957,-0.2882806733936785,-0.2882806733936785,-0.19711926236681854,-0.19711926236681854,-0.4316706874854772,-0.4990830762640024,-0.6427233032482327,-0.6582946127283871,-0.370815472268889,-0.35932430140518234,-0.4592550563004615,-0.6374221187915287,-0.6531982657046033,-0.4014666056982784,10.763080236585068,10.763080236585068,7.567893590132314,7.567893590132314,12.372751056196861,12.372751056196861,6.726450119381269,6.726450119381269,5.805711774863667,5.805711774863667,8.886201959509862,10.205725845492793,13.673025811187912,14.102664528096355,7.8626147996006495,7.687089958448595,9.402476478353293,13.529155961500962,13.960890684945724,8.358361430768,206.07223380663225,206.07223380663225,0.0,228.96914867403584,0.0,206.07223380663225,228.96914867403584,0,0
+2017/02/14 18:00:00,218.01878358528214,0,1101.2771409245602,0,0,0,0.0,0.0,22.610965705448436,0.0,133.89528835348938,0,39.380909295966944,0.13482403664109952,18.564820991281994,0,0,68.2693982137861,571.6331600477005,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,984.3103800887131,0.0,3274.243416783163,0.0,3613.812122412105,0.0,3870.1138390052247,0.0,0.0,0.0,372.97489495429136,0.0,2552.5175933304745,0.0,3312.047195914617,0.0,3613.614213962069,0.0,0.0,0,0,0,0,0,0,0,0,0.05863281070614371,0.001855101260301904,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.45251569088693366,-0.45251569088693366,-0.4697356607970925,-0.4697356607970925,-0.5867113473442895,-0.5867113473442895,-0.25245417447558977,-0.25245417447558977,-0.15383477257359254,-0.15383477257359254,-0.4627283937093,-0.563447718929453,-0.6353755617444821,-0.6504818291866188,-0.3563907618581348,-0.42470845969584864,-0.512787197569067,-0.6314999147778129,-0.6486824781330771,-0.3875086631915421,9.273320391914226,9.273320391914226,9.607216955949994,9.607216955949994,12.214528741467532,12.214528741467532,6.322947896821361,6.322947896821361,5.4903940030635425,5.4903940030635425,9.46980455571159,11.648781820327756,13.47394017312078,13.885782816766877,7.643182027293861,8.761062482821231,10.497946911040671,13.369873647200961,13.83620793637354,8.127631349089611,218.01878358528214,218.01878358528214,0.0,242.2430928725357,0.0,218.01878358528214,242.2430928725357,0,0
+2017/02/14 19:00:00,219.57589274355792,0,1105.0594554749744,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.1279961257138817,26.771425921323356,0,0,79.51981777975561,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1905.605381821501,0.0,2538.62697652676,0.0,4241.734059027947,0.0,3024.232179811239,0.0,0.0,0.0,1332.8736679251067,0.0,2087.601762620284,0.0,3944.6226606770647,0.0,2778.11149216318,0.0,0.0,0,0,0,0,0,0,0,0,0.05883418393439336,0.0018614725688750036,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.38327214871811865,-0.38327214871811865,-0.4848554865466827,-0.4848554865466827,-0.5425593951279898,-0.5425593951279898,-0.22360762776226956,-0.22360762776226956,-0.13689457598242194,-0.13689457598242194,-0.45923427165449154,-0.5467319749003879,-0.6163483238392109,-0.6268963837966921,-0.33110327883178725,-0.44312273863267115,-0.5242514459924793,-0.6127731916995613,-0.6259505128006034,-0.3607244651445325,8.059247268456673,8.059247268456673,9.910927728935008,9.910927728935008,11.160799074500872,11.160799074500872,6.037291593830389,6.037291593830389,5.388253087427401,5.388253087427401,9.402075146962147,11.25676511175898,12.969286438035851,13.247109139029746,7.279864007976357,9.096569452450751,10.748645348199375,12.876217507608104,13.221999026364799,7.708176167251992,219.57589274355792,219.57589274355792,0.0,243.97321415950879,0.0,219.57589274355792,243.97321415950879,0,0
+2017/02/14 20:00:00,210.58039425205638,0,1026.6887585585816,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.0507164058146886,27.0977424753112,0,0,36.639473375907336,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,782.2522943349379,0.0,1649.990727290193,0.0,2928.0033930936625,0.0,2062.652503424223,0.0,0.0,0.0,88.74932064944608,0.0,1135.3241719152247,0.0,2407.483803260935,0.0,1671.7865593418828,0.0,0.0,0,0,0,0,0,0,0,0,0.054661669980866946,0.0017294571358675757,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5240134715315771,-0.5240134715315771,-0.5388421469912446,-0.5388421469912446,-0.5426035874533129,-0.5426035874533129,-0.18197496986930256,-0.18197496986930256,-0.16155764664066097,-0.16155764664066097,-0.4486076607576122,-0.529441553919274,-0.592969971922039,-0.6011427714162425,-0.25541292340454647,-0.43663943906275765,-0.5099285917786613,-0.5874381207244186,-0.598620603565756,-0.33505239526148334,10.743383553867531,10.743383553867531,11.075940725646419,11.075940725646419,11.161811510053894,11.161811510053894,5.686495401035401,5.686495401035401,5.540925291126328,5.540925291126328,9.199320488906523,10.864012326740863,12.37074053391666,12.577288448666025,6.354223845837623,8.976783091200033,10.436320971612147,12.232581363669823,12.513237431748266,7.334812934378363,210.58039425205638,210.58039425205638,0.0,233.9782158356182,0.0,210.58039425205638,233.9782158356182,0,0
+2017/02/14 21:00:00,212.7150977860266,0,992.1036439362316,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.047283688670020814,24.764084931199253,0,0,37.54471126610126,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,757.5484197548715,0.0,1581.5967207847705,0.0,2755.7507147874107,0.0,1947.6664082258994,0.0,0.0,0.0,74.29567150751443,0.0,1070.942484248888,0.0,2188.211237676446,0.0,1528.7066804622816,0.0,0.0,0,0,0,0,0,0,0,0,0.05282033286094806,0.0016711985129111927,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5428354432124958,-0.5428354432124958,-0.5415163286403765,-0.5415163286403765,-0.5632698786101819,-0.5632698786101819,-0.1710481614265197,-0.1710481614265197,-0.20252521796191975,-0.20252521796191975,-0.4416949769152263,-0.5157453562995408,-0.5770067613875126,-0.5815505290605005,-0.19623406526267756,-0.4319101002093642,-0.49850021487947566,-0.5699956702523926,-0.5776369888700177,-0.3014344058335849,11.167124656451676,11.167124656451676,11.136927242025493,11.136927242025493,11.644547354399691,11.644547354399691,5.606427166089858,5.606427166089858,5.850589395483851,5.850589395483851,9.07003483015609,10.562091133836674,11.975668969151684,12.086996332460174,5.798479734416446,8.890542180878242,10.193477110662982,11.805646866111829,11.991056735270234,6.8881848543241375,212.7150977860266,212.7150977860266,0.0,236.35010865114066,0.0,212.7150977860266,236.35010865114066,0,0
+2017/02/14 22:00:00,199.04694190166458,0,963.9815707907833,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.05326197573381845,27.097742475311204,0,0,44.9129906331971,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.66185204314084,0.0,1968.4155838900192,0.0,1945.142056183699,0.0,2290.6911159064716,0.0,0.0,0.0,0.0,0.0,1573.1615239082607,0.0,1516.5354974303095,0.0,1961.3527967378343,0.0,264.42201679548,0,0,0,0,0,0,0,0,0.051323092856477334,0.001623826882832114,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5694985526633615,-0.5694985526633615,-0.5733329544019835,-0.5733329544019835,-0.5721358273678389,-0.5721358273678389,-0.17129245987418523,-0.17129245987418523,-0.2830683975857519,-0.2830683975857519,-0.4470741858348798,-0.5215488918442636,-0.5756159345435192,-0.5826292332370583,-0.2706143795285799,-0.4161879855147204,-0.5085644243662146,-0.5700417388796315,-0.580276562817857,-0.33930280611218006,11.793672503098094,11.793672503098094,11.886311548310516,11.886311548310516,11.85732050930811,11.85732050930811,5.6081628606375205,5.6081628606375205,6.664382801635455,6.664382801635455,9.170463070304777,10.689033988675348,11.94177122962057,12.113557367972462,6.520721803311417,8.610744613101843,10.40703675214803,11.806757090923284,12.055692368347081,7.394693949556242,199.04694190166458,199.04694190166458,0.0,221.16326877962732,0.0,199.04694190166458,221.16326877962732,0,0
+2017/02/14 23:00:00,140.4837517457495,0,815.9033476749725,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.06419985492871218,21.234619083044553,0,0,56.5413538238347,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,191.5821684485211,0.0,2279.625261014221,0.0,1901.3952184637005,0.0,2562.7543187988776,0.0,200.421260716027,0.0,0.0,0.0,1949.2719672433707,0.0,1548.4046495457972,0.0,2280.1667185559854,0.0,34.239540580801844,0,0,0,0,0,0,0,0,0.04343929857526451,0.001374389127232477,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6488537447690822,-0.6488537447690822,-0.6216602974091402,-0.6216602974091402,-0.6615999582185573,-0.6615999582185573,-0.29897711220373374,-0.29897711220373374,-0.5081149412412582,-0.5081149412412582,-0.4596699846229155,-0.5349230261034533,-0.5827671077228086,-0.5924535695699317,-0.33122529473863377,-0.4441407325718759,-0.5276347895298896,-0.5802717128807424,-0.593601124182038,-0.3754552700082165,13.840920550712056,13.840920550712056,13.108593700905558,13.108593700905558,14.19521667765052,14.19521667765052,6.857415270563578,6.857415270563578,10.39740544194099,10.39740544194099,9.410492234578754,10.987122243983563,12.116955903791137,12.35778707360258,7.281551856396149,9.115542146267344,10.823718806031053,12.055573330003043,12.38658810289806,7.93508171724109,140.4837517457495,140.4837517457495,0.0,156.0930574952772,0.0,140.4837517457495,156.0930574952772,0,0
+2017/02/15 00:00:00,90.84912338726328,0,652.8677039311847,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.09080501311649383,11.815362112854201,0,0,80.57947645662452,519.0526987057441,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,380.2034443667616,0.0,2662.984347338297,0.0,1982.3270544113254,0.0,2930.7736501787526,0.0,37.5428030524364,0.0,32.541174777139936,0.0,2384.599322424304,0.0,1720.3822014600173,0.0,2707.4243051679623,0.0,4.821827001246243,0,0,0,0,0,0,0,0,0.03475916014075703,0.0010997555977202622,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7615778276746739,-0.7615778276746739,-0.7633943498220982,-0.7633943498220982,-0.7971834619974314,-0.7971834619974314,-0.4717125019883339,-0.4717125019883339,-0.5560607375084826,-0.5560607375084826,-0.4755701303459702,-0.5504645193439626,-0.5936188934556835,-0.6047049817350292,-0.36054326995082936,-0.475376622847046,-0.5495093378375064,-0.5941230505321977,-0.6093112378371933,-0.39953538055693044,17.217623267074842,17.217623267074842,17.276511613976922,17.276511613976922,18.397522427593785,18.397522427593785,9.646365438149545,9.646365438149545,11.474048851415162,11.474048851415162,9.72324532055643,11.3432500796698,12.387034520875119,12.6682219141899,7.705442698230229,9.719373563628281,11.321060540586885,12.399706183676997,12.786623516800574,8.325940922849043,90.84912338726328,90.84912338726328,0.0,100.94347043029252,0.0,90.84912338726328,100.94347043029252,0,0
+2017/02/15 01:00:00,39.335283635969084,0,569.9590776301883,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5784842119924886e-09,9.537962636967428,0,0,0.0,516.7235488613721,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030345043465519753,0.0009600960230088918,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6680520131041353,-0.6680520131041353,-0.6815305366559878,-0.6815305366559878,-0.7385033792026166,-0.7385033792026166,-0.4884986733916273,-0.4884986733916273,-0.20621361772555416,-0.20621361772555416,-0.5191634962572655,-0.6845613203194145,-0.7747399195001932,-0.7803473758302755,-0.14534611300641212,-0.49777792516089786,-0.6386158986152826,-0.7519868956395256,-0.7586252859511122,-0.2525666411093297,14.377242599948389,14.377242599948389,14.763314940546636,14.763314940546636,16.481880717048654,16.481880717048654,9.98558268630967,9.98558268630967,5.881910262123668,5.881910262123668,10.636680955536306,14.851209694768357,17.647501308168387,17.832885798252974,5.437718322091044,10.178318677462315,13.561447846899938,16.909041510375474,17.122208096225847,6.3241300133637,39.335283635969084,39.335283635969084,0.0,43.70587070663232,0.0,39.335283635969084,43.70587070663232,0,0
+2017/02/15 02:00:00,23.72217466366277,0,44.71652278315947,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250792399849784,0,0,0.0,9.226170270615334,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0023807407948019457,7.532497923430561e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6784905324879306,-0.6784905324879306,-0.7000839394887313,-0.7000839394887313,-0.7700206859649005,-0.7700206859649005,-0.5587462241970212,-0.5587462241970212,-0.08884917271646989,-0.08884917271646989,-0.5807555816588831,-0.7359571392616481,-0.8732017171903362,-0.8638964019132446,-0.0760931625847153,-0.5711063133430646,-0.715340312307909,-0.871490683445666,-0.8645552243093577,-0.23790928154308028,14.675551911260243,14.675551911260243,15.307600073710915,15.307600073710915,17.492519769041735,17.492519769041735,11.537298078115157,11.537298078115157,5.163471076611685,5.163471076611685,12.067454582344922,16.402090708239214,21.095470257822356,20.752285297514206,5.119890478839636,11.832438308420095,15.766297867400837,21.03209845853327,20.77646541998807,6.174548884759446,23.72217466366277,23.72217466366277,0.0,26.35797184851419,0.0,23.72217466366277,26.35797184851419,0,0
+2017/02/15 03:00:00,28.344434896093727,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.525071809620831,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6743992030766263,-0.6743992030766263,-0.6996811970961695,-0.6996811970961695,-0.7704604886268746,-0.7704604886268746,-0.5809104610836814,-0.5809104610836814,-0.018621601988065457,-0.018621601988065457,-0.6153457420791691,-0.7746697122008062,-0.91712063056379,-0.9056965724530923,-0.05325012017138839,-0.6123641577798464,-0.7598565999694034,-0.9249251657938262,-0.9149629545175793,-0.23589379443065436,14.558068961975039,14.558068961975039,15.295627272071314,15.295627272071314,17.506922947516784,17.506922947516784,12.071259746375333,12.071259746375333,5.007178301246185,5.007178301246185,12.94313095747681,17.645188716923244,22.76307717012017,22.3217578956002,5.058705292271256,12.86560477450304,17.161954290959372,23.0675937204888,22.67932126366793,6.154686153186788,28.344434896093727,28.344434896093727,0.0,31.49381655121525,0.0,28.344434896093727,31.49381655121525,0,0
+2017/02/15 04:00:00,23.72225499500506,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525159571327271,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7460482964002684,-0.7460482964002684,-0.774683920592637,-0.774683920592637,-0.8484796126992138,-0.8484796126992138,-0.683202668315009,-0.683202668315009,0.037062875623876695,0.037062875623876695,-0.7102590414907641,-0.8655137202101193,-1.0133648592298743,-0.9972879543095378,-0.023915598232939227,-0.7022888392353392,-0.8473226794983647,-1.020624461682299,-1.0055794715098214,-0.25696425465451805,16.719944937536596,16.719944937536596,17.6456567168742,17.6456567168742,20.191592287074656,20.191592287074656,14.811758752118465,14.811758752118465,5.028437135073986,5.028437135073986,15.612409680848941,20.811676207946746,26.68576338767683,26.005596575888873,5.011840075986797,15.373271842917347,20.149914004877914,26.99607898060765,26.355168075578533,6.370769588532582,23.72225499500506,23.72225499500506,0.0,26.358061105561177,0.0,23.72225499500506,26.358061105561177,0,0
+2017/02/15 05:00:00,42.46588807076855,0,450.13776855370463,0,0,0,0.0,0.011827710143495153,4.633261998087618,9.319298099999997,25.555573451546493,0,1.3708203900132019,0.9974955285286248,0.5776108924491162,0,0,361.41188727234425,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2938979372548545,1785.8497531775733,1.010526849353596,1712.714574166032,2.0893413739624407,3661.0546069472744,1.4728538236428221,2216.6374929712815,0.0,0.0,1.1995315173790289,1455.7226877534229,1.1247153647595383,1383.9945084316712,2.4449147439142394,3243.8516203541813,1.1919285332286336,1928.6523303895651,0.0,0.0,0,0,0,0,0,0,0,0,0.02396566821784532,0.0007582570369638382,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.708992832407562,-0.708992832407562,-0.7403784380291504,-0.7403784380291504,-0.811123853575569,-0.811123853575569,-0.6598496850858026,-0.6598496850858026,0.17153470229255016,0.17153470229255016,-0.5646586704569674,-0.6344254980685433,-0.6952554557382554,-0.6918167269304456,0.007007757098309457,-0.5828625627277528,-0.6511990437311571,-0.7183056931867491,-0.7193889133888617,-0.2423844528589075,15.574235296016084,15.574235296016084,16.54081626112739,16.54081626112739,18.87413227329405,18.87413227329405,14.146148756571804,14.146148756571804,5.60988640575286,5.60988640575286,11.6776516446009,13.448369351153517,15.164519351427828,15.063234670153207,5.0010165760498495,12.119309304259104,13.905582299087328,15.856619613195292,15.889707571063624,6.2192617064542475,42.46588807076855,42.46588807076855,0.0,47.18432007863172,0.0,42.46588807076855,47.18432007863172,0,0
+2017/02/15 06:00:00,73.3110654755959,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5250224456400149,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5554801347876593,-0.5554801347876593,-0.5925551487533196,-0.5925551487533196,-0.6535949354814805,-0.6535949354814805,-0.5220368362399675,-0.5220368362399675,0.49504595251984274,0.49504595251984274,-0.7252037776764144,-0.8204332125876246,-0.891145590904302,-0.8858893321892709,0.12523841883261255,-0.6748414280040913,-0.7732866288003526,-0.8586787477392157,-0.8555178222614837,-0.15160330339724623,11.460415468031286,11.460415468031286,12.360334176136703,12.360334176136703,13.971885133305292,13.971885133305292,10.699773396148714,10.699773396148714,10.121187597295375,10.121187597295375,16.068191334151408,19.196977198555544,21.767302590153562,21.56913790419098,5.324907086672255,14.570732579890802,17.59967350263105,20.561421086031558,20.446341566649195,5.476256065764474,73.3110654755959,73.3110654755959,0.0,81.45673941732878,0.0,73.3110654755959,81.45673941732878,0,0
+2017/02/15 07:00:00,99.37078920294577,0,736.7359669274259,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.0,2.5201936371533186e-09,0.5250855520325911,0,0,0.0,506.0486755958891,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.039224368584458436,0.0012410316803719373,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4305744676558911,-0.4305744676558911,-0.47118079152813575,-0.47118079152813575,-0.5260281843210023,-0.5260281843210023,-0.4073675799919172,-0.4073675799919172,0.7454095923305073,0.7454095923305073,-0.6903455520087338,-0.8176264562037853,-0.9266589421867069,-0.9175129871166564,0.22904882437317836,-0.6578136905458444,-0.777211043603398,-0.9001319132787581,-0.8924049691948899,-0.024712475136253215,8.866360440725245,8.866360440725245,9.635819121127838,9.635819121127838,10.788007844148368,10.788007844148368,8.458413213657366,8.458413213657366,16.69969736415557,16.69969736415557,15.02005857580697,19.099255785074178,23.13557367667906,22.778327668780477,6.088501216816226,14.089237794571744,17.729032568107726,22.10870386888253,21.814949634868796,5.01264227514514,99.37078920294577,99.37078920294577,0.0,110.41198800327308,0.0,99.37078920294577,110.41198800327308,0,0
+2017/02/15 08:00:00,150.17905167026916,0,899.9565583935447,0,0,0,0.0,0.0,10.843536854875632,0.0,69.33401494192633,0,39.380909295966944,0.1249050914503915,27.06371028359561,0,0,34.123507004774694,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2026.8280510253549,0.0,3334.3343870247563,0.0,3591.298268250379,0.0,3601.351370794273,0.0,1905.0268397920154,0.0,1512.6771280987227,0.0,2882.8304526185743,0.0,2834.942597146421,0.0,3066.367639315,0.0,1928.5958037246533,0,0,0,0,0,0,0,0,0.04791435377269484,0.0015159767543083819,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5316002246627889,-0.5316002246627889,-0.5597639798748317,-0.5597639798748317,-0.6274103422303309,-0.6274103422303309,-0.43953519525604373,-0.43953519525604373,0.42998042354037685,0.42998042354037685,-0.5475474791322625,-0.6310729909274296,-0.6733944480827245,-0.6890660002459451,-0.04356047417925748,-0.547873374483759,-0.629460654436981,-0.6792479242894727,-0.6988544946148357,-0.19921483647885416,10.912339203978547,10.912339203978547,11.561350219255914,11.561350219255914,13.260769511651745,13.260769511651745,9.030062289860979,9.030062289860979,8.855629827380284,8.855629827380284,11.27560920917692,13.358449989695657,14.529328112769079,14.982582298169604,5.039282852420001,11.283147830424028,13.315378303105419,14.697379946453992,15.271072844945849,5.82296315687006,150.17905167026916,150.17905167026916,0.0,166.86561296696573,0.0,150.17905167026916,166.86561296696573,0,0
+2017/02/15 09:00:00,165.93607005591522,0,962.7675492730992,0,0,0,0.0,0.0,12.734656885179541,0.0,83.2008179303116,0,39.380909295966944,0.08996826669167739,27.097742475311204,0,0,43.69896911551299,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1655.0977170765682,0.0,2698.302741112666,0.0,3123.728238208935,0.0,3280.0551225464824,0.0,0.0,0.0,1127.0088122408238,0.0,2631.3705573918583,0.0,2628.093019093675,0.0,2901.4641454139755,0.0,344.1132669005328,0,0,0,0,0,0,0,0,0.051258457451641995,0.0016217818636777178,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5556575953256997,-0.5556575953256997,-0.5902893520934225,-0.5902893520934225,-0.6286252986309793,-0.6286252986309793,-0.3733737844619211,-0.3733737844619211,-0.10549187494799206,-0.10549187494799206,-0.4917774368945266,-0.5978387610113067,-0.5839476294253027,-0.5932050025689576,-0.22433127169365114,-0.4955130767533246,-0.5565482297119483,-0.5809624532110528,-0.5954458514626457,-0.3032218968874727,11.464580944672704,11.464580944672704,12.303625631340338,12.303625631340338,13.293107103203866,13.293107103203866,7.90245837391717,7.90245837391717,5.230480701205039,5.230480701205039,10.053259882489002,12.493438422445223,12.146088930866341,12.376639885834592,6.04403057442407,10.130933260275953,11.485507154514465,12.072537351291288,12.433006373887935,6.910727758829182,165.93607005591522,165.93607005591522,0.0,184.37341117323913,0.0,165.93607005591522,184.37341117323913,0,0
+2017/02/15 10:00:00,182.3163900395574,0,1017.8902993711357,0,0,0,0.0,0.0,11.745711980442081,0.0,106.27511244621549,0,39.380909295966944,0.07500418072345609,21.407676933755198,0,0,45.58619044473324,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1089.9531960487539,0.0,2568.1656371492813,0.0,2335.5277599786004,0.0,2778.0582004028847,0.0,127.4566886204709,0.0,659.2592282287644,0.0,2250.8550279523192,0.0,1863.191026589643,0.0,2418.742993374901,0.0,25.85741427038108,0,0,0,0,0,0,0,0,0.05419323349664995,0.0017146361320341148,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4339603720967027,-0.4339603720967027,-0.4771121729906154,-0.4771121729906154,-0.5143277715407958,-0.5143277715407958,-0.2667750363163754,-0.2667750363163754,-0.217232661402165,-0.217232661402165,-0.469062566463437,-0.5536142011099875,-0.5590769557353731,-0.568256191649221,-0.24660156612458997,-0.4692696786047472,-0.5331139250327283,-0.5520026860051123,-0.5655051607122908,-0.3092651488977891,8.927811557717632,8.927811557717632,9.754156684281739,9.754156684281739,10.531305227442346,10.531305227442346,6.477752050550691,6.477752050550691,5.978872625023698,5.978872625023698,9.593925733566792,11.41669963537933,11.545109174428262,11.763793896407535,6.262166002084342,9.598013383082332,10.946347277320399,11.379065898252861,11.69787025790032,6.987942993551428,182.3163900395574,182.3163900395574,0.0,202.57376671061934,0.0,182.3163900395574,202.57376671061934,0,0
+2017/02/15 11:00:00,212.62268605844505,0,1111.456746342233,0,0,0,0.0,0.0,17.431039153748472,0.0,133.89528835348938,0,39.380909295966944,0.10152898577306078,18.38194506701292,0,0,70.66006394213949,579.4220997370198,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,921.8177747977121,0.0,3118.636945366648,0.0,2086.963628080987,0.0,3315.3129608495638,0.0,104.58717653410947,0.0,507.96922656558456,0.0,2822.324823598915,0.0,1602.2949855397899,0.0,1478.014219994315,0.0,16.067475404995196,0,0,0,0,0,0,0,0,0.059174780438682205,0.0018722488048553549,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3261026118594898,-0.3261026118594898,-0.3746250371347189,-0.3746250371347189,-0.4046055300000799,-0.4046055300000799,-0.15153440713168653,-0.15153440713168653,-0.1707116053219034,-0.1707116053219034,-0.46599207336464504,-0.5439537941524403,-0.5510770838726453,-0.5658369467909025,-0.27103742983719314,-0.4664166813514787,-0.5336891662890316,-0.5432930625864248,-0.6578714116966964,-0.31747467075057,7.211233095091586,7.211233095091586,7.922047233578041,7.922047233578041,8.41139674286876,8.41139674286876,5.475822859731792,5.475822859731792,5.604040075552263,5.604040075552263,9.533542067214185,11.192785212321937,11.357501199308217,11.705803522312252,6.525494545535707,9.541868113977586,10.959297154518666,11.17761817921523,14.09084876619329,7.095313198140644,212.62268605844505,212.62268605844505,0.0,236.24742895382784,0.0,212.62268605844505,236.24742895382784,0,0
+2017/02/15 12:00:00,228.85017872669343,0,1195.5901517740567,0,0,0,0.0,0.0,17.118903147242808,0.0,147.76209134187457,0,39.38090929596693,0.1342065034115639,21.022093235743178,0,0,97.78242600068924,583.1976143414776,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2930.130096801547,0.0,3913.8942950519504,0.0,4001.694331257918,0.0,3524.5872404061292,0.0,12.479183901222683,0.0,2148.9627149772823,0.0,3335.747500761013,0.0,3157.3572285553964,0.0,3629.475383789567,0.0,3.178255524809775,0,0,0,0,0,0,0,0,0.0636541052620468,0.002013971519919645,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3934056303320379,-0.3934056303320379,-0.42043474892043137,-0.42043474892043137,-0.4566013039837322,-0.4566013039837322,-0.11245807776112854,-0.11245807776112854,-0.06155129887683645,-0.06155129887683645,-0.4595571832193829,-0.5314363089384263,-0.5416121933895336,-0.6282436986282599,-0.2611138007681838,-0.4571779927624202,-0.5254714092644274,-0.5324121102113274,-0.5922857869681608,-0.29719796903695683,8.224094292966058,8.224094292966058,8.685276709082913,8.685276709082913,9.351385496284749,9.351385496284749,5.261943160660039,5.261943160660039,5.078438455911268,5.078438455911268,9.408312356919637,10.90866248892894,11.13911925500291,13.282943440754579,6.4155242627512905,9.362462331185483,10.775658148928514,10.930567373716471,12.3535808981091,6.835296619631592,228.85017872669343,228.85017872669343,0.0,254.2779763629927,0.0,228.85017872669343,254.2779763629927,0,0
+2017/02/15 13:00:00,207.5979820754661,0,1131.2737738850276,0,0,0,0.0,0.0,16.798297350153536,0.0,129.49988082968767,0,39.380909295966944,0.10733600103937943,18.379583396164236,0,0,89.62770287494243,562.5263120907393,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3053.7379023933227,0.0,2951.0992823991746,0.0,4205.131763138051,0.0,2952.2563493435055,0.0,0.0,0.0,2286.4512417154,0.0,2388.80040486395,0.0,3347.9374953656707,0.0,2500.197801287478,0.0,0.0,0,0,0,0,0,0,0,0,0.06022985366366501,0.0019056305862471055,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.39920882770131916,-0.39920882770131916,-0.41819444181909976,-0.41819444181909976,-0.4678885537690887,-0.4678885537690887,-0.042409569528181444,-0.042409569528181444,-0.020967234150504496,-0.020967234150504496,-0.42127504208451877,-0.491825906705079,-0.511528916844604,-0.5639651418888099,-0.2442737751272967,-0.4070873147029521,-0.47683997636546277,-0.49437164012131396,-0.5258227137925204,-0.27375977440142496,8.320474677323134,8.320474677323134,8.645862227313188,8.645862227313188,9.57078987907488,9.57078987907488,5.037234336581648,5.037234336581648,5.009100635108439,5.009100635108439,8.700115770040355,10.054263833064084,10.470777301147251,11.661109717978832,6.23839101444257,8.453627561302042,9.748692852367896,10.107135968068889,10.783448788804662,6.556387735227162,207.5979820754661,207.5979820754661,0.0,230.66442452829565,0.0,207.5979820754661,230.66442452829565,0,0
+2017/02/15 14:00:00,205.30335086433223,0,1106.381831154018,0,0,0,0.0,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,0.10890044560470943,16.310247879458416,0,0,101.24684567491126,561.5055790723052,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3272.266687679586,0.0,3483.9056314631403,0.0,4498.409057759816,0.0,3568.4407509577113,0.0,0.0,0.0,2242.2826224831647,0.0,2765.844509640907,0.0,3441.9124102472756,0.0,2947.041388521214,0.0,0.0,0,0,0,0,0,0,0,0,0.05890458819503813,0.0018637001106059862,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.36010402056843943,-0.36010402056843943,-0.39940718414161125,-0.39940718414161125,-0.4364026425332871,-0.4364026425332871,-0.03435847683676763,-0.03435847683676763,-0.038424453716302404,-0.038424453716302404,-0.41951852736333656,-0.4809397016543521,-0.5062112128256949,-0.5374054047928036,-0.2466265768378143,-0.4060126793585515,-0.46336641674583784,-0.4875752509486947,-0.5117745606348352,-0.2747031608596389,7.698822085811557,7.698822085811557,8.323794468801466,8.323794468801466,8.972442190648025,8.972442190648025,5.024438337525353,5.024438337525353,5.030565043777656,5.030565043777656,8.66913130497403,9.83132548592161,10.356710102154949,11.043302792376139,6.262422686283301,8.435308863580772,9.482228644480927,9.966606020806068,10.476076021353094,6.5671661667953884,205.30335086433223,205.30335086433223,0.0,228.11483429370247,0.0,205.30335086433223,228.11483429370247,0,0
+2017/02/15 15:00:00,189.50867664190363,0,1157.841448158256,0,0,0,0.0,0.0,16.86091074341296,0.0,115.5196477718057,0,39.380909295966944,0.2372519919888591,14.077981636274954,0,0,208.84300914372417,540.8593851202742,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3172.1907807085863,0.0,4512.307284338633,0.0,4297.530030644524,0.0,4690.118854161774,0.0,0.0,0.0,2097.2567091792926,0.0,3742.2767889243023,0.0,3162.0145390190055,0.0,3915.774716402319,0.0,0.0,0,0,0,0,0,0,0,0,0.061644336320825145,0.0019503838315439066,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3803139977614536,-0.3803139977614536,-0.41598325742868403,-0.41598325742868403,-0.46482283581890244,-0.46482283581890244,-0.10237301981780303,-0.10237301981780303,-0.10404402700350993,-0.10404402700350993,-0.4389479228891501,-0.49756383493151274,-0.5221119240311813,-0.5453388134460447,-0.26739639943031024,-0.4300924333678282,-0.4835085149581213,-0.5074863548782784,-0.5325047068734376,-0.2965544388923675,8.011952418233307,8.011952418233307,8.607171101391927,8.607171101391927,9.51065488312014,9.51065488312014,5.217047648449778,5.217047648449778,5.2241945276500275,5.2241945276500275,9.019227905455978,10.173829973735906,10.701426955011272,11.224639596735017,6.484664205714509,8.857651976404611,9.883471092185957,10.383951042941163,10.932648135012712,6.8273290757462775,189.50867664190363,189.50867664190363,0.0,210.56519626878182,0.0,189.50867664190363,210.56519626878182,0,0
+2017/02/15 16:00:00,182.8474388677382,0,1146.2866724653163,0,0,0,0.0,0.0,17.02830042034,0.0,108.75639138185811,0,39.380909295966944,0.2531788308523564,13.996683736266476,0,0,197.29279936315197,540.8548192079068,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3002.545816458009,0.0,5193.322524667537,0.0,4021.103346879969,0.0,5382.540848521788,0.0,0.0,0.0,2065.1651584775186,0.0,4495.461850319944,0.0,3024.281797010055,0.0,4696.334225409721,0.0,441.0031004540048,0,0,0,0,0,0,0,0,0.061029151504233645,0.0019309198127661423,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.39796352462483797,-0.39796352462483797,-0.41950565499778764,-0.41950565499778764,-0.48245233723265385,-0.48245233723265385,-0.16290096433373014,-0.16290096433373014,-0.14671454649035606,-0.14671454649035606,-0.46196129591542257,-0.5179540556930121,-0.5418713959048571,-0.5638914783837732,-0.2861472783893522,-0.4591760084928087,-0.5095325567817803,-0.5318101857662898,-0.560013036918278,-0.31622004385059455,8.299671121511892,8.299671121511892,8.668904728096592,8.668904728096592,9.861996754082142,9.861996754082142,5.549968481640818,5.549968481640818,5.446007163905762,5.446007163905762,9.454890232893291,10.61023104801815,11.145048091464858,11.659353934009516,6.70090722314859,9.400950240864148,10.427811103881993,10.917050440568161,11.567242908064628,7.07871949379286,182.8474388677382,182.8474388677382,0.0,203.16382096415353,0.0,182.8474388677382,203.16382096415353,0,0
+2017/02/15 17:00:00,206.7326823616989,0,1232.1697870087194,0,0,0,0.0,0.0,17.894946263142337,0.0,131.64086955684016,0,39.380909295966944,0.33063212881130183,14.0533499144838,0,0,219.94601460770545,550.8491897379404,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3032.3673667633834,0.0,5010.160375170868,0.0,3970.3107614282185,0.0,5210.616905964688,0.0,0.0,0.0,2250.9205877631425,0.0,4408.25999258229,0.0,3141.132978091544,0.0,4631.525614748897,0.0,0.0,0,0,0,0,0,0,0,0,0.06560163213671993,0.002075589912696087,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4219790077628839,-0.4219790077628839,-0.4379169812988109,-0.4379169812988109,-0.5006705327402179,-0.5006705327402179,-0.15168666794530553,-0.15168666794530553,-0.11012570318117787,-0.11012570318117787,-0.4783087451137145,-0.528971539379827,-0.5528214831030825,-0.5755230916778046,-0.29119674052863725,-0.4810551916643937,-0.5246351389062394,-0.5457609981634873,-0.5751229976146216,-0.3198124411752402,8.712570681688135,8.712570681688135,9.000244261198844,9.000244261198844,10.239160411894787,10.239160411894787,5.476780509812997,5.476780509812997,5.251184686875774,5.251184686875774,9.778213503309559,10.85351670499847,11.398173210122707,11.939511417631422,6.761674698541441,9.833663762198753,10.757134249564118,11.234366054602944,11.929777334763727,7.126410469347263,206.7326823616989,206.7326823616989,0.0,229.70298040188766,0.0,206.7326823616989,229.70298040188766,0,0
+2017/02/15 18:00:00,219.26720068708408,0,1184.392035965389,0,0,0,0.0,0.0,23.68207837024315,0.0,133.89528835348938,0,39.380909295966944,0.24728401933301958,18.629665445597293,0,0,151.40103109691697,571.6164222053978,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3221.200753247879,0.0,4155.028255765922,0.0,4111.835485657742,0.0,4284.446903363073,0.0,0.0,0.0,2613.622555490308,0.0,3637.635732226785,0.0,3440.295833941151,0.0,3809.2092355351833,0.0,0.0,0,0,0,0,0,0,0,0,0.06305790928187428,0.001995108294689866,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4548073459017361,-0.4548073459017361,-0.5002152020180894,-0.5002152020180894,-0.517695525658442,-0.517695525658442,-0.1182581307505856,-0.1182581307505856,-0.07170097862667099,-0.07170097862667099,-0.47993429817337063,-0.5376860639939216,-0.5494414084241126,-0.5730234807098542,-0.28339853347604976,-0.48403677746822,-0.5316207198126631,-0.5428986915363743,-0.5737079086998244,-0.3096688112652608,9.317019307700576,9.317019307700576,10.22955922560756,10.22955922560756,10.604585325848149,10.604585325848149,5.289676637419248,5.289676637419248,5.106446407313214,5.106446407313214,9.81099382544474,11.049671394098894,11.319483998744019,11.87881100989567,6.668280020114182,9.894229850645715,10.912799002698009,11.168574443013284,11.895404669810262,6.9931556866335995,219.26720068708408,219.26720068708408,0.0,243.63022298564897,0.0,219.26720068708408,243.63022298564897,0,0
+2017/02/15 19:00:00,219.56068894355727,0,1136.9925193693384,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.16798048090689496,26.71623776612972,0,0,111.45288167411974,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4165.311150428809,0.0,3557.1081834592906,0.0,5017.877920213759,0.0,3655.106167895593,0.0,0.0,0.0,3534.300774598946,0.0,3048.9976422472273,0.0,4306.13164286081,0.0,3153.721520293643,0.0,0.0,0,0,0,0,0,0,0,0,0.06053432390916262,0.0019152638125813817,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.41959337755569004,-0.41959337755569004,-0.47922652290161966,-0.47922652290161966,-0.47839808172135895,-0.47839808172135895,-0.10664561745985343,-0.10664561745985343,-0.06076005159734426,-0.06076005159734426,-0.47322119856398925,-0.5240855373837655,-0.5379498376119407,-0.5570532181184941,-0.2647585262414902,-0.4778338209777423,-0.5226433553397699,-0.5319623064561049,-0.5575522534505106,-0.2890273455322616,8.670448944284004,8.670448944284004,9.796707072280967,9.796707072280967,9.780012073532006,9.780012073532006,5.235552263628605,5.235552263628605,5.076434420959586,5.076434420959586,9.676356331082076,10.744976725301186,11.055659945718745,11.49738756422019,6.455432034565163,9.768657867218622,10.713136937112779,10.920465010955127,11.509138783861275,6.735435333040726,219.56068894355727,219.56068894355727,0.0,243.95632104839694,0.0,219.56068894355727,243.95632104839694,0,0
+2017/02/15 20:00:00,210.69308719173605,0,1114.0294596820152,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.1634093454943797,27.097742475311204,0,0,123.98017449934083,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4023.3678447939465,0.0,3463.3281516443703,0.0,4856.184086190742,0.0,3553.9679120578344,0.0,0.0,0.0,3473.1117953378707,0.0,3017.491304919803,0.0,4217.12444452586,0.0,3099.3547397638004,0.0,0.0,0,0,0,0,0,0,0,0,0.05931175360251814,0.0018765825402809525,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4278367638286807,-0.4278367638286807,-0.47427855770237176,-0.47427855770237176,-0.4856058504956228,-0.4856058504956228,-0.11218548468255232,-0.11218548468255232,-0.08663518627148939,-0.08663518627148939,-0.47049535565539247,-0.5165208660804015,-0.5313773261367075,-0.5475043254383144,-0.25886099914526717,-0.4771170003749796,-0.5168437017430219,-0.5273848207655454,-0.5490945170396627,-0.283166027374337,8.8170334313985,8.8170334313985,9.697433718786314,9.697433718786314,9.926257088601261,9.926257088601261,5.260674117513474,5.260674117513474,5.155422990653008,5.155422990653008,9.62224168709075,10.578969786917071,10.907339758640035,11.274611321735605,6.391136909637311,9.754253613720394,10.586003843193367,10.818155262150327,11.311436278221478,6.6655348318361405,210.69308719173605,210.69308719173605,0.0,234.10343021304004,0.0,210.69308719173605,234.10343021304004,0,0
+2017/02/15 21:00:00,212.80593520952254,0,1070.023640848373,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.13767409792850704,24.764531945436712,0,0,115.46470817824238,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3790.8959032591647,0.0,3308.0626218697535,0.0,4605.602062314154,0.0,3393.810112322562,0.0,0.0,0.0,3366.639272427503,0.0,2949.026677943899,0.0,4090.1803094538222,0.0,3018.6851511042523,0.0,0.0,0,0,0,0,0,0,0,0,0.05696885121241164,0.0018024547417956668,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4453038768630971,-0.4453038768630971,-0.47406946678839174,-0.47406946678839174,-0.5029339261154512,-0.5029339261154512,-0.1248657019477361,-0.1248657019477361,-0.12988292686666003,-0.12988292686666003,-0.46822550541275654,-0.5112306603354413,-0.5260822226826449,-0.5407835448999008,-0.2556597182236785,-0.47665508983920957,-0.5131980927605329,-0.5236373666378997,-0.5433177226375255,-0.2799623417496567,9.13727458849759,9.13727458849759,9.69326187882831,9.69326187882831,10.287019698208596,10.287019698208596,5.322974751612222,5.322974751612222,5.349470756700825,5.349470756700825,9.577423989220577,10.464347193145542,10.789207170647103,11.120184796104496,6.356849267673567,9.744983427669979,10.506834057353245,10.735072590233827,11.178183908596765,6.627941290150417,212.80593520952254,212.80593520952254,0.0,236.4510391216917,0.0,212.80593520952254,236.4510391216917,0,0
+2017/02/15 22:00:00,199.17956859528795,0,1084.7103760588782,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.1858886693572004,27.0977424753112,0,0,165.64179590129208,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2850.658922883402,0.0,3972.7598717749825,0.0,3645.5336599921084,0.0,4047.0921189920077,0.0,0.0,0.0,2588.898257342891,0.0,3732.850143785772,0.0,3321.964207121626,0.0,3794.2562250268898,0.0,0.0,0,0,0,0,0,0,0,0,0.05775078387358162,0.0018271945461430586,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5313667954334462,-0.5313667954334462,-0.5714806178043743,-0.5714806178043743,-0.5830255546898037,-0.5830255546898037,-0.15983314751221625,-0.15983314751221625,-0.2054064063228563,-0.2054064063228563,-0.47468203667927134,-0.5211572925530875,-0.5317333240956199,-0.5498452005560897,-0.26996257000865814,-0.48754064281372544,-0.5280012344263683,-0.533799076439372,-0.5563114977499498,-0.29633195289586484,10.907103616156363,10.907103616156363,11.841479508392865,11.841479508392865,12.123328712173148,12.123328712173148,5.52942624975816,5.52942624975816,5.875006991828869,5.875006991828869,9.705489371676904,10.680422540927793,10.915325549538707,11.328858359895207,6.513383019126039,9.96589552673521,10.831879643836245,10.961773091342366,11.479941580479078,6.82457854892418,199.17956859528795,199.17956859528795,0.0,221.31063177254217,0.0,199.17956859528795,221.31063177254217,0,0
+2017/02/15 23:00:00,140.7913525119399,0,1028.6300670543571,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.3722791473733827,21.234140556790283,0,0,269.26807320321933,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,415.6595838635785,0.0,0.0,0.0,0.0,0.0,3706.5533115586395,0.0,5336.7943150173905,0.0,4463.084720579951,0.0,5407.566757313611,0.0,0.0,0.0,3397.2514839157448,0.0,5058.044645574968,0.0,4115.539914433397,0.0,5135.687120805902,0.0,1619.9387387443078,0,0,0,0,0,0,0,0,0.054765026683122164,0.001732727269881366,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.673105902164424,-0.673105902164424,-0.6974858694978462,-0.6974858694978462,-0.7206529433954957,-0.7206529433954957,-0.3852818469619329,-0.3852818469619329,-0.4439565590400533,-0.4439565590400533,-0.5057597446634202,-0.561039705714824,-0.5630035959517284,-0.5873450974023451,-0.30020267539200785,-0.5247833231906832,-0.5752205429946295,-0.5707066825972738,-0.5990381105287856,-0.3313131398598778,14.521082380953857,14.521082380953857,15.230487285579855,15.230487285579855,15.928382408653036,15.928382408653036,8.091591425026763,8.091591425026763,9.112106341697299,9.112106341697299,10.347082209012981,11.591562287151376,11.638209597167844,12.230269440018915,6.872729539285103,10.76041441513479,11.932149923502905,11.822792069075604,12.523821045929196,7.282767410821776,140.7913525119399,140.7913525119399,0.0,156.43483612437765,0.0,140.7913525119399,156.43483612437765,0,0
+2017/02/16 00:00:00,91.26553656598169,0,887.4755281774244,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.5203539715136596,11.802226333175463,0,0,315.1781784517045,519.0618209569036,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1508.6563388011948,0.0,880.8743342105704,0.0,2096.7968486680734,0.0,0.0,0.0,0.0,0.0,3582.135583609823,0.0,5974.452362342773,0.0,4347.751296800383,0.0,6096.637572658293,0.0,4709.869834912699,0.0,3355.9421886763457,0.0,5827.995895268634,0.0,4165.465619110881,0.0,5929.692759050366,0.0,9154.171303005824,0,0,0,0,0,0,0,0,0.0472498544792063,0.001494952459856621,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7881836309138996,-0.7881836309138996,-0.7984982381380151,-0.7984982381380151,-0.8197786896548603,-0.8197786896548603,-0.6333808591462076,-0.6333808591462076,-0.5449278083471211,-0.5449278083471211,-0.536850353303474,-0.6013497954053717,-0.5931644485938168,-0.62422965833111,-0.33682741671644556,-0.5623098037405789,-0.6201785206876226,-0.6047355703568212,-0.6399095617340389,-0.37332383524094653,18.094195606848714,18.094195606848714,18.442122501924928,18.442122501924928,19.174159379790595,19.174159379790595,13.420298246182398,13.420298246182398,11.215178119617661,11.215178119617661,11.030717842133967,12.582558130247918,12.375621795650716,13.176414925006668,7.35972665673215,11.621711187418583,13.069610750067753,12.669005142744695,13.596511371985201,7.901677785000686,91.26553656598169,91.26553656598169,0.0,101.40615173997965,0.0,91.26553656598169,101.40615173997965,0,0
+2017/02/16 01:00:00,39.340132342703185,0,569.9575149152857,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.578484283644101e-09,9.542811343701526,0,0,0.0,516.7219861464696,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030344960265420825,0.0009600933906157569,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7433487165263474,-0.7433487165263474,-0.7658084174063033,-0.7658084174063033,-0.7916961461289692,-0.7916961461289692,-0.5863899477297138,-0.5863899477297138,-0.2254277814203664,-0.2254277814203664,-0.8127283268081684,-0.8652338615266435,-0.8398989762548705,-0.8729754285437633,-0.12179775955442487,-0.7636381956294364,-0.8410667523214955,-0.8303277336409559,-0.8665879731544308,-0.23124035413042957,16.634484758232404,16.634484758232404,17.354989403478257,17.354989403478257,18.212171374621818,18.212171374621818,12.206552674260962,12.206552674260962,6.054283726973068,6.054283726973068,18.929514404076926,20.801391546041486,19.883803757235498,21.0870822539478,5.307288527544273,17.28442738305671,19.925511535057808,19.544109578980184,20.851184496978476,6.109477475974302,39.340132342703185,39.340132342703185,0.0,43.7112581585591,0.0,39.340132342703185,43.7112581585591,0,0
+2017/02/16 02:00:00,23.722071617035255,0,44.72095431919441,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249761933574639,0,0,0.0,9.230601806650276,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0023809767330629146,7.533244415642012e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8269897533476221,-0.8269897533476221,-0.856140811620022,-0.856140811620022,-0.8816760054638915,-0.8816760054638915,-0.671357347783333,-0.671357347783333,-0.07668644587756096,-0.07668644587756096,-0.8832784818148112,-0.966033211125,-0.9834536125609226,-1.0124836045795014,-0.05363898317114734,-0.9032471695891713,-0.9885085135912657,-1.0042764196451512,-1.0384354638396087,-0.24114612100433777,19.42654300600151,19.42654300600151,20.46898989460992,20.46898989460992,21.41110882022552,21.41110882022552,14.471191307357756,14.471191307357756,5.121767784004376,5.121767784004376,21.471127127227476,24.711534324428854,25.42816590689732,26.648227859922912,5.05956593334993,22.22782287269611,25.63830321003212,26.30005890217258,27.7657028435562,6.206804989019787,23.722071617035255,23.722071617035255,0.0,26.357857352261394,0.0,23.722071617035255,26.357857352261394,0,0
+2017/02/16 03:00:00,28.344480304922957,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251172184500591,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8307897631635468,-0.8307897631635468,-0.8606807380255583,-0.8606807380255583,-0.884966146581837,-0.884966146581837,-0.6804113442915588,-0.6804113442915588,0.003827111511903924,0.003827111511903924,-0.9124377482731701,-1.0020589390052124,-1.0253774243806038,-1.0553764881577103,-0.030691285608315907,-0.967511895141375,-1.0549535768694518,-1.075249226660504,-1.1111800472028235,-0.22925862986301085,19.560419457431806,19.560419457431806,20.634521564052307,20.634521564052307,21.534449808110793,21.534449808110793,14.730958055107308,14.730958055107308,5.000303195921163,5.000303195921163,22.581536975784672,26.206423882832567,27.20031045040632,28.508504361268777,5.019499764485531,24.77190651864892,28.489834982396886,29.392977278869424,31.027114326730924,6.090500652983252,28.344480304922957,28.344480304922957,0.0,31.49386700546995,0.0,28.344480304922957,31.49386700546995,0,0
+2017/02/16 04:00:00,23.72229967456609,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5252042508882981,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9164552205677762,-0.9164552205677762,-0.9508174010893091,-0.9508174010893091,-0.9704787263135177,-0.9704787263135177,-0.7794187176911386,-0.7794187176911386,0.06707951097537819,0.06707951097537819,-1.0216468636972096,-1.1125528596078926,-1.1421105925679993,-1.1673785800425542,-0.001036470637464136,-1.082142767489605,-1.1695509085791451,-1.1945414707463902,-1.225898116527107,-0.25205809145823654,22.73722752733282,22.73722752733282,24.095264484481746,24.095264484481746,24.89329389171371,24.89329389171371,17.80209155797911,17.80209155797911,5.09316401021313,5.09316401021313,27.03994001524636,31.090421750137978,32.46856937910542,33.66892537342163,5.000022237955818,29.703043288688306,33.77304879568156,34.98112299086149,36.5225953773576,6.318788974286775,23.72229967456609,23.72229967456609,0.0,26.358110749517877,0.0,23.72229967456609,26.358110749517877,0,0
+2017/02/16 05:00:00,43.64007195247627,0,418.75241515897585,0,0,0,0.0,0.018779081367910417,4.633261998087618,9.319298099999997,25.555573451546493,0,2.082748503735318,1.4527982689297807,0.5776125488091407,0,0,330.0265338776155,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12320493384754627,491.4453693399409,0.11785585162556345,436.25225587569014,0.21299291015803745,788.7946045884266,0.0,0.0,0.0,0.0,3.089261204101047,3945.0671822118657,2.2086054497615346,2821.2697099061966,2.314820601757674,4764.552283457046,2.2260239318683634,3037.2515848565645,0.0,0.0,2.3608541288036675,3858.332725699651,1.591444892789948,2685.030008420548,2.6404790669083065,4559.394060301785,1.8935383962887293,2880.522092937857,0.0,0.0,0,0,0,0,0,0,0,0,0.022294688755769464,0.0007053884115525254,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8628876446705054,-0.8628876446705054,-0.8801816700329749,-0.8801816700329749,-0.887238544209803,-0.887238544209803,-0.7880196245490839,-0.7880196245490839,0.20377624368052308,0.20377624368052308,-0.7212689419522499,-0.7690768210981861,-0.7760932372160485,-0.7944608613471787,0.030495348521214608,-0.7614375588334144,-0.8122023442519256,-0.8096550623433314,-0.8353749816990033,-0.2524554955115325,20.715296633427144,20.715296633427144,21.355235659004776,21.355235659004776,21.619896400557238,21.619896400557238,18.08869987807377,18.08869987807377,5.861148970945052,5.861148970945052,15.947254710497617,17.46163681542434,17.69211990788014,18.305398664413772,5.019251570907343,17.21308186970876,18.91134693278093,18.823528705047508,19.722764556523302,6.322961778905466,43.64007195247627,43.64007195247627,0.0,48.488968836084744,0.0,43.64007195247627,48.488968836084744,0,0
+2017/02/16 06:00:00,76.18326654158925,0,329.42467793134034,0,0,0,0.003309685005105512,0.015589733042070179,5.555297838843742,9.319298099999997,57.911447091112116,0,1.6837157685119588,1.169600909474835,0.5250074155993791,0,0,116.48256285607552,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.459248998621508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3998075443977525,0.0,0.0,0.0,0.0,2.0827272924422005,2807.389467318136,1.5823864146988171,2065.0112452681533,2.4403030347302774,3538.6515667525523,1.511064361867966,2263.467164044297,0.0,0.0,2.1246082609771975,3041.319078792384,1.54494927430369,2156.4222753901986,2.6672448394558614,3691.28396089137,1.6364495635941694,2342.475575635399,0.0,0.0,0,0,0,0,0,0,0,0,0.017538813860119667,0.0005549158449724337,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7327897530304337,-0.7327897530304337,-0.7724405460445927,-0.7724405460445927,-0.7801369301298363,-0.7801369301298363,-0.6348780392884421,-0.6348780392884421,0.5253201238114212,0.5253201238114212,-0.6733710481954244,-0.7110529049256991,-0.7131918182161099,-0.7280719467436321,0.1377191031039469,-0.6842282922569415,-0.7243335490453322,-0.7160927676092068,-0.7382971272297675,-0.15505297131432083,16.303224815595073,16.303224815595073,17.571870366294263,17.571870366294263,17.825904217912353,17.825904217912353,13.460544547184597,13.460544547184597,10.772304840793836,10.772304840793836,14.528659283554248,15.63637877870859,15.70109413646425,16.156763850877567,5.392948040114987,14.841532231513142,16.041387598040572,15.789180838621633,16.47540716117257,5.498199680051741,76.18326654158925,76.18326654158925,0.0,84.64807393509916,0.0,76.18326654158925,84.64807393509916,0,0
+2017/02/16 07:00:00,102.22455102312709,0,834.7676406768051,0,0,0,0.0,0.01385275037490328,11.110595677687485,13.929299233552332,73.80580873715317,0,1.76067790270262,1.0793736356799204,0.5249430859766496,0,0,98.03361885882984,506.04673048643826,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8123424585011585,2567.7162780882927,1.1690330412779986,1881.3076822777225,2.0556439923482985,3180.9136325522722,1.1558641573503032,2036.4054702432861,0.0,0.0,2.0801230391894023,2514.6601130646013,1.5059350442053678,1785.0167538208098,2.420882365379081,3022.287160358819,1.6529262766516692,1914.7753977066545,0.0,0.0,0,0,0,0,0,0,0,0,0.044443647507589674,0.0014061660273622888,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6524440215654183,-0.6524440215654183,-0.6970876796105514,-0.6970876796105514,-0.6991758162191097,-0.6991758162191097,-0.5607591434029325,-0.5607591434029325,0.7784318866256806,0.7784318866256806,-0.6617621638390714,-0.6966799097861746,-0.6984188607819558,-0.7119429171947385,0.194025232060545,-0.6672051066336218,-0.7046751356091696,-0.6959195672040319,-0.7166842871958636,-0.04855130292642757,13.940004203740742,13.940004203740742,15.218694450277724,15.218694450277724,15.28061312103776,15.28061312103776,11.584911884252264,11.584911884252264,17.769408525161623,17.769408525161623,14.199770740506253,15.206624990715852,15.258145672980334,15.663283199377616,5.780576470301028,14.353246806958595,15.444582831750566,15.1841390120169,15.807186706584119,5.048800980038777,102.22455102312709,102.22455102312709,0.0,113.58283447014121,0.0,102.22455102312709,113.58283447014121,0,0
+2017/02/16 08:00:00,150.3353301839467,0,1058.5801451949667,0,0,0,0.0,0.0,10.576478033044985,0.0,69.33401494192633,0,39.380909295966944,0.54402619182561,27.06792651872857,0,0,192.74709380619643,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2100.7986125570296,0.0,1289.4016127274315,0.0,2578.2053025241275,0.0,895.097918368252,0.0,0.0,0.0,5911.527806912304,0.0,7025.391105656234,0.0,6773.607915916498,0.0,7063.660294800512,0.0,3025.6722299407797,0.0,5833.225175456247,0.0,6918.490981354783,0.0,6625.491295717638,0.0,6890.934550352844,0.0,6407.637229505621,0,0,0,0,0,0,0,0,0.056359591027550775,0.001783178174236051,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7311733992975094,-0.7311733992975094,-0.7521166961910561,-0.7521166961910561,-0.7635338871765109,-0.7635338871765109,-0.6835207051893647,-0.6835207051893647,0.19971613537002897,0.19971613537002897,-0.6503323732760975,-0.6962857867018692,-0.6879326731574051,-0.705475548250032,-0.1763537529432348,-0.6582201839093478,-0.7086648242569904,-0.6895090392027189,-0.7129436157188085,-0.2835090139709891,16.252938516104066,16.252938516104066,16.91319148225402,16.91319148225402,17.281040991337107,17.281040991337107,14.820986377727408,14.820986377727408,5.827117215446066,5.827117215446066,13.881659732384833,15.194966281434631,14.949447832815409,15.468557025608462,5.6446825591921765,14.100585914980172,15.564357595529899,14.995550279518255,15.693574362170324,6.669585257418504,150.3353301839467,150.3353301839467,0.0,167.03925575994077,0.0,150.3353301839467,167.03925575994077,0,0
+2017/02/16 09:00:00,165.46025892574812,0,1165.3741948923187,0,0,0,0.0,0.0,11.88231167376211,0.0,83.2008179303116,0,39.380909295966944,0.4665023479419593,27.097742475311204,0,0,246.30561473473256,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1183.3741877708521,0.0,853.3716158704624,0.0,1854.9766535530125,0.0,302.8690333286556,0.0,0.0,0.0,5501.885312658731,0.0,6774.824625327105,0.0,6477.866022086871,0.0,6717.201146556327,0.0,139.53986532852352,0.0,5196.095271527524,0.0,6562.856861049488,0.0,6152.586246879017,0.0,6405.723428034365,0.0,3618.0192001455366,0,0,0,0,0,0,0,0,0.06204538533650236,0.001963072742845709,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7482283401816482,-0.7482283401816482,-0.768446959409365,-0.768446959409365,-0.7837236147608754,-0.7837236147608754,-0.7147704204924675,-0.7147704204924675,-0.28671064887583536,-0.28671064887583536,-0.6310839438620627,-0.6899516930396724,-0.6770175952597436,-0.690924409356052,-0.2926807897667389,-0.639358252463767,-0.7049125847951395,-0.6816461976305417,-0.6985388967896704,-0.35966787347762297,16.789186252565912,16.789186252565912,17.441049086115896,17.441049086115896,17.945150748329368,17.945150748329368,15.748983081188996,15.748983081188996,6.707633725219338,6.707633725219338,13.358742970237529,15.008515460503702,14.633172921165496,15.037035741682729,6.7797391282327055,13.581559776194723,15.451692095702214,14.766661895114595,15.261706851471288,7.692256361901855,165.46025892574812,165.46025892574812,0.0,183.84473213972012,0.0,165.46025892574812,183.84473213972012,0,0
+2017/02/16 10:00:00,182.31411267841315,0,1216.497935595947,0,0,0,0.0,0.0,11.393746067737203,0.0,106.27511244621549,0,39.380909295966944,0.424939453082118,21.40743021295715,0,0,244.19382666954428,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,456.38357441342697,0.0,1198.884135629521,0.0,0.0,0.0,0.0,0.0,3864.6312193954354,0.0,6603.024994947133,0.0,6191.648553057759,0.0,6011.270477019596,0.0,6.5706307318649575,0.0,3121.4041216840133,0.0,6328.268621268717,0.0,5764.703970445596,0.0,5550.441985864591,0.0,3347.817882342838,0,0,0,0,0,0,0,0,0.0647672511592591,0.0020491906801807453,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5011297840794885,-0.5011297840794885,-0.7501958493743464,-0.7501958493743464,-0.7600930114572698,-0.7600930114572698,-0.5511937831549748,-0.5511937831549748,-0.2649748813585199,-0.2649748813585199,-0.5205531164293262,-0.678324796073801,-0.6643506141711314,-0.6301603436443004,-0.3007922743225271,-0.5082255318475906,-0.6897130807631362,-0.6655208383098119,-0.6264400909916625,-0.3598278831074392,10.248853344247834,10.248853344247834,16.851851995379562,16.851851995379562,17.16959295117917,17.16959295117917,11.360218015706963,11.360218015706963,6.457818590457677,6.457818590457677,10.667149449366917,14.67077869669258,14.272597930971017,13.334055831124147,6.880119612913916,10.399774314510182,15.001525535630577,14.305617962161861,13.234991051214521,7.69466419353067,182.31411267841315,182.31411267841315,0.0,202.57123630934794,0.0,182.31411267841315,202.57123630934794,0,0
+2017/02/16 11:00:00,212.3963060853043,0,1299.2383196461356,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.476839225765214,18.41299657416807,0,0,259.0044309134061,578.8593060696556,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,139.2618298841407,0.0,0.0,0.0,0.0,0.0,1679.254380478907,0.0,6607.930872251547,0.0,4789.947474492297,0.0,6116.937503845796,0.0,262.42572377147343,0.0,958.619625885704,0.0,6292.809976022227,0.0,4313.021131223847,0.0,5648.682316949182,0.0,6346.530914863407,0,0,0,0,0,0,0,0,0.06917241049244521,0.0021885668508333993,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4047356780698516,-0.4047356780698516,-0.6999086166643983,-0.6999086166643983,-0.7195396493492411,-0.7195396493492411,-0.46287947733082996,-0.46287947733082996,-0.21919809892065867,-0.21919809892065867,-0.4391486411715795,-0.6763520428211834,-0.6573551608544118,-0.6370948491624628,-0.3220484377930604,-0.40231348618985696,-0.684186511427036,-0.655428472614326,-0.6335674842664089,-0.3718072985569238,8.413604831626188,8.413604831626188,15.30238718315131,15.30238718315131,15.894315944418892,15.894315944418892,9.47274499105248,9.47274499105248,5.996701933475762,5.996701933475762,9.022929220586093,14.614054601437573,14.076445563727901,13.520314075028097,7.156370626522602,8.372628800366499,14.840318460860203,14.022793675464627,13.425309686046205,7.8780285383357835,212.3963060853043,212.3963060853043,0.0,235.9958956503381,0.0,212.3963060853043,235.9958956503381,0,0
+2017/02/16 12:00:00,228.63297678798776,0,1231.4503298898408,0,0,0,0.0,0.0,16.86091082671979,0.0,147.76209134187457,0,39.380909295966944,0.2513876746986709,20.945702446273383,0,0,133.09515571468285,583.7450627432679,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,981.6066233989814,0.0,5160.254426355529,0.0,5116.897536043983,0.0,4931.682525437547,0.0,0.0,0.0,0.0,0.0,4747.456959660716,0.0,4495.886181117303,0.0,4425.659789984355,0.0,0.0,0,0,0,0,0,0,0,0,0.06556332770680415,0.002074377987233942,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.24881250721346804,-0.24881250721346804,-0.6102962362600028,-0.6102962362600028,-0.6194069349793782,-0.6194069349793782,-0.3657075242041252,-0.3657075242041252,-0.11833388665345197,-0.11833388665345197,-0.36407710556745926,-0.64957500703037,-0.632288398182777,-0.6317405205920353,-0.314711536611019,-0.30645994263525533,-0.6515488809327399,-0.6256243930675774,-0.627201296554708,-0.3513238429485502,6.284958375369001,6.284958375369001,12.812061940994298,12.812061940994298,13.04934940557726,13.04934940557726,7.783897500248514,7.783897500248514,5.290048118441675,5.290048118441675,7.759005632199049,13.860780932335686,13.390992727541501,13.376315277917087,7.058856245336372,6.951908439382024,13.915248023799933,13.213350499282072,13.255211956136066,7.568205251369932,228.63297678798776,228.63297678798776,0.0,254.03664087554193,0.0,228.63297678798776,254.03664087554193,0,0
+2017/02/16 13:00:00,207.66480768243562,0,1152.4503918401801,0,0,0,0.0,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,0.185535355531834,18.430823041900762,0,0,110.80044602358993,562.5301868972443,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2429.1853380370567,0.0,3881.8078344276373,0.0,5390.138258008497,0.0,3776.2161040795568,0.0,0.0,0.0,1508.5746285053913,0.0,3480.1680922621817,0.0,4803.836819700096,0.0,3321.6942888798094,0.0,0.0,0,0,0,0,0,0,0,0,0.061357312489259436,0.0019413025975852823,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47655594362547793,-0.47655594362547793,-0.5525087117533579,-0.5525087117533579,-0.5479929226117303,-0.5479929226117303,-0.2527959532455733,-0.2527959532455733,-0.0759142688354773,-0.0759142688354773,-0.4151993022378655,-0.5974316941972967,-0.5916291126410366,-0.5897564713396989,-0.29603939272797813,-0.3803410106201634,-0.592085389561292,-0.5813771753880923,-0.5804410917768108,-0.3250639308020587,9.742994839571978,9.742994839571978,11.390870999693007,11.390870999693007,11.285914375409604,11.285914375409604,6.326541919707367,6.326541919707367,5.119327275689713,5.119327275689713,8.593503838527809,12.48314055817903,12.337130346603857,12.290321009484387,6.820964900215785,8.012382609143799,12.34855869660845,12.082732537631841,12.059731222182265,7.197110906488177,207.66480768243562,207.66480768243562,0.0,230.73867520270625,0.0,207.66480768243562,230.73867520270625,0,0
+2017/02/16 14:00:00,205.3948939535681,0,1138.6631918176888,0,0,0,0.0,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,0.2007794174156008,16.309911996883372,0,0,133.50259211760837,561.531193293279,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2850.653710820474,0.0,4334.328853038008,0.0,5323.5943403813035,0.0,4270.749846158495,0.0,0.0,0.0,2032.005142598722,0.0,3922.317474605794,0.0,4728.959549344691,0.0,3817.141684028861,0.0,0.0,0,0,0,0,0,0,0,0,0.060623271747791016,0.001918078060193826,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47822320941715335,-0.47822320941715335,-0.5436160022389706,-0.5436160022389706,-0.5499919987230555,-0.5499919987230555,-0.2323258133590736,-0.2323258133590736,-0.08990026007470689,-0.08990026007470689,-0.42512703055976686,-0.5805211135865741,-0.5816766555481689,-0.5798959030044856,-0.29451548565687335,-0.4024296596154529,-0.5751788400689214,-0.5742207600382108,-0.5728301692565462,-0.32254717876771843,9.776491777552053,9.776491777552053,11.18502886607611,11.18502886607611,11.332268149894915,11.332268149894915,6.119941575150207,6.119941575150207,5.167363085366901,5.167363085366901,8.7685271303272,12.06169602065411,12.090099350260033,12.046352440792944,6.802200368040644,8.374588364361529,11.931135535945586,11.907851847675687,11.874127938109368,7.163082170650853,205.3948939535681,205.3948939535681,0.0,228.2165488372979,0.0,205.3948939535681,228.2165488372979,0,0
+2017/02/16 15:00:00,189.33733342354174,0,1070.5572497870548,0,0,0,0.0,0.0,16.798297350153536,0.0,115.5196477718057,0,39.380909295966944,0.14933464746647288,14.057169155694819,0,0,121.55770244628138,540.8604934465159,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2798.2007867204675,0.0,5485.996533328443,0.0,4881.410891134862,0.0,5453.903500138943,0.0,0.0,0.0,1950.6444799667133,0.0,4969.306149301412,0.0,4152.563833490398,0.0,4904.674438264017,0.0,0.0,0,0,0,0,0,0,0,0,0.056997260947554765,0.0018033536060123765,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46571780141793895,-0.46571780141793895,-0.5169276247395839,-0.5169276247395839,-0.5581545310560833,-0.5581545310560833,-0.27886398679003227,-0.27886398679003227,-0.14944606375278016,-0.14944606375278016,-0.4497754785816251,-0.5858110329058397,-0.5883578785865252,-0.5912176925244035,-0.3086165183531798,-0.4379355561738759,-0.5845087028403436,-0.5852697928450238,-0.590160908806784,-0.3378943282100923,9.528168056738195,9.528168056738195,10.58783312521868,10.58783312521868,11.523335519769319,11.523335519769319,6.615152338706196,6.615152338706196,5.462785581923299,5.462785581923299,9.221364694754655,12.19219724691645,12.255460466702331,12.326833269620991,6.979581348293593,9.00058589293269,12.15995635552683,12.178789200385054,12.300417615263981,7.374765913582792,189.33733342354174,189.33733342354174,0.0,210.37481491504636,0.0,189.33733342354174,210.37481491504636,0,0
+2017/02/16 16:00:00,183.22845677575646,0,1257.173847499759,0,0,0,0.0,0.0,17.241363593746797,0.0,108.75639138185811,0,39.380909295966944,0.41932920966612186,13.998488092064203,0,0,308.1834098255982,540.8513837799034,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3025.64753151994,0.0,6380.156105188325,0.0,4813.649692930092,0.0,6368.106932373219,0.0,0.0,0.0,2140.914381354787,0.0,5798.036841548967,0.0,4003.607495664226,0.0,5762.790088415353,0.0,5741.581597965022,0,0,0,0,0,0,0,0,0.06693286683793717,0.002117709250695467,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5172089791129791,-0.5172089791129791,-0.5997731685984341,-0.5997731685984341,-0.6142895630637626,-0.6142895630637626,-0.36248014171894716,-0.36248014171894716,-0.1887089713789938,-0.1887089713789938,-0.482895392574846,-0.6131240431241486,-0.609964105614174,-0.6188415845359043,-0.3280589205497856,-0.480132691658273,-0.6182240323613807,-0.6113516289261309,-0.6235017097978609,-0.36327649291582575,10.593968071503525,10.593968071503525,12.542472822969003,12.542472822969003,12.915624407741362,12.915624407741362,7.7347343115435905,7.7347343115435905,5.738322567653952,5.738322567653952,9.87099915016239,12.885326431651222,12.803479678435309,13.034520066459422,7.2379558412457925,9.815002362241131,13.018337308192812,12.839365085920988,13.15717080701296,7.7468240083992725,183.22845677575646,183.22845677575646,0.0,203.58717419528494,0.0,183.22845677575646,203.58717419528494,0,0
+2017/02/16 17:00:00,208.10591850511076,0,1286.2464081843543,0,0,0,0.0,0.0,19.111199791047973,0.0,131.64086955684016,0,39.380909295966944,0.4757632761090442,14.06520138269232,0,0,274.560639742313,550.3111857789675,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3249.144153914096,0.0,6334.122458749179,0.0,4830.052719090237,0.0,6306.836563719506,0.0,0.0,0.0,2642.837753675049,0.0,5950.79637798354,0.0,4284.880326444016,0.0,5880.135688728145,0.0,4796.372417292214,0,0,0,0,0,0,0,0,0.06848071150302455,0.002166681976962098,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5203299404956124,-0.5203299404956124,-0.5947475642703586,-0.5947475642703586,-0.6121787982110631,-0.6121787982110631,-0.38080864675500004,-0.38080864675500004,-0.15119443586390757,-0.15119443586390757,-0.5085161462553248,-0.6364657910973535,-0.6242275082241749,-0.6388935327713301,-0.3344321602983152,-0.5137242783722982,-0.649605561720739,-0.6285947447148081,-0.6484173020593801,-0.3721569559764494,10.662250512405592,10.662250512405592,12.415418229154113,12.415418229154113,12.860797853565984,12.860797853565984,8.019834844313266,8.019834844313266,5.473688082575052,5.473688082575052,10.406001853044145,13.503331777806466,13.176358050714,13.568966742954743,7.326139020881257,10.518225454128157,13.861622771682562,13.29229308727325,13.828913795895303,7.883472482500608,208.10591850511076,208.10591850511076,0.0,231.22879833901195,0.0,208.10591850511076,231.22879833901195,0,0
+2017/02/16 18:00:00,219.71341671207415,0,1216.9627978859387,0,0,0,0.0,0.0,24.02992460262281,0.0,133.89528835348938,0,39.380909295966944,0.33934110751283086,18.635978150027846,0,0,183.45848956856932,572.1297256542955,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4106.822383358632,0.0,5614.0172082526615,0.0,5585.310898424217,0.0,5525.635008840988,0.0,0.0,0.0,3566.256361415918,0.0,5199.851482763806,0.0,5090.89763727773,0.0,5132.727835645959,0.0,0.0,0,0,0,0,0,0,0,0,0.06479200077190485,0.0020499737406729536,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4796621096324919,-0.4796621096324919,-0.5771627966970333,-0.5771627966970333,-0.5947523585784689,-0.5947523585784689,-0.3551068863329761,-0.3551068863329761,-0.10730034426414224,-0.10730034426414224,-0.5090090797868281,-0.6326745468724846,-0.6169481542466373,-0.6296658234978215,-0.321862879866787,-0.5165411236780654,-0.6366219616276455,-0.6214723012487333,-0.6388625754102819,-0.35549655975710176,9.805497023594285,9.805497023594285,11.979477154769896,11.979477154769896,12.415538913888511,12.415538913888511,7.62408078316524,7.62408078316524,5.238454862483195,5.238454862483195,10.416573212119971,13.401345339703298,12.984955746401894,13.320852892199142,7.153876269611274,10.579411033944638,13.50754621676522,13.103642573829035,13.568128189222548,7.629870851767208,219.71341671207415,219.71341671207415,0.0,244.12601856897126,0.0,219.71341671207415,244.12601856897126,0,0
+2017/02/16 19:00:00,219.60024880543276,0,1216.1985163173208,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.31448063227315076,26.609297476638933,0,0,190.65887862210204,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4995.475455260554,0.0,4639.897718691509,0.0,6392.288203493695,0.0,4563.411109184216,0.0,0.0,0.0,4551.967801996094,0.0,4316.056345304185,0.0,5956.955290182648,0.0,4217.968525772167,0.0,0.0,0,0,0,0,0,0,0,0,0.06475130985508319,0.002048686308428625,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.463393949771385,-0.463393949771385,-0.5923472336716477,-0.5923472336716477,-0.6015543483576625,-0.6015543483576625,-0.33475885921822346,-0.33475885921822346,-0.08975014140459135,-0.08975014140459135,-0.49899819437787535,-0.6127246034121906,-0.5996951445938465,-0.6114881532367296,-0.2993000948792171,-0.5073593630925987,-0.6224412297516683,-0.6041296392940203,-0.6209007012730011,-0.3287771180779717,9.482765183951273,9.482765183951273,12.355121175984166,12.355121175984166,12.58776673991592,12.58776673991592,7.330705831531901,7.330705831531901,5.166804414122154,5.166804414122154,10.203941153641807,12.874956463110735,12.540491885506611,12.842900518662375,6.861445002957765,10.381234957475698,13.129177002382406,12.653497706576232,13.08859815435521,7.24780699896877,219.60024880543276,219.60024880543276,0.0,244.00027645048084,0.0,219.60024880543276,244.00027645048084,0,0
+2017/02/16 20:00:00,210.753063802928,0,1147.4314756066674,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.22338595668629055,27.0977424753112,0,0,157.38219042399294,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4665.660993867192,0.0,4379.211075197558,0.0,5996.312760325867,0.0,4305.778193087444,0.0,0.0,0.0,4290.159999859298,0.0,4102.862091443757,0.0,5609.521657007346,0.0,3996.5293361977556,0.0,0.0,0,0,0,0,0,0,0,0,0.0610901016714425,0.001932848233570859,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4582498692748167,-0.4582498692748167,-0.5691122732972702,-0.5691122732972702,-0.5817204912506962,-0.5817204912506962,-0.3291194054593752,-0.3291194054593752,-0.11347398139880824,-0.11347398139880824,-0.4930147519680676,-0.5986311899575987,-0.5877523932398585,-0.5977343293748943,-0.289671623450475,-0.5034103410385599,-0.6092426001079071,-0.5932547612483186,-0.6078127991868465,-0.3175911199422104,9.383088591152287,9.383088591152287,11.784375366669693,11.784375366669693,12.091177976609075,12.091177976609075,7.252509683839605,7.252509683839605,5.26669983595076,5.26669983595076,10.078920032958635,12.513505698549338,12.24039480668658,12.490795853803121,6.743207286468319,10.297121662956869,12.784852458257475,12.37788915369238,12.748005813802777,7.096856737846807,210.753063802928,210.753063802928,0.0,234.17007089214223,0.0,210.753063802928,234.17007089214223,0,0
+2017/02/16 21:00:00,212.881558065255,0,1107.3149232297199,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.2129303769490924,24.76489852214857,0,0,152.75599055958926,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4284.577518052492,0.0,4103.562327690381,0.0,5568.531235829794,0.0,4038.773231778512,0.0,0.0,0.0,4103.574020748823,0.0,3949.162414196665,0.0,5362.311967053259,0.0,3850.3662997272577,0.0,0.0,0,0,0,0,0,0,0,0,0.05895426670829602,0.0018652719041366856,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4609244488043933,-0.4609244488043933,-0.5590161494582283,-0.5590161494582283,-0.6102358167456947,-0.6102358167456947,-0.32825673236309355,-0.32825673236309355,-0.15403202544744962,-0.15403202544744962,-0.4874311665907312,-0.5869465993049265,-0.5776412788168428,-0.5868121382740447,-0.2823461131224485,-0.4997030578917651,-0.5985130120737948,-0.5843658149963316,-0.597686499108461,-0.3094809539851995,9.434771576440397,9.434771576440397,11.543672718187636,11.543672718187636,12.810500343286975,12.810500343286975,7.240666944003223,7.240666944003223,5.491653717343354,5.491653717343354,9.9636483549357,12.220369752462673,11.991161538562167,12.217030959721782,6.655872348060527,10.218770766888127,12.51051126169979,12.156423459863944,12.4895857008041,6.99072893413414,212.881558065255,212.881558065255,0.0,236.53506451695,0.0,212.881558065255,236.53506451695,0,0
+2017/02/16 22:00:00,199.1419534703292,0,1046.899866797444,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.1482735443984902,27.0977424753112,0,0,127.83128663985782,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3333.2397507787027,0.0,4924.87100854008,0.0,4549.82634871391,0.0,4862.295336624891,0.0,0.0,0.0,3226.086534770281,0.0,4828.849943984707,0.0,4429.340405090014,0.0,4732.158071910237,0.0,0.0,0,0,0,0,0,0,0,0,0.05573772435400659,0.001763502746161942,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5735989066544903,-0.5735989066544903,-0.6071554133059633,-0.6071554133059633,-0.6476991469918518,-0.6476991469918518,-0.3721557393051745,-0.3721557393051745,-0.23390536812481802,-0.23390536812481802,-0.4971120778345677,-0.597192708742049,-0.5837922000679991,-0.5968631069208112,-0.2967209776303552,-0.514493228343625,-0.6122068420079029,-0.5941547131461651,-0.610959291688309,-0.32539115218197096,11.892760601899624,11.892760601899624,12.73109444433419,12.73109444433419,13.809174969054737,13.809174969054737,7.8834535306617965,7.8834535306617965,6.135257190817569,6.135257190817569,10.16436474642478,12.47709812036696,12.142249773425831,12.468768631879911,6.829389312559144,10.53489399732382,12.861525016290443,12.400502371196907,12.829209625699235,7.201554960726071,199.1419534703292,199.1419534703292,0.0,221.26883718925467,0.0,199.1419534703292,221.26883718925467,0,0
+2017/02/16 23:00:00,140.84121308425006,0,1071.55599458956,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.4212655223460116,21.23501475412781,0,0,312.1940007384226,599.655407544689,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.377480118049025,0.0,133.1670790553661,0.0,794.0022923861102,0.0,0.0,0.0,0.0,0.0,3186.46100400263,0.0,5456.689460290657,0.0,4337.876338147171,0.0,5394.419138659476,0.0,0.0,0.0,3146.4226959530242,0.0,5417.090046120853,0.0,4302.089917788126,0.0,4824.701884440615,0.0,2557.7357863290054,0,0,0,0,0,0,0,0,0.057050434860617075,0.001805035991556393,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7219793025523908,-0.7219793025523908,-0.752770444907737,-0.752770444907737,-0.7671215226522712,-0.7671215226522712,-0.5827097152583648,-0.5827097152583648,-0.47343149576983273,-0.47343149576983273,-0.5189686362840614,-0.6241768060412974,-0.6029753245916615,-0.623353302255041,-0.32575888111802753,-0.54232746912494,-0.6435773830044259,-0.6175171612682598,-0.7117743353889766,-0.35976631876017073,15.969038254584177,15.969038254584177,16.934104044616163,16.934104044616163,17.39778100120401,17.39778100120401,12.115541108569744,12.115541108569744,9.680544553676512,9.680544553676512,10.632415180537379,13.175016942633832,12.623999723695334,13.153250312554661,7.206554574008422,11.155487092941243,13.696318838705764,12.999834289834439,15.658184473229838,7.693737641612799,140.84121308425006,140.84121308425006,0.0,156.49023676027784,0.0,140.84121308425006,156.49023676027784,0,0
+2017/02/17 00:00:00,91.29650374601633,0,887.8503257471783,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.531993179332583,11.82155430539118,0,0,315.5579533174484,519.0568436609137,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1418.981010309273,0.0,1081.6910601440395,0.0,2300.9977376682887,0.0,427.0147452135909,0.0,0.0,0.0,3004.1325020727163,0.0,6038.895525072217,0.0,4127.360369918829,0.0,5978.825661933644,0.0,5682.050251104141,0.0,3053.593123162743,0.0,6078.235732605292,0.0,4213.196247572608,0.0,5936.06230280761,0.0,9483.23725357033,0,0,0,0,0,0,0,0,0.04726980897943506,0.0014955838063344248,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.801277938925486,-0.801277938925486,-0.8272283192155286,-0.8272283192155286,-0.8407316617092172,-0.8407316617092172,-0.7303032157059751,-0.7303032157059751,-0.561454125102002,-0.561454125102002,-0.5394518342641504,-0.6443643048474899,-0.6201473838759174,-0.6434782493910962,-0.3521937505993237,-0.5683708878264707,-0.6671795151057227,-0.6380863483573737,-0.7031941932395871,-0.3901129572504868,18.536656890663195,18.536656890663195,19.43493000049105,19.43493000049105,19.913537761928012,19.913537761928012,16.225912775261023,16.225912775261023,11.60139186124637,11.60139186124637,11.089817788593706,13.71780829004993,13.068792617174552,13.693613578579587,7.580999874334694,11.766549518025244,14.352522193807701,13.547115821612152,15.400298098844928,8.170049319649792,91.29650374601633,91.29650374601633,0.0,101.44055971779592,0.0,91.29650374601633,101.44055971779592,0,0
+2017/02/17 01:00:00,39.33454330684779,0,569.9529756059311,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5784844899146663e-09,9.537222307846136,0,0,0.0,516.717446837115,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03034471858922849,0.0009600857441494936,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7409317307181148,-0.7409317307181148,-0.8090495625955673,-0.8090495625955673,-0.8215940780596674,-0.8215940780596674,-0.6795601624835907,-0.6795601624835907,-0.22323719728388267,-0.22323719728388267,-0.7003087334929773,-0.8673723719455481,-0.8440531383430048,-0.8660280395465513,-0.13979831954018357,-0.7424138772154162,-0.879228189064663,-0.8518716479827487,-0.8973402082534127,-0.24521606695802356,16.558235801868904,16.558235801868904,18.802694203151674,18.802694203151674,19.237491308538765,19.237491308538765,14.706385877103912,14.706385877103912,6.033850430813715,6.033850430813715,15.314285837078444,20.880062794788714,20.032430814374848,20.830585615869524,5.404912943636276,16.604963546134385,21.319632921197112,20.314110636491023,22.002291572546113,6.247987723733615,39.33454330684779,39.33454330684779,0.0,43.705048118719766,0.0,39.33454330684779,43.705048118719766,0,0
+2017/02/17 02:00:00,23.722201178351146,0,44.6870929082472,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251057546733525,0,0,0.0,9.196740395703065,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002379173926462712,7.527540461224958e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8010995633428327,-0.8010995633428327,-0.8848580975391788,-0.8848580975391788,-0.8942434676791851,-0.8942434676791851,-0.747640198486032,-0.747640198486032,-0.08433306293707502,-0.08433306293707502,-0.7847267280504168,-0.9907575099045528,-0.9776865850416645,-0.9875161203137489,-0.07283414479778261,-0.845006158183011,-1.036054029816227,-1.0150155167532884,-1.0410379229159024,-0.24447765440065286,18.530580728097846,18.530580728097846,21.530392216797765,21.530392216797765,21.884623144302182,21.884623144302182,16.77048596711076,16.77048596711076,5.147270163562368,5.147270163562368,17.978599134575475,25.732111006424887,25.189624919016453,25.596971104490194,5.109838367101688,20.066629325529433,27.662123086940255,26.756148607265686,27.879133221053948,6.240464247112911,23.722201178351146,23.722201178351146,0.0,26.35800130927905,0.0,23.722201178351146,26.35800130927905,0,0
+2017/02/17 03:00:00,28.344378930994406,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250158445215092,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8271119136771024,-0.8271119136771024,-0.9162742710543316,-0.9162742710543316,-0.9225246095598428,-0.9225246095598428,-0.780634507303233,-0.780634507303233,-0.007141233189817517,-0.007141233189817517,-0.8487300625119196,-1.0596428761385959,-1.0475635124561526,-1.055722142298316,-0.050066300365827064,-0.9178802680070268,-1.120073841425615,-1.0996578435673539,-1.1215472629880272,-0.24895223201571792,19.430837362372827,19.430837362372827,22.73020113905214,22.73020113905214,22.973668691765738,22.973668691765738,17.842414484205477,17.842414484205477,5.001055670194731,5.001055670194731,20.200622025545258,28.697202533556336,28.164641589117466,28.523768002958278,5.051894421297931,22.792609115170364,31.43836859266483,30.498268414015484,31.5067541905954,6.286405686519558,28.344378930994406,28.344378930994406,0.0,31.49375436777156,0.0,28.344378930994406,31.49375436777156,0,0
+2017/02/17 04:00:00,23.722177952872023,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250825291942304,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8529505942745471,-0.8529505942745471,-0.9461418447978994,-0.9461418447978994,-0.9505074194450825,-0.9505074194450825,-0.813643959321852,-0.813643959321852,0.03295915372092154,0.03295915372092154,-0.884626962761676,-1.0967441987153133,-1.0882698867697747,-1.0933670730412686,-0.028438378103175337,-0.9716319163472225,-1.1779460472129337,-1.1598578239568955,-1.1782816615542497,-0.24586933205502431,20.35318182063274,20.35318182063274,23.90772286156448,23.90772286156448,24.082804098562676,24.082804098562676,18.961168228474733,18.961168228474733,5.022488170315071,5.022488170315071,21.521713962847826,30.36525136686744,29.9800257861707,30.211438140589465,5.016741958315507,24.940568772603925,34.17679322640156,33.30956481359351,34.19297814025424,6.254662755433998,23.722177952872023,23.722177952872023,0.0,26.357975503191135,0.0,23.722177952872023,26.357975503191135,0,0
+2017/02/17 05:00:00,42.80698769441976,0,374.88069000393546,0,0,0,0.0,0.013418150164254258,4.633261998087618,9.319298099999997,25.555573451546493,0,1.6099744682677255,1.1504145220127406,0.525047004340935,0,0,286.15480872257507,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,189.44946189272483,0.0,308.2002967690239,0.0,0.0,0.0,0.0,1.5509150394719249,2358.9935203457517,1.193237686392422,2195.2828366291337,2.054265779793341,3511.725732219848,1.4020416738687544,2172.8716304909567,0.0,0.0,1.7701455721858108,2578.6236208783193,1.1820008657099,2204.7091346130487,2.647076368770184,3549.0851097275277,1.6184671780619178,2200.619191782554,0.0,0.0,0,0,0,0,0,0,0,0,0.019958925612435813,0.0006314864938586674,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.813075931312491,-0.813075931312491,-0.8683274167420673,-0.8683274167420673,-0.8698976215213304,-0.8698976215213304,-0.77929759782146,-0.77929759782146,0.1779234325485533,0.1779234325485533,-0.6645492573444906,-0.7634511631481345,-0.751519028751024,-0.7620976325981431,0.00926136947074479,-0.7127481028206668,-0.8149884254149912,-0.7939790932515651,-0.8148735299916303,-0.23147435975008282,18.94152708601773,18.94152708601773,20.915257859243653,20.915257859243653,20.97320444845451,20.97320444845451,17.798077936453765,17.798077936453765,5.6562257293100515,5.6562257293100515,14.278198834725131,17.278355672065814,16.894088897644238,17.2344599994576,5.001775550092987,15.687652790553642,19.007711040430934,18.289129939568326,19.00373060770957,6.111729169238231,42.80698769441976,42.80698769441976,0.0,47.5633196604664,0.0,42.80698769441976,47.5633196604664,0,0
+2017/02/17 06:00:00,75.90614876674103,0,308.64498439319937,0,0,0,0.09315302195392221,0.013126135829364614,5.555297838843742,9.319298099999997,57.911447091112116,0,1.431589328184564,1.0046349152891214,0.577602335528164,0,0,95.70286931793457,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,295.22796754276453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4348704549511808,1685.4248980457135,1.3016961755006378,1721.5176817389447,2.1485808918350813,2772.158321265692,1.4207069675767912,1702.4063730338655,0.0,0.0,1.7206018058944323,2019.4013678036758,1.5703200677095879,1891.8763707125026,2.0234112714261983,3024.5742853470238,1.5059481944707045,1877.234481885694,0.0,0.0,0,0,0,0,0,0,0,0,0.016432487584491506,0.0005199124527845873,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6184517369361986,-0.6184517369361986,-0.7076618021671898,-0.7076618021671898,-0.7020968569114527,-0.7020968569114527,-0.5931459357695859,-0.5931459357695859,0.5013838933198123,0.5013838933198123,-0.6276208294280751,-0.7037654400211091,-0.6927918207132643,-0.7025095941118538,0.11853967938197091,-0.6505223156657325,-0.7224933883480997,-0.7021476757077634,-0.7218636406190599,-0.12257000893992724,13.024302307995228,13.024302307995228,15.53418118245969,15.53418118245969,15.367545411338725,15.367545411338725,12.375157062852665,12.375157062852665,10.25422047601785,10.25422047601785,13.266367306282064,15.417368923420426,15.091903293024103,15.37985846576801,5.29105845939678,13.886899895915448,15.984816486073115,15.369061075042808,15.965489946257591,5.311200151563369,75.90614876674103,75.90614876674103,0.0,84.34016529637891,0.0,75.90614876674103,84.34016529637891,0,0
+2017/02/17 07:00:00,101.60013798253502,0,801.6780688578139,0,0,0,0.0,0.006583889079837491,11.110595677687485,13.929299233552332,73.80580873715317,0,1.3870819091892557,0.8357381964550239,0.5250303394178972,0,0,64.94878656237441,506.0419909639025,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1172.0453461998482,0.0,1282.2854167087585,1.5892554825715401,2057.5331305144687,1.2175869554606984,1266.1226022004332,0.0,0.0,1.0277414554433713,1365.1510740733797,0.0,1335.0730928333032,1.4645728223890728,2122.8217968848458,1.2847323639728074,1320.7700563722142,0.0,0.0,0,0,0,0,0,0,0,0,0.04268193419428013,0.001350426646144654,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4650719500948378,-0.4650719500948378,-0.5591900942535906,-0.5591900942535906,-0.5486303861001691,-0.5486303861001691,-0.44750850723802726,-0.44750850723802726,0.7529488060861074,0.7529488060861074,-0.6077737765600804,-0.6786106057121042,-0.6679873987184397,-0.677477985853991,0.1782410723514968,-0.625261493590705,-0.6918128501915056,-0.671765567457069,-0.6912225747928326,-0.000887522960263682,9.515526221177879,9.515526221177879,11.547782327328889,11.547782327328889,11.300676811899834,11.300676811899834,9.178626003342501,9.178626003342501,16.93981276125838,16.93981276125838,12.747001426107062,14.679010766739395,14.375410756235624,14.64640908172646,5.6585741114559625,13.203732017093841,15.063120772578486,14.482827096607338,15.045786213194631,5.000016305722426,101.60013798253502,101.60013798253502,0.0,112.88904220281668,0.0,101.60013798253502,112.88904220281668,0,0
+2017/02/17 08:00:00,150.24280186938043,0,917.0408778475279,0,0,0,0.0,0.0,10.843536854875632,0.0,69.33401494192633,0,39.380909295966944,0.19383042594231153,27.058535148214965,0,0,51.20782645875804,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,511.1643041705495,0.0,331.07967210087935,0.0,955.1724260247261,0.0,84.38468765787268,0.0,0.0,0.0,3203.1153556365057,0.0,4763.516221598697,0.0,4261.142212358062,0.0,4693.399357087927,0.0,2265.053251593577,0.0,3270.1395234627516,0.0,4716.875413739797,0.0,4204.438890333806,0.0,4624.97941200903,0.0,1755.5278669028914,0,0,0,0,0,0,0,0,0.048823935594894216,0.0015447552891319385,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6352075414534567,-0.6352075414534567,-0.6717456800753141,-0.6717456800753141,-0.6833592014483096,-0.6833592014483096,-0.5991985477186296,-0.5991985477186296,0.3111931633472419,0.3111931633472419,-0.5921525064496777,-0.6643278803321205,-0.6474171238466226,-0.6630567998847103,-0.17569755430709277,-0.6092275677823157,-0.6767189248626336,-0.6509803156786572,-0.6755856039441954,-0.24056824536567162,13.469415082137218,13.469415082137218,14.482260064598208,14.482260064598208,14.81629990886016,14.81629990886016,12.527890068863343,12.527890068863343,7.012902603559468,7.012902603559468,12.350240532933555,14.271957041120032,13.801429546123472,14.236159617585315,5.639887459073975,12.784464606625974,14.624591096943092,13.89954171168496,14.592062016349956,6.201014019550172,150.24280186938043,150.24280186938043,0.0,166.9364465215338,0.0,150.24280186938043,166.9364465215338,0,0
+2017/02/17 09:00:00,165.16512128465175,0,1009.8784578012163,0,0,0,0.0,0.0,11.88231167376211,0.0,83.2008179303116,0,39.38090929596693,0.17136470684562133,27.0977424753112,0,0,90.80987764363012,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2576.78561032881,0.0,4341.365171702067,0.0,3712.5676625606015,0.0,3358.5866883405038,0.0,149.1197450744477,0.0,2493.18357277899,0.0,4243.335628656621,0.0,3176.445276580017,0.0,4009.738636841073,0.0,167.76113270450188,0,0,0,0,0,0,0,0,0.05376667711704298,0.001701140185517674,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6274608466455944,-0.6274608466455944,-0.6766135297275581,-0.6766135297275581,-0.6787699263666345,-0.6787699263666345,-0.541590869804791,-0.541590869804791,-0.20501280942229816,-0.20501280942229816,-0.5607483210600902,-0.6453507683553739,-0.6251141369304155,-0.6946850492233094,-0.29693136576477824,-0.5742773249476493,-0.6568471989905109,-0.665265842727417,-0.6421656016081652,-0.34193647187001047,13.262112474323672,13.262112474323672,14.621563654858278,14.621563654858278,14.683601155182487,14.683601155182487,11.138631642235751,11.138631642235751,5.871650840423726,5.871650840423726,11.584655421594391,13.744784801824466,13.199828028463216,15.147683198010071,6.831993682256012,11.909225407142799,14.062284892807227,14.298417737802794,13.657832875424091,7.432182822850763,165.16512128465175,165.16512128465175,0.0,183.51680142739082,0.0,165.16512128465175,183.51680142739082,0,0
+2017/02/17 10:00:00,181.9716791368055,0,1073.3550366609586,0,0,0,0.0,0.0,11.310003665950527,0.0,106.27511244621549,0,39.380909295966944,0.16684578019552457,21.406832746022776,0,0,101.05092773455615,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2126.6288320635404,0.0,3978.7295876986063,0.0,3216.9172695492607,0.0,3810.9019727907344,0.0,0.0,0.0,1917.7868003564872,0.0,3820.1816159817618,0.0,2981.3955221202036,0.0,3582.767441252165,0.0,13.304070769372593,0,0,0,0,0,0,0,0,0.057146217193060796,0.001808066477789119,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5456343252910612,-0.5456343252910612,-0.6234093062384785,-0.6234093062384785,-0.6283358267440058,-0.6283358267440058,-0.44447614902674454,-0.44447614902674454,-0.25404108281920296,-0.25404108281920296,-0.5398700464624315,-0.6293147139558957,-0.6069786763437687,-0.6664149129077104,-0.30439914742280655,-0.549461751385712,-0.6363279754592401,-0.6241969230149953,-0.6223416560478565,-0.34488627616404993,11.231446903921196,11.231446903921196,13.154729662187762,13.154729662187762,13.28539663335279,13.28539663335279,9.121803172590845,9.121803172590845,6.339676799709551,6.339676799709551,11.099346008529295,13.311485239971645,12.726551053441554,14.330885892253548,6.925648433439079,11.319956108002472,13.499613545151362,13.175549037262144,13.126551032116026,7.474521675296387,181.9716791368055,181.9716791368055,0.0,202.19075459645055,0.0,181.9716791368055,202.19075459645055,0,0
+2017/02/17 11:00:00,212.84845705817688,0,1123.0892544456758,0,0,0,0.0,0.0,17.60264088558763,0.0,133.89528835348938,0,39.380909295966944,0.11805740774852165,18.419585912930085,0,0,83.85564044695732,577.8590313356448,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,188.43585676990267,0.0,4147.348987703707,0.0,2682.4557006570303,0.0,3810.647521144256,0.0,0.0,0.0,0.0,0.0,3842.0757362449826,0.0,2286.2466844477603,0.0,3339.1169382197727,0.0,0.871055003747214,0,0,0,0,0,0,0,0,0.05979410378638581,0.001891843763872712,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2712815614567734,-0.2712815614567734,-0.5422787356948474,-0.5422787356948474,-0.565440703860211,-0.565440703860211,-0.24271902425601152,-0.24271902425601152,-0.21730007314358657,-0.21730007314358657,-0.37905476881728484,-0.6292422040293664,-0.6029866794951052,-0.6085493381092323,-0.324178582393604,-0.358364268646365,-0.6329113540457805,-0.603468152058661,-0.5911203180470019,-0.3543017314445988,6.528252205687508,6.528252205687508,11.154371209631421,11.154371209631421,11.696329598090387,11.696329598090387,6.222638302637819,6.222638302637819,5.979481464990187,5.979481464990187,7.991933244336138,13.309551331211722,12.624289611409367,12.766975688870247,7.185109586199204,7.6726802808535695,13.407697318886079,12.636586629198277,12.32439724341178,7.61213764022024,212.84845705817688,212.84845705817688,0.0,236.49828562019653,0.0,212.84845705817688,236.49828562019653,0,0
+2017/02/17 12:00:00,228.3167838398076,0,1164.0391410992863,0,0,0,0.0,0.0,16.73568395689411,0.0,147.76209134187457,0,39.380909295966944,0.08558970839899703,20.920534334218633,0,0,64.70662183286566,584.7224078345307,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3033.576953053132,0.0,2609.0826201721547,0.0,2887.4548314999242,0.0,0.0,0.0,0.0,0.0,2604.250870399679,0.0,1990.5710256957223,0.0,2365.335911243793,0.0,0.0,0,0,0,0,0,0,0,0,0.06197430608367808,0.001960823844832675,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.19929201202548244,-0.19929201202548244,-0.44811956021281607,-0.44811956021281607,-0.5057965254413634,-0.5057965254413634,-0.11964468126870081,-0.11964468126870081,-0.11816826176158686,-0.11816826176158686,-0.26962994645123406,-0.593987596016291,-0.5695924423698124,-0.5867963046186337,-0.3098649637931336,-0.21280576341477517,-0.5891189622157361,-0.5594028173845719,-0.5708215129547708,-0.3332033245937762,5.823601994593687,5.823601994593687,9.190124285626297,9.190124285626297,10.347866256675047,10.347866256675047,5.296513569594154,5.296513569594154,5.2892362599079945,5.2892362599079945,6.509644877219941,12.396300538078691,11.795933258394413,12.216637846933068,6.995691191760187,5.939307066174777,12.274420284497992,11.552809894461376,11.825563121212198,7.309002125020726,228.3167838398076,228.3167838398076,0.0,253.685315377564,0.0,228.3167838398076,253.685315377564,0,0
+2017/02/17 13:00:00,207.78394168639446,0,1084.9411617688231,0,0,0,0.0,0.0,16.965687027080573,0.0,129.49988082968767,0,39.380909295966944,0.05313004213467515,18.452359289070316,0,0,43.29382466714498,562.5275781823325,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,292.555231745273,0.0,2216.6767231509516,0.0,2925.415131347553,0.0,2107.8196317923703,0.0,0.0,0.0,0.0,0.0,1776.8265069662486,0.0,2292.642321849247,0.0,1611.5473782716595,0.0,0.0,0,0,0,0,0,0,0,0,0.05776307107572361,0.001827583304653945,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4778778486987499,-0.4778778486987499,-0.42459636561758635,-0.42459636561758635,-0.49737466229284205,-0.49737466229284205,-0.021170470334646765,-0.021170470334646765,-0.078688731023599,-0.078688731023599,-0.3600256601740839,-0.559929896279563,-0.5450394836440605,-0.5538613929083921,-0.22264795721022948,-0.3030546731608603,-0.551330008656751,-0.5331955585951003,-0.5379830374370501,-0.300892912667322,9.769543310900545,9.769543310900545,8.75906471193423,8.75906471193423,10.169865350332415,10.169865350332415,5.00927791931862,5.00927791931862,5.128211296577831,5.128211296577831,7.697641857698841,11.565275501737773,11.21774819860002,11.42248226863984,6.0283884587296654,6.908613091264812,11.3633901588411,10.94818414603715,11.056413907387778,6.881382489349747,207.78394168639446,207.78394168639446,0.0,230.87104631821606,0.0,207.78394168639446,230.87104631821606,0,0
+2017/02/17 14:00:00,205.27842023569693,0,1078.1801238446574,0,0,0,0.0,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,0.08471116277328242,16.309506533654513,0,0,73.04529784899033,561.5054195888654,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,646.3057640187894,0.0,2705.534895277756,0.0,3084.2998405678386,0.0,2641.646669101293,0.0,698.9172692015512,0.0,27.221706927470134,0.0,2274.0492268796297,0.0,2468.9637611404855,0.0,2163.0751666759083,0.0,103.19800231584422,0,0,0,0,0,0,0,0,0.05740310840869516,0.0018161943367838418,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5658553179902354,-0.5658553179902354,-0.4720766608040675,-0.4720766608040675,-0.5089105361321337,-0.5089105361321337,0.0035911187718160502,0.0035911187718160502,-0.08876710046735653,-0.08876710046735653,-0.3772975410062782,-0.5386320511584515,-0.5289645969115435,-0.5389233295319951,-0.24628405039474058,-0.33862516876088206,-0.5279951317539139,-0.5164223829183859,-0.5241261357289915,-0.30311465439287716,11.706242931551913,11.706242931551913,9.653595450141722,9.653595450141722,10.414459023336747,10.414459023336747,5.000266956577221,5.000266956577221,5.1631691054165145,5.1631691054165145,7.964110012250202,11.071162475230693,10.85336174845699,11.077787588188414,6.258909632709134,7.385095790633514,10.831743687885265,10.57682489891566,10.745874338468226,6.909371462231519,205.27842023569693,205.27842023569693,0.0,228.0871335952188,0.0,205.27842023569693,228.0871335952188,0,0
+2017/02/17 15:00:00,189.44788730803455,0,1033.104297493901,0,0,0,0.0,0.0,16.965686943773743,0.0,115.5196477718057,0,39.380909295966944,0.09642794647273445,14.053240147561207,0,0,84.07776091720729,540.8874826824363,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2993.1019182774194,0.0,2105.3375847152943,0.0,3063.776061328909,0.0,82.05611334586415,0.0,0.0,0.0,2701.0323488017984,0.0,1719.034279224239,0.0,2741.4930900377653,0.0,8.190207310631937,0,0,0,0,0,0,0,0,0.055003238025815804,0.0017402641107171898,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4933076508614637,-0.4933076508614637,-0.4240898687414972,-0.4240898687414972,-0.5435353158101109,-0.5435353158101109,0.017396197552385622,0.017396197552385622,-0.1455183332738064,-0.1455183332738064,-0.37795263906281173,-0.5289248795064478,-0.5312377362926224,-0.5466119779075085,-0.2940190693954605,-0.32837074747284106,-0.518454621806542,-0.523333523611326,-0.5370603926557251,-0.32479560816887515,10.085004016198681,10.085004016198681,8.750044508685292,8.750044508685292,11.183176883452091,11.183176883452091,5.006264629642743,5.006264629642743,5.438757202209317,5.438757202209317,7.974467163741352,10.852475292380305,10.9042099596182,11.253994738409247,6.796108965683075,7.242230328100206,10.621170521355651,10.728362901624863,11.035478596154732,7.193470155063679,189.44788730803455,189.44788730803455,0.0,210.49765256448282,0.0,189.44788730803455,210.49765256448282,0,0
+2017/02/17 16:00:00,183.22464198710944,0,1118.2783574950033,0,0,0,0.0,0.0,17.431429266777343,0.0,108.75639138185811,0,39.380909295966944,0.21468159107479465,14.009255248977956,0,0,169.24773470708476,540.8915688936613,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,529.8780132582408,0.0,3728.971763755632,0.0,2432.741774568489,0.0,4151.616425722884,0.0,1.616076306354146,0.0,112.05090889264042,0.0,3776.005562840528,0.0,2017.7694539852057,0.0,3792.8875564232562,0.0,0.0,0,0,0,0,0,0,0,0,0.05953796806926856,0.0018837398083244449,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4768698668520297,-0.4768698668520297,-0.47856933292549286,-0.47856933292549286,-0.5752879617585559,-0.5752879617585559,-0.034113592229253246,-0.034113592229253246,-0.1712562386035093,-0.1712562386035093,-0.4159429154852297,-0.6134002570100896,-0.5459995108894623,-0.5671786174956416,-0.30948170213501597,-0.4030527824888419,-0.5466711446668185,-0.5447764635743951,-0.566822006841056,-0.3395748053798493,9.749292691119365,9.749292691119365,9.783460752673165,9.783460752673165,11.933789986149293,11.933789986149293,5.024091200076555,5.024091200076555,5.6079053581210445,5.6079053581210445,8.606467147997407,12.892501348985945,11.239864419455529,11.737932609999973,6.990738595819437,8.385108793669886,11.255360644756806,11.211695955645908,11.729385209804349,7.398552074446471,183.22464198710944,183.22464198710944,0.0,203.5829355412327,0.0,183.22464198710944,203.5829355412327,0,0
+2017/02/17 17:00:00,206.355254255321,0,1185.373641381944,0,0,0,0.0,0.0,17.570829781598256,0.0,131.64086955684016,0,39.380909295966944,0.2758919262293043,14.054778492232023,0,0,175.5454651450072,548.453593573863,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1046.2349379184932,0.0,4072.993923375494,0.0,2783.024790411861,0.0,4356.780355807922,0.0,0.0,0.0,636.7578822656844,0.0,3790.85564665759,0.0,2418.3546661336204,0.0,4024.303881347068,0.0,0.0,0,0,0,0,0,0,0,0,0.06311017068133337,0.0019967618089395513,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4665176917371686,-0.4665176917371686,-0.4907618898218127,-0.4907618898218127,-0.5693453819746148,-0.5693453819746148,-0.03139907085911758,-0.03139907085911758,-0.1251753326489434,-0.1251753326489434,-0.4270104399099775,-0.5803556388361502,-0.5485782899963748,-0.5728974830767617,-0.31030543282580747,-0.4258878547375089,-0.5233872405839067,-0.550558834114184,-0.5750648619980848,-0.3380917743231982,9.543849948664388,9.543849948664388,10.032248282374937,10.032248282374937,11.789985151247137,11.789985151247137,5.020409560606154,5.020409560606154,5.324579612979292,5.324579612979292,8.802208209331155,12.057633378375911,11.299469704780265,11.875758466887817,7.001390713305682,8.78211465376286,10.72954882915019,11.345443223513854,11.92836350298964,7.377554428252665,206.355254255321,206.355254255321,0.0,229.28361583924556,0.0,206.355254255321,229.28361583924556,0,0
+2017/02/17 18:00:00,219.02461859546833,0,1143.3111821761959,0,0,0,0.0,0.0,23.51198600882507,0.0,133.89528835348938,0,39.380909295966944,0.184186956907486,18.620272777825136,0,0,108.04813370750222,573.8884658056197,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1945.3060928487832,0.0,3896.2259836231588,0.0,3528.268947216797,0.0,3888.112750192877,0.0,0.0,0.0,1516.7731490339793,0.0,3445.441126323302,0.0,3110.0478423209615,0.0,3533.637503312837,0.0,0.0,0,0,0,0,0,0,0,0,0.06087073419727538,0.001925907599599955,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.37889057009957683,-0.37889057009957683,-0.5217022011668325,-0.5217022011668325,-0.4852974660280569,-0.4852974660280569,-0.006752017976795933,-0.006752017976795933,-0.07850638992446693,-0.07850638992446693,-0.4302118148293301,-0.5682996550690619,-0.5401217336562422,-0.5634284640057278,-0.2914259811374838,-0.43326775824648156,-0.5396618926318009,-0.5419175401820306,-0.567068696678703,-0.31776921926926177,7.989327807103095,7.989327807103095,10.692407138583036,10.692407138583036,9.919954089341076,9.919954089341076,5.000943732485723,5.000943732485723,5.1276176278126115,5.1276176278126115,8.859807800779123,11.764838055336625,11.10508390527994,11.648323284857398,6.764459030493185,8.915201191435457,11.094602647133314,11.146103872099019,11.735297391672447,7.099218564330684,219.02461859546833,219.02461859546833,0.0,243.36068732829813,0.0,219.02461859546833,243.36068732829813,0,0
+2017/02/17 19:00:00,219.5754465905527,0,1111.8011812957614,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.1273503866720219,26.77162550735999,0,0,86.26154360054247,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2567.840113279971,0.0,3020.7896809358786,0.0,4072.813733334172,0.0,3008.1142867107446,0.0,0.0,0.0,2195.4236337550296,0.0,2663.5386714092047,0.0,3667.4354338807025,0.0,2671.3716350004343,0.0,0.0,0,0,0,0,0,0,0,0,0.059193118410733325,0.0018728290055084313,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.333028517380364,-0.333028517380364,-0.5122105514472295,-0.5122105514472295,-0.4438981646388393,-0.4438981646388393,0.012618151178042148,0.012618151178042148,-0.06083822354847873,-0.06083822354847873,-0.41850276433596123,-0.5341214661608886,-0.5204562210546764,-0.5398795477669832,-0.2635200277150476,-0.42270789259606584,-0.5244766830595006,-0.522000697023558,-0.5430663418809458,-0.287809431982333,7.306569534722428,7.306569534722428,10.485487095649134,10.485487095649134,9.11101728359921,9.11101728359921,5.003295910383713,5.003295910383713,5.076631256254586,5.076631256254586,8.651273880094479,10.969038555888574,10.665022233357604,11.099562566860058,6.441808417950426,8.725488871555129,10.753627767204733,10.698977637088689,11.172418185387443,6.720791466538358,219.5754465905527,219.5754465905527,0.0,243.97271843394745,0.0,219.5754465905527,243.97271843394745,0,0
+2017/02/17 20:00:00,210.6626258008131,0,1091.0031177061987,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.13294795457139053,27.0977424753112,0,0,100.95383252352433,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2835.115749541443,0.0,3183.7404709311604,0.0,4274.054729821555,0.0,3163.133642407428,0.0,0.0,0.0,2502.432625166841,0.0,2856.957064751816,0.0,3888.9312864161234,0.0,2842.300870411389,0.0,0.0,0,0,0,0,0,0,0,0,0.05808581409996066,0.0018377946689703594,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42413773758659257,-0.42413773758659257,-0.5110304277794985,-0.5110304277794985,-0.46872834112336004,-0.46872834112336004,-0.005942085163132457,-0.005942085163132457,-0.08467823221608771,-0.08467823221608771,-0.41642104339033365,-0.5202258297042116,-0.5126443749404492,-0.5282368103466564,-0.2542516355023289,-0.4231140147807012,-0.5172239312717628,-0.5153240285929251,-0.5322479015712048,-0.2781980114777231,8.750896534076773,8.750896534076773,10.460032540545726,10.460032540545726,9.587333224832776,9.587333224832776,5.0007309021985975,5.0007309021985975,5.148478549296897,5.148478549296897,8.61481480548774,10.659965912740361,10.494859547443042,10.837129060383688,6.34190436600835,8.732696551863398,10.594294199920114,10.552932016169166,10.92687831599683,6.607422677344218,210.6626258008131,210.6626258008131,0.0,234.06958422312564,0.0,210.6626258008131,234.06958422312564,0,0
+2017/02/17 21:00:00,212.8079265813602,0,1069.3402409028804,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.13928483336314892,24.764912581839738,0,0,114.78130823275004,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2468.225644092105,0.0,2897.868617777659,0.0,3865.62374090907,0.0,2877.6145202210328,0.0,0.0,0.0,2232.7724294172394,0.0,2641.7516147232645,0.0,3570.6228955870247,0.0,2617.5001689971273,0.0,0.0,0,0,0,0,0,0,0,0,0.056932466493114724,0.0018013035546393542,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.364876446580313,-0.364876446580313,-0.5525743678185912,-0.5525743678185912,-0.5273958872668202,-0.5273958872668202,-0.014579177321125623,-0.014579177321125623,-0.12661269158460683,-0.12661269158460683,-0.4141007222542392,-0.511766104105703,-0.5059032083709913,-0.5200535490593038,-0.2503655272515104,-0.42175369556393555,-0.5113808289888067,-0.5097044899138623,-0.5244462478970046,-0.2740072768153464,7.771195150034174,7.771195150034174,11.392403507092709,11.392403507092709,10.81840151155555,10.81840151155555,5.004399983203697,5.004399983203697,5.332081851227713,5.332081851227713,8.574395807652962,10.475893564323783,10.350140723776022,10.656186429033909,6.301091149234253,8.708582033349273,10.467584196215967,10.431504712518262,10.752954389435331,6.559211883772349,212.8079265813602,212.8079265813602,0.0,236.45325175706688,0.0,212.8079265813602,236.45325175706688,0,0
+2017/02/17 22:00:00,199.21512496783234,0,1088.3872885895648,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.22144504190158915,27.097742475311204,0,0,169.31870843197868,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1822.9226868762198,0.0,3656.7225129737403,0.0,3106.446436779897,0.0,3632.510418980802,0.0,0.0,0.0,1697.577812939709,0.0,3478.3908250889945,0.0,2926.2009330192873,0.0,3444.1762871555334,0.0,0.0,0,0,0,0,0,0,0,0,0.057946545420229,0.0018333883050219275,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.39394971071761065,-0.39394971071761065,-0.5848254880717424,-0.5848254880717424,-0.563626366647044,-0.563626366647044,-0.06233742021341762,-0.06233742021341762,-0.21319039544979954,-0.21319039544979954,-0.42808653463117746,-0.5280168694808673,-0.516773066500405,-0.5360064725679764,-0.27080628557928926,-0.44031604466654317,-0.5324691795034286,-0.5242100280147666,-0.5437976455717883,-0.2960310912802672,8.233069285285609,8.233069285285609,12.167792015954973,12.167792015954973,11.653036891846327,11.653036891846327,5.080455202866133,5.080455202866133,5.942712171121414,5.942712171121414,8.82152038039061,10.83222797051097,10.584464432478313,11.01160969595908,6.522885902365374,9.044490862326782,10.931849747251633,10.747729389366611,11.189199128708182,6.820862415051096,199.21512496783234,199.21512496783234,0.0,221.35013885314703,0.0,199.21512496783234,221.35013885314703,0,0
+2017/02/17 23:00:00,140.67541260136997,0,932.8699772719191,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.2568275044930351,21.233652289100693,0,0,173.50798342078141,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6756501659562921,0.0,0.0,0.0,0.0,0.0,2109.761773233051,0.0,4440.382178421269,0.0,3276.6513220917805,0.0,4418.923328201888,0.0,0.0,0.0,2061.3754427929975,0.0,4320.217499714665,0.0,3213.446864146251,0.0,4309.3204673671835,0.0,0.0,0,0,0,0,0,0,0,0,0.04966668857296828,0.0015714194059109172,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5982608464473272,-0.5982608464473272,-0.67952648088908,-0.67952648088908,-0.6932021738999398,-0.6932021738999398,-0.25550063093970055,-0.25550063093970055,-0.45302168041905966,-0.45302168041905966,-0.4556275504008791,-0.5622890389859732,-0.5431368184943244,-0.5694174937040386,-0.3028116200598259,-0.4751640359886604,-0.5733665296055359,-0.5551440269248078,-0.5817909755958199,-0.33084891070972083,12.50412381825987,12.50412381825987,14.70541419113691,14.70541419113691,15.103980322761501,15.103980322761501,6.355156591739615,6.355156591739615,9.282949522257312,9.282949522257312,9.332714472997608,11.62121772237272,11.174034375947144,11.791721004901447,6.905541613913712,9.715121922382167,11.887125541327904,11.45252985353656,12.092912497351989,7.276347360106172,140.67541260136997,140.67541260136997,0.0,156.3060140015222,0.0,140.67541260136997,156.3060140015222,0,0
+2017/02/18 00:00:00,91.16020499620733,0,815.0006764500773,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.41461794699288196,11.80263078792187,0,0,242.70925284606767,519.0558948351935,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,259.8548323366288,0.0,423.50935690180523,0.0,1215.4812208442129,0.0,0.0,0.0,0.0,0.0,2169.6101001500783,0.0,5069.994317523463,0.0,3290.4413159438354,0.0,5065.906252421959,0.0,1762.0160817625565,0.0,2187.6846679967357,0.0,5019.927457147972,0.0,3314.2575530044132,0.0,5007.4985548808,0.0,5315.254021727562,0,0,0,0,0,0,0,0,0.043391239690636504,0.001372868577622653,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7433237669832777,-0.7433237669832777,-0.7890025175068798,-0.7890025175068798,-0.7977553451097598,-0.7977553451097598,-0.4831115527532896,-0.4831115527532896,-0.564196618009019,-0.564196618009019,-0.4819818573016169,-0.5914259423101168,-0.5668437949600932,-0.5973852682797982,-0.3325105497377622,-0.5068261281229015,-0.6070200486669763,-0.5826812978636736,-0.6137133810489271,-0.3652859663535199,16.633696391869236,16.633696391869236,18.121652959666662,18.121652959666662,18.416912955597866,18.416912955597866,9.875394360972663,9.875394360972663,11.666628528033328,11.666628528033328,9.852446393068718,12.332044454640808,11.729907278758873,12.481966544968188,7.299369191792081,10.369837800767684,12.72761449345532,12.114840637555858,12.9006390468479,7.777450651075256,91.16020499620733,91.16020499620733,0.0,101.28911666245259,0.0,91.16020499620733,101.28911666245259,0,0
+2017/02/18 01:00:00,40.728937024398356,0,569.925479091632,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.5784848307431583e-09,9.543302957019804,0,0,0.0,516.6899503228159,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030343254654440356,0.0009600394262732439,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6473812590362369,-0.6473812590362369,-0.7265850938376904,-0.7265850938376904,-0.7342089482080737,-0.7342089482080737,-0.4323654720962749,-0.4323654720962749,-0.20866479150502049,-0.20866479150502049,-0.5625525246907854,-0.7694075256355041,-0.7448772472647713,-0.7772915688838753,-0.11667711779142678,-0.616300117098615,-0.7839075136650835,-0.7651300969081224,-0.7958097049448793,-0.20529070329924773,13.80044480984516,13.80044480984516,16.1108038724758,16.1108038724758,16.347469881042272,16.347469881042272,8.8988042350461,8.8988042350461,5.903039816986009,5.903039816986009,11.627480728328777,17.472453036462596,16.682834843180217,17.731693761257915,5.281978311934424,12.968027816145465,17.951279577664266,17.332913063361815,18.35099979972327,5.874019733967074,40.728937024398356,40.728937024398356,0.0,45.254374471553724,0.0,40.728937024398356,45.254374471553724,0,0
+2017/02/18 02:00:00,23.722134782221744,0,44.59111266375316,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250393585439526,0,0,0.0,9.10076015120902,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0023740638671526423,7.511372589768414e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6711582243271995,-0.6711582243271995,-0.764855526396482,-0.764855526396482,-0.7716912321091436,-0.7716912321091436,-0.4773516689072767,-0.4773516689072767,-0.07080489389224516,-0.07080489389224516,-0.6361984683822024,-0.8559058473481105,-0.845191835192864,-0.8726331878382716,-0.05031019665927231,-0.7081053290150244,-0.9043891214515457,-0.8991306558866002,-0.9248108583969529,-0.18481227463945957,14.46551816095851,14.46551816095851,17.323982589715257,17.323982589715257,17.547272629263503,17.547272629263503,9.758966753980431,9.758966753980431,5.103801807869317,5.103801807869317,13.496120226317842,20.460446046913503,20.073296632834655,21.074400178141772,5.052401314123955,15.547519554961767,22.271586663606158,22.070502184248056,23.063116050816333,5.708101384534444,23.722134782221744,23.722134782221744,0.0,26.357927535801938,0.0,23.722134782221744,26.357927535801938,0,0
+2017/02/18 03:00:00,28.344453827896032,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250907414231373,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6928727461078658,-0.6928727461078658,-0.7916258360718488,-0.7916258360718488,-0.7971389020136145,-0.7971389020136145,-0.5134641976403638,-0.5134641976403638,0.005415637438994171,0.005415637438994171,-0.6987479350723357,-0.9250364346414934,-0.9151042916088906,-0.942473788971102,-0.02780085257576772,-0.7840308712726549,-0.9898087025435787,-0.9860828652779768,-1.0114931837012673,-0.18962998726689895,15.094284417649476,15.094284417649476,18.20980471797408,18.20980471797408,18.396012138204114,18.396012138204114,10.512593467376746,10.512593467376746,5.000607128432179,5.000607128432179,15.267909997599915,23.07195286632249,22.684801897528786,23.761197808995774,5.01599971101875,17.95539154264462,25.692511742097025,25.537344213791798,26.60607735100443,5.745558270280597,28.344453827896032,28.344453827896032,0.0,31.493837586551145,0.0,28.344453827896032,31.493837586551145,0,0
+2017/02/18 04:00:00,23.722273624957733,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251782012799416,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7198945602256118,-0.7198945602256118,-0.822693569772985,-0.822693569772985,-0.8261765133024261,-0.8261765133024261,-0.5564363060955528,-0.5564363060955528,0.06745435319946837,0.06745435319946837,-0.7516280410673962,-0.977363530490436,-0.9721669099215552,-0.9960779983965412,0.0016193046696189642,-0.8496143520405925,-1.0584471209611672,-1.057870812798307,-1.0811107474578248,-0.1907794004861642,15.905170316545906,15.905170316545906,19.275915705846472,19.275915705846472,19.39797077465427,19.39797077465427,11.482875524801841,11.482875524801841,5.094208337961248,5.094208337961248,16.89757199751338,25.176300390348743,24.962518295006788,25.954802742433884,5.000054279773053,20.23252514941332,28.644249671176837,28.618746700064605,29.656518175372895,5.754638028434513,23.722273624957733,23.722273624957733,0.0,26.35808180550859,0.0,23.722273624957733,26.35808180550859,0,0
+2017/02/18 05:00:00,40.07026892035963,0,346.60184955877435,0,0,0,0.0,0.011703788414569514,4.633261998087618,9.319298099999997,23.111338313975452,0,1.3999380468470939,1.0170974725160418,0.5776312005188508,0,0,257.875968277414,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.505648674189767,0.0,0.0,0.0,0.0,1.2267249169032368,1749.0637184778047,0.5786316474677449,1812.5988137536056,1.9473005661054117,2957.300581881707,0.9484071373895233,1874.787572465306,0.0,0.0,1.4831054626122864,2200.06130786853,1.624580606092195,1961.1091320600772,2.395264995289665,3262.409360419998,1.4997730827094529,2027.5285195800952,0.0,0.0,0,0,0,0,0,0,0,0,0.018453339200809795,0.0005838507892751211,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6863925405762022,-0.6863925405762022,-0.7905074668504178,-0.7905074668504178,-0.7906323001176933,-0.7906323001176933,-0.5341327657238251,-0.5341327657238251,0.19861122345827192,0.19861122345827192,-0.5939865281530584,-0.7019763403329702,-0.6880731965815885,-0.7097488002348098,0.032691180335366575,-0.6447538371186669,-0.7518566635444174,-0.7351027897110191,-0.7608965899135612,-0.17686385742417948,14.90450881140778,14.90450881140778,18.172188286037894,18.172188286037894,18.176384431414917,18.176384431414917,10.969293287638678,10.969293287638678,5.817975208302471,5.817975208302471,12.396273692645195,15.363951466331343,14.95355322424544,15.597018324159833,5.0221239606665335,13.72845566702901,16.90487846620519,16.37538084175958,17.195575128350782,5.648422506280269,40.07026892035963,40.07026892035963,0.0,44.52252102262181,0.0,40.07026892035963,44.52252102262181,0,0
+2017/02/18 06:00:00,74.76871974238792,0,310.1684394206688,0,0,0,0.0,0.011773983246064573,4.633261998087618,9.319298099999997,57.911447091112116,0,1.3719522242582807,0.9960051108943693,0.5249812347894685,0,0,97.22632434540397,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2563719108362648,1597.122005574387,1.0571858067287394,1634.9735999885434,1.951610872120341,2676.4800579757,1.4458407356020189,1694.5383551839163,0.0,0.0,1.7415399283864303,2013.200555754163,0.944967291645014,1846.5908466990718,1.9438556424942135,3070.78315660035,1.4326110582515525,1913.2605324155006,0.0,0.0,0,0,0,0,0,0,0,0,0.016513597458587277,0.0005224787126627313,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5168150008032,-0.5168150008032,-0.6229917889364284,-0.6229917889364284,-0.6176566140977301,-0.6176566140977301,-0.37739618588639323,-0.37739618588639323,0.5125530630699855,0.5125530630699855,-0.5770752221198711,-0.6617161652040827,-0.6479412707185284,-0.6668898392570449,0.09957876255819378,-0.6053289092711411,-0.6822231343932077,-0.6627106783753264,-0.6870898937392838,-0.1253126700655869,10.585378314467633,10.585378314467633,13.143704184550344,13.143704184550344,13.003482882385327,13.003482882385327,7.965668424384845,7.965668424384845,10.492886142286281,10.492886142286281,11.977339686392327,14.198479173327257,13.815827354047372,14.344322123641817,5.205355636970523,12.684205752974364,14.783365719593647,14.22642392470189,14.92484394617503,5.3252927289181855,74.76871974238792,74.76871974238792,0.0,83.0763552693199,0.0,74.76871974238792,83.0763552693199,0,0
+2017/02/18 07:00:00,105.55858839231641,0,801.4848834285006,0,0,0,0.1498448155570243,0.00774283585594253,8.33396954093373,13.929299233552332,80.56906512710079,0,1.210933335380013,0.8326293207430476,0.5251041831935389,0,0,64.76322275453627,506.0343693424273,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,474.56953863057566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1114591417566921,1070.8289851073087,1.1533816115055135,1197.4735560156983,1.8194592042021513,1964.5084992331103,1.2675966118690667,1248.961028750006,0.0,0.0,0.0,1419.2730184377895,0.0,1341.2566755385237,1.2747230008749284,2228.318347579083,1.1162162857341777,1393.0272187592764,0.0,0.0,0,0,0,0,0,0,0,0,0.04267164885892976,0.0013501012253036382,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.35900620757701973,-0.35900620757701973,-0.46644028159880946,-0.46644028159880946,-0.45753125538155964,-0.45753125538155964,-0.23204101811022573,-0.23204101811022573,0.7537643247454469,0.7537643247454469,-0.5652064627494754,-0.6441520509783123,-0.6308188077030076,-0.649224011043646,0.17344862432092917,-0.5890151299257903,-0.660315006037369,-0.640613747171304,-0.6648761629371172,-0.017893183874380148,7.682311160321447,7.682311160321447,9.542331114025416,9.542331114025416,9.369254745839882,9.369254745839882,6.117191294111834,6.117191294111834,16.965932005199477,16.965932005199477,11.690732240330192,13.712009365620204,13.351652293064433,13.851113233810679,5.623589963043429,12.271832174285024,14.159180815190894,13.615628165870689,14.287419921014688,5.006627692203253,105.55858839231641,105.55858839231641,0.0,117.28732043590712,0.0,105.55858839231641,117.28732043590712,0,0
+2017/02/18 08:00:00,120.95711242058634,0,818.3557833722724,0,0,0,0.0,0.0,8.072129201986723,0.0,69.33401494192633,0,39.380909295966944,0.2130899646492422,0.5249938136028119,0,0,59.34517681080851,492.8329627173829,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,678.2841919567932,0.0,423.1023884391475,0.0,1169.5676643901795,0.0,21.789830667385456,0.0,0.0,0.0,3834.059060157068,0.0,5018.891913903215,0.0,4904.090919055701,0.0,5008.069746785787,0.0,2262.7333446883563,0.0,4047.1425876855105,0.0,5060.878392830995,0.0,5054.992539977645,0.0,5024.968469326199,0.0,1652.0008794947346,0,0,0,0,0,0,0,0,0.04356986806832424,0.0013785202549784425,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5621834081677455,-0.5621834081677455,-0.6032278830945585,-0.6032278830945585,-0.6180011361815925,-0.6180011361815925,-0.4487536980207225,-0.4487536980207225,0.2910439919719328,0.2910439919719328,-0.5479595756811881,-0.6265676734161261,-0.608732619863816,-0.6309252410759213,-0.1531148321650904,-0.5710941679673852,-0.6410596959165243,-0.618940616448167,-0.6446243906472942,-0.22230099966060896,11.618707743040005,11.618707743040005,12.630448798160842,12.630448798160842,13.012500449480982,13.012500449480982,9.202073938829031,9.202073938829031,6.759820663014025,6.759820663014025,11.285142608989688,13.23837843726038,12.771699847268138,13.354498330901151,5.485810007139364,11.832145042709982,13.6277456307201,13.037116706007126,13.724916679849159,6.025179136644425,120.95711242058634,120.95711242058634,0.0,134.39679157842926,0.0,120.95711242058634,134.39679157842926,0,0
+2017/02/18 09:00:00,144.07927066663285,0,922.6459842913679,0,0,0,0.0,0.0,12.645266267858833,0.0,87.89947186453183,0,39.380909295966944,0.19651652719610443,0.525131508624885,0,0,110.42006125578204,492.8127504226886,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3264.1251081236683,0.0,4567.78900634027,0.0,4280.933042415208,0.0,4534.509291965925,0.0,165.79215921825704,0.0,3404.7171450463875,0.0,4576.49114213043,0.0,4359.570660969714,0.0,4511.733648753428,0.0,160.67729740504328,0,0,0,0,0,0,0,0,0.04912235561370396,0.0015541970905111663,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6134096181533442,-0.6134096181533442,-0.6104513046042473,-0.6104513046042473,-0.635463973055596,-0.635463973055596,-0.4456798349752592,-0.4456798349752592,-0.176933261684097,-0.176933261684097,-0.5316757772826296,-0.6133193875382871,-0.5920587123149796,-0.6157673565506822,-0.264850549637532,-0.5545868896340725,-0.6267623723792052,-0.601622704497161,-0.6280387682418471,-0.3082874450081855,12.892744571559064,12.892744571559064,12.816070549551881,12.816070549551881,13.476321741699138,13.476321741699138,9.14431151105768,9.14431151105768,5.648932198685657,5.648932198685657,10.914034280327755,12.890400345054502,12.347890263985747,12.95412477444728,6.456446879355411,11.439469332412656,13.243549166923415,12.58950772313645,13.277487863637276,6.975345996338078,144.07927066663285,144.07927066663285,0.0,160.08807851848096,0.0,144.07927066663285,160.08807851848096,0,0
+2017/02/18 10:00:00,184.40950463368296,0,1116.1437853306652,0,0,0,0.0,0.0,11.66787656657516,0.0,106.27511244621549,0,39.380909295966944,0.22614594658942758,23.427485175881667,0,0,143.83967640426246,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2918.3871280577955,0.0,4717.644082677292,0.0,3882.795022654048,0.0,4663.870669579748,0.0,0.0,0.0,2853.7879946858675,0.0,4621.635365285303,0.0,3773.928448327288,0.0,4519.8540399039475,0.0,12.394607694813818,0,0,0,0,0,0,0,0,0.05942432186614736,0.0018801441216756286,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5802047593508145,-0.5802047593508145,-0.5550784032166295,-0.5550784032166295,-0.5981023065582672,-0.5981023065582672,-0.3872114345873527,-0.3872114345873527,-0.2207924391607613,-0.2207924391607613,-0.5215688614190391,-0.6068348338616053,-0.5826839398925621,-0.6075288748211345,-0.27718461692609625,-0.5418027993719913,-0.6186254309508417,-0.5894855552701558,-0.6168779377318944,-0.3173746408743136,12.053930106330426,12.053930106330426,11.450990790535442,11.450990790535442,12.500109360457046,12.500109360457046,8.122808600857311,8.122808600857311,6.011283764663659,6.011283764663659,10.689473306615426,12.722854284193033,12.11490576043876,12.740699507658306,6.5956965679033885,11.143478773947876,13.028853947925683,12.283561677556747,12.983120680649463,7.093987755954373,184.40950463368296,184.40950463368296,0.0,204.89944959298106,0.0,184.40950463368296,204.89944959298106,0,0
+2017/02/18 11:00:00,210.42364522806818,0,1255.9747236913774,0,0,0,0.0,0.0,15.081367944243603,0.0,131.64086955684016,0,39.380909295966944,0.29628531125686286,20.592237917306257,0,0,194.94473348361436,599.6554075446891,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2198.026037029643,0.0,5025.388562814245,0.0,3122.009581182504,0.0,4952.700288175729,0.0,0.0,0.0,1939.4001751125888,0.0,4838.20316584745,0.0,2879.368428736056,0.0,4721.181785200386,0.0,112.15205788082916,0,0,0,0,0,0,0,0,0.06686902459817994,0.00211568932673126,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5309013172013496,-0.5309013172013496,-0.5023749467947486,-0.5023749467947486,-0.5334725163653823,-0.5334725163653823,-0.29301095548754674,-0.29301095548754674,-0.1886245060161802,-0.1886245060161802,-0.5083342754534887,-0.6029334555392065,-0.5744739481102584,-0.6018370314192777,-0.2953665557880793,-0.5255882756870318,-0.6116803028652514,-0.5785067982771974,-0.6084987326556391,-0.328760476889978,10.896670441614816,10.896670441614816,10.275179534317772,10.275179534317772,10.954418231767889,10.954418231767889,6.783770685316384,6.783770685316384,5.737660763381172,5.737660763381172,10.402104139601676,12.622930866099495,11.914001065655569,12.594967795203758,6.812667867697499,10.7782492225124,12.847877794758276,12.012322489306754,12.765671570497418,7.2475784924544655,210.42364522806818,210.42364522806818,0.0,233.8040502534091,0.0,210.42364522806818,233.8040502534091,0,0
+2017/02/18 12:00:00,217.11699768345883,0,1199.7726936257268,0,0,0,0.0,0.0,14.876918395255093,0.0,136.4899973586286,0,39.380909295966944,0.13695727775591465,22.80024015339791,0,0,85.50717464914774,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,990.3865186405612,0.0,3764.800797589558,0.0,2984.8696742960574,0.0,3712.012439890402,0.0,0.0,0.0,597.6321244396001,0.0,3505.393402835019,0.0,2629.322067240985,0.0,3418.567146767192,0.0,0.0,0,0,0,0,0,0,0,0,0.06387678688826634,0.002021017011351333,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.31320734763353564,-0.31320734763353564,-0.4277866076925012,-0.4277866076925012,-0.4881532180450464,-0.4881532180450464,-0.11679331590388395,-0.11679331590388395,-0.0939943113774891,-0.0939943113774891,-0.3748162097544135,-0.5722485648010784,-0.5454355300801724,-0.5738183508413334,-0.28593462811402803,-0.3569332695999892,-0.5726426467042199,-0.5415391970152023,-0.5731843916520171,-0.3102326521119765,7.039145818009743,7.039145818009743,8.816132736054499,8.816132736054499,9.978479144297964,9.978479144297964,5.28254057178053,5.28254057178053,5.18295970914528,5.18295970914528,7.92504599821919,11.860048040042429,11.226867110567625,11.89808419593065,6.698371714986308,7.651274435269855,11.869586654601363,11.137450106873345,11.882710398619764,7.000448388918528,217.11699768345883,217.11699768345883,0.0,241.24110853717647,0.0,217.11699768345883,241.24110853717647,0,0
+2017/02/18 13:00:00,205.86351423671405,0,1168.7192239238163,0,0,0,0.0,0.0,14.876918321203716,0.0,124.80122689546741,0,39.380909295966944,0.13246018638766688,23.24002433523401,0,0,89.94405745978136,599.6554075446891,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3067.483657566524,0.0,2799.398522107361,0.0,3340.4512284274138,0.0,0.0,0.0,0.0,0.0,2732.9894972946922,0.0,2386.068105471695,0.0,3015.877903577627,0.0,0.0,0,0,0,0,0,0,0,0,0.0622234771598246,0.0019687074439953835,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.20825890013772108,-0.20825890013772108,-0.36221887446785217,-0.36221887446785217,-0.4188824446546852,-0.4188824446546852,-0.028696555207500352,-0.028696555207500352,-0.08866677143536122,-0.08866677143536122,-0.2545045611026663,-0.5211307403018195,-0.5324887931906018,-0.5603730901310545,-0.28741153600194336,-0.20319476420696406,-0.5086442422291643,-0.5235891140760423,-0.5545286468775417,-0.30558556182748264,5.899523588677923,5.899523588677923,7.730773803498096,7.730773803498096,8.657943599031952,8.657943599031952,5.0170473323525755,5.0170473323525755,5.162800341041759,5.162800341041759,6.34458268648531,10.679838885012316,10.932290508491988,11.575766521095773,6.716020843300157,5.856232713636018,10.408747964639986,10.734006774225563,11.438104771311075,6.940744561990485,205.86351423671405,205.86351423671405,0.0,228.7372380407934,0.0,205.86351423671405,228.7372380407934,0,0
+2017/02/18 14:00:00,200.8701168299961,0,1107.9965288421824,0,0,0,0.0,0.0,14.876918321203716,0.0,122.5097643007467,0,39.380909295966944,0.0948101895026127,20.575739520121818,0,0,64.7117148906918,599.6554075446891,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2427.128162823636,0.0,2505.1224811533693,0.0,3053.2054808358207,0.0,0.0,0.0,0.0,0.0,1994.0472347580878,0.0,2027.0176726081447,0.0,2687.876062444683,0.0,0.0,0,0,0,0,0,0,0,0,0.05899055589597335,0.0018664200687391458,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2069559751861933,-0.2069559751861933,-0.343843073089478,-0.343843073089478,-0.34023690613321633,-0.34023690613321633,0.02473795610156861,0.02473795610156861,-0.11691287742111502,-0.11691287742111502,-0.2234287288225586,-0.4492133479129478,-0.5210978577788629,-0.5483362387694619,-0.2923547835704917,-0.14698539939457866,-0.4180543728122282,-0.5078434954715757,-0.5380484109308562,-0.308798027922662,5.888282970528763,5.888282970528763,7.459506207786546,7.459506207786546,7.407956659723681,7.407956659723681,5.01266836013302,5.01266836013302,5.283119692086856,5.283119692086856,6.035628970257719,9.210746364526045,10.679116123090054,11.293862733177946,6.775762879880176,5.4476570100727315,8.643405093297034,10.391593261985875,11.057898666491027,6.981919435658455,200.8701168299961,200.8701168299961,0.0,223.18901869999567,0.0,200.8701168299961,223.18901869999567,0,0
+2017/02/18 15:00:00,185.0690287212094,0,1064.138374169539,0,0,0,0.0,0.0,14.876918321203716,0.0,108.75639138185811,0,39.380909295966944,0.13513325379521898,18.487701265931165,0,0,93.46905211864008,562.5302681566415,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2155.781028427242,0.0,2351.292740148653,0.0,3502.4372814882586,0.0,0.0,0.0,0.0,0.0,1582.7275379368862,0.0,1878.5167610625322,0.0,3139.7096895768386,0.0,0.0,0,0,0,0,0,0,0,0,0.05665551525517426,0.0017925410105218554,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2760371948631092,-0.2760371948631092,-0.39969117164581747,-0.39969117164581747,-0.42359417403607097,-0.42359417403607097,0.022782515844509993,0.022782515844509993,-0.17120927661060986,-0.17120927661060986,-0.21214779073832418,-0.38610623011624684,-0.5258677401036697,-0.5551898548512605,-0.3067809979223371,-0.1398047397184203,-0.34468545006107315,-0.5144512762240189,-0.546916651049373,-0.3241089361205696,6.582471881033214,6.582471881033214,8.328550354111968,8.328550354111968,8.741227336904686,8.741227336904686,5.010744700686715,5.010744700686715,5.607571579656536,5.607571579656536,5.933496469420888,8.104908968137934,10.784447692720533,11.453604759756843,6.956015712734583,5.404950167303198,7.471627465786355,10.53398394078728,11.26102995356527,7.184166907789987,185.0690287212094,185.0690287212094,0.0,205.6322541346771,0.0,185.0690287212094,205.6322541346771,0,0
+2017/02/18 16:00:00,182.79600911245615,0,1077.5257728371332,0,0,0,0.0,0.0,15.025710799900967,0.0,106.31215624428707,0,39.380909295966944,0.13820034786530183,18.507057221981626,0,0,88.29186684022605,581.0948521026497,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2078.0816338535406,0.0,2690.474084874286,0.0,3985.788075775982,0.0,0.0,0.0,0.0,0.0,1374.4543597443737,0.0,2170.036375199348,0.0,3590.319094184655,0.0,0.0,0,0,0,0,0,0,0,0,0.057368270276372424,0.0018150920825613316,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4268050343926149,-0.4268050343926149,-0.3796012050316492,-0.3796012050316492,-0.4947964018702733,-0.4947964018702733,-0.005309392055937275,-0.005309392055937275,-0.19810864808856074,-0.19810864808856074,-0.24462562612612482,-0.35830848627948536,-0.5382372345463969,-0.5698176764363203,-0.3167629335456898,-0.19021216882577335,-0.3161705689585035,-0.531692373148196,-0.5667486699409897,-0.33623590351372556,8.798527540131346,8.798527540131346,8.000612154350904,8.000612154350904,10.115985057874354,10.115985057874354,5.000583540464746,5.000583540464746,5.813833806927349,5.813833806927349,6.241970053861323,7.6718442178405155,11.062188257460065,11.80135819262226,7.085891572601014,5.7501502983136135,7.078066505080486,10.91440665339752,11.727628122732796,7.351409474834071,182.79600911245615,182.79600911245615,0.0,203.10667679161793,0.0,182.79600911245615,203.10667679161793,0,0
+2017/02/18 17:00:00,195.1038032837773,0,1119.1911261685195,0,0,0,0.0,0.0,15.685049910093955,0.0,120.17895923267236,0,39.380909295966944,0.15492985228326833,16.271979790306474,0,0,96.28907939182452,561.5274641136212,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2151.9007493912986,0.0,2869.6795912155794,0.0,4256.902572514271,0.0,0.0,0.0,0.0,0.0,1498.0192999563942,0.0,2453.1171810609194,0.0,3927.9048203232132,0.0,0.0,0,0,0,0,0,0,0,0,0.05958656454954041,0.001885277367085705,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5440601090245747,-0.5440601090245747,-0.3933351864114612,-0.3933351864114612,-0.5262649902763312,-0.5262649902763312,-0.0014173109879587122,-0.0014173109879587122,-0.15246454049914757,-0.15246454049914757,-0.32885001933459734,-0.3588941436355429,-0.5494964665758008,-0.5820194294288485,-0.3189487866901967,-0.2634741007844775,-0.32368064634057025,-0.5493415127313879,-0.5858091266526871,-0.3408667479866821,11.195227427457468,11.195227427457468,8.222933195809546,8.222933195809546,10.793264448395064,10.793264448395064,5.000041582556179,5.000041582556179,5.481688035755084,5.481688035755084,7.248808172456066,7.680628623687966,11.320761802161911,12.098535907044337,7.114895073237477,6.441304458564574,7.178374427521192,11.317165929885888,12.192150001328898,7.416920318206891,195.1038032837773,195.1038032837773,0.0,216.78200364864142,0.0,195.1038032837773,216.78200364864142,0,0
+2017/02/18 18:00:00,222.71878140277772,0,1111.6227262731193,0,0,0,0.0,0.0,22.824339730499272,0.0,138.40412594678773,0,39.380909295966944,0.13519956140805972,18.5422316656613,0,0,87.71449371295458,562.5336498970906,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,608.8302832215161,0.0,3550.590351247587,0.0,3152.026643322176,0.0,4670.836384222575,0.0,0.0,0.0,157.46599324993687,0.0,2828.8427645144648,0.0,2884.8184850895514,0.0,4439.545984250493,0.0,0.0,0,0,0,0,0,0,0,0,0.05918361733314503,0.0018725283980363353,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49437451332178295,-0.49437451332178295,-0.4818438728125192,-0.4818438728125192,-0.52740279116285,-0.52740279116285,-0.007374110535539594,-0.007374110535539594,-0.11914962146662018,-0.11914962146662018,-0.38984419512117696,-0.46093545515979845,-0.5562001351835442,-0.5909797266696993,-0.31735121792888143,-0.36999196508273036,-0.4210174631827565,-0.5609027545100004,-0.5998642231729557,-0.34200817919501814,10.107195799467704,10.107195799467704,9.849647231116265,9.849647231116265,10.818555138250176,10.818555138250176,5.001125644316829,5.001125644316829,5.294063312540544,5.294063312540544,8.1656583910529,9.434984897200366,11.477324284296657,12.320880782034521,7.093677452331235,7.84984873844401,8.6955638665995,11.588315591857125,12.544784925324493,7.433207660599692,222.71878140277772,222.71878140277772,0.0,247.46531266975302,0.0,222.71878140277772,247.46531266975302,0,0
+2017/02/18 19:00:00,229.154862881564,0,1167.901434713928,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,120.14191543460078,0,39.380909295966944,0.20668269308230527,27.064217964442385,0,0,142.36179701870927,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1889.7436586285257,0.0,2672.6162801990827,0.0,4160.144256336724,0.0,3598.045380611093,0.0,0.0,0.0,1555.5317160107707,0.0,2265.237561873746,0.0,3975.311494663003,0.0,3423.710451562953,0.0,0.0,0,0,0,0,0,0,0,0,0.06217993745654823,0.0019673298781333957,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49359703018119866,-0.49359703018119866,-0.5260693863818228,-0.5260693863818228,-0.4371292996275919,-0.4371292996275919,-0.0009623695047797435,-0.0009623695047797435,-0.10004718343176759,-0.10004718343176759,-0.39576867607298694,-0.45382126616476615,-0.5419043517125575,-0.5735601564570112,-0.29098563162652974,-0.39357148068368536,-0.44077213495624745,-0.5471226017258868,-0.5825942396870085,-0.3143849190159067,10.091018530742659,10.091018530742659,10.788922270552604,10.788922270552604,8.985770750021402,8.985770750021402,5.000019171873703,5.000019171873703,5.207293037270517,5.207293037270517,8.263166297594978,9.298188334861578,11.145802110623364,11.891820760672488,6.759112555411264,8.226828771398019,9.05293064195638,11.265787844707333,12.112694926043034,7.054568205497475,229.154862881564,229.154862881564,0.0,254.61651431284886,0.0,229.154862881564,254.61651431284886,0,0
+2017/02/18 20:00:00,219.84667546450248,0,1067.2494512365759,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.89738010901058,0,39.380909295966944,0.10950609074215127,27.0977424753112,0,0,77.2001660539015,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2138.713071139613,0.0,1917.820631142582,0.0,4252.70191480981,0.0,2755.7803163160747,0.0,0.0,0.0,1964.5507422722408,0.0,1645.315672131269,0.0,4126.03763816663,0.0,2622.6786943902816,0.0,0.0,0,0,0,0,0,0,0,0,0.056821151302618826,0.0017977816196051522,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42992706397350866,-0.42992706397350866,-0.5074953345218894,-0.5074953345218894,-0.47324461603750956,-0.47324461603750956,0.020066986032368415,0.020066986032368415,-0.10705035653851366,-0.10705035653851366,-0.39342112520247635,-0.4425616103304434,-0.5275408183761864,-0.5513889302496664,-0.2728083470775964,-0.3969049564913669,-0.4336019910112877,-0.5338289106046429,-0.5604460492087922,-0.29501008282960706,8.85466669954657,8.85466669954657,10.384143124903474,10.384143124903474,9.676822612851097,9.676822612851097,5.008335909434194,5.008335909434194,5.237344491635838,5.237344491635838,8.224349716782996,9.086130561283596,10.821626976832334,11.364762454589837,6.545555426786123,8.28203924572668,8.921283969389592,10.962445253388154,11.577494381203849,6.808279803244957,219.84667546450248,219.84667546450248,0.0,244.2740838494472,0.0,219.84667546450248,244.2740838494472,0,0
+2017/02/18 21:00:00,200.8720081101538,0,1039.311450590137,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,0.10290305023806623,24.13746987700439,0,0,84.75251792000654,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2270.774648013978,0.0,2893.2719093476344,0.0,4209.3324886149485,0.0,3629.82745684273,0.0,0.0,0.0,2078.05537194495,0.0,2620.1415658568526,0.0,4022.3547346129094,0.0,3457.0666974712126,0.0,0.0,0,0,0,0,0,0,0,0,0.05533371145433908,0.0017507200596366841,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4000992024329815,-0.4000992024329815,-0.49703736705983925,-0.49703736705983925,-0.45696192170768585,-0.45696192170768585,-0.017776010441664512,-0.017776010441664512,-0.16030706501443248,-0.16030706501443248,-0.40501235359109294,-0.4499737164628209,-0.5307370957102471,-0.5509331753750824,-0.2748386559149142,-0.4151072892457484,-0.4477529826795965,-0.5405128951491546,-0.5626553980574891,-0.2988781947610291,8.335389608944993,8.335389608944993,10.162800253800242,10.162800253800242,9.35831043745462,9.35831043745462,5.00654117236526,5.00654117236526,5.5325740032191675,5.5325740032191675,8.41830131039859,9.22511253800441,10.89299183936474,11.354151751933784,6.568717313384937,8.59190143606871,9.183224410029041,11.114006946761549,11.629926826283707,6.856181997215657,200.8720081101538,200.8720081101538,0.0,223.19112012239313,0.0,200.8720081101538,223.19112012239313,0,0
+2017/02/18 22:00:00,196.91951376836968,0,1067.421736085797,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,0.1802526390881884,27.0977424753112,0,0,148.35315592821098,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2386.163011918145,0.0,3212.936089701387,0.0,4187.427065170627,0.0,3878.694155828361,0.0,0.0,0.0,2320.1107025712786,0.0,3029.9335153274824,0.0,4105.182822839889,0.0,3774.2565378439044,0.0,0.0,0,0,0,0,0,0,0,0,0.0568303238756039,0.001798071833420589,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48841381401518025,-0.48841381401518025,-0.5413434693131707,-0.5413434693131707,-0.5532625892305862,-0.5532625892305862,-0.08079201072546532,-0.08079201072546532,-0.22154565591513203,-0.22154565591513203,-0.416667751410069,-0.4632536408007835,-0.5362516675392922,-0.5582055507769903,-0.2789439692662227,-0.430314835269575,-0.465739775564459,-0.5479228264581523,-0.5714307014341389,-0.3038883433811891,9.98383725944825,9.98383725944825,11.132975701763684,11.132975701763684,11.40847883523513,11.40847883523513,5.135158865610364,5.135158865610364,6.018209732538708,6.018209732538708,8.61912592470837,9.48003130648408,11.017158511304743,11.524538866411888,6.616081915654746,8.861668664950614,9.528598492807177,11.284292157261419,11.840273443823733,6.9191672163262865,196.91951376836968,196.91951376836968,0.0,218.79945974263296,0.0,196.91951376836968,218.79945974263296,0,0
+2017/02/18 23:00:00,140.42969639956968,0,925.507260386665,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,0.23388930617095186,18.75645548897329,0,0,184.70631874763075,581.0943553325857,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2324.202213624126,0.0,3551.7249051122553,0.0,3967.130226117382,0.0,4143.692686093337,0.0,0.0,0.0,2360.55355336677,0.0,3444.985606848773,0.0,4000.639897751702,0.0,4112.156680191099,0.0,0.0,0,0,0,0,0,0,0,0,0.049274692072383865,0.0015590169098765275,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.588270366006191,-0.588270366006191,-0.6537563561236084,-0.6537563561236084,-0.6768954658667166,-0.6768954658667166,-0.25598808643218574,-0.25598808643218574,-0.4421427911226828,-0.4421427911226828,-0.4362609019331182,-0.48581436023204677,-0.5512296219509979,-0.5760196074864589,-0.2994079487297717,-0.45645388716387797,-0.4955299488780035,-0.5671933320638977,-0.59305572280927,-0.3270226282986612,12.253281998918112,12.253281998918112,13.976361162077879,13.976361162077879,14.629663258613917,14.629663258613917,6.360346445461943,6.360346445461943,9.078347922955103,9.078347922955103,8.969844986314598,9.930521096998518,11.361052478905606,11.951601049361443,6.8627916367269535,9.348556263354965,10.131285441587877,11.73828541370986,12.37289263357654,7.223780098397242,140.42969639956968,140.42969639956968,0.0,156.03299599952186,0.0,140.42969639956968,156.03299599952186,0,0
+2017/02/19 00:00:00,93.45879934908262,0,877.8025852424481,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.4498758262767481,14.065967261513302,0,0,283.691771309484,540.875285164148,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,399.1924869196206,0.0,295.3229249961247,0.0,1459.4211602091332,0.0,0.0,0.0,0.0,0.0,2639.208979825898,0.0,4825.313203806919,0.0,4161.6191943753365,0.0,5363.845238669977,0.0,990.9862583192005,0.0,2740.8120260547175,0.0,4787.664815203831,0.0,4319.647771138405,0.0,5411.216943774248,0.0,4311.098084267967,0,0,0,0,0,0,0,0,0.046734859832534836,0.0014786583882168173,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7543928743732214,-0.7543928743732214,-0.7825532793696272,-0.7825532793696272,-0.7978400908851341,-0.7978400908851341,-0.5168755500109631,-0.5168755500109631,-0.5304270499104711,-0.5304270499104711,-0.46854732227622037,-0.527302740828318,-0.5798827685463535,-0.6116309690063442,-0.3279682715450769,-0.49750525735649537,-0.5454113738478964,-0.6007185290481349,-0.6331459416565149,-0.36213631520698225,16.986082472874386,16.986082472874386,17.90618047285173,17.90618047285173,18.41978756243917,18.41978756243917,10.586698008744975,10.586698008744975,10.886049920030302,10.886049920030302,9.583764684395135,10.816329002548414,12.046030283928488,12.846599740690124,7.236714009143455,10.172602157246999,11.226310722151467,12.56649540458919,13.413992160429231,7.7295229055339405,93.45879934908262,93.45879934908262,0.0,103.84311038786959,0.0,93.45879934908262,103.84311038786959,0,0
+2017/02/19 01:00:00,42.9460188188807,0,592.433176463048,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.635819658191353e-09,11.760384751444821,0,0,0.0,539.1976476942318,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03154158113409603,0.0009979536407870885,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6706119207213201,-0.6706119207213201,-0.7134335370612209,-0.7134335370612209,-0.7487992396421905,-0.7487992396421905,-0.47604314993650004,-0.47604314993650004,-0.19865302951732766,-0.19865302951732766,-0.5364518046598391,-0.6377124677614361,-0.7918812221502055,-0.8267653452180592,-0.11810349651025658,-0.5869692341765346,-0.6588962958664624,-0.8095527544811028,-0.8452025431603446,-0.214964645999713,14.449962459252959,14.449962459252959,15.708420027848916,15.708420027848916,16.80735248806556,16.80735248806556,9.732716438214183,9.732716438214183,5.818320181062148,5.818320181062148,11.021689588062344,13.537004246766273,18.21840208885297,19.41865591860521,5.288919104227588,12.220931874579904,14.119476865719818,18.820007331171695,20.073681179338863,5.9584996188968375,42.9460188188807,42.9460188188807,0.0,47.71779868764522,0.0,42.9460188188807,47.71779868764522,0,0
+2017/02/19 02:00:00,23.77476381771883,0,35.77691832942498,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5776683940410409,0,0,0.0,0.2865658168808457,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0019047896320605055,6.0266216210494334e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.712288957819223,-0.712288957819223,-0.7614955367386086,-0.7614955367386086,-0.8075438556041199,-0.8075438556041199,-0.533865661473542,-0.533865661473542,-0.06791849069638309,-0.06791849069638309,-0.620612626430099,-0.7204196466316176,-0.9016470485558558,-0.9371698155540378,-0.05246924797497868,-0.6948242975456962,-0.7700690828270094,-0.9656121196343982,-1.0021150388728077,-0.20102586825456908,15.673752973336335,15.673752973336335,17.21495888248677,17.21495888248677,18.750951757171904,18.750951757171904,10.963273301364737,10.963273301364737,5.095509517110116,5.095509517110116,13.081021444110206,15.92123917806073,22.166589347561455,23.550266992500866,5.056995969318905,15.15179196329963,17.4941043228701,24.69435744744601,26.208790454055787,5.838020035551892,23.77476381771883,23.77476381771883,0.0,26.416404241909813,0.0,23.77476381771883,26.416404241909813,0,0
+2017/02/19 03:00:00,28.34416513510387,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248020486309767,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7218457755157003,-0.7218457755157003,-0.7747186200369797,-0.7747186200369797,-0.8226217776361645,-0.8226217776361645,-0.5550924152276676,-0.5550924152276676,0.00622283034532739,0.00622283034532739,-0.6688071016265216,-0.7716772303736747,-0.9586507002066059,-0.9949209109209086,-0.030820336065230422,-0.7619197550323156,-0.8379761806092587,-1.0459817279553625,-1.0837302182864583,-0.20141988897924326,15.964941927085007,15.964941927085007,17.646799692945507,17.646799692945507,19.27340520588602,19.27340520588602,11.451319396454778,11.451319396454778,5.000801599638763,5.000801599638763,14.398663062517514,17.546813221944433,24.411395300759352,25.906280432829504,5.019664101139853,17.22869715985688,19.81525410661891,28.095293092328063,29.774680495900682,5.841314084457949,28.34416513510387,28.34416513510387,0.0,31.49351681678208,0.0,28.34416513510387,31.49351681678208,0,0
+2017/02/19 04:00:00,23.721989650260376,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248942265825859,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7815100940063892,-0.7815100940063892,-0.8351643146866676,-0.8351643146866676,-0.8835701269870823,-0.8835701269870823,-0.6294473385012774,-0.6294473385012774,0.06529782064945738,0.06529782064945738,-0.7595331413086408,-0.8596014961439931,-1.0513875290148567,-1.086900264371487,-0.0022667784995330834,-0.8518076037732519,-0.9272792339316553,-1.1429140230540982,-1.1812964814686813,-0.21686981254247578,17.8714931769603,17.8714931769603,19.715286357443688,19.715286357443688,21.482061573481573,21.482061573481573,13.315023053013093,13.315023053013093,5.088279770189317,5.088279770189317,17.15150693169504,20.59509360491343,28.332668077655995,29.917997704112395,5.000106365088342,20.31179296582765,23.159924033430798,32.50642612051021,34.33851877037277,5.975598767359941,23.721989650260376,23.721989650260376,0.0,26.357766278067082,0.0,23.721989650260376,26.357766278067082,0,0
+2017/02/19 05:00:00,40.19728575750168,0,361.1041966249974,0,0,0,0.0,0.012925659018002331,4.633261998087618,9.319298099999997,23.111338313975452,0,1.5077602032627846,1.087675678085529,0.5250258050722754,0,0,272.3783153436371,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.816965012355122,0.0,270.89196987831787,0.0,0.0,0.0,0.0,1.3255243728298054,1969.7316409779055,1.2064270373676003,1543.571977085145,2.4766900569727817,3687.790568681194,1.7784545919597194,2392.1157586289683,0.0,0.0,1.8985003872207924,2200.5642969888677,0.5395191326373504,1559.8172949365753,2.362383612927108,3701.68771002042,1.3381598260871717,2355.0428065025694,0.0,0.0,0,0,0,0,0,0,0,0,0.019225454900600666,0.0006082799918074645,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7673270011626373,-0.7673270011626373,-0.8214692262207005,-0.8214692262207005,-0.8353557305766451,-0.8353557305766451,-0.6277391624556516,-0.6277391624556516,0.19664004004943933,0.19664004004943933,-0.6117262658357858,-0.6643078027865579,-0.735151976455462,-0.7604916621575407,0.028633226354709808,-0.6613970718754685,-0.7068258023812264,-0.7851777582010872,-0.8154304771209884,-0.21118125713029612,17.40448381336907,17.40448381336907,19.233131270996083,19.233131270996083,19.72208110846566,19.72208110846566,13.26951515408318,13.26951515408318,5.801792472294679,5.801792472294679,12.849068616880743,14.271391053475412,16.376917735855244,17.182479111752272,5.016972170965758,14.189522072833299,15.509062871156516,17.99365247915196,19.0230306479682,5.924993823738845,40.19728575750168,40.19728575750168,0.0,44.663650841668534,0.0,40.19728575750168,44.663650841668534,0,0
+2017/02/19 06:00:00,74.79232213191807,0,310.6281012084437,0,0,0,0.0,0.012635374815578587,4.633261998087618,9.319298099999997,57.911447091112116,0,1.3846034569443688,1.0061041560096349,0.5249719549487395,0,0,97.6859861331789,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2885559926467067,1580.0157278020654,0.5305621593132059,1229.7316452056732,2.0241874328972926,3016.4528957954767,1.592894445385923,1962.617953408278,0.0,0.0,1.8007172923990424,1986.037285740575,0.9124617808782318,1411.7886713627283,2.616792920758826,3470.9423119694293,1.869202791299358,2237.663505203423,0.0,0.0,0,0,0,0,0,0,0,0,0.01653807019264296,0.0005232530129093502,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.590251664809269,-0.590251664809269,-0.6504406119978875,-0.6504406119978875,-0.6811407114865282,-0.6811407114865282,-0.46602960183374825,-0.46602960183374825,0.5099651654280538,0.5099651654280538,-0.5965984560128171,-0.639737650451996,-0.6897214283745514,-0.710706253482961,0.09512612291262494,-0.623033654839541,-0.6598596177561004,-0.701997489896916,-0.7278706893308775,-0.16145985262695625,12.302684274657153,12.302684274657153,13.884645649299742,13.884645649299742,14.752038585364474,14.752038585364474,9.534277641970903,9.534277641970903,10.437107196068794,10.437107196068794,12.462083954543772,13.591847696069152,15.001770029612103,15.625908999035062,5.187394156995339,13.144809406088825,14.146426838928136,15.364582125657392,16.15053723727239,5.540269880813909,74.79232213191807,74.79232213191807,0.0,83.10258014657563,0.0,74.79232213191807,83.10258014657563,0,0
+2017/02/19 07:00:00,105.51028780931293,0,801.6721453965641,0,0,0,0.1288518356069035,0.005674421630963783,8.33396954093373,13.929299233552332,80.56906512710079,0,1.1910437133981555,0.8273821617602664,0.525001775329818,0,0,64.92242488891985,506.06242917610734,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,407.8114446138028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,986.9940256747939,0.0,823.6335371341006,1.3661717859625544,2167.289068282739,0.0,1415.2207251714817,0.0,0.0,1.0229807883274589,1368.0379638990607,0.0,995.2766570050765,1.906963291807945,2496.2729653458473,1.3783057648658237,1611.025788356583,0.0,0.0,0,0,0,0,0,0,0,0,0.04268161882481565,0.0013504166680746283,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42932931938825963,-0.42932931938825963,-0.49098803261809715,-0.49098803261809715,-0.5210357453372084,-0.5210357453372084,-0.3151685701967911,-0.3151685701967911,0.7506458823147385,0.7506458823147385,-0.5874908512341684,-0.6286130366329568,-0.6737257514111287,-0.6937419300085086,0.17049569778870485,-0.6093682955506551,-0.64484166201938,-0.6804526744042246,-0.705376320956649,-0.04357195796096054,8.843885901164,8.843885901164,10.036923307302573,10.036923307302573,10.67775101161267,10.67775101161267,7.064864051940418,7.064864051940418,16.866208978309274,16.866208978309274,12.23389205031269,13.292780414790414,14.538800160780397,15.119876864079075,5.6025111965770265,12.7880959319601,13.730857159690316,14.732151983359813,15.46558343978765,5.039303569070626,105.51028780931293,105.51028780931293,0.0,117.2336531214588,0.0,105.51028780931293,117.2336531214588,0,0
+2017/02/19 08:00:00,120.43495959790098,0,809.911098262031,0,0,0,0.0,0.0,7.520648947495388,0.0,69.33401494192633,0,39.380909295966944,0.18982928390468043,0.5775819261533406,0,0,50.914197829757526,492.8192565881925,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,585.4662785500274,0.0,333.0979533093174,0.0,1192.781100949031,0.0,42.74968484367477,0.0,0.0,0.0,3526.4148238570824,0.0,4509.7715372684725,0.0,3842.0849128989157,0.0,4914.527857782884,0.0,1614.2193003106445,0.0,3715.08630675911,0.0,4567.78133214812,0.0,5088.71186639908,0.0,4935.941621064023,0.0,1155.640684595295,0,0,0,0,0,0,0,0,0.043120266778020416,0.0013642951835511812,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6245766373906543,-0.6245766373906543,-0.6564641288145054,-0.6564641288145054,-0.6791241175566449,-0.6791241175566449,-0.5343661881473257,-0.5343661881473257,0.17873091077182227,0.17873091077182227,-0.5689822550723374,-0.621578987011443,-0.7128234043460928,-0.6738327262718191,-0.19902296755283538,-0.5918726436965638,-0.640501154661392,-0.6643499634870096,-0.6849982538066457,-0.26555867783028336,13.18559578909391,13.18559578909391,14.051613276640808,14.051613276640808,14.693810139006544,14.693810139006544,10.974556684191057,10.974556684191057,5.662203851255526,5.662203851255526,11.781247488574024,13.106452096023077,15.689933280696053,14.54185961442353,5.821375998600246,12.343228935080901,13.612570129134312,14.27257958721816,14.863913819620251,6.464268129079059,120.43495959790098,120.43495959790098,0.0,133.81662177544553,0.0,120.43495959790098,133.81662177544553,0,0
+2017/02/19 09:00:00,150.19669284382223,0,880.8168939091369,0,0,0,0.0,0.0,9.809638090128871,0.0,96.91714705112861,0,39.380909295966944,0.13199522919048695,0.5250279749530814,0,0,68.60620796260173,492.797513333638,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1887.0134989809433,0.0,3365.3550465654316,0.0,3291.060127148119,0.0,3464.6697450008905,0.0,93.6477530226883,0.0,1819.8675118078609,0.0,3389.139321172358,0.0,3537.023033146735,0.0,3381.4290334078996,0.0,133.3897538475046,0,0,0,0,0,0,0,0,0.046895343858667886,0.0014837359909370728,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.583228086575411,-0.583228086575411,-0.6412471039453936,-0.6412471039453936,-0.6881252778268223,-0.6881252778268223,-0.3827119425054162,-0.3827119425054162,-0.2919492608732885,-0.2919492608732885,-0.5145853297238754,-0.5990557636177097,-0.6580308969665768,-0.6258372289185604,-0.30520938592064106,-0.532310883506138,-0.6167292156721577,-0.6360498800559339,-0.6304179087892907,-0.3497292165504789,12.128324787150973,12.128324787150973,13.632840516693804,13.632840516693804,14.955074994477613,14.955074994477613,8.05026202798598,8.05026202798598,6.770823045910404,6.770823045910404,10.536892195906177,12.524268710514662,14.095300679595852,13.218994273169656,6.935951592244848,10.928293109542906,12.979234626926896,13.492113106811274,13.340936632472008,7.544835031738529,150.19669284382223,150.19669284382223,0.0,166.8852142709136,0.0,150.19669284382223,166.8852142709136,0,0
+2017/02/19 10:00:00,149.94468486540796,0,953.7751836641206,0,0,0,0.0,0.0,9.390899105965717,0.0,97.06762091869685,0,39.380909295966944,0.14840196506425637,0.5248783772599395,0,0,88.31828625630818,492.80819602609904,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,476.66859066402486,0.0,3534.8394968193124,0.0,2493.930530643792,0.0,3551.7012002702522,0.0,0.0,0.0,474.98645753254334,0.0,3451.5771835988717,0.0,2268.9753704932045,0.0,3358.0270183253497,0.0,2.22121841288654,0,0,0,0,0,0,0,0,0.05077969724591483,0.0016066342244919027,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5018422948925435,-0.5018422948925435,-0.5885981196682204,-0.5885981196682204,-0.6175863586552824,-0.6175863586552824,-0.25274434468585055,-0.25274434468585055,-0.3322354061724457,-0.3322354061724457,-0.48523173308619266,-0.5972118342288402,-0.631348255056173,-0.6163608933546566,-0.333802273362752,-0.48752146804597873,-0.6114450852124806,-0.623711672761248,-0.6174842486618237,-0.3747550498982289,10.263909596355248,10.263909596355248,12.261442543494823,12.261442543494823,13.001644639336845,13.001644639336845,6.325998907768536,6.325998907768536,7.295549012225038,7.295549012225038,9.918611119526474,12.477581592289283,13.365814620472165,12.969614630031089,7.317346839524831,9.965501897073182,12.841785142018864,13.162719048668222,12.998973299597068,7.924086465226409,149.94468486540796,149.94468486540796,0.0,166.60520540600885,0.0,149.94468486540796,166.60520540600885,0,0
+2017/02/19 11:00:00,204.65862118450443,0,1132.2382364533325,0,0,0,0.0,0.0,13.195685805097062,0.0,124.87761316689259,0,39.380909295966944,0.10435106599009794,23.668086648103422,0,0,71.20824624556965,599.6554075446891,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3106.514792299337,0.0,1801.1030963375997,0.0,3204.1674542017045,0.0,0.0,0.0,0.0,0.0,3014.418560743504,0.0,1621.763728280895,0.0,3035.1349389236284,0.0,0.0,0,0,0,0,0,0,0,0,0.06028120236518542,0.0019072552233702139,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5101637751373327,-0.5101637751373327,-0.5164589902396918,-0.5164589902396918,-0.5612780006825802,-0.5612780006825802,-0.11474785818611276,-0.11474785818611276,-0.2852467495367557,-0.2852467495367557,-0.4794531177917096,-0.5850051225962166,-0.6120525343961106,-0.614681627504426,-0.346144512178204,-0.48117657592354157,-0.5961179815570624,-0.6040648647354913,-0.6156224246254658,-0.37836180792830526,10.441377722817833,10.441377722817833,10.577622129398208,10.577622129398208,11.597213472819917,11.597213472819917,5.272724983287233,5.272724983287233,6.690182955977093,6.690182955977093,9.801278637491777,12.172237198131484,12.857524313836706,12.92582947007169,7.492693787209745,9.836121997023696,12.44995567335313,12.651840890919217,12.950344728867847,7.980945446708276,204.65862118450443,204.65862118450443,0.0,227.39846798278268,0.0,204.65862118450443,227.39846798278268,0,0
+2017/02/19 12:00:00,222.95401298752967,0,1164.6860298431257,0,0,0,0.0,0.0,13.336625763840152,0.0,143.25325374857618,0,39.380909295966944,0.07227271947237866,23.478976257219607,0,0,50.42051086654685,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2546.803865001467,0.0,1567.0263813646393,0.0,2676.8164210241753,0.0,0.0,0.0,0.0,0.0,2354.963563056349,0.0,1255.9429675765705,0.0,2438.05020362347,0.0,0.0,0,0,0,0,0,0,0,0,0.06200874691955489,0.0019619135288725747,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.34166974091839886,-0.34166974091839886,-0.45573742478092727,-0.45573742478092727,-0.5269081137843171,-0.5269081137843171,0.040329947261448514,0.040329947261448514,-0.18799434046899066,-0.18799434046899066,-0.4598986884812762,-0.5622397830648336,-0.5875682223026881,-0.5986768354430724,-0.341250339527779,-0.4538542696497495,-0.5720023912492629,-0.5800436762403524,-0.600458066485154,-0.37006270200910324,7.428372634313902,7.428372634313902,9.334819192349869,9.334819192349869,10.807552714382808,10.807552714382808,5.033671917557072,5.033671917557072,5.732732687773293,5.732732687773293,9.41491359891505,11.620047252367186,12.23581542908859,12.514662443756734,7.422387697964652,9.298817919182014,11.854092914211108,12.049977480934743,12.559872911710343,7.850944171698956,222.95401298752967,222.95401298752967,0.0,247.72668109725518,0.0,222.95401298752967,247.72668109725518,0,0
+2017/02/19 13:00:00,199.56712859105636,0,1102.9072674936376,0,0,0,0.0,0.0,13.396348105004028,0.0,124.80122689546741,0,39.380909295966944,0.05706544427933055,18.499603647884314,0,0,42.697096682341396,581.0904118919502,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,327.02232503966144,0.0,2131.7432176842094,0.0,1753.9806634167135,0.0,2275.6485575114343,0.0,0.0,0.0,169.50668310327387,0.0,1964.0280366942839,0.0,1459.3905596833993,0.0,2038.2368388488576,0.0,0.0,0,0,0,0,0,0,0,0,0.058719599852127026,0.0018578472083837908,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.24883047536007294,-0.24883047536007294,-0.4254141081317411,-0.4254141081317411,-0.49995792535529127,-0.49995792535529127,0.1260976213156554,0.1260976213156554,-0.15000036135626285,-0.15000036135626285,-0.453831497696785,-0.5335920522433096,-0.5591273003725079,-0.5720760830282767,-0.3181523024954672,-0.45383522958609335,-0.5413464018672282,-0.5538983089818611,-0.574417537476051,-0.34514924953367937,6.285144448810556,6.285144448810556,8.773651117682235,8.773651117682235,10.224138204331268,10.224138204331268,5.329383587536725,5.329383587536725,5.466228289747733,5.466228289747733,9.298383509604093,10.957109909854964,11.546298611589322,11.855875298802275,7.104303295365241,9.298454699530012,11.133042728747284,11.42334608497633,11.912630771038522,7.478314113511786,199.56712859105636,199.56712859105636,0.0,221.7412539900626,0.0,199.56712859105636,221.7412539900626,0,0
+2017/02/19 14:00:00,199.37862607514543,0,1070.3716560400894,0,0,0,0.0,0.0,13.244385240300696,0.0,124.7641830973959,0,39.380909295966944,0.08101766047072173,18.47615557855684,0,0,64.21774123344935,562.5245083998386,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,881.1518577892981,0.0,2603.955884969868,0.0,2253.6253089338516,0.0,2769.479870459126,0.0,0.0,0.0,698.5274361711648,0.0,2429.1953954033847,0.0,1939.1517924404743,0.0,2526.5641324681774,0.0,0.0,0,0,0,0,0,0,0,0,0.0569873797989958,0.0018030409733596994,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3208893294453496,-0.3208893294453496,-0.43738032651740955,-0.43738032651740955,-0.5000568032681859,-0.5000568032681859,0.13913042797111927,0.13913042797111927,-0.15034349264903488,-0.15034349264903488,-0.44270132254910066,-0.5132729480356463,-0.540895276555303,-0.5537988677098112,-0.305638199090343,-0.44728508564048786,-0.5196003771980403,-0.5361804047021372,-0.5566025976554769,-0.3317766260832168,7.140813262242219,7.140813262242219,8.990380430965658,8.990380430965658,10.226221301198251,10.226221301198251,5.4010499335162905,5.4010499335162905,5.468365868612224,5.468365868612224,9.088728417415851,10.508453869185956,11.122736107652173,11.421019347278119,6.941415706540582,9.174425852105514,10.646250901264466,11.015545549404237,11.486785689264607,7.2891863105068495,199.37862607514543,199.37862607514543,0.0,221.5318067501616,0.0,199.37862607514543,221.5318067501616,0,0
+2017/02/19 15:00:00,181.242739054662,0,1039.220129822647,0,0,0,0.0,0.0,13.244385240300696,0.0,111.01081017850728,0,39.380909295966944,0.10926306630606648,14.065396071126681,0,0,90.22334119213562,540.8577347362541,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,415.2327962058374,0.0,2808.186486466563,0.0,1747.548061658885,0.0,3021.8621383800682,0.0,0.0,0.0,228.88047158809624,0.0,2619.569921083954,0.0,1423.221465544576,0.0,2776.2193891165734,0.0,0.0,0,0,0,0,0,0,0,0,0.05532884946903604,0.0017505662298107792,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3690881217519633,-0.3690881217519633,-0.33924501093451964,-0.33924501093451964,-0.3808287079311029,-0.3808287079311029,0.14803166726681283,0.14803166726681283,-0.1994261903772761,-0.1994261903772761,-0.43767764367655315,-0.5015690826074729,-0.5327941599370262,-0.5475274892728084,-0.31415553711714156,-0.4424648139844329,-0.5051073264622745,-0.5280462703512387,-0.5501872021882621,-0.340139589206815,7.835870581425695,7.835870581425695,7.3938745690245895,7.3938745690245895,8.020154747421714,8.020154747421714,5.454058829196086,5.454058829196086,5.824713278673315,5.824713278673315,8.995843655720691,10.258133682775323,10.939154897225833,11.275146952973472,7.051559437180856,9.084331189376854,10.33318447423872,10.832883008558369,11.336803732601751,7.406573187088043,181.242739054662,181.242739054662,0.0,201.38082117184666,0.0,181.242739054662,201.38082117184666,0,0
+2017/02/19 16:00:00,180.39266158176517,0,1113.0706529274237,0,0,0,0.0,0.0,14.594182960773864,0.0,108.75639138185811,0,39.380909295966944,0.21376100834141595,14.015441732370563,0,0,152.33334953119754,552.5982495019687,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,757.3858792124781,0.0,3394.0864748958797,0.0,1913.5518651346838,0.0,3539.2812576465103,0.0,0.0,0.0,614.753178614399,0.0,3231.588442609394,0.0,1631.7130916784408,0.0,3316.607044250801,0.0,0.0,0,0,0,0,0,0,0,0,0.05926070602070914,0.0018749674303756155,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4730168419259746,-0.4730168419259746,-0.33994456182461774,-0.33994456182461774,-0.44831173230046123,-0.44831173230046123,0.11944090421949805,0.11944090421949805,-0.22984178132367536,-0.22984178132367536,-0.461090486912472,-0.5281265716613087,-0.5475905876032996,-0.567039416213076,-0.3247220956065633,-0.4743328644404865,-0.5414004778124973,-0.5486582011096156,-0.5756507786554289,-0.3518654583407893,9.672288245847056,9.672288245847056,7.403801858353077,7.403801858353077,9.193743737987148,9.193743737987148,5.295503758804173,5.295503758804173,6.096067756002498,6.096067756002498,9.437990214605719,10.834672276000347,11.2766061314681,11.734595516403203,7.192473228310689,9.69851757027341,11.13427876507582,11.301321355406998,11.94261943806444,7.576167561794435,180.39266158176517,180.39266158176517,0.0,200.43629064640572,0.0,180.39266158176517,200.43629064640572,0,0
+2017/02/19 17:00:00,195.6994738507406,0,1096.9874123072293,0,0,0,0.0,0.0,13.813707478920309,0.0,124.87761316689259,0,39.380909295966944,0.13198384181023862,14.06328486469621,0,0,86.9090082373924,548.7038214067632,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1264.3577980725881,0.0,3764.6033252444186,0.0,2334.725286345032,0.0,3889.6750488976863,0.0,0.0,0.0,1145.1997292490082,0.0,3605.277426431175,0.0,2110.5514255965036,0.0,3709.8561977611744,0.0,0.0,0,0,0,0,0,0,0,0,0.05840442237712643,0.001847875212771595,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.502950892412488,-0.502950892412488,-0.3636128968182967,-0.3636128968182967,-0.4366770229790332,-0.4366770229790332,0.1275462258940249,0.1275462258940249,-0.18086687896381384,-0.18086687896381384,-0.4693250790615676,-0.5365189842706034,-0.5501532390984889,-0.5721704658923179,-0.32309547142570466,-0.4875409228245581,-0.5538871832441479,-0.5536754756413299,-0.5830997927161358,-0.3505790224050435,10.287379285347356,10.287379285347356,7.751939194510115,7.751939194510115,8.9774722925616,8.9774722925616,5.337000406318921,5.337000406318921,5.6781485989183835,5.6781485989183835,9.599107102427794,11.02321091411504,11.336014476269028,11.858158483191318,7.170472698373288,9.965901275061626,11.423085742455996,11.418132802267863,12.125159815914301,7.557275992430547,195.6994738507406,195.6994738507406,0.0,217.4438598341562,0.0,195.6994738507406,217.4438598341562,0,0
+2017/02/19 18:00:00,207.53350701221987,0,1130.8435300984127,0,0,0,0.0,0.0,16.588598860759564,0.0,129.38645076019097,0,39.380909295966944,0.15406266528383536,18.59151022756418,0,0,106.93870220858676,562.5302452267518,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1334.7523310978634,0.0,3423.505596949045,0.0,2378.7711416579496,0.0,3546.140550879291,0.0,0.0,0.0,1266.084347031909,0.0,3318.0688922032446,0.0,2207.2875641282885,0.0,3400.820643033028,0.0,0.0,0,0,0,0,0,0,0,0,0.06020694716578119,0.0019049058406212078,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47991460546901665,-0.47991460546901665,-0.38430072194351017,-0.38430072194351017,-0.4468469699873949,-0.4468469699873949,0.15542937758207817,0.15542937758207817,-0.15099486213284505,-0.15099486213284505,-0.4656246028162021,-0.5321901003561752,-0.5434650534646867,-0.5669900835795489,-0.315414076974769,-0.4850368630117676,-0.5526967318967855,-0.5479617509064726,-0.5786313744858693,-0.3422139882983537,9.810596027341006,9.810596027341006,8.075779615333573,8.075779615333573,9.166195852458785,9.166195852458785,5.500624026731046,5.500624026731046,5.4724371441491115,5.4724371441491115,9.526342686234173,10.925580050628199,11.181564392934902,11.733413059364551,7.068094944811108,9.914630883957443,11.395260160121765,11.285192949959665,12.015370909522332,7.436150288143423,207.53350701221987,207.53350701221987,0.0,230.59278556913318,0.0,207.53350701221987,230.59278556913318,0,0
+2017/02/19 19:00:00,212.5518320267167,0,1115.2200836255413,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,115.6330778413024,0,39.380909295966944,0.123322706108317,23.387354230801208,0,0,89.68044593032249,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1642.4846744827814,0.0,2855.687137540099,0.0,2650.4035309521255,0.0,2967.454261782433,0.0,0.0,0.0,1612.2511012653529,0.0,2764.136104616845,0.0,2507.802038036376,0.0,2841.2722517646635,0.0,0.0,0,0,0,0,0,0,0,0,0.05937514330317457,0.0018785881462234555,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.420236385658708,-0.420236385658708,-0.4019678091492225,-0.4019678091492225,-0.4588348849834135,-0.4588348849834135,0.17038675780859192,0.17038675780859192,-0.15314802360673332,-0.15314802360673332,-0.45746605326823825,-0.5200743119762807,-0.5315983115205848,-0.5538443235747537,-0.2991545769984458,-0.4775136270553644,-0.5394569192840502,-0.5366776958562656,-0.5655766806176674,-0.3243329367223161,8.681778153321815,8.681778153321815,8.366801482919612,8.366801482919612,9.394366989531164,9.394366989531164,5.601740511611794,5.601740511611794,5.486020868545367,5.486020868545367,9.368000657304194,10.656641856743562,10.912296284491916,11.422082875355159,6.859628885693624,9.76222094629668,11.089933596206677,11.026805817865153,11.699579951043802,7.187199540715099,212.5518320267167,212.5518320267167,0.0,236.16870225190746,0.0,212.5518320267167,236.16870225190746,0,0
+2017/02/19 20:00:00,201.01165737020284,0,1056.4954623375695,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,104.13412371906301,0,39.380909295966944,0.08365893364392912,23.38579746899109,0,0,66.44617715489525,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1611.684105616473,0.0,2411.356195852985,0.0,2584.3879798647167,0.0,2514.526983180858,0.0,0.0,0.0,1589.0495865848602,0.0,2326.116644583596,0.0,2438.9924914763405,0.0,2386.164376767499,0.0,0.0,0,0,0,0,0,0,0,0,0.05624860096808446,0.0017796665261209902,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3955471223164845,-0.3955471223164845,-0.4205413069506521,-0.4205413069506521,-0.4681698354249628,-0.4681698354249628,0.17750710394899946,0.17750710394899946,-0.17575722979219205,-0.17575722979219205,-0.4467640272900869,-0.5043272738941075,-0.517347613713861,-0.537174093898559,-0.2857015684387412,-0.4666026683010638,-0.5228526148453508,-0.5224391033756204,-0.5484163386437203,-0.30963567377932005,8.259492852604737,8.259492852604737,8.687156782015478,8.687156782015478,9.576327587049803,9.576327587049803,5.653154095828995,5.653154095828995,5.640322788416512,5.640322788416512,9.164638703679614,10.316592038658172,10.596992265515297,11.038056546908422,6.69559505016835,9.54551753850619,10.717751282443558,10.708634839980192,11.295717917626163,6.992727505944657,201.01165737020284,201.01165737020284,0.0,223.34628596689203,0.0,201.01165737020284,223.34628596689203,0,0
+2017/02/19 21:00:00,200.39033443503712,0,992.8909157529893,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,0.0654366427690052,18.500719370395316,0,0,56.8986674940516,581.0887231334964,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1445.1590935423924,0.0,2055.943462397034,0.0,2381.3636537203115,0.0,2149.2170502700533,0.0,0.0,0.0,1368.0947957912326,0.0,1941.5330328350299,0.0,2172.4084750518805,0.0,1975.0465451746704,0.0,0.0,0,0,0,0,0,0,0,0,0.05286224779560972,0.0016725246722267678,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.43747003399985956,-0.43747003399985956,-0.44165450824685093,-0.44165450824685093,-0.48055433960267013,-0.48055433960267013,0.17307660680342207,0.17307660680342207,-0.21156619916285344,-0.21156619916285344,-0.43519580877722847,-0.48788975562263587,-0.5021113900365444,-0.5192713362438311,-0.27383066122813865,-0.4541452966989424,-0.505259786706601,-0.5065392349971922,-0.5293740943526972,-0.2967860937313579,8.992028412530146,8.992028412530146,9.06928400620157,9.06928400620157,9.823527390542125,9.823527390542125,5.620914376276005,5.620914376276005,5.92837549172971,5.92837549172971,8.95035620412824,9.973065072174677,10.26960162384026,10.639042439686918,6.557196331890125,9.304371666981766,10.336430516675492,10.363710944941957,10.862505338417705,6.830195177143594,200.39033443503712,200.39033443503712,0.0,222.65592715004124,0.0,200.39033443503712,222.65592715004124,0,0
+2017/02/19 22:00:00,186.63016179038317,0,1034.3147181358754,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,0.12819717399030467,22.939996706707074,0,0,115.24613797828918,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1420.8271041117687,0.0,3166.9000711902418,0.0,2300.2315115498996,0.0,3241.0755251056444,0.0,0.0,0.0,1224.1579721102157,0.0,2969.5242818961337,0.0,1994.861817125484,0.0,3003.709383561052,0.0,0.0,0,0,0,0,0,0,0,0,0.05506768171736116,0.001742303064196726,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46186466272607396,-0.46186466272607396,-0.5440945510270181,-0.5440945510270181,-0.5008656009653596,-0.5008656009653596,0.10924395395873258,0.10924395395873258,-0.29338950769739486,-0.29338950769739486,-0.4475461796987073,-0.5019327549907728,-0.5120448868024967,-0.531466093347305,-0.2918957774657838,-0.4696405089994464,-0.5225589000605599,-0.518840859873073,-0.5439037694667241,-0.31686419640321467,9.453013236409689,9.453013236409689,11.196018717946004,11.196018717946004,10.243276397153878,10.243276397153878,5.247176325259062,5.247176325259062,6.788398742221645,6.788398742221645,9.17933442762778,10.265822701863996,10.481910175073125,10.90933048222756,6.770172061610111,9.60533686089724,10.711275165100403,10.62961885653587,11.191636238273446,7.087230730886915,186.63016179038317,186.63016179038317,0.0,207.36684643375906,0.0,186.63016179038317,207.36684643375906,0,0
+2017/02/19 23:00:00,130.90674832067984,0,913.2913621477859,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,0.2185520666522041,18.45633617712078,0,0,172.49441962617436,581.090356215163,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1698.6803365049884,0.0,3810.0641342027434,0.0,2541.6236868314936,0.0,3890.9905637923207,0.0,0.0,0.0,1534.3335868099457,0.0,3637.434804522975,0.0,2292.4012187984254,0.0,3689.247826976638,0.0,0.0,0,0,0,0,0,0,0,0,0.04862430860174868,0.0015384392302203065,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6092870989605467,-0.6092870989605467,-0.6421587885682178,-0.6421587885682178,-0.6273448340844329,-0.6273448340844329,-0.0865071574645644,-0.0865071574645644,-0.39492364946110026,-0.39492364946110026,-0.46565378863084245,-0.5235112001071027,-0.528489724675004,-0.5509118266521932,-0.3132079120724341,-0.4905996774761814,-0.5475653706266055,-0.537440477995196,-0.5656570164685579,-0.34011802782039546,12.786000638333348,12.786000638333348,13.657647357646212,13.657647357646212,13.259027749718058,13.259027749718058,5.1549638113314415,5.1549638113314415,8.249166701243311,8.249166701243311,9.526914273934892,10.73228600154846,10.842767508980046,11.353654940274296,7.039153196272949,10.028896244596112,11.276022956350559,11.04409847231426,11.701500655140336,7.406266721491619,130.90674832067984,130.90674832067984,0.0,145.45194257853316,0.0,130.90674832067984,145.45194257853316,0,0
+2017/02/20 00:00:00,88.64510864263104,0,676.2470978266903,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.176718909155096,9.525433472183376,0,0,121.40873331731345,501.6028357405607,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1565.4906888073044,0.0,3588.614119892055,0.0,2396.4467518994747,0.0,3699.4232126558254,0.0,0.0,0.0,1513.1641875883724,0.0,3554.820653041598,0.0,2311.735048503453,0.0,3605.0198815336516,0.0,0.0,0,0,0,0,0,0,0,0,0.036003896389026666,0.0011391381849627754,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6943582430897431,-0.6943582430897431,-0.7097731575569323,-0.7097731575569323,-0.7256184941682395,-0.7256184941682395,-0.24434051875512747,-0.24434051875512747,-0.549870843432237,-0.549870843432237,-0.476815333646137,-0.535630026570583,-0.537614879760332,-0.5609194002360963,-0.328194376881011,-0.5049096043386947,-0.5605816738640418,-0.5481068713592657,-0.5771302854863574,-0.35565044704096976,15.138043501082095,15.138043501082095,15.597752804264772,15.597752804264772,16.080976396027012,16.080976396027012,6.239069533005974,6.239069533005974,11.32945391868165,11.32945391868165,9.748198354166817,11.003095709695486,11.048055788136011,11.588710167822569,7.239812154019205,10.328976254267857,11.580706938036059,11.288551917905153,11.978683601571745,7.632159207798239,88.64510864263104,88.64510864263104,0.0,98.49456515847893,0.0,88.64510864263104,98.49456515847893,0,0
+2017/02/20 01:00:00,39.34893331747203,0,564.2635930322883,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.578485915630815e-09,9.551612318470363,0,0,0.0,511.02806426347223,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03004181164684415,0.0009505019796360093,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6247983005071729,-0.6247983005071729,-0.6628969054439323,-0.6628969054439323,-0.6628621980298285,-0.6628621980298285,-0.2381517386248131,-0.2381517386248131,-0.2607794259768624,-0.2607794259768624,-0.6275327934161479,-0.7364691264853024,-0.731760135877054,-0.7539531799692174,-0.1307805841328998,-0.6532782236923061,-0.7243145525154026,-0.7204094129750208,-0.74707507630363,-0.2222702191084567,13.191463600882543,13.191463600882543,14.231661467803178,14.231661467803178,14.23068522525108,14.23068522525108,6.1769498029218965,6.1769498029218965,6.411891042583562,6.411891042583562,13.264025801689442,16.418112187834836,16.27117946740492,16.97198467629906,5.354321679838648,13.9631063220465,16.040802853159292,15.920925891018769,16.752531564059993,6.024894663332148,39.34893331747203,39.34893331747203,0.0,43.721037019413366,0.0,39.34893331747203,43.721037019413366,0,0
+2017/02/20 02:00:00,23.722108622386287,0,49.34230158703502,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250131987084942,0,0,0.0,13.851949074490886,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0026270206846654787,8.311710327834331e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7173749307122623,-0.7173749307122623,-0.7680063604829919,-0.7680063604829919,-0.7591037328342873,-0.7591037328342873,-0.3782031963766377,-0.3782031963766377,-0.1106528233138355,-0.1106528233138355,-0.7480384967005125,-0.8475449969680418,-0.8892314996268492,-0.9004372502474879,-0.0725477061539846,-0.7835521832574353,-0.8688518251723182,-0.8892903268576772,-0.9087848304601055,-0.24961438288761104,15.828228981229358,15.828228981229358,17.42665768169205,17.42665768169205,17.137644420128026,17.137644420128026,7.978433336036886,7.978433336036886,5.253596355319388,5.253596355319388,16.78314845565845,20.157918621662006,21.69500926606436,22.120361712736056,5.1089759291490395,17.939438716738522,20.934599232743082,21.697228883120758,22.440539453894516,6.293275601484737,23.722108622386287,23.722108622386287,0.0,26.357898469318094,0.0,23.722108622386287,26.357898469318094,0,0
+2017/02/20 03:00:00,28.34456640705104,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5252033205781478,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7593387020123334,-0.7593387020123334,-0.8135540846318293,-0.8135540846318293,-0.801519837736622,-0.801519837736622,-0.44738735838178484,-0.44738735838178484,-0.028208742081408226,-0.028208742081408226,-0.8301863503656601,-0.9304009349423092,-0.973574966468317,-0.9838631948880795,-0.05094644721075001,-0.8747777548144178,-0.9619002078671721,-0.9847490298677654,-1.0027489794922175,-0.26045121483501754,17.145228908521588,17.145228908521588,18.95805965651742,18.95805965651742,18.544899050344767,18.544899050344767,9.176348233210334,9.176348233210334,5.016472662273728,5.016472662273728,19.539120464352735,23.28270398007298,25.020340583322536,25.445156128083084,5.0537352419628405,21.153948845531374,24.543242942359385,25.481924229422447,26.235541498763965,6.4083293711077545,28.34456640705104,28.34456640705104,0.0,31.493962674501155,0.0,28.34456640705104,31.493962674501155,0,0
+2017/02/20 04:00:00,23.774738802508082,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5776433788302903,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8787990295517809,-0.8787990295517809,-0.9364140896189252,-0.9364140896189252,-0.9194588309407127,-0.9194588309407127,-0.5948085201273682,-0.5948085201273682,-0.00720782127799678,-0.00720782127799678,-0.9559156621269664,-1.0539174738291819,-1.1000147109579952,-1.1088455547376252,-0.03377683607456611,-0.9968767701820788,-1.0838050745245302,-1.1081999714979427,-1.1241518213834756,-0.3002278920077943,21.303620394586375,21.303620394586375,23.52030388143882,23.52030388143882,22.854052139240068,22.854052139240068,12.416952714923568,12.416952714923568,5.001075449119313,5.001075449119313,24.300742696795638,28.444123485637817,30.514580426396165,30.919604029634442,5.023617885535785,25.98832885983181,29.77806071194398,30.88990533417949,31.627814321078816,6.873045305230491,23.774738802508082,23.774738802508082,0.0,26.4163764472312,0.0,23.774738802508082,26.4163764472312,0,0
+2017/02/20 05:00:00,43.68419617211091,0,466.40120311383316,0,0,0,0.0,0.019075605419500496,4.633261998087618,9.319298099999997,25.555573451546493,0,2.1431402612001955,1.489002172898138,0.5248445829589686,0,0,377.6753218324729,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,409.08603273775043,0.1236156080920182,495.17050798381365,0.12738771341062147,663.2334879529566,0.0,0.0,0.0,0.0,2.515557938015195,4332.4808341107555,1.6438568343619866,3130.79506125594,3.296084593931528,5315.596572755995,1.6844214442496648,3354.933235911001,0.0,0.0,3.209446415365369,3960.297422536939,2.3462123642270396,2777.485815398889,2.3734541164408935,4656.8919479736005,1.7555683914061775,2917.043403649664,0.0,0.0,0,0,0,0,0,0,0,0,0.024831545520260963,0.0007856527912460009,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8386069161977134,-0.8386069161977134,-0.8638840058123375,-0.8638840058123375,-0.8548695947980378,-0.8548695947980378,-0.6162228870930267,-0.6162228870930267,0.1446503544645882,0.1446503544645882,-0.6528020432634717,-0.6982068319702195,-0.7146131420716005,-0.7222242061122122,0.0029561920511375094,-0.6927248762111298,-0.739046589254667,-0.740902742845289,-0.7559523133923459,-0.2993061818560295,19.837723461040937,19.837723461040937,20.751830507389982,20.751830507389982,20.42279282284298,20.42279282284298,12.966011640792033,12.966011640792033,5.433533884806437,5.433533884806437,13.949915443735534,15.251856810159339,15.744207020179118,15.97655337317181,5.000180903219444,15.089933751844953,16.498938991693322,16.557322838701424,17.03614902552296,6.861520990197178,43.68419617211091,43.68419617211091,0.0,48.537995746789896,0.0,43.68419617211091,48.537995746789896,0,0
+2017/02/20 06:00:00,75.93590543380473,0,320.18620838229265,0,0,0,0.0,0.014058007802130193,5.555297838843742,9.319298099999997,57.911447091112116,0,1.516634101745845,1.0940739435193125,0.5250963507815647,0,0,107.24409330702784,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.037206345296795,2521.9238426108313,1.3975504661094078,1908.2588091338614,2.3504792218946022,3327.793448700771,1.5979585612596452,2097.025240804679,0.0,0.0,2.108330064012648,2559.3999587784006,1.187872423080762,1863.023350205725,1.7801790747374753,3160.9592769654555,1.5984316457388559,1983.7507184468056,0.0,0.0,0,0,0,0,0,0,0,0,0.017046950898332382,0.0005393536437182508,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6720263297303016,-0.6720263297303016,-0.7253243744573705,-0.7253243744573705,-0.70076575991393,-0.70076575991393,-0.442171931809973,-0.442171931809973,0.46984772913584766,0.46984772913584766,-0.6041213579268097,-0.638803369832442,-0.6506089707048657,-0.6564575398788082,0.1232011353841183,-0.6225373945455767,-0.6555375668429708,-0.6527601257021688,-0.6661882473472995,-0.18445536557306225,14.490263573635957,14.490263573635957,16.071908381639105,16.071908381639105,15.327885320876817,15.327885320876817,9.07888918089381,9.07888918089381,9.609431803715367,9.609431803715367,12.653285874079174,13.566524581135937,13.889291069651478,14.051429776888028,5.31441536202874,13.131713480844297,14.025827291989728,13.948754738048109,14.324476697369775,5.70536504918033,75.93590543380473,75.93590543380473,0.0,84.37322825978303,0.0,75.93590543380473,84.37322825978303,0,0
+2017/02/20 07:00:00,101.94324127757282,0,812.7909583656236,0,0,0,0.25369716550253735,0.009519575597313557,11.110595677687485,13.929299233552332,73.80580873715317,0,1.3882884653135255,0.9210009232187824,0.5250314995476424,0,0,76.11539553248214,505.98827150160463,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,804.3407371365353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.299099984041883,1833.5277381427486,1.335156050201249,1421.2010351449235,1.9167165481317168,2488.8991997015264,1.2451354947850177,1574.0720725349302,0.0,0.0,1.4541409519055528,1809.251850375864,0.0,1338.3989234697497,1.2205165107467715,2261.560915675391,1.0488100575013655,1426.0184246531908,0.0,0.0,0,0,0,0,0,0,0,0,0.04327359266306727,0.0013691463076771055,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5316523220139046,-0.5316523220139046,-0.5924866789389771,-0.5924866789389771,-0.5645281606216023,-0.5645281606216023,-0.31129770536633744,-0.31129770536633744,0.7228817389784976,0.7228817389784976,-0.5878631122431134,-0.6200687163045999,-0.6306247031235123,-0.6364479874870904,0.20480356191522356,-0.6017034586790725,-0.6322139733620226,-0.6285669086679952,-0.6417461601311901,-0.05020218458414204,10.913508018361355,10.913508018361355,12.358617243308785,12.358617243308785,11.674537152517132,11.674537152517132,7.0142604766484595,7.0142604766484595,15.996743217695041,15.996743217695041,12.243148523460675,13.06672578089875,13.346463184807831,13.50285139435853,5.869869252244712,12.591564737158805,13.388998148217553,13.291551515943567,13.646415316855851,5.052176527199407,101.94324127757282,101.94324127757282,0.0,113.27026808619202,0.0,101.94324127757282,113.27026808619202,0,0
+2017/02/20 08:00:00,150.00551964192536,0,925.0596423444542,0,0,0,0.0,0.0,10.576478033044985,0.0,69.33401494192633,0,39.380909295966944,0.20596851222043522,27.076173656312367,0,0,59.22659095568429,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,648.2766002611297,0.0,409.3318982354903,0.0,1040.3773465647896,0.0,0.0,0.0,0.0,0.0,4187.537350887669,0.0,5206.634189546903,0.0,5044.816412152129,0.0,5269.972741335742,0.0,2262.9757776122237,0.0,3958.3582723243944,0.0,4985.837939599867,0.0,4641.581190371835,0.0,4956.905075585513,0.0,1482.5515043234136,0,0,0,0,0,0,0,0,0.0492508605562629,0.0015582628973183972,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6549252095833705,-0.6549252095833705,-0.6810022763012598,-0.6810022763012598,-0.6788538440436811,-0.6788538440436811,-0.47224998264345397,-0.47224998264345397,0.2815678599395201,0.2815678599395201,-0.571951978374447,-0.6111749171654521,-0.6122982654181504,-0.6239967772358181,-0.1486688902751417,-0.5856840228453413,-0.6244102924440885,-0.6114549578573132,-0.6298631696641764,-0.24798681156131003,14.008805964606637,14.008805964606637,14.748035694088202,14.748035694088202,14.686019454836725,14.686019454836725,9.65703859118912,9.65703859118912,6.646727067088264,6.646727067088264,11.852873712669393,12.834790160356647,12.863895820181128,13.170255956439263,5.457980151242026,12.189049707084934,13.181193746665159,12.842040816881209,13.326120463757064,6.276422325685175,150.00551964192536,150.00551964192536,0.0,166.6727996021393,0.0,150.00551964192536,166.6727996021393,0,0
+2017/02/20 09:00:00,165.23893914165214,0,1034.6488094035476,0,0,0,0.0,0.0,11.924053547929493,0.0,83.2008179303116,0,39.380909295966944,0.20344068967863094,27.097742475311204,0,0,115.58022924596159,599.655407544689,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3782.4948107923387,0.0,4900.741399302721,0.0,4632.252635246577,0.0,4913.6712797899645,0.0,164.85116492484738,0.0,3426.2409197077345,0.0,4623.427250861274,0.0,4131.677171868207,0.0,4527.003943177506,0.0,125.70440565280637,0,0,0,0,0,0,0,0,0.05508546898391566,0.001742865840911763,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.646667435696221,-0.646667435696221,-0.6770125174604713,-0.6770125174604713,-0.6973100648535328,-0.6973100648535328,-0.45617481489430123,-0.45617481489430123,-0.21199484215478478,-0.21199484215478478,-0.5535305010170651,-0.5999608226727705,-0.5958731193549806,-0.6082027185883718,-0.2663521613504374,-0.5660420101252557,-0.6136879569039028,-0.59515930013252,-0.6130970287440508,-0.3210909614865003,13.780857039524108,13.780857039524108,14.633026986333476,14.633026986333476,15.225279791826068,15.225279791826068,9.343202852243465,9.343202852243465,5.93214836783649,5.93214836783649,11.414742213889994,12.547238220512824,12.443778641894568,12.758045421919249,6.473057211966321,11.710709134355056,12.899978146743038,12.425786287201731,12.88462488529106,7.143515443451818,165.23893914165214,165.23893914165214,0.0,183.59882126850238,0.0,165.23893914165214,183.59882126850238,0,0
+2017/02/20 10:00:00,182.0846050820087,0,1106.5291605772336,0,0,0,0.0,0.0,11.38783913535482,0.0,106.27511244621549,0,39.380909295966944,0.20589344601397716,21.40287555600323,0,0,134.22505165083135,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2934.3227258166635,0.0,4484.831682378883,0.0,3966.8907912230843,0.0,4401.49871047811,0.0,10.124801868998535,0.0,2566.2837195027705,0.0,4251.792748639783,0.0,3532.6312454668964,0.0,4043.5038254010096,0.0,0.0,0,0,0,0,0,0,0,0,0.05891243212265802,0.001863948287008211,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5561686834482686,-0.5561686834482686,-0.6001552212095898,-0.6001552212095898,-0.6212144777743541,-0.6212144777743541,-0.34842664531030354,-0.34842664531030354,-0.2518424116350675,-0.2518424116350675,-0.5211482632346016,-0.5857115711794946,-0.5793633477836274,-0.5851224777836592,-0.2739486350342757,-0.5274518905022617,-0.5965276026497901,-0.5759721093596212,-0.5854944999008875,-0.32213799434564133,11.476585187981897,11.476585187981897,12.552176502607054,12.552176502607054,13.09685494616079,13.09685494616079,7.525825308114591,7.525825308114591,6.31652708235147,6.31652708235147,10.680224060354575,12.189732345355665,12.03329613546002,12.175141990701036,6.558542513054206,10.819647764809304,12.460294822766457,11.95044405783976,12.184354286172564,7.157575010005701,182.0846050820087,182.0846050820087,0.0,202.31622786889855,0.0,182.0846050820087,202.31622786889855,0,0
+2017/02/20 11:00:00,212.21145467847091,0,1154.0598935853677,0,0,0,0.0,0.0,16.965687027080573,0.0,133.89528835348938,0,39.380909295966944,0.1635167086655431,18.374078090814194,0,0,124.37488797449848,568.3104229477956,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2042.9566986892023,0.0,4551.388910584614,0.0,3041.2832929235406,0.0,4476.3017213233925,0.0,0.0,0.0,1546.639784340986,0.0,4271.377885838499,0.0,2552.6013143255386,0.0,4089.5410010433343,0.0,0.0,0,0,0,0,0,0,0,0,0.06144300355434189,0.0019440138031528913,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44288616670438286,-0.44288616670438286,-0.5217697709947416,-0.5217697709947416,-0.5735284000042434,-0.5735284000042434,-0.23034248280802114,-0.23034248280802114,-0.21407285881774818,-0.21407285881774818,-0.5049364102821894,-0.5833000178047842,-0.570978923472936,-0.583803642606464,-0.2930092857114534,-0.5087500125094326,-0.591807952978785,-0.5658263208100828,-0.5834930160545422,-0.3314646612483133,9.092166761353056,9.092166761353056,10.693894149728038,10.693894149728038,11.891050593204696,11.891050593204696,6.100859125408888,6.100859125408888,5.95054793412524,5.95054793412524,10.329546679698282,12.130099621607656,11.829362634668527,12.14253237222988,6.783750284583576,10.411015994523225,12.341608676822418,11.705549372797734,12.134862778662125,7.284864853376931,212.21145467847091,212.21145467847091,0.0,235.79050519830102,0.0,212.21145467847091,235.79050519830102,0,0
+2017/02/20 12:00:00,228.6973381300018,0,1253.6937417699028,0,0,0,0.0,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.19998726224127247,20.956688000384023,0,0,145.08274483395064,594.000885504062,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2108.791631902059,0.0,3720.8689609780795,0.0,3412.105784413119,0.0,3685.0565896053317,0.0,0.0,0.0,1623.2393675568237,0.0,3371.0487735050183,0.0,2827.920825084681,0.0,3251.9168215688,0.0,0.0,0,0,0,0,0,0,0,0,0.06674758343114211,0.0021118470128576594,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.43712658435337426,-0.43712658435337426,-0.4257286357065016,-0.4257286357065016,-0.5374222813880298,-0.5374222813880298,-0.09617148126226487,-0.09617148126226487,-0.10664270324425446,-0.10664270324425446,-0.44804568079826773,-0.5590540354726775,-0.5465151429123167,-0.5639708264589472,-0.2798632124153435,-0.434704508270335,-0.5626466647542285,-0.5370747346516169,-0.5603845414884435,-0.31047948086459753,8.985720903437667,8.985720903437667,8.77926911363221,8.77926911363221,11.04368565262375,11.04368565262375,5.191537106594893,5.191537106594893,5.235539383836013,5.235539383836013,9.188733231397507,11.544567699094515,11.251759561637144,11.66124522059512,6.626784965846468,8.941382943617597,11.629719150089585,11.035803741675139,11.576037703654336,7.003645100177565,228.6973381300018,228.6973381300018,0.0,254.10815347777978,0.0,228.6973381300018,254.10815347777978,0,0
+2017/02/20 13:00:00,207.8185495459899,0,1101.337869529645,0,0,0,0.0,0.0,16.965687027080573,0.0,129.49988082968767,0,39.380909295966944,0.07867060628749364,18.46142658451297,0,0,59.70692459928328,562.5111860110163,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2074.930085484702,0.0,2380.2488046939625,0.0,3255.9198202700463,0.0,2384.2654471376645,0.0,0.0,0.0,1443.5369564502307,0.0,1948.9234674396466,0.0,2576.467716481482,0.0,1894.960225848709,0.0,0.0,0,0,0,0,0,0,0,0,0.058636043942060526,0.0018552035576325605,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.30638642204146443,-0.30638642204146443,-0.3232603512994985,-0.3232603512994985,-0.400496179124677,-0.400496179124677,0.01523387147150185,0.01523387147150185,-0.07115145382957676,-0.07115145382957676,-0.4402302722168589,-0.5250102443738779,-0.5214440708586037,-0.53629260304142,-0.23202143622047167,-0.4288215706638358,-0.5228468624541636,-0.5087011235548767,-0.5287741744311156,-0.29236704045838735,6.950968501127548,6.950968501127548,7.172697633999405,7.172697633999405,8.342050415402426,8.342050415402426,5.0048040325055325,5.0048040325055325,5.104820656621328,5.104820656621328,9.04290467397692,10.765439320790193,10.686728276730591,11.018085144269932,6.1170023159222495,8.834740296258175,10.717624412122149,10.409967609583191,10.84911231450863,6.775912294072853,207.8185495459899,207.8185495459899,0.0,230.9094994955443,0.0,207.8185495459899,230.9094994955443,0,0
+2017/02/20 14:00:00,205.30183707029468,0,1053.8227200081358,0,0,0,0.0,0.0,16.840460073948062,0.0,129.2730206906943,0,39.380909295966944,0.05835570166488647,16.31711610556615,0,0,48.69985157772263,561.4934620236115,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1163.6790789435363,0.0,2108.528954325872,0.0,2563.680205940019,0.0,2246.39176570954,0.0,0.0,0.0,528.1790195170695,0.0,1701.98874007318,0.0,1918.6348288572988,0.0,1780.3731155983314,0.0,0.0,0,0,0,0,0,0,0,0,0.056106302186747344,0.0017751642918699166,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.401484836724088,-0.401484836724088,-0.3485831901379857,-0.3485831901379857,-0.42057289782690255,-0.42057289782690255,0.08609466350611682,0.08609466350611682,-0.10364269516031353,-0.10364269516031353,-0.4160627141572721,-0.491793350629782,-0.5114927083244949,-0.5244800171972096,-0.22485071871513929,-0.3990480921978538,-0.47938743228962466,-0.4959580876334646,-0.5136548885911038,-0.3013451912869134,8.358668245071257,8.358668245071257,7.528106108581852,7.528106108581852,8.687714254054058,8.687714254054058,5.153489013468274,5.153489013468274,5.22246745772587,5.22246745772587,8.608557798669011,10.053589490987378,10.469996476982217,10.753701537416362,6.048881493163762,8.317785763025412,9.799953200669023,10.140226336690944,10.516722548652538,6.887063267068285,205.30183707029468,205.30183707029468,0.0,228.1131523003274,0.0,205.30183707029468,228.1131523003274,0,0
+2017/02/20 15:00:00,189.3761581071966,0,1042.1100884607183,0,0,0,0.0,0.0,16.903073467207488,0.0,115.5196477718057,0,39.380909295966944,0.1095369515049127,14.03101541825724,0,0,93.11723607714555,540.8537984893153,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1151.69188075169,0.0,3154.196952933782,0.0,2800.8086523704096,0.0,3663.6876775397473,0.0,266.2196499009596,0.0,596.0574973437491,0.0,2749.304418448361,0.0,2259.073197509913,0.0,3272.376282789557,0.0,0.0,0,0,0,0,0,0,0,0,0.05548271300753856,0.0017554343649172654,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3866724725497274,-0.3866724725497274,-0.3617103387662069,-0.3617103387662069,-0.4599023609351084,-0.4599023609351084,0.05186422148125007,0.05186422148125007,-0.14604302966234606,-0.14604302966234606,-0.4084744372355431,-0.4584284042867654,-0.5194977288279629,-0.5361385711513618,-0.26713590433349044,-0.39531664131097877,-0.4423503594800127,-0.5107061409536603,-0.5317818624526411,-0.3110033700064425,8.114073179730852,8.114073179730852,7.723073329923878,7.723073329923878,9.414984614150143,9.414984614150143,5.055688941535621,5.055688941535621,5.441929926951886,5.441929926951886,8.477346156934104,9.386528969018102,10.644001630279107,11.01459879196392,6.481764431783233,8.25567361798386,9.08220408509996,10.453048418828999,10.916414793213875,7.010438602396249,189.3761581071966,189.3761581071966,0.0,210.41795345244066,0.0,189.3761581071966,210.41795345244066,0,0
+2017/02/20 16:00:00,182.67231162990993,0,1154.921664644935,0,0,0,0.0,0.0,16.798297266846703,0.0,108.75639138185811,0,39.380909295966944,0.2714808311252056,14.033257651658696,0,0,205.92850202350394,540.8541087271734,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1617.7205162317036,0.0,4083.604667184024,0.0,3150.16360393225,0.0,4891.019318603635,0.0,15.980110706586617,0.0,993.8119514122491,0.0,3564.9184284291687,0.0,2538.6140623132537,0.0,4441.801962757572,0.0,335.289254143163,0,0,0,0,0,0,0,0,0.06148888488387281,0.0019454654564373247,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.41415664200577923,-0.41415664200577923,-0.3592530457706226,-0.3592530457706226,-0.474854696688086,-0.474854696688086,0.0007895408764925212,0.0007895408764925212,-0.17716191380042295,-0.17716191380042295,-0.42520969502301503,-0.4403197991270396,-0.5292535629109054,-0.5506757962078561,-0.29196614289170986,-0.4169337286106274,-0.420354101181368,-0.5229614590403596,-0.5495272870354508,-0.3261495996695377,8.575367192458614,8.575367192458614,7.686019093908769,7.686019093908769,9.70893875684132,9.70893875684132,5.000012904170319,5.000012904170319,5.650612800860202,5.650612800860202,8.770002228499749,9.044560300718487,10.85981326089555,11.348163531365785,6.771028553958558,8.623776687276816,8.683854112048095,10.720152136330626,11.321477148497266,7.211873035730207,182.67231162990993,182.67231162990993,0.0,202.96923514434437,0.0,182.67231162990993,202.96923514434437,0,0
+2017/02/20 17:00:00,206.13277560131542,0,1147.385518698841,0,0,0,0.0,0.0,17.403440016440797,0.0,131.64086955684016,0,39.380909295966944,0.20534149106416627,14.070240038548997,0,0,145.18541561818836,540.8255204175786,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2423.719478505466,0.0,4045.711460029057,0.0,3587.2384751084765,0.0,4808.117911733194,0.0,1.3650784784482097,0.0,1651.902703870499,0.0,3393.7324302980483,0.0,2810.266226887434,0.0,4234.384321432378,0.0,0.0,0,0,0,0,0,0,0,0,0.061087654891629234,0.0019327708191631137,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.39641135925641713,-0.39641135925641713,-0.2966743924584996,-0.2966743924584996,-0.46705521987373083,-0.46705521987373083,-0.012568366194246118,-0.012568366194246118,-0.14160931289466405,-0.14160931289466405,-0.4583481292511358,-0.46455886475973074,-0.5436480907620022,-0.5679813365184012,-0.3001811403571832,-0.45838295075398655,-0.4516358380489684,-0.5420111401701103,-0.5708099334646675,-0.3311643260530138,8.273834103447356,8.273834103447356,6.828812893213467,6.828812893213467,9.554403703062704,9.554403703062704,5.003269953442484,5.003269953442484,5.415480934690066,5.415480934690066,9.38498189560974,9.50549594339364,11.185765467191104,11.75719271395755,6.872459895887758,9.385652947147577,9.2566027640502,11.148245722336313,11.825283662457906,7.280708396408258,206.13277560131542,206.13277560131542,0.0,229.0364173347949,0.0,206.13277560131542,229.0364173347949,0,0
+2017/02/20 18:00:00,219.48072503650695,0,1147.656110757098,0,0,0,0.0,0.0,24.02992460262281,0.0,133.89528835348938,0,39.380909295966944,0.14455557573337283,18.598072006240116,0,0,105.19265308547565,581.0888750085488,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3350.2266241512243,0.0,3993.606727392343,0.0,3422.4733706624415,0.0,4366.144981910244,0.0,0.0,0.0,2550.325354977203,0.0,3356.2392985777224,0.0,3522.922392547785,0.0,3762.6778043882005,0.0,0.0,0,0,0,0,0,0,0,0,0.061102061413240184,0.0019332266314647103,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4704120132427159,-0.4704120132427159,-0.4468209496659483,-0.4468209496659483,-0.5254022237746164,-0.5254022237746164,-0.017788115186639315,-0.017788115186639315,-0.09985293544940294,-0.09985293544940294,-0.4694097127684105,-0.49977125796322086,-0.6009585628207978,-0.5635448703639826,-0.29025557071041197,-0.4725898145418755,-0.49610088190552193,-0.5418834826418014,-0.5662719908109277,-0.317700121574373,9.62059218245841,9.62059218245841,9.16570732056303,9.16570732056303,10.774124499390297,10.774124499390297,5.006550084073325,5.006550084073325,5.206488517441798,5.206488517441798,9.600778201839375,10.220206766255629,12.572601084295343,11.651095623353896,6.750266611035016,9.663793312002852,10.143210094797908,11.145324626975963,11.716212999674951,7.098302080346855,219.48072503650695,219.48072503650695,0.0,243.8674722627855,0.0,219.48072503650695,243.8674722627855,0,0
+2017/02/20 19:00:00,219.43991177121345,0,1182.5379633362768,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.19635765802740748,26.567083416665355,0,0,156.9983256410581,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4963.320099249326,0.0,3948.5609230671053,0.0,5950.497601496823,0.0,4244.757293134386,0.0,0.0,0.0,4143.532029372669,0.0,3322.4919864601015,0.0,5024.949999680564,0.0,3618.091285676881,0.0,0.0,0,0,0,0,0,0,0,0,0.0629591970817764,0.0019919851094868488,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4749633817055748,-0.4749633817055748,-0.5070242241798932,-0.5070242241798932,-0.5345040465086095,-0.5345040465086095,-0.06244516552379333,-0.06244516552379333,-0.09291885189087055,-0.09291885189087055,-0.4771111862439289,-0.5056671351676972,-0.5855402507023191,-0.5628857750843993,-0.2778449789993562,-0.4808712444882503,-0.5047522131454912,-0.5444262876285431,-0.5655080847528335,-0.30284379805831413,9.71111071497981,9.71111071497981,10.374070393644715,10.374070393644715,10.977666333842052,10.977666333842052,5.0807336126981255,5.0807336126981255,5.178795304217388,5.178795304217388,9.754136871439428,10.345108331998162,12.185487617134882,11.63540634013367,6.603332781102722,9.829939734925617,10.325627625906108,11.20364285857056,11.697940153140522,6.905948105822077,219.43991177121345,219.43991177121345,0.0,243.82212419023716,0.0,219.43991177121345,243.82212419023716,0,0
+2017/02/20 20:00:00,210.81702653923992,0,1222.9769659265398,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.28734869299823446,27.0977424753112,0,0,232.92768074386524,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6748.07335929865,0.0,5238.838116448636,0.0,7764.26956043093,0.0,5487.802120854143,0.0,0.0,0.0,5785.235704440893,0.0,4536.629242001425,0.0,6706.519761182133,0.0,4778.002783035283,0.0,0.0,0,0,0,0,0,0,0,0,0.06511219953312082,0.0020601046062808785,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5623665602208939,-0.5623665602208939,-0.5841636024755427,-0.5841636024755427,-0.6139472198520316,-0.6139472198520316,-0.18281604671834148,-0.18281604671834148,-0.12496627392755787,-0.12496627392755787,-0.5029736915544479,-0.5319343556618765,-0.5896022570604579,-0.582896703728299,-0.2824987269262263,-0.5098315273237156,-0.5351807675026569,-0.5746985358270758,-0.5870614985400147,-0.30761050009190777,11.623060075031418,11.623060075031418,12.15142527828344,12.15142527828344,12.906718997066392,12.906718997066392,5.6928651186920405,5.6928651186920405,5.323495593914203,5.323495593914203,10.287862514576119,10.91983753952998,12.286472986366164,12.120151131360174,6.657668715073868,10.43423465558854,10.992942962121646,11.919457990034445,12.223223429257473,6.966647758800434,210.81702653923992,210.81702653923992,0.0,234.24114059915547,0.0,210.81702653923992,234.24114059915547,0,0
+2017/02/20 21:00:00,212.9922856152735,0,1217.597933139548,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.3259291841806949,24.762627264935464,0,0,263.0390004694179,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.39749471900393,0.0,0.0,0.0,0.0,0.0,7476.885102634969,0.0,5753.0470039672055,0.0,8451.767097846347,0.0,5974.202975438615,0.0,0.0,0.0,6493.601700631224,0.0,5043.657808628559,0.0,7391.128662390795,0.0,5250.439986379792,0.0,0.0,0,0,0,0,0,0,0,0,0.06482581584325595,0.0020510436259594533,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6019549429713279,-0.6019549429713279,-0.6090381585664923,-0.6090381585664923,-0.6855888232870089,-0.6855888232870089,-0.3047291113879675,-0.3047291113879675,-0.1716401669038456,-0.1716401669038456,-0.5232960327801587,-0.5512818360701659,-0.6014132988145188,-0.5978840713416488,-0.285975915707797,-0.5326884331198115,-0.5575060131167495,-0.5951732591274131,-0.6031949748946585,-0.3111286619244627,12.597972493676224,12.597972493676224,12.779578467005422,12.779578467005422,14.881098129737424,14.881098129737424,6.929840971055427,6.929840971055427,5.610637547112489,5.610637547112489,10.727535278038985,11.362268321431173,12.58417494734556,12.49458511551822,6.6988638529776665,10.936777789861694,11.508049468518124,12.426137922254924,12.629608331316888,7.012065039683279,212.9922856152735,212.9922856152735,0.0,236.65809512808164,0.0,212.9922856152735,236.65809512808164,0,0
+2017/02/20 22:00:00,199.48620289887782,0,1291.4301932542528,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.4925229729470853,27.0977424753112,0,0,372.3616130966666,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,365.46182560940474,0.0,134.938776602416,0.0,1155.0929995529928,0.0,0.0,0.0,0.0,0.0,6613.3431346926145,0.0,6963.817649871349,0.0,7538.889436007226,0.0,7151.314858157855,0.0,0.0,0.0,5820.26406031598,0.0,6383.339839816027,0.0,6683.623912238394,0.0,6563.268640372724,0.0,3787.051978399124,0,0,0,0,0,0,0,0,0.0687567000598101,0.0021754140625188994,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6852991277477566,-0.6852991277477566,-0.6891708070412419,-0.6891708070412419,-0.7322850462896998,-0.7322850462896998,-0.4391923153026518,-0.4391923153026518,-0.25353640751214096,-0.25353640751214096,-0.5504288028751257,-0.5843916513158127,-0.623280576126113,-0.6280754956536007,-0.30597369150356574,-0.5655972546234492,-0.5973087480364639,-0.6251467665654473,-0.6381640942513513,-0.33680647749518866,14.872666724128749,14.872666724128749,14.985649281661779,14.985649281661779,16.28751085435175,16.28751085435175,9.023734816104522,9.023734816104522,6.334345119320702,6.334345119320702,11.342419649187235,12.15706219611124,13.151329449251548,13.278465472505658,6.945696113186912,11.700071816563494,12.480031714094807,13.20069241936477,13.549219215407021,7.359431979701682,199.48620289887782,199.48620289887782,0.0,221.65133655430867,0.0,199.48620289887782,221.65133655430867,0,0
+2017/02/20 23:00:00,141.0881798305545,0,1169.6825468796872,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.6743418294681442,21.228905193310137,0,0,410.3205530285494,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2063.569665588819,0.0,1166.9186634573314,0.0,2769.4407012454667,0.0,201.7540891927241,0.0,0.0,0.0,5997.121828922802,0.0,7472.872328185057,0.0,6889.73340377075,0.0,7665.4697701394,0.0,5695.3332178944365,0.0,5504.206449120471,0.0,7080.045805611535,0.0,6389.642780635919,0.0,7306.24419433792,0.0,11543.135981672076,0,0,0,0,0,0,0,0,0.06227476518753491,0.0019703301614414333,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7827022292325024,-0.7827022292325024,-0.7849962652978113,-0.7849962652978113,-0.8123427592930793,-0.8123427592930793,-0.6455329821690343,-0.6455329821690343,-0.4848275146323232,-0.4848275146323232,-0.5791724786166716,-0.6203358696269377,-0.6474818038303909,-0.6614305478950447,-0.3383734121693706,-0.6019464629286476,-0.6426246192999959,-0.656393949230309,-0.6775645519963471,-0.37683448604664627,17.91113702844909,17.91113702844909,17.987594028345498,17.987594028345498,18.91619573618965,18.91619573618965,13.74977236335073,13.74977236335073,9.91035675399543,9.91035675399543,12.02861971754831,13.073745803483902,13.803205598525778,14.190461553413371,7.3815348408242585,12.597756379603084,13.670336475983106,14.049658894353783,14.648898869702435,7.956800123692901,141.0881798305545,141.0881798305545,0.0,156.76464425617166,0.0,141.0881798305545,156.76464425617166,0,0
+2017/02/21 00:00:00,91.55495875526017,0,1074.6068480963531,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.8332128652892656,11.778789628678345,0,0,502.3368577980555,519.0344615294812,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4151.495946758911,0.0,2479.4021889700443,0.0,4720.720643244427,0.0,1774.9723082901685,0.0,0.0,0.0,6104.764100042109,0.0,8560.873595347284,0.0,7042.4453498890125,0.0,8806.223659698233,0.0,14243.023597727875,0.0,5625.32982611942,0.0,8243.302014392679,0.0,6563.955428622855,0.0,8454.960345223624,0.0,20443.79334976041,0,0,0,0,0,0,0,0,0.057212864561106275,0.0018101751540570302,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8692743751103204,-0.8692743751103204,-0.8681506477649104,-0.8681506477649104,-0.8984228490677025,-0.8984228490677025,-0.7832831290921473,-0.7832831290921473,-0.6195226361458869,-0.6195226361458869,-0.6128335006513939,-0.6612955363856011,-0.6768053423064466,-0.697412924524758,-0.37522725006703217,-0.6415373341339558,-0.6885296128031615,-0.690970980156296,-0.7186052573122189,-0.4197107298277817,20.950192088229272,20.950192088229272,20.908740775360343,20.908740775360343,22.043521313980335,22.043521313980335,17.93047645459241,17.93047645459241,13.052385997242084,13.052385997242084,12.877782888904449,14.186672848767401,14.627073769455691,15.22832642700837,7.9314989226579655,13.640733738057136,14.966893311327155,15.038402234663437,15.865765020405618,8.672515260434267,91.55495875526017,91.55495875526017,0.0,101.72773195028908,0.0,91.55495875526017,101.72773195028908,0,0
+2017/02/21 01:00:00,39.97819154809555,0,698.4879617681822,0,0,0,0.0,0.0011239444326466622,4.166984770466865,9.319298099999997,16.311038125956312,0,0.3783124044491646,0.25935629805866944,9.542077904731888,0,0,128.59371649482424,516.6587165045419,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1079.9354439706299,0.0,759.3871924537644,1.1239444326466619,1384.8356868392489,0.0,220.5350005039221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03718801645922789,0.0011766029185841657,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.906513129072239,-0.906513129072239,-0.9092441442243734,-0.9092441442243734,-0.9322387841304933,-0.9322387841304933,-0.8392805459762768,-0.8392805459762768,-0.29218616004749454,-0.29218616004749454,-1.1531029364349545,-1.1834988184523816,-1.1700666264204378,-1.192870197220284,-0.16450771837841796,-1.0140667443325562,-1.0650302682838682,-1.0879730438984543,-1.1099624763113811,-0.35033415904889215,22.35312701216769,22.35312701216769,22.458238687372926,22.458238687372926,23.355170626506407,23.355170626506407,19.861739232917884,19.861739232917884,6.773707965745686,6.773707965745686,32.98829786414048,34.445008731844936,33.79778924540159,34.89975330438253,5.560883918215808,26.715679801444864,28.936411076380793,29.966576724868148,30.971018746792467,7.553688099569072,39.97819154809555,39.97819154809555,0.0,44.42021283121728,0.0,39.97819154809555,44.42021283121728,0,0
+2017/02/21 02:00:00,23.722250292150566,0,44.06415642248268,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251548684727743,0,0,0.0,8.573803909938547,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0023460083265474017,7.422606814925932e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.1198948320936142,-1.1198948320936142,-1.1426463979089174,-1.1426463979089174,-1.1804847376052026,-1.1804847376052026,-0.9847506793081253,-0.9847506793081253,-0.1294271378339846,-0.1294271378339846,-1.2249326842021981,-1.2734048914784477,-1.3203020958798988,-1.3342160800103162,-0.09743435360471742,-1.1902640183340139,-1.2460383682607903,-1.3025136928729453,-1.3201403698801666,-0.38457665608473324,31.43006516379954,31.43006516379954,32.49381363070407,32.49381363070407,34.2993049611853,34.2993049611853,25.481992720397386,25.481992720397386,5.347020507911822,5.347020507911822,36.47472530750144,38.90846738259676,41.31728350778113,42.041123400792486,5.196602595269823,34.7730288925211,37.526947245225706,40.39779713168604,41.30889348444945,8.080222414542817,23.722250292150566,23.722250292150566,0.0,26.358055880167296,0.0,23.722250292150566,26.358055880167296,0,0
+2017/02/21 03:00:00,28.34443088740855,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250678009356512,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.205413552685924,-1.205413552685924,-1.231705757271373,-1.231705757271373,-1.2649969613311038,-1.2649969613311038,-1.0783177293479613,-1.0783177293479613,-0.029797615549801128,-0.029797615549801128,-1.3327637278027298,-1.3880686382169796,-1.4478199289406517,-1.4602818037126863,-0.0644046657253519,-1.3284162383780196,-1.3861480101527128,-1.451090578459601,-1.467319051552635,-0.40473072937301907,35.512431484209856,35.512431484209856,36.81109673050655,36.81109673050655,38.4820242349865,38.4820242349865,29.530790840761327,29.530790840761327,5.018380663152911,5.018380663152911,41.96538554415427,44.87695799009294,48.07561515275617,48.748064177285116,5.085880829875322,41.738923138678715,44.77496793210046,48.25195054919929,49.12845150083269,8.413520858904121,28.34443088740855,28.34443088740855,0.0,31.49381209712061,0.0,28.34443088740855,31.49381209712061,0,0
+2017/02/21 04:00:00,23.77466442714794,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.577569003470145,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.301434390247793,-1.301434390247793,-1.3318544742469232,-1.3318544742469232,-1.3604922805215116,-1.3604922805215116,-1.1796706179914271,-1.1796706179914271,-0.017009622374281514,-0.017009622374281514,-1.4101272105371305,-1.4702304505160129,-1.536728369419584,-1.5482853898137146,-0.05355748220657101,-1.4362861252882002,-1.4961489672704629,-1.5646137596426262,-1.5796402153510425,-0.4298819809576469,40.34222933848566,40.34222933848566,41.917990806849595,41.917990806849595,43.41837693045155,43.41837693045155,34.25999621840141,34.25999621840141,5.005989296647513,5.005989296647513,46.05229365996584,49.28595091394454,52.89839569192733,53.52803307531152,5.0593850344746585,47.454691202441246,50.690984093121536,54.417852821811714,55.236641744268894,8.853853056797305,23.77466442714794,23.77466442714794,0.0,26.416293807942154,0.0,23.77466442714794,26.416293807942154,0,0
+2017/02/21 05:00:00,45.25619386294141,0,453.92091928414914,0,0,0,0.0,0.03213803063049719,4.633261998087618,9.319298099999997,25.555573451546493,0,3.1378761596082576,2.0529365678519174,0.5251095552166217,0,0,365.19503800278886,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8957731229087793,2718.7020623062863,0.4602416788181577,1857.147304951923,1.436183641471626,3108.0952963242166,0.3154942905538554,1258.624932108125,0.0,0.0,3.9613207123033516,6929.068377956906,3.0357303167910894,4644.4512657681,3.6993697039315863,7937.398187566961,3.138453768393481,5017.381277322262,0.0,0.0,4.88115803837606,6413.376461927739,2.431592164454462,4241.4091701378975,4.24995209957139,7328.887743336072,2.6327610929233387,4591.470192476135,0.0,0.0,0,0,0,0,0,0,0,0,0.024167085964939154,0.0007646297540821357,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0541584900565526,-1.0541584900565526,-1.0684083957970885,-1.0684083957970885,-1.0798967801825392,-1.0798967801825392,-1.0000245202304714,-1.0000245202304714,0.13436666219813845,0.13436666219813845,-0.8872796787596446,-0.9176780617031801,-0.943509090252795,-0.9532025769252568,-0.016495243096507153,-0.9316001055874569,-0.963819992856114,-0.9844098640290567,-1.000294178571763,-0.4155190201479087,28.454753356799102,28.454753356799102,29.086931746456003,29.086931746456003,29.60183812759402,29.60183812759402,26.12068254108509,26.12068254108509,5.3740351400827535,5.3740351400827535,21.621445086898277,22.784745800789196,23.802500268981575,24.19126837856261,5.0056325309179215,23.32997216394041,24.621331570806333,25.46784300691573,26.132038374839667,8.59907453352217,45.25619386294141,45.25619386294141,0.0,50.284659847712675,0.0,45.25619386294141,50.284659847712675,0,0
+2017/02/21 06:00:00,78.20771986550943,0,443.5744045509965,0,0,0,0.0717627203451551,0.03129596703979218,5.555297838843742,9.319298099999997,57.911447091112116,0,2.88924983826208,1.9042465121235805,0.5251217977829236,0,0,230.63228947573174,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,227.71311387874394,0.0,0.0,0.0,0.0,0.0,1.479795333855236,1683.814668367065,0.5763878853945243,1167.933466282766,1.6022360801962918,1891.5859220487396,0.0,868.3756789548652,0.0,0.0,3.886936208977204,5804.899582300832,3.221413494791477,3919.8811031123255,4.101222600645997,6708.8850526926535,3.198930134504735,4235.701949044216,0.0,0.0,3.888086027041254,5542.407754731838,2.656172934434835,3690.634250983177,3.830556194052633,6369.740912949287,2.8542301458979864,3989.549124363045,0.0,0.0,0,0,0,0,0,0,0,0,0.023616229856813668,0.0007472010507994272,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.953616118830722,-0.953616118830722,-0.968413115890354,-0.968413115890354,-0.9744187497059039,-0.9744187497059039,-0.9099168791384673,-0.9099168791384673,0.45719112867406253,0.45719112867406253,-0.8075163917604218,-0.8327330612400277,-0.8500851199589777,-0.8567857841150422,0.09533344706391361,-0.8202441315130277,-0.8482220150700565,-0.8551293497639127,-0.8685859399579605,-0.3520661025665552,24.20793630963246,24.20793630963246,24.808743607122025,24.808743607122025,25.055027629160108,25.055027629160108,22.484177302191426,22.484177302191426,9.36271480790559,9.36271480790559,18.75000887234586,19.62911676978881,20.249522636900465,20.492454366907964,5.188212215835691,19.19038364996996,20.182307563768802,20.432227081867012,20.924791364251575,7.5791204086424955,78.20771986550943,78.20771986550943,0.0,86.8974665172327,0.0,78.20771986550943,86.8974665172327,0,0
+2017/02/21 07:00:00,103.79197809058584,0,923.6176005773658,0,0,0,0.0,0.02419292065720151,11.110595677687485,13.929299233552332,73.80580873715317,0,2.7098652992782952,1.6871594255987856,0.5250567966585216,0,0,186.93565458219032,505.9946546636388,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1305894723970291,1187.3769709432586,0.0,851.915923504124,1.1471867470811503,1378.7241938763907,0.0,528.2817168970787,0.0,0.0,3.1977902773772557,4792.208220293551,2.6214144211080566,3244.0751450938833,2.392516593727426,5532.997380914596,2.627951850652304,3495.37305370776,0.0,0.0,4.43856135968114,4410.687939595421,1.591289813352129,2946.1160114911245,3.292910395648808,5043.643024379071,1.7527097261762112,3159.507187080284,0.0,0.0,0,0,0,0,0,0,0,0,0.04917408518445316,0.0015558337780711858,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8948926063883439,-0.8948926063883439,-0.9112691417654846,-0.9112691417654846,-0.913157829781981,-0.913157829781981,-0.8590808838114844,-0.8590808838114844,0.708316683320708,0.708316683320708,-0.7888193172761808,-0.8105652605988205,-0.8278343414747472,-0.8343556470612786,0.15891250889086114,-0.7985956551088559,-0.8246977673578901,-0.8296165057238765,-0.8426360820998906,-0.25038407878849667,21.909256442841084,21.909256442841084,22.53637176575964,22.53637176575964,22.60939468793154,22.60939468793154,20.576091317157378,20.576091317157378,15.553878688001149,15.553878688001149,18.115507765015465,18.854876610949304,19.456245984798443,19.686597739588052,5.523338133889922,18.44543001035585,19.346087894598952,19.5190203527778,19.98165066110495,6.301284475400692,103.79197809058584,103.79197809058584,0.0,115.32442010065094,0.0,103.79197809058584,115.32442010065094,0,0
+2017/02/21 08:00:00,149.3521813523029,0,1316.1349880363466,0,0,0,0.0,0.0,9.131747932839472,0.0,69.33401494192633,0,39.380909295966944,0.9950072082197835,27.078526770896097,0,0,450.3019366475766,599.655407544689,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5052.4639090126575,0.0,3331.323820357336,0.0,5822.029922766818,0.0,3051.1568586710873,0.0,0.0,0.0,9720.311646364442,0.0,10551.074843549575,0.0,11002.18702747363,0.0,10373.285937878707,0.0,13082.769977906115,0.0,9255.841592024002,0.0,10238.827159335517,0.0,10517.980162605738,0.0,9926.259942714061,0.0,22331.156334447725,0,0,0,0,0,0,0,0,0.07007200163301497,0.002217029287454274,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8744614748921361,-0.8744614748921361,-0.9190945815319422,-0.9190945815319422,-0.9268679723938887,-0.9268679723938887,-0.8803392896687267,-0.8803392896687267,0.022166278352011078,0.022166278352011078,-0.747335910584465,-0.7963986696395093,-0.8009730501579881,-0.7880148266155103,-0.23019097800384206,-0.7555409355491488,-0.8148462155900047,-0.8078607942201342,-0.7951143654568855,-0.39295964037243,21.142205137487764,21.142205137487764,22.839865424695418,22.839865424695418,23.14377770868724,23.14377770868724,21.361124730520416,21.361124730520416,5.010171288782686,5.010171288782686,16.76081678600235,18.370935447771018,18.526272015318654,18.088539120155346,6.099408218844886,17.022931434585885,19.00278441041678,18.76183515341164,18.327482428010143,8.216746810357364,149.3521813523029,149.3521813523029,0.0,165.94686816922544,0.0,149.3521813523029,165.94686816922544,0,0
+2017/02/21 09:00:00,165.78815716576912,0,1457.5287176291024,0,0,0,0.0,0.0,11.770719589816478,0.0,83.2008179303116,0,39.380909295966944,0.9059926719085921,27.097742475311204,0,0,538.4601374715162,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3641.893469879415,0.0,2693.3513210069896,0.0,4799.461753608255,0.0,2085.487114338811,0.0,0.0,0.0,8617.803956081336,0.0,9912.153194274762,0.0,10089.473956518628,0.0,9656.110532418235,0.0,7283.986971370595,0.0,8128.366063692129,0.0,9640.792570563717,0.0,9645.018834711518,0.0,9210.861346867672,0.0,17767.980058083303,0,0,0,0,0,0,0,0,0.07759990852781141,0.002455207014221669,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8405970001887934,-0.8405970001887934,-0.8954148346385583,-0.8954148346385583,-0.9003267157657481,-0.9003267157657481,-0.8232473865150955,-0.8232473865150955,-0.25464127236216305,-0.25464127236216305,-0.7182207408308062,-0.7816706496329455,-0.7822087170476401,-0.7688163469163847,-0.3152610522238023,-0.7233875820648751,-0.7981501285015,-0.7888693794070325,-0.773970099983745,-0.4248514747828122,19.90872722993224,19.90872722993224,21.929086247178446,21.929086247178446,22.116141040462523,22.116141040462523,19.295289406953515,19.295289406953515,6.346031491504334,6.346031491504334,15.854026802127223,17.876828851171197,17.894718200884313,17.45312087494939,7.066080824635776,16.012288022186155,18.430306739869906,18.11718688748219,17.622155333963605,8.763612118881909,165.78815716576912,165.78815716576912,0.0,184.20906351752123,0.0,165.78815716576912,184.20906351752123,0,0
+2017/02/21 10:00:00,182.63016759594694,0,1454.4707575228706,0,0,0,0.0,0.0,11.393746067737203,0.0,106.27511244621549,0,39.380909295966944,0.8175310851192219,21.330893498453793,0,0,482.1666485964681,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1131.8562731252832,0.0,2268.6849144354683,0.0,4088.7422038015275,0.0,1067.486017512208,0.0,0.0,0.0,7252.059921690157,0.0,9579.643451259386,0.0,9818.763782595957,0.0,8964.924305687737,0.0,5521.817602945754,0.0,6220.459858808926,0.0,9102.229627344304,0.0,9055.058644816045,0.0,8267.771217421148,0.0,15743.316875351187,0,0,0,0,0,0,0,0,0.07743710046670421,0.0024500558806548173,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7038493007846404,-0.7038493007846404,-0.870384467386754,-0.870384467386754,-0.8724200516757026,-0.8724200516757026,-0.7572632012325704,-0.7572632012325704,-0.2625552877075917,-0.2625552877075917,-0.6321091089720969,-0.7675143167175971,-0.7643770246373136,-0.7233282767166103,-0.33037627789401364,-0.622989054058743,-0.7812559490700952,-0.7670620908888154,-0.7214546889781303,-0.4261032343368385,15.419876157662117,15.419876157662117,20.99119158397224,20.99119158397224,21.066504639470978,21.066504639470978,17.078316209380972,17.078316209380972,6.431240917267857,6.431240917267857,13.386188198658019,17.410595710778892,17.30842689536925,16.010464970115777,7.2698204855162345,13.143631988928092,17.863049531771566,17.39584264320105,15.952948633690283,8.785965618562813,182.63016759594694,182.63016759594694,0.0,202.92240843994105,0.0,182.63016759594694,202.92240843994105,0,0
+2017/02/21 11:00:00,212.8583546409446,0,1478.7732468260065,0,0,0,0.0,0.0,16.903073633821148,0.0,133.89528835348938,0,39.380909295966944,0.7861142059013461,18.460993949311447,0,0,454.04035552602926,563.3583086369033,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1584.3516985639105,0.0,2931.5892674830698,0.0,535.2626004764912,0.0,0.0,0.0,4778.782690993951,0.0,9463.453406262139,0.0,7785.597336705618,0.0,8954.569917545685,0.0,9677.940675881227,0.0,3691.3943607076485,0.0,9001.95626521379,0.0,7060.004726984512,0.0,8315.30311270829,0.0,18422.241672624506,0,0,0,0,0,0,0,0,0.078730982998219,0.002490993422041422,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5838730017558215,-0.5838730017558215,-0.8335530114843296,-0.8335530114843296,-0.8281476493909778,-0.8281476493909778,-0.7519061201318635,-0.7519061201318635,-0.21233383713899656,-0.21233383713899656,-0.5674201072469455,-0.7635696716897278,-0.7561127093148946,-0.7291949682086668,-0.34875645586762877,-0.5448512378201111,-0.7745469853457729,-0.7566780760056175,-0.7290695659030471,-0.4316023063961534,12.144245471477788,12.144245471477788,19.658150173162824,19.658150173162824,19.467272192086213,19.467272192086213,16.90645932705081,16.90645932705081,5.935137618311273,5.935137618311273,11.74372387450893,17.282202689296952,17.041304516435673,16.191540487088673,7.530631741436437,11.213416249012297,17.641146663713727,17.059485468443526,16.18765446094551,8.88496275681291,212.8583546409446,212.8583546409446,0.0,236.5092829343829,0.0,212.8583546409446,236.5092829343829,0,0
+2017/02/21 12:00:00,228.98163845136668,0,1426.8424874699854,0,0,0,0.0,0.0,16.903073633821148,0.0,147.76209134187457,0,39.380909295966944,0.5509916494752812,20.952597327774384,0,0,313.40669684239725,598.8256791956982,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,427.6897945794198,0.0,1069.1017262184494,0.0,0.0,0.0,0.0,0.0,6008.7448045164265,0.0,7789.329180887102,0.0,8196.574524021285,0.0,7548.395986777059,0.0,0.0,0.0,5259.3932305478575,0.0,7416.303987011543,0.0,7592.528957722837,0.0,7060.532807691738,0.0,6574.83932464789,0,0,0,0,0,0,0,0,0.07596615090464479,0.0024035160618476824,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6031296906586351,-0.6031296906586351,-0.7786952323727079,-0.7786952323727079,-0.7677142531731392,-0.7677142531731392,-0.7181522112512793,-0.7181522112512793,-0.10961335491989999,-0.10961335491989999,-0.5877546434877048,-0.7311873908255836,-0.721683329810625,-0.7159587230534722,-0.33320811569439046,-0.5721682934083048,-0.7370709956195229,-0.7173520422377968,-0.7150747176045051,-0.40559602284238033,12.627941128063867,12.627941128063867,17.77812626534147,17.77812626534147,17.417121066113907,17.417121066113907,15.85193545328157,15.85193545328157,5.248851662257039,5.248851662257039,12.240450767801391,16.253373324076435,15.959959470669915,15.785102614567379,7.309068815501362,11.858105925009752,16.436960711851015,15.827531294376243,15.758226672790016,8.428219657997133,228.98163845136668,228.98163845136668,0.0,254.42404272374074,0.0,228.98163845136668,254.42404272374074,0,0
+2017/02/21 13:00:00,207.93559146289215,0,1363.9449045685346,0,0,0,0.0,0.0,16.67307048032785,0.0,129.49988082968767,0,39.380909295966944,0.5480611061689258,18.40169454828648,0,0,322.31500871166793,562.5101369375207,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,171.397379337894,0.0,916.3819855875338,0.0,0.0,0.0,0.0,0.0,7807.067520872835,0.0,6992.059872107905,0.0,10102.525986151519,0.0,6945.123197750023,0.0,0.0,0.0,6681.038054863171,0.0,6309.989936823633,0.0,9068.489436950507,0.0,6201.494440408903,0.0,0.0,0,0,0,0,0,0,0,0,0.07261743700231256,0.0022975650882240337,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5347654904448813,-0.5347654904448813,-0.7373710547072752,-0.7373710547072752,-0.7389146220576841,-0.7389146220576841,-0.6923661145305634,-0.6923661145305634,-0.06363055319104631,-0.06363055319104631,-0.5346270807465825,-0.6861671655734009,-0.6916242612819503,-0.6874718447165133,-0.31452185226290214,-0.5087086605828746,-0.6845120701196565,-0.6835499205443093,-0.6830518732552081,-0.37333074784444953,10.983565944915753,10.983565944915753,16.446363366916472,16.446363366916472,16.49479369765605,16.49479369765605,15.079382100731436,15.079382100731436,5.083828374471864,5.083828374471864,10.980442293177731,14.897941269369184,15.057580863998894,14.935990720825316,7.056365400707136,10.41012922844564,14.8497782309217,14.821834260931738,14.80738506377834,7.901785806401094,207.93559146289215,207.93559146289215,0.0,231.03954606988015,0.0,207.93559146289215,231.03954606988015,0,0
+2017/02/21 14:00:00,205.54450543720782,0,1278.7369865046355,0,0,0,0.0,0.0,16.735683873587277,0.0,129.2730206906943,0,39.380909295966944,0.4096269911405154,16.313289383364456,0,0,273.620346830546,561.4872332672878,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1164.4959363241337,0.0,57.76664517884768,0.0,0.0,0.0,7181.984794133368,0.0,7033.89168580106,0.0,9508.58944227123,0.0,7197.698918884495,0.0,0.0,0.0,5913.797718084308,0.0,6249.009679447354,0.0,8373.409219994432,0.0,6395.971862425988,0.0,0.0,0,0,0,0,0,0,0,0,0.0680809043305176,0.0021540323567125668,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.53102405960755,-0.53102405960755,-0.7065470122012185,-0.7065470122012185,-0.7377899408298804,-0.7377899408298804,-0.7046489028116735,-0.7046489028116735,-0.08733442556747002,-0.08733442556747002,-0.5288339012566451,-0.6541183915204781,-0.6816303594476342,-0.6782412301720753,-0.31434249209790827,-0.5064691511908033,-0.647917275225407,-0.6740197744635537,-0.6745861283741988,-0.3665835732342659,10.899420664669506,10.899420664669506,15.500693090179738,15.500693090179738,16.459496052287406,16.459496052287406,15.443797567110835,15.443797567110835,5.157942832714781,5.157942832714781,10.850444998651668,13.986404138989755,14.766203541434791,14.6683724464597,7.054011529957535,10.36221478422381,13.815167960882548,14.547210335030186,14.56342074953352,7.797319065104418,205.54450543720782,205.54450543720782,0.0,228.3827838191198,0.0,205.54450543720782,228.3827838191198,0,0
+2017/02/21 15:00:00,189.89430216762239,0,1350.2729507427075,0,0,0,0.0,0.0,16.798297266846703,0.0,115.5196477718057,0,39.380909295966944,0.687788234680972,14.075684395867777,0,0,401.3036177991247,540.8302790493254,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,577.398626574067,0.0,2185.0585232800527,0.0,738.6090908207976,0.0,0.0,0.0,6603.116234170756,0.0,8282.705116343732,0.0,8554.39299241451,0.0,8481.889481187265,0.0,2078.358585581811,0.0,5316.452106389711,0.0,7432.03047232299,0.0,7359.280828193988,0.0,7639.381027843391,0.0,10784.416395175193,0,0,0,0,0,0,0,0,0.07188953205371817,0.0022745346830421115,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6028604287570708,-0.6028604287570708,-0.7215409643544286,-0.7215409643544286,-0.7548909226558137,-0.7548909226558137,-0.7274551906140583,-0.7274551906140583,-0.1496814571963273,-0.1496814571963273,-0.5590176921369288,-0.6625490355374558,-0.6912701335138631,-0.6913330802845701,-0.3289937852773962,-0.5485519489887967,-0.6616075854167783,-0.6886042222215429,-0.6932530372938595,-0.3831333592979076,12.621066777883613,12.621066777883613,15.955593839926934,15.955593839926934,17.002061246865736,17.002061246865736,16.137687817319303,16.137687817319303,5.464246032878464,5.464246032878464,11.543709159654185,14.221879018687517,15.047182307801464,15.04903027159898,7.250783211359959,11.298859407986853,14.195430792288647,14.969074844120783,15.105477780781982,8.05701995321698,189.89430216762239,189.89430216762239,0.0,210.99366907513598,0.0,189.89430216762239,210.99366907513598,0,0
+2017/02/21 16:00:00,183.66487984007568,0,1407.2750994185988,0,0,0,0.0,0.0,17.250223812971733,0.0,108.75639138185811,0,39.380909295966944,0.7970771686039693,14.048302978220658,0,0,458.311328272872,540.8247172514691,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1057.4244780571023,0.0,1105.2191997445643,0.0,2908.0138466841872,0.0,1220.3035988866877,0.0,0.0,0.0,6346.303239198098,0.0,9273.735419917886,0.0,8046.56457666397,0.0,9484.532515857334,0.0,9506.058708784978,0.0,5092.886047767272,0.0,8443.599317934271,0.0,6889.179296396653,0.0,8662.281382811207,0.0,18491.822870054544,0,0,0,0,0,0,0,0,0.07492436867109417,0.002370554798160261,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6790292342750597,-0.6790292342750597,-0.7415896261499276,-0.7415896261499276,-0.7723207451983508,-0.7723207451983508,-0.7457422099801494,-0.7457422099801494,-0.18885249467081128,-0.18885249467081128,-0.5939604135024539,-0.6868968718109516,-0.7098904178461918,-0.7138011783094012,-0.34839869918429517,-0.5965331362216861,-0.6938938634322649,-0.7127199410288612,-0.721854406779592,-0.40601525999558624,14.69107475082059,14.69107475082059,16.57896568855513,16.57896568855513,17.5679360551442,17.5679360551442,16.710239502189864,16.710239502189864,5.739447787023721,5.739447787023721,12.395617201584145,14.919213234891302,15.601289074349452,15.719567138425901,7.525418252974617,12.460434544201718,15.124353777202401,15.686799979670496,15.965206692832936,8.43535279500884,183.66487984007568,183.66487984007568,0.0,204.0720887111952,0.0,183.66487984007568,204.0720887111952,0,0
+2017/02/21 17:00:00,206.85149403327242,0,1429.7673704791707,0,0,0,0.0,0.0,17.644803291828183,0.0,131.64086955684016,0,39.380909295966944,0.7403112838936465,14.0126254022891,0,0,427.5737928566727,540.8189949594243,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,690.1226370817825,0.0,0.0,0.0,2246.730386724285,0.0,883.288755167875,0.0,0.0,0.0,6356.8079989223015,0.0,8376.83340448142,0.0,8014.767208970839,0.0,9091.399565975915,0.0,6863.930862607019,0.0,5258.835978804349,0.0,7552.946617882566,0.0,6999.519134603019,0.0,8367.37601832309,0.0,15459.625423122498,0,0,0,0,0,0,0,0,0.07612187384253415,0.00240844302705466,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.695892302524017,-0.695892302524017,-0.6401281194684343,-0.6401281194684343,-0.7638245956998219,-0.7638245956998219,-0.7437984640675421,-0.7437984640675421,-0.15168692400661954,-0.15168692400661954,-0.6067464132753971,-0.640694330672682,-0.7154519094238968,-0.7235725437562637,-0.3549076982719645,-0.6140425439404632,-0.6393835480306972,-0.7194136555055938,-0.7339102565862319,-0.41173720731225455,15.183333164173263,15.183333164173263,13.602442341568334,13.602442341568334,17.290480050355427,17.290480050355427,16.64870065199716,16.64870065199716,5.476782121133482,5.476782121133482,12.720582310057637,13.617817168625805,15.769690114570835,16.017974734368025,7.621123589025487,12.909198161847698,13.582245507480636,15.890463932017994,16.33815063182702,8.533461580264898,206.85149403327242,206.85149403327242,0.0,229.83499337030267,0.0,206.85149403327242,229.83499337030267,0,0
+2017/02/21 18:00:00,218.00208858913595,0,1377.7163491527613,0,0,0,0.0,0.0,22.154647104238943,0.0,133.89528835348938,0,39.380909295966944,0.532459762507418,18.606808870478936,0,0,335.25530118330266,581.086465306385,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,756.3040678005788,0.0,510.2745490497723,0.0,2002.1523880820562,0.0,742.1876662640335,0.0,0.0,0.0,7986.730267672042,0.0,8213.086207936121,0.0,9413.438190224007,0.0,8472.43047105769,0.0,0.0,0.0,6374.539769555086,0.0,7186.531210338637,0.0,8369.398352964155,0.0,7716.332085524597,0.0,7907.8780972034265,0,0,0,0,0,0,0,0,0.0733506389125776,0.002320763085580929,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7105475436106304,-0.7105475436106304,-0.7357067279937777,-0.7357067279937777,-0.7567397357391378,-0.7567397357391378,-0.7385822691950443,-0.7385822691950443,-0.10691147979870505,-0.10691147979870505,-0.6102998621786159,-0.6849259565508073,-0.7037869105603678,-0.7114720249644215,-0.33643507627202685,-0.6853246485864023,-0.6629820296614432,-0.709296370193229,-0.722081302777115,-0.3912344376869547,15.62111727493999,15.62111727493999,16.39425875457927,16.39425875457927,17.061469137078703,17.061469137078703,16.484357291442194,16.484357291442194,5.236728763930984,5.236728763930984,12.81215566122242,14.861811160011257,15.41801081177556,15.64904421744015,7.35420835522288,14.873409346257489,14.234056044105031,15.583380224402504,15.97216792309797,8.188404935230281,218.00208858913595,218.00208858913595,0.0,242.2245428768177,0.0,218.00208858913595,242.2245428768177,0,0
+2017/02/21 19:00:00,219.80188908400442,0,1389.9917381705461,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.5727939252335547,26.552624462250197,0,0,364.4521004753273,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,496.60687117324846,0.0,492.53515086616176,0.0,1557.9878427655308,0.0,523.6117884360085,0.0,0.0,0.0,9115.873363052164,0.0,7120.772749630336,0.0,10419.133448406037,0.0,7268.851346183512,0.0,0.0,0.0,8097.285511396658,0.0,6328.618949965943,0.0,9459.30809075628,0.0,6584.785567425247,0.0,0.0,0,0,0,0,0,0,0,0,0.07400418971634694,0.002341440977449701,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7186755274969368,-0.7186755274969368,-0.7449477294191796,-0.7449477294191796,-0.7576273221914668,-0.7576273221914668,-0.7446489201183387,-0.7446489201183387,-0.09479973372872454,-0.09479973372872454,-0.6005863955662338,-0.6674513583619653,-0.6887074553830067,-0.6948610338894802,-0.3154320450535216,-0.6414183029110845,-0.6664825478469079,-0.6924006310315735,-0.7043353472104975,-0.36281695319478413,15.867910861755206,15.867910861755206,16.685066732587515,16.685066732587515,17.09004189162974,17.09004189162974,16.67560609352705,16.67560609352705,5.186109906473007,5.186109906473007,12.563135425039306,14.360220768602602,14.972093714062979,15.152876073003213,7.068331506715467,13.637496073354455,14.33279876865808,15.080397034474771,15.434413747810297,7.7398442724228715,219.80188908400442,219.80188908400442,0.0,244.22432120444935,0.0,219.80188908400442,244.22432120444935,0,0
+2017/02/21 20:00:00,211.10807122860535,0,1334.3788903953882,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.5783933823636642,27.0977424753112,0,0,344.3296052127138,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,703.7851030130784,0.0,603.7426986342157,0.0,1648.9103201422613,0.0,611.8271795186835,0.0,0.0,0.0,8898.014557345869,0.0,6981.187013192861,0.0,10131.146849941364,0.0,7111.613470330975,0.0,0.0,0.0,8055.945183677599,0.0,6378.673511535921,0.0,9369.169447140164,0.0,6563.667898330374,0.0,0.0,0,0,0,0,0,0,0,0,0.07104332050799045,0.002247761139593391,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7292223957831628,-0.7292223957831628,-0.7559229076176748,-0.7559229076176748,-0.7640945965577317,-0.7640945965577317,-0.7533673900185384,-0.7533673900185384,-0.11693377353120228,-0.11693377353120228,-0.5971180000317782,-0.6609067718530668,-0.6800931142086741,-0.6854217104695532,-0.3054096429659838,-0.62614200570087,-0.6637380193019532,-0.6853661591941289,-0.6959402410789269,-0.3486358012040313,16.19239051589072,16.19239051589072,17.035203976219563,17.035203976219563,17.29924998199475,17.29924998199475,16.95321551511104,16.95321551511104,5.283220967583404,5.283220967583404,12.47520971591993,14.1757677156277,14.721767622858323,14.87623397392231,6.938502381990801,13.227079469671281,14.255336089389203,14.87461730934649,15.184750080293625,7.528872866394394,211.10807122860535,211.10807122860535,0.0,234.56452358733927,0.0,211.10807122860535,234.56452358733927,0,0
+2017/02/21 21:00:00,212.99197049166364,0,1242.8333779361717,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.4432883284271426,24.64495299707919,0,0,288.27444526604125,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,819.8884118416349,0.0,652.027080927935,0.0,1676.7301954854631,0.0,649.8878296540886,0.0,0.0,0.0,8543.18752919814,0.0,6740.052604852354,0.0,9718.624589932782,0.0,6855.463966650871,0.0,0.0,0.0,7946.0166929535335,0.0,6284.1691671940125,0.0,9144.36825783219,0.0,6433.221391791343,0.0,0.0,0,0,0,0,0,0,0,0,0.06616936961629039,0.002093552730804028,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7417280843598009,-0.7417280843598009,-0.7667802908349071,-0.7667802908349071,-0.7738097210115623,-0.7738097210115623,-0.7641347768602277,-0.7641347768602277,-0.15917487935674904,-0.15917487935674904,-0.5964849417111739,-0.6579805994054232,-0.6755117135682916,-0.6808936853647803,-0.30055442938160615,-0.6230055453476264,-0.663843176536694,-0.6819723934964398,-0.6921900065145029,-0.34147750480356437,16.583330788210006,16.583330788210006,17.386653828930022,17.386653828930022,17.616878103922957,17.616878103922957,17.300555349562458,17.300555349562458,5.5250695718302865,5.5250695718302865,12.45921768835909,14.09389654137587,14.58994311202953,14.744896337595122,6.877136679409986,13.144067332830403,14.258298078915814,14.776104347665296,15.074204568146214,7.425628461275011,212.99197049166364,212.99197049166364,0.0,236.65774499073737,0.0,212.99197049166364,236.65774499073737,0,0
+2017/02/21 22:00:00,199.5597064289879,0,1299.2879545126605,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.5660265030571955,27.0977424753112,0,0,380.21937435507425,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1571.2259540355433,0.0,1098.0581654933758,0.0,2343.9021212548287,0.0,1091.0412397178588,0.0,0.0,0.0,7035.114422232498,0.0,7574.239699540947,0.0,8181.760940926247,0.0,7680.712764241945,0.0,0.0,0.0,6463.784254386615,0.0,7133.273384660135,0.0,7612.914435084126,0.0,7261.515375081939,0.0,6076.966022885992,0,0,0,0,0,0,0,0,0.06917505308950388,0.0021886504607622932,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7641413838252763,-0.7641413838252763,-0.7867086556542967,-0.7867086556542967,-0.7948968124855572,-0.7948968124855572,-0.7839532992433981,-0.7839532992433981,-0.2420418545514616,-0.2420418545514616,-0.6099000741234801,-0.6738733131706479,-0.6850831244035666,-0.6943414924827858,-0.3172651981520798,-0.6366132940660579,-0.6839149673456966,-0.6942333344147764,-0.708197537274979,-0.3625946475308816,17.300770001583004,17.300770001583004,18.04481135869017,18.04481135869017,18.320128684375618,18.320128684375618,17.952805704731063,17.952805704731063,6.215808972415658,6.215808972415658,12.801825653894994,14.543020518955416,14.866382444789693,15.13754953803354,7.092538074808573,13.507312285053203,14.83243170087924,15.134360328154415,15.550293638609176,7.736471003024846,199.5597064289879,199.5597064289879,0.0,221.7330071433199,0.0,199.5597064289879,221.7330071433199,0,0
+2017/02/21 23:00:00,141.1748406770683,0,1223.3605096182594,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.7631959586126886,21.226711910679363,0,0,463.9985157671215,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3609.8720011333644,0.0,2042.8932737409257,0.0,4284.276248434087,0.0,2329.149095908721,0.0,0.0,0.0,7159.1695608828595,0.0,8525.453938329596,0.0,8346.626174186105,0.0,8623.190618460165,0.0,6223.128916435553,0.0,6498.106718612586,0.0,7969.7537626684,0.0,7594.760066668005,0.0,8080.0780680439075,0.0,13870.349747546281,0,0,0,0,0,0,0,0,0.06513261968336134,0.0020607506856004697,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8475661246727401,-0.8475661246727401,-0.9045287179264542,-0.9045287179264542,-0.8797863882153742,-0.8797863882153742,-0.8624744008903404,-0.8624744008903404,-0.483312235801382,-0.483312235801382,-0.6371353757376573,-0.7028285394657608,-0.7069360962115527,-0.7206440823695006,-0.3514500191036517,-0.6629916237425775,-0.7173154308764568,-0.718595510875746,-0.7376905350661843,-0.40287227328386516,20.158679438985132,20.158679438985132,22.276940140014688,22.276940140014688,21.340471407322454,21.340471407322454,20.70015614644271,20.70015614644271,9.879476678273349,9.879476678273349,13.521408734798896,15.38937849431764,15.512375015179103,15.928111053242148,7.57005905736662,14.234325948903077,15.826415353174468,15.865467410167724,16.45637885618939,8.382059475916762,141.1748406770683,141.1748406770683,0.0,156.86093408563144,0.0,141.1748406770683,156.86093408563144,0,0
+2017/02/22 00:00:00,91.53835159817254,0,1081.7660883038347,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.8224693740138708,11.772925962866102,0,0,509.5104792353773,519.0200802996413,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4563.5849945423,0.0,2955.420079270629,0.0,5156.569597195293,0.0,2886.0799333521873,0.0,0.0,0.0,6127.885667618851,0.0,8663.464656463279,0.0,7300.254601386317,0.0,8762.17826615818,0.0,12584.199162044082,0.0,5790.226652386498,0.0,8320.83820889809,0.0,6859.258572918375,0.0,8422.943365290526,0.0,19287.190021591952,0,0,0,0,0,0,0,0,0.057594027812649544,0.0018222348936431558,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9276163380571829,-0.9276163380571829,-0.9418953148955727,-0.9418953148955727,-0.9629601345248607,-0.9629601345248607,-0.9388557952587989,-0.9388557952587989,-0.6091797433813042,-0.6091797433813042,-0.6608327853149089,-0.7273124112266987,-0.7270003648786579,-0.7436758295499353,-0.38815639346169806,-0.688105579660378,-0.7455722494465518,-0.7409946690780969,-0.763675859746683,-0.4437693120639739,23.173163948692675,23.173163948692675,23.738138570537657,23.738138570537657,24.586338417929085,24.586338417929085,23.617194728334795,23.617194728334795,12.78323074622017,12.78323074622017,14.173693080053212,16.133274036791434,16.123630709669044,16.644823485398575,8.13815431383334,14.954499416815892,16.704852101642075,16.560218148173135,17.285650269243618,9.108614696129365,91.53835159817254,91.53835159817254,0.0,101.70927955352504,0.0,91.53835159817254,101.70927955352504,0,0
+2017/02/22 01:00:00,40.101403581571795,0,719.0750225342152,0,0,0,0.0,0.001184067204245548,4.166984770466865,9.319298099999997,16.311038125956312,0,0.4529733361283654,0.30837318008752396,9.541552001728478,0,0,149.19608980258687,516.6434039628123,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1840672042455482,1162.7640667027715,0.0,920.4986854351006,0.0,1496.352132360426,0.0,896.183407723165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03828408682338465,0.001211281820882017,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9491634964550162,-0.9491634964550162,-0.9643099202734315,-0.9643099202734315,-0.9810511958172574,-0.9810511958172574,-0.9619988756206953,-0.9619988756206953,-0.2855199271548487,-0.2855199271548487,-1.079672632133732,-1.150327370510249,-1.1486093218943076,-1.1648563987156353,-0.17616543598665851,-1.0203703463535383,-1.0935895754593286,-1.0997979195241354,-1.117465750337776,-0.3621116392736413,24.028825996030236,24.028825996030236,24.64128276899085,24.64128276899085,25.328639235881738,25.328639235881738,24.547252813685773,24.547252813685773,6.693432571906939,6.693432571906939,29.591747578569866,32.856705132496884,32.7753723817321,33.548214637124445,5.643304615034808,26.985183472161694,30.2215601165868,30.504670613627425,31.31749610311485,7.729149084087695,40.101403581571795,40.101403581571795,0.0,44.55711509063533,0.0,40.101403581571795,44.55711509063533,0,0
+2017/02/22 02:00:00,23.72214585560497,0,43.79906285704781,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525050431927178,0,0,0.0,8.308710344503671,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0023318945487670775,7.377951805840455e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.1967863024563983,-1.1967863024563983,-1.2556407465652248,-1.2556407465652248,-1.2722420521204845,-1.2722420521204845,-1.246608463926545,-1.246608463926545,-0.1246062940454085,-0.1246062940454085,-1.2052089641058874,-1.31207788131641,-1.3443149753935855,-1.3477379487995382,-0.10694488610651201,-1.2076216118516159,-1.2995241766700791,-1.3380591996616358,-1.3447351613479372,-0.40555099327004246,35.090545810486134,35.090545810486134,38.009545278365636,38.009545278365636,38.849386275588316,38.849386275588316,37.5555327868946,37.5555327868946,5.321633270608729,5.321633270608729,35.502402056165735,40.891326311595435,42.5689082915051,42.74824341172388,5.236876801892265,35.6207517975901,40.24394574393504,42.24173709377737,42.59091055619837,8.427453946991136,23.72214585560497,23.72214585560497,0.0,26.357939839561077,0.0,23.72214585560497,26.357939839561077,0,0
+2017/02/22 03:00:00,28.36066961427648,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.541306527803581,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.2020036353460417,-1.2020036353460417,-1.2645494129580395,-1.2645494129580395,-1.2800209404511926,-1.2800209404511926,-1.257184404667113,-1.257184404667113,-0.0467405580128431,-0.0467405580128431,-1.2235433823906887,-1.339618373477374,-1.37865707613381,-1.3804227355673542,-0.08613826298967601,-1.2691399373630494,-1.3677243959970853,-1.4142801132561904,-1.4193259146639658,-0.39210871530809877,35.345425403488164,35.345425403488164,38.459373694627025,38.459373694627025,39.24523277652987,39.24523277652987,38.08734670131163,38.08734670131163,5.0452283967858875,5.0452283967858875,36.40588281897152,42.32320963107813,44.37774077174505,44.47128835031666,5.153644561970722,38.69193612159683,43.79966043076033,46.27434540639953,46.54444957259869,8.202751792830668,28.36066961427648,28.36066961427648,0.0,31.511855126973863,0.0,28.36066961427648,31.511855126973863,0,0
+2017/02/22 04:00:00,23.75850225441078,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5614068307329885,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.2686704159910418,-1.2686704159910418,-1.3348550016383385,-1.3348550016383385,-1.3428023053658553,-1.3428023053658553,-1.3267952730973986,-1.3267952730973986,0.016828855255661107,0.016828855255661107,-1.3068358180487487,-1.4235347659451592,-1.466826074570424,-1.465375383104745,-0.05797605771342827,-1.3670273267852415,-1.4651713036975575,-1.5168620925773095,-1.5182267560343117,-0.4069978160151115,38.66812570126662,38.66812570126662,42.074455405684645,42.074455405684645,42.48972800286754,42.48972800286754,41.65458411800973,41.65458411800973,5.0058626708319025,5.0058626708319025,40.62057917334377,46.77000411844934,49.10178994878806,49.02334498391339,5.069589489442947,43.76287063117853,49.01231105410349,51.816859394313965,51.891108530768626,8.452100040565853,23.75850225441078,23.75850225441078,0.0,26.398335838234196,0.0,23.75850225441078,26.398335838234196,0,0
+2017/02/22 05:00:00,44.70567589659449,0,404.04897842101457,0,0,0,0.0,0.027649830135820445,4.633261998087618,9.319298099999997,25.555573451546493,0,2.790441273967444,1.8543848424496554,0.5250664004074601,0,0,315.32309713965424,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6251106475081842,2013.1940226309562,0.3398168919182088,1540.5982347675456,1.6050043751302685,2457.5567589302086,0.33165284422557306,1506.6220507893972,0.0,0.0,2.849334619447897,5466.820725901078,1.9539560105941216,3943.8332540367737,5.092899838379158,6571.319124425485,2.1894869286401217,4111.184953635657,0.0,0.0,3.376375843118315,5169.266345438738,2.64593553554217,3595.29319074552,2.5381115403127597,6109.460514264443,3.1021450610036627,3786.0969650537904,0.0,0.0,0,0,0,0,0,0,0,0,0.02151186689290679,0.0006806204734834016,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.039123666908945,-1.039123666908945,-1.0688672736552287,-1.0688672736552287,-1.0714522614039372,-1.0714522614039372,-1.0655170322522869,-1.0655170322522869,0.15279793388367788,0.15279793388367788,-0.8557452365984042,-0.9084741607006976,-0.9231698571342994,-0.9264522487462198,-0.026695755331075877,-0.904149193603723,-0.9547503550552892,-0.9656851842015439,-0.973247744338128,-0.39188355505569367,27.795674688393802,27.795674688393802,29.107409364144928,29.107409364144928,29.222904616606073,29.222904616606073,28.958075053927033,28.958075053927033,5.483799099440489,5.483799099440489,20.454607184278345,22.42857291690727,22.99889217564919,23.127463077580842,5.014752959892888,22.26238735944912,24.253686550533033,24.697337351871553,25.006896247266155,8.199053799425329,44.70567589659449,44.70567589659449,0.0,49.67297321843832,0.0,44.70567589659449,49.67297321843832,0,0
+2017/02/22 06:00:00,77.60813991900046,0,397.2387770665235,0,0,0,0.09547531542620478,0.021965169369100583,5.555297838843742,9.319298099999997,57.911447091112116,0,2.506127465261809,1.6734008031288046,0.5251281358586363,0,0,184.2966619912587,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,303.4127066829913,0.0,0.0,0.0,0.0,0.0,0.0,897.85528232267,0.0,736.2306401911882,0.6043981219804095,1126.1121498217774,0.0,711.5913620254836,0.0,0.0,3.184376611923426,4508.149381923,2.047545396796181,3304.6553948678766,3.439543043955382,5540.251978387912,2.244896696818955,3457.780733970618,0.0,0.0,3.094829893257838,4363.401416916373,2.3022169918289137,3074.2340403360436,2.953124418374955,5255.699585361548,2.094238194164518,3252.7389122408645,0.0,0.0,0,0,0,0,0,0,0,0,0.02114928672843214,0.0006691486898186469,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9332447005717415,-0.9332447005717415,-0.9599325916037253,-0.9599325916037253,-0.9587717130446595,-0.9587717130446595,-0.9566213935111517,-0.9566213935111517,0.4767303077679281,0.4767303077679281,-0.7760283311480856,-0.8147850552841848,-0.8266152489710957,-0.8288809961802022,0.08371211290316596,-0.7925720063259261,-0.8286159214592214,-0.8327253826825746,-0.8417745649498586,-0.31719677831499987,23.394891100590172,23.394891100590172,24.46335823911923,24.46335823911923,24.416297943823267,24.416297943823267,24.329266685029665,24.329266685029665,9.746492365944675,9.746492365944675,17.689978187600687,19.00066587223094,19.41338178879512,19.49309686890092,5.145108752871749,18.241670653209297,19.483759707512704,19.628845014774058,19.950819165618142,7.0916320416378795,77.60813991900046,77.60813991900046,0.0,86.23126657666718,0.0,77.60813991900046,86.23126657666718,0,0
+2017/02/22 07:00:00,103.26639127450247,0,886.7093957864655,0,0,0,0.0,0.016932315542042487,11.110595677687485,13.929299233552332,73.80580873715317,0,2.3912400717659437,1.4874521406433652,0.5250630981581386,0,0,150.0462607736488,505.97584368127974,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,585.5165216656247,0.0,531.9543169304478,0.0,789.4433166795104,0.0,508.0077871545634,0.0,0.0,2.4792157667006904,3884.2262131391526,1.62016391421821,2831.508902476777,4.05308226135124,4706.383593761013,1.8048693259494635,2947.2020581916295,0.0,0.0,1.752653954556384,3411.181111074042,1.3128311716066792,2398.147313519166,2.373379738051881,4065.0734993482115,1.536119409607939,2520.723223547864,0.0,0.0,0,0,0,0,0,0,0,0,0.04720906502323228,0.0014936619099021992,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8719823245466556,-0.8719823245466556,-0.9007978169229893,-0.9007978169229893,-0.8964099637533228,-0.8964099637533228,-0.8973221521700515,-0.8973221521700515,0.7272766293211427,0.7272766293211427,-0.7499884006867641,-0.7851582907635617,-0.7942299382678127,-0.7963412021083656,0.14457686581924267,-0.7617451288478081,-0.7927466832313993,-0.7974604932116699,-0.8060878517825849,-0.2151059103263332,21.050295091598542,21.050295091598542,22.134133117728823,22.134133117728823,21.96690356782723,21.96690356782723,22.001604354800264,22.001604354800264,16.13216803777918,16.13216803777918,16.845236873513983,17.993002565725106,18.29759944422183,18.36898960362352,5.433093085374338,17.22304097288942,18.24755772363335,18.40691384401049,18.701008352801395,5.959762268434645,103.26639127450247,103.26639127450247,0.0,114.74043474944719,0.0,103.26639127450247,114.74043474944719,0,0
+2017/02/22 08:00:00,150.2580720054612,0,1015.2541963374215,0,0,0,0.0,0.0,10.628007803559424,0.0,69.33401494192633,0,39.380909295966944,0.40402793772997375,27.079136823824246,0,0,149.42114494865143,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2438.0150988823834,0.0,1555.138259765674,0.0,2871.1943352051658,0.0,1541.6280964268608,0.0,0.0,0.0,6304.137501874348,0.0,6755.983328722633,0.0,7289.839331692086,0.0,6810.569920380495,0.0,2263.991214917348,0.0,5622.769759129161,0.0,6199.652221790657,0.0,6461.349351561403,0.0,6217.390546382977,0.0,3651.6495218097757,0,0,0,0,0,0,0,0,0.054052885418555914,0.0017101956166739,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8730671687672964,-0.8730671687672964,-0.8947026986457677,-0.8947026986457677,-0.895283595632906,-0.895283595632906,-0.8914036470589497,-0.8914036470589497,0.25888381320549814,0.25888381320549814,-0.7179743178407457,-0.7536983565865629,-0.7574058074221317,-0.7641922235117057,-0.20552024531615415,-0.7275099708879487,-0.7605874404073587,-0.75725808144819,-0.7701229673297774,-0.35615588435738016,21.090482600597312,21.090482600597312,21.90204811055378,21.90204811055378,21.9241018565576,21.9241018565576,21.777060558160912,21.777060558160912,6.391382809251155,6.391382809251155,15.846507541841078,16.96381813394369,17.082907839868284,17.302421781692047,5.875978891204824,16.13938148849688,17.18557610205086,17.078151378866778,17.49586866417978,7.6396823234442195,150.2580720054612,150.2580720054612,0.0,166.95341333940132,0.0,150.2580720054612,166.95341333940132,0,0
+2017/02/22 09:00:00,165.24507335081887,0,1081.015942801872,0,0,0,0.0,0.0,11.88231167376211,0.0,83.2008179303116,0,39.380909295966944,0.25131677301271044,27.097742475311204,0,0,161.94736264428585,599.655407544689,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,984.1856941380847,0.0,673.1116902934594,0.0,1469.66451044894,0.0,611.1704475171973,0.0,0.0,0.0,4897.551128809722,0.0,5692.703140953745,0.0,5900.749750895571,0.0,5667.171547813647,0.0,170.6337925670257,0.0,4267.5475914707295,0.0,5196.625112557977,0.0,5151.253192902175,0.0,5114.486987624852,0.0,91.2254785647522,0,0,0,0,0,0,0,0,0.057554089510487266,0.0018209712736020345,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8339946693290196,-0.8339946693290196,-0.8604923515617526,-0.8604923515617526,-0.8597623280628813,-0.8597623280628813,-0.8504410878927864,-0.8504410878927864,-0.24153181687347372,-0.24153181687347372,-0.6787629466056222,-0.7217114714038051,-0.7210867518548918,-0.7252608408066914,-0.3226848994746205,-0.6849132784103172,-0.7264063785763558,-0.7188579753963023,-0.7276312945406469,-0.3999333857359252,19.673800380829775,19.673800380829775,20.627635763584294,20.627635763584294,20.600966220833556,20.600966220833556,20.26238129018907,20.26238129018907,6.210677903005362,6.210677903005362,14.683400029477795,15.960822534716442,15.94167126486819,16.069950062358245,7.1649373324017205,14.861442458188534,16.10528602196412,15.873483267910686,16.143132976509918,8.332609394223567,165.24507335081887,165.24507335081887,0.0,183.6056370564654,0.0,165.24507335081887,183.6056370564654,0,0
+2017/02/22 10:00:00,181.92130326523167,0,1118.908252969368,0,0,0,0.0,0.0,11.268261791783145,0.0,106.27511244621549,0,39.380909295966944,0.19950786253525515,21.365536666276604,0,0,146.60414404296563,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,224.2682012666791,0.0,0.0,0.0,0.0,0.0,2735.662152288817,0.0,4923.107665685551,0.0,4855.9940043662555,0.0,4410.158943231627,0.0,15.343509996017985,0.0,1855.426891692567,0.0,4427.548155503181,0.0,4113.049823716382,0.0,3786.8322560861297,0.0,0.0,0,0,0,0,0,0,0,0,0.05957150417089152,0.0018848008672032043,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6171244471754744,-0.6171244471754744,-0.8158682061267363,-0.8158682061267363,-0.8157832105627594,-0.8157832105627594,-0.6642608447971661,-0.6642608447971661,-0.28581464397965384,-0.28581464397965384,-0.5732849998306051,-0.6971959426086611,-0.693601373926573,-0.6563689151085051,-0.3301508299194757,-0.5595325960603137,-0.6960263781693565,-0.6861471575190069,-0.6457435962128684,-0.39559634241489655,12.989563997460877,12.989563997460877,19.038208558660983,19.038208558660983,19.035260772737487,19.035260772737487,14.270067372102048,14.270067372102048,6.696941941890202,6.696941941890202,11.885149028515059,15.221900101352276,15.115736086931534,14.048961788204878,7.266710475961759,11.555878089317972,15.187296276940756,14.897358330634958,13.755539090459777,8.260308759075883,181.92130326523167,181.92130326523167,0.0,202.13478140581296,0.0,181.92130326523167,202.13478140581296,0,0
+2017/02/22 11:00:00,212.16936436813594,0,1139.3118967302407,0,0,0,0.0,0.0,16.903073633821148,0.0,133.89528835348938,0,39.380909295966944,0.14083379786963746,18.417284084534515,0,0,115.43115885810828,562.5061552090588,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1345.7196591092202,0.0,4655.310120482496,0.0,3753.1856247097076,0.0,4261.697339201179,0.0,2.697730036910363,0.0,669.1486457165834,0.0,4099.63875080941,0.0,2922.0374558208355,0.0,3609.3898485693044,0.0,0.0,0,0,0,0,0,0,0,0,0.06065780927783533,0.0019191708035697838,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5026980301459455,-0.5026980301459455,-0.7313278969191835,-0.7313278969191835,-0.7186777266085617,-0.7186777266085617,-0.5284321511166585,-0.5284321511166585,-0.2505324314824142,-0.2505324314824142,-0.5529435294596661,-0.6825662937507807,-0.6757917000810013,-0.6542542758803211,-0.34895388695690605,-0.4954074412572147,-0.6789777982534675,-0.6655520616048661,-0.6446190062176388,-0.4006317806583356,10.282021360237849,10.282021360237849,16.257740230704698,16.257740230704698,15.867978019480901,15.867978019480901,10.84148372593964,10.84148372593964,6.302830984069772,6.302830984069772,11.40102375241193,14.793307906308655,14.59797334443276,13.990175080519549,7.533511180260831,10.128728550875636,14.689592065606206,14.306499797349787,13.724769488582979,8.344327196104999,212.16936436813594,212.16936436813594,0.0,235.74373818681772,0.0,212.16936436813594,235.74373818681772,0,0
+2017/02/22 12:00:00,228.32877044839128,0,1175.618924841669,0,0,0,0.0,0.0,16.73568395689411,0.0,147.76209134187457,0,39.380909295966944,0.07057551191907704,20.947535139282227,0,0,61.353405865089954,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,701.659565297395,0.0,3009.415280903232,0.0,3040.425711738906,0.0,2801.227417720578,0.0,0.0,0.0,0.0,0.0,2329.578437153244,0.0,2017.4145152361268,0.0,2072.0655005172275,0.0,0.0,0,0,0,0,0,0,0,0,0.06259082234734555,0.001980329989667828,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.40739725225240486,-0.40739725225240486,-0.6071932267584538,-0.6071932267584538,-0.6257591835352109,-0.6257591835352109,-0.34432809781546264,-0.34432809781546264,-0.15294336517610405,-0.15294336517610405,-0.4646577763756465,-0.6345332398030933,-0.6279694844430193,-0.6207295341198339,-0.2786561667876086,-0.395472850633184,-0.6233598163334803,-0.6106680769652749,-0.6069679648300836,-0.372644124248874,8.458920077370067,8.458920077370067,12.732066693765262,12.732066693765262,13.216924513449854,13.216924513449854,7.466481715561613,7.466481715561613,5.484721427967145,5.484721427967145,9.50742867890142,13.451267235471619,13.275643829416353,13.084095820913902,6.612738262288431,8.25826186979657,13.15342237545525,12.821675992628343,12.726275735294152,7.891066075835909,228.32877044839128,228.32877044839128,0.0,253.69863383154586,0.0,228.32877044839128,253.69863383154586,0,0
+2017/02/22 13:00:00,206.36957016370957,0,1062.487096735859,0,0,0,0.0,0.0,16.735683873587277,0.0,129.49988082968767,0,39.380909295966944,0.022661671215160613,18.44245102494963,0,0,20.865680802439986,562.5016570140732,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1069.2246572443755,0.0,1735.2394600266412,0.0,1137.2959233107422,0.0,0.0,0.0,0.0,0.0,482.90543483547117,0.0,884.647723385968,0.0,550.7053287485782,0.0,0.0,0,0,0,0,0,0,0,0,0.056567600021492935,0.0017897594338101514,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.39483945176947477,-0.39483945176947477,-0.47373322029997,-0.47373322029997,-0.5593156095825499,-0.5593156095825499,-0.16785837738124398,-0.16785837738124398,-0.08552901718111566,-0.08552901718111566,-0.33566315487510895,-0.5627686734600402,-0.5824843316228603,-0.5772944031319476,-0.14967118865005558,-0.23210506970511266,-0.5381739431344081,-0.5582857828418689,-0.5558174097862705,-0.2701105544635825,8.247773466757366,8.247773466757366,9.68655694854337,9.68655694854337,11.550748559794883,11.550748559794883,5.583992798097626,5.583992798097626,5.151478122718856,5.151478122718856,7.343370295756898,11.632620792255679,12.10998650602653,11.982689952412287,5.464182275629469,6.117809546748873,11.060750265903238,11.526431441139138,11.468333388876061,6.5150476192838624,206.36957016370957,206.36957016370957,0.0,229.29952240412175,0.0,206.36957016370957,229.29952240412175,0,0
+2017/02/22 14:00:00,202.8496790023425,0,1015.0767177515553,0,0,0,0.0,0.0,16.735683873587277,0.0,129.2730206906943,0,39.380909295966944,0.010546261351793979,16.305527146590652,0,0,9.944199229876553,561.5031121148771,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,570.1500841161624,0.0,930.6396930555561,0.0,835.686970789768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,158.29530612047594,0.0,291.3673863015189,0.0,0.0,0,0,0,0,0,0,0,0,0.05404343632718482,0.0017098966540094785,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.36417978545635715,-0.36417978545635715,-0.4021636071573538,-0.4021636071573538,-0.5324378239053082,-0.5324378239053082,-0.0477079264900025,-0.0477079264900025,-0.01645519178870223,-0.01645519178870223,-0.24517968416807723,-0.49375592131605867,-0.5556433228502747,-0.552309706236412,-0.09692756787900661,-0.15991344826732048,-0.45468891224853236,-0.5285171157721742,-0.5282003665180964,-0.2249062267783326,7.7605699211261765,7.7605699211261765,8.370101557733932,8.370101557733932,10.931145154920543,10.931145154920543,5.0471201070631935,5.0471201070631935,5.005605211636123,5.005605211636123,6.247616493229984,10.094322492231981,11.464245880754092,11.38622706511542,5.194561882823393,5.529958947609913,9.314755392171264,10.843378329774765,10.836316813334221,6.049400530910177,202.8496790023425,202.8496790023425,0.0,225.38853222482498,0.0,202.8496790023425,225.38853222482498,0,0
+2017/02/22 15:00:00,187.73215069828024,0,961.8640826994383,0,0,0,0.0,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,0.01346752750106736,14.023257107946675,0,0,12.88291064805581,540.842118157125,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,503.2515957015244,0.0,800.8060852619575,0.0,1315.07471700778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65.66759449057096,0.0,803.2049216235504,0.0,0.0,0,0,0,0,0,0,0,0,0.05121035622205658,0.0016202599743029582,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3302415313106075,-0.3302415313106075,-0.31115992605729736,-0.31115992605729736,-0.5923899108342309,-0.5923899108342309,-0.005039944236539266,-0.005039944236539266,0.00829357976722715,0.00829357976722715,-0.22890482879611748,-0.4316198777306168,-0.555627695496178,-0.555895603956701,-0.1776205993978748,-0.15137827031147918,-0.36615727862922476,-0.5296481903931682,-0.5331403835375204,-0.2634852530398171,7.267961424162138,7.267961424162138,7.012470988706568,7.012470988706568,12.356191056232703,12.356191056232703,5.000525814785263,5.000525814785263,5.001423856524539,5.001423856524539,6.087130014341668,8.885281165523821,11.463879019521357,11.470169791787157,5.6539907373759775,5.474841834105547,7.790783906432409,10.86862963290163,10.946942598873434,6.4414268248703905,187.73215069828024,187.73215069828024,0.0,208.5912785536447,0.0,187.73215069828024,208.5912785536447,0,0
+2017/02/22 16:00:00,182.57098163250265,0,966.7845242279993,0,0,0,0.0,0.0,16.903073467207488,0.0,108.75639138185811,0,39.380909295966944,0.018313619480374296,14.080318665535446,0,0,17.811244859583827,540.8342254741578,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,513.4759795452312,0.0,795.6951691271888,0.0,1729.7548165306273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,197.8204956742489,0.0,1302.4975916927733,0.0,148.26007489240385,0,0,0,0,0,0,0,0,0.05147232417364101,0.001628548457684364,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4207858410584941,-0.4207858410584941,-0.3988615752662993,-0.3988615752662993,-0.6774402715359948,-0.6774402715359948,0.03154597804188895,0.03154597804188895,0.010680769656817834,0.010680769656817834,-0.2787349278578302,-0.4111030459839545,-0.5612085685237433,-0.5651474812797971,-0.20956893685566738,-0.22079009547440165,-0.34693500829002166,-0.5391266736535154,-0.5469482743889057,-0.3190487294687553,8.691473097813315,8.691473097813315,8.314666941355753,8.314666941355753,14.645324455858415,14.645324455858415,5.020600996804362,5.020600996804362,5.002361501139589,5.002361501139589,6.613652951424825,8.522519124991973,11.595566628970431,11.689323211270349,5.9108971983388585,6.011262251138163,7.504144974477711,11.082414819372403,11.261760399348901,7.11622602680599,182.57098163250265,182.57098163250265,0.0,202.85664625833627,0.0,182.57098163250265,202.85664625833627,0,0
+2017/02/22 17:00:00,205.40540924653382,0,1010.3622316335542,0,0,0,0.0,0.0,17.770030161653864,0.0,131.64086955684016,0,39.380909295966944,0.008256531327118835,14.031362298904927,0,0,8.158129703319462,540.829519267161,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.551769992249334,0.0,237.99985460631137,0.0,1118.4425725511844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,762.0619081914118,0.0,0.0,0,0,0,0,0,0,0,0,0.053792433594211146,0.0017019551025015292,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44198305288507,-0.44198305288507,-0.41705409892608397,-0.41705409892608397,-0.6091756056315857,-0.6091756056315857,0.14024051534351817,0.14024051534351817,0.1204637644641871,0.1204637644641871,-0.2817661768961589,-0.42959810384685815,-0.5596559888900275,-0.5667629096989089,-0.2249864951550015,-0.29005470485320844,-0.3610723943849368,-0.5419980898484288,-0.5520307346750049,-0.290173005134775,9.075381599830266,9.075381599830266,8.625882427379764,8.625882427379764,12.783123997733952,12.783123997733952,5.407480768062598,5.407480768062598,5.300589919552095,5.300589919552095,6.649055070700911,8.84873174470026,11.558795988944041,11.727969276450295,6.050151322711372,6.747836723793597,7.713428867748291,11.147947068812755,11.379719956561189,6.7492676037032595,205.40540924653382,205.40540924653382,0.0,228.22823249614868,0.0,205.40540924653382,228.22823249614868,0,0
+2017/02/22 18:00:00,215.13854268023874,0,1043.015001058403,0,0,0,0.0,0.0,22.158966152942444,0.0,133.89528835348938,0,39.380909295966944,0.0005664802961325174,18.55882066339233,0,0,0.5632416986766073,581.0771766966528,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,132.33665683621237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.055530891224514094,0.0017569586901193838,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.39572504453666874,-0.39572504453666874,-0.4822479340948567,-0.4822479340948567,-0.5137635213504659,-0.5137635213504659,0.25719868360881376,0.25719868360881376,0.259997691785434,0.259997691785434,-0.23448189589456214,-0.4383287583981819,-0.5120899867902804,-0.5481226633708237,-0.21663869976187572,-0.24395932062013614,-0.36936040090868105,-0.4452228144148278,-0.5267693585847893,-0.17284999743430748,8.262442704258532,8.262442704258532,9.85784636284987,9.85784636284987,10.519075505582904,10.519075505582904,6.373278698736286,6.373278698736286,6.403415304038603,6.403415304038603,6.140873376941229,9.007821202045392,10.482883826360563,11.288917495956781,5.9735163932438695,6.235196774392321,7.8400777794499135,9.135758114383577,10.804468477189843,5.619287409123942,215.13854268023874,215.13854268023874,0.0,239.04282520026527,0.0,215.13854268023874,239.04282520026527,0,0
+2017/02/22 19:00:00,215.63394170757192,0,1025.5833381279308,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,4.392969240090865e-05,26.389402283813084,0,0,0.043700432712140205,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05460281657834681,0.0017275950552360442,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.37491767125335357,-0.37491767125335357,-0.4963321659600146,-0.4963321659600146,-0.46061888235056325,-0.46061888235056325,0.34333331687543145,0.34333331687543145,0.32608201285578764,0.32608201285578764,-0.19845120197350555,-0.3514905594654154,-0.48368975436558787,-0.4692058935219461,-0.10309256878419491,-0.17994074819755684,-0.2952657521537249,-0.396003836452426,-0.4119849480690932,-0.15603898247490106,7.926638172973696,7.926638172973696,10.148044760084346,10.148044760084346,9.42885129293326,9.42885129293326,7.452185793393028,7.452185793393028,7.210952580795862,7.210952580795862,5.816655427767557,7.570654828444077,9.887160913255727,9.59675429773236,5.220110939358932,5.6712117561013144,6.8114264637474236,8.26706764187773,8.537741027459731,5.504562873334891,215.63394170757192,215.63394170757192,0.0,239.5932685639688,0.0,215.63394170757192,239.5932685639688,0,0
+2017/02/22 20:00:00,207.09773838236043,0,990.084839268643,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,3.573857301069633e-05,27.0977424753112,0,0,0.03555408596853961,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052712850205103565,0.0016677978366018641,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42558507737566054,-0.42558507737566054,-0.5630843688891897,-0.5630843688891897,-0.4903245242640444,-0.4903245242640444,0.35506680119439865,0.35506680119439865,0.30472215954182436,0.30472215954182436,-0.25129753619836415,-0.3601028593057019,-0.43603437805179673,-0.46127643474528535,-0.09777806063998222,-0.2240794738991427,-0.2746481735004465,-0.39310528687114465,-0.37978037413350185,-0.18542091732231092,8.776704391818782,8.776704391818782,11.640131737904113,11.640131737904113,10.023212937811266,10.023212937811266,7.623485533795019,7.623485533795019,6.929752593079044,6.929752593079044,6.310821539850494,7.698804593499176,8.965696034950142,9.44159621077877,5.197992692844835,6.04168320097223,6.566536892591529,8.219145335457455,8.003460626855002,5.71277997238829,207.09773838236043,207.09773838236043,0.0,230.1085982026227,0.0,207.09773838236043,230.1085982026227,0,0
+2017/02/22 21:00:00,210.21567276352047,0,957.5052587563526,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.0029572812836818766,24.71136895779748,0,0,2.9463260862223386,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,397.3467420213282,0.0,367.00462757200694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05097828920671674,0.0016129175357016592,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.38476536573490494,-0.38476536573490494,-0.4873434709840577,-0.4873434709840577,-0.4641594026502195,-0.4641594026502195,0.2971532567761091,0.2971532567761091,0.16823179362556354,0.16823179362556354,-0.28328652097705004,-0.3983990866275373,-0.47423839379712646,-0.4776252228494312,-0.0644839636569584,-0.22871006333067104,-0.3149991441982644,-0.41790839707038113,-0.4314962810691188,-0.12725993303204772,8.083262689702892,8.083262689702892,9.961848637767815,9.961848637767815,9.49769473145517,9.49769473145517,6.834742471554279,6.834742471554279,5.586597175617214,5.586597175617214,6.666957209219831,8.30693991004513,9.69663221113322,9.764463876327824,5.086092480114573,6.085276737635041,7.062635878198122,8.64084523653463,8.883041761863254,5.335488149823547,210.21567276352047,210.21567276352047,0.0,233.57296973724496,0.0,210.21567276352047,233.57296973724496,0,0
+2017/02/22 22:00:00,197.87256046594013,0,950.646048559777,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.03137515084647356,27.08923959862555,0,0,31.577468402190828,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1458.150780019908,0.0,1550.5467478552505,0.0,1918.6198124080784,0.0,0.0,0.0,0.0,0.0,838.5087987198308,0.0,782.267728525519,0.0,1358.1460223166464,0.0,0.0,0,0,0,0,0,0,0,0,0.05061309977518834,0.001601363196646133,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44820841015840945,-0.44820841015840945,-0.5211541653671504,-0.5211541653671504,-0.5343479393048256,-0.5343479393048256,0.19096103848953533,0.19096103848953533,-0.008944800963683072,-0.008944800963683072,-0.3446817403863719,-0.435487148111721,-0.49533078936750763,-0.4997904152878674,-0.1497854966262108,-0.29515374500943065,-0.38913294772946866,-0.46436509046238356,-0.4744380802987229,-0.20966878976935768,9.191797526587195,9.191797526587195,10.680353799387163,10.680353799387163,10.97414510957718,10.97414510957718,5.756077924014008,5.756077924014008,5.001656241868659,5.001656241868659,7.471574019858394,8.955682210075949,10.127129057619001,10.220610173046438,5.464892259751593,6.8100475913580425,8.154053207205493,9.501710810224338,9.70061782557947,5.911767057973535,197.87256046594013,197.87256046594013,0.0,219.85840051771123,0.0,197.87256046594013,219.85840051771123,0,0
+2017/02/22 23:00:00,140.47078360987595,0,821.7089802326548,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.061306208114706946,21.224544593985005,0,0,62.34698638151709,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.721387758503397,0.0,2189.4777504724425,0.0,1810.7328215198543,0.0,2565.239211768773,0.0,488.3547719865901,0.0,0.0,0.0,1679.9250972499285,0.0,1256.435158388127,0.0,2156.7623319591576,0.0,251.21805869056797,0,0,0,0,0,0,0,0,0.04374839475290626,0.0013841687148352531,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5410223667867848,-0.5410223667867848,-0.5673682193305181,-0.5673682193305181,-0.6246436600073608,-0.6246436600073608,0.0011944763461555923,0.0011944763461555923,-0.25872329821943624,-0.25872329821943624,-0.37188665227659834,-0.43610926014015705,-0.49236494940278636,-0.4959639743829101,-0.22998869141061404,-0.333225299176913,-0.41859139719114347,-0.478133546801281,-0.48603079085891693,-0.277285241291434,11.125638778711405,11.125638778711405,11.742479315792409,11.742479315792409,13.18736977054462,13.18736977054462,5.000029534931727,5.000029534931727,6.3896531756969495,6.3896531756969495,7.879263568066719,8.96706731155352,10.065435811068738,10.140349325873174,6.097472494546295,7.309308011710101,8.652830311246262,9.774687320883544,9.93494907174454,6.5968589680162495,140.47078360987595,140.47078360987595,0.0,156.07864845541772,0.0,140.47078360987595,156.07864845541772,0,0
+2017/02/23 00:00:00,90.8640508673083,0,715.8657695552807,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.15234237443399476,11.768752231581749,0,0,143.6408459250375,518.989394861427,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,123.50945544379826,0.0,0.0,0.0,0.0,0.0,1041.860515278736,0.0,3562.684940196854,0.0,2651.8898162473174,0.0,3847.901530155726,0.0,82.26071051762473,0.0,524.0846994963995,0.0,3137.568834747841,0.0,2141.3632598024788,0.0,3488.0652275991542,0.0,30.632344844369026,0,0,0,0,0,0,0,0,0.03811322381767109,0.0012058758344825797,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6895803633707217,-0.6895803633707217,-0.7178060593006574,-0.7178060593006574,-0.7601258369475425,-0.7601258369475425,-0.2471193428971483,-0.2471193428971483,-0.39628937069612513,-0.39628937069612513,-0.4010302494414299,-0.4615152683663471,-0.5125702810485196,-0.5190947223691531,-0.269219317357385,-0.39400244408650775,-0.45619406991392186,-0.5074791388226862,-0.5180589411478205,-0.30815700586807687,14.997638767921458,14.997638767921458,15.841374865279562,15.841374865279562,17.170653760126882,17.170653760126882,6.267485290343899,6.267485290343899,8.271807874700471,8.271807874700471,8.351022130618475,9.446229979863276,10.493258224560606,10.635175205097894,6.505036510163819,8.233939832400793,9.343572111393868,10.38379668810353,10.612522338176888,6.973668442313894,90.8640508673083,90.8640508673083,0.0,100.96005651923143,0.0,90.8640508673083,100.96005651923143,0,0
+2017/02/23 01:00:00,39.33690356395845,0,569.8638153177825,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5784885483340895e-09,9.539582564956778,0,0,0.0,516.6282865489663,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03033997162944584,0.0009599355536508745,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6271384814578141,-0.6271384814578141,-0.6677146431703281,-0.6677146431703281,-0.7266437760726846,-0.7266437760726846,-0.30148675558647614,-0.30148675558647614,-0.13214719299754343,-0.13214719299754343,-0.49805536442447984,-0.6487724028643239,-0.7819248367186624,-0.8068473467386846,-0.03132110955546229,-0.46342681456067103,-0.577597893080391,-0.7225836895603155,-0.7442671827935864,-0.1557445719370292,13.253542364349755,13.253542364349755,14.367680019530155,14.367680019530155,16.11261599160622,16.11261599160622,6.888843141522017,6.888843141522017,5.361771152411876,5.361771152411876,10.184138528873248,13.838682168554172,17.885278379983035,18.727049150447172,5.020308331460512,9.483405666908979,11.99010166292075,15.98758916961549,16.66352542944125,5.502658662322162,39.33690356395845,39.33690356395845,0.0,43.7076706266205,0.0,39.33690356395845,43.7076706266205,0,0
+2017/02/23 02:00:00,23.722252438649488,0,43.486734594246045,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251570149716989,0,0,0.0,7.99638208170191,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002315265960711885,7.325340112342027e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6706223839039117,-0.6706223839039117,-0.7206790138426176,-0.7206790138426176,-0.7847264089697218,-0.7847264089697218,-0.39552131415559394,-0.39552131415559394,0.07106819730120459,0.07106819730120459,-0.5806213288809663,-0.7214066084656375,-0.8732153358421839,-0.8762943396510995,0.052282511536424096,-0.5621450831601923,-0.6753365938839471,-0.841992983471317,-0.8468209722385353,-0.16721881184649479,14.450260271393986,14.450260271393986,15.929180795950074,15.929180795950074,17.978588488166224,17.978588488166224,8.259065080039235,8.259065080039235,5.104575437025005,5.104575437025005,12.064157027429388,15.951474622430865,21.095975137444157,21.21031794089039,5.056590947871399,11.61779719116278,14.584922266884163,19.958632875891098,20.13185742492763,5.579545681260669,23.722252438649488,23.722252438649488,0.0,26.358058265166097,0.0,23.722252438649488,26.358058265166097,0,0
+2017/02/23 03:00:00,28.344593553730714,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5252304672578169,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6802779891693912,-0.6802779891693912,-0.7350511623096995,-0.7350511623096995,-0.7986151830093051,-0.7986151830093051,-0.43302534999130754,-0.43302534999130754,0.16175949743482892,0.16175949743482892,-0.6265954845405243,-0.7705177672612197,-0.925640409775316,-0.9255433482186872,0.07664390873766713,-0.6256626907979663,-0.7405173438595322,-0.9125719827578985,-0.9143700242735328,-0.1466702206682635,14.727106247950672,14.727106247950672,16.37376779842357,16.37376779842357,18.44609307146031,18.44609307146031,8.910792549792006,8.910792549792006,5.542279345008055,5.542279345008055,13.239116932212212,17.508799383188304,23.095623268010655,23.091818341345714,5.121632699537429,13.214365896193101,16.545188255420342,22.586728503642632,22.656337957386228,5.445737452872436,28.344593553730714,28.344593553730714,0.0,31.493992837478572,0.0,28.344593553730714,31.493992837478572,0,0
+2017/02/23 04:00:00,23.774664693100597,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.577569269422808,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7369247582945045,-0.7369247582945045,-0.7944049676383832,-0.7944049676383832,-0.8563649629335094,-0.8563649629335094,-0.5176934845404514,-0.5176934845404514,0.22988934376270076,0.22988934376270076,-0.7071098351584998,-0.8509154935668964,-1.0082280682584803,-1.0047593188491446,0.10946973325755863,-0.7095152036129889,-0.8267695392265729,-1.0027336162772298,-1.0011574559588885,-0.1501859077846568,16.432379618459976,16.432379618459976,18.30351069713693,18.30351069713693,20.477142692633294,20.477142692633294,10.60454076386722,10.60454076386722,6.096522443855804,6.096522443855804,15.517593491984499,20.279526468080817,26.46738098495379,26.320474383507886,5.2481996243425755,15.589975660421288,19.418803302588827,26.234893021552153,26.168411192456148,5.467383565362269,23.774664693100597,23.774664693100597,0.0,26.416294103445107,0.0,23.774664693100597,26.416294103445107,0,0
+2017/02/23 05:00:00,42.40246987741459,0,461.9669205370469,0,0,0,0.0,0.011417254050314398,4.633261998087618,9.319298099999997,25.555573451546493,0,1.3652599114780608,0.9926064939617925,0.525052668290289,0,0,373.2410392556866,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.530778927829463,0.0,0.0,0.0,0.0,1.2826912991177721,1723.9667564105073,1.2978454140452413,1624.4238574597052,2.204605103903475,3571.024134513945,1.4719321642529053,2205.4323244241077,0.0,0.0,0.5648848241712301,1567.4777683059415,0.9633051963548098,1368.4372237010202,2.5041662159900966,3217.7581989549335,1.1278238324788674,1965.1515303231151,0.0,0.0,0,0,0,0,0,0,0,0,0.024595461031370204,0.0007781832425819609,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6883607365843731,-0.6883607365843731,-0.7479503711874318,-0.7479503711874318,-0.804912908384242,-0.804912908384242,-0.4855049125115156,-0.4855049125115156,0.362232460051806,0.362232460051806,-0.5542870007214802,-0.6183640225883487,-0.6822270562687168,-0.6842566739779656,0.14078825519819074,-0.5695062846151582,-0.6238101347412749,-0.6919260159278845,-0.6981364406341963,-0.12867564009361446,14.961956364836894,14.961956364836894,16.78034622978035,16.78034622978035,18.660771080813475,18.660771080813475,9.924193588481572,9.924193588481572,7.730979673508344,7.730979673508344,11.43244484945457,13.022004256950908,14.783479317386238,14.842356789067821,5.410672767463083,11.793858665085793,13.165321551451242,15.066445819475774,15.249769403024771,5.342999440176868,42.40246987741459,42.40246987741459,0.0,47.11385541934954,0.0,42.40246987741459,47.11385541934954,0,0
+2017/02/23 06:00:00,73.31100069974667,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5249576697907902,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4971145046360595,-0.4971145046360595,-0.5604640953542667,-0.5604640953542667,-0.6113040548835261,-0.6113040548835261,-0.3133452101499587,-0.3133452101499587,0.6884712452811166,0.6884712452811166,-0.6766926700413548,-0.7740900650058429,-0.8586788099142457,-0.860665850173224,0.25912853242323186,-0.6533787130605516,-0.7346717666617834,-0.8296619977074847,-0.8349644334972047,-0.021082702933732135,10.164415569283278,10.164415569283278,11.577921796323025,11.577921796323025,12.838133298849286,12.838133298849286,7.040948337523474,7.040948337523474,14.965186849181023,14.965186849181023,14.623836890509182,17.62610346957578,20.56142335370619,20.63397733782223,6.394021874173475,13.96589127699687,16.361917496240125,19.520624490192304,19.708192746739073,5.00920114944698,73.31100069974667,73.31100069974667,0.0,81.45666744416296,0.0,73.31100069974667,81.45666744416296,0,0
+2017/02/23 07:00:00,100.71375273491599,0,736.6352633045176,0,0,0,1.0561084679759567,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.28690674979817815,2.5201980301788958e-09,0.525033866228658,0,0,0.0,505.9479719729807,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3486.7366936370768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03921900704898295,0.0012408620451267918,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.36694621574809194,-0.36694621574809194,-0.43285050116162194,-0.43285050116162194,-0.4781901347882631,-0.4781901347882631,-0.1970780051245185,-0.1970780051245185,0.8951953182677127,0.8951953182677127,-0.6558564638851517,-0.7786159949506022,-0.9003054904033709,-0.9009135999873686,0.36311273366726504,-0.6439732527263099,-0.7443190055909487,-0.8748458726181826,-0.8782879118732003,0.09416364899634608,7.802884524078749,7.802884524078749,8.907614167413897,8.907614167413897,9.775826111564669,9.775826111564669,5.805373976247068,5.805373976247068,21.920749521835873,21.920749521835873,14.034697916861163,17.775502896552894,22.11533062349548,22.13855643091496,7.744335713376287,13.707125988045163,16.66516507491832,21.15647864880495,21.284559765712117,5.183619793633397,100.71375273491599,100.71375273491599,0.0,111.90416970546221,0.0,100.71375273491599,111.90416970546221,0,0
+2017/02/23 08:00:00,149.99164594754097,0,922.8399513909508,0,0,0,0.0,0.0,10.576478033044985,0.0,69.33401494192633,0,39.380909295966944,0.18950377529016732,27.078764698858276,0,0,57.006900002180764,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,484.1027975482714,0.0,0.0,0.0,0.0,0.0,2986.9641725472666,0.0,4290.533651138709,0.0,4537.954038513317,0.0,4627.0422199849245,0.0,1955.6843278684369,0.0,2602.1455040862957,0.0,3921.218618302102,0.0,3932.2383560946255,0.0,4181.548304940827,0.0,2229.0409854109685,0,0,0,0,0,0,0,0,0.04913268256575848,0.001554523828075692,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5561416423763403,-0.5561416423763403,-0.5877366395796132,-0.5877366395796132,-0.6207706174162285,-0.6207706174162285,-0.33543167086400816,-0.33543167086400816,0.483735238537092,0.483735238537092,-0.5419992499653696,-0.6254549707789463,-0.6713332693075225,-0.6943510168307018,0.012899117965725161,-0.5478180571991575,-0.6226257112915783,-0.6708360347686898,-0.6995954763188207,-0.14761671410114524,11.47594977381631,11.47594977381631,12.24000303715657,12.24000303715657,13.085176348620195,13.085176348620195,7.340125106333645,7.340125106333645,9.888087139966714,9.888087139966714,11.147973617515575,13.20885932901058,14.470505205943894,15.137830402544509,5.003444324895682,11.281867904938352,13.134043309765005,14.456342423343003,15.293079852486358,5.451514393707058,149.99164594754097,149.99164594754097,0.0,166.65738438615662,0.0,149.99164594754097,166.65738438615662,0,0
+2017/02/23 09:00:00,167.1759422298812,0,1004.8852555581524,0,0,0,0.0,0.0,13.910199466893726,0.0,83.2008179303116,0,39.380909295966944,0.15429785894345244,27.097742475311204,0,0,85.8166754005662,599.655407544689,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2782.8518943474983,0.0,4200.812653573849,0.0,4228.690420187069,0.0,4578.446210510764,0.0,522.2118680192486,0.0,2470.676208910215,0.0,3941.952693350269,0.0,3891.355930224717,0.0,4306.771470667524,0.0,284.84165839618174,0,0,0,0,0,0,0,0,0.05350083533112406,0.0016927291367182103,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5755265796730875,-0.5755265796730875,-0.6144912880234513,-0.6144912880234513,-0.6729402866113475,-0.6729402866113475,-0.34064287326924014,-0.34064287326924014,-0.0557502205199292,-0.0557502205199292,-0.5083491434443299,-0.5731033934644783,-0.5983574285845279,-0.6189990456684195,-0.21703096547024336,-0.5175867064426494,-0.5753203187558198,-0.5931502625315747,-0.6202713070451741,-0.2819512022702795,11.939596309300583,11.939596309300583,12.92087428229604,12.92087428229604,14.51635123891603,14.51635123891603,7.4137322918250845,7.4137322918250845,5.064347925131244,5.064347925131244,10.402422725126755,11.880747412089619,12.506569951461842,13.038648933247103,5.977052112738406,10.602209820478663,11.934577188718904,12.375265677482332,13.072049000331006,6.651228543175961,167.1759422298812,167.1759422298812,0.0,185.7510469220902,0.0,167.1759422298812,185.7510469220902,0,0
+2017/02/23 10:00:00,182.4720758273613,0,1085.6110406461376,0,0,0,0.0,0.0,11.887960008229951,0.0,106.27511244621549,0,39.380909295966944,0.16876235621162072,21.327356518283015,0,0,113.30693171973515,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2557.683738648794,0.0,4003.353187802996,0.0,3792.069015124267,0.0,4283.635160079204,0.0,38.44147717392968,0.0,2158.6481515378623,0.0,3698.4660676496246,0.0,3337.455938426082,0.0,3939.4086566862316,0.0,15.65601915203408,0,0,0,0,0,0,0,0,0.05779873592333558,0.001828711715571938,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5185823084982716,-0.5185823084982716,-0.5588065317294899,-0.5588065317294899,-0.6266959268197329,-0.6266959268197329,-0.28057182515800744,-0.28057182515800744,-0.1421521046949839,-0.1421521046949839,-0.49251432306193604,-0.5587781733020848,-0.5791275983487864,-0.5982021847052298,-0.2371111612479207,-0.5002914448465324,-0.5591932879505471,-0.5712390917494705,-0.5960085066913198,-0.2917209397131709,10.623962747697277,10.623962747697277,11.538722045729017,11.538722045729017,13.241784350021675,13.241784350021675,6.635059903291079,6.635059903291079,5.418674963413878,5.418674963413878,10.068533888621403,11.538052433406492,12.027520351531678,12.502638291512909,6.166662974374404,10.231166271259696,11.547857793684614,11.835644831130821,12.447193677263172,6.7680448309527605,182.4720758273613,182.4720758273613,0.0,202.74675091929032,0.0,182.4720758273613,202.74675091929032,0,0
+2017/02/23 11:00:00,212.2560767625612,0,1172.371671620566,0,0,0,0.0,0.0,16.903073633821148,0.0,133.89528835348938,0,39.380909295966944,0.19188146639690154,18.452948810432503,0,0,148.5120913782642,562.4849975792281,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2187.580198995004,0.0,5035.568203923745,0.0,3481.3403213602296,0.0,5239.968114563521,0.0,10.148223566592604,0.0,1844.33667955547,0.0,4748.1484870852455,0.0,3049.7577270026286,0.0,4898.089614434617,0.0,1.9173609219238854,0,0,0,0,0,0,0,0,0.062417936180591924,0.0019748599918633426,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4440683757701963,-0.4440683757701963,-0.527102510527954,-0.527102510527954,-0.5460821005935347,-0.5460821005935347,-0.20851723367475344,-0.20851723367475344,-0.10856610280352189,-0.10856610280352189,-0.47773632145997913,-0.5614141478643945,-0.5735567398645406,-0.5951547734445589,-0.2625806926378385,-0.47879501040703,-0.5605866521447048,-0.564108192671431,-0.590231561647952,-0.305705831852116,9.114192137627427,9.114192137627427,10.811875148347312,10.811875148347312,11.241768910666025,11.241768910666025,5.901760728872418,5.901760728872418,5.244116821370369,5.244116821370369,9.766697347152189,11.60044332035963,11.89173789829833,12.425672259162695,6.431518693700582,9.788007407194698,11.580824874320768,11.664520033482603,12.302182161129679,6.942278221302573,212.2560767625612,212.2560767625612,0.0,235.84008529173468,0.0,212.2560767625612,235.84008529173468,0,0
+2017/02/23 12:00:00,228.5336683875825,0,1285.6199597250388,0,0,0,0.0,0.0,16.840460157254892,0.0,147.76209134187457,0,39.380909295966944,0.2410070918245881,20.877225298207144,0,0,171.35444074845998,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2012.2323508389816,0.0,4039.518070758459,0.0,3886.1439915690694,0.0,4211.669957108315,0.0,0.0,0.0,1588.1242422609644,0.0,3701.7650876106372,0.0,3368.7615526811164,0.0,3818.674613786471,0.0,0.0,0,0,0,0,0,0,0,0,0.06844735892303604,0.0021656267245799277,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4045753002797978,-0.4045753002797978,-0.4663803415161174,-0.4663803415161174,-0.4368453411166182,-0.4368453411166182,-0.09545495167301325,-0.09545495167301325,-0.018578674392042166,-0.018578674392042166,-0.41427702251721227,-0.544766546221227,-0.5557755007726368,-0.5794299977942117,-0.2603007467850046,-0.39437191976234776,-0.5383212392898054,-0.5414229567405783,-0.5696597422531264,-0.29341369492667363,8.41088396998721,8.41088396998721,9.541155230004208,9.541155230004208,8.980559598988023,8.980559598988023,5.1886924773268674,5.1886924773268674,5.007145243208754,5.007145243208754,8.577458783076281,11.211467810301684,11.467349257939091,12.034929476148449,6.4066980422149555,8.240042644356691,11.064097127419771,11.134792612547542,11.797553996860927,6.788694653216552,228.5336683875825,228.5336683875825,0.0,253.926298208425,0.0,228.5336683875825,253.926298208425,0,0
+2017/02/23 13:00:00,207.81178070166825,0,1130.786987822046,0,0,0,0.0,0.0,16.903073550514318,0.0,129.49988082968767,0,39.380909295966944,0.12341364059734485,18.47252818244768,0,0,89.17870907366549,562.4885198290349,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2178.0629179910006,0.0,2754.7029075844594,0.0,3942.929699020306,0.0,2932.253156860502,0.0,0.0,0.0,1748.012304115951,0.0,2490.875885934999,0.0,3511.8627891494025,0.0,2602.204195573094,0.0,0.0,0,0,0,0,0,0,0,0,0.0602039368131062,0.00190481059516096,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5333091845497122,-0.5333091845497122,-0.38419876660542696,-0.38419876660542696,-0.437458452067382,-0.437458452067382,0.011036660459960991,0.011036660459960991,0.011104634646651939,0.011104634646651939,-0.4166428900537772,-0.5158105883845785,-0.5386978592178715,-0.5585332294985557,-0.2524424630345606,-0.4015556241527505,-0.5031215466075957,-0.5229243982311366,-0.5461405431031667,-0.27937775181658264,10.950741368523111,10.950741368523111,8.074138861164442,8.074138861164442,8.99181562587907,8.99181562587907,5.002521497696037,5.002521497696037,5.002552653047729,5.002552653047729,8.618691364725805,10.563509881256692,11.072658955055033,11.53227015829809,6.322824830548171,8.359859678494558,10.290996856878891,10.719334602108688,11.243116754178317,6.621128147733302,207.81178070166825,207.81178070166825,0.0,230.90197855740917,0.0,207.81178070166825,230.90197855740917,0,0
+2017/02/23 14:00:00,205.34199128025338,0,1128.2095176423718,0,0,0,0.0,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,0.1618690479064784,16.295919693077728,0,0,123.08559009952,561.4945211360503,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2419.2579901626063,0.0,3217.8307256674866,0.0,3992.304229626183,0.0,3424.4671589652467,0.0,0.0,0.0,1958.3451977659452,0.0,2886.9443985013977,0.0,3515.7854070613375,0.0,3062.9891754189857,0.0,0.0,0,0,0,0,0,0,0,0,0.060066710391591,0.0019004688468389251,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49349171087973204,-0.49349171087973204,-0.43530864372038,-0.43530864372038,-0.45270631436299374,-0.45270631436299374,0.04141313137469918,0.04141313137469918,-0.022022033763574995,-0.022022033763574995,-0.4279222492967047,-0.5114257668659027,-0.5375859272342376,-0.5544422129389974,-0.2651808857891939,-0.41603584871845584,-0.4976879341043373,-0.5216523999316848,-0.5406999668781372,-0.29103868278132616,10.08882913584786,10.08882913584786,8.952418519408042,8.952418519408042,9.276946719673532,9.276946719673532,5.035505072649542,5.035505072649542,5.010039339565282,5.010039339565282,8.81856881367598,10.468553056982557,11.047398740903546,11.43607999417054,6.460092802471692,8.608088906514155,10.176431646749663,10.691311287855271,11.118276706047396,6.759756238697989,205.34199128025338,205.34199128025338,0.0,228.15776808917042,0.0,205.34199128025338,228.15776808917042,0,0
+2017/02/23 15:00:00,189.38433951015512,0,1033.892040897746,0,0,0,0.0,0.0,16.86091074341296,0.0,115.5196477718057,0,39.380909295966944,0.10308993663278707,14.087806559882488,0,0,84.92681619407868,540.8261708094099,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1904.8953714827715,0.0,3950.025388844371,0.0,3293.2927317632784,0.0,4156.939508672811,0.0,0.0,0.0,1398.520692778271,0.0,3554.452110581753,0.0,2707.748171116844,0.0,3726.713220186929,0.0,0.0,0,0,0,0,0,0,0,0,0.055045178068123306,0.001741591064421178,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.45967960996514584,-0.45967960996514584,-0.47136151620745786,-0.47136151620745786,-0.4241158954742997,-0.4241158954742997,0.017664276324860975,0.017664276324860975,-0.0864550481763863,-0.0864550481763863,-0.4438649462082842,-0.5211990463075872,-0.5444443767950025,-0.5653175454339561,-0.2835905612430719,-0.438743059791947,-0.5114914991900273,-0.5326558150771924,-0.5564910093380042,-0.3113896731143596,9.410678268878897,9.410678268878897,9.639402373656736,9.639402373656736,8.750507750559464,8.750507750559464,5.006459198367864,5.006459198367864,5.15477711443998,5.15477711443998,9.110397823851258,10.681340409028252,11.20405873017954,11.693386343306699,6.6705490025751,9.015451943525505,10.46997040339555,10.936044520286558,11.484161679482568,7.015455407860927,189.38433951015512,189.38433951015512,0.0,210.42704390017235,0.0,189.38433951015512,210.42704390017235,0,0
+2017/02/23 16:00:00,182.848245314351,0,1147.6713859121132,0,0,0,0.0,0.0,17.011360352023075,0.0,108.75639138185811,0,39.380909295966944,0.25263819504771734,14.014970887000871,0,0,198.73185409550774,540.800477922348,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2071.2258823487628,0.0,4657.995309775812,0.0,3448.367174196202,0.0,5072.780103508694,0.0,0.0,0.0,1442.343739931642,0.0,4141.547928584922,0.0,2744.66971885078,0.0,4558.241792162312,0.0,0.0,0,0,0,0,0,0,0,0,0.061102874673807595,0.0019332523624621734,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4593176797472852,-0.4593176797472852,-0.4428178878103926,-0.4428178878103926,-0.4795307099846148,-0.4795307099846148,-0.051630687689411925,-0.051630687689411925,-0.1376343027815059,-0.1376343027815059,-0.4629208828504617,-0.522106482411128,-0.5673281034695872,-0.5934613169995095,-0.30732710542498903,-0.46192256105622653,-0.511294401745869,-0.5598298136200379,-0.5896801722012025,-0.33611767028038464,9.403685788928613,9.403685788928613,9.090896513239457,9.090896513239457,9.802844573602414,9.802844573602414,5.0551884994779925,5.0551884994779925,5.392463872326786,5.392463872326786,9.473551009491956,10.701307113227031,11.741517196008374,12.383076201051466,6.963012106840125,9.454137801336145,10.465721070102134,11.562907583907418,12.288417030530809,7.349748795965482,182.848245314351,182.848245314351,0.0,203.16471701594554,0.0,182.848245314351,203.16471701594554,0,0
+2017/02/23 17:00:00,208.46518183788618,0,1157.0234953837955,0,0,0,0.0,0.0,19.71884273997674,0.0,131.64086955684016,0,39.380909295966944,0.22770687630445,14.064878166343524,0,0,154.83109473810717,540.8178179826148,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2133.594345284746,0.0,4725.168504045266,0.0,3309.334324359353,0.0,4960.235954050326,0.0,0.0,0.0,1806.3877076231927,0.0,4426.517892893498,0.0,2903.4407062129912,0.0,4642.934882117017,0.0,0.0,0,0,0,0,0,0,0,0,0.061600787909249805,0.0019490059901574098,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49755168378616327,-0.49755168378616327,-0.4697440000023372,-0.4697440000023372,-0.44619422926859925,-0.44619422926859925,-0.034747192522738994,-0.034747192522738994,-0.09426771049643758,-0.09426771049643758,-0.48626947690503747,-0.5582879274174661,-0.5769949243812103,-0.60663538998313,-0.3096866791753986,-0.4943395474618163,-0.5623645782004115,-0.5745314895753313,-0.6089092493539683,-0.3387267478830374,10.173575267213181,10.173575267213181,9.60738174808749,9.60738174808749,9.153949431973174,9.153949431973174,5.024994463425401,5.024994463425401,5.184026019649451,5.184026019649451,9.939834716530925,11.526482032843205,11.975380119205383,12.717730038070528,6.993386583244387,10.106467696187906,11.623012967520978,11.91539897200154,12.776253920479789,7.386533330134881,208.46518183788618,208.46518183788618,0.0,231.62797981987353,0.0,208.46518183788618,231.62797981987353,0,0
+2017/02/23 18:00:00,219.37224967689755,0,1186.800685102697,0,0,0,0.0,0.0,23.913975909919326,0.0,133.89528835348938,0,39.380909295966944,0.20368240628241066,18.546418508785113,0,0,144.34901143148176,581.0770910081413,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3287.7857462532056,0.0,4379.980724135512,0.0,4375.554368240552,0.0,4565.1658344796815,0.0,0.0,0.0,2774.4290039329603,0.0,3933.2671646380177,0.0,3786.5249797839742,0.0,4097.968293738635,0.0,0.0,0,0,0,0,0,0,0,0,0.06318614754604704,0.0019991656639788483,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4500510384255562,-0.4500510384255562,-0.465517154809443,-0.465517154809443,-0.41991811296280535,-0.41991811296280535,-0.02801413140912894,-0.02801413140912894,-0.055710705338526983,-0.055710705338526983,-0.48840778608918434,-0.5574007169849942,-0.5726798377373424,-0.6010413369327161,-0.29948614180649197,-0.4979929518180157,-0.5579744531313839,-0.5701198438696577,-0.6003207623286858,-0.32695579902313654,9.226574828860308,9.226574828860308,9.524238693930883,9.524238693930883,8.676168266442104,8.676168266442104,5.016246150206413,5.016246150206413,5.064256726498641,5.064256726498641,9.983713286106962,11.505569281062762,11.870487198461973,12.574707168752724,6.86376824165508,10.182829007927694,11.519089119963155,11.808639582198794,12.556383016301837,7.222867484759121,219.37224967689755,219.37224967689755,0.0,243.74694408544173,0.0,219.37224967689755,243.74694408544173,0,0
+2017/02/23 19:00:00,219.2781932091004,0,1168.7625207594,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.18356321103713943,26.41815930154257,0,0,143.2228830641812,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4085.612519114237,0.0,3599.5677025085643,0.0,5126.909693058555,0.0,3757.871485428117,0.0,0.0,0.0,3648.3489643606817,0.0,3216.122656255639,0.0,4587.270765105508,0.0,3347.6936251932557,0.0,0.0,0,0,0,0,0,0,0,0,0.062225782315421335,0.001968780377511638,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5099379127003992,-0.5099379127003992,-0.463552575834536,-0.463552575834536,-0.4936672591699248,-0.4936672591699248,-0.02777261582076003,-0.02777261582076003,-0.0407643374201265,-0.0407643374201265,-0.47834555411917523,-0.5394284124787129,-0.5563859675321995,-0.5808744034014165,-0.27549756988813356,-0.48820262517028773,-0.5431566928246715,-0.5537938387028489,-0.5820354319238343,-0.3013031931491408,10.436521338156808,10.436521338156808,9.48585698560322,9.48585698560322,10.092478728693507,10.092478728693507,5.015967225243671,5.015967225243671,5.034401232522569,5.034401232522569,9.778954519313373,11.089284389006252,11.481692104858652,12.07037376818667,6.576271589452375,9.979494779247176,11.17449017887877,11.420901689415004,12.098929894634452,6.886535391472364,219.2781932091004,219.2781932091004,0.0,243.64243689900044,0.0,219.2781932091004,243.64243689900044,0,0
+2017/02/23 20:00:00,210.77379852552212,0,1184.7816555520194,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.24412067928042475,27.0977424753112,0,0,194.7323703693449,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4865.038656112985,0.0,4111.651745250359,0.0,5861.448867219855,0.0,4252.990122054052,0.0,0.0,0.0,4255.82695395435,0.0,3619.6031559140465,0.0,5142.8512807325915,0.0,3729.0414735116856,0.0,0.0,0,0,0,0,0,0,0,0,0.06307865291726032,0.001995764608853974,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.573504205244778,-0.573504205244778,-0.5190879958331049,-0.5190879958331049,-0.534572598361395,-0.534572598361395,-0.08548287859091365,-0.08548287859091365,-0.06949906990101298,-0.06949906990101298,-0.48377732345970315,-0.5385712939524707,-0.5573839464877076,-0.5774383206169623,-0.269629957132605,-0.4954658631979106,-0.5441209399291358,-0.556234057083693,-0.5799572845456468,-0.295775579457352,11.890463843663113,11.890463843663113,10.635027943844904,10.635027943844904,10.979212953770642,10.979212953770642,5.151314684012846,5.151314684012846,5.100007551830103,5.100007551830103,9.88894422485781,11.06978101873112,11.505174306403788,11.986204149634943,6.509644997186157,10.129947810628153,11.196625026630528,11.478121476032968,12.047858082517976,6.817709429077851,210.77379852552212,210.77379852552212,0.0,234.19310947280235,0.0,210.77379852552212,234.19310947280235,0,0
+2017/02/23 21:00:00,212.80082806729916,0,1109.714535075711,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.19553079676493906,24.701568104376925,0,0,155.15560240558045,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4518.136377993909,0.0,3904.1561261959496,0.0,5518.751891204079,0.0,4037.6721457272997,0.0,0.0,0.0,4153.82534985834,0.0,3581.4830926044533,0.0,5055.470983700761,0.0,3678.5928348332563,0.0,0.0,0,0,0,0,0,0,0,0,0.059082023820385084,0.0018693140501091303,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5994099289332939,-0.5994099289332939,-0.5522034782400193,-0.5522034782400193,-0.5629757945867475,-0.5629757945867475,-0.12050386321709222,-0.12050386321709222,-0.11465470558210154,-0.11465470558210154,-0.4827884048125199,-0.5342748837245981,-0.5548057553476871,-0.5715026646881302,-0.2659866771072034,-0.49566368393596394,-0.5412811822919684,-0.5554804014774484,-0.5749910771222145,-0.2919732442024752,12.533252844461913,12.533252844461913,11.383748862458162,11.383748862458162,11.637548077966514,11.637548077966514,5.300790195824035,5.300790195824035,5.272282108001889,5.272282108001889,9.86882450107555,10.972497597623544,11.444598420243636,11.84201223308905,6.469005603217838,10.134077403394869,11.131552146398164,11.460421726934257,11.926569299492954,6.771115003173293,212.80082806729916,212.80082806729916,0.0,236.4453645192213,0.0,212.80082806729916,236.4453645192213,0,0
+2017/02/23 22:00:00,199.153647378827,0,1065.4560759647686,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.15996745289628542,27.0977424753112,0,0,146.3874958071824,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4099.07222562583,0.0,5084.931508991145,0.0,5047.855666179563,0.0,5199.835192492708,0.0,0.0,0.0,3710.036164884009,0.0,4750.487804029167,0.0,4578.395684156574,0.0,4834.620227992871,0.0,0.0,0,0,0,0,0,0,0,0,0.056725670674782784,0.0017947606790959078,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6409220049033402,-0.6409220049033402,-0.570142603645539,-0.570142603645539,-0.6075014421203132,-0.6075014421203132,-0.20596398272679933,-0.20596398272679933,-0.19982280188539234,-0.19982280188539234,-0.5005349831626179,-0.5553745762905393,-0.5707095595631086,-0.5903653738676568,-0.2845241850244184,-0.51802709465267,-0.5670617033840066,-0.5753649672009452,-0.5975704487204246,-0.3122992091447966,13.624003325190046,13.624003325190046,11.809188189510067,11.809188189510067,12.739993759547687,12.739993759547687,5.879772471869188,5.879772471869188,5.828002473183673,5.828002473183673,10.236301252343509,11.457938373535285,11.822861488175889,12.305524698254757,6.681602788741316,10.611826580705042,11.735129753642482,11.93566350039886,12.486649924032449,7.027292234628732,199.153647378827,199.153647378827,0.0,221.28183042091888,0.0,199.153647378827,221.28183042091888,0,0
+2017/02/23 23:00:00,140.81046003383193,0,1113.659422900591,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.4500942841672402,21.175432941888456,0,0,354.29742904945317,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,821.2249874186261,0.0,236.34989604572792,0.0,1109.8189866895646,0.0,0.0,0.0,0.0,0.0,4480.707961577373,0.0,6145.281239606717,0.0,5386.078468592988,0.0,6268.495467721288,0.0,0.0,0.0,4126.845878923996,0.0,5818.395338803725,0.0,4981.560119152124,0.0,5941.886426728439,0.0,4646.454525895343,0,0,0,0,0,0,0,0,0.059292052570186396,0.0018759592133507285,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7418408391072282,-0.7418408391072282,-0.7133542516916858,-0.7133542516916858,-0.7397758669650781,-0.7397758669650781,-0.43886012745312086,-0.43886012745312086,-0.43627604986175594,-0.43627604986175594,-0.530587891838574,-0.592356976996336,-0.5994514699273416,-0.6245404016781086,-0.31338824965513906,-0.5539543820342604,-0.6114527955534188,-0.6090419181796114,-0.6367086184206606,-0.34856253966293377,16.586886155826846,16.586886155826846,15.706016809824717,15.706016809824717,16.521860212847585,16.521860212847585,9.017609471177835,9.017609471177835,8.970122510384513,8.970122510384513,10.889650648035044,12.355365425902491,12.534306974198955,13.184636768924591,7.041511233630061,11.424658277382264,12.841984818682974,12.779675437607992,13.509885205022101,7.527805179101804,140.81046003383193,140.81046003383193,0.0,156.4560667042577,0.0,140.81046003383193,156.4560667042577,0,0
+2017/02/24 00:00:00,91.3349546368856,0,957.6616080329858,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.6107563190295092,11.781242056563528,0,0,385.4482680356697,518.9778112285,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2411.323760550887,0.0,1291.5215989112517,0.0,2772.0619737202305,0.0,254.93902931676075,0.0,0.0,0.0,4250.017556861085,0.0,6786.651146699779,0.0,5155.8139725968595,0.0,6954.316849928524,0.0,7275.187062531109,0.0,3987.553681202572,0.0,6619.384143611032,0.0,4923.413914226406,0.0,6737.973110789868,0.0,12199.429816885751,0,0,0,0,0,0,0,0,0.05098661335801364,0.001613180906046281,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8336707863450784,-0.8336707863450784,-0.8181411281487208,-0.8181411281487208,-0.840279649091704,-0.840279649091704,-0.6719760173677112,-0.6719760173677112,-0.5602667812326586,-0.5602667812326586,-0.5585363386798746,-0.6248323677465425,-0.6248867501878224,-0.6535496673057518,-0.34680627871044306,-0.588593134779768,-0.6480887334360239,-0.6384523215775062,-0.6701296940347444,-0.38729417856747417,19.662322743678246,19.662322743678246,19.117150043233494,19.117150043233494,19.897393447130554,19.897393447130554,14.488828525211758,14.488828525211758,11.573249263999543,11.573249263999543,11.532343539001488,13.192365609519783,13.193805614281658,13.970630096006147,7.50227837707294,12.261318392793328,13.819880159261032,13.55701941408985,14.436242049811753,8.124150802461514,91.3349546368856,91.3349546368856,0.0,101.48328292987289,0.0,91.3349546368856,101.48328292987289,0,0
+2017/02/24 01:00:00,39.5663004333798,0,616.2082200479505,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.11563467606952847,0.08054354443777463,9.572801216449315,0,0,46.37470630479347,516.5979849743409,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,134.64764147717574,0.0,101.25031500774227,0.0,278.45059019582067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03280738206488953,0.0010380026999013618,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8619836114968698,-0.8619836114968698,-0.8545584292174782,-0.8545584292174782,-0.8687679147668677,-0.8687679147668677,-0.676887683487055,-0.676887683487055,-0.23633740311392537,-0.23633740311392537,-0.9676734200495195,-1.0177130834391257,-0.9911700097678091,-1.0199980397810522,-0.12694337158602959,-0.8724784611872307,-0.9505481305484775,-0.9481231956777827,-0.9768139970604853,-0.27024263456105196,20.68218371040396,20.68218371040396,20.411495025399148,20.411495025399148,20.931503663928908,20.931503663928908,14.629439636320214,14.629439636320214,6.159043305009845,6.159043305009845,24.778506468812623,26.87139418216546,25.74933776505536,26.969224710339958,5.3338199759161,21.068668208909386,24.084440353882172,23.98709166148565,25.153643903811258,6.516534098827748,39.5663004333798,39.5663004333798,0.0,43.96255603708867,0.0,39.5663004333798,43.96255603708867,0,0
+2017/02/24 02:00:00,23.741568003052432,0,43.125814255699346,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5444725793746421,0,0,0.0,7.635461743155217,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0022960502945515576,7.264543084053174e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9716087473959417,-0.9716087473959417,-0.9729685516508175,-0.9729685516508175,-0.9950354070944937,-0.9950354070944937,-0.7792861624996859,-0.7792861624996859,-0.07337122596396595,-0.07337122596396595,-1.0274775003974372,-1.1111128387382565,-1.133991172196876,-1.1595098651287212,-0.05411647274707402,-1.021024809790841,-1.1118785331579892,-1.1377501539252655,-1.1634294848263833,-0.2968817793801404,24.939618456172838,24.939618456172838,24.995428542922326,24.995428542922326,25.911079541941334,25.911079541941334,17.79769902961155,17.79769902961155,5.111464633277137,5.111464633277137,27.290816128635186,31.024016620804986,32.08715560709258,33.292980861377075,5.060631294816275,27.01324927661328,31.05931721072281,32.26347152734189,33.48000982365333,6.831379689809921,23.741568003052432,23.741568003052432,0.0,26.37952000339159,0.0,23.741568003052432,26.37952000339159,0,0
+2017/02/24 03:00:00,28.344228590003226,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248655035303343,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0167654701335833,-1.0167654701335833,-1.0217043233362486,-1.0217043233362486,-1.0408547130969419,-1.0408547130969419,-0.8269369922428417,-0.8269369922428417,0.0074420092511295124,0.0074420092511295124,-1.0882215682931085,-1.1809985653090826,-1.2111363760580414,-1.239540740153886,-0.03143028028232118,-1.121370898950284,-1.2130963095552252,-1.2411379937627567,-1.270807789334648,-0.2942050638296487,26.830879215554006,26.830879215554006,27.04240618723054,27.04240618723054,27.871139773800934,27.871139773800934,19.424688465012025,19.424688465012025,5.001146469029436,5.001146469029436,29.977836413208223,34.32412471281923,35.793460279688134,37.20174580368196,5.0204501551466905,31.498564863407665,35.8899189192589,37.28158436557854,38.77656002765676,6.79839003818347,28.344228590003226,28.344228590003226,0.0,31.493587322225807,0.0,28.344228590003226,31.493587322225807,0,0
+2017/02/24 04:00:00,23.722052057296448,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249566336186562,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0786694852048138,-1.0786694852048138,-1.0891241968459753,-1.0891241968459753,-1.1040863413506241,-1.1040863413506241,-0.8997202263848395,-0.8997202263848395,0.07591534648497043,0.07591534648497043,-1.1578429224289,-1.2517757795857807,-1.290236925617715,-1.3157774271047773,-0.0009143633721738483,-1.219098601925304,-1.3089208190206343,-1.341926868482418,-1.3697088448867947,-0.3009587207929872,29.546610080333622,29.546610080333622,30.018749005632642,30.018749005632642,30.700996479783043,30.700996479783043,22.09299155435957,22.09299155435957,5.119330664432354,5.119330664432354,33.2135855363324,37.81501426037082,39.76727440940236,41.0827598061873,5.000017306868472,36.18599226856837,40.72819596844177,42.44392352627072,43.90444105518618,6.882208524752002,23.722052057296448,23.722052057296448,0.0,26.357835619218275,0.0,23.722052057296448,26.357835619218275,0,0
+2017/02/24 05:00:00,43.95133521805945,0,413.6466497176777,0,0,0,0.0,0.023770870963320725,4.633261998087618,9.319298099999997,25.555573451546493,0,2.3119278242990795,1.5824649390451657,0.5250380341177427,0,0,324.9207684363174,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2022300208400752,1086.3938075285287,0.10025790839294628,739.6890561439244,0.8648995289941217,1254.9868475168955,0.0,129.25372454882225,0.0,0.0,2.7397410022770354,4410.033387100607,1.971625791606543,3143.0570678376966,3.8461494858652254,5305.433494354575,1.9508685923831512,3409.285393235392,0.0,0.0,3.05804779884916,4352.563336905441,2.2638315848113795,3014.530276581917,4.274290674036406,5090.131594370589,2.498928575264678,3240.402104673832,0.0,0.0,0,0,0,0,0,0,0,0,0.02202285402180025,0.0006967877500541797,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9478596385614089,-0.9478596385614089,-0.9528605207042466,-0.9528605207042466,-0.9579225534569114,-0.9579225534569114,-0.8646768067686029,-0.8646768067686029,0.21071156570181557,0.21071156570181557,-0.7889688834557991,-0.8372896956440808,-0.8484310026966011,-0.8653552809944908,0.030705267438545687,-0.8335326375075026,-0.8824773797961903,-0.8865943633014306,-0.9090721975512441,-0.28905226001778606,23.97652517195604,23.97652517195604,24.177486782175194,24.177486782175194,24.381907705589626,24.381907705589626,20.780929704846343,20.780929704846343,5.9208760458283365,5.9208760458283365,18.120524645857074,19.790817625829433,20.18984000045819,20.805853251237494,5.019517536047246,19.657428415416533,21.44110991399431,21.595652479625045,22.45161188154215,6.735735551816532,43.95133521805945,43.95133521805945,0.0,48.83481690895494,0.0,43.95133521805945,48.83481690895494,0,0
+2017/02/24 06:00:00,76.49057664779923,0,339.6477103415909,0,0,0,0.05834949574783218,0.017042568374390613,5.555297838843742,9.319298099999997,57.911447091112116,0,1.8475415774034067,1.25656678277358,0.5250331935441274,0,0,126.70559526632604,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,184.95898645768483,0.0,0.0,0.0,0.0,0.0,0.0,18.993936898218557,0.0,44.145835642998236,0.0,96.63319598721904,0.0,0.0,0.0,0.0,2.1240266615269547,2955.358057922973,1.3242710291980302,2190.0669848874595,2.4052384824150295,3797.1503729638002,1.7761670487866468,2447.3815591904886,0.0,0.0,2.7051050100232032,3430.992883808189,1.6135562286987124,2427.0173527512925,3.0203500660030613,4152.580566709679,2.073853847738974,2648.261109239947,0.0,0.0,0,0,0,0,0,0,0,0,0.01808309567790967,0.0005721365422915859,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8280058860203229,-0.8280058860203229,-0.8381770912338045,-0.8381770912338045,-0.841449621283116,-0.841449621283116,-0.6929388951294837,-0.6929388951294837,0.5333428564709526,0.5333428564709526,-0.7280261825549784,-0.7644879630250695,-0.7715299309246811,-0.7854866309248119,0.13072224767670265,-0.7409878765024668,-0.7802959132334502,-0.7762318965066468,-0.7962685852264237,-0.1771341138354562,19.462282621151545,19.462282621151545,19.822409552206977,19.822409552206977,19.93919830536879,19.93919830536879,15.096230976857456,15.096230976857456,10.951499283368676,10.951499283368676,16.155347819990567,17.312032539482388,17.541980724314186,18.003966238852726,5.354005412620296,16.560004196742725,17.83117834174989,17.696695881049806,18.366531004233565,5.650408353490519,76.49057664779923,76.49057664779923,0.0,84.9895296086658,0.0,76.49057664779923,84.9895296086658,0,0
+2017/02/24 07:00:00,102.14847261572358,0,828.7260186416471,0,0,0,0.0,0.012583025720214665,11.110595677687485,13.929299233552332,73.80580873715317,0,1.7346703707066233,1.030453291933752,0.5250622789699623,0,0,92.10911219263023,505.92961511747995,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6465126151641316,2094.155377712018,0.0,1590.5983754823835,1.3421548105235765,2787.6548423418517,1.6349938889803373,1803.6768245920375,0.0,0.0,2.240855378131679,2444.526184475566,1.5939047001815347,1746.5137062663198,2.4801296398692707,2992.4413708818256,1.6444746873641332,1915.5231614224308,0.0,0.0,0,0,0,0,0,0,0,0,0.04412198707536813,0.0013959889155026161,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6732383648091139,-0.6732383648091139,-0.6916296867075418,-0.6916296867075418,-0.6943365347508703,-0.6943365347508703,-0.536695484399777,-0.536695484399777,0.7850909218440795,0.7850909218440795,-0.7029546995109304,-0.7374428152203465,-0.743207891414978,-0.7572613196959725,0.1828513715472279,-0.7124267628849124,-0.7479612207478293,-0.7444374444633844,-0.764693928371476,-0.04204388335641093,14.524867297886033,14.524867297886033,15.057740217552023,15.057740217552023,15.137403340499361,15.137403340499361,11.027208806053494,11.027208806053494,17.990753602769814,17.990753602769814,15.393145389431666,16.448612627985995,16.63003525589302,17.07825563352681,5.693133290158798,15.67792382796685,16.780691207470042,16.668912849586647,17.3187280788825,5.036594931244537,102.14847261572358,102.14847261572358,0.0,113.49830290635953,0.0,102.14847261572358,113.49830290635953,0,0
+2017/02/24 08:00:00,148.44909972688316,0,1082.2318404496216,0,0,0,0.0,0.0,8.610632961673964,0.0,69.33401494192633,0,39.380909295966944,0.5945588164001625,27.097008508461474,0,0,216.39878906085167,599.655407544689,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2191.5990492584997,0.0,1655.296118152306,0.0,3190.226399075551,0.0,1278.5900086469035,0.0,0.0,0.0,5821.88078217377,0.0,7561.071824615581,0.0,7405.203187922086,0.0,7047.344252686024,0.0,4726.519609196359,0.0,5748.990644683493,0.0,7541.923251163857,0.0,7332.745890915367,0.0,6802.080297362752,0.0,7268.028396818316,0,0,0,0,0,0,0,0,0.057618824801876946,0.0018230194530973836,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.693106723831548,-0.693106723831548,-0.7662933882223072,-0.7662933882223072,-0.77909744700052,-0.77909744700052,-0.6947525486042747,-0.6947525486042747,0.15779153386495806,0.15779153386495806,-0.6484158870577881,-0.7282205875285626,-0.7248334372109891,-0.6898122126119531,-0.19198113524181967,-0.6548183258226741,-0.7443669155714636,-0.7281136586947622,-0.6888342298354103,-0.29802675670873424,15.101170499920187,15.101170499920187,17.370785106676095,17.370785106676095,17.79144678721414,17.79144678721414,15.149674780699371,15.149674780699371,5.515972893810371,5.515972893810371,13.828874881931966,16.161363700277917,16.056780569849238,15.004429212217829,5.76419013171369,14.00583664666462,16.666681023417084,16.15805457629442,14.975801637307725,6.845583621929535,148.44909972688316,148.44909972688316,0.0,164.94344414098128,0.0,148.44909972688316,164.94344414098128,0,0
+2017/02/24 09:00:00,165.34793228350347,0,1173.38816100368,0,0,0,0.0,0.0,11.770719589816478,0.0,83.2008179303116,0,39.380909295966944,0.46576778964296595,27.097742475311204,0,0,254.31958084609383,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,963.1926922520497,0.0,1012.643052433396,0.0,2099.9382538397726,0.0,291.29164051010844,0.0,0.0,0.0,5498.910958406479,0.0,7051.973847557879,0.0,6840.346053510413,0.0,6749.336564721006,0.0,125.96974843559519,0.0,5189.793540437834,0.0,6878.293444767044,0.0,6532.829281621156,0.0,6370.346424902548,0.0,4032.2428496780703,0,0,0,0,0,0,0,0,0.062472054828269355,0.0019765722681520477,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7346654734528376,-0.7346654734528376,-0.7733961690706987,-0.7733961690706987,-0.7842838449915661,-0.7842838449915661,-0.7007400219368317,-0.7007400219368317,-0.24325666520080746,-0.24325666520080746,-0.6390148715075672,-0.7123119400731363,-0.7040025548913071,-0.6946230991472107,-0.2924895195763193,-0.6464979851569828,-0.7271202460030644,-0.706641170273041,-0.6961350204598764,-0.36685071393853635,16.361720981992946,16.361720981992946,17.60327533751864,17.60327533751864,17.96382611478721,17.96382611478721,15.327119210464176,15.327119210464176,6.228074186944738,6.228074186944738,13.572253891883008,15.674448505119202,15.424458869231401,15.145855521870317,6.777405690317451,13.776210452716867,16.127334961685094,15.503519509349275,15.19050818016224,7.801418318312614,165.34793228350347,165.34793228350347,0.0,183.7199247594483,0.0,165.34793228350347,183.7199247594483,0,0
+2017/02/24 10:00:00,182.10935366055412,0,1224.7753894966254,0,0,0,0.0,0.0,11.268261791783145,0.0,106.27511244621549,0,39.380909295966944,0.42979410424729275,21.32330081988703,0,0,252.47128057022297,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,580.1835590003318,0.0,1330.9636611736776,0.0,0.0,0.0,0.0,0.0,4025.3923051248184,0.0,6729.712579863122,0.0,6393.517229661911,0.0,6043.270590349708,0.0,0.0,0.0,3321.9188282292066,0.0,6446.894531094811,0.0,5932.213403920512,0.0,5527.150723758143,0.0,3333.877872330935,0,0,0,0,0,0,0,0,0.06520794893609652,0.0020631340506481904,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5276213858429187,-0.5276213858429187,-0.7556623833582654,-0.7556623833582654,-0.7604350491347642,-0.7604350491347642,-0.5601524458470832,-0.5601524458470832,-0.2401570602269482,-0.2401570602269482,-0.5415972844668729,-0.6969518455686655,-0.685859899337079,-0.6391606438324623,-0.30131227543231615,-0.5313689503315686,-0.7068226153078206,-0.6845646365145699,-0.6300731082903857,-0.36622423314729174,10.82342041211524,10.82342041211524,17.0268328056043,17.0268328056043,17.18064871368,17.18064871368,11.570542497075337,11.570542497075337,6.19690201720141,6.19690201720141,11.138778326153385,15.214673140675686,14.888990913136382,13.576203807751142,6.88664954058595,10.90715193760903,15.508967170555692,14.851306084206698,13.331726008569234,7.791809816355055,182.10935366055412,182.10935366055412,0.0,202.34372628950456,0.0,182.10935366055412,202.34372628950456,0,0
+2017/02/24 11:00:00,212.58309884119433,0,1314.264925750717,0,0,0,0.0,0.0,16.903073633821148,0.0,133.89528835348938,0,39.380909295966944,0.5177708438623226,18.454081511600187,0,0,290.40991004092723,562.4804330467159,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.81522717405322,0.0,418.6601454077342,0.0,0.0,0.0,0.0,0.0,3551.591044099293,0.0,6950.942468186516,0.0,5197.9636789936785,0.0,6582.510689481517,0.0,612.6548999909382,0.0,2933.393551100804,0.0,6608.509271758349,0.0,4650.811705064552,0.0,6066.397646978149,0.0,7409.304449118572,0,0,0,0,0,0,0,0,0.06997243813176046,0.002213879167676067,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5500954444486466,-0.5500954444486466,-0.7211559950619477,-0.7211559950619477,-0.721329301002723,-0.721329301002723,-0.542952289985757,-0.542952289985757,-0.19954027598828303,-0.19954027598828303,-0.570170960122658,-0.6876132701540247,-0.6732164287601385,-0.6604159324103949,-0.3185430848331091,-0.566405253299435,-0.6967056250688065,-0.6714043129057659,-0.6586315610172048,-0.37515768025804314,11.334671521606197,11.334671521606197,15.94379314206384,15.94379314206384,15.949104804938628,15.949104804938628,11.169803169546967,11.169803169546967,5.825658744070168,5.825658744070168,11.80987173254212,14.940119650067984,14.524240456454791,14.162008657938031,7.109496624455076,11.719403268554643,15.207385917690019,14.472529621964554,14.112077664776294,7.9304062390933865,212.58309884119433,212.58309884119433,0.0,236.20344315688257,0.0,212.58309884119433,236.20344315688257,0,0
+2017/02/24 12:00:00,228.56580647171114,0,1245.919973815901,0,0,0,0.0,0.0,16.903073633821148,0.0,147.76209134187457,0,39.380909295966944,0.2131469645041012,20.87461003308998,0,0,131.65445483932237,599.655407544689,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4295.9109968376215,0.0,5917.196010867967,0.0,6070.190940941287,0.0,5197.330807692208,0.0,0.0,0.0,3641.7994258143153,0.0,5465.38975187788,0.0,5373.634787420223,0.0,5096.726854410917,0.0,0.0,0,0,0,0,0,0,0,0,0.0663337022671893,0.0020987521013291627,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5051596871054286,-0.5051596871054286,-0.6613925608151912,-0.6613925608151912,-0.6568646432156791,-0.6568646432156791,-0.43777702426678766,-0.43777702426678766,-0.09657136711268695,-0.09657136711268695,-0.5204130111855005,-0.6548091896191015,-0.6427009193833719,-0.7037505838385371,-0.30468365854178525,-0.5054093111982333,-0.6600539395266369,-0.6390123012513672,-0.6312216034061671,-0.34770228229259514,10.334299175313944,10.334299175313944,14.189395476860383,14.189395476860383,14.06277100756327,14.06277100756327,8.99767062825049,8.99767062825049,5.193133921408773,5.193133921408773,10.664073746049866,14.005582858456236,13.672415769014734,15.416924791091688,6.929263171550531,10.339615029747122,14.151868074225092,13.57218425527364,13.362425675354046,7.515285172359839,228.56580647171114,228.56580647171114,0.0,253.96200719079016,0.0,228.56580647171114,253.96200719079016,0,0
+2017/02/24 13:00:00,207.72113684992752,0,1193.608468582275,0,0,0,0.0,0.0,16.735683873587277,0.0,129.49988082968767,0,39.380909295966944,0.2045541396298302,18.468133508601486,0,0,152.0037190137193,562.4849906492101,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3746.1801931234213,0.0,4323.987782514121,0.0,6344.164116140926,0.0,4340.018957152588,0.0,0.0,0.0,2833.8570717200246,0.0,3787.0217523117444,0.0,5568.076217875179,0.0,3791.8047937526453,0.0,0.0,0,0,0,0,0,0,0,0,0.0635485989810704,0.0020106333747334964,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3767198616008842,-0.3767198616008842,-0.5404095555114505,-0.5404095555114505,-0.592356850615727,-0.592356850615727,-0.34843082311772217,-0.34843082311772217,-0.059778696759454984,-0.059778696759454984,-0.4203630456982536,-0.5926474146957696,-0.6086439678436615,-0.6269928972472675,-0.2863411201561419,-0.3869045867920309,-0.5864118242265385,-0.5989062773631249,-0.5923338315086593,-0.3182062044626268,7.954992049359632,7.954992049359632,11.111648954145537,11.111648954145537,12.355362257711818,12.355362257711818,7.525886163695276,7.525886163695276,5.073984935435547,5.073984935435547,8.684011876349572,12.362648136845081,12.769414624975553,13.24967347184554,6.703220133397167,8.117833733549531,12.207095433821408,12.520478317060963,12.3547852114407,7.105019244630128,207.72113684992752,207.72113684992752,0.0,230.80126316658612,0.0,207.72113684992752,230.80126316658612,0,0
+2017/02/24 14:00:00,205.467752322867,0,1224.6182371044663,0,0,0,0.0,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,0.2645659990955226,16.3189837845023,0,0,219.52653969382322,561.4622910038414,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5047.61263597143,0.0,5369.77533607401,0.0,6883.783036389939,0.0,5310.176851952252,0.0,0.0,0.0,3974.4334844651603,0.0,4703.246285008939,0.0,5898.402472531718,0.0,4585.255483304854,0.0,0.0,0,0,0,0,0,0,0,0,0.06519958202633415,0.0020628693274555264,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5262686268798265,-0.5262686268798265,-0.5681445626244358,-0.5681445626244358,-0.5869452678071335,-0.5869452678071335,-0.36963954521792236,-0.36963954521792236,-0.07603316947414178,-0.07603316947414178,-0.4829062633392107,-0.5982676021481426,-0.6034370241254258,-0.6082747817371386,-0.28714671565302885,-0.4685691146060397,-0.5951482999828059,-0.5954746566764471,-0.5901460983691867,-0.31938476269473126,10.793345192425633,10.793345192425633,11.761112512308898,11.761112512308898,12.220336686285009,12.220336686285009,7.84439433722703,7.84439433722703,5.119701457336845,5.119701457336845,9.871220138569086,12.504294906544729,12.635791304095221,12.759901619552522,6.712849451245162,9.58419421578013,12.425509193106222,12.433732361187324,12.300047753904124,7.120704137588348,205.467752322867,205.467752322867,0.0,228.29750258096334,0.0,205.467752322867,228.29750258096334,0,0
+2017/02/24 15:00:00,189.375043829989,0,1158.565881933026,0,0,0,0.0,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,0.2661604231158703,14.040667263058937,0,0,209.61505370678643,540.8117743319824,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2939.163582770012,0.0,5164.683457973742,0.0,5274.52314241818,0.0,5680.893834206926,0.0,0.0,0.0,1998.1843760938186,0.0,4522.954990816064,0.0,4451.174502842034,0.0,5059.221898298977,0.0,0.0,0,0,0,0,0,0,0,0,0.06168290571158683,0.0019516041401825232,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3833876485567453,-0.3833876485567453,-0.4473250826581434,-0.4473250826581434,-0.6039712371214628,-0.6039712371214628,-0.3982584929131969,-0.3982584929131969,-0.1433858155386191,-0.1433858155386191,-0.44936417932946127,-0.5321609740208281,-0.6100761017118871,-0.6155617348225535,-0.3070221239092698,-0.4288203570415476,-0.5135184577673869,-0.6035150247376777,-0.6041544754092867,-0.3380123570723846,8.061101455748172,8.061101455748172,9.175177606996044,9.175177606996044,12.649446388303275,12.649446388303275,8.304592753298053,8.304592753298053,5.425980277409039,5.425980277409039,9.213594150422495,10.924925902724539,12.806373124849046,12.948762117061875,6.959103315062023,8.83471844966617,10.513768216068016,12.637784315137708,12.654133017629917,7.376432626126046,189.375043829989,189.375043829989,0.0,210.41671536665444,0.0,189.375043829989,210.41671536665444,0,0
+2017/02/24 16:00:00,182.89232080846418,0,1197.1182073935483,0,0,0,0.0,0.0,16.903073467207488,0.0,108.75639138185811,0,39.380909295966944,0.38699131106505025,14.032980149912271,0,0,248.1922431565473,540.7869103427435,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2495.2077945556143,0.0,5178.3900546167,0.0,4783.682983882576,0.0,6237.058544077692,0.0,0.0,0.0,1546.139818845391,0.0,4467.093002010284,0.0,3957.5475584878436,0.0,5607.312700546192,0.0,4737.568669655814,0,0,0,0,0,0,0,0,0.06373546007506951,0.002016545529494701,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4006577491097691,-0.4006577491097691,-0.3536806794427026,-0.3536806794427026,-0.6372249593963659,-0.6372249593963659,-0.43744784146312155,-0.43744784146312155,-0.18834579943425458,-0.18834579943425458,-0.4735062278048183,-0.4936999380140275,-0.6263933730056371,-0.6356944807382282,-0.3281429508490188,-0.46078786053036147,-0.46679614905608796,-0.6231324200620663,-0.6323845962022769,-0.36273387039444627,8.344763302090726,8.344763302090726,7.602944205248875,7.602944205248875,13.52382872393774,13.52382872393774,8.991620689812152,8.991620689812152,5.735479151743789,5.735479151743789,9.682033355957088,10.093158258359054,13.233750838731254,13.482532607836788,7.23910731272953,9.432124711431058,9.549315587696597,13.14741701895126,13.393571182902306,7.7385833264410735,182.89232080846418,182.89232080846418,0.0,203.2136897871824,0.0,182.89232080846418,203.2136897871824,0,0
+2017/02/24 17:00:00,206.16959615896118,0,1220.1968528929249,0,0,0,0.0,0.0,17.250223812971733,0.0,131.64086955684016,0,39.380909295966944,0.38701120923738425,14.078607081490627,0,0,218.01787129195847,540.8043989378928,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3366.6024876346064,0.0,5060.191058298425,0.0,5224.515167853217,0.0,6444.697146080967,0.0,0.0,0.0,2524.759930126028,0.0,4300.115275675613,0.0,4461.52121238429,0.0,5857.960467661782,0.0,4467.278209644519,0,0,0,0,0,0,0,0,0.0649641842559629,0.002055421506086761,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5171728430727268,-0.5171728430727268,-0.34343550521399624,-0.34343550521399624,-0.6365343595564437,-0.6365343595564437,-0.4396144521920654,-0.4396144521920654,-0.14631446730161524,-0.14631446730161524,-0.5063056938879116,-0.48393481715326236,-0.6359675918516975,-0.6465533628313762,-0.33202635152965554,-0.50342348589492,-0.4567436778870642,-0.6359971318695459,-0.6484160777629012,-0.36813115009014585,10.593179931635376,10.593179931635376,7.4536523961228625,7.4536523961228625,13.505182045201892,13.505182045201892,9.031525608567534,9.031525608567534,5.443575749520775,5.443575749520775,10.358726095790416,9.892152357339597,13.48989437636611,13.77772885428972,7.292648579972976,10.297400527291245,9.354118833212695,13.490690827773292,13.82888012650885,7.821108736781895,206.16959615896118,206.16959615896118,0.0,229.07732906551243,0.0,206.16959615896118,229.07732906551243,0,0
+2017/02/24 18:00:00,217.54733564564475,0,1211.0637199088821,0,0,0,0.0,0.0,22.04301730596976,0.0,133.89528835348938,0,39.380909295966944,0.2910527611099612,18.505092726654425,0,0,168.61652805069312,581.0726091951153,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4268.890037491579,0.0,5076.247405386746,0.0,5822.0034878800125,0.0,5696.102534794218,0.0,0.0,0.0,3727.2861880203004,0.0,4446.969079718909,0.0,5330.509702438229,0.0,5289.658941414682,0.0,0.0,0,0,0,0,0,0,0,0,0.06447792949091999,0.0020400367442683347,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5688355422482377,-0.5688355422482377,-0.515947090930341,-0.515947090930341,-0.6275669160341022,-0.6275669160341022,-0.41159151839486113,-0.41159151839486113,-0.10059223126467448,-0.10059223126467448,-0.5183345539692814,-0.5528242841081115,-0.630345285306892,-0.6398970618622624,-0.3197691218947613,-0.5228060085264359,-0.5325694455836775,-0.6327147222657852,-0.6445864991017368,-0.353793375638394,11.77771886527671,11.77771886527671,10.566479301747634,10.566479301747634,13.264933325229109,13.264933325229109,8.530946193331971,8.530946193331971,5.209558833722198,5.209558833722198,10.618545546126214,11.398238623789268,13.338996219308314,13.596172227406285,7.125832125858693,10.716723410478693,10.93410311430003,13.402422809954743,13.723880885692367,7.604611228562945,217.54733564564475,217.54733564564475,0.0,241.71926182849415,0.0,217.54733564564475,241.71926182849415,0,0
+2017/02/24 19:00:00,219.41613671520457,0,1257.6071444808024,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.3559355508705029,26.383730467813418,0,0,232.06750678558367,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5745.866808079747,0.0,4590.567815672406,0.0,7166.506878788865,0.0,5070.617022812025,0.0,0.0,0.0,5204.383140259772,0.0,4084.7823870021884,0.0,6647.125844022745,0.0,4655.478976372263,0.0,0.0,0,0,0,0,0,0,0,0,0.06695593589015389,0.0021184391394271484,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6063477243804908,-0.6063477243804908,-0.5805885565019842,-0.5805885565019842,-0.6398340520209982,-0.6398340520209982,-0.4099388538212348,-0.4099388538212348,-0.08168561145240659,-0.08168561145240659,-0.5100660028537777,-0.5434572417941121,-0.6127336051104563,-0.6219018296722303,-0.29542455029355325,-0.5171320159003541,-0.5387688888620759,-0.6155851473291367,-0.62784213702674,-0.3264213542649639,12.710342180925906,12.710342180925906,12.06335218169363,12.06335218169363,13.594462757358556,13.594462757358556,8.502475827712374,8.502475827712374,5.1381661460542745,5.1381661460542745,10.43927519977592,11.18138513167925,12.87519008250679,13.114957022864289,6.813382268738238,10.592289544483776,11.074274384614682,12.949372627530053,13.272254936759992,7.215575977280963,219.41613671520457,219.41613671520457,0.0,243.7957074613384,0.0,219.41613671520457,243.7957074613384,0,0
+2017/02/24 20:00:00,210.78577966339364,0,1174.7920986547174,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.2561018171519284,27.0977424753112,0,0,184.7428134720429,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5535.153269871915,0.0,4462.780375601834,0.0,6865.500653401426,0.0,4875.181350016288,0.0,0.0,0.0,5027.128870511489,0.0,4013.35812328826,0.0,6359.675404984486,0.0,4474.576265630607,0.0,0.0,0,0,0,0,0,0,0,0,0.06254680150871658,0.0019789372010186636,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5980792628961692,-0.5980792628961692,-0.5904594253283286,-0.5904594253283286,-0.6342867390388813,-0.6342867390388813,-0.4212171693679111,-0.4212171693679111,-0.1059335735177139,-0.1059335735177139,-0.5071465450118089,-0.5397815983526866,-0.6029560505380919,-0.6100724606753685,-0.2863814474119896,-0.5168158884200013,-0.5395534787563204,-0.6069053653663535,-0.616989985924801,-0.3159738283952474,12.499525952622918,12.499525952622918,12.30787450402407,12.30787450402407,13.444637949513108,13.444637949513108,8.69909280251592,8.69909280251592,5.232415767323147,5.232415767323147,10.376684792566394,11.097330244085754,12.623507674961473,12.806279049224088,6.703701515492767,10.5853976592864,11.092132880245956,12.72466684021704,12.986049093481341,7.075470873155581,210.78577966339364,210.78577966339364,0.0,234.20642184821514,0.0,210.78577966339364,234.20642184821514,0,0
+2017/02/24 21:00:00,212.73469763336593,0,1108.940778433014,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.18866073083473675,24.642307736373873,0,0,154.38184576288367,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5893.311164975,0.0,4732.820173171888,0.0,7196.64539429059,0.0,5102.46720758907,0.0,0.0,0.0,5385.183366861544,0.0,4297.041380784854,0.0,6688.978761724962,0.0,4697.5709566844225,0.0,0.0,0,0,0,0,0,0,0,0,0.059040828443601194,0.0018680106571032345,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5639917686750157,-0.5639917686750157,-0.5534772146108591,-0.5534772146108591,-0.6556637949578907,-0.6556637949578907,-0.45675340612182264,-0.45675340612182264,-0.14591922853549055,-0.14591922853549055,-0.5060927362266299,-0.5386073793518975,-0.5983450549358017,-0.6032319183329187,-0.2787792671442249,-0.517420014343376,-0.5420789879223307,-0.6038617917238989,-0.611118236366854,-0.307552752446344,11.661744430515967,11.661744430515967,11.413496209147354,11.413496209147354,14.02933799937702,14.02933799937702,9.354305630629597,9.354305630629597,5.441180295407534,5.441180295407534,10.354182648116222,11.0706014849967,12.506256541780772,12.630551860331337,6.6141679993825875,10.598571953209785,11.149798521004428,12.646647832170089,12.833323027068502,6.965906642275854,212.73469763336593,212.73469763336593,0.0,236.37188625929548,0.0,212.73469763336593,236.37188625929548,0,0
+2017/02/24 22:00:00,199.3197702419769,0,1197.6951762720382,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.32609031604615757,27.0977424753112,0,0,278.62659611445207,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,436.26557259909293,0.0,0.0,0.0,0.0,0.0,4773.749522799206,0.0,5648.07747480239,0.0,6003.087560516451,0.0,5979.352820707064,0.0,0.0,0.0,4433.312281049293,0.0,5336.512952867357,0.0,5673.939429416045,0.0,5692.038737865969,0.0,0.0,0,0,0,0,0,0,0,0,0.06376617832552502,0.002017517433526726,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6136438877537925,-0.6136438877537925,-0.5973319939553876,-0.5973319939553876,-0.7000339066809026,-0.7000339066809026,-0.5268197122815863,-0.5268197122815863,-0.22349822335159106,-0.22349822335159106,-0.5195651318305122,-0.5563829596840164,-0.607719375327329,-0.6167696067223137,-0.2937942811822346,-0.5360929437488159,-0.5659162797946542,-0.6168846436349505,-0.628255117000627,-0.3243088383426201,12.898832636585553,12.898832636585553,12.480619465299554,12.480619465299554,15.306112308069999,15.306112308069999,10.805587637951263,10.805587637951263,6.03627466851556,6.03627466851556,10.645478539671487,11.48162139619754,12.745601324946975,12.98028993553909,6.793354069150425,11.013566260266117,11.707701143751052,12.983295926091188,13.283247469817795,7.186873182591967,199.3197702419769,199.3197702419769,0.0,221.46641137997432,0.0,199.3197702419769,221.46641137997432,0,0
+2017/02/24 23:00:00,140.9286647276738,0,1134.8841754943955,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.586614609061102,21.157117310836455,0,0,375.52218164325797,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1291.0040919521894,0.0,616.400094877967,0.0,2355.2425491255785,0.0,536.8418303847656,0.0,0.0,0.0,4854.278290088662,0.0,6551.4135302311715,0.0,6035.777567656789,0.0,6864.658509881393,0.0,3029.4967766053146,0.0,4574.128981635677,0.0,5883.38697616793,0.0,5790.02649885113,0.0,6630.871829110409,0.0,8119.9300611032395,0,0,0,0,0,0,0,0,0.06042207411959631,0.0019117123074840613,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.764573390411607,-0.764573390411607,-0.7616829077353551,-0.7616829077353551,-0.8053336112611021,-0.8053336112611021,-0.7273941574029235,-0.7273941574029235,-0.4655343768164274,-0.4655343768164274,-0.5494312642574954,-0.5948753491223587,-0.634192901314516,-0.6509940792231641,-0.3265857684695438,-0.5727784949657166,-0.6751738224584948,-0.6482289398982937,-0.6678520442584676,-0.3660445978412812,17.31480940053855,17.31480940053855,17.221025929920273,17.221025929920273,18.675171826254,18.675171826254,16.135800972713028,16.135800972713028,9.524575893054276,9.524575893054276,11.319248584711303,12.418635234745693,13.442115010645622,13.899921756762822,7.217817814032173,11.872876375797745,14.580256647965157,13.823734410831321,14.371573989106551,7.7890577874810845,140.9286647276738,140.9286647276738,0.0,156.58740525297088,0.0,140.9286647276738,156.58740525297088,0,0
+2017/02/25 00:00:00,91.45982520933045,0,990.0931205269226,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.7025330820534482,11.814335865984441,0,0,417.90471510229435,518.9528766558121,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3144.6377070421822,0.0,1791.6346838932054,0.0,4006.7609124394367,0.0,1740.5533677418366,0.0,0.0,0.0,4848.435584381963,0.0,7332.990605351549,0.0,6036.63725259445,0.0,7682.745404207295,0.0,10118.448105972606,0.0,4491.781258219471,0.0,7038.14145006013,0.0,5783.8558878965305,0.0,7442.52733379218,0.0,15549.210643974837,0,0,0,0,0,0,0,0,0.052713291105428356,0.0016678117863808076,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8445209942391394,-0.8445209942391394,-0.8438849981335416,-0.8438849981335416,-0.8784815924452826,-0.8784815924452826,-0.8188536608311331,-0.8188536608311331,-0.5986001287341383,-0.5986001287341383,-0.574971323463402,-0.6255424491984543,-0.6559203154013538,-0.675695139106882,-0.35656504605387185,-0.6048011542964289,-0.6793859492590644,-0.6729817146611755,-0.695940305819455,-0.40036661677643853,20.04921479537755,20.04921479537755,20.026401138775682,20.026401138775682,21.291781249739543,21.291781249739543,19.14194197521762,19.14194197521762,12.512718598555637,12.512718598555637,11.92608899609992,13.211178115589306,14.036474577184151,14.595203516846908,7.645780401003535,12.670684571173567,14.701360500154792,14.517534603301272,15.184751993891467,8.33987576895116,91.45982520933045,91.45982520933045,0.0,101.62202801036716,0.0,91.45982520933045,101.62202801036716,0,0
+2017/02/25 01:00:00,41.12427967680063,0,651.7952616816759,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.22259221099027826,0.15373162865495255,9.562321772355338,0,0,81.98548591092735,516.5742470019325,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,273.10195037204704,0.0,203.39662482639486,0.0,759.5354955779994,0.0,160.60201292171345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03470206252102805,0.0010979490688323617,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8684727450749791,-0.8684727450749791,-0.8709728811475472,-0.8709728811475472,-0.8992665134467882,-0.8992665134467882,-0.8500363995402437,-0.8500363995402437,-0.2543849038428984,-0.2543849038428984,-0.9762456142952983,-0.9916935514929539,-1.0179492989122965,-1.0365743849508866,-0.14016245900170438,-0.8749614483684756,-0.9450248975878067,-0.9887370356833551,-1.0036087563924225,-0.2872750830728547,20.920616761496987,20.920616761496987,21.01294431619509,21.01294431619509,22.075683265057975,22.075683265057975,20.247763115956957,20.247763115956957,6.343315257240903,6.343315257240903,25.130222566385854,25.77121120010672,26.881498735127607,27.684738039573233,5.407026904648134,21.160771412901667,23.86304864839164,25.647826251135655,26.27184668358693,6.714386363001708,41.12427967680063,41.12427967680063,0.0,45.693644085334036,0.0,41.12427967680063,45.693644085334036,0,0
+2017/02/25 02:00:00,23.727416072814744,0,42.73707521202908,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5303206491369518,0,0,0.0,7.246722699484955,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002275353539924952,7.199059995097399e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9810258419650111,-0.9810258419650111,-0.9920272683994459,-0.9920272683994459,-1.0715397252851384,-1.0715397252851384,-0.9667586410002674,-0.9667586410002674,-0.09605735238231423,-0.09605735238231423,-1.0225570388841545,-1.0673545652574006,-1.165859550909781,-1.1693630648204203,-0.07234836913524488,-1.0145009884617406,-1.0792530928429418,-1.186516216322163,-1.1875776208675324,-0.31175010438026984,25.327590068300736,25.327590068300736,25.78515926800918,25.78515926800918,29.226816561864837,29.226816561864837,24.741141770651154,24.741141770651154,5.1910825871902375,5.1910825871902375,27.079019229408786,29.03993233856538,33.59620171979088,33.76403941682662,5.108377752748481,26.73419780722341,29.572865752235515,34.591144022406596,34.64261301592751,7.020141920339327,23.727416072814744,23.727416072814744,0.0,26.363795636460825,0.0,23.727416072814744,26.363795636460825,0,0
+2017/02/25 03:00:00,28.3442318270179,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248687405450025,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0221725355984113,-1.0221725355984113,-1.036624744724485,-1.036624744724485,-1.1134956600738224,-1.1134956600738224,-1.0128354119514864,-1.0128354119514864,-0.016631589767080856,-0.016631589767080856,-1.07571728294127,-1.1316794658002025,-1.2443166080253412,-1.2458103721605285,-0.05067565041440673,-1.1041666383205613,-1.1689347622634523,-1.2912565611831768,-1.2895835141865937,-0.3093562667810494,27.06250646819484,27.06250646819484,27.68692723289567,27.68692723289567,31.133935646542994,31.133935646542994,26.663208998576636,26.663208998576636,5.0057260318614,5.0057260318614,29.413977429428797,31.978951814527548,37.44066672127527,37.51551750955882,5.053165454315348,30.704678459443528,33.74350116785041,39.81951146565904,39.73381200851097,6.989119041467802,28.3442318270179,28.3442318270179,0.0,31.493590918908776,0.0,28.3442318270179,31.493590918908776,0,0
+2017/02/25 04:00:00,23.722055241156884,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249598174790915,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.099098952542136,-1.099098952542136,-1.1171839753786164,-1.1171839753786164,-1.1910283407705216,-1.1910283407705216,-1.0968550647698085,-1.0968550647698085,0.04922356263811225,0.04922356263811225,-1.1577121589001236,-1.2154667321716586,-1.339377559609817,-1.3359921274761106,-0.021547183225220378,-1.2104962525086715,-1.2720977843032952,-1.4060757711686804,-1.399516526724344,-0.32195965390599957,30.4727308403278,30.4727308403278,31.304450700711,31.304450700711,34.81017310643155,34.81017310643155,30.370307446914595,30.370307446914595,5.050161917654918,5.050161917654918,33.20736102411547,36.00672394432976,42.31062313623524,42.133798263777976,5.009611051434305,35.761979872390384,38.84205865777127,45.83589526856698,45.48604043809581,7.1551769696609,23.722055241156884,23.722055241156884,0.0,26.35783915684098,0.0,23.722055241156884,26.35783915684098,0,0
+2017/02/25 05:00:00,41.987843136676325,0,415.7189505553823,0,0,0,0.0,0.02574495573437654,4.633261998087618,9.319298099999997,23.111338313975452,0,2.6130787900397854,1.7600798175892647,0.5250411612497953,0,0,326.99306927402193,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2440649417728762,1571.689809897557,0.11192463418389956,1072.2343927224993,1.7754080448039944,2151.622018443667,0.11688745114377691,1027.2249801304813,0.0,0.0,3.7823033813019094,4935.318163919515,3.137521340172745,3347.4864324514083,2.614492549144808,6215.382638253774,2.5086640145031276,3847.9036041835225,0.0,0.0,2.7303171029739124,4598.064291342894,2.345468709468522,3076.233993699126,3.204393118154547,5863.013179023176,2.1735104467524127,3563.2286522335035,0.0,0.0,0,0,0,0,0,0,0,0,0.02213318485336669,0.0007002785406580082,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9586100132134467,-0.9586100132134467,-0.9693889342065357,-0.9693889342065357,-0.9965927495695116,-0.9965927495695116,-0.9564648882754343,-0.9564648882754343,0.18168038253690838,0.18168038253690838,-0.7891778649585355,-0.8224103201251344,-0.8689215364274946,-0.8732988821532792,0.009804535352411785,-0.8321256358599437,-0.8689200533582379,-0.9141111426137905,-0.9241233887318518,-0.32969693639233383,24.409747060693093,24.409747060693093,24.84866547256128,24.84866547256128,25.976405141778812,25.976405141778812,24.322939428012717,24.322939428012717,5.684271390588066,5.684271390588066,18.127536078171246,19.26601200428884,20.93717119653654,21.099072588384317,5.001989925167152,19.607626752365945,20.93711647731034,22.646307567867225,23.036197409516106,7.260455647348621,41.987843136676325,41.987843136676325,0.0,46.65315904075147,0.0,41.987843136676325,46.65315904075147,0,0
+2017/02/25 06:00:00,76.15227860197294,0,373.7058813935074,0,0,0,0.0,0.020235800725960873,4.633261998087618,9.319298099999997,57.911447091112116,0,2.2133572951028597,1.5296420242025,0.5250362927418818,0,0,160.76376631824263,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,502.6907286341146,0.0,388.13527498240353,0.0,782.303943811937,0.0,358.0918815508046,0.0,0.0,2.753390487191268,3780.310835929749,1.7706863846178749,2596.248821214898,3.559975683478342,4944.979542027498,2.1362476938718373,3045.26399031932,0.0,0.0,2.6030104437950286,3956.451483202107,1.8090686695716158,2668.6757973731537,3.2022717704342085,5130.218137820906,2.401149593000696,3112.4351541344763,0.0,0.0,0,0,0,0,0,0,0,0,0.01989637793182806,0.000629507528843568,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8575128630685118,-0.8575128630685118,-0.8693772927208172,-0.8693772927208172,-0.8913029373106879,-0.8913029373106879,-0.8584205162805033,-0.8584205162805033,0.49621887063434345,0.49621887063434345,-0.7382927946887192,-0.7631153511935,-0.7977138993536242,-0.8000081838569254,0.07681603130676368,-0.7515683375628976,-0.7807801012589056,-0.8046448713885858,-0.8149304072315569,-0.282274037871877,20.518926606469435,20.518926606469435,20.953991049278955,20.953991049278955,21.773252061681177,21.773252061681177,20.552004138491924,20.552004138491924,10.145676193186375,10.145676193186375,16.47527119686042,17.267457822694453,18.41550721153753,18.493433432900446,5.122179768675721,16.89566432188016,17.84724747529475,18.651600019800313,19.005700991169462,6.655024315557583,76.15227860197294,76.15227860197294,0.0,84.61364289108104,0.0,76.15227860197294,84.61364289108104,0,0
+2017/02/25 07:00:00,106.7907301255511,0,863.90265415162,0,0,0,0.14564614338989407,0.015147009269935098,8.33396954093373,13.929299233552332,80.56906512710079,0,1.9510980788388033,1.3214396534710884,0.5250653389945686,0,0,127.31312182547431,505.90224099460886,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,462.0953158828746,0.0,0.0,0.0,0.0,0.0,0.0,111.2191287309869,0.0,138.5269214759483,0.0,444.83978260689423,0.0,117.94188180246464,0.0,0.0,2.017850781185795,3176.3095194371485,1.591625079325543,2174.787755152378,2.3076477327646594,4093.2485397307723,1.2504509098683532,2538.87063367268,0.0,0.0,2.1132052379806128,3212.5652486065746,1.8239623592585301,2148.476156413926,2.421829646478424,4044.573885632609,1.6204375230731782,2478.7675476951285,0.0,0.0,0,0,0,0,0,0,0,0,0.04599481720548754,0.0014552439553493046,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7932379388013123,-0.7932379388013123,-0.8071173196405205,-0.8071173196405205,-0.8243713812815276,-0.8243713812815276,-0.7972775867106527,-0.7972775867106527,0.7373086567317647,0.7373086567317647,-0.7272810090591129,-0.7495437540523103,-0.7783312449847484,-0.7832578464638329,0.15039725766345674,-0.7379498047839178,-0.7639621563398202,-0.7829806161821657,-0.7946743304387123,-0.1921812431980442,18.264121262081417,18.264121262081417,18.736311577819436,18.736311577819436,19.334648767413057,19.334648767413057,18.400712910629736,18.400712910629736,16.444407744872436,16.444407744872436,16.1323034101125,16.831064195606075,17.766077685803282,17.929634442032224,5.46870124875754,16.464510004365735,17.294947785669436,17.92040334838636,18.312610402088282,5.76578657027261,106.7907301255511,106.7907301255511,0.0,118.65636680616788,0.0,106.7907301255511,118.65636680616788,0,0
+2017/02/25 08:00:00,120.31811783359304,0,1021.2736261861231,0,0,0,0.0,0.0,6.923610902430626,0.0,69.33401494192633,0,39.380909295966944,0.6699568005070793,0.5776506903077612,0,0,262.4305705976656,492.6654117443766,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3114.2674038548234,0.0,1957.8352483614776,0.0,3845.0540388817853,0.0,1959.544350867879,0.0,0.0,0.0,7597.15945692172,0.0,7806.850810996856,0.0,8878.624381240857,0.0,7927.775538289802,0.0,3555.9199997146716,0.0,7381.563401060718,0.0,7639.520119111083,0.0,8638.108709748316,0.0,7659.911803917905,0.0,9696.78584473391,0,0,0,0,0,0,0,0,0.05437336432233261,0.001720335345797171,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8047716251323671,-0.8047716251323671,-0.8259519174078328,-0.8259519174078328,-0.8483917329190489,-0.8483917329190489,-0.8195217836732299,-0.8195217836732299,0.11017741181641544,0.11017741181641544,-0.6889285958910887,-0.7260641828322909,-0.7464078034072801,-0.7434240868782889,-0.20126543921224838,-0.698969249028204,-0.7417564843503324,-0.7518537026510086,-0.7512301806968019,-0.3406193284595315,18.655936603639645,18.655936603639645,19.390084752698797,19.390084752698797,20.188424480785102,20.188424480785102,19.165208109505258,19.165208109505258,5.251420752568606,5.251420752568606,14.97856212460563,16.0947245298304,16.73134936970567,16.63686650508177,5.840022096599469,15.274479476634653,16.5842262415255,16.904783825705906,16.884862248526645,7.413397132176172,120.31811783359304,120.31811783359304,0.0,133.68679759288113,0.0,120.31811783359304,133.68679759288113,0,0
+2017/02/25 09:00:00,143.34634591881712,0,1108.141959988082,0,0,0,0.0,0.0,11.592378022329065,0.0,87.89947186453183,0,39.380909295966944,0.5167465847604683,0.5248649487745815,0,0,296.07512095182045,492.65366642336426,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1683.6592428255076,0.0,1246.568906866688,0.0,2724.0684399818892,0.0,1003.4906697018237,0.0,0.0,0.0,6353.070236255617,0.0,7127.549593487738,0.0,7815.127050220419,0.0,7074.064810474603,0.0,123.49225704149211,0.0,6098.568943960592,0.0,6987.919587661453,0.0,7600.993153424351,0.0,6795.876018020155,0.0,4842.92965561055,0,0,0,0,0,0,0,0,0.05899829875790287,0.001866665047493376,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7674535899286886,-0.7674535899286886,-0.8058853667034759,-0.8058853667034759,-0.8279570846852329,-0.8279570846852329,-0.7723657717935607,-0.7723657717935607,-0.249898628824445,-0.249898628824445,-0.6488678206222418,-0.7055149904749729,-0.7193730420972828,-0.709603117868791,-0.2929817588187924,-0.6546258144591934,-0.7195223322075499,-0.7237508225241694,-0.7131895980044795,-0.3774409763302294,17.408614099434217,17.408614099434217,18.694069861996965,18.694069861996965,19.46056518117713,19.46056518117713,17.569414676077557,17.569414676077557,6.296230349666914,6.296230349666914,13.841307921856327,15.46973912524632,15.889222403120613,15.592625895840996,6.783413987735017,14.000489773138725,15.8937864665684,16.023457371063486,15.701026859093886,7.966376170110209,143.34634591881712,143.34634591881712,0.0,159.2737176875746,0.0,143.34634591881712,159.2737176875746,0,0
+2017/02/25 10:00:00,184.03114471854303,0,1263.3591757349081,0,0,0,0.0,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,0.48449561640709093,23.26024051667465,0,0,291.0550668085056,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,813.3386378338452,0.0,1972.5172778292954,0.0,0.0,0.0,0.0,0.0,4456.015169787331,0.0,7007.851113562434,0.0,6851.033678753678,0.0,6582.632754685235,0.0,0.0,0.0,3782.528683770218,0.0,6742.670390649793,0.0,6439.202645410607,0.0,6129.671137746468,0.0,6267.231085988124,0,0,0,0,0,0,0,0,0.06726217829469038,0.0021281284356381176,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5787582181310613,-0.5787582181310613,-0.7811602718418182,-0.7811602718418182,-0.7960627403716922,-0.7960627403716922,-0.6942395654114241,-0.6942395654114241,-0.25090086073854323,-0.25090086073854323,-0.5623447391792215,-0.692368685850112,-0.7020535202668172,-0.6630344377691668,-0.3055675703610049,-0.5512383976356077,-0.7020531386619737,-0.7023140046847669,-0.6575536215684212,-0.381684281340269,12.018475506511038,12.018475506511038,17.8598714882241,17.8598714882241,18.359562901798895,18.359562901798895,15.134544045123036,15.134544045123036,6.3066756918751565,6.3066756918751565,11.622541454587306,15.079457706822652,15.366252989845876,14.235530460026993,6.940515191024218,11.36125681863777,15.366241609668563,15.374022593613304,14.081981175830762,8.033814035505884,184.03114471854303,184.03114471854303,0.0,204.47904968727002,0.0,184.03114471854303,204.47904968727002,0,0
+2017/02/25 11:00:00,210.48742241700066,0,1410.0346111571635,0,0,0,0.0,0.0,14.932575465546352,0.0,131.64086955684016,0,39.380909295966944,0.6087741937977835,20.492318702395078,0,0,349.0046209494005,599.6554075446891,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,342.7879342882877,0.0,1177.023408417549,0.0,0.0,0.0,0.0,0.0,3328.8117558611216,0.0,7445.061400618516,0.0,5613.754359860256,0.0,7208.323721943824,0.0,5015.758366941113,0.0,2735.4003785516284,0.0,7165.344351049586,0.0,5178.644754928823,0.0,6777.872208647475,0.0,11649.488085576384,0,0,0,0,0,0,0,0,0.07507128712004409,0.0023752031954744294,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5493714552625917,-0.5493714552625917,-0.7468927401749649,-0.7468927401749649,-0.7565851235257216,-0.7565851235257216,-0.6843115731683332,-0.6843115731683332,-0.2197054820792155,-0.2197054820792155,-0.5487558152881271,-0.6908300286919213,-0.6938144876769663,-0.6786519468293729,-0.3291919226189744,-0.5320112151181582,-0.6989616330645313,-0.6926212079277907,-0.6763546999769943,-0.39477433207894413,11.31786069772265,11.31786069772265,16.746741513632585,16.746741513632585,17.056495381465822,17.056495381465822,14.843951842015855,14.843951842015855,6.001330903381586,6.001330903381586,11.303583586008244,15.03426668621914,15.1220147444038,14.680201792332838,7.253506634848989,10.921563049983803,15.274253369387054,15.086884160501185,14.614130891429099,8.246696127294356,210.48742241700066,210.48742241700066,0.0,233.87491379666739,0.0,210.48742241700066,233.87491379666739,0,0
+2017/02/25 12:00:00,217.5068651620599,0,1350.9616632851385,0,0,0,0.0,0.0,15.025710948003718,0.0,136.4899973586286,0,39.380909295966944,0.4514447260539583,22.726827630952354,0,0,236.6961443085593,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3534.0476350634,0.0,5738.195480949067,0.0,6026.212193690527,0.0,6077.240160016888,0.0,0.0,0.0,2859.60411346562,0.0,5829.071665463042,0.0,5494.590696300087,0.0,5642.211442111729,0.0,1021.5954991592234,0,0,0,0,0,0,0,0,0.07192619961961116,0.002275694819267564,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5642240273565856,-0.5642240273565856,-0.6864364331502129,-0.6864364331502129,-0.6824385969295254,-0.6824385969295254,-0.5798439878996344,-0.5798439878996344,-0.1330143815467446,-0.1330143815467446,-0.504210613460543,-0.7309303576069918,-0.6722373020757643,-0.6723641042524603,-0.3274810708001463,-0.4809676904994544,-0.6779166413222588,-0.6680781089863167,-0.670443551557821,-0.37671670838278554,11.667282170413984,11.667282170413984,14.905788118791676,14.905788118791676,14.789607614338934,14.789607614338934,12.04507913103582,12.04507913103582,5.366538535859917,5.366538535859917,10.314112824884845,16.245386969157877,14.496282284437513,14.49990067909097,7.230045648352856,9.831892111132547,14.659028892723128,14.377982479910955,14.445170842465231,7.954942318741303,217.5068651620599,217.5068651620599,0.0,241.674294624511,0.0,217.5068651620599,241.674294624511,0,0
+2017/02/25 13:00:00,206.22334754836263,0,1266.9959020880208,0,0,0,0.0,0.0,15.081367944243603,0.0,124.80122689546741,0,39.380909295966944,0.3620825961245588,23.165785614105783,0,0,188.2207356239858,599.6554075446891,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4199.582452691395,0.0,5883.9474635021725,0.0,6008.644274665763,0.0,5851.041698891222,0.0,0.0,0.0,3619.79067131675,0.0,5557.250227863362,0.0,5504.050967808886,0.0,5451.741817831365,0.0,0.0,0,0,0,0,0,0,0,0,0.06745580029947755,0.002134254500903913,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5868591498459875,-0.5868591498459875,-0.6139935049151264,-0.6139935049151264,-0.6515554349576853,-0.6515554349576853,-0.5400419517466106,-0.5400419517466106,-0.12230608142079384,-0.12230608142079384,-0.5386403136769027,-0.6758589686704437,-0.6603872683963667,-0.6639306052541568,-0.32837158245160697,-0.5281788980211031,-0.6638263524111483,-0.6567203307472421,-0.6631333678209409,-0.37151174196164893,12.218198211673382,12.218198211673382,12.907922718027606,12.907922718027606,13.915429156941968,13.915429156941968,11.103264761723977,11.103264761723977,5.30986050873247,5.30986050873247,11.071350355172726,14.59990316569126,14.161205479836042,14.260761069621253,7.242241779428312,10.835838358046999,14.257824157474815,14.058749877381274,14.238314018605507,7.8734309755407,206.22334754836263,206.22334754836263,0.0,229.137052831514,0.0,206.22334754836263,229.137052831514,0,0
+2017/02/25 14:00:00,201.09465954193567,0,1258.4805424344615,0,0,0,0.0,0.0,14.932575391494975,0.0,122.5097643007467,0,39.380909295966944,0.35674179300148073,20.48269355827121,0,0,215.19572848297102,599.6554075446891,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4924.573058789106,0.0,6208.27629520789,0.0,6535.905052530318,0.0,6275.288410189241,0.0,0.0,0.0,4158.9193060927155,0.0,5759.67776381567,0.0,5803.1918822059615,0.0,5733.9879421299975,0.0,1061.1337484765484,0,0,0,0,0,0,0,0,0.06700243624413837,0.002119910378213797,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5862665875028432,-0.5862665875028432,-0.5845588554249016,-0.5845588554249016,-0.6584486484618709,-0.6584486484618709,-0.5398439515817054,-0.5398439515817054,-0.13990216700184188,-0.13990216700184188,-0.5307261995983925,-0.6444888819493252,-0.6463751103714657,-0.6517875731588645,-0.32797408501629627,-0.5204000398269556,-0.6411538789641947,-0.6414113803746426,-0.6501457217922343,-0.36721102373095776,12.203492475062745,12.203492475062745,12.16119658603698,12.16119658603698,14.10696712817986,14.10696712817986,11.098751261502983,11.098751261502983,5.4055152532151,5.4055152532151,10.892747805061916,13.721212733537442,13.772841821322245,13.921845945552022,7.236793639438403,10.663789031288147,13.630305906341547,13.637307798371893,13.876511882504758,7.806952061241375,201.09465954193567,201.09465954193567,0.0,223.43851060215073,0.0,201.09465954193567,223.43851060215073,0,0
+2017/02/25 15:00:00,185.41716254274442,0,1226.9637931218788,0,0,0,0.0,0.0,14.932575391494975,0.0,108.75639138185811,0,39.380909295966944,0.39439128674074064,18.520919984229387,0,0,256.34807859925127,562.4766606283702,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,571.1550607804941,0.0,0.0,0.0,0.0,0.0,4779.4265273323535,0.0,6862.668591927099,0.0,6242.71713150723,0.0,6931.084621684575,0.0,0.0,0.0,3952.5920109474905,0.0,6320.067810944907,0.0,5439.087402037889,0.0,6343.227180219314,0.0,6525.2593019947735,0,0,0,0,0,0,0,0,0.06532446116607016,0.0020668204163888327,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6018937858484229,-0.6018937858484229,-0.6176794875908066,-0.6176794875908066,-0.6875690001291025,-0.6875690001291025,-0.588910275080296,-0.588910275080296,-0.18486957228567683,-0.18486957228567683,-0.5456162717181433,-0.6458142942759334,-0.6509984325180355,-0.6590326588583414,-0.3368305554212649,-0.5422035581665648,-0.6471055541144551,-0.6493027149182732,-0.6614668869087362,-0.3782850318818998,12.596413972972371,12.596413972972371,13.00408141661255,13.00408141661255,14.938827089470507,14.938827089470507,12.269219050793552,12.269219050793552,5.708541167293674,5.708541167293674,11.231030919608031,13.75747527306575,13.900041963575461,14.123289325146288,7.35977082923516,11.152650019195477,13.792876671366983,13.853280558550196,14.191481436832305,7.979729323498162,185.41716254274442,185.41716254274442,0.0,206.01906949193824,0.0,185.41716254274442,206.01906949193824,0,0
+2017/02/25 16:00:00,183.22704795592486,0,1307.2867215524657,0,0,0,0.0,0.0,15.081367870192226,0.0,106.31215624428707,0,39.380909295966944,0.5397273670830073,18.480911975941314,0,0,318.0914139954427,581.0562536627655,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,445.85034130670005,0.0,0.0,0.0,0.0,0.0,4285.357996754178,0.0,6681.174523434659,0.0,5719.615591313358,0.0,6793.094178276231,0.0,988.381449639951,0.0,3608.6592592898164,0.0,6237.816934490721,0.0,5103.496874190304,0.0,6322.422639435462,0.0,7140.394053205524,0,0,0,0,0,0,0,0,0.06960091337144317,0.0022021243832337487,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6022544406803646,-0.6022544406803646,-0.6258785626952047,-0.6258785626952047,-0.7007285835341013,-0.7007285835341013,-0.6128254153594904,-0.6128254153594904,-0.20828001326201404,-0.20828001326201404,-0.5552745084796282,-0.646304569591536,-0.6559803141939496,-0.6651772737506408,-0.342986727612793,-0.5569981940757607,-0.6508712381639754,-0.6574372732493454,-0.6706591061611983,-0.3856318623191085,12.605607200985219,12.605607200985219,13.220090549940295,13.220090549940295,15.326778746907905,15.326778746907905,12.877573017618019,12.877573017618019,5.899706321210573,5.899706321210573,11.455590572608628,13.770908230630965,14.038144196976617,14.295917504389934,7.447214863876468,11.496092526109123,13.89653010552776,14.078735696007556,14.451305529509966,8.09724222156035,183.22704795592486,183.22704795592486,0.0,203.58560883991652,0.0,183.22704795592486,203.58560883991652,0,0
+2017/02/25 17:00:00,195.11247877463154,0,1282.0810419203474,0,0,0,0.0,0.0,15.334298474006788,0.0,120.17895923267236,0,39.380909295966944,0.5302905672772815,16.256046002253868,0,0,275.7351829191049,544.9712763381686,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,182.85947900645928,0.0,0.0,0.0,0.0,0.0,4322.572370064017,0.0,6156.436403591179,0.0,5723.0927323844635,0.0,6816.677223148472,0.0,546.3659921718724,0.0,3701.604614965759,0.0,5626.841981392527,0.0,5145.654108311743,0.0,6376.706568285966,0.0,6613.872522281458,0,0,0,0,0,0,0,0,0.06825894431781424,0.002159665417806524,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6288217104899463,-0.6288217104899463,-0.49850866733865823,-0.49850866733865823,-0.6987256216036598,-0.6987256216036598,-0.604311684191365,-0.604311684191365,-0.1684415873093447,-0.1684415873093447,-0.5636387987784645,-0.5864118892406623,-0.660951215270943,-0.6732173757062028,-0.3458267497919128,-0.5703736407824074,-0.5815905322047589,-0.6644269162410477,-0.681499905772676,-0.3886286474960077,13.298340865345097,13.298340865345097,10.193654632796765,10.193654632796765,15.26724776239837,15.26724776239837,12.658155059744416,12.658155059744416,5.588062925073615,5.588062925073615,11.65333305466271,12.207097046863694,14.177014054943086,14.52426751582135,7.488098142502423,11.814758438071635,12.087980432179023,14.27474912693107,14.76242865226753,8.145837806940733,195.11247877463154,195.11247877463154,0.0,216.79164308292394,0.0,195.11247877463154,216.79164308292394,0,0
+2017/02/25 18:00:00,221.90234974378828,0,1315.8615170590529,0,0,0,0.0,0.0,21.51051388435012,0.0,138.40412594678773,0,39.380909295966944,0.5503305233192387,18.62449489090989,0,0,275.95928091651683,578.5276534794623,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,159.48805693306875,0.0,0.0,0.0,0.0,0.0,4507.930344777408,0.0,6726.289349770715,0.0,5749.3526786973,0.0,6880.112895184977,0.0,1172.9475095631606,0.0,4034.978161004953,0.0,6116.4647031175555,0.0,5318.415209394474,0.0,6530.597245422268,0.0,6940.320819732978,0,0,0,0,0,0,0,0,0.07005744183562207,0.002216568625613779,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.618188175471883,-0.618188175471883,-0.5750131617279517,-0.5750131617279517,-0.6998769280786338,-0.6998769280786338,-0.6009251262188232,-0.6009251262188232,-0.14218582060502383,-0.14218582060502383,-0.583086856162041,-0.6495372374071534,-0.668229440037803,-0.6805117268659236,-0.3472136646577632,-0.5973737655062752,-0.6348676560064128,-0.6753933056438971,-0.6921146496325216,-0.3915319860019967,13.017398198180388,13.017398198180388,11.92710629909935,11.92710629909935,15.301445124949723,15.301445124949723,12.571750415814606,12.571750415814606,5.418873767335683,5.418873767335683,12.124840714624582,13.859740363917496,14.38227365436471,14.73385799616456,7.508187945053123,12.481675678626885,13.46026509516713,14.58654810078228,15.07198950363663,8.19328402277037,221.90234974378828,221.90234974378828,0.0,246.55816638198698,0.0,221.90234974378828,246.55816638198698,0,0
+2017/02/25 19:00:00,228.85160427538483,0,1265.8191035040568,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,120.14191543460078,0,39.380909295966944,0.4622887511182491,26.50535330022728,0,0,240.2794658088381,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.106674355617436,0.0,0.0,0.0,0.0,0.0,6374.918958490189,0.0,5742.920366044729,0.0,7548.503317968689,0.0,5904.6845886207475,0.0,0.0,0.0,5929.69550902673,0.0,5342.14687497223,0.0,7145.108440235555,0.0,5578.829807232654,0.0,0.0,0,0,0,0,0,0,0,0,0.06739314667120475,0.002132272183778543,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6004096777526498,-0.6004096777526498,-0.579324032741378,-0.579324032741378,-0.7034296099934285,-0.7034296099934285,-0.6031907436878182,-0.6031907436878182,-0.12477215021398355,-0.12477215021398355,-0.5731108043169029,-0.637446848320312,-0.6543389372163646,-0.6677117614001076,-0.3121416587173225,-0.5868594061916892,-0.640406882369249,-0.6605258263628407,-0.6789835226332555,-0.3648247889907492,12.558642909360486,12.558642909360486,12.032332762256587,12.032332762256587,15.40733145781735,15.40733145781735,12.62950027080771,12.62950027080771,5.322490643248557,5.322490643248557,11.880927001852811,13.52982427120611,13.992524931012383,14.36759835843803,7.025239343777898,12.218204576752612,13.610010096332786,14.165088263980678,14.689757069855432,7.770406576966394,228.85160427538483,228.85160427538483,0.0,254.27956030598313,0.0,228.85160427538483,254.27956030598313,0,0
+2017/02/25 20:00:00,220.14478769526264,0,1221.5778372967704,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.89738010901058,0,39.380909295966944,0.40761832150229727,27.0977424753112,0,0,231.52855211409613,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7163.731052600281,0.0,5123.254854324378,0.0,8234.907762915873,0.0,5253.692324796945,0.0,0.0,0.0,6787.441495445989,0.0,4782.54926515456,0.0,7846.043449039119,0.0,4948.6300392986295,0.0,0.0,0,0,0,0,0,0,0,0,0.06503770888852799,0.002057747774210224,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5945135800651378,-0.5945135800651378,-0.5864315438472422,-0.5864315438472422,-0.7075643249805411,-0.7075643249805411,-0.6050126371938601,-0.6050126371938601,-0.12653421642088636,-0.12653421642088636,-0.5634851772456058,-0.6227889626382981,-0.638784428857303,-0.6505572264262995,-0.29320227379746705,-0.5778112912218644,-0.6279831041720743,-0.6446591746441515,-0.6615937267891142,-0.34172510678886014,12.409529473479452,12.409529473479452,12.207584698720964,12.207584698720964,15.531250846556034,15.531250846556034,12.676101351341885,12.676101351341885,5.331670036485278,5.331670036485278,11.649673896239847,13.138350832636434,13.56601158892218,13.887863190164992,6.7861089245014625,11.995315580174875,13.276006311084416,13.72586758161195,14.19504174762325,7.429163274063001,220.14478769526264,220.14478769526264,0.0,244.60531966140292,0.0,220.14478769526264,244.60531966140292,0,0
+2017/02/25 21:00:00,200.86512705685217,0,1119.9288238707763,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,0.2252460992477751,24.008245774693023,0,0,165.369891200646,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,699.5169741233619,0.0,0.0,0.0,0.0,0.0,6567.652981227615,0.0,5891.583907357956,0.0,7618.855988562973,0.0,6010.031625896248,0.0,82.14456061106318,0.0,6193.4741255569925,0.0,5575.963784920464,0.0,7253.845835481109,0.0,5715.957500677006,0.0,0.0,0,0,0,0,0,0,0,0,0.05962584012162617,0.0018865200188091665,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6378939223049532,-0.6378939223049532,-0.6322817600768185,-0.6322817600768185,-0.7239597828637737,-0.7239597828637737,-0.6491130249370308,-0.6491130249370308,-0.17775641157323274,-0.17775641157323274,-0.5686127958666909,-0.6268463493752721,-0.6414791326857018,-0.6524448996579295,-0.3013128208816498,-0.5862051132648474,-0.63670918531595,-0.6503775178233098,-0.6658345778383565,-0.34443900790008813,13.541910915105419,13.541910915105419,13.390814817065106,13.390814817065106,16.029885304236785,16.029885304236785,13.848057386568328,13.848057386568328,5.654992595200284,5.654992595200284,11.772363326615036,13.245779898852646,13.639150574345535,13.940028505486552,6.886656396083083,12.201967729162561,13.50990050739263,13.882905046284307,14.31448078350833,7.468078202018944,200.86512705685217,200.86512705685217,0.0,223.1834745076135,0.0,200.86512705685217,223.1834745076135,0,0
+2017/02/25 22:00:00,196.97353318785014,0,1134.9306539404104,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,0.2342720585686801,27.0977424753112,0,0,215.86207378282424,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,251.37633052965637,0.0,139.63142937050483,0.0,1207.75532565993,0.0,227.16331034424638,0.0,0.0,0.0,6568.734688286174,0.0,6175.833065927954,0.0,7588.71066783059,0.0,6281.662720299255,0.0,121.90371791327098,0.0,6153.822688620165,0.0,5856.635362564401,0.0,7200.08264513931,0.0,5971.220794335302,0.0,0.0,0,0,0,0,0,0,0,0,0.06042454866648903,0.0019117906004228456,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6890538339198233,-0.6890538339198233,-0.6853082265507422,-0.6853082265507422,-0.7445528503400934,-0.7445528503400934,-0.6948836240033673,-0.6948836240033673,-0.24116757485083068,-0.24116757485083068,-0.5745603023959135,-0.6323923872019412,-0.6448260690702485,-0.655781912653592,-0.3061334244836777,-0.5942635762889767,-0.6444044333529871,-0.6546262004664415,-0.6698468703395714,-0.3448730233900701,14.982226303141559,14.982226303141559,14.872931483845122,14.872931483845122,16.672565229421693,16.672565229421693,15.153542748629576,15.153542748629576,6.207020250887481,6.207020250887481,11.91609900163057,13.393780027486656,13.730430760147328,14.032623761894484,6.94773575243569,12.403240173790536,13.718904848519628,14.000500492623104,14.428199777815337,7.474330629841674,196.97353318785014,196.97353318785014,0.0,218.8594813198335,0.0,196.97353318785014,218.8594813198335,0,0
+2017/02/25 23:00:00,140.63609984948516,0,1158.3203108381197,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,0.49395688058748033,18.70279136447226,0,0,417.5466400745363,581.0670844571349,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1956.3186538049188,0.0,1176.1090665958181,0.0,2849.1065633628837,0.0,1266.1818815002453,0.0,0.0,0.0,6564.512126543116,0.0,6723.97029078066,0.0,7542.7972842937,0.0,6831.913764348101,0.0,0.0,0.0,6191.314428060083,0.0,6454.995123707746,0.0,7209.59592167456,0.0,6562.804237828725,0.0,4182.847755661383,0,0,0,0,0,0,0,0,0.061669831324597864,0.001951190475691792,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.783875268490325,-0.783875268490325,-0.7817061963311193,-0.7817061963311193,-0.8225279636340747,-0.8225279636340747,-0.7859629911646787,-0.7859629911646787,-0.4607428927245534,-0.4607428927245534,-0.5945669634703504,-0.6524260679200069,-0.6604094153527353,-0.6735908789896141,-0.3262495307827309,-0.620501294494303,-0.6691155244861658,-0.6735785500173671,-0.6911221255077401,-0.36798759462247155,17.95020483344247,17.95020483344247,17.87801030711711,17.87801030711711,19.270124949467615,19.270124949467615,18.019880623450888,18.019880623450888,9.431253482163655,9.431253482163655,12.410872781579386,13.939507332981535,14.161826044029993,14.534943549945382,7.213234337919758,13.078094246880568,14.407419549098819,14.53459104829841,15.042837828017397,7.818897677242106,140.63609984948516,140.63609984948516,0.0,156.26233316609463,0.0,140.63609984948516,156.26233316609463,0,0
+2017/02/26 00:00:00,93.70622059781499,0,1059.588976016718,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.7093508840095638,14.053913452512845,0,0,465.5757400033146,540.7777072445874,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3585.1012012510814,0.0,2183.7129395546017,0.0,4305.1381908426465,0.0,2251.9348172571995,0.0,0.0,0.0,5947.279560330185,0.0,7512.588123968516,0.0,6987.987820349701,0.0,7619.843375304541,0.0,6925.902194197532,0.0,5757.05800202881,0.0,7304.480539109916,0.0,6734.8875805840635,0.0,7403.052286540103,0.0,12605.476230507606,0,0,0,0,0,0,0,0,0.056413301927748544,0.0017848775496787225,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8681206515770329,-0.8681206515770329,-0.8651469778930116,-0.8651469778930116,-0.9052730035509983,-0.9052730035509983,-0.8680635582124412,-0.8680635582124412,-0.5724329451226615,-0.5724329451226615,-0.6184548484915214,-0.6767509135115038,-0.6798104746242251,-0.6956934470126568,-0.35340130592736185,-0.6469245155320422,-0.6974565428683643,-0.6961697467031798,-0.7162994560319459,-0.3997842618188839,20.907635009785324,20.907635009785324,20.798199275783062,20.798199275783062,22.30549656673068,22.30549656673068,20.90553044904472,20.90553044904472,11.864510062511485,11.864510062511485,13.024383834575616,14.625510055898488,14.71360871166091,15.1774566671847,7.598813989989424,13.787908929630689,15.229618511342409,15.19153493514466,15.795470725088975,8.330110068582897,93.70622059781499,93.70622059781499,0.0,104.11802288646109,0.0,93.70622059781499,104.11802288646109,0,0
+2017/02/26 01:00:00,43.43717300020239,0,665.1527835145886,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.2504138471625158,0.17195640588101724,11.829168682358805,0,0,93.00257921016266,518.9146755356098,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,306.8136973982594,0.0,296.91875552511823,0.0,696.8204666518861,0.0,330.8434855532765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0354132268774178,0.0011204498133460844,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8832616921955293,-0.8832616921955293,-0.8837051452636574,-0.8837051452636574,-0.9171724680752367,-0.9171724680752367,-0.8861015627420706,-0.8861015627420706,-0.25390079511711533,-0.25390079511711533,-0.9441984098804101,-1.0015562577366377,-1.003874476481275,-1.0198136998895289,-0.14274957211144246,-0.9134598871450376,-0.981034877637952,-0.9906329727551388,-1.007368826393257,-0.2850641773233208,21.470497752004093,21.470497752004093,21.48712489850027,21.48712489850027,22.76509168609236,22.76509168609236,21.577117260272274,21.577117260272274,6.33819364480118,6.33819364480118,23.830023621557572,26.18522360643165,26.28307271040265,26.96132497074106,5.422204905027215,22.62108657471373,25.327963970578708,25.7269113824387,26.43094857034211,6.688012902963592,43.43717300020239,43.43717300020239,0.0,48.26352555578043,0.0,43.43717300020239,48.26352555578043,0,0
+2017/02/26 02:00:00,23.726382577214522,0,53.15569301596266,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5292871535367331,0,0,0.0,17.665340503418523,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028300484689460404,8.954076085094042e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0211764934059344,-1.0211764934059344,-1.0478522053211081,-1.0478522053211081,-1.1067207217328958,-1.1067207217328958,-1.0575809308756283,-1.0575809308756283,-0.10904810374606683,-0.10904810374606683,-1.047928076474691,-1.1398131606996986,-1.17734283305398,-1.1817801046631922,-0.07649615618573068,-1.0798646898827544,-1.162521976783792,-1.2020858978174893,-1.2094851917842167,-0.33531875526591653,27.01975630457916,27.01975630457916,28.177308230634054,28.177308230634054,30.821908489685185,30.821908489685185,28.605923251153882,28.605923251153882,5.2462903884913175,5.2462903884913175,28.18063764208796,32.360431100629356,34.147711908779996,34.3618910663826,5.121164067211609,29.600393400023492,33.43666472565397,35.349450414040604,35.71228085079237,7.338542960741506,23.726382577214522,23.726382577214522,0.0,26.362647308016136,0.0,23.726382577214522,26.362647308016136,0,0
+2017/02/26 03:00:00,28.344230606859906,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248675203870093,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0535702593032183,-1.0535702593032183,-1.0838961475769437,-1.0838961475769437,-1.1408319655461252,-1.1408319655461252,-1.0948988532274293,-1.0948988532274293,-0.030605645404206103,-0.030605645404206103,-1.1021575945681379,-1.2012451013230698,-1.2440967910656515,-1.2475939356252777,-0.05460147829727814,-1.1658182997045223,-1.2534723344475776,-1.2996970252367401,-1.3059789355657407,-0.32347507039261025,28.428813479353863,28.428813479353863,29.78217347871633,29.78217347871633,32.40836453693365,32.40836453693365,30.281155571320113,30.281155571320113,5.019391088425365,5.019391088425365,30.612620345211468,35.308320351463706,37.42965686481219,37.604965880801814,5.0617230966269915,33.5942278041484,37.90035808586504,40.252835730707034,40.57637891063577,7.175596841867872,28.344230606859906,28.344230606859906,0.0,31.49358956317767,0.0,28.344230606859906,31.49358956317767,0,0
+2017/02/26 04:00:00,23.722031455092132,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249360314143401,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0855262435672348,-1.0855262435672348,-1.1190303037733103,-1.1190303037733103,-1.1706104022472936,-1.1706104022472936,-1.1304386404821505,-1.1304386404821505,0.010589422745796885,0.010589422745796885,-1.1432828373135864,-1.244195911730853,-1.290860741109527,-1.2930246085778927,-0.033263280822982105,-1.2341899048376117,-1.3237523096278887,-1.3736425392626535,-1.3791381577353792,-0.3073977280974324,29.85583567699608,29.85583567699608,31.389978567056446,31.389978567056446,33.82388451488646,33.82388451488646,31.92094431265339,31.92094431265339,5.00232128035546,5.00232128035546,32.52381114737173,37.43462131308731,39.799230326423505,39.91014704393238,5.022905120186834,36.934777762541934,41.49640326024015,44.11234150205853,44.40322424664137,6.963917802644431,23.722031455092132,23.722031455092132,0.0,26.357812727880145,0.0,23.722031455092132,26.357812727880145,0,0
+2017/02/26 05:00:00,41.653536391120596,0,393.87948969562433,0,0,0,0.0,0.024609577295059273,4.633261998087618,9.319298099999997,23.111338313975452,0,2.4064270648344777,1.6335611122702645,0.5250402246577244,0,0,305.153608414264,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3904268612732681,1251.8694239410963,0.23023221073698225,929.8904185038069,0.31333733296882693,1699.3056476665554,0.10675521924399205,969.9939985636037,0.0,0.0,2.988332592543884,4297.194932156503,2.116977441384444,3075.385227922641,4.08519086530435,5207.078557593273,2.2600195564599823,3252.0311283850097,0.0,0.0,3.0165763259923217,4374.0040557640405,2.3076664156267888,2993.6017399409357,4.145974136612411,5139.362473954354,2.6480883369120165,3173.7585456248585,0.0,0.0,0,0,0,0,0,0,0,0,0.020970435780558922,0.000663489970497333,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9481565571281234,-0.9481565571281234,-0.9614853279224822,-0.9614853279224822,-0.9848783677040033,-0.9848783677040033,-0.9656506895000609,-0.9656506895000609,0.15325888920157285,0.15325888920157285,-0.7904071920513427,-0.8415241562496147,-0.8546421076517732,-0.8621653829038859,0.0039795476506443725,-0.8470956768936732,-0.8967784411132204,-0.9065142965151589,-0.9188545060277387,-0.30920176239090735,23.9884293788797,23.9884293788797,24.526386327785318,24.526386327785318,25.487295140598604,25.487295140598604,24.695930475565618,24.695930475565618,5.486725517528797,5.486725517528797,18.168818127862792,19.94186348700734,20.414532826240773,20.688838916629436,5.00032782990138,20.14174282149132,21.980916829906292,22.35317188038087,22.830517927146715,6.9871250785312355,41.653536391120596,41.653536391120596,0.0,46.281707101245104,0.0,41.653536391120596,46.281707101245104,0,0
+2017/02/26 06:00:00,75.96876417207062,0,361.913881973699,0,0,0,0.0,0.01877426638654595,4.633261998087618,9.319298099999997,57.911447091112116,0,2.1005567281115822,1.4603906249530754,0.5250353634196735,0,0,148.97176689843417,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,312.1648777299565,0.0,295.99193155198685,0.0,537.9125750084407,0.0,316.94476100126604,0.0,0.0,2.4652477149934384,3448.208826062913,1.9138357383994844,2529.6995344447305,2.516595211143567,4389.736687825105,1.936033881240519,2718.2465554137575,0.0,0.0,2.610142493029457,3953.447202098401,1.9823905445362016,2763.653185987042,3.1580103627111384,4788.542610812812,2.1920104404921403,2958.8752083700056,0.0,0.0,0,0,0,0,0,0,0,0,0.01926856314830487,0.0006096439067158981,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8435923127224971,-0.8435923127224971,-0.8592602421819006,-0.8592602421819006,-0.8779678105547802,-0.8779678105547802,-0.8637357672494582,-0.8637357672494582,0.46650451545571364,0.46650451545571364,-0.7419694270287099,-0.7802798095587037,-0.7900821228314455,-0.7954058330142069,0.06958103722324072,-0.7643926430677657,-0.802241562609804,-0.8024991161918893,-0.8163475275038503,-0.2562634628541548,20.015907959634518,20.015907959634518,20.58263660829354,20.58263660829354,21.2726279943101,21.2726279943101,20.74639239969511,20.74639239969511,9.543591403666014,9.543591403666014,16.590941438645004,17.830644067640492,18.15789573704498,18.337337782026253,5.100243640144285,17.30893448319786,18.569504914678717,18.578291057053903,19.054837906947952,6.3632827483586425,75.96876417207062,75.96876417207062,0.0,84.40973796896735,0.0,75.96876417207062,84.40973796896735,0,0
+2017/02/26 07:00:00,106.4717073212794,0,849.6250576638722,0,0,0,0.13363588269995033,0.018635254323768856,8.33396954093373,13.929299233552332,80.56906512710079,0,1.7582055889323216,1.2038322712001919,0.5250644225363604,0,0,113.11382060543701,505.82394572689816,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,423.82374568789623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.125823070233896,0.0,144.17342422676353,0.0,64.81075209132084,0.0,0.0,1.4870586413106441,2739.395272727239,1.9600990115980794,2022.290813559492,3.6815694007154884,3508.6545432313933,1.9776082075160653,2176.7822481235585,0.0,0.0,2.4355716865316026,3061.2669087611985,1.8420996506990073,2141.280066363658,3.2031804318035024,3692.011247277208,2.0480672935944613,2286.8052972805294,0.0,0.0,0,0,0,0,0,0,0,0,0.04523466739296894,0.0014311933451493447,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.747584356350516,-0.747584356350516,-0.7788691258866781,-0.7788691258866781,-0.796757216313769,-0.796757216313769,-0.7858598339934928,-0.7858598339934928,0.7076968299410935,0.7076968299410935,-0.7254559248545842,-0.7610245992303797,-0.7677302904710464,-0.7750606453285057,0.1448741297814398,-0.7437262811696583,-0.7793021456707019,-0.7778332465473564,-0.7920372150419286,-0.14746079540317825,16.768711206510957,16.768711206510957,17.783884416300793,17.783884416300793,18.38307895695226,18.38307895695226,18.016433500225716,18.016433500225716,15.53523427912178,15.53523427912178,16.07596375621118,17.199716613883723,17.417644551651932,17.65806851770715,5.434877517968161,16.646418466667683,17.798228629972925,17.749602256470638,18.22365482738256,5.450560174832617,106.4717073212794,106.4717073212794,0.0,118.30189702364378,0.0,106.4717073212794,118.30189702364378,0,0
+2017/02/26 08:00:00,119.7083625759502,0,960.4182374831236,0,0,0,0.0,0.0,6.420091811767716,0.0,69.33401494192633,0,39.380909295966944,0.563786418395817,0.5775849054391134,0,0,201.62082713432957,492.6197665047129,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1921.6745731552905,0.0,1507.0499994037236,0.0,3024.2546867836736,0.0,1596.8742111586848,0.0,0.0,0.0,5961.705369989585,0.0,7044.37635035203,0.0,7522.308838835792,0.0,6578.847398312835,0.0,2655.805103741697,0.0,6095.648620028206,0.0,7124.179349073839,0.0,7657.294018888996,0.0,6500.056241591557,0.0,5699.352271526151,0,0,0,0,0,0,0,0,0.05113337835179279,0.0016178244481458136,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7283532943971345,-0.7283532943971345,-0.7951454228744419,-0.7951454228744419,-0.8173954669697698,-0.8173954669697698,-0.8033235630992264,-0.8033235630992264,0.13291450787589443,0.13291450787589443,-0.6614384160762972,-0.7344582140092846,-0.7333307695088496,-0.7009063092150611,-0.1966500402234387,-0.6725495848927683,-0.7499115743077073,-0.7411721328265721,-0.7053983209396439,-0.3220812835512497,16.165471260208037,16.165471260208037,18.328532397016573,18.328532397016573,19.09122831097328,19.09122831097328,18.606434967936437,18.606434967936437,5.365987884981905,5.365987884981905,14.190682375346952,16.35524996673803,16.320081429292117,15.332069381869047,5.801874160268497,14.505194761107504,16.842787502370925,16.56580857363717,15.466242685834928,7.156812306689332,119.7083625759502,119.7083625759502,0.0,133.00929175105577,0.0,119.7083625759502,133.00929175105577,0,0
+2017/02/26 09:00:00,150.39579771828795,0,1070.9032240590132,0,0,0,0.0,0.0,9.661014928957579,0.0,96.91714705112861,0,39.380909295966944,0.4798867644698571,0.524864475310677,0,0,258.87133626281894,492.6187151832971,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,749.3482398818845,0.0,1270.3352086257435,0.0,2623.2723248720035,0.0,807.5597465599901,0.0,0.0,0.0,5776.246946707921,0.0,7057.620856071361,0.0,7545.719876937221,0.0,6482.619880432612,0.0,161.12711737812373,0.0,5433.192124061354,0.0,6881.503350422784,0.0,7283.4993427320105,0.0,6115.262330020547,0.0,3527.537997576217,0,0,0,0,0,0,0,0,0.05701568087405928,0.0018039363996472317,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7066032959457216,-0.7066032959457216,-0.7905513987283158,-0.7905513987283158,-0.811713470322748,-0.811713470322748,-0.7304302060021123,-0.7304302060021123,-0.26076145966617986,-0.26076145966617986,-0.6231812289592159,-0.7191294340628538,-0.7124553839502004,-0.6762713883873493,-0.2964485203872283,-0.6289504542809512,-0.7318152501388033,-0.7179901203196949,-0.6762686865370557,-0.3735634213787591,15.502382558988316,15.502382558988316,18.173664936759053,18.173664936759053,18.89447165397941,18.89447165397941,16.22985475004498,16.22985475004498,6.411695959038255,6.411695959038255,13.148705834380735,15.881776934138813,15.678790185442992,14.61173906550421,6.826019376545489,13.30177239309613,16.27289366524758,15.846989654381431,14.611661502026053,7.905422922070642,150.39579771828795,150.39579771828795,0.0,167.10644190920883,0.0,150.39579771828795,167.10644190920883,0,0
+2017/02/26 10:00:00,150.51479088989396,0,1214.5376360163682,0,0,0,0.0,0.0,9.506103015881457,0.0,97.06762091869685,0,39.380909295966944,0.6032631406606359,0.5249193162337767,0,0,349.28394612419663,492.6049885104583,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,570.6429881068957,0.0,962.0833672027434,0.0,2102.8487519581427,0.0,604.1268645612122,0.0,0.0,0.0,4271.374940300198,0.0,7457.599000114399,0.0,5771.565305568286,0.0,7090.551051642153,0.0,3598.657923982183,0.0,3888.028060857986,0.0,7239.323376696485,0.0,5446.050210671564,0.0,6719.990223105645,0.0,11146.738126318773,0,0,0,0,0,0,0,0,0.06466288335763537,0.002045888555687729,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7281157954715942,-0.7281157954715942,-0.7837215160279482,-0.7837215160279482,-0.8006552452555966,-0.8006552452555966,-0.7591725019919916,-0.7591725019919916,-0.3198498298702154,-0.3198498298702154,-0.628513644707366,-0.7169654912041195,-0.7042206979979686,-0.691953892449318,-0.3308284856792055,-0.6378121431573571,-0.7302136542583672,-0.7105077820968971,-0.696768825217471,-0.39938356702647587,16.158120698260007,16.158120698260007,17.9450808118045,17.9450808118045,18.515451386815755,18.515451386815755,17.139863951538487,17.139863951538487,7.126909699200013,7.126909699200013,13.290132621303883,15.815751847999167,15.430983685013487,15.067264975139196,7.276065102452449,13.53969936821396,16.223133066553174,15.619916976545255,15.209256160336068,8.323399112810975,150.51479088989396,150.51479088989396,0.0,167.23865654432663,0.0,150.51479088989396,167.23865654432663,0,0
+2017/02/26 11:00:00,204.73609924410812,0,1365.0751063077885,0,0,0,0.0,0.0,13.065493553185489,0.0,124.87761316689259,0,39.380909295966944,0.5560493049704028,23.424058720638367,0,0,304.0451161000256,599.6554075446891,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,207.64923833518597,0.0,854.1835550220324,0.0,2.5692083626232787,0.0,0.0,0.0,3940.1961063524104,0.0,7069.571107676789,0.0,5271.3038123499355,0.0,6799.382368754238,0.0,2634.8404224831156,0.0,3458.8607827326864,0.0,6761.6036702527035,0.0,4803.810958770251,0.0,6385.684444588947,0.0,9526.043361899616,0,0,0,0,0,0,0,0,0.07267760978005841,0.002299468912968026,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6694660072921098,-0.6694660072921098,-0.7379327663155708,-0.7379327663155708,-0.7482994274636283,-0.7482994274636283,-0.7219307396561039,-0.7219307396561039,-0.2520738796625261,-0.2520738796625261,-0.6139281463590617,-0.7020314281869691,-0.6858018604038442,-0.6823042858114671,-0.34030540881087457,-0.6182134636315517,-0.7097758676149281,-0.6860531087940375,-0.6837760146863707,-0.4004799093796009,14.41737516641227,14.41737516641227,16.463975559843732,16.463975559843732,16.791447515433234,16.791447515433234,15.967548358682492,15.967548358682492,6.31895462623109,6.31895462623109,12.906222985832798,15.365594172642062,14.88730075575775,14.785716419787093,7.408930745768231,13.018060502031446,15.597834525982378,14.894618433790853,14.828397175906247,8.341777295528303,204.73609924410812,204.73609924410812,0.0,227.48455471567567,0.0,204.73609924410812,227.48455471567567,0,0
+2017/02/26 12:00:00,222.91451314124905,0,1328.6583691841759,0,0,0,0.0,0.0,13.065493553185489,0.0,143.25325374857618,0,39.380909295966944,0.40528117196271607,23.37760016910335,0,0,214.39285020759672,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3525.5861522319587,0.0,6160.739339244701,0.0,4785.936287607146,0.0,5966.729753067995,0.0,0.0,0.0,3109.294695757806,0.0,5892.872543406709,0.0,4376.854773527473,0.0,5624.422718996468,0.0,4191.396119050414,0,0,0,0,0,0,0,0,0.0707387557214773,0.0022381249220472838,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5678683160452143,-0.5678683160452143,-0.6362265646463447,-0.6362265646463447,-0.6618521788966371,-0.6618521788966371,-0.6180373362535249,-0.6180373362535249,-0.16008214312104943,-0.16008214312104943,-0.5898160399412933,-0.6789291892129626,-0.6624624174406896,-0.6655549800157102,-0.33889381840481436,-0.5905396999785862,-0.6830189031483048,-0.6591993906058682,-0.6655915442795265,-0.3915184694081652,11.754479257469853,11.754479257469853,13.496878032052948,13.496878032052948,14.20229848274387,14.20229848274387,13.013448254054012,13.013448254054012,5.531078908092155,5.531078908092155,12.291807667991549,14.688190975621097,14.219444046450377,14.306582223779813,7.388898651790328,12.309880410092205,14.806428923594794,14.127951934153558,14.30761496150221,8.193062300605959,222.91451314124905,222.91451314124905,0.0,247.6827923791656,0.0,222.91451314124905,247.6827923791656,0,0
+2017/02/26 13:00:00,199.44796110814855,0,1234.2283187531352,0,0,0,0.0,0.0,13.065493488391114,0.0,124.80122689546741,0,39.380909295966944,0.2883278955537171,18.480028330315047,0,0,174.05820101305255,581.050358820737,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4095.3593865984317,0.0,5381.756342141457,0.0,5220.904642258787,0.0,5259.446259869575,0.0,0.0,0.0,3686.699773519473,0.0,5097.869055659134,0.0,4801.135601117868,0.0,4926.613132393616,0.0,0.0,0,0,0,0,0,0,0,0,0.06571122989156081,0.002079057509263315,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5767460323510618,-0.5767460323510618,-0.5929476540372565,-0.5929476540372565,-0.6175398637466348,-0.6175398637466348,-0.5311118857304297,-0.5311118857304297,-0.13175053673998494,-0.13175053673998494,-0.5655560983675878,-0.6480750932043193,-0.6358194296673341,-0.6410917430898574,-0.32634821293920696,-0.5635297190442713,-0.648074467209263,-0.6300000262992619,-0.6389760079030253,-0.3702622861950651,11.969307993895896,11.969307993895896,12.37018047178934,12.37018047178934,13.000428211618484,13.000428211618484,10.901388937764239,10.901388937764239,5.359600953204222,5.359600953204222,11.699087906797175,13.819505237123977,13.485900231454906,13.628616759143796,7.214579041919578,11.65073474564771,13.819488030908659,13.32977443856663,13.571200980881684,7.854036085899224,199.44796110814855,199.44796110814855,0.0,221.6088456757206,0.0,199.44796110814855,221.6088456757206,0,0
+2017/02/26 14:00:00,199.4785196552455,0,1200.4254097411842,0,0,0,0.0,0.0,13.065493488391114,0.0,124.7641830973959,0,39.380909295966944,0.2882190743164135,18.54773949672081,0,0,194.3382039251554,562.4577994092273,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4162.594296143003,0.0,5348.51994249862,0.0,5241.353993000659,0.0,5302.4542443396185,0.0,0.0,0.0,3718.77827873768,0.0,4997.754534839564,0.0,4739.188692752033,0.0,4923.003876569264,0.0,0.0,0,0,0,0,0,0,0,0,0.06391153797772449,0.0020221165115982816,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5940816141863484,-0.5940816141863484,-0.5583257684497233,-0.5583257684497233,-0.6138516865691038,-0.6138516865691038,-0.4928392225605108,-0.4928392225605108,-0.14365705505661122,-0.14365705505661122,-0.5466516686322885,-0.6225148484878213,-0.6170643667037387,-0.6237812049499819,-0.3212655117270588,-0.541924327626952,-0.6194197385847061,-0.610312221391451,-0.620847196755225,-0.3599310193178651,12.39866429179952,12.39866429179952,11.527374756168868,11.527374756168868,12.904234787257835,12.904234787257835,10.075275779035223,10.075275779035223,5.427594894430456,5.427594894430456,11.254911010019043,13.13111876160589,12.987993358139406,13.164556848573454,7.1458560781501745,11.146259176559468,13.0496854092233,12.812475117866327,13.087190649727972,7.696216769377429,199.4785196552455,199.4785196552455,0.0,221.64279961693944,0.0,199.4785196552455,221.64279961693944,0,0
+2017/02/26 15:00:00,181.29600875309686,0,1163.0421812221575,0,0,0,0.0,0.0,13.065493488391114,0.0,111.01081017850728,0,39.380909295966944,0.36527300140715135,14.041547586370074,0,0,214.1357744701849,540.7673528577151,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3349.8856130404693,0.0,5569.832676730313,0.0,4342.202706433922,0.0,5549.418470429511,0.0,0.0,0.0,2865.673453156533,0.0,5199.812311145894,0.0,3825.4593162936826,0.0,5159.01927193452,0.0,2778.6719859717464,0,0,0,0,0,0,0,0,0.061921227201364906,0.0019591444659953195,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5988709756585333,-0.5988709756585333,-0.5671729743513274,-0.5671729743513274,-0.619360871071011,-0.619360871071011,-0.5016096904925418,-0.5016096904925418,-0.2047412663497011,-0.2047412663497011,-0.5572231880773066,-0.6285346545305159,-0.6218916652364362,-0.6326447682473536,-0.33523007233417906,-0.5583886717131407,-0.6285314809699188,-0.6185919880028496,-0.6335384703891922,-0.37441375688502476,12.519583343880427,12.519583343880427,11.737797309693988,11.737797309693988,13.048140614190856,13.048140614190856,10.258991959963438,10.258991959963438,5.869339205347259,5.869339205347259,11.501388782294214,13.290692285701368,13.114689183277093,13.400546747212957,7.337300736831935,11.528858870273723,13.290607746452011,13.02797747595801,13.424530477911475,7.9187348709353955,181.29600875309686,181.29600875309686,0.0,201.44000972566317,0.0,181.29600875309686,201.44000972566317,0,0
+2017/02/26 16:00:00,179.22999903953226,0,1199.2701521174663,0,0,0,0.0,0.0,13.114192923594747,0.0,108.75639138185811,0,39.380909295966944,0.4644773944938594,14.082052841164368,0,0,250.38732917868887,540.7437690445201,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2742.080455594317,0.0,5637.932946514035,0.0,3729.6549327386706,0.0,5726.132649169994,0.0,1626.2023244526113,0.0,2439.031129068221,0.0,5382.852994579329,0.0,3420.5588214541945,0.0,5473.901627124543,0.0,6169.692012520418,0,0,0,0,0,0,0,0,0.06385003120613071,0.002020170480218811,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6089712887152561,-0.6089712887152561,-0.5857422450058577,-0.5857422450058577,-0.6067368041780643,-0.6067368041780643,-0.49765335918778636,-0.49765335918778636,-0.2393384880316394,-0.2393384880316394,-0.5606381257696718,-0.6228589746602586,-0.6246977188116789,-0.6391245940651336,-0.3477190505215056,-0.5644670858872881,-0.6216732958134855,-0.6227891554712552,-0.6417221765649798,-0.3871309633367081,12.777853814962938,12.777853814962938,12.190492471001079,12.190492471001079,12.72033542396359,12.72033542396359,10.175706735190076,10.175706735190076,6.1887371298899865,6.1887371298899865,11.582044355937214,13.14019851252769,13.18880076262748,13.575226900425207,7.515528912971476,11.673079916290732,13.108936087729944,13.138355921378576,13.645762694111994,8.121503546055692,179.22999903953226,179.22999903953226,0.0,199.14444337725806,0.0,179.22999903953226,199.14444337725806,0,0
+2017/02/26 17:00:00,193.9136721270942,0,1181.9685557985883,0,0,0,0.0,0.0,11.857303849409467,0.0,124.87761316689259,0,39.380909295966944,0.35649050202331195,14.009380110347598,0,0,179.83213810837023,540.7618350271445,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2965.7848814842714,0.0,5346.18915545508,0.0,3861.4335360782975,0.0,5424.231054790047,0.0,0.0,0.0,2622.60724411575,0.0,5069.136630867371,0.0,3530.8324473038656,0.0,5163.547744893824,0.0,3127.6356352588173,0,0,0,0,0,0,0,0,0.06292888140270592,0.00199102594253283,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5684759421756291,-0.5684759421756291,-0.5536133147033341,-0.5536133147033341,-0.5929803494729398,-0.5929803494729398,-0.4573630883203289,-0.4573630883203289,-0.20112285513545447,-0.20112285513545447,-0.575363334756632,-0.6355626565235833,-0.6306693271782936,-0.6484992428529536,-0.3516454093925367,-0.5864143940505288,-0.6398443205642365,-0.6323156902132709,-0.655662837109727,-0.3909866467615502,11.769073991560006,11.769073991560006,11.416678904164385,11.416678904164385,12.371000963505296,12.371000963505296,9.366020616262091,9.366020616262091,5.838830252170425,5.838830252170425,11.935623780956604,13.478980415656466,13.347656000379757,13.831167397982227,7.572931108004326,12.207159192949334,13.59474133331976,13.391724212021145,14.029311356716448,8.184344638720432,193.9136721270942,193.9136721270942,0.0,215.45963569677133,0.0,193.9136721270942,215.45963569677133,0,0
+2017/02/26 18:00:00,205.9777692352392,0,1242.934718970716,0,0,0,0.0,0.0,14.808149237152293,0.0,129.38645076019097,0,39.380909295966944,0.39401915060181686,18.576265588872847,0,0,200.51429310178835,581.0458432058537,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3352.325358653858,0.0,5200.97846806033,0.0,4227.927821491637,0.0,5184.597249666588,0.0,0.0,0.0,3109.1293121409935,0.0,4909.2717342350215,0.0,3946.701175278527,0.0,4954.273954424642,0.0,167.88881061548267,0,0,0,0,0,0,0,0,0.0661747650880335,0.002093723439769026,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5701995838376751,-0.5701995838376751,-0.5818760274650515,-0.5818760274650515,-0.5668514939748543,-0.5668514939748543,-0.42669277888951995,-0.42669277888951995,-0.17660219439351144,-0.17660219439351144,-0.582991015350579,-0.6485677371851054,-0.6333482145312345,-0.6516213538206734,-0.3507953988892296,-0.5968276391624431,-0.6491059124068718,-0.6373963012021906,-0.6610301714522943,-0.3886905561583312,11.810561752815303,11.810561752815303,12.095005791414906,12.095005791414906,11.730091761130012,11.730091761130012,8.796516794637554,8.796516794637554,5.646502707714475,5.646502707714475,12.122476870269892,13.833051407952524,13.419421796380476,13.917251055620625,7.560448600084555,12.46787259413314,13.84786157120422,13.528458275517039,14.179228456480516,8.14684575684278,205.9777692352392,205.9777692352392,0.0,228.86418803915467,0.0,205.9777692352392,228.86418803915467,0,0
+2017/02/26 19:00:00,212.4508424410728,0,1221.3325712191486,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,115.6330778413024,0,39.380909295966944,0.3900581939189404,23.0196291573467,0,0,195.7929335239298,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4663.233005037732,0.0,5210.683936274955,0.0,5486.399413537483,0.0,5166.7398516853755,0.0,0.0,0.0,4341.05642547782,0.0,4917.078940891563,0.0,5115.748568531472,0.0,4876.6167302721105,0.0,0.0,0,0,0,0,0,0,0,0,0.06502465074088519,0.0020573346235210855,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5490287250221537,-0.5490287250221537,-0.5630211378179155,-0.5630211378179155,-0.5712543795651063,-0.5712543795651063,-0.44563856703499016,-0.44563856703499016,-0.17533359653261701,-0.17533359653261701,-0.5811610058704236,-0.6433886160596761,-0.6272059667729563,-0.6455741276445921,-0.3375305196816875,-0.596419754135754,-0.652468486325034,-0.6321410942265354,-0.6563328096221583,-0.373204645346047,11.309910522121669,11.309910522121669,11.638627014112743,11.638627014112743,11.836014072249498,11.836014072249498,9.143538789511453,9.143538789511453,5.6372356244287545,5.6372356244287545,12.077417474128538,13.691167938785597,13.255336094884612,13.750898797685991,7.369632212496342,12.457571937602566,13.9406812933901,13.387045225999557,14.047956434019355,7.899815557003748,212.4508424410728,212.4508424410728,0.0,236.056491601192,0.0,212.4508424410728,236.056491601192,0,0
+2017/02/26 20:00:00,200.92837303671976,0,1123.4647141059247,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,104.13412371906301,0,39.380909295966944,0.2109529977808564,23.17521907137109,0,0,133.41542892325015,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4837.873091938009,0.0,4814.469519730772,0.0,5619.8839979769255,0.0,4779.946740464909,0.0,0.0,0.0,4605.6327552539005,0.0,4596.3673021233335,0.0,5336.669772447516,0.0,4555.471824109447,0.0,0.0,0,0,0,0,0,0,0,0,0.059814093536802934,0.0018924762256419044,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5570903560454259,-0.5570903560454259,-0.5901652513150022,-0.5901652513150022,-0.6010538262920591,-0.6010538262920591,-0.45902350840307565,-0.45902350840307565,-0.193398253767781,-0.193398253767781,-0.5720885600540645,-0.6292405794056395,-0.6149799035481728,-0.6320713950823048,-0.32363559132660097,-0.5883595397073474,-0.6390080836775419,-0.6206495797772741,-0.6437946008185846,-0.3572897187391244,11.498261711435802,11.498261711435802,12.300526062614935,12.300526062614935,12.575024970806226,12.575024970806226,9.398006563206494,9.398006563206494,5.775531781414017,5.775531781414017,11.856177104205173,13.309508003563224,12.933597778283442,13.385177732693691,7.177765525173655,12.255501820522113,13.572069988086866,13.081993159650125,13.702247992025264,7.656598288570066,200.92837303671976,200.92837303671976,0.0,223.2537478185775,0.0,200.92837303671976,223.2537478185775,0,0
+2017/02/26 21:00:00,200.63281681357623,0,1153.041137337853,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,0.33216222354694264,18.47647616815651,0,0,217.08666462257904,581.0509475898326,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4957.918890826245,0.0,4606.897444954484,0.0,5697.714489648834,0.0,4570.172791143522,0.0,0.0,0.0,4691.917024288744,0.0,4371.925977662953,0.0,5380.319691623649,0.0,4325.444327689561,0.0,0.0,0,0,0,0,0,0,0,0,0.06138876421712466,0.001942297708331275,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5697558348951421,-0.5697558348951421,-0.5718622886545931,-0.5718622886545931,-0.625436234732427,-0.625436234732427,-0.4815688077657958,-0.4815688077657958,-0.23103068909569324,-0.23103068909569324,-0.5657224356494202,-0.618529118888094,-0.6060372817112798,-0.6213867011322328,-0.3131862977043206,-0.5825429705240672,-0.6288745623889148,-0.6120072415025014,-0.6332799345945814,-0.3448555597411475,11.799868472788518,11.799868472788518,11.850704899556249,11.850704899556249,13.208362736632154,13.208362736632154,9.844069695416152,9.844069695416152,6.107461948558381,6.107461948558381,11.703064931857895,13.02632993511024,12.702373390183098,13.101388689891152,7.038870666028757,12.11143145554837,13.299749489048864,12.856350210259365,13.417588751096275,7.474078893890379,200.63281681357623,200.63281681357623,0.0,222.92535201508468,0.0,200.63281681357623,222.92535201508468,0,0
+2017/02/26 22:00:00,186.69040923746707,0,1146.908921383026,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,0.39422288012023554,22.734218447661075,0,0,227.84034122543983,599.655407544689,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3425.930400268012,0.0,5250.499205775651,0.0,4180.90891233276,0.0,4716.028597234805,0.0,0.0,0.0,3363.147385160104,0.0,5142.42647645305,0.0,4052.1265628543447,0.0,5084.101431275667,0.0,1026.0068849825877,0,0,0,0,0,0,0,0,0.06106228049751642,0.001931967991020796,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6514650080705592,-0.6514650080705592,-0.6637257219052338,-0.6637257219052338,-0.68103588329358,-0.68103588329358,-0.5393724276860592,-0.5393724276860592,-0.3222970770213442,-0.3222970770213442,-0.5761320467198294,-0.634324275766163,-0.615328185882798,-0.704487558561211,-0.33511454226220616,-0.5959556708904321,-0.648036386660142,-0.6245112051013669,-0.650419961761573,-0.36895812516022,13.912930199587834,13.912930199587834,14.25498973689264,14.25498973689264,14.749007373277081,14.749007373277081,11.088009507128561,11.088009507128561,7.159715240054055,7.159715240054055,11.954340310427412,13.445647276047168,12.942673337814085,15.438968466916123,7.335682953108275,12.445860842538963,13.818441373879637,13.183864089097568,13.884075944370991,7.833863017116144,186.69040923746707,186.69040923746707,0.0,207.43378804163007,0.0,186.69040923746707,207.43378804163007,0,0
+2017/02/26 23:00:00,131.187581579857,0,1007.2335690941804,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,0.5001337637721834,18.455587739177986,0,0,266.46615259082506,581.0608301969069,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,635.1930975064738,0.0,322.94852194448725,0.0,1267.7466158423802,0.0,144.29907322402227,0.0,0.0,0.0,3379.157470042965,0.0,5922.0662621191095,0.0,4132.841177841491,0.0,5848.083695201177,0.0,4042.775939544488,0.0,3389.712551846673,0.0,5856.253005937348,0.0,4067.1906982861383,0.0,5794.331394623299,0.0,8277.418663936007,0,0,0,0,0,0,0,0,0.053625861283193695,0.0016966848706914156,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7534088255111331,-0.7534088255111331,-0.7611421944862726,-0.7611421944862726,-0.7707765156456955,-0.7707765156456955,-0.6947518750373072,-0.6947518750373072,-0.46307082863765053,-0.46307082863765053,-0.5929629274694447,-0.6532583973841696,-0.6304307347728288,-0.6802634442135377,-0.3590050181665011,-0.6154240571888248,-0.6700637837048404,-0.6424050342002297,-0.671507487466945,-0.3972958852760915,16.954542657486357,16.954542657486357,17.203521790440618,17.203521790440618,17.517277667811342,17.517277667811342,15.149654905999583,15.149654905999583,9.476470539422778,9.476470539422778,12.370563752682656,13.962556908898605,13.34127935128744,14.726686180394836,7.682293299613065,12.945172481367635,14.434367538087514,13.66435385764919,14.475470011821486,8.288545108870977,131.187581579857,131.187581579857,0.0,145.76397953317445,0.0,131.187581579857,145.76397953317445,0,0
+2017/02/27 00:00:00,89.01765077284824,0,840.4590957054132,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.5267674904146518,9.547927021141026,0,0,291.43478309084327,495.78878384575387,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1823.9096530565957,0.0,1058.0571424915768,0.0,2342.983344633766,0.0,926.0941406533896,0.0,0.0,0.0,3470.3722464084817,0.0,5897.949721652152,0.0,4215.0869018261465,0.0,5819.454548233889,0.0,5612.396498740398,0.0,3578.41572838747,0.0,5892.5704147000115,0.0,4239.577907933419,0.0,5825.4013851818245,0.0,9595.898977218872,0,0,0,0,0,0,0,0,0.04474666478901145,0.0014157532829260052,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8303558464045626,-0.8303558464045626,-0.8338759383569577,-0.8338759383569577,-0.8494575066742852,-0.8494575066742852,-0.80115933802629,-0.80115933802629,-0.5594752087716478,-0.5594752087716478,-0.6058236763877898,-0.6661474262487556,-0.6419232182361723,-0.6753450598264181,-0.3796147673090085,-0.6295549992753902,-0.6847498103594203,-0.6554875937322349,-0.6854392164410846,-0.42031346409190795,19.545101718357614,19.545101718357614,19.66959232990635,19.66959232990635,20.226864157516403,20.226864157516403,18.532616735171175,18.532616735171175,11.554521263378248,11.554521263378248,12.696892758235606,14.323322676516895,13.651234060533298,14.585164962844132,8.000827722693245,13.317895508604906,14.856689152620135,14.024437610421629,14.876743463934332,8.683137394117225,89.01765077284824,89.01765077284824,0.0,98.90850085872026,0.0,89.01765077284824,98.90850085872026,0,0
+2017/02/27 01:00:00,39.34478921694965,0,569.7469974255197,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5784939235665674e-09,9.547468217947973,0,0,0.0,516.5114686567034,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030333752158333973,0.000959738773920224,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7929698391696481,-0.7929698391696481,-0.8126691458788036,-0.8126691458788036,-0.8347927431995545,-0.8347927431995545,-0.7682128417847193,-0.7682128417847193,-0.2523250827259618,-0.2523250827259618,-0.804292137508011,-0.8761749408585119,-0.8575764583316976,-0.8839933984400993,-0.18205657853549143,-0.8245058472756326,-0.8925074490685828,-0.8689728241030824,-0.8943630641522325,-0.28880404371940455,18.255080546994336,18.255080546994336,18.927469708705488,18.927469708705488,19.702100940742568,19.702100940742568,17.433401006198054,17.433401006198054,6.321591692271639,6.321591692271639,18.63953562599815,21.20587664333806,20.521243090828662,21.49793719012925,5.687112153062856,19.339360968369988,21.818829683348383,20.93906355908652,21.889160260880843,6.732745723274121,39.34478921694965,39.34478921694965,0.0,43.716432463277386,0.0,39.34478921694965,43.716432463277386,0,0
+2017/02/27 02:00:00,23.72223125416701,0,46.073067569677015,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251358304892205,0,0,0.0,10.582715057132875,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002452964244037907,7.761007882423441e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8326593562187743,-0.8326593562187743,-0.8583728103046274,-0.8583728103046274,-0.8811876021574165,-0.8811876021574165,-0.8128472167407578,-0.8128472167407578,-0.12491094883706709,-0.12491094883706709,-0.8867303890539312,-0.982254477784093,-0.9740019221228502,-0.9881208297837136,-0.12366446425497016,-0.9514233738300079,-1.0353601327603448,-1.0205866837981523,-1.037302297822179,-0.27966204707651027,19.626508346651093,19.626508346651093,20.550264743243005,20.550264743243005,21.3928373561169,21.3928373561169,18.933622485907392,18.933622485907392,5.323209024230039,5.323209024230039,21.600770431415327,25.37846070782507,25.037888836391048,25.62215210863357,5.31678628361874,24.119633808394795,27.631981344548848,26.99445905505243,27.71639022718304,6.62443968545395,23.72223125416701,23.72223125416701,0.0,26.35803472685223,0.0,23.72223125416701,26.35803472685223,0,0
+2017/02/27 03:00:00,28.34440890737558,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.525045820902685,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.816836487224843,-0.816836487224843,-0.8432475447388681,-0.8432475447388681,-0.8635548071653224,-0.8635548071653224,-0.7981141403267712,-0.7981141403267712,-0.0492044669938869,-0.0492044669938869,-0.9069415496609671,-1.0063539517273785,-0.9979973774950424,-1.0108547789014952,-0.10231592828861849,-0.9979203834521005,-1.0870124114041322,-1.0722389123351863,-1.0877675022206272,-0.26911861945137544,19.07181161000942,19.07181161000942,20.003552129612032,20.003552129612032,20.739755139969503,20.739755139969503,18.429085498616203,18.429085498616203,5.05012300164978,5.05012300164978,22.36959616174812,26.38795306077853,26.035403978568795,26.57892752244163,5.216805516662504,26.032168041493833,29.923074230495544,29.258098384997666,29.95726603200849,6.5039074923458315,28.34440890737558,28.34440890737558,0.0,31.493787674861757,0.0,28.34440890737558,31.493787674861757,0,0
+2017/02/27 04:00:00,23.72222942871323,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251340050354378,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8681342222671871,-0.8681342222671871,-0.8984336127819009,-0.8984336127819009,-0.9159884591505094,-0.9159884591505094,-0.8553795566997625,-0.8553795566997625,0.008485740460314447,0.008485740460314447,-0.9880004660671636,-1.086963615393892,-1.0823684370683875,-1.0921392846239821,-0.07581039328258107,-1.0841626852661346,-1.1732179891360448,-1.1618978464772138,-1.1754131587376515,-0.27940605077529984,20.908135268821198,20.908135268821198,22.04393146319518,22.04393146319518,22.71910556131337,22.71910556131337,20.441317205757414,20.441317205757414,5.001490602103033,5.001490602103033,25.617138867145215,29.920865342505067,29.713221777673198,30.15561474520534,5.119000857924917,29.794211706629994,33.949145277581906,33.40686932475883,34.05475487559731,6.621457627856472,23.72222942871323,23.72222942871323,0.0,26.358032698570256,0.0,23.72222942871323,26.358032698570256,0,0
+2017/02/27 05:00:00,43.088596210459045,0,383.25777393272375,0,0,0,0.0,0.016602765625925886,4.633261998087618,9.319298099999997,25.555573451546493,0,1.7805218239754725,1.258262067281132,0.5250760039424006,0,0,294.5318926513634,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,177.97809106219347,0.0,219.61316462818962,0.11364135134105405,412.6939014682852,0.0,125.16718823102767,0.0,0.0,2.6012904657967377,3115.1948453634955,1.6719981115718632,2261.293062889869,2.482107079593788,3680.734693522011,1.3653854934259975,2275.594866537003,0.0,0.0,3.055232203705953,3215.5718144684356,1.2747470046775153,2228.136399326689,2.4959211490460493,3634.360752591589,1.5424427667669276,2242.653200750707,0.0,0.0,0,0,0,0,0,0,0,0,0.020404927765766415,0.0006455976911009014,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.825487870106173,-0.825487870106173,-0.8387011626654275,-0.8387011626654275,-0.8470579721723718,-0.8470579721723718,-0.8154355403986506,-0.8154355403986506,0.14317992287162,0.14317992287162,-0.7134176111064717,-0.7667533051078211,-0.7553722174083253,-0.7693334854849402,-0.04474561820873967,-0.7686806793993104,-0.8222570038468463,-0.8012073339704211,-0.8234876224399964,-0.27155298770699104,19.37379780693891,19.37379780693891,19.84108232893078,19.84108232893078,20.14038581052155,20.14038581052155,19.023206167030082,19.023206167030082,5.4247566974063375,5.4247566974063375,15.707937274654313,17.38577406783665,17.017512605905452,17.47003102955769,5.041449651251654,17.448686508780156,19.26065277300603,18.534251651754076,19.30369738306159,6.531321128534643,43.088596210459045,43.088596210459045,0.0,47.87621801162116,0.0,43.088596210459045,47.87621801162116,0,0
+2017/02/27 06:00:00,75.88058358802219,0,311.9725917377371,0,0,0,0.0,0.013987246213138748,5.555297838843742,9.319298099999997,57.911447091112116,0,1.452306924020546,1.0506709480061587,0.5775754398264578,0,0,99.0304766624723,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.782343275015819,2184.76435314218,1.4286640893657818,1666.508767064242,2.2103386028596788,2747.509100199076,1.4662763035033777,1684.0171488617157,0.0,0.0,2.0681631938330156,2711.4689234012912,1.4827690560971973,1930.8333429246434,2.1698923182154886,3166.5549379568806,1.3787993742483877,1936.59841057273,0.0,0.0,0,0,0,0,0,0,0,0,0.01660965186429564,0.0005255178071039001,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6314787932259674,-0.6314787932259674,-0.663319065539972,-0.663319065539972,-0.6676802972290422,-0.6676802972290422,-0.6294711576336368,-0.6294711576336368,0.4683506541762633,0.4683506541762633,-0.6633772489774553,-0.706537132694166,-0.6929334468026171,-0.7082757117197888,0.07479558934692417,-0.6856155413524861,-0.7292503011561012,-0.7065296993795629,-0.72984538881563,-0.14825642488281907,13.369308289352745,13.369308289352745,14.243540071958051,14.243540071958051,14.366706777587538,14.366706777587538,13.315658518775649,13.315658518775649,9.579889240690292,9.579889240690292,14.245177823999114,15.500396551175896,15.096070642461669,15.552645802420955,5.115835481452052,14.881875924912634,16.193255385700468,15.500173438800488,16.211706876773448,5.45544000518278,75.88058358802219,75.88058358802219,0.0,84.31175954224688,0.0,75.88058358802219,84.31175954224688,0,0
+2017/02/27 07:00:00,102.07090725219852,0,819.7295502349365,0,0,0,0.22693853294308172,0.009895245759623928,11.110595677687485,13.929299233552332,73.80580873715317,0,1.4758305140078078,0.9874797816971476,0.5250595293978658,0,0,83.2220744039134,505.8201844994862,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,721.0121371868232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.590980043349191,2125.663900105552,0.0,1591.229262707657,1.6737224879041908,2602.249895387449,1.1565680285439914,1612.6057619879916,0.0,0.0,1.4318597464736436,2264.067457230288,1.0411613498301904,1604.4276889749158,1.6392637215018717,2627.5553216655103,1.3616903820208486,1617.9906577046531,0.0,0.0,0,0,0,0,0,0,0,0,0.043643008433650744,0.0013808343651543328,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5509856331285563,-0.5509856331285563,-0.5878029107622478,-0.5878029107622478,-0.588139856816282,-0.588139856816282,-0.5564954737763249,-0.5564954737763249,0.7214686213842354,0.7214686213842354,-0.6476717698121954,-0.6874711132560405,-0.6750459864413015,-0.6896353097733463,0.15696147305636465,-0.6635995485843409,-0.7043659823376532,-0.682728095504343,-0.705794875046648,-0.05048363561982779,11.355372593817762,11.355372593817762,12.24165117314925,12.24165117314925,12.250033825525605,12.250033825525605,11.484266650801459,11.484266650801459,15.953375780084869,15.953375780084869,13.808422936960383,14.935969368014014,14.576593208330308,14.999247838473764,5.510552814109886,14.251436481474684,15.435330382266628,14.797997475486198,15.47812930833885,5.052763273927653,102.07090725219852,102.07090725219852,0.0,113.41211916910947,0.0,102.07090725219852,113.41211916910947,0,0
+2017/02/27 08:00:00,149.21830590040608,0,983.4062634714992,0,0,0,0.0,0.0,9.66444695022629,0.0,69.33401494192633,0,39.380909295966944,0.3458528076486428,27.061106702183594,0,0,117.57321208272934,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1446.806950839241,0.0,864.3824242700264,0.0,1916.4501203915725,0.0,820.577232362308,0.0,0.0,0.0,5139.184799242419,0.0,6195.60143071632,0.0,5884.127501986969,0.0,6135.161760700312,0.0,2269.8165178399986,0.0,5073.314438446789,0.0,6076.712607703759,0.0,5746.231743303509,0.0,5981.270586265624,0.0,3002.5144303428597,0,0,0,0,0,0,0,0,0.052357277882798016,0.0016565477761784709,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6629189941324275,-0.6629189941324275,-0.6777706724216425,-0.6777706724216425,-0.6952589345343566,-0.6952589345343566,-0.6621610403668389,-0.6621610403668389,0.23458606495488674,0.23458606495488674,-0.6299687118621479,-0.6752513846012572,-0.65913169264538,-0.6740082739471679,-0.18418710191422238,-0.6427872111246067,-0.6892927579025417,-0.6653763549379927,-0.6866429859339345,-0.27549713213327315,14.23228280077359,14.23228280077359,14.654828545277198,14.654828545277198,15.164622074902482,15.164622074902482,14.210974391067765,14.210974391067765,6.141889617007479,6.141889617007479,13.32893829367599,14.582479717043356,14.126058633436287,14.546881306336033,5.703311838705474,13.674767654098645,14.989218553202193,14.301537888094387,14.91180949231952,6.576266564631879,149.21830590040608,149.21830590040608,0.0,165.79811766711785,0.0,149.21830590040608,165.79811766711785,0,0
+2017/02/27 09:00:00,165.06793267564592,0,1119.8271253898172,0,0,0,0.0,0.0,11.598026356796904,0.0,83.2008179303116,0,39.380909295966944,0.35846141480500754,27.097742475311204,0,0,200.75854523223109,599.655407544689,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,456.8554656023052,0.0,365.02539123075167,0.0,1120.9097249357926,0.0,193.44399453781435,0.0,0.0,0.0,4631.785292685923,0.0,5957.781672459956,0.0,5489.986102910399,0.0,5797.168807104479,0.0,167.06168426777376,0.0,4397.31705102936,0.0,5775.855477924809,0.0,5234.74853062985,0.0,5545.501578830691,0.0,827.265272573976,0,0,0,0,0,0,0,0,0.059620425619171157,0.0018863487077257096,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6840852809350675,-0.6840852809350675,-0.7009814089607548,-0.7009814089607548,-0.7176001925534035,-0.7176001925534035,-0.678272934707594,-0.678272934707594,-0.22385050201961948,-0.22385050201961948,-0.6027549410819788,-0.6591892143608615,-0.6398937843231032,-0.6491265596975756,-0.2921156269193078,-0.6109246839632936,-0.6712090922062873,-0.6440685282800767,-0.6568868073057781,-0.3437705868236998,14.837377937118163,14.837377937118163,15.334305401834882,15.334305401834882,15.835096620180266,15.835096620180266,14.669285331643351,14.669285331643351,6.039550928482811,6.039550928482811,12.618374498639682,14.127667323652474,13.59608330284442,13.848430018682294,6.772848776900247,12.828314142055063,14.46696725402822,13.709728002598908,14.063388668878474,7.458464586677977,165.06793267564592,165.06793267564592,0.0,183.40881408405102,0.0,165.06793267564592,183.40881408405102,0,0
+2017/02/27 10:00:00,181.8608826997469,0,1179.5030364385213,0,0,0,0.0,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,0.33191474652119307,21.242559367764443,0,0,207.19892751211862,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,167.52415822629953,0.0,752.3039503494814,0.0,0.0,0.0,0.0,0.0,4716.862485707743,0.0,6074.330834533278,0.0,5675.09265688531,0.0,5906.10414061325,0.0,0.0,0.0,4124.052282052783,0.0,5675.289914175334,0.0,5105.221181606126,0.0,5445.792214160138,0.0,1253.251138589796,0,0,0,0,0,0,0,0,0.06279761532574933,0.0019868727753579274,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6726543293472774,-0.6726543293472774,-0.7027548679971249,-0.7027548679971249,-0.7155876485022558,-0.7155876485022558,-0.6772259597156739,-0.6772259597156739,-0.29485749128948424,-0.29485749128948424,-0.5792517674415245,-0.6445658485194092,-0.6244507094191565,-0.6337966555819935,-0.30463685829014503,-0.5827933045226069,-0.6521264146472542,-0.6259588115261867,-0.6382144827096026,-0.3482500664554031,14.508185088124094,14.508185088124094,15.387179124314912,15.387179124314912,15.773816934611048,15.773816934611048,14.639162231910746,14.639162231910746,6.806403092825136,6.806403092825136,12.030562153048592,13.723316412561815,13.182263204286443,13.431465684701053,6.9286683350564715,12.117601734812254,13.931216430827874,13.222219164494888,13.550582601317174,7.523253869903513,181.8608826997469,181.8608826997469,0.0,202.0676474441632,0.0,181.8608826997469,202.0676474441632,0,0
+2017/02/27 11:00:00,212.4188666306316,0,1302.7970865539278,0,0,0,0.0,0.0,16.73568395689411,0.0,133.89528835348938,0,39.380909295966944,0.4827810217306452,18.492228800096235,0,0,278.98442954827794,562.438074342576,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3512.2365885675345,0.0,6397.575630457572,0.0,4544.98562684472,0.0,6247.995591915829,0.0,365.94996163833434,0.0,2889.129544561268,0.0,6000.120651761725,0.0,3985.034616482738,0.0,5804.705016338774,0.0,6422.777990523045,0,0,0,0,0,0,0,0,0.06936188187861843,0.002194561593419469,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5629258450584476,-0.5629258450584476,-0.6363111734382817,-0.6363111734382817,-0.6642776310657138,-0.6642776310657138,-0.595225012571435,-0.595225012571435,-0.22091281387001765,-0.22091281387001765,-0.559535674764011,-0.6384356486148671,-0.6149071442917331,-0.6285339941639807,-0.31746585120757687,-0.5569226251795302,-0.6421337296623874,-0.6127373154280951,-0.6300511497009105,-0.3573946318439059,11.636359638809552,11.636359638809552,13.499160287024424,13.499160287024424,14.27054054304132,14.27054054304132,12.427441694864427,12.427441694864427,6.012389036200631,6.012389036200631,11.55595088412609,13.55656810115029,12.931702478469148,13.290674694417461,7.095196318071615,11.494314161176689,13.656965025739453,12.875286376711898,13.33113960549575,7.658166279994958,212.4188666306316,212.4188666306316,0.0,236.020962922924,0.0,212.4188666306316,236.020962922924,0,0
+2017/02/27 12:00:00,228.34810033539293,0,1263.7776268612354,0,0,0,0.0,0.0,16.73568395689411,0.0,147.76209134187457,0,39.380909295966944,0.27013482594418825,20.767305712258764,0,0,149.5121078846564,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4212.398864060882,0.0,5333.1088995384425,0.0,5179.10119101406,0.0,5248.992570143929,0.0,0.0,0.0,3508.154526246258,0.0,4873.124153056389,0.0,4526.600588257367,0.0,4767.147722216363,0.0,0.0,0,0,0,0,0,0,0,0,0.06728445694260557,0.002128833316528656,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49775922171467424,-0.49775922171467424,-0.5579542400172153,-0.5579542400172153,-0.5741516316742011,-0.5741516316742011,-0.4756329412682953,-0.4756329412682953,-0.1157909500891667,-0.1157909500891667,-0.5304532518596262,-0.6145156018586304,-0.5924286217268998,-0.6107735105577807,-0.30530174797631926,-0.519587289256371,-0.611976655927489,-0.5847411549928839,-0.6081793061594966,-0.33762246960500353,10.177926454382487,10.177926454382487,11.51861256428353,11.51861256428353,11.906173399709104,11.906173399709104,9.724502407723364,9.724502407723364,5.277708773854883,5.277708773854883,10.886636420129676,12.92150716700121,12.357161573827213,12.824403101373974,6.93712785035153,10.645964087838266,12.855557407035846,12.16570561783685,12.757442414692648,7.370929186803039,228.34810033539293,228.34810033539293,0.0,253.72011148376993,0.0,228.34810033539293,253.72011148376993,0,0
+2017/02/27 13:00:00,207.74081801153832,0,1200.680320298371,0,0,0,0.0,0.0,16.67307048032785,0.0,129.49988082968767,0,39.380909295966944,0.23762238595093407,18.517359817150652,0,0,159.11808281586318,562.4424785631618,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5311.4068274409465,0.0,4542.448152120818,0.0,6294.310089056127,0.0,4535.081758578595,0.0,0.0,0.0,4573.271907442408,0.0,4018.8808528653863,0.0,5562.354043133195,0.0,4009.7713880722767,0.0,0.0,0,0,0,0,0,0,0,0,0.06392510960460306,0.002022545908412515,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4490566140544895,-0.4490566140544895,-0.5247226313677964,-0.5247226313677964,-0.583414833458113,-0.583414833458113,-0.3965808811073431,-0.3965808811073431,-0.06983750562882335,-0.06983750562882335,-0.5071477445315874,-0.5799585574804141,-0.5701191952181599,-0.5847259237583653,-0.2869321135261827,-0.49053484394562935,-0.5705263477311704,-0.5588774799503203,-0.5780451921069742,-0.3127524020046191,9.207788173777061,9.207788173777061,10.759070843115097,10.759070843115097,12.1329330535212,12.1329330535212,8.27665091634205,8.27665091634205,5.100984138418028,5.100984138418028,10.376710433456395,12.04788930835349,11.808623947270732,12.165328830405485,6.7102816259028515,10.027556809593449,11.818441436102361,11.540397460739499,12.001032706903345,7.033203222294617,207.74081801153832,207.74081801153832,0.0,230.82313112393146,0.0,207.74081801153832,230.82313112393146,0,0
+2017/02/27 14:00:00,205.28000947595297,0,1174.5587510290745,0,0,0,0.0,0.0,16.67307048032785,0.0,129.2730206906943,0,39.380909295966944,0.23044817998195408,16.290585626527598,0,0,169.5019851466018,561.4273594756711,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4576.58813076761,0.0,4500.8370624899035,0.0,5543.5931790412415,0.0,4536.33151877641,0.0,0.0,0.0,3878.067634195847,0.0,4014.1504631123107,0.0,4874.445182258845,0.0,4055.012604369596,0.0,0.0,0,0,0,0,0,0,0,0,0.06253437790828521,0.0019785441269609787,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.436038487589148,-0.436038487589148,-0.4655470681267747,-0.4655470681267747,-0.6032261404133424,-0.6032261404133424,-0.3596213894424252,-0.3596213894424252,-0.0874346287907985,-0.0874346287907985,-0.5010003834601948,-0.5609157075037478,-0.5611713141904605,-0.5743295912114655,-0.28709491658970254,-0.48603407009921984,-0.5482273224950993,-0.5503257975438706,-0.5674976683836623,-0.31156480249212537,8.965771284516507,8.965771284516507,9.524824391360198,9.524824391360198,12.630404289358424,12.630404289358424,7.691557072545891,7.691557072545891,5.158305595732742,5.158305595732742,10.246121299973538,11.588622632999076,11.594683089024528,11.910494706462345,6.712229470693188,9.935016177581616,11.291340581384205,11.340025019807456,11.745584436546494,7.01773184307028,205.28000947595297,205.28000947595297,0.0,228.08889941772551,0.0,205.28000947595297,228.08889941772551,0,0
+2017/02/27 15:00:00,189.28322237927924,0,1080.1590905810378,0,0,0,0.0,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,0.15092394197625134,14.064082293488804,0,0,131.28069663922182,540.7393400475586,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3595.059808735989,0.0,5239.572684963229,0.0,4500.692997198003,0.0,5346.6091362206025,0.0,0.0,0.0,2970.4125892658158,0.0,4785.692040657885,0.0,3895.424961920817,0.0,4909.078660829554,0.0,0.0,0,0,0,0,0,0,0,0,0.057508470063573916,0.0018195279061010738,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46825873670147744,-0.46825873670147744,-0.4515085035782243,-0.4515085035782243,-0.5796840763061631,-0.5796840763061631,-0.368308408651554,-0.368308408651554,-0.14835210080535127,-0.14835210080535127,-0.508584534420291,-0.5604502686379884,-0.567339741986776,-0.5832740505663702,-0.30223568062857536,-0.49827250979087395,-0.5486560485638027,-0.5608434901166413,-0.5804240759102944,-0.3277026052166239,9.578078532218399,9.578078532218399,9.254186106656107,9.254186106656107,12.041157751301839,12.041157751301839,7.823840107583578,7.823840107583578,5.456028589211627,5.456028589211627,10.407467864965156,11.577594315287115,11.741796321497034,12.129458878878253,6.898273405075315,10.188695913454396,11.301271474326455,11.586910866022848,12.059313462549198,7.23307656179351,189.28322237927924,189.28322237927924,0.0,210.3146915325325,0.0,189.28322237927924,210.3146915325325,0,0
+2017/02/27 16:00:00,182.94524856438906,0,1271.2526904097701,0,0,0,0.0,0.0,16.86091074341296,0.0,108.75639138185811,0,39.380909295966944,0.4442096147479917,14.070852325948763,0,0,322.3773764090208,540.7362601064918,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3000.075450055416,0.0,5659.366908296873,0.0,3810.786978825827,0.0,5815.705691189512,0.0,106.10711447810567,0.0,2449.299178303526,0.0,5234.203178956737,0.0,3290.618395805476,0.0,5424.576444714716,0.0,4872.977063452516,0,0,0,0,0,0,0,0,0.06768243486275898,0.002141425060508815,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4751764667106296,-0.4751764667106296,-0.45692762904658074,-0.45692762904658074,-0.608810612634372,-0.608810612634372,-0.3918758496453716,-0.3918758496453716,-0.18757726093839755,-0.18757726093839755,-0.527713203876459,-0.5750445052907633,-0.5824606348266578,-0.6043681206049081,-0.3203444770601717,-0.5246176485703364,-0.5677419590543765,-0.5807357406091362,-0.607124651734807,-0.35017910572448757,9.715370477569309,9.715370477569309,9.357651674727606,9.357651674727606,12.773710583415877,12.773710583415877,8.198927285434024,8.198927285434024,5.729480129552655,5.729480129552655,10.825464628135322,11.927868471780656,12.109402624143542,12.65959919513746,7.133520016419396,10.75674715113216,11.751446266681029,12.066967191587565,12.73030355677676,7.551417478826096,182.94524856438906,182.94524856438906,0.0,203.27249840487673,0.0,182.94524856438906,203.27249840487673,0,0
+2017/02/27 17:00:00,206.21203852444052,0,1212.9794792890943,0,0,0,0.0,0.0,17.375450766104244,0.0,131.64086955684016,0,39.380909295966944,0.3679723516078421,14.014861351466994,0,0,210.85621651982945,540.7486801061908,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3321.5861066586913,0.0,5576.938118750874,0.0,4049.56622270132,0.0,5715.370972122313,0.0,0.0,0.0,2814.818805582955,0.0,5178.20356708606,0.0,3605.740645158714,0.0,5371.587951715966,0.0,3023.441250146793,0,0,0,0,0,0,0,0,0.06457992593933823,0.0020432638407988984,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4727174444400272,-0.4727174444400272,-0.4600665013864274,-0.4600665013864274,-0.5835992719396073,-0.5835992719396073,-0.37865250807235773,-0.37865250807235773,-0.15208187246408372,-0.15208187246408372,-0.5480603115945837,-0.5947076076528025,-0.5965826345141381,-0.621598385016289,-0.3267270126985074,-0.5534702605799356,-0.5950082853832065,-0.5992017032729042,-0.6288538627206666,-0.3579853507684232,9.666331453236225,9.666331453236225,9.418159235562257,9.418159235562257,12.13748584192706,12.13748584192706,7.985552380941982,7.985552380941982,5.4792706690861195,5.4792706690861195,11.287474142951936,12.414412459888041,12.46168442397024,13.106962986933993,7.219744636751429,11.41333361098674,12.421982680048473,12.527970111526827,13.299197781220272,7.667003687119504,206.21203852444052,206.21203852444052,0.0,229.12448724937835,0.0,206.21203852444052,229.12448724937835,0,0
+2017/02/27 18:00:00,218.35124541668972,0,1182.3932427988268,0,0,0,0.0,0.0,22.951150428284603,0.0,133.89528835348938,0,39.380909295966944,0.24011698760155167,18.45180514889291,0,0,139.97437852933646,581.0442816064168,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3524.2792630196695,0.0,4574.170757810274,0.0,4170.404132472779,0.0,4604.352621342616,0.0,0.0,0.0,3319.8549646440088,0.0,4344.823361679644,0.0,4005.262644066511,0.0,4448.306559422957,0.0,0.0,0,0,0,0,0,0,0,0,0.0629514920531671,0.0019917413277524983,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4315488338734943,-0.4315488338734943,-0.4426375176778833,-0.4426375176778833,-0.5361343831428717,-0.5361343831428717,-0.32138100914300866,-0.32138100914300866,-0.11405937033949377,-0.11405937033949377,-0.5494909536816625,-0.6070974409322892,-0.5919707507199782,-0.6188038407103668,-0.3201141541554889,-0.5572850834997393,-0.6050794682138907,-0.5953977024473689,-0.6271040301455293,-0.348779046511026,8.883993867164435,8.883993867164435,9.087541904023027,9.087541904023027,11.014504015080377,11.014504015080377,7.147405552828374,7.147405552828374,5.269460220714933,5.269460220714933,11.320633851609955,12.729603994586057,12.345686492216927,13.033530526675321,7.130440759957054,11.502846157285575,12.677813519606005,12.431792938788007,13.2526267395329,7.530961131277337,218.35124541668972,218.35124541668972,0.0,242.61249490743302,0.0,218.35124541668972,242.61249490743302,0,0
+2017/02/27 19:00:00,218.73147069304179,0,1179.457847143089,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.22747611677416177,25.82752387974696,0,0,153.9182094478704,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4916.90583578251,0.0,4050.267449023732,0.0,5509.069651257636,0.0,4061.996138364011,0.0,0.0,0.0,4755.171558077414,0.0,3887.9382871303374,0.0,5368.444722715889,0.0,3925.0130242285186,0.0,0.0,0,0,0,0,0,0,0,0,0.0627952094141885,0.001986796653993201,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44510939515138176,-0.44510939515138176,-0.49966451157822905,-0.49966451157822905,-0.5622711577131446,-0.5622711577131446,-0.30480119974827946,-0.30480119974827946,-0.10233501251204546,-0.10233501251204546,-0.5451494925133843,-0.5947747033687443,-0.584408920742044,-0.6063668010797468,-0.3015864297627693,-0.5554239403089581,-0.5999368590055707,-0.5897325542374175,-0.6159008100885547,-0.32811982923798916,9.13363679999226,9.13363679999226,10.217959236666985,10.217959236666985,11.620792796957986,11.620792796957986,6.930757542144605,6.930757542144605,5.216886440007613,5.216886440007613,11.2202804550885,12.416101401343852,12.157489154208392,12.71083199945916,6.890096843816849,11.459096716954491,12.546629587979908,12.28972415171556,12.957606252332624,7.238790446242689,218.73147069304179,218.73147069304179,0.0,243.0349674367131,0.0,218.73147069304179,243.0349674367131,0,0
+2017/02/27 20:00:00,210.84537032428645,0,1209.956028917299,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.3156924780447836,27.0977424753112,0,0,219.90674373462448,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4713.507740469402,0.0,3950.8652225523997,0.0,5286.451444576683,0.0,3956.014196388848,0.0,0.0,0.0,4849.449755596431,0.0,3991.8867562636524,0.0,5433.2530718966245,0.0,4009.2222954483623,0.0,0.0,0,0,0,0,0,0,0,0,0.06441895520205398,0.0020381708388770843,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4432734256500478,-0.4432734256500478,-0.5349411954499863,-0.5349411954499863,-0.5801577939322442,-0.5801577939322442,-0.29933061752021545,-0.29933061752021545,-0.12485632576774751,-0.12485632576774751,-0.5425118435845383,-0.5871281434818455,-0.5794425127097508,-0.5980017390699317,-0.29453445775542636,-0.5570608823856683,-0.5963639874350128,-0.5885472592112179,-0.6102880083061762,-0.3223542359290759,9.099375047791028,9.099375047791028,10.987532478227152,10.987532478227152,12.052777561931904,12.052777561931904,6.861826050439916,6.861826050439916,5.322926215666669,5.322926215666669,11.159709774585025,12.224878908407177,12.035236191078795,12.497563412610049,6.8024333765709315,11.49756795974804,12.45616417626735,12.260175893478745,12.811849272670003,7.160484493437934,210.84537032428645,210.84537032428645,0.0,234.2726336936516,0.0,210.84537032428645,234.2726336936516,0,0
+2017/02/27 21:00:00,212.77612551332243,0,1144.577619091628,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.29533005930193656,24.577066287863182,0,0,190.01868642149782,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5230.780218245352,0.0,4312.945067635588,0.0,5782.963390058309,0.0,4312.975459327634,0.0,0.0,0.0,5393.281952260673,0.0,4382.51386119864,0.0,5964.562418171319,0.0,4388.572712816794,0.0,0.0,0,0,0,0,0,0,0,0,0.06093816023671125,0.0019280409124878793,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4971836059747421,-0.4971836059747421,-0.5556591558536583,-0.5556591558536583,-0.6046347156119932,-0.6046347156119932,-0.33746448414255165,-0.33746448414255165,-0.1643307748996577,-0.1643307748996577,-0.5446361427929867,-0.5870611225322929,-0.5798181429005022,-0.5971220735124811,-0.2897494246652429,-0.5635211022157282,-0.6002710696043059,-0.5924544603077274,-0.6123304624901857,-0.3186129983554898,10.165862818538955,10.165862818538955,11.464617580521946,11.464617580521946,12.666422888059316,12.666422888059316,7.368700987918018,7.368700987918018,5.5596765842552855,5.5596765842552855,11.2084683201725,12.223214089666428,12.044445280327068,12.475312674632178,6.744146992083174,11.650529512434545,12.555120165070008,12.357809406946203,12.864730845254797,7.110426427423462,212.77612551332243,212.77612551332243,0.0,236.4179172370249,0.0,212.77612551332243,236.4179172370249,0,0
+2017/02/27 22:00:00,199.42379237928222,0,1195.0178153995982,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.4301124533515008,27.0977424753112,0,0,275.949235242012,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4612.494969103851,0.0,5711.346083679527,0.0,5153.916114017813,0.0,5718.547225280082,0.0,0.0,0.0,4818.543574789564,0.0,5838.725713114302,0.0,5413.117117872585,0.0,5843.988817950347,0.0,1216.4839080404229,0,0,0,0,0,0,0,0,0.06362363364953727,0.0020130074193403093,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5893619668147115,-0.5893619668147115,-0.5904935936166263,-0.5904935936166263,-0.6638579289007999,-0.6638579289007999,-0.4328837993646126,-0.4328837993646126,-0.24154939577644055,-0.24154939577644055,-0.5611154063870333,-0.6094616105573998,-0.5951329664948871,-0.6180318462379415,-0.30506149836430935,-0.5867668793383628,-0.628237303520543,-0.6131258778141266,-0.6379391798744803,-0.3381040214109386,12.280479214500517,12.280479214500517,12.30872826835045,12.30872826835045,14.258713650671282,14.258713650671282,8.90821935721101,8.90821935721101,6.210854568094163,6.210854568094163,11.593357268218085,12.79050429703858,12.425122950855837,13.013304508640573,6.934068951972293,12.215907314649272,13.282773165138451,12.885374078537765,13.543134936593745,7.3777274473655865,199.42379237928222,199.42379237928222,0.0,221.5819915325358,0.0,199.42379237928222,221.5819915325358,0,0
+2017/02/27 23:00:00,140.8880310505366,0,1063.482107904937,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.5650912198156608,21.138007022944706,0,0,304.12011405379957,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,633.5974338279968,0.0,316.33980934897033,0.0,1358.4891687967395,0.0,16.289643015427917,0.0,0.0,0.0,4016.035630318958,0.0,6098.9875347658535,0.0,4612.908469206871,0.0,6106.913003372258,0.0,4328.664399749281,0.0,4369.765783963449,0.0,6293.863261938635,0.0,4971.402174616105,0.0,6294.718957966688,0.0,7513.68900776944,0,0,0,0,0,0,0,0,0.05662057515314605,0.0017914355300489432,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.719727098080085,-0.719727098080085,-0.7195870895457359,-0.7195870895457359,-0.7626212308884137,-0.7626212308884137,-0.6273195976972198,-0.6273195976972198,-0.47359510001240446,-0.47359510001240446,-0.5815384048084667,-0.6355349478879357,-0.6132841483946114,-0.6429233818513335,-0.33378576177246333,-0.611948647003305,-0.659246724949254,-0.6361395917046053,-0.6670550844541135,-0.372536074610072,15.900048083295175,15.900048083295175,15.895766511669933,15.895766511669933,17.25143127186891,17.25143127186891,13.258356802258234,13.258356802258234,9.68380417042438,9.68380417042438,12.086698082792196,13.478233862675594,12.889484914327141,13.67847964988836,7.317116591524979,12.854831428331039,14.129275846000851,13.494532329671344,14.348999397396057,7.8893810101586865,140.8880310505366,140.8880310505366,0.0,156.54225672281845,0.0,140.8880310505366,156.54225672281845,0,0
+2017/02/28 00:00:00,91.42433275930964,0,965.5841219095466,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.710466549583646,11.770909948433406,0,0,393.4680818043435,518.880511336387,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2613.3303202964157,0.0,1526.4048050969136,0.0,3192.6374652579225,0.0,1267.4780456343897,0.0,0.0,0.0,3957.431118278906,0.0,7088.703002333015,0.0,4581.957568970968,0.0,7096.888004317935,0.0,12871.140949556262,0.0,4448.419585274617,0.0,7350.397389716822,0.0,5039.648193999423,0.0,7346.984496395793,0.0,16080.247493673838,0,0,0,0,0,0,0,0,0.051408413865060586,0.0016265263800700391,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8179910737453037,-0.8179910737453037,-0.8207641634896607,-0.8207641634896607,-0.8519097029756085,-0.8519097029756085,-0.7705556861554085,-0.7705556861554085,-0.5958726143845012,-0.5958726143845012,-0.6073114125462686,-0.6674084481037228,-0.6374732659374754,-0.6736770466441654,-0.3669378215604708,-0.6416432259464092,-0.6953454731470448,-0.6645895900285063,-0.7014288756823498,-0.4103707090092787,19.111931758593485,19.111931758593485,19.208521584805453,19.208521584805453,20.31548787436904,20.31548787436904,17.510041674928374,17.510041674928374,12.443765905914319,12.443765905914319,12.735105855391481,14.35900534152826,13.530538230406705,14.537407380999525,7.802755635481319,13.643614525547363,15.167177594683153,14.279336255868145,15.347633323396892,8.509904082834026,91.42433275930964,91.42433275930964,0.0,101.58259195478848,0.0,91.42433275930964,101.58259195478848,0,0
+2017/02/28 01:00:00,39.33781276753306,0,569.709129502896,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5784955978841626e-09,9.540491768531382,0,0,0.0,516.4736007340798,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030331736042084462,0.0009596749854074385,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7538086562993315,-0.7538086562993315,-0.7710011980926821,-0.7710011980926821,-0.8137369749001836,-0.8137369749001836,-0.7018986313368795,-0.7018986313368795,-0.2709542657210083,-0.2709542657210083,-0.7635376105206586,-0.8346210118318275,-0.8071601938345953,-0.8463869337665845,-0.15804071388408433,-0.8369458489844411,-0.9027856598703634,-0.8747220445563918,-0.9148264264757263,-0.24917217692173113,16.96735266180434,16.96735266180434,17.524642045988955,17.524642045988955,18.964385795420938,18.964385795420938,15.361634425799167,15.361634425799167,6.524555714373733,6.524555714373733,17.28116186234199,19.696008911130832,18.73778282015634,20.116244719460454,5.517605576920076,19.778585282066373,22.210151130785192,21.151879983678356,22.67402787485986,6.288685603935988,39.33781276753306,39.33781276753306,0.0,43.70868085281451,0.0,39.33781276753306,43.70868085281451,0,0
+2017/02/28 02:00:00,23.7221677921116,0,41.30179998737052,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250723684338062,0,0,0.0,5.811447474826384,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0021989384238462026,6.957287894397219e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8467845069273875,-0.8467845069273875,-0.8714388617258434,-0.8714388617258434,-0.9165555421849358,-0.9165555421849358,-0.8015696391378139,-0.8015696391378139,-0.1163678762325202,-0.1163678762325202,-0.9153652987626215,-1.0075267069521605,-0.9899149036639555,-1.0271794144730824,-0.09335405591835254,-1.0185812706054895,-1.0960653867257983,-1.0766746689482156,-1.116448014058035,-0.24781832635995976,20.130545437104942,20.130545437104942,21.030181011944634,21.030181011944634,22.741123649579038,22.741123649579038,18.546596228669685,18.546596228669685,5.280484685985428,5.280484685985428,22.694925097687673,26.437640723190214,25.696942423080188,27.277959763790307,5.180474724158614,26.908542727823473,30.33430310423644,29.456956143965726,31.270390175382843,6.2746840440093195,23.7221677921116,23.7221677921116,0.0,26.35796421345733,0.0,23.7221677921116,26.35796421345733,0,0
+2017/02/28 03:00:00,28.39715255844688,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5777894719739821,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8264086123853298,-0.8264086123853298,-0.8539262006796914,-0.8539262006796914,-0.8973535733371516,-0.8973535733371516,-0.7826744252235155,-0.7826744252235155,-0.03430926071781248,-0.03430926071781248,-0.9222459635317103,-1.018260745945095,-0.9989593480828671,-1.0376130757793711,-0.07113434234421763,-1.0744861030690627,-1.1571624799374274,-1.1357997041968846,-1.177884085522977,-0.23266968839372487,19.406122472929184,19.406122472929184,20.388552457085154,20.388552457085154,22.002800258555254,22.002800258555254,17.910211731980226,17.910211731980226,5.02436837155031,5.02436837155031,22.962781255607723,26.894824639625483,26.07585305199831,27.72990984701518,5.104770233850573,29.358754924331592,33.181201435737435,32.17192820262237,34.173805510923515,6.123266927686345,28.39715255844688,28.39715255844688,0.0,31.552391731607642,0.0,28.39715255844688,31.552391731607642,0,0
+2017/02/28 04:00:00,23.72207157948416,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249761558063705,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9728193902926509,-0.9728193902926509,-1.0071812792702843,-1.0071812792702843,-1.0462444921120044,-1.0462444921120044,-0.9350214852301446,-0.9350214852301446,-0.010585578952993065,-0.010585578952993065,-1.0946580657864011,-1.1918278117830834,-1.1720808401587566,-1.2106950800906595,-0.05190861118877175,-1.2312755423710626,-1.3154785338157193,-1.2941392636223301,-1.336611998412829,-0.28474342583592954,24.98930305091595,24.98930305091595,26.42300014837167,26.42300014837167,28.106806896660245,28.106806896660245,23.46514924484191,23.46514924484191,5.002319595476791,5.002319595476791,30.270191043821626,34.84904381637659,33.89449455400009,35.771756705148306,5.055784320279045,36.789693997557556,41.067282707695085,39.96732443344777,42.16615801927473,6.684203858008033,23.72207157948416,23.72207157948416,0.0,26.357857310537955,0.0,23.72207157948416,26.357857310537955,0,0
+2017/02/28 05:00:00,43.96646367991922,0,436.54333614605105,0,0,0,0.0,0.019732961988606825,4.633261998087618,9.319298099999997,25.555573451546493,0,2.323981583566914,1.5897107221804436,0.524904862549169,0,0,347.8174548646907,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.27958088859384134,948.3591587949768,0.1310546027512828,749.8530970853681,0.15696240828474403,1349.892478600532,0.12666107193163043,559.72059388071,0.0,0.0,2.60150793812486,4282.92304005617,1.78934472412484,2986.7700645646505,2.122321079889662,4805.384505360879,2.1001710468087595,3056.1985825310776,0.0,0.0,2.8951918938352947,4632.05367693662,2.234134366778471,3114.8601057951737,3.1839287981982123,5028.719985397722,2.1121031692852283,3193.704045116309,0.0,0.0,0,0,0,0,0,0,0,0,0.023241890566975135,0.0007353572166049457,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8629109258529877,-0.8629109258529877,-0.8780557700830413,-0.8780557700830413,-0.8978029559088786,-0.8978029559088786,-0.8371130214785457,-0.8371130214785457,0.14049611400767875,0.14049611400767875,-0.7559971800050141,-0.8143492261127353,-0.788822841477943,-0.8220393683234954,-0.01524558196501965,-0.8363034492949849,-0.8915766821564814,-0.8621092084175945,-0.901134409741422,-0.27312444994982776,20.716149823058885,20.716149823058885,21.275906264860055,21.275906264860055,22.01990835680789,22.01990835680789,19.784531825728777,19.784531825728777,5.408968736742409,5.408968736742409,17.037591029946313,18.985573702513094,18.115625965978793,19.253046933195265,5.004811421277623,19.755745157486885,21.783605117349836,20.68678205118782,22.14699363578704,6.549150128405699,43.96646367991922,43.96646367991922,0.0,48.851626311021356,0.0,43.96646367991922,48.851626311021356,0,0
+2017/02/28 06:00:00,76.42428252113329,0,337.7092162629057,0,0,0,0.0618918604848466,0.017601585275425064,5.555297838843742,9.319298099999997,57.911447091112116,0,1.7856819322462238,1.2479090383626166,0.5251550748083523,0,0,124.76710118764093,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,196.16833267755658,0.0,0.0,0.0,0.0,0.0,0.0,1.9612730005783854,0.0,64.65364624649426,0.0,133.43674674848904,0.0,0.5427454816761552,0.0,0.0,2.3887798351125866,2845.2474859476615,1.613690266595711,2051.19430034477,2.3316100069448567,3331.050193568242,1.8324120093247984,2117.483344477102,0.0,0.0,2.437283585476962,3795.1241883395883,1.9813494119881625,2591.505999200318,2.960220442339164,4187.834026716779,2.056239717642825,2658.8773346467765,0.0,0.0,0,0,0,0,0,0,0,0,0.017979888817304984,0.0005688711491631699,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7330393638368305,-0.7330393638368305,-0.7609312077887002,-0.7609312077887002,-0.7769579837104793,-0.7769579837104793,-0.7113109562885691,-0.7113109562885691,0.46521983764747177,0.46521983764747177,-0.6948712371980748,-0.745172751610534,-0.7196446675060065,-0.7501942903269095,0.0985288961143963,-0.7342637206503219,-0.7827270729440634,-0.7520282253450733,-0.7867966096046796,-0.14692138371552124,16.311000452172294,16.311000452172294,17.196695051410103,17.196695051410103,17.72067126170613,17.72067126170613,15.644175967919637,15.644175967919637,9.518419372514913,9.518419372514913,15.15317718859383,16.692193715588758,15.897527189017424,16.851802273614624,5.201046446630301,16.34917921003141,17.91196383625541,16.910362821827903,18.047753590448664,5.447266795760655,76.42428252113329,76.42428252113329,0.0,84.91586946792587,0.0,76.42428252113329,84.91586946792587,0,0
+2017/02/28 07:00:00,102.06708816999296,0,829.2718592338553,0,0,0,0.0,0.012099095002045337,11.110595677687485,13.929299233552332,73.80580873715317,0,1.6461192938220923,1.0380762515203177,0.5250898812555242,0,0,92.78134047220308,505.80322743011527,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6368208439368268,2104.2812654325617,1.0495737042479807,1544.7784687694582,1.8781516532876594,2502.6109682896786,1.191748865601236,1594.7162677802005,0.0,0.0,1.483633035947605,2821.7682459982175,1.1767223195473282,1942.9985102580974,2.193245912499757,3125.168109845459,1.4891986669769417,1985.8177355690518,0.0,0.0,0,0,0,0,0,0,0,0,0.04415104803280506,0.0013969083839387624,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5793832003655096,-0.5793832003655096,-0.6217095312106233,-0.6217095312106233,-0.6384020534915732,-0.6384020534915732,-0.5680655473019326,-0.5680655473019326,0.7166667747007307,0.7166667747007307,-0.6728218845321507,-0.7214834394594329,-0.6954306363419417,-0.7260285612894377,0.16475084970022216,-0.7071794790215861,-0.75458596706484,-0.7230113785498238,-0.7580084068813097,-0.023678550625619615,12.033782627301349,12.033782627301349,13.109890591479797,13.109890591479797,13.555658766465328,13.555658766465328,11.759214852098523,11.759214852098523,15.806653409370739,15.806653409370739,14.51296957271505,15.953830088917059,15.169692813625417,16.093625399872366,5.56254499905522,15.519685702169426,16.992276163474585,16.00072605544463,17.102319924603734,5.011606519429634,102.06708816999296,102.06708816999296,0.0,113.40787574443661,0.0,102.06708816999296,113.40787574443661,0,0
+2017/02/28 08:00:00,148.63483564871152,0,1145.8406655991369,0,0,0,0.0,0.0,8.67022670655444,0.0,69.33401494192633,0,39.38090929596693,0.7360965192959282,27.08161298251359,0,0,280.00761421036697,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2434.927925603933,0.0,2090.4567651818256,0.0,3892.0775544671083,0.0,2028.4917777485912,0.0,0.0,0.0,6256.347791951655,0.0,8389.192913514002,0.0,7908.057292300876,0.0,7458.9911149172885,0.0,8815.664239504185,0.0,6451.711247295796,0.0,8588.247849810861,0.0,8220.750271420178,0.0,7419.728574693856,0.0,11528.825353482585,0,0,0,0,0,0,0,0,0.06100540576831799,0.0019301685142339142,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6056962940192759,-0.6056962940192759,-0.7173280949305514,-0.7173280949305514,-0.7434879696017541,-0.7434879696017541,-0.6909679959421915,-0.6909679959421915,0.06201653335549274,0.06201653335549274,-0.6199696976543438,-0.7301378472568503,-0.6983585875483819,-0.6551108507589445,-0.21564224593309936,-0.640296466417885,-0.7595322618121582,-0.7207254829857729,-0.6686476244264579,-0.30080602834498016,12.69362535587966,12.69362535587966,15.826801356319677,15.826801356319677,16.63888542696739,16.63888542696739,15.03831466823793,15.03831466823793,5.079628893443342,5.079628893443342,13.064124641656022,16.22078052250525,15.256357746309732,14.013964404446426,5.964563756895572,13.607012160795207,17.151478531022292,15.930603950109386,14.394136933314556,6.880292182210795,148.63483564871152,148.63483564871152,0.0,165.14981738745723,0.0,148.63483564871152,165.14981738745723,0,0
+2017/02/28 09:00:00,165.5512452418557,0,1216.8799627725116,0,0,0,0.0,0.0,11.86011032607099,0.0,83.2008179303116,0,39.380909295966944,0.5796900117406759,27.0977424753112,0,0,297.81138261492544,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1141.4077776958522,0.0,2408.4398748101335,0.0,0.0,0.0,0.0,0.0,3936.3166065278197,0.0,7297.156429481609,0.0,6691.491971597284,0.0,5895.143335037626,0.0,637.9193640549373,0.0,3649.336294614191,0.0,7405.480921374864,0.0,6859.772413361863,0.0,5609.56939507338,0.0,6399.229982080564,0,0,0,0,0,0,0,0,0.06478759056910947,0.0020498342049306726,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4373049504885613,-0.4373049504885613,-0.7263801131775521,-0.7263801131775521,-0.753413431820257,-0.753413431820257,-0.4561391580534703,-0.4561391580534703,-0.2637301048640109,-0.2637301048640109,-0.5224534219695439,-0.7185704701509056,-0.686282078019706,-0.5864157550554902,-0.3018733356318619,-0.5237802813914471,-0.7419275983349952,-0.702936812757614,-0.582948724381253,-0.3633933560978484,8.988995994290207,8.988995994290207,16.10447519109296,16.10447519109296,16.954690198054266,16.954690198054266,9.342519092702247,9.342519092702247,6.44411474111358,6.44411474111358,10.708950389846237,15.864702803196991,14.9012896020175,12.207192960549023,6.893707892273596,10.738229922333247,16.589622207488034,15.39261128375999,12.121433920819342,7.748600423852295,165.5512452418557,165.5512452418557,0.0,183.94582804650634,0.0,165.5512452418557,183.94582804650634,0,0
+2017/02/28 10:00:00,182.3309411210012,0,1159.892454111849,0,0,0,0.0,0.0,11.577736025229822,0.0,106.27511244621549,0,39.380909295966944,0.35877963863396345,21.306428512500716,0,0,187.58834518544663,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,172.14316913009034,0.0,804.8077196579322,0.0,0.0,0.0,0.0,0.0,1650.4993346124697,0.0,5931.492959717601,0.0,5236.928569722768,0.0,4595.316709296264,0.0,5.376355522288842,0.0,1462.7066691149416,0.0,5915.538222909936,0.0,5210.8353280810215,0.0,4280.025152500972,0.0,1026.8346104472746,0,0,0,0,0,0,0,0,0.06175353339698821,0.001953838750917065,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.34427447274473133,-0.34427447274473133,-0.7153635541782004,-0.7153635541782004,-0.7383604949940064,-0.7383604949940064,-0.3014144488188574,-0.3014144488188574,-0.29076635295724623,-0.29076635295724623,-0.41846104545894797,-0.6967738412033228,-0.6659540146292772,-0.5506123903762402,-0.31678046305223057,-0.38463056878053625,-0.7123250083688825,-0.6750527222053726,-0.5357193582028038,-0.3642488863540952,7.46571000121655,7.46571000121655,15.767004312466554,15.767004312466554,16.47739586787364,16.47739586787364,6.887933929545085,6.887933929545085,6.756453251967173,6.756453251967173,8.650541395199213,15.209404602670546,14.317855871245058,11.346688763049016,7.0861233617911665,8.081090839372393,15.674844012383971,14.57678621973028,11.005115545701557,7.761622899790325,182.3309411210012,182.3309411210012,0.0,202.5899345788902,0.0,182.3309411210012,202.5899345788902,0,0
+2017/02/28 11:00:00,212.5610772763457,0,1190.3476275010662,0,0,0,0.0,0.0,17.091304499026357,0.0,133.89528835348938,0,39.380909295966944,0.31449459088604714,18.447105334522703,0,0,166.54498897599746,562.4280558619951,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5875.8822061697665,0.0,3973.5834151577733,0.0,4791.84362436568,0.0,0.0,0.0,0.0,0.0,5745.882500015707,0.0,3763.463286415292,0.0,4452.125551064928,0.0,3137.8981988326414,0,0,0,0,0,0,0,0,0.06337498938658011,0.002005140488179693,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1869741557341565,-0.1869741557341565,-0.630521714773102,-0.630521714773102,-0.6778683715886017,-0.6778683715886017,-0.2538058456081112,-0.2538058456081112,-0.23580955711301207,-0.23580955711301207,-0.2934639494457786,-0.688243272330131,-0.6559024317932636,-0.5717730198499132,-0.33361474070912717,-0.26503442785212017,-0.6990727184486335,-0.6595282081451073,-0.5588528023103693,-0.371161488812584,5.724789717655938,5.724789717655938,13.343710602306814,13.343710602306814,14.657639798581485,14.657639798581485,6.337190285697943,6.337190285697943,6.153859702222391,6.153859702222391,6.789309555230588,14.958523128465544,14.03597695024908,11.848546611237325,7.3147324469487245,6.458475777910422,15.277551586295658,14.137150759278413,11.539814682984456,7.867987397110369,212.5610772763457,212.5610772763457,0.0,236.17897475149522,0.0,212.5610772763457,236.17897475149522,0,0
+2017/02/28 12:00:00,228.39083525020246,0,1236.9036009438346,0,0,0,0.0,0.0,16.86091082671979,0.0,147.76209134187457,0,39.380909295966944,0.23382656248433772,20.721122020702413,0,0,122.63808196725573,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4683.456661545426,0.0,4426.382202278419,0.0,3982.7368939115727,0.0,0.0,0.0,0.0,0.0,4389.594188755649,0.0,3981.3232997350146,0.0,3562.742884403163,0.0,0.0,0,0,0,0,0,0,0,0,0.065853663896993,0.002083564021910498,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.022083952030366137,-0.022083952030366137,-0.5440180964062249,-0.5440180964062249,-0.5770486177892757,-0.5770486177892757,-0.20914852062683215,-0.20914852062683215,-0.13774845954205484,-0.13774845954205484,-0.2307266995439595,-0.662239020755638,-0.6317291861244893,-0.5762962422562449,-0.325485260436001,-0.15089940119938472,-0.6649384939980167,-0.6281166900187203,-0.5629217714900752,-0.35302150466148347,5.010095874400449,5.010095874400449,11.194262274855788,11.194262274855788,11.976690409557108,11.976690409557108,5.907239358371939,5.907239358371939,5.393115720535846,5.393115720535846,6.104542946975599,14.213165510965325,13.376011768971338,11.95834145148983,7.2028339030640325,5.47183937658437,14.289178630141777,13.279562052206614,11.636262721982447,7.593204392325475,228.39083525020246,228.39083525020246,0.0,253.76759472244717,0.0,228.39083525020246,253.76759472244717,0,0
+2017/02/28 13:00:00,207.67727455382527,0,1101.9680714113324,0,0,0,0.0,0.0,16.735683873587277,0.0,129.49988082968767,0,39.380909295966944,0.10522242750035715,18.52360292462873,0,0,60.42025063930401,562.4280618526825,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2956.121709780493,0.0,4498.758360486376,0.0,2776.3424914142806,0.0,0.0,0.0,0.0,0.0,2567.7600793170886,0.0,3983.873651659286,0.0,2353.1363137006947,0.0,0.0,0,0,0,0,0,0,0,0,0.05866959635703629,0.001856265132654431,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.06898339488529738,0.06898339488529738,-0.4292808072323704,-0.4292808072323704,-0.538623954069469,-0.538623954069469,-0.13830888990313564,-0.13830888990313564,-0.0985167697505319,-0.0985167697505319,-0.1654988130701064,-0.5878655190948475,-0.6027618162660903,-0.5501146155642477,-0.3079704911254739,-0.03728996255202246,-0.5777096504320463,-0.5930544793896202,-0.5325783706471979,-0.3279705864424038,5.098528654583063,5.098528654583063,8.843011618758155,8.843011618758155,11.070978359829354,11.070978359829354,5.3963237072828605,5.3963237072828605,5.200996941089727,5.200996941089727,5.567670561814552,12.243208390709512,12.61854995386193,11.335116978264466,6.971270961024615,5.028786697214329,11.992831963161024,12.372861425053586,10.934303716137023,7.236745717386498,207.67727455382527,207.67727455382527,0.0,230.75252728202807,0.0,207.67727455382527,230.75252728202807,0,0
+2017/02/28 14:00:00,205.39924042819985,0,1094.729873053899,0,0,0,0.0,0.0,16.903073467207488,0.0,129.2730206906943,0,39.380909295966944,0.1400480251019324,16.270213746774846,0,0,89.67981965845327,561.4206469886442,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2846.8609997702697,0.0,4311.498878045117,0.0,3122.7608937642076,0.0,0.0,0.0,0.0,0.0,2363.8830785142527,0.0,3755.175501945985,0.0,2668.9475128598115,0.0,0.0,0,0,0,0,0,0,0,0,0.058284229315104755,0.0018440723880707045,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.03733936582149139,0.03733936582149139,-0.36758850730512954,-0.36758850730512954,-0.5375163845883428,-0.5375163845883428,-0.12350308470954091,-0.12350308470954091,-0.11871620928000516,-0.11871620928000516,-0.1258715527489451,-0.4994509082799379,-0.5955302005429454,-0.5453669441951778,-0.311572157068878,0.008325302792874053,-0.4701529080073518,-0.5851624810702323,-0.5288321099694455,-0.3303332951968793,5.028863028104652,5.028863028104652,7.812755498878772,7.812755498878772,11.045820691808984,11.045820691808984,5.315959468126849,5.315959468126849,5.291926536555067,5.291926536555067,5.328202780348718,10.2134633286948,12.435132353232191,11.225287443819113,7.017827470616481,5.00143476992146,9.61546590992242,12.176132294417329,10.850405027429133,7.269227381450307,205.39924042819985,205.39924042819985,0.0,228.22137825355537,0.0,205.39924042819985,228.22137825355537,0,0
+2017/02/28 15:00:00,189.40553413081665,0,1075.12250859339,0,0,0,0.0,0.0,16.798297266846703,0.0,115.5196477718057,0,39.380909295966944,0.19993787394045084,14.07476671980254,0,0,126.26641642810719,540.7170382710252,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2873.483732635913,0.0,3566.0334167639903,0.0,3971.9663125630227,0.0,0.0,0.0,0.0,0.0,2305.0499302032185,0.0,3055.4234991393632,0.0,3570.454519612333,0.0,0.0,0,0,0,0,0,0,0,0,0.05724031870792168,0.0018110437841251507,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.09022363207718885,-0.09022363207718885,-0.41667094410829747,-0.41667094410829747,-0.5650998322564303,-0.5650998322564303,-0.15746976733636328,-0.15746976733636328,-0.1804378240258906,-0.1804378240258906,-0.11125891928128007,-0.42850252452541526,-0.5988645987308073,-0.5579341801460892,-0.3293489256669284,-0.03818757887445313,-0.3874525263437779,-0.5913854800021203,-0.5456421453191885,-0.34982370612521646,5.168569700576114,5.168569700576114,8.619181732870814,8.619181732870814,11.688185017188914,11.688185017188914,5.5138684352189955,5.5138684352189955,5.674930468477967,5.674930468477967,5.256383616280928,8.828999276255445,12.519421680987705,11.518139639062753,7.2556658448875595,5.030189332748364,8.12672019920089,12.331031789722132,11.231627094745306,7.546216819492656,189.40553413081665,189.40553413081665,0.0,210.45059347868516,0.0,189.40553413081665,210.45059347868516,0,0
+2017/02/28 16:00:00,182.76296763886617,0,1069.5376258485549,0,0,0,0.0,0.0,16.903073467207488,0.0,108.75639138185811,0,39.380909295966944,0.21365589998590936,14.076962391393462,0,0,120.68258572739899,540.7159862268983,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2436.7777636228125,0.0,3026.2604143543604,0.0,4409.269816728047,0.0,0.0,0.0,0.0,0.0,1765.6192914042697,0.0,2589.5648995283095,0.0,4052.866532732958,0.0,0.0,0,0,0,0,0,0,0,0,0.056942975413826785,0.0018016360495653617,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2654003635817802,-0.2654003635817802,-0.33171859988980423,-0.33171859988980423,-0.5895151966966076,-0.5895151966966076,-0.17928450100715235,-0.17928450100715235,-0.21833769749615436,-0.21833769749615436,-0.14972773466449746,-0.3773570501743502,-0.6079514537728694,-0.5756243502879849,-0.34654580016866565,-0.11098473566654461,-0.3306500324143692,-0.6045821885298932,-0.5694696240647683,-0.36916169479330313,6.462517721449871,6.462517721449871,7.2883821966534725,7.2883821966534725,12.284301073335484,12.284301073335484,5.666318052411057,5.666318052411057,5.988876953998101,5.988876953998101,5.464533423466648,7.9650501006571375,12.75157512303413,11.941976088835162,7.4985035558427455,5.255120834737085,7.273599773444175,12.665078175214646,11.79297601303935,7.837007104377548,182.76296763886617,182.76296763886617,0.0,203.06996404318463,0.0,182.76296763886617,203.06996404318463,0,0
+2017/02/28 17:00:00,206.20185976754496,0,1097.653424863664,0,0,0,0.0,0.0,17.554200564925374,0.0,131.64086955684016,0,39.380909295966944,0.18896742792731708,14.004937719430833,0,0,95.5736543192242,540.7051878813659,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2142.9740606587566,0.0,3371.4465280292798,0.0,4626.8161551220055,0.0,0.0,0.0,0.0,0.0,1427.6605922265098,0.0,3040.5315445194806,0.0,4306.707303464489,0.0,0.0,0,0,0,0,0,0,0,0,0.05843988137895096,0.00184899711087236,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4148697825397014,-0.4148697825397014,-0.2778956363948815,-0.2778956363948815,-0.5870186612017925,-0.5870186612017925,-0.16799486932151256,-0.16799486932151256,-0.1736413931745948,-0.1736413931745948,-0.21354925146992676,-0.3545434036630761,-0.614353850326201,-0.5879819914522976,-0.3479449766266523,-0.14278429483578978,-0.30961495662497185,-0.6168199251593464,-0.5887483753826057,-0.3721211502220785,8.587766943603697,8.587766943603697,6.603919326218602,6.603919326218602,12.222159439458181,12.222159439458181,5.584944081681613,5.584944081681613,5.624978646911359,5.624978646911359,5.94589467014211,7.615719550918669,12.917297286438512,12.246105786763906,7.518814108683472,5.422410509755252,6.992459836182107,12.981604718890651,12.265185230129006,7.882914770018658,206.20185976754496,206.20185976754496,0.0,229.1131775194944,0.0,206.20185976754496,229.1131775194944,0,0
+2017/02/28 18:00:00,216.08689893164248,0,1110.2603472667608,0,0,0,0.0,0.0,20.7938680621195,0.0,133.89528835348938,0,39.380909295966944,0.12063527279215147,18.46422274482019,0,0,67.84116823123902,581.0445963724483,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2693.9691222686038,0.0,3871.120146600446,0.0,3931.834953376121,0.0,0.0,0.0,0.0,0.0,1512.3866641347572,0.0,3687.8440608963715,0.0,3714.544968405298,0.0,0.0,0,0,0,0,0,0,0,0,0.059111083265723306,0.0018702334707035274,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4962685205514791,-0.4962685205514791,-0.4395323468720014,-0.4395323468720014,-0.5546967998293092,-0.5546967998293092,-0.13014935077783812,-0.13014935077783812,-0.12846759005069822,-0.12846759005069822,-0.2894722004489867,-0.4691693743593541,-0.607533267811661,-0.5834293421845542,-0.33320521746653636,-0.2598073962057156,-0.384377415659458,-0.6121546239883845,-0.5892270487569287,-0.35811295882947825,10.146714112595902,10.146714112595902,9.030009705246599,9.030009705246599,11.442044803089502,11.442044803089502,5.350907009690374,5.350907009690374,5.341890369427986,5.341890369427986,6.740799764895684,9.596033506821001,12.740812527080408,12.133291142000658,7.309028473045217,6.4013559686045625,8.07701413001557,12.860171054508044,12.277114932649326,7.668914709269913,216.08689893164248,216.08689893164248,0.0,240.09655436849164,0.0,216.08689893164248,240.09655436849164,0,0
+2017/02/28 19:00:00,218.48662552608693,0,1145.0986882613745,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.19248063787663422,25.617674191689616,0,0,119.55905056615575,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,902.064377044703,0.0,2359.9837740031126,0.0,4889.148790487256,0.0,3321.328190873652,0.0,0.0,0.0,418.81771138073924,0.0,1770.5952671300824,0.0,4763.3736307868685,0.0,3160.3812705357363,0.0,0.0,0,0,0,0,0,0,0,0,0.06096590234526797,0.001928918653464769,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5459212908758683,-0.5459212908758683,-0.4726651764331953,-0.4726651764331953,-0.5694129899456525,-0.5694129899456525,-0.11850338019123484,-0.11850338019123484,-0.10949810877329219,-0.10949810877329219,-0.33131384280234866,-0.46416534383556657,-0.589823324946953,-0.5647265589653018,-0.30809673542183247,-0.3272524173669172,-0.4340760056029986,-0.5950047707684316,-0.5715486443709444,-0.33277448508052004,11.238060964427135,11.238060964427135,9.665291928628463,9.665291928628463,11.791612585067995,11.791612585067995,5.290880120414158,5.290880120414158,5.248328380398945,5.248328380398945,7.282777139089376,9.4978107082393,12.291989491047161,11.67927203084757,6.972893558287339,7.226919519478159,8.92991889469043,12.421894169262828,11.843123320198032,7.303036772214043,218.48662552608693,218.48662552608693,0.0,242.76291725120768,0.0,218.48662552608693,242.76291725120768,0,0
+2017/02/28 20:00:00,210.66255251479794,0,1087.6259568938276,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.14547635241254336,27.085140791454876,0,0,97.57667171115291,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1177.4294346690237,0.0,2523.165512971932,0.0,4883.773896316419,0.0,3338.4459961146663,0.0,0.0,0.0,908.5526032484023,0.0,2102.6367277164827,0.0,4763.800218901431,0.0,3186.094696709324,0.0,0.0,0,0,0,0,0,0,0,0,0.05790601155682449,0.0018321058418382422,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6063061375800434,-0.6063061375800434,-0.48572069952120683,-0.48572069952120683,-0.5989642391318201,-0.5989642391318201,-0.12953473130138118,-0.12953473130138118,-0.1281851008810665,-0.1281851008810665,-0.354207827817158,-0.4651712471666848,-0.5794224250257856,-0.5537727058404097,-0.29662746343012586,-0.35618418012374015,-0.445684452503304,-0.5865093957855583,-0.5628684608099882,-0.32197838693641123,12.709274441641142,12.709274441641142,9.92860551038676,9.92860551038676,12.52194788829614,12.52194788829614,5.347598134205555,5.347598134205555,5.3403873604153205,5.3403873604153205,7.610746531314092,9.517468684092748,12.034743886415086,11.42040728024358,6.828232311906945,7.6401038094691955,9.144397976516416,12.209516453471764,11.634994440402139,7.1554287984753415,210.66255251479794,210.66255251479794,0.0,234.06950279421991,0.0,210.66255251479794,234.06950279421991,0,0
+2017/02/28 21:00:00,212.64564150531757,0,1066.2775474223552,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.16633122967002748,24.575581109490223,0,0,111.71861475222472,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1796.9398898976485,0.0,2861.1907175706447,0.0,5180.212687618842,0.0,3563.764102524629,0.0,0.0,0.0,1601.0954402983455,0.0,2513.008262139346,0.0,5068.223221694683,0.0,3421.2878900465694,0.0,0.0,0,0,0,0,0,0,0,0,0.056769406423654085,0.0017961444477038637,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5428441842824091,-0.5428441842824091,-0.5457098089045198,-0.5457098089045198,-0.6290369106322778,-0.6290369106322778,-0.17400722798236684,-0.17400722798236684,-0.1678452324910438,-0.1678452324910438,-0.36926917224302225,-0.4680721118066501,-0.5754215166766149,-0.5481815666660431,-0.28897669757790345,-0.37699333248230177,-0.45594792972797016,-0.5840612853364282,-0.5592062398740842,-0.3146914808548571,11.167325010105685,11.167325010105685,11.233186324773044,11.233186324773044,13.304077198080833,13.304077198080833,5.627618340518296,5.627618340518296,5.583901225509919,5.583901225509919,7.838667781994587,9.574403275382267,11.937039492295312,11.290281176422198,6.73482510756061,7.959306677925596,9.338853010814987,12.148896933689073,11.548163849319309,7.0585928106474825,212.64564150531757,212.64564150531757,0.0,236.2729350059084,0.0,212.64564150531757,236.2729350059084,0,0
+2017/02/28 22:00:00,199.2244560875421,0,1088.8225224631808,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.23077616161139652,27.0977424753112,0,0,169.7539423055947,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1482.2499600246617,0.0,4069.9296125277524,0.0,4551.011360749238,0.0,4676.197034550738,0.0,0.0,0.0,1361.9046379398505,0.0,3781.9187186468594,0.0,4465.7001174110665,0.0,4542.979589563352,0.0,0.0,0,0,0,0,0,0,0,0,0.057969717594040945,0.0018341214564489999,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5501910422325137,-0.5501910422325137,-0.5397595753467878,-0.5397595753467878,-0.6721443965205118,-0.6721443965205118,-0.2516498536905828,-0.2516498536905828,-0.2470246670573388,-0.2470246670573388,-0.39332315468282003,-0.4919961416920535,-0.5874215682641624,-0.5658314508654768,-0.30565180840090844,-0.40759543034708845,-0.48763213712354175,-0.5993390817107096,-0.5809774928814813,-0.3331712490227477,11.336892973189705,11.336892973189705,11.09682838451053,11.09682838451053,14.49363159694667,14.49363159694667,6.314509328306002,6.314509328306002,6.26651181316258,6.26651181316258,8.222734903158937,10.05779069802216,12.232169955235875,11.705672071550211,6.94158924934932,8.46230633675313,9.967773988330094,12.531455222907397,12.072906943670617,7.308555669146955,199.2244560875421,199.2244560875421,0.0,221.36050676393566,0.0,199.2244560875421,221.36050676393566,0,0
+2017/02/28 23:00:00,140.74800874319212,0,1026.3987107882706,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.4616272030228045,21.101448732393102,0,0,267.0367169371328,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1178.5953706054888,0.0,0.0,0.0,0.0,0.0,1967.51501364328,0.0,5103.497603218078,0.0,4750.0817343503295,0.0,5615.508983774479,0.0,518.1925677846929,0.0,1926.291528056417,0.0,4874.823619002404,0.0,4728.802032609705,0.0,5486.160254519905,0.0,4432.777156693971,0,0,0,0,0,0,0,0,0.05464622762273527,0.001728968550420501,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6586004322263315,-0.6586004322263315,-0.6762134147519738,-0.6762134147519738,-0.7726177264926786,-0.7726177264926786,-0.47522866613981524,-0.47522866613981524,-0.48065237408286376,-0.48065237408286376,-0.4288148602669925,-0.5293815383209028,-0.6120913035281387,-0.5991229576781738,-0.33291731874317604,-0.45066240764303717,-0.534442068634044,-0.6284064034194063,-0.620763000403713,-0.36690232168947845,14.111207830837657,14.111207830837657,14.610074854318981,14.610074854318981,17.577690169609482,17.577690169609482,9.716414290075392,9.716414290075392,9.825510585505683,9.825510585505683,8.834619502216384,10.862671620551737,12.858529376134342,12.525972808046347,7.305022786526422,9.238145924726311,10.976268206702159,13.287276202107591,13.084976008798108,7.802210585731615,140.74800874319212,140.74800874319212,0.0,156.38667638132458,0.0,140.74800874319212,156.38667638132458,0,0
+2017/03/01 00:00:00,91.29221990222885,0,886.1895178673735,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.5867930811673465,11.762470559768934,0,0,314.1142846546973,518.83970444386,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1003.36723569645,0.0,886.6427559598819,0.0,2923.2593766465116,0.0,445.03387844010723,0.0,0.0,0.0,2230.812061793037,0.0,6037.449114257151,0.0,4797.552908422134,0.0,6472.462356196716,0.0,8521.354748498004,0.0,2241.130399550679,0.0,5854.316297644368,0.0,4837.886662546203,0.0,6437.688560549323,0.0,12539.903517427952,0,0,0,0,0,0,0,0,0.04718138633774278,0.0014927861755869467,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7896299741256226,-0.7896299741256226,-0.8078139328430666,-0.8078139328430666,-0.8707138560756619,-0.8707138560756619,-0.7028085814097575,-0.7028085814097575,-0.6196648768387351,-0.6196648768387351,-0.46626222450095656,-0.5741984563771791,-0.6421673209180827,-0.6400946342542371,-0.37143386449862514,-0.4948021934715831,-0.5872053212287612,-0.6613545549414789,-0.6642554330372125,-0.4104426381384691,18.142710906166016,18.142710906166016,18.760225707352035,18.760225707352035,21.003366807688664,21.003366807688664,15.388782648264325,15.388782648264325,13.056119918198078,13.056119918198078,9.538838503909162,11.907310288489043,13.657879692223204,13.601533523773412,7.872220164228793,10.116105768542198,12.22679626625326,14.188328935433617,14.269914828142603,8.511142097526502,91.29221990222885,91.29221990222885,0.0,101.43579989136539,0.0,91.29221990222885,101.43579989136539,0,0
+2017/03/01 01:00:00,39.40071449273615,0,580.1116530928174,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.02614749982262497,0.018732671088570498,9.558513325401776,0,0,10.439818913823473,516.4363054101777,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.5311288541836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030885574103230454,0.000977198035605123,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7159391012019862,-0.7159391012019862,-0.7810907724648609,-0.7810907724648609,-0.8798716338797186,-0.8798716338797186,-0.6711725612345814,-0.6711725612345814,-0.2971761322531419,-0.2971761322531419,-0.5139057157752969,-0.7355520889447011,-0.91043951123597,-0.9004217118391271,-0.15700261014163672,-0.5523481643393338,-0.7293746846865574,-0.9171311999697326,-0.8987318929051602,-0.2703411412433425,15.78450569662256,15.78450569662256,17.857563220182556,17.857563220182556,21.343654893091,21.343654893091,14.465926570682356,14.465926570682356,6.835025971636867,6.835025971636867,10.522156170710758,16.38942355260008,22.504341032281985,22.119768360848468,5.510820752368488,11.387124378331407,16.197110805354058,22.76348791094287,22.055299242920327,6.517643208909561,39.40071449273615,39.40071449273615,0.0,43.77857165859572,0.0,39.40071449273615,43.77857165859572,0,0
+2017/03/01 02:00:00,23.763755790753702,0,40.73831632053124,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5666603670759092,0,0,0.0,5.247963807987107,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0021689381360475704,6.862369074994908e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.775927325664482,-0.775927325664482,-0.860891802255574,-0.860891802255574,-0.9770625026668898,-0.9770625026668898,-0.7554754103825861,-0.7554754103825861,-0.13238762451908476,-0.13238762451908476,-0.6106105259253838,-0.8286300474822093,-1.0553496728783087,-1.003151126607452,-0.08950832259556668,-0.6647636165977228,-0.8474726520906276,-1.1055081150199535,-1.0525932012768804,-0.27482468102947766,17.686645643542818,17.686645643542818,20.64223801545063,20.64223801545063,25.163887993191494,25.163887993191494,17.020826776154138,17.020826776154138,5.363089794893682,5.363089794893682,12.820187600931135,19.48425721726322,28.507320412462192,26.25251919735753,5.165906444149456,14.284244783221084,20.15531359367506,30.766223499652483,28.385754576921798,6.5685572931862595,23.763755790753702,23.763755790753702,0.0,26.404173100837447,0.0,23.763755790753702,26.404173100837447,0,0
+2017/03/01 03:00:00,28.344223517857202,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248604313843095,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8109310342496626,-0.8109310342496626,-0.9020233210880403,-0.9020233210880403,-1.0199744380557783,-1.0199744380557783,-0.8025004588220956,-0.8025004588220956,-0.050038821584225235,-0.050038821584225235,-0.6802394726944557,-0.9038245037226115,-1.139200833847096,-1.0813792293784081,-0.06805349932490165,-0.7494159618136631,-0.9386802409302519,-1.21243296593336,-1.1527397178300918,-0.28024941992537167,18.867483971605623,18.867483971605623,22.18097922278821,22.18097922278821,26.96821320649616,26.96821320649616,18.57833686667874,18.57833686667874,5.051837466259201,5.051837466259201,14.725993887680701,22.2499418289285,32.3316379654792,29.66861819768134,5.095889681502754,16.826992509417934,23.610220543497192,35.85726019281246,32.97106345576847,6.6312923391561185,28.344223517857202,28.344223517857202,0.0,31.493581686508,0.0,28.344223517857202,31.493581686508,0,0
+2017/03/01 04:00:00,23.722047068526045,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249516448482522,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.878662458683002,-0.878662458683002,-0.9761456664125634,-0.9761456664125634,-1.0931236780360745,-1.0931236780360745,-0.8870643837351359,-0.8870643837351359,0.018211879946238473,0.018211879946238473,-0.7697186237729453,-0.990709480960404,-1.2357692851580537,-1.1699993850229347,-0.03908324130786157,-0.852108785747502,-1.0416281129371596,-1.3271491926663472,-1.2608197529230838,-0.29345592207301224,21.298526335686887,21.298526335686887,25.12610530737483,25.12610530737483,30.200367675472762,30.200367675472762,21.613340150227344,21.613340150227344,5.0068658903498715,5.0068658903498715,17.482632257187888,25.730105651414064,37.013498121418806,33.79456302386056,5.031622176707202,20.32269380567432,27.904891545649463,41.67299403674627,38.2708084034497,6.789211327099352,23.722047068526045,23.722047068526045,0.0,26.35783007614005,0.0,23.722047068526045,26.35783007614005,0,0
+2017/03/01 05:00:00,43.25258545297588,0,380.0117369221852,0,0,0,0.0,0.016878596348930158,4.633261998087618,9.319298099999997,25.555573451546493,0,1.8834103798040829,1.3191297933944044,0.525033133794336,0,0,291.2858556408249,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.83975604574776,0.11608103036713725,433.44291782389416,0.5361901007066245,1372.329266798974,0.0,244.9542482719257,0.0,0.0,1.351341977868411,2066.656388450487,1.121657134835955,2101.293423642786,4.518799079888182,4995.761136719797,1.4891270704733865,2807.6509566646137,0.0,0.0,1.905500894578298,2204.926634429909,1.5369633214185423,1953.9834090104318,2.594107673383405,4971.154569253788,1.708828065410216,2768.6283953565644,0.0,0.0,0,0,0,0,0,0,0,0,0.02023210635096409,0.0006401297420030193,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8563883556131103,-0.8563883556131103,-0.8950422667939982,-0.8950422667939982,-0.9410093846079934,-0.9410093846079934,-0.8423113846992792,-0.8423113846992792,0.1527508460032283,0.1527508460032283,-0.62656888383066,-0.7300658733689178,-0.824279813760546,-0.8066659816990358,-0.00790744996723501,-0.6792534995370323,-0.7739427050768314,-0.8788946668456011,-0.8657835647421414,-0.28655417051026516,20.477993647781275,20.477993647781275,21.914938141333664,21.914938141333664,23.702849167917705,23.702849167917705,19.970026935815184,19.970026935815184,5.483500655842789,5.483500655842789,13.238410577837783,16.21854716136886,19.331440326994255,18.7208284746322,5.001294359635082,14.697540717129485,17.621253833774915,21.307188097501296,20.821595919464443,6.705764069089966,43.25258545297588,43.25258545297588,0.0,48.05842828108431,0.0,43.25258545297588,48.05842828108431,0,0
+2017/03/01 06:00:00,76.12117689888801,0,319.44879068808166,0,0,0,0.09110981201546743,0.01330047972311934,5.555297838843742,9.319298099999997,57.911447091112116,0,1.59197944759509,1.1137157875195054,0.5250283420789457,0,0,106.50667561281678,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,289.02667756961836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,355.041516607519,0.0,0.0,0.0,0.0,1.080370355004959,1489.9185958542264,1.0122706143274627,1548.3445895063617,2.242046321423686,3887.0148083321146,1.79391405796855,2130.697376113128,0.0,0.0,1.613291966114275,1848.5257919266492,1.4736462038154627,1703.3034725667949,2.590630202587363,4365.2613314571945,1.4943100018775795,2411.8471330237107,0.0,0.0,0,0,0,0,0,0,0,0,0.01700769023408239,0.0005381114636683216,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6949807373342856,-0.6949807373342856,-0.7834433999357864,-0.7834433999357864,-0.8327790692302686,-0.8327790692302686,-0.7111641960218883,-0.7111641960218883,0.4777209749752347,0.4777209749752347,-0.6056521163069494,-0.6895117884383598,-0.7545871788689319,-0.744653830340487,0.10284354481820865,-0.640383818116366,-0.7114195824168175,-0.7698587973736014,-0.7706906596375717,-0.1850609393454399,15.15640899191935,15.15640899191935,17.9358147462749,17.9358147462749,19.63074510937649,19.63074510937649,15.639741159271225,15.639741159271225,9.766388797420262,9.766388797420262,12.692492346561522,14.995630777564486,16.992315038650986,16.675761525753416,5.219048352848844,13.609383828421059,15.647459035326676,17.487220126835396,17.514464148543368,5.710010981075058,76.12117689888801,76.12117689888801,0.0,84.5790854432089,0.0,76.12117689888801,84.5790854432089,0,0
+2017/03/01 07:00:00,101.98024520169618,0,821.6686995664344,0,0,0,0.0,0.011689333083972317,11.110595677687485,13.929299233552332,73.80580873715317,0,1.6027837341827769,0.9950110022929207,0.5250574837435812,0,0,85.21671963582293,505.7646885990746,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.42080122207852,0.0,0.0,0.0,0.0,1.5175301116712487,1398.6708688136023,1.3940177577794657,1393.378821448002,1.7543832085822635,3344.2541430971996,1.5043857417039512,1858.9645131574894,0.0,0.0,1.2413375394955133,1550.0874806876072,1.0140765906260942,1396.5858148998116,1.6244451644887095,3436.3144782394043,1.6391569696250672,1918.1131508843944,0.0,0.0,0,0,0,0,0,0,0,0,0.04374625018040052,0.0013841008620560618,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5921773504077663,-0.5921773504077663,-0.6870214164876922,-0.6870214164876922,-0.7598937288025174,-0.7598937288025174,-0.6202678350473778,-0.6202678350473778,0.728525033154712,0.728525033154712,-0.5950806966048082,-0.6731152881545513,-0.7320391155652125,-0.7235826408940963,0.16503756626076008,-0.6254164872460085,-0.6908700819186662,-0.7412842800413498,-0.7421487305666143,-0.07436480251688171,12.35086313030935,12.35086313030935,14.922846187581015,14.922846187581015,17.1631537976198,17.1631537976198,13.071957756056904,13.071957756056904,16.1707880642722,16.1707880642722,12.423806377333392,14.521350546226572,16.2798578081225,16.018285216795164,5.564507022481564,13.207839352879205,15.035441769801565,16.56934210823873,16.59659732618232,5.114504681601403,101.98024520169618,101.98024520169618,0.0,113.3113835574402,0.0,101.98024520169618,113.3113835574402,0,0
+2017/03/01 08:00:00,148.52385270523627,0,1072.9239331998006,0,0,0,0.0,0.0,8.67022670655444,0.0,69.33401494192633,0,39.380909295966944,0.6101829408548447,27.096543617479433,0,0,207.0908818110308,599.655407544689,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1212.323961438809,0.0,1621.3555210847207,0.0,3454.8045683019104,0.0,1510.1649746345367,0.0,0.0,0.0,4919.962452123813,0.0,7227.37063915645,0.0,7766.927790259072,0.0,6709.633546238977,0.0,4561.894815145762,0.0,4542.50190014773,0.0,7063.729519746503,0.0,7567.469900102697,0.0,5699.508612875595,0.0,8442.763454807366,0,0,0,0,0,0,0,0,0.05712326492546753,0.0018073402840415185,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6240740169651263,-0.6240740169651263,-0.7614804509370893,-0.7614804509370893,-0.8080163123868247,-0.8080163123868247,-0.7290803987705073,-0.7290803987705073,0.05838394195292695,0.05838394195292695,-0.5278715311161617,-0.6675089596820162,-0.7148812906029024,-0.6325910159092695,-0.21845905339002658,-0.5540912687809146,-0.6897147167141588,-0.7239393269653439,-0.7122590662699372,-0.31143252792258164,13.172298442216444,13.172298442216444,17.214470471536657,17.214470471536657,18.767177062844752,18.767177062844752,16.187990128301337,16.187990128301337,5.070572262322585,5.070572262322585,10.82899044748423,14.361852443307171,15.752350505307476,13.399105333677113,5.989978754578118,11.427862202398941,15.001573450917789,16.029255967185065,15.67284837364663,7.016012340009823,148.52385270523627,148.52385270523627,0.0,165.02650300581806,0.0,148.52385270523627,165.02650300581806,0,0
+2017/03/01 09:00:00,165.4065480619775,0,1143.8266421245073,0,0,0,0.0,0.0,11.86011032607099,0.0,83.2008179303116,0,39.380909295966944,0.4349928318624775,27.0977424753112,0,0,224.75806196692133,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,970.582806466502,0.0,2469.734212023192,0.0,0.0,0.0,0.0,0.0,3186.5495698954337,0.0,6641.648657860105,0.0,7029.1986255322545,0.0,5704.483580477459,0.0,70.1191562640498,0.0,2829.4637381208486,0.0,6368.623649332434,0.0,6634.958270903058,0.0,5164.360437495391,0.0,4052.182062944309,0,0,0,0,0,0,0,0,0.0608981776667281,0.0019267758918437626,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49215223583108914,-0.49215223583108914,-0.7616130575056291,-0.7616130575056291,-0.7985565351052948,-0.7985565351052948,-0.4789664413173161,-0.4789664413173161,-0.2738901820405523,-0.2738901820405523,-0.4408019975497314,-0.6568555128679545,-0.6978512295205874,-0.5671052573962254,-0.30100657299471745,-0.4433939386752883,-0.6758244405766237,-0.703731954072667,-0.5773640188825016,-0.3665600104026026,10.061025697993728,10.061025697993728,17.218764013582174,17.218764013582174,18.44410175673643,18.44410175673643,9.791462641005197,9.791462641005197,6.5578754415087275,6.5578754415087275,9.05348354985911,14.06251657233301,15.241313851352515,11.736173832382988,6.882809289158402,9.101619545291783,14.598912589027634,15.416367859234896,11.984389727305128,7.796957641251026,165.4065480619775,165.4065480619775,0.0,183.78505340219724,0.0,165.4065480619775,183.78505340219724,0,0
+2017/03/01 10:00:00,182.07305644186056,0,1179.491670251957,0,0,0,0.0,0.0,11.393746067737203,0.0,106.27511244621549,0,39.380909295966944,0.3561055611733806,21.235207868313292,0,0,207.18756132555453,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,383.85871460117494,0.0,1454.6740151827198,0.0,0.0,0.0,0.0,0.0,1256.506892053138,0.0,6109.64938607072,0.0,6297.14474755843,0.0,5081.013060353093,0.0,0.0,0.0,644.325819718754,0.0,5787.445595111892,0.0,5805.387761423255,0.0,4543.220554282761,0.0,2486.7896532418977,0,0,0,0,0,0,0,0,0.06279701018155763,0.0019868536290175223,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4006345176197351,-0.4006345176197351,-0.7457813567919164,-0.7457813567919164,-0.7757367454467796,-0.7757367454467796,-0.352258638957687,-0.352258638957687,-0.27990253816221855,-0.27990253816221855,-0.35653938050335465,-0.6446812011250338,-0.6812521155566921,-0.5388891852789304,-0.31075121610868817,-0.336092818290565,-0.6594171475793144,-0.6828859497021731,-0.5285155722250057,-0.36643906624054023,8.344373158411571,8.344373158411571,16.71148055134492,16.71148055134492,17.680358881439645,17.680358881439645,7.581955544099074,7.581955544099074,6.627243643397463,6.627243643397463,7.64539767645735,13.726469754021238,14.755260466509284,11.077010788574015,7.007167361033282,7.349399805691121,14.134043263858743,14.802573722116549,10.843343907847071,7.795102884108459,182.07305644186056,182.07305644186056,0.0,202.30339604651172,0.0,182.07305644186056,202.30339604651172,0,0
+2017/03/01 11:00:00,212.33505865242054,0,1220.3518113542386,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.3512550058433608,18.477333361206192,0,0,196.56499366357733,562.4122350275875,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,490.2158887462952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6277.71775170956,0.0,5147.669557732879,0.0,5496.488576754548,0.0,0.0,0.0,0.0,0.0,5858.7423962487555,0.0,4504.063599736154,0.0,4898.369219323619,0.0,5573.002913377415,0,0,0,0,0,0,0,0,0.06497243435922201,0.002055682533603083,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.22591235823119896,-0.22591235823119896,-0.6978692114299508,-0.6978692114299508,-0.7350118603140597,-0.7350118603140597,-0.32419530966059323,-0.32419530966059323,-0.23440260637675392,-0.23440260637675392,-0.23991523012706464,-0.6406955592606695,-0.6708202733993663,-0.5605153787097665,-0.3300609034114376,-0.21380817344247446,-0.6518513390844359,-0.6691105553837828,-0.5512600191150482,-0.37646850793865866,6.058830928852771,6.058830928852771,15.24184685082838,15.24184685082838,16.372539926049583,16.372539926049583,7.185336024254525,7.185336024254525,6.140100158972672,6.140100158972672,6.194486943092414,13.617850544665345,14.455893665656092,11.579136497420876,7.2654705594993345,5.948194257633347,13.923608978929792,14.407278437811513,11.361760283897283,7.951029184739596,212.33505865242054,212.33505865242054,0.0,235.92784294713394,0.0,212.33505865242054,235.92784294713394,0,0
+2017/03/01 12:00:00,228.43779344035852,0,1254.0545831641086,0,0,0,0.0,0.0,16.86091082671979,0.0,147.76209134187457,0,39.380909295966944,0.25361745730991053,20.748289316032942,0,0,139.78906418752973,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5219.883698075855,0.0,5728.826256547277,0.0,4772.157320836365,0.0,0.0,0.0,0.0,0.0,4695.633430021088,0.0,4916.6632025605095,0.0,4138.183094856107,0.0,0.0,0,0,0,0,0,0,0,0,0.06676679489424725,0.002112454850158812,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.055306027531078376,-0.055306027531078376,-0.6274912424596621,-0.6274912424596621,-0.6418444530702639,-0.6418444530702639,-0.2982027895171145,-0.2982027895171145,-0.13083639611805034,-0.13083639611805034,-0.17228327072994232,-0.6171588639628014,-0.6462142946200243,-0.5661969707601624,-0.31960539726093956,-0.11491812080884534,-0.6226286372318532,-0.6395058675286471,-0.5565982143510829,-0.3547967566265481,5.063326478865022,5.063326478865022,13.262920782620796,13.262920782620796,13.649090250912195,13.649090250912195,6.847772298257638,6.847772298257638,5.354624393278087,5.354624393278087,5.615227910484421,12.990463800638324,13.768434021481255,11.714417378288175,7.123647002720432,5.273535394266318,13.1341205029604,13.585561828147448,11.48668260526199,7.6194772546191984,228.43779344035852,228.43779344035852,0.0,253.81977048928724,0.0,228.43779344035852,253.81977048928724,0,0
+2017/03/01 13:00:00,207.71779694599363,0,1143.0919280467288,0,0,0,0.0,0.0,16.735683873587277,0.0,129.49988082968767,0,39.380909295966944,0.16148395211430164,18.50786379218313,0,0,101.559628309591,562.4125408177919,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3658.839590802797,0.0,5895.914827304165,0.0,3551.650619359012,0.0,0.0,0.0,0.0,0.0,2993.449898854142,0.0,4942.82421537082,0.0,2866.9590406670777,0.0,0.0,0,0,0,0,0,0,0,0,0.060859060945019555,0.0019255382660355086,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.020527059425659203,0.020527059425659203,-0.5292213687930859,-0.5292213687930859,-0.5855445123360409,-0.5855445123360409,-0.24736510124980216,-0.24736510124980216,-0.09104413041927187,-0.09104413041927187,-0.11458247396433854,-0.5466035805067699,-0.6157705915377492,-0.5413035247827915,-0.30162845759894547,-0.02312291478753214,-0.5399964994931494,-0.6043040918265826,-0.5275710151677399,-0.3285995632155834,5.008722531253483,5.008722531253483,10.859094309646167,10.859094309646167,12.18559319021493,12.18559319021493,6.270013988095059,6.270013988095059,5.171650740440796,5.171650740440796,5.2719389454775865,11.253800890788256,12.95420915824289,11.132062759488917,6.890625596066002,5.011068185319658,11.102228507557669,12.657960791422923,10.822299125788064,7.245369531295864,207.71779694599363,207.71779694599363,0.0,230.79755216221514,0.0,207.71779694599363,230.79755216221514,0,0
+2017/03/01 14:00:00,205.23255431138267,0,1086.608800023073,0,0,0,0.0,0.0,16.735683873587277,0.0,129.2730206906943,0,39.380909295966944,0.1162525588514859,16.294712689828305,0,0,81.5739673224866,561.4054262937847,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3020.290901192664,0.0,5144.715555336879,0.0,3540.3380720133023,0.0,0.0,0.0,0.0,0.0,2363.307373282195,0.0,4225.519737692919,0.0,2882.842839713345,0.0,0.0,0,0,0,0,0,0,0,0,0.05785185737161064,0.001830392441166657,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.0031344837682175195,0.0031344837682175195,-0.36756227603919933,-0.36756227603919933,-0.604000605825293,-0.604000605825293,-0.2155980720445508,-0.2155980720445508,-0.10860183617783564,-0.10860183617783564,-0.07262922247614594,-0.4575988565784796,-0.5974461797161423,-0.5284479723391313,-0.30202451126112484,0.03413640759968458,-0.42914655019241993,-0.5841182048311331,-0.5139762755461523,-0.32616967674568176,5.0002033822640755,5.0002033822640755,7.812352022691769,7.812352022691769,12.650197444543338,12.650197444543338,5.9641678394726085,5.9641678394726085,5.244277628688067,5.244277628688067,5.109221020317548,9.370555171257152,12.483506885444598,10.841836495411457,6.895612015967714,5.024123437209553,8.840592575152783,12.1503034073408,10.523685184188508,7.21214649981539,205.23255431138267,205.23255431138267,0.0,228.03617145709185,0.0,205.23255431138267,228.03617145709185,0,0
+2017/03/01 15:00:00,189.33193367852977,0,1108.9397359799812,0,0,0,0.0,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,0.23636361354047214,14.027353921175092,0,0,160.10639674766188,540.6942853380616,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3307.4904999575115,0.0,4858.423085419716,0.0,4621.888008126573,0.0,0.0,0.0,0.0,0.0,2372.762960753033,0.0,3770.9497803731315,0.0,3858.6368775609767,0.0,0.0,0,0,0,0,0,0,0,0,0.05904077294262957,0.0018680089010911797,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.151764890115479,-0.151764890115479,-0.30239364540053276,-0.30239364540053276,-0.6357613040993553,-0.6357613040993553,-0.27399564421713535,-0.27399564421713535,-0.17588177416730755,-0.17588177416730755,-0.1344417662451177,-0.4035358556980045,-0.6083403387246049,-0.5469968249756763,-0.3224894000099034,0.007915100983441907,-0.36867106527882143,-0.5986126500313476,-0.5375819279242182,-0.34800842389997394,5.4772728665225685,5.4772728665225685,6.900265484149003,6.900265484149003,13.484333546867362,13.484333546867362,6.55907909114066,6.55907909114066,5.641231811426209,5.641231811426209,5.37445372209875,8.39327614418869,12.761590427710559,11.26288192033283,7.162304103422628,5.001296865622592,7.829432443543595,12.513035886652531,11.047307983609059,7.519737087002994,189.33193367852977,189.33193367852977,0.0,210.3688151983664,0.0,189.33193367852977,210.3688151983664,0,0
+2017/03/01 16:00:00,182.75335947098333,0,1079.2234737898848,0,0,0,0.0,0.0,16.903073467207488,0.0,108.75639138185811,0,39.380909295966944,0.21833409658337885,14.062676026913115,0,0,130.39047566667247,540.6939442289548,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2561.3938823942162,0.0,3816.954958452743,0.0,4731.336244690009,0.0,0.0,0.0,0.0,0.0,1707.1096363748768,0.0,3042.232325325619,0.0,4166.870217503233,0.0,0.0,0,0,0,0,0,0,0,0,0.057458657132595334,0.0018179518596873885,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.311240276464242,-0.311240276464242,-0.33685389437730556,-0.33685389437730556,-0.6230617978231502,-0.6230617978231502,-0.2810492258732343,-0.2810492258732343,-0.21599420996106738,-0.21599420996106738,-0.14924700487795214,-0.3540924135384766,-0.6172277809130055,-0.5643746517138826,-0.341158696176421,-0.052175481654675296,-0.31388967884371144,-0.6106403463491878,-0.5605433005455809,-0.3673871607378111,7.013514488112136,7.013514488112136,7.360099302712712,7.360099302712712,13.145552397854985,13.145552397854985,6.640646767207116,6.640646767207116,5.967721225792502,5.967721225792502,5.461552362091382,7.6090372729047,12.992265741314228,11.67087475512011,7.421080925095808,5.056359457063792,7.048075001533505,12.820958802260392,11.57979790390391,7.809659238252991,182.75335947098333,182.75335947098333,0.0,203.05928830109258,0.0,182.75335947098333,203.05928830109258,0,0
+2017/03/01 17:00:00,205.94071623205676,0,1087.507874009476,0,0,0,0.0,0.0,17.250223812971733,0.0,131.64086955684016,0,39.380909295966944,0.15626057041534466,14.080477793408221,0,0,85.45173161219324,540.6815597342088,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1733.8513460540485,0.0,3531.2499196943695,0.0,4286.356988968548,0.0,0.0,0.0,0.0,0.0,910.8532065959107,0.0,2899.216298248408,0.0,3802.11510799796,0.0,0.0,0,0,0,0,0,0,0,0,0.057899724736596825,0.0018319069312285141,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44887348546359235,-0.44887348546359235,-0.3287588409921753,-0.3287588409921753,-0.6148266415273679,-0.6148266415273679,-0.22784953272816807,-0.22784953272816807,-0.1782550169761834,-0.1782550169761834,-0.17630148446331606,-0.341063818577833,-0.6204217880763099,-0.5725376622096126,-0.3457383609983283,-0.07582357501768094,-0.3033159975216076,-0.6166687358646029,-0.5733945322052539,-0.3716161275613336,9.204333148028496,9.204333148028496,7.24755602995053,7.24755602995053,12.92960573638615,12.92960573638615,6.077107464239219,6.077107464239219,5.658677303684058,5.658677303684058,5.64429995429866,7.419728409953265,13.076004151948268,11.867044883299286,7.486820580889258,5.119042255325695,6.911918250878202,12.977654585934388,11.887804470242074,7.8750543316382675,205.94071623205676,205.94071623205676,0.0,228.82301803561862,0.0,205.94071623205676,228.82301803561862,0,0
+2017/03/01 18:00:00,216.1759266537772,0,1089.1921935964654,0,0,0,0.0,0.0,20.927955412879314,0.0,133.89528835348938,0,39.380909295966944,0.10817080262641182,18.431627586360804,0,0,65.40147323145271,562.416137701939,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2558.4551468090917,0.0,4371.966233624437,0.0,3957.8378936503177,0.0,0.0,0.0,0.0,0.0,796.4803964608238,0.0,3676.705063896731,0.0,3429.7859064387962,0.0,0.0,0,0,0,0,0,0,0,0,0.05798939915899489,0.0018347441674449602,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5402929400065267,-0.5402929400065267,-0.47464868150553347,-0.47464868150553347,-0.602987607581509,-0.602987607581509,-0.19787109713641995,-0.19787109713641995,-0.13283420489596193,-0.13283420489596193,-0.2516426755491666,-0.4433332659389781,-0.6126793433058083,-0.5677387902660299,-0.3308997633186514,-0.1803618440245292,-0.33642031343846424,-0.6112402974491736,-0.5729122324070948,-0.35646441853656996,11.108988589897294,11.108988589897294,9.704823153348968,9.704823153348968,12.624313305459808,12.624313305459808,5.811879977746358,5.811879977746358,5.365545437497914,5.365545437497914,6.314434140963456,9.10048946653913,12.87378188930407,11.75137021405422,7.277050179561556,5.674361380778706,7.354000842320119,12.836482645442786,11.876115763128297,7.644280004562731,216.1759266537772,216.1759266537772,0.0,240.19547405975243,0.0,216.1759266537772,240.19547405975243,0,0
+2017/03/01 19:00:00,219.88931601701248,0,1120.2982948765382,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.14055967791967616,27.072285642572105,0,0,94.75865718131969,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,374.81046721219184,0.0,2132.637340142301,0.0,4996.297949122402,0.0,3231.2740873022713,0.0,0.0,0.0,0.0,0.0,1141.3317096327146,0.0,4428.918161202508,0.0,2802.8126430410875,0.0,0.0,0,0,0,0,0,0,0,0,0.059645511031642555,0.0018871423926903298,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5914853871374537,-0.5914853871374537,-0.5055350505652167,-0.5055350505652167,-0.6211144993242208,-0.6211144993242208,-0.1837309841015657,-0.1837309841015657,-0.11668418425491621,-0.11668418425491621,-0.3019389088821337,-0.44140025040556535,-0.595243700574031,-0.5510305227727798,-0.30838994862517166,-0.25331377408420863,-0.40704093170946554,-0.5940024598809027,-0.5562536978186027,-0.3328939570447584,12.333532330856258,12.333532330856258,10.34229372481063,10.34229372481063,13.094223624925874,13.094223624925874,5.699827747259803,5.699827747259803,5.282012489142261,5.282012489142261,6.894533697584876,9.064568315833455,12.427912511537073,11.356417398878932,6.976664781918373,6.331996496364269,8.452835875771953,12.396674211751574,11.478583071790979,7.304697897233837,219.88931601701248,219.88931601701248,0.0,244.32146224112498,0.0,219.88931601701248,244.32146224112498,0,0
+2017/03/01 20:00:00,210.6343398419131,0,1063.673414684442,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.1046619956714035,27.097742475311204,0,0,73.6241295017674,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,542.7596398126136,0.0,2237.1108563185085,0.0,4875.954042123787,0.0,3178.263652530589,0.0,0.0,0.0,0.0,0.0,1509.567130838555,0.0,4354.498332678595,0.0,2786.0996375143204,0.0,0.0,0,0,0,0,0,0,0,0,0.056630760467789094,0.001791757786304499,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5195577708090452,-0.5195577708090452,-0.5131432611427618,-0.5131432611427618,-0.6242820579806643,-0.6242820579806643,-0.18482423940539855,-0.18482423940539855,-0.13405864953163793,-0.13405864953163793,-0.3264507199246394,-0.43952678344367063,-0.5793553661198141,-0.5349270357737873,-0.2948163505857205,-0.30690880148927563,-0.4128364444181641,-0.5800128094413338,-0.5416543168911548,-0.31952862627335693,10.64531723815864,10.64531723815864,10.505647696185349,10.505647696185349,13.17780105436347,13.17780105436347,5.708193207657317,5.708193207657317,5.372320928424557,5.372320928424557,7.215976302719,9.029906998636392,12.033100547870362,10.98721277457767,6.805897275175383,6.957651922562519,8.552469733839587,12.049220206088933,11.14008256356891,7.122622782913254,210.6343398419131,210.6343398419131,0.0,234.03815537990343,0.0,210.6343398419131,234.03815537990343,0,0
+2017/03/01 21:00:00,212.67736336628275,0,1061.2790438589661,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.13462035370458347,24.63901384642087,0,0,106.72011118883579,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1363.4387343137657,0.0,2672.526595946721,0.0,5301.993569148195,0.0,3493.308503802704,0.0,0.0,0.0,721.3575905297599,0.0,1997.4670776961211,0.0,4726.939149166836,0.0,3069.7444325743027,0.0,0.0,0,0,0,0,0,0,0,0,0.05650328239151434,0.001787724468830715,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.555765674274003,-0.555765674274003,-0.52040030875692,-0.52040030875692,-0.6378358884522882,-0.6378358884522882,-0.2238705719666099,-0.2238705719666099,-0.17044197469092617,-0.17044197469092617,-0.3410411032481603,-0.444048040155975,-0.5739019234524221,-0.5311353010868438,-0.28748367554500914,-0.3403813662895776,-0.42733259242019916,-0.5756267336302275,-0.5390704473452143,-0.31237470527857414,11.467118517614097,11.467118517614097,10.663794934090987,10.663794934090987,13.540341480423947,13.540341480423947,6.039737739518216,6.039737739518216,5.60213107604153,5.60213107604153,7.4194046512978815,9.113812763158421,11.900112170364878,10.901913756209055,6.716885273273434,7.4100110697564645,8.807984518860863,11.94203410560607,11.081135173023412,7.028276325916039,212.67736336628275,212.67736336628275,0.0,236.30818151809194,0.0,212.67736336628275,236.30818151809194,0,0
+2017/03/01 22:00:00,199.19873249599763,0,1082.0065168941087,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.20505257006687996,27.0977424753112,0,0,162.9379367365224,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1484.7788050524737,0.0,3995.8705666772325,0.0,5041.7209330677215,0.0,4708.4763990461615,0.0,0.0,0.0,878.336020553581,0.0,3349.165742067057,0.0,4421.433269626306,0.0,4246.55719246544,0.0,0.0,0,0,0,0,0,0,0,0,0.057606828408882794,0.0018226398955852245,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5977245971020897,-0.5977245971020897,-0.5728292803384135,-0.5728292803384135,-0.6618311325749784,-0.6618311325749784,-0.30987149158422844,-0.30987149158422844,-0.2450579421807684,-0.2450579421807684,-0.3637720831688579,-0.46433487421124425,-0.582708759814149,-0.5448715279608533,-0.2992178246803676,-0.3731395592327938,-0.45579070726982956,-0.5876964417362802,-0.5571070141194711,-0.3262316806384015,12.490549609639189,12.490549609639189,11.874106407343945,11.874106407343945,14.201707442669175,14.201707442669175,6.995775599237575,6.995775599237575,6.2463747075888705,6.2463747075888705,7.754361381326817,9.501120720163286,12.115517556897842,11.21388309584384,6.860418130300829,7.8987989045596265,9.33584004217117,12.23900342683568,11.498653826229798,7.212991144939451,199.19873249599763,199.19873249599763,0.0,221.33192499555292,0.0,199.19873249599763,221.33192499555292,0,0
+2017/03/01 23:00:00,140.47953617495716,0,923.8374413076863,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.2347406751963865,21.05986269198453,0,0,164.47544745654872,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,497.82042593257506,0.0,0.0,0.0,0.0,0.0,900.3734862151712,0.0,3902.3147553283407,0.0,4139.379739207027,0.0,4523.056582386151,0.0,0.0,0.0,554.9298574600908,0.0,3428.5330497008376,0.0,3737.9357237323093,0.0,4187.929337093891,0.0,0.0,0,0,0,0,0,0,0,0,0.04918578966777291,0.0015562040997647247,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6768760712827503,-0.6768760712827503,-0.6858954670336367,-0.6858954670336367,-0.7719455388033637,-0.7719455388033637,-0.46800368991010866,-0.46800368991010866,-0.4882871885280652,-0.4882871885280652,-0.3935150587055663,-0.49667047338080655,-0.6027411726435926,-0.5724067205040825,-0.3314740003723199,-0.4098791596102635,-0.4953886821484504,-0.6103078471991682,-0.5888357280893267,-0.36040900902843115,14.629105971046371,14.629105971046371,14.890026755435997,14.890026755435997,17.555618074834214,17.555618074834214,9.573056199615465,9.573056199615465,9.981233345957804,9.981233345957804,8.225898374996405,10.155120759213432,12.618023133211224,11.863875334117836,7.284994162553488,8.50144966787235,10.128337081520272,12.81236205450439,12.267361529913344,7.7034181706382014,140.47953617495716,140.47953617495716,0.0,156.08837352773017,0.0,140.47953617495716,156.08837352773017,0,0
+2017/03/02 00:00:00,91.11095018366026,0,788.993495474629,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.3445032539849654,11.823490668382723,0,0,216.95750868650092,518.8004580193119,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,373.21661101221866,0.0,367.1666627162939,0.0,2123.5810289129363,0.0,11.934620732146763,0.0,0.0,0.0,1460.369388762795,0.0,4668.190104185454,0.0,4428.8452413806035,0.0,5194.340794048988,0.0,0.0,0.0,1047.7405793339103,0.0,4150.828497164894,0.0,3941.107588502678,0.0,4792.338228359111,0.0,4908.52489841802,0,0,0,0,0,0,0,0,0.042006598111811295,0.0013290594832434215,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7939131624962953,-0.7939131624962953,-0.8116249842404364,-0.8116249842404364,-0.8676002654091457,-0.8676002654091457,-0.6901296004082766,-0.6901296004082766,-0.5870747521353659,-0.5870747521353659,-0.43021183202660707,-0.5356899285895895,-0.6307223527466463,-0.607460232072324,-0.36595071810431146,-0.4530056331122392,-0.5412152930245551,-0.639702716103243,-0.6278122450868948,-0.40024401816925825,18.286904303142975,18.286904303142975,18.891418308951913,18.891418308951913,20.88845764581002,20.88845764581002,15.013728692787282,15.013728692787282,12.22355263694945,12.22355263694945,8.859808111376523,11.00445008821903,13.349073503476234,12.73893362953281,7.787620088652886,9.282643968116787,11.130046445497115,13.590900140209726,13.271459572445579,8.337818667134329,91.11095018366026,91.11095018366026,0.0,101.23438909295585,0.0,91.11095018366026,101.23438909295585,0,0
+2017/03/02 01:00:00,39.480000053284634,0,598.8079211892981,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.06954042408773972,0.049701147384226596,9.563437485389493,0,0,29.15743200473892,516.4149604157429,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,491.3125931900043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.031880977265137514,0.0010086918977946222,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7726766883409109,-0.7726766883409109,-0.834946381108547,-0.834946381108547,-0.8965449295213842,-0.8965449295213842,-0.7339230313430553,-0.7339230313430553,-0.23664120927224871,-0.23664120927224871,-0.5355387956881346,-0.7626519867650405,-0.9954990084299596,-1.0084361581596688,-0.15410967043973106,-0.518215775299414,-0.683693622616372,-0.9298757260701748,-0.8934943141417442,-0.30144722903158905,17.579627171906466,17.579627171906466,19.707552165349085,19.707552165349085,21.97203569948364,21.97203569948364,16.338549128804743,16.338549128804743,6.162032073395352,6.162032073395352,11.001033287386264,17.252428519310385,25.930516503374392,26.476208314476494,5.4921500254390025,10.61594936899634,14.826005296015808,23.262019691282063,21.856215863049954,6.888346092642024,39.480000053284634,39.480000053284634,0.0,43.866666725871816,0.0,39.480000053284634,43.866666725871816,0,0
+2017/03/02 02:00:00,23.72208216654507,0,40.16356901068509,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249867428672814,0,0,0.0,4.673216498140953,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0021383381635521974,6.765552895013584e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8222909339537472,-0.8222909339537472,-0.8991045521667023,-0.8991045521667023,-1.0135140903334685,-1.0135140903334685,-0.8103178406018823,-0.8103178406018823,-0.1063735584170433,-0.1063735584170433,-0.605831172411219,-0.8251930151870575,-1.105702251399789,-1.045320352109962,-0.08761842142937247,-0.602212698374906,-0.7748720721688129,-1.0885929485514463,-1.0097509926887465,-0.315721766703406,19.261838728238487,19.261838728238487,22.069506775470003,22.069506775470003,26.692122512498315,26.692122512498315,18.84635182308827,18.84635182308827,5.234351380105679,5.234351380105679,12.697085055801807,19.363453803429152,30.775135238864806,28.06632400693745,5.15897205794316,12.60454288495501,17.65185491668602,29.99466620817006,26.53202225900992,7.072147775969896,23.72208216654507,23.72208216654507,0.0,26.357869073938968,0.0,23.72208216654507,26.357869073938968,0,0
+2017/03/02 03:00:00,28.34426032617058,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248972396976878,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8462692928070225,-0.8462692928070225,-0.9311178358812948,-0.9311178358812948,-1.0490842654491441,-1.0490842654491441,-0.8490781109486576,-0.8490781109486576,-0.03255297602335597,-0.03255297602335597,-0.66206121327303,-0.8836026272090457,-1.1725994218541256,-1.095049715711543,-0.06520233250053169,-0.6668929603700261,-0.842948628207792,-1.173602958743811,-1.0841030637878573,-0.31905421231151326,20.112014433032954,20.112014433032954,23.310955448825453,23.310955448825453,28.231399823401333,28.231399823401333,20.213174926834583,20.213174926834583,5.021937285933731,5.021937285933731,14.2081697993696,21.483280297161727,33.91941241455663,30.288026276893447,5.088021718419455,14.34441045594798,19.992843540374395,33.96765559725118,29.791518676371112,7.116299054924511,28.34426032617058,28.34426032617058,0.0,31.49362258463398,0.0,28.34426032617058,31.49362258463398,0,0
+2017/03/02 04:00:00,23.72208327428819,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249878506103969,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9121948566357331,-0.9121948566357331,-1.0032952494229619,-1.0032952494229619,-1.123300304736204,-1.123300304736204,-0.9332920502745227,-0.9332920502745227,0.026859454313221544,0.026859454313221544,-0.738679191139306,-0.9566161856275718,-1.2539653351074305,-1.1641672304624913,-0.036316997546738984,-0.7527632824484569,-0.9259621820804931,-1.2704284992560106,-1.1713511665444167,-0.33848587979490985,22.572144973442335,22.572144973442335,26.258605210233753,26.258605210233753,31.588211142059322,31.588211142059322,23.39676178533722,23.39676178533722,5.014934451481551,5.014934451481551,16.487400304249462,24.32905612314552,37.92517188410645,33.51526535528002,5.027304009324467,16.933874827822393,23.10823981728423,38.75730953993452,33.85944758436341,7.3831252969651615,23.72208327428819,23.72208327428819,0.0,26.357870304764656,0.0,23.72208327428819,26.357870304764656,0,0
+2017/03/02 05:00:00,43.265778521139296,0,384.82381979170987,0,0,0,0.0,0.015724134426390673,4.633261998087618,9.319298099999997,25.555573451546493,0,1.8892804194939614,1.3275458904153776,0.5250945271694499,0,0,296.09793851034954,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.33999559567981,0.10831492710753993,400.07701721386945,0.17691192264201164,1359.2068198691213,0.0,196.72879778706144,0.0,0.0,1.8610760151595058,2147.4685089592213,1.6521316653943816,2247.368271055597,3.633656091591934,5534.285960454989,1.9265163018359543,3083.1440918587914,0.0,0.0,1.178462196551095,1800.7336925083607,1.0842388663482325,1729.3674092508622,2.1663562088471737,4886.967440016462,1.936470230912846,2638.760760155147,0.0,0.0,0,0,0,0,0,0,0,0,0.020488305207279445,0.0006482356952315026,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8912495583205967,-0.8912495583205967,-0.9311516568685008,-0.9311516568685008,-0.9809913052712256,-0.9809913052712256,-0.8977821071010051,-0.8977821071010051,0.16130562662418232,0.16130562662418232,-0.6005987550153005,-0.6963501296281708,-0.8230393328546401,-0.7841368456807968,-0.005249686923500478,-0.6304248698818952,-0.7101412984671757,-0.8509837836043157,-0.8155888157605249,-0.33712759774103035,21.771233619629882,21.771233619629882,23.312288765287875,23.312288765287875,25.326160945463513,25.326160945463513,22.019114456140386,22.019114456140386,5.539237076323602,5.539237076323602,12.563449677345403,15.196869176532175,19.288009731301358,17.958924577813505,5.000570490190825,13.341122636613179,15.608856982608074,20.28199526304185,19.028519984889996,7.363953141900538,43.265778521139296,43.265778521139296,0.0,48.073087245710326,0.0,43.265778521139296,48.073087245710326,0,0
+2017/03/02 06:00:00,75.91665102099907,0,309.01949774379784,0,0,0,0.09925764444647209,0.011683402819013455,5.555297838843742,9.319298099999997,57.911447091112116,0,1.4665474556766456,1.028056456318055,0.5250630317830213,0,0,96.07738266853308,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,315.0229768905168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,224.10042669985916,0.0,0.0,0.0,0.0,1.1832033159822117,1466.1363611594388,0.9887102728869763,1501.9484980527081,2.6328143540054043,3960.43783730013,1.7905342811794753,2131.7707362230167,0.0,0.0,0.5567025860643184,1157.2501677451417,0.6156249979525796,1203.0386845668577,2.5751704461245026,3724.972493388207,1.3406425648179834,1951.994433499409,0.0,0.0,0,0,0,0,0,0,0,0,0.016452426952681908,0.0005205433204952454,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7262431030266199,-0.7262431030266199,-0.8075707611077602,-0.8075707611077602,-0.8768363974769806,-0.8768363974769806,-0.7551835387751146,-0.7551835387751146,0.4833571093593075,0.4833571093593075,-0.5762362903517506,-0.655273903974813,-0.7491519872248693,-0.721256580786203,0.10492743456941087,-0.6039327500029882,-0.6635101037760073,-0.7521920492306509,-0.7319765735434319,-0.23460975012053017,16.100246074903353,16.100246074903353,18.751875504025776,18.751875504025776,21.23048833032381,21.23048833032381,17.01145413592711,17.01145413592711,9.88038973901267,9.88038973901267,11.956880399058079,14.018496421207402,16.81858402840365,15.946875841767948,5.228019698086129,12.64846220029672,14.248917981158087,16.915600993985592,16.27791199578597,6.142120745458385,75.91665102099907,75.91665102099907,0.0,84.35183446777674,0.0,75.91665102099907,84.35183446777674,0,0
+2017/03/02 07:00:00,101.74460152358046,0,807.585750104146,0,0,0,0.0,0.007736917418562371,11.110595677687485,13.929299233552332,73.80580873715317,0,1.4358820069540033,0.877676532897478,0.5776024179173997,0,0,71.17533127551593,505.7231274970932,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1169.8747996441964,1.0406325171089368,1240.0063813423872,1.9581443761398987,3226.0874361608157,1.7963080620633414,1743.0368347095725,0.0,0.0,0.0,869.367386783431,0.0,923.9049524152194,2.9418324632501935,2816.9241412522406,0.0,1484.4063404968301,0.0,0.0,0,0,0,0,0,0,0,0,0.042996463519693745,0.0013603781347557152,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6145528453857602,-0.6145528453857602,-0.7021338574275601,-0.7021338574275601,-0.788131251004819,-0.788131251004819,-0.6524117818787899,-0.6524117818787899,0.7360899622549536,0.7360899622549536,-0.5661648663101981,-0.6402092955858663,-0.7264479994926919,-0.7011122218729549,0.16450512123186398,-0.5912255935042057,-0.6461768133438861,-0.7253519180470605,-0.7080464057509541,-0.11534050999682964,12.922476658982958,12.922476658982958,15.368648935677598,15.368648935677598,18.092440271740216,18.092440271740216,13.939111973890292,13.939111973890292,16.40624602137636,16.40624602137636,11.7136490258154,13.604645733735694,16.106570948957454,15.338200807066684,5.5608661877325005,12.327030947204534,13.767406858101538,16.072757421014273,15.545747041771122,5.2755510698655,101.74460152358046,101.74460152358046,0.0,113.04955724842273,0.0,101.74460152358046,113.04955724842273,0,0
+2017/03/02 08:00:00,147.92860111134235,0,913.1408508508396,0,0,0,0.0,0.0,8.55497712945079,0.0,69.33401494192633,0,39.380909295966944,0.17921285393853742,27.04751168760547,0,0,47.307799462069596,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.31243233851551,0.0,295.50947242266346,0.0,1403.0624089452986,0.0,0.0,0.0,0.0,0.0,2754.7294147844445,0.0,4664.048580001532,0.0,5273.657056619122,0.0,4629.1075078758795,0.0,2256.6323008783233,0.0,2432.3130882554756,0.0,4334.561028325091,0.0,4809.568379492058,0.0,4203.233612456398,0.0,1446.5913012467904,0,0,0,0,0,0,0,0,0.04861629526881452,0.0015381856939520237,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6882568506696874,-0.6882568506696874,-0.7645299872799732,-0.7645299872799732,-0.8175110101969733,-0.8175110101969733,-0.6163031256579394,-0.6163031256579394,0.2864714055344888,0.2864714055344888,-0.5260852019362534,-0.6288358152456275,-0.7019719866648231,-0.6416954942003662,-0.19754004404809566,-0.5450987586905988,-0.6383315383690726,-0.7004113288446387,-0.6404370547533245,-0.3098627459322695,14.958919964664133,14.958919964664133,17.313398520517893,17.313398520517893,19.09524345666,19.09524345666,12.968106363177213,12.968106363177213,6.704775583235261,6.704775583235261,10.789273295828963,13.298716777412139,15.363821646598382,13.645036663012107,5.809161039727513,11.219112565434529,13.553750260355272,15.317337925672575,13.610829407473418,6.995662514163385,147.92860111134235,147.92860111134235,0.0,164.36511234593593,0.0,147.92860111134235,164.36511234593593,0,0
+2017/03/02 09:00:00,164.99759514394546,0,998.2924320166666,0,0,0,0.0,0.0,11.734626050116935,0.0,83.2008179303116,0,39.380909295966944,0.1515241897845066,27.097742475311204,0,0,79.2238518590805,599.655407544689,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,222.75689424305835,0.0,0.0,0.0,0.0,0.0,1341.4011447987152,0.0,4060.2958150512704,0.0,4456.657611491676,0.0,3591.6432925897416,0.0,165.19004904815546,0.0,926.8593923735575,0.0,3638.834671357575,0.0,3837.9469400065045,0.0,2994.026642786923,0.0,126.02846638950703,0,0,0,0,0,0,0,0,0.053149828522427,0.0016816235259629639,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5803228745967436,-0.5803228745967436,-0.7348682837945436,-0.7348682837945436,-0.8040684434151597,-0.8040684434151597,-0.3803196499280466,-0.3803196499280466,-0.24284427243280582,-0.24284427243280582,-0.457432999300652,-0.6144082639132351,-0.6773591947163004,-0.5759742569478722,-0.32702421314138774,-0.4591220080849946,-0.620581141771806,-0.6724875187394725,-0.5632257269822469,-0.3860281898361432,12.056829110257212,12.056829110257212,16.368054874425553,16.368054874425553,18.631887445026948,18.631887445026948,8.012042428739534,8.012042428739534,6.223903554801481,6.223903554801481,9.367364971713897,12.918713373191622,14.642992976405324,11.95049636813512,7.2238017431440795,9.399907767668154,13.080193578533155,14.503423071859274,11.643496294851559,8.103647018241361,164.99759514394546,164.99759514394546,0.0,183.3306612710505,0.0,164.99759514394546,183.3306612710505,0,0
+2017/03/02 10:00:00,181.7946000234819,0,1049.5282263826823,0,0,0,0.0,0.0,11.357652528037661,0.0,106.27511244621549,0,39.380909295966944,0.11944607508914476,21.22950447571845,0,0,77.22411745627983,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3797.404810356134,0.0,3969.855778129171,0.0,3188.7783332775534,0.0,6.8259879208010705,0.0,0.0,0.0,3301.995032326935,0.0,3225.3015825649463,0.0,2567.670188751692,0.0,7.4397908726125035,0,0,0,0,0,0,0,0,0.05587766016516814,0.0017679302176837866,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46875101211628417,-0.46875101211628417,-0.6788274255220186,-0.6788274255220186,-0.725285039880159,-0.725285039880159,-0.19805212507064546,-0.19805212507064546,-0.2950072660357223,-0.2950072660357223,-0.3822766991424803,-0.5943367925817588,-0.6531527437562993,-0.5314740914568084,-0.33591160986810337,-0.3222762263773158,-0.5960444579700351,-0.6436687534970085,-0.5073646582358605,-0.3846548615543739,9.587780252133328,9.587780252133328,14.685258105600411,14.685258105600411,16.07069593813901,16.07069593813901,5.8133686976982375,5.8133686976982375,6.808245150822955,6.808245150822955,8.043290336962912,12.405081781920586,13.959629394830301,10.909509867302916,7.34685593387573,7.1594346633496855,12.448100652678377,13.698812628204848,10.381348195450371,8.081482187546897,181.7946000234819,181.7946000234819,0.0,201.994000026091,0.0,181.7946000234819,201.994000026091,0,0
+2017/03/02 11:00:00,212.11675631959616,0,1108.1859634917087,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.12510136370676608,18.485184670518414,0,0,84.41612974001129,562.3952510886236,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3961.6436445580493,0.0,3132.672492605761,0.0,3466.994272376913,0.0,0.0,0.0,0.0,0.0,3484.4177790015738,0.0,2345.35857347165,0.0,2830.4694669063374,0.0,0.0,0,0,0,0,0,0,0,0,0.05900064153702963,0.0018667391713918949,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44433419756051673,-0.44433419756051673,-0.6285211938748424,-0.6285211938748424,-0.6574135932730355,-0.6574135932730355,-0.10963502642674071,-0.10963502642674071,-0.24202780766953702,-0.24202780766953702,-0.3167603812050227,-0.5788971890800517,-0.6334375664827069,-0.5373626542044087,-0.34989851101709907,-0.2148405458315226,-0.5757146663578758,-0.6206466465683542,-0.5166155674067722,-0.387694064179458,9.119152855776534,9.119152855776534,13.290333715521697,13.290333715521697,14.078075226417752,14.078075226417752,5.24895012461748,5.24895012461748,6.215667511986453,6.215667511986453,7.085857824591955,12.021877730119726,13.42182084712671,11.04233301329208,7.547311013534468,5.95739107576739,11.944174789990555,13.081916026591387,10.581032705175033,8.130641525013218,212.11675631959616,212.11675631959616,0.0,235.68528479955128,0.0,212.11675631959616,235.68528479955128,0,0
+2017/03/02 12:00:00,228.19503912422766,0,1178.950715414888,0,0,0,0.0,0.0,16.86091082671979,0.0,147.76209134187457,0,39.380909295966944,0.09058978075367746,20.668562676458308,0,0,64.68519643830922,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3006.0732175888543,0.0,3237.0692182086123,0.0,2753.885116351611,0.0,0.0,0.0,0.0,0.0,2424.733248147702,0.0,2293.269595627612,0.0,2061.42162014041,0.0,0.0,0,0,0,0,0,0,0,0,0.06276820934534322,0.001985942390635537,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.23210367529593234,-0.23210367529593234,-0.5230092668995294,-0.5230092668995294,-0.572326321251356,-0.572326321251356,-0.03497608932494089,-0.03497608932494089,-0.1359456348261525,-0.1359456348261525,-0.18147930464538775,-0.5517362520512415,-0.6036148255347533,-0.5349180652603657,-0.3306683802473429,-0.09064310611068217,-0.5431499580931153,-0.586253056172642,-0.5161325981762095,-0.36029253857868027,6.117796085498597,6.117796085498597,10.72120683038385,10.72120683038385,11.86192957418399,11.86192957418399,5.025324867776291,5.025324867776291,5.382884715267977,5.382884715267977,5.682755417750798,11.372854707452362,12.640334732638863,10.987010238713736,7.2738531861397036,5.170141370793644,11.174335720920297,12.203156843321096,10.570516042538273,7.701662528316888,228.19503912422766,228.19503912422766,0.0,253.55004347136406,0.0,228.19503912422766,253.55004347136406,0,0
+2017/03/02 13:00:00,207.61032325415263,0,1077.6240942263971,0,0,0,0.0,0.0,16.735683873587277,0.0,129.49988082968767,0,39.380909295966944,0.04614757807447899,18.515726474381974,0,0,36.10846684160718,562.3958684654443,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1759.1483501146054,0.0,3269.0306810415004,0.0,1859.2569024296004,0.0,0.0,0.0,0.0,0.0,1125.3597373691377,0.0,2315.2522434175435,0.0,1162.461951804688,0.0,0.0,0,0,0,0,0,0,0,0,0.05737350497996413,0.001815257704934084,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1342967124292428,-0.1342967124292428,-0.3399043262529177,-0.3399043262529177,-0.5246871755049973,-0.5246871755049973,0.030865922012688955,0.030865922012688955,-0.09068274082163225,-0.09068274082163225,-0.13281846227495422,-0.48579806676301956,-0.5697827999681174,-0.5081886847992437,-0.23132307783860034,-0.0697961374360731,-0.464147283923914,-0.5463208292889599,-0.48574485040135157,-0.31528847940029636,5.3736454957558095,5.3736454957558095,7.40323031407334,7.40323031407334,10.758286008767541,10.758286008767541,5.019722316466584,5.019722316466584,5.170290250204545,5.170290250204545,5.365458731400935,9.930187829198715,11.800518022295563,10.398984984734085,6.110273213219955,5.100864512072306,9.49745816874642,11.24727557749604,9.929099417695383,7.06644174968838,207.61032325415263,207.61032325415263,0.0,230.67813694905848,0.0,207.61032325415263,230.67813694905848,0,0
+2017/03/02 14:00:00,205.14546149517616,0,1044.5243863332478,0,0,0,0.0,0.0,16.735683873587277,0.0,129.2730206906943,0,39.380909295966944,0.04706217581039281,16.27681025666291,0,0,39.50292763668255,561.3920522897635,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1515.8300401978108,0.0,3214.4123800475945,0.0,2192.091189428178,0.0,0.0,0.0,0.0,0.0,728.2362743416371,0.0,2236.2162433856283,0.0,1468.1733368522782,0.0,92.30989703974544,0,0,0,0,0,0,0,0,0.05561125201455857,0.0017595012495002994,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.16134685617363112,-0.16134685617363112,-0.27457391082733956,-0.27457391082733956,-0.5041452403953628,-0.5041452403953628,0.05118454341540971,0.05118454341540971,-0.10355165128552804,-0.10355165128552804,-0.10915171350658484,-0.4089197746552209,-0.552416476607387,-0.4963085227027045,-0.2277924622512869,-0.042567912591360633,-0.3756205063477354,-0.5277379443582634,-0.47482392048200095,-0.318299742066992,5.539513080946989,5.539513080946989,6.565687234393067,6.565687234393067,10.312723803818955,10.312723803818955,5.0542387337332,5.0542387337332,5.2220765950081045,5.2220765950081045,5.246758873190743,8.48497851463587,11.388718413823568,10.147550425271717,6.076566775322448,5.037512919235908,7.9376794019154175,10.826015507075098,9.708323818594309,7.1062619437461905,205.14546149517616,205.14546149517616,0.0,227.93940166130685,0.0,205.14546149517616,227.93940166130685,0,0
+2017/03/02 15:00:00,189.27082653820588,0,1038.9946398737936,0,0,0,0.0,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,0.1070931282379136,14.095517266153797,0,0,90.18535095551537,540.6702350240209,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1878.0666943245624,0.0,3214.6401268525146,0.0,3306.7370619360368,0.0,385.5317544537721,0.0,0.0,0.0,978.5047902200423,0.0,2239.429674799774,0.0,2599.825458284404,0.0,0.0,0,0,0,0,0,0,0,0,0.05531684421713716,0.0017501863920090495,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.29294937328085685,-0.29294937328085685,-0.25212555246141355,-0.25212555246141355,-0.5399491669020398,-0.5399491669020398,0.004748422760098593,0.004748422760098593,-0.1617431994076902,-0.1617431994076902,-0.1331705963795885,-0.3600462768433288,-0.5593067430780209,-0.5098882043093114,-0.2912794684951872,-0.048304529099963515,-0.3205625695278756,-0.5383315216686284,-0.4933438273581273,-0.3403338408352606,6.783018373657029,6.783018373657029,6.319496857410485,6.319496857410485,11.101149479196636,11.101149479196636,5.0004667453838465,5.0004667453838465,5.542169951686816,5.542169951686816,5.367400654235382,7.697952351113955,11.550539000305477,10.435452828598741,6.7626792476352335,5.048306103305563,7.136437832754709,11.064330798607216,10.085755717550882,7.409335098551011,189.27082653820588,189.27082653820588,0.0,210.3009183757843,0.0,189.27082653820588,210.3009183757843,0,0
+2017/03/02 16:00:00,182.4809371466586,0,1019.9327543264343,0,0,0,0.0,0.0,16.798297266846703,0.0,108.75639138185811,0,39.380909295966944,0.08641259185357877,14.026951407678942,0,0,71.13488861306534,540.6588118191116,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1734.7955148710134,0.0,2856.271567594292,0.0,3810.0488069566777,0.0,50.904723315293474,0.0,0.0,0.0,844.8627283827066,0.0,2002.833679026211,0.0,3203.8118489758535,0.0,0.0,0,0,0,0,0,0,0,0,0.05430197531133004,0.0017180766472512951,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4471854984589695,-0.4471854984589695,-0.3302096436470271,-0.3302096436470271,-0.4866006433128737,-0.4866006433128737,-0.014929395458546551,-0.014929395458546551,-0.19591010443115328,-0.19591010443115328,-0.19745611505583785,-0.32674125169031454,-0.5679137035419155,-0.5244123094899402,-0.3192668045184227,-0.155994417605062,-0.2861892228100714,-0.5522220204046026,-0.5136602401175621,-0.3558891583818939,9.172554382674477,9.172554382674477,7.267521591612535,7.267521591612535,9.946617406836808,9.946617406836808,5.004613915409408,5.004613915409408,5.795841170203801,5.795841170203801,5.808472459313407,7.219938928895559,11.755568878397597,10.752203549687138,7.119131635581567,5.504274401313779,6.701407567413028,11.384181399072077,10.516838449351155,7.635710920596793,182.4809371466586,182.4809371466586,0.0,202.75659682962066,0.0,182.4809371466586,202.75659682962066,0,0
+2017/03/02 17:00:00,205.8876677624307,0,1108.723163456433,0,0,0,0.0,0.0,17.250223812971733,0.0,131.64086955684016,0,39.380909295966944,0.12958788209278063,14.054102012104748,0,0,106.68985992538653,540.658720867973,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1615.7969597166648,0.0,2883.3367791517885,0.0,3837.116525748099,0.0,18.596551254194043,0.0,0.0,0.0,837.718711992427,0.0,2198.1853269939093,0.0,3341.49401908919,0.0,0.0,0,0,0,0,0,0,0,0,0.05902924246105915,0.0018676440846917004,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5429334760846429,-0.5429334760846429,-0.3777643489170201,-0.3777643489170201,-0.5273723046395875,-0.5273723046395875,0.01373417926464858,0.01373417926464858,-0.14894748448104014,-0.14894748448104014,-0.2655451101580949,-0.33152747684708866,-0.5730599938987542,-0.5333625039171704,-0.322451024366753,-0.21187633042781756,-0.2992316060149912,-0.562694157104202,-0.5285809163123557,-0.3554636009058303,11.169371852974677,11.169371852974677,7.971488406497542,7.971488406497542,10.817876762397944,10.817876762397944,5.003904720378657,5.003904720378657,5.459699867111809,5.459699867111809,6.464118076236929,7.285734667183306,11.879695743159004,10.951941546669104,7.161787402951148,5.931104469094521,6.860590124954882,11.630848548531091,10.844801206207535,7.629380873530778,205.8876677624307,205.8876677624307,0.0,228.76407529158968,0.0,205.8876677624307,228.76407529158968,0,0
+2017/03/02 18:00:00,215.45269618354487,0,1084.3759492441034,0,0,0,0.0,0.0,20.18619405468809,0.0,133.89528835348938,0,39.380909295966944,0.0784376643669273,18.47989161257918,0,0,60.59972539802273,562.4016411830071,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1248.2864592730416,0.0,3092.4154576072947,0.0,3137.1136640261566,0.0,1.1025880615350379,0.0,0.0,0.0,676.3884477802898,0.0,2600.9103689288954,0.0,2762.393989635194,0.0,0.0,0,0,0,0,0,0,0,0,0.05773297874225084,0.0018266312041989533,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5711532285010535,-0.5711532285010535,-0.4641939343844975,-0.4641939343844975,-0.5103569785030273,-0.5103569785030273,0.06981735982065553,0.06981735982065553,-0.09739378191350982,-0.09739378191350982,-0.25957009989380286,-0.35584274848520825,-0.5599999655953171,-0.5245452091019879,-0.30384188762512104,-0.2679087149384242,-0.3362815049658279,-0.5539703028427935,-0.5248639928221788,-0.33383159827371855,11.833571195325604,11.833571195325604,9.498368840339353,9.498368840339353,10.44553363857149,10.44553363857149,5.100925872976575,5.100925872976575,5.196438829632783,5.196438829632783,6.39879013689476,7.6350202120640915,11.566933573724981,10.755144052212984,6.918578320871831,6.490375526697562,7.3520501417522155,11.425030872708717,10.762200494940274,7.317755793055454,215.45269618354487,215.45269618354487,0.0,239.39188464838318,0.0,215.45269618354487,239.39188464838318,0,0
+2017/03/02 19:00:00,219.67808062247533,0,1078.7353266730852,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.065225744179829,26.936384181774855,0,0,53.19568897786622,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1022.2790859729295,0.0,3525.323985418806,0.0,2315.887701620768,0.0,0.0,0.0,0.0,0.0,614.8243610634333,0.0,3118.532059774368,0.0,2007.2459762241572,0.0,0.0,0,0,0,0,0,0,0,0,0.057432667818523096,0.0018171295759061893,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6033728240530853,-0.6033728240530853,-0.4878458156515557,-0.4878458156515557,-0.4624473178806791,-0.4624473178806791,0.09900833965839843,0.09900833965839843,-0.08365105923303315,-0.08365105923303315,-0.2925865539326075,-0.38659905658763255,-0.5403435016270024,-0.5055757593557624,-0.28053580350260354,-0.28498296000107115,-0.3781610764988756,-0.5348021646752041,-0.5065265929023087,-0.3083224100286506,12.634151111838761,12.634151111838761,9.972162410763758,9.972162410763758,9.464336788370204,9.464336788370204,5.203008652783552,5.203008652783552,5.1448971000523045,5.1448971000523045,6.7785892867078275,8.112884224367619,11.110141986183663,10.343161113078779,6.634638743742457,6.687048006100909,7.977766416260337,10.984393753743717,10.363441043707155,6.975795797469772,219.67808062247533,219.67808062247533,0.0,244.0867562471948,0.0,219.67808062247533,244.0867562471948,0,0
+2017/03/02 20:00:00,210.597696112937,0,1047.850638414411,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.06801826669533419,27.097742475311204,0,0,57.80135323173658,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,124.63675724657384,0.0,1362.1373619085507,0.0,3647.8782442279216,0.0,2424.4588356396407,0.0,0.0,0.0,35.60982409383556,0.0,1060.9713282551365,0.0,3307.748644701808,0.0,2162.9791310316086,0.0,0.0,0,0,0,0,0,0,0,0,0.055788344139136775,0.0017651043208785602,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5103839453097507,-0.5103839453097507,-0.4651757624181349,-0.4651757624181349,-0.4834282588403239,-0.4834282588403239,0.09491821183982395,0.09491821183982395,-0.10325680863580577,-0.10325680863580577,-0.31823703757937666,-0.3874459516090645,-0.5275919855507666,-0.49352718374087884,-0.26904667021382145,-0.3195805655612252,-0.3847657695397166,-0.5248373833282847,-0.4969957115999388,-0.29656931019230265,10.446113838503877,10.446113838503877,9.517557022156396,9.517557022156396,9.881837624872944,9.881837624872944,5.186575573701035,5.186575573701035,5.220813160624431,5.220813160624431,7.105428838783382,8.126613494342394,10.82276592777987,10.089566497994483,6.503101064212544,7.123315689845583,8.083269196977213,10.761611311744574,10.161928065851654,6.827512999696353,210.597696112937,210.597696112937,0.0,233.99744012548555,0.0,210.597696112937,233.99744012548555,0,0
+2017/03/02 21:00:00,212.6301110316672,0,1035.8695162552647,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.09041633844981972,24.635965527060083,0,0,81.3105835851344,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,690.4741868824749,0.0,1697.528089800367,0.0,3916.2103973439507,0.0,2626.330859032822,0.0,0.0,0.0,528.2424783550218,0.0,1439.0984049178487,0.0,3581.407812904141,0.0,2371.218322100299,0.0,0.0,0,0,0,0,0,0,0,0,0.055150460320886774,0.0017449221215108301,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5256930002026048,-0.5256930002026048,-0.3765051050916733,-0.3765051050916733,-0.5262872892401567,-0.5262872892401567,0.06436052217133166,0.06436052217133166,-0.13950462877711103,-0.13950462877711103,-0.3288008889464967,-0.3926017457392206,-0.5212683494385271,-0.48926518166281474,-0.26180597971143077,-0.34228809127899146,-0.39648296605312094,-0.5203760825043948,-0.49485198354234633,-0.289295010572663,10.780571597235777,10.780571597235777,7.9516060111046585,7.9516060111046585,10.79375956450464,10.79375956450464,5.085763121395104,5.085763121395104,5.403211982546452,5.403211982546452,7.248133426228321,8.210856807817677,10.682864058522057,10.001362668886543,6.423060233047551,7.4372102420730215,8.275023788033707,10.66326319931359,10.117143571131521,6.738662060198806,212.6301110316672,212.6301110316672,0.0,236.2556789240747,0.0,212.6301110316672,236.2556789240747,0,0
+2017/03/02 22:00:00,199.15402815667585,0,1056.138915003144,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.16034823074509816,27.097742475311204,0,0,137.07033484555797,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,345.8077647349629,0.0,2660.2088818175525,0.0,3264.332746068695,0.0,3476.317506503591,0.0,0.0,0.0,319.1294859096058,0.0,2486.4836739757347,0.0,3013.550167237951,0.0,3275.767075910764,0.0,0.0,0,0,0,0,0,0,0,0,0.056229618123902654,0.0017790659221632117,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.55334519160193,-0.55334519160193,-0.4043079196415793,-0.4043079196415793,-0.5617486522788817,-0.5617486522788817,0.0010541460631994317,0.0010541460631994317,-0.21798887997040975,-0.21798887997040975,-0.3473353066967164,-0.41526201635319737,-0.5293309154385883,-0.5032518929771121,-0.27681103435954507,-0.36736778292490607,-0.4238843157368139,-0.5328621352409074,-0.5136416554184247,-0.30606098822069333,11.41040962388081,11.41040962388081,8.40635021794651,8.40635021794651,11.608382251009374,11.608382251009374,5.0000230028919646,5.0000230028919646,5.985713445356282,5.985713445356282,7.50995386066198,8.594596210187603,10.861540862278375,10.293760820629089,6.591384723541992,7.809361341904449,8.746386954507003,10.940683474664468,10.51643595649864,6.946810676026772,199.15402815667585,199.15402815667585,0.0,221.2822535074176,0.0,199.15402815667585,221.2822535074176,0,0
+2017/03/02 23:00:00,140.550738845635,0,968.4889920931605,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.3117548429063805,21.05405119495239,0,0,209.12699824202292,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,896.272575854646,0.0,3646.6994183492648,0.0,3535.916751806535,0.0,4361.576180450789,0.0,0.0,0.0,941.6658013388645,0.0,3520.436416375271,0.0,3369.3296287124253,0.0,4201.958882721954,0.0,0.0,0,0,0,0,0,0,0,0,0.051563071305292904,0.0016314196336738608,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6350133347844432,-0.6350133347844432,-0.5973042475604786,-0.5973042475604786,-0.6920213163594432,-0.6920213163594432,-0.1992317797881313,-0.1992317797881313,-0.44979339982923644,-0.44979339982923644,-0.3760747185499872,-0.44914710231741256,-0.5510082349752324,-0.5320212221009113,-0.30309810827437167,-0.40453187711235983,-0.4650295767052326,-0.5597234339184021,-0.5483028419983619,-0.3347371122458349,13.46418627028676,13.46418627028676,12.479917926500548,12.479917926500548,15.069246375428634,15.069246375428634,5.823103387535923,5.823103387535923,9.221703440551451,9.221703440551451,7.9448260851178105,9.20949591797023,11.355898640171802,10.921787727607835,6.909162246664792,8.410147471162858,9.514697436433295,11.560391156661979,11.293089316351185,7.330401697395828,140.550738845635,140.550738845635,0.0,156.16748760626112,0.0,140.550738845635,156.16748760626112,0,0
+2017/03/03 00:00:00,91.14652446768311,0,779.4630989836163,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.3873589963182721,11.816209210072275,0,0,207.46890539562736,518.7586648191729,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65.5616881938939,0.0,0.0,0.0,967.0966094586523,0.0,0.0,0.0,0.0,0.0,729.3519347989472,0.0,4119.861021046712,0.0,3149.1481498088388,0.0,4732.425025242472,0.0,1705.8708134753908,0.0,981.558375481693,0.0,4127.9882914623695,0.0,3205.60901044421,0.0,4681.575180227437,0.0,5239.080884233219,0,0,0,0,0,0,0,0,0.041499192743401574,0.0013130055310776557,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7425561676132959,-0.7425561676132959,-0.7329053557592243,-0.7329053557592243,-0.7952220636560313,-0.7952220636560313,-0.41049393416124724,-0.41049393416124724,-0.5610551197111391,-0.5610551197111391,-0.40460501849497965,-0.48076791703724014,-0.570520476655917,-0.5591075867852168,-0.33199260939519737,-0.4369939250473936,-0.5036000160172452,-0.582888856245124,-0.5812413806164619,-0.36781126583279744,16.609454504110346,16.609454504110346,16.30682562817138,16.30682562817138,18.3311235936756,18.3311235936756,8.512025119022425,8.512025119022425,11.591927756907694,11.591927756907694,8.411388066116984,9.827848501603498,11.81829981835547,11.54583284733377,7.292180614127915,8.983285950173965,10.301146286507617,12.119957628628853,12.079393449719419,7.816183040894188,91.14652446768311,91.14652446768311,0.0,101.27391607520345,0.0,91.14652446768311,101.27391607520345,0,0
+2017/03/03 01:00:00,39.33908016768169,0,569.6111121286177,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.578501406291391e-09,9.541759168680004,0,0,0.0,516.3755833598016,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030326517524475773,0.0009595098751479064,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6412181751955923,-0.6412181751955923,-0.6457536689743887,-0.6457536689743887,-0.7270547183353256,-0.7270547183353256,-0.36203960566122045,-0.36203960566122045,-0.20834094450141388,-0.20834094450141388,-0.37896840067328347,-0.5132230016560784,-0.7612756708631985,-0.7582223535230196,-0.11779110773015115,-0.43168889957713613,-0.5425650111569128,-0.7657927936618294,-0.7380685421605718,-0.21570243330081726,13.63205395854385,13.63205395854385,13.755814936343327,13.755814936343327,16.12531012100746,16.12531012100746,7.7280579785175405,7.7280579785175405,5.9002337812096926,5.9002337812096926,7.990562646962189,10.507373040205593,17.207841568327908,17.109215717885306,5.287391783073005,8.886532033047814,11.160927731680133,17.354480698496488,16.4682347779425,5.965103329915678,39.33908016768169,39.33908016768169,0.0,43.71008907520188,0.0,39.33908016768169,43.71008907520188,0,0
+2017/03/03 02:00:00,23.72223191082378,0,39.527389277112334,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251364871459864,0,0,0.0,4.037036764568201,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0021044674833142142,6.658388423721776e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6857445969958079,-0.6857445969958079,-0.7000196356352396,-0.7000196356352396,-0.7905004068997663,-0.7905004068997663,-0.4404881653663224,-0.4404881653663224,-0.0687211762616541,-0.0687211762616541,-0.4764638125716171,-0.6151470873809236,-0.8941096056248584,-0.8341510667938133,-0.04957439695531592,-0.5294942259350558,-0.6473556399071413,-0.9194309682650903,-0.8609007165809596,-0.20849636462277538,14.885633325258297,14.885633325258297,15.305687966897352,15.305687966897352,18.171950992614427,18.171950992614427,9.047674841055183,9.047674841055183,5.097780869261797,5.097780869261797,9.741147335408996,12.937953606478118,21.8795455275136,19.67934430402697,5.050879589484211,10.865189110969382,13.799741422293309,22.85296676084954,20.642563961380546,5.90157990145164,23.72223191082378,23.72223191082378,0.0,26.358035456470866,0.0,23.72223191082378,26.358035456470866,0,0
+2017/03/03 03:00:00,28.34440955829317,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.525046471820275,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7017481810203908,-0.7017481810203908,-0.7215869892836831,-0.7215869892836831,-0.8132251594669854,-0.8132251594669854,-0.47677229629987994,-0.47677229629987994,0.008023361216350547,0.008023361216350547,-0.5263874644831967,-0.6690442594276158,-0.9601869168135919,-0.8939654804246483,-0.026656309445162684,-0.5939398684526076,-0.7155588797073008,-1.0017291107808,-0.9373846088152388,-0.21201427612414894,15.357149206144655,15.357149206144655,15.957005097019533,15.957005097019533,18.946685746063153,18.946685746063153,9.747334799205646,9.747334799205646,5.0013325845729355,5.0013325845729355,10.795984075869768,14.40539588463787,24.473675252029494,21.87407942852107,5.014709392503875,12.395100744422308,15.772942222336184,26.19251249884968,23.55878728527668,5.932319606143523,28.34440955829317,28.34440955829317,0.0,31.49378839810352,0.0,28.34440955829317,31.49378839810352,0,0
+2017/03/03 04:00:00,23.722230071537815,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251346478600226,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.745000999685416,-0.745000999685416,-0.7687496580135241,-0.7687496580135241,-0.8604052798450236,-0.8604052798450236,-0.5400700727717798,-0.5400700727717798,0.06994284429739318,0.06994284429739318,-0.5864793283860278,-0.7288292653611441,-1.0299614374603516,-0.9551329777304316,0.002853605778875345,-0.6749547824525114,-0.7956459148310757,-1.0938527793090178,-1.0240699103183817,-0.21234053947384415,16.68675373130023,16.68675373130023,17.45094101396718,17.45094101396718,20.62445366171623,20.62445366171623,11.103905930519886,11.103905930519886,5.101289071514358,5.101289071514358,12.208770354271763,16.180209802921283,27.39807534536068,24.269131317000358,5.000168565598187,14.573979977312518,18.34545834041006,30.233535857022687,27.144043856804927,5.935196767863346,23.722230071537815,23.722230071537815,0.0,26.358033412819793,0.0,23.722230071537815,26.358033412819793,0,0
+2017/03/03 05:00:00,41.9877520443024,0,302.9214992927192,0,0,0,0.0,0.007155859145495697,4.633261998087618,9.319298099999997,25.555573451546493,0,1.1197600147355393,0.827632916994602,0.5250697037926325,0,0,214.19561801135887,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4076291553051824,0.0,0.0,0.0,0.0,0.1459186412796214,555.3898320594448,0.19088233211743955,781.1295816676093,1.819307177096448,3008.6562386959476,0.535512182921309,1553.85679419112,0.0,0.0,0.30981612527176594,1115.646920953052,0.35433077596505314,1016.5433863453904,2.342609391892779,3284.5481931399186,1.4574825189512808,1731.2470221821168,0.0,0.0,0,0,0,0,0,0,0,0,0.01612776499831837,0.0005102712425672336,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6951997642575122,-0.6951997642575122,-0.7229711238101827,-0.7229711238101827,-0.809820355065038,-0.809820355065038,-0.4997584730927179,-0.4997584730927179,0.2046113857123911,0.2046113857123911,-0.5388318500030178,-0.6109067552218294,-0.7279924138594182,-0.7058969556488306,0.03404735035348154,-0.585731484503814,-0.6523081634868437,-0.7645790890531443,-0.7500241828344372,-0.18924235134820627,15.162874939203732,15.162874939203732,15.999489256121223,15.999489256121223,18.82921891228594,18.82921891228594,10.219937556715621,10.219937556715621,5.868234627530143,5.868234627530143,11.075706494674918,12.827850251771366,16.154303010180982,15.481190249962921,5.023997725324236,12.190225811208563,13.936244651161957,17.31499464889491,16.846377762761477,5.742508598393172,41.9877520443024,41.9877520443024,0.0,46.65305782700266,0.0,41.9877520443024,46.65305782700266,0,0
+2017/03/03 06:00:00,75.37302857532775,0,288.7806999238171,0,0,0,0.13460819561348417,0.005728590412139966,5.555297838843742,9.319298099999997,57.911447091112116,0,1.1017526997759686,0.7673196491875554,0.5775764103827425,0,0,75.8385848485523,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,426.57110281847287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,450.6759749309946,0.0,597.1517975768891,1.6872207472719083,2455.803451020946,0.5750844729651021,1226.8443492109614,0.0,0.0,0.25275896847796275,863.4919295100135,0.0,841.6979810647135,2.2375254302619396,2927.7870880599694,0.9760007931630525,1528.5645046233235,0.0,0.0,0,0,0,0,0,0,0,0,0.015374898365733662,0.0004864510671035865,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5098013481213911,-0.5098013481213911,-0.5414337049762776,-0.5414337049762776,-0.621615380778755,-0.621615380778755,-0.329637780820736,-0.329637780820736,0.5267007591181672,0.5267007591181672,-0.5298574740494191,-0.5925780430426602,-0.6786383872424384,-0.6658041491034344,0.14210462628610537,-0.5650376543623374,-0.6188646675370436,-0.6831525021675167,-0.6818374118863872,-0.05585439152533536,10.433586062915879,10.433586062915879,11.135038314995626,11.135038314995626,13.107410622707135,13.107410622707135,7.259641104495827,7.259641104495827,10.802943962765696,10.802943962765696,10.87330797505787,12.360908313296648,14.679811136418508,14.313621016135997,5.418395089932375,11.686699919497556,13.035125270026299,14.810303614561008,14.772196451651354,5.064588655571157,75.37302857532775,75.37302857532775,0.0,83.74780952814194,0.0,75.37302857532775,83.74780952814194,0,0
+2017/03/03 07:00:00,101.30799412225124,0,788.3010750612254,0,0,0,0.0,0.0036736283979278903,11.110595677687485,13.929299233552332,73.80580873715317,0,1.2214067051258664,0.7121497405394368,0.5250603997950347,0,0,51.93490117693277,505.67888255275585,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,474.57406242492766,0.0,585.1107615758875,1.3821592693925595,2160.2339774850298,0.0,1106.520766801338,0.0,0.0,0.0,746.0724385553633,0.0,722.9072716523649,2.29146912853533,2342.088106744472,0.0,1240.4194213822273,0.0,0.0,0,0,0,0,0,0,0,0,0.04196973313612128,0.0013278931011095974,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4014908164898188,-0.4014908164898188,-0.43651650309165535,-0.43651650309165535,-0.5107154361525928,-0.5107154361525928,-0.23779851824674975,-0.23779851824674975,0.7793826066280735,0.7793826066280735,-0.522998883235056,-0.5826129074832118,-0.6616503916158739,-0.6508711296751342,0.19774102708955815,-0.5543361501315788,-0.6053348455920056,-0.6609740617842114,-0.661987437745861,0.03810498801816658,8.358768883079549,8.358768883079549,8.974529156075874,8.974529156075874,10.45324854496721,10.45324854496721,6.173452878447208,6.173452878447208,17.800894858782172,17.800894858782172,10.720977746894022,12.113155001078667,14.196632516726396,13.896527110431492,5.810811166307332,11.433595839252845,12.6843579113837,14.177654779466195,14.206097390669356,5.030058880447797,101.30799412225124,101.30799412225124,0.0,112.5644379136125,0.0,101.30799412225124,112.5644379136125,0,0
+2017/03/03 08:00:00,149.04855793108808,0,971.794554771087,0,0,0,0.0,0.0,9.50044753132326,0.0,69.33401494192633,0,39.380909295966944,0.34014066182274555,27.061070297594526,0,0,105.96150338231693,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,903.8782033879816,0.0,478.1998958727279,0.0,1641.5959894300588,0.0,12.007560545763782,0.0,0.0,0.0,3656.489314146858,0.0,5415.903825055158,0.0,5526.566497770831,0.0,5807.124420412419,0.0,1998.8816442067928,0.0,3847.2859209712606,0.0,5477.390113468468,0.0,5595.27383524685,0.0,5818.273380334853,0.0,3083.485003591348,0,0,0,0,0,0,0,0,0.051739061910718025,0.00163698785375394,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6106390709038507,-0.6106390709038507,-0.6216395435803924,-0.6216395435803924,-0.6713968462023505,-0.6713968462023505,-0.4771369167915375,-0.4771369167915375,0.2157313134662056,0.2157313134662056,-0.5218128102182564,-0.5916998102111807,-0.6552508268350472,-0.6505820111865311,-0.17673210616803622,-0.5550357286614611,-0.6184349011540157,-0.6572291864035323,-0.6634297079102889,-0.24827557216675875,12.820925816521992,12.820925816521992,13.108047046118173,13.108047046118173,14.472316844960261,14.472316844960261,9.754653527676098,9.754653527676098,5.965362291239543,5.965362291239543,10.69484141817108,12.338900514334767,14.017854928815751,13.888547109282158,5.647455501779035,11.449990050770808,13.023861197060711,14.072932677270686,14.246654567933817,6.279404277421676,149.04855793108808,149.04855793108808,0.0,165.6095088123201,0.0,149.04855793108808,165.6095088123201,0,0
+2017/03/03 09:00:00,165.0659036126112,0,1085.4230371403912,0,0,0,0.0,0.0,11.592378022329065,0.0,83.2008179303116,0,39.380909295966944,0.36208068623813183,27.097742475311204,0,0,166.35445698280498,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,715.7024479485514,0.0,0.0,0.0,0.0,0.0,2797.5386497668146,0.0,5297.724516881702,0.0,5177.089108623943,0.0,5173.936505448122,0.0,136.9610143271084,0.0,2880.62690243688,0.0,5274.474826808024,0.0,5114.776629532044,0.0,5003.867756359472,0.0,447.1203986269906,0,0,0,0,0,0,0,0,0.057788726477434195,0.0018283950236807776,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5879464438693096,-0.5879464438693096,-0.6791617807246458,-0.6791617807246458,-0.729915590437619,-0.729915590437619,-0.4004626044240019,-0.4004626044240019,-0.29397187085035187,-0.29397187085035187,-0.4787771673316866,-0.5963851097088393,-0.6500987004670369,-0.6077210788933816,-0.2969650625504057,-0.5006695580045134,-0.6246600362349857,-0.6537491143878748,-0.6129285055008181,-0.34455610522076724,12.245221433608506,12.245221433608506,14.694896037694036,14.694896037694036,16.213884576151628,16.213884576151628,8.341486810025827,8.341486810025827,6.795530345894221,6.795530345894221,9.787647848287918,12.456697366046484,13.87521527202098,12.745645166946602,6.832410984556262,10.23913984887183,13.187803252724265,13.976160331980523,12.880249158342025,7.469764317545582,165.0659036126112,165.0659036126112,0.0,183.406559569568,0.0,165.0659036126112,183.406559569568,0,0
+2017/03/03 10:00:00,181.7903413347005,0,1099.0705235583507,0,0,0,0.0,0.0,11.268261791783145,0.0,106.27511244621549,0,39.380909295966944,0.21166856959538266,21.222414028685307,0,0,126.76641463194838,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1529.0756107665807,0.0,4990.541720265715,0.0,4760.128670145201,0.0,4655.111664857503,0.0,2.1870800539334727,0.0,1419.0019507516024,0.0,4842.453945722294,0.0,4504.476773428325,0.0,4301.945281854436,0.0,0.0,0,0,0,0,0,0,0,0,0.058515328763110525,0.0018513842135160035,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4364735615566424,-0.4364735615566424,-0.6268295052506334,-0.6268295052506334,-0.7091645531259065,-0.7091645531259065,-0.23691734500969538,-0.23691734500969538,-0.2835545594783998,-0.2835545594783998,-0.4087392008038037,-0.585337194709196,-0.6361763441694878,-0.5663133186240584,-0.3085225170378143,-0.40765511820581496,-0.6096228743203379,-0.6358424911679241,-0.5631377360484368,-0.34765275378001265,8.973742009519924,8.973742009519924,13.245332433611836,13.245332433611836,15.579408376959975,15.579408376959975,6.1647519882458965,6.1647519882458965,6.670123490518733,6.670123490518733,8.481882749339903,12.180458242154202,13.495523521427032,11.717202294237424,6.97837103294664,8.463326549796236,12.794667241049751,13.486521859064368,11.641401862933463,7.5145653026904,181.7903413347005,181.7903413347005,0.0,201.98926814966723,0.0,181.7903413347005,201.98926814966723,0,0
+2017/03/03 11:00:00,212.31799339758012,0,1203.7267239795826,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.3189044513666708,18.492618660842453,0,0,179.97502835654058,562.3771129599681,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5459.714244779718,0.0,3924.72136856855,0.0,5143.452528648878,0.0,0.0,0.0,0.0,0.0,5257.2440130669665,0.0,3540.404162185624,0.0,4796.434898380215,0.0,3594.0990761653284,0,0,0,0,0,0,0,0,0.06408730239308229,0.002027677575182298,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.303385730248012,-0.303385730248012,-0.5829372103843875,-0.5829372103843875,-0.6325360481960624,-0.6325360481960624,-0.14751640763706217,-0.14751640763706217,-0.2313804448978848,-0.2313804448978848,-0.3008249262582816,-0.5881071739970652,-0.6319268460003141,-0.5707212802786207,-0.3299295929874429,-0.25263004199444755,-0.607840594773935,-0.6280232014119183,-0.5637671258147459,-0.36077141582781286,6.912800699664757,6.912800699664757,12.121149984356052,12.121149984356052,13.397631458475885,13.397631458475885,5.450900404305827,5.450900404305827,6.110825207952757,6.110825207952757,6.880529304044913,12.249220516057136,13.381305409374193,11.823144304256772,7.2636606534039885,6.324796643077121,12.748721273542884,13.277073524002049,11.656390500321123,7.708884682541623,212.31799339758012,212.31799339758012,0.0,235.9088815528668,0.0,212.31799339758012,235.9088815528668,0,0
+2017/03/03 12:00:00,228.22542872820136,0,1225.4004994717855,0,0,0,0.0,0.0,16.86091082671979,0.0,147.76209134187457,0,39.380909295966944,0.2021530636783118,20.587388997507343,0,0,111.13498049520666,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4534.038206469513,0.0,4740.937558269084,0.0,4486.41774025948,0.0,0.0,0.0,0.0,0.0,4267.674209394318,0.0,4176.595541988296,0.0,4057.064202232934,0.0,0.0,0,0,0,0,0,0,0,0,0.06524123025419716,0.0020641870483539024,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.26060728783828,-0.26060728783828,-0.5097836246437889,-0.5097836246437889,-0.5971036605744405,-0.5971036605744405,-0.11749869668597523,-0.11749869668597523,-0.12744648569873165,-0.12744648569873165,-0.2795022027758982,-0.5742739896701082,-0.6175540848812816,-0.5821230392274721,-0.3198702936771501,-0.19612526081623388,-0.5871423384215416,-0.6102148747070781,-0.5773470021608468,-0.34417349255119434,6.41002247393557,6.41002247393557,10.43320517929952,10.43320517929952,12.474847286629142,12.474847286629142,5.28596581073073,5.28596581073073,5.33647317172418,5.33647317172418,6.622577362131437,11.909144413114362,13.00080026352343,12.101087017129643,7.127182965790752,5.797593065351435,12.225231539611372,12.809959114084947,11.983974218634103,7.464257134642494,228.22542872820136,228.22542872820136,0.0,253.58380969800152,0.0,228.22542872820136,253.58380969800152,0,0
+2017/03/03 13:00:00,207.80044822380455,0,1145.378829777321,0,0,0,0.0,0.0,16.735683873587277,0.0,129.49988082968767,0,39.380909295966944,0.16479520919986665,18.587203812908548,0,0,103.88101411892423,562.3780567390511,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,322.4305638225746,0.0,3638.0887743694802,0.0,5926.185468198144,0.0,3934.681140604104,0.0,0.0,0.0,0.0,0.0,3262.063127805467,0.0,5187.889516839132,0.0,3423.7919709425246,0.0,0.0,0,0,0,0,0,0,0,0,0.060980817287079644,0.0019293905518271183,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.20687954083852053,-0.20687954083852053,-0.3983194938907395,-0.3983194938907395,-0.5655106963557932,-0.5655106963557932,-0.08253795527698898,-0.08253795527698898,-0.08465007879455999,-0.08465007879455999,-0.2607462134242651,-0.5175697163610911,-0.5960695004503029,-0.5589602220866144,-0.3061185507065041,-0.16296292191142087,-0.5148651586773261,-0.5837663977116221,-0.5484169622160298,-0.32430861123490684,5.887625760929311,5.887625760929311,8.305611036778117,8.305611036778117,11.698002580295778,11.698002580295778,5.14106544273686,5.14106544273686,5.148379803296152,5.148379803296152,6.411530421464306,10.601838976067228,12.448732455117153,11.542351660254582,6.947545782775123,5.550387393621136,10.54296551578696,12.14161254799825,11.295732361207271,7.186870107048065,207.80044822380455,207.80044822380455,0.0,230.88938691533838,0.0,207.80044822380455,230.88938691533838,0,0
+2017/03/03 14:00:00,205.19208570915842,0,1087.9185644113313,0,0,0,0.0,0.0,16.735683873587277,0.0,129.2730206906943,0,39.380909295966944,0.1083918708510729,16.26210477560446,0,0,82.92769542245436,561.3614625820751,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.76043536124584,0.0,3531.1316467853217,0.0,5738.470082794652,0.0,4346.037561823937,0.0,0.0,0.0,0.0,0.0,3072.1068235699518,0.0,5036.323894519366,0.0,3844.400148066053,0.0,0.0,0,0,0,0,0,0,0,0,0.05792159019779273,0.001832598739179269,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.26052846106492805,-0.26052846106492805,-0.37210160086702776,-0.37210160086702776,-0.5818364933020025,-0.5818364933020025,-0.09672646142453172,-0.09672646142453172,-0.10061263434876687,-0.10061263434876687,-0.27664571369901547,-0.463865511792375,-0.5941172685413791,-0.5588304934300362,-0.3072827379947386,-0.1731368281871994,-0.4496116149233398,-0.5833332687404671,-0.5507153431630741,-0.3252142230774482,6.409167221407429,6.409167221407429,7.882610291217631,7.882610291217631,12.094032738733446,12.094032738733446,5.193755026575886,5.193755026575886,5.209643890023813,5.209643890023813,6.589478490876431,9.49195964004015,12.39956079453826,11.539287867682106,6.96244322759631,5.6213471027235755,9.218267999407047,12.130920132604018,11.349083449776202,7.199151489959675,205.19208570915842,205.19208570915842,0.0,227.99120634350936,0.0,205.19208570915842,227.99120634350936,0,0
+2017/03/03 15:00:00,189.41965813212917,0,1151.541439141453,0,0,0,0.0,0.0,16.798297266846703,0.0,115.5196477718057,0,39.380909295966944,0.25974217096691987,14.029086424088648,0,0,202.7584507551816,540.6439344920138,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,553.7578174554001,0.0,4681.226136174431,0.0,5292.657975224775,0.0,5634.40698070554,0.0,0.0,0.0,0.0,0.0,4133.209783277147,0.0,4508.426378029566,0.0,5092.408567839064,0.0,0.0,0,0,0,0,0,0,0,0,0.06130891917431188,0.0019397714668332648,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47370182930556404,-0.47370182930556404,-0.42674290546349236,-0.42674290546349236,-0.6430767322078541,-0.6430767322078541,-0.1799204477579488,-0.1799204477579488,-0.160934940675316,-0.160934940675316,-0.3408128140318543,-0.4781228425440461,-0.6083915207487856,-0.5795844816538839,-0.3252519332599083,-0.2693751914382413,-0.47095030427412,-0.6049329798895154,-0.578683879124192,-0.3477921384406763,9.685931244531531,9.685931244531531,8.797414606140322,8.797414606140322,13.68266092275391,13.68266092275391,5.671060104144331,5.671060104144331,5.536758760643238,5.536758760643238,7.416152091852794,9.77447192129091,12.762909053281277,12.038716034747395,7.199663647793088,6.506785001746664,9.63125126202047,12.674060835046745,12.016655916752754,7.516591448282156,189.41965813212917,189.41965813212917,0.0,210.46628681347684,0.0,189.41965813212917,210.46628681347684,0,0
+2017/03/03 16:00:00,182.90664577923104,0,1212.5361350733285,0,0,0,0.0,0.0,16.798297266846703,0.0,108.75639138185811,0,39.380909295966944,0.45260373196989734,14.08646890013509,0,0,263.7525294591194,540.6445517199517,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,589.0459566122446,0.0,5206.828035878419,0.0,4538.189807459303,0.0,6181.290966355782,0.0,945.8141709392296,0.0,0.0,0.0,4734.382249896111,0.0,3911.184881684886,0.0,5702.9864682763055,0.0,6078.9625166277,0,0,0,0,0,0,0,0,0.06455632196490284,0.00204251702750109,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5086800229429792,-0.5086800229429792,-0.47490981949144057,-0.47490981949144057,-0.6551799284270446,-0.6551799284270446,-0.24327395792763568,-0.24327395792763568,-0.20431074310105274,-0.20431074310105274,-0.3866630973850571,-0.4979767750414556,-0.6239194597991171,-0.6036148065311698,-0.3473778920117986,-0.3535633282403525,-0.4957486590447818,-0.6239301939250054,-0.6094583465762459,-0.3763698528779735,10.40951515558828,10.40951515558828,9.71004026564043,9.71004026564043,14.015884257493141,14.015884257493141,6.228249228714191,6.228249228714191,5.865680501832898,5.865680501832898,8.11392133817705,10.182489619542949,13.168211675073962,12.640334246959597,7.5105722337052185,7.601208898544428,10.135851814252845,13.168495471013841,12.79042005063826,7.9494745167391585,182.90664577923104,182.90664577923104,0.0,203.2296064213678,0.0,182.90664577923104,203.2296064213678,0,0
+2017/03/03 17:00:00,206.27845942915536,0,1231.413487874762,0,0,0,0.0,0.0,17.31283728953799,0.0,131.64086955684016,0,39.380909295966944,0.4757026412500234,14.036165443105958,0,0,229.40481789168692,540.6340873200012,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1557.8352812961525,0.0,5183.212142365333,0.0,4957.3981011443475,0.0,6362.391450560148,0.0,669.7429123873944,0.0,900.8019017275335,0.0,4731.477968399871,0.0,4404.67608453677,0.0,5921.352438822314,0.0,5797.675655116665,0,0,0,0,0,0,0,0,0.06556136621063223,0.002074315926862338,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5327385053594448,-0.5327385053594448,-0.4823526987646638,-0.4823526987646638,-0.6354942513351678,-0.6354942513351678,-0.2535450539269062,-0.2535450539269062,-0.1613249846707533,-0.1613249846707533,-0.4201541164812674,-0.4891191371419877,-0.6346176994336042,-0.6183091331878022,-0.35117259448920213,-0.41328822711092805,-0.4892700902243673,-0.6381313230824942,-0.6291986720269427,-0.3821722958393721,10.937903527992589,10.937903527992589,9.859973376848728,9.859973376848728,13.477137436992223,13.477137436992223,6.334436374841005,6.334436374841005,5.539366656846127,5.539366656846127,8.680327657336889,9.99835411778868,13.45353926287838,13.02056636509073,7.565983970368265,8.560297030936553,10.001463802390973,13.54833256847644,13.308390400853739,8.041619216515201,206.27845942915536,206.27845942915536,0.0,229.19828825461707,0.0,206.27845942915536,229.19828825461707,0,0
+2017/03/03 18:00:00,216.97208470493166,0,1172.4874301683572,0,0,0,0.0,0.0,21.40222685545933,0.0,133.89528835348938,0,39.380909295966944,0.3073524260585333,18.554332571503128,0,0,148.73866418721087,562.3741833180726,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3350.9655991639693,0.0,5192.961324571506,0.0,6349.262292673777,0.0,5991.6017895009945,0.0,0.0,0.0,2776.185964414256,0.0,4785.666933070388,0.0,5777.844502722694,0.0,5525.844557569826,0.0,0.0,0,0,0,0,0,0,0,0,0.062424099251419445,0.001975054987128311,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5559548093364672,-0.5559548093364672,-0.6157510897025107,-0.6157510897025107,-0.6263259338068247,-0.6263259338068247,-0.2695834145527756,-0.2695834145527756,-0.11617917001012858,-0.11617917001012858,-0.4420537496051416,-0.5273771512081371,-0.6372187520929858,-0.6200594726305715,-0.33905314408670956,-0.45139786488210604,-0.5403474531696947,-0.6437812712380194,-0.6349440271784405,-0.36888542802950863,11.47156041619003,11.47156041619003,12.953700464830447,12.953700464830447,13.231960711619237,13.231960711619237,6.509122306823784,6.509122306823784,5.2795751936179585,5.2795751936179585,9.076694295582996,10.817984603919712,13.523661030270361,13.06648293910986,7.391155429311198,9.25208688165256,11.110232132238465,13.701884090349566,13.46232063145905,7.832740654323729,216.97208470493166,216.97208470493166,0.0,241.08009411659071,0.0,216.97208470493166,241.08009411659071,0,0
+2017/03/03 19:00:00,219.6836458325294,0,1203.1857209265254,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.28744650838039265,26.719728627628353,0,0,177.64608323130656,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5030.66431862344,0.0,4780.413318693249,0.0,7803.739315978708,0.0,5372.913075015186,0.0,0.0,0.0,4504.194035478064,0.0,4382.962483385974,0.0,7210.053598322431,0.0,4906.541978927367,0.0,0.0,0,0,0,0,0,0,0,0,0.06405849898981295,0.0020267662555804845,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.593098160294112,-0.593098160294112,-0.6208322147609637,-0.6208322147609637,-0.6385369868697687,-0.6385369868697687,-0.3034536653005978,-0.3034536653005978,-0.10418921245900947,-0.10418921245900947,-0.44905123366023453,-0.5372987829959534,-0.6315394363069902,-0.6128300492613232,-0.3202131094019759,-0.4631950125706955,-0.5534853230294624,-0.6381354892403467,-0.6287620106726968,-0.347489420598114,12.373957809952216,12.373957809952216,13.086796551510318,13.086796551510318,13.559311366938047,13.559311366938047,6.913660597152514,6.913660597152514,5.2248209581714775,5.2248209581714775,9.207686643114812,11.04088426934429,13.370931566852647,12.877693300242868,7.131763447075059,9.478889204497449,11.413685801683712,13.54844528421117,13.296749874757708,7.5121920839239635,219.6836458325294,219.6836458325294,0.0,244.09293981392156,0.0,219.6836458325294,244.09293981392156,0,0
+2017/03/03 20:00:00,210.85042006083938,0,1222.2675254736566,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.32074221459769137,27.0977424753112,0,0,232.21824029098232,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5421.289116538736,0.0,5041.541767284646,0.0,7990.16507701174,0.0,5550.099860636847,0.0,0.0,0.0,5059.9812663763405,0.0,4743.063282398316,0.0,7528.39086365975,0.0,5176.711446501665,0.0,0.0,0,0,0,0,0,0,0,0,0.06507442839792205,0.002058909553891843,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5746519647491495,-0.5746519647491495,-0.5863462912078019,-0.5863462912078019,-0.673906234280496,-0.673906234280496,-0.3503372132285162,-0.3503372132285162,-0.12792186951099965,-0.12792186951099965,-0.4622742885331323,-0.5426356818314522,-0.6316389319022467,-0.61145322184689,-0.3129019961737901,-0.4802237103137739,-0.5631925676929522,-0.6408253254701892,-0.629802100122059,-0.34013148057958126,11.918326248529851,11.918326248529851,12.205469610696596,12.205469610696596,14.543962211774627,14.543962211774627,7.553732835635898,7.553732835635898,5.338989800762889,5.338989800762889,9.460972540969408,11.162546837589687,13.37359518350091,12.841995858588916,7.035156285798806,9.816841960720765,11.642706970996201,13.621376165177523,13.324490212626273,7.406457931733414,210.85042006083938,210.85042006083938,0.0,234.27824451204376,0.0,210.85042006083938,234.27824451204376,0,0
+2017/03/03 21:00:00,212.77406305504297,0,1209.4180857458707,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.35509172314635457,24.515242165739306,0,0,254.8591530757402,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5265.50608185531,0.0,4891.248116236753,0.0,7651.470519011918,0.0,5351.69176618893,0.0,0.0,0.0,5095.18495671448,0.0,4702.225339337218,0.0,7358.807732825738,0.0,5092.459962483556,0.0,0.0,0,0,0,0,0,0,0,0,0.06439031470914905,0.002037264673645643,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5869490944735792,-0.5869490944735792,-0.6407980086604504,-0.6407980086604504,-0.7053235436064769,-0.7053235436064769,-0.39141671414472323,-0.39141671414472323,-0.16971157256651334,-0.16971157256651334,-0.46974068914586486,-0.5456775518232829,-0.6291123166534943,-0.6096055917984513,-0.30866628128974194,-0.4916160459418908,-0.5697991620481274,-0.6400539233569141,-0.6298157226557032,-0.3359354342187986,12.22043171724117,12.22043171724117,13.620633933589602,13.620633933589602,15.464002011900845,15.464002011900845,8.191393388348885,8.191393388348885,5.596975022832808,5.596975022832808,9.60731632145621,11.232442972436857,13.306087681547439,12.794221047325891,6.980222223112619,10.04991773831884,11.800912176453323,13.60042866016488,13.324853852074838,7.347190309446518,212.77406305504297,212.77406305504297,0.0,236.4156256167144,0.0,212.77406305504297,236.4156256167144,0,0
+2017/03/03 22:00:00,199.46517545162416,0,1219.5884397321997,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.47149552569344544,27.0977424753112,0,0,300.51985957461375,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1100.681391767635,0.0,0.0,0.0,0.0,0.0,4612.375234929921,0.0,6226.841145808476,0.0,6814.433192756548,0.0,6632.448295370945,0.0,0.0,0.0,4472.925206784454,0.0,6076.376585934955,0.0,6564.586107520014,0.0,6394.7819635199485,0.0,3237.350219156405,0,0,0,0,0,0,0,0,0.06493179188863021,0.0020543966341636977,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6589471343316812,-0.6589471343316812,-0.693574328797766,-0.693574328797766,-0.7431060294949495,-0.7431060294949495,-0.4936657028332289,-0.4936657028332289,-0.2507090247744713,-0.2507090247744713,-0.49248094199884007,-0.5706364732765284,-0.6441278545405786,-0.6303555671852337,-0.3233885902910221,-0.521365287645095,-0.6007463502154071,-0.659522309018224,-0.6555462884013069,-0.35540302776508004,14.12089812187277,14.12089812187277,15.114939436314728,15.114939436314728,16.626817362489092,16.626817362489092,10.092446367103491,10.092446367103491,6.304673094168109,6.304673094168109,10.06784146660317,11.821098080355839,13.71134842603172,13.339270924976887,7.174428923988998,10.684995621900313,12.567202956618956,14.136985687164767,14.026069837290777,7.628480491810819,199.46517545162416,199.46517545162416,0.0,221.62797272402685,0.0,199.46517545162416,221.62797272402685,0,0
+2017/03/03 23:00:00,140.9023151663308,0,1134.251246211529,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.670046794116193,21.047335564438374,0,0,374.8892523603913,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1452.340628618542,0.0,1032.09259198004,0.0,2854.328823319596,0.0,348.8628664688922,0.0,0.0,0.0,4397.808230139173,0.0,6992.519446582836,0.0,6437.994700254892,0.0,7312.993384971899,0.0,6956.314320880798,0.0,4400.885865083772,0.0,6955.367421864363,0.0,6399.490202894,0.0,7254.632023704012,0.0,11541.015167146226,0,0,0,0,0,0,0,0,0.060388376495761543,0.0019106461381551106,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7704734084939896,-0.7704734084939896,-0.7930004786869832,-0.7930004786869832,-0.8228160875479399,-0.8228160875479399,-0.682620664515312,-0.682620664515312,-0.4818524077180383,-0.4818524077180383,-0.5209851232353515,-0.6029899909966457,-0.6655005100176179,-0.6609360532787306,-0.35378747437172336,-0.5594924369247676,-0.6403886077235909,-0.6857906907355056,-0.6902174029682202,-0.3924899742936794,17.50734618734883,17.50734618734883,18.25611360247875,18.25611360247875,19.280200531251722,19.280200531251722,14.794883631036882,14.794883631036882,9.849820346907379,9.849820346907379,10.676638559092822,12.624374154231234,14.305043855720626,14.176588853297744,7.604523922508804,11.554928579087317,13.609513879611242,14.886975499479064,15.016302081579681,8.2090184663641,140.9023151663308,140.9023151663308,0.0,156.55812796258977,0.0,140.9023151663308,156.55812796258977,0,0
+2017/03/04 00:00:00,91.51786402065473,0,1033.9124776002648,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.7976492222392997,11.777258537122876,0,0,461.94021424574476,518.736734585704,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3337.337582257787,0.0,2168.697183846443,0.0,4465.708819262361,0.0,1689.8474859856278,0.0,0.0,0.0,4266.305378148722,0.0,7842.613401772007,0.0,6207.28418511848,0.0,8154.8196495048,0.0,14701.57952798542,0.0,4388.776988098299,0.0,7809.643958624481,0.0,6258.7015412346145,0.0,8151.485211170942,0.0,19363.157898055513,0,0,0,0,0,0,0,0,0.055046266133303004,0.0017416254900450197,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.860165086847741,-0.860165086847741,-0.873995118270646,-0.873995118270646,-0.9070677643133189,-0.9070677643133189,-0.8066240024395248,-0.8066240024395248,-0.6211845474692851,-0.6211845474692851,-0.5514610548693297,-0.6369997917597752,-0.6890721530190855,-0.691389755986788,-0.3877798338193792,-0.595384839217893,-0.6823213867980435,-0.7130721191177022,-0.7244462958507865,-0.4316375930700249,20.615677254228743,20.615677254228743,21.1248964804566,21.1248964804566,22.37444946497834,22.37444946497834,18.719388817576814,18.719388817576814,13.09606716844334,13.09606716844334,11.366442456348793,13.51774676737054,14.98276233495801,15.050694278588082,8.132034580239349,12.431468781086167,14.786211817673546,15.697467289504232,16.04485845235085,8.88560219715572,91.51786402065473,91.51786402065473,0.0,101.68651557850525,0.0,91.51786402065473,101.68651557850525,0,0
+2017/03/04 01:00:00,40.85727525403803,0,601.5943879229226,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.07694218965753152,0.05424405814785805,9.54045494143258,0,0,32.051004363896745,516.3078547902097,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.5853968511675,0.0,393.4890820850653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03202933081799016,0.0010133857007959234,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8445155096672198,-0.8445155096672198,-0.886431497849374,-0.886431497849374,-0.9148654174622899,-0.9148654174622899,-0.7803817783246848,-0.7803817783246848,-0.28855877084151516,-0.28855877084151516,-0.6847413920657913,-0.9048369288305034,-0.9772802372685654,-0.9847577387439538,-0.17245020778447068,-0.7712694400341332,-0.9115697793607528,-0.9937414114822316,-0.9959261301184388,-0.29323784429999383,20.049017987602383,20.049017987602383,21.589525683332113,21.589525683332113,22.67553953493406,22.67553953493406,17.834027287413107,17.834027287413107,6.729793904225545,6.729793904225545,14.856444397710405,22.28876271839833,25.172865578185807,25.482285855937008,5.616422298830173,17.533436985222934,22.547985773322836,25.856870770781043,25.948431260604025,6.786543827754997,40.85727525403803,40.85727525403803,0.0,45.3969725044867,0.0,40.85727525403803,45.3969725044867,0,0
+2017/03/04 02:00:00,23.722260659280813,0,38.86383777084781,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251652356030215,0,0,0.0,3.3734852583036745,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0020691395096236664,6.546613177527786e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.894074891653766,-0.894074891653766,-0.9503048850305668,-0.9503048850305668,-1.019753548295711,-1.019753548295711,-0.8322787129794621,-0.8322787129794621,-0.1264183498893886,-0.1264183498893886,-0.750000532559137,-0.9437070025393002,-1.0939534578136407,-1.0661601515971546,-0.10549302574125755,-0.8705407532281839,-1.0345077322912988,-1.1705108713599108,-1.1503223031899432,-0.2861803551240519,21.878228886440894,21.878228886440894,24.074664832661355,24.074664832661355,26.95874749590665,26.95874749590665,19.613040990266896,19.613040990266896,5.331062470857162,5.331062470857162,16.845623683802458,23.8104006428955,30.23811734425911,28.986710707716682,5.23048573226464,20.99696783392514,27.594978658996567,33.81910745018405,32.85646510733319,6.7013017808648385,23.722260659280813,23.722260659280813,0.0,26.358067399200902,0.0,23.722260659280813,26.358067399200902,0,0
+2017/03/04 03:00:00,28.37514165498746,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5557785685145669,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9244176405030129,-0.9244176405030129,-0.985919339484365,-0.985919339484365,-1.055008568989157,-1.055008568989157,-0.8665149174783975,-0.8665149174783975,-0.0451297514578216,-0.0451297514578216,-0.815409231142716,-1.0048366369122932,-1.1703957070490927,-1.1369730148366823,-0.08397410570748459,-0.9516424349580878,-1.1225621334542415,-1.2715318669286708,-1.2461902753076073,-0.2898710623237547,23.047716847458872,23.047716847458872,25.530546151468428,25.530546151468428,28.49226224077023,28.49226224077023,20.848496184530575,20.848496184530575,5.0421644472092595,5.0421644472092595,19.02229416562865,26.323743969614355,33.81358042410477,32.22698219860537,5.146018750292924,24.128446957631198,31.553898871377086,38.813319596317676,37.53456329035134,6.745616679157919,28.37514165498746,28.37514165498746,0.0,31.527935172208288,0.0,28.37514165498746,31.527935172208288,0,0
+2017/03/04 04:00:00,23.74395786782462,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5468624441468279,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.980456378271945,-0.980456378271945,-1.046381556749505,-1.046381556749505,-1.1140096718060937,-1.1140096718060937,-0.9295625887074345,-0.9295625887074345,0.022215394721556314,0.022215394721556314,-0.890484222402822,-1.0753585129827534,-1.2525628891500855,-1.2135140077815993,-0.05489753965580437,-1.0455455069771806,-1.2193532019242048,-1.3770879306682826,-1.3484635032582075,-0.2971821204334303,25.304031621176662,25.304031621176662,28.112813791541825,28.112813791541825,31.157671793671355,31.157671793671355,23.249692651933273,23.249692651933273,5.010216415108218,5.010216415108218,21.742306442379643,29.39787990951922,37.85460001235031,35.91049000381936,5.062394354584569,28.076184287433122,36.1985730153816,44.294647566053825,42.7862847672222,6.8351001879320705,23.74395786782462,23.74395786782462,0.0,26.38217540869402,0.0,23.74395786782462,26.38217540869402,0,0
+2017/03/04 05:00:00,41.029030962449184,0,394.08625040322687,0,0,0,0.0,0.019697874193859374,4.633261998087618,9.319298099999997,23.111338313975452,0,2.0197048448924826,1.4006691375410152,0.5250606937587414,0,0,305.36036912186654,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12126256561154233,552.8545746681382,0.16938661036378605,584.4928483983942,0.5271742684638989,1325.2472155813311,0.0,264.0151047032752,0.0,0.0,1.7463099422846589,2351.105373501728,1.4695794048579336,2087.33964452839,3.22850209091964,4503.848083254645,1.6717325505109824,2616.191861328976,0.0,0.0,2.7332833179692977,3234.9644110795675,1.554569120386077,2570.7400243007805,4.089981054266404,5161.247669152656,2.38609326822515,3039.8959057509483,0.0,0.0,0,0,0,0,0,0,0,0,0.020981443873780713,0.0006638382588935964,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8945863108342795,-0.8945863108342795,-0.9220107550997636,-0.9220107550997636,-0.949101572903724,-0.949101572903724,-0.8631142257786856,-0.8631142257786856,0.15448293277362815,0.15448293277362815,-0.6917432559834116,-0.7799268522654038,-0.8463506903142283,-0.840232827187775,-0.02363524979861623,-0.7734664133299268,-0.8636391162396031,-0.91525390659201,-0.9180826010775095,-0.2858045124694816,21.89763110213626,21.89763110213626,22.953593465833663,22.953593465833663,24.026340578855354,24.026340578855354,20.723601144275847,20.723601144275847,5.4945394301617085,5.4945394301617085,15.06107622344058,17.81893671985962,20.11494136888669,19.89572161948297,5.011564107631187,17.605585334554803,20.742847262397177,22.690604400522588,22.80047900559056,6.696821239075902,41.029030962449184,41.029030962449184,0.0,45.58781218049909,0.0,41.029030962449184,45.58781218049909,0,0
+2017/03/04 06:00:00,75.29714279013838,0,330.65867706008726,0,0,0,0.0,0.016356593506549985,4.633261998087618,9.319298099999997,57.911447091112116,0,1.6864746369377692,1.2051725572546506,0.5251318132396479,0,0,117.71656198482242,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,55.62454658739396,0.0,272.5827664726406,0.0,0.0,0.0,0.0,1.4378522827453253,1874.2200026252715,1.3679007046630431,1687.3363871403267,2.3202423100640317,3841.518708661978,1.6668190605507789,2184.045654603094,0.0,0.0,2.238523898358494,2806.9488556946753,1.5883172963693823,2267.848541474267,3.4416826520150607,4658.015038822774,2.295255301783868,2725.081270742134,0.0,0.0,0,0,0,0,0,0,0,0,0.017604512887765534,0.000556994516411149,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7567536743015751,-0.7567536743015751,-0.8104864241831745,-0.8104864241831745,-0.8352908330611257,-0.8352908330611257,-0.7247758212016894,-0.7247758212016894,0.4690346851662329,0.4690346851662329,-0.6681839110005614,-0.7385898819757303,-0.7825776361630271,-0.7816618871310074,0.04314267240248616,-0.7179474286937898,-0.7840322530931212,-0.8077073859240104,-0.8185704411090703,-0.22684584336292551,17.06191758012494,17.06191758012494,18.852160043649775,18.852160043649775,19.719777248902687,19.719777248902687,16.055005861629184,16.055005861629184,9.593375598118044,9.593375598118044,14.38098251931784,16.48459629175322,17.906990921340707,17.87653762253177,5.038532855992699,15.845687214577723,17.955437607490893,18.75656671647903,19.132085042676195,6.067618376563431,75.29714279013838,75.29714279013838,0.0,83.66349198904264,0.0,75.29714279013838,83.66349198904264,0,0
+2017/03/04 07:00:00,106.01545236431258,0,828.1556072285032,0,0,0,0.12393071425199226,0.013909625258387981,8.33396954093373,13.929299233552332,80.56906512710079,0,1.4885550716939238,1.0316562963583986,0.5250667551630537,0,0,91.83652989042953,505.6317860065368,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,393.73390886250786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.195718247972157,1527.622852547489,1.4167485939482656,1383.4743084473264,2.1296248247538943,3138.3255237101043,1.6648425169445695,1790.8222259951763,0.0,0.0,1.4763058564091502,2234.1909337345933,1.4714460954101014,1795.2692663937528,3.362689401506789,3631.0809384498034,1.1922497214430525,2137.1582060625547,0.0,0.0,0,0,0,0,0,0,0,0,0.04409161794922482,0.001395028057520469,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.625819016847827,-0.625819016847827,-0.6954277656256572,-0.6954277656256572,-0.7412646513072407,-0.7412646513072407,-0.600320777237868,-0.600320777237868,0.7107558147902978,0.7107558147902978,-0.6575729223232935,-0.7235187125273654,-0.7625530104427415,-0.7631913605769117,0.11871993593427821,-0.7024104128759462,-0.7640017950164553,-0.7826529473195083,-0.7951521079224861,-0.12665901111665404,13.218511266310713,13.218511266310713,15.169608024480553,15.169608024480553,16.56872360709872,16.56872360709872,12.556383395207988,12.556383395207988,15.627405562675904,15.627405562675904,14.082519617734008,16.016319522441307,17.249219394451202,17.26992407551704,5.2919448761529395,15.376898953190292,17.29623533237077,17.90949698601993,18.328758406125843,5.332325042768417,106.01545236431258,106.01545236431258,0.0,117.79494707145842,0.0,106.01545236431258,117.79494707145842,0,0
+2017/03/04 08:00:00,120.14069059373827,0,1001.8681961830183,0,0,0,0.0,0.0,6.821942926840887,0.0,69.33401494192633,0,39.380909295966944,0.6467929997298912,0.5250552268199313,0,0,243.36613351492272,492.32441882401463,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2705.623178864796,0.0,1748.7114789774384,0.0,3494.881182349261,0.0,1434.211615966459,0.0,0.0,0.0,6374.413241791098,0.0,7290.588680226248,0.0,8166.053009578622,0.0,7539.207404653698,0.0,4698.980408805223,0.0,6858.858563139719,0.0,7550.354505762256,0.0,8438.585317195768,0.0,7688.083759311612,0.0,8242.836448545284,0,0,0,0,0,0,0,0,0.053340204855235926,0.0016876469004297877,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.720875114332638,-0.720875114332638,-0.75432048677016,-0.75432048677016,-0.7910103628407921,-0.7910103628407921,-0.692698848128015,-0.692698848128015,0.08365615106948623,0.08365615106948623,-0.6343325272591699,-0.7049234122547037,-0.7350492948065874,-0.734820566941109,-0.22315358168076427,-0.6768022216329118,-0.7419451870505819,-0.7518932548840828,-0.7607053368712275,-0.3279489204638904,15.93518715973353,15.93518715973353,16.98376096079862,16.98376096079862,18.18909666477117,18.18909666477117,15.089168044725255,15.089168044725255,5.144914745850443,5.144914745850443,13.445869158961514,15.452016329443055,16.373709452417245,16.366564488632875,6.03307446830695,14.62698411051555,16.59017692715598,16.906048084262466,17.189388823275735,7.236448957128516,120.14069059373827,120.14069059373827,0.0,133.48965621526474,0.0,120.14069059373827,133.48965621526474,0,0
+2017/03/04 09:00:00,143.57164297359958,0,1064.065165758942,0,0,0,0.0,0.0,11.86011032607099,0.0,87.89947186453183,0,39.380909295966944,0.47405948760763794,0.5251167969679105,0,0,252.33787105109963,492.3141220949454,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.509756908910205,0.0,930.8526488395397,0.0,2239.933908395339,0.0,0.0,0.0,0.0,0.0,4547.6801652662925,0.0,6472.179512187464,0.0,7023.608799390368,0.0,6040.112443219567,0.0,154.74013675512617,0.0,4662.806693281686,0.0,6666.877484799501,0.0,7181.400057803074,0.0,5978.482751215447,0.0,3080.931968318944,0,0,0,0,0,0,0,0,0.05665161758516812,0.0017924176909597613,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6460831155287551,-0.6460831155287551,-0.7504546461257299,-0.7504546461257299,-0.7799854921809272,-0.7799854921809272,-0.5865801984894745,-0.5865801984894745,-0.2576164526554446,-0.2576164526554446,-0.556377441141887,-0.685254651331006,-0.7099757787049311,-0.6551989682619503,-0.30738371828894817,-0.5848085332804052,-0.7174126921251364,-0.7225863391104691,-0.6657539072662295,-0.3735311324499328,13.764839363424542,13.764839363424542,16.860107087930686,16.860107087930686,17.820881397907783,17.820881397907783,12.211273522621212,12.211273522621212,6.377755842716496,6.377755842716496,11.481491667024642,14.871372587440533,15.603863712157164,14.01641346175559,6.963738117999256,12.167372530083483,15.829380074556582,15.987670528907358,14.312201515067315,7.904918048693986,143.57164297359958,143.57164297359958,0.0,159.52404774844396,0.0,143.57164297359958,159.52404774844396,0,0
+2017/03/04 10:00:00,183.95701452201683,0,1229.6709343310756,0,0,0,0.0,0.0,11.393746067737203,0.0,106.27511244621549,0,39.380909295966944,0.4655204636652919,23.009751045977723,0,0,257.366825404673,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,629.7686906611588,0.0,1703.7989659278423,0.0,0.0,0.0,0.0,0.0,3279.992736982805,0.0,6574.779420261651,0.0,6307.673730089051,0.0,6005.998344618703,0.0,8.02793372372453,0.0,3303.3774298357525,0.0,6621.250090236923,0.0,6228.843359992823,0.0,5766.7193054356285,0.0,5398.368142859463,0,0,0,0,0,0,0,0,0.06546859136924534,0.0020713805955502556,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5044835908327104,-0.5044835908327104,-0.7366552368029164,-0.7366552368029164,-0.76169618557452,-0.76169618557452,-0.5069248083405562,-0.5069248083405562,-0.25784542061774407,-0.25784542061774407,-0.49586076084187514,-0.6781711563003103,-0.6980787483183001,-0.631672725937872,-0.31901220113993795,-0.5036032379323765,-0.7051646283129951,-0.705722976052271,-0.635736629805167,-0.3782320050064488,10.319914936431644,10.319914936431644,16.42393887794168,16.42393887794168,17.221455921470053,17.221455921470053,10.371946026356426,10.371946026356426,6.380212759765001,6.380212759765001,10.138193149208249,14.666354927305662,15.248058736219647,13.374499988151939,7.1157395242777,10.301214664230358,15.459240977543644,15.475973648231815,13.483668533824257,7.978889531125162,183.95701452201683,183.95701452201683,0.0,204.39668280224092,0.0,183.95701452201683,204.39668280224092,0,0
+2017/03/04 11:00:00,210.41697122155324,0,1364.5047173825344,0,0,0,0.0,0.0,15.025710948003718,0.0,131.64086955684016,0,39.380909295966944,0.5877138004795415,20.349792417808576,0,0,320.8104965581664,582.3196381612944,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,211.75047014784815,0.0,952.4004685671105,0.0,0.0,0.0,0.0,0.0,2500.1802062581764,0.0,7037.027094358693,0.0,5162.625713098527,0.0,6758.9484668298155,0.0,5091.235634346012,0.0,2350.9127109465308,0.0,6996.072181761126,0.0,4966.892164685957,0.0,6503.664356048122,0.0,10579.017217673181,0,0,0,0,0,0,0,0,0.07264724185118701,0.0022985080928667277,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5189562622989672,-0.5189562622989672,-0.7090226972463664,-0.7090226972463664,-0.7275022583071163,-0.7275022583071163,-0.5159558725661759,-0.5159558725661759,-0.22697673057584367,-0.22697673057584367,-0.5139666010568366,-0.678800664183601,-0.6902894648648121,-0.659096069968611,-0.34233748451737567,-0.525325708590776,-0.703015623499659,-0.6961032611128649,-0.6682856615808281,-0.39468298194910745,10.632144351055928,10.632144351055928,15.575134881952721,15.575134881952721,16.139143026683172,16.139143026683172,10.566670361455166,10.566670361455166,6.068853416159158,6.068853416159158,10.523475527563079,14.68448690759358,15.01841437914807,14.125062458056078,7.43791688248271,10.772428612255169,15.394964707921602,15.189569193354501,14.383868136654058,8.245185137298975,210.41697122155324,210.41697122155324,0.0,233.7966346906147,0.0,210.41697122155324,233.7966346906147,0,0
+2017/03/04 12:00:00,218.21207540131698,0,1324.7561309883538,0,0,0,0.0,0.0,14.876918395255093,0.0,136.4899973586286,0,39.380909295966944,0.41052901941532555,23.621746129596662,0,0,211.30641167306257,598.8396078834014,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2440.3490637835166,0.0,5863.564161806444,0.0,5641.638071174926,0.0,5728.469077199565,0.0,0.0,0.0,2182.979987392513,0.0,5705.247470927002,0.0,5277.987034686678,0.0,5425.302534941464,0.0,632.3028331710985,0,0,0,0,0,0,0,0,0.07053099766951788,0.0022315516021025965,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4284673428554044,-0.4284673428554044,-0.6093278942210651,-0.6093278942210651,-0.6464054966619593,-0.6464054966619593,-0.4297278385276783,-0.4297278385276783,-0.12949536511969845,-0.12949536511969845,-0.4409642787450466,-0.6507722532264023,-0.6610635990892298,-0.6415225238830202,-0.33291029056746785,-0.431304087127803,-0.6670636886614129,-0.6595659956080617,-0.6456671425955722,-0.3729338158487974,8.828366473279274,8.828366473279274,12.787053332112379,12.787053332112379,13.77367480528504,13.77367480528504,8.851071806388049,8.851071806388049,5.347386737077187,5.347386737077187,9.056488866988872,13.893797599586094,14.18016604786989,13.640330863840603,7.304925043806449,8.879560771510967,14.349242972312382,14.138208181413702,13.75344552644978,7.895586357867629,218.21207540131698,218.21207540131698,0.0,242.45786155701887,0.0,218.21207540131698,242.45786155701887,0,0
+2017/03/04 13:00:00,206.31774679919334,0,1281.6738760224532,0,0,0,0.0,0.0,14.932575391494975,0.0,124.80122689546741,0,39.380909295966944,0.4220433886910492,23.34901662511868,0,0,202.89870955841823,599.6554075446891,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2274.566074891979,0.0,5463.9355499447,0.0,5742.410480416193,0.0,5547.631713508851,0.0,0.0,0.0,1802.2200824860251,0.0,5192.455837366042,0.0,5278.069463551637,0.0,5196.180092433654,0.0,0.0,0,0,0,0,0,0,0,0,0.06823726650381987,0.002158979546882425,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48631973936836315,-0.48631973936836315,-0.5837746308636184,-0.5837746308636184,-0.6102354607011848,-0.6102354607011848,-0.3868032826400787,-0.3868032826400787,-0.11516538419111491,-0.11516538419111491,-0.42578344110092287,-0.618760537816712,-0.6486372178986589,-0.6332554126197831,-0.331969517906876,-0.4161421770174287,-0.629429585957792,-0.6459237262832012,-0.6368209713472116,-0.36446040060648743,9.940863848129766,9.940863848129766,12.141815874110975,12.141815874110975,12.810491141459963,12.810491141459963,8.116192190968476,8.116192190968476,5.274714455740423,5.274714455740423,8.780248465168924,13.032395319493062,13.83496275720772,13.416930482765494,7.2918603887369215,8.609944873581995,13.314549452544256,13.760472675720607,13.512918252852089,7.764847277047423,206.31774679919334,206.31774679919334,0.0,229.2419408879926,0.0,206.31774679919334,229.2419408879926,0,0
+2017/03/04 14:00:00,200.7669906796654,0,1126.8522181031701,0,0,0,0.0,0.0,14.876918321203716,0.0,122.5097643007467,0,39.380909295966944,0.14202335532219487,20.425400203971574,0,0,83.56740415167971,599.6554075446891,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1851.9853350475353,0.0,4939.193270767341,0.0,5435.705172488894,0.0,5295.889253691059,0.0,0.0,0.0,1261.9454715069137,0.0,4553.524407042929,0.0,4864.8961515246465,0.0,4887.878684026998,0.0,0.0,0,0,0,0,0,0,0,0,0.059994446758763066,0.001898182475868157,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.500416717108788,-0.500416717108788,-0.5444877054393797,-0.5444877054393797,-0.5875832903955939,-0.5875832903955939,-0.3691920664153223,-0.3691920664153223,-0.1385572298947506,-0.1385572298947506,-0.4061218462787553,-0.5604145455669508,-0.6334931880643583,-0.62052210416154,-0.3320042323914333,-0.3934366752952695,-0.5568185430313338,-0.6279085881890347,-0.6214141280930783,-0.36058326413976766,10.23380730430074,10.23380730430074,11.205054917379641,11.205054917379641,12.23619003925026,12.23619003925026,7.8374763386988775,7.8374763386988775,5.397749420854879,5.397749420854879,8.437167513756577,11.576748264973844,13.423314430900959,13.078641344615676,7.292341806692306,8.224606061226865,11.49186519847359,13.274023207236752,13.102110817684377,7.7060459211231205,200.7669906796654,200.7669906796654,0.0,223.0744340885171,0.0,200.7669906796654,223.0744340885171,0,0
+2017/03/04 15:00:00,185.4658206038477,0,1224.4002590497998,0,0,0,0.0,0.0,14.876918321203716,0.0,108.75639138185811,0,39.380909295966944,0.4219500188965204,18.597676383468134,0,0,253.9004553404253,562.3607498151172,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1966.3935774635227,0.0,5328.285663622843,0.0,5326.544245765116,0.0,6099.383070005861,0.0,0.0,0.0,1317.3568670619152,0.0,4886.821632675876,0.0,4663.92249819129,0.0,5627.985567733178,0.0,3562.645007056462,0,0,0,0,0,0,0,0,0.06518797671324589,0.002062502143438984,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48667208980115684,-0.48667208980115684,-0.4654001545396598,-0.4654001545396598,-0.6405687814986251,-0.6405687814986251,-0.4214682838179105,-0.4214682838179105,-0.1919026931096709,-0.1919026931096709,-0.42474809914102973,-0.5292386486007334,-0.6367330231783823,-0.6274742022817488,-0.3435450630231645,-0.41845800576768827,-0.5179159751925146,-0.6330081539648781,-0.6310729714891683,-0.3746020287530444,9.948081338502377,9.948081338502377,9.521948219732096,9.521948219732096,13.61440682260843,13.61440682260843,8.70353258278702,8.70353258278702,5.763564785855081,5.763564785855081,8.761769076719276,10.85948019255008,13.5105439824097,13.262467632485368,7.455225258120848,8.650488028320154,10.60939927279344,13.410294524606712,13.358449469745352,7.92168642548549,185.4658206038477,185.4658206038477,0.0,206.07313400427523,0.0,185.4658206038477,206.07313400427523,0,0
+2017/03/04 16:00:00,182.775048629618,0,1150.8008681717085,0,0,0,0.0,0.0,14.9325753174436,0.0,106.31215624428707,0,39.380909295966944,0.31483150568837526,18.402601063777723,0,0,180.31240626759848,562.3494080098525,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2105.018871718875,0.0,5116.8357792965735,0.0,4931.303110770035,0.0,6036.3885113111255,0.0,0.0,0.0,1649.7824836130308,0.0,4677.63923000079,0.0,4392.83206585429,0.0,5640.2977907612985,0.0,4369.225898643976,0,0,0,0,0,0,0,0,0.061269490627336824,0.0019385239750909383,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5119729813947038,-0.5119729813947038,-0.5037643928046251,-0.5037643928046251,-0.6730296822661307,-0.6730296822661307,-0.45621126290740954,-0.45621126290740954,-0.22084187445810138,-0.22084187445810138,-0.4579308271585698,-0.524962036633348,-0.6436673850146589,-0.6382718918140615,-0.3509851153014563,-0.46399393014075424,-0.5163624682005257,-0.6441072339641085,-0.6472685740694739,-0.3853819950046366,10.4803580108493,10.4803580108493,10.304635377452001,10.304635377452001,14.518904858486948,14.518904858486948,9.34390183995147,9.34390183995147,6.011737602366807,6.011737602366807,9.376944052068666,10.764371629981937,13.69877527532627,13.55213608259956,7.563231944477977,9.494465183998614,10.57552020744211,13.710785183183589,13.797351193594707,8.093207723159352,182.775048629618,182.775048629618,0.0,203.08338736624222,0.0,182.775048629618,203.08338736624222,0,0
+2017/03/04 17:00:00,195.27386174998327,0,1279.3622062562995,0,0,0,0.0,0.0,15.44561261458931,0.0,120.17895923267236,0,39.380909295966944,0.48211379844290264,16.3542916058574,0,0,256.6352429768984,561.3523806163274,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2781.9455974726757,0.0,5537.4308986452525,0.0,5128.336702707298,0.0,6239.712144983878,0.0,0.0,0.0,2422.5843193106925,0.0,5145.193371911871,0.0,4649.172749210804,0.0,5884.800061348128,0.0,4865.708004333343,0,0,0,0,0,0,0,0,0.06811419149320065,0.002155085539336792,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5401159152909569,-0.5401159152909569,-0.5254765830065535,-0.5254765830065535,-0.6575759968115839,-0.6575759968115839,-0.4444301358703211,-0.4444301358703211,-0.17509095631924212,-0.17509095631924212,-0.4884091421662056,-0.552715206351396,-0.649638363309267,-0.6471785525686803,-0.3527371682075394,-0.5025541378827056,-0.5546555921315711,-0.6541399306003933,-0.660549239153016,-0.3893896577777622,11.104951228768073,11.104951228768073,10.7757728447028,10.7757728447028,14.082605389617257,14.082605389617257,9.120943985184837,9.120943985184837,5.635470793259529,5.635470793259529,9.983741175728568,11.395691512269437,13.862526562357743,13.794880168316169,7.589008810296647,10.278973645676103,11.441079142330793,13.987001818948215,14.165744438395805,8.158239365497138,195.27386174998327,195.27386174998327,0.0,216.9709574999814,0.0,195.27386174998327,216.9709574999814,0,0
+2017/03/04 18:00:00,223.8669919618174,0,1235.4530645887228,0,0,0,0.0,0.0,23.798027217215836,0.0,138.40412594678773,0,39.380909295966944,0.3750233674526878,18.47693093193987,0,0,193.06925851799576,581.0092234076533,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2844.017035213879,0.0,5739.7793277653855,0.0,4943.042028836923,0.0,6146.242285011052,0.0,0.0,0.0,2641.629078151361,0.0,5477.173078786323,0.0,4617.11702532466,0.0,5449.621649070516,0.0,4525.569637635301,0,0,0,0,0,0,0,0,0.06577643626702491,0.0020811205935304064,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5401840255897714,-0.5401840255897714,-0.5883820058604192,-0.5883820058604192,-0.6675993225414396,-0.6675993225414396,-0.42728919414093924,-0.42728919414093924,-0.14685306229411615,-0.14685306229411615,-0.5022117549484786,-0.5842080672602011,-0.6503819197566483,-0.6522490394570964,-0.3522959436050313,-0.5233798213750243,-0.5994895908186663,-0.6580125587814918,-0.7365948356298843,-0.39086002074796705,11.106504443664079,11.106504443664079,12.256061130098331,12.256061130098331,14.364412444832126,14.364412444832126,8.807206112648942,8.807206112648942,5.446850523561025,5.446850523561025,10.271725391096723,12.152524183001901,13.88302647849531,13.934608782634015,7.582505044600296,10.729385025366724,12.535274382505463,14.094788726637589,16.42204769177745,8.182270760856355,223.8669919618174,223.8669919618174,0.0,248.7411021797971,0.0,223.8669919618174,248.7411021797971,0,0
+2017/03/04 19:00:00,227.79727434127275,0,1185.4446039188294,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,120.14191543460078,0,39.380909295966944,0.2755203650925409,25.6377917521409,0,0,159.90496622361076,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4566.112323260016,0.0,4743.530240349299,0.0,6509.751001415927,0.0,5073.8893870991105,0.0,0.0,0.0,4374.193120472508,0.0,4493.348710588604,0.0,6176.28856599059,0.0,4801.584839562127,0.0,0.0,0,0,0,0,0,0,0,0,0.06311394877935957,0.0019968813453275485,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5635260917541757,-0.5635260917541757,-0.5749627441652255,-0.5749627441652255,-0.6406813356907012,-0.6406813356907012,-0.42427229282365464,-0.42427229282365464,-0.13268774440126196,-0.13268774440126196,-0.4997742680902556,-0.5775187918740937,-0.6380127116043153,-0.6382086087744225,-0.32910623628812835,-0.5219878931274511,-0.5950228587511378,-0.6450439954898938,-0.6861168423060265,-0.3630011026983944,11.650648351473848,11.650648351473848,11.92588039870023,11.92588039870023,13.617464148644615,13.617464148644615,8.753292031217,8.753292031217,5.3647391708687024,5.3647391708687024,10.220270151179776,11.988169499742767,13.54512384124537,13.550423661622062,7.252328660715506,10.698695718240685,12.422349696188775,13.736391058713295,14.89647512371738,7.742640153819394,227.79727434127275,227.79727434127275,0.0,253.10808260141417,0.0,227.79727434127275,253.10808260141417,0,0
+2017/03/04 20:00:00,220.08131292003566,0,1219.4151759393271,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.89738010901058,0,39.380909295966944,0.34414354627531457,27.0977424753112,0,0,229.3658907566526,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5601.135098542996,0.0,4345.3733969111,0.0,7430.066015415287,0.0,4643.203817211703,0.0,0.0,0.0,5449.2340494860355,0.0,4134.754987210126,0.0,7113.661412574996,0.0,4334.222479357621,0.0,0.0,0,0,0,0,0,0,0,0,0.06492256719596003,0.002054104771317754,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5803403525678641,-0.5803403525678641,-0.5583078747320482,-0.5583078747320482,-0.6323666198495953,-0.6323666198495953,-0.43169291551172495,-0.43169291551172495,-0.13277115399256886,-0.13277115399256886,-0.4939230599284832,-0.5648674512806378,-0.6231671388431957,-0.6204898490641831,-0.30766442377330744,-0.517159112913752,-0.583518502101544,-0.6305005463630837,-0.6548352683899535,-0.33803140564829354,12.057258138529804,12.057258138529804,11.526952610391206,11.526952610391206,13.393089321037749,13.393089321037749,8.886604819230868,8.886604819230868,5.365198232214155,5.365198232214155,10.09779912742664,11.682635534959005,13.14833376949035,13.077793348161833,6.9673399270842395,10.592880486804404,12.135491889867595,13.343144888580596,14.006307291964518,7.376701670867206,220.08131292003566,220.08131292003566,0.0,244.53479213337295,0.0,220.08131292003566,244.53479213337295,0,0
+2017/03/04 21:00:00,200.61628587347923,0,1090.9886042750911,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,0.1770541478053557,23.80759654276251,0,0,136.4296716049608,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4681.9551666652615,0.0,4807.626477857257,0.0,6405.045097015682,0.0,5074.326219815586,0.0,0.0,0.0,4642.472345916386,0.0,4686.030480854702,0.0,6220.365419389228,0.0,4906.7517698918255,0.0,0.0,0,0,0,0,0,0,0,0,0.058085041394138295,0.0018377702210967601,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5624456688734153,-0.5624456688734153,-0.5597108849633974,-0.5597108849633974,-0.6611780989159122,-0.6611780989159122,-0.46105759419324527,-0.46105759419324527,-0.18080440657409172,-0.18080440657409172,-0.4977643102542996,-0.5661851258028836,-0.6200377336512437,-0.6183948040429886,-0.3077510818454585,-0.5253263872899042,-0.5885439159128643,-0.6301862768583693,-0.6500535211271739,-0.33919789840088127,11.624940422594378,11.624940422594378,11.560094341673548,11.560094341673548,14.183377950528438,14.183377950528438,9.437352497038518,9.437352497038518,5.677679546147459,5.677679546147459,10.178033162775648,11.71413388894922,13.065911846108762,13.022810670272548,6.968452534136745,10.77244365386943,12.260092634515516,13.33474850144718,13.873969544472118,7.393206744687419,200.61628587347923,200.61628587347923,0.0,222.9069843038658,0.0,200.61628587347923,222.9069843038658,0,0
+2017/03/04 22:00:00,196.91634981530393,0,1082.9704065190972,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,0.17708868602242273,27.0977424753112,0,0,163.9018263615111,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.40254091867955,0.0,0.0,0.0,0.0,0.0,4525.5405182118075,0.0,4950.620011214732,0.0,6156.209353828857,0.0,5192.349436607918,0.0,0.0,0.0,4556.76846999963,0.0,4876.315426105925,0.0,6052.72035730721,0.0,5093.994825821158,0.0,0.0,0,0,0,0,0,0,0,0,0.057658146606476654,0.0018242635675853596,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.573993014534733,-0.573993014534733,-0.5863921864701087,-0.5863921864701087,-0.6995410379803203,-0.6995410379803203,-0.5048491094781408,-0.5048491094781408,-0.24346746917704948,-0.24346746917704948,-0.5047733351844298,-0.5720595425596904,-0.6213098285962902,-0.6212660563103762,-0.3090837181672637,-0.5346689589684539,-0.5967270879072463,-0.633206146992999,-0.650255655155998,-0.34048219511746375,11.902322933281994,11.902322933281994,12.206608216832237,12.206608216832237,15.291462237998786,15.291462237998786,10.327689049171752,10.327689049171752,6.2302088599439,6.2302088599439,10.326076952618806,11.855475213639878,13.099364877489151,13.098212605276743,6.985602334644341,10.981387319897507,12.465332619866402,13.415608074246435,13.87954366302398,7.411445511269406,196.91634981530393,196.91634981530393,0.0,218.79594423922657,0.0,196.91634981530393,218.79594423922657,0,0
+2017/03/04 23:00:00,140.57696508913946,0,1115.0712437814861,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,0.4921364710633323,18.645477013650705,0,0,374.3613789217936,581.0032785532438,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,576.5452941455171,0.0,402.0458292603647,0.0,1880.8015324996575,0.0,229.87599430959324,0.0,0.0,0.0,4840.5792337499115,0.0,5658.996080655205,0.0,6393.186578448453,0.0,5872.049563835848,0.0,0.0,0.0,4824.20752981447,0.0,5536.087717330263,0.0,6255.838014294293,0.0,5765.474159243089,0.0,1011.2625617840325,0,0,0,0,0,0,0,0,0.05936721895963041,0.0018783374255174415,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.722546448960516,-0.722546448960516,-0.7298607359519953,-0.7298607359519953,-0.7883918056842681,-0.7883918056842681,-0.6802447224085515,-0.6802447224085515,-0.46251410855737374,-0.46251410855737374,-0.5246752127514701,-0.5928941288886583,-0.6366774532744062,-0.6389008220139629,-0.3270320243321959,-0.5593109272885415,-0.6229913478751845,-0.6522317013514128,-0.6667793900116545,-0.3608135626733523,15.986445660735626,15.986445660735626,16.212182936699733,16.212182936699733,18.101173030056756,18.101173030056756,14.726145496256223,14.726145496256223,9.465635759016976,9.465635759016976,10.758021219144183,12.36883735872577,13.509043976552519,13.569164195469156,7.223908424842833,11.550637893533462,13.143692541341892,13.934129093363723,14.341196511431946,7.709520784862406,140.57696508913946,140.57696508913946,0.0,156.19662787682162,0.0,140.57696508913946,156.19662787682162,0,0
+2017/03/05 00:00:00,93.65930333959832,0,970.3918786296423,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.6240328268662045,14.092314251439552,0,0,376.551668043462,540.6046818173642,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2403.2113567398255,0.0,1516.9222092776256,0.0,3458.1363007669984,0.0,1392.9984527603947,0.0,0.0,0.0,4482.3616103818185,0.0,6508.67542169115,0.0,5963.255200921748,0.0,6735.136321755073,0.0,5531.260709411887,0.0,4548.243513892227,0.0,6467.830358248783,0.0,5946.912653203357,0.0,6709.912882605126,0.0,10010.16278283947,0,0,0,0,0,0,0,0,0.05166438239397594,0.0016346250459001379,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8283688816112001,-0.8283688816112001,-0.8337325368457467,-0.8337325368457467,-0.8736181922060251,-0.8736181922060251,-0.8020915240389038,-0.8020915240389038,-0.5601989997521839,-0.5601989997521839,-0.5478296120471998,-0.6185939013164184,-0.6550121116986398,-0.6610735120481602,-0.3514454432419382,-0.5877368982621467,-0.6534080075200109,-0.6739950833981341,-0.6896986419638244,-0.3896247425850507,19.475060470170945,19.475060470170945,19.66451069480769,19.66451069480769,21.110913547632364,21.110913547632364,18.564387815499984,18.564387815499984,11.571644542143346,11.571644542143346,11.282135248832915,13.028027618724536,14.011220541084938,14.180444099712062,7.569991816031447,12.240009470110124,13.966703223882433,14.546503933014648,15.001102643379426,8.162075352134622,93.65930333959832,93.65930333959832,0.0,104.06589259955369,0.0,93.65930333959832,104.06589259955369,0,0
+2017/03/05 01:00:00,43.39263564363375,0,662.6559955963414,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.2635014768376764,0.18138892666984396,11.762111175326174,0,0,90.77328573453104,518.6471810929943,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,282.7549491082472,0.0,357.99680313716163,0.0,958.6688785480974,0.0,259.01208411174684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.035280296039262866,0.0011162439742873,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8607413147564685,-0.8607413147564685,-0.8703499287158554,-0.8703499287158554,-0.9009509501713724,-0.9009509501713724,-0.8439227407685486,-0.8439227407685486,-0.24444701282300163,-0.24444701282300163,-0.8503007681690392,-1.0496652871830556,-1.0464697238497132,-1.0610701735774648,-0.14224099603486934,-0.9078957004173034,-0.9612604358836832,-1.013390920329919,-1.0246342208683958,-0.2901989031040739,20.636736044297237,20.636736044297237,20.989915187078168,20.989915187078168,22.13998345316368,22.13998345316368,20.027754524719654,20.027754524719654,6.240152543760345,6.240152543760345,20.257311882319783,28.25692769376961,28.116678098808535,28.760475950992856,5.419199208145628,22.406301888789145,24.51725175403878,26.686873858672286,27.168320203942713,6.749580926811134,43.39263564363375,43.39263564363375,0.0,48.2140396040375,0.0,43.39263564363375,48.2140396040375,0,0
+2017/03/05 02:00:00,23.722161293673338,0,46.98803529127097,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250658699955447,0,0,0.0,11.497682778726828,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.00250167780325826,7.915134188181455e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9527885605978779,-0.9527885605978779,-0.9979713331008613,-0.9979713331008613,-1.0719901144384785,-1.0719901144384785,-0.9549135601765233,-0.9549135601765233,-0.10320605040033404,-0.10320605040033404,-0.9111137179564959,-1.0858720376067972,-1.1665927250287336,-1.1537367661568887,-0.07622969186212011,-1.006267942207249,-1.0984179752454748,-1.196772070428539,-1.192094942093525,-0.3002073099627582,24.174588063665965,24.174588063665965,26.034309348928232,26.034309348928232,29.246965122573684,29.246965122573684,24.260273708114568,24.260273708114568,5.220596019955451,5.220596019955451,22.5303689801285,29.8714735725503,33.63129364206277,33.018382471572394,5.1203212006627155,26.384311023387028,30.441629129196656,35.08985161815471,34.8620360149081,6.872787572003659,23.722161293673338,23.722161293673338,0.0,26.357956992970376,0.0,23.722161293673338,26.357956992970376,0,0
+2017/03/05 03:00:00,28.39714556465167,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5777824781787754,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9508537126962866,-0.9508537126962866,-1.0015020850949332,-1.0015020850949332,-1.0742192278330618,-1.0742192278330618,-0.9566471237197989,-0.9566471237197989,-0.0263001145422735,-0.0263001145422735,-0.9196264859634992,-1.0849759892106035,-1.1885133727550221,-1.1699047342333229,-0.05452679743871131,-1.0497823790566392,-1.1589265968949944,-1.2669107266649329,-1.259343583115939,-0.27547883238602094,24.09672435615404,24.09672435615404,26.182939479461467,26.182939479461467,29.346791707319156,29.346791707319156,24.33030700831287,24.33030700831287,5.014318898355683,5.014318898355683,22.860583726323483,29.830959991682406,34.688016568732465,33.79002194217766,5.061554346812727,28.262073740166855,33.26519035475039,38.57893630015041,38.19627182534751,6.576056516064739,28.39714556465167,28.39714556465167,0.0,31.552383960724075,0.0,28.39714556465167,31.552383960724075,0,0
+2017/03/05 04:00:00,23.721884971065062,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5247895473872688,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.015870537696856,-1.015870537696856,-1.0714859548836804,-1.0714859548836804,-1.1388919272836446,-1.1388919272836446,-1.0288116070255013,-1.0288116070255013,0.035724996063490416,0.035724996063490416,-1.0062172179911764,-1.1686465975470173,-1.2819990518881943,-1.2603475654827134,-0.025468558527355314,-1.150700202341807,-1.2658917789238229,-1.3805349416744246,-1.3710681416627222,-0.28393160891463953,26.792647408707708,26.792647408707708,29.22441157298394,29.22441157298394,32.31711698434894,32.31711698434894,27.348396034987346,27.348396034987346,5.026421051557634,5.026421051557634,26.382163258336803,33.72968606095034,39.346123979261,38.24696018713958,5.013427718184005,32.874367386283865,38.52732605999304,44.477234927821236,43.97625191209159,6.674582626275907,23.721884971065062,23.721884971065062,0.0,26.35764996785007,0.0,23.721884971065062,26.35764996785007,0,0
+2017/03/05 05:00:00,40.7229472353949,0,332.91799376420124,0,0,0,0.0,0.017988033398921088,4.633261998087618,9.319298099999997,23.111338313975452,0,1.8371535399924592,1.2788292568729929,0.5250779930674278,0,0,244.19211248284097,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16922210156686066,308.10273394359905,0.15602471045198482,397.6499196595931,0.2888363182268718,1018.6018462743268,0.11465645801705582,300.00009455203366,0.0,0.0,2.2318274935156213,2364.9915171293883,1.455490667686738,2054.8945267766694,3.72827314438754,4105.136835738029,1.9154219606876224,2430.9599635447203,0.0,0.0,1.8241606901219711,3166.8229684722037,1.2237469656325548,2319.4007177908443,3.0786297242980663,4500.377654710216,1.8017431643281931,2724.349679920603,0.0,0.0,0,0,0,0,0,0,0,0,0.017724800582583508,0.0005608003352277497,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8827045892936134,-0.8827045892936134,-0.9063984714752323,-0.9063984714752323,-0.9341314912402812,-0.9341314912402812,-0.8818483243937514,-0.8818483243937514,0.1673431282885026,0.1673431282885026,-0.7202267376464212,-0.7996972790547651,-0.8394540977759931,-0.8395813150908675,0.0056001209223621486,-0.8029899483696902,-0.8646803554919221,-0.8973278120986017,-0.9103240148131048,-0.23706189448549803,21.44962075898985,21.44962075898985,22.34872065744119,22.34872065744119,23.429941120675494,23.429941120675494,21.417557710780557,21.417557710780557,5.580408760219356,5.580408760219356,15.915334336364893,18.48286038637022,19.867929649275695,19.87246816060197,5.00064919663032,18.595042994731003,20.781060016633887,22.00181977126067,22.499884101294455,6.166177065295386,40.7229472353949,40.7229472353949,0.0,45.247719150438776,0.0,40.7229472353949,45.247719150438776,0,0
+2017/03/05 06:00:00,75.33291677347255,0,332.2469538240878,0,0,0,0.0,0.017495873722825142,4.633261998087618,9.319298099999997,57.911447091112116,0,1.7071680685300623,1.2190967753829578,0.5251488666369518,0,0,119.30483874882299,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.476024335651378,0.0,159.82984847648106,0.0,0.0,0.0,0.0,1.6791798230581207,2115.128630543989,1.518281949447271,1847.1426893645862,2.52233103697597,3742.5236564597876,1.6516068130915755,2193.594290332462,0.0,0.0,2.64005086922225,3226.0221485022917,1.6681922611647906,2400.7971767877434,3.6045596865408243,4592.320658060981,2.2116712833243355,2763.1534820215293,0.0,0.0,0,0,0,0,0,0,0,0,0.017689073919128113,0.0005596699684995598,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7352115327148536,-0.7352115327148536,-0.7885367397546816,-0.7885367397546816,-0.8142875608088964,-0.8142875608088964,-0.7554449908634995,-0.7554449908634995,0.48157284999392036,0.48157284999392036,-0.685342410453109,-0.7451384557380051,-0.7731731812259511,-0.773984032368696,0.07218084006010556,-0.7288239090932769,-0.7776306185820486,-0.7910549135374401,-0.803770409701873,-0.18069338788763842,16.378778775968513,16.378778775968513,18.106031892114245,18.106031892114245,18.983438963356747,18.983438963356747,17.019849768242878,17.019849768242878,9.844151636655937,9.844151636655937,14.873926209343793,16.691107344274684,17.595943729249086,17.62261382735271,5.107876300612816,16.180043890748067,17.742901677290988,18.190595066509502,18.6217008517921,5.676846402012913,75.33291677347255,75.33291677347255,0.0,83.70324085941394,0.0,75.33291677347255,83.70324085941394,0,0
+2017/03/05 07:00:00,106.06498441719303,0,831.3902171608426,0,0,0,0.11813443072294,0.014572126635553635,8.33396954093373,13.929299233552332,80.56906512710079,0,1.5203623458685882,1.0544979035353588,0.5250837088437794,0,0,95.16036944393446,505.5425563853711,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,374.30668229500407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5247396081738316,1724.8615039726742,1.1251852711305521,1505.965308785238,2.3780092633904433,3027.5647202753717,1.680632683331017,1786.6551917706706,0.0,0.0,1.9392772634349358,2573.779253216048,1.2491626100172653,1902.607161230933,3.529320720722656,3574.793310156058,1.1457992153529326,2167.773545771868,0.0,0.0,0,0,0,0,0,0,0,0,0.044263830977919714,0.001400476757705992,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6000690752604747,-0.6000690752604747,-0.6597782968331576,-0.6597782968331576,-0.7016074431186303,-0.7016074431186303,-0.6228998252359669,-0.6228998252359669,0.7231822592957824,0.7231822592957824,-0.672936471085469,-0.7284071747067266,-0.7504437368682219,-0.7549734146032182,0.14843178616675606,-0.7117911705518186,-0.7575381665180618,-0.766108483850215,-0.7807714374860161,-0.08979575870770237,12.549987945299037,12.549987945299037,14.144150244211986,14.144150244211986,15.352954417057148,15.352954417057148,13.141276694023404,13.141276694023404,16.005977025748223,16.005977025748223,14.516242254721178,16.167139186573905,16.85975904678469,17.004708842613155,5.456519092614869,15.658693594617304,17.087170312961547,17.36476150936322,17.846959856137474,5.166974081424868,106.06498441719303,106.06498441719303,0.0,117.84998268577003,0.0,106.06498441719303,117.84998268577003,0,0
+2017/03/05 08:00:00,119.68228232906758,0,1001.6554566016579,0,0,0,0.0,0.0,6.360298798837772,0.0,69.33401494192633,0,39.380909295966944,0.6500344953233829,0.5250495945588615,0,0,243.21368843691832,492.2641243206587,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2197.0995821052743,0.0,1883.092964415601,0.0,3667.360955521668,0.0,946.1517210602997,0.0,0.0,0.0,6081.391488542004,0.0,7654.064601299214,0.0,8366.962374987079,0.0,6933.138662711,0.0,5422.092670560274,0.0,6442.242647254748,0.0,7850.476349774854,0.0,8618.73519868726,0.0,6907.140168461857,0.0,8801.510863407531,0,0,0,0,0,0,0,0,0.053328878442346676,0.0016872885406211328,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6328214843378795,-0.6328214843378795,-0.7310310169470678,-0.7310310169470678,-0.7681522835234621,-0.7681522835234621,-0.5711598411566277,-0.5711598411566277,0.08871814507840729,0.08871814507840729,-0.61044661346545,-0.7187233821797857,-0.730096600580209,-0.6643645100146913,-0.20442818996490011,-0.6392610104487993,-0.7434408542042455,-0.7423872019246897,-0.6732309386102749,-0.3091250310542648,13.405286419187505,13.405286419187505,16.24851424692116,16.24851424692116,17.43142308892078,17.43142308892078,11.833730882544572,11.833730882544572,5.16298911526475,5.16298911526475,12.815949265526896,15.869372322411323,16.219500604358316,14.272989679839498,5.866677827961269,13.578923924794495,16.63739639543863,16.604121719444905,14.524655085546911,6.986135194496157,119.68228232906758,119.68228232906758,0.0,132.98031369896398,0.0,119.68228232906758,132.98031369896398,0,0
+2017/03/05 09:00:00,150.64885550423247,0,1072.0890017740908,0,0,0,0.0,0.0,9.884131616719007,0.0,96.91714705112861,0,39.380909295966944,0.4909576956828687,0.5437346422807549,0,0,260.4237439196356,492.2520852415582,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1154.956296095875,0.0,2553.9313375836737,0.0,0.0,0.0,0.0,0.0,4471.4842924458335,0.0,6974.571463037043,0.0,7492.290338473056,0.0,5763.582854467654,0.0,145.74309496484537,0.0,4298.819124919374,0.0,7033.452512611465,0.0,7519.659181902341,0.0,5480.592617041938,0.0,4285.820603908817,0,0,0,0,0,0,0,0,0.057078812557923464,0.0018059338421182805,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5259856629832281,-0.5259856629832281,-0.7407042167058644,-0.7407042167058644,-0.7727877978656827,-0.7727877978656827,-0.40600523611714306,-0.40600523611714306,-0.25724890200068945,-0.25724890200068945,-0.5274718880386041,-0.708141453654121,-0.7143263880812651,-0.5964695417666159,-0.29678329279235227,-0.540600084487672,-0.7279089856037624,-0.7221353054672366,-0.5916888066649298,-0.363530902372218,10.787064215157244,10.787064215157244,16.551071294673477,16.551071294673477,17.583277721466004,17.583277721466004,8.435182155291827,8.435182155291827,6.373816490531468,6.373816490531468,10.820092807618522,15.548606320315855,15.735501928311734,12.458828878760826,6.830160509562603,11.115996783478337,16.151721934445263,15.973825066625295,12.338624986758305,7.7506919844779105,150.64885550423247,150.64885550423247,0.0,167.38761722692496,0.0,150.64885550423247,167.38761722692496,0,0
+2017/03/05 10:00:00,150.5369151425073,0,1191.9107725165445,0,0,0,0.0,0.0,9.495473787201554,0.0,97.06762091869685,0,39.380909295966944,0.602081923615546,0.5588540145721367,0,0,327.0180730622044,492.2439980726268,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,890.3046982943988,0.0,2063.9629109822818,0.0,0.0,0.0,0.0,0.0,1710.406487832179,0.0,7400.502421971575,0.0,5604.000921813184,0.0,6159.191715847982,0.0,6047.249602525695,0.0,1581.213723197945,0.0,7356.898375003434,0.0,5470.411033198476,0.0,5836.74601859746,0.0,11891.973777300767,0,0,0,0,0,0,0,0,0.0634582123850361,0.0020077736058396255,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4714004663974182,-0.4714004663974182,-0.7315588347081926,-0.7315588347081926,-0.7599794477184921,-0.7599794477184921,-0.3181225991197213,-0.3181225991197213,-0.283426275423274,-0.283426275423274,-0.45027257413619676,-0.7122880564552319,-0.7108119636846018,-0.5817355826582153,-0.329643833714997,-0.43376044034940603,-0.7273853671290438,-0.713886076955306,-0.5687074616034907,-0.38933082506566147,9.640174828722905,9.640174828722905,16.26491958314486,16.26491958314486,17.165923310110344,17.165923310110344,7.10390881487659,7.10390881487659,6.668607720259729,6.668607720259729,9.230765872892789,15.673725695043984,15.629101174420342,12.091549336816186,7.259724443026258,8.924169301010707,16.135529234178634,15.722142145847101,11.774639132098528,8.157279734594738,150.5369151425073,150.5369151425073,0.0,167.26323904723031,0.0,150.5369151425073,167.26323904723031,0,0
+2017/03/05 11:00:00,204.56130220931064,0,1332.75669466576,0,0,0,0.0,0.0,13.293389143113956,0.0,124.87761316689259,0,39.380909295966944,0.5368223958785718,23.040593005004247,0,0,271.7267044579971,599.6554075446891,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,147.44914148036756,0.0,861.9191219244411,0.0,0.0,0.0,0.0,0.0,263.7226732945811,0.0,6947.340448648185,0.0,5123.486351535796,0.0,5972.131585557407,0.0,4181.531068756527,0.0,0.0,0.0,6809.923938137212,0.0,4842.485513601837,0.0,5630.907369622832,0.0,9340.721703947884,0,0,0,0,0,0,0,0,0.07095695360577385,0.002245028551009955,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.33481543906675676,-0.33481543906675676,-0.7036269225037426,-0.7036269225037426,-0.7264436894486206,-0.7264436894486206,-0.3100300922778185,-0.3100300922778185,-0.24446886369044896,-0.24446886369044896,-0.3910369091625843,-0.708288499462765,-0.7014078919474627,-0.6054893131614958,-0.34759996699133616,-0.34267557471917326,-0.7185734840513635,-0.6993970070780402,-0.5942258726309904,-0.39490339270696534,7.331497201879202,7.331497201879202,15.413228248864442,15.413228248864442,16.106437885190402,16.106437885190402,6.997826936720131,6.997826936720131,6.240374819032283,6.240374819032283,8.18516802512822,15.553030593475185,15.347008123840226,12.6883177262347,7.513798190591459,7.442756526216016,15.864794829826394,15.287183031669969,12.402291905092682,8.248831481365244,204.56130220931064,204.56130220931064,0.0,227.29033578812292,0.0,204.56130220931064,227.29033578812292,0,0
+2017/03/05 12:00:00,222.64631210583153,0,1294.681166728252,0,0,0,0.0,0.0,13.11419298838912,0.0,143.25325374857618,0,39.380909295966944,0.3683880787498854,23.097592791695018,0,0,180.4156477516731,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6261.381792788496,0.0,4945.227226077847,0.0,5674.521409585878,0.0,1.4740779944494888,0.0,0.0,0.0,6078.039702125385,0.0,4608.191461393941,0.0,5367.172311886818,0.0,4327.629443773611,0,0,0,0,0,0,0,0,0.06892978429558355,0.0021808903270891067,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2004582601077037,-0.2004582601077037,-0.6221857723582739,-0.6221857723582739,-0.6679286278778889,-0.6679286278778889,-0.30120882889736916,-0.30120882889736916,-0.16729373988931867,-0.16729373988931867,-0.30512638440678314,-0.6963010310463204,-0.6856408869300153,-0.6264777395207547,-0.35463887429812635,-0.23353679815935333,-0.7004371758368194,-0.6786028350634931,-0.6167534664777675,-0.39313585262440515,5.833286194958916,5.833286194958916,13.122440911801533,13.122440911801533,14.373744736369133,14.373744736369133,6.8853495969868135,6.8853495969868135,5.580065799308187,5.580065799308187,6.934894851278955,15.195417105636054,14.882613793832235,13.235990567652934,7.617135240316031,6.131674113140107,15.318106914328254,14.678786904863117,12.97986822622343,8.219648811300388,222.64631210583153,222.64631210583153,0.0,247.3847912287017,0.0,222.64631210583153,247.3847912287017,0,0
+2017/03/05 13:00:00,199.44176969211034,0,1226.716085064563,0,0,0,0.0,0.0,13.01679398839311,0.0,124.80122689546741,0,39.380909295966944,0.3703944489947599,18.44046986083374,0,0,180.5412005768959,567.0551255683209,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5084.304673511646,0.0,5513.800985201671,0.0,4993.961471082817,0.0,0.0,0.0,0.0,0.0,4707.18232343713,0.0,4971.454280481654,0.0,4593.423118446522,0.0,0.0,0,0,0,0,0,0,0,0,0.06531127300561966,0.0020664031521850845,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.17832240030702298,-0.17832240030702298,-0.546637401405558,-0.546637401405558,-0.6133073397139606,-0.6133073397139606,-0.2746028936997037,-0.2746028936997037,-0.14900585936056762,-0.14900585936056762,-0.26548384525572116,-0.6375192938827513,-0.6644095848166842,-0.6120565822920837,-0.3492418697756381,-0.2092946901595602,-0.6301906451038622,-0.6537568378316821,-0.6000176132175226,-0.3805049209100115,5.659176064392582,5.659176064392582,11.254581639193688,11.254581639193688,12.890087364627348,12.890087364627348,6.5660188071744585,6.5660188071744585,5.460060615116177,5.460060615116177,6.463440608285765,13.531782248186417,14.274260477291804,12.857629249623855,7.537714245478043,5.908510270367941,13.334865179174471,13.976374521038608,12.548680694141481,8.014993615980885,199.44176969211034,199.44176969211034,0.0,221.60196632456703,0.0,199.44176969211034,221.60196632456703,0,0
+2017/03/05 14:00:00,199.56517434722576,0,1180.8219993983757,0,0,0,0.0,0.0,13.01679398839311,0.0,124.7641830973959,0,39.380909295966944,0.36391767618307663,18.607395086832405,0,0,160.92627934840203,576.266313643172,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4559.92884412774,0.0,5290.762529629723,0.0,4924.856475004222,0.0,0.0,0.0,0.0,0.0,4143.1395696348245,0.0,4780.288564815555,0.0,4558.180442066646,0.0,0.0,0,0,0,0,0,0,0,0,0.06286783789069662,0.0019890945683636936,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2155734156442429,-0.2155734156442429,-0.4436858494634968,-0.4436858494634968,-0.6340796399289452,-0.6340796399289452,-0.2747310555007893,-0.2747310555007893,-0.16819276984753423,-0.16819276984753423,-0.24796145218511634,-0.5566613295516695,-0.6535322167236802,-0.6068048781505012,-0.34841204218651395,-0.19237263573606728,-0.5306043960317601,-0.6421895897960667,-0.5952469136952865,-0.3752662680584046,5.963946887033117,5.963946887033117,9.107058831839069,9.107058831839069,13.439070352299055,13.439070352299055,6.567485441221038,6.567485441221038,5.5863247336475155,5.5863247336475155,6.276160613742434,11.48816699219347,13.970146311154267,12.722084531760714,7.5256125991197536,5.76731504393949,10.890020186650602,13.658486085224894,12.427993462916888,7.932111840899452,199.56517434722576,199.56517434722576,0.0,221.7390826080286,0.0,199.56517434722576,221.7390826080286,0,0
+2017/03/05 15:00:00,181.23088068897277,0,1110.9168332560039,0,0,0,0.0,0.0,13.01679398839311,0.0,111.01081017850728,0,39.380909295966944,0.36907948752741226,14.021312536123732,0,0,162.20601883697466,540.5717605247719,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4556.790799983204,0.0,4571.433372983891,0.0,5476.2860897844175,0.0,0.0,0.0,0.0,0.0,4031.3098959580093,0.0,4043.3528661395667,0.0,5097.763160862316,0.0,3086.7684037225845,0,0,0,0,0,0,0,0,0.05914603506605415,0.0018713393213025805,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3595257886940157,-0.3595257886940157,-0.34647381190270327,-0.34647381190270327,-0.6351636570477323,-0.6351636570477323,-0.3116054654112506,-0.3116054654112506,-0.2244455870785786,-0.2244455870785786,-0.2557198590859204,-0.5014334773473097,-0.6533370689796387,-0.6132925361337025,-0.36120440327598435,-0.21060949759805103,-0.4639925195578474,-0.6448777821330206,-0.6059698285922033,-0.3906539281212334,7.6901191779491995,7.6901191779491995,7.497460819986841,7.497460819986841,13.468233397240908,13.468233397240908,7.018260589477052,7.018260589477052,6.0450971516576,6.0450971516576,6.35748943890961,10.255268083296741,13.964737102898368,12.889702803329953,7.715423159890733,5.919982437858252,9.494437658547355,13.731844928667641,12.700642480996123,8.17889684595113,181.23088068897277,181.23088068897277,0.0,201.36764520996974,0.0,181.23088068897277,201.36764520996974,0,0
+2017/03/05 16:00:00,179.21032766556743,0,1159.4999322838864,0,0,0,0.0,0.0,13.06549342359674,0.0,108.75639138185811,0,39.380909295966944,0.4895320176638468,14.086026344027522,0,0,210.78675497885553,540.5741234107735,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5055.094774253917,0.0,4556.272665806485,0.0,6174.906173405015,0.0,3948.4224288663736,0.0,0.0,0.0,4491.826335870395,0.0,4078.189240629785,0.0,5814.9200567879325,0.0,8265.82480948316,0,0,0,0,0,0,0,0,0.061732635244123965,0.0019531775479276546,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5395991476647938,-0.5395991476647938,-0.3612851929229798,-0.3612851929229798,-0.6724057502707832,-0.6724057502707832,-0.36517119490776945,-0.36517119490776945,-0.2515014492346071,-0.2515014492346071,-0.34647524262141316,-0.5071923576723111,-0.6591975531262175,-0.6254128700698598,-0.37317181732559007,-0.28940336157475594,-0.4772074478408508,-0.6560354008183575,-0.6256190944060953,-0.4067765073590112,11.09317319752887,11.09317319752887,7.716644035873969,7.716644035873969,14.501089231109603,14.501089231109603,7.775696772311193,7.775696772311193,6.3129553084845895,6.3129553084845895,7.497481541519804,10.377664126469071,14.127900542959495,13.20774348574048,7.89930275703253,6.739969101823078,9.756069901480927,14.039677260500383,13.213210019610997,8.448324322987887,179.21032766556743,179.21032766556743,0.0,199.1225862950749,0.0,179.21032766556743,199.1225862950749,0,0
+2017/03/05 17:00:00,193.70056536493567,0,1209.8387895331896,0,0,0,0.0,0.0,11.499689491162004,0.0,124.87761316689259,0,39.380909295966944,0.47677803038689137,14.033600178072934,0,0,207.89584820688296,540.5683586632329,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,837.6192566791409,0.0,4774.958516681476,0.0,4887.55033198315,0.0,6134.217241849031,0.0,2243.4128802260493,0.0,231.9417940007347,0.0,4197.087552127183,0.0,4444.164718992977,0.0,5770.36302454034,0.0,6826.731411154697,0,0,0,0,0,0,0,0,0.06441271329040402,0.002037973349143451,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5196121649357522,-0.5196121649357522,-0.358390199230828,-0.358390199230828,-0.6592846241720286,-0.6592846241720286,-0.36800910189989394,-0.36800910189989394,-0.20920219637397988,-0.20920219637397988,-0.41320567594958607,-0.4881093376539617,-0.6641833176445213,-0.6352203879401157,-0.375335695090889,-0.39136107322061786,-0.46265689026360557,-0.6653224761208225,-0.6424225891599743,-0.41141926793231864,10.646509227941024,10.646509227941024,7.673068972115473,7.673068972115473,14.130335933432775,14.130335933432775,7.819228879118725,7.819228879118725,5.907705953300706,5.907705953300706,8.558866149484146,9.977577207722362,14.267882196915139,13.469761018072276,7.93320260336948,8.190480995483654,9.468413276673886,14.300016632582725,13.664832067407929,8.527973382013215,193.70056536493567,193.70056536493567,0.0,215.22285040548408,0.0,193.70056536493567,215.22285040548408,0,0
+2017/03/05 18:00:00,204.57531707805006,0,1242.686079777741,0,0,0,0.0,0.0,13.333943662664977,0.0,129.38645076019097,0,39.380909295966944,0.499225766176261,18.542812390596573,0,0,218.97595583706652,562.335541277601,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2150.536509425556,0.0,5268.080007127692,0.0,5592.259595060305,0.0,6213.581889751807,0.0,804.1559907093217,0.0,1717.1028347158365,0.0,4820.989262615897,0.0,5257.107016807072,0.0,5926.748846939136,0.0,5435.300431653619,0,0,0,0,0,0,0,0,0.0661615273532308,0.002093304607067331,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4984052486295465,-0.4984052486295465,-0.5106477905745401,-0.5106477905745401,-0.656749570303847,-0.656749570303847,-0.3848696881989287,-0.3848696881989287,-0.1776549053798449,-0.1776549053798449,-0.44765144187541583,-0.5370375551970897,-0.6686938051911311,-0.6453493486572135,-0.37111572776014845,-0.45326460478842046,-0.5280800109813601,-0.6744755869189517,-0.6588793389413514,-0.40968293982157267,10.191482801358461,10.191482801358461,10.451792217343282,10.451792217343282,14.059564537015419,14.059564537015419,8.084944067314538,8.084944067314538,5.654243732711734,5.654243732711734,9.18131418867165,11.034960869495734,14.395447478288062,13.744745947459421,7.867276572506086,9.287576358876024,10.833634780602523,14.560255696181272,14.119002837483649,8.498077671330421,204.57531707805006,204.57531707805006,0.0,227.30590786450006,0.0,204.57531707805006,227.30590786450006,0,0
+2017/03/05 19:00:00,212.70740146253752,0,1203.2329543193466,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,115.6330778413024,0,39.380909295966944,0.34914072332739626,23.31710564940294,0,0,177.693316624128,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69.6476667345298,0.0,0.0,0.0,0.0,0.0,3627.0951315168672,0.0,5432.4968129068275,0.0,6759.520797484502,0.0,5988.512776013191,0.0,0.0,0.0,3326.063237923013,0.0,5103.193734443765,0.0,6505.683672339907,0.0,5769.482193839263,0.0,1151.228575022215,0,0,0,0,0,0,0,0,0.06406101373063282,0.0020268458202271065,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5470740033240901,-0.5470740033240901,-0.5959626077214804,-0.5959626077214804,-0.6870511452365861,-0.6870511452365861,-0.42521955382329485,-0.42521955382329485,-0.17832993281412807,-0.17832993281412807,-0.4608924058447356,-0.5661377873499576,-0.6645934727922358,-0.6430445587711177,-0.3557765477402129,-0.4733015163764675,-0.5687832383638237,-0.6723754432297734,-0.6593088554414988,-0.39338906797672785,11.264664954322242,11.264664954322242,12.446035823973673,12.446035823973673,14.923713470615198,14.923713470615198,8.7701781724938,8.7701781724938,5.659231830590301,5.659231830590301,9.434150562366412,11.71300098262364,14.279445757321383,13.681783592669746,7.634035119226354,9.677955693994065,11.77646111849819,14.500224279165124,14.13101374417468,8.223821283638443,212.70740146253752,212.70740146253752,0.0,236.34155718059725,0.0,212.70740146253752,236.34155718059725,0,0
+2017/03/05 20:00:00,201.12498949872688,0,1221.3235615976039,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,104.13412371906301,0,39.380909295966944,0.3629321258516479,23.219856405307393,0,0,231.27427641492966,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,757.9701512800107,0.0,0.0,0.0,0.0,0.0,5039.803373027289,0.0,5790.941532143037,0.0,7929.85847325818,0.0,6238.659432765763,0.0,0.0,0.0,4631.313767522933,0.0,5386.601526361362,0.0,7517.7850554906145,0.0,5920.511630382069,0.0,0.0,0,0,0,0,0,0,0,0,0.06502417106196068,0.0020573194468142776,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5942116519427427,-0.5942116519427427,-0.6439007286111872,-0.6439007286111872,-0.7115690794337162,-0.7115690794337162,-0.49808896256759777,-0.49808896256759777,-0.1975098217066577,-0.1975098217066577,-0.47103200488298613,-0.5717962800837463,-0.6616732187955359,-0.6403356591408318,-0.34158816908070516,-0.488174926314682,-0.580072967491127,-0.6708271966727581,-0.6584191728980221,-0.37687698289000465,12.401934262622092,12.401934262622092,13.705145588491376,13.705145588491376,15.651978197884219,15.651978197884219,10.184843543833594,10.184843543833594,5.8089130519961145,5.8089130519961145,9.63287016493156,11.849108950098838,14.197273390464048,13.60807623325752,7.427208003499274,9.978925376212544,12.0506961400812,14.456090783762619,14.106143723031892,7.957470607019928,201.12498949872688,201.12498949872688,0.0,223.47221055414096,0.0,201.12498949872688,223.47221055414096,0,0
+2017/03/05 21:00:00,200.74911375423181,0,1219.509205408483,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,0.5301202869480287,18.394815045410958,0,0,291.0033166495101,573.6023636335317,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1010.3680194211079,0.0,0.0,0.0,0.0,0.0,5442.069311018185,0.0,5759.195039313445,0.0,8110.330049717459,0.0,6142.143244426244,0.0,0.0,0.0,5287.659459603935,0.0,5526.863707431774,0.0,7920.716086933846,0.0,5975.607945964206,0.0,0.0,0,0,0,0,0,0,0,0,0.06492757339454615,0.002054263163951411,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5869255074059319,-0.5869255074059319,-0.6693564340413837,-0.6693564340413837,-0.7307133256866203,-0.7307133256866203,-0.5606607376357576,-0.5606607376357576,-0.23336403991154514,-0.23336403991154514,-0.4795513001587935,-0.5759485696133845,-0.6583071150968093,-0.637360397659321,-0.3303994636209595,-0.5007353680164551,-0.5887620002398224,-0.668986576975715,-0.6569496768034826,-0.3644546024688578,12.219845969065005,12.219845969065005,14.414262118856769,14.414262118856769,16.23864571750525,16.23864571750525,11.582580098751649,11.582580098751649,6.12999659438573,6.12999659438573,9.803260160264827,11.949870697044432,14.10301371191892,13.52748807812452,7.270140450265529,10.240528268976021,12.265524657158906,14.40375807706883,14.06514081046349,7.764758863348703,200.74911375423181,200.74911375423181,0.0,223.05457083803535,0.0,200.74911375423181,223.05457083803535,0,0
+2017/03/05 22:00:00,187.87709222094688,0,1246.148338028926,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,0.6473076608970082,23.66781665036411,0,0,337.79416793230695,588.940997483722,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6614630636954724,0.0,245.90975762642353,0.0,1947.5571663431165,0.0,131.44670373943504,0.0,0.0,0.0,4127.646067064719,0.0,6972.501466685653,0.0,6612.527417093641,0.0,7310.935633247576,0.0,6007.292807768761,0.0,3968.2969438513383,0.0,6755.0189172656055,0.0,6435.915058181321,0.0,7156.967212706311,0.0,10886.347509627394,0,0,0,0,0,0,0,0,0.06634586054704165,0.002099136780828671,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6656032297797693,-0.6656032297797693,-0.7208799777617575,-0.7208799777617575,-0.7574147677302157,-0.7574147677302157,-0.6505375971100142,-0.6505375971100142,-0.31718197116733277,-0.31718197116733277,-0.5023875055946109,-0.6014066646622364,-0.6721038370115799,-0.6578433117227747,-0.3516166414334916,-0.5312332906391787,-0.6214925522481245,-0.6866838016506525,-0.6814383956835748,-0.39084897671922014,14.307945024303308,14.307945024303308,15.935336142788628,15.935336142788628,17.08319637268356,17.08319637268356,13.887321551020776,13.887321551020776,7.091435987664056,7.091435987664056,10.27544540346534,12.584006031520417,14.492474511158207,14.090064490398248,7.572508144528655,10.904110295731144,13.10417583692876,14.912999559825721,14.760649013202922,8.182089914504004,187.87709222094688,187.87709222094688,0.0,208.75232468994096,0.0,187.87709222094688,208.75232468994096,0,0
+2017/03/05 23:00:00,131.50332137612813,0,1175.7081196332842,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,0.776017412821944,18.49544388639934,0,0,435.01376056387454,580.9877727629612,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2003.025803932603,0.0,1468.9062121697907,0.0,3712.822441193904,0.0,1397.1685213360156,0.0,0.0,0.0,4060.699606201397,0.0,7852.413925601015,0.0,6419.588649991705,0.0,8175.189824459614,0.0,13939.276292451776,0.0,3981.0636111679005,0.0,7657.310868590959,0.0,6314.425667052844,0.0,8068.741218213424,0.0,18898.71104286337,0,0,0,0,0,0,0,0,0.06259557114411832,0.001980480238287534,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7621754649121989,-0.7621754649121989,-0.7963992958669618,-0.7963992958669618,-0.8270880763787236,-0.8270880763787236,-0.7493981636256175,-0.7493981636256175,-0.40061861601896404,-0.40061861601896404,-0.5292502886807993,-0.6311758008330969,-0.6901571508593355,-0.682650034187438,-0.3783325712155025,-0.5641445922686772,-0.6586280769615507,-0.7077134768873619,-0.7093185939379637,-0.4223432126492048,17.23698201941606,17.23698201941606,18.370956652532712,18.370956652532712,19.429999350065174,19.429999350065174,16.826425483247306,16.826425483247306,8.34410612432319,8.34410612432319,10.859740139531056,13.361200261347207,15.014536127930342,14.795734849714535,7.980482311086888,11.66538793767397,14.111980307483506,15.535734781762173,15.584049933224193,8.719022718507887,131.50332137612813,131.50332137612813,0.0,146.11480152903124,0.0,131.50332137612813,146.11480152903124,0,0
+2017/03/06 00:00:00,89.33844237392724,0,1056.3147627255762,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.8501271167718543,9.545358995862815,0,0,507.6583049170046,495.42092903975555,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3523.781751258236,0.0,2356.003515020048,0.0,4956.126466968923,0.0,2309.9731971534184,0.0,0.0,0.0,4554.851896301313,0.0,8162.012934507106,0.0,6783.495189035978,0.0,8507.046326538602,0.0,16997.975615698415,0.0,4582.368937256409,0.0,8104.0004316141,0.0,6784.7506606044435,0.0,8475.893334575261,0.0,21791.17579689991,0,0,0,0,0,0,0,0,0.05623898038689652,0.001779362137638302,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8475018348813805,-0.8475018348813805,-0.8729587330719856,-0.8729587330719856,-0.9103046224333682,-0.9103046224333682,-0.8376129155367813,-0.8376129155367813,-0.5808749483913651,-0.5808749483913651,-0.5553555706565592,-0.6595020659237637,-0.7077343202055004,-0.70543451658191,-0.4039878904216584,-0.5949117175253786,-0.6902498845995145,-0.7273760244117393,-0.7343708987455447,-0.45056715039558975,20.156364394955503,20.156364394955503,21.08646347442371,21.08646347442371,22.49913581495899,22.49913581495899,19.802320678173373,19.802320678173373,12.07038715878852,12.07038715878852,11.457492428063048,14.136419246939653,15.53636146824934,15.467327360932956,8.400927770818512,12.419550945085874,15.017254164055217,16.135240421302015,16.352524378474897,9.236341978434822,89.33844237392724,89.33844237392724,0.0,99.26493597103025,0.0,89.33844237392724,99.26493597103025,0,0
+2017/03/06 01:00:00,39.62147429331203,0,631.0010066790373,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.15562765777025278,0.1078375360901199,9.560688103028479,0,0,61.538153475152846,516.2273244350683,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,156.97975013123585,0.0,752.633521565887,0.0,116.58676730628997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033594960982244265,0.0010629211478586742,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8479837135024643,-0.8479837135024643,-0.8881833864291105,-0.8881833864291105,-0.9206458594376022,-0.9206458594376022,-0.856452366759377,-0.856452366759377,-0.3088759571451446,-0.3088759571451446,-0.7168110791276661,-0.9410753271831966,-1.0216180318539478,-1.0108451322979535,-0.2071880156972099,-0.7944057547298667,-0.9344925195637388,-1.0343361208417536,-1.023731496268698,-0.3362529525598281,20.17372079745374,20.17372079745374,21.655486492025247,21.655486492025247,22.9003212908286,22.9003212908286,20.480322296308444,20.480322296308444,6.982923696670952,6.982923696670952,15.811048217156994,23.70547479711638,27.038702596650097,26.57851739286889,5.890279634833703,18.30353728244718,23.444219583264427,27.587532235893278,27.129491127003277,7.35164899107842,39.62147429331203,39.62147429331203,0.0,44.023860325902255,0.0,39.62147429331203,44.023860325902255,0,0
+2017/03/06 02:00:00,23.765473051852176,0,44.02446718743871,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5683776281743833,0,0,0.0,8.53411467489457,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002343895242275579,7.415921163584011e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9215146559569104,-0.9215146559569104,-0.9965748180357918,-0.9965748180357918,-1.094548038804841,-1.094548038804841,-0.9602628103649463,-0.9602628103649463,-0.14059536407824977,-0.14059536407824977,-0.8056271001583389,-1.0243760283769232,-1.1856479630044,-1.1313774056819401,-0.14724167962834472,-0.9066559632314626,-1.0833558516827997,-1.2480793790505966,-1.202443706447005,-0.3522963711357713,22.934221956687594,22.934221956687594,25.975652445327526,25.975652445327526,30.265181502692926,30.265181502692926,24.476754457121444,24.476754457121444,5.409547254251947,5.409547254251947,18.685222439011326,27.157211431013252,34.5490660208778,31.96482615048373,5.4492209020329625,22.358616952290248,29.757778481592197,37.629325884153836,35.36695985096384,7.5825113425061375,23.765473051852176,23.765473051852176,0.0,26.40608116872464,0.0,23.765473051852176,26.40608116872464,0,0
+2017/03/06 03:00:00,28.344223124315352,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248600378424563,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9318943231913149,-0.9318943231913149,-1.0137615408497749,-1.0137615408497749,-1.1133993312391501,-1.1133993312391501,-0.9779222528857999,-0.9779222528857999,-0.05794584816775022,-0.05794584816775022,-0.8413123707970223,-1.0617213146662583,-1.2368644189299527,-1.1757955142018046,-0.12687005863892623,-0.9706828868207192,-1.1581121926812408,-1.3377387330920854,-1.2846234042361522,-0.3449781849784526,23.341578222126344,23.341578222126344,26.7026688606432,26.7026688606432,31.129488334442314,31.129488334442314,25.199347687259163,25.199347687259163,5.069516975545895,5.069516975545895,19.93429118207773,28.7893658030477,37.068121475181144,34.07316491799163,5.333434235175318,24.90165966449429,33.2264048270668,42.224997416365156,39.48011844630862,7.475846792855236,28.344223124315352,28.344223124315352,0.0,31.49358124923928,0.0,28.344223124315352,31.49358124923928,0,0
+2017/03/06 04:00:00,23.72204668184612,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249512581683283,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-1.0063138772286886,-1.0063138772286886,-1.092608041819311,-1.092608041819311,-1.1895838288417806,-1.1895838288417806,-1.060808833736615,-1.060808833736615,0.010289021486641596,0.010289021486641596,-0.9413355033287212,-1.1606023664178924,-1.3461174307641033,-1.2797750679691366,-0.10015410409887585,-1.0789957102622403,-1.2702473249792876,-1.4604770976324162,-1.4021909760809372,-0.3602269383864802,26.386256088067498,26.386256088067498,30.176921439547115,30.176921439547115,34.73998778603794,34.73998778603794,28.748885071241304,28.748885071241304,5.002191447391638,5.002191447391638,23.71583588802035,33.3450628520185,42.66331421665397,39.232698828096645,5.207736540578736,29.5612850108394,38.74811546006771,48.75861436624659,45.62861470526049,7.7006739440467555,23.72204668184612,23.72204668184612,0.0,26.357829646495688,0.0,23.72204668184612,26.357829646495688,0,0
+2017/03/06 05:00:00,43.86949482478941,0,401.21644003142154,0,0,0,0.0,0.0201601001969492,4.633261998087618,9.319298099999997,25.555573451546493,0,2.2684329188877914,1.547709914924782,0.5250583411457613,0,0,312.4905587500612,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1307766558466407,863.9797023193539,0.10972583382469261,872.3738035174837,1.3092844385398243,1973.569482504362,0.11625166499266015,829.8172137175895,0.0,0.0,1.9071411686213273,2951.5764961621007,1.3208861118704363,2654.1345984850445,3.12199971354903,5538.705441852284,2.3398248353351696,3132.83278935721,0.0,0.0,2.3663590279528908,3435.023117868315,1.8464194519384967,2704.6901016906104,3.1094345225126285,5571.341681203523,2.4819967719654032,3176.449381764303,0.0,0.0,0,0,0,0,0,0,0,0,0.021361060450964794,0.0006758490627811183,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9015470307382091,-0.9015470307382091,-0.9390981265817545,-0.9390981265817545,-0.9737252078816202,-0.9737252078816202,-0.9156157526444328,-0.9156157526444328,0.14442641999249564,0.14442641999249564,-0.7098635569594871,-0.8132743663097959,-0.8806897627165702,-0.8648012658304156,-0.06887429226074394,-0.7879683233130432,-0.8846885497663342,-0.9446414393536638,-0.940040755020165,-0.35273365303293985,22.162765310532848,22.162765310532848,23.626823749987864,23.626823749987864,25.026514832210054,25.026514832210054,22.704641568032216,22.704641568032216,5.432191382756059,5.432191382756059,15.600478966434167,18.94838698052547,21.374222951045,20.785500246139648,5.098217173526663,18.086981047081167,21.5240261127323,23.847722956641377,23.66430121053253,7.588956962976681,43.86949482478941,43.86949482478941,0.0,48.7438831386549,0.0,43.86949482478941,48.7438831386549,0,0
+2017/03/06 06:00:00,76.58410336439766,0,346.2882665518733,0,0,0,0.0,0.017566382035075382,5.555297838843742,9.319298099999997,57.911447091112116,0,1.911464737104307,1.3440012986801062,0.5250279166222855,0,0,133.34615147660847,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.80440662388378,0.0,254.41419598775937,0.0,638.3587169052712,0.0,242.06902523758538,0.0,0.0,1.8081112384442122,2166.352062765592,1.6791471555623616,2018.4656821214708,3.1208425823047037,4454.353615250387,1.7543528826423653,2456.8643665579893,0.0,0.0,2.352356427472273,2929.631287979282,1.640414834149169,2411.765562378211,3.2660819017255562,5103.8954891858975,1.945075012774737,2882.786571311257,0.0,0.0,0,0,0,0,0,0,0,0,0.018436643809249358,0.0005833225587237969,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7922819636154674,-0.7922819636154674,-0.8310076128599522,-0.8310076128599522,-0.8582383782171847,-0.8582383782171847,-0.8093758150691049,-0.8093758150691049,0.47021854901508175,0.47021854901508175,-0.6737477559818394,-0.7550656275247404,-0.8005297900683321,-0.7914767274993905,0.05020300180984479,-0.7166707883910339,-0.7902815134562222,-0.8178891304256738,-0.8237249197789658,-0.24785182366267786,18.231898310073575,18.231898310073575,19.56811276577305,19.56811276577305,20.545363757086747,20.545363757086747,18.813918227518812,18.813918227518812,9.616764312037674,9.616764312037674,14.539429445408786,17.007668779670354,18.51118106207855,18.204786374614912,5.052178226135823,15.806775634639152,18.164594770273226,19.108387123162814,19.312004891878786,6.275029544611499,76.58410336439766,76.58410336439766,0.0,85.09344818266406,0.0,76.58410336439766,85.09344818266406,0,0
+2017/03/06 07:00:00,102.39367433387893,0,837.4961011426253,0,0,0,0.21352265478504703,0.01532094681098056,11.110595677687485,13.929299233552332,73.80580873715317,0,1.6717368504709684,1.1223331685551117,0.5250570648638817,0,0,101.73343584788707,505.07537396320134,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,679.1408347019042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.706108954742875,0.0,286.3511416488306,0.0,0.0,0.0,0.0,1.4437214268281573,1758.501253852303,1.689987453682685,1649.1230504853174,3.3868305597405497,3612.788957092227,1.2081766405096155,2003.059376727797,0.0,0.0,1.38543946019945,2284.1035071066926,1.3001717997691835,1874.9966339809855,2.6922891643162075,3911.6411050522524,2.214330305934709,2223.2172308848985,0.0,0.0,0,0,0,0,0,0,0,0,0.04458891276377879,0.001410762118809876,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6758795092533478,-0.6758795092533478,-0.7501041947841169,-0.7501041947841169,-0.7768783182572289,-0.7768783182572289,-0.7282702365291586,-0.7282702365291586,0.723967741316993,0.723967741316993,-0.6582570900875399,-0.7341399034150435,-0.7747567649478212,-0.7676382334047316,0.1334603232707525,-0.6954525276904527,-0.7623831360456387,-0.7861213496390831,-0.7943065528086334,-0.1283030518700349,14.600492479056442,14.600492479056442,16.848929087346036,16.848929087346036,17.718039614093243,17.718039614093243,16.162900353818614,16.162900353818614,16.03013015532585,16.03013015532585,14.101616583396051,16.345315326599575,17.648056219524733,17.41463979682456,5.369002285923457,15.170339405675293,17.24371250573394,18.02517324546109,18.30018678118455,5.341014525766596,102.39367433387893,102.39367433387893,0.0,113.77074925986548,0.0,102.39367433387893,113.77074925986548,0,0
+2017/03/06 08:00:00,148.42470800053138,0,1110.4641215492015,0,0,0,0.0,0.0,8.479384999136657,0.0,69.33401494192633,0,39.380909295966944,0.7018806398461662,27.096542921201,0,0,261.19325192578134,583.0932257793393,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2261.0441461837986,0.0,2064.40413439895,0.0,4105.336377643335,0.0,958.9930933856392,0.0,0.0,0.0,5618.558736015294,0.0,8053.617645915696,0.0,8451.014586804504,0.0,7331.0619962536575,0.0,6972.7655992732825,0.0,5711.1898805981555,0.0,8101.862169864276,0.0,8483.945971485256,0.0,7157.817730752955,0.0,11298.102647210117,0,0,0,0,0,0,0,0,0.059121932359457424,0.0018705767284668327,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.667229655795064,-0.667229655795064,-0.7868413574556292,-0.7868413574556292,-0.8227796707059158,-0.8227796707059158,-0.618048660100679,-0.618048660100679,0.08191738212794386,0.08191738212794386,-0.5976412885824749,-0.728039467769667,-0.755547503090559,-0.6727330608836047,-0.23388195731042002,-0.6250557115203236,-0.7538898416559396,-0.7671575597713471,-0.6821995682904158,-0.3454212071031778,14.3539419326017,14.3539419326017,18.0492506197308,18.0492506197308,19.278926855822874,19.278926855822874,13.01374475116718,13.01374475116718,5.138951544658056,5.138951544658056,12.488441921108105,16.15575888047951,17.023142393150778,14.51043309055018,6.135029431470542,13.198280397702788,16.969954559785435,17.398956419823335,14.782683137418204,7.482239208129542,148.42470800053138,148.42470800053138,0.0,164.91634222281263,0.0,148.42470800053138,164.91634222281263,0,0
+2017/03/06 09:00:00,165.61826642979975,0,1259.154135996524,0,0,0,0.0,0.0,11.86011032607099,0.0,83.2008179303116,0,39.380909295966944,0.6467111996847209,27.097742475311204,0,0,340.0855558389379,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1711.9066143466941,0.0,3544.6904517176113,0.0,0.0,0.0,0.0,0.0,4819.352063784481,0.0,7865.772616191902,0.0,8287.945906546238,0.0,6688.313188089286,0.0,1608.1449597110618,0.0,4167.575053467489,0.0,7687.504449682262,0.0,7951.645789252557,0.0,6172.782816020211,0.0,9708.37755921256,0,0,0,0,0,0,0,0,0.06703829886431782,0.0021210450465179664,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5451526679531108,-0.5451526679531108,-0.7914543072889894,-0.7914543072889894,-0.8270618771703347,-0.8270618771703347,-0.4938758214474972,-0.4938758214474972,-0.27905469113214393,-0.27905469113214393,-0.5162349781515772,-0.7216419722267259,-0.7449291878198074,-0.6127156509881744,-0.3248876230356013,-0.5321667574615028,-0.7439259406830515,-0.7514822555707664,-0.611338784387018,-0.4006702482152196,11.220353557235882,11.220353557235882,18.204031889808803,18.204031889808803,19.429078331110148,19.429078331110148,10.096816401735964,10.096816401735964,6.617369198961441,6.617369198961441,10.572744525263161,15.958691152185239,16.684479573259807,12.874724126007948,7.1947183202435525,10.92505579000371,16.65273158818482,16.892914056569424,12.839032505444905,8.344973218412761,165.61826642979975,165.61826642979975,0.0,184.02029603311084,0.0,165.61826642979975,184.02029603311084,0,0
+2017/03/06 10:00:00,182.47338535402204,0,1280.1385287199496,0,0,0,0.0,0.0,11.577736025229822,0.0,106.27511244621549,0,39.380909295966944,0.5859450217857901,21.221707362369767,0,0,307.83441979354706,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1149.2540369402593,0.0,2563.449994693796,0.0,0.0,0.0,0.0,0.0,3196.126436211963,0.0,7382.878832440995,0.0,7660.153241057453,0.0,6219.3934516749805,0.0,743.8400926312476,0.0,2701.9997299321803,0.0,7098.591823906498,0.0,7152.835911967119,0.0,5673.183145318168,0.0,8107.49216602164,0,0,0,0,0,0,0,0,0.0681555234761926,0.0021563932544678885,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42301007496923776,-0.42301007496923776,-0.775934043214695,-0.775934043214695,-0.8063412812994079,-0.8063412812994079,-0.41821351283642094,-0.41821351283642094,-0.28770547873571495,-0.28770547873571495,-0.439839956788434,-0.7100361538354771,-0.7301444490708137,-0.5882407897339229,-0.3347255084544158,-0.42605851554953306,-0.7264543043495058,-0.7313723540388136,-0.5791098706703756,-0.40090754038620835,8.730851199579703,8.730851199579703,17.686867266854094,17.686867266854094,18.709694980357753,18.709694980357753,8.646196842076705,8.646196842076705,6.719544461205402,6.719544461205402,9.035690570508578,15.605684924921093,16.22098538898736,12.252545826129023,7.330239425132191,8.785165887574323,16.106765599914155,16.259122127488595,12.02708612670547,8.348959691645305,182.47338535402204,182.47338535402204,0.0,202.74820594891338,0.0,182.47338535402204,202.74820594891338,0,0
+2017/03/06 11:00:00,212.8637127382792,0,1318.73944998012,0,0,0,0.0,0.0,17.091304499026357,0.0,133.89528835348938,0,39.380909295966944,0.5783970489101709,18.485838338432014,0,0,295.04782314838474,562.3170441686614,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,462.6322262602438,0.0,1500.353502468116,0.0,0.0,0.0,0.0,0.0,535.4301319891802,0.0,7423.07413616903,0.0,5997.895913906585,0.0,6500.158340252712,0.0,5023.2302204762855,0.0,0.0,0.0,7159.112240726588,0.0,5509.3592513025715,0.0,6038.759832708433,0.0,11226.97081527192,0,0,0,0,0,0,0,0,0.07021066511604379,0.002221416503400885,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2830373695868307,-0.2830373695868307,-0.7433053509406038,-0.7433053509406038,-0.7677319769992333,-0.7677319769992333,-0.42046062335567025,-0.42046062335567025,-0.24160980709134372,-0.24160980709134372,-0.3844347048306401,-0.7099850737683784,-0.7235620937457767,-0.6140007985001995,-0.3577877882180612,-0.34657089161480387,-0.7232911653060156,-0.7212667887058097,-0.6077224738661615,-0.4121127256760096,6.664016755881178,6.664016755881178,16.63311449097965,16.63311449097965,17.417699603528405,17.417699603528405,8.685733183884722,8.685733183884722,6.211461790828068,6.211461790828068,8.077936459726843,15.604144087041092,16.017653405886065,12.90811240846186,7.664046413798388,7.498867052277149,16.009324238800332,15.947188713197022,12.745681067260392,8.539949271915987,212.8637127382792,212.8637127382792,0.0,236.51523637586575,0.0,212.8637127382792,236.51523637586575,0,0
+2017/03/06 12:00:00,228.3349003669195,0,1319.0121089234892,0,0,0,0.0,0.0,16.86091082671979,0.0,147.76209134187457,0,39.380909295966944,0.40951386847951143,20.489499831424325,0,0,204.74658994691015,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,561.9072772622555,0.0,0.0,0.0,0.0,0.0,1005.5225522015115,0.0,6656.972731359056,0.0,7344.362307878216,0.0,6127.195839523787,0.0,0.0,0.0,0.0,0.0,6206.425011802485,0.0,6589.301874938744,0.0,5555.313820608761,0.0,1531.8316514987268,0,0,0,0,0,0,0,0,0.07022518168014906,0.0022218757973702964,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1770661340233941,-0.1770661340233941,-0.7062481299693356,-0.7062481299693356,-0.7304890364268737,-0.7304890364268737,-0.44043187144291646,-0.44043187144291646,-0.13791734320588878,-0.13791734320588878,-0.32933715496144406,-0.6898984915622353,-0.7031637185763079,-0.6263131399717113,-0.3438009895943177,-0.2792685862823644,-0.6960437811422373,-0.6955177965327053,-0.6203458802248525,-0.38686636282171594,5.649908550107526,5.649908550107526,15.491723833573829,15.491723833573829,16.23168117218303,16.23168117218303,9.046633346515904,9.046633346515904,5.394081060074214,5.394081060074214,7.255503930076884,15.00695675951232,15.399387806420052,13.231621130341836,7.458901444564674,6.619857467818676,15.18781074454975,15.172267336428177,13.074008913468035,8.1172142970226,228.3349003669195,228.3349003669195,0.0,253.70544485213276,0.0,228.3349003669195,253.70544485213276,0,0
+2017/03/06 13:00:00,208.24193077728734,0,1237.7882904607927,0,0,0,0.0,0.0,16.965686943773743,0.0,129.49988082968767,0,39.380909295966944,0.3725061253006367,18.59097238010406,0,0,196.34802194072097,562.3205096007257,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1562.709378540715,0.0,5223.378232806215,0.0,8220.925983148694,0.0,5157.790265728439,0.0,0.0,0.0,412.2594113808101,0.0,4739.318609999235,0.0,7489.696436324102,0.0,4651.871963975613,0.0,0.0,0,0,0,0,0,0,0,0,0.06590076542217126,0.0020850542813346667,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.15208079295714733,-0.15208079295714733,-0.646613077632144,-0.646613077632144,-0.7074487077973424,-0.7074487077973424,-0.423533564457101,-0.423533564457101,-0.09173262505828464,-0.09173262505828464,-0.304375920896459,-0.6308608196116121,-0.6800724930924142,-0.6092061965717922,-0.32501121090835877,-0.259118452181137,-0.6269515643154981,-0.6696645487242663,-0.6005568878067531,-0.35760335427133527,5.4792638583193,5.4792638583193,13.779366324612198,13.779366324612198,15.527775721709702,15.527775721709702,8.740149966934538,8.740149966934538,5.174257649252809,5.174257649252809,6.925353489606323,13.352775636519937,14.72117223956053,12.783913221210994,7.196395332522499,6.393913118549847,13.248575219030556,14.423017182376128,12.562385185277975,7.661287159473844,208.24193077728734,208.24193077728734,0.0,231.37992308587482,0.0,208.24193077728734,231.37992308587482,0,0
+2017/03/06 14:00:00,205.41391230372346,0,1099.621619157674,0,0,0,0.0,0.0,16.903073467207488,0.0,129.2730206906943,0,39.380909295966944,0.1480447859309501,16.276888861469477,0,0,94.69072841296392,561.3014843379087,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,611.425746341639,0.0,4835.494614329192,0.0,7425.132899183296,0.0,5289.715029720596,0.0,0.0,0.0,0.0,0.0,4323.350238972086,0.0,6766.004699983126,0.0,4842.821346259783,0.0,0.0,0,0,0,0,0,0,0,0,0.0585446695010187,0.0018523125340112368,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.16870554834688256,-0.16870554834688256,-0.5254850529244143,-0.5254850529244143,-0.7006379694345104,-0.7006379694345104,-0.4221011368816698,-0.4221011368816698,-0.10974206347653362,-0.10974206347653362,-0.2900877250394627,-0.5407117214185124,-0.6683845000116414,-0.6037925841547429,-0.32390096811370084,-0.2298681954046389,-0.5164323531190821,-0.6571471410067794,-0.594725924158282,-0.3515719399524093,5.589909729088646,5.589909729088646,10.775960615315327,10.775960615315327,15.324081821790628,15.324081821790628,8.714733614405645,8.714733614405645,5.249436723019457,5.249436723019457,6.748236054097745,11.11854504445202,14.386671595506002,12.644878439339905,7.181353236667107,6.0963202578669495,10.577042023177313,14.070645153271485,12.414873505785366,7.571850986881941,205.41391230372346,205.41391230372346,0.0,228.23768033747052,0.0,205.41391230372346,228.23768033747052,0,0
+2017/03/06 15:00:00,189.6206996997081,0,1203.1372830245487,0,0,0,0.0,0.0,16.903073467207488,0.0,115.5196477718057,0,39.380909295966944,0.3827449763707863,14.002348985902863,0,0,255.23594286710775,539.7622862631832,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,799.7898373990565,0.0,0.0,0.0,0.0,0.0,169.15224496555956,0.0,5234.600244576174,0.0,6565.292543912476,0.0,6471.786245936298,0.0,0.0,0.0,0.0,0.0,4518.22316981023,0.0,5795.879889864519,0.0,5944.993130822923,0.0,4166.866937934612,0,0,0,0,0,0,0,0,0.06405592012003342,0.002026684661938281,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3257988350570772,-0.3257988350570772,-0.316213286937996,-0.316213286937996,-0.7215328492321481,-0.7215328492321481,-0.49636032004066,-0.49636032004066,-0.17432608718098103,-0.17432608718098103,-0.32526271993384465,-0.47590693184728966,-0.6774741557449548,-0.6220560196065399,-0.34089026212951007,-0.23952742329036097,-0.4406313885409323,-0.6702031725607559,-0.6183279019141166,-0.372642487746732,7.207098129947397,7.207098129947397,7.078630307340447,7.078630307340447,15.955345016325339,15.955345016325339,10.148633438992462,10.148633438992462,5.629923634650794,5.629923634650794,7.199810157235575,9.729987998450028,14.646298928833588,13.119020579164456,7.417255288462286,6.190619176054895,9.05032522869385,14.438332025268224,13.021058019054905,7.891040550393697,189.6206996997081,189.6206996997081,0.0,210.689666333009,0.0,189.6206996997081,210.689666333009,0,0
+2017/03/06 16:00:00,183.279044581527,0,1236.6197301591194,0,0,0,0.0,0.0,17.091304081972734,0.0,108.75639138185811,0,39.380909295966944,0.5547449823380817,14.06371963693685,0,0,298.2072421511154,530.2734341137467,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1237.2931876370367,0.0,0.0,0.0,0.0,0.0,445.59611111896913,0.0,5126.143918494953,0.0,5935.964407721789,0.0,7209.259841554267,0.0,5403.297737685278,0.0,0.0,0.0,4284.692389962081,0.0,5205.361431021129,0.0,6661.141809130058,0.0,10986.242371588545,0,0,0,0,0,0,0,0,0.06583855040614978,0.002083085841595191,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5221270480582334,-0.5221270480582334,-0.3969971099539091,-0.3969971099539091,-0.7404656804466206,-0.7404656804466206,-0.5681880517347229,-0.5681880517347229,-0.21896126108193298,-0.21896126108193298,-0.381315936361678,-0.4337774634520289,-0.6927891026482799,-0.6480593037567465,-0.3646043604941162,-0.30877294516541887,-0.393836168800553,-0.6902402168907056,-0.651052433042456,-0.40115046997190534,10.701760040929642,10.701760040929642,8.283572281077056,8.283572281077056,16.54356207760864,16.54356207760864,11.76215707786453,11.76215707786453,5.994544901689309,5.994544901689309,8.02792955196513,8.924479352535045,15.091823322403599,13.819071250652414,7.767042928446827,6.9815962529861935,8.231195285790136,15.016970785093847,13.901533139440176,8.35304336839232,183.279044581527,183.279044581527,0.0,203.64338286836332,0.0,183.279044581527,203.64338286836332,0,0
+2017/03/06 17:00:00,206.82818424299265,0,1257.6120713916396,0,0,0,0.0,0.0,17.74957958041939,0.0,131.64086955684016,0,39.380909295966944,0.5429278759632034,14.081922731348612,0,0,264.3749710385034,531.8625176900624,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,716.868670866081,0.0,0.0,0.0,0.0,0.0,1464.5981548136274,0.0,4314.279972859245,0.0,5930.390958115726,0.0,7012.118981451877,0.0,4245.369452363596,0.0,707.370371556635,0.0,3519.3953677759937,0.0,5420.206629464268,0.0,6621.669472187354,0.0,9403.62743243826,0,0,0,0,0,0,0,0,0.06695619820253625,0.002118447438808079,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5651784689819644,-0.5651784689819644,-0.3529858706305975,-0.3529858706305975,-0.7322405377925466,-0.7322405377925466,-0.5726281092064074,-0.5726281092064074,-0.1784435794965439,-0.1784435794965439,-0.43139424340293847,-0.4030658646601535,-0.699988964267553,-0.6636589123679851,-0.3729332596911895,-0.4084533958515794,-0.36271203114949696,-0.7010015364372159,-0.6733659764687554,-0.4111845016407483,11.69006346856672,11.69006346856672,7.592678398903217,7.592678398903217,16.286125614831292,16.286125614831292,11.86923465986925,11.86923465986925,5.660073490374771,5.660073490374771,8.88119347214787,8.385329843227012,15.304776001521958,14.253108180742274,7.895577676281491,8.476985752025158,7.738251921464425,15.334904718722711,14.528514323632209,8.523923678244728,206.82818424299265,206.82818424299265,0.0,229.80909360332515,0.0,206.82818424299265,229.80909360332515,0,0
+2017/03/06 18:00:00,216.1254662488066,0,1248.6467497667554,0,0,0,0.0,0.0,20.370704322598844,0.0,133.89528835348938,0,39.380909295966944,0.433711840673556,18.612877233623596,0,0,206.2859854932351,580.9861816104467,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,369.19925271944646,0.0,0.0,0.0,0.0,0.0,3290.879745833182,0.0,3978.4045151267323,0.0,7169.169147037323,0.0,6549.603028227136,0.0,0.0,0.0,2787.3088709918393,0.0,3293.136359549105,0.0,6790.173854716866,0.0,6256.974408454531,0.0,3064.8921543393703,0,0,0,0,0,0,0,0,0.06647887783855393,0.0021033453552114184,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5925837440562195,-0.5925837440562195,-0.5606452804928268,-0.5606452804928268,-0.7201894025635551,-0.7201894025635551,-0.5655012108172014,-0.5655012108172014,-0.13310771805815305,-0.13310771805815305,-0.4507526670241509,-0.42700695725351157,-0.693347722348415,-0.6624641221156008,-0.35785006500835503,-0.45033770145223645,-0.39775320943876974,-0.6974836755996316,-0.6760842688893348,-0.3961420231120922,12.361051285400904,12.361051285400904,11.582213870354238,11.582213870354238,15.914191714333839,15.914191714333839,11.697775841581446,11.697775841581446,5.367053519319256,5.367053519319256,9.239855583451131,8.802145788390376,15.108265680392662,14.219491964433729,7.66497844297281,9.231998362258423,8.29616422410389,15.230422292091887,14.606368071486116,8.269361281404116,216.1254662488066,216.1254662488066,0.0,240.13940694311842,0.0,216.1254662488066,240.13940694311842,0,0
+2017/03/06 19:00:00,219.16929683119872,0,1268.3861167002008,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.47480646724621106,26.018019667431805,0,0,242.8464790049821,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,360.07327677933836,0.0,0.0,0.0,0.0,0.0,5106.917422151408,0.0,4272.268479846629,0.0,8659.32909873565,0.0,5792.836074750375,0.0,0.0,0.0,4876.42430515122,0.0,3846.5819652512455,0.0,8441.653573199339,0.0,5613.537180230314,0.0,0.0,0,0,0,0,0,0,0,0,0.06752981635517125,0.0021365963173126147,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6162767469454088,-0.6162767469454088,-0.587457781989364,-0.587457781989364,-0.7252581076005052,-0.7252581076005052,-0.5674560562599995,-0.5674560562599995,-0.11367816071009919,-0.11367816071009919,-0.45358466723531005,-0.49798887462559255,-0.679153641866058,-0.6461951279273976,-0.3324656797593357,-0.4638620852179114,-0.4854580194131562,-0.6848522925195123,-0.6617348443116725,-0.36848755283259593,12.967417684942077,12.967417684942077,12.233070056336615,12.233070056336615,16.06986581971219,16.06986581971219,11.744586198804939,11.744586198804939,5.267661020897478,5.267661020897478,9.293676275589334,10.182743467462643,14.694661374172725,13.767908756281088,7.298745983678813,9.491892794581261,9.923235090894948,14.859668982201853,14.199003641365493,7.826601894555566,219.16929683119872,219.16929683119872,0.0,243.52144092355414,0.0,219.16929683119872,243.52144092355414,0,0
+2017/03/06 20:00:00,210.87731853896207,0,1202.137806327112,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.34764069272036957,27.0977424753112,0,0,212.08852114443764,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,535.429512762829,0.0,0.0,0.0,0.0,0.0,5208.177621903664,0.0,4527.930870339756,0.0,8459.893702941734,0.0,5724.2419616749285,0.0,0.0,0.0,5222.208424890408,0.0,4304.175273175375,0.0,8426.037106902082,0.0,5666.072345717809,0.0,0.0,0,0,0,0,0,0,0,0,0.06400270724034285,0.002025001043517308,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6060425051814613,-0.6060425051814613,-0.5946227350746871,-0.5946227350746871,-0.7295049845995337,-0.7295049845995337,-0.5831863693355814,-0.5831863693355814,-0.13417226070101326,-0.13417226070101326,-0.4595405761946509,-0.5058988955578972,-0.6697314791688955,-0.6368284976700787,-0.320093634106376,-0.47763391122903115,-0.5037664216253155,-0.6786034195631175,-0.6553764086743766,-0.3554484654744743,12.702507437478957,12.702507437478957,12.412276316998856,12.412276316998856,16.20115032388229,16.20115032388229,12.127295556926256,12.127295556926256,5.372952759917993,5.372952759917993,9.407991473826414,10.350048765581619,14.424919551076144,13.513121450903498,7.130166530292527,9.76463852397194,10.304678448857274,14.67880374341587,14.021346099403374,7.629155880208842,210.87731853896207,210.87731853896207,0.0,234.30813170995785,0.0,210.87731853896207,234.30813170995785,0,0
+2017/03/06 21:00:00,212.51454991445854,0,1117.187175845332,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.22170538410644797,24.389115364194737,0,0,162.62824317520156,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1026.5848960125522,0.0,0.0,0.0,0.0,0.0,5731.136382907943,0.0,4930.783739558119,0.0,8764.30381706518,0.0,5956.941847047381,0.0,0.0,0.0,5800.49331474494,0.0,4770.114351927868,0.0,8751.584674572712,0.0,5915.769555028013,0.0,0.0,0,0,0,0,0,0,0,0,0.059479872749994535,0.0018819017129183928,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5766063177461209,-0.5766063177461209,-0.6043754502460776,-0.6043754502460776,-0.7410850185910464,-0.7410850185910464,-0.6244486488288209,-0.6244486488288209,-0.17185700212453417,-0.17185700212453417,-0.4683925206093524,-0.5142954096795431,-0.6655091277442323,-0.6328300059827505,-0.3101409716007329,-0.4904911069862724,-0.5196536719515298,-0.676789000965233,-0.6537602273257352,-0.34479658993034035,11.965900607035636,11.965900607035636,12.659786761390777,12.659786761390777,16.563064150566873,16.563064150566873,13.182208678104303,13.182208678104303,5.612183351290341,5.612183351290341,9.580714100142544,10.530603434818516,14.305287233171413,13.405515011003502,6.999261679530292,10.02665332389202,10.647418896435553,14.626604276978938,13.976468520407437,7.4732289484609,212.51454991445854,212.51454991445854,0.0,236.12727768273172,0.0,212.51454991445854,236.12727768273172,0,0
+2017/03/06 22:00:00,199.62610977144462,0,1332.4512865348631,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.6324298455138571,27.0977424753112,0,0,413.38270637727675,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1891.7837773925576,0.0,302.05715795136086,0.0,0.0,0.0,4541.237726185067,0.0,6145.278802716888,0.0,7353.206732101389,0.0,7024.081053215672,0.0,2645.5556746758275,0.0,4669.848722103244,0.0,6047.155095382248,0.0,7401.579072067303,0.0,7030.71780099183,0.0,6887.030789337807,0,0,0,0,0,0,0,0,0.07094069345066706,0.002244514091036639,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6468046527849857,-0.6468046527849857,-0.68035134385673,-0.68035134385673,-0.7634625712050842,-0.7634625712050842,-0.6892022667589356,-0.6892022667589356,-0.24793321869663335,-0.24793321869663335,-0.4884752069301914,-0.53959697686631,-0.675333061881249,-0.6496403647773331,-0.3252462031162163,-0.5180236202545994,-0.5539639371284443,-0.690587235628985,-0.6743928216070443,-0.3647325505347645,13.784620649238562,13.784620649238562,14.72922491733631,14.72922491733631,17.278725973638927,17.278725973638927,14.98656998670009,14.98656998670009,6.275869272396406,6.275869272396406,9.985099986191827,11.09312374566612,14.58482101471698,13.862581710836281,7.199585820418548,10.611750677411521,11.424881894319654,15.027145094946647,14.557886283225656,7.768998804042695,199.62610977144462,199.62610977144462,0.0,221.80678863493847,0.0,199.62610977144462,221.80678863493847,0,0
+2017/03/06 23:00:00,140.8795334925116,0,1169.3763868573376,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.7378470002388665,20.956753684496515,0,0,410.01439300619995,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1460.6762015600134,0.0,1015.286583180298,0.0,3456.6341832929247,0.0,1368.147276314003,0.0,0.0,0.0,4139.340839819336,0.0,6842.214197841541,0.0,6773.292401062241,0.0,7622.285975984398,0.0,10359.499859574422,0.0,4387.695289294895,0.0,6854.304399619476,0.0,6988.263600887453,0.0,7740.663990104342,0.0,14419.062735944397,0,0,0,0,0,0,0,0,0.062258465001170236,0.001969814434907022,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7621665830274961,-0.7621665830274961,-0.7873039011776145,-0.7873039011776145,-0.8382552006273215,-0.8382552006273215,-0.7818240116480187,-0.7818240116480187,-0.4796590940394888,-0.4796590940394888,-0.5144611928749087,-0.572098626399331,-0.6919755773150941,-0.6748862935557954,-0.35540784578500567,-0.5533389501090245,-0.59623594333508,-0.7118192053116424,-0.7038527257297335,-0.4005336594700029,17.236694204399683,17.236694204399683,18.064729898427487,18.064729898427487,19.825191878883274,19.825191878883274,17.8819264869839,17.8819264869839,9.805436142100305,9.805436142100305,10.534199053272474,11.85642060284475,15.067902211313637,14.572017829315797,7.628552102936851,11.410263721810239,12.452932372186169,15.659541436267602,15.419978561696354,8.342679640281304,140.8795334925116,140.8795334925116,0.0,156.53281499167954,0.0,140.8795334925116,156.53281499167954,0,0
+2017/03/07 00:00:00,91.60792077218557,0,1080.545462750393,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.8760067460212992,11.788957764871684,0,0,508.7136777562406,518.5962562253363,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3509.4616612599248,0.0,2270.371048146498,0.0,5108.035030066112,0.0,2533.159114952985,0.0,0.0,0.0,4130.299558992865,0.0,7887.371087494475,0.0,6632.571749767962,0.0,8608.179971647962,0.0,18200.425970515782,0.0,4433.457495014731,0.0,7924.222227548915,0.0,6862.5069409773105,0.0,8736.710369347215,0.0,22568.582957229075,0,0,0,0,0,0,0,0,0.05752904080405882,0.0018201787499910272,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.847421829745838,-0.847421829745838,-0.8664657289428702,-0.8664657289428702,-0.915906011218076,-0.915906011218076,-0.8595067922508449,-0.8595067922508449,-0.6342220701279738,-0.6342220701279738,-0.544507336465026,-0.6070917462809843,-0.7124875219080754,-0.7029722160375503,-0.38743801216456436,-0.5893397419720329,-0.6388276999041793,-0.7357616738471431,-0.7354781369215277,-0.43632190295865747,20.153483689351333,20.153483689351333,20.846686262451527,20.846686262451527,22.715905440197744,22.715905440197744,20.591636088650105,20.591636088650105,13.442899207986741,13.442899207986741,11.20550628937876,12.729457594931333,15.679763041072789,15.393668453365791,8.126484643346046,12.279924967215607,13.567183553005705,16.39597703040093,16.387111608527988,8.970962641624538,91.60792077218557,91.60792077218557,0.0,101.78657863576174,0.0,91.60792077218557,101.78657863576174,0,0
+2017/03/07 01:00:00,39.59248013458729,0,628.4570666551787,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.15145690081915883,0.10518214399787781,9.538520093347062,0,0,59.051956194308886,516.1695816920536,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51.102740092903346,0.0,773.0962981913938,0.0,205.9772499562777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0334595197310607,0.0010586358810815658,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8351905445199841,-0.8351905445199841,-0.881505285141714,-0.881505285141714,-0.9257290025381251,-0.9257290025381251,-0.8738077705822214,-0.8738077705822214,-0.3126130665134447,-0.3126130665134447,-0.6599815636799036,-0.7730324751066601,-1.0126290394323565,-0.9877426977904027,-0.1794588497129627,-0.7506038551542225,-0.8349925038091167,-1.039640043957606,-1.0194209014802766,-0.30478441313402244,19.716217355605366,19.716217355605366,21.404720957112232,21.404720957112232,23.099096537349425,23.099096537349425,21.11794565925355,21.11794565925355,7.031384945775997,7.031384945775997,14.149841275249983,17.591318548926807,26.654420401273683,25.606404487069995,5.667616435235033,16.864867857635502,19.709188836985334,27.8181747289385,26.944496130005632,6.93054408825725,39.59248013458729,39.59248013458729,0.0,43.991644593985875,0.0,39.59248013458729,43.991644593985875,0,0
+2017/03/07 02:00:00,23.72217806132758,0,36.64289021607892,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250826376497857,0,0,0.0,1.1525377035347772,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0019508946167371107,6.172494578783673e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9089307729494696,-0.9089307729494696,-0.9742144677379984,-0.9742144677379984,-1.1068962195771137,-1.1068962195771137,-1.0020986428381493,-1.0020986428381493,-0.13845587345598886,-0.13845587345598886,-0.7543968083713032,-0.8633968351600602,-1.1821392264305144,-1.1104259661634004,-0.11334203419023761,-0.8706147226789471,-0.9510705120585313,-1.2606018256856115,-1.2005796744733515,-0.3073728834848704,22.446162288903437,22.446162288903437,25.0466272810353,25.0466272810353,30.829971763488842,30.829971763488842,26.208098775505576,26.208098775505576,5.397167226179036,5.397167226179036,16.986208644880847,20.733962144818747,34.37925104513462,30.992366655907816,5.266079608678552,20.99970206052984,24.105441637517927,38.25980111400321,35.275783438354324,6.963599160486751,23.72217806132758,23.72217806132758,0.0,26.35797562369731,0.0,23.72217806132758,26.35797562369731,0,0
+2017/03/07 03:00:00,28.344520193748416,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251571072755211,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.929676041945372,-0.929676041945372,-0.9994932732944877,-0.9994932732944877,-1.1329544814296135,-1.1329544814296135,-1.0291098350855232,-1.0291098350855232,-0.05339405204959039,-0.05339405204959039,-0.8021195200254103,-0.9124713228178378,-1.244055862913532,-1.1668013723000368,-0.09205652704142979,-0.94776474086068,-1.026989173790878,-1.360353791046676,-1.2925696067207706,-0.3062288925343546,23.25415842642863,23.25415842642863,26.098318775101575,26.098318775101575,32.0386098688884,32.0386098688884,27.361276520457338,27.361276520457338,5.059023115493602,5.059023115493602,18.565342552667545,22.582835405401127,37.42760705747198,33.64128314962342,5.175490871517653,23.972721219986994,27.269756453127698,43.411084628423524,39.8868154021403,6.948955304633074,28.344520193748416,28.344520193748416,0.0,31.493911326387128,0.0,28.344520193748416,31.493911326387128,0,0
+2017/03/07 04:00:00,23.77486541689024,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5777699932124484,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9901980649057835,-0.9901980649057835,-1.0635257645215925,-1.0635257645215925,-1.194064662372986,-1.194064662372986,-1.095998879374141,-1.095998879374141,0.018703738293486875,0.018703738293486875,-0.886821816308979,-0.9962176431119771,-1.337571831744883,-1.2550281872086433,-0.06331862262075966,-1.0469004251124097,-1.126092205891275,-1.4741783046270065,-1.4019884054660883,-0.316375715763583,25.708757939259925,25.708757939259925,28.869504702170843,28.869504702170843,34.95790019107835,34.95790019107835,30.33127176188998,30.33127176188998,5.00724176611152,5.00724176611152,21.6042107957377,25.9606621714685,42.216280064480365,37.97868862557769,5.083008352820116,28.135559510745026,31.718148727781383,49.49963429444013,45.61781208773508,7.080774788134306,23.77486541689024,23.77486541689024,0.0,26.416517129878045,0.0,23.77486541689024,26.416517129878045,0,0
+2017/03/07 05:00:00,43.730232959165896,0,390.8152580690847,0,0,0,0.0,0.020199681986864792,4.633261998087618,9.319298099999997,25.555573451546493,0,2.1820837777110045,1.4947385101482475,0.5250774396856804,0,0,302.08937678772435,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16267941690697776,799.1293840515267,0.15445376488131993,757.6613666527417,1.251577296208931,2008.4583086854216,0.1783430993945482,958.5308635656845,0.0,0.0,1.5191876579112504,2481.7564740856797,1.5799499454290067,1844.910082290824,4.0771865666548965,5095.4551517241525,1.8741044940173501,2815.278268325288,0.0,0.0,2.4399793368612563,3399.132726670738,1.8839913619368265,2318.395369025526,2.7939789304703777,5948.219204179062,2.284250116192046,3356.049969768752,0.0,0.0,0,0,0,0,0,0,0,0,0.020807293819065157,0.0006583282725549981,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.889406606192364,-0.889406606192364,-0.921218222984722,-0.921218222984722,-0.9675828121111785,-0.9675828121111785,-0.9230785356332175,-0.9230785356332175,0.15260630319893534,0.15260630319893534,-0.6905835125927992,-0.750183223722554,-0.8801422474843681,-0.8593218680636042,-0.03220171567516626,-0.7771718169307686,-0.8274569968212107,-0.9536384637510903,-0.939953202224918,-0.3073676034088597,21.701616648115646,21.701616648115646,22.922651658886892,22.922651658886892,24.774804079595114,24.774804079595114,22.99532129669008,22.99532129669008,5.482585118537344,5.482585118537344,15.027035910907927,16.851449336030967,21.353762891461585,20.584885817602,5.021466393107687,17.727736308107538,19.44297160537549,24.208837119881522,23.660818760018387,6.963531444751595,43.730232959165896,43.730232959165896,0.0,48.58914773240655,0.0,43.730232959165896,48.58914773240655,0,0
+2017/03/07 06:00:00,76.42203482432284,0,333.61717205854484,0,0,0,0.061390800582695616,0.01580159191474525,5.555297838843742,9.319298099999997,57.911447091112116,0,1.7872876998023306,1.2464646400725377,0.5250470619946428,0,0,120.67505698328004,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,194.72768956321917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,140.47168944323846,0.0,598.0614719947838,0.0,216.08379843305764,0.0,0.0,1.4279968463177397,1685.0548358025108,0.92073877132907,1354.3767233757362,2.8270888887482215,4229.97602819906,1.5644465951249913,2232.66104128914,0.0,0.0,2.1368349577538766,2673.5393397639978,1.582328070681399,1882.3245347741156,3.2679368971228087,5104.732307876149,2.0742208876671384,2821.318589514036,0.0,0.0,0,0,0,0,0,0,0,0,0.017762025352860384,0.0005619781010115048,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7573125370125612,-0.7573125370125612,-0.8060819406684344,-0.8060819406684344,-0.8445521104899956,-0.8445521104899956,-0.8071454309461648,-0.8071454309461648,0.4785977507970345,0.4785977507970345,-0.6571918524644506,-0.7084624830888564,-0.7991981904765709,-0.7873969018414387,0.08067652481983908,-0.7092172513339647,-0.7526774085527156,-0.8224703574696162,-0.8253541899749948,-0.1919531574269497,17.079904623174826,17.079904623174826,18.70080577402149,18.70080577402149,20.050331391233158,20.050331391233158,18.737276217930997,18.737276217930997,9.78403315785792,9.78403315785792,14.07189172613434,15.558266568515535,18.46589626353135,18.06784331356782,5.134772631528577,15.580996163713749,16.931126817201076,19.268110902571223,19.369107632251414,5.763967061223909,76.42203482432284,76.42203482432284,0.0,84.91337202702537,0.0,76.42203482432284,84.91337202702537,0,0
+2017/03/07 07:00:00,102.20185509938528,0,830.4157250574874,0,0,0,0.0,0.014791451583355942,11.110595677687485,13.929299233552332,73.80580873715317,0,1.7248904137591503,1.0914870859942232,0.524982499655563,0,0,96.14713033139478,503.58130339455585,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,325.8757192358952,0.0,81.98304122241223,0.0,0.0,1.27489997475944,1493.1278010259186,1.1503834839932854,1194.470938506308,3.541236968219133,3558.675025434386,1.4029112798369474,1903.7730126426281,0.0,0.0,1.5653508978763662,2190.263948702698,1.1744720093444507,1534.7854034907298,2.5044698289229927,4003.8728990391246,2.1777271404033245,2236.794903955015,0.0,0.0,0,0,0,0,0,0,0,0,0.044211948296524285,0.0013988352258318527,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6409974058958614,-0.6409974058958614,-0.7176994115960911,-0.7176994115960911,-0.760957739121433,-0.760957739121433,-0.726606760140805,-0.726606760140805,0.7321079736360023,0.7321079736360023,-0.6432177620143766,-0.6918788756189731,-0.7737075959057724,-0.7646244008698587,0.14763816088396364,-0.6898478089410469,-0.7315180407921011,-0.7910638267890255,-0.7971341035716761,-0.07968016108041319,13.626052547732286,13.626052547732286,15.83812224022607,15.83812224022607,17.197553401361134,17.197553401361134,16.111472914993143,16.111472914993143,16.282000320289,16.282000320289,13.686507161908494,15.065060670997482,17.6135182739731,17.31646767027115,5.451645726719562,15.005471969940032,16.26365122253617,18.190894861641652,18.395849507703616,5.131463338319108,102.20185509938528,102.20185509938528,0.0,113.55761677709475,0.0,102.20185509938528,113.55761677709475,0,0
+2017/03/07 08:00:00,148.4527555967165,0,1138.6803736692368,0,0,0,0.0,0.0,8.479384999136657,0.0,69.33401494192633,0,39.38090929596693,0.7542174808764819,27.07225367635578,0,0,288.26760431565606,584.2351255095,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2424.540200681651,0.0,2210.5026532624524,0.0,4462.890098516302,0.0,1236.948115987894,0.0,0.0,0.0,5703.084152709818,0.0,8074.031761564876,0.0,8784.143406788407,0.0,7598.258561352627,0.0,9409.235379688775,0.0,5962.087750391855,0.0,8238.18408061365,0.0,8943.551612052946,0.0,7508.375592619398,0.0,12951.46805140207,0,0,0,0,0,0,0,0,0.060624186522294156,0.0019181070030214549,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6468707412543677,-0.6468707412543677,-0.7685153410709757,-0.7685153410709757,-0.8185120283037625,-0.8185120283037625,-0.6094748596864392,-0.6094748596864392,0.059924074028706004,0.059924074028706004,-0.585189057310862,-0.6962554674577576,-0.7596437228627382,-0.6700898147112355,-0.23254705705799136,-0.6206529388560476,-0.7325792872969635,-0.7752966667600313,-0.6832596631888787,-0.3323481962403319,13.78643362440188,13.78643362440188,17.44328339771033,17.44328339771033,19.13005251404671,19.13005251404671,12.790846274174072,12.790846274174072,5.07434528241518,5.07434528241518,12.176790242499408,15.194069673889572,17.155078091212474,14.435107846102895,6.122080484611672,13.082081492043955,16.296670669127877,17.665847702766484,14.813412098269467,7.2971146363220925,148.4527555967165,148.4527555967165,0.0,164.94750621857386,0.0,148.4527555967165,164.94750621857386,0,0
+2017/03/07 09:00:00,165.62695116853817,0,1263.278545300873,0,0,0,0.0,0.0,11.86011032607099,0.0,83.2008179303116,0,39.380909295966944,0.655395938423144,27.0977424753112,0,0,344.2099651432867,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1638.2120988142174,0.0,3578.8152082484585,0.0,0.0,0.0,0.0,0.0,4428.485254994622,0.0,7550.010360889126,0.0,8124.765393163035,0.0,6608.45504656442,0.0,2137.5558742520584,0.0,4068.377520236483,0.0,7555.715492267076,0.0,8006.070375920916,0.0,6225.735580917857,0.0,9650.793362251177,0,0,0,0,0,0,0,0,0.06725788547065883,0.002127992613678105,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5381720749861778,-0.5381720749861778,-0.7714789717046193,-0.7714789717046193,-0.8182906650919461,-0.8182906650919461,-0.488373296676507,-0.488373296676507,-0.2663450915666947,-0.2663450915666947,-0.5049281948224755,-0.6915056081293229,-0.7477295676724288,-0.6088987172941885,-0.32062293575981987,-0.5266276688404319,-0.7228943533660691,-0.7565773687385561,-0.6095726239566075,-0.3903571215582013,11.060707823897005,11.060707823897005,17.540309105116506,17.540309105116506,19.12235127523749,19.12235127523749,9.983003989757037,9.983003989757037,6.472978785882461,6.472978785882461,10.329371852961401,15.054096146454398,16.773326554006843,12.775982332330045,7.137245816925187,10.80131987135124,15.997130730091584,17.05624594287592,12.793369931793308,8.174041054798934,165.62695116853817,165.62695116853817,0.0,184.0299457428202,0.0,165.62695116853817,184.0299457428202,0,0
+2017/03/07 10:00:00,182.3996377621249,0,1255.9716247872962,0,0,0,0.0,0.0,11.577736025229822,0.0,106.27511244621549,0,39.380909295966944,0.5551935101822857,21.178711282076158,0,0,283.6675158608938,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,913.6901437665601,0.0,2313.5994517749677,0.0,0.0,0.0,0.0,0.0,2476.3602689391264,0.0,6770.523096482895,0.0,7165.550877929834,0.0,5792.664516620145,0.0,77.8895315115658,0.0,2242.049957643513,0.0,6657.222398125526,0.0,6848.448602170616,0.0,5397.914318174493,0.0,6624.681955049959,0,0,0,0,0,0,0,0,0.06686885961023127,0.0021156841066275705,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4496920164643386,-0.4496920164643386,-0.7550241671882468,-0.7550241671882468,-0.7954585386920549,-0.7954585386920549,-0.3898075612351201,-0.3898075612351201,-0.27650122924201426,-0.27650122924201426,-0.4244872093759266,-0.6770186463582062,-0.7288078711126369,-0.5790264022679391,-0.32949214745336664,-0.41558757966246,-0.7014751487847093,-0.731042155989514,-0.5695570017131452,-0.38992561697924555,9.219787283372256,9.219787283372256,17.006337901787134,17.006337901787134,18.339120296462667,18.339120296462667,8.165060120262098,8.165060120262098,6.587813454043101,6.587813454043101,8.757119818010537,14.63320312964305,16.179547116356375,12.025041820445878,7.2576364379975615,8.60026966995828,15.349012073776947,16.24886034072283,11.795079843534708,8.166988303015074,182.3996377621249,182.3996377621249,0.0,202.6662641801388,0.0,182.3996377621249,202.6662641801388,0,0
+2017/03/07 11:00:00,212.87161360409092,0,1285.9780803242627,0,0,0,0.0,0.0,17.091304499026357,0.0,133.89528835348938,0,39.380909295966944,0.5374981403875302,18.534638112766412,0,0,262.31115407694676,562.292343584242,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,232.67901084044985,0.0,1255.7357786270536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6794.122388178238,0.0,5582.4978280381465,0.0,6065.127183318462,0.0,3574.641095239192,0.0,0.0,0.0,6629.523779691974,0.0,5171.323596417733,0.0,5678.515137264618,0.0,9278.694509912915,0,0,0,0,0,0,0,0,0.06846642552900103,0.0021662299787021393,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3251341229862778,-0.3251341229862778,-0.724747762880014,-0.724747762880014,-0.7594578287181841,-0.7594578287181841,-0.38281315935757576,-0.38281315935757576,-0.23776946461402498,-0.23776946461402498,-0.35649624282051423,-0.6743578644610975,-0.7193865068217725,-0.6018123499324926,-0.35223625901520733,-0.3009301683008098,-0.6945957069413162,-0.7171877907208414,-0.5943261606900268,-0.4009963682300645,7.19806381704079,7.19806381704079,16.054141651225578,16.054141651225578,17.149075059716523,17.149075059716523,8.05188447006337,8.05188447006337,6.173165477103012,6.173165477103012,7.644754470737055,14.556885615893208,15.889634004254575,12.594338921959292,7.581625914131891,6.88185010625817,15.145047438817016,15.822525238929714,12.404814343695094,8.350452605969409,212.87161360409092,212.87161360409092,0.0,236.52401511565657,0.0,212.87161360409092,236.52401511565657,0,0
+2017/03/07 12:00:00,228.14901851276676,0,1222.5518436591851,0,0,0,0.0,0.0,16.86091082671979,0.0,147.76209134187457,0,39.380909295966944,0.24272999152986324,20.47040185422122,0,0,119.98751822745196,587.9542139998434,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5083.1511344017035,0.0,5578.730359384236,0.0,4725.0592223635385,0.0,0.0,0.0,0.0,0.0,4902.4376545843625,0.0,5162.54764542301,0.0,4408.489913450772,0.0,0.0,0,0,0,0,0,0,0,0,0.06508956570871596,0.002059388487853786,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.14028690557377124,-0.14028690557377124,-0.6250033599459786,-0.6250033599459786,-0.6659119546895136,-0.6659119546895136,-0.33327865450312805,-0.33327865450312805,-0.14016483866419877,-0.14016483866419877,-0.23365786643988312,-0.6455859427797976,-0.6887439427480633,-0.6048584662526006,-0.34192552352753,-0.18732632350512576,-0.6562291019856866,-0.6795171412007436,-0.594864944878688,-0.37566502488607595,5.40775062703996,5.40775062703996,13.196893782603695,13.196893782603695,14.31666725588724,14.31666725588724,7.310050804344996,7.310050804344996,5.407040737595452,5.407040737595452,6.1328504578564775,13.751222272672507,14.97316083224527,12.672152329185352,7.432026368875427,5.727526717255415,14.045069017909938,14.70514475759353,12.418373279623381,7.93837947816715,228.14901851276676,228.14901851276676,0.0,253.49890945862973,0.0,228.14901851276676,253.49890945862973,0,0
+2017/03/07 13:00:00,207.8425245127541,0,1171.8402944440543,0,0,0,0.0,0.0,16.798297350153536,0.0,129.49988082968767,0,39.380909295966944,0.20269634815471005,18.528765486336916,0,0,118.42305376330657,574.2974817614017,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3562.287801918079,0.0,6060.3585420733,0.0,3615.459057162685,0.0,0.0,0.0,0.0,0.0,3247.7822819959374,0.0,5513.168730931737,0.0,3254.1104774231935,0.0,0.0,0,0,0,0,0,0,0,0,0.062389645266119814,0.0019739648870498393,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.06407050535940723,-0.06407050535940723,-0.4727186476167893,-0.4727186476167893,-0.6127853124822866,-0.6127853124822866,-0.27216467026136965,-0.27216467026136965,-0.10216334125906852,-0.10216334125906852,-0.17275310782067127,-0.5716407208090158,-0.6594862639504105,-0.5802607227904452,-0.32397289789694106,-0.12813246377869983,-0.5665120324403549,-0.6448400597725352,-0.565216864179996,-0.3477789853913479,5.08499180193094,5.08499180193094,9.666355383827991,9.666355383827991,12.87653210240083,12.87653210240083,6.538248593060899,6.538248593060899,5.216159041534951,5.216159041534951,5.618592433209912,11.845348599168446,14.135977090056102,12.055303589632885,7.182326192155358,5.340107666721806,11.721960088945693,13.730813344700934,11.69098073941052,7.516400215525238,207.8425245127541,207.8425245127541,0.0,230.93613834750454,0.0,207.8425245127541,230.93613834750454,0,0
+2017/03/07 14:00:00,205.24739215832807,0,1063.6789165963203,0,0,0,0.0,0.0,16.798297266846703,0.0,129.2730206906943,0,39.380909295966944,0.09958006360196914,16.263609638763803,0,0,68.48302346887175,551.5664867206469,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3132.3318323174904,0.0,5552.641647983724,0.0,3837.6457952051564,0.0,0.0,0.0,0.0,0.0,2760.2557251092726,0.0,4948.810224633005,0.0,3438.0964192213446,0.0,0.0,0,0,0,0,0,0,0,0,0.0566310533936528,0.0017917670542746404,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.10506823574057844,-0.10506823574057844,-0.3769496082098011,-0.3769496082098011,-0.585456767123486,-0.585456767123486,-0.2505623585614802,-0.2505623585614802,-0.12025253255805791,-0.12025253255805791,-0.13373472385338275,-0.4839926729869422,-0.6458239692142395,-0.5721001858057996,-0.3234225024541187,-0.14021832192015674,-0.4579614603481137,-0.6310607815876988,-0.5579400764885293,-0.34433842958899397,5.228632363550872,5.228632363550872,7.958616613223015,7.958616613223015,12.183419644667566,12.183419644667566,6.303143072265016,6.303143072265016,5.299536008903431,5.299536008903431,5.370522412011724,9.893331144336756,13.75774025400439,11.856458324311888,7.174886871573207,5.40735169723699,9.377533836764613,13.358123407651604,11.518278647569431,7.466630413376976,205.24739215832807,205.24739215832807,0.0,228.05265795369786,0.0,205.24739215832807,228.05265795369786,0,0
+2017/03/07 15:00:00,189.4518495898168,0,1059.913472658036,0,0,0,0.0,0.0,16.903073467207488,0.0,115.5196477718057,0,39.380909295966944,0.15760406609775066,14.058639786284585,0,0,121.04004405433689,530.7343747094417,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2738.7975301520423,0.0,4097.544134478563,0.0,4335.251005076892,0.0,0.0,0.0,0.0,0.0,2269.0633302605293,0.0,3659.5634220033644,0.0,4048.456309665795,0.0,0.0,0,0,0,0,0,0,0,0,0.056430578369289115,0.001785424164246393,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2327298365419431,-0.2327298365419431,-0.37726234825270194,-0.37726234825270194,-0.5977231850301808,-0.5977231850301808,-0.2609033530448581,-0.2609033530448581,-0.18555089873863245,-0.18555089873863245,-0.16163108556645892,-0.4111712659940745,-0.645489685584536,-0.5821487818787826,-0.34132535415828685,-0.12216527699489554,-0.37390987125564906,-0.6332077887187245,-0.5710798697712776,-0.36202594576789454,6.123849084257927,6.123849084257927,7.963554130370213,7.963554130370213,12.490513881998766,12.490513881998766,6.413237049585149,6.413237049585149,5.713781134079525,5.713781134079525,5.541417737001979,8.52369543447827,13.74858711764908,12.10172093229636,7.423457621977491,5.309146998218367,7.910842850120829,13.415652140437786,11.831799802584001,7.727851094682379,189.4518495898168,189.4518495898168,0.0,210.50205509979642,0.0,189.4518495898168,210.50205509979642,0,0
+2017/03/07 16:00:00,182.95244950176524,0,1140.5931283077055,0,0,0,0.0,0.0,17.037160639564938,0.0,108.75639138185811,0,39.380909295966944,0.31078594878897325,14.035227033131967,0,0,191.99282743146296,540.4612469819851,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2615.355489024115,0.0,3810.5524164303242,0.0,5052.540803082095,0.0,0.0,0.0,0.0,0.0,1967.0442878827116,0.0,3318.0240399897866,0.0,4718.27910659091,0.0,1989.1590846511203,0,0,0,0,0,0,0,0,0.060726022996036334,0.0019213290380647797,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4254203556767704,-0.4254203556767704,-0.35513761690294265,-0.35513761690294265,-0.6523741121319989,-0.6523741121319989,-0.29022271991329485,-0.29022271991329485,-0.2286120203812714,-0.2286120203812714,-0.19068204476078532,-0.36938232830177015,-0.6556414274623799,-0.6032134209153376,-0.36025549822190134,-0.15165960773276024,-0.32874116666945213,-0.6487947595395663,-0.5993339996156938,-0.38481064846956303,8.773762668115182,8.773762668115182,7.624537166983956,7.624537166983956,13.938069524784524,13.938069524784524,6.749869096283248,6.749869096283248,6.084344419061821,6.084344419061821,5.75386682968788,7.840416734240023,14.028715855206414,12.63007943208575,7.70110431361654,5.476610243041463,7.247313351159534,13.839297355252086,12.531326282210117,8.083992459856546,182.95244950176524,182.95244950176524,0.0,203.28049944640583,0.0,182.95244950176524,203.28049944640583,0,0
+2017/03/07 17:00:00,206.58424416900337,0,1140.0474845609856,0,0,0,0.0,0.0,17.74957958041939,0.0,131.64086955684016,0,39.380909295966944,0.28101209048541403,14.099898442837144,0,0,138.1834782083565,540.4894236895553,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1911.4102221207027,0.0,3840.4781022195803,0.0,4950.0852342419375,0.0,0.0,0.0,0.0,0.0,1279.2550705717108,0.0,3508.7860045338425,0.0,4700.8840475630805,0.0,674.6268444497231,0,0,0,0,0,0,0,0,0.060696972518799,0.0019204099012148433,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5455323067211958,-0.5455323067211958,-0.2787404512026173,-0.2787404512026173,-0.63358415138757,-0.63358415138757,-0.2732037827336239,-0.2732037827336239,-0.18559957130860794,-0.18559957130860794,-0.27400556198721693,-0.33869715457894867,-0.6589194578457797,-0.6143175427068929,-0.36276904212439465,-0.2321024452312836,-0.2981971605891068,-0.6560789363630564,-0.6170857953442135,-0.38881444755128075,11.229096412198743,11.229096412198743,6.613717106426776,6.613717106426776,13.425757321342857,13.425757321342857,6.5500529568073915,6.5500529568073915,5.714156208588207,5.714156208588207,6.559192307689216,7.386114482854495,14.12012437542424,12.916352470036088,7.739117091186088,6.117784210853841,6.847702291592157,14.04088894992941,12.98855353326121,8.148863354337507,206.58424416900337,206.58424416900337,0.0,229.5380490766704,0.0,206.58424416900337,229.5380490766704,0,0
+2017/03/07 18:00:00,215.29258991779102,0,1123.5338049078123,0,0,0,0.0,0.0,19.911081059874533,0.0,133.89528835348938,0,39.380909295966944,0.1673295564702843,18.50600644953558,0,0,81.18679960142248,580.9724226433162,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,529.3209943847601,0.0,1885.3013573454346,0.0,5036.582171883812,0.0,4718.356462610125,0.0,0.0,0.0,131.13539058873624,0.0,1283.8832234615252,0.0,4732.653017084897,0.0,4455.4126124461145,0.0,0.0,0,0,0,0,0,0,0,0,0.05981777198227144,0.00189259260909244,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6101559717004755,-0.6101559717004755,-0.4578496789449941,-0.4578496789449941,-0.5911605910443593,-0.5911605910443593,-0.26638869726420483,-0.26638869726420483,-0.14165545282463257,-0.14165545282463257,-0.3632824241350555,-0.3663308421494324,-0.65351983412213,-0.6142645608554774,-0.34991983382994196,-0.35176965364516266,-0.3377555271107757,-0.6556304518731579,-0.6226682863074551,-0.37666882532943213,12.808436917963775,12.808436917963775,9.375381890436557,9.375381890436557,12.325404706770186,12.325404706770186,6.4734625434317365,6.4734625434317365,5.41575196573001,5.41575196573001,7.746914153743319,7.793443725956976,13.969803034618863,12.914973850448774,7.547622952429592,7.574758224532118,7.3728066285060265,14.02841058090877,13.135166575578154,7.95418718877977,215.29258991779102,215.29258991779102,0.0,239.21398879754557,0.0,215.29258991779102,239.21398879754557,0,0
+2017/03/07 19:00:00,218.68444648956395,0,1159.6200662571957,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.23227758219695216,25.775698210846308,0,0,134.08042856197713,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2897.0076782301007,0.0,2856.023332526935,0.0,7054.395119840346,0.0,4646.7926232183245,0.0,0.0,0.0,2533.189649106992,0.0,2402.352237230182,0.0,6718.173500514523,0.0,4380.976223093553,0.0,0.0,0,0,0,0,0,0,0,0,0.061739031265846976,0.0019533799135965754,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5597213517917576,-0.5597213517917576,-0.5429703593358792,-0.5429703593358792,-0.637069327509106,-0.637069327509106,-0.3051489740066865,-0.3051489740066865,-0.11679663706893491,-0.11679663706893491,-0.3873022423511567,-0.4359285845415954,-0.6401089612111459,-0.5964284922398149,-0.3198138560726716,-0.39505853889594333,-0.42697161032125136,-0.642843531018277,-0.6075541891987079,-0.3468176108681882,11.560341908551251,11.560341908551251,11.170217431414983,11.170217431414983,13.519624748443917,13.519624748443917,6.935182423862514,6.935182423862514,5.282556650492509,5.282556650492509,8.124281621858486,8.963759104125785,13.601922363874635,12.457792532455386,7.12642936058468,8.251399373007615,8.80151228169025,13.676302829352991,12.741350787645104,7.502442666708745,218.68444648956395,218.68444648956395,0.0,242.9827183217377,0.0,218.68444648956395,242.9827183217377,0,0
+2017/03/07 20:00:00,210.80323399588514,0,1175.425879862847,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.273556149643409,27.0977424753112,0,0,185.3765946801727,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3663.5436752061014,0.0,3529.5180774781966,0.0,7420.553161008996,0.0,4950.466494214496,0.0,0.0,0.0,3467.3155111071283,0.0,3203.2162534996983,0.0,7142.750160919241,0.0,4726.848801824363,0.0,0.0,0,0,0,0,0,0,0,0,0.06258054448968337,0.0019800048054156544,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5371223018355614,-0.5371223018355614,-0.5846065369416837,-0.5846065369416837,-0.6539354436036382,-0.6539354436036382,-0.35418975188332047,-0.35418975188332047,-0.12970161426231158,-0.12970161426231158,-0.39949827686731354,-0.4445056765600534,-0.6318726358861739,-0.5867538097321229,-0.3032526491043696,-0.4152670706544895,-0.44386749052403596,-0.6374231656767476,-0.6012055594633569,-0.33118133802859356,11.036882194888392,11.036882194888392,12.162375810370165,12.162375810370165,13.981328395648688,13.981328395648688,7.610478793536814,7.610478793536814,5.348495014459914,5.348495014459914,8.325319605687781,9.122354577730434,13.379853409109458,12.215582851649913,6.911116772075147,8.594684254733295,9.110445268761893,13.529184252790344,12.578886487283796,7.280943729567085,210.80323399588514,210.80323399588514,0.0,234.22581555098347,0.0,210.80323399588514,234.22581555098347,0,0
+2017/03/07 21:00:00,212.44373203290536,0,1084.726635425006,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.1643635649389059,24.37563930180913,0,0,130.1677027548759,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3889.1264473155943,0.0,3693.2854306381796,0.0,7324.665886853245,0.0,4916.91113874248,0.0,0.0,0.0,3818.8190677282746,0.0,3470.6482884388206,0.0,7123.3548684076495,0.0,4741.936164368128,0.0,0.0,0,0,0,0,0,0,0,0,0.05775164953427769,0.001827221935044067,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5783505002310467,-0.5783505002310467,-0.5899094414384013,-0.5899094414384013,-0.6841903733090632,-0.6841903733090632,-0.4006513604923867,-0.4006513604923867,-0.16846951688832798,-0.16846951688832798,-0.4106050942723021,-0.45813859470311963,-0.6284778948146101,-0.5848799225974971,-0.29743807382371945,-0.4309971479044248,-0.46410684026330445,-0.6356130070634101,-0.6014300132788671,-0.32575042037468105,12.008498777840515,12.008498777840515,12.294139006891712,12.294139006891712,14.84043064883717,14.84043064883717,8.344656010988686,8.344656010988686,5.588258196972404,5.588258196972404,8.513939041420002,9.38094501922086,13.289180351634187,12.169138888564447,6.838273839252864,8.874004818978761,9.496668737018751,13.480337094060417,12.584600532047432,7.206439477965759,212.44373203290536,212.44373203290536,0.0,236.04859114767262,0.0,212.44373203290536,236.04859114767262,0,0
+2017/03/07 22:00:00,199.37465386789603,0,1235.017994797416,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.42735333625595046,27.051363081020554,0,0,315.9494146398296,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,848.0044760103453,0.0,0.0,0.0,0.0,0.0,3215.1182637154716,0.0,5042.420464845152,0.0,6360.916466904002,0.0,6095.11082437649,0.0,0.0,0.0,3265.6479856525148,0.0,4915.424895532342,0.0,6260.928055087486,0.0,5965.46568671408,0.0,2062.278486638451,0,0,0,0,0,0,0,0,0.06575327282907663,0.002080387718499971,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6394678431571323,-0.6394678431571323,-0.6428995816879312,-0.6428995816879312,-0.724125670135245,-0.724125670135245,-0.49538992418290906,-0.49538992418290906,-0.24613041068387065,-0.24613041068387065,-0.43347055361385983,-0.48596029778840716,-0.6394268273455903,-0.6032102156110302,-0.3104856662900372,-0.46260414666687444,-0.5005903795114187,-0.6508776194317202,-0.6254038505825354,-0.3428928727497495,13.584530843607425,13.584530843607425,13.677830802629842,13.677830802629842,16.034989583138668,16.034989583138668,10.128363000108422,10.128363000108422,6.257335459519538,6.257335459519538,8.918891338052902,9.933506625310685,13.583418820115725,12.629997569395442,7.003725241549148,9.467387158714786,10.23746963662353,13.89670627672092,13.207504441949794,7.445869636145872,199.37465386789603,199.37465386789603,0.0,221.52739318655114,0.0,199.37465386789603,221.52739318655114,0,0
+2017/03/07 23:00:00,140.72040874530336,0,1111.773818879041,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.6137240620527015,20.92175187547441,0,0,352.4118250279035,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,778.3611308483319,0.0,529.5534536634176,0.0,2713.3912115181406,0.0,449.0992147821876,0.0,0.0,0.0,3355.211638758058,0.0,5980.965639181057,0.0,6260.616513211287,0.0,6860.326790253368,0.0,5597.3459499006585,0.0,3436.01592793195,0.0,5880.282177031142,0.0,6199.23088163852,0.0,6801.743175849417,0.0,10079.416754987731,0,0,0,0,0,0,0,0,0.05919166161539961,0.0018727829135195427,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7420170662446387,-0.7420170662446387,-0.7595849254724073,-0.7595849254724073,-0.8070310747987334,-0.8070310747987334,-0.6778053004289362,-0.6778053004289362,-0.47622532980613613,-0.47622532980613613,-0.4651771537620553,-0.5222717294936037,-0.6596896446293197,-0.6336433748437112,-0.3391670855990749,-0.5006561380155382,-0.5463873068737375,-0.675312672297574,-0.6599193273950879,-0.3778892721175967,16.59244401872624,16.59244401872624,17.153179202573256,17.153179202573256,18.733352292281324,18.733352292281324,14.65582490468087,14.65582490468087,9.736366740252521,9.736366740252521,9.517584243104864,10.704946951110642,14.141668735323236,13.427348006016246,7.392770021486868,10.238856744978392,11.248809431103965,14.584236515656812,14.148098604058788,7.97346452736781,140.72040874530336,140.72040874530336,0.0,156.35600971700373,0.0,140.72040874530336,156.35600971700373,0,0
+2017/03/08 00:00:00,91.44868092509985,0,995.04134322433,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.7419993610697281,11.763725302737548,0,0,423.2529847295054,518.5528297260084,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2686.421076310164,0.0,1740.6163525192449,0.0,4285.641398635936,0.0,1729.9481081740023,0.0,0.0,0.0,3348.5137328740866,0.0,6893.774889989014,0.0,6065.319778431982,0.0,7694.935899409271,0.0,13333.716197341204,0.0,3459.058527986249,0.0,6838.132936072913,0.0,6092.8115165972695,0.0,7696.518021583966,0.0,17853.90830008947,0,0,0,0,0,0,0,0,0.052976738147019864,0.0016761470671390268,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8336953849407929,-0.8336953849407929,-0.8476261262753347,-0.8476261262753347,-0.8921119636514993,-0.8921119636514993,-0.8000160464719575,-0.8000160464719575,-0.6046618667112201,-0.6046618667112201,-0.4971532489756369,-0.5601013899151038,-0.682099496530086,-0.6647250409414187,-0.37229979195034696,-0.540106579321937,-0.592555041404009,-0.7012538026283903,-0.6945384658417632,-0.4160628058292915,19.663194304941968,19.663194304941968,20.160840222662188,20.160840222662188,21.80385834985482,21.80385834985482,18.49370087258376,18.49370087258376,12.667118013247432,12.667118013247432,10.165227000177637,11.569333986050069,14.779784868874387,14.283156619746777,7.885697847876472,11.104738343204602,12.360331484111612,15.342417694264995,15.143358903890231,8.60855939870666,91.44868092509985,91.44868092509985,0.0,101.60964547233317,0.0,91.44868092509985,101.60964547233317,0,0
+2017/03/08 01:00:00,39.462288184975314,0,597.0661064521344,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.06643787209993883,0.047491006526996,9.551038309925197,0,0,27.711834290316343,516.1187433930019,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,453.42684458344974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03178824175835712,0.0010057578110020712,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7886849588382134,-0.7886849588382134,-0.8379656818585821,-0.8379656818585821,-0.9009694759578032,-0.9009694759578032,-0.7936867858133134,-0.7936867858133134,-0.2794939752241715,-0.2794939752241715,-0.5629360547238821,-0.6693528772663514,-0.9653747750156068,-0.925398414367936,-0.1616788614370459,-0.6405998295503196,-0.7220449902622247,-0.9817594963043628,-0.9503354179853121,-0.27957087208445836,18.111001805321322,18.111001805321322,19.814880239268078,19.814880239268078,22.14069128085447,22.14069128085447,18.27926386702336,18.27926386702336,6.622481533251943,6.622481533251943,11.636602546543202,14.414161077268076,24.684678893522133,23.086137466969475,5.541738219548307,13.61525013051741,15.971053696429223,25.357959421475528,24.07589175935351,6.623377286494204,39.462288184975314,39.462288184975314,0.0,43.84698687219479,0.0,39.462288184975314,43.84698687219479,0,0
+2017/03/08 02:00:00,23.76639748447574,0,35.84344069058922,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5693020607979488,0,0,0.0,0.3530881780450781,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0019083313318424458,6.0378273122826524e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8337541651416054,-0.8337541651416054,-0.8948064692768414,-0.8948064692768414,-1.0197001962177914,-1.0197001962177914,-0.8547056760599187,-0.8547056760599187,-0.12039800706171758,-0.12039800706171758,-0.6316260503422992,-0.7411119784165983,-1.104698091053424,-1.0165767030217057,-0.09420611578515355,-0.7381359027889887,-0.8232959624006395,-1.1715287561400836,-1.0969569978105602,-0.2722157847381238,19.66527706891017,19.66527706891017,21.90598675254718,21.90598675254718,26.956461490764724,26.956461490764724,20.416840761639676,20.416840761639676,5.300261633847413,5.300261633847413,13.37325030445966,16.563913450752537,30.72905347464686,26.82281253175536,5.1837855174265,16.470348139759338,19.29698931054598,33.86797590109897,30.37495650484466,6.538828191664265,23.76639748447574,23.76639748447574,0.0,26.407108316084155,0.0,23.76639748447574,26.407108316084155,0,0
+2017/03/08 03:00:00,28.344222913214075,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248598267411813,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8310493671413117,-0.8310493671413117,-0.8966944550684326,-0.8966944550684326,-1.0284822408948486,-1.0284822408948486,-0.859341754528785,-0.859341754528785,-0.0398142267032498,-0.0398142267032498,-0.6554900521887767,-0.7670872443057035,-1.146822128279304,-1.0492027358706872,-0.07272739268983378,-0.793289390810086,-0.882099605063312,-1.2536163122602921,-1.1675184894125354,-0.2622065520682241,19.569587534977174,19.569587534977174,21.977722338822517,21.977722338822517,27.33417451186334,27.33417451186334,20.585611663475277,20.585611663475277,5.032816201242326,5.032816201242326,14.024505974091625,17.396662999700894,32.69086553553039,28.23660396924393,5.109516549602702,18.265856648264162,21.426963860298997,37.90760416184501,33.67562711132861,6.427430602701975,28.344222913214075,28.344222913214075,0.0,31.493581014682306,0.0,28.344222913214075,31.493581014682306,0,0
+2017/03/08 04:00:00,23.72204647409364,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.524951050415851,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9021191240224828,-0.9021191240224828,-0.970108250429025,-0.970108250429025,-1.0978716060259266,-1.0978716060259266,-0.9365982930618779,-0.9365982930618779,0.0271258087043638,0.0271258087043638,-0.7548155859125996,-0.8674830899960825,-1.2530886806923913,-1.1528794800413429,-0.04356446650811999,-0.8993795916396421,-0.9896311567190466,-1.3733479923737162,-1.284568701210736,-0.2758213505495416,22.184643953865546,22.184643953865546,24.878117239913735,24.878117239913735,30.41668669652823,30.41668669652823,23.52760510803492,23.52760510803492,5.015232127832377,5.015232127832377,16.999643553244937,20.884141018435912,37.88105224984649,32.97769456045299,5.039290053930003,22.079996201188877,25.685105543652057,44.09676531251548,39.47732376204778,6.5799903564861495,23.72204647409364,23.72204647409364,0.0,26.3578294156596,0.0,23.72204647409364,26.3578294156596,0,0
+2017/03/08 05:00:00,43.092683725981544,0,373.95374065225235,0,0,0,0.0,0.017938360465653003,4.633261998087618,9.319298099999997,25.555573451546493,0,1.786365459214419,1.2552138054795434,0.5250325511878146,0,0,285.227859370892,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,161.1064459000981,0.11872185154418896,358.93923775630947,1.1194803757059204,1335.8051548516974,0.11112423751737052,356.06071982049326,0.0,0.0,1.4193128029562967,1565.6324043632426,1.1458985877660033,1337.2971081246744,2.963277776433642,4613.728752945567,1.9469285013560274,2419.3635437516423,0.0,0.0,1.8251616239444957,2375.4417468242973,1.268311922348547,1720.0429798862094,4.302797825895471,5076.82158564681,1.7173449601850317,2762.381430135181,0.0,0.0,0,0,0,0,0,0,0,0,0.01990957414235464,0.0006299250477461116,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8452752054936357,-0.8452752054936357,-0.8763622943046683,-0.8763622943046683,-0.9215108793887273,-0.9215108793887273,-0.8447183255157769,-0.8447183255157769,0.16133796836590222,0.16133796836590222,-0.6241761479465862,-0.6858740432159735,-0.8355892758226315,-0.8067409886579007,-0.012450002022118706,-0.7026419136471193,-0.7580689339948008,-0.9000668983924449,-0.8834699714643776,-0.2609707905726824,20.0762907686736,20.0762907686736,21.212845923641922,21.212845923641922,22.93407452843583,22.93407452843583,20.056296643233225,20.056296643233225,5.539453576949413,5.539453576949413,13.174999536303304,14.889402820469996,19.730373414225525,18.723400984887917,5.003208652636275,15.383807467647188,17.104270597821596,22.106222072954907,21.478306120337876,6.413969779254529,43.092683725981544,43.092683725981544,0.0,47.88075969553505,0.0,43.092683725981544,47.88075969553505,0,0
+2017/03/08 06:00:00,75.88161925991524,0,308.88085481336253,0,0,0,0.08939491201336139,0.01188468389886589,5.555297838843742,9.319298099999997,57.911447091112116,0,1.448690772525686,1.020578099333858,0.5250277621875863,0,0,95.93873973809777,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,283.6490939366257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,139.82151974214355,0.0,0.0,0.0,0.0,0.2632872561434283,964.2303836382875,0.0,872.2504574107543,2.8964880318975474,3577.174202891406,1.4680624173915362,1779.4453144339725,0.0,0.0,1.558987325034309,1872.8502693334854,0.9304977926988158,1398.9174336104707,3.183522426348418,4442.702387472309,1.5838386493518328,2365.3281322880766,0.0,0.0,0,0,0,0,0,0,0,0,0.016445045500371788,0.0005203097764894498,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6598365488760157,-0.6598365488760157,-0.7240005405477751,-0.7240005405477751,-0.7973744012907383,-0.7973744012907383,-0.694629135099311,-0.694629135099311,0.486602766320209,0.486602766320209,-0.6015987207549068,-0.655126205419191,-0.7612049606614517,-0.7441837960598194,0.09846085525086966,-0.6558561050093323,-0.7023805696410017,-0.7827383941014882,-0.7814387131083924,-0.13255515920181554,14.14578099212821,14.14578099212821,16.0311392906506,16.0311392906506,18.403994961722958,18.403994961722958,15.146033589675213,15.146033589675213,9.94666090387642,9.94666090387642,12.588896850846538,14.014391133623988,17.20555303584986,16.660887359701704,5.200768750669781,14.03468793168642,15.37600853084868,17.912340617218504,17.86912135916525,5.364010057299112,75.88161925991524,75.88161925991524,0.0,84.31291028879471,0.0,75.88161925991524,84.31291028879471,0,0
+2017/03/08 07:00:00,101.81864962202265,0,810.1765810258718,0,0,0,0.0,0.00983313746972158,11.110595677687485,13.929299233552332,73.80580873715317,0,1.5065915656431133,0.9314643569394347,0.5250569135773875,0,0,77.4655051690403,502.0237845252947,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.89516685298706,0.0,0.0,0.0,0.0,0.0,1000.8628906222364,0.0,867.8310912012057,2.1126335239826703,3151.9264658274,1.158788004193866,1609.1866479681698,0.0,0.0,1.1716682956168825,1583.3675524619514,0.0,1176.7747757998231,3.705204512711285,3516.5596317574536,1.684843133216873,1899.5184597485704,0.0,0.0,0,0,0,0,0,0,0,0,0.04313440127701216,0.0013647423892467214,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5466899392665581,-0.5466899392665581,-0.6169764812359197,-0.6169764812359197,-0.7126348249586921,-0.7126348249586921,-0.5901586784061756,-0.5901586784061756,0.7374257210219355,0.7374257210219355,-0.5879323876650298,-0.6389488388906122,-0.7342940807755812,-0.7214895209750877,0.16091391994085683,-0.6362710481689418,-0.6807152054648302,-0.7508163140204593,-0.7525951066050928,-0.03270488338069001,11.255794563092763,11.255794563092763,12.985696115546233,12.985696115546233,15.684222655756571,15.684222655756571,12.300361914815312,12.300361914815312,16.448076807478188,16.448076807478188,12.244871758334895,13.570464944160776,16.350126739131554,15.954016545442244,5.536618392743762,13.498077901037348,14.739737604124585,16.87164836723204,16.92849340710572,5.022142512687253,101.81864962202265,101.81864962202265,0.0,113.1318329133585,0.0,101.81864962202265,113.1318329133585,0,0
+2017/03/08 08:00:00,148.1931843924826,0,1027.6409392156907,0,0,0,0.0,0.0,8.41979117496698,0.0,69.33401494192633,0,39.380909295966944,0.5299602685723815,27.096533508595673,0,0,176.06211401774755,585.4011813538621,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1065.4558773188332,0.0,1312.716324512649,0.0,3079.7880826870014,0.0,316.1309768591808,0.0,0.0,0.0,4101.0427266851775,0.0,6427.229394895466,0.0,7089.480492781822,0.0,6116.882257198167,0.0,3742.3146551483205,0.0,4277.91266448785,0.0,6610.144412842005,0.0,7242.799678549718,0.0,6046.859148540624,0.0,6741.261604400199,0,0,0,0,0,0,0,0,0.05471236478433799,0.0017310610841122065,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5944860044584847,-0.5944860044584847,-0.7025543086344225,-0.7025543086344225,-0.7627139875714918,-0.7627139875714918,-0.5326825231185705,-0.5326825231185705,0.1539067685427854,0.1539067685427854,-0.5308271515731149,-0.6405371656392442,-0.7192920215350939,-0.6312733013272811,-0.2031796225394901,-0.5688136804036625,-0.678433120879337,-0.7301212519697359,-0.6429120863135662,-0.29420389720116397,12.408835625841519,12.408835625841519,15.381192860940473,15.381192860940473,17.254438994397134,17.254438994397134,10.936644926721016,10.936644926721016,5.490853602454408,5.490853602454408,10.89500896848287,13.613548135220668,15.8867458625798,13.3638089243818,5.856104883753716,11.777193141042787,14.673898320373098,16.220265548365646,13.678171704456219,6.798375725866279,148.1931843924826,148.1931843924826,0.0,164.6590937694251,0.0,148.1931843924826,164.6590937694251,0,0
+2017/03/08 09:00:00,165.0170283251225,0,1047.5129468447929,0,0,0,0.0,0.0,11.63813426782361,0.0,83.2008179303116,0,39.380909295966944,0.26744915325489166,27.097742475311204,0,0,128.44436668720667,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,142.94826037464838,0.0,1240.5464608205564,0.0,0.0,0.0,0.0,0.0,1594.683934745847,0.0,4948.3157391503955,0.0,5193.13469249115,0.0,4297.964229294714,0.0,136.5970205506343,0.0,1826.324912254087,0.0,5123.118314074469,0.0,5321.308484692043,0.0,4079.6796259065823,0.0,98.26335803308491,0,0,0,0,0,0,0,0,0.055770365189839924,0.0017645354794551692,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49077347250545605,-0.49077347250545605,-0.7255277879917857,-0.7255277879917857,-0.7764903287790703,-0.7764903287790703,-0.32395407017854116,-0.32395407017854116,-0.3223492069075389,-0.3223492069075389,-0.4481059877829837,-0.6268247890634356,-0.696237094396587,-0.5646370913867385,-0.31594214848440005,-0.4625572769523763,-0.6594568469967207,-0.7031667060006541,-0.5615016479360113,-0.3674372696319731,10.032487676254775,10.032487676254775,16.078179434072425,16.078179434072425,17.70522673478966,17.70522673478966,7.18207149854112,7.18207149854112,7.160416806535025,7.160416806535025,9.18986871665102,13.245207150005342,15.193526360887475,11.67713662980485,7.07505306792703,9.466475416705947,14.135153999615966,15.399477040408712,11.60251952684797,7.810429639664193,165.0170283251225,165.0170283251225,0.0,183.35225369458055,0.0,165.0170283251225,183.35225369458055,0,0
+2017/03/08 10:00:00,181.74125701670272,0,1048.5169233386118,0,0,0,0.0,0.0,11.393746067737203,0.0,106.27511244621549,0,39.380909295966944,0.12198804052873849,21.137525963800062,0,0,76.2128144122093,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3654.1905021033112,0.0,3789.057371651846,0.0,2912.029391587315,0.0,0.0,0.0,0.0,0.0,3663.1615747482974,0.0,3660.205058654411,0.0,2692.230623205932,0.0,0.0,0,0,0,0,0,0,0,0,0.05582381764202292,0.0017662266777828065,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4187707979348552,-0.4187707979348552,-0.6811159011064537,-0.6811159011064537,-0.7206847165366856,-0.7206847165366856,-0.11761767435796641,-0.11761767435796641,-0.3312614410995977,-0.3312614410995977,-0.33195724471720967,-0.6122034407812704,-0.6772449580429466,-0.535225595826581,-0.337362396793912,-0.3124198488778369,-0.6372770599688943,-0.6766369360802551,-0.5194156875673196,-0.3758555570236057,8.655981696434111,8.655981696434111,14.751321125463363,14.751321125463363,15.929355440449413,15.929355440449413,5.286545588797523,5.286545588797523,7.282051991012338,7.282051991012338,7.291690197269304,12.861436822232989,14.639708420834808,10.993955638973858,7.367261729847627,7.028864887536287,13.525236315045547,14.622235953452133,10.642204238117927,7.941376646494376,181.74125701670272,181.74125701670272,0.0,201.93473001855858,0.0,181.74125701670272,201.93473001855858,0,0
+2017/03/08 11:00:00,212.2407757094263,0,1102.2724554426845,0,0,0,0.0,0.0,16.903073633821148,0.0,133.89528835348938,0,39.380909295966944,0.11379382285087625,18.515735400843635,0,0,78.62943835639918,562.2684344232115,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3379.106439958589,0.0,2475.414915635029,0.0,2748.480396376649,0.0,0.0,0.0,0.0,0.0,3311.411892087779,0.0,2240.3064530431743,0.0,2496.707513834176,0.0,0.0,0,0,0,0,0,0,0,0,0.05868580198832476,0.0018567778675321414,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3024490417145573,-0.3024490417145573,-0.5597416280193205,-0.5597416280193205,-0.6572340343696138,-0.6572340343696138,-0.006294972813631435,-0.006294972813631435,-0.29016161900304216,-0.29016161900304216,-0.1584597550659911,-0.608431643569041,-0.6654312035751112,-0.5515851750523402,-0.36364479845724895,-0.14967616362169317,-0.6261026391797263,-0.6580803009798677,-0.5352548727171366,-0.38965134468372736,6.9009643318375,6.9009643318375,11.560821505965365,11.560821505965365,14.073067853502891,14.073067853502891,5.000820293606097,5.000820293606097,6.749129859079133,6.749129859079133,5.52035706234399,12.7639428350913,14.303086655381321,11.369334120876019,7.7524245248206824,5.464213164605027,13.226034917847372,14.09667997969106,10.9946170541929,8.162509579516382,212.2407757094263,212.2407757094263,0.0,235.82308412158477,0.0,212.2407757094263,235.82308412158477,0,0
+2017/03/08 12:00:00,228.01726788402186,0,1128.6197089134205,0,0,0,0.0,0.0,16.86091082671979,0.0,147.76209134187457,0,39.380909295966944,0.04626968874485044,20.535111528261297,0,0,32.5688426474672,581.4407548340635,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1762.5070092415983,0.0,1717.649657303563,0.0,1451.3650469410286,0.0,0.0,0.0,0.0,0.0,1707.0325220345608,0.0,1418.536667961947,0.0,1221.732468277551,0.0,0.0,0,0,0,0,0,0,0,0,0.060088549278693025,0.0019011598140038733,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.11565168199420485,-0.11565168199420485,-0.5017954347377398,-0.5017954347377398,-0.5810855308113148,-0.5810855308113148,0.12297005873130573,0.12297005873130573,-0.19389148634952838,-0.19389148634952838,-0.04005724168403582,-0.5758182923690494,-0.6332684551415945,-0.5523749346450558,-0.35831298933449507,-0.045718440219093465,-0.5806356866189805,-0.6172108736995162,-0.5334659011560828,-0.37497001753176434,5.277040749761369,5.277040749761369,10.262918708175548,10.262918708175548,12.075562210256123,12.075562210256123,5.313236243937666,5.313236243937666,5.779498969066083,5.779498969066083,5.033218054691247,11.946697951224252,13.417280593207138,11.387749027050944,7.671911704463213,5.04327174196014,12.064509648926759,12.991823656884023,10.95426929026138,7.92745978360648,228.01726788402186,228.01726788402186,0.0,253.3525198711354,0.0,228.01726788402186,253.3525198711354,0,0
+2017/03/08 13:00:00,205.86134092981973,0,1066.965626374305,0,0,0,0.0,0.0,16.735683873587277,0.0,129.49988082968767,0,39.380909295966944,0.009364770820696238,18.51951455852996,0,0,6.882525632013094,580.963341822946,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,156.54341558618256,0.0,1180.7745392313307,0.0,235.93331987129704,0.0,0.0,0.0,0.0,0.0,45.538464923530746,0.0,836.3207642134346,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05680604025672056,0.001797303516646199,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.06767644909719614,-0.06767644909719614,-0.406793292901279,-0.406793292901279,-0.4890926756917122,-0.4890926756917122,0.2644908815365651,0.2644908815365651,-0.1575281815513494,-0.1575281815513494,0.01943161060986187,-0.49399138577582435,-0.5950330144400952,-0.5168893386899857,-0.2728172833430375,0.048161149652078614,-0.47969472875340924,-0.5711036232530895,-0.4909599014166292,-0.2945268245954683,5.094829855149712,5.094829855149712,8.448610625399482,8.448610625399482,9.997809104294745,9.997809104294745,6.452482443998846,6.452482443998846,5.514250162833491,5.514250162833491,5.0078163824233,10.099220714635408,12.422605462817472,10.586998560710086,6.545656991582959,5.048019730905537,9.8061555927099,11.832373352187503,10.036341633836912,6.802339627001416,205.86134092981973,205.86134092981973,0.0,228.73482325535525,0.0,205.86134092981973,228.73482325535525,0,0
+2017/03/08 14:00:00,203.976027811986,0,990.4236682034042,0,0,0,0.006714389085404904,0.0,16.735683873587277,0.0,129.2730206906943,0,39.380909295966944,0.006333578287003395,16.28538251606214,0,0,4.746135540529243,542.0481262560734,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,23.8065450503032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,831.2510797939603,0.0,338.69572557357213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,456.51923076294884,0.0,24.6427035722442,0.0,0.0,0,0,0,0,0,0,0,0,0.05273088970856311,0.0016683685939167527,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.0704800759406874,-0.0704800759406874,-0.3418957944715401,-0.3418957944715401,-0.4868670334020051,-0.4868670334020051,0.3226319900133675,0.3226319900133675,-0.1757082313464905,-0.1757082313464905,0.11885686401420564,-0.3625066210466512,-0.5759189721101324,-0.5040498595185194,-0.2660054492319226,0.060431378556855694,-0.30147455483956537,-0.5475709075269459,-0.4776669684176753,-0.23725579260587665,5.1028513985372825,5.1028513985372825,7.4316015604879055,7.4316015604879055,9.952076834882917,9.952076834882917,7.16422452232554,7.16422452232554,5.639965336566334,5.639965336566334,5.292619126305695,7.735135869663694,11.949149820756716,10.31069752000154,6.469213566267172,5.075609600081037,6.888689709323927,11.276151001952485,9.765303045890036,6.168090035657016,203.976027811986,203.976027811986,0.0,226.64003090220666,0.0,203.976027811986,226.64003090220666,0,0
+2017/03/08 15:00:00,189.17130479787525,0,959.6189302796834,0,0,0,0.0,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,0.014419607761078233,14.088669046300001,0,0,11.05193990787469,540.4279364775513,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,764.1027789055072,0.0,1151.214557010549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.0981370147832,0.0,820.6081044208634,0.0,778.9046903177139,0,0,0,0,0,0,0,0,0.051090822644229456,0.0016164780152222848,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2016417182539456,-0.2016417182539456,-0.43991657859669836,-0.43991657859669836,-0.4961697534291888,-0.4961697534291888,0.3250406141569924,0.3250406141569924,-0.23167187388806254,-0.23167187388806254,0.0636102855543301,-0.30743265572285783,-0.5716514151352856,-0.5096678733045154,-0.31384217294838807,0.05103208696888878,-0.20716411987925168,-0.5459152571236923,-0.48825879941732553,-0.3193111691691867,5.843171454359776,5.843171454359776,9.037106236000781,9.037106236000781,10.144649514770563,10.144649514770563,7.196794412100189,7.196794412100189,6.113631515114051,6.113631515114051,5.083774971202402,6.964365807670916,11.845607080653139,10.430717977338873,7.047452687120497,5.053916070202277,5.8900739118037535,11.237921860142464,9.980649650193996,7.1197229921518215,189.17130479787525,189.17130479787525,0.0,210.19033866430584,0.0,189.17130479787525,210.19033866430584,0,0
+2017/03/08 16:00:00,182.5560161838628,0,977.0082538973274,0,0,0,0.0,0.0,16.903073467207488,0.0,108.75639138185811,0,39.380909295966944,0.0365315452959479,14.04713529108002,0,0,28.43493320120448,540.4342668018655,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1008.7630967460942,0.0,1934.9646119719528,0.0,279.316101982929,0.0,0.0,0.0,0.0,0.0,592.3606377263624,0.0,1630.2627926948403,0.0,167.17003042308556,0,0,0,0,0,0,0,0,0.052016643114020766,0.0016457703295363793,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.36210890337983304,-0.36210890337983304,-0.3450322619446678,-0.3450322619446678,-0.45325353507911736,-0.45325353507911736,0.294665767498533,0.294665767498533,-0.26803592586998115,-0.26803592586998115,-0.04699923115348869,-0.26212791443949796,-0.5868917758105762,-0.5350555630760591,-0.35686560870808787,-0.01453151266442533,-0.17083800707938893,-0.5684123298836108,-0.5216624075434185,-0.3801931131643128,7.7291076389939946,7.7291076389939946,7.47662662837152,7.47662662837152,9.287365465458691,9.287365465458691,6.804046492752406,6.804046492752406,6.491795394361716,6.491795394361716,5.045730440694811,6.426572108773868,12.219008339257684,10.990115041168906,7.650264476415103,5.004371259656608,5.60493605090906,11.767545320394973,10.6915314916194,8.0100276627618,182.5560161838628,182.5560161838628,0.0,202.84001798206975,0.0,182.5560161838628,202.84001798206975,0,0
+2017/03/08 17:00:00,205.7758291062635,0,1023.8224602600177,0,0,0,0.0,0.0,17.250223812971733,0.0,131.64086955684016,0,39.380909295966944,0.027957372228437725,14.043893865801845,0,0,21.986112049815326,540.4617655471286,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1054.3827831444678,0.0,1938.4089105020669,0.0,30.394069359307757,0.0,0.0,0.0,0.0,0.0,707.012273966763,0.0,1691.9881781366566,0.0,28.606806870282917,0,0,0,0,0,0,0,0,0.054509066136365136,0.0017246288566011927,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46594535533155607,-0.46594535533155607,-0.26511079856814834,-0.26511079856814834,-0.4743873576041282,-0.4743873576041282,0.329549104459372,0.329549104459372,-0.21774598066574943,-0.21774598066574943,-0.1282713145581137,-0.2389539726912699,-0.5903832963159017,-0.543084596594852,-0.36730257644835645,-0.09862226479383866,-0.11712982233363878,-0.5777021070803545,-0.5353843174770722,-0.38583075831843683,9.532626457682923,9.532626457682923,6.45931886515784,6.45931886515784,9.699605270249066,9.699605270249066,7.258420353114687,7.258420353114687,5.983513544892887,5.983513544892887,5.34084571622725,6.184911475479993,12.305972447682947,11.172836787236065,7.808359036131364,5.201427826071921,5.284172025164693,11.992647657425621,10.997541878504421,8.100455614552203,205.7758291062635,205.7758291062635,0.0,228.63981011807056,0.0,205.7758291062635,228.63981011807056,0,0
+2017/03/08 18:00:00,214.81733748717915,0,1066.0591757183254,0,0,0,0.0,0.0,19.60710430792089,0.0,133.89528835348938,0,39.380909295966944,0.029365755265377668,18.472694572082215,0,0,23.721606399853368,580.9629866553983,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1582.30915011955,0.0,1772.877348882459,0.0,3.7080600038476725,0.0,0.0,0.0,0.0,0.0,1290.0949887561383,0.0,1558.9504085143817,0.0,3.823435389910702,0,0,0,0,0,0,0,0,0.056757780152382156,0.0017957766005849995,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5138183926211681,-0.5138183926211681,-0.3890658104762227,-0.3890658104762227,-0.5512977068430996,-0.5512977068430996,0.3523495270413374,0.3523495270413374,-0.16720995562373023,-0.16720995562373023,-0.18796805638654437,-0.2688465528591702,-0.5826019638538882,-0.5389710485538401,-0.3509159715317494,-0.1905318678291408,-0.16678609418523696,-0.5741273027143966,-0.5364682216691956,-0.3718356137716146,10.520264196875672,10.520264196875672,8.152958867792861,8.152958867792861,11.362637906973262,11.362637906973262,7.583294436585504,7.583294436585504,5.57948422066606,5.57948422066606,5.732527499106169,6.500859237042931,12.112885289280172,11.07887330551091,7.562217353492628,5.7526779869338185,5.576546522606961,11.905582737914528,11.022061343885227,7.878469194262664,214.81733748717915,214.81733748717915,0.0,238.68593054131014,0.0,214.81733748717915,238.68593054131014,0,0
+2017/03/08 19:00:00,218.23412234036073,0,1083.9593787061372,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.07141824200514216,25.48623340183488,0,0,58.41974101091852,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,349.95359231644125,0.0,3397.5555350254435,0.0,2123.1078168835147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3113.4551312009244,0.0,1917.0897511411995,0.0,0.0,0,0,0,0,0,0,0,0,0.05771080021825296,0.0018259294911593667,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5580915892267754,-0.5580915892267754,-0.4236377614519015,-0.4236377614519015,-0.6579993633123857,-0.6579993633123857,0.3043439661861428,0.3043439661861428,-0.13306971928926564,-0.13306971928926564,-0.22283989303785903,-0.35638871271221273,-0.5679139921420879,-0.524664404902164,-0.31765050443121556,-0.24997977936975604,-0.30193995490962156,-0.5619578421237937,-0.5261376819872787,-0.3393356382346473,11.521851134844184,11.521851134844184,8.742002225588848,8.742002225588848,14.094420353535611,14.094420353535611,6.924947747550505,6.924947747550505,5.366843817683318,5.366843817683318,6.030166013332945,7.643151484612417,11.755575807128778,10.757781998080091,7.097644103326758,6.297074536142105,6.89454687234236,11.613349505728905,10.790438164974887,7.3951594841447985,218.23412234036073,218.23412234036073,0.0,242.48235815595635,0.0,218.23412234036073,242.48235815595635,0,0
+2017/03/08 20:00:00,210.5885657660216,0,1039.2764699977042,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.058887919779895645,27.0977424753112,0,0,49.22718481502978,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,769.4828822584115,0.0,3532.7084795799387,0.0,2250.610762895886,0.0,0.0,0.0,0.0,0.0,389.64991267024334,0.0,3307.955976048299,0.0,2086.0165655657033,0.0,0.0,0,0,0,0,0,0,0,0,0.05533184906168761,0.0017506611348313862,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6096003408481351,-0.6096003408481351,-0.37894639967233307,-0.37894639967233307,-0.5852306349424535,-0.5852306349424535,0.25416503378496447,0.25416503378496447,-0.14537169261406438,-0.14537169261406438,-0.26088847065076415,-0.37730155833983764,-0.55705092020581,-0.5129514535319709,-0.30205546540753014,-0.2733640129985495,-0.35864007138694104,-0.554237850170646,-0.5178617986945707,-0.32491237820413255,12.794085482810715,12.794085482810715,7.990213558530456,7.990213558530456,12.177819641553626,12.177819641553626,6.340987927470167,6.340987927470167,5.437872547257314,5.437872547257314,6.413075373535435,7.964173470802763,11.497333478244542,10.501498684852379,6.896002016287667,6.551877229176341,7.676815943734184,11.43129393767687,10.608216028073088,7.195054180954813,210.5885657660216,210.5885657660216,0.0,233.98729529557954,0.0,210.5885657660216,233.98729529557954,0,0
+2017/03/08 21:00:00,212.35496340864967,0,1015.2546691819533,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.0706135531273273,24.380620689364992,0,0,60.69573651182292,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1090.4329858287085,0.0,3663.445076814831,0.0,2357.1191175661834,0.0,0.0,0.0,0.0,0.0,803.7996915862877,0.0,3421.5489599037937,0.0,2184.602627883337,0.0,0.0,0,0,0,0,0,0,0,0,0.05405291059314902,0.0017101964131804777,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.533932723270206,-0.533932723270206,-0.4309686897082475,-0.4309686897082475,-0.5844178945221744,-0.5844178945221744,0.1966151421548561,0.1966151421548561,-0.1816750174242463,-0.1816750174242463,-0.3008062533624577,-0.3878285508744876,-0.5514682614130682,-0.5069958178402241,-0.2931179220772093,-0.3160201138781124,-0.38278551936647104,-0.5502343632869563,-0.513890921766,-0.31597908759644466,10.964784447286092,10.964784447286092,8.873489897821727,8.873489897821727,12.15771102123972,12.15771102123972,5.801589108141016,5.801589108141016,5.684230919839848,5.684230919839848,6.8802950055319485,8.132825973931432,11.366610331062688,10.373463349192988,6.785077810656659,7.076081377965465,8.051441375084082,11.337899775756313,10.521835615352444,7.075540237369154,212.35496340864967,212.35496340864967,0.0,235.94995934294406,0.0,212.35496340864967,235.94995934294406,0,0
+2017/03/08 22:00:00,199.1218824553543,0,1030.4755209329694,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.12820252942356242,27.0977424753112,0,0,111.40694077538326,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2190.8884672975564,0.0,3128.903886131991,0.0,3284.0536035123932,0.0,0.0,0.0,0.0,0.0,2004.4711179380593,0.0,2932.0215356347676,0.0,3131.130816946463,0.0,0.0,0,0,0,0,0,0,0,0,0.05486328001455948,0.0017358359367998211,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5828099513596803,-0.5828099513596803,-0.5487054743779374,-0.5487054743779374,-0.6223582758951635,-0.6223582758951635,0.12210407651697856,0.12210407651697856,-0.26301425408965884,-0.26301425408965884,-0.32224624684489384,-0.41727270179057907,-0.5643111085411482,-0.5262365951023957,-0.3120133540206173,-0.35004527521374307,-0.4214277259328382,-0.567330013141669,-0.5381107360247679,-0.33693943896905737,12.118012145596921,12.118012145596921,11.302416872486859,11.302416872486859,13.126989302911227,13.126989302911227,5.308837128637791,5.308837128637791,6.4362634245964045,6.4362634245964045,7.1590312760508255,8.62970822102396,11.66935904870276,10.792634005950731,7.023568302837731,7.5494584698571146,8.702815323859127,11.74156299509555,11.059314362898903,7.361303458762407,199.1218824553543,199.1218824553543,0.0,221.24653606150477,0.0,199.1218824553543,221.24653606150477,0,0
+2017/03/08 23:00:00,140.2678367255142,0,915.5713382936302,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.21014580768369004,20.872758110054292,0,0,156.2093444424926,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2990.6230710439,0.0,3153.0312728275153,0.0,3931.653755923425,0.0,0.0,0.0,183.85506124195626,0.0,2912.565659839639,0.0,3077.718076327984,0.0,3854.2710435391796,0.0,0.0,0,0,0,0,0,0,0,0,0.04874569622054696,0.0015422798498649342,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6487449812737368,-0.6487449812737368,-0.6488984823584778,-0.6488984823584778,-0.7185489056708705,-0.7185489056708705,-0.07929951933957201,-0.07929951933957201,-0.4967017777865761,-0.4967017777865761,-0.3695036659696713,-0.4560761893013574,-0.5860357973810211,-0.5559799797222036,-0.339684945791849,-0.40321214633252067,-0.46919180724469134,-0.5942601754598655,-0.5736324999132932,-0.3678474148818554,13.837927640607703,13.837927640607703,13.842151770556228,13.842151770556228,15.864044363396559,15.864044363396559,5.130209954615367,5.130209954615367,10.155775768482783,10.155775768482783,7.842292748788523,9.341311730568904,12.197769034137039,11.47215166784072,7.400115235306686,8.387802064712389,9.596476265363535,12.403154638449635,11.893575420259992,7.816739458713485,140.2678367255142,140.2678367255142,0.0,155.853151917238,0.0,140.2678367255142,155.853151917238,0,0
+2017/03/09 00:00:00,91.1179351759767,0,780.0639827253419,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.34945195515418387,11.825526959529947,0,0,208.35741355571102,518.4710404008148,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1062.3020040558858,0.0,0.0,0.0,0.0,0.0,322.78267014442645,0.0,3714.7643410777955,0.0,3253.856372230901,0.0,4536.2432712873615,0.0,78.70744736698981,0.0,560.3166859858582,0.0,3652.3932044920284,0.0,3196.2094682182287,0.0,4445.845030669314,0.0,3587.0622968821576,0,0,0,0,0,0,0,0,0.041531184238889636,0.0013140177196949863,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.768562087479738,-0.768562087479738,-0.7759904115562406,-0.7759904115562406,-0.8336485196765399,-0.8336485196765399,-0.3205400165493782,-0.3205400165493782,-0.5973581340784939,-0.5973581340784939,-0.41261064909267864,-0.49506874323083183,-0.6111978622309439,-0.5895588801099398,-0.3702824491810511,-0.45155912627136796,-0.51544195633582,-0.6226353720277653,-0.6123121485858689,-0.4027918370938017,17.444810910953464,17.444810910953464,17.68872702923595,17.68872702923595,19.66153382756096,19.66153382756096,7.136136007431759,7.136136007431759,12.481280421750299,12.481280421750299,8.548561026441845,10.121662863635947,12.83538411311315,12.285390811430432,7.854348540882299,9.255146781860276,10.555494838378877,13.134298184149486,12.864255872035983,8.380701127305997,91.1179351759767,91.1179351759767,0.0,101.24215019552966,0.0,91.1179351759767,101.24215019552966,0,0
+2017/03/09 01:00:00,39.332638643266776,0,565.7049880145463,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5785165017857953e-09,9.535317644265088,0,0,0.0,512.4694592457301,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030118552583350434,0.0009529300093742227,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6529390980399744,-0.6529390980399744,-0.6828563766685716,-0.6828563766685716,-0.7724426926390292,-0.7724426926390292,-0.27622524741187343,-0.27622524741187343,-0.2474192756230354,-0.2474192756230354,-0.350819495914478,-0.4825480472490134,-0.7923118878020387,-0.7516094420336696,-0.15585482174741394,-0.41834132430149457,-0.5132960090077036,-0.803164044962259,-0.7615933373159248,-0.24297161421695435,13.953711049605204,13.953711049605204,14.801716307826993,14.801716307826993,17.57194086695486,17.57194086695486,6.584635489573259,6.584635489573259,6.270571749492817,6.270571749492817,7.560802044557846,9.863940758868452,18.23290637384747,16.896977695705417,5.50337132153075,8.648439788894677,10.50895294010435,18.600987300239268,17.218125464740666,6.22519063203913,39.332638643266776,39.332638643266776,0.0,43.70293182585197,0.0,39.332638643266776,43.70293182585197,0,0
+2017/03/09 02:00:00,23.72219725774355,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251018340657579,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6315167561778374,-0.6315167561778374,-0.6723975407938332,-0.6723975407938332,-0.7769608041913582,-0.7769608041913582,-0.2953917828509264,-0.2953917828509264,-0.11430440369476226,-0.11430440369476226,-0.3737493299740715,-0.5136361663159493,-0.8684606987389878,-0.7789005279491443,-0.08755992581475854,-0.455126724078544,-0.5585276778619831,-0.9074231119214183,-0.8291549995906562,-0.212353143327163,13.370324452647154,13.370324452647154,14.50085493169233,14.50085493169233,17.72076443768202,17.72076443768202,6.812978607947386,6.812978607947386,5.270619895107146,5.270619895107146,7.9083306751541045,10.516317080675933,20.9201725263634,17.78492437269108,5.158759791233024,9.323127382098264,11.532139133531857,22.388117028550596,19.502751636376317,5.935308004684472,23.72219725774355,23.72219725774355,0.0,26.357996953048385,0.0,23.72219725774355,26.357996953048385,0,0
+2017/03/09 03:00:00,28.34437502407133,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250119375984319,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.626808723310083,-0.626808723310083,-0.674591832803945,-0.674591832803945,-0.7809736869689942,-0.7809736869689942,-0.31303426668271367,-0.31303426668271367,-0.03911762031443538,-0.03911762031443538,-0.40671145488805,-0.552366456385285,-0.9187675905905565,-0.8180432506245093,-0.06456063611898363,-0.49985707728137246,-0.6077288856577773,-0.973434905189106,-0.8844328446690354,-0.2073915805756235,13.244780377005014,13.244780377005014,14.563584094684842,14.563584094684842,17.853674949095577,17.853674949095577,7.036883965295459,7.036883965295459,5.031677836973017,5.031677836973017,8.447214870224414,11.38755119501441,22.827134388790796,19.11374615176223,5.086297370666628,10.222014036540287,12.745846078972178,25.014585480135878,21.514427238474966,5.892033127293075,28.34437502407133,28.34437502407133,0.0,31.49375002674592,0.0,28.34437502407133,31.49375002674592,0,0
+2017/03/09 04:00:00,23.722174095883645,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250786722058541,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6494078262168362,-0.6494078262168362,-0.7003886021548139,-0.7003886021548139,-0.8086736493416726,-0.8086736493416726,-0.35967197136811707,-0.35967197136811707,0.00019614055376462216,0.00019614055376462216,-0.44946146031602374,-0.5948386952604764,-0.970313722761153,-0.8646422419731886,-0.04256497160035222,-0.5493131206608224,-0.6576400144436648,-1.034789988460201,-0.9410072995225487,-0.20876678672080443,13.856175502165527,13.856175502165527,15.316661794744832,15.316661794744832,18.789767274435064,18.789767274435064,7.69231801352754,7.69231801352754,5.000000796371353,5.000000796371353,9.21543139178469,12.417712394994055,24.886533814917172,20.779660486805994,5.037507735504718,11.316507173866881,14.0843914425963,27.607228439177206,23.702766149082777,5.903924483500845,23.722174095883645,23.722174095883645,0.0,26.357971217648494,0.0,23.722174095883645,26.357971217648494,0,0
+2017/03/09 05:00:00,41.472593706205224,0,280.4111669158935,0,0,0,0.0,0.004051871614757731,4.633261998087618,9.319298099999997,25.555573451546493,0,0.8187133753609358,0.6166835512008745,0.5250113583945277,0,0,191.68528563453316,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,310.6049752557347,1.4458894014694252,2501.104657907082,0.39571403501687585,1154.645773326759,0.0,0.0,0.0,361.74596312833717,0.0,463.8779444197106,1.6468701901425706,2784.6352991488066,0.5633979881288593,1354.8018341773993,0.0,0.0,0,0,0,0,0,0,0,0,0.014929298229022912,0.00047235258938697596,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6032787483398968,-0.6032787483398968,-0.6581962717906955,-0.6581962717906955,-0.763522850653914,-0.763522850653914,-0.33076876057362103,-0.33076876057362103,0.14438458897076392,0.14438458897076392,-0.48057463446255044,-0.5624004037640855,-0.7106413132507267,-0.6767452598233766,-0.004969230754780805,-0.537779835324772,-0.599929111012338,-0.7463056487396357,-0.7204925721908497,-0.19141289336663259,12.631747975732864,12.631747975732864,14.099918159503162,14.099918159503162,17.280682715934432,17.280682715934432,7.27523985062534,7.27523985062534,5.431940834388357,5.431940834388357,9.823937912712623,11.623864474980422,15.62394821043425,14.625347635459804,5.000511163277608,11.051799974587396,12.546432808708389,16.72810821301212,15.923471808056789,5.759665885538595,41.472593706205224,41.472593706205224,0.0,46.08065967356136,0.0,41.472593706205224,46.08065967356136,0,0
+2017/03/09 06:00:00,73.36368822633833,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5776451963824611,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3763141807919401,-0.3763141807919401,-0.43546644496601405,-0.43546644496601405,-0.532835278962559,-0.532835278962559,-0.12327977041245412,-0.12327977041245412,0.4675762978704881,0.4675762978704881,-0.43026315731448544,-0.5649402041559831,-0.8358586979284137,-0.7728680860710936,0.11062581040339921,-0.5286660703458365,-0.6270147774408363,-0.8592136353155685,-0.8145129828004606,-0.049314028911745016,7.9485973845550575,7.9485973845550575,8.955303613298653,8.955303613298653,10.940079526990957,10.940079526990957,5.31481712025581,5.31481712025581,9.564646361546835,9.564646361546835,8.860735146109533,11.684372692064557,19.739942404813533,17.585915951265548,5.253472485891095,10.846700581763926,13.250254878084476,20.58093566455014,18.991243434786128,5.050346488882511,73.36368822633833,73.36368822633833,0.0,81.51520914037592,0.0,73.36368822633833,81.51520914037592,0,0
+2017/03/09 07:00:00,99.37073039457107,0,731.0910354362172,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.0,2.5202258060890523e-09,0.5250267436578564,0,0,0.0,500.4037441046804,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.038923828250628095,0.0012315227937034394,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.18223559876991988,-0.18223559876991988,-0.24335801439597135,-0.24335801439597135,-0.3360765497745302,-0.3360765497745302,0.05866839965243695,0.05866839965243695,0.7188470951217258,0.7188470951217258,-0.3598079644753359,-0.4959643805883742,-0.8141069267375253,-0.7294110426494447,0.21676980433730736,-0.4622099746113707,-0.5649339175201155,-0.8530990382359744,-0.7884724887285388,0.06549584443402015,5.688466060557303,5.688466060557303,6.229100250488514,6.229100250488514,7.34917136519347,7.34917136519347,5.0712617267961235,5.0712617267961235,15.873150917456869,15.873150917456869,7.694364397709165,10.14035781259463,18.977186666735676,16.198237890511805,5.974697398053451,9.459722400045777,11.684222573826986,20.358561110540975,18.103877789768816,5.088816123733878,99.37073039457107,99.37073039457107,0.0,110.41192266063452,0.0,99.37073039457107,110.41192266063452,0,0
+2017/03/09 08:00:00,149.9325407616395,0,897.853163608106,0,0,0,0.0,0.0,10.576478033044985,0.0,69.33401494192633,0,39.380909295966944,0.14939000947455267,27.059773278772404,0,0,42.18431516106722,589.4912046029579,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1187.5484308655512,0.0,3144.1024977027155,0.0,2955.5860860239573,0.0,3532.6009842080625,0.0,2177.1201677704817,0.0,1407.368052356267,0.0,3197.442930981916,0.0,3396.555052770187,0.0,3713.0364986639906,0.0,2372.310292619536,0,0,0,0,0,0,0,0,0.04780236747631954,0.0015124335859519552,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4213135702881926,-0.4213135702881926,-0.4428239033613901,-0.4428239033613901,-0.5346063531183579,-0.5346063531183579,-0.09387290035455226,-0.09387290035455226,0.3553523588406377,0.3553523588406377,-0.41774339292957824,-0.5057352795786199,-0.6713859698333844,-0.6418793680913183,-0.0976035928373813,-0.4763361623529573,-0.5492551552290741,-0.6912746366399571,-0.6789126063247272,-0.1894912196948846,8.700796880458242,8.700796880458242,9.091008417405234,9.091008417405234,10.97997458025334,10.97997458025334,5.182487176801999,5.182487176801999,7.627727449991056,7.627727449991056,8.637952794236355,10.34656072462964,14.472006907785385,13.650040525596935,5.197286458008122,9.738588170318039,11.31516236187879,15.04731450292401,14.68771301963504,5.744465814180074,149.9325407616395,149.9325407616395,0.0,166.5917119573772,0.0,149.9325407616395,166.5917119573772,0,0
+2017/03/09 09:00:00,164.93778389146814,0,978.0442471837125,0,0,0,0.0,0.0,11.703970106274701,0.0,83.2008179303116,0,39.380909295966944,0.12236888114943402,27.097742475311204,0,0,58.97566702612652,599.655407544689,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,796.1120056366557,0.0,3115.376347653383,0.0,3288.1332853350814,0.0,3616.84688833274,0.0,449.17489922199434,0.0,1236.4930801766868,0.0,3202.252452739743,0.0,3396.5477808011524,0.0,3674.545072788161,0.0,326.2769256952777,0,0,0,0,0,0,0,0,0.05207180016395503,0.001647515460148664,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4943986059104994,-0.4943986059104994,-0.5462578905508524,-0.5462578905508524,-0.5938032679476031,-0.5938032679476031,-0.10639093433468674,-0.10639093433468674,-0.1435339262539277,-0.1435339262539277,-0.42202437753542144,-0.49214370679450997,-0.597632039602285,-0.5776671319689308,-0.26728830359434286,-0.45883343177636027,-0.5219742963878756,-0.6035780268978919,-0.5977476901991191,-0.31024984494393115,10.107697516494099,10.107697516494099,11.245823553070068,11.245823553070068,12.391667375338855,12.391667375338855,5.234427986475879,5.234427986475879,5.426861561731329,5.426861561731329,8.713374115345871,10.060848909325586,12.488207942375283,11.991793147316969,6.483460559808478,9.394338955193987,10.698396350168053,12.639394290164631,12.491133913598546,7.000670971960744,164.93778389146814,164.93778389146814,0.0,183.26420432385348,0.0,164.93778389146814,183.26420432385348,0,0
+2017/03/09 10:00:00,182.04213361606804,0,1042.211741720295,0,0,0,0.0,0.0,11.703970106274701,0.0,106.27511244621549,0,39.380909295966944,0.12043820694228892,21.129728358214408,0,0,69.90763279389273,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,397.70839765325525,0.0,2683.872879672696,0.0,2589.3775196343845,0.0,3131.747566249165,0.0,35.718084465736,0.0,745.8254831466099,0.0,2745.1341120402303,0.0,2558.8931490413497,0.0,3112.4161472682663,0.0,23.064423807270746,0,0,0,0,0,0,0,0,0.05548812510237368,0.0017556055998253072,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4056606571303994,-0.4056606571303994,-0.45202240614646955,-0.45202240614646955,-0.5104370791469748,-0.5104370791469748,-0.038586287088549144,-0.038586287088549144,-0.217220776346206,-0.217220776346206,-0.41554217517007935,-0.48021800859354175,-0.5736990867883195,-0.5594824491128435,-0.2747182775005494,-0.44785943210318735,-0.5049376136063047,-0.5761618220605468,-0.5758426230581546,-0.3126415683898259,8.42931889156823,8.42931889156823,9.263943642014354,9.263943642014354,10.447257122939305,10.447257122939305,5.030823066529635,5.030823066529635,5.978765302973187,5.978765302973187,8.599478151696218,9.816726711480513,11.895190657103157,11.554692441198341,6.567339183657481,9.18522745014873,10.329572286937363,11.955065793498008,11.947290440015806,7.031756817822753,182.04213361606804,182.04213361606804,0.0,202.2690373511867,0.0,182.04213361606804,202.2690373511867,0,0
+2017/03/09 11:00:00,212.14132621102584,0,1099.698580792543,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.11642263371355216,18.518433291941285,0,0,76.08504096330913,562.2389571661602,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2670.22166108047,0.0,1550.743542696248,0.0,3065.9901928857826,0.0,15.929792157217838,0.0,0.0,0.0,2699.628336375695,0.0,1405.5591843995935,0.0,2963.220110890184,0.0,10.818808899802551,0,0,0,0,0,0,0,0,0.05854876699546511,0.0018524421758793319,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.45741383339719127,-0.45741383339719127,-0.3161132782959932,-0.3161132782959932,-0.4647101029059456,-0.4647101029059456,0.11497248055408164,0.11497248055408164,-0.17569864546389455,-0.17569864546389455,-0.37566071030296483,-0.4637345142608256,-0.5469509931353105,-0.5334638304326093,-0.28967241648868924,-0.40036449489465187,-0.47927646662798234,-0.5427306586580068,-0.5420147311887901,-0.31785859116811993,9.366996399421424,9.366996399421424,7.077310490361256,7.077310490361256,9.508451311096835,9.508451311096835,5.2737943878125435,5.2737943878125435,5.639895417668313,5.639895417668313,7.93831162549256,9.489404506066847,11.261823199826665,10.954222668290214,6.743216863724271,8.339840160085544,9.797714499606315,11.16472315231745,11.14832790324374,7.100404257200282,212.14132621102584,212.14132621102584,0.0,235.7125846789176,0.0,212.14132621102584,235.7125846789176,0,0
+2017/03/09 12:00:00,227.95468575118232,0,1112.657573865538,0,0,0,0.0,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,0.025247495640545126,20.55616498178551,0,0,16.618801502474223,581.4286609311739,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,991.324641117407,0.0,720.8315622692489,0.0,1442.2976317335456,0.0,0.0,0.0,0.0,0.0,1017.8817721133676,0.0,562.3029270803211,0.0,1356.2369246864541,0.0,6.718420789357812,0,0,0,0,0,0,0,0,0.05923871338548393,0.001874271598727221,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5073186414312263,-0.5073186414312263,-0.36940382276774647,-0.36940382276774647,-0.3981866100260414,-0.3981866100260414,0.3593464168782563,0.3593464168782563,-0.069075277342845,-0.069075277342845,-0.30804656613979925,-0.42142238024080525,-0.49963509381487775,-0.4876997534193718,-0.24846565906962306,-0.29005151239300503,-0.4280254320258574,-0.4882804263582434,-0.4871232699576617,-0.28629043405796084,10.380364154981393,10.380364154981393,7.840749016713943,7.840749016713943,8.303393023433742,8.303393023433742,7.687422364559609,7.687422364559609,5.0987913559206675,5.0987913559206675,6.972248659967946,8.702720791515517,10.217339936485516,9.969162444734508,6.2813691656128015,6.747798118151138,8.820422469595783,9.981094308862566,9.957331065484738,6.702615196278558,227.95468575118232,227.95468575118232,0.0,253.28298416798035,0.0,227.95468575118232,253.28298416798035,0,0
+2017/03/09 13:00:00,206.14191365762673,0,1065.04417686307,0,0,0,0.0,0.0,17.02830042034,0.0,129.49988082968767,0,39.380909295966944,0.0072418823299766465,18.509593628074928,0,0,4.976710569115854,580.9477073746085,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,661.1466960617416,0.0,445.1819228161869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,495.856444220467,0.0,350.2194911691017,0.0,0.0,0,0,0,0,0,0,0,0,0.056703740861511955,0.0017940668350903595,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5326482599591582,-0.5326482599591582,-0.3562303047207986,-0.3562303047207986,-0.4829014945223628,-0.4829014945223628,0.49624198846898476,0.49624198846898476,-0.01739782936262385,-0.01739782936262385,-0.25698598528103084,-0.3842021710617343,-0.4599406533418692,-0.4501932628215169,-0.13729110133405617,-0.2358702261062996,-0.38822330014869977,-0.4459927956911948,-0.4472550981615797,-0.2117775910603081,10.935874684104704,10.935874684104704,7.640790941948097,7.640790941948097,9.871123194138463,9.871123194138463,10.146159452633768,10.146159452633768,5.006265804992154,5.006265804992154,6.3710020757904715,8.074193641478843,9.415725119393954,9.22926520756593,5.390507418060892,6.154454894729071,8.139242294930497,9.150173927304465,9.173862274359806,5.930235182293387,206.14191365762673,206.14191365762673,0.0,229.04657073069637,0.0,206.14191365762673,229.04657073069637,0,0
+2017/03/09 14:00:00,204.3940469723712,0,991.0765035214729,0,0,0,0.0,0.0,17.133076708931206,0.0,129.2730206906943,0,39.380909295966944,0.007737856762545333,16.311318951713286,0,0,5.4325645734798655,542.0145325411913,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.02600240692462,0.0,474.7507799662508,0.0,599.1568834217326,0.0,0.0,0.0,0.0,0.0,112.9096549118315,0.0,281.2011208941527,0.0,475.7313220205037,0.0,0.0,0,0,0,0,0,0,0,0,0.05276564714445655,0.00166946829496049,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5589813684346825,-0.5589813684346825,-0.22601659340280483,-0.22601659340280483,-0.5116738556779835,-0.5116738556779835,0.5732767716569356,0.5732767716569356,-0.022858861004517794,-0.022858861004517794,-0.23281213477659832,-0.36071619910097463,-0.4306475786251427,-0.42234658788672486,-0.12095826611005908,-0.226454015468359,-0.3652666199131304,-0.4176270175118598,-0.4201882045554508,-0.1314000667638207,11.542851141245933,11.542851141245933,6.059810343995139,6.059810343995139,10.4739034245151,10.4739034245151,11.884949570285727,11.884949570285727,5.010816834915985,5.010816834915985,6.124645871069291,7.708051437183272,8.867682139647073,8.719082538811307,5.303064414977442,6.063925419139636,7.77715496929855,8.635913491673278,8.680928632323017,5.35768889502063,204.3940469723712,204.3940469723712,0.0,227.104496635968,0.0,204.3940469723712,227.104496635968,0,0
+2017/03/09 15:00:00,189.17334488184645,0,969.2641416682784,0,0,0,0.0,0.0,17.02830042034,0.0,115.5196477718057,0,39.380909295966944,0.028388469882178705,14.070121654935207,0,0,20.695191970751566,540.4298958032695,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1192.6705889008467,0.0,626.0497157078661,0.0,1644.6164405080362,0.0,39.454832476714856,0.0,0.0,0.0,1162.2649826268605,0.0,444.1725000714528,0.0,1525.9316777800539,0.0,507.9875997793438,0,0,0,0,0,0,0,0,0.05160434084283064,0.001632725373074314,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4470716318339958,-0.4470716318339958,-0.30244967833944963,-0.30244967833944963,-0.5538035003655508,-0.5538035003655508,0.5697161648763704,0.5697161648763704,-0.07374668468453825,-0.07374668468453825,-0.2474988671968604,-0.3595503734776745,-0.4238007117257955,-0.4193456445899686,-0.2023702908891014,-0.2512120579329942,-0.3654454464310133,-0.4131737201726781,-0.418838941843885,-0.2071720896976575,9.170415092659397,9.170415092659397,6.900972363881266,6.900972363881266,11.421127733140054,11.421127733140054,11.798912936894894,11.798912936894894,5.1126086140062625,5.1126086140062625,6.271391421678146,7.6904889111852555,8.744899846026797,8.666088849037038,5.8492862533456815,6.309927605796759,7.779888676180903,8.558312329811855,8.65717908599791,5.890142522626206,189.17334488184645,189.17334488184645,0.0,210.19260542427384,0.0,189.17334488184645,210.19260542427384,0,0
+2017/03/09 16:00:00,182.88302450041837,0,987.2673835928103,0,0,0,0.0,0.0,17.241363593746797,0.0,108.75639138185811,0,39.380909295966944,0.05169940143478323,14.020685624957405,0,0,38.707680091720555,540.4206496068323,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1701.961220965465,0.0,544.9636166539265,0.0,2112.957351524628,0.0,26.40562468025324,0.0,0.0,0.0,1681.2002064746048,0.0,376.6251890805972,0.0,2001.6298199210619,0.0,27.882207818476996,0,0,0,0,0,0,0,0,0.05256284677801404,0.0016630518327297656,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3802860642631735,-0.3802860642631735,-0.2996952549944314,-0.2996952549944314,-0.4719033944753711,-0.4719033944753711,0.5705775089177655,0.5705775089177655,-0.10999939915427111,-0.10999939915427111,-0.2638400999626905,-0.3744181574454575,-0.4303224695722136,-0.43034856886968476,-0.2320363380618477,-0.2859859840191601,-0.3840725737608915,-0.4239768612783314,-0.4333077394120509,-0.25363525185148117,8.011507598515507,8.011507598515507,6.866381264160665,6.866381264160665,9.65015470620122,9.65015470620122,11.819675571798498,11.819675571798498,5.250608537384522,5.250608537384522,6.445323058789185,7.918803841649321,8.861806581932711,8.862278095937256,6.117146127086102,6.698983875691823,8.07210867065885,8.74803346034463,8.915928565148945,6.335388524332203,182.88302450041837,182.88302450041837,0.0,203.2033605560204,0.0,182.88302450041837,203.2033605560204,0,0
+2017/03/09 17:00:00,205.80274485518956,0,1025.6684160924913,0,0,0,0.0,0.0,17.241363593746797,0.0,131.64086955684016,0,39.380909295966944,0.030597757765125543,14.0770294484162,0,0,23.88336746355337,540.410465965864,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1242.7165232102532,0.0,269.5171786679414,0.0,1725.4986643338793,0.0,0.0,0.0,0.0,0.0,1228.975955234243,0.0,136.24260602583632,0.0,1636.468515740171,0.0,0.0,0,0,0,0,0,0,0,0,0.05460734619219783,0.001727738369060889,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.35454271355769296,-0.35454271355769296,-0.18502876720533679,-0.18502876720533679,-0.5480216813704014,-0.5480216813704014,0.653135197090576,0.653135197090576,-0.0713519620718504,-0.0713519620718504,-0.2569514864113014,-0.3631455516726921,-0.423989528003928,-0.42720357092797484,-0.23611434858079408,-0.2857275342548078,-0.369064115635182,-0.41737641821880467,-0.4294880056914073,-0.25516798327189627,7.615709319080679,7.615709319080679,5.709763772794602,5.709763772794602,11.286579993942183,11.286579993942183,13.959143248144699,13.959143248144699,5.105412402923179,5.105412402923179,6.370632995484613,7.744834286079097,8.74825884649185,8.805670582785154,6.156851417175133,6.695904292511898,7.8354997957570305,8.631524090558528,8.846746439369142,6.351620687362157,205.80274485518956,205.80274485518956,0.0,228.66971650576616,0.0,205.80274485518956,228.66971650576616,0,0
+2017/03/09 18:00:00,218.8954421857455,0,1037.870600260572,0,0,0,0.0,0.0,23.68207837024315,0.0,133.89528835348938,0,39.380909295966944,0.017691881264484677,18.487499082327247,0,0,14.252783707564907,562.2432338899333,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,796.8553363449473,0.0,425.65242526203457,0.0,1192.2173093831334,0.0,0.0,0.0,0.0,0.0,831.3369510335779,0.0,293.6341203858329,0.0,1104.986105630945,0.0,0.0,0,0,0,0,0,0,0,0,0.0552569995155456,0.0017482929473658906,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.30673471610599434,-0.30673471610599434,-0.12551254338484955,-0.12551254338484955,-0.5271307105900235,-0.5271307105900235,0.7189994796434396,0.7189994796434396,-0.024394502128437905,-0.024394502128437905,-0.24924291384444605,-0.3643420265267935,-0.41116639930294335,-0.41570750045533306,-0.17275386402241438,-0.23861859681522407,-0.37844368871890216,-0.40547545223264186,-0.41968994663536596,-0.21727910002840892,6.955423358543129,6.955423358543129,5.326331959594455,5.326331959594455,10.812502315852768,10.812502315852768,15.877806141557471,15.877806141557471,5.012319025685457,5.012319025685457,6.289419284888055,7.763042517495606,8.523611512100587,8.6023606257843,5.618597855824888,6.18157979232204,7.9822427056387255,8.42616959491069,8.672149270966642,5.979292022532093,218.8954421857455,218.8954421857455,0.0,243.21715798416167,0.0,218.8954421857455,243.21715798416167,0,0
+2017/03/09 19:00:00,217.84771226911752,0,1030.401751833632,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.0058885256438445605,26.88134064818011,0,0,4.862114138413333,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,434.34811885812337,0.0,356.0603012533519,0.0,0.0,0.0,0.0,0.0,74.5655290696316,0.0,400.4113027478052,0.0,334.314772842324,0.0,0.0,0,0,0,0,0,0,0,0,0.0548593524930695,0.0017357116727575864,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2033055747875305,-0.2033055747875305,-0.27636403203554977,-0.27636403203554977,-0.5125504989831915,-0.5125504989831915,0.7686417339260533,0.7686417339260533,-0.008093131714157332,-0.008093131714157332,-0.23760683236165317,-0.3380370486751608,-0.3855272050921089,-0.3871865136096127,-0.09651764083209621,-0.24484892986430418,-0.35034226008896596,-0.37938196805436825,-0.3905218419903104,-0.13955964133864224,5.857168497226098,5.857168497226098,6.5862332100693095,6.5862332100693095,10.49283073320575,10.49283073320575,17.447413699983414,17.447413699983414,5.001355861504678,5.001355861504678,6.17155735750211,7.376781376723983,8.095552042477792,8.122404411523817,5.192918996946048,6.244244204384401,7.553806760345509,7.997128537348274,8.17673543601687,5.403530324163825,217.84771226911752,217.84771226911752,0.0,242.0530136323528,0.0,217.84771226911752,242.0530136323528,0,0
+2017/03/09 20:00:00,208.81964142314175,0,995.0244708909092,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.005951178127120437,27.0977424753112,0,0,4.975185708234832,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.730019743014688,0.0,423.87273326243803,0.0,354.37278845889756,0.0,0.0,0.0,0.0,0.0,96.09344174938877,0.0,390.755210634095,0.0,334.21396948223486,0.0,0.0,0,0,0,0,0,0,0,0,0.05297583985149109,0.0016761186456946597,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.22884308684923088,-0.22884308684923088,-0.2627226772091715,-0.2627226772091715,-0.5331821654419754,-0.5331821654419754,0.7824809884130478,0.7824809884130478,-0.03330346852154551,-0.03330346852154551,-0.2352302111276589,-0.3261200840685397,-0.37268793288893703,-0.3715542902976682,-0.09427915245888743,-0.20789051250781623,-0.33930578811788836,-0.36809619410161637,-0.37595900460083564,-0.1226381032008715,6.0865423410725725,6.0865423410725725,6.433071647231543,6.433071647231543,10.947882761668993,10.947882761668993,17.903775210477235,17.903775210477235,5.02296050293576,5.02296050293576,6.14818381601637,7.211471043248437,7.891749426229708,7.874092611296703,5.184070713185562,5.896338223736322,7.394736230244419,7.820570259305498,7.943004578698023,5.311546254157491,208.81964142314175,208.81964142314175,0.0,232.02182380349083,0.0,208.81964142314175,232.02182380349083,0,0
+2017/03/09 21:00:00,211.15548038909913,0,965.2113487818166,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.012528940818961427,24.38321401627426,0,0,10.652416111686222,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,325.923249804756,0.0,861.7705587622925,0.0,643.8281492677074,0.0,0.0,0.0,0.0,0.0,316.69652221577655,0.0,679.9346929626353,0.0,526.0472012189219,0.0,0.0,0,0,0,0,0,0,0,0,0.0513885671476247,0.0016258984437646708,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.346814261639767,-0.346814261639767,-0.3286446131518282,-0.3286446131518282,-0.5825441159831183,-0.5825441159831183,0.7354803799947446,0.7354803799947446,-0.07460450250582416,-0.07460450250582416,-0.2249628673993104,-0.32629839283892453,-0.3717531663282113,-0.3687755115431951,-0.0823327085708129,-0.2251608614632501,-0.3396537751729762,-0.3673996833405093,-0.3734396034491196,-0.07178389165756945,7.502394110205174,7.502394110205174,7.2459878488151475,7.2459878488151475,12.111459682844583,12.111459682844583,16.38718172972503,16.38718172972503,5.115244220571952,5.115244220571952,6.049930291991203,7.213900110850034,7.877186199921937,7.83104409391369,5.140364529941763,6.05178319205875,7.399672795981047,7.809851757532371,7.903487132468143,5.106692789701825,211.15548038909913,211.15548038909913,0.0,234.61720043233237,0.0,211.15548038909913,234.61720043233237,0,0
+2017/03/09 22:00:00,198.94073565839753,0,966.841796897395,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.054731199947074226,26.990067007830906,0,0,47.77321673980884,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,194.18711418511006,0.0,1941.9013680308658,0.0,1644.223393042254,0.0,2222.4272902788166,0.0,409.9960633255746,0.0,125.25179465710396,0.0,1888.1807350464749,0.0,1392.9652572874952,0.0,2056.851539825608,0.0,785.4902927405416,0,0,0,0,0,0,0,0,0.05147537341298189,0.0016286449334916141,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.41377454227094884,-0.41377454227094884,-0.3533201667528567,-0.3533201667528567,-0.523745079140937,-0.523745079140937,0.5988031422200232,0.5988031422200232,-0.1636927206128199,-0.1636927206128199,-0.2901664226486077,-0.361740581811901,-0.3972930239911299,-0.4005324670344372,-0.17662983715511626,-0.3023592561898225,-0.37871105825812346,-0.39667608955592826,-0.40858837713759805,-0.17484542997585362,8.568732389139825,8.568732389139825,7.597615063171546,7.597615063171546,10.737452137532358,10.737452137532358,12.517863773975819,12.517863773975819,5.55533380432658,5.55533380432658,6.749187970891526,7.723530975516681,8.288497467429409,8.34265962059331,5.6467053852292395,6.899831715148807,7.986480704176415,8.278233460112077,8.479298092667534,5.633687470696032,198.94073565839753,198.94073565839753,0.0,221.0452618426639,0.0,198.94073565839753,221.0452618426639,0,0
+2017/03/09 23:00:00,140.1824203813883,0,872.475002326252,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.1321602419324955,20.86532733167958,0,0,113.11300847511447,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,508.359971048783,0.0,2739.36547357806,0.0,1927.549188228694,0.0,2979.78657051639,0.0,51.717389791674805,0.0,628.2212834152001,0.0,2748.2091503849047,0.0,1781.6553884435966,0.0,2864.982255578782,0.0,99.51329845922437,0,0,0,0,0,0,0,0,0.04645121537190038,0.001469684075198842,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49415483479546013,-0.49415483479546013,-0.4587014886541485,-0.4587014886541485,-0.598507220008711,-0.598507220008711,0.3832628823965164,0.3832628823965164,-0.39551251477869626,-0.39551251477869626,-0.3316080286561149,-0.3964963324836833,-0.4235509943990626,-0.43340480448942703,-0.22484773363424868,-0.3528793725431979,-0.4195020129627514,-0.4292034027125608,-0.4482479625492265,-0.24576512300572897,10.102622252143362,10.102622252143362,9.39179397210323,9.39179397210323,12.510364515700232,12.510364515700232,8.059098535393048,8.059098535393048,8.258919236094258,8.258919236094258,7.286850321085922,8.275245883926928,8.740459777990779,8.91769474689633,6.048853584308716,7.591106704157852,8.668840622992931,8.841616849527512,9.192542494783993,6.253596750300787,140.1824203813883,140.1824203813883,0.0,155.75824486820923,0.0,140.1824203813883,155.75824486820923,0,0
+2017/03/10 00:00:00,90.87087208866468,0,683.3983123704909,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.13436278492293477,11.793553042449176,0,0,111.72494075289676,518.4378428487779,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.67561914891274,0.0,0.0,0.0,0.0,0.0,994.6572644934361,0.0,3594.43070447246,0.0,2204.2578363389102,0.0,3795.8334843451,0.0,9.067775601073674,0.0,1149.3934191842254,0.0,3609.544890370778,0.0,2117.323817104534,0.0,3725.2585862303104,0.0,15.908582198479804,0,0,0,0,0,0,0,0,0.036384632348290896,0.0011511844053190394,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6290396267480981,-0.6290396267480981,-0.6681097342131962,-0.6681097342131962,-0.720326130771713,-0.720326130771713,0.11733635527380178,0.11733635527380178,-0.4544278039438729,-0.4544278039438729,-0.3664785116372582,-0.4372203486907884,-0.455417186189979,-0.4725519482779164,-0.26015240049824323,-0.39509789701200154,-0.4669672952178098,-0.4664376184924917,-0.49239056196054026,-0.28462795042857747,13.304149611170686,13.304149611170686,14.378879169392007,14.378879169392007,15.918376507113464,15.918376507113464,5.285175670039749,5.285175670039749,9.309766315375029,9.309766315375029,7.795707736344269,8.987442398001491,9.328686251517553,9.663040410941264,6.405090649593447,8.252050969865024,9.552676550679422,9.542278866831438,10.065966958708785,6.6828336069004735,90.87087208866468,90.87087208866468,0.0,100.96763565407187,0.0,90.87087208866468,100.96763565407187,0,0
+2017/03/10 01:00:00,39.33503851021062,0,559.53718765562,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5785194601779174e-09,9.537717511208921,0,0,0.0,506.3016588868038,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029790174323710353,0.0009425403501377395,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5282895020626737,-0.5282895020626737,-0.5550653289768931,-0.5550653289768931,-0.6421114260283186,-0.6421114260283186,0.13098880006457833,0.13098880006457833,-0.11708629934354042,-0.11708629934354042,-0.4116605487094186,-0.5256325621530096,-0.6399796156095713,-0.64101430879777,-0.03710638309757238,-0.46511670847518943,-0.5750252525143298,-0.6227470341987715,-0.6443996852535697,-0.11533924666126101,10.83830353622696,10.83830353622696,11.450684184653724,11.450684184653724,13.656357740358246,13.656357740358246,5.355451662726438,5.355451662726438,5.283960751709685,5.283960751709685,8.532137920477112,10.779231262883172,13.598412188262202,13.626511962886212,5.028503942115876,9.516401738162372,11.92740030233226,13.13724440544047,13.718775097492937,5.275545030073502,39.33503851021062,39.33503851021062,0.0,43.70559834467847,0.0,39.33503851021062,43.70559834467847,0,0
+2017/03/10 02:00:00,23.722036428367016,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249410046892227,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5524487785377165,-0.5524487785377165,-0.5708774604315165,-0.5708774604315165,-0.6705776863770425,-0.6705776863770425,0.05576625260343438,0.05576625260343438,0.007767953383175058,0.007767953383175058,-0.4826368841923817,-0.5916490968934556,-0.7072307855356982,-0.6945189508264464,0.0362956830513141,-0.5551354954051462,-0.6631922482989928,-0.7270334173368971,-0.7354799729065208,-0.0851571837850944,11.389472235022168,11.389472235022168,11.826913436373076,11.826913436373076,14.448988084898048,14.448988084898048,5.064384944653753,5.064384944653753,5.001249094321821,5.001249094321821,9.865745515593062,12.337630702187923,15.521227163641143,15.14278326971575,5.027271967315343,11.4523297545244,14.239970918267957,16.124651948309733,16.38716900363596,5.150163473133645,23.722036428367016,23.722036428367016,0.0,26.35781825374113,0.0,23.722036428367016,26.35781825374113,0,0
+2017/03/10 03:00:00,28.344495771987155,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251326855142631,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5485276392982418,-0.5485276392982418,-0.5642574044791971,-0.5642574044791971,-0.6686521126231034,-0.6686521126231034,0.03069237660159803,0.03069237660159803,0.08067142412968793,0.08067142412968793,-0.5168030866897618,-0.6278213552733176,-0.7465763558246112,-0.73148354273865,0.06008313947195736,-0.6060801070845256,-0.7159502213550387,-0.7844243739969621,-0.790666965449845,-0.07675066627239775,11.298296201615585,11.298296201615585,11.668078172864625,11.668078172864625,14.394264297954507,14.394264297954507,5.019501150897938,5.019501150897938,5.1347555854016065,5.1347555854016065,10.585118660260704,13.271701972050423,16.73669816779848,16.26257866811308,5.074740561718414,12.703472431205938,15.78484398166934,17.96851276486882,18.177549789163805,5.121971869758852,28.344495771987155,28.344495771987155,0.0,31.49388419109684,0.0,28.344495771987155,31.49388419109684,0,0
+2017/03/10 04:00:00,23.722314891132264,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525219467454476,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5799085816016509,-0.5799085816016509,-0.593009604217659,-0.593009604217659,-0.6979631095937522,-0.6979631095937522,-0.03624323648258592,-0.03624323648258592,0.13829124630542447,0.13829124630542447,-0.5779927102231037,-0.6875450830318137,-0.8112351560889259,-0.7911222453050517,0.09128595525453069,-0.6738345144138208,-0.7823201912324983,-0.857322720807626,-0.8600323756549322,-0.07692788676617185,12.046663423577769,12.046663423577769,12.371735150434219,12.371735150434219,15.244630301106397,15.244630301106397,5.027193204673949,5.027193204673949,5.396222513470747,5.396222513470747,11.999749710925371,14.938128812540896,18.87797063499751,18.192859838195517,5.172564142484177,14.5419107590361,17.898425968688485,20.512001594392515,20.61082914717197,5.122535945243143,23.722314891132264,23.722314891132264,0.0,26.358127656813625,0.0,23.722314891132264,26.358127656813625,0,0
+2017/03/10 05:00:00,41.97451513871336,0,397.3323865717725,0,0,0,0.0,0.00574954005368526,4.633261998087618,9.319298099999997,25.555573451546493,0,1.0827350058051923,0.8003202682825464,0.5775767749378337,0,0,308.60650529041214,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5246626401146461,1023.4220936643455,0.2528983438966179,935.3587284757836,1.4191872660558145,2265.9284582438568,0.47942373173297403,1278.2400611653534,0.0,0.0,0.5014008010248668,1395.5104025255553,0.3264820600313669,1090.5555582320571,1.423122078954293,2267.310760198493,0.8223631318746811,1339.1415747022081,0.0,0.0,0,0,0,0,0,0,0,0,0.021154270567828783,0.0006693063750231339,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5281206637718269,-0.5281206637718269,-0.5442724387353534,-0.5442724387353534,-0.6452165861514954,-0.6452165861514954,-0.009130939211389277,-0.009130939211389277,0.27216823992965944,0.27216823992965944,-0.48358794598296545,-0.5433145588024603,-0.5840926575084135,-0.5876139174624141,0.12246671509894747,-0.5289349567232138,-0.5939278792509114,-0.6086863598132651,-0.6266277635523316,-0.05833685818236898,10.834540627359587,10.834540627359587,11.200106431454714,11.200106431454714,13.74111288327181,13.74111288327181,5.001725891004838,5.001725891004838,6.5382890667603135,6.5382890667603135,9.885088039904119,11.178111325178946,12.149672118776579,12.236951493808391,5.310675508038543,10.852700200155368,12.394799370844325,12.770507338950424,13.239974109261738,5.070458464793589,41.97451513871336,41.97451513871336,0.0,46.63835015412595,0.0,41.97451513871336,46.63835015412595,0,0
+2017/03/10 06:00:00,73.31106586376592,0,230.7270927052401,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5250228338100547,0,0,0.0,17.7849776299753,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01228408131672273,0.00038865977015008755,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2894385384021589,-0.2894385384021589,-0.30886619258788023,-0.30886619258788023,-0.4028044918505183,-0.4028044918505183,0.2021681779438767,0.2021681779438767,0.593570856604955,0.593570856604955,-0.5178454410438823,-0.6057222340741174,-0.6805152237925499,-0.6753562356543901,0.24052043460740624,-0.5843190414490353,-0.6688042107589569,-0.7012079326374085,-0.7155230849813868,0.09204907546489506,6.740393547616421,6.740393547616421,6.982797848350515,6.982797848350515,8.380914813394554,8.380914813394554,5.847587724771401,5.847587724771401,12.385827721231976,12.385827721231976,10.607858792882752,12.694290670265872,14.73395902634688,14.585485348733826,6.200535529637321,12.155267178441761,14.398581006881912,15.341051392807273,15.771853937130771,5.17546245151172,73.31106586376592,73.31106586376592,0.0,81.4567398486288,0.0,73.31106586376592,81.4567398486288,0,0
+2017/03/10 07:00:00,99.37066206273482,0,724.2794423508666,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.0,2.5202287384849487e-09,0.5249584118215875,0,0,0.0,493.5921510193298,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03856117398937162,0.0012200486656681574,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.14498803342533956,-0.14498803342533956,-0.1681206104828533,-0.1681206104828533,-0.2549840866342846,-0.2549840866342846,0.3167398467647135,0.3167398467647135,0.846014724344694,0.846014724344694,-0.49994886966113966,-0.5986624236809399,-0.696603315700274,-0.6850839134403671,0.34520418266199937,-0.5779252006021021,-0.6711339972162162,-0.7193771111105728,-0.7309285286825894,0.19442073804567953,5.435562239870535,5.435562239870535,5.585821125026911,5.585821125026911,6.349667941370527,6.349667941370527,7.085586320533764,7.085586320533764,20.102862302951962,20.102862302951962,10.223947445854236,12.514297211960539,15.204358705894364,14.866405396909641,7.479106696040134,11.998099515794934,14.464828033199439,15.889346787351627,16.24533015228303,5.783767176643138,99.37066206273482,99.37066206273482,0.0,110.41184673637203,0.0,99.37066206273482,110.41184673637203,0,0
+2017/03/10 08:00:00,149.55412279588293,0,920.7312746562143,0,0,0,0.0,0.0,10.154993366970833,0.0,69.33401494192633,0,39.380909295966944,0.18297614822659206,27.06925384033793,0,0,54.89822326744436,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2427.7890204498294,0.0,3883.0727307855304,0.0,3454.3946670347054,0.0,4055.888673896676,0.0,2247.2380433478565,0.0,2635.0877445725505,0.0,3938.2624606369345,0.0,3343.224569159679,0.0,4004.8785853787767,0.0,2457.824425302481,0,0,0,0,0,0,0,0,0.049020415054490195,0.0015509717622760742,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3969679886929549,-0.3969679886929549,-0.38883166036437206,-0.38883166036437206,-0.4956591168412951,-0.4956591168412951,0.09282855981016691,0.09282855981016691,0.4528578225886609,0.4528578225886609,-0.46466989753504473,-0.5374634965960406,-0.5704842498001025,-0.5889873106823734,-0.0016361613668455528,-0.5108122705041012,-0.5871769915780318,-0.587687654075358,-0.6250508516884209,-0.0949102236253358,8.283087789898389,8.283087789898389,8.149143720521351,8.149143720521351,10.13398204427213,10.13398204427213,5.178447858263738,5.178447858263738,9.279830053223833,9.279830053223833,9.507665555654384,11.044620707339135,11.817426013938672,12.271138834896675,5.000055415742352,10.455333616035517,12.226092431304835,12.23878491110547,13.198151672282009,5.186544158450431,149.55412279588293,149.55412279588293,0.0,166.17124755098104,0.0,149.55412279588293,166.17124755098104,0,0
+2017/03/10 09:00:00,165.74753421204036,0,989.5864348556673,0,0,0,0.0,0.0,12.503018240070961,0.0,83.2008179303116,0,39.380909295966944,0.13307106792538115,27.097742475311204,0,0,70.51785469808105,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2164.6632525348195,0.0,3590.700705111671,0.0,3225.248966200813,0.0,3774.4282172169565,0.0,523.05975026908,0.0,2235.270693673095,0.0,3641.5465947710877,0.0,3183.14968476565,0.0,3755.719768610693,0.0,375.3854932934077,0,0,0,0,0,0,0,0,0.05268631478498526,0.0016669582744060346,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4979576981667629,-0.4979576981667629,-0.4963381432855393,-0.4963381432855393,-0.5543542258624033,-0.5543542258624033,0.05319961703076664,0.05319961703076664,-0.07515622100677011,-0.07515622100677011,-0.4474868642360604,-0.5088138669891138,-0.5238032081738805,-0.5416117190822671,-0.19956350844362974,-0.47858528437310277,-0.541044520762872,-0.5281626157693701,-0.5607925431287499,-0.24151171057476958,10.182089401696771,10.182089401696771,10.148169738232241,10.148169738232241,11.434019166336341,11.434019166336341,5.05859397717046,5.05859397717046,5.116955472780035,5.116955472780035,9.178219037935719,10.41238545894987,10.738736512621529,11.139108408663063,5.825851345861395,9.78378204941167,11.126144834981105,10.835475498748309,11.585703406862166,6.210475853915511,165.74753421204036,165.74753421204036,0.0,184.16392690226706,0.0,165.74753421204036,184.16392690226706,0,0
+2017/03/10 10:00:00,181.99257564287186,0,1065.4707080543112,0,0,0,0.0,0.0,11.745711980442081,0.0,106.27511244621549,0,39.380909295966944,0.1439207827100433,21.01494593508305,0,0,93.16659912790864,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1690.4743568297094,0.0,3222.794674488494,0.0,2621.580741114727,0.0,3349.4382731488,0.0,68.84956037384498,0.0,1678.9175192447733,0.0,3199.014579043995,0.0,2479.525934173901,0.0,3256.0956623978136,0.0,47.37394385457911,0,0,0,0,0,0,0,0,0.05672644969806813,0.0017947853268496321,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.439811202492686,-0.439811202492686,-0.4589490813446633,-0.4589490813446633,-0.516650885592476,-0.516650885592476,0.12031487322958709,0.12031487322958709,-0.16899689485064462,-0.16899689485064462,-0.4340827050220012,-0.4933588477266825,-0.5055420402564832,-0.5227684201191071,-0.2194966108749513,-0.46131743138925924,-0.5209894947919406,-0.5069953856228145,-0.5371868856247144,-0.25527657927112213,9.035159370880393,9.035159370880393,9.39657027669243,9.39657027669243,10.581802155192108,10.581802155192108,5.299846855674403,5.299846855674403,5.591951509308615,5.591951509308615,8.93004100435148,10.086067838212799,10.342442650110073,10.715894491159219,5.999424018424989,9.44239143915091,10.676734622422785,10.373454112961596,11.038346609040076,6.352774505324504,181.99257564287186,181.99257564287186,0.0,202.21397293652427,0.0,181.99257564287186,202.21397293652427,0,0
+2017/03/10 11:00:00,212.1306319491995,0,1093.194797526372,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.10053593223119872,18.523625731597285,0,0,69.6023764568879,562.2178384064104,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,523.3694873074465,0.0,3185.412204324066,0.0,1564.60043230631,0.0,3189.899905637263,0.0,9.048005936208366,0.0,436.9906247001453,0.0,3034.4511446847237,0.0,1299.82829180018,0.0,2993.768649317238,0.0,4.590048037632899,0,0,0,0,0,0,0,0,0.05820250075697854,0.0018414865534610956,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.29690706187688926,-0.29690706187688926,-0.3301912491110888,-0.3301912491110888,-0.4109563610701991,-0.4109563610701991,0.2856099116613471,0.2856099116613471,-0.12701103403449615,-0.12701103403449615,-0.39537847140836124,-0.4686284864522624,-0.47865217951419514,-0.4924626626037848,-0.24071435494770782,-0.4085716524596793,-0.4898025236933577,-0.472913345334622,-0.49802828753438216,-0.2665081433779661,6.831692731752767,6.831692731752767,7.2672678919359015,7.2672678919359015,8.519990529721724,8.519990529721724,6.694503682615803,6.694503682615803,5.334176184493131,5.334176184493131,8.256697963843962,9.585364551135683,9.785129582108596,10.067462318253789,6.202476878690504,8.479011542805935,10.012439966627795,9.67022864746086,10.183570389731187,6.4747880775965285,212.1306319491995,212.1306319491995,0.0,235.70070216577722,0.0,212.1306319491995,235.70070216577722,0,0
+2017/03/10 12:00:00,227.95228701992278,0,1138.176512950914,0,0,0,0.0,0.0,16.73568395689411,0.0,147.76209134187457,0,39.380909295966944,0.057582721217208456,20.584044501515596,0,0,42.150775784154916,581.4156257348692,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,254.98335543231596,0.0,2039.128295344643,0.0,1380.3610311954885,0.0,2146.7906115510114,0.0,0.0,0.0,218.32257704664107,0.0,1980.1074250835604,0.0,1080.7683344802952,0.0,1923.3895838431908,0.0,0.0,0,0,0,0,0,0,0,0,0.06059736060443765,0.0019172582496796821,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.33838895872617825,-0.33838895872617825,-0.34001561402465563,-0.34001561402465563,-0.42427420879456895,-0.42427420879456895,0.46192964717663026,0.46192964717663026,-0.0315888384108597,-0.0315888384108597,-0.3699171639245702,-0.43932660527194395,-0.4485323370945057,-0.46409741569762397,-0.22862320525462987,-0.37399812088773104,-0.44872007646711637,-0.43709817123051964,-0.4639101334096837,-0.24801646956060316,7.381754659797878,7.381754659797878,7.404811319242185,7.404811319242185,8.753326147001744,8.753326147001744,9.454275445661239,9.454275445661239,5.020657016986391,5.020657016986391,7.848690598484978,9.026212388501492,9.197900662447083,9.496484786266862,6.084450758863156,7.9122242623349734,9.201439942189054,8.985199318724312,9.492830162698084,6.276728434245541,227.95228701992278,227.95228701992278,0.0,253.2803189110253,0.0,227.95228701992278,253.2803189110253,0,0
+2017/03/10 13:00:00,206.6983132329435,0,1075.8542468273922,0,0,0,0.0,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,0.02030135204645356,18.487556396507564,0,0,15.800649388058005,580.9338385199885,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,821.7280355091772,0.0,1225.922543771694,0.0,967.3182578427629,0.0,0.0,0.0,0.0,0.0,682.2513595263423,0.0,914.2164941434078,0.0,748.5529783553125,0.0,0.0,0,0,0,0,0,0,0,0,0.05727927699350335,0.0018122763971247897,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2751715394662861,-0.2751715394662861,-0.27890353182752814,-0.27890353182752814,-0.4531901456869345,-0.4531901456869345,0.6114344521816196,0.6114344521816196,0.010623317435265926,0.010623317435265926,-0.32130379967372574,-0.38670460105376836,-0.40392832104551046,-0.4162502005714587,-0.14695105138227063,-0.3062907393937575,-0.384828540215498,-0.3828877341307697,-0.4055811224105107,-0.14024868420016537,6.572531448531663,6.572531448531663,6.615611907602499,6.615611907602499,9.286157910584265,9.286157910584265,12.841509779941475,12.841509779941475,5.002336164149696,5.002336164149696,7.146369673780171,8.114593566215206,8.399918935067689,8.611830927656513,5.447447616933744,6.949745570295519,8.08428082484221,8.053080136350957,8.42796627212654,5.40752828103922,206.6983132329435,206.6983132329435,0.0,229.66479248104832,0.0,206.6983132329435,229.66479248104832,0,0
+2017/03/10 14:00:00,204.29219231525246,0,994.9661479562074,0,0,0,0.0,0.0,16.735683873587277,0.0,129.2730206906943,0,39.380909295966944,0.011617276593289707,16.316979776569838,0,0,9.356900823162706,541.9798407262429,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,448.46839152989276,0.0,673.5170979151783,0.0,898.5292426086951,0.0,0.0,0.0,0.0,0.0,222.47765463176302,0.0,252.5531213837426,0.0,613.1989858185138,0.0,0.0,0,0,0,0,0,0,0,0,0.05297273469524738,0.0016760204007155814,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.36739796980965705,-0.36739796980965705,-0.2307815070935684,-0.2307815070935684,-0.47612616058163393,-0.47612616058163393,0.6939696512643563,0.6939696512643563,-0.007251170175287437,-0.007251170175287437,-0.21656198090073825,-0.33012133203113914,-0.38216933256621466,-0.39288451851452166,-0.12798333548583832,-0.22137202204517306,-0.3147592292955018,-0.35972521229119114,-0.37965610840941766,-0.10050908146962936,7.809825413754211,7.809825413754211,6.10506893953648,6.10506893953648,9.73437952860364,9.73437952860364,15.126587335624976,15.126587335624976,5.001088423867273,5.001088423867273,5.972825635031427,7.266303718057259,8.041571791988034,8.215510048508278,5.3393158808103465,6.016611028100684,7.059482762712349,7.693119073439661,8.001484875558162,5.209212377882281,204.29219231525246,204.29219231525246,0.0,226.99132479472496,0.0,204.29219231525246,226.99132479472496,0,0
+2017/03/10 15:00:00,189.29363981607312,0,965.7268452415581,0,0,0,0.0,0.0,16.86091074341296,0.0,115.5196477718057,0,39.380909295966944,0.020752613634856344,14.079444188798387,0,0,17.204322486622026,540.3834688606785,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1127.8117365294763,0.0,247.70865723956064,0.0,1463.9175996034387,0.0,0.0,0.0,0.0,0.0,992.9225941287075,0.0,0.0,0.0,1272.4196789343102,0.0,311.9988901056842,0,0,0,0,0,0,0,0,0.051416012560973,0.00162676679751198,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3454399596347862,-0.3454399596347862,-0.32982886816300383,-0.32982886816300383,-0.5307915000401582,-0.5307915000401582,0.7132360170284077,0.7132360170284077,-0.07204436586755197,-0.07204436586755197,-0.2804663987594315,-0.36426745103985314,-0.3886948264147636,-0.4059304347936536,-0.18593909872346673,-0.2633794355323677,-0.3607996509454362,-0.3703283985368584,-0.3980647568479564,-0.200142858764347,7.482509974526366,7.482509974526366,7.262272817139376,7.262272817139376,10.894210380530467,10.894210380530467,15.702433503387724,15.702433503387724,5.107468662745546,5.107468662745546,6.63382742868599,7.76190582829426,8.146915287957697,8.433908924048936,5.716775385086308,6.440265970358908,7.709310813396883,7.855060658170331,8.301359791189697,5.830661578127049,189.29363981607312,189.29363981607312,0.0,210.32626646230347,0.0,189.29363981607312,210.32626646230347,0,0
+2017/03/10 16:00:00,182.81085324116165,0,991.1403374771654,0,0,0,0.0,0.0,17.133076708931206,0.0,108.75639138185811,0,39.380909295966944,0.05121362315880827,14.057287028792288,0,0,42.63089173294145,540.3703918499665,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1718.2050531921157,0.0,207.88931038646308,0.0,2019.8458381255932,0.0,138.9576891484792,0.0,0.0,0.0,1655.7597675399898,0.0,37.57780169670709,0.0,1894.1759431185358,0.0,49.108770896882284,0,0,0,0,0,0,0,0,0.05276904571153986,0.0016695758232540092,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.36093463995728997,-0.36093463995728997,-0.327954338704898,-0.327954338704898,-0.5695808960947709,-0.5695808960947709,0.7172726351123542,0.7172726351123542,-0.11573241165231028,-0.11573241165231028,-0.2913872678483913,-0.38530217824696544,-0.40107845645652607,-0.42657257822032685,-0.2317209948128924,-0.296186819779361,-0.38647507208069154,-0.38957181739194824,-0.4236992018129966,-0.25135397716268215,7.711348567609846,7.711348567609846,7.236523169246155,7.236523169246155,11.795655216854087,11.795655216854087,15.825110980017286,15.825110980017286,5.277427885697847,5.277427885697847,6.763988667260293,8.091919518782461,8.351832548860855,8.794364333057118,6.114104874566181,6.822785439608765,8.1108768452725,8.161211541499739,8.743094638899919,6.311411969391401,182.81085324116165,182.81085324116165,0.0,203.1231702679574,0.0,182.81085324116165,203.1231702679574,0,0
+2017/03/10 17:00:00,206.16260091096092,0,1039.1957262896271,0,0,0,0.0,0.0,17.63344325816451,0.0,131.64086955684016,0,39.380909295966944,0.04430990288758621,14.031093694647385,0,0,37.44249515147545,540.378648475078,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1660.4169142286487,0.0,272.57021734593513,0.0,1924.494707033817,0.0,12.466228871139347,0.0,0.0,0.0,1607.4858735383516,0.0,137.02961491485723,0.0,1807.608252591154,0.0,7.246057167091576,0,0,0,0,0,0,0,0,0.05532755020686218,0.0017505251220612588,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.20131832836190713,-0.20131832836190713,-0.31681583221788445,-0.31681583221788445,-0.5544313228928281,-0.5544313228928281,0.7665200605236421,0.7665200605236421,-0.07167335215752961,-0.07167335215752961,-0.2732825650624752,-0.3953003538338588,-0.40593590630385273,-0.4336636703522826,-0.23953088925715052,-0.27482081828441496,-0.400377138798983,-0.40040367349895817,-0.4346976444563975,-0.2554091338967607,5.840464407327104,5.840464407327104,7.08659108088635,7.08659108088635,11.43582490998638,11.43582490998638,17.378171361636134,17.378171361636134,5.106364376457776,5.106364376457776,6.55094978338164,8.25540380880463,8.434002049277353,8.922407010032515,6.1906537156886685,6.568513064062486,8.340052349629701,8.340497676242151,8.941257654278303,6.354183552739798,206.16260091096092,206.16260091096092,0.0,229.06955656773434,0.0,206.16260091096092,229.06955656773434,0,0
+2017/03/10 18:00:00,218.98698769578192,0,1036.4451803530144,0,0,0,0.0,0.0,23.68207837024315,0.0,133.89528835348938,0,39.380909295966944,0.014986224516731537,18.581750249111437,0,0,12.856166160308812,562.2144315296316,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,867.3469111405448,0.0,130.14018267675553,0.0,1073.909555572669,0.0,0.0,0.0,0.0,0.0,867.8282214675854,0.0,0.0,0.0,968.06746998006,0.0,0.0,0,0,0,0,0,0,0,0,0.055181109103849206,0.0017458918276397977,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.36183728944046073,-0.36183728944046073,-0.17976292558612927,-0.17976292558612927,-0.527255126444677,-0.527255126444677,0.8313632796376603,0.8313632796376603,-0.032170153884124225,-0.032170153884124225,-0.2471852581195171,-0.39269303287245516,-0.3971134739395169,-0.4240907903504119,-0.16637636375432446,-0.24685934394508752,-0.4037969771769838,-0.3912875842625964,-0.42623864426727404,-0.20405061068238634,7.724994641821709,7.724994641821709,5.669883938647175,5.669883938647175,10.815269727211174,10.815269727211174,19.58067732283709,19.58067732283709,5.021424332166475,5.021424332166475,6.26816326713832,8.212358633285646,8.285508593759758,8.750060911624828,5.573713884842945,6.264812828807138,8.39769510074629,8.189276135600096,8.788387753083242,5.863473584353102,218.98698769578192,218.98698769578192,0.0,243.31887521753546,0.0,218.98698769578192,243.31887521753546,0,0
+2017/03/10 19:00:00,217.98312028824722,0,1029.82286144206,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.93442390708215,0,39.380909295966944,0.004901067067089141,26.445740258810833,0,0,4.28322374684122,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,160.1836250341205,0.0,263.87739184285533,0.0,345.6713975668218,0.0,0.0,0.0,0.0,0.0,158.61565459440803,0.0,142.48632872156557,0.0,251.76344833155136,0.0,0.0,0,0,0,0,0,0,0,0,0.05482853193983423,0.0017347365319369203,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5149507055097796,-0.5149507055097796,-0.32116839473442393,-0.32116839473442393,-0.5250363379067844,-0.5250363379067844,0.8599596737105633,0.8599596737105633,-0.020059511408437324,-0.020059511408437324,-0.24149529445179482,-0.3735718692494459,-0.38108168220957145,-0.4024808713874702,-0.07578518112368117,-0.24233798605111115,-0.38220350911205564,-0.3753776466080731,-0.40435043671343157,-0.1204700004454087,10.544822873473322,10.544822873473322,7.1445536266655125,7.1445536266655125,10.766017274617695,10.766017274617695,20.608173562815523,20.608173562815523,5.008329700498834,5.008329700498834,6.210310900155761,7.905555021279866,8.024190245278334,8.375452366198061,5.118921698899342,6.218793121152245,8.042118779700957,7.933861799913473,8.407070940105086,5.300621061246687,217.98312028824722,217.98312028824722,0.0,242.20346698694135,0.0,217.98312028824722,242.20346698694135,0,0
+2017/03/10 20:00:00,208.81867598211602,0,994.4485447933603,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.004985737101480113,27.097742475311204,0,0,4.3992596106860145,599.655407544689,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,178.04739879961423,0.0,258.49851036343443,0.0,345.99931196933557,0.0,0.0,0.0,0.0,0.0,173.34745471670954,0.0,136.88333738854715,0.0,254.27966640027358,0.0,0.0,0,0,0,0,0,0,0,0,0.052945177119465295,0.001675148498227051,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.45153777824083174,-0.45153777824083174,-0.3055953634978238,-0.3055953634978238,-0.5494007205207496,-0.5494007205207496,0.8592849694711192,0.8592849694711192,-0.047149347792134214,-0.047149347792134214,-0.23537356285444289,-0.3613584190683863,-0.37263082396016006,-0.38798288282291715,-0.048574475236632074,-0.23866858570270588,-0.37065015533498824,-0.36841486344590113,-0.39054700964517336,-0.10918036946098403,9.25474164331726,9.25474164331726,6.940869528027747,6.940869528027747,11.31853978809066,11.31853978809066,20.58353908113098,20.58353908113098,5.046023064558582,5.046023064558582,6.149586929588665,7.717750853984143,7.890858627077435,8.135333718732767,5.048847579030237,6.1820760912680015,7.860049726327986,7.825481109364048,8.177147212968876,5.2468885234369225,208.81867598211602,208.81867598211602,0.0,232.02075109124002,0.0,208.81867598211602,232.02075109124002,0,0
+2017/03/10 21:00:00,210.5130610272644,0,960.3311615577999,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.006473745475928382,24.318845716858235,0,0,5.7722288876695345,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,253.83464642960905,0.0,348.9348487780122,0.0,406.1595469778417,0.0,0.0,0.0,0.0,0.0,236.0314823220158,0.0,209.91315155321078,0.0,304.35996691032574,0.0,0.0,0,0,0,0,0,0,0,0,0.05112874236503084,0.0016176777687562148,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44181094251850095,-0.44181094251850095,-0.27291310464666785,-0.27291310464666785,-0.5860248360369054,-0.5860248360369054,0.8327260423457242,0.8327260423457242,-0.08881177534218024,-0.08881177534218024,-0.24105486371583582,-0.35723529591248754,-0.3690321118676716,-0.38219532129274614,-0.035996161844831384,-0.24386286514175964,-0.36677922419416564,-0.3656470353753301,-0.3849624952539976,-0.11116536788057027,9.072186754911442,9.072186754911442,6.546746256612963,6.546746256612963,12.197497257619233,12.197497257619233,19.628868361089545,19.628868361089545,5.163333444533222,5.163333444533222,6.20588955500871,7.655785090234872,7.835005520849208,8.041987731003829,5.026823688054876,6.2342178087282605,7.80032101574038,7.782971984299863,8.086440240374273,5.2559524044927315,210.5130610272644,210.5130610272644,0.0,233.90340114140488,0.0,210.5130610272644,233.90340114140488,0,0
+2017/03/10 22:00:00,198.4608533697136,0,942.6773581596248,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.025938930024746277,26.88217450931473,0,0,23.6087780020385,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1317.1538577923557,0.0,541.3663899450133,0.0,1449.1994200832012,0.0,0.0,0.0,0.0,0.0,1330.2919281267255,0.0,454.13430965065885,0.0,1378.3310968195178,0.0,296.9486682245901,0,0,0,0,0,0,0,0,0.05018884079582212,0.0015879399382718897,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.449548477615923,-0.449548477615923,-0.33701658504189747,-0.33701658504189747,-0.5039331648832669,-0.5039331648832669,0.7564113848389654,0.7564113848389654,-0.16611848998497955,-0.16611848998497955,-0.26449917218069346,-0.3762141868401074,-0.38021958278520923,-0.3992397803214765,-0.14045008791632504,-0.27538427426717343,-0.3895574651404112,-0.38104875710365943,-0.40568165559847136,-0.18765453901066287,9.217075138842205,9.217075138842205,7.362389660760286,7.362389660760286,10.308218978771578,10.308218978771578,17.050907562095702,17.050907562095702,5.571934684974835,5.571934684974835,6.452573766150266,7.947022278724049,8.010449065498122,8.320992604848755,5.408700594957182,6.574971381895111,8.160977314000093,8.023664862557837,8.42967605043117,5.730082227352256,198.4608533697136,198.4608533697136,0.0,220.51205929968177,0.0,198.4608533697136,220.51205929968177,0,0
+2017/03/10 23:00:00,140.07244691118245,0,812.2572626947526,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.05755348835155735,20.82996061505468,0,0,52.89526884361502,599.6554075446891,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1888.7530427512322,0.0,813.8775339970819,0.0,1999.7143358772612,0.0,287.6338377347847,0.0,0.0,0.0,1912.0143243841367,0.0,748.6952480932899,0.0,1936.834036926037,0.0,69.7785832881411,0,0,0,0,0,0,0,0,0.04324517831023816,0.0013682472973600302,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4929910482443397,-0.4929910482443397,-0.47385709781987473,-0.47385709781987473,-0.5474872968427367,-0.5474872968427367,0.5771892229231721,0.5771892229231721,-0.38815699409430354,-0.38815699409430354,-0.30413226258530157,-0.3969938652286677,-0.3957540570593404,-0.41875495958820885,-0.20535295831286293,-0.3247441531568635,-0.4158205716374714,-0.40256140498065524,-0.4311004890549766,-0.2440421951951563,10.078427830370984,10.078427830370984,9.689026563747461,9.689026563747461,11.274217574138845,11.274217574138845,11.98012221579124,11.98012221579124,8.138164079972242,8.138164079972242,6.922260751099785,8.283518296703065,8.262923844144538,8.65570342170345,5.874550866992365,7.192772333557585,8.60433271538544,8.376811288103795,8.87587496087599,6.236038214141985,140.07244691118245,140.07244691118245,0.0,155.63605212353605,0.0,140.07244691118245,155.63605212353605,0,0
+2017/03/11 00:00:00,90.77086045116852,0,635.0623666455556,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.0697957107848633,11.758108479091101,0,0,63.44562408374998,518.3812137929893,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.619048575628895,0.0,2264.966196994916,0.0,962.7487979094593,0.0,2356.260901018033,0.0,38.280918696129916,0.0,95.69404140089262,0.0,2276.1040473012044,0.0,912.9399291553509,0.0,2298.792807579189,0.0,12.584059334587245,0,0,0,0,0,0,0,0,0.033811190795138106,0.0010697625084140222,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5933947010545529,-0.5933947010545529,-0.6382114932426473,-0.6382114932426473,-0.6301256694993431,-0.6301256694993431,0.36052177749821607,0.36052177749821607,-0.4381623921955468,-0.4381623921955468,-0.3486681595519023,-0.4190215347679454,-0.4139950761380851,-0.44017382492657914,-0.24395874893715844,-0.37128496393264904,-0.442924894179603,-0.4248374590666451,-0.45663251408122474,-0.273710049514839,12.381403132915679,12.381403132915679,13.55050171073016,13.55050171073016,13.333129738087223,13.333129738087223,7.705118560788421,7.705118560788421,9.004759089003215,9.004759089003215,7.529344517959217,8.660388495970508,8.572560989385352,9.041860967756435,6.235190970999184,7.869905830696382,9.092887329317364,8.763362211527578,9.35198460243393,6.555820656408741,90.77086045116852,90.77086045116852,0.0,100.85651161240946,0.0,90.77086045116852,100.85651161240946,0,0
+2017/03/11 01:00:00,40.72883410415065,0,552.9045846298371,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.5785225427817824e-09,9.543200036772067,0,0,0.0,499.6690558610209,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029437049625804394,0.0009313677308442144,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44790937186903823,-0.44790937186903823,-0.46356707259752594,-0.46356707259752594,-0.49688445258592095,-0.49688445258592095,0.40460554549946626,0.40460554549946626,-0.08238269285091969,-0.08238269285091969,-0.31724294022720295,-0.4171799692858316,-0.4542805675134135,-0.47187960996507927,-0.012384974456620452,-0.3599566569894474,-0.4653236319249215,-0.4768428097726592,-0.50692967223697,-0.07836471135196998,9.18616732589804,9.18616732589804,9.486139597985499,9.486139597985499,10.159598876265932,10.159598876265932,8.411397005787776,8.411397005787776,5.140535064170862,5.140535064170862,7.092243307849415,8.6280850487191,9.306954317253286,9.649682491504322,5.003175221733841,7.696602780061809,9.520450481708622,9.7487497111955,10.37204995058191,5.127157300540674,40.72883410415065,40.72883410415065,0.0,45.25426011572294,0.0,40.72883410415065,45.25426011572294,0,0
+2017/03/11 02:00:00,23.77467759323996,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5775821695621663,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.43620896298048156,-0.43620896298048156,-0.426735960802155,-0.426735960802155,-0.4940241195602897,-0.4940241195602897,0.35949438531581246,0.35949438531581246,0.03419925250367793,0.03419925250367793,-0.363881195379901,-0.465445308146057,-0.5038309427264694,-0.5204178342129582,0.06313710573368206,-0.4213031331937807,-0.5259958215867516,-0.537943688276038,-0.567371896370739,-0.027510662415513136,8.968893491476209,8.968893491476209,8.79729021464776,8.79729021464776,10.099901845014784,10.099901845014784,7.689646936560024,7.689646936560024,5.02421234581675,5.02421234581675,7.756022261304295,9.522832106535134,10.306048310067553,10.664179610920996,5.082533026541242,8.700612364823542,10.78728964668673,11.055520300719408,11.74256750767367,5.015667427424717,23.77467759323996,23.77467759323996,0.0,26.41630843693329,0.0,23.77467759323996,26.41630843693329,0,0
+2017/03/11 03:00:00,28.344215667787108,0,71.02012660302111,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248525813142144,0,0,0.0,17.784597834204906,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.003781164145426086,0.00011963339787245286,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47667132026353737,-0.47667132026353737,-0.46021785309312446,-0.46021785309312446,-0.5351430178045163,-0.5351430178045163,0.27625128898483176,0.27625128898483176,0.10402630534270209,0.10402630534270209,-0.45491127272116777,-0.5587330962023306,-0.5991468820348316,-0.6146716533519203,0.08716470176975546,-0.5109637478360055,-0.618520343420522,-0.6316335177597409,-0.6612288232742576,-0.039110350354590304,9.745309003713999,9.745309003713999,9.421087539382256,9.421087539382256,10.992090259728755,10.992090259728755,6.5849352242566255,6.5849352242566255,5.224118124076014,5.224118124076014,9.319006415482207,11.53698812382008,12.526579597032466,12.925569769727076,5.157329336523048,10.45859609215438,13.02609997985023,13.373450229350865,14.184801031178566,5.0316660626883305,28.344215667787108,28.344215667787108,0.0,31.493572964207896,0.0,28.344215667787108,31.493572964207896,0,0
+2017/03/11 04:00:00,23.722039347865497,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249439241877039,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5178655913527949,-0.5178655913527949,-0.49685574373600533,-0.49685574373600533,-0.5770136063162443,-0.5770136063162443,0.19032313802734105,0.19032313802734105,0.1598910891166083,0.1598910891166083,-0.5236764134369756,-0.6218040335208006,-0.6685634582400164,-0.6802244069284064,0.11911267126194651,-0.5878671544611404,-0.6915720739885095,-0.7083564325991089,-0.7353439145014441,-0.04011816153288158,10.608298857695289,10.608298857695289,10.158997947900701,10.158997947900701,11.975836003795706,11.975836003795706,5.751027188377805,5.751027188377805,5.529810594841095,5.529810594841095,10.735935140564905,13.112380215714438,14.391748653158686,14.725558804067646,5.293880839052804,12.24324906842331,15.056048103468697,15.555074861587954,16.38291604576233,5.033319176173521,23.722039347865497,23.722039347865497,0.0,26.35782149762833,0.0,23.722039347865497,26.35782149762833,0,0
+2017/03/11 05:00:00,39.06084098615823,0,383.8605619842086,0,0,0,0.0,0.0025547609252347682,4.633261998087618,9.319298099999997,23.111338313975452,0,0.8414314623863647,0.6279093039754134,0.5250470468081465,0,0,295.13468070284824,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,587.7394546003579,0.2484695347293382,625.7946319018665,0.6483601535326216,1323.927842477728,0.2978123207115914,806.8470182435974,0.0,0.0,0.3321788860594552,927.6418363741975,0.26197073192392967,818.8475049287812,0.5285183726484775,1496.4853749811307,0.237450925629355,943.7225612991676,0.0,0.0,0,0,0,0,0,0,0,0,0.020437020648116595,0.0006466130875278766,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4403680817959141,-0.4403680817959141,-0.4197708743123423,-0.4197708743123423,-0.4977369040650977,-0.4977369040650977,0.2452864786873597,0.2452864786873597,0.29002073399501577,0.29002073399501577,-0.4423565027922744,-0.49714257041129334,-0.5060847362381364,-0.5221323683045157,0.15009018558554763,-0.4774369505948283,-0.5385288721377741,-0.5304722749538688,-0.5568118945258915,-0.00534332624528786,9.045453338096692,9.045453338096692,8.673574501776798,8.673574501776798,10.177458458951818,10.177458458951818,6.24870632527734,6.24870632527734,6.747425944568548,6.747425944568548,9.082318242503845,10.165003350273437,10.354012006721987,10.701877214398749,5.466787387132214,9.76068016067012,11.068816554841817,10.887062248553946,11.491708780865594,5.000591023535705,39.06084098615823,39.06084098615823,0.0,43.400934429064705,0.0,39.06084098615823,43.400934429064705,0,0
+2017/03/11 06:00:00,72.38902752846433,0,212.9421150752648,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5250203392645815,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.23390039794323347,-0.23390039794323347,-0.21854315396746,-0.21854315396746,-0.28837170088948755,-0.28837170088948755,0.41393708545171043,0.41393708545171043,0.6024430454256151,0.6024430454256151,-0.5335225141472267,-0.598629794553327,-0.6187520756430035,-0.6366101505104143,0.21728636700003262,-0.5606928838660287,-0.6416439578504615,-0.6380320926882388,-0.6659371539498583,0.062813692249776,6.13520883494607,6.13520883494607,5.9907426729143936,5.9907426729143936,6.727544255252795,6.727544255252795,8.571554034324421,8.571554034324421,12.610417055287442,12.610417055287442,10.955543993643204,12.513470337720818,13.032173488848969,13.5072274433862,5.979357660335509,11.583341777370265,13.643634438694335,13.54564810471183,14.317379378658998,5.081689509044594,72.38902752846433,72.38902752846433,0.0,80.4322528094048,0.0,72.38902752846433,80.4322528094048,0,0
+2017/03/11 07:00:00,103.35738348258145,0,727.6759143017455,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,80.56906512710079,0,0.0,2.520231793349311e-09,0.5250495784744058,0,0,0.0,496.98862297020867,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03874200467182583,0.001225770022411625,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.08745522811966604,-0.08745522811966604,-0.07546513914418773,-0.07546513914418773,-0.1402170825813903,-0.1402170825813903,0.529112411397793,0.529112411397793,0.8411969847395171,0.8411969847395171,-0.5041481440922084,-0.588423458304105,-0.6204369862987961,-0.63664880229772,0.30469218065197134,-0.5560895529240502,-0.6489620083790155,-0.6528135727509107,-0.682269006255838,0.14970870827520846,5.158380222542775,5.158380222542775,5.117919148710243,5.117919148710243,5.407344490189004,5.407344490189004,10.856661432414114,10.856661432414114,19.930166387020137,19.930166387020137,10.312785496502244,12.257093173290727,13.076403667390665,13.50827064923648,6.929371498506882,11.474725859335308,13.843900214487121,13.950234710911985,14.784694447527372,5.464415255705404,103.35738348258145,103.35738348258145,0.0,114.84153720286828,0.0,103.35738348258145,114.84153720286828,0,0
+2017/03/11 08:00:00,120.4295845837213,0,801.9052528289842,0,0,0,0.0,0.0,7.581057966982892,0.0,69.33401494192633,0,39.380909295966944,0.12397411560315079,0.5776530607876792,0,0,40.58574619311736,495.1418627917859,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1639.1144672754667,0.0,2743.393857471913,0.0,2336.1692688935545,0.0,2812.2611584906563,0.0,1630.5987422959856,0.0,1774.3271428983785,0.0,2787.557717134689,0.0,2361.7370258539922,0.0,2804.747717747738,0.0,2384.024626909956,0,0,0,0,0,0,0,0,0.04269402963718192,0.001350809337526847,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.29304318395599144,-0.29304318395599144,-0.2734942144086531,-0.2734942144086531,-0.3500083512419998,-0.3500083512419998,0.3885814192617579,0.3885814192617579,0.573747367274532,0.573747367274532,-0.44471242654222665,-0.5110048007242859,-0.5118594390678941,-0.5439047743383144,0.06852597212675951,-0.4790034239685407,-0.55390336762092,-0.5324885291870699,-0.5788030035705602,-0.038815986242336176,6.784164464402053,6.784164464402053,6.553360410387754,6.553360410387754,7.548918111402145,7.548918111402145,8.145068982751923,8.145068982751923,11.896361945447538,11.896361945447538,9.126216532877422,10.459480448609085,10.477907519265443,11.191659317238802,5.097226044071107,9.792208202026004,11.42346445902227,10.932284575660873,12.019571831773447,5.031191155087839,120.4295845837213,120.4295845837213,0.0,133.8106495374681,0.0,120.4295845837213,133.8106495374681,0,0
+2017/03/11 09:00:00,143.80621691153925,0,844.505875881073,0,0,0,0.0,0.0,12.503018240070961,0.0,87.89947186453183,0,39.380909295966944,0.065993444057629,0.5248488644576357,0,0,33.22937091309174,491.8633323550842,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1074.6660580627179,0.0,2298.7155852664373,0.0,1743.9535709181444,0.0,2352.540094426361,0.0,161.72991939212517,0.0,1153.4001115014544,0.0,2370.7670209446565,0.0,1836.9877623422326,0.0,2395.200851182892,0.0,690.3709527575642,0,0,0,0,0,0,0,0,0.04496211836304064,0.001422570083824759,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4253592417995405,-0.4253592417995405,-0.4195578595305961,-0.4195578595305961,-0.458933159905472,-0.458933159905472,0.38617787514702584,0.38617787514702584,0.04372352616551206,0.04372352616551206,-0.4124602232914555,-0.46871940233958415,-0.46213947400579963,-0.48938393965086585,-0.1501189804751359,-0.43465589512241526,-0.49470640953379647,-0.47057604963458277,-0.507897566990923,-0.2036885370036162,8.772671546717035,8.772671546717035,8.669823666160454,8.669823666160454,9.396263057192442,9.396263057192442,8.10606773272913,8.10606773272913,5.039577508746532,5.039577508746532,8.545958241384128,9.587156975721442,9.458352206365703,10.003809789902945,5.466966687705536,8.940495622064645,10.114109590916328,9.623839059455861,10.392750783900993,5.8604065279613025,143.80621691153925,143.80621691153925,0.0,159.78468545726582,0.0,143.80621691153925,159.78468545726582,0,0
+2017/03/11 10:00:00,183.4971017546866,0,1013.6188281247162,0,0,0,0.0,0.0,11.745711980442081,0.0,106.27511244621549,0,39.380909295966944,0.06862105492083614,22.594771774687054,0,0,41.314719198313746,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,642.2608498387328,0.0,2298.4741509341115,0.0,1285.694470432391,0.0,2319.7524612748134,0.0,207.0240904945085,0.0,660.0713891058001,0.0,2268.182693855858,0.0,1244.918926733386,0.0,2267.7559014750077,0.0,107.14014540613734,0,0,0,0,0,0,0,0,0.053965817203583344,0.00170744083904372,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4512069101000635,-0.4512069101000635,-0.40142227709938033,-0.40142227709938033,-0.38535440507528607,-0.38535440507528607,0.4440964975932199,0.4440964975932199,-0.14784464030963038,-0.14784464030963038,-0.4005854983836014,-0.4561604483592666,-0.44716584333230996,-0.47447320728577025,-0.1991338093169196,-0.41773721181320494,-0.4769749094820544,-0.45207824080944603,-0.48749936624633716,-0.23681322586332693,9.248465002464172,9.248465002464172,8.357615473483904,8.357615473483904,8.092762404095438,8.092762404095438,9.114716798314745,9.114716798314745,5.452911118266314,5.452911118266314,8.343550017712062,9.342927351388923,9.172185068576795,9.70131911552241,5.822292704577833,8.637844464954142,9.751400979835722,9.265004466390039,9.965048199459574,6.1637260471033954,183.4971017546866,183.4971017546866,0.0,203.88566861631844,0.0,183.4971017546866,203.88566861631844,0,0
+2017/03/11 11:00:00,210.06094266957004,0,1076.7515444251596,0,0,0,0.0,0.0,14.932575465546352,0.0,131.64086955684016,0,39.380909295966944,0.051709266531348566,20.62290388223088,0,0,33.976397287708764,581.4005644743771,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2199.653254675998,0.0,413.00385503606674,0.0,2178.065426574905,0.0,49.03102367430592,0.0,0.0,0.0,2111.305995877251,0.0,263.41708935073916,0.0,2030.775790701533,0.0,22.13266614882721,0,0,0,0,0,0,0,0,0.057327049782242796,0.0018137878948601249,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2543243271878657,-0.2543243271878657,-0.3116549031842678,-0.3116549031842678,-0.408029508058476,-0.408029508058476,0.6134789553007929,0.6134789553007929,-0.11728504613038337,-0.11728504613038337,-0.363206244081982,-0.43328738218531915,-0.41974155599168506,-0.44473683116169543,-0.22698311348339792,-0.36161559318974973,-0.4448997250903801,-0.4165373382961106,-0.4482114271796382,-0.2528974103864121,6.342673849002011,6.342673849002011,7.0189035309940095,7.0189035309940095,8.46972927728855,8.46972927728855,12.894546217724738,12.894546217724738,5.284926168275092,5.284926168275092,7.745756448934017,8.915558199394923,8.673058139504846,9.126672516555502,6.068913663053337,7.7216398675269176,9.129716734420242,8.616846685175815,9.191854349728985,6.327609752050918,210.06094266957004,210.06094266957004,0.0,233.40104741063337,0.0,210.06094266957004,233.40104741063337,0,0
+2017/03/11 12:00:00,217.25751952227085,0,1129.7894254077864,0,0,0,0.0,0.0,14.876918395255093,0.0,136.4899973586286,0,39.380909295966944,0.02225152523561351,23.055467744730233,0,0,15.523906431207395,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1370.3008066371854,0.0,307.45866350923745,0.0,1401.4602186190946,0.0,0.0,0.0,0.0,0.0,1266.9120258467697,0.0,109.97375185594134,0.0,1234.9045298408755,0.0,0.0,0,0,0,0,0,0,0,0,0.06015082585126988,0.001903130201349853,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2349069305734519,-0.2349069305734519,-0.26257485445784046,-0.26257485445784046,-0.31435135581982343,-0.31435135581982343,0.7786082509983074,0.7786082509983074,-0.03279996181238408,-0.03279996181238408,-0.28585334061765877,-0.40647731168938495,-0.3925464020680663,-0.42057615070546117,-0.1779832644746024,-0.26175304315947495,-0.4068091739780847,-0.3797896914043038,-0.4150008963360431,-0.2318193031972392,6.145022741191212,6.145022741191212,6.431454856883079,6.431454856883079,7.054127822871422,7.054127822871422,17.77524652643858,17.77524652643858,5.022271449844567,5.022271449844567,6.69740299824042,8.44322311932892,8.209946485644537,8.687771658780619,5.656667758215036,6.422483183970414,8.44888151191222,8.003608792495271,8.590049060262075,6.115052538674718,217.25751952227085,217.25751952227085,0.0,241.39724391363427,0.0,217.25751952227085,241.39724391363427,0,0
+2017/03/11 13:00:00,205.39026451764312,0,1087.1231232899993,0,0,0,0.0,0.0,14.876918395255093,0.0,124.80122689546741,0,39.380909295966944,0.011475973758841114,22.88775875474055,0,0,8.347956825964511,599.6554075446891,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,801.6368109503801,0.0,0.0,0.0,895.0669808882892,0.0,0.0,0.0,0.0,0.0,635.037205177671,0.0,0.0,0.0,661.9353819157202,0.0,0.0,0,0,0,0,0,0,0,0,0.05787924032330446,0.0018312588186707576,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.24866810006263515,-0.24866810006263515,-0.2441908224694596,-0.2441908224694596,-0.420370088906696,-0.420370088906696,0.8780474699798194,0.8780474699798194,0.000855083456156269,0.000855083456156269,-0.21684458593856587,-0.38070735998900046,-0.3622784474548868,-0.3992374169210944,-0.11342300778997444,-0.2128612862592136,-0.3742526900673317,-0.32092432988250014,-0.38951591664998064,-0.17564955113372716,6.283463425339008,6.283463425339008,6.2375479750263025,6.2375479750263025,8.684136107593034,8.684136107593034,21.275596904644786,21.275596904644786,5.000015135537822,5.000015135537822,5.9753713616379684,8.018219949533119,7.731676604889486,8.3209530568286,5.266460145131475,5.9397982211997515,7.916211012377616,7.141282198642131,8.160299295865201,5.639537386446392,205.39026451764312,205.39026451764312,0.0,228.21140501960346,0.0,205.39026451764312,228.21140501960346,0,0
+2017/03/11 14:00:00,200.7881037783131,0,1032.9172090589911,0,0,0,0.0,0.0,14.821261324963833,0.0,122.5097643007467,0,39.380909295966944,0.01056375247140492,20.63362990170992,0,0,7.888291365295785,581.3995112868936,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,738.6055746385655,0.0,0.0,0.0,906.4984355751224,0.0,0.0,0.0,0.0,0.0,490.6430845731763,0.0,0.0,0.0,624.0232597251041,0.0,0.0,0,0,0,0,0,0,0,0,0.054993277298963555,0.0017399489602627838,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42692126084991555,-0.42692126084991555,-0.10835891964710931,-0.10835891964710931,-0.44526353670537044,-0.44526353670537044,0.9222966367435778,0.9222966367435778,-0.003554615849440206,-0.003554615849440206,-0.2209618919503138,-0.3580266195381168,-0.3476568181503135,-0.3840100358037676,-0.08730455192387157,-0.1897542378156449,-0.34706356217225975,-0.28669935453684003,-0.3725155377525395,-0.152877709289622,8.800609984006599,8.800609984006599,5.243185500877843,5.243185500877843,9.13651989049663,9.13651989049663,22.964760960062208,22.964760960062208,5.00026155704856,5.00026155704856,6.0128398417079865,7.667621640671868,7.514624372147253,8.071102812006998,5.157834762574353,5.746537122954862,7.506009727337286,6.7074987420512,7.889060788175627,5.484304927774929,200.7881037783131,200.7881037783131,0.0,223.09789308701454,0.0,200.7881037783131,223.09789308701454,0,0
+2017/03/11 15:00:00,185.23080390975255,0,984.9716540278458,0,0,0,0.0,0.0,15.137024940483485,0.0,108.75639138185811,0,39.380909295966944,0.019026076547956693,18.50547701244172,0,0,14.644209413862106,562.1883907197264,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1229.0182900555628,0.0,0.0,0.0,1351.7067028288454,0.0,0.0,0.0,0.0,0.0,1067.721357785109,0.0,0.0,0.0,1153.0834648655896,0.0,91.88051394619112,0,0,0,0,0,0,0,0,0.052440620435513126,0.0016591846764518255,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3863516534005542,-0.3863516534005542,-0.25736932824028635,-0.25736932824028635,-0.5126146295300323,-0.5126146295300323,0.8964989428296566,0.8964989428296566,-0.05770648568088971,-0.05770648568088971,-0.27362518115038403,-0.3850216619016584,-0.36967403175789143,-0.40475166145308744,-0.15609204123130516,-0.2622987654351023,-0.38326836144765886,-0.3167655368603257,-0.40069392569023515,-0.22431004820298722,8.108879279378513,8.108879279378513,6.37510657468674,6.37510657468674,10.49421665882096,10.49421665882096,21.970286952372703,21.970286952372703,5.06894375542862,5.06894375542862,6.554853030633581,8.087394277372795,7.844927851589617,8.413876055279545,5.5049064348770145,6.428437635746022,8.05918647880705,7.085925994891369,8.34537088827257,6.043832616825895,185.23080390975255,185.23080390975255,0.0,205.8120043441695,0.0,185.23080390975255,205.8120043441695,0,0
+2017/03/11 16:00:00,183.00823481160842,0,1014.4408185799116,0,0,0,0.0,0.0,15.326422632075596,0.0,106.31215624428707,0,39.380909295966944,0.03194179952340961,18.524829637301174,0,0,25.37910853368076,580.9226561519733,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1597.236362247765,0.0,184.9133707644628,0.0,1698.111984280417,0.0,285.6773202498264,0.0,0.0,0.0,1477.7917907324945,0.0,0.0,0.0,1535.7268223756346,0.0,39.423392298299824,0,0,0,0,0,0,0,0,0.05400958058427176,0.0017088254819031088,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.38682578649925126,-0.38682578649925126,-0.1907140168178135,-0.1907140168178135,-0.5400328944353527,-0.5400328944353527,0.8790389435218237,0.8790389435218237,-0.09763297336643033,-0.09763297336643033,-0.2628055601937697,-0.3927516535560207,-0.37920552060731727,-0.41156132960845343,-0.21038049688870028,-0.2436409493190677,-0.3948045343018351,-0.3497153745097112,-0.4112604481240924,-0.24934167566759474,8.116556807870921,8.116556807870921,5.754120051140731,5.754120051140731,11.103058259287224,11.103058259287224,21.312570979742645,21.312570979742645,5.197405300101522,5.197405300101522,6.433978570572364,8.213323229041904,7.994326324466485,8.530425083619491,5.917979119768461,6.23196697926528,8.247195770000957,7.544632641692189,8.525233491956996,6.29044399096999,183.00823481160842,183.00823481160842,0.0,203.34248312400933,0.0,183.00823481160842,203.34248312400933,0,0
+2017/03/11 17:00:00,195.63827905306073,0,1036.5278084957147,0,0,0,0.0,0.0,16.30629050613577,0.0,120.17895923267236,0,39.380909295966944,0.04046631204709309,16.29967850378425,0,0,33.22465685136765,541.9285689812731,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1776.2553266107404,0.0,328.19979550804237,0.0,1858.752457320587,0.0,39.3954755358484,0.0,0.0,0.0,1691.1761202695757,0.0,94.21251330592693,0.0,1713.744244256452,0.0,0.0,0,0,0,0,0,0,0,0,0.05518550828736979,0.0017460310147399047,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3461595990390477,-0.3461595990390477,-0.12988773268255135,-0.12988773268255135,-0.5226985964973271,-0.5226985964973271,0.9050756180289884,0.9050756180289884,-0.05998334156154379,-0.05998334156154379,-0.27587006823344185,-0.40148593232061924,-0.38596462655964153,-0.4186867665170649,-0.22553521758509965,-0.2874355075083817,-0.4093391647720491,-0.3759812594357083,-0.4225787312532522,-0.25172282383764694,7.492912087965792,7.492912087965792,5.34949663802098,5.34949663802098,10.714354866246268,10.714354866246268,22.297921177719303,22.297921177719303,5.0744924403020235,5.0744924403020235,6.580550283599308,8.358686683580927,8.102619360875508,8.6545054138969,6.05529104367649,6.716308063451635,8.492173943495345,7.943354857907195,8.72319805483879,6.315273776044279,195.63827905306073,195.63827905306073,0.0,217.37586561451192,0.0,195.63827905306073,217.37586561451192,0,0
+2017/03/11 18:00:00,222.01245851405452,0,1078.9068309452705,0,0,0,0.0,0.0,22.213109667387844,0.0,138.40412594678773,0,39.380909295966944,0.043749342176199336,18.538589059281453,0,0,36.6145484238878,580.9176998583088,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1872.0005961232157,0.0,429.4698846711601,0.0,1914.213458982408,0.0,0.0,0.0,0.0,0.0,1797.6617653289265,0.0,216.15042541628338,0.0,1767.2556725923675,0.0,0.0,0,0,0,0,0,0,0,0,0.057441798833008595,0.0018174184748396684,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.23606694840798353,-0.23606694840798353,-0.2803590033006558,-0.2803590033006558,-0.523701485034082,-0.523701485034082,0.9272795853954644,0.9272795853954644,-0.03844482103208023,-0.03844482103208023,-0.30914313735511867,-0.4082145125588398,-0.38923753373278824,-0.42157268993900177,-0.22793792060627074,-0.3111736312062921,-0.42033346833014784,-0.38574735549130396,-0.42801001013310624,-0.2521735063357509,6.156385899398842,6.156385899398842,6.632572417064722,6.632572417064722,10.736489011134381,10.736489011134381,23.15993783496191,23.15993783496191,5.030597457207321,5.030597457207321,6.986368755064092,8.47289539670193,8.15575834616736,8.705379310869972,6.077945125572697,7.012648956210867,8.683490200797422,8.099107940510123,8.820145389509605,6.320000164301263,222.01245851405452,222.01245851405452,0.0,246.68050946006056,0.0,222.01245851405452,246.68050946006056,0,0
+2017/03/11 19:00:00,226.85352990937912,0,1035.7168010745409,0,0,0,0.015454533737896903,0.0,24.999863057464953,13.929299233552332,120.14191543460078,0,39.380909295966944,0.01191160733388045,25.514197411343726,0,0,10.177163379322124,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,59.81798491772418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,681.7129052528543,0.0,345.18626610906176,0.0,727.4176914194693,0.0,0.0,0.0,0.0,0.0,628.776364606168,0.0,184.92095956131186,0.0,612.0910085591834,0.0,0.0,0,0,0,0,0,0,0,0,0.055142329651547896,0.0017446648728004922,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3563476037120391,-0.3563476037120391,-0.27137322531596275,-0.27137322531596275,-0.5120602947937046,-0.5120602947937046,0.9470440976918701,0.9470440976918701,-0.022005334859115343,-0.022005334859115343,-0.282244518558783,-0.3846032488692276,-0.3686253323734786,-0.39821619038901146,-0.13283505158789763,-0.27862071680491896,-0.3935149522031325,-0.3647185826296834,-0.40324856057249653,-0.13759194615611753,7.642538789483254,7.642538789483254,6.529288270116837,6.529288270116837,10.4822428040832,10.4822428040832,23.94384601101504,23.94384601101504,5.010024119712625,5.010024119712625,6.654677056588156,8.080650755170765,7.828726911705687,8.303886694772189,5.365550101140116,6.612326650436202,8.225896618903775,7.768785652994396,8.388417622971332,5.392222149046404,226.85352990937912,226.85352990937912,0.0,252.0594776770879,0.0,226.85352990937912,252.0594776770879,0,0
+2017/03/11 20:00:00,218.48957684503074,0,993.4134876271188,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.89738010901058,0,39.380909295966944,0.003875496492389283,26.99026618424061,0,0,3.364202444444461,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,143.3177406296577,0.0,390.58559257708333,0.0,190.15000013812235,0.0,0.0,0.0,0.0,0.0,60.22398240661448,0.0,190.89055416153934,0.0,49.287167422523865,0.0,0.0,0,0,0,0,0,0,0,0,0.052890069909260845,0.0016734049445090765,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.30807780482274033,-0.30807780482274033,-0.27021793607954386,-0.27021793607954386,-0.5223056152515496,-0.5223056152515496,0.9526444394232775,0.9526444394232775,-0.027013344253597228,-0.027013344253597228,-0.2696995042400228,-0.36060742322983824,-0.35082875286115706,-0.3739501313025705,-0.01013302500234994,-0.26032308203996884,-0.3677684110394348,-0.34666381789185235,-0.3775967800311412,-0.053665970029630826,6.972650203413721,6.972650203413721,6.516256076873816,6.516256076873816,10.70569348649964,10.70569348649964,24.16878314405298,24.16878314405298,5.0151060797812335,5.0151060797812335,6.510426206957234,7.706410339965757,7.560937827910436,7.911473018009474,5.002125499794616,6.406940134044234,7.815523478248309,7.500213495983218,7.968838732659421,5.059625893813163,218.48957684503074,218.48957684503074,0.0,242.7661964944786,0.0,218.48957684503074,242.7661964944786,0,0
+2017/03/11 21:00:00,199.38874160673714,0,968.4668355491929,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,0.015783298311616737,23.599316926127745,0,0,13.907902879062485,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,865.6120531885394,0.0,599.4925568909483,0.0,909.5075214175104,0.0,0.0,0.0,0.0,0.0,736.0733689608808,0.0,335.80012071389433,0.0,723.7107866726667,0.0,0.0,0,0,0,0,0,0,0,0,0.05156189167448057,0.0016313823109772292,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2611951192157511,-0.2611951192157511,-0.3348962169728756,-0.3348962169728756,-0.5835000695753556,-0.5835000695753556,0.8929938399630907,0.8929938399630907,-0.08695795389141991,-0.08695795389141991,-0.2919962426152702,-0.3661002376467214,-0.35712858096329164,-0.3785731881231146,-0.07634610634095576,-0.278613487260334,-0.3745286685683153,-0.3546836551467876,-0.3835665448676629,-0.07125209170933527,6.416408556937654,6.416408556937654,7.332627260848355,7.332627260848355,12.135036888718815,12.135036888718815,21.837251045581,21.837251045581,5.156583624832166,5.156583624832166,6.771394993531132,7.789910047256015,7.654190897026368,7.984294982898447,5.120689074928691,6.612242714271261,7.9205361716574885,7.617799408211269,8.06397450858293,5.1051174539948505,199.38874160673714,199.38874160673714,0.0,221.54304622970793,0.0,199.38874160673714,221.54304622970793,0,0
+2017/03/11 22:00:00,195.1339353566232,0,939.3339146431125,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,0.022372951779459402,26.499636311609702,0,0,20.26533448552625,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1165.7923421232438,0.0,771.9620003609518,0.0,1201.3550971138748,0.0,0.0,0.0,0.0,0.0,1074.8413274671193,0.0,571.4440265084799,0.0,1054.8819706529289,0.0,0.0,0,0,0,0,0,0,0,0,0.05001083338649212,0.0015823079079220882,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3554669461402518,-0.3554669461402518,-0.3872554722026248,-0.3872554722026248,-0.4926278512035498,-0.4926278512035498,0.8284816524057609,0.8284816524057609,-0.14853069663141608,-0.14853069663141608,-0.31495840630207456,-0.37199969879914735,-0.3616834287982442,-0.38335122663296506,-0.12437728400745494,-0.3062669567136764,-0.38162830846803286,-0.36112984338897014,-0.3894812567173482,-0.1180443256510558,7.629430602890892,7.629430602890892,8.123522904727892,8.123522904727892,10.07088915831693,10.07088915831693,19.47903125259873,19.47903125259873,5.457128303958129,5.457128303958129,7.062100302821776,7.881023442920963,7.722666154077672,8.060516691550248,5.320451311540893,6.949441661253175,8.032919469444678,7.714296673362696,8.15973374660281,5.28862949667122,195.1339353566232,195.1339353566232,0.0,216.81548372958133,0.0,195.1339353566232,216.81548372958133,0,0
+2017/03/11 23:00:00,140.08037259777424,0,769.773828907649,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,0.03113510303366922,18.609885890315134,0,0,29.14822199441434,580.9190206067861,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,155.29805077290308,0.0,1510.9809764097336,0.0,917.231194141754,0.0,1537.865383354624,0.0,0.0,0.0,68.96170918051106,0.0,1444.499688793965,0.0,763.0966964122272,0.0,1416.4170106863535,0.0,227.0694188925918,0,0,0,0,0,0,0,0,0.04098332882765013,0.0012966839563700917,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.475035786474608,-0.475035786474608,-0.4272443912436432,-0.4272443912436432,-0.5207310182817165,-0.5207310182817165,0.6617662767220017,0.6617662767220017,-0.358694041040254,-0.358694041040254,-0.3337319321560025,-0.384451024436657,-0.3721283536600504,-0.39514353476227354,-0.15034160915046574,-0.33932465336298206,-0.39845087956305436,-0.376391948699419,-0.40569079291076815,-0.19367146866981394,9.712557932401964,9.712557932401964,8.806402597522904,8.806402597522904,10.671056118442337,10.671056118442337,14.19988622806271,14.19988622806271,7.677625597704903,7.677625597704903,7.316366037860632,8.078199223643352,7.883026966788265,8.252806612706692,5.468354121741356,7.395003721901304,8.307804785836609,7.949822680392714,8.429831471094587,5.777728057973903,140.08037259777424,140.08037259777424,0.0,155.64485844197137,0.0,140.08037259777424,155.64485844197137,0,0
+2017/03/12 00:00:00,92.97609476721514,0,622.0464664198065,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.03026716807798493,14.0028713378446,0,0,29.154845532539788,539.6560921184505,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1542.1541389218355,0.0,486.41297559523827,0.0,1556.5604929708581,0.0,0.0,0.0,0.0,0.0,1519.7242915731738,0.0,412.1587475038569,0.0,1484.6088170499033,0.0,78.21171593750036,0,0,0,0,0,0,0,0,0.03311821462615515,0.001047837225471638,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5706969256389728,-0.5706969256389728,-0.5622901353401795,-0.5622901353401795,-0.5972146374681063,-0.5972146374681063,0.48474950418599405,0.48474950418599405,-0.41208664692444175,-0.41208664692444175,-0.3412175323057131,-0.3876880362765608,-0.37473014382827846,-0.3981277653259154,-0.19059032260671357,-0.3554703475188974,-0.4065464150398067,-0.3838777657067665,-0.41345042567436874,-0.23223620042650905,11.82255664341767,11.82255664341767,11.62124377626931,11.62124377626931,12.477652456524225,12.477652456524225,9.908764549078668,9.908764549078668,8.539498523782441,8.539498523782441,7.421919847926077,8.130543632707273,7.923695761239117,8.302411066245085,5.753140619346155,7.629481167364332,8.444400972014236,8.06897593385547,8.563109312683153,6.119075811940519,92.97609476721514,92.97609476721514,0.0,103.30677196357237,0.0,92.97609476721514,103.30677196357237,0,0
+2017/03/12 01:00:00,23.77472590598696,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5776304823091682,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48075998863487907,-0.48075998863487907,-0.4712577005546676,-0.4712577005546676,-0.5311570800259041,-0.5311570800259041,0.4590006670666002,0.4590006670666002,-0.1055957308467149,-0.1055957308467149,-0.38836021006552573,-0.4731584553137872,-0.47731812717919475,-0.49976848056793466,-0.018457145364284798,-0.4151655125960092,-0.5043429680852611,-0.48682412034387024,-0.5214395407927513,-0.0962289708726314,9.82768805853621,9.82768805853621,9.637343834662076,9.637343834662076,10.902401918240145,10.902401918240145,9.39756574783513,9.39756574783513,5.230934961827046,5.230934961827046,8.141469206643436,9.67510712267456,9.758292948227094,10.22014828236371,5.007052068895874,8.592915351153252,10.316925609269674,9.951197162934804,10.686628641115774,5.191766264281782,23.77472590598696,23.77472590598696,0.0,26.416362117763285,0.0,23.77472590598696,26.416362117763285,0,0
+2017/03/12 02:00:00,28.344177453714643,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248143672417473,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.45081901522605755,-0.45081901522605755,-0.43029189964164216,-0.43029189964164216,-0.506961656434037,-0.506961656434037,0.4216679101801959,0.4216679101801959,0.0766532246816754,0.0766532246816754,-0.4324674531621139,-0.5167074188270029,-0.5209358016648713,-0.5434640635980844,0.09131978059391084,-0.47335009352415314,-0.565081443509328,-0.5478005866671553,-0.5832343330565193,-0.028831991458678877,9.241112549249053,9.241112549249053,8.861254337952175,8.861254337952175,10.37273336497664,10.37273336497664,8.707063967364775,8.707063967364775,5.121662277604727,5.121662277604727,8.900655751965942,10.583033913408912,10.675554793230205,11.181541677451534,5.172692098375435,9.67892314226718,11.687745790803916,11.281463701172967,12.128478904210539,5.017208631260203,28.344177453714643,28.344177453714643,0.0,31.49353050412738,0.0,28.344177453714643,31.49353050412738,0,0
+2017/03/12 03:00:00,23.72196513020418,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248697065263845,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4496116673381168,-0.4496116673381168,-0.4244984225842313,-0.4244984225842313,-0.5076117669363777,-0.5076117669363777,0.3835201385188146,0.3835201385188146,0.13586442678129057,0.13586442678129057,-0.45532433924491983,-0.5387048291908932,-0.5433546213885143,-0.5671355649558515,0.12506496645144835,-0.5167135456161003,-0.6081962875034648,-0.5902772556205763,-0.6276331096580469,-0.004090692898177391,9.218268989756837,9.218268989756837,8.75731958605742,8.75731958605742,10.386634025674113,10.386634025674113,8.063229097035673,8.063229097035673,5.382427043376964,5.382427043376964,9.326908950080167,11.072817463711615,11.179030456769297,11.736900415115613,5.324007111657252,10.58316741350599,12.757879781430645,12.303323477736996,13.266693951787744,5.000346397632924,23.72196513020418,23.72196513020418,0.0,26.357739033560197,0.0,23.72196513020418,26.357739033560197,0,0
+2017/03/12 04:00:00,38.57859351761716,0,342.2326045440619,0,0,0,0.0,0.00026189126542516307,4.633261998087618,9.319298099999997,23.111338313975452,0,0.5644041648115518,0.424950129502389,0.5250789199747096,0,0,253.50672326270163,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,159.73162093081865,0.0,286.54452429023064,0.0,546.6079038760779,0.0,357.7105199304946,0.0,0.0,0.0,547.1319826500938,0.0,549.4422191809806,0.26189126542516306,892.8828285905511,0.0,596.6145947860457,0.0,0.0,0,0,0,0,0,0,0,0,0.018220717359897595,0.0005764907963794582,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.34931664436070553,-0.34931664436070553,-0.3249197366952193,-0.3249197366952193,-0.4085294571458125,-0.4085294571458125,0.45684749235772837,0.45684749235772837,0.2843959563959329,0.2843959563959329,-0.4058388725748132,-0.45346148010258536,-0.44615492510919186,-0.4661200914786543,0.17277903011753035,-0.43961118197650273,-0.4923420561387484,-0.4721033325817491,-0.5009665270014411,0.0433633494114414,7.53880614588563,7.53880614588563,7.195154020795201,7.195154020795201,8.478288648703867,8.478288648703867,9.356112444645348,9.356112444645348,6.680082426608564,6.680082426608564,8.432350723178118,9.291327989291588,9.15321261025737,9.536051528974838,5.618778331916204,9.031465225325533,10.06496107952617,9.65412521650397,10.24540660563433,5.038928092587753,38.57859351761716,38.57859351761716,0.0,42.86510390846351,0.0,38.57859351761716,42.86510390846351,0,0
+2017/03/12 05:00:00,73.4012109678154,0,319.37971125316466,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,0.5784658235083037,0.4337680572384966,0.5249698978688592,0,0,106.43759617789983,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,229.4559650101988,0.0,293.3916703153684,0.0,533.0839972707662,0.0,349.70135879464067,0.0,0.0,0.0,480.7229520256945,0.0,497.01223109200987,0.0,794.3094440293441,0.0,537.7724021158533,0.0,0.0,0,0,0,0,0,0,0,0,0.017004012393799808,0.0005379950993654468,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.0758216507710853,-0.0758216507710853,-0.060846235277603154,-0.060846235277603154,-0.13249228873709426,-0.13249228873709426,0.6793296392812426,0.6793296392812426,0.6534200348730921,0.6534200348730921,-0.39625987457762196,-0.4384952021744484,-0.4299916372664668,-0.4484264163265081,0.2472896304078965,-0.4212570479779,-0.46498587444649725,-0.4447555080258304,-0.47062767371548314,0.11497013221461921,5.119036211756551,5.119036211756551,5.076651443924021,5.076651443924021,5.363664575096877,5.363664575096877,14.699736456119624,14.699736456119624,13.967036593658591,13.967036593658591,8.271318040012744,9.010885932876363,8.855832248082663,9.195904503386203,6.26923717090466,8.699797687906724,9.513842741249661,9.127021498326329,9.624861127768227,5.273783196761443,73.4012109678154,73.4012109678154,0.0,81.55690107535044,0.0,73.4012109678154,81.55690107535044,0,0
+2017/03/12 06:00:00,104.24792087366968,0,761.1986411339511,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,80.56906512710079,0,0.6045105658707111,0.28607666366464546,0.5249997425475245,0,0,35.114655618616844,495.3966941837974,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.64021974358702,0.0,131.9183585633618,0.0,258.53553863336293,0.0,184.9335915553806,0.0,0.0,0.0,213.36943623601735,0.0,292.3808966813599,0.0,461.506078480336,0.0,330.51634550417214,0.0,0.0,0,0,0,0,0,0,0,0,0.0405267794788797,0.0012822390532161432,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.06595881669137092,0.06595881669137092,0.08664217351116413,0.08664217351116413,0.004264682387715428,0.004264682387715428,0.8081600898837977,0.8081600898837977,0.8807561069604366,0.8807561069604366,-0.38439805591599546,-0.4253126176756467,-0.41702484247412686,-0.4355151930736047,0.28433426928337513,-0.4069056696806246,-0.448626930077966,-0.42860302959704283,-0.4544608471032172,0.20407259794977098,5.090076440536478,5.090076440536478,5.155448070174387,5.155448070174387,5.0003764909798605,5.0003764909798605,18.772116599081485,18.772116599081485,21.37670300017686,21.37670300017686,8.077346412646278,8.771839231766677,8.625370562299679,8.956195095421293,6.6793512712208525,8.45052768939864,9.19968374850228,8.830807325853854,9.31039751904079,5.863660010908234,104.24792087366968,104.24792087366968,0.0,115.83102319296631,0.0,104.24792087366968,115.83102319296631,0,0
+2017/03/12 07:00:00,131.98481737088133,0,761.3721908211934,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,69.33401494192633,0,39.38090929596693,1.3001856196932334e-05,0.5776144563390263,0,0,0.0012229101483546784,495.1933240669642,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.040536019392777886,0.0012825313976511307,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.26125267461927665,-0.26125267461927665,-0.24588020869780233,-0.24588020869780233,-0.31617009576063776,-0.31617009576063776,0.6052793857627642,0.6052793857627642,0.3434746733770072,0.3434746733770072,-0.7609748044754588,-0.9087479913279166,-0.7841209558648492,-0.9258790993358457,-0.35023674884718403,-0.7680463541361737,-0.9052468202193611,-0.7681187856440141,-0.9128654535583977,-0.21943695843870673,6.417034609063322,6.417034609063322,6.254774044209441,6.254774044209441,7.078060260133071,7.078060260133071,12.682936437414611,12.682936437414611,7.454214653594974,7.454214653594974,17.198105520914623,22.439120261347384,17.958394803661676,23.1049817827397,7.552261492688487,17.42796366362913,22.304491595108658,17.43032906867238,22.59808103926963,5.998879758446876,131.98481737088133,131.98481737088133,0.0,146.64979707875702,0.0,131.98481737088133,146.64979707875702,0,0
+2017/03/12 08:00:00,149.033445855589,0,814.6100489705872,0,0,0,0.0,0.0,12.210254823427364,0.0,96.91714705112861,0,39.380909295966944,4.446021104637579e-05,0.5250902248550994,0,0,0.0038959638482717195,495.1929803938418,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04337044239428807,0.0013722105656631,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.39719095929977866,-0.39719095929977866,-0.37478333103604805,-0.37478333103604805,-0.41825584926757337,-0.41825584926757337,0.6007060433177341,0.6007060433177341,-0.17972340589254127,-0.17972340589254127,-0.9648043534440488,-1.0548553702228443,-0.9291833308533706,-1.0953201315605818,-0.5004383073334459,-1.037030383140459,-1.1243510882586707,-0.9692041836739274,-1.165185711232897,-0.5448992573714857,8.286798281985938,8.286798281985938,7.924530146319938,7.924530146319938,8.646939721045115,8.646939721045115,12.566177876573065,12.566177876573065,5.669589020817199,5.669589020817199,24.661426949566263,28.485500578904123,23.234767942728396,30.30034373320595,10.23426254537192,27.70456415835325,31.637085468243512,24.841104271253613,33.56396430974263,11.214521138382523,149.033445855589,149.033445855589,0.0,165.5927176173211,0.0,149.033445855589,165.5927176173211,0,0
+2017/03/12 09:00:00,150.31934084083372,0,899.1029134639649,0,0,0,0.0,0.0,9.754009888177785,0.0,97.06762091869685,0,39.380909295966944,0.1597403906153512,0.5250851449224905,0,0,31.261139385471424,495.19307269678023,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1503.0343055518354,0.0,3200.4433378018416,0.0,1872.4502983720436,0.0,3225.720595417507,0.0,60.79723698966791,0.0,2042.1514607380877,0.0,3537.797534850476,0.0,2190.5681441671427,0.0,3530.453569901901,0.0,779.7553347918083,0,0,0,0,0,0,0,0,0.047868905084343515,0.001514538789489295,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3802436479501253,-0.3802436479501253,-0.3543757092367958,-0.3543757092367958,-0.392807393803735,-0.392807393803735,0.6817719757038837,0.6817719757038837,-0.1940866491199202,-0.1940866491199202,-0.5347912542107236,-0.5871531252324661,-0.5380182228675033,-0.5999974965025174,-0.28249285167056265,-0.583107038289448,-0.637971600090514,-0.5700204355352457,-0.6495350314351103,-0.32533686081023405,8.010832214671325,8.010832214671325,7.613233827680972,7.613233827680972,8.214240563844982,8.214240563844982,14.770302271298704,14.770302271298704,5.781071517662525,5.781071517662525,10.984147477216865,12.2254995118047,11.057213013892067,12.548169715769603,6.657599541180289,12.125338543017051,13.544011817814521,11.806243682339314,13.859679590405662,7.200817305368716,150.31934084083372,150.31934084083372,0.0,167.02148982314858,0.0,150.31934084083372,167.02148982314858,0,0
+2017/03/12 10:00:00,204.03202076667523,0,1050.0002223837248,0,0,0,0.08062142005227933,0.0,13.065493553185489,0.0,124.87761316689259,0,39.380909295966944,0.020524961214053065,23.603880067216373,0,0,6.675678674763466,581.9499610458877,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,316.18787071069875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1215.1148644708294,0.0,22.403781038529598,0.0,1155.0174495965443,0.0,0.0,0.0,0.0,0.0,1305.278776295022,0.0,37.80255953683958,0.0,1175.9046618811126,0.0,35.91026168432593,0,0,0,0,0,0,0,0,0.05590278958187423,0.001768725294911719,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3735200143598613,-0.3735200143598613,-0.3509474586460627,-0.3509474586460627,-0.35488423451812096,-0.35488423451812096,0.8921301016869878,0.8921301016869878,0.03248395180916779,0.03248395180916779,-0.409162278108259,-0.45321740258626364,-0.4311148387757616,-0.4557973359181135,-0.19298174255411915,-0.4245692920872521,-0.46954359031127846,-0.43730967689441935,-0.4680510757864169,-0.23322135166818503,7.90474421526028,7.90474421526028,7.562679358946639,7.562679358946639,7.620775351622058,7.620775351622058,21.80454483626211,21.80454483626211,5.021844350024665,5.021844350024665,8.489138200432564,9.286677127717425,8.876134680844203,9.335967050310742,5.77218960077775,8.758582280997146,9.603422255167061,8.989082797337247,9.573989101206749,6.128612006030153,204.03202076667523,204.03202076667523,0.0,226.70224529630582,0.0,204.03202076667523,226.70224529630582,0,0
+2017/03/12 11:00:00,220.98422629901881,0,1114.867160655569,0,0,0,0.4547679925334185,0.0,13.065493553185489,0.0,143.25325374857618,0,39.380909295966944,0.0017118339466453301,23.11210227358285,0,0,0.6016416789900692,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1832.7207110076781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,161.41001105133114,0.0,0.0,0.0,103.19209020895028,0.0,0.0,0.0,0.0,0.0,125.31142115603642,0.0,0.0,0.0,34.65428826184009,0.0,0.0,0,0,0,0,0,0,0,0,0.05935635342284083,0.0018779936475073233,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.23251308099611478,-0.23251308099611478,-0.34078846207179897,-0.34078846207179897,-0.19214223134606995,-0.19214223134606995,0.9994076490148097,0.9994076490148097,0.2665762858334085,0.2665762858334085,-0.2545253456298378,-0.38862197405735427,-0.32010721434646183,-0.3914329094726973,-0.11755455565743235,-0.24903461941312588,-0.39167882181258706,-0.31039097284768574,-0.389292071420095,-0.16236992846800682,6.121751882024114,6.121751882024114,7.415805267047659,7.415805267047659,5.765475206824348,5.765475206824348,26.094715273699208,26.094715273699208,6.475544546773293,6.475544546773293,6.344802900975608,8.145729164849783,7.130348014444181,8.191658982159467,5.286237938186929,6.287259464313777,8.195693176691705,7.002498524773969,8.156647697741121,5.546384567571494,220.98422629901881,220.98422629901881,0.0,245.538029221132,0.0,220.98422629901881,245.538029221132,0,0
+2017/03/12 12:00:00,198.05051914113932,0,1041.290651917632,0,0,0,0.4632038639091257,0.0,13.195685805097062,0.0,124.80122689546741,0,39.380909295966944,7.515176534319797e-05,18.4934305277062,0,0,0.026588677500402245,562.144304320786,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1867.2388984316353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05543908559902254,0.0017540540241226309,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.25632257532839126,-0.25632257532839126,-0.37833958323106337,-0.37833958323106337,-0.18847646369495114,-0.18847646369495114,1.007550705898043,1.007550705898043,0.29652404342159766,0.29652404342159766,-0.2305851123710634,-0.36164676461757067,-0.28488931663743244,-0.36481709968269743,-0.038159775946525004,-0.21721077909173325,-0.35745826980394446,-0.2659212673285798,-0.3565000912489045,-0.0791627383208872,6.363913472833374,6.363913472833374,7.980593384345596,7.980593384345596,5.736501538991831,5.736501538991831,26.438658059319863,26.438658059319863,6.826953182399905,6.826953182399905,6.103184706485038,7.722111436469632,6.685935828026544,7.770289206428927,5.030145386464525,5.9786750323515605,7.659117617080838,6.468281090633127,7.644811849626677,5.1297610272281275,198.05051914113932,198.05051914113932,0.0,220.05613237904367,0.0,198.05051914113932,220.05613237904367,0,0
+2017/03/12 13:00:00,196.3935097464884,0,1024.5374660182815,0,0,0,0.7931052202192886,0.0,12.968094553189474,0.0,124.7641830973959,0,39.380909295966944,2.802220301526457e-09,18.487217576914492,0,0,0.0,580.9080596114798,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3280.445212276911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05454713357254464,0.0017258332837467203,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.37015808792146965,0.37015808792146965,0.05239318687568362,0.05239318687568362,0.1504820512472187,0.1504820512472187,1.0264414409672413,1.0264414409672413,0.6151376084416744,0.6151376084416744,0.04817691997115521,-0.17131220574812778,-0.1356496152868629,-0.23974414107373587,0.18770947221522424,0.12133620434512049,-0.1365502278787173,-0.08217081228244685,-0.21294172303341788,0.15469998318152925,7.852421657351712,7.852421657351712,5.056830822434961,5.056830822434961,5.469230426290352,5.469230426290352,27.2461453110419,27.2461453110419,12.937706608588556,12.937706608588556,5.048051187348506,5.608303260105359,5.3812177325218045,6.192779818751632,5.730510380948999,5.304962476813984,5.386300702553683,5.139812890475682,5.940509993792773,5.495931527292598,196.3935097464884,196.3935097464884,0.0,218.21501082943155,0.0,196.3935097464884,218.21501082943155,0,0
+2017/03/12 14:00:00,179.0004173756412,0,928.6619594597425,0,0,0,0.474656309340357,0.0,13.065493488391114,0.0,111.01081017850728,0,39.380909295966944,7.045776713527289e-05,14.03888508493209,0,0,0.024130160768953537,520.4987754047161,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1906.9306828056244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04944265058774115,0.001564331000225689,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.08637830911767069,0.08637830911767069,-0.1357966977591605,-0.1357966977591605,-0.021966165356425427,-0.021966165356425427,1.0007618027653566,1.0007618027653566,0.5038321136851973,0.5038321136851973,-0.06254681814332219,-0.24414621493502714,-0.18423984278830788,-0.2989412645972222,0.041108132161029175,0.025698781283529117,-0.1908678713916717,-0.12665894687768958,-0.2604917012552386,0.024461398542169596,5.154502379220759,5.154502379220759,5.3820455463197305,5.3820455463197305,5.0099884648283535,5.0099884648283535,26.151737469079748,26.151737469079748,10.306073172603575,10.306073172603575,5.080996720334241,6.2370947527172405,5.70371526436233,6.856968285447678,5.034983983824944,5.013671582047834,5.75533918999065,5.332324705432669,6.408768475258441,5.012386684435441,179.0004173756412,179.0004173756412,0.0,198.88935263960133,0.0,179.0004173756412,198.88935263960133,0,0
+2017/03/12 15:00:00,175.69536327028584,0,948.4328762585914,0,0,0,0.5058975287255241,0.0,13.01679398839311,0.0,108.75639138185811,0,39.380909295966944,3.0761271286475786e-05,14.03534031407085,0,0,0.009034569667281967,540.2847877946666,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2032.90050766735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05049526884256174,0.0015976351080727626,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2267731026112357,0.2267731026112357,0.16971876261155736,0.16971876261155736,0.01787624017396484,0.01787624017396484,0.9927834354587964,0.9927834354587964,0.5039897135195891,0.5039897135195891,0.0038405269031209464,-0.09183396593406076,-0.19315399712720885,-0.31096020718382217,-0.10986734755512328,0.04564531590502226,-0.026016620291738658,-0.17482576167617445,-0.2851423834685558,-0.1140751435466431,6.066932312139869,6.066932312139869,5.597025670339534,5.597025670339534,5.006615145965142,5.006615145965142,25.816779840643335,25.816779840643335,10.309419972703665,10.309419972703665,5.0003053252678455,5.174643025892095,5.773570931363565,7.0098784518065,5.250006878207941,5.043133417854705,5.014011860157282,5.633544723474131,6.688942288835975,5.269534795781794,175.69536327028584,175.69536327028584,0.0,195.2170703003176,0.0,175.69536327028584,195.2170703003176,0,0
+2017/03/12 16:00:00,190.11051187585957,0,1001.6385505669977,0,0,0,0.5968704781992843,0.0,11.156669655582503,0.0,124.87761316689259,0,39.380909295966944,1.4134327808528432e-05,14.098435144890422,0,0,0.0023947370219242264,540.2615731669019,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2413.336350614056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05332797835253895,0.0016872600624070306,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1955748071126884,0.1955748071126884,0.25455593941102705,0.25455593941102705,0.06852044036611965,0.06852044036611965,1.0030580417199888,1.0030580417199888,0.5873785235958231,0.5873785235958231,-0.018209305916871654,-0.023544215493312686,-0.19643523740611846,-0.30100626234389083,-0.11865184726345562,-0.04541771840035751,-0.01985376503532386,-0.16910061533932205,-0.2725259421959333,-0.15260612451474076,5.793114894239807,5.793114894239807,6.345127078710803,6.345127078710803,5.097210344262919,5.097210344262919,26.24858882976862,26.24858882976862,12.231100143380047,12.231100143380047,5.006863949636696,5.011475195578356,5.800120429732132,6.882805388754804,5.291609889479972,5.042704305320967,5.008159701665619,5.592679245504854,6.542347498167246,5.482583987286276,190.11051187585957,190.11051187585957,0.0,211.23390208428842,0.0,190.11051187585957,211.23390208428842,0,0
+2017/03/12 17:00:00,199.27966094450053,0,1023.5324290547621,0,0,0,0.6914717652839448,0.0,11.340448722882773,0.0,129.38645076019097,0,39.380909295966944,1.4457363199266744e-05,18.480365942812625,0,0,0.004298390737021432,562.1535480009512,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2818.1280200880874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05449362466016929,0.001724140299057953,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2008849172229545,0.2008849172229545,0.29107551221513206,0.29107551221513206,0.14302587648443774,0.14302587648443774,1.0060220648682685,1.0060220648682685,0.6778402335168451,0.6778402335168451,-0.03179121792404513,-0.010960663759283498,-0.14514178805634598,-0.2837005876817605,-0.0471571608610781,-0.08126414342023258,0.04863599386448216,-0.09474848435389002,-0.26221943034668976,-0.08170908197007293,5.836843249132059,5.836843249132059,6.760203169577906,6.760203169577906,5.4238423836888785,5.4238423836888785,26.373900988706453,26.373900988706453,14.656830094807447,14.656830094807447,5.020922562616121,5.002486891795911,5.436487379120649,6.6718497660396,5.0460383202098456,5.136743631599174,5.048971399518237,5.185908656050714,6.42757122080863,5.138245578942048,199.27966094450053,199.27966094450053,0.0,221.42184549388946,0.0,199.27966094450053,221.42184549388946,0,0
+2017/03/12 18:00:00,191.5337427495473,0,1025.5494317328955,0,0,0,0.5720844187051594,0.0,12.424174212353849,0.0,115.6330778413024,0,39.380909295966944,3.007018455425311e-05,23.52346691103437,0,0,0.009794037676781265,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2308.3751767699773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05460101137676043,0.0017275379399161804,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.07446604575040337,0.07446604575040337,0.04262185849031374,0.04262185849031374,0.06503893309318436,0.06503893309318436,0.9931778920838723,0.9931778920838723,0.6243375714078078,0.6243375714078078,-0.05544083999547729,0.02388221366637616,-0.14665436899979564,-0.2355378721065018,-0.05019945164449948,-0.06381866223242166,0.06292116148171596,-0.08783372241902601,-0.206553660553812,-0.08882337956326328,5.114816753615813,5.114816753615813,5.037608066741612,5.037608066741612,5.087581016666832,5.087581016666832,25.833283459961336,25.833283459961336,13.179269682534354,13.179269682534354,5.063635623461678,5.011807042313393,5.445641019473555,6.15119623433894,5.052170845872368,5.0843248359576165,5.081969326206803,5.159754556932526,5.8848264701443185,5.163376144880516,191.5337427495473,191.5337427495473,0.0,212.8152697217192,0.0,191.5337427495473,212.8152697217192,0,0
+2017/03/12 19:00:00,198.48110462445115,0,990.1102192408762,0,0,0,0.30617437301768646,0.0,16.665893516531224,13.929299233552332,104.13412371906301,0,39.380909295966944,0.00017179997059070567,23.03494012561303,0,0,0.060934058201763154,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1209.9594497281603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052714201453624376,0.0016678405891631647,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.12707326576251923,-0.12707326576251923,-0.20513241991078637,-0.20513241991078637,-0.1090093028291584,-0.1090093028291584,0.9790696204749114,0.9790696204749114,0.4694606116973031,0.4694606116973031,-0.09421813141425543,-0.0927354335457255,-0.20363573778841665,-0.2776963200029943,-0.027711438965387428,-0.0820151484811348,-0.048877005772933045,-0.1500015297819968,-0.23630613576004975,-0.04483656686190282,5.334503971117357,5.334503971117357,5.87267005842979,5.87267005842979,5.246115059959109,5.246115059959109,25.24671439094145,25.24671439094145,9.601783353973687,9.601783353973687,5.183832421196016,5.178089860705256,5.859959734199563,6.6016121328034245,5.015896955852654,5.139283512481484,5.049458002115813,5.4662355602807935,6.158735924550598,5.041618336424008,198.48110462445115,198.48110462445115,0.0,220.5345606938346,0.0,198.48110462445115,220.5345606938346,0,0
+2017/03/12 20:00:00,198.04430527417173,0,917.1478215921261,0,0,0,0.2911633800648964,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,0.00028089620402075487,18.502663977870718,0,0,0.09975051437770258,562.1445459523071,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1149.8716081673792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04882962935907056,0.001544935435861597,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.19655485379630191,-0.19655485379630191,-0.2956943440880714,-0.2956943440880714,-0.160429743889808,-0.160429743889808,0.9722978620470525,0.9722978620470525,0.40926593085342067,0.40926593085342067,-0.048740138110022285,-0.10845788947158166,-0.19389973128360374,-0.24219426461676388,-0.10524168651021797,-0.09285378382286577,-0.035442128675963865,-0.14940457930714757,-0.2006233981616963,0.04710333983187141,5.801096784665418,5.801096784665418,6.816707572112591,6.816707572112591,5.533390359766059,5.533390359766059,24.967892642993064,24.967892642993064,8.490916934578934,8.490916934578934,5.049181371304542,5.243630163232069,5.7795653714522786,6.217344364906822,5.229388228226739,5.178544886777601,5.026004285356663,5.462528439236323,5.834662053123225,5.045933281570996,198.04430527417173,198.04430527417173,0.0,220.04922808241304,0.0,198.04430527417173,220.04922808241304,0,0
+2017/03/12 21:00:00,185.7358277232366,0,921.7789655896448,0,0,0,0.015062734456470628,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,0.00743148436383782,23.295357328881956,0,0,2.710385432058644,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,58.20379827376013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,184.51845676840864,0.0,0.0,0.0,970.1044577606215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,755.1761102109331,0.0,0.0,0,0,0,0,0,0,0,0,0.049076194895817694,0.0015527365975739195,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3675952408160619,-0.3675952408160619,-0.304270646930635,-0.304270646930635,-0.3185275071641117,-0.3185275071641117,0.9522222306887147,0.9522222306887147,0.25588058175355183,0.25588058175355183,-0.13231407951825822,-0.22264195379570312,-0.25685352378794957,-0.3221573689785607,-0.1276765758318154,-0.15317293647593452,-0.17939154212729033,-0.21585237182734218,-0.3077756864611797,-0.09209700284170524,7.812859075099709,7.812859075099709,6.92401694615215,6.92401694615215,7.109289480116317,7.109289480116317,24.151782104667376,24.151782104667376,6.3592010028044115,6.3592010028044115,5.362686183381086,6.028332884857804,6.369585231922869,7.1578356106331995,5.337690069958072,5.486179167282131,5.667115042176732,5.966448171866418,6.9687684918733765,5.175645284800069,185.7358277232366,185.7358277232366,0.0,206.37314191470733,0.0,185.7358277232366,206.37314191470733,0,0
+2017/03/12 22:00:00,130.72943193683722,0,727.7323387116359,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,0.014984931333764901,18.48258692859663,0,0,5.867739814291481,562.1580125908957,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,590.3020572004732,0.0,0.0,0.0,1370.2577688901838,0.0,0.0,0.0,0.0,0.0,363.8005923491336,0.0,0.0,0.0,1176.8800953747887,0.0,313.57371960913576,0,0,0,0,0,0,0,0,0.03874500874920233,0.0012258650693258027,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.40838684742292813,-0.40838684742292813,-0.4368218799708834,-0.4368218799708834,-0.48756876260002313,-0.48756876260002313,0.7963807722689676,0.7963807722689676,0.029643617472359614,0.029643617472359614,-0.21272459946032218,-0.2807718963420812,-0.3041464677394173,-0.360439218875592,-0.17618013686899783,-0.2556656118763707,-0.2715451808691355,-0.2959772477842657,-0.3607956067982893,-0.19294745300846314,8.475846009780042,8.475846009780042,8.980129199546639,8.980129199546639,9.966472813120959,9.966472813120959,18.37032942981584,18.37032942981584,5.018191159150277,5.018191159150277,5.938589322191859,6.637400100446598,6.9224409872288675,7.70387363960171,5.643412130396811,6.356911996114746,6.531232815955846,6.82019776319197,7.709249776119734,5.771914776699816,130.72943193683722,130.72943193683722,0.0,145.25492437426357,0.0,130.72943193683722,145.25492437426357,0,0
+2017/03/12 23:00:00,88.53358483289041,0,574.0124687280234,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.011678593166861713,9.578949978430987,0,0,4.94293809720291,515.8340018620044,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,483.56522169362535,0.0,0.0,0.0,1133.0264478717208,0.0,0.0,0.0,0.0,0.0,362.31866993696167,0.0,0.0,0.0,1021.6945162638551,0.0,0.0,0,0,0,0,0,0,0,0,0.0305608490099423,0.0009669239600055479,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48158658265256943,-0.48158658265256943,-0.4370922033166563,-0.4370922033166563,-0.5224758843948882,-0.5224758843948882,0.6474256443562216,0.6474256443562216,-0.14684431725339803,-0.14684431725339803,-0.24644648263748897,-0.3002573608128811,-0.3284078791984896,-0.3727568439180288,-0.1919952758963156,-0.2772509735158469,-0.3029697905482333,-0.3224158627039083,-0.37877966864104984,-0.22756473352150045,9.844430020835588,9.844430020835588,8.985089769082919,8.985089769082919,10.709445429467252,10.709445429467252,13.80166350104625,13.80166350104625,5.446797255365908,5.446797255365908,6.260574971725475,6.873414351743577,7.24273960026342,7.8928245026271355,5.764302889301106,6.596463063008912,6.90754014043732,7.161314031220229,7.987568719729708,6.074410620449925,88.53358483289041,88.53358483289041,0.0,98.37064981432268,0.0,88.53358483289041,98.37064981432268,0,0
+2017/03/13 00:00:00,39.33331956675372,0,549.6811418972803,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.57852609581617e-09,9.535998567752012,0,0,0.0,496.4456131284641,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029265431147097547,0.0009259378418058775,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2697151538065909,-0.2697151538065909,-0.29308977346314413,-0.29308977346314413,-0.37357208384581514,-0.37357208384581514,0.6433969346588605,0.6433969346588605,0.15565646163052416,0.15565646163052416,-0.2204919323914403,-0.24033622318976028,-0.34364004877491133,-0.4128964897878057,0.015270598547330552,-0.25520141428344206,-0.24159639999772947,-0.34248513002502656,-0.4155042414118077,-0.04495281659829099,6.510602023723749,6.510602023723749,6.784733789412911,6.784733789412911,7.905558376959263,7.905558376959263,13.691394896573314,13.691394896573314,5.502089477835739,5.502089477835739,6.008527184240819,6.19869283979142,7.456589329840156,8.55350953748028,5.004827224588055,6.351975834541108,6.211327016547756,7.440029779199946,8.59881693548293,5.041834447145462,39.33331956675372,39.33331956675372,0.0,43.70368840750414,0.0,39.33331956675372,43.70368840750414,0,0
+2017/03/13 01:00:00,23.722050995054467,0,53.27335692806131,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249555713766735,0,0,0.0,17.783004415517173,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028363129827806166,8.973896570194005e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.24893715195350372,-0.24893715195350372,-0.2648293778090721,-0.2648293778090721,-0.32819769682770666,-0.32819769682770666,0.5632498807166904,0.5632498807166904,0.30967524371162275,0.30967524371162275,-0.26793374099154965,-0.28040571423999905,-0.3986011647348589,-0.46101171478015096,0.07820112439313663,-0.29151815043075335,-0.26867349676451174,-0.39274917239954615,-0.4638339468811401,-0.00592139906504863,6.286249443237821,6.286249443237821,6.456213362370846,6.456213362370846,7.239857660811481,7.239857660811481,11.6440712804622,11.6440712804622,6.993238807840143,6.993238807840143,6.490654801693324,6.63311821622554,8.310315005554529,9.436463073821344,5.1266268262464365,6.765579134463266,6.498921925540614,8.21328239895631,9.491343892315541,5.0007258220894215,23.722050995054467,23.722050995054467,0.0,26.357834438949407,0.0,23.722050995054467,26.357834438949407,0,0
+2017/03/13 02:00:00,28.344394883390642,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250317969177445,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2433849133018654,-0.2433849133018654,-0.25800210632954607,-0.25800210632954607,-0.31315593318620255,-0.31315593318620255,0.5136015295912759,0.5136015295912759,0.3853555746225992,0.3853555746225992,-0.3024719888082348,-0.3122091884252403,-0.4389883831876792,-0.5019724246074755,0.09975310544238995,-0.3296135202566954,-0.30304674824204814,-0.43701356618046683,-0.5081190705171772,-0.0049044843334315625,6.229372648606002,6.229372648606002,6.381895330751178,6.381895330751178,7.03847379241131,7.03847379241131,10.51556699372317,10.51556699372317,8.092781280675453,8.092781280675453,6.9012538570420645,7.02611913094637,9.019973868170084,10.26666177073902,5.20607565931293,7.259307091503473,6.908512904163615,8.983646414263518,10.397493882340683,5.00049792967323,28.344394883390642,28.344394883390642,0.0,31.49377209265627,0.0,28.344394883390642,31.49377209265627,0,0
+2017/03/13 03:00:00,23.722215634608023,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251202109302341,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.25471908669257864,-0.25471908669257864,-0.2703669627836662,-0.2703669627836662,-0.3204252474651934,-0.3204252474651934,0.44214185552243257,0.44214185552243257,0.4413812051048245,0.4413812051048245,-0.3349506919177041,-0.33980498131305525,-0.4749242833376874,-0.5311374214499491,0.1271251181978683,-0.3651827514041258,-0.33434926096859496,-0.4778301646196443,-0.5448722353124693,4.490576619823065e-06,6.346856484149086,6.346856484149086,6.51793400738066,6.51793400738066,7.1346003927900625,7.1346003927900625,9.078330545758888,9.078330545758888,9.064215196727716,9.064215196727716,7.333389505580655,7.401819418702445,9.710329315708108,10.901961281990793,5.334777210962258,7.775873347389322,7.32498092069838,9.768584337779373,11.213899371304663,5.00000000041743,23.722215634608023,23.722215634608023,0.0,26.35801737178669,0.0,23.722215634608023,26.35801737178669,0,0
+2017/03/13 04:00:00,40.79747477711542,0,192.38727584642314,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.4315791649952959,0.3327156232584075,0.5250464392276022,0,0,103.66139456506284,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69.94717842519746,0.0,45.315575725195345,0.0,773.5005051593694,0.0,643.3052920954917,0.0,0.0,0.0,134.32653337179255,0.0,0.0,0.0,666.1551423780089,0.0,563.9862020726789,0.0,0.0,0,0,0,0,0,0,0,0,0.010242841068601368,0.00032407635156135313,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.19552442284042496,-0.19552442284042496,-0.21342842964227388,-0.21342842964227388,-0.2579494979390494,-0.2579494979390494,0.4716200770893686,0.4716200770893686,0.5656442672267726,0.5656442672267726,-0.33204643844966003,-0.33694463326460383,-0.39231724831535086,-0.42236768936346397,0.15683584161599315,-0.3568209816773834,-0.34648588048628715,-0.40235645610162535,-0.43955904237991744,0.024359307383915903,5.792705629892524,5.792705629892524,5.944822564838688,5.944822564838688,6.381330279873438,6.381330279873438,9.644531343022322,9.644531343022322,11.701195822093908,11.701195822093908,7.292927186137618,7.36137658551813,8.206178636073673,8.719456537417045,5.509734975083873,7.649598445455908,7.49763561567184,8.373353531279562,9.03050255028694,5.012283504259997,40.79747477711542,40.79747477711542,0.0,45.33052753012824,0.0,40.79747477711542,45.33052753012824,0,0
+2017/03/13 05:00:00,73.7808008403628,0,212.9421150752648,0,0,0,0.23409692948721994,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.18310022494273118,0.0,0.577560655976981,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,758.8435749473152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.013295223393535857,0.013295223393535857,-0.009163258545292468,-0.009163258545292468,-0.04601779860919771,-0.04601779860919771,0.6435447113829794,0.6435447113829794,0.8468540319221143,0.8468540319221143,-0.30899403046161106,-0.3163566316877853,-0.44113797011613237,-0.4856871229778544,0.2744826326510565,-0.335030789855623,-0.31203604495409265,-0.42567020109190773,-0.4811844644384885,0.16828637695920845,5.003659110814738,5.003659110814738,5.001738130397598,5.001738130397598,5.043840326631809,5.043840326631809,13.69542721477444,13.69542721477444,20.13304692930994,20.13304692930994,6.98444577770762,7.08052277101342,9.059706745332804,9.927918881581931,6.564643215945679,7.334510510762982,7.023863778925545,8.778225051270653,9.836281774679378,5.586978352154418,73.7808008403628,73.7808008403628,0.0,81.97866760040311,0.0,73.7808008403628,81.97866760040311,0,0
+2017/03/13 06:00:00,99.98578068784752,0,724.2366706488488,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.6152441019467889,2.520237900575357e-09,0.5248329349875049,0,0,0.0,493.549379317312,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0385588967922749,0.0012199766167393545,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.14981237996045335,0.14981237996045335,0.12344736182204283,0.12344736182204283,0.09294833392225214,0.09294833392225214,0.7461067735596519,0.7461067735596519,0.9534913044286913,0.9534913044286913,-0.28066696930233115,-0.2904235769646398,-0.41273595497180854,-0.4680431603414989,0.37944178873127776,-0.2940807609484258,-0.27178682210907096,-0.39285117592388075,-0.4544020717557298,0.27094025844114666,5.465059315237667,5.465059315237667,5.315674227700271,5.315674227700271,5.1789088250012725,5.1789088250012725,16.721799597244868,16.721799597244868,24.202904918979186,24.202904918979186,6.636172576917787,6.7523003020553745,8.550729907076544,9.57383326046451,7.998078868414112,6.796865401093825,6.533967502570832,8.214961193109815,9.309274801353055,6.524397616305848,99.98578068784752,99.98578068784752,0.0,111.09531187538613,0.0,99.98578068784752,111.09531187538613,0,0
+2017/03/13 07:00:00,164.31522396925064,0,876.0877115642397,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.06653850681594461,27.061891110847345,0,0,19.497887615158515,590.4121801050003,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,697.8482963538138,0.0,2066.4493501224683,0.0,1450.1231320783509,0.0,2390.405365897525,0.0,1263.5264551444077,0.0,596.0320235128327,0.0,1931.4110492861087,0.0,1209.7963298263926,0.0,2188.597336957542,0.0,1865.3555746335744,0,0,0,0,0,0,0,0,0.046643558687688665,0.0014757696836360322,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.09117631408248074,-0.09117631408248074,-0.10595849220184181,-0.10595849220184181,-0.15606650219120055,-0.15606650219120055,0.5757912235334839,0.5757912235334839,0.6543350881914466,0.6543350881914466,-0.31506085947258927,-0.3344268217620139,-0.3927068042785264,-0.44263165252214265,0.11467352182009648,-0.3265830221862585,-0.32829675657019985,-0.38741416392421407,-0.4422796424243348,0.02306559554746452,5.1721497136667125,5.1721497136667125,5.23252517662371,5.23252517662371,5.504741052017792,5.504741052017792,11.946038814639763,11.946038814639763,13.992418091170435,13.992418091170435,7.063447374102665,7.3260644329628235,8.212585226787994,9.087432844552097,5.272371536958758,7.217780358224957,7.241215696247565,8.126097621184954,9.08089011023796,5.011013378321181,164.31522396925064,164.31522396925064,0.0,182.57247107694516,0.0,164.31522396925064,182.57247107694516,0,0
+2017/03/13 08:00:00,166.70640802024937,0,939.9051747525754,0,0,0,0.0,0.0,13.54597547605186,0.0,83.2008179303116,0,39.380909295966944,0.04898764015351602,27.0977424753112,0,0,20.8365945949892,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,441.7628911464975,0.0,1891.4661339799222,0.0,1284.329459794648,0.0,2292.961018153439,0.0,64.60536553629753,0.0,339.58949806080943,0.0,1726.415574433288,0.0,1007.7231725237874,0.0,2074.972209351557,0.0,921.0067231865894,0,0,0,0,0,0,0,0,0.05004124769785609,0.0015832701955331202,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3455487072472287,-0.3455487072472287,-0.3209482866264891,-0.3209482866264891,-0.3836482265673587,-0.3836482265673587,0.5574832664989624,0.5574832664989624,0.1817419426424568,0.1817419426424568,-0.33269937720768866,-0.35894093993486176,-0.3861450435943482,-0.431517541833678,-0.1144971679883017,-0.3441520090251038,-0.3625769041659931,-0.38517356168627864,-0.4345940330918525,-0.17002706334681078,7.484080467834943,7.484080467834943,7.141603201400798,7.141603201400798,8.065286761107018,8.065286761107018,11.507513644820634,11.507513644820634,5.684735844017297,5.684735844017297,7.301992790771294,7.681331161903401,8.105536698124837,8.883426931339002,5.271533947625585,7.463948093333357,7.7362018556594165,8.089844281356747,8.939366619292628,5.599199404749683,166.70640802024937,166.70640802024937,0.0,185.22934224472152,0.0,166.70640802024937,185.22934224472152,0,0
+2017/03/13 09:00:00,181.80624106050308,0,1001.6802311264412,0,0,0,0.0,0.0,11.703970106274701,0.0,106.27511244621549,0,39.380909295966944,0.05683074611832867,20.95744326347343,0,0,29.37612220003868,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,398.48810024724764,0.0,1960.925347004425,0.0,1222.9723089482932,0.0,2319.9152366895373,0.0,319.8628426330488,0.0,283.1254117073838,0.0,1791.6225796287968,0.0,960.8325219580099,0.0,2060.250164238916,0.0,177.8199695102063,0,0,0,0,0,0,0,0,0.0533301974563968,0.00168733027330625,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.38537782593963305,-0.38537782593963305,-0.3034125580049089,-0.3034125580049089,-0.4016538644302653,-0.4016538644302653,0.5981936402319918,0.5981936402319918,-0.024369401259309215,-0.024369401259309215,-0.33285089077542673,-0.36564785457588755,-0.38160060531849654,-0.4228506928521783,-0.1740086858806291,-0.3415801196594406,-0.3703135518991099,-0.3796824533319568,-0.4250750847240762,-0.2089174054238518,8.093140429704874,8.093140429704874,6.913140252451427,6.913140252451427,8.36151353005232,8.36151353005232,12.50242192711464,12.50242192711464,5.012293686582069,5.012293686582069,7.304099038742905,7.782984517526245,8.03247676342022,8.728022422097027,5.627628871204294,7.427093094307736,7.854830557018019,8.00190368914484,8.767600337790071,5.905231687383164,181.80624106050308,181.80624106050308,0.0,202.0069345116701,0.0,181.80624106050308,202.0069345116701,0,0
+2017/03/13 10:00:00,212.23244994932182,0,1045.5301974780427,0,0,0,0.0,0.0,16.903073633821148,0.0,133.89528835348938,0,39.380909295966944,0.03728561988926704,18.583917843700743,0,0,22.02812277712398,562.1274920378452,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2007.110984698226,0.0,583.8460678339563,0.0,2313.2143752210814,0.0,62.205108379249246,0.0,0.0,0.0,1841.9789289684359,0.0,330.44783811281565,0.0,2085.3098568992755,0.0,35.25536546938143,0,0,0,0,0,0,0,0,0.05566480214491847,0.0017611955382973669,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.17910149591345179,-0.17910149591345179,-0.3529914338619913,-0.3529914338619913,-0.46674123585119826,-0.46674123585119826,0.7111264704700452,0.7111264704700452,0.025738412382486565,0.025738412382486565,-0.3243207915836509,-0.36309019035804496,-0.37259572765045945,-0.4113549052895392,-0.19624698604531235,-0.3136648883597241,-0.36682288240334315,-0.3677854576240347,-0.40990636282710335,-0.22072538315852153,5.664956570023989,5.664956570023989,7.592760514123768,7.592760514123768,9.548237471323958,9.548237471323958,15.63860131678507,15.63860131678507,5.01371378278273,5.01371378278273,7.187035059165851,7.743993260929642,7.89031125518801,8.526862895557088,5.798585061319656,7.045131150628791,7.800991103662696,7.815785826699312,8.501917279693913,6.010668324842484,212.23244994932182,212.23244994932182,0.0,235.81383327702423,0.0,212.23244994932182,235.81383327702423,0,0
+2017/03/13 11:00:00,228.07114568519273,0,1103.8845725562567,0,0,0,0.005323657020310464,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,0.012398312110961984,20.680150442305198,0,0,7.902876819395175,581.3715843049714,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,20.598218933805192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,752.0555031658957,0.0,6.252356707507496,0.0,1061.6316186652255,0.0,0.0,0.0,0.0,0.0,573.107413959779,0.0,0.0,0.0,821.8323272289933,0.0,0.0,0,0,0,0,0,0,0,0,0.05877163229755724,0.0018594934786875965,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.22319524669729687,-0.22319524669729687,-0.24590824102782421,-0.24590824102782421,-0.39457903565532443,-0.39457903565532443,0.8860065904023045,0.8860065904023045,0.14123260662486012,0.14123260662486012,-0.23407166196721396,-0.3329732952800534,-0.3406968329280556,-0.37718625887330337,-0.09234066249033926,-0.2101598335646237,-0.3305607701045915,-0.30701487461861043,-0.36866815531858915,-0.14029894484383393,6.033461087865433,6.033461087865433,6.255060891261309,6.255060891261309,8.2434662326243,8.2434662326243,21.573546301852986,21.573546301852986,5.413271435141127,5.413271435141127,6.136875693803404,7.305801342046379,7.414500494759125,7.962352452598097,5.176576271334042,5.916050814806951,7.272367123057293,6.959010452505552,7.829387548275378,5.407820675929443,228.07114568519273,228.07114568519273,0.0,253.4123840946586,0.0,228.07114568519273,253.4123840946586,0,0
+2017/03/13 12:00:00,205.93700192522184,0,1041.7254664056916,0,0,0,0.09819870285290842,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,0.0007541643545681594,18.505587374238402,0,0,0.4910265273315911,562.1146809590141,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,383.4500460311207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,150.30462062439983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05546223544443681,0.0017547864690947651,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.33984296075068854,-0.33984296075068854,-0.26779761615290804,-0.26779761615290804,-0.3492409160479183,-0.3492409160479183,0.9703629746959349,0.9703629746959349,0.1947040034937362,0.1947040034937362,-0.16659222618514943,-0.2925324916502916,-0.2918841106965283,-0.3397715872328816,0.01041179075794426,-0.11752725177010014,-0.24993591727506392,-0.23476528746065567,-0.31818945128946413,-0.04113671256822201,7.402358752614219,7.402358752614219,6.489136052700772,6.489136052700772,7.537700320146996,7.537700320146996,24.888551520514397,24.888551520514397,5.786056411788422,5.786056411788422,5.575205359556506,6.777929801905941,6.7700300731793135,7.401345250616373,5.002244056637977,5.28610490598038,6.296618216635935,6.143639120265632,7.104796708546544,5.035032649620092,205.93700192522184,205.93700192522184,0.0,228.81889102802427,0.0,205.93700192522184,228.81889102802427,0,0
+2017/03/13 13:00:00,203.62136745544913,0,1004.9143099071746,0,0,0,0.22533557454646883,0.0,16.73568395689411,0.0,129.2730206906943,0,39.380909295966944,0.00028249478243465954,16.290147841337664,0,0,0.1842928500934153,561.1006106502796,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,888.6269528178905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053502382206186756,0.0016927780787669331,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3484282551031618,-0.3484282551031618,-0.41362261423405405,-0.41362261423405405,-0.3186082782178623,-0.3186082782178623,0.9994537034586155,0.9994537034586155,0.2317204064309633,0.2317204064309633,-0.1382347239629273,-0.25751457405422973,-0.2222380608272432,-0.31378685117560084,0.02126323495886562,-0.0709157906319119,-0.2178122641566145,-0.19905728456044977,-0.2828076452674624,-0.02992918725107901,7.525848756900558,7.525848756900558,8.566096039647405,8.566096039647405,7.110363646238824,7.110363646238824,26.09665344232444,26.09665344232444,6.114099203956897,6.114099203956897,5.395898420127551,6.376663353962314,6.024597499489218,7.0467281072680805,5.009359406958737,5.104127290574127,5.984113618727164,5.821659759148417,6.661307899222209,5.018543348099072,203.62136745544913,203.62136745544913,0.0,226.2459638393879,0.0,203.62136745544913,226.2459638393879,0,0
+2017/03/13 14:00:00,187.59789167122926,0,947.0316725970677,0,0,0,0.24242817432846836,0.0,16.67307048032785,0.0,115.5196477718057,0,39.380909295966944,0.0018491229550522874,14.063999224618122,0,0,1.2104306029226577,537.6821880998875,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,957.8826697868402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.337937213068862,0.0,0.0,0.0,403.11629091075383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51.71145838521965,0.0,0.0,0,0,0,0,0,0,0,0,0.050420667721741315,0.0015952747806112753,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3137747520086588,-0.3137747520086588,-0.4346845224901595,-0.4346845224901595,-0.27887667396831933,-0.27887667396831933,1.0152819259647001,1.0152819259647001,0.2494842178694679,0.2494842178694679,-0.0822083218703125,-0.2404637685458044,-0.2149734445817242,-0.2991564809063977,-0.003459674745513254,-0.1066842206235093,-0.20240717043338885,-0.14451508224622336,-0.2717451495349584,-0.05605608492133693,7.046569655059315,7.046569655059315,8.941018136738734,8.941018136738734,6.615299774358064,6.615299774358064,26.767518047009972,26.767518047009972,6.2919236645006436,6.2919236645006436,5.1399406025109755,6.199968540184457,5.958578238020692,6.859652641393524,5.000247771649356,5.235722909107679,5.849596368162821,5.432722669233897,6.533495712835531,5.065056030162282,187.59789167122926,187.59789167122926,0.0,208.4421018569214,0.0,187.59789167122926,208.4421018569214,0,0
+2017/03/13 15:00:00,182.58582969246876,0,936.6414075363062,0,0,0,0.23886458317211273,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,0.008305100512457963,14.033700254917596,0,0,5.515012109208515,522.9873415328403,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,942.9449234006586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,479.4099602955755,0.0,0.0,0.0,952.7637221769446,0.0,0.0,0.0,0.0,0.0,145.2196878568015,0.0,0.0,0.0,605.4626802289023,0.0,0.0,0,0,0,0,0,0,0,0,0.04986748231376779,0.0015777723799050307,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.33144884205692254,-0.33144884205692254,-0.45753994508006685,-0.45753994508006685,-0.28292584639671176,-0.28292584639671176,1.0162143201036236,1.0162143201036236,0.24123942781928007,0.24123942781928007,-0.07584838304974373,-0.24945048282025747,-0.2221174112093896,-0.3055802234489925,-0.042036973018997344,-0.09948738613097695,-0.22404889253156166,-0.14030714363898125,-0.28751190804666127,-0.09923262633357968,7.284645829863891,7.284645829863891,9.369421896133758,9.369421896133758,6.66270142182114,6.66270142182114,26.80733036467268,26.80733036467268,6.207741344164091,6.207741344164091,5.119120184793914,6.291573397315489,6.0234830033780895,6.940676502238929,5.036582901786076,5.204978763486238,6.041398288576346,5.407868382979615,6.717223636042789,5.203929860849982,182.58582969246876,182.58582969246876,0.0,202.87314410274305,0.0,182.58582969246876,202.87314410274305,0,0
+2017/03/13 16:00:00,205.82358868309237,0,1003.9933702491464,0,0,0,0.4221270507267756,0.0,16.86091074341296,0.0,131.64086955684016,0,39.380909295966944,0.0035369883431812603,14.083259845348017,0,0,2.3900964499134907,540.2286911361591,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1689.4406959140515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.22285044056366,0.0,0.0,0.0,562.341128995582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,280.7727398688393,0.0,0.0,0,0,0,0,0,0,0,0,0.053453350696647195,0.0016912267559828827,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.28844708174264794,-0.28844708174264794,-0.41075173937431214,-0.41075173937431214,-0.22001712940486232,-0.22001712940486232,1.026543878650961,1.026543878650961,0.3252168343086572,0.3252168343086572,-0.05441662981037182,-0.24995195336568232,-0.19553350657270804,-0.30444137093734436,-0.015108318945481545,-0.04499480925191699,-0.23587274948908737,-0.11552803362221037,-0.29144975310603166,-0.07568248735294321,6.728450585794846,6.728450585794846,8.516464743748585,8.516464743748585,6.00417947932948,6.00417947932948,27.25056025249613,27.25056025249613,7.19918695224473,7.19918695224473,5.061305832531758,6.296785038800536,5.792779407928705,6.9261846704362995,5.00472517152005,5.041912650007561,6.154479653695233,5.27644832377355,6.764747889295464,5.118599541917476,205.82358868309237,205.82358868309237,0.0,228.69287631454708,0.0,205.82358868309237,228.69287631454708,0,0
+2017/03/13 17:00:00,211.30776438982977,0,1029.6750664646177,0,0,0,0.47134243342946824,0.0,17.375450766104244,0.0,133.89528835348938,0,39.380909295966944,0.0002623377016052528,18.468523601910956,0,0,0.17833961870061785,568.1221441828432,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1892.245270718834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.503221166936214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054820663225762484,0.0017344875713086363,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.30335587005270853,-0.30335587005270853,-0.4262693482576208,-0.4262693482576208,-0.21257220800058974,-0.21257220800058974,1.025712415866432,1.025712415866432,0.36711389018891766,0.36711389018891766,-0.05568698756659239,-0.23842716548993467,-0.18695288823157347,-0.3001794222746183,0.030150417968811974,-0.04012897516584219,-0.1910783786944286,-0.11481656303055024,-0.284328969653417,-0.027586382152195166,6.9124228017942215,6.9124228017942215,8.788937077728988,8.788937077728988,5.93724244878544,5.93724244878544,27.21473642439004,27.21473642439004,7.8054597112338655,7.8054597112338655,5.064202018396514,6.1796801967936545,5.724624595421716,6.872438384363093,5.018818510139198,5.0333371418981585,5.757008845831933,5.273051857625234,6.679288464083925,5.015753794423858,211.30776438982977,211.30776438982977,0.0,234.78640487758864,0.0,211.30776438982977,234.78640487758864,0,0
+2017/03/13 18:00:00,199.88324003356894,0,1020.2071796281597,0,0,0,0.45561202248291943,0.0,20.29820168087334,0.0,110.93442390708215,0,39.380909295966944,0.0003630506252050154,27.0977424753112,0,0,0.24708939268113972,594.075860084949,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1826.2660703028664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05431658591766256,0.0017185389166512234,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3255817476332985,-0.3255817476332985,-0.47172369292464583,-0.47172369292464583,-0.22019519385853084,-0.22019519385853084,1.016559393365832,1.016559393365832,0.36993281867103156,0.36993281867103156,-0.049810993616436844,-0.19121047324474438,-0.16826945903334822,-0.22561084603919757,0.1322688986017785,-0.028450460225821404,-0.10465219245519225,-0.10237744025803303,-0.24919826000479423,0.07686226573686841,7.204145565444591,7.204145565444591,9.646587537950325,9.646587537950325,6.005808883666219,6.005808883666219,26.82207289581376,26.82207289581376,7.848932959853499,7.848932959853499,5.051366454026336,5.758057510089216,5.5868601944451655,6.05600042294077,5.36243834418363,5.016756187587859,5.226824419684434,5.217066401693074,6.288956112306664,5.122326928095561,199.88324003356894,199.88324003356894,0.0,222.0924889261877,0.0,199.88324003356894,222.0924889261877,0,0
+2017/03/13 19:00:00,207.5567098455696,0,990.0839226216509,0,0,0,0.4589563499265587,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,5.085185562868422e-05,27.097742475311204,0,0,0.03463743897643618,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1842.0878891596444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052712801402138736,0.0016677962925100754,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2911376720809135,-0.2911376720809135,-0.44036169510479195,-0.44036169510479195,-0.18363399579942521,-0.18363399579942521,1.0114801053840936,1.0114801053840936,0.41367842704316865,0.41367842704316865,-0.030536760129207995,-0.1340558894654063,-0.11967996281534427,-0.17507724974736552,0.042157608186888226,-0.008723936637927861,-0.059479467509000655,-0.0748670813343716,-0.15438913898496304,0.05491754630933729,6.760957619103536,6.760957619103536,9.045335203958288,9.045335203958288,5.699088014664284,5.699088014664284,26.605521007923784,26.605521007923784,8.567064423183751,8.567064423183751,5.019303894507075,5.3723055854100465,5.296688581449189,5.635371172520081,5.036793186622447,5.001575459798872,5.073245991802253,5.116057081127138,5.493938471818566,5.06243984654202,207.5567098455696,207.5567098455696,0.0,230.61856649507732,0.0,207.5567098455696,230.61856649507732,0,0
+2017/03/13 20:00:00,209.14921621905523,0,954.5940623001173,0,0,0,0.4255883157940681,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,5.156457927941818e-05,24.251822374978836,0,0,0.03512962998708114,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1705.2055379816334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05082329495104415,0.001608013625492087,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2719773435934077,-0.2719773435934077,-0.42143988315056,-0.42143988315056,-0.1629411093674403,-0.1629411093674403,1.0084117448596621,1.0084117448596621,0.43593352688212494,0.43593352688212494,-0.05089370166304864,-0.10091409823564433,-0.11126780417379085,-0.13879122456312976,0.06285430594639542,0.006142171421696836,-0.009030514119960262,-0.08600258017811856,-0.10265797883219548,0.018308246924525578,6.536125394770593,6.536125394770593,8.70303031467175,8.70303031467175,5.550239894846072,5.550239894846072,26.47517259958697,26.47517259958697,8.963849580745702,8.963849580745702,5.0536240210091705,5.210902645569803,5.256424588822924,5.399095126386712,5.0817951984796395,5.000780953971102,5.001688135795021,5.1531607498288565,5.218258215941162,5.006938744511075,209.14921621905523,209.14921621905523,0.0,232.38801802117248,0.0,209.14921621905523,232.38801802117248,0,0
+2017/03/13 21:00:00,195.9614988955677,0,919.1218384408909,0,0,0,0.3134362945379348,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,7.815464700493456e-05,26.61202633114176,0,0,0.0532582833046758,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1245.6790402483368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04893472747826624,0.0015482606670935164,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2887962084717117,-0.2887962084717117,-0.43485482889130317,-0.43485482889130317,-0.18129193143792055,-0.18129193143792055,0.9991500887327508,0.9991500887327508,0.40805788727746456,0.40805788727746456,-0.024087578198645602,-0.12790502821249267,-0.06440519104403511,-0.17244727534878151,-0.009076608418874144,-0.049331665706468956,-0.06840605062919042,-0.06564148748235443,-0.1437199257953269,0.027730070218103253,6.732651388073293,6.732651388073293,8.944127344044034,8.944127344044034,5.681344287146516,5.681344287146516,26.083877515540692,26.083877515540692,8.470214856769132,8.470214856769132,5.012010979558482,5.338900484255774,5.085882231120223,5.616401308033829,5.00170541328653,5.050382511341724,5.096885976625444,5.089211639740213,5.427969584464151,5.015918339801303,195.9614988955677,195.9614988955677,0.0,217.734998772853,0.0,195.9614988955677,217.734998772853,0,0
+2017/03/13 22:00:00,137.47675707866338,0,756.7195003933898,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,6.130458171046586e-05,20.69414560802344,0,0,0.041787119763982264,596.9711269671774,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04028830670812281,0.001274693940978629,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3971409332761573,-0.3971409332761573,-0.3624392921455651,-0.3624392921455651,-0.29973475317700443,-0.29973475317700443,0.9517539909907681,0.9517539909907681,0.22479793108624604,0.22479793108624604,-0.04069393542376161,-0.19635105801103503,-0.09216048812425681,-0.2293276941835236,-0.0279280375919216,-0.04786209547645872,-0.16115047772105312,-0.09948412550607327,-0.21885543257171639,0.011021061376940392,8.285965605340849,8.285965605340849,7.734114887702987,7.734114887702987,6.866875030458786,6.866875030458786,24.132935745928762,24.132935745928762,6.048388013143693,6.048388013143693,5.034282501106858,5.799433683784741,5.175887615111648,6.091159236531567,5.016146443904077,5.047425169309065,5.53819909176913,5.204965321749825,5.993581814328408,5.00251437498531,137.47675707866338,137.47675707866338,0.0,152.75195230962598,0.0,137.47675707866338,152.75195230962598,0,0
+2017/03/13 23:00:00,89.6036017487049,0,576.9860456855248,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.0037869367791403346,11.800850284784627,0,0,2.590864091352153,521.1596528253565,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,165.89239181095564,0.0,0.0,0.0,406.89253410320737,0.0,0.0,0.0,0.0,0.0,67.28003856346226,0.0,0.0,0.0,302.97153283059725,0.0,0.0,0,0,0,0,0,0,0,0,0.03071916444970795,0.0009719329501647682,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4299697734103673,-0.4299697734103673,-0.39789905579037743,-0.39789905579037743,-0.45973517153941007,-0.45973517153941007,0.8058399276740086,0.8058399276740086,0.007752093216306058,0.007752093216306058,-0.14780499307965966,-0.2346594989762233,-0.18986688156549772,-0.2629070987925869,-0.04733043578599895,-0.15773439950857474,-0.22719444656097512,-0.19336772193105226,-0.2653727711541786,-0.06805379799935975,8.855437585235578,8.855437585235578,8.298595935816408,8.298595935816408,9.411752216055433,9.411752216055433,18.69251305537975,18.69251305537975,5.00124399885523,5.00124399885523,5.452668005896555,6.142606289524011,5.747425094099981,6.435090021778123,5.046377303494211,5.515598901381438,6.070909355313077,5.775286540743636,6.462212752704502,5.095890523363593,89.6036017487049,89.6036017487049,0.0,99.559557498561,0.0,89.6036017487049,99.559557498561,0,0
+2017/03/14 00:00:00,39.37082337849172,0,548.058405628459,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.57852943725317e-09,9.573502379490007,0,0,0.0,494.8228768596428,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029179035466173932,0.0009232043426842117,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2734785872745467,-0.2734785872745467,-0.29368996472637204,-0.29368996472637204,-0.2659716233340863,-0.2659716233340863,0.7976446966101591,0.7976446966101591,0.2664666535724502,0.2664666535724502,-0.08350144969719019,-0.16299788563334552,-0.16216789974470702,-0.22664172162229548,0.18003353528331623,-0.11003848624668773,-0.1617298026085439,-0.1583624019164557,-0.22853951101697326,0.12451292205843696,6.553182357136677,6.553182357136677,6.792076341880573,6.792076341880573,6.468838843869122,6.468838843869122,18.41316017686762,18.41316017686762,6.4743275830025055,6.4743275830025055,5.14437910706522,5.5506238634557405,5.545024180337904,6.065693736509857,5.6719051297239815,5.250786766592185,5.5420800398702,5.519717174879943,6.083655166019511,5.321151098945009,39.37082337849172,39.37082337849172,0.0,43.745359309435244,0.0,39.37082337849172,43.745359309435244,0,0
+2017/03/14 01:00:00,23.72992167745013,0,50.499310464524626,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5328262537723378,0,0,0.0,15.008957951980486,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0026886206943072147,8.506608464465908e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.24200607144991565,-0.24200607144991565,-0.27566716555710824,-0.27566716555710824,-0.22999382244649172,-0.22999382244649172,0.7318053125709559,0.7318053125709559,0.3969084886357097,0.3969084886357097,-0.12961677260334786,-0.20787048291859933,-0.21811147922347865,-0.2797481500667625,0.2382812056548857,-0.1575475284307642,-0.20781957326125963,-0.2129948964261469,-0.28555109950670987,0.16629221044727557,6.215448631701406,6.215448631701406,6.578218921065854,6.578218921065854,6.09752157332467,6.09752157332467,16.272584571221714,16.272584571221714,8.282097998649775,8.282097998649775,5.348038904620523,5.896165195194669,5.986824746001048,6.625443305791478,6.178232853973128,5.514376622960256,5.895725480236152,5.940980665681835,6.693803586427819,5.573132964377294,23.72992167745013,23.72992167745013,0.0,26.366579641611253,0.0,23.72992167745013,26.366579641611253,0,0
+2017/03/14 02:00:00,28.34422977680244,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248666903295439,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.20170581262556334,-0.20170581262556334,-0.24026998724503076,-0.24026998724503076,-0.18936903968111485,-0.18936903968111485,0.7202220877468131,0.7202220877468131,0.4673221743675931,0.4673221743675931,-0.13223446453245308,-0.21170177362315634,-0.22586553573512366,-0.2875045822001269,0.2601384738281156,-0.17140648490842694,-0.22181763107578498,-0.2303171702984264,-0.30345550339967386,0.17962925043751554,5.843708497896841,5.843708497896841,6.198030621655647,6.198030621655647,5.743504610682223,5.743504610682223,15.915192025179877,15.915192025179877,9.559649678031988,9.559649678031988,5.362249513655726,5.929567973840847,6.0583911233162695,6.71713583351567,6.40493979598628,5.608973839256464,6.020716437422479,6.100616649688064,6.913683865862339,5.668886643396746,28.34422977680244,28.34422977680244,0.0,31.4935886408916,0.0,28.34422977680244,31.4935886408916,0,0
+2017/03/14 03:00:00,23.72203063553373,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249352118559383,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.19726656389378577,-0.19726656389378577,-0.23698955334961866,-0.23698955334961866,-0.18230783685015056,-0.18230783685015056,0.6879980752421821,0.6879980752421821,0.49884252855677447,0.49884252855677447,-0.14498034891104966,-0.22474749404688893,-0.24067139920961592,-0.3030962951280646,0.28064723969844724,-0.1959817999681913,-0.2465410988401846,-0.2557740719537248,-0.33020434379346086,0.19369831877339674,5.806918404419406,5.806918404419406,6.165463762531388,6.165463762531388,5.689012766989521,5.689012766989521,14.951358448344564,14.951358448344564,10.20066899664809,10.20066899664809,5.435516028088159,6.047916616518151,6.202046709860269,6.90913932124063,6.63594181552115,5.796424730877007,6.261545536755122,6.3580666398122645,7.2674484939153245,5.777944064696342,23.72203063553373,23.72203063553373,0.0,26.3578118172597,0.0,23.72203063553373,26.3578118172597,0,0
+2017/03/14 04:00:00,40.128976912539585,0,115.03730973095915,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.055559486948955496,0.040236218021902116,0.5250476579346041,0,0,26.311428449598843,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.74974404326113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,116.58449409147744,0.0,0.0,0,0,0,0,0,0,0,0,0.006124671578978499,0.00019378033951061697,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.13681573937936323,-0.13681573937936323,-0.1781997955531258,-0.1781997955531258,-0.12341363242621943,-0.12341363242621943,0.7132341402086989,0.7132341402086989,0.6232943562850972,0.6232943562850972,-0.16440912798745322,-0.244584105462609,-0.26110012145898276,-0.3067167833809429,0.31481593803118973,-0.22005024726167874,-0.27131338935795835,-0.2807022690980139,-0.3230730236204227,0.22275949951365176,5.387805664226832,5.387805664226832,5.658268704781634,5.658268704781634,5.315501632678476,5.315501632678476,15.70237662797048,15.70237662797048,13.151693397125698,13.151693397125698,5.560211047867355,6.241547433705662,6.415375535000706,6.955193864582029,7.06022784527363,6.004482428453741,6.528611912104836,6.636585491364329,7.170169870478219,6.029421285513166,40.128976912539585,40.128976912539585,0.0,44.587752125043984,0.0,40.128976912539585,44.587752125043984,0,0
+2017/03/14 05:00:00,73.86028614827599,0,212.9421150752648,0,0,0,0.3064386800737047,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.24277021747597827,0.0,0.5250342207704323,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,1007.4115214359869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1185667280090063,0.1185667280090063,0.07492775094626951,0.07492775094626951,0.13039442738135623,0.13039442738135623,0.9056072183137952,0.9056072183137952,0.9004119982787595,0.9004119982787595,-0.11008549216315203,-0.1893463063319402,-0.20493554104751574,-0.26350956604809606,0.43233166016944946,-0.1607822016140845,-0.2122152166760667,-0.2200754124028592,-0.2832368819132422,0.3361994986587274,5.291191385691548,5.291191385691548,5.116245301525424,5.116245301525424,5.352230788924871,5.352230788924871,22.3183268758669,22.3183268758669,22.119397442422894,22.119397442422894,5.2510011880713705,5.743325833764942,5.8709927438600005,6.441693613545354,8.89819046128612,5.535739250690511,5.934091078345162,6.004712659994723,6.666371166301573,7.350898076733955,73.86028614827599,73.86028614827599,0.0,82.06698460919554,0.0,73.86028614827599,82.06698460919554,0,0
+2017/03/14 06:00:00,100.19489293165879,0,722.3432859614633,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.823965392111032,2.5202413039871466e-09,0.5252238886345487,0,0,0.0,491.65599462992634,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03845809158907584,0.0012167872103771593,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2629720429102445,0.2629720429102445,0.21337332009722823,0.21337332009722823,0.2772367622255328,0.2772367622255328,1.0419978019341996,1.0419978019341996,0.9953691607178792,0.9953691607178792,-0.043322997402026324,-0.1235382777469938,-0.13759365559806044,-0.19585688784681793,0.5370053261001122,-0.08919453533410096,-0.14170491273724917,-0.14771599304261493,-0.2158671685084504,0.44297711880568347,6.435801133871891,6.435801133871891,5.944333756574508,5.944333756574508,6.596298890600167,6.596298890600167,27.92103276622069,27.92103276622069,25.925071679760734,25.925071679760734,5.03885567069176,5.3161396846057585,5.392231903144705,5.795408156589062,11.034230272229763,5.164744843193347,5.4160425971081025,5.4521225060110226,5.966580938622656,9.093859128947273,100.19489293165879,100.19489293165879,0.0,111.3276588129542,0.0,100.19489293165879,111.3276588129542,0,0
+2017/03/14 07:00:00,161.85371448729634,0,859.8597436005855,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.0009584807759848796,27.096944090004772,0,0,0.6010978952184111,593.0810018612863,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.922706393479835,0.0,0.0,0.0,100.25580685940159,0.0,0.0,0.0,0.0,0.0,14.554544691181528,0.0,0.0,0.0,81.66009025691531,0.0,0.0,0,0,0,0,0,0,0,0,0.04577956965313966,0.0014484336728329385,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.18391791247715766,-0.18391791247715766,-0.18384665007707512,-0.18384665007707512,-0.13012058431132287,-0.13012058431132287,0.9336508081297032,0.9336508081297032,0.31398480334457823,0.31398480334457823,-0.13906763288983867,-0.24456853917467383,-0.1899845496420072,-0.2732852141973607,0.14733508236311468,-0.1637228564091582,-0.25459293165083957,-0.19317456008675252,-0.28743443592096596,0.12187497662372228,5.701254563544609,5.701254563544609,5.700710448590627,5.700710448590627,5.350751791656435,5.350751791656435,23.410938438332963,23.410938438332963,7.049321394107579,7.049321394107579,5.400687688436037,6.241389010129907,5.748353238195676,6.550979944621318,5.449791550955652,5.555538535296762,6.345519108349976,5.77373591111926,6.716295223461088,5.307678534756107,161.85371448729634,161.85371448729634,0.0,179.83746054144038,0.0,161.85371448729634,179.83746054144038,0,0
+2017/03/14 08:00:00,162.00296577093337,0,919.0882761670983,0,0,0,0.4633544048549957,0.0,11.86011032607099,0.0,83.2008179303116,0,39.380909295966944,3.133841766400322e-05,27.097742475311204,0,0,0.019696009512133173,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1897.7854487419027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048932940597949726,0.00154820413144586,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.20058177904971677,-0.20058177904971677,-0.3606287095051814,-0.3606287095051814,-0.19616463207762738,-0.19616463207762738,1.0813684700614377,1.0813684700614377,0.2989898190770678,0.2989898190770678,-0.03479872988400512,-0.19067595252489397,-0.1255747982872121,-0.12008793372073599,0.051823452567506124,-0.08373112641556842,-0.19841536999151377,-0.11968834017355011,-0.10100681696739466,0.0014473558584339385,5.834315193349823,5.834315193349823,7.706731445496658,7.706731445496658,5.797913852444466,5.797913852444466,29.668133245281155,29.668133245281155,6.857573726072047,6.857573726072047,5.025068666486348,5.753818583498457,5.326655989850963,5.298716052569617,5.055601414596296,5.145174697983904,5.816360049477112,5.296730144398396,5.211290549116043,5.000043364218399,162.00296577093337,162.00296577093337,0.0,180.00329530103707,0.0,162.00296577093337,180.00329530103707,0,0
+2017/03/14 09:00:00,178.80806267548377,0,972.3210280823301,0,0,0,0.7697730178986394,0.0,11.435487997441953,0.0,106.27511244621549,0,39.380909295966944,2.6917260225512793e-05,20.94675300070052,0,0,0.016919155927792036,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3209.048327476279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0517670917397709,0.0016378746980067705,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.020815297708276257,0.020815297708276257,-0.21341840578183238,-0.21341840578183238,-0.028497090221692094,-0.028497090221692094,1.0997263126581094,1.0997263126581094,0.5172921897298824,0.5172921897298824,0.055190659327644505,-0.10860383094894631,-0.031711185734758396,-0.013823856094876972,0.13999021646539644,0.05930342968036724,-0.11896327051777725,-0.014061988302335028,0.024394788961868804,0.08861436009357172,5.0089692171953,5.0089692171953,5.944733646171315,5.944733646171315,5.016811161023085,5.016811161023085,30.501397724030184,30.501397724030184,10.595783139434332,10.595783139434332,5.06306252075494,5.244286607119051,5.020817348259726,5.003955878754198,5.40602628683007,5.072813001702386,5.2931436225709945,5.0040933431915136,5.01231931539202,5.1626078665954935,178.80806267548377,178.80806267548377,0.0,198.67562519498196,0.0,178.80806267548377,198.67562519498196,0,0
+2017/03/14 10:00:00,209.91362834710878,0,1023.4728908731546,0,0,0,1.30134454183423,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.8022274127774152e-09,18.53778871955561,0,0,0.0,562.0983082100807,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5552.759553578313,47.08276018292162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05449045480328017,0.0017240400069955537,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6038505668896041,0.6038505668896041,0.15534128178203171,0.15534128178203171,0.3369469118504795,0.3369469118504795,1.150310897707082,1.150310897707082,0.9008956581066624,0.9008956581066624,0.25798673086059504,-0.025286883939580576,0.02291005027148251,0.12243502590466564,0.3421587624354441,0.31976405565210486,-0.009105070216196757,0.05854206013786166,0.18083521909788342,0.3085465432111823,12.646360838723552,12.646360838723552,5.500056092761511,5.500056092761511,7.361408664453421,7.361408664453421,32.85592486363713,32.85592486363713,22.13787095342046,22.13787095342046,6.381730175426966,5.013236828369742,5.010865335922887,5.310514643190061,7.435360500400037,7.1257644930767015,5.001716125528134,5.070955092995902,5.677910871178753,6.9786803467274865,209.91362834710878,209.91362834710878,0.0,233.23736483012087,0.0,209.91362834710878,233.23736483012087,0,0
+2017/03/14 11:00:00,261.8814624616299,0,1095.9640019262613,0,0,0,37.21143494091482,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.8558296379026597e-09,20.72872944655732,0,0,0.0,581.3538904943714,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3702.294971226567,0.0,52.312836960106814,6849.488531037959,28620.21190637928,5878.213829335594,1656.161184201752,2694.1832196553264,1920.3092673744154,32643.194155319525,6940.3621844534555,1475.6172288532296,3224.7181894468486,2436.571509808122,31857.25129751979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.058349935250396806,0.00184615127806253,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0043450719526639,1.0043450719526639,0.5762951361916953,0.5762951361916953,0.7143496018657008,0.7143496018657008,1.1349581310058576,1.1349581310058576,1.0421598133449859,1.0421598133449859,0.4693817915642443,0.2267475141795229,0.24947707600238112,0.3180899822061766,0.4287196841586631,0.5395430022920702,0.27885973029942257,0.2866202808556734,0.36873469166522094,0.4254011296301332,26.30296077170567,26.30296077170567,11.958314494832422,11.958314494832422,15.736206505533673,15.736206505533673,32.13246737538532,32.13246737538532,27.928108016721254,27.928108016721254,9.600226861275075,6.066691024073606,6.291849507314026,7.103475683738665,8.832906442523964,11.09189424382383,6.6151028762363495,6.706553851637594,7.830414170445707,8.773419390816073,261.8814624616299,261.8814624616299,0.0,290.97940273514433,0.0,261.8814624616299,290.97940273514433,0,0
+2017/03/14 12:00:00,267.0292888629241,0,1041.2115157045707,0,0,0,62.910658647557405,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.8022274127774144e-09,18.502156130015695,0,0,0.0,562.0917567852248,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9004.628869457378,609.507585047587,2020.9200322559966,6643.771605632764,43268.23610472672,11332.273566780186,3937.643449333976,5745.379283483869,4420.892977966629,54155.54182594064,13021.240111593166,4482.912196062101,6842.22094782825,5001.021726758929,54205.58943109034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.055434872328422445,0.0017539207191777356,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1029510404465144,1.1029510404465144,0.7379730226287686,0.7379730226287686,0.8253982031402574,0.8253982031402574,1.0990059312578542,1.0990059312578542,1.0339989768247555,1.0339989768247555,0.5556622356640124,0.3173294803677915,0.32120549547405,0.3618506441422378,0.4445285766707251,0.6371420589932068,0.36060789641797314,0.36798951465193536,0.4214500897428912,0.4503551302347294,30.648961161756844,30.648961161756844,16.465238297048927,16.465238297048927,19.370651753727174,19.370651753727174,30.468481424181192,30.468481424181192,27.572906309861594,27.572906309861594,11.46468988422572,7.0933894972179985,7.1450511434174615,7.725196796029948,9.122782246395886,13.52158926247158,7.706417477845022,7.818927243984177,8.703210815106459,9.232328220848103,267.0292888629241,267.0292888629241,0.0,296.69920984769345,0.0,267.0292888629241,296.69920984769345,0,0
+2017/03/14 13:00:00,272.34087886576117,0,1004.6971383498542,0,0,0,67.30508978029329,0.0,16.67307048032785,0.0,129.2730206906943,0,39.380909295966944,2.7477058634376327e-09,16.276813413276756,0,0,0.0,561.0677319430526,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10576.427121994915,2433.0893424937617,3577.9619719026373,6536.102351912275,46877.09896600907,12322.668212199691,4845.322525506271,6460.19083375373,4674.518546992539,53985.06816920539,14025.261580087052,5293.6909717630815,7367.750211969821,5322.906397693242,54254.09729550721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0534908198316146,0.00169241225329511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.099789798151093,1.099789798151093,0.8441475784901065,0.8441475784901065,0.8613800072859095,0.8613800072859095,1.0948795609704325,1.0948795609704325,1.0319648924059972,1.0319648924059972,0.5753013275536383,0.38026566392544203,0.3516116585735073,0.38772837380039304,0.4520891508229854,0.6544219095602536,0.43761189946528034,0.405221128757287,0.4512148720809447,0.45907500104400556,30.504299406404968,30.504299406404968,20.03581804913179,20.03581804913179,20.6600937266125,20.6600937266125,30.280277003436012,30.280277003436012,27.484752658387038,27.484752658387038,11.934115152603326,8.011182759694933,7.572434887163723,8.131198738055431,9.265211765625565,13.994828203440221,8.994635273955069,8.421847371547457,9.24861598767589,9.399000403026406,272.34087886576117,272.34087886576117,0.0,302.6009765175124,0.0,272.34087886576117,302.6009765175124,0,0
+2017/03/14 14:00:00,246.6644044756565,0,928.5246306117915,0,0,0,57.534846551656855,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.6922557528652054e-09,14.061341777493233,0,0,0.0,520.3855767175341,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9486.032446251927,3001.5400656070688,3317.1720982528786,5969.836815375878,42645.32825907009,10515.768770587967,4361.809228152514,4843.2538151499575,3737.5408999731458,42712.578025978095,12063.951171552011,5053.2558560416355,5652.482529391539,4380.184469149667,42774.81088926169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04943533909815583,0.0015640996697917381,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0783635528456972,1.0783635528456972,0.9377960527228689,0.9377960527228689,0.8637648202348605,0.8637648202348605,1.0786461964239857,1.0786461964239857,1.0181080987327724,1.0181080987327724,0.5653431270919804,0.43312703343281883,0.35427930682995273,0.3853355006090005,0.44286396500205427,0.6347595958185746,0.4993610110774885,0.4077346968222008,0.4453529755185354,0.4469327790619267,29.53285137969496,29.53285137969496,23.575113321049685,23.575113321049685,20.747458132172838,20.747458132172838,29.54556259852349,29.54556259852349,26.88829286114678,26.88829286114678,11.693997642692679,8.912641543673217,7.611805402963213,8.092457292717398,9.09175370293842,13.457357078704248,10.211571767828602,8.464686982334399,9.138193237988062,9.167807125345846,246.6644044756565,246.6644044756565,0.0,274.07156052850723,0.0,246.6644044756565,274.07156052850723,0,0
+2017/03/14 15:00:00,228.78459694948737,0,948.2879470234221,0,0,0,46.43346510229768,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,2.6922557528652054e-09,14.046172090630849,0,0,0.0,540.1488931291647,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6246.3298679986665,2378.8806702381025,2857.2299797037554,5635.16044993782,37312.066871271585,7757.252615862581,3357.3557975779822,3553.5829196214795,2825.2657954924784,33512.973648381296,9017.93188466879,4088.319706840098,4366.452323737475,3460.3575732706254,33226.202543145395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050487552702731274,0.00159739097478712,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9863270596192083,0.9863270596192083,0.9022177547943645,0.9022177547943645,0.868839507322359,0.868839507322359,1.0740207794368066,1.0740207794368066,1.006806025346777,1.006806025346777,0.5103665760553031,0.41473355621466096,0.3560048559887046,0.3805539441485347,0.4270056989938992,0.5618120737088068,0.47542570548920865,0.40827657887807833,0.438067900455944,0.42764431856068724,25.547497723321428,25.547497723321428,22.188417246822198,22.188417246822198,20.934144792337435,20.934144792337435,29.33789748379465,29.33789748379465,26.407100517131155,26.407100517131155,10.445740129537867,8.58539662058503,7.637433222376416,8.015774753814725,8.802123236265658,11.609888005087072,9.720355471232608,8.473957912056548,9.003020416769743,8.81357811965681,228.78459694948737,228.78459694948737,0.0,254.2051077216526,0.0,228.78459694948737,254.2051077216526,0,0
+2017/03/14 16:00:00,247.32438876296823,0,1001.5382668134149,0,0,0,45.349949406652335,0.0,16.86091074341296,0.0,131.64086955684016,0,39.380909295966944,2.6922557528652054e-09,14.091749757403518,0,0,0.0,540.163684150341,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5503.087970660708,2225.2454132433886,3304.052505873339,5814.536418465478,39844.69447711389,6758.691090659531,2941.7982482934976,3440.405919156019,2601.1111315604994,32694.587751439405,7798.367916278021,3538.7857578652056,4184.316525675637,3147.461260484024,32331.251078102072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053322639171217365,0.0016870911344317322,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9632985035902114,0.9632985035902114,0.8891005206622146,0.8891005206622146,0.8826213848964136,0.8826213848964136,1.0739459733644106,1.0739459733644106,1.029818553288171,1.029818553288171,0.46978695550247185,0.37533640218112035,0.3267408989544808,0.35266578900711637,0.40910994648844257,0.5142048155757176,0.42929164010944754,0.3778021238151891,0.4065252016424437,0.41024187755264885,24.600105381280912,24.600105381280912,21.69006779148657,21.69006779148657,21.446503831504643,21.446503831504643,29.334545123105386,29.334545123105386,27.39189926950911,27.39189926950911,9.608230644886817,7.933213713464454,7.219934115683955,7.587956100703622,8.488240337857135,10.52863907075593,8.843206839289849,7.972085885507099,8.44403937218226,8.50768724252751,247.32438876296823,247.32438876296823,0.0,274.804876403298,0.0,247.32438876296823,274.804876403298,0,0
+2017/03/14 17:00:00,255.893856735124,0,1023.457011117107,0,0,0,45.83284024951981,0.0,18.289525894589108,0.0,133.89528835348938,0,39.380909295966944,2.8022274127774152e-09,18.495292938756556,0,0,0.0,562.0824284540331,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4392.438121924335,1469.7680472933655,2974.330624311418,5717.741433611055,40167.81350442537,6372.448695881464,2586.9078851464155,3592.2593153083412,2342.7270611943222,36719.892178911774,7278.888759007692,3082.4593774149043,4307.416589528927,2819.9098175359663,36224.24568575965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054489609353305955,0.0017240132575476969,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9661212074275912,0.9661212074275912,0.8983789785670988,0.8983789785670988,0.9044318654020481,0.9044318654020481,1.0667389154664375,1.0667389154664375,1.0568996649514903,1.0568996649514903,0.467969466798693,0.3736435475958447,0.33341366890183555,0.360839175692319,0.43307651668215935,0.505220618250395,0.4197868580968953,0.38065189801206206,0.4096441034368441,0.43483202533963583,24.715124682591693,24.715124682591693,22.041849685908986,22.041849685908986,22.273225795382515,22.273225795382515,29.01249340792009,29.01249340792009,28.575798083756112,28.575798083756112,9.572382497953143,7.906675976833867,7.311930963397657,7.709907386946796,8.911722900436502,10.335596482240874,8.673856028080479,8.017335861051805,8.497410471572962,8.943710957636085,255.893856735124,255.893856735124,0.0,284.3265074834711,0.0,255.893856735124,284.3265074834711,0,0
+2017/03/14 18:00:00,237.22625524039256,0,1025.5396376952187,0,0,0,40.944294901988584,0.0,18.868884657083346,0.0,110.93442390708215,0,39.380909295966944,2.9603130635819692e-09,27.0977424753112,0,0,0.0,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2221.1670451294726,0.0,1510.5178746338656,5306.263722502836,32884.71045788228,5333.749046377864,2422.1724133947137,3225.3294566700843,1532.3367201548306,37904.48831312271,6123.1131202741335,3052.4501060043513,3958.6853682957058,1936.6433691800391,37204.04478861745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054600489934940016,0.0017275214418604574,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9609546307362363,0.9609546307362363,0.8850921363384142,0.8850921363384142,0.9132839981800387,0.9132839981800387,1.054725092680785,1.054725092680785,1.0645093672774386,1.0645093672774386,0.4711643592712964,0.4452910559581814,0.35321147978395134,0.3731857428078594,0.4631196069949438,0.5026930279100624,0.5010486105551845,0.39794078741525996,0.4179839880723206,0.4649318619716385,24.504833857838022,24.504833857838022,21.53918173498161,21.53918173498161,22.61427790423336,22.61427790423336,28.479751244108627,28.479751244108627,28.91323711898771,28.91323711898771,9.635493386384297,9.137034722869203,7.596009524178555,7.899520278605195,9.477420490591584,10.281915395211342,10.24713943739718,8.299291899040412,8.642170699844456,9.512786520466008,237.22625524039256,237.22625524039256,0.0,263.5847280448806,0.0,237.22625524039256,263.5847280448806,0,0
+2017/03/14 19:00:00,233.1475484671435,0,990.0492851826745,0,0,0,26.049845820344892,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,3.011212738172248e-09,27.097742475311204,0,0,0.0,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4541.487754273872,21303.289988726694,2662.2590487922557,240.69342657545096,1064.5369954030716,0.0,27147.543359345953,3346.3689499861234,767.3000503701828,1818.4252058824306,0.0,26094.243307527006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05271095727923145,0.0016677379457467486,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9226922284812902,0.9226922284812902,0.7521522438722084,0.7521522438722084,0.86588433915531,0.86588433915531,1.0329933478674476,1.0329933478674476,1.0503550457850748,1.0503550457850748,0.458610533391751,0.38942402285199407,0.3485254513527259,0.3402246141269435,0.46504981547321067,0.48475157467523144,0.43038517462352327,0.38780873398310345,0.40004828748215476,0.4639329040116109,22.980219506177335,22.980219506177335,16.914328135435866,16.914328135435866,20.825301243019737,20.825301243019737,27.529305094212845,27.529305094212845,28.287248888872156,28.287248888872156,9.39004001920469,8.15879996880399,7.5272647544554445,7.407781892442429,9.51509327857461,9.908806804681902,8.862939470498944,8.132504042345076,8.334535803209846,9.493274427179472,233.1475484671435,233.1475484671435,0.0,259.05283163015946,0.0,233.1475484671435,259.05283163015946,0,0
+2017/03/14 20:00:00,225.88449672096553,0,954.5589326701304,0,0,0,17.225894054951606,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,2.9085217758314757e-09,24.186848699402304,0,0,0.0,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3909.646988823424,12781.77478394891,785.5159482133898,0.0,0.0,0.0,19953.76708813279,1358.4030196634885,0.0,331.11615266420534,0.0,18593.486739196407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050821424623522904,0.0016079544496330404,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8241059429508244,0.8241059429508244,0.6284778083320894,0.6284778083320894,0.7753775194283333,0.7753775194283333,1.0163151268866963,1.0163151268866963,1.036494983322883,1.036494983322883,0.4497995744375558,0.315166918654086,0.3279105169592756,0.2544188105333774,0.46776225010176686,0.47120275844261494,0.3788301918544135,0.3831460132521175,0.31216892359909737,0.4646721164668213,19.32534902518509,19.32534902518509,13.289178048067058,13.289178048067058,17.668513124514718,17.668513124514718,26.811636662827553,26.811636662827553,27.6812865545198,27.6812865545198,9.221820155637772,7.064842326123426,7.2359229908592795,6.343674341305146,9.568304395837757,9.636254586934712,7.988370039467668,8.0572229918604,7.025594531509299,9.50770891963009,225.88449672096553,225.88449672096553,0.0,250.98277413440613,0.0,225.88449672096553,250.98277413440613,0,0
+2017/03/14 21:00:00,196.46192535167822,0,919.0685801575862,0,0,0,1.4952293801331547,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9603130635819692e-09,26.5027337204195,0,0,0.0,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3072.0000361269554,1321.0461541976692,0.0,0.0,0.0,0.0,1028.7878893959773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04893189196781434,0.0015481709535193316,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6789213212200941,0.6789213212200941,0.47146197768333975,0.47146197768333975,0.6406582654382389,0.6406582654382389,0.9935060250828441,0.9935060250828441,1.0135161748171426,1.0135161748171426,0.3180761646254504,0.1395147901950593,0.14669377197597747,0.07861355674364465,0.45014157044228925,0.35134808121130073,0.1953147538314293,0.21253094635560052,0.12771870664882265,0.4395166238100015,14.687964200958362,14.687964200958362,9.641394845673688,9.641394845673688,13.616837443225378,13.616837443225378,25.847016696270884,25.847016696270884,26.69221134367035,26.69221134367035,7.103292208955665,5.403270774220246,5.44588074623465,5.127966376036767,9.228287271320397,7.5685613123552855,5.791003657753635,5.936877935455456,5.3379131294020965,9.029719444779431,196.46192535167822,196.46192535167822,0.0,218.29102816853134,0.0,196.46192535167822,218.29102816853134,0,0
+2017/03/14 22:00:00,136.78134326204173,0,741.062068818119,0,0,0,0.33184771072166575,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.85582963790266e-09,20.69653794314229,0,0,0.0,581.3554825116704,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1309.4950298324065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03945469345349144,0.0012483189986784641,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.43582572716871737,0.43582572716871737,0.23157575344204936,0.23157575344204936,0.39839431675344206,0.39839431675344206,0.9331758398439245,0.9331758398439245,0.766154378601453,0.766154378601453,0.16405443141541626,-0.023440570092337916,-0.007249537732948745,-0.024890979430697492,0.30993983254889057,0.17934653576086962,0.009056894570466736,0.039826591072289794,0.008221731750968611,0.28177740735487306,8.961876390774236,8.961876390774236,6.1127055322149175,6.1127055322149175,8.306860265017662,8.306860265017662,23.392170721054228,23.392170721054228,17.366256478461096,17.366256478461096,5.557793627900892,5.011374384178055,5.001087933851636,5.012825576392103,6.9966593890531925,5.6667798826511415,5.00169801319376,5.032836588100224,5.001399293318684,6.649186952478686,136.78134326204173,136.78134326204173,0.0,151.97927029115746,0.0,136.78134326204173,151.97927029115746,0,0
+2017/03/14 23:00:00,87.31976670096631,0,591.2043653582342,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,4.511266995163915e-06,11.808781130861043,0,0,0.001555091212993021,537.967281498205,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.031476158320687175,0.0009958837085742953,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.129718154008878,0.129718154008878,-0.07412546646015078,-0.07412546646015078,0.10023196684668288,0.10023196684668288,0.8380034928499915,0.8380034928499915,0.4233119108393442,0.4233119108393442,0.09641957214727796,-0.1361034803020511,-0.04172912319459028,-0.16524067731128972,0.08506051920620404,0.09034514029010608,-0.13030614450627132,-0.03838834146071097,-0.16318793520203093,0.06225623011209545,5.348583967212818,5.348583967212818,5.1137686422945166,5.1137686422945166,5.20805981124839,5.20805981124839,19.816226734879066,19.816226734879066,8.736211288841815,8.736211288841815,5.192526995821893,5.383775084900634,5.036049006151032,5.565899000997717,5.149822646320885,5.169024212077204,5.3517536418898715,5.030507615405497,5.551910115374412,5.080245728566183,87.31976670096631,87.31976670096631,0.0,97.02196300107367,0.0,87.31976670096631,97.02196300107367,0,0
+2017/03/15 00:00:00,39.375203802934074,0,548.5150220480293,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5785328999499852e-09,9.577882803932358,0,0,0.0,495.2794932792132,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029203346062570683,0.0009239735130083214,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.35970897964046156,0.35970897964046156,0.16526489742790515,0.16526489742790515,0.2898890883663306,0.2898890883663306,0.8543293732847826,0.8543293732847826,0.6678240246842423,0.6678240246842423,0.29505146599703674,0.0504847931075329,0.053298161303269115,0.007015029158813315,0.3411188495933357,0.2787670867454545,0.036152026666322445,0.08294853108427053,-0.005398807527634455,0.2856242539749945,7.692874825106529,7.692874825106529,5.5660651032136315,5.5660651032136315,6.745834531981757,6.745834531981757,20.403181032776786,20.403181032776786,14.37077984337867,14.37077984337867,6.8087889408990065,5.052765693742018,5.058811278878025,5.001018686983343,7.420512850784235,6.6140265028396925,5.027056499913243,5.142472793190237,5.000603360803979,6.6946744347562515,39.375203802934074,39.375203802934074,0.0,43.75022644770453,0.0,39.375203802934074,43.75022644770453,0,0
+2017/03/15 01:00:00,23.722081762463237,0,46.71410275252446,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249863387854454,0,0,0.0,11.223750239980324,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002487093431991738,7.868990254108717e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.41263001704342195,0.41263001704342195,0.22808959256646147,0.22808959256646147,0.3187233569996727,0.3187233569996727,0.8013241092100023,0.8013241092100023,0.7933622244657399,0.7933622244657399,0.2872380258565448,0.04911138504425255,0.02162329229120428,0.0015329174035099559,0.4618251035284993,0.2809865386396027,0.050645499753855835,0.05118062855028298,0.0030115439650727277,0.38908587502195585,8.54889621634591,8.54889621634591,6.079383300381849,6.079383300381849,7.111894544868022,7.111894544868022,18.538229848478323,18.538229848478323,18.268313391854335,18.268313391854335,6.713942614584596,5.049933521399225,5.009679069180109,5.000048642780399,9.45224495726562,6.639912610763901,5.053102201814482,5.054230436145559,5.000187741130205,8.153285900362675,23.722081762463237,23.722081762463237,0.0,26.357868624959153,0.0,23.722081762463237,26.357868624959153,0,0
+2017/03/15 02:00:00,28.344259923235292,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.524896836762396,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.43288414343629084,0.43288414343629084,0.2531245462031263,0.2531245462031263,0.3316388800688698,0.3316388800688698,0.7720607882200394,0.7720607882200394,0.8514762084396229,0.8514762084396229,0.2766365966910372,0.047533068037747886,0.004975135513585094,-0.004300954681752646,0.4909217564824966,0.2690166533679904,0.0473341845486742,0.028751095398025762,-0.004218021449372446,0.4073605209520077,8.90822561091018,8.90822561091018,6.3300019166339325,6.3300019166339325,7.287277690425341,7.287277690425341,17.55940106059606,17.55940106059606,20.299802953890463,20.299802953890463,6.589373400588713,5.046775297182791,5.00051237879471,5.0003829225386625,10.035552959359507,6.502764691077829,5.046384651064201,5.01711219608444,5.000368297482652,8.458292636175187,28.344259923235292,28.344259923235292,0.0,31.493622136928103,0.0,28.344259923235292,31.493622136928103,0,0
+2017/03/15 03:00:00,23.72206040783045,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.524964984152655,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4311896911098174,0.4311896911098174,0.25617593378406134,0.25617593378406134,0.32629145201881915,0.32629145201881915,0.7344404613973311,0.7344404613973311,0.8703528552540214,0.8703528552540214,0.2700538063423271,0.04515880525135979,-0.006276768640803601,-0.008286752987300586,0.5194191265224153,0.25901202701252374,0.0419564038022091,0.01274151728651435,-0.011067403339303325,0.42480073119678907,8.87748959936819,8.87748959936819,6.362349091473945,6.362349091473945,7.213805532111934,7.213805532111934,16.354695783830593,16.354695783830593,20.990023337109946,20.990023337109946,6.514409180120694,5.042218759206975,5.000815556111064,5.001421513414627,10.642279574248477,6.392765159418602,5.036442793526831,5.00336067332222,5.002535564721313,8.762707374889132,23.72206040783045,23.72206040783045,0.0,26.357844897589388,0.0,23.72206040783045,26.357844897589388,0,0
+2017/03/15 04:00:00,42.301027677838725,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,2.2677924489592405,0.0,0.5251016792453647,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5028008657681248,0.5028008657681248,0.3325771476230253,0.3325771476230253,0.39865957753469944,0.39865957753469944,0.7870170585651927,0.7870170585651927,0.8747606470741409,0.8747606470741409,0.28169331486201354,0.05765519785272778,0.004560510859252944,0.004530158867401302,0.4023191491195473,0.26553958299131075,0.05009361854722226,0.017806227141435697,-0.0026345466571564644,0.3689524170261587,10.284200021629275,10.284200021629275,7.300294340686392,7.300294340686392,8.311290937806163,8.311290937806163,18.055129483309543,18.055129483309543,21.153313517148163,21.153313517148163,6.64819956485033,5.068821241299673,5.000430534768881,5.000424823077694,8.372724306868392,6.464056950280721,5.051951074470509,5.006563429715953,5.000143678822255,7.833774881728928,42.301027677838725,42.301027677838725,0.0,47.00114186426525,0.0,42.301027677838725,47.00114186426525,0,0
+2017/03/15 05:00:00,75.37655129132288,0,212.9421150752648,0,0,0,0.09813633535850072,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,1.96730892420354,0.0,0.5250630018049645,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,390.17255602617865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7368518583143107,0.7368518583143107,0.5701744196276797,0.5701744196276797,0.6368289200661058,0.6368289200661058,0.9398602097780075,0.9398602097780075,0.9257416547733367,0.9257416547733367,0.3445710980761344,0.12475834404767658,0.07304477767209992,0.07211037391957274,0.5765428874432048,0.33615416908871687,0.12467283825178796,0.09215386688154882,0.07256642636119885,0.5243925165272852,16.430096265268276,16.430096265268276,11.809955127536469,11.809955127536469,13.513132854958187,13.513132854958187,23.657120278126214,23.657120278126214,23.09959259245926,23.09959259245926,7.469980245752154,5.32241923037202,5.110474731913229,5.10766572727735,11.96435393605121,7.350261387136726,5.321977125166171,5.175862333287824,5.109032189918352,10.751765681112545,75.37655129132288,75.37655129132288,0.0,83.75172365702542,0.0,75.37655129132288,83.75172365702542,0,0
+2017/03/15 06:00:00,102.2060056269821,0,720.4031064808512,0,0,0,0.2128054363546077,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,2.5698941550801546,2.520244826149709e-09,0.5776023846340986,0,0,0.0,489.7158151493144,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,857.7061822220819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03835479499642417,0.0012135189781893251,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.90348396219371,0.90348396219371,0.7356883435274806,0.7356883435274806,0.8021856028391904,0.8021856028391904,0.9996949985159416,0.9996949985159416,0.936644151927424,0.936644151927424,0.4252266120045641,0.20643086091313137,0.15806586036172962,0.15467005989650434,0.7319690211853084,0.4163246247239083,0.2060734681877976,0.17638674512541438,0.15496959713262434,0.6677702296952863,22.236893289509183,22.236893289509183,16.393683861455244,16.393683861455244,18.56759628280996,18.56759628280996,26.10680948917191,26.10680948917191,23.52942301441864,23.52942301441864,8.770304138110362,5.8837727819711745,5.517770485980662,5.495739491558126,16.277677037596476,8.613130638740955,5.880709747518907,5.644924120421891,5.497663484518625,14.36925525238091,102.2060056269821,102.2060056269821,0.0,113.56222847442456,0.0,102.2060056269821,113.56222847442456,0,0
+2017/03/15 07:00:00,160.97656831024034,0,860.7246055045467,0,0,0,0.1722110589998144,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,5.494582029941912e-06,27.049532607525446,0,0,0.003452457810670008,594.5435092026552,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,682.4012179418729,0.0,0.22913854462228783,0.0,0.0,0.0,0.0,0.2848409384985389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04582561554151553,0.001449890532644519,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6556958764063023,0.6556958764063023,0.4873618146638249,0.4873618146638249,0.5614752543250863,0.5614752543250863,0.9751166366781447,0.9751166366781447,0.6603673162365087,0.6603673162365087,0.235727160045377,0.026489932633357974,0.014049465778361159,-0.01664794177504501,0.3846751224894445,0.23149242959913305,0.02848043974337412,0.032159226414127044,-0.013823993629989196,0.3516249350281072,14.030230371646837,14.030230371646837,9.962225065148402,9.962225065148402,11.601893222831592,11.601893222831592,25.083737865718888,25.083737865718888,14.16064643267785,14.16064643267785,6.153051594066426,5.014526340817767,5.004086055940547,5.005737297088004,8.081808603470662,6.111903139915071,5.016791520962784,5.021409779245829,5.003955957470225,7.5726300782291815,160.97656831024034,160.97656831024034,0.0,178.86285367804481,0.0,160.97656831024034,178.86285367804481,0,0
+2017/03/15 08:00:00,162.28995098970904,0,919.0805880513287,0,0,0,0.41201960017137806,0.0,12.19844258586226,0.0,83.2008179303116,0,39.380909295966944,1.910208566014332e-05,27.0977424753112,0,0,0.012007893742486283,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1655.7907722919658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04893253127697151,0.0015481911808154294,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3722604834614807,0.3722604834614807,0.17400539790557837,0.17400539790557837,0.3455389450643088,0.3455389450643088,1.0003870794696876,1.0003870794696876,0.66763320317096,0.66763320317096,0.061164164815012446,-0.03772512722786488,-0.10083878530999892,0.016005214167511446,0.3071559480093445,0.034117687781383646,-0.044907085009247345,-0.09619985936739352,0.02061960294775185,0.2634176326317347,7.8850853401051495,7.8850853401051495,5.627605121639107,5.627605121639107,7.483939465415972,7.483939465415972,26.135951249736692,26.135951249736692,14.365372382350586,14.365372382350586,5.07745469869225,5.029462527944403,5.210587824651682,5.005302843531837,6.960817985375243,5.024096985327262,5.041749364359731,5.191650206602375,5.008801358795338,6.440684951329118,162.28995098970904,162.28995098970904,0.0,180.32216776634337,0.0,162.28995098970904,180.32216776634337,0,0
+2017/03/15 09:00:00,180.83097268685364,0,972.3041089264025,0,0,0,2.842446005452538,0.0,11.435487997441953,0.0,106.27511244621549,0,39.380909295966944,2.8558334160802276e-09,20.897016938920935,0,0,0.0,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4211.792600734973,0.0,0.0,0.0,0.0,0.0,3867.3921211438696,0.0,0.0,0.0,0.0,1981.7663557556086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05176619095137718,0.0016378461976898947,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6633384158207024,0.6633384158207024,0.29792011440966504,0.29792011440966504,0.48714258515480297,0.48714258515480297,1.1029212745177324,1.1029212745177324,0.8670656874574248,0.8670656874574248,0.29410228277227557,0.02209533626311347,0.038631007906603086,0.14058775914892666,0.4006207650763845,0.29499343374704207,0.01596251485691684,0.05379602820632903,0.16938512827144425,0.37952064903715665,14.244084728929508,14.244084728929508,6.844258338699817,6.844258338699817,9.957727246011544,9.957727246011544,30.64759745940877,30.64759745940877,20.86876892400069,20.86876892400069,6.797129330314576,5.010106286117349,5.030894559485063,5.409502911471421,8.344142212610365,6.808074989774624,5.005274586701006,5.059915285318581,5.594677782880723,7.999331902711674,180.83097268685364,180.83097268685364,0.0,200.92330298539292,0.0,180.83097268685364,200.92330298539292,0,0
+2017/03/15 10:00:00,235.5851001202337,0,1023.4362594975845,0,0,0,26.955647262223223,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.802231157430943e-09,18.554957772291466,0,0,0.0,562.0616768345108,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3332.4861471146432,0.0,774.4533723788279,5725.597560964244,25306.517585067148,3708.2613798521716,528.1480924508876,934.0031996045758,1252.4519353088115,22008.373846635935,4035.008781751617,619.8625822680706,1155.6609554281536,1529.935478103741,20765.754649880782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05448850452171171,0.001723978301446186,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9295472300164256,0.9295472300164256,0.6383225604701135,0.6383225604701135,0.7686306546562779,0.7686306546562779,1.0978672995715513,1.0978672995715513,0.9770925322160017,0.9770925322160017,0.41985781251616083,0.22293851121857214,0.22304997162557078,0.30076048720794174,0.4045316356813301,0.44622214723016224,0.23095996260795598,0.24606222018871682,0.3317135498567479,0.3997128442187807,23.249088138842083,23.249088138842083,13.553507287174085,13.553507287174085,17.447051621148248,17.447051621148248,30.416490142005898,30.416490142005898,25.16512605601355,25.16512605601355,8.6751058978588,6.0310799357935,6.032113361529383,6.879720816190172,8.410143376485223,9.154472840856812,6.106782464923938,6.256637106071636,7.2883122211974865,8.32891344231416,235.5851001202337,235.5851001202337,0.0,261.7612223558152,0.0,235.5851001202337,261.7612223558152,0,0
+2017/03/15 11:00:00,277.15146992693764,0,1095.9479782892583,0,0,0,52.42104573076046,0.0,16.903073633821148,0.0,147.76209134187457,0,39.380909295966944,2.8558334160802276e-09,20.68434992165861,0,0,0.0,581.3378668573687,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5890.384539407622,1901.2985603086654,3543.917731562463,6182.721307106184,41972.88293179699,7311.744849387351,3227.501288514636,4571.802778704774,3454.836354307272,42140.96976505498,7824.270439180175,3386.5760270393607,4957.355241466264,3799.3868360131423,41528.2855052908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.058349082140093954,0.0018461242862472147,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9715073947074669,0.9715073947074669,0.7879487696917282,0.7879487696917282,0.8802585249763968,0.8802585249763968,1.0786643751025853,1.0786643751025853,1.026796620872761,1.026796620872761,0.44615213188567393,0.30065559980783696,0.29285874040399984,0.3513740135409852,0.42910839581025917,0.4764260956426707,0.32648475009933625,0.32841593978375716,0.3907780059123686,0.4282997946208756,24.935461537288802,24.935461537288802,18.086325938860526,18.086325938860526,21.358107028298406,21.358107028298406,29.546380236744923,29.546380236744923,27.261454800807144,27.261454800807144,9.153160249173638,6.878405216496361,6.781911459340918,7.568942286918883,8.83990525059798,9.740391103377291,7.216440262601267,7.242850161206093,8.180927889469743,8.825353558397751,277.15146992693764,277.15146992693764,0.0,307.94607769659734,0.0,277.15146992693764,307.94607769659734,0,0
+2017/03/15 12:00:00,275.36711404245847,0,1041.1785948202116,0,0,0,67.73075687763757,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.802231157430943e-09,18.587907877015667,0,0,0.0,562.0588359008658,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8400.064312122537,3140.3673648012086,5588.37300788062,6541.05915815672,47633.6100981711,10554.155865755994,4687.653386203281,6871.52023319,4936.842545737257,54861.784994277376,11311.662033438313,4989.323657873506,7474.688283726967,5368.861940008683,54763.05820284995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05543311959615445,0.0017538652639505314,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0481713900903198,1.0481713900903198,0.8523207255232762,0.8523207255232762,0.9203877121240759,0.9203877121240759,1.0870518216501688,1.0870518216501688,1.0330976824661908,1.0330976824661908,0.5240897076318671,0.3671926173440774,0.3592043173847927,0.4011581627357654,0.4617934058402195,0.5737379573635478,0.40774551701511685,0.40867872893607216,0.44903395092834936,0.46632343914515995,28.191316243879285,28.191316243879285,20.33036691459533,20.33036691459533,22.890254156988505,22.890254156988505,29.92485830575906,29.92485830575906,27.533827017391914,27.533827017391914,10.74506892453013,7.80666923647874,7.685286904354342,8.353172725963091,9.451629405123413,11.896133652342115,8.464871979381599,8.48084632935614,9.20736051796311,9.54003908199897,275.36711404245847,275.36711404245847,0.0,305.96346004717606,0.0,275.36711404245847,305.96346004717606,0,0
+2017/03/15 13:00:00,272.5695948163145,0,985.359538837836,0,0,0,67.57445740140892,0.0,16.67307048032785,0.0,129.2730206906943,0,39.380909295966944,2.7477095718551123e-09,16.23616174271452,0,0,0.0,541.7301324310343,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9860.667659684985,3528.4320925381385,5597.95356668144,6216.142566327928,46010.31779382572,11446.047804869342,4944.353348553012,6855.333309729766,4818.589552209164,53449.479089752596,12440.65238069093,5374.417974086359,7584.8898596193085,5304.11655178751,53582.03113145032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052461271710105874,0.0016598380683848142,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1010576717546245,1.1010576717546245,0.899878227056897,0.899878227056897,0.9205759738224557,0.9205759738224557,1.0730086750605523,1.0730086750605523,1.0268878595002762,1.0268878595002762,0.5691158566513927,0.4087952831991767,0.3745141006589367,0.4116592870350821,0.47131517494678626,0.6209350012993617,0.4569654515657889,0.42458973187945354,0.459161601402673,0.4766979238274696,30.562277844949435,30.562277844949435,22.099020944728167,22.099020944728167,22.897595653126004,22.897595653126004,29.292557708102024,29.292557708102024,27.265388256817573,27.265388256817573,11.78446158262075,8.482844078658204,7.920307780883618,8.532116137323015,9.638483425030486,13.089500525670672,9.35837824897503,8.758946500559205,9.400672100957053,9.7458426855042,272.5695948163145,272.5695948163145,0.0,302.85510535146057,0.0,272.5695948163145,302.85510535146057,0,0
+2017/03/15 14:00:00,254.97226011038933,0,948.2324449077756,0,0,0,66.01411918679104,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.6922594222841086e-09,14.057314370711994,0,0,0.0,540.0933910135182,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11902.051541012983,5347.8712503154675,6522.583180853207,5995.686120062787,49922.861932591986,11202.477355518133,5311.71161679226,5933.708422646519,4421.120108114128,45566.536508573176,12266.295243578823,5929.071711086292,6680.769543504517,4916.015328764346,45952.20703642991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05048459772898347,0.001597297481477526,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1441456551417248,1.1441456551417248,1.0281586419411801,1.0281586419411801,0.9476649210343767,0.9476649210343767,1.067871477036698,1.067871477036698,1.03524621812751,1.03524621812751,0.592370358796232,0.474975260514697,0.38418653900708927,0.41708001198286915,0.45994315974713884,0.6456771048394363,0.5363113898828269,0.43526209250651166,0.46557708541912085,0.46600272651602515,32.564499302115934,32.564499302115934,27.320205909801004,27.320205909801004,23.968720349438158,23.968720349438158,29.062980984786023,29.062980984786023,27.627034768947368,27.627034768947368,12.355700893421343,9.711348131622529,8.073942113805586,8.626335827721505,9.415773590897942,13.753718312722214,11.018510435286416,8.951567623809737,9.525412163352556,9.53375086757201,254.97226011038933,254.97226011038933,0.0,283.3025112337659,0.0,254.97226011038933,283.3025112337659,0,0
+2017/03/15 15:00:00,239.0892318265023,0,948.2490311498913,0,0,0,56.688432903219905,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,2.6922594222841086e-09,14.095839166723525,0,0,0.0,540.1099772556338,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9227.10100775271,4979.6647823943895,5906.121590922184,5711.597095469672,45156.67335584496,8906.840926015791,4659.316968347918,4703.7000298687335,3695.9578673166084,38054.45441320778,9766.926599572038,5318.025379704236,5450.401425470588,4184.549172557113,38288.32011038805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05048548079279924,0.0015973254210011108,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0570688000302932,1.0570688000302932,1.0072340413972933,1.0072340413972933,0.9453874437165056,0.9453874437165056,1.061247758461865,1.061247758461865,1.0293623819401565,1.0293623819401565,0.537978750633319,0.46666533282532324,0.3812918056785326,0.41121529105311777,0.4462162248056086,0.576653241019003,0.5211031770141988,0.4269311422910552,0.4547191635755139,0.45008059623517854,28.58327558182151,28.58327558182151,26.42523612251658,26.42523612251658,23.877543893670676,23.877543893670676,28.768353543095174,28.768353543095174,27.372186600211208,27.372186600211208,11.056316552211484,9.54674747363299,8.027544255155462,8.524454659154898,9.154361803816855,11.967044886451788,10.679233037368235,8.800787057751847,9.315333603251545,9.227133885652975,239.0892318265023,239.0892318265023,0.0,265.654702029447,0.0,239.0892318265023,265.654702029447,0,0
+2017/03/15 16:00:00,261.4596684736606,0,1001.499846145293,0,0,0,56.10424793489534,0.0,16.86091074341296,0.0,131.64086955684016,0,39.380909295966944,2.6922594222841086e-09,14.04075573739858,0,0,0.0,540.1252634822192,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8050.627655107058,4314.711917761085,6049.603916684751,5915.9345459212445,46778.49662639057,8138.274000607433,4260.786992593345,4860.971940530486,3648.711654143226,38967.117853745454,8747.769036097365,4808.407931039263,5573.501433933844,4102.413915413609,39069.526990264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0533205936263881,0.0016870264148191967,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0254017151385004,1.0254017151385004,0.9729861292125132,0.9729861292125132,0.9557496052628875,0.9557496052628875,1.068834326209233,1.068834326209233,1.048864816172014,1.048864816172014,0.5066201547162924,0.44007532422358614,0.3824523212157069,0.4096620885435931,0.44533375999179226,0.5325448086266389,0.4834572395112869,0.4232324508390958,0.4485777621044332,0.44857121807245864,27.2013563605785,27.2013563605785,24.996150443618077,24.996150443618077,24.29403391347516,24.29403391347516,29.105938822176938,29.105938822176938,28.221761239144683,28.221761239144683,10.365438696652532,9.040040024978822,8.04610246297338,8.497719443354313,9.137833697797262,10.933549386135738,9.882427441660525,8.73479983605121,9.198756879848133,9.198633525717725,261.4596684736606,261.4596684736606,0.0,290.51074274851175,0.0,261.4596684736606,290.51074274851175,0,0
+2017/03/15 17:00:00,275.4983214598976,0,1023.4329625353544,0,0,0,63.164091186697036,0.0,17.073973916819753,0.0,133.89528835348938,0,39.380909295966944,2.802231157430943e-09,18.55208350166797,0,0,0.0,562.0583798722806,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7900.535422117857,4941.980172483237,6288.840608302359,5991.911064184147,49488.65004412929,8878.499796276177,5266.559139764189,6057.529757622648,4270.639562829184,47030.36262269656,9332.412731659555,5812.365837492545,6705.927992548833,4682.935874264099,47119.438304307245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05448832898900051,0.00172397274771356,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0140295536151962,1.0140295536151962,1.0261152494703876,1.0261152494703876,0.9573428655055048,0.9573428655055048,1.0634187383819143,1.0634187383819143,1.060035498534954,1.060035498534954,0.498493462062565,0.47746590764211816,0.3875336495446169,0.41342455557846225,0.4603735501751901,0.5186093786153045,0.5234965802524095,0.4243671317267133,0.44832315726573146,0.46423286212178905,26.714094160305095,26.714094160305095,27.23208943636429,27.23208943636429,24.3584470722913,24.3584470722913,28.864748240576574,28.864748240576574,28.714600590000273,28.714600590000273,10.193335287355424,9.761262012220556,8.12803694263988,8.562660688155063,9.42410094537918,10.624554802088511,10.731963143327889,8.754980922084357,9.193958970753556,9.499128827085244,275.4983214598976,275.4983214598976,0.0,306.1092460665529,0.0,275.4983214598976,306.1092460665529,0,0
+2017/03/15 18:00:00,260.471356328928,0,1025.5396376952187,0,0,0,64.85697637046238,0.0,19.28895381459987,0.0,110.93442390708215,0,39.380909295966944,2.9603169008736523e-09,26.01009293785621,0,0,0.0,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6598.948869377268,3522.6799876815826,5545.314783280567,5764.165474498249,45965.7858263506,9429.503036433674,5571.344735072396,6829.328602745901,4569.275411510149,53995.20213731427,9789.679810063411,6082.385837772343,7442.048362747466,4934.383379939674,54017.95157220993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054600489934940016,0.0017275214418604574,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.995485949210048,0.995485949210048,0.9552552103385176,0.9552552103385176,0.9553240793751945,0.9553240793751945,1.0533682198801118,1.0533682198801118,1.0605762758369501,1.0605762758369501,0.4938171210318107,0.4730443788963048,0.39116676992767047,0.41298144676459553,0.47867800553872375,0.5085670786316168,0.511747237381575,0.4248964099995541,0.4429402957402355,0.48211141141250735,25.929968870166874,25.929968870166874,24.274066512816376,24.274066512816376,24.276847389197712,24.276847389197712,28.41990679164047,28.41990679164047,28.738572771834157,28.738572771834157,10.095595361989012,9.672836313650436,8.18729587239136,8.554980998487736,9.78564987202276,10.407093652427207,10.47548650935886,8.764413393495204,9.093173910485646,9.855075283580817,260.471356328928,260.471356328928,0.0,289.4126181432533,0.0,260.471356328928,289.4126181432533,0,0
+2017/03/15 19:00:00,251.65895047973387,0,990.0492851826745,0,0,0,44.56124783293519,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,3.011216601155044e-09,27.0977424753112,0,0,0.0,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3373.6442122766157,1046.2044314590094,2926.7621060903643,4971.234664702559,32504.268793346146,6178.028711464619,2946.7986309905455,4176.262226652082,2193.0326157104537,40876.29314321713,6426.309892198883,3329.447670034669,4795.975327942507,2438.2718836840354,40531.95421690735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05271095727923145,0.0016677379457467486,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9819788171758135,0.9819788171758135,0.94186876283387,0.94186876283387,0.9442178841853083,0.9442178841853083,1.0337049314955542,1.0337049314955542,1.0562652303982745,1.0562652303982745,0.49043177910419483,0.4451875079369074,0.3941597564067876,0.4116649310830594,0.48870749278499565,0.49970452589713027,0.4719433956368698,0.42273715463124856,0.43507274965202203,0.4890173867251566,25.367042153152013,25.367042153152013,23.737080465751177,23.737080465751177,23.83080147036975,23.83080147036975,27.560153493711937,27.560153493711937,28.54775874049578,28.54775874049578,10.025427904467378,9.13509770748486,8.236537524099134,8.532213583891973,9.989879103802679,10.218801674633326,9.650948939259763,8.726007964953993,8.948107642056002,9.996258579796205,251.65895047973387,251.65895047973387,0.0,279.6210560885932,0.0,251.65895047973387,279.6210560885932,0,0
+2017/03/15 20:00:00,251.30748248300733,0,954.5589326701304,0,0,0,42.836206264082094,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,2.908525584871589e-09,23.999522252313618,0,0,0.0,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2935.2508535712263,804.9420848936608,2624.1208662375802,4730.389891203298,29513.400036571966,5991.925986463496,2810.803346386238,4202.219267890275,2184.6383323448867,40181.080995686134,6131.4450575773635,3091.898029966521,4731.4832041635145,2368.0313612114783,39802.66221114031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050821424623522904,0.0016079544496330404,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9686119961849429,0.9686119961849429,0.9295074414090992,0.9295074414090992,0.9358695779274725,0.9358695779274725,1.0262022466582794,1.0262022466582794,1.039998409872128,1.039998409872128,0.48535828306294604,0.4403970884055984,0.3966168644490844,0.41073135794007076,0.48896721731101656,0.4922103777236835,0.46315589035297683,0.42277952248942796,0.4314388196160844,0.48801487098869634,24.816877027265036,24.816877027265036,23.24752211600395,23.24752211600395,23.498729097139986,23.498729097139986,27.235837835452827,27.235837835452827,27.83379549422449,27.83379549422449,9.921196789832578,9.045989893201934,8.27724898169761,8.516113654501368,9.995225511074509,10.062230938646664,9.478127169996057,8.726759613972277,8.882000861702451,9.97563578103437,251.30748248300733,251.30748248300733,0.0,279.23053609223035,0.0,251.30748248300733,279.23053609223035,0,0
+2017/03/15 21:00:00,210.84445236111196,0,919.0685801575862,0,0,0,15.823533336438462,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9603169008736523e-09,26.55695677354794,0,0,0.0,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3678.952533432359,13693.60272438694,1171.2846564877386,0.0,0.0,0.0,16736.346643038978,1182.5947274609375,0.0,440.9101650756296,0.0,15957.951873002141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04893189196781434,0.0015481709535193316,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9246363771783841,0.9246363771783841,0.8043858892882317,0.8043858892882317,0.903374289384601,0.903374289384601,1.0009146830393703,1.0009146830393703,1.0229162311572915,1.0229162311572915,0.46571401845587135,0.39731867455777464,0.3811511426909093,0.3311145839109294,0.47648784542639433,0.4655108454507289,0.42343346965143,0.40215110175056756,0.35126553527425675,0.47173431905695745,23.05628225087085,23.05628225087085,18.64274166174998,18.64274166174998,22.23269195458562,22.23269195458562,26.158179487485867,26.158179487485867,27.094449954535378,27.094449954535378,9.528093957059369,8.288924571250377,8.025298771235896,7.280020364801203,9.74162923099317,9.524115162733153,8.738371069456008,8.369890736484507,7.567348811824303,9.646798433421566,210.84445236111196,210.84445236111196,0.0,234.27161373456883,0.0,210.84445236111196,234.27161373456883,0,0
+2017/03/15 22:00:00,136.87251297474944,0,741.0469943088763,0,0,0,0.42710844890933386,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8558334160802276e-09,20.69244691766231,0,0,0.0,581.3404080024277,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1695.7114872612126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.039453890875453576,0.0012482936056687891,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6496378505083488,0.6496378505083488,0.5100705846749184,0.5100705846749184,0.6330165546852738,0.6330165546852738,0.9387760767831755,0.9387760767831755,0.8318626039697593,0.8318626039697593,0.30945023325923326,0.18499794801399302,0.17160550311252049,0.11319240775013015,0.4108725844851265,0.29673141917423673,0.19939617961748213,0.20627292260998067,0.19425221940380114,0.3906847123017275,13.862512432662157,13.862512432662157,10.43937371933103,10.43937371933103,13.410519940649039,13.410519940649039,23.61402762888865,23.61402762888865,19.59832577754422,19.59832577754422,6.990332223911665,5.709527001009192,5.610390613038945,5.265377154011091,8.518546779213338,6.82951852307373,5.824464659950763,5.8824185125774875,5.782406869325484,8.179400694344181,136.87251297474944,136.87251297474944,0.0,152.08056997194382,0.0,136.87251297474944,152.08056997194382,0,0
+2017/03/15 23:00:00,87.46827972885174,0,578.31746689976,0,0,0,0.13188271499031762,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6358714716493084e-09,11.825415952387285,0,0,0.0,525.0819381309439,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,511.4253115565687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030790050301346406,0.0009741757290990943,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.46635684274610717,0.46635684274610717,0.32868091760327867,0.32868091760327867,0.44992314700566394,0.44992314700566394,0.8840839885966278,0.8840839885966278,0.629486641755617,0.629486641755617,0.22645356025538763,0.09876087810455017,0.08928795576510504,0.027393132399106613,0.3326015639418178,0.19095061182194892,0.08641608891047135,0.10127040609173092,0.013364896996780534,0.30401201594185684,9.540694281417657,9.540694281417657,7.246486195815692,7.246486195815692,9.2241563219864,9.2241563219864,21.501335903161447,21.501335903161447,13.316071629702108,13.316071629702108,6.063921132525152,5.201994681875362,5.165090246810635,5.015533841289937,7.300633568739258,5.755995231587207,5.154637604972152,5.212395265541787,5.003697562745003,6.920735394012183,87.46827972885174,87.46827972885174,0.0,97.18697747650194,0.0,87.46827972885174,97.18697747650194,0,0
+2017/03/16 00:00:00,40.766698999719615,0,561.6200608694135,0,0,0,0.3265388006361553,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.0713150865470646,2.5785364828820876e-09,9.571524113534666,0,0,0.0,508.38453210059726,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,423.5400833111538,696.6986464170997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029901068036410794,0.0009460489499082872,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6932160245347844,0.6932160245347844,0.5589198478974174,0.5589198478974174,0.6323276762352615,0.6323276762352615,0.8736980577612216,0.8736980577612216,0.7858540036230899,0.7858540036230899,0.4475964564534643,0.3149193627518197,0.24969819117658443,0.23832614932042182,0.5505036024351141,0.39350711465712596,0.2888415333167769,0.24955838726680526,0.20563092036391398,0.5075081202266333,15.104388085189001,15.104388085189001,11.541398067644934,11.541398067644934,13.392045473122039,13.392045473122039,21.113875854403332,21.113875854403332,18.016238684754626,18.016238684754626,9.180279968622685,7.061587068735221,6.294146439026989,6.17867842162579,11.34415884961092,8.225767388851551,6.733197128245621,6.2926939251353815,5.876924298297226,10.384416627659647,40.766698999719615,40.766698999719615,0.0,45.29633222191068,0.0,40.766698999719615,45.29633222191068,0,0
+2017/03/16 01:00:00,23.72217558897579,0,44.25296790402269,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250801652980006,0,0,0.0,8.762615391478551,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0023560607896785145,7.454412107558292e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6994413635131331,0.6994413635131331,0.5803199856793286,0.5803199856793286,0.6224186640832693,0.6224186640832693,0.8590224609301692,0.8590224609301692,0.8907060659866103,0.8907060659866103,0.4582312750252336,0.3218950039374356,0.22205389919946042,0.2421133956527485,0.6248919424189393,0.41792652131209496,0.31088317318902986,0.23663892215618293,0.2239423580266447,0.569284218620224,15.288500780769695,15.288500780769695,12.056758197853895,12.056758197853895,13.12858186002849,13.12858186002849,20.57395958977638,20.57395958977638,21.75068893802154,21.75068893802154,9.382730358011983,7.154307992013827,6.022896558795878,6.216529562307144,13.193943107235512,8.641163016815469,7.0088789300913135,6.162009558850713,6.0404060622651485,11.78851302065793,23.72217558897579,23.72217558897579,0.0,26.357972876639767,0.0,23.72217558897579,26.357972876639767,0,0
+2017/03/16 02:00:00,28.34429691626802,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5249338297951274,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7354768043368713,0.7354768043368713,0.6220685690608444,0.6220685690608444,0.6523459228698635,0.6523459228698635,0.8720573051456443,0.8720573051456443,0.9647895394071409,0.9647895394071409,0.4721558824888395,0.33690817371591786,0.2369941326377185,0.25862266776888143,0.6518995689222287,0.43536465013685227,0.3289968598057819,0.2485568058553033,0.24343981393611996,0.5873743572935943,16.387069950413107,16.387069950413107,13.119351355713363,13.119351355713363,13.937289472940705,13.937289472940705,21.05307115069141,21.05307115069141,24.660823257954206,24.660823257954206,9.655169075174896,7.3608633219252795,6.165508909012274,6.388569382443393,13.924942579564785,8.953442367154153,7.250825458430469,6.282311869378162,6.2299287071552385,12.230996600340248,28.34429691626802,28.34429691626802,0.0,31.4936632402978,0.0,28.34429691626802,31.4936632402978,0,0
+2017/03/16 03:00:00,23.722119502206134,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250240785283437,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7472733448483633,0.7472733448483633,0.6350994252115757,0.6350994252115757,0.6605728635377868,0.6605728635377868,0.8529951250594323,0.8529951250594323,0.9723890353688805,0.9723890353688805,0.48413479006427435,0.3492852743892713,0.2500983385550801,0.2721503277917642,0.6741341822217416,0.4457283744417624,0.3399726529724508,0.258228297662846,0.25566053036214875,0.6032295250362296,16.758829162514346,16.758829162514346,13.46650396329889,13.46650396329889,14.166406567100822,14.166406567100822,20.35479542439856,20.35479542439856,24.971634839551314,24.971634839551314,9.896227330074822,7.538348035025081,6.2983083719176705,6.538085980337954,14.550483841984303,9.145220482012718,7.404200932467418,6.384326110371916,6.356857911492838,12.630490734154023,23.722119502206134,23.722119502206134,0.0,26.357910558006814,0.0,23.722119502206134,26.357910558006814,0,0
+2017/03/16 04:00:00,52.21824468722519,0,88.72588128136032,0,0,0,0.048504402460278366,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,12.136458983121377,0.0,0.5251477520094033,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,189.20928926048515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8240497335930419,0.8240497335930419,0.7151201169043659,0.7151201169043659,0.7381118275515395,0.7381118275515395,0.8918420490080552,0.8918420490080552,0.8830330251779414,0.8830330251779414,0.388419393015514,0.3320963065509617,0.2743032124258103,0.2979494098954536,0.4637521691161297,0.3666651424546235,0.32559222358965917,0.28249513698577255,0.2822043040792199,0.4376809000591032,19.323380086575497,19.323380086575497,15.759606103110528,15.759606103110528,16.46959278465809,16.46959278465809,21.79364423574218,21.79364423574218,21.461927096346344,21.461927096346344,8.142432096332428,7.2936189321780915,6.562592072970958,6.8446223566328115,9.489748824577887,7.798570415871481,7.204288001028502,6.657626447776934,6.654204041093678,8.995903513015108,52.21824468722519,52.21824468722519,0.0,58.02027187469465,0.0,52.21824468722519,58.02027187469465,0,0
+2017/03/16 05:00:00,75.89059719330493,0,212.9421150752648,0,0,0,0.21609365903196426,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.363340303729527,0.0,0.5251202005875448,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,23.52192082053112,100.5993182558882,731.1117884755041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9050717356073592,0.9050717356073592,0.8732042630228769,0.8732042630228769,0.886300898074349,0.886300898074349,0.9524821279666146,0.9524821279666146,0.9227966222440012,0.9227966222440012,0.4705413891754448,0.367699819210778,0.28635369600957866,0.30606436963142664,0.6522472756225925,0.4378398514634259,0.3691414605310248,0.3054613699054901,0.30279946981596123,0.6071621500942795,22.29777219146635,22.29777219146635,21.095564638021003,21.095564638021003,21.584613465874554,21.584613465874554,24.162246533886034,24.162246533886034,22.98429995024763,22.98429995024763,9.623152906228256,7.814467969094395,6.703370242635273,6.946853854752078,13.934559982446501,8.998825836905382,7.8366945116732865,6.939161533622908,6.905388136084994,12.731267654300055,75.89059719330493,75.89059719330493,0.0,84.3228857703388,0.0,75.89059719330493,84.3228857703388,0,0
+2017/03/16 06:00:00,102.04612131102965,0,718.3991464815873,0,0,0,0.2618450314219933,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,2.360997034787242,2.5202484660208736e-09,0.5775755939071947,0,0,0.0,487.71185515005055,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1062.4555172776497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.038248102681716835,0.0012101433077226632,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9917608950597792,0.9917608950597792,1.022366135479441,1.022366135479441,1.020923938063454,1.020923938063454,1.0316648361025287,1.0316648361025287,0.9552829639337395,0.9552829639337395,0.5387944100925066,0.4212212862873852,0.3400828290334268,0.3560272643480946,0.8785929399851589,0.5149057559354019,0.43028827680078047,0.366401799374611,0.3620482932014545,0.8068278177988967,25.774025556568105,25.774025556568105,27.070820063053958,27.070820063053958,27.008922485915264,27.008922485915264,27.4717616303015,27.4717616303015,24.275187158290294,24.275187158290294,11.074854868182143,8.699165569106796,7.405766461347724,7.63776686434133,21.295933600031418,10.543846907308662,8.861188894205952,7.794531498185776,7.7281895584703335,18.726379256697314,102.04612131102965,102.04612131102965,0.0,113.38457923447739,0.0,102.04612131102965,113.38457923447739,0,0
+2017/03/16 07:00:00,161.66717297972872,0,862.3259419845589,0,0,0,8.301153315630363e-05,0.0,11.110595677687485,13.929299233552332,69.33401494192633,0,39.380909295966944,0.00015449268478104157,27.054122525764143,0,0,0.09716316561855136,596.0511349748593,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2925824323078647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04591087188183198,0.0014525879838235604,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4986992836485414,0.4986992836485414,0.41778486070913307,0.41778486070913307,0.4468155324440924,0.4468155324440924,0.9553672915063417,0.9553672915063417,0.43680461637574797,0.43680461637574797,0.18178523322374873,0.018802924347379926,0.04208830466591214,-0.007179424907264661,0.27774598319928157,0.18458828326230628,0.02860204708382758,0.07017720997593539,0.008270714763949727,0.26177566822315135,10.197658857146806,10.197658857146806,8.638679594429917,8.638679594429917,9.165605615809312,9.165605615809312,24.278592355448296,24.278592355448296,8.979812510519281,8.979812510519281,5.6850625538572785,5.0073187772581775,5.036672306718316,5.0010669919822845,6.602186854055901,5.706383475213869,5.01693522708716,5.101969160661525,5.001416016314025,6.422729800109792,161.66717297972872,161.66717297972872,0.0,179.63019219969857,0.0,161.66717297972872,179.63019219969857,0,0
+2017/03/16 08:00:00,162.39836745472198,0,919.0899443269171,0,0,0,0.07359626873247249,0.0,12.6452663876437,0.0,83.2008179303116,0,39.380909295966944,3.509675606707465e-05,27.097742475311204,0,0,0.021364169330992003,599.655407544689,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,288.32261294283666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0489330294120141,0.0015482069414609482,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.08009075253172694,0.08009075253172694,-0.11208541792051749,-0.11208541792051749,0.08438912215156773,0.08438912215156773,0.9910147721496311,0.9910147721496311,0.3406231260518578,0.3406231260518578,0.08679250067713414,-0.05054862282847356,-0.03435825594971645,-0.059024304326971415,0.07347341935993885,0.04004116781896578,-0.06306798113928182,-0.003721627556157613,-0.05411678663034564,0.043699608999834154,5.132822077401258,5.132822077401258,5.260209036330778,5.260209036330778,5.1474660823037794,5.1474660823037794,25.742853991339416,25.742853991339416,7.413451189194305,7.413451189194305,5.155988134767398,5.052899220460446,5.024438023286692,5.072129085586539,5.111775426208666,5.03319139914737,5.082352373563111,5.000286712695171,5.060631998250884,5.039534218370392,162.39836745472198,162.39836745472198,0.0,180.44263050524663,0.0,162.39836745472198,180.44263050524663,0,0
+2017/03/16 09:00:00,178.50138808395712,0,960.7472949947969,0,0,0,0.5513133798173112,0.0,11.435487997441953,0.0,106.27511244621549,0,39.380909295966944,5.107760034866427e-05,20.858513886915105,0,0,0.032142356668550455,588.066451256415,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2054.4193991316674,0.0,103.97832761396054,0.0,0.0,0.0,0.0,47.29448514573767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05115089761744938,0.0016183787454992524,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.21486258257307125,0.21486258257307125,-0.06654470150920767,-0.06654470150920767,0.16837327475360786,0.16837327475360786,1.0667029692532293,1.0667029692532293,0.46189803449640754,0.46189803449640754,0.24312446640801927,-0.028466420168876277,-0.0014767538676142367,0.016372425527158757,0.10387932345720506,0.21110977257826796,-0.026700175279046442,0.008928704389771629,0.0830835130611036,0.0604393418977054,5.9575878751246165,5.9575878751246165,5.091684089051654,5.091684089051654,5.5875854494385635,5.5875854494385635,29.010891734395756,29.010891734395756,9.45366140194237,9.45366140194237,6.226736449227957,5.016774993086045,5.000045143695928,5.0055489666197275,5.223484942163523,5.924366523835587,5.014757845673373,5.00165028624653,5.142937004596192,5.075629531550348,178.50138808395712,178.50138808395712,0.0,198.33487564884123,0.0,178.50138808395712,198.33487564884123,0,0
+2017/03/16 10:00:00,209.42915376075186,0,1035.3000440547075,0,0,0,0.8247363869780067,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,1.9825298884989004e-05,18.5299024655582,0,0,0.012476640387235295,573.9129847512467,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3082.8193317308196,0.0,38.25803977342182,0.0,0.0,0.0,0.0,226.47425052852088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05512014119911726,0.0017439628456322142,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3502723299766814,0.3502723299766814,0.08756285748761365,0.08756285748761365,0.33961191007217756,0.33961191007217756,1.0586277529081864,1.0586277529081864,0.6657722407828494,0.6657722407828494,0.2205310761809476,0.010600389066663248,0.041461307384880505,0.03668429039453595,0.13396078019810878,0.3012313793422199,-0.006540014937621748,0.05795424808272405,0.06371880685251145,0.09759261829400857,7.552782544138779,7.552782544138779,5.15877042619951,5.15877042619951,7.399078622898486,7.399078622898486,28.652245501370075,28.652245501370075,14.312719485974341,14.312719485974341,6.008886040000405,5.002326090667665,5.035587733366526,5.027859115117707,5.371777073262564,6.885632934817053,5.000885399251729,5.0695371346012195,5.0840611128367215,5.197242075973023,209.42915376075186,209.42915376075186,0.0,232.6990597341687,0.0,209.42915376075186,232.6990597341687,0,0
+2017/03/16 11:00:00,226.09155184389732,0,1095.9375006694618,0,0,0,0.868179418701897,0.0,17.340436426845667,0.0,147.76209134187457,0,39.380909295966944,7.715775803696937e-06,20.739927644732358,0,0,0.004854943957954597,581.3225342936139,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3596.0340418670994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05834852430385515,0.001846106636697463,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.39968831504461455,0.39968831504461455,0.14884745161346938,0.14884745161346938,0.4309425592710694,0.4309425592710694,1.0588382192356516,1.0588382192356516,0.8163069722652418,0.8163069722652418,0.11207552030389921,0.049925544314763856,0.04924142961058028,0.06534231015162628,0.222978622324039,0.08903185642644434,0.03557763205374863,0.06535541798837603,0.06552900001624941,0.19061535032114804,8.328502497970788,8.328502497970788,5.459082008905483,5.459082008905483,8.873017125636437,8.873017125636437,28.661563449658573,28.661563449658573,19.053430528144105,19.053430528144105,5.260163057694811,5.0516030076987875,5.050198343365807,5.08840012982175,6.031451773330502,5.16414423427031,5.026203517456921,5.088435606741697,5.088906085502742,5.753338741451728,226.09155184389732,226.09155184389732,0.0,251.21283538210812,0.0,226.09155184389732,251.21283538210812,0,0
+2017/03/16 12:00:00,205.25935586444905,0,1041.1455103286114,0,0,0,1.0081038442600045,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,7.869075736997967e-06,18.50954319873889,0,0,0.004951635473334835,562.0207997737921,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4053.918322010514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,141.21856749593525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05543135815331574,0.0017538095331269417,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.47257839499431703,0.47257839499431703,0.21650100771488776,0.21650100771488776,0.5173998515561037,0.5173998515561037,1.0688782557340024,1.0688782557340024,0.890688228244601,0.890688228244601,0.1507770775855177,-0.01373836229248364,0.0902787730728637,-0.024165091841108734,0.36823577051536394,0.11043283695904746,-0.027301153076134472,0.10347175395352295,0.1762111533772597,0.3441561928511205,9.663566248778722,9.663566248778722,5.972276822942391,5.972276822942391,10.598132004595968,10.598132004595968,29.10789953533876,29.10789953533876,21.750014853727023,21.750014853727023,5.4710739521316185,5.003907099287446,5.168775884103283,5.012088408448591,7.822720667195384,5.2525884754347345,5.01542969539355,5.221733869316694,5.643639000186354,7.464008276285654,205.25935586444905,205.25935586444905,0.0,228.06595096049892,0.0,205.25935586444905,228.06595096049892,0,0
+2017/03/16 13:00:00,202.7066793744112,0,985.310966274802,0,0,0,1.0691517623349474,0.0,16.67307048032785,0.0,129.2730206906943,0,39.380909295966944,8.627052783367125e-06,16.310518518034343,0,0,0.005428986403641762,541.6761308815968,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4293.850054329847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,168.4204823392375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052458685670871925,0.0016597562479060699,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5600171199685215,0.5600171199685215,0.2889855133940182,0.2889855133940182,0.5939077938366801,0.5939077938366801,1.0798241992048003,1.0798241992048003,0.9204620679161497,0.9204620679161497,0.21130548084329898,0.02456792973114812,0.13596551732338846,-0.007100789448298963,0.39524268424431747,0.1921142787266644,0.01694707887697364,0.1677156457498141,0.2849327256793532,0.38263587908392255,11.567339535430193,11.567339535430193,6.734931316021914,6.734931316021914,12.394294496066209,12.394294496066209,29.598570532911324,29.598570532911324,22.893153582319016,22.893153582319016,5.926084435648008,5.012494812142251,5.382996810754335,5.001043746638288,8.254448578027691,5.765252149018934,5.005945332390496,5.582998857861909,6.6864513400059025,8.049043067356763,202.7066793744112,202.7066793744112,0.0,225.22964374934577,0.0,202.7066793744112,225.22964374934577,0,0
+2017/03/16 14:00:00,197.61393251705945,0,948.2250581768726,0,0,0,11.84392881971344,0.0,16.798297350153536,0.0,115.5196477718057,0,39.380909295966944,2.6922632137546137e-09,14.071149276727546,0,0,0.0,540.086004282615,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4619.354601094663,12662.550097040303,0.0,0.0,0.0,0.0,11651.855584297196,0.0,0.0,0.0,0.0,10609.712537794783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05048420445395879,0.0015972850385298804,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7583792196746032,0.7583792196746032,0.528609835191605,0.528609835191605,0.7933615435712592,0.7933615435712592,1.0680102734880694,1.0680102734880694,1.0142124428696289,1.0142124428696289,0.38087533242044036,0.22535904389505942,0.2987635266521368,0.19364874456500436,0.4604990529717692,0.3615211326399169,0.22011459645960468,0.33045535912719953,0.2799592275040998,0.45529869954288393,17.114272972470857,17.114272972470857,10.845446211642653,10.845446211642653,18.268290423640167,18.268290423640167,29.069171409894935,29.069171409894935,26.72189221596311,26.72189221596311,8.020898305540499,6.053639500856136,6.854752866877206,5.777545268091728,9.426530722334661,7.720211098064965,6.005071201008974,7.270911906170241,6.627904956778906,9.32641821331579,197.61393251705945,197.61393251705945,0.0,219.57103613006606,0.0,197.61393251705945,219.57103613006606,0,0
+2017/03/16 15:00:00,189.60440528999743,0,948.2075418519087,0,0,0,10.146010743297214,0.0,17.241363593746797,0.0,108.75639138185811,0,39.380909295966944,2.692263213754614e-09,14.07973027243601,0,0,0.0,540.0684879576513,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4179.04242227733,16384.563135135842,0.0,0.0,0.0,0.0,7558.571629015585,0.0,0.0,0.0,0.0,5862.456804718327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050483271871843254,0.0015972555322818082,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8216750116473657,0.8216750116473657,0.6171767775409919,0.6171767775409919,0.8621068180040846,0.8621068180040846,1.047555822997408,1.047555822997408,1.0645627980680332,1.0645627980680332,0.382091243658783,0.24212989206139934,0.29912625509374097,0.2195468298626241,0.4904483119958725,0.36580690510135633,0.2404502597752335,0.33339531952035495,0.253549278951486,0.48463371349489254,19.24031799640754,19.24031799640754,12.990932159131034,12.990932159131034,20.686694527535067,20.686694527535067,28.1643042489503,28.1643042489503,28.915613715623138,28.915613715623138,8.040322184225744,6.216695751071711,6.859275521856503,5.999882324617374,10.025769376633448,7.785418427051482,6.199833393990801,7.311675391472804,6.334480967509009,9.906401727919658,189.60440528999743,189.60440528999743,0.0,210.67156143333048,0.0,189.60440528999743,210.67156143333048,0,0
+2017/03/16 16:00:00,202.77851411081394,0,1001.4534935245057,0,0,0,0.8950688931338239,0.0,16.86091074341296,0.0,131.64086955684016,0,39.380909295966944,2.3413110005433407e-06,14.000753280148983,0,0,0.0014721925874642964,540.0774386688444,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3705.78522484885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0533181257785237,0.001686948333832999,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6784854439440471,0.6784854439440471,0.4725487697834321,0.4725487697834321,0.7392979133623208,0.7392979133623208,1.061299310655575,1.061299310655575,1.0910770162732155,1.0910770162732155,0.309790900749034,0.10078487611630199,0.21278247805397107,0.13310825876019144,0.3680572573054489,0.29796526589941136,0.10835331469661685,0.12997572280515904,0.17596739363680847,0.341829573336857,14.675405343333097,14.675405343333097,9.662977215232488,9.662977215232488,16.50683553846605,16.50683553846605,28.770640587930856,28.770640587930856,30.107358812789982,30.107358812789982,6.994733647310213,5.210362619590782,5.939101122317908,5.367056503694101,7.819970521027756,6.844819394260568,5.243160330519871,5.3499706712511,5.641857105252086,7.430655439615293,202.77851411081394,202.77851411081394,0.0,225.3094601231266,0.0,202.77851411081394,225.3094601231266,0,0
+2017/03/16 17:00:00,209.76225407845,0,1023.4343452457738,0,0,0,0.6463591791625457,0.0,17.241363593746797,0.0,133.89528835348938,0,39.380909295966944,5.270594038478734e-05,18.5982809501439,0,0,0.03318086708500395,562.0265817156152,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2615.9697943181554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05448840260552742,0.0017239750768891565,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3061323066722965,0.3061323066722965,0.08179728929201273,0.08179728929201273,0.41320670012942834,0.41320670012942834,1.039669009217042,1.039669009217042,0.7933766722311568,0.7933766722311568,0.13480702066773542,-0.007912053848936815,0.04024367779111643,0.0033393105199181023,0.08782922789958182,0.09853632710147195,-0.019205101352932085,0.047008604163062406,0.011246385937242122,0.05548622037433749,6.9477214752897964,6.9477214752897964,5.138544309330811,5.138544309330811,8.558883900079621,8.558883900079621,27.819437117604437,27.819437117604437,18.268800754484644,18.268800754484644,5.37649276244926,5.001295867284256,5.03352800651605,5.000230831282423,5.159738202208203,5.201076786442897,5.007635214414748,5.045748684271857,5.002618238888331,5.063739856685459,209.76225407845,209.76225407845,0.0,233.0691711982778,0.0,209.76225407845,233.0691711982778,0,0
+2017/03/16 18:00:00,196.8485854059877,0,1025.6229471214233,0,0,0,0.6849109221546076,0.0,20.29820168087334,0.0,110.93442390708215,0,39.380909295966944,0.000132277117813017,25.550007322792766,0,0,0.08330942620467738,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2781.2198633602957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05460492539049899,0.0017276617765825757,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2185274606276902,0.2185274606276902,-0.030281490089374568,-0.030281490089374568,0.34663461662455214,0.34663461662455214,1.031723909637362,1.031723909637362,0.7127189440559026,0.7127189440559026,0.1257146959404629,0.017362213464552096,0.04675722105980558,0.06987240042925456,0.11973311289296903,0.07712722249123162,-0.007272142521986803,0.05356423537241361,0.032342640817436145,0.0843580008808944,5.9906001017009345,5.9906001017009345,5.018982490964518,5.018982490964518,7.499790348305439,7.499790348305439,27.474318974680088,27.474318974680088,15.686769789412978,15.686769789412978,5.3273847303639315,5.0062401768677915,5.045260653614463,5.101085100510886,5.296952326672468,5.12317196760462,5.001094729019982,5.059400013289064,5.021654700859301,5.147357301926178,196.8485854059877,196.8485854059877,0.0,218.72065045109744,0.0,196.8485854059877,218.72065045109744,0,0
+2017/03/16 19:00:00,207.64832713738613,0,990.0775122718875,0,0,0,0.5505796910160342,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,4.480258266718111e-05,27.0977424753112,0,0,0.028227089213141245,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2213.78151020481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05271246011036915,0.0016677854942763856,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.15491353982214087,0.15491353982214087,-0.0940568492826831,-0.0940568492826831,0.2869582384448991,0.2869582384448991,1.0186206117919456,1.0186206117919456,0.7036421727999185,0.7036421727999185,0.08686586739767918,0.02238014788542998,0.012894802761057315,0.018412984396242064,0.17163035187595613,0.14310456199525182,0.001869954381294458,0.022925461705607005,0.03448419184411882,0.1284917407924544,5.497303131892508,5.497303131892508,5.183203345696754,5.183203345696754,6.710594120128221,6.710594120128221,26.910226749568892,26.910226749568892,15.413684082151434,15.413684082151434,5.156252052077463,5.010368513788336,5.003442020770436,5.0070183628859155,5.610567622817911,5.42430928351483,5.000072384058072,5.010879959259043,5.024617510228339,5.342019019584143,207.64832713738613,207.64832713738613,0.0,230.7203634859846,0.0,207.64832713738613,230.7203634859846,0,0
+2017/03/16 20:00:00,209.0066550869315,0,954.6188739489157,0,0,0,0.5403460961691505,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,9.510774228839009e-05,23.994459919316956,0,0,0.059941278785385965,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2172.0767828635644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05082461594160434,0.0016080554207126049,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.11916643193331691,0.11916643193331691,-0.12923774446341535,-0.12923774446341535,0.2558231613394226,0.2558231613394226,1.011631797444275,1.011631797444275,0.6744591413546239,0.6744591413546239,0.19854282337422713,0.050855054809425024,0.11960633643589107,0.0823748036204605,0.1968440409583886,0.09336286245871178,0.02636126989410081,0.11621469134978026,0.05148215118777818,0.15593534841535012,5.2941463474890185,5.2941463474890185,5.346004900132584,5.346004900132584,6.358589397984062,6.358589397984062,26.61197428388317,26.61197428388317,14.559784867452237,14.559784867452237,5.817410946152648,5.053542602179689,5.2963234211664485,5.140508141144764,5.8034597127150676,5.180508789072476,5.014385568994342,5.279746279952008,5.054871374645614,5.503892169174563,209.0066550869315,209.0066550869315,0.0,232.2296167632572,0.0,209.0066550869315,232.2296167632572,0,0
+2017/03/16 21:00:00,195.22290464602403,0,919.0846091581614,0,0,0,0.4749695170182395,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.5428326659122963e-05,26.283947452513832,0,0,0.01602900057511423,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1900.1932905515246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04893274536367774,0.0015481979543695836,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.09210731367355936,0.09210731367355936,-0.14872157383931153,-0.14872157383931153,0.22716228529395985,0.22716228529395985,0.9983742490078442,0.9983742490078442,0.6375665384867439,0.6375665384867439,0.21199440739354433,0.020985112813234064,0.06085207433317268,0.011053896131963472,0.13886653963968154,0.022269165819699375,0.008620440143542612,0.05481809693106488,0.03497168891664154,0.09521997204779765,5.175684631005026,5.175684631005026,5.458305110357429,5.458305110357429,6.070605524384533,6.070605524384533,26.05124653735352,26.05124653735352,13.533059244710813,13.533059244710813,5.932144537210689,5.009116162170642,5.076666158643903,5.002529379406468,5.399528748764084,5.010265932566384,5.001538300448814,5.062213878103776,5.025318495488008,5.187764245570094,195.22290464602403,195.22290464602403,0.0,216.91433849558226,0.0,195.22290464602403,216.91433849558226,0,0
+2017/03/16 22:00:00,137.48811281779118,0,741.08974218754,0,0,0,0.009420352650439232,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,9.341513631506207e-05,20.696048883946204,0,0,0.05890400519460456,581.3242518758968,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,36.323695651959405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03945616680417727,0.0012483656144671536,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.13851719642236954,-0.13851719642236954,-0.18227002426203817,-0.18227002426203817,-0.005187652644622923,-0.005187652644622923,0.9397967487195616,0.9397967487195616,0.3554609036940143,0.3554609036940143,0.03577882023740724,-0.06653291301027225,-0.0391032204020343,-0.08977394279295799,0.0683277249888034,-0.03574716336594093,-0.1153520782230122,-0.06951471807080654,-0.08488525794330623,0.0460556145150507,5.397519416214635,5.397519416214635,5.688726569623483,5.688726569623483,5.000557087146618,5.000557087146618,23.654596511278484,23.654596511278484,7.629340777848185,7.629340777848185,5.026500729342757,5.091651601540747,5.031654517282917,5.166892929350141,5.096664186489065,5.026453852050153,5.275606378666524,5.100052601330191,5.14920568620667,5.043912416151983,137.48811281779118,137.48811281779118,0.0,152.76456979754576,0.0,137.48811281779118,152.76456979754576,0,0
+2017/03/16 23:00:00,88.4929621623548,0,571.2269071009359,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,5.5702912704570135e-05,11.83793366645238,0,0,0.035134836048368194,517.9562434960715,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0304125436456321,0.0009622316816561395,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.30966538438863817,-0.30966538438863817,-0.30370499980998417,-0.30370499980998417,-0.1841852597898107,-0.1841852597898107,0.8050258759684983,0.8050258759684983,0.11274581708384618,0.11274581708384618,7.307007899523221e-05,-0.14809306129928468,-0.037426704127590874,-0.1591434146742331,-0.004518613438241734,-0.11372350197054709,-0.19797852620432554,-0.07766436020641272,-0.17300009214474146,-0.02623816485204784,6.993111404644424,6.993111404644424,6.916843596009855,6.916843596009855,5.703297750021264,5.703297750021264,18.664637249889864,18.664637249889864,5.2632860650810755,5.2632860650810755,5.000000110524866,5.454435897764768,5.028998218120819,5.5248617783802985,5.0004226604519175,5.267874702284757,5.812763277181659,5.124894019854054,5.620364791210207,5.014251519639345,88.4929621623548,88.4929621623548,0.0,98.32551351372756,0.0,88.4929621623548,98.32551351372756,0,0
+2017/03/17 00:00:00,39.3671594465416,0,568.8012452233115,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.578540184989366e-09,9.569838447539883,0,0,0.0,515.5657164544953,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030283399610563453,0.0009581456544073859,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.03376685656175876,-0.03376685656175876,-0.11901890787767976,-0.11901890787767976,0.05521418448572946,0.05521418448572946,0.7995224521682928,0.7995224521682928,0.4261170978169671,0.4261170978169671,0.12341771728633774,-0.02901676334744447,0.036050611514110105,-0.04512829149761992,0.2712083743405863,-0.033051647301663455,-0.10444737366740232,-0.01099966739317895,-0.07909309083917639,0.20013069710354772,5.023603930870053,5.023603930870053,5.293418056175057,5.293418056175057,5.0631163006691935,5.0631163006691935,18.476916785140162,18.476916785140162,8.786213564325948,8.786213564325948,5.315522532597228,5.017429911876789,5.0269049039805935,5.042161718940832,6.527425235618836,5.022614571137737,5.225937005994339,5.002504622643471,5.129532736154474,5.830560457996455,39.3671594465416,39.3671594465416,0.0,43.74128827393511,0.0,39.3671594465416,43.74128827393511,0,0
+2017/03/17 01:00:00,23.721946835749037,0,42.02711538819231,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248514120712449,0,0,0.0,6.5367628756481695,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0022375547530319073,7.079467268160597e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.06001302837283355,0.06001302837283355,-0.056444939806446784,-0.056444939806446784,0.1254813834910395,0.1254813834910395,0.7515560261785863,0.7515560261785863,0.5887593564483504,0.5887593564483504,0.11215550821049354,-0.0334989953427616,0.013398163424588109,-0.05205346971343286,0.38151431435898925,-0.03807779514979285,-0.11864259322516209,-0.04326826016408146,-0.09105671428088866,0.29940552439706175,5.07456620567082,5.07456620567082,5.065961862872541,5.065961862872541,5.326169836110822,5.326169836110822,16.89527096147765,16.89527096147765,12.265458793505758,12.265458793505758,5.260534751959057,5.023230913185614,5.003715992932982,5.056096141052549,8.031098013659161,5.030015991120109,5.291564375785754,5.03875753866042,5.171698211380956,6.862761361767241,23.721946835749037,23.721946835749037,0.0,26.357718706387818,0.0,23.721946835749037,26.357718706387818,0,0
+2017/03/17 02:00:00,28.34429217721041,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5249290907375143,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.09926665424744535,0.09926665424744535,-0.024090064750396375,-0.024090064750396375,0.15667773310173816,0.15667773310173816,0.7272431625048954,0.7272431625048954,0.6609710636055217,0.6609710636055217,0.09704842427069,-0.04214828183658335,-0.005557179810880011,-0.06109294818214512,0.41203136829442705,-0.05193380730303662,-0.1337548911757536,-0.067157583877331,-0.10578072229998342,0.31853319040687783,5.204069805434614,5.204069805434614,5.012013459529015,5.012013459529015,5.50870665050472,5.50870665050472,16.131133646739073,16.131133646739073,14.177570695035499,14.177570695035499,5.195047576468795,5.036776907922928,5.000639278850315,5.0772744044995335,8.538543177936475,5.0558384946834,5.370634258623539,5.093381044719905,5.231745214786912,7.109365051949766,28.34429217721041,28.34429217721041,0.0,31.493657974678232,0.0,28.34429217721041,31.493657974678232,0,0
+2017/03/17 03:00:00,23.722092265894965,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249968422171731,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.10707628174043503,0.10707628174043503,-0.020732046630718155,-0.020732046630718155,0.15853014896968465,0.15853014896968465,0.6850313301182431,0.6850313301182431,0.6909249597988784,0.6909249597988784,0.08076538546335334,-0.055022825596793966,-0.02450828074131138,-0.07425585729418022,0.440988852549585,-0.06986457766397629,-0.15246787710636825,-0.09142818019392453,-0.12432926054777409,0.33337510951225274,5.237459523030765,5.237459523030765,5.008897614263901,5.008897614263901,5.520819996814581,5.520819996814581,14.864875870964966,14.864875870964966,15.037051892377264,15.037051892377264,5.135069770326368,5.062679508207509,5.012434211331637,5.1141693437076725,9.056944052738004,5.101062462297733,5.481709140384737,5.173102476712273,5.320203730967833,7.311393921102777,23.722092265894965,23.722092265894965,0.0,26.35788029543885,0.0,23.722092265894965,26.35788029543885,0,0
+2017/03/17 04:00:00,40.70972283740917,0,88.72588128136032,0,0,0,0.06641047319379857,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.6100707810290511,0.0,0.5251080335522068,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,212.4748595258333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.17542251715784646,0.17542251715784646,0.047330790950354036,0.047330790950354036,0.22302140374269785,0.22302140374269785,0.7239331449220571,0.7239331449220571,0.8029828330802165,0.8029828330802165,0.07907793071445102,-0.05641012302870386,-0.027020765450455463,-0.07596383109532391,0.3731423729456158,-0.07713316940247776,-0.1608077479303834,-0.10118945726226712,-0.13309142607249425,0.3342379276573211,5.637882999181883,5.637882999181883,5.046377999590931,5.046377999590931,6.031848439499726,6.031848439499726,16.02906577674031,16.02906577674031,18.59480007952706,18.59480007952706,5.129483070835164,5.065880502232531,5.015114381179558,5.119483177430453,7.898842851335473,5.12319096778117,5.535909700743915,5.212055697694694,5.366963602313632,7.323426057968632,40.70972283740917,40.70972283740917,0.0,45.23302537489907,0.0,40.70972283740917,45.23302537489907,0,0
+2017/03/17 05:00:00,74.27214339986176,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.9610064304233178,0.0,0.5250939394825627,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4084896634380666,0.4084896634380666,0.2810741544819408,0.2810741544819408,0.4521853783476036,0.4521853783476036,0.9130351917003933,0.9130351917003933,0.9174377836217776,0.9174377836217776,0.12538630358879924,-0.00892616696422508,0.021036121637520094,-0.027946833870780566,0.5413568283877858,-0.023148580301553652,-0.10769332801775534,-0.04785319796998648,-0.0799477457017744,0.47748164222623596,8.47760696900518,8.47760696900518,6.6409387626499665,6.6409387626499665,9.267040389567327,9.267040389567327,22.604648724274057,22.604648724274057,22.775404105814985,22.775404105814985,5.32567538928113,5.001649348395247,5.009160534494654,5.016168185913955,11.133281042196202,5.011092770036598,5.240205625526443,5.047407536574184,5.132348042283155,9.761578191946427,74.27214339986176,74.27214339986176,0.0,82.52460377762418,0.0,74.27214339986176,82.52460377762418,0,0
+2017/03/17 06:00:00,100.64784114956944,0,716.369068020505,0,0,0,0.01961529984119093,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,1.2048862022750566,2.5202522225236344e-09,0.5776359965399495,0,0,0.0,485.6817766889681,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,79.02995360451224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03814001980075617,0.0012067236407090505,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5466086163140295,0.5466086163140295,0.41937339070783713,0.41937339070783713,0.5900387330957843,0.5900387330957843,1.017741595270664,1.017741595270664,0.9661960676206467,0.9661960676206467,0.1600836755918703,0.026419160650097827,0.05858167487421674,0.008489105700028662,0.6786696848957905,0.030339195749867678,-0.05521233881280696,0.0062666961125614346,-0.027148446539735527,0.58952051316292,11.253917138208976,11.253917138208976,8.66657704930229,8.66657704930229,12.297366803379632,12.297366803379632,26.87261371787899,26.87261371787899,24.7181793087546,24.7181793087546,5.531089087559721,5.0144488233077595,5.071051169222557,5.0014917846148705,14.680712843549273,5.019054910530812,5.0631120805218615,5.000812940709508,5.015257563217901,12.284433694897842,100.64784114956944,100.64784114956944,0.0,111.83093461063271,0.0,100.64784114956944,111.83093461063271,0,0
+2017/03/17 07:00:00,149.17489973227947,0,869.3155110301815,0,0,0,0.0,0.0,11.110595677687485,0.0,69.33401494192633,0,39.380909295966944,0.008723684552138613,27.05267266384372,0,0,5.572381659542473,597.5654855265581,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,692.088907825809,0.0,0.0,0.0,668.270388544053,0.0,0.0,0.0,0.0,0.0,553.3703073696092,0.0,0.0,0.0,404.9804886521953,0.0,0.0,0,0,0,0,0,0,0,0,0.046283001715041315,0.0014643619123504122,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3458217038746372,0.3458217038746372,0.23087921124630761,0.23087921124630761,0.3732413775909678,0.3732413775909678,0.8980860916111466,0.8980860916111466,0.7750381940101421,0.7750381940101421,0.03139043094580312,-0.11991654484034936,-0.06634410619929676,-0.1269699225178751,0.411275353057457,-0.061363092837297,-0.17890355564870306,-0.09904310327113373,-0.1566661442929902,0.3545174635081901,7.488025200447055,7.488025200447055,6.106006926877811,6.106006926877811,7.900389398574376,7.900389398574376,22.030691616981102,22.030691616981102,17.657328653587115,17.657328653587115,5.020398329677022,5.2978634679059695,5.091132060403979,5.333959730454978,8.525490579421529,5.077959424469455,5.663485549916359,5.203151299916669,5.508631318829472,7.615334963504068,149.17489973227947,149.17489973227947,0.0,165.74988859142164,0.0,149.17489973227947,165.74988859142164,0,0
+2017/03/17 08:00:00,164.67461157609495,0,919.9438128454007,0,0,0,0.0,0.0,13.849801224299942,0.0,83.2008179303116,0,39.380909295966944,0.001348916053845723,27.097742475311204,0,0,0.8752326878144536,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,227.34812738863974,0.0,0.0,0.0,73.10365513589342,0.0,0.0,0,0,0,0,0,0,0,0,0.04897849000440427,0.0015496452829155262,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.053605676839347256,-0.053605676839347256,-0.17377379515154018,-0.17377379515154018,0.015433189562784208,0.015433189562784208,0.8849478848235394,0.8849478848235394,0.3545052083635435,0.3545052083635435,-0.06927390772781336,-0.21087613508566566,-0.13445571528790207,-0.2191683154346792,0.10675464479581043,-0.11040405590729205,-0.2642296040161577,-0.14178837889117757,-0.24941207311037822,0.05043921919833344,5.059491973634124,5.059491973634124,5.6259333531428695,5.6259333531428695,5.004930566986033,5.004930566986033,21.533763986402576,21.533763986402576,7.6151532793135175,7.6151532793135175,5.099360456536914,5.922317772092299,5.3745314909953095,5.996430547262264,5.236034378937049,5.252456762114292,6.449605932579445,5.4165332834271425,6.291174651898828,5.052670460017538,164.67461157609495,164.67461157609495,0.0,182.9717906401055,0.0,164.67461157609495,182.9717906401055,0,0
+2017/03/17 09:00:00,180.2306504142005,0,954.8615156323099,0,0,0,0.0,0.0,11.993903757707747,0.0,106.27511244621549,0,39.380909295966944,0.0013925883405236095,20.863344724742632,0,0,0.9073778890851958,581.3054363615112,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.465846044312578,0.0,0.0,0.0,3.533181352069814,0.0,0.0,0.0,0.0,0.0,248.53661934864283,0.0,0.0,0.0,58.252652885849535,0.0,0.0,0,0,0,0,0,0,0,0,0.05083753436455454,0.0016084641506098657,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.30208973538996403,-0.30208973538996403,-0.26143118653385855,-0.26143118653385855,-0.16408457461248624,-0.16408457461248624,0.929109598428975,0.929109598428975,0.25974551515222555,0.25974551515222555,-0.06843839675603394,-0.23708497646667862,-0.14607807766493758,-0.24118070556212137,0.09116718974267649,-0.09447751504085183,-0.2799507077400148,-0.12991178429068626,-0.2677040783900504,0.012568769095617834,6.896433841054062,6.896433841054062,6.418977238231349,6.418977238231349,5.557998863696881,5.557998863696881,23.231867061626346,23.231867061626346,6.400686634279893,6.400686634279893,5.096977643458146,6.166404705974017,5.442142262947286,6.207152010290869,5.172115247376922,5.184846402309319,6.627805560235458,5.349626180379403,6.488092901429297,5.003270163095706,180.2306504142005,180.2306504142005,0.0,200.25627823800056,0.0,180.2306504142005,200.25627823800056,0,0
+2017/03/17 10:00:00,210.2894733704697,0,1046.5733491301137,0,0,0,0.08636367914393683,0.0,17.27782303358624,0.0,133.89528835348938,0,39.380909295966944,0.0066399283115735905,18.49845734582014,0,0,4.3767757993475405,580.8219906676925,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,339.1466044482129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,396.6496365664342,0.0,0.0,0.0,378.52101503491673,0.0,0.0,0.0,0.0,0.0,600.2903813565523,0.0,0.0,0.0,402.0568157615294,0.0,0.0,0,0,0,0,0,0,0,0,0.05572034031154411,0.0017629527271761066,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2863541513076638,-0.2863541513076638,-0.41501683611229007,-0.41501683611229007,-0.13349174740437614,-0.13349174740437614,0.9995739425651079,0.9995739425651079,0.34596193771593536,0.34596193771593536,-0.07453897998939277,-0.25407979625748994,-0.15314041065972056,-0.25616346204414475,0.03643756119716822,-0.10516436902763024,-0.29193906944815917,-0.14103117948370728,-0.2795147138369168,-0.044884525614169314,6.70337567733786,6.70337567733786,8.590326552145527,8.590326552145527,5.369176210742452,5.369176210742452,26.101713999239678,26.101713999239678,7.4900527758719875,7.4900527758719875,5.115041829380161,6.340086233090034,5.485972500314205,6.362216083893699,5.027485606468829,5.229051139380843,6.770698989564593,5.4120924254631575,6.622723087860777,5.041707424925988,210.2894733704697,210.2894733704697,0.0,233.65497041163297,0.0,210.2894733704697,233.65497041163297,0,0
+2017/03/17 11:00:00,225.3075646597454,0,1095.9428318298078,0,0,0,0.6096580454627423,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,4.006798891537705e-05,20.756568474991752,0,0,0.025982975756343018,581.3067374221615,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2479.8541133341823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05834880813878079,0.0018461156170366609,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.11207627990558944,0.11207627990558944,-0.33941669218373915,-0.33941669218373915,0.0013459847754187899,0.0013459847754187899,1.0718995195633447,1.0718995195633447,0.49887662468510546,0.49887662468510546,0.10538429973273095,-0.1981403056329948,-0.08800020703728599,-0.1514677223700524,-0.009588677268964525,0.08087419787770904,-0.2131503717555206,-0.11698785912628644,-0.15084652909018098,-0.07325655749192575,5.260166586223349,5.260166586223349,7.396308963699923,7.396308963699923,5.000037502581719,5.000037502581719,29.24291170531906,29.24291170531906,10.201385621174111,10.201385621174111,5.230010644692044,5.81409436475947,5.160360954103268,5.47540374747426,5.001903268380545,5.135434071361118,5.942357556994665,5.283483184141062,5.471508459622655,5.111116416359337,225.3075646597454,225.3075646597454,0.0,250.3417385108282,0.0,225.3075646597454,250.3417385108282,0,0
+2017/03/17 12:00:00,204.91752247398367,0,1041.1648197667785,0,0,0,0.7054469455383797,0.0,16.798297433460366,0.0,129.49988082968767,0,39.380909295966944,7.451257856161125e-05,18.532913456751686,0,0,0.04965049831938845,561.9954103491133,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2882.7706232941555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.055432386202106394,0.0017538420598740688,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.059413702720058,0.059413702720058,-0.25848881695218345,-0.25848881695218345,0.09689892705956964,0.09689892705956964,1.0379616780921526,1.0379616780921526,0.597459465061026,0.597459465061026,0.04098817584035285,-0.06193524124764187,-0.05020358710043788,-0.08253338533056413,0.12080068246203263,0.023377732547276868,-0.11452772704398581,-0.05307233252260827,-0.029025290831353683,0.06481268804817246,5.073084083677912,5.073084083677912,6.3871284650526405,6.3871284650526405,5.194446870906674,5.194446870906674,27.745079128604885,27.745079128604885,12.483842869270248,12.483842869270248,5.034780095080009,5.079420237220049,5.0521794429176765,5.141049817456107,5.302274760198088,5.011313481402695,5.2716789947594265,5.0583138953416125,5.017440158419632,5.086972641939738,204.91752247398367,204.91752247398367,0.0,227.68613608220406,0.0,204.91752247398367,227.68613608220406,0,0
+2017/03/17 13:00:00,202.4078388481465,0,985.3009242637349,0,0,0,0.6005804539945928,0.0,16.86091082671979,0.0,129.2730206906943,0,39.380909295966944,4.6567162599442194e-05,16.292371013608207,0,0,0.031035995501365366,541.6404818614319,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2427.135169680375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05245815102676453,0.0016597393321391898,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.02109036089938381,0.02109036089938381,-0.2646597029015236,-0.2646597029015236,0.09217146620755175,0.09217146620755175,1.017540201405709,1.017540201405709,0.601191558043817,0.601191558043817,0.0682358591965971,-0.09086606529655496,-0.07231516125489938,-0.08250079251400103,0.10697635956192503,0.0025451796207557396,-0.09057980459266954,-0.06540920210471098,-0.054160485518774115,0.052036319136230795,5.0092078351448635,5.0092078351448635,6.454342596253113,6.454342596253113,5.1759295366241815,5.1759295366241815,26.86400015400251,26.86400015400251,12.578530117864986,12.578530117864986,5.096404379548574,5.170979717795774,5.1082782616426385,5.1409384032138234,5.237016316937613,5.000134096621551,5.169903727206432,5.088581250309474,5.060729970394064,5.0560591775472545,202.4078388481465,202.4078388481465,0.0,224.89759872016276,0.0,202.4078388481465,224.89759872016276,0,0
+2017/03/17 14:00:00,186.29367684203493,0,948.1654673034744,0,0,0,0.5070089240811453,0.0,16.798297350153536,0.0,115.5196477718057,0,39.380909295966944,2.042684717413655e-05,14.087793073180372,0,0,0.013614819288096587,540.0127985899289,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2030.7628241206978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05048103179171971,0.0015971846577081642,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.03090802398098704,-0.03090802398098704,-0.3015377084654299,-0.3015377084654299,0.05384329338726808,0.05384329338726808,1.007196853908555,1.007196853908555,0.5320684539698912,0.5320684539698912,0.05736342374094945,-0.1312126516405698,-0.08831578384639845,-0.14417466501618773,0.014444775815503354,0.004345190609564915,-0.12968134359814054,-0.08019780032508533,-0.10029186061403837,-0.03653765978298766,5.019776159035999,5.019776159035999,6.889483974606023,6.889483974606023,5.060020628359908,5.060020628359908,26.423660165596516,26.423660165596516,10.922848240067964,10.922848240067964,5.068126337908481,5.356668511048753,5.16151355455807,5.4306845874902905,5.0043192318613166,5.000390839877539,5.348386011896423,5.133177471546844,5.2083086495295134,5.027636835819791,186.29367684203493,186.29367684203493,0.0,206.9929742689277,0.0,186.29367684203493,206.9929742689277,0,0
+2017/03/17 15:00:00,182.458479645707,0,959.6364571300956,0,0,0,0.034386084212799005,0.0,17.133076708931206,0.0,108.75639138185811,0,39.380909295966944,0.01688950447996207,14.04804898804912,0,0,11.467677373820681,540.0297258620175,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,132.37086735672312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1185.6264720095462,0.0,0.0,0.0,1169.9784181913233,0.0,0.0,0.0,0.0,0.0,1049.504890580781,0.0,0.0,0.0,843.8411804747927,0.0,2.936980726991998,0,0,0,0,0,0,0,0,0.05109175578672766,0.001616507539200474,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.052068281223552296,-0.052068281223552296,-0.3128303792477249,-0.3128303792477249,-0.21038607448154878,-0.21038607448154878,0.9643954585780352,0.9643954585780352,0.2746000556494515,0.2746000556494515,-0.08600192331347609,-0.2824957991540165,-0.20856118784969088,-0.28384453047147873,-0.10455747879490097,-0.1156869249117712,-0.2961924668262355,-0.20381266280014068,-0.27885940795530767,-0.1657479724092138,5.056128073128065,5.056128073128065,7.034221155161148,7.034221155161148,5.918027886950199,5.918027886950199,24.644767085588242,24.644767085588242,6.565986337461695,6.565986337461695,5.1531584094657035,6.657634243982841,5.902141645289063,6.67355226942567,5.226413839468307,5.2772097225001176,6.822855191827472,5.8614573558321155,6.615099130473695,5.5693831533808975,182.458479645707,182.458479645707,0.0,202.73164405078555,0.0,182.458479645707,202.73164405078555,0,0
+2017/03/17 16:00:00,205.4714513269792,0,997.8410100428838,0,0,0,0.1059773749942589,0.0,16.86091074341296,0.0,131.64086955684016,0,39.380909295966944,0.023133840528281796,14.027675312782268,0,0,16.320952678519163,520.1454747012908,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,409.6102231008659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1294.2068513339884,0.0,0.0,0.0,1354.9112634510884,0.0,0.0,0.0,0.0,0.0,1193.9806220321225,0.0,0.0,0.0,1116.6908031180435,0.0,179.08266377265778,0,0,0,0,0,0,0,0,0.05312579448217154,0.0016808631056823894,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.31395465044675774,-0.31395465044675774,-0.30498996830762837,-0.30498996830762837,-0.24878288275869886,-0.24878288275869886,0.9719009660895223,0.9719009660895223,0.1954920581512527,0.1954920581512527,-0.14191454971793288,-0.3156345440082697,-0.24863600040336703,-0.326120877424079,-0.1592103922513102,-0.16591401080299142,-0.33056894048180857,-0.24474161398546562,-0.33182439462285857,-0.22078443250535248,7.048926266738391,7.048926266738391,6.933158690996336,6.933158690996336,6.284651621869102,6.284651621869102,24.95160585976383,24.95160585976383,5.792442792059944,5.792442792059944,5.417275575200023,7.070998487813426,6.28313123824212,7.211481847998797,5.525304149322679,5.570525852066652,7.272479936224869,6.243151025865615,7.28984838334928,6.0112102696936915,205.4714513269792,205.4714513269792,0.0,228.30161258553244,0.0,205.4714513269792,228.30161258553244,0,0
+2017/03/17 17:00:00,212.4713378767602,0,1047.9286703753805,0,0,0,0.12960297850994004,0.0,17.073973916819753,0.0,133.89528835348938,0,39.380909295966944,0.007853612408326485,18.55173451711157,0,0,5.731149843761183,580.8229378685455,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,501.57734060855586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,371.5189210674713,0.0,0.0,0.0,828.4020547942091,0.0,0.0,0.0,0.0,0.0,214.18964414977117,0.0,0.0,0.0,612.3103993879129,0.0,0.0,0,0,0,0,0,0,0,0,0.0557924986185376,0.0017652357657108914,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3853870766469072,-0.3853870766469072,-0.07035776776086475,-0.07035776776086475,-0.2822919979103681,-0.2822919979103681,0.962112194896592,0.962112194896592,0.19075626663065207,0.19075626663065207,-0.144351699614247,-0.2945408083199418,-0.24704637441575644,-0.3423972015521317,-0.09523169377341223,-0.20349476914511128,-0.3029063594620652,-0.27015185104547895,-0.35182033537725704,-0.17457004914450314,8.093289747653515,8.093289747653515,5.102494661373356,5.102494661373356,6.655235611648266,6.655235611648266,24.551858594403413,24.551858594403413,5.754454738824634,5.754454738824634,5.431743893586187,6.80251137533061,6.26673497957114,7.4387713578911985,5.187810495187463,5.858767410761629,6.906738544584741,6.515512307713493,7.575503730719291,5.631690299961377,212.4713378767602,212.4713378767602,0.0,236.07926430751132,0.0,212.4713378767602,236.07926430751132,0,0
+2017/03/17 18:00:00,196.1458631574799,0,1026.3357556902831,0,0,0,0.09023742283867192,0.0,18.752935964379855,0.0,110.93442390708215,0,39.380909295966944,0.0010775561027850454,25.270291409882226,0,0,0.7961179950644304,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,348.01226826486106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,192.88181370351506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05464287584668716,0.0017288625025627194,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.454111456411257,-0.454111456411257,-0.34811885019732336,-0.34811885019732336,-0.32345936692271066,-0.32345936692271066,0.9462614273401548,0.9462614273401548,0.16456674356484863,0.16456674356484863,-0.19865945746669716,-0.24762123465251587,-0.2730299653563169,-0.349984740546167,-0.011865955214427312,-0.24747201235964586,-0.23949052253497102,-0.27615331210473903,-0.35709115622964416,-0.10224923683075518,9.303725696365134,9.303725696365134,7.521343885411824,7.521343885411824,7.175384742201203,7.175384742201203,23.912508692403946,23.912508692403946,5.561286953616474,5.561286953616474,5.818373229316222,6.272652139691033,6.5480752144146805,7.548572614527089,5.002914667324944,6.271114827931029,6.190251477728594,6.583807673316571,7.653631931254168,5.216522841829075,196.1458631574799,196.1458631574799,0.0,217.93984795275546,0.0,196.1458631574799,217.93984795275546,0,0
+2017/03/17 19:00:00,208.82401989622096,0,997.7839688900808,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.010329651206365816,27.0977424753112,0,0,7.734683707406434,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,490.3118574288425,0.0,350.33809687912685,0.0,732.4325680262401,0.0,0.0,0.0,0.0,0.0,389.5601162669874,0.0,266.16399134964985,0.0,564.9025729640025,0.0,0.0,0,0,0,0,0,0,0,0,0.05312275756894555,0.0016807670198648221,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5215312008268632,-0.5215312008268632,-0.366985610819238,-0.366985610819238,-0.38633068644989554,-0.38633068644989554,0.9057127370959431,0.9057127370959431,0.11944430165216553,0.11944430165216553,-0.21829762618917453,-0.31140352745653976,-0.31343455244090995,-0.36079755785682954,-0.060055829306969295,-0.2778785062556723,-0.3141747012497395,-0.3256085261259258,-0.37504389474842714,-0.1381620378719011,10.688644811964878,10.688644811964878,7.803489456020273,7.803489456020273,8.108539988068259,8.108539988068259,22.322378620011065,22.322378620011065,5.2955205805298675,5.2955205805298675,5.988513278669231,7.015635447497516,7.0421168964355445,7.709279222859649,5.074672621112825,6.6037209699311745,7.05181072495958,7.204509666541611,7.9286195359313325,5.395481840886077,208.82401989622096,208.82401989622096,0.0,232.02668877357883,0.0,208.82401989622096,232.02668877357883,0,0
+2017/03/17 20:00:00,210.12511409998274,0,959.4938010464441,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.0064568301329559225,23.930915704919556,0,0,4.934868376313781,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,312.71776064820847,0.0,62.66011652293906,0.0,543.5315300403074,0.0,0.0,0.0,0.0,0.0,252.71951126866605,0.0,55.23336385632618,0.0,440.40005731534836,0.0,0.0,0,0,0,0,0,0,0,0,0.05108416067116774,0.0016162672350383905,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5801393748448898,-0.5801393748448898,-0.2557906969687191,-0.2557906969687191,-0.4403969467963136,-0.4403969467963136,0.8738280005468771,0.8738280005468771,0.0568519774393696,0.0568519774393696,-0.2174945085796877,-0.3348265933770088,-0.33066129023105095,-0.3659371994082142,-0.04356646985390784,-0.2845773723046467,-0.3505361928585307,-0.34984296266274095,-0.3837340111745184,-0.1399894679647603,12.052325578547652,12.052325578547652,6.35824367004183,6.35824367004183,9.045987273670278,9.045987273670278,21.118696145328315,21.118696145328315,5.066916763903492,5.066916763903492,5.981238606280684,7.331653230889458,7.27375526006783,7.787413090741808,5.039293667887762,6.682233615372581,7.55664824278837,7.546498468012388,8.06666523537551,5.406021941219279,210.12511409998274,210.12511409998274,0.0,233.47234899998082,0.0,210.12511409998274,233.47234899998082,0,0
+2017/03/17 21:00:00,198.0903929785046,0,937.1869008324621,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.023049105136969495,26.171406422748113,0,0,18.11832067487603,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1322.0703852749525,0.0,106.74116218556628,0.0,1514.8303894679004,0.0,0.0,0.0,0.0,0.0,1294.366801928802,0.0,139.1282275395054,0.0,1433.2085605108073,0.0,135.19439110148528,0,0,0,0,0,0,0,0,0.04989652478090564,0.001578691263321003,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47557409021308333,-0.47557409021308333,-0.37324999256066693,-0.37324999256066693,-0.5234754618634142,-0.5234754618634142,0.7907110470761491,0.7907110470761491,-0.0390037377832984,-0.0390037377832984,-0.25953934784426574,-0.36912242892422,-0.3538709817484159,-0.39286862818645446,-0.11411649173923277,-0.3073272552766278,-0.3936930387061675,-0.37833707035549163,-0.4139822920288778,-0.21793659751456368,9.723324567641939,9.723324567641939,7.900523992410442,7.900523992410442,10.731496790765632,10.731496790765632,18.179031771718257,18.179031771718257,5.031493646488684,5.031493646488684,6.398457795330671,7.8364005143402125,7.6057595069368915,8.21524847045417,5.269730337375449,6.963014028379149,8.228833721301271,7.980553579104495,8.572338992676478,5.985239722687496,198.0903929785046,198.0903929785046,0.0,220.10043664278288,0.0,198.0903929785046,220.10043664278288,0,0
+2017/03/17 22:00:00,139.9850966960757,0,787.4837994457722,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.057790574151626216,20.742373314147827,0,0,46.47019638743517,581.3070167518885,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2076.176619919136,0.0,518.1636141391743,0.0,2230.5685260135597,0.0,401.93389161385556,0.0,0.0,0.0,2107.0108870859285,0.0,627.1157265776067,0.0,2194.158306918312,0.0,30.109998360589557,0,0,0,0,0,0,0,0,0.04192622077699305,0.0013265164003973965,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4981639593075465,-0.4981639593075465,-0.5299482255458999,-0.5299482255458999,-0.5785014040113315,-0.5785014040113315,0.5935712228140276,0.5935712228140276,-0.2789746318042861,-0.2789746318042861,-0.2951729593256557,-0.4029986018773286,-0.38134328305681287,-0.42142125502994304,-0.21930175482136244,-0.3669690829978123,-0.43294864243953163,-0.4094334763409822,-0.44841878985093037,-0.2777476925844097,10.186417432440678,10.186417432440678,10.875337230150791,10.875337230150791,12.01219050508216,12.01219050508216,12.38583692089378,12.38583692089378,6.61643835511326,6.61643835511326,6.810284092977952,8.3841933814126,8.028366229178474,8.702700893626798,5.997646732653891,7.803235654616117,8.909398006907097,8.493793073891084,9.195760795158463,6.602206637557288,139.9850966960757,139.9850966960757,0.0,155.53899632897298,0.0,139.9850966960757,155.53899632897298,0,0
+2017/03/17 23:00:00,90.84695988574121,0,666.2443109041039,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.11917729415950841,11.784826330289128,0,0,95.16199271722014,517.8467894180677,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.714000885966664,0.0,2932.695036284125,0.0,950.6274750711382,0.0,3059.298156648584,0.0,45.24818771434472,0.0,493.59962415922735,0.0,3019.5301737501177,0.0,1137.8637511245902,0.0,3072.0810497174343,0.0,5.490410927172424,0,0,0,0,0,0,0,0,0.03547134060413721,0.0011222884911508775,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6327011351107564,-0.6327011351107564,-0.6759582660631314,-0.6759582660631314,-0.7078128988474478,-0.7078128988474478,0.3468624020060934,0.3468624020060934,-0.4094723784205757,-0.4094723784205757,-0.3518338509407528,-0.4359092434651742,-0.41043664757673665,-0.45271218995388396,-0.2683798429179587,-0.41735772102226154,-0.4730525790765485,-0.44468334849899516,-0.48665654637128875,-0.3110005415993584,13.402058406050841,13.402058406050841,14.602752196638022,14.602752196638022,15.538724224708318,15.538724224708318,7.5030920863037665,7.5030920863037665,8.494461051388427,8.494461051388427,7.575702557222172,8.963405048115902,8.511038981973286,9.277058518878903,6.4956374446387315,8.631196705554274,9.672999528000773,9.125673262892661,9.947762836368085,7.010401893997113,90.84695988574121,90.84695988574121,0.0,100.94106653971245,0.0,90.84695988574121,100.94106653971245,0,0
+2017/03/18 00:00:00,40.75659995886033,0,568.7280106002612,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.57854400517644e-09,9.570965891481725,0,0,0.0,515.492481831445,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03027950054498688,0.0009580222906904161,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5027364044066008,-0.5027364044066008,-0.570849504252491,-0.570849504252491,-0.5467048142689735,-0.5467048142689735,0.36852210827206955,0.36852210827206955,-0.12943422242899982,-0.12943422242899982,-0.33789064917984807,-0.45729474856714175,-0.43782649851498473,-0.5007954742426958,0.007641113614223608,-0.4445187546316095,-0.52289407442222,-0.5008131786630841,-0.5581727722822819,-0.10144417508225781,10.2828342986069,10.2828342986069,11.826238685621291,11.826238685621291,11.25613799899267,11.25613799899267,7.827134777934575,7.827134777934575,5.347058527463815,5.347058527463815,7.374713970663933,9.364706678129394,8.998580300990938,10.241796517561596,5.001208635341072,9.122598813151697,10.718665725383659,10.24217011272124,11.523765742759977,5.213125118384241,40.75659995886033,40.75659995886033,0.0,45.285111065400365,0.0,40.75659995886033,45.285111065400365,0,0
+2017/03/18 01:00:00,23.75328662938231,0,40.05291665697545,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5561912057045186,0,0,0.0,4.562564144431311,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.00213244695027976,6.746913506871031e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5534577178215709,-0.5534577178215709,-0.6132191335014302,-0.6132191335014302,-0.5786551311838838,-0.5786551311838838,0.25107587605778237,0.25107587605778237,0.07676426941201292,0.07676426941201292,-0.44345997407241905,-0.5606034627092031,-0.543354184277425,-0.603831517773797,0.11159477797936408,-0.5529432454536466,-0.6309637640076813,-0.6108686387200625,-0.6677636425505246,-0.06945761689000685,11.413040343297979,11.413040343297979,12.887796120542859,12.887796120542859,12.015952320074945,12.015952320074945,6.3085040465375215,6.3085040465375215,5.122015121074725,5.122015121074725,9.102849687776526,11.581223127290585,11.179020428019669,12.645873808734464,5.2579347041157405,11.401017118353565,13.35552855864617,12.826864067451794,14.36906857628837,5.099888261860627,23.75328662938231,23.75328662938231,0.0,26.392540699313678,0.0,23.75328662938231,26.392540699313678,0,0
+2017/03/18 02:00:00,28.344225911916006,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248628254431098,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6014446728188376,-0.6014446728188376,-0.6582501715210113,-0.6582501715210113,-0.6169479549968748,-0.6169479549968748,0.1556991274085003,0.1556991274085003,0.17244788915472717,0.17244788915472717,-0.5287629508608374,-0.6474393998009408,-0.6315881567714847,-0.6919165924912718,0.14004669192817715,-0.6372881565136632,-0.7150587352508233,-0.6960361924745637,-0.7516337842892691,-0.08564468870126306,12.584973804121333,12.584973804121333,14.101423366047527,14.101423366047527,12.984950538828272,12.984950538828272,5.502365054452312,5.502365054452312,5.616405701715365,5.616405701715365,10.848861900321097,13.802041202704515,13.372235818573941,15.066168918005161,5.4063542367339465,13.525536123461663,15.75774107975549,15.187586406344437,16.89775551580054,5.15188825910748,28.344225911916006,28.344225911916006,0.0,31.49358434657334,0.0,28.344225911916006,31.49358434657334,0,0
+2017/03/18 03:00:00,23.72202681653433,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249313928565379,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.646000389100723,-0.646000389100723,-0.7016234201064184,-0.7016234201064184,-0.6554166360759516,-0.6554166360759516,0.0690821383849124,0.0690821383849124,0.2196361460228501,0.2196361460228501,-0.5790134523490768,-0.695507697812618,-0.6833412501182907,-0.7410888468314466,0.16821600370746342,-0.7041853051717866,-0.7788395123880566,-0.7628825991641877,-0.8160732885212312,-0.08709857871983503,13.762572821602973,13.762572821602973,15.353430579051036,15.353430579051036,14.022464564244885,14.022464564244885,5.09881098638337,5.09881098638337,6.000697698717346,6.000697698717346,12.024724678409044,15.171969025355423,14.815779072012816,16.563184747566282,5.586486931680568,15.429924920816518,17.782903731041927,17.259907324904944,19.045322405842327,5.157090646733465,23.72202681653433,23.72202681653433,0.0,26.357807573927033,0.0,23.72202681653433,26.357807573927033,0,0
+2017/03/18 04:00:00,39.51287394202915,0,371.2606195078341,0,0,0,0.06952681836074592,0.004808040130729387,4.633261998087618,9.319298099999997,23.111338313975452,0,1.0920133090875754,0.7575701898775853,0.5250571725094472,0,0,282.5347382264738,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,220.34775392067309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2396156777851502,937.1025900967718,0.0,992.2574272579247,0.8760346166805448,1552.7844023554592,0.5333230775650464,1156.3627930698888,0.0,0.0,1.2247123771926,1460.5431621193145,0.2843179168913594,1110.5442381770204,1.1288982688456146,1765.5351110516885,0.5211381957690719,1226.2133547170938,0.0,0.0,0,0,0,0,0,0,0,0,0.01976619037781303,0.0006253884853827434,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6000231785812739,-0.6000231785812739,-0.6556023006382311,-0.6556023006382311,-0.6067344100056331,-0.6067344100056331,0.08705819555086781,0.08705819555086781,0.35600148124527026,0.35600148124527026,-0.5027443566962454,-0.5584245644874805,-0.5482876119787069,-0.5783209397887338,0.19037016575895416,-0.5721088092818675,-0.6143007403688482,-0.5977390467876578,-0.6302149263299103,-0.0627919857421374,12.548822061303227,12.548822061303227,14.027627608228357,14.027627608228357,12.720273911225505,12.720273911225505,5.1569449615147676,5.1569449615147676,7.637382977085451,7.637382977085451,10.283002771608494,11.529705786728059,11.292736629038146,12.007775723550196,5.751398961592187,11.856666924921115,12.915915249920005,12.490915214386334,13.335513756319102,5.081633050011703,39.51287394202915,39.51287394202915,0.0,43.90319326892128,0.0,39.51287394202915,43.90319326892128,0,0
+2017/03/18 05:00:00,72.38903756845231,0,212.9421150752648,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5250303792525594,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42113923753739035,-0.42113923753739035,-0.4823609746098044,-0.4823609746098044,-0.4254435768132305,-0.4254435768132305,0.22930154767836616,0.22930154767836616,0.6734183420225044,0.6734183420225044,-0.6059721601809905,-0.7351775435237131,-0.7220194096701407,-0.7475289601663752,0.2815479626755246,-0.691804964383866,-0.743079301039012,-0.725562256726561,-0.765663644702076,-0.009563172177796491,8.697715493777622,8.697715493777622,9.860141419690777,9.860141419690777,8.77417729810604,8.77417729810604,6.0909098851536925,6.0909098851536925,14.530011087735929,14.530011087735929,12.700702308417775,16.37771664815473,15.970268806132026,16.766950751060733,6.646493588617346,15.062889091619397,16.625973064500897,16.07924224987609,17.35027604167719,5.001893156730901,72.38903756845231,72.38903756845231,0.0,80.43226396494701,0.0,72.38903756845231,80.43226396494701,0,0
+2017/03/18 06:00:00,103.73368999286856,0,714.2785094144087,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,80.56906512710079,0,0.37613595762996044,2.5202560945465655e-09,0.5252201311315328,0,0,0.0,483.5912180828717,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.038028716912076904,0.001203202094895752,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.30786755663559245,-0.30786755663559245,-0.3712497013013942,-0.3712497013013942,-0.31094215499448274,-0.31094215499448274,0.31578705050299954,0.31578705050299954,0.8427189109753506,0.8427189109753506,-0.5956036051126,-0.7149609099058429,-0.7001092762497213,-0.7444064545165917,0.36535356303697747,-0.7111064429450012,-0.774045076413162,-0.7544710822219318,-0.8015553174692662,0.09097675691684863,6.969948460025492,6.969948460025492,7.869357888693585,7.869357888693585,7.009644200793332,7.009644200793332,7.073008197546571,7.073008197546571,19.98461652617698,19.98461652617698,12.436982732559628,15.754769084906371,15.308353523824508,16.667932173083926,7.7784838917845605,15.637996228661066,17.624622790602515,16.988590895594243,18.54610815082414,5.171396694645679,103.73368999286856,103.73368999286856,0.0,115.25965554763174,0.0,103.73368999286856,115.25965554763174,0,0
+2017/03/18 07:00:00,121.22684973657562,0,808.3866054561764,0,0,0,0.0,0.0,8.33396954093373,0.0,69.33401494192633,0,39.380909295966944,0.16840796209601822,0.5775727931983095,0,0,51.72057182490705,490.48838978718845,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2750.2597408182746,0.0,3859.5203360050514,0.0,3518.6833652585683,0.0,3911.118309353157,0.0,2096.9917420988572,0.0,3016.039214216574,0.0,3788.08954431186,0.0,3501.598395923838,0.0,3779.515755070388,0.0,2287.1035849663535,0,0,0,0,0,0,0,0,0.04303910165183474,0.0013617271755354263,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5077529128848851,-0.5077529128848851,-0.5224785009106642,-0.5224785009106642,-0.5207543807339557,-0.5207543807339557,0.14116838108246546,0.14116838108246546,0.44000919104107605,0.44000919104107605,-0.5068706555164907,-0.5809782022076028,-0.557513501495761,-0.6010339425448341,0.03900417001505512,-0.5831546651160725,-0.6353958516953082,-0.6043490470367778,-0.6535697420843597,-0.1300102192531512,10.38965442220794,10.38965442220794,10.709503095140263,10.709503095140263,10.671569252332517,10.671569252332517,5.4128953216263795,5.4128953216263795,9.038817681435177,9.038817681435177,10.370789041545109,12.072924375247695,11.508225871121056,12.57451901564255,5.031494344552982,12.12651341423961,13.474486701142453,12.659111111542842,13.971186648139494,5.350156603405793,121.22684973657562,121.22684973657562,0.0,134.69649970730623,0.0,121.22684973657562,134.69649970730623,0,0
+2017/03/18 08:00:00,143.78824858865107,0,876.3247240220977,0,0,0,0.0,0.0,12.430831256716328,0.0,87.89947186453183,0,39.380909295966944,0.12020320260240745,0.5248577663793227,0,0,65.80405495311554,491.107496456085,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2300.5331545356494,0.0,3513.6960090623365,0.0,3003.143210000476,0.0,3475.193462459504,0.0,843.9832586320734,0.0,2483.1569933927435,0.0,3480.2841532907278,0.0,2986.993873854825,0.0,3398.707225777977,0.0,452.36414641778157,0,0,0,0,0,0,0,0,0.04665617740650173,0.0014761689311033048,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5654215919765241,-0.5654215919765241,-0.5654072563257371,-0.5654072563257371,-0.5663865651530902,-0.5663865651530902,0.14459387262826895,0.14459387262826895,-0.05474385615805378,-0.05474385615805378,-0.4753309469491334,-0.5394337442792002,-0.5157644471939333,-0.5468208946719156,-0.2053297998993894,-0.5306289760628891,-0.5788174823695926,-0.5494766619533971,-0.5811029051552851,-0.2737214241274393,11.695872816886421,11.695872816886421,11.695530199842665,11.695530199842665,11.71895583281622,11.71895583281622,5.433195075585971,5.433195075585971,5.062045455693166,5.062045455693166,9.718459901908687,11.08940581148498,10.562506326977143,11.25881840714078,5.874353270416961,10.890570569903318,12.019926284181224,11.320302156377608,12.075989269738614,6.555950367006361,143.78824858865107,143.78824858865107,0.0,159.76472065405673,0.0,143.78824858865107,159.76472065405673,0,0
+2017/03/18 09:00:00,184.04800249247404,0,1079.3941792052515,0,0,0,0.0,0.0,11.477229871609334,0.0,106.27511244621549,0,39.380909295966944,0.16559654948109312,23.31717912674697,0,0,107.09007027884891,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2328.0744333651946,0.0,4073.271802274789,0.0,3086.6030550860237,0.0,4016.2779982999173,0.0,110.98274044306386,0.0,2407.8459558795666,0.0,3925.0296379835863,0.0,2887.9660715533073,0.0,3787.3614128888184,0.0,56.73772912631032,0,0,0,0,0,0,0,0,0.05746774561535209,0.0018182394129466171,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5480959719633856,-0.5480959719633856,-0.5167905750040396,-0.5167905750040396,-0.55024314589562,-0.55024314589562,0.17875558245059928,0.17875558245059928,-0.12714473915024213,-0.12714473915024213,-0.4605784381768315,-0.5218301234957377,-0.498647881174209,-0.5255033154309204,-0.22770848833161506,-0.5084822721324859,-0.5595417217197884,-0.530258057220658,-0.5563795899825549,-0.2852781076123602,11.288299608037477,11.288299608037477,10.584845989273717,10.584845989273717,11.338103897809987,11.338103897809987,5.662386935189048,5.662386935189048,5.3348806340246995,5.3348806340246995,9.42806799717691,10.695222496016328,10.196578904928558,10.77636548955249,6.075771450025286,10.405275780831118,11.55609386335125,10.88226792977774,11.481542181535474,6.690555819570861,184.04800249247404,184.04800249247404,0.0,204.49778054719337,0.0,184.04800249247404,204.49778054719337,0,0
+2017/03/18 10:00:00,210.30545290906483,0,1135.6510255109042,0,0,0,0.0,0.0,15.025710948003718,0.0,131.64086955684016,0,39.380909295966944,0.11857328043624352,20.70741462536343,0,0,92.99359858800815,581.2828442598225,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1880.083050299071,0.0,4782.107811972065,0.0,2680.607947155107,0.0,4719.118113268696,0.0,211.682407603906,0.0,1924.3203035553083,0.0,4616.528151634938,0.0,2475.199573663731,0.0,4478.8197789382475,0.0,120.06016033516202,0,0,0,0,0,0,0,0,0.060462901782486145,0.001913004066278667,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4892974842412821,-0.4892974842412821,-0.49422423385036157,-0.49422423385036157,-0.4908212705168682,-0.4908212705168682,0.2241128891605661,0.2241128891605661,-0.09173616334928046,-0.09173616334928046,-0.4543682768394246,-0.5202063827783848,-0.4943016448741275,-0.5223551194723567,-0.2510384757925253,-0.497009036367885,-0.5559746839104808,-0.5248133573652889,-0.5519749202118976,-0.2979507607003935,10.00202823387751,10.00202823387751,10.10406686482456,10.10406686482456,10.033475639105006,10.033475639105006,6.0419945602642855,6.0419945602642855,5.174271097400947,5.174271097400947,9.30862932335178,10.659539222798571,10.105678500300868,10.706784200773171,6.308113224268382,10.162207053585462,11.472027267091036,10.761079359011205,11.378418469849748,6.844639142251424,210.30545290906483,210.30545290906483,0.0,233.67272545451647,0.0,210.30545290906483,233.67272545451647,0,0
+2017/03/18 11:00:00,217.0942518380173,0,1222.1905080401589,0,0,0,0.0,0.0,14.932575465546352,0.0,136.4899973586286,0,39.380909295966944,0.13110000173286696,22.727694513688146,0,0,107.92498906357984,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1551.3680361149384,0.0,3421.3048113294526,0.0,2363.8985185100064,0.0,3358.9339059023764,0.0,5.052334105612193,0.0,1666.7749636486087,0.0,3285.7071290571994,0.0,2203.2914844382112,0.0,3163.023589456112,0.0,0.0,0,0,0,0,0,0,0,0,0.06507032793271532,0.0020587798180309617,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49649358514008124,-0.49649358514008124,-0.434171907724312,-0.434171907724312,-0.48424978972888977,-0.48424978972888977,0.3668229946996922,0.3668229946996922,-0.004206171830964886,-0.004206171830964886,-0.42400814006472687,-0.49047204133359756,-0.46326678777509017,-0.4921647199577575,-0.2438824244299555,-0.4541006204293833,-0.5175980144128728,-0.48469490506356067,-0.5130635520820512,-0.28216349171146304,10.15142036837166,10.15142036837166,8.931667077054698,8.931667077054698,9.898571531526883,9.898571531526883,7.8009928273476845,7.8009928273476845,5.000366231083504,5.000366231083504,8.748590033807048,10.026259505614718,9.480287435261786,10.061284472875968,6.234416292264129,9.303518860848243,10.602456647732609,9.907650329030531,10.503923307568513,6.65372406280602,217.0942518380173,217.0942518380173,0.0,241.21583537557478,0.0,217.0942518380173,241.21583537557478,0,0
+2017/03/18 12:00:00,205.2531585185909,0,1180.4337832726214,0,0,0,0.0,0.0,14.876918395255093,0.0,124.80122689546741,0,39.380909295966944,0.11949462315317556,22.642634106293986,0,0,101.65861680858646,599.6554075446891,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1723.771040073328,0.0,3298.3634723640303,0.0,2552.1540840207076,0.0,3246.8381531096575,0.0,0.0,0.0,1585.5997940265188,0.0,3066.1655126155347,0.0,2240.256098499679,0.0,2946.8021103408514,0.0,0.0,0,0,0,0,0,0,0,0,0.06284716897660719,0.001988440618329326,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4610743713654235,-0.4610743713654235,-0.4234868490812968,-0.4234868490812968,-0.5431092147979308,-0.5431092147979308,0.4302364278361144,0.4302364278361144,-0.0030952093667537,-0.0030952093667537,-0.4113555645268427,-0.4775907977347709,-0.4496643150838865,-0.4802835991403659,-0.24854459464315753,-0.43606079563086975,-0.49767458161460887,-0.4643456570051599,-0.4956471980780021,-0.28172941823584136,9.437677763729496,9.437677763729496,8.739319681915589,8.739319681915589,11.17340133416971,11.17340133416971,8.860252345523051,8.860252345523051,5.000198317520727,5.000198317520727,8.52687426886574,9.763771919096499,9.219263801023217,9.818052582179732,6.2821855522307715,8.966179778791215,10.17615168697651,9.501331291723488,10.133733189472181,6.648623442775772,205.2531585185909,205.2531585185909,0.0,228.05906502065656,0.0,205.2531585185909,228.05906502065656,0,0
+2017/03/18 13:00:00,201.0030322522899,0,1138.6388583227686,0,0,0,0.0,0.0,14.876918395255093,0.0,122.5097643007467,0,39.380909295966944,0.1315483444735081,20.671916713393315,0,0,113.72397604015484,581.2854758758123,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1810.5018452106494,0.0,3399.0395039742216,0.0,2869.072034453696,0.0,3410.8017587171926,0.0,0.0,0.0,1396.8118146577863,0.0,2979.7832055890094,0.0,2284.790348829617,0.0,2938.059713769755,0.0,0.0,0,0,0,0,0,0,0,0,0.06062197621449749,0.0019180370704234802,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42988256169404826,-0.42988256169404826,-0.4136330031720363,-0.4136330031720363,-0.5940141094311148,-0.5940141094311148,0.4265759587080313,0.4265759587080313,-0.038419861515837074,-0.038419861515837074,-0.39336805473887276,-0.4655104832533217,-0.4456970957605326,-0.4753304652050579,-0.25741106457628304,-0.40781288473122146,-0.4782152158192326,-0.45533711375018704,-0.48604219748917693,-0.2879001744034144,8.85386353717324,8.85386353717324,8.56627628343685,8.56627628343685,12.396967085102673,12.396967085102673,8.7944248597706,8.7944248597706,5.030557737924283,5.030557737924283,8.223474924059772,9.524108071307055,9.144634732349786,9.718450265990342,6.3755538238147125,8.466023904204604,9.77633089262497,9.327153461117334,9.935182497160739,6.721880369996825,201.0030322522899,201.0030322522899,0.0,223.3367025025443,0.0,201.0030322522899,223.3367025025443,0,0
+2017/03/18 14:00:00,185.0905942903367,0,1084.3948482269307,0,0,0,0.0,0.0,14.876918321203716,0.0,108.75639138185811,0,39.380909295966944,0.13829549301057698,18.50610459584305,0,0,114.30191249088692,561.9538818417865,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.37492765025878,0.0,2848.553426210134,0.0,2285.9437071744496,0.0,3529.1475607803627,0.0,0.0,0.0,0.0,0.0,2435.8475207646998,0.0,1769.64655384865,0.0,3102.825781437392,0.0,0.0,0,0,0,0,0,0,0,0,0.05773398493809517,0.0018266630395340916,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.39795519740862234,-0.39795519740862234,-0.27864866721296344,-0.27864866721296344,-0.512482661957819,-0.512482661957819,0.41342254449512017,0.41342254449512017,-0.09998219590135932,-0.09998219590135932,-0.3201652019552153,-0.39542698709970925,-0.4518954355407664,-0.48333245822570403,-0.27592054167744007,-0.2848140223972105,-0.3871799261164997,-0.45770667074085597,-0.4910121845961625,-0.30180541179300574,8.299532233498724,8.299532233498724,6.6126511798623255,6.6126511798623255,10.49136490046044,10.49136490046044,8.56262581428983,8.56262581428983,5.207023703072977,5.207023703072977,7.131123039488784,8.25750184296814,9.26153177764374,9.879888141502832,6.58113049572944,6.68504184616603,8.122297574464994,9.37262956937434,10.037422728975585,6.892852676236586,185.0905942903367,185.0905942903367,0.0,205.65621587815187,0.0,185.0905942903367,205.65621587815187,0,0
+2017/03/18 15:00:00,182.71122436375225,0,1057.6281590492256,0,0,0,0.0,0.0,14.876918321203716,0.0,106.31215624428707,0,39.380909295966944,0.11619174549575909,18.593073554344457,0,0,87.53991444522782,561.9491907097402,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2509.6654460384307,0.0,1964.270089833748,0.0,3504.487020317682,0.0,0.0,0.0,0.0,0.0,2033.8597677566765,0.0,1524.2329575673646,0.0,3131.318649245921,0.0,0.0,0,0,0,0,0,0,0,0,0.05630890658000903,0.0017815745536458043,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5137591953729799,-0.5137591953729799,-0.3075367637975199,-0.3075367637975199,-0.5013634236761839,-0.5013634236761839,0.42360395794352745,0.42360395794352745,-0.12889087219560624,-0.12889087219560624,-0.34566388945849613,-0.3825053504830069,-0.4523957220874338,-0.48505657737532576,-0.286001405792948,-0.30595859944116716,-0.3718277125841078,-0.4573015927096612,-0.49227878510492773,-0.3112834098502272,10.518981796292039,10.518981796292039,6.965701473540349,6.965701473540349,10.253788026045768,10.253788026045768,8.74140126623361,8.74140126623361,5.344148691078345,5.344148691078345,7.485744435471133,8.0469518461869,9.271038965777421,9.915033476765899,6.699167724463194,6.945503457621555,7.878346228481973,9.364838258363974,10.063649162597613,7.014074768054016,182.71122436375225,182.71122436375225,0.0,203.01247151528028,0.0,182.71122436375225,203.01247151528028,0,0
+2017/03/18 16:00:00,194.36838836259906,0,1119.4083267993867,0,0,0,0.0,0.0,14.9325753174436,0.0,120.17895923267236,0,39.380909295966944,0.15890179220532133,16.285067521856547,0,0,116.46358661939088,541.570157516922,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,719.1674043084583,0.0,2760.382763339157,0.0,2284.452461473492,0.0,3713.39453847443,0.0,0.0,0.0,151.71519086182442,0.0,2232.532932597477,0.0,1728.7687111746225,0.0,3264.4692028838367,0.0,0.0,0,0,0,0,0,0,0,0,0.05959812847200973,0.0018856432415319158,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44692603280798876,-0.44692603280798876,-0.26485160648841877,-0.26485160648841877,-0.5964384711250384,-0.5964384711250384,0.439135363046707,0.439135363046707,-0.08973661954644228,-0.08973661954644228,-0.3814990853950586,-0.39984317692676363,-0.4599791756170024,-0.4926574230105,-0.29015499266190303,-0.377326177372487,-0.39561065550853275,-0.46818592641877355,-0.5040051164926613,-0.3167405584578245,9.167680436645412,9.167680436645412,6.456458536501785,6.456458536501785,12.458044455082785,12.458044455082785,9.02268431386274,9.02268431386274,5.166754138014369,5.166754138014369,8.030854719543512,8.331097375577855,9.416470133578727,10.071502750270739,6.749049698916195,7.964562372689883,8.260546042280524,9.57664448017914,10.309747128809363,7.085595730161145,194.36838836259906,194.36838836259906,0.0,215.9648759584434,0.0,194.36838836259906,215.9648759584434,0,0
+2017/03/18 17:00:00,216.56144148343753,0,1083.7284785414506,0,0,0,0.0,0.0,16.798297266846703,0.0,138.40412594678773,0,39.380909295966944,0.06110249658471547,18.485031274797077,0,0,45.644398879340685,576.7094969990363,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,799.2416795592566,0.0,1820.31671002877,0.0,2106.457732691334,0.0,3598.0144264339565,0.0,0.0,0.0,436.0737812986725,0.0,1319.511992597371,0.0,1705.6221138142307,0.0,3252.0826802575275,0.0,0.0,0,0,0,0,0,0,0,0,0.05769850692245574,0.0018255405398494768,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4409063380147846,-0.4409063380147846,-0.2779866636879382,-0.2779866636879382,-0.6194967498510321,-0.6194967498510321,0.45331138535702886,0.45331138535702886,-0.06509173024222782,-0.06509173024222782,-0.40227291195940296,-0.3181541827234409,-0.46572209195466147,-0.49826824692465543,-0.28885512826269255,-0.41243879170644915,-0.3011518114398369,-0.47798264141376073,-0.514009892138891,-0.31487090689084724,9.05541572139056,9.05541572139056,6.604973572863116,6.604973572863116,13.051706557731691,13.051706557731691,9.288467652246538,9.288467652246538,5.087723293938822,5.087723293938822,8.371944547566287,7.104328267295159,9.528252099403744,10.188606426038731,6.733360837014217,8.545587494210864,6.884633290062439,9.771651138708862,10.524413723511472,7.060950198012279,216.56144148343753,216.56144148343753,0.0,240.62382387048615,0.0,216.56144148343753,240.62382387048615,0,0
+2017/03/18 18:00:00,208.60693036244237,0,1071.773902545048,0,0,0,0.0,0.0,18.636987271676368,0.0,120.14191543460078,0,39.380909295966944,0.07418859148447832,26.940954566259485,0,0,59.929532058703494,585.9601403358148,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1884.7262516735032,0.0,1130.7444155037047,0.0,2944.225890836253,0.0,2726.46192219009,0.0,0.0,0.0,1592.9327671027731,0.0,656.4610264032369,0.0,2560.91485281487,0.0,2394.490390279027,0.0,0.0,0,0,0,0,0,0,0,0,0.05706203644157314,0.001805403057490874,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42234417693792087,-0.42234417693792087,-0.4473985117695418,-0.4473985117695418,-0.640801578513472,-0.640801578513472,0.4533251694250307,0.4533251694250307,-0.06034679032965169,-0.06034679032965169,-0.41064919816836665,-0.3518856035820437,-0.46067008968542406,-0.4920211098759363,-0.269616658412969,-0.4270634729794869,-0.3458919571056619,-0.47431351142526523,-0.5090813480825016,-0.29406652884174733,8.719039808823737,8.719039808823737,9.176557906321975,9.176557906321975,13.620730929083848,13.620730929083848,9.288730293104365,9.288730293104365,5.075398046175806,5.075398046175806,8.51469855610894,7.576463958530553,9.429843143456594,10.058308084775533,6.509495638340141,8.803158804971801,7.4890408545102645,9.69813130906482,10.418123947378817,6.796690878826837,208.60693036244237,208.60693036244237,0.0,231.7854781804915,0.0,208.60693036244237,231.7854781804915,0,0
+2017/03/18 19:00:00,219.80880714105407,0,1053.2546117670777,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.89738010901058,0,39.380909295966944,0.07163776729375501,27.0977424753112,0,0,63.20532658440319,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2363.7059834556962,0.0,1238.0994426152602,0.0,3384.511117834125,0.0,2242.0642969963014,0.0,0.0,0.0,2133.3854445564157,0.0,885.09699440884,0.0,3056.7260351524187,0.0,1947.973149800224,0.0,0.0,0,0,0,0,0,0,0,0,0.05607605568319186,0.0017742073135809731,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5096231292381941,-0.5096231292381941,-0.4772336543227017,-0.4772336543227017,-0.5581510642297172,-0.5581510642297172,0.4243645973194215,0.4243645973194215,-0.07719332516393916,-0.07719332516393916,-0.41373901663945056,-0.3927349287582095,-0.46220669087581795,-0.4849399611223464,-0.2232249614994433,-0.4318844638632027,-0.3966548055048689,-0.47684913836180726,-0.5015489255281633,-0.2852896237212827,10.429756696390456,10.429756696390456,9.756596223300093,9.756596223300093,11.523253755603491,11.523253755603491,8.754935784349897,8.754935784349897,5.123383245812093,5.123383245812093,8.568115837759109,8.213048009683504,9.459658575221098,9.912652265859847,6.033736863008073,8.890077311749721,8.277879645443917,9.74887671013245,10.257707674708797,6.6906927624284265,219.80880714105407,219.80880714105407,0.0,244.2320079345045,0.0,219.80880714105407,244.2320079345045,0,0
+2017/03/18 20:00:00,200.10995229307633,0,1039.4153483414593,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,0.0924294806962035,23.385887629468748,0,0,84.85641567132905,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1688.1570795233888,0.0,1720.79989204196,0.0,2645.5391987758744,0.0,2515.3326023326813,0.0,349.3723058943563,0.0,1599.6565391371562,0.0,1507.5609098939547,0.0,2451.487169291453,0.0,2309.0419512154785,0.0,0.0,0,0,0,0,0,0,0,0,0.055339243047577244,0.001750895075390901,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5290728857403872,-0.5290728857403872,-0.5326647828211032,-0.5326647828211032,-0.589273479311094,-0.589273479311094,0.3920502505634463,0.3920502505634463,-0.14151909856154246,-0.14151909856154246,-0.42533712857002465,-0.4133595725856981,-0.4710814595482554,-0.4942286081707466,-0.2536498906605051,-0.4467909448994924,-0.42446801024136616,-0.4887948298427487,-0.5134618736772689,-0.3015943605272145,10.85577900283775,10.85577900283775,10.936246114969734,10.936246114969734,12.278272623808903,12.278272623808903,8.2017913695976,8.2017913695976,5.414951261718656,5.414951261718656,8.772276778684784,8.561533916441988,9.633850252150083,10.10415792776989,6.335543087147755,9.165144016800525,8.756777789835525,9.991676604715366,10.51254315569409,6.890196615055018,200.10995229307633,200.10995229307633,0.0,222.34439143675147,0.0,200.10995229307633,222.34439143675147,0,0
+2017/03/18 21:00:00,195.5620921711659,0,995.5903742334721,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,0.08187501444702722,25.83869850274855,0,0,76.52179407588585,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1487.5523913444317,0.0,1811.108304217557,0.0,2382.0317717090647,0.0,2494.8363076371656,0.0,50.668520660306704,0.0,1420.391903035094,0.0,1636.8288281603075,0.0,2206.1009502281227,0.0,2305.371232436708,0.0,0.0,0,0,0,0,0,0,0,0,0.053005968964617525,0.0016770719098322558,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5498223780455371,-0.5498223780455371,-0.5642434474853594,-0.5642434474853594,-0.6023104681732806,-0.6023104681732806,0.35233757945810656,0.35233757945810656,-0.2091732644508864,-0.2091732644508864,-0.43048854936628,-0.4264094360040706,-0.47318335705157055,-0.49768630144344894,-0.27726327910974713,-0.4529410011370004,-0.4388982430378705,-0.49181003317303895,-0.5174644075385597,-0.3079507028982797,11.3283283284011,11.3283283284011,11.667745310214556,11.667745310214556,12.607035869579065,12.607035869579065,7.583118414029201,7.583118414029201,5.907454437606148,5.907454437606148,8.864807504551266,8.791443898883728,9.675602892109765,10.17639741456523,6.596605227211597,9.281413433449117,9.018312058921936,10.053935034933346,10.599540667229661,6.971016687324351,195.5620921711659,195.5620921711659,0.0,217.29121352351765,0.0,195.5620921711659,217.29121352351765,0,0
+2017/03/18 22:00:00,140.0388950041922,0,803.3282022817849,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,0.08475362328255256,18.514789776484207,0,0,81.67015303280597,561.9514629425303,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1677.953376949225,0.0,2338.4624144035406,0.0,2508.864745009949,0.0,2927.4583566869223,0.0,5.241780669016009,0.0,1690.3906526013502,0.0,2240.2882320712324,0.0,2409.70079800388,0.0,2799.030317239708,0.0,0.0,0,0,0,0,0,0,0,0,0.04276978852003718,0.0013532062957720902,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6734739996044667,-0.6734739996044667,-0.6633593477481193,-0.6633593477481193,-0.6926105079377206,-0.6926105079377206,0.1872433331775958,0.1872433331775958,-0.4189658842825749,-0.4189658842825749,-0.44158813828400423,-0.4416174002973515,-0.48174017860195156,-0.508378156555491,-0.29361226705129306,-0.46913061742619905,-0.4604938665051098,-0.5058186711684801,-0.5327911811600213,-0.32434639694607376,14.531602077967065,14.531602077967065,14.244673923149662,14.244673923149662,15.08656942724383,15.08656942724383,5.726881261235064,5.726881261235064,8.659410183827973,8.659410183827973,9.068052782309621,9.068595596253061,9.847544224522537,10.40304443431235,6.7911249552960555,9.595268611150317,9.426430297135653,10.34833836042084,10.939087917308697,7.187381839761528,140.0388950041922,140.0388950041922,0.0,155.59877222688021,0.0,140.0388950041922,155.59877222688021,0,0
+2017/03/18 23:00:00,93.20445352792824,0,747.6185146450263,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.1650962195155891,14.096401047120054,0,0,154.44376835372066,539.9392175224895,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.66255211981587,0.0,0.0,0.0,586.2645293382202,0.0,0.0,0.0,0.0,0.0,2124.1928405116596,0.0,3526.851771914441,0.0,2886.992877451913,0.0,4038.8384700950683,0.0,0.0,0.0,2150.3132220707225,0.0,3470.5317360118797,0.0,2853.617041895979,0.0,3937.8276892146737,0.0,0.0,0,0,0,0,0,0,0,0,0.039803763485719124,0.0012593633311762638,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7572923089808602,-0.7572923089808602,-0.7551162815961701,-0.7551162815961701,-0.7938045209211394,-0.7938045209211394,-0.04761052877754145,-0.04761052877754145,-0.4875847653491983,-0.4875847653491983,-0.4612497941989019,-0.4659118097547579,-0.49982169008191196,-0.5291679934767833,-0.31111416186216756,-0.496587103354062,-0.4929102905434359,-0.5300916494365973,-0.5602927074085089,-0.34442116215743357,17.079253349276186,17.079253349276186,17.009294876512485,17.009294876512485,18.28323727182152,18.28323727182152,5.046927888624282,5.046927888624282,9.966801357501495,9.966801357501495,9.441079492196835,9.531969068273398,10.221268778428296,10.857902443876355,7.011876777720943,10.153376542239485,10.076751096710566,10.878544997101386,11.57386311709493,7.4678212875911925,93.20445352792824,93.20445352792824,0.0,103.56050391992027,0.0,93.20445352792824,103.56050391992027,0,0
+2017/03/19 00:00:00,42.96934319025417,0,571.064789070069,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.63588307396566e-09,11.783709122818232,0,0,0.0,517.8292603012528,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03040391236158684,0.0009619585938454488,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6550499069594005,-0.6550499069594005,-0.6375063964228911,-0.6375063964228911,-0.6987157805220193,-0.6987157805220193,0.010075689746073622,0.010075689746073622,-0.1364615664417733,-0.1364615664417733,-0.504721861862602,-0.48173622587594334,-0.609131737600153,-0.6539870902050446,-0.08450478117889207,-0.577330978715025,-0.5296963430276995,-0.6843002201847922,-0.7121204884808595,-0.1779243615462058,14.012270785056913,14.012270785056913,13.531433653526761,13.531433653526761,15.26695569851762,15.26695569851762,5.002101514488189,5.002101514488189,5.385798808550902,5.385798808550902,10.324982000310968,9.84746406906362,12.781992306071572,13.982761142261438,5.147870705568479,11.983582974928481,10.869705872435091,14.843621979288116,15.668655135482794,5.656232591457339,42.96934319025417,42.96934319025417,0.0,47.74371465583797,0.0,42.96934319025417,47.74371465583797,0,0
+2017/03/19 01:00:00,23.722047341165254,0,46.81162334994178,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.524951917487462,0,0,0.0,11.321270837397648,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002492285500832393,7.885417598003495e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6973487823842002,-0.6973487823842002,-0.6754265246212141,-0.6754265246212141,-0.7457176089994324,-0.7457176089994324,-0.07187272294690691,-0.07187272294690691,-0.014090519585575934,-0.014090519585575934,-0.6068603082243641,-0.5836433980174732,-0.7044826924124012,-0.7460790985837059,-0.008193136510386275,-0.6861654807519348,-0.6334655984599082,-0.7830845883997111,-0.8179402592894021,-0.16159212098178383,15.22642652576225,15.22642652576225,14.587500499463431,14.587500499463431,16.70945962487552,16.70945962487552,5.106957074894183,5.106957074894183,5.004109970691658,5.004109970691658,12.723508912972676,12.138575294921111,15.438822838516629,16.720921840326312,5.0013895767120715,14.897892181085737,13.422573561666795,17.923864987270136,19.11016485229628,5.5411564313696715,23.722047341165254,23.722047341165254,0.0,26.357830379072503,0.0,23.722047341165254,26.357830379072503,0,0
+2017/03/19 02:00:00,28.34450644960633,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251433631334362,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6612373975694278,-0.6612373975694278,-0.6368199485961363,-0.6368199485961363,-0.7132879535270497,-0.7132879535270497,-0.05556468755473892,-0.05556468755473892,0.057142963915847986,0.057142963915847986,-0.6028474450030648,-0.5761650295828649,-0.7073540347649159,-0.7477996456996794,0.015950411486351214,-0.7111431192178796,-0.6549204607140447,-0.8117589531068693,-0.8477359106401771,-0.14142247822607398,14.185041595526656,14.185041595526656,13.51289064048386,13.51289064048386,15.704007454816491,15.704007454816491,5.063920287610728,5.063920287610728,5.06760361979596,5.06760361979596,12.620735377643925,11.95514394781695,15.524930548012094,16.775554213561108,5.005266590867748,15.639104335663674,14.008674026637934,18.896041234146125,20.16479417610236,5.414384353005005,28.34450644960633,28.34450644960633,0.0,31.493896055118146,0.0,28.34450644960633,31.493896055118146,0,0
+2017/03/19 03:00:00,23.722303918192306,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5252084945145122,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6710691763652743,-0.6710691763652743,-0.6473045840297826,-0.6473045840297826,-0.7216901536170836,-0.7216901536170836,-0.0853102627536101,-0.0853102627536101,0.09329102261313023,0.09329102261313023,-0.631059540296121,-0.6028988090335446,-0.7383082350536712,-0.7815753907997157,0.039913678891004584,-0.7593680501978777,-0.7018069096818135,-0.8627465346027338,-0.9017137007348639,-0.1287365687144493,14.462981686698754,14.462981686698754,13.798339739421465,13.798339739421465,15.96016874431946,15.96016874431946,5.1507040027154005,5.1507040027154005,5.180230996587696,5.180230996587696,13.3580902052731,12.622046447420118,16.47575575188843,17.87366302418063,5.03298036128561,17.14617639421587,15.358899906730386,20.710125827496853,22.169137923003206,5.343324578487639,23.722303918192306,23.722303918192306,0.0,26.358115464658116,0.0,23.722303918192306,26.358115464658116,0,0
+2017/03/19 04:00:00,39.42106484630962,0,418.77847220985035,0,0,0,0.0,0.005887957910269013,4.633261998087618,9.319298099999997,23.111338313975452,0,1.0198668688600483,0.7538230582018747,0.57758854927434,0,0,330.05259092848996,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.401631455736909,1047.972291886243,0.0,532.3222556987362,1.3341823191710394,1594.7763774039563,0.4011621126967005,1080.6953489114546,0.0,0.0,1.2883616831123086,1666.4228169083724,0.24415868831143445,812.1001368968845,1.5642927299982905,2196.076291733726,0.6541689212423307,1431.150630346077,0.0,0.0,0,0,0,0,0,0,0,0,0.022296076052458657,0.0007054323046527459,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6393685735127189,-0.6393685735127189,-0.6187660173979241,-0.6187660173979241,-0.6908592524633326,-0.6908592524633326,-0.07373053725135646,-0.07373053725135646,0.2309360024583914,0.2309360024583914,-0.5468449697990044,-0.5436756411124349,-0.5929375515876019,-0.6196280902194989,0.07868342479153084,-0.6109393856442562,-0.5982293273559952,-0.6552090253282518,-0.6838679043176986,-0.11464766309755064,13.581839563613954,13.581839563613954,13.032538964979267,13.032538964979267,15.03512404785775,15.03512404785775,5.1125592943058535,5.1125592943058535,6.106552322521409,6.106552322521409,11.259374398100846,11.1863979288715,12.369926960272352,13.055154158693085,5.128194000993446,12.828694545420475,12.503325622696678,14.016693000055866,14.831065120666267,5.27224864058573,39.42106484630962,39.42106484630962,0.0,43.80118316256624,0.0,39.42106484630962,43.80118316256624,0,0
+2017/03/19 05:00:00,74.02123339280237,0,302.3627121952009,0,0,0,0.0,0.004168075925526751,4.633261998087618,9.319298099999997,57.911447091112116,0,0.9349934005984807,0.6930312717945885,0.5250334552840462,0,0,89.42059711993605,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,799.7391884340809,0.0,421.3957671004009,0.6070219583762082,1241.6826328386971,0.0,857.9788742417268,0.0,0.0,0.9830997339831242,1426.2918768269872,0.0,695.1650992717551,1.6805362199932006,1923.8297648699345,0.8974180131742173,1267.102524282549,0.0,0.0,0,0,0,0,0,0,0,0,0.01609801475934917,0.0005093299657438752,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4308590826436017,-0.4308590826436017,-0.41565021170107275,-0.41565021170107275,-0.4810835896130987,-0.4810835896130987,0.10858850347425847,0.10858850347425847,0.5434373271813813,0.5434373271813813,-0.5357157212044387,-0.5352524062585139,-0.5722230147265036,-0.5950832869349795,0.14455277019723786,-0.5796649460462893,-0.5773010130160084,-0.6088966973062409,-0.6335942622735777,-0.0375324186594778,8.87150699798923,8.87150699798923,8.601361654109581,8.601361654109581,9.834238811325193,9.834238811325193,5.244217622658667,5.244217622658667,11.18092814555878,11.18092814555878,11.00503330447232,10.994561331226194,11.859429841994427,12.423871619753996,5.432948604007379,12.040688710071507,11.982851333793974,12.775930243849174,13.426028879177778,5.029162275122644,74.02123339280237,74.02123339280237,0.0,82.24581488089153,0.0,74.02123339280237,82.24581488089153,0,0
+2017/03/19 06:00:00,104.8979254405557,0,754.1934551427589,0,0,0,0.0,0.0013505189280396432,8.33396954093373,13.929299233552332,80.56906512710079,0,0.9697852605749038,0.5694867875521344,0.5249689719137878,0,0,40.72906741084417,482.777096400378,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,512.3882096825648,0.0,261.5463272778245,0.0,877.6057726248061,0.0,621.8415386784303,0.0,0.0,0.0,998.4634971215796,0.0,485.67875174664783,1.350518928039643,1384.4865539757332,0.0,920.2113690498734,0.0,0.0,0,0,0,0,0,0,0,0,0.04015381818792067,0.001270438817945665,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2648750736660375,-0.2648750736660375,-0.2555713180051952,-0.2555713180051952,-0.31420163508103344,-0.31420163508103344,0.24837478281648448,0.24837478281648448,0.7843870047023714,0.7843870047023714,-0.5232834500011395,-0.5234283181014165,-0.5575837265561472,-0.5797243317588555,0.19087829661054145,-0.5627597239208689,-0.56226409336933,-0.5889388474988745,-0.613346424307571,0.04977159681870334,6.456717393387848,6.456717393387848,6.355908565024933,6.355908565024933,7.052163918427851,7.052163918427851,6.280429607501418,6.280429607501418,17.96726641491705,17.96726641491705,10.727257522300775,10.730455795479259,11.509880270483322,12.042144797968518,5.75542183488291,11.632407930090977,11.620624925748572,12.269931066522005,12.891102733770566,5.051285223043337,104.8979254405557,104.8979254405557,0.0,116.55325048950633,0.0,104.8979254405557,116.55325048950633,0,0
+2017/03/19 07:00:00,121.15213351487128,0,789.8683285856425,0,0,0,0.0,0.0,8.33396954093373,0.0,69.33401494192633,0,39.380909295966944,0.1462176879119866,0.5250468456780095,0,0,32.6972362675594,490.99344847400215,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.82201688866978,0.0,0.0,0.0,0.0,0.0,2736.604958412163,0.0,3564.56216468061,0.0,3313.9318936402174,0.0,3837.8185615302536,0.0,2270.281131340972,0.0,3064.001509644333,0.0,3685.3856664902237,0.0,3675.4469597161255,0.0,4002.042003752444,0.0,1825.7774255576587,0,0,0,0,0,0,0,0,0.04205317487463638,0.0013305331395525254,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5014851482510403,-0.5014851482510403,-0.46761703984614156,-0.46761703984614156,-0.5554531480968763,-0.5554531480968763,0.015998807356314555,0.015998807356314555,0.35130082292121195,0.35130082292121195,-0.5103471717764064,-0.518013832628335,-0.5426957864039028,-0.5711543832700644,-0.13824874853669133,-0.5475265783087999,-0.5553025679894985,-0.571657685125382,-0.6013682815519833,-0.1835284992841951,10.256359894976441,10.256359894976441,9.565447706284033,9.565447706284033,11.459782137345186,11.459782137345186,5.005298598926601,5.005298598926601,7.567867109446411,7.567867109446411,10.445322651341726,10.611536855247934,11.16392403830271,11.833599081391327,5.3959788232025545,11.275125887767047,11.456248863816839,11.84575862839742,12.583028775391057,5.6982838356997405,121.15213351487128,121.15213351487128,0.0,134.61348168319032,0.0,121.15213351487128,134.61348168319032,0,0
+2017/03/19 08:00:00,150.7532304995925,0,875.9369375100289,0,0,0,0.0,0.0,10.359761134997775,0.0,96.91714705112861,0,39.380909295966944,0.13833351557254667,0.5251042994723872,0,0,65.46028824830782,491.0634766488239,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2520.953860020895,0.0,3395.2703024219168,0.0,3068.223211430679,0.0,3579.7663388786004,0.0,172.7375263830616,0.0,2626.069708438174,0.0,3415.355426008468,0.0,3243.192144666339,0.0,3612.645175158532,0.0,227.12536418282104,0,0,0,0,0,0,0,0,0.046635531365363136,0.0014755157047531577,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5766256672636328,-0.5766256672636328,-0.554607131589228,-0.554607131589228,-0.585056217052747,-0.585056217052747,-0.0002200718005863166,-0.0002200718005863166,-0.15319211794652812,-0.15319211794652812,-0.49653305595066344,-0.513331032448658,-0.531963110271697,-0.5583318429749067,-0.2596742198140971,-0.5318222879891126,-0.5484590210128857,-0.5587086091514604,-0.5846814480200888,-0.2975054085805022,11.966372456293612,11.966372456293612,11.439943612685354,11.439943612685354,12.173501822050014,12.173501822050014,5.000001002558292,5.000001002558292,5.486301065783252,5.486301065783252,10.15224595577105,10.509710939176614,10.920483056428182,11.527518068569805,6.3999156704436615,10.917322055890153,11.296706592895191,11.53641000015385,12.16422865552623,6.839109205338644,150.7532304995925,150.7532304995925,0.0,167.50358944399164,0.0,150.7532304995925,167.50358944399164,0,0
+2017/03/19 09:00:00,150.98800695504926,0,955.4612249486374,0,0,0,0.0,0.0,10.41992336424361,0.0,97.06762091869685,0,39.380909295966944,0.16236873534838311,0.5252094383392018,0,0,91.75638414718402,491.05613941974,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1583.3116478886855,0.0,3648.753348416945,0.0,2085.3906369025754,0.0,3847.8407474473643,0.0,5.784653358171255,0.0,1619.913188541715,0.0,3622.7886712517884,0.0,2165.605510669236,0.0,3821.9187365806515,0.0,13.620995149621704,0,0,0,0,0,0,0,0,0.05086946333276452,0.0016094743609077024,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5234016751902313,-0.5234016751902313,-0.49644402278498545,-0.49644402278498545,-0.5380347167704627,-0.5380347167704627,0.03523493814969002,0.03523493814969002,-0.23421605744159082,-0.23421605744159082,-0.5031284567831069,-0.522374658535932,-0.5346347166099139,-0.5686907432890767,-0.28490708728123665,-0.5386870690299531,-0.5579401447180566,-0.5604102396906303,-0.5953456184654261,-0.3237341334853465,10.729867528059458,10.729867528059458,10.150383797466887,10.150383797466887,11.05758763016361,11.05758763016361,5.0257011211492255,5.0257011211492255,6.138282005895377,6.138282005895377,10.291143367073218,10.707214729329664,10.980614598911373,11.774237188285184,6.686146856927991,11.072413572576039,11.518280256115204,11.57664629013243,12.430480449283436,7.179097398821696,150.98800695504926,150.98800695504926,0.0,167.76445217227695,0.0,150.98800695504926,167.76445217227695,0,0
+2017/03/19 10:00:00,204.6674168703669,0,1140.8618035427883,0,0,0,0.0,0.0,13.704032692139652,0.0,124.87761316689259,0,39.380909295966944,0.11817315707761945,23.154713355835778,0,0,79.83181333502542,599.6554075446891,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1101.1216124199334,0.0,3348.6030424780024,0.0,1593.3987366713134,0.0,3537.8089035931775,0.0,3.640823933890181,0.0,1171.8093412620783,0.0,3357.907025585354,0.0,1698.7123196442976,0.0,3535.127867396035,0.0,8.484470981220953,0,0,0,0,0,0,0,0,0.06074032746456168,0.0019217816214778844,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.40929152827107274,-0.40929152827107274,-0.3867710482526981,-0.3867710482526981,-0.4312591532079961,-0.4312591532079961,0.14914624720559647,0.14914624720559647,-0.18363916616490555,-0.18363916616490555,-0.48916531977746736,-0.5098943786898616,-0.5204980013955113,-0.5548879950888154,-0.28953689013216344,-0.5210394196246125,-0.5421343992904806,-0.5425371832190733,-0.5781247561239793,-0.32202937696394746,8.491356270211469,8.491356270211469,8.115669953680296,8.115669953680296,8.878747163230841,8.878747163230841,5.460928771925737,5.460928771925737,5.699127439279607,5.699127439279607,9.999305391267328,10.435585544536536,10.665939418335796,11.44652623404724,6.741580542989297,10.677831760705615,11.15106684214021,11.160290236961387,12.002977992936437,7.156114334632932,204.6674168703669,204.6674168703669,0.0,227.40824096707433,0.0,204.6674168703669,227.40824096707433,0,0
+2017/03/19 11:00:00,222.350299551109,0,1211.8738477823304,0,0,0,0.0,0.0,13.487159939547585,0.0,143.25325374857618,0,39.380909295966944,0.1373432297033712,22.65965813486053,0,0,97.60832880575137,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1333.5884772227187,0.0,3228.373566547558,0.0,1840.5789452265826,0.0,3406.784244052812,0.0,0.0,0.0,1277.3217278159975,0.0,3181.994936561414,0.0,1803.2244189047688,0.0,3303.2942745327773,0.0,0.0,0,0,0,0,0,0,0,0,0.06452106129896949,0.002041401404609671,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4085687524183415,-0.4085687524183415,-0.27930377105860615,-0.27930377105860615,-0.42053891536215865,-0.42053891536215865,0.26333731108683506,0.26333731108683506,-0.09096500783996611,-0.09096500783996611,-0.4744212232874306,-0.496947299351933,-0.5048461181512193,-0.5402372375592065,-0.28439309448369304,-0.5028493767593042,-0.526785170551958,-0.5253082673293297,-0.5609488858585392,-0.3137633438941993,8.478961856583751,8.478961856583751,6.620266961498018,6.620266961498018,8.687114580316049,8.687114580316049,6.4398039818591855,6.4398039818591855,5.171352411595123,5.171352411595123,9.700281304008044,10.160914497497103,10.327625404046913,11.107718050861493,6.680048501829262,10.285227927497075,10.804819901991465,10.772042078556552,11.58940913456152,7.046420258638676,222.350299551109,222.350299551109,0.0,247.0558883901211,0.0,222.350299551109,247.0558883901211,0,0
+2017/03/19 12:00:00,199.4420640926424,0,1109.9926154269704,0,0,0,0.0,0.0,13.195685805097062,0.0,124.80122689546741,0,39.380909295966944,0.09459676610219686,18.537670127554478,0,0,68.9581479738438,561.9147085337805,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1131.8444451482892,0.0,2380.286920071769,0.0,1733.946921586481,0.0,2580.906299444562,0.0,0.0,0.0,1190.5973272602912,0.0,2419.2426789183273,0.0,1676.417737914855,0.0,2493.2926614025673,0.0,0.0,0,0,0,0,0,0,0,0,0.0590968290242621,0.0018697824764397207,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3872147736839259,-0.3872147736839259,-0.31412182111062986,-0.31412182111062986,-0.3837757825738935,-0.3837757825738935,0.36209445405220625,0.36209445405220625,-0.06837109352271369,-0.06837109352271369,-0.44742823095031875,-0.4708777652059601,-0.4769333348629061,-0.5128229540674183,-0.2711335537798215,-0.4682564561360846,-0.49166681330818074,-0.49282659435635134,-0.5289780284917718,-0.29620591158771403,8.122862759143658,8.122862759143658,7.051117377157254,7.051117377157254,8.067336574443885,8.067336574443885,7.728888756496616,7.728888756496616,5.096786959208856,5.096786959208856,9.177116624852829,9.629814136766328,9.750566487428443,10.498719989051835,6.5265800419242765,9.578033611340942,10.050968926659309,10.075013649872403,10.853661544470967,6.823021266696472,199.4420640926424,199.4420640926424,0.0,221.60229343626932,0.0,199.4420640926424,221.60229343626932,0,0
+2017/03/19 13:00:00,199.40042262589483,0,1074.1286065570782,0,0,0,0.0,0.0,13.195685805097062,0.0,124.7641830973959,0,39.380909295966944,0.09148691073121261,18.53618231424945,0,0,68.58273483431526,561.9164653159613,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1186.1203322425522,0.0,2467.3418341661304,0.0,1780.5993911016149,0.0,2693.4260161312864,0.0,0.0,0.0,1262.3562660082243,0.0,2483.282881993856,0.0,1766.3208793813044,0.0,2604.9485944253074,0.0,0.0,0,0,0,0,0,0,0,0,0.057187402627318584,0.0018093695562204197,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3034644083399579,-0.3034644083399579,-0.33428497878438723,-0.33428497878438723,-0.5226711370305667,-0.5226711370305667,0.4092720244492999,0.4092720244492999,-0.08103169501401375,-0.08103169501401375,-0.4322715929641637,-0.45451690320245397,-0.4599066666739586,-0.49528547451176996,-0.264910913209671,-0.44872369549815627,-0.4712302683189076,-0.4725801045540022,-0.5086462047185002,-0.2881903711808032,6.913796596559408,6.913796596559408,7.324083102080252,7.324083102080252,10.71374943728702,10.71374943728702,8.491021518122892,8.491021518122892,5.135962237292759,5.135962237292759,8.89710020750347,9.311468432573065,9.415067876128859,10.126183592911119,6.457112769557014,9.201508183384533,9.636799964160033,9.663600240847671,10.408790041852939,6.725365046951623,199.40042262589483,199.40042262589483,0.0,221.55602513988313,0.0,199.40042262589483,221.55602513988313,0,0
+2017/03/19 14:00:00,181.2236422068702,0,1043.675891969495,0,0,0,0.0,0.0,13.244385240300696,0.0,111.01081017850728,0,39.380909295966944,0.12723743435615067,14.02832485528482,0,0,95.64695148190401,539.8898865933337,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,779.9594555456872,0.0,2874.0512985472615,0.0,1354.9880972275603,0.0,3093.2407768891094,0.0,0.0,0.0,840.0466877598005,0.0,2880.6090157840245,0.0,1339.8748118201734,0.0,3011.1187608184096,0.0,0.0,0,0,0,0,0,0,0,0,0.05556607754614694,0.0017580719608089575,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3742644083699257,-0.3742644083699257,-0.34563761154680095,-0.34563761154680095,-0.4874859692805991,-0.4874859692805991,0.41649268394363775,0.41649268394363775,-0.1360075923035373,-0.1360075923035373,-0.43154123802560324,-0.4561253908002862,-0.4580843370530056,-0.49603477880812724,-0.27618619641460884,-0.4488556022505754,-0.47288000012106973,-0.47146103523414035,-0.5098421986716075,-0.30000029439558373,7.916394596599744,7.916394596599744,7.48536476474375,7.48536476474375,9.96477320173905,9.96477320173905,8.616066425332463,8.616066425332463,5.383234079415246,5.383234079415246,8.883856244969579,9.342255104969354,9.379900003620037,10.141828727848974,6.584186071909372,9.203995828748944,9.669565170844322,9.641376151873715,10.4344640069951,6.870196270188032,181.2236422068702,181.2236422068702,0.0,201.359602452078,0.0,181.2236422068702,201.359602452078,0,0
+2017/03/19 15:00:00,179.02742755762915,0,1046.4625298611236,0,0,0,0.0,0.0,13.244385240300696,0.0,108.75639138185811,0,39.380909295966944,0.16973086256135708,14.044035574487788,0,0,118.33070850745932,519.9927674594068,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,582.5677227585022,0.0,3105.4594544379715,0.0,1161.2831435934859,0.0,3330.381154096923,0.0,0.0,0.0,672.1754888945477,0.0,3128.069482066886,0.0,1167.7356420642004,0.0,3265.475162566852,0.0,0.0,0,0,0,0,0,0,0,0,0.05571444021157851,0.0017627660521259037,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.39795837115595173,-0.39795837115595173,-0.338438731867113,-0.338438731867113,-0.4790528737232931,-0.4790528737232931,0.4266502277015101,0.4266502277015101,-0.16470209571958622,-0.16470209571958622,-0.43270568441478097,-0.4601732261853468,-0.459628554893137,-0.50021420118635,-0.28569454724318144,-0.4506986917912573,-0.4767935968605287,-0.47383114130978704,-0.5148613781756493,-0.30922861519209577,8.29958516746089,8.29958516746089,7.382458491150501,7.382458491150501,9.793205188923523,9.793205188923523,8.795754749642242,8.795754749642242,5.562211712775607,5.562211712775607,8.904982698754083,9.42022400987797,9.409691544869176,10.229538131755447,6.695511435463118,9.238833163079079,9.747762190221707,9.688509041444064,10.54288344239167,6.987471555953363,179.02742755762915,179.02742755762915,0.0,198.9193639529213,0.0,179.02742755762915,198.9193639529213,0,0
+2017/03/19 16:00:00,193.35986920160082,0,1087.2353956146778,0,0,0,0.0,0.0,11.42159574989616,0.0,124.87761316689259,0,39.380909295966944,0.1354474832331046,14.112328303157732,0,0,85.95717996473853,539.9036329868654,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,688.0781757629491,0.0,2964.4624636499057,0.0,1231.1566446119145,0.0,3200.549263809269,0.0,0.0,0.0,742.2754027247315,0.0,2963.5778693998386,0.0,1213.5121959637424,0.0,3116.757103149359,0.0,0.0,0,0,0,0,0,0,0,0,0.05788521778503122,0.0018314479413931578,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3520493632574087,-0.3520493632574087,-0.32026838825328313,-0.32026838825328313,-0.33082553084485755,-0.33082553084485755,0.47205425305634297,0.47205425305634297,-0.12684279616269703,-0.12684279616269703,-0.4330813317689587,-0.45911971689818076,-0.4576286019062885,-0.4998555283483198,-0.28728840784584,-0.45118711159550406,-0.47519530182117686,-0.47203073324424394,-0.5147268464976785,-0.30989491519628193,7.578873993604731,7.578873993604731,7.13250251351414,7.13250251351414,7.276024270460923,7.276024270460923,9.653150401487338,9.653150401487338,5.333290848920299,5.333290848920299,8.91181045769602,9.399863539281625,9.371127436177957,10.221981414716225,6.7145459371036225,9.248089569853065,9.715747102697435,9.65268328898928,10.539963208246363,6.996078492650923,193.35986920160082,193.35986920160082,0.0,214.8442991128898,0.0,193.35986920160082,214.8442991128898,0,0
+2017/03/19 17:00:00,203.08556317820538,0,1120.8967583671981,0,0,0,0.0,0.0,12.228628987159938,0.0,129.38645076019097,0,39.380909295966944,0.14870341296509568,18.508895519468076,0,0,97.61232154144137,561.909854162683,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1980.2499371400531,0.0,3663.391341235792,0.0,2506.684379140159,0.0,3845.500668474457,0.0,0.0,0.0,1819.4458400053159,0.0,3535.1234915365276,0.0,2265.1960209885037,0.0,3617.419361563882,0.0,0.0,0,0,0,0,0,0,0,0,0.0596773736711712,0.0018881505043949242,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.38910647752318006,-0.38910647752318006,-0.3729712239288435,-0.3729712239288435,-0.39597866093247636,-0.39597866093247636,0.43336276008374924,0.43336276008374924,-0.10414772681395174,-0.10414772681395174,-0.44764746162478747,-0.4769275294180415,-0.4718669461562377,-0.5125592065188813,-0.2853227928265529,-0.4701082480689101,-0.4993872286595521,-0.4909984094745752,-0.5316777302019136,-0.30853891816926754,8.15362171898353,8.15362171898353,7.896170325985196,7.896170325985196,8.266649863373843,8.266649863373843,8.916929663459797,8.916929663459797,5.224641871080252,5.224641871080252,9.181239319826716,9.750449965541577,9.649431075773705,10.49301890137292,6.691087221379675,9.614582626859871,10.212123385769814,10.037137879892612,10.914078098727586,6.978582179029843,203.08556317820538,203.08556317820538,0.0,225.6506257535615,0.0,203.08556317820538,225.6506257535615,0,0
+2017/03/19 18:00:00,194.49377182689267,0,1177.5793698921807,0,0,0,0.0,0.0,12.800703468768642,0.0,115.6330778413024,0,39.380909295966944,0.22141945937593238,23.025686559024482,0,0,152.03973219696198,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2741.0579624878706,0.0,3330.631729749514,0.0,3241.2449166500674,0.0,3566.5161187306126,0.0,0.0,0.0,2548.541391781493,0.0,3179.453976762687,0.0,2998.9270627464944,0.0,3326.5596093207546,0.0,0.0,0,0,0,0,0,0,0,0,0.0626951978939495,0.0019836323592066197,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.37128067240303075,-0.37128067240303075,-0.36485307635383346,-0.36485307635383346,-0.44365965118331546,-0.44365965118331546,0.39297555764621234,0.39297555764621234,-0.10904016623844402,-0.10904016623844402,-0.45045297754643565,-0.4703401876672814,-0.47259606025351236,-0.5126789633868267,-0.27610725926635016,-0.47317450768165015,-0.49152449558324346,-0.492448786638073,-0.5324338554478929,-0.2985338408251109,7.869839142273733,7.869839142273733,7.770838380412286,7.770838380412286,9.106570519535353,9.106570519535353,8.217008893913984,8.217008893913984,5.246254516428024,5.246254516428024,9.234180329829087,9.619170858089703,9.663917502437897,10.495607156896853,6.583277821562476,9.675426706679772,10.048022379248849,10.06717451478039,10.931055982662613,6.851891920620986,194.49377182689267,194.49377182689267,0.0,216.10419091876963,0.0,194.49377182689267,216.10419091876963,0,0
+2017/03/19 19:00:00,200.4534884212631,0,1118.4569983452316,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,104.13412371906301,0,39.380909295966944,0.192336013528368,22.71895144016689,0,0,128.4077131625573,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3565.228250616425,0.0,3550.8374365078143,0.0,4068.947289758619,0.0,3715.6235713293363,0.0,0.0,0.0,3261.0493597185086,0.0,3316.8408696035863,0.0,3709.333518194855,0.0,3404.1666786485234,0.0,0.0,0,0,0,0,0,0,0,0,0.05954747904045518,0.0018840407288230959,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3833676772646924,-0.3833676772646924,-0.37583490667440833,-0.37583490667440833,-0.49834587817060055,-0.49834587817060055,0.3100936151440703,0.3100936151440703,-0.13647857882931294,-0.13647857882931294,-0.4583117775366143,-0.48204124612507343,-0.48126371157074394,-0.5150479092307099,-0.2690176686534254,-0.48230245441210595,-0.50652062910338,-0.5020470506914128,-0.5364357112907648,-0.2918161868907488,8.060780804040519,8.060780804040519,7.941051731069436,7.941051731069436,10.190236208378494,10.190236208378494,6.998648838532375,6.998648838532375,5.385895086792104,5.385895086792104,9.384281410776381,9.853651411319532,9.837887031961401,10.546933704957155,6.502776067893706,9.858953217736044,10.363313722532396,10.268240402977185,11.021325172260418,6.769203532222335,200.4534884212631,200.4534884212631,0.0,222.72609824584788,0.0,200.4534884212631,222.72609824584788,0,0
+2017/03/19 20:00:00,200.57026486952566,0,1088.8884736018772,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,0.2484480936688994,18.497638353983994,0,0,172.06919401341884,561.915754463017,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3857.0900009422894,0.0,3591.2299875168846,0.0,4345.311763301221,0.0,3738.643787549013,0.0,0.0,0.0,3693.1202425678675,0.0,3458.34434995362,0.0,4128.799505371739,0.0,3524.0519509020346,0.0,0.0,0,0,0,0,0,0,0,0,0.0579732288815156,0.0018342325511371284,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.39428424862920153,-0.39428424862920153,-0.38345626237291464,-0.38345626237291464,-0.4902129978870741,-0.4902129978870741,0.236686879685952,0.236686879685952,-0.18183863427130537,-0.18183863427130537,-0.46587646790192855,-0.4868044176946552,-0.4884229082259274,-0.5179008756278256,-0.2663328998132579,-0.4907022588280634,-0.5121805110715515,-0.5102822483152806,-0.5400824171877878,-0.2893624782542757,8.238594008865874,8.238594008865874,8.06220322367291,8.06220322367291,10.020910284533926,10.020910284533926,6.1624817023929666,6.1624817023929666,5.6854656742036696,5.6854656742036696,9.531276529862012,9.9507933062539,9.984024298503968,10.609069477173037,6.472843546028727,10.031015905363105,10.48483839577797,10.443925957728922,11.104187398161912,6.739475866778989,200.57026486952566,200.57026486952566,0.0,222.8558498550285,0.0,200.57026486952566,222.8558498550285,0,0
+2017/03/19 21:00:00,186.6506282856904,0,1139.8516432372091,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,0.36675095251341616,22.721909423491187,0,0,220.78306307962316,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3381.8218822292497,0.0,4865.836564968175,0.0,3852.1250035406947,0.0,4978.428855300921,0.0,0.0,0.0,3119.331080007307,0.0,4674.286854521964,0.0,3559.144243686869,0.0,4722.29116383335,0.0,0.0,0,0,0,0,0,0,0,0,0.06068654578166017,0.0019200800065198062,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4915766324506672,-0.4915766324506672,-0.5044464689544308,-0.5044464689544308,-0.5790852187100052,-0.5790852187100052,0.11497956392482289,0.11497956392482289,-0.27652155558632746,-0.27652155558632746,-0.4904687356363146,-0.5201554821809549,-0.513996575527989,-0.5487634663811631,-0.29300719740451503,-0.5192883877394968,-0.5502233364216401,-0.5396856143371578,-0.5744197974030698,-0.31837419303878023,10.049101719889691,10.049101719889691,10.31912572474107,10.31912572474107,12.02648231998296,12.02648231998296,5.273828145122437,5.273828145122437,6.588047641345128,6.588047641345128,10.026191225047981,10.658422477330745,10.524125119865403,11.303760919269408,6.7837247705548975,10.639415880066082,11.337643498276492,11.095143117100122,11.912685665228636,7.107251331283194,186.6506282856904,186.6506282856904,0.0,207.38958698410045,0.0,186.6506282856904,207.38958698410045,0,0
+2017/03/19 22:00:00,131.18599474150946,0,972.0110206618411,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,0.4694654722792579,18.484669192323366,0,0,250.3882973664601,561.9161369889324,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,556.8060814874113,0.0,0.0,0.0,0.0,0.0,3368.9928910619096,0.0,5616.888934817741,0.0,3777.9540548421705,0.0,5692.067723260987,0.0,2978.5634729338935,0.0,3207.653720313967,0.0,5473.451723495084,0.0,3695.2452552977297,0.0,5566.217446384919,0.0,7248.905774835997,0,0,0,0,0,0,0,0,0.051750586715079504,0.0016373524905304861,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6762611605055981,-0.6762611605055981,-0.6488021250896804,-0.6488021250896804,-0.7199229478680785,-0.7199229478680785,-0.11304691761442148,-0.11304691761442148,-0.4230434534584044,-0.4230434534584044,-0.5214421129323764,-0.5604296623909605,-0.5469214517772117,-0.588031899908961,-0.3270925699427693,-0.5541003833790782,-0.5962347421042408,-0.5741052754919621,-0.6155240092619668,-0.3584736702568208,14.61144544983469,14.61144544983469,13.839500037202626,13.839500037202626,15.906038740686554,15.906038740686554,5.264695009968321,5.264695009968321,8.731443752328303,8.731443752328303,10.686685213410229,11.577106278773797,11.26114083948741,12.24734750243384,7.224735417080922,11.428075564455796,12.452902056760891,11.90504798016282,12.947778425810185,7.674320370791122,131.18599474150946,131.18599474150946,0.0,145.76221637945494,0.0,131.18599474150946,145.76221637945494,0,0
+2017/03/19 23:00:00,89.03450425709212,0,823.369857589212,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.511955201928761,9.57959279387082,0,0,275.90292262555533,494.2314061948405,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1408.6138535051246,0.0,586.3213251013873,0.0,1940.0821811269693,0.0,0.0,0.0,0.0,0.0,3563.5493616617905,0.0,5742.653296994901,0.0,4008.0228719690217,0.0,5839.615537544834,0.0,5253.797553132092,0.0,3559.737495128625,0.0,5705.185181852206,0.0,4035.0906757070697,0.0,5779.6702083000055,0.0,9372.351123691045,0,0,0,0,0,0,0,0,0.04383682109359229,0.001386966462616315,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7856414339171535,-0.7856414339171535,-0.7737297652709347,-0.7737297652709347,-0.8179789851165538,-0.8179789851165538,-0.3521697068851194,-0.3521697068851194,-0.5878833384632719,-0.5878833384632719,-0.5493880807242484,-0.592460375184586,-0.5746794843436798,-0.6179325848266094,-0.3573206855453727,-0.5827656861650425,-0.6302463144410114,-0.6030530374039322,-0.6471691858658563,-0.3925938743965114,18.009136885895444,18.009136885895444,17.614247589645387,17.614247589645387,19.11151140626677,19.11151140626677,7.580645806209901,7.580645806209901,12.243651631716475,12.243651631716475,11.318246481354876,12.35795771069617,11.918995001306115,13.010705766656557,7.657061057958813,12.116920858907974,13.336352203759873,12.625983823367491,13.794623079259608,8.21072732779487,89.03450425709212,89.03450425709212,0.0,98.92722695232457,0.0,89.03450425709212,98.92722695232457,0,0
+2017/03/20 00:00:00,39.377013632276615,0,568.5625055830925,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5785519952340547e-09,9.579692633274881,0,0,0.0,515.3269768142762,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030270688935282144,0.0009577434975015568,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7763446966209664,-0.7763446966209664,-0.7655321205916706,-0.7655321205916706,-0.8247856735341061,-0.8247856735341061,-0.3380097534465326,-0.3380097534465326,-0.26943952557471174,-0.26943952557471174,-0.8737301844356344,-0.9228878322917362,-0.9061887647290315,-0.9327548233439867,-0.15522170785807,-0.8354044764751433,-0.8785619409096382,-0.8599359992560816,-0.9011809101811157,-0.2770896276956606,17.700419064980053,17.700419064980053,17.345994789763253,17.345994789763253,19.349169580787546,19.349169580787546,7.376395853348711,7.376395853348711,6.507506957631051,6.507506957631051,21.11506754435733,22.987865439629772,22.340662888628515,23.37554235161636,5.499285743610415,19.723811702030503,21.294777537526883,20.607308853126227,22.14877068348565,6.594599655902925,39.377013632276615,39.377013632276615,0.0,43.75223736919624,0.0,39.377013632276615,43.75223736919624,0,0
+2017/03/20 01:00:00,23.730590047283396,0,39.66675632009977,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5334946236056067,0,0,0.0,4.176403807555632,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002111887487912963,6.68186480105523e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8302772966098503,-0.8302772966098503,-0.8205346195558244,-0.8205346195558244,-0.880392469084447,-0.880392469084447,-0.39667859991156845,-0.39667859991156845,-0.12201806097534866,-0.12201806097534866,-0.9209397667191188,-0.9601872615438742,-0.9664131044975515,-1.0029876588814566,-0.09391606070966191,-0.9603163928039152,-0.998941117869666,-0.9995851520577643,-1.0409290111645075,-0.2936734997086263,19.54232966748242,19.54232966748242,19.2005140351625,19.2005140351625,21.363111879122584,21.363111879122584,8.278275192197341,8.278275192197341,5.308401878860678,5.308401878860678,22.911786237004534,24.47368923815273,24.727036605175243,26.24561723921471,5.182655087055778,24.478928576250865,26.075086178811645,26.10218580611081,27.874381252029167,6.791874710987145,23.730590047283396,23.730590047283396,0.0,26.367322274759328,0.0,23.730590047283396,26.367322274759328,0,0
+2017/03/20 02:00:00,28.344229619647614,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248665331747197,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8554479075036182,-0.8554479075036182,-0.8479401831771604,-0.8479401831771604,-0.9059632084667669,-0.9059632084667669,-0.4341601192319513,-0.4341601192319513,-0.041424196465776386,-0.041424196465776386,-0.9744003386697991,-1.0105924991577915,-1.0231448342673226,-1.0620138454631265,-0.07219489365981087,-1.0388242287815186,-1.0763903183971093,-1.0816684154228267,-1.1227643222832646,-0.2870712048015873,20.443800871192366,20.443800871192366,20.17215251616892,20.17215251616892,22.331998106143487,22.331998106143487,8.931452165475363,8.931452165475363,5.035524049701735,5.035524049701735,25.054270476431725,26.567777828926154,27.10427312851533,28.802349744928264,5.107918321481151,27.782631768064547,29.444187799480062,29.681654130166706,31.5632953886618,6.711945703208201,28.344229619647614,28.344229619647614,0.0,31.493588466275124,0.0,28.344229619647614,31.493588466275124,0,0
+2017/03/20 03:00:00,23.722053069738617,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.524957646060825,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9037172890640511,-0.9037172890640511,-0.8982595187405659,-0.8982595187405659,-0.9524610497440585,-0.9524610497440585,-0.4985420074860012,-0.4985420074860012,0.022790773208837725,0.022790773208837725,-1.0343124729233368,-1.0627535379472743,-1.083990449517805,-1.1193508636916922,-0.04435679686977187,-1.1207087321503908,-1.1525814078552439,-1.1646355404868742,-1.2017778568454676,-0.28874038210483627,22.24583317459185,22.24583317459185,22.037298222136215,22.037298222136215,24.16139774734735,24.16139774734735,10.19435488681691,10.19435488681691,5.010752490963853,5.010752490963853,27.586506209633953,28.835194513094493,29.786432362539927,31.404839455297733,5.040732356388446,31.467826836869435,32.963553083415846,33.53765376286461,35.334379313823376,6.731979322061136,23.722053069738617,23.722053069738617,0.0,26.357836744154017,0.0,23.722053069738617,26.357836744154017,0,0
+2017/03/20 04:00:00,43.23065630916182,0,387.8881935992647,0,0,0,0.0,0.018801530710598858,4.633261998087618,9.319298099999997,25.555573451546493,0,1.8637407283308745,1.31495461402573,0.5250258864605072,0,0,299.1623123179043,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,257.35451273602183,0.0,148.86313295841478,0.0,486.5765670371867,0.0,0.0,0.0,0.0,2.204146801418371,3639.179381260091,1.473311909802608,2356.5320229929557,3.5046055546721266,3955.3137117424862,2.0435172591208657,2570.83037740863,0.0,0.0,2.2276745210125326,3699.8838022197774,2.0649071215865553,2362.596870556374,3.461807610241142,3970.315495469881,1.8215599327446494,2530.5818131732312,0.0,0.0,0,0,0,0,0,0,0,0,0.02065145473859577,0.0006533976326777467,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8586435915147997,-0.8586435915147997,-0.8589299174215588,-0.8589299174215588,-0.8816919254718304,-0.8816919254718304,-0.5016789810054191,-0.5016789810054191,0.1568560962974221,0.1568560962974221,-0.7279408619304673,-0.748192940703219,-0.7500953908139562,-0.7731386526663993,-0.01343814505403512,-0.7783354825013248,-0.8072200181937531,-0.7982095609034043,-0.8275821679382253,-0.2824126039846429,20.560138878638682,20.560138878638682,20.570583162311507,20.570583162311507,21.411704562034714,21.411704562034714,10.260456629896993,10.260456629896993,5.509866785103924,5.509866785103924,16.152708078348127,16.78806028765534,16.848648343533895,17.59480865561271,5.0037382040870995,17.766217922110016,18.739835842799764,18.432323669652305,19.44737426247866,6.6566548693853065,43.23065630916182,43.23065630916182,0.0,48.034062565735354,0.0,43.23065630916182,48.034062565735354,0,0
+2017/03/20 05:00:00,76.08021572876397,0,324.62586945466785,0,0,0,0.024980537283990044,0.01619460063815853,5.555297838843742,9.319298099999997,57.911447091112116,0,1.590087512438185,1.137875737073356,0.5250343113744161,0,0,111.683754379403,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.89924927664786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3634567296188607,2851.8581334259725,1.47991526330037,1864.40020561265,2.1506427524775518,3158.4255151779244,1.6596521449627062,2063.56443689685,0.0,0.0,2.7468151342309284,3185.0219755901717,1.510121795181135,2046.1623127992816,2.647800577933822,3453.699255854721,1.6361962404531596,2205.4731738496457,0.0,0.0,0,0,0,0,0,0,0,0,0.01728332174231219,0.0005468322524577023,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7208225733967233,-0.7208225733967233,-0.7266839234305044,-0.7266839234305044,-0.762231420004161,-0.762231420004161,-0.3622915936879646,-0.3622915936879646,0.4826443761101159,0.4826443761101159,-0.6804417538064879,-0.6976371556036792,-0.6975360184390117,-0.7157544827264187,0.10339716111972756,-0.6971185949155511,-0.7239796178312976,-0.7112945020087155,-0.7361471066018165,-0.18884367177996497,15.933577720545856,15.933577720545856,16.11385583535943,16.11385583535943,17.238795306191633,17.238795306191633,7.731875850402815,7.731875850402815,9.865897732357595,9.865897732357595,14.731836506188458,15.23496958631209,15.231972987570657,15.778890215136258,5.221414136902041,15.219609796172648,16.030495555199053,15.643678705501827,16.408033992038526,5.739378590932688,76.08021572876397,76.08021572876397,0.0,84.53357303195997,0.0,76.08021572876397,84.53357303195997,0,0
+2017/03/20 06:00:00,101.82392332036954,0,795.2908855391748,0,0,0,0.0,0.012417311475738643,11.110595677687485,13.929299233552332,73.80580873715317,0,1.4774686873468348,0.9632702901572576,0.5250633829966932,0,0,81.91281824715463,482.6907759604833,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.612698464831889,2112.6068413931616,1.4014896870930897,1391.7061362661345,2.2059921614583495,2362.586203908105,1.2776133964466678,1555.0723428130536,0.0,0.0,1.3649778048199246,2299.449076619293,1.2848058541869705,1488.7506554402794,1.8811576033804158,2506.2502929445745,1.3885765035213353,1605.665966735374,0.0,0.0,0,0,0,0,0,0,0,0,0.04234187582336653,0.0013396674363291856,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5838384058261703,-0.5838384058261703,-0.5929799456705055,-0.5929799456705055,-0.6236464384923371,-0.6236464384923371,-0.23812168941764666,-0.23812168941764666,0.7357036467715858,0.7357036467715858,-0.6610950700039747,-0.6769575806028899,-0.676467695656185,-0.6939002045379782,0.17948725666812682,-0.6723084209852965,-0.6978556250079933,-0.6848136443780662,-0.7088791953933586,-0.060446585512468495,12.143390961705265,12.143390961705265,12.370990829803247,12.370990829803247,13.160995037487226,13.160995037487226,6.17665210828946,6.17665210828946,16.39416240192817,16.39416240192817,14.181048800594212,14.631448184486217,14.617375409756391,15.12454064769068,5.667828103350715,14.498311629833594,15.241444136143258,14.85854517351882,15.57081268388805,5.075647663897556,101.82392332036954,101.82392332036954,0.0,113.13769257818838,0.0,101.82392332036954,113.13769257818838,0,0
+2017/03/20 07:00:00,150.688141487012,0,978.0479329550989,0,0,0,0.0,0.0,11.110595677687485,0.0,69.33401494192633,0,39.380909295966944,0.33350726181991536,27.097139107157034,0,0,112.21488156632884,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1507.3531413013445,0.0,764.1464621466046,0.0,1907.9565633863408,0.0,0.0,0.0,0.0,0.0,5189.241876334092,0.0,6026.946171347153,0.0,5663.043951436575,0.0,6121.612361710083,0.0,2268.0773098498157,0.0,5186.324877470282,0.0,5996.97022147809,0.0,5639.373451423116,0.0,6020.261595614725,0.0,2750.7874941805144,0,0,0,0,0,0,0,0,0.05207199639715373,0.0016475216688302849,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6966839427164129,-0.6966839427164129,-0.6950535963283537,-0.6950535963283537,-0.7236952969429724,-0.7236952969429724,-0.4679779668273175,-0.4679779668273175,0.2434273138704722,0.2434273138704722,-0.6458560147278097,-0.6676585158833174,-0.6596787699313165,-0.6830434611179657,-0.1761407624212506,-0.6583582948824165,-0.6896462730116316,-0.6699646998129669,-0.6989980685527623,-0.28034037129890593,15.206744325077906,15.206744325077906,15.158559650072988,15.158559650072988,16.02174963694992,16.02174963694992,9.57254982120213,9.57254982120213,6.229802089683233,6.229802089683233,13.758617957863862,14.366089598109781,14.141364359571853,14.807141105523897,5.643124184415328,14.104443203947142,14.999568905568566,14.431549913118374,15.275335110444658,6.632354735046718,150.688141487012,150.688141487012,0.0,167.4312683189022,0.0,150.688141487012,167.4312683189022,0,0
+2017/03/20 08:00:00,165.91211963411618,0,1118.8098770200866,0,0,0,0.0,0.0,12.430831256716328,0.0,83.2008179303116,0,39.380909295966944,0.3698434733558911,27.097742475311204,0,0,199.74129686250058,599.655407544689,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,432.34543381715315,0.0,104.29000571011613,0.0,855.2522650485087,0.0,0.0,0.0,0.0,0.0,4661.526493059985,0.0,5719.20416399603,0.0,5162.482701818393,0.0,5745.105242308285,0.0,165.30307538056073,0.0,4628.021038609585,0.0,5682.861560138456,0.0,5125.379987035385,0.0,5623.491616813273,0.0,569.2684742492327,0,0,0,0,0,0,0,0,0.059566266562484045,0.001884635152924106,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7207383212086135,-0.7207383212086135,-0.7192249917962146,-0.7192249917962146,-0.739772681375275,-0.739772681375275,-0.4782228738241268,-0.4782228738241268,-0.2213061371930815,-0.2213061371930815,-0.6258357447929667,-0.6539312262165007,-0.6413163973523723,-0.6629626580812579,-0.2913171655977928,-0.6393507526778767,-0.6763976609633383,-0.6533561243436736,-0.6784462533755412,-0.351478627584134,15.93099714719888,15.93099714719888,15.884697190606218,15.884697190606218,16.521760040025413,16.521760040025413,9.776485023108904,9.776485023108904,6.016004735171535,6.016004735171535,13.218954911766957,13.981211404728015,13.634724717145772,14.233511086670447,6.763137091849956,13.58135647168227,14.61536439303407,13.96526521682624,14.674276554921533,7.5704794732229175,165.91211963411618,165.91211963411618,0.0,184.3467995934624,0.0,165.91211963411618,184.3467995934624,0,0
+2017/03/20 09:00:00,181.48049453658456,0,1067.653100565554,0,0,0,0.0,0.0,11.346097261187438,0.0,106.27511244621549,0,39.380909295966944,0.16548974676479203,20.880910583995647,0,0,113.76874970383224,581.2356494800086,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.213276383619554,0.0,0.0,0.0,0.0,0.0,4069.461545630614,0.0,5317.075613726455,0.0,4638.882734126565,0.0,5282.1171523398525,0.0,0.0,0.0,3909.733334012615,0.0,5227.409746096791,0.0,4505.796873295773,0.0,5085.043719028626,0.0,0.0,0,0,0,0,0,0,0,0,0.056842641891879375,0.0017984615668691795,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.679836653960213,-0.679836653960213,-0.6822618021473837,-0.6822618021473837,-0.7222193582075951,-0.7222193582075951,-0.40866652118754343,-0.40866652118754343,-0.2963318540442967,-0.2963318540442967,-0.5999945296704055,-0.635500357742538,-0.6198156060434328,-0.6396400402718116,-0.30820710894473013,-0.6112668769580542,-0.6560025920754715,-0.6306874266042364,-0.6516891266399093,-0.3550087954123138,14.71436428109888,14.71436428109888,14.784485766738584,14.784485766738584,15.976404585168112,15.976404585168112,8.480637121237791,8.480637121237791,6.824577327317172,6.824577327317172,12.548094357683297,13.477301948111275,13.060077626872229,13.589200259754222,6.97431272369009,12.837170756408256,14.03876417570072,13.348139828578127,13.91912439125042,7.622624290617452,181.48049453658456,181.48049453658456,0.0,201.6449939295384,0.0,181.48049453658456,201.6449939295384,0,0
+2017/03/20 10:00:00,212.35814091227763,0,1259.0628067998844,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.3468221803383519,18.504848446568285,0,0,235.8314415060005,561.8567826308101,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2793.4588808319577,0.0,5416.481965568411,0.0,3419.8496915954806,0.0,5349.228814843684,0.0,0.0,0.0,2560.5992368591933,0.0,5290.961067107211,0.0,3242.2624178270435,0.0,5122.980630665294,0.0,3127.3974801306385,0,0,0,0,0,0,0,0,0.0670334364302406,0.0021208912024931587,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5834551806333136,-0.5834551806333136,-0.6052077334566567,-0.6052077334566567,-0.6411260832847766,-0.6411260832847766,-0.28448901773957397,-0.28448901773957397,-0.22023953359675486,-0.22023953359675486,-0.5793921256220446,-0.6232945956534408,-0.6046825864228353,-0.6243441766606694,-0.3191994747944418,-0.5854636213840607,-0.6391266212055011,-0.6115283507493763,-0.6322156362652149,-0.35969220175239924,12.133928880884213,12.133928880884213,12.681100136656468,12.681100136656468,13.629550267500477,13.629550267500477,6.681185753453363,6.681185753453363,6.006214827421829,6.006214827421829,12.034001348228315,13.151699719157477,12.667648502923782,13.179444435834682,7.118234326459103,12.183589420220287,13.575281832107294,12.843941627364146,13.38904271126735,7.692622384525322,212.35814091227763,212.35814091227763,0.0,235.9534899025307,0.0,212.35814091227763,235.9534899025307,0,0
+2017/03/20 11:00:00,228.2734027623822,0,1219.6148879310686,0,0,0,0.0,0.0,16.73568395689411,0.0,147.76209134187457,0,39.380909295966944,0.18637204954256711,20.77637091564965,0,0,123.75305266040439,581.2517238387741,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3295.952566895799,0.0,4404.523692168432,0.0,3961.536495611429,0.0,4331.834987298448,0.0,0.0,0.0,2847.8379751487037,0.0,4158.235265062272,0.0,3603.6001034875912,0.0,3999.210974096425,0.0,0.0,0,0,0,0,0,0,0,0,0.06493320001032835,0.002054441186152685,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4633170951633882,-0.4633170951633882,-0.4782596461958419,-0.4782596461958419,-0.5314287168578031,-0.5314287168578031,-0.1134012979060165,-0.1134012979060165,-0.11258368880710438,-0.11258368880710438,-0.5375063403751051,-0.5884218574670648,-0.5704507891970598,-0.5893266045287258,-0.3033087567301083,-0.5350522056613343,-0.5965022452160561,-0.5704909152173444,-0.5899760431919795,-0.3346242493382557,9.481267590345396,9.481267590345396,9.777225165398306,9.777225165398306,10.908492222800803,10.908492222800803,5.266358092534048,5.266358092534048,5.262528975343557,5.262528975343557,11.04559278766034,12.257053315800931,11.81661898308171,12.279597353277083,6.911826632406971,10.990039218505828,12.45965457031447,11.817586781857074,12.295801644659335,7.328823617960595,228.2734027623822,228.2734027623822,0.0,253.63711418042467,0.0,228.2734027623822,253.63711418042467,0,0
+2017/03/20 12:00:00,207.80302419450175,0,1175.4899117650243,0,0,0,0.0,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,0.1785889603797659,18.575985949118973,0,0,134.50998586965153,561.8601669760271,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3733.8648962831558,0.0,3342.7918447082366,0.0,4427.008190881079,0.0,3287.189533421618,0.0,0.0,0.0,3277.522464735933,0.0,2990.640116898835,0.0,3933.2981584970803,0.0,2902.608917823001,0.0,0.0,0,0,0,0,0,0,0,0,0.06258395359558415,0.0019801126671500123,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3401968594833877,-0.3401968594833877,-0.44039554324313723,-0.44039554324313723,-0.4214015576717632,-0.4214015576717632,-0.0037557293611485357,-0.0037557293611485357,-0.07379241496346593,-0.07379241496346593,-0.4986234896221992,-0.5504052963465093,-0.5373664847241326,-0.5558020764621705,-0.28695053205374804,-0.4837249576138028,-0.550827362527055,-0.5304231551451611,-0.5486267463688622,-0.31094301752094067,7.40738730157625,7.40738730157625,9.045961310362983,9.045961310362983,8.702352580294274,8.702352580294274,5.000291991150604,5.000291991150604,5.1127483483440415,5.1127483483440415,10.196066484892114,11.341873137707324,11.042419903788868,11.467973314335325,6.710501936836664,9.887877774364739,11.351689547453745,10.885962742785239,11.300592472681004,7.009655392900157,207.80302419450175,207.80302419450175,0.0,230.89224910500192,0.0,207.80302419450175,230.89224910500192,0,0
+2017/03/20 13:00:00,205.19596506527785,0,1128.0088174512198,0,0,0,0.0,0.0,16.67307048032785,0.0,129.2730206906943,0,39.380909295966944,0.15970312122306052,16.27728627461136,0,0,123.53204068379678,560.8473703606214,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3414.621570642085,0.0,3543.723207529538,0.0,4194.837480037072,0.0,3540.246347730347,0.0,0.0,0.0,2748.72381905781,0.0,3151.2272901416864,0.0,3615.1805500597466,0.0,3077.916321113312,0.0,0.0,0,0,0,0,0,0,0,0,0.06005602496475409,0.0019001307673821622,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.28180158108041997,-0.28180158108041997,-0.42547669965825324,-0.42547669965825324,-0.37577920432258916,-0.37577920432258916,0.03978837071316831,0.03978837071316831,-0.09198596559698846,-0.09198596559698846,-0.48624908733527905,-0.5315374019815201,-0.5245790795709004,-0.5414732496182193,-0.28867722035015714,-0.47164052311082816,-0.5263056534448267,-0.5151037936409214,-0.5324287623420889,-0.31151523341736354,6.649470847974442,6.649470847974442,8.774768770217563,8.774768770217563,7.940175393352334,7.940175393352334,5.0327735893345675,5.0327735893345675,5.175221845465089,5.175221845465089,9.939417268070784,10.910929921012752,10.755893583721488,11.135942340428855,6.731219107601362,9.644937045566834,10.794167331164843,10.54814745025854,10.93094154026572,7.0170873831814475,205.19596506527785,205.19596506527785,0.0,227.9955167391976,0.0,205.19596506527785,227.9955167391976,0,0
+2017/03/20 14:00:00,189.14885315132457,0,1022.7329359752271,0,0,0,0.0,0.0,16.67307048032785,0.0,115.5196477718057,0,39.380909295966944,0.10753928662493345,14.035711114144913,0,0,94.67518186127457,519.9187002196951,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2451.0107757411915,0.0,4088.974007067868,0.0,3180.913974339208,0.0,4137.750053896703,0.0,0.0,0.0,1853.798516302972,0.0,3718.9993645686754,0.0,2656.162253289107,0.0,3718.29287586985,0.0,0.0,0,0,0,0,0,0,0,0,0.05445105905642498,0.0017227935530261564,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4715795340303253,-0.4715795340303253,-0.4280022044521526,-0.4280022044521526,-0.46951241001057303,-0.46951241001057303,0.040604929924368635,0.040604929924368635,-0.15686636319552438,-0.15686636319552438,-0.4892162582862587,-0.5314483916755699,-0.5267206239134389,-0.5467234087670971,-0.30646375913951485,-0.47755154598806043,-0.526344938737209,-0.5194139701199763,-0.539694948727341,-0.33010878221644974,9.643726915979855,9.643726915979855,8.820005151292008,8.820005151292008,9.60280638178115,9.60280638178115,5.034132689125613,5.034132689125613,5.5099336048303655,5.5099336048303655,10.000354733382522,10.908933471292215,10.803385405401755,11.256567324556912,6.951957238463024,9.762983007182513,10.795039687632894,10.642166614719315,11.095355796417834,7.266130674955193,189.14885315132457,189.14885315132457,0.0,210.16539239036064,0.0,189.14885315132457,210.16539239036064,0,0
+2017/03/20 15:00:00,182.54262309463087,0,1150.9629391527096,0,0,0,0.0,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,0.24900058285133247,14.09343895827373,0,0,202.99694902730656,539.8269362311459,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2063.5702046042534,0.0,4512.931106748655,0.0,2761.525292638875,0.0,4623.124908086018,0.0,0.0,0.0,1432.9515407292147,0.0,4104.437893974267,0.0,2199.7831172140427,0.0,4180.794372659711,0.0,0.0,0,0,0,0,0,0,0,0,0.061278119406412375,0.0019387969836461335,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5150443457973954,-0.5150443457973954,-0.4269703335286063,-0.4269703335286063,-0.5249279005077636,-0.5249279005077636,0.034862857227872975,0.034862857227872975,-0.19961659859251993,-0.19961659859251993,-0.4969351868629925,-0.536661766282761,-0.5349143077163577,-0.5595288371985225,-0.3265533268156138,-0.4874037495415901,-0.5311152246237297,-0.5293585566267763,-0.5546890191706286,-0.3503108326969288,10.546856315854072,10.546856315854072,8.801489399330165,8.801489399330165,10.763615653986335,10.763615653986335,5.025161150090014,5.025161150090014,5.826291558746675,5.826291558746675,10.160660923879405,11.026444955098327,10.986925402083443,11.555789212980997,7.217375371608739,9.96308565785236,10.901463772363087,10.86215826698944,11.441862465577131,7.55334644013837,182.54262309463087,182.54262309463087,0.0,202.82513677181208,0.0,182.54262309463087,202.82513677181208,0,0
+2017/03/20 16:00:00,205.5029315279639,0,1151.328979332142,0,0,0,0.0,0.0,16.798297350153536,0.0,131.64086955684016,0,39.380909295966944,0.21360713897133674,14.037272983577665,0,0,150.1049597869715,539.8494368820965,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1724.2570592221987,0.0,3939.9136578583184,0.0,2336.2576573514416,0.0,4084.7002969011696,0.0,0.0,0.0,1288.311860876631,0.0,3634.273964034637,0.0,1945.7088165857717,0.0,3758.487880087949,0.0,0.0,0,0,0,0,0,0,0,0,0.06129760765669375,0.0019394135783006052,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5152112191646409,-0.5152112191646409,-0.4124732263348339,-0.4124732263348339,-0.48544488923802925,-0.48544488923802925,0.09402091568964477,0.09402091568964477,-0.1623370164771653,-0.1623370164771653,-0.5057818626322806,-0.540192317377777,-0.5389203191376735,-0.5672136331471904,-0.3338061938390973,-0.5001431179147307,-0.5366486045814444,-0.5357539405464863,-0.5653455309326525,-0.3558816093159623,10.550480988898684,10.550480988898684,8.546183191948415,8.546183191948415,9.922966726378846,9.922966726378846,5.183063334975813,5.183063334975813,5.546162834305406,5.546162834305406,10.347553685825389,11.1066935466865,11.077719098112965,11.738772177862899,7.317401510812871,10.228040068533957,11.026146802994688,11.005897563805021,11.694055086336348,7.63559856322567,205.5029315279639,205.5029315279639,0.0,228.33659058662656,0.0,205.5029315279639,228.33659058662656,0,0
+2017/03/20 17:00:00,212.6269648642523,0,1116.776381849439,0,0,0,0.0,0.0,17.241363593746797,0.0,133.89528835348938,0,39.380909295966944,0.13625253928061248,18.541175879314263,0,0,93.52415153443779,561.8776476519274,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2132.5070028685022,0.0,3105.332211723223,0.0,2672.852138212402,0.0,3235.0507241740534,0.0,0.0,0.0,1744.6407490082577,0.0,2820.1550215058614,0.0,2307.110929899971,0.0,2928.0599135266352,0.0,0.0,0,0,0,0,0,0,0,0,0.05945800177337536,0.0018812097304634905,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.43284267671092114,-0.43284267671092114,-0.3890859150797199,-0.3890859150797199,-0.5033254523833234,-0.5033254523833234,0.15283746167475984,0.15283746167475984,-0.12397434326814169,-0.12397434326814169,-0.508272324596052,-0.5357845632815385,-0.5360319226506619,-0.562372532533835,-0.32401772167872134,-0.5068005234375313,-0.5349819705602004,-0.5357971602546187,-0.5629299915942224,-0.3445048077236012,8.907471966115338,8.907471966115338,8.153286553282456,8.153286553282456,10.295320954478385,10.295320954478385,5.484049698397655,5.484049698397655,5.318376959689942,5.318376959689942,10.40077678360798,11.00659008565728,11.012185515723331,11.62320202252316,7.1829326102831885,10.369290845502036,10.98845316583683,11.006874973345958,11.636458292389136,7.469025599481938,212.6269648642523,212.6269648642523,0.0,236.25218318250256,0.0,212.6269648642523,236.25218318250256,0,0
+2017/03/20 18:00:00,198.93553896672253,0,1082.9801467398436,0,0,0,0.0,0.0,19.737366100332878,0.0,110.93442390708215,0,39.380909295966944,0.0756249926326539,25.3752394682536,0,0,57.44050904462483,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2282.9456138354017,0.0,2031.94232678026,0.0,2774.4647957733696,0.0,2117.344847481941,0.0,0.0,0.0,2031.8972166997603,0.0,1850.6936339092958,0.0,2538.1522207984426,0.0,1892.3835106212828,0.0,0.0,0,0,0,0,0,0,0,0,0.05765866518304383,0.0018242799749864673,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3317285972373766,-0.3317285972373766,-0.4101117461061538,-0.4101117461061538,-0.6089440681946666,-0.6089440681946666,0.2026565226819069,0.2026565226819069,-0.11242198692609641,-0.11242198692609641,-0.5006411648042001,-0.5244043899745916,-0.5232449078620157,-0.5463536775768024,-0.3034555376589933,-0.5020440096782581,-0.528252419953326,-0.5246689668238499,-0.5483032172864429,-0.32283804347477957,7.288520727444663,7.288520727444663,8.505448754631757,8.505448754631757,12.777151821328601,12.777151821328601,5.851694628406634,5.851694628406634,5.261774964341072,5.261774964341072,10.238540883977109,10.75202834867055,10.726406775123635,11.248033470155221,6.913684299556408,10.268176069004483,10.83747697931814,10.757882971091831,11.293098007165838,7.167001197209089,198.93553896672253,198.93553896672253,0.0,221.0394877408028,0.0,198.93553896672253,221.0394877408028,0,0
+2017/03/20 19:00:00,210.6120846799169,0,1059.6014925806342,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.08240683367520835,27.097742475311204,0,0,69.55220739795978,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2452.806152906008,0.0,2208.6960029127076,0.0,2930.6713248640685,0.0,2255.6542552692003,0.0,0.0,0.0,2247.926780586317,0.0,2053.3539223150765,0.0,2725.1024799647103,0.0,2055.0383101173775,0.0,0.0,0,0,0,0,0,0,0,0,0.056413968318882526,0.0017848986338296886,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3916898848098688,-0.3916898848098688,-0.4462251115032976,-0.4462251115032976,-0.6596142645942192,-0.6596142645942192,0.20277730762314108,0.20277730762314108,-0.1281389678888781,-0.1281389678888781,-0.49014339339178825,-0.5150252904362163,-0.5104244163479132,-0.532560350373689,-0.28947214691748036,-0.4948300759488793,-0.5219683165534478,-0.5142261960653096,-0.5378896282150248,-0.31074490300889124,8.195874726033992,8.195874726033992,9.154528417329885,9.154528417329885,14.139559002315607,14.139559002315607,5.852711949931418,5.852711949931418,5.340142220870121,5.340142220870121,10.019473452558572,10.546442489086289,10.446984645538762,10.933898691759808,6.740799118865411,10.116686925585427,10.698264690879157,10.529102634763731,11.054292723667075,7.007085494503386,210.6120846799169,210.6120846799169,0.0,234.0134274221299,0.0,210.6120846799169,234.0134274221299,0,0
+2017/03/20 20:00:00,211.84412244554127,0,1035.210823679345,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.0889467534426998,23.851446525941267,0,0,80.65189100921455,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2724.038695277227,0.0,2388.8316593019777,0.0,3205.6823271541075,0.0,2418.3601192952915,0.0,0.0,0.0,2363.114246184866,0.0,2134.517207164751,0.0,2853.3498915702503,0.0,2121.797207886821,0.0,0.0,0,0,0,0,0,0,0,0,0.055115391040246826,0.0017438125539166874,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4387147105053108,-0.4387147105053108,-0.4795805252246504,-0.4795805252246504,-0.5969796144561982,-0.5969796144561982,0.16132355817161056,0.16132355817161056,-0.16570179690050604,-0.16570179690050604,-0.4834868483002298,-0.5062284701034604,-0.503176186666704,-0.5217156701986791,-0.280070395222256,-0.48994917043373465,-0.5150950141662964,-0.5084803382846701,-0.5281544461927034,-0.302133415815761,9.014929561841683,9.014929561841683,9.803850062711248,9.803850062711248,12.471712397771938,12.471712397771938,5.539357107492933,5.539357107492933,5.569065571573972,5.569065571573972,9.8830300793813,10.357078301237877,10.292155396936252,10.692703536185888,6.629202184902908,10.015465252243686,10.547956761192992,10.405234331419777,10.835293439381019,6.89698431571189,211.84412244554127,211.84412244554127,0.0,235.38235827282364,0.0,211.84412244554127,235.38235827282364,0,0
+2017/03/20 21:00:00,197.91612732589368,0,1082.0438841744024,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.17986426348702314,25.840325611787126,0,0,162.97530401681612,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2641.194806896824,0.0,3574.2616933960066,0.0,3105.0632042152465,0.0,3598.5260327581736,0.0,0.0,0.0,2357.4671125629548,0.0,3377.8872324284375,0.0,2832.426604768719,0.0,3356.3574691041204,0.0,0.0,0,0,0,0,0,0,0,0,0.05760881787056382,0.001822702840766043,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5399002071748432,-0.5399002071748432,-0.5250825559242638,-0.5250825559242638,-0.606212360546967,-0.606212360546967,0.07417133355292534,0.07417133355292534,-0.24236984197410077,-0.24236984197410077,-0.49744530862572867,-0.5250878425726291,-0.5167781902645341,-0.5391288556457287,-0.2951032274279836,-0.5100198249224318,-0.5397169696910274,-0.5273737862569633,-0.5507780813285152,-0.32017443644930954,11.10003345957847,11.10003345957847,10.767041044288476,10.767041044288476,12.70686699588154,12.70686699588154,5.113909515150979,5.113909515150979,6.219114356111163,6.219114356111163,10.171345754105886,10.767158154085266,10.584576091534302,11.082464481775602,6.809425864321881,10.438282320110687,11.09585754779711,10.817909729918725,11.35054296779849,7.131246474944945,197.91612732589368,197.91612732589368,0.0,219.90680813988186,0.0,197.91612732589368,219.90680813988186,0,0
+2017/03/20 22:00:00,140.2404289718366,0,960.4206935648647,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.2874574560919235,20.76803870796841,0,0,219.46145040769244,581.2526568507237,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2967.73932080556,0.0,4438.407575508271,0.0,3390.900652498083,0.0,4441.828283276329,0.0,0.0,0.0,2749.8339898646473,0.0,4275.7247446788515,0.0,3157.1286863666974,0.0,4224.299263109712,0.0,0.0,0,0,0,0,0,0,0,0,0.05113350911540392,0.0016178285854153201,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6722814528120693,-0.6722814528120693,-0.6477765791329434,-0.6477765791329434,-0.7082849583039663,-0.7082849583039663,-0.13885246181811273,-0.13885246181811273,-0.4716920013347183,-0.4716920013347183,-0.5201059059397634,-0.5540150774522051,-0.5404209294552792,-0.5670345308045199,-0.31989073499522497,-0.5386519698034176,-0.5753168339529602,-0.5576931722779646,-0.5853278511714348,-0.34851528722438097,14.497542079634982,14.497542079634982,13.811302152073509,13.811302152073509,15.552924037122082,15.552924037122082,5.399447678551127,5.399447678551127,9.645958587976338,9.645958587976338,10.657334895663112,11.426078793615062,11.111908460899087,11.734478413024647,7.127455949790004,11.071615406795942,11.934492405932474,11.512459077397551,12.180226860599333,7.5271166601716715,140.2404289718366,140.2404289718366,0.0,155.8226988575962,0.0,140.2404289718366,155.8226988575962,0,0
+2017/03/20 23:00:00,91.2189635247553,0,856.2507461467231,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.46180810751419926,11.814199155948534,0,0,285.3937269121713,517.6214904657357,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1158.139663577882,0.0,447.75368655142915,0.0,1654.899499919422,0.0,0.0,0.0,0.0,0.0,3410.5211226944703,0.0,5510.928115237124,0.0,3799.784562244048,0.0,5503.319719549465,0.0,2890.7863059660117,0.0,3167.3031674311724,0.0,5362.4568514705115,0.0,3673.759238531943,0.0,5347.576112002609,0.0,7189.468873001395,0,0,0,0,0,0,0,0,0.04558742395548755,0.0014423543168958256,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7908651911899371,-0.7908651911899371,-0.7778053089292556,-0.7778053089292556,-0.8200373664300729,-0.8200373664300729,-0.4120206229531023,-0.4120206229531023,-0.5804438767162468,-0.5804438767162468,-0.5486372022188645,-0.5885823578149559,-0.5701256620079947,-0.600716291714598,-0.3474970502345749,-0.5734191016789915,-0.6157774442307933,-0.5906177983567271,-0.6228384198544331,-0.381890437670793,18.18421459910296,18.18421459910296,17.748678300733104,17.748678300733104,19.183175153509083,19.183175153509083,8.538357488147668,8.538357488147668,12.05979959693316,12.05979959693316,11.300834755357556,12.261049991728655,11.80877982191764,12.566438505852048,7.512302916708975,11.8884001903142,12.954387910457257,12.311832203778224,13.139656030757763,8.037110007566127,91.2189635247553,91.2189635247553,0.0,101.35440391639477,0.0,91.2189635247553,101.35440391639477,0,0
+2017/03/21 00:00:00,39.3366247268139,0,561.7177393688191,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5785561627404445e-09,9.539303727812163,0,0,0.0,508.48221060000304,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029906268512070268,0.0009462134893331225,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7507424927359403,-0.7507424927359403,-0.7396908820216875,-0.7396908820216875,-0.7931018399642541,-0.7931018399642541,-0.3896508256372754,-0.3896508256372754,-0.24367975352410917,-0.24367975352410917,-0.8189148300658535,-0.8535110625671289,-0.8245348994071402,-0.8592696912657657,-0.13796654807355802,-0.7935984676290095,-0.8346664179145156,-0.8081016671599621,-0.8420408521989008,-0.24479149201323241,16.869292181780054,16.869292181780054,16.51918795843065,16.51918795843065,18.259531427670908,18.259531427670908,8.162501106806019,8.162501106806019,6.2323604101047465,6.2323604101047465,19.144071299096964,20.373496782064294,19.340379165524155,20.58298146888474,5.394362538493084,18.276283630369747,19.697619534740866,18.770109356640177,19.960345598997137,6.243659050686631,39.3366247268139,39.3366247268139,0.0,43.707360807571,0.0,39.3366247268139,43.707360807571,0,0
+2017/03/21 01:00:00,23.722152032404257,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525056608726466,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8042864264402234,-0.8042864264402234,-0.7938493054969046,-0.7938493054969046,-0.8512695021962932,-0.8512695021962932,-0.4512026578584188,-0.4512026578584188,-0.09776521352472113,-0.09776521352472113,-0.8747695195599652,-0.9159491749426539,-0.9062771971585801,-0.9382315073478098,-0.07272513785158709,-0.9128559397677735,-0.96000437202181,-0.9455332329175135,-0.9772353155662856,-0.24238133949704982,18.639340336242995,18.639340336242995,18.284748846526696,18.284748846526696,20.29232655327108,20.29232655327108,9.248384367165073,9.248384367165073,5.197940645428801,5.197940645428801,21.15364301223437,22.71758075608706,22.344060597809943,23.592399426296055,5.109509757207761,22.597712956172956,24.466269843051464,23.883374273012123,25.17101322648871,6.219230307539831,23.722152032404257,23.722152032404257,0.0,26.357946702671395,0.0,23.722152032404257,26.357946702671395,0,0
+2017/03/21 02:00:00,28.397135603967033,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5777725174941368,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8383253501002542,-0.8383253501002542,-0.829624310614529,-0.829624310614529,-0.8847694843264127,-0.8847694843264127,-0.4987364021255969,-0.4987364021255969,-0.01842493347826444,-0.01842493347826444,-0.9438111002733455,-0.9877454410167269,-0.9819974519270388,-1.012935497114255,-0.05032479168650115,-0.9998134910840532,-1.0505807934530764,-1.038932160216601,-1.0689867734546235,-0.2462016362928325,19.82769088331038,19.82769088331038,19.51929556251153,19.51929556251153,21.527064860610196,21.527064860610196,10.198438777390834,10.198438777390834,5.007027475095256,5.007027475095256,23.814556697038924,25.606518711285347,25.367813959159122,26.667471808722752,5.052431725307571,26.111797619547772,28.29717629582936,27.78733266565399,29.112743315930004,6.258065104840966,28.397135603967033,28.397135603967033,0.0,31.552372893296702,0.0,28.397135603967033,31.552372893296702,0,0
+2017/03/21 03:00:00,23.721875735368464,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5247803116906713,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.9016342814881108,-0.9016342814881108,-0.8949134871298541,-0.8949134871298541,-0.9473501883675111,-0.9473501883675111,-0.5807574283612066,-0.5807574283612066,0.04549090008075785,0.04549090008075785,-1.0252594180885912,-1.0667735604413395,-1.0671634146611122,-1.093824341189399,-0.021513163193580057,-1.09566168687876,-1.145029792544799,-1.1376507529827407,-1.1639791740149983,-0.2590954573817,22.16610119452544,22.16610119452544,21.91004910326008,21.91004910326008,23.95610815008537,23.95610815008537,12.067499947025524,12.067499947025524,5.042842048070597,5.042842048070597,27.19522965284797,29.014037144887027,29.03141149824326,30.23224181177855,5.009580725712254,30.315905175177193,32.60621747464397,32.25880322801858,33.50627688121068,6.393665043907447,23.721875735368464,23.721875735368464,0.0,26.35763970596496,0.0,23.721875735368464,26.35763970596496,0,0
+2017/03/21 04:00:00,43.07778329147211,0,391.7478766791975,0,0,0,0.0,0.016761284652410065,4.633261998087618,9.319298099999997,25.555573451546493,0,1.7711575697507624,1.2566918299716046,0.5250390574632218,0,0,303.02199539783714,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,144.18542521447642,0.0,64.19997420352841,0.1130531520306148,367.1833163879079,0.0,0.0,0.0,0.0,2.5434912929659825,3455.483987139758,1.5833098670969872,2300.9915141302745,2.3484557656637053,3739.8855051498917,1.7538214927680098,2401.4972782164864,0.0,0.0,2.6042016666486534,3507.0946685009358,2.1587591449752934,2323.212742415442,2.2320690285346743,3777.222049786582,1.4241232417261418,2383.0267906528406,0.0,0.0,0,0,0,0,0,0,0,0,0.020856947124664384,0.0006598992685329485,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8525331914554759,-0.8525331914554759,-0.8528787768883297,-0.8528787768883297,-0.8730296350253639,-0.8730296350253639,-0.5633836498480107,-0.5633836498480107,0.17972914571188028,0.17972914571188028,-0.7202822008444866,-0.7455690759249224,-0.7385936794097052,-0.7577276814124531,0.0095258712685856,-0.7643458892543631,-0.7976982266354601,-0.7820579384854324,-0.8058458181869466,-0.2451747871698447,20.338060945939944,20.338060945939944,20.350579641561154,20.350579641561154,21.089091372499084,21.089091372499084,11.647256145754596,11.647256145754596,5.669631850479448,5.669631850479448,15.917031871331304,16.70475151928845,16.484715511656972,17.093274727488478,5.001878417053632,17.30741504875529,18.41497564818809,17.889703962101223,18.692714867919605,6.247566531129195,43.07778329147211,43.07778329147211,0.0,47.86420365719123,0.0,43.07778329147211,47.86420365719123,0,0
+2017/03/21 05:00:00,75.97505343473655,0,314.82261469035103,0,0,0,0.08153400186879987,0.012790691967123903,5.555297838843742,9.319298099999997,57.911447091112116,0,1.508898376212176,1.060646984823024,0.5251403499095623,0,0,101.88049961508615,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,258.1255730608709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8019495313774314,2443.3147328065797,1.030344989694413,1646.7081379781903,1.9107016226060978,2690.9393931869986,1.0879858555906026,1743.788962249338,0.0,0.0,2.1571467330689984,2849.711834016347,1.5550471190186386,1899.0883672477705,1.9136004664275106,3081.6402427773733,1.333915649340213,1959.1910066931243,0.0,0.0,0,0,0,0,0,0,0,0,0.016761389197323808,0.0005303186705512651,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6741252712115229,-0.6741252712115229,-0.6775768147790711,-0.6775768147790711,-0.7124888082596882,-0.7124888082596882,-0.3892429046130608,-0.3892429046130608,0.5046364470375989,0.5046364470375989,-0.6708500137133383,-0.6915776941521457,-0.6841491822093091,-0.7005440606079784,0.12161255260682582,-0.6841662083464582,-0.7120743222078644,-0.6949313059766382,-0.7170306913144795,-0.1357716790054538,14.55022885419416,14.55022885419416,14.649251594195377,14.649251594195377,15.6798019814495,15.6798019814495,8.155845924012482,8.155845924012482,10.32316528927008,10.32316528927008,14.456740440836086,15.056213164144168,14.839234077391609,15.321287210530471,5.306354096157804,14.839728665378672,15.667258369762834,15.154950003340105,15.817738252662707,5.381904671528403,75.97505343473655,75.97505343473655,0.0,84.41672603859617,0.0,75.97505343473655,84.41672603859617,0,0
+2017/03/21 06:00:00,101.72005188990912,0,792.2090964309444,0,0,0,0.0,0.0095797625694532,11.110595677687485,13.929299233552332,73.80580873715317,0,1.445673272630985,0.8940199636097619,0.525075242705903,0,0,72.03749136821882,489.48431373118876,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3790438053703533,1791.219181641335,1.0868842188482781,1222.4297595466833,1.7324866260716285,1995.7459254942949,1.125955094948722,1303.4227128829375,0.0,0.0,1.9111360185797819,2043.2824508795763,0.0,1374.3501504148023,1.286675650611869,2218.249458154375,1.0575811550225656,1418.737117697763,0.0,0.0,0,0,0,0,0,0,0,0,0.0421777990885426,0.001334476162810275,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5244179383674968,-0.5244179383674968,-0.5304608104127165,-0.5304608104127165,-0.5631985486062634,-0.5631985486062634,-0.25419037358079866,-0.25419037358079866,0.7556376623624373,0.7556376623624373,-0.6500825898081793,-0.6696954563134242,-0.6622196102773221,-0.6782581513158117,0.18483461677939128,-0.658687486146327,-0.6854733554823085,-0.6680658769229001,-0.6900510286998841,-0.011848728835262522,10.752328077274768,10.752328077274768,10.886805615057725,10.886805615057725,11.642849337155724,11.642849337155724,6.341256046154314,6.341256046154314,17.026038620926855,17.026038620926855,13.874771043525413,14.423895646837707,14.212620084017232,14.668859660341994,5.70827285324502,14.113640489970294,14.877737077328135,14.377635668319215,15.011426131768701,5.00290621068838,101.72005188990912,101.72005188990912,0.0,113.0222798776768,0.0,101.72005188990912,113.0222798776768,0,0
+2017/03/21 07:00:00,150.5661109845134,0,931.8994721680418,0,0,0,0.0,0.0,11.110595677687485,0.0,69.33401494192633,0,39.380909295966944,0.22777453288633834,27.080841333592044,0,0,66.06642077927197,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,931.4128797654957,0.0,384.43425453641106,0.0,1306.8080463875017,0.0,0.0,0.0,0.0,0.0,4232.02270334893,0.0,5248.987765168589,0.0,4659.129416494866,0.0,5269.331717523822,0.0,2265.042991488132,0.0,4363.356506339512,0.0,5314.973559895087,0.0,4778.450879220334,0.0,5276.805771937421,0.0,1720.5208876916724,0,0,0,0,0,0,0,0,0.04961501816237824,0.001569784590137096,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6600311641871542,-0.6600311641871542,-0.6567035057507365,-0.6567035057507365,-0.687760711717335,-0.687760711717335,-0.44855707844292975,-0.44855707844292975,0.28386798390125706,0.28386798390125706,-0.63285283258546,-0.6593955616688665,-0.6438349335686974,-0.6671153542330486,-0.17153459709982583,-0.6422556068098051,-0.676538768051275,-0.6512660783684463,-0.6801108720722617,-0.2523646154683716,14.151230253626451,14.151230253626451,14.058281123539828,14.058281123539828,14.944425141247919,14.944425141247919,9.198367001875155,9.198367001875155,6.673829750964984,6.673829750964984,13.406127346639707,14.133439348073239,13.70334913551551,14.350705630866528,5.609885656779568,13.660283888843395,14.619416440649374,13.90743400212284,14.722280351618025,6.322006938608752,150.5661109845134,150.5661109845134,0.0,167.29567887168153,0.0,150.5661109845134,167.29567887168153,0,0
+2017/03/21 08:00:00,165.49598464283753,0,1015.6400292943746,0,0,0,0.0,0.0,12.209901403182826,0.0,83.2008179303116,0,39.380909295966944,0.1746383356106769,27.097742475311204,0,0,96.57144913678843,599.655407544689,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2103.7838472967605,0.0,4390.7647359357115,0.0,3649.4735192140474,0.0,3219.1092951574537,0.0,165.98279911687732,0.0,1989.723635564053,0.0,4478.935489728144,0.0,3771.3694366217924,0.0,2964.514193691116,0.0,152.78383221488835,0,0,0,0,0,0,0,0,0.054073427450973134,0.001710845552260603,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.530713322456697,-0.530713322456697,-0.6774157582725524,-0.6774157582725524,-0.682009920240557,-0.682009920240557,-0.003654778277034406,-0.003654778277034406,-0.2150312442723061,-0.2150312442723061,-0.541053312065124,-0.6431187206419204,-0.624327442145169,-0.5226553681925031,-0.2943614996379245,-0.5399708542485782,-0.6623923972296596,-0.6333382467998008,-0.5139999435737287,-0.3442097323669571,10.892459409337178,10.892459409337178,14.644619512048592,14.644619512048592,14.777190936505121,14.777190936505121,5.000276505112694,5.000276505112694,5.95909478378816,5.95909478378816,11.126345657811882,13.683805963272135,13.179001699185093,10.713401779183044,6.800309729439249,11.101643867759933,14.217475904693174,13.4191541897478,10.524198112959326,7.464778490172378,165.49598464283753,165.49598464283753,0.0,183.8844273809306,0.0,165.49598464283753,183.8844273809306,0,0
+2017/03/21 09:00:00,181.91412741450503,0,1023.753658643749,0,0,0,0.0,0.0,11.86011032607099,0.0,106.27511244621549,0,39.380909295966944,0.10758912711639186,20.858431016680946,0,0,69.87392426234301,581.2310329996926,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,933.4902361061826,0.0,3855.031273816504,0.0,2990.8452596021375,0.0,2415.2893729465036,0.0,5.947315173192794,0.0,464.8493115447681,0.0,3847.502715660447,0.0,2969.2064376797443,0.0,2151.509219249814,0.0,7.316704982386341,0,0,0,0,0,0,0,0,0.05450540308735317,0.0017245129602838098,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4976413353891106,-0.4976413353891106,-0.5948484546135925,-0.5948484546135925,-0.6209469812659246,-0.6209469812659246,0.345173368377427,0.345173368377427,-0.2659047305175927,-0.2659047305175927,-0.441027899690642,-0.6206090101699888,-0.599738301381285,-0.45003690682875974,-0.304220905817094,-0.4213958661247857,-0.6334083130102063,-0.6034481108493716,-0.4188771625353143,-0.3436957716872002,10.175454651510464,10.175454651510464,12.417958101988475,12.417958101988475,13.089815708833768,13.089815708833768,7.478662087622325,7.478662087622325,6.4680979488830275,6.4680979488830275,9.057667384524024,13.080926355064605,12.541587552790475,9.226307556935197,6.92338560304934,8.702251938337938,13.421035369348289,12.63607456735295,8.657850767389462,7.457389734084813,181.91412741450503,181.91412741450503,0.0,202.12680823833892,0.0,181.91412741450503,202.12680823833892,0,0
+2017/03/21 10:00:00,212.462520042426,0,1109.5975887229051,0,0,0,0.0,0.0,17.091304499026357,0.0,133.89528835348938,0,39.380909295966944,0.12013131061537577,18.542911380873658,0,0,86.38390203673367,561.8391040230977,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4044.098874729675,0.0,2320.122690715575,0.0,2460.0349505258428,0.0,0.0,0.0,0.0,0.0,3914.979116232203,0.0,2105.555992657947,0.0,2014.0320025452668,0.0,0.0,0,0,0,0,0,0,0,0,0.05907579750993876,0.001869117053986705,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.320370196715756,-0.320370196715756,-0.5466594044693578,-0.5466594044693578,-0.5557758775972437,-0.5557758775972437,0.5071511536204639,0.5071511536204639,-0.21290014409196506,-0.21290014409196506,-0.33236579576080294,-0.6123866996596941,-0.5887314917123135,-0.43429230198193625,-0.3191193333506695,-0.29489070179195415,-0.6211123166861828,-0.587801912170097,-0.4031050610380045,-0.3480074194146133,7.133864009802053,7.133864009802053,11.255089601956556,11.255089601956556,11.467358106406337,11.467358106406337,10.376783306352579,10.376783306352579,5.9401420343334905,5.9401420343334905,7.297358981647065,12.86618945370354,12.264764629627564,8.933862281291994,7.117166524824455,6.806811462222328,13.0941661851665,12.241626337174878,8.385992188597783,7.519722473249416,212.462520042426,212.462520042426,0.0,236.06946671380666,0.0,212.462520042426,236.06946671380666,0,0
+2017/03/21 11:00:00,228.50076226430264,0,1156.7180685832625,0,0,0,0.0,0.0,17.091304499026357,0.0,147.76209134187457,0,39.380909295966944,0.08752654511022577,20.74695537987022,0,0,60.87931996932244,581.2286371820502,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2955.626880147223,0.0,2389.3100560809385,0.0,1622.9948584673095,0.0,0.0,0.0,0.0,0.0,2714.673832277238,0.0,1999.1039645942167,0.0,1122.6405513539062,0.0,0.0,0,0,0,0,0,0,0,0,0.06158452676015775,0.001948491498735093,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.10342138814095535,-0.10342138814095535,-0.4844020741363185,-0.4844020741363185,-0.4543422295703033,-0.4543422295703033,0.5635248380853812,0.5635248380853812,-0.11261586034630466,-0.11261586034630466,-0.1997214511433534,-0.5810204004039047,-0.5580460618990799,-0.43920377124396065,-0.3043232992391914,-0.14627394532283644,-0.582101829743365,-0.5498683571695723,-0.4080419340305261,-0.324709162469395,5.221517957525407,5.221517957525407,9.90167663909915,9.90167663909915,9.30813185782793,9.30813185782793,11.650618491938047,11.650618491938047,5.26267911980834,5.26267911980834,5.8271613213942,12.073961428519652,11.52077755085908,9.023946141375248,6.92468535385386,5.443329855627638,12.100564753229946,11.329396173693766,8.469941886261452,7.192297861712518,228.50076226430264,228.50076226430264,0.0,253.88973584922513,0.0,228.50076226430264,253.88973584922513,0,0
+2017/03/21 12:00:00,207.81608945045522,0,1070.8360562587254,0,0,0,0.0,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,0.03984421454622627,18.602569081080325,0,0,29.89045494350351,561.8258423958762,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2043.3056472087792,0.0,2615.4099657516795,0.0,1092.1097806347148,0.0,0.0,0.0,0.0,0.0,1677.2116769758652,0.0,2060.9370053011216,0.0,522.1929769292017,0.0,0.0,0,0,0,0,0,0,0,0,0.05701210481062032,0.0018038232554927446,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.015447984623001261,0.015447984623001261,-0.33995530016820835,-0.33995530016820835,-0.5168527927117899,-0.5168527927117899,0.5288288771415486,0.5288288771415486,-0.07335546515533166,-0.07335546515533166,-0.13062337077204222,-0.5484101465283309,-0.528271328761557,-0.44560017127271007,-0.22583446387310013,-0.013059301523743993,-0.5402836548182293,-0.5121494756216475,-0.41891782967812874,-0.2822038490455033,5.0049400250158556,5.0049400250158556,7.403954407611778,7.403954407611778,10.58620198567408,10.58620198567408,10.85033288966504,10.85033288966504,5.111416739678333,5.111416739678333,5.3534696812866684,11.295574492799261,10.837898447527465,9.142819913819949,6.058099314842224,5.0035304011958175,11.108776791047788,10.484168248999623,8.658565510912013,6.654198689232814,207.81608945045522,207.81608945045522,0.0,230.90676605606134,0.0,207.81608945045522,230.90676605606134,0,0
+2017/03/21 13:00:00,205.10011850021417,0,1014.398583647264,0,0,0,0.0,0.0,16.735683873587277,0.0,129.2730206906943,0,39.380909295966944,0.03646185781803151,16.242067579693266,0,0,29.373675514169225,541.395501726293,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1848.2881087460034,0.0,2242.6251451827898,0.0,1274.67140933067,0.0,0.0,0.0,0.0,0.0,1445.8435276117466,0.0,1670.376843984698,0.0,721.5244437866328,0.0,36.93739290451936,0,0,0,0,0,0,0,0,0.0540073319651739,0.0017087543371622693,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.037798555360870095,0.037798555360870095,-0.3218548080392358,-0.3218548080392358,-0.3960682173250114,-0.3960682173250114,0.5166693142309456,0.5166693142309456,-0.09985973164940147,-0.09985973164940147,-0.07398419917437266,-0.4961259559548409,-0.5163702672396581,-0.444352964588739,-0.22028586125614527,0.08995933610527414,-0.47629066614796706,-0.496570007070767,-0.41825712343274585,-0.29305785959190195,5.029577338562433,5.029577338562433,7.153767797434,7.153767797434,8.268136142084643,8.268136142084643,10.582203667122158,10.582203667122158,5.206516638925322,5.206516638925322,5.113335312257377,10.14373412057634,10.575690029039265,9.119503197465093,6.006639059207885,5.167583195005847,9.737676220315038,10.153018901301849,8.646962080061002,6.784343791169107,205.10011850021417,205.10011850021417,0.0,227.8890205557935,0.0,205.10011850021417,227.8890205557935,0,0
+2017/03/21 14:00:00,189.19858070248736,0,997.6755817472045,0,0,0,0.0,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,0.06012815509033732,14.070236403582825,0,0,49.781857032841415,539.7546708201056,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1855.441445001216,0.0,1660.6563321361373,0.0,1933.5089704472043,0.0,399.9945252875532,0.0,0.0,0.0,1400.7485713392484,0.0,1158.0667022887696,0.0,1454.7999762651639,0.0,31.34728520813856,0,0,0,0,0,0,0,0,0.05311698695717574,0.0016805844417308734,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.019795413875377876,-0.019795413875377876,-0.21795923260093333,-0.21795923260093333,-0.4192791777986689,-0.4192791777986689,0.49074152417453876,0.49074152417453876,-0.16060436538433653,-0.16060436538433653,-0.0421994449199754,-0.42686754928762666,-0.5156541003057674,-0.45563516156848466,-0.28221613581756405,0.059237234496743514,-0.39099306921041155,-0.4965061598493361,-0.43284453035745946,-0.3190217961975963,5.008111807803587,5.008111807803587,5.985444801396881,5.985444801396881,8.66491948255144,8.66491948255144,10.031827373994432,10.031827373994432,5.534553446077254,5.534553446077254,5.036866254974598,8.799647555228447,10.560106695413253,9.332860253400185,6.6543432026779215,5.0726505174638135,8.1844498436962,10.151683378758804,8.907505653986306,7.115867310572966,189.19858070248736,189.19858070248736,0.0,210.22064522498596,0.0,189.19858070248736,210.22064522498596,0,0
+2017/03/21 15:00:00,182.51972713171793,0,1018.0655322116016,0,0,0,0.0,0.0,16.798297266846703,0.0,108.75639138185811,0,39.380909295966944,0.08760061578588024,14.064553368806012,0,0,70.15892642322159,539.7675518941227,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1639.459694241731,0.0,1610.7737487970476,0.0,2627.361549892184,0.0,51.16096555780083,0.0,0.0,0.0,1024.0012600867801,0.0,1103.5986808525092,0.0,2166.5120865634985,0.0,0.0,0,0,0,0,0,0,0,0,0.054202563022872484,0.0017149313117405794,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.14965785677004662,-0.14965785677004662,-0.2929412617567777,-0.2929412617567777,-0.4727176313006081,-0.4727176313006081,0.45741528043141677,0.45741528043141677,-0.20238865377484536,-0.20238865377484536,-0.04107782889132611,-0.36908297377331906,-0.5252635837975611,-0.477006299553853,-0.3204007789101686,0.039775373333081974,-0.3255066706090095,-0.5083177295238189,-0.45861045240364473,-0.34281888593345455,5.464099504738712,5.464099504738712,6.78291929213394,6.78291929213394,9.666335169796824,9.666335169796824,9.36702422624137,9.36702422624137,5.84944065711575,5.84944065711575,5.034932421349211,7.835791066425642,10.771051861023878,9.752031095767379,7.134273074801527,5.032752179488853,7.203124922295743,10.401749611092953,9.39003845761404,7.444809442245557,182.51972713171793,182.51972713171793,0.0,202.79969681301992,0.0,182.51972713171793,202.79969681301992,0,0
+2017/03/21 16:00:00,205.4823375569889,0,1041.458025291968,0,0,0,0.0,0.0,16.903073467207488,0.0,131.64086955684016,0,39.380909295966944,0.07970328222193085,14.045806752298086,0,0,60.255540518204796,519.8279021106895,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,649.413346490112,0.0,1614.2898821524689,0.0,2616.0496984982346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1170.9457879254383,0.0,2213.7602000891998,0.0,0.0,0,0,0,0,0,0,0,0,0.05544799668144676,0.0017543359645589964,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.27011709034183173,-0.27011709034183173,-0.15980319565070206,-0.15980319565070206,-0.52057290096431,-0.52057290096431,0.4801807904992182,0.4801807904992182,-0.15924737457365348,-0.15924737457365348,-0.08876337105051128,-0.30549021466599646,-0.5276445853821827,-0.4862892364559801,-0.32516453583690724,-0.012938446141067116,-0.2490908280524179,-0.5131048957732323,-0.4719137509428986,-0.3453652545213407,6.515121159252999,6.515121159252999,5.529227624395588,5.529227624395588,10.667583843883165,10.667583843883165,9.815974454185238,9.815974454185238,5.525548488863379,5.525548488863379,5.163155390285169,6.9395291489120865,10.823936886971822,9.94023928334127,7.198476758739076,5.003465359905164,6.287842116250218,10.504817683384033,9.650360329834996,7.481431401838094,205.4823375569889,205.4823375569889,0.0,228.31370839665433,0.0,205.4823375569889,228.31370839665433,0,0
+2017/03/21 17:00:00,212.561176472991,0,1056.9898513150472,0,0,0,0.0,0.0,17.250223812971733,0.0,133.89528835348938,0,39.380909295966944,0.04423742599274161,18.558542382115913,0,0,33.781634996967306,561.8336336550061,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2051.465212786135,0.0,2134.960481839916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1616.3875890688525,0.0,1752.306103925202,0.0,0.0,0,0,0,0,0,0,0,0,0.056274922603442586,0.0017804993243160279,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.39559441533312717,-0.39559441533312717,-0.07462160195341312,-0.07462160195341312,-0.6050174068992807,-0.6050174068992807,0.5045641767961385,0.5045641767961385,-0.11532602041672826,-0.11532602041672826,-0.1625431786678005,-0.21745587054893514,-0.5232117257275297,-0.4835688765211114,-0.3125029982856798,-0.08277044897891561,-0.14324134067342695,-0.5122916162422371,-0.47331017193880354,-0.3313352095360604,8.260276812484037,8.260276812484037,5.115297068002917,5.115297068002917,12.676223541740043,12.676223541740043,10.321628400236932,10.321628400236932,5.275481801633987,5.275481801633987,5.547552525888335,5.980889302690059,10.725674391743922,9.884699825153163,7.029949177351682,5.141861513958773,5.425121506766516,10.4872378251888,9.678128068194681,7.283072850822521,212.561176472991,212.561176472991,0.0,236.17908496999001,0.0,212.561176472991,236.17908496999001,0,0
+2017/03/21 18:00:00,199.4269956863616,0,1047.6462339335587,0,0,0,0.0,0.0,18.771074622436185,0.0,110.93442390708215,0,39.380909295966944,0.027746486665953078,26.88086617175607,0,0,22.106596238340174,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2390.847569136396,0.0,1426.0124970536706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2047.7960794926878,0.0,1124.2578119796385,0.0,0.0,0,0,0,0,0,0,0,0,0.055777461493172455,0.001764760001546079,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4735372312186825,-0.4735372312186825,-0.2414764209985873,-0.2414764209985873,-0.6246078519371339,-0.6246078519371339,0.5171587593029824,0.5171587593029824,-0.10557794193763057,-0.10557794193763057,-0.2202045396652,-0.16137671346471993,-0.5091813376208416,-0.47388092217713096,-0.25302151647699733,-0.16311164015556098,-0.08031904370629347,-0.5010206206314863,-0.4680320414478578,-0.31119108344061575,9.682651072767612,9.682651072767612,6.210121268445903,6.210121268445903,13.186421963956704,13.186421963956704,10.592872774917154,10.592872774917154,5.230857122221735,5.230857122221735,6.005894440509252,5.539713000038873,10.42026989828166,9.689501600639304,6.328916552251727,5.551393571032719,5.133580568392858,10.24654852104483,9.573614354191804,7.012875592807831,199.4269956863616,199.4269956863616,0.0,221.585550762624,0.0,199.4269956863616,221.585550762624,0,0
+2017/03/21 19:00:00,210.56981885151464,0,1023.6391680697744,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.04014100527293105,27.0977424753112,0,0,33.58988288710003,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,194.08851580207352,0.0,2856.1460198728455,0.0,1753.089916033905,0.0,250.1577632981939,0.0,0.0,0.0,0.0,0.0,2555.865930183891,0.0,1497.337661676097,0.0,0.0,0,0,0,0,0,0,0,0,0.05449930752439084,0.0017243201009206398,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5431922431249757,-0.5431922431249757,-0.28323843089512385,-0.28323843089512385,-0.6739502713950678,-0.6739502713950678,0.4783773162448673,0.4783773162448673,-0.1238870691428675,-0.1238870691428675,-0.237404481813732,-0.30267162571571593,-0.508188753939362,-0.47095579330210724,-0.2606239300425922,-0.22005587529060666,-0.2267914432651886,-0.5050148946556619,-0.4696220152977021,-0.30574850091172734,11.175305541170545,11.175305541170545,6.666389452139029,6.666389452139029,14.54522194600763,14.54522194600763,9.779593981642975,9.779593981642975,5.317928558919519,5.317928558919519,6.16955805071332,6.903773630493504,10.39898646578429,9.631360018453577,6.410203071493214,6.004533916016953,6.067105273626012,10.331216990995344,9.604971490945516,6.9428224756850625,210.56981885151464,210.56981885151464,0.0,233.9664653905718,0.0,210.56981885151464,233.9664653905718,0,0
+2017/03/21 20:00:00,211.79249526189383,0,986.2006584305661,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.03646872587039042,23.852297369866154,0,0,31.641725760435758,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,300.0684423280809,0.0,2653.9825468829945,0.0,1647.5162198200792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2481.110534873783,0.0,1481.1745447713256,0.0,0.0,0,0,0,0,0,0,0,0,0.05250605354024571,0.001661254934274928,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5991407090065992,-0.5991407090065992,-0.32971728751169893,-0.32971728751169893,-0.5810478296896802,-0.5810478296896802,0.44893858956883864,0.44893858956883864,-0.15943800476215836,-0.15943800476215836,-0.24513322770038276,-0.3425800414421633,-0.4987532740739678,-0.46286783872187576,-0.2665103320352688,-0.2531775834389538,-0.2946090438420322,-0.49900502569456406,-0.46513621419060047,-0.29861996652842715,12.526423029293298,12.526423029293298,7.260735906483461,7.260735906483461,12.074635565841916,12.074635565841916,9.20556128011583,9.20556128011583,5.526808872904937,5.526808872904937,6.247142557158412,7.441388508232436,10.19879330445076,9.47251844195894,6.474812371476958,6.3305608102625825,6.803349563629141,10.204084774596069,9.516783315723984,6.852964433410108,211.79249526189383,211.79249526189383,0.0,235.3249947354376,0.0,211.79249526189383,235.3249947354376,0,0
+2017/03/21 21:00:00,197.7781593679235,0,1002.8266438814234,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.09917727454273062,25.78304464276126,0,0,83.75806372383725,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1412.8884316717572,0.0,2183.4648176571864,0.0,2515.705226939066,0.0,13.046981451792256,0.0,0.0,0.0,1084.2390893301185,0.0,2084.7498046480905,0.0,2404.6672662733527,0.0,0.0,0,0,0,0,0,0,0,0,0.05339123332062762,0.0016892614055050064,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.53131622488666,-0.53131622488666,-0.4201002026435365,-0.4201002026435365,-0.5871896974968962,-0.5871896974968962,0.38310750435617336,0.38310750435617336,-0.237221152573497,-0.237221152573497,-0.2686138019821809,-0.3781588236671843,-0.506432686067099,-0.47819690647415214,-0.28805947931533266,-0.28640551397660835,-0.36146359550411167,-0.5117998376553196,-0.4858193970314029,-0.31716749712748377,10.905969679544299,10.905969679544299,8.679377254560208,8.679377254560208,12.226408098723638,12.226408098723638,8.05660511978003,8.05660511978003,6.167748166396223,6.167748166396223,6.4982539528463406,7.977730747396876,10.36143640470263,9.775962395903406,6.723792859955651,6.703988828181181,7.719341002444324,10.476621413667573,9.930624122377154,7.091244353180059,197.7781593679235,197.7781593679235,0.0,219.7535104088039,0.0,197.7781593679235,219.7535104088039,0,0
+2017/03/21 22:00:00,140.1197972509418,0,867.6079249557733,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.16614254071784337,20.768721902447687,0,0,126.67382023279191,581.2275184165328,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2368.9814749277393,0.0,2440.779483327695,0.0,3294.2447928306565,0.0,0.0,0.0,0.0,0.0,2149.3796154878155,0.0,2356.6428494057463,0.0,3190.9321186887596,0.0,0.0,0,0,0,0,0,0,0,0,0.046192088567619444,0.0014614854837376756,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5914006143328783,-0.5914006143328783,-0.5535783074155741,-0.5535783074155741,-0.6892998606380711,-0.6892998606380711,0.18728209904229648,0.18728209904229648,-0.4667413454418365,-0.4667413454418365,-0.30545955726197876,-0.41476582370144616,-0.5271998743630545,-0.5056264389195891,-0.3154233404894188,-0.31790624992456523,-0.41285136296078656,-0.5389351494747365,-0.5202481783390226,-0.34558722098993394,12.33141055381212,12.33141055381212,11.415860183478472,11.415860183478472,14.98942645667438,14.98942645667438,5.72718272635521,5.72718272635521,9.548239622798391,9.548239622798391,6.939138433359602,8.585957999415754,10.814040659335873,10.344241050207927,7.06821690353658,7.101036682072106,8.552728063316664,11.078056509836031,10.660456290026985,7.48463678978743,140.1197972509418,140.1197972509418,0.0,155.68866361215754,0.0,140.1197972509418,155.68866361215754,0,0
+2017/03/21 23:00:00,91.06958726625967,0,751.1832548784802,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.2814679030049786,11.84516310196212,0,0,180.3998445337258,517.5478815759382,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,642.341734939276,0.0,0.0,0.0,0.0,0.0,32.86372353398701,0.0,3352.247418068695,0.0,2670.253970899369,0.0,4136.485848458618,0.0,0.0,0.0,7.154204601781959,0.0,3197.3255172674103,0.0,2662.6646554024014,0.0,4059.4604533271886,0.0,2707.2061615914845,0,0,0,0,0,0,0,0,0.03999355289617506,0.0012653681358289577,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7127782465478403,-0.7127782465478403,-0.6638286445140105,-0.6638286445140105,-0.8030154809523276,-0.8030154809523276,-0.05846137126668898,-0.05846137126668898,-0.5564061300501767,-0.5564061300501767,-0.36831760714047485,-0.45455579508764227,-0.552766717469015,-0.5369502462715798,-0.343515551573596,-0.381571528759778,-0.4614500601873492,-0.567722542021364,-0.5564447504971042,-0.37664202467372393,15.68856565736975,15.68856565736975,14.257888723359784,14.257888723359784,18.595914691929124,18.595914691929124,5.070759602242603,5.070759602242603,11.482166096572172,11.482166096572172,7.8239818833213945,9.312211514964275,11.396894301489809,11.032981778818638,7.454801528062461,8.032012145077246,9.444964589060547,11.75098025427458,11.48307405678706,7.953764577185822,91.06958726625967,91.06958726625967,0.0,101.18843029584409,0.0,91.06958726625967,101.18843029584409,0,0
+2017/03/22 00:00:00,39.33699427473279,0,549.5207720326205,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5785604435990266e-09,9.53967327573104,0,0,0.0,496.2852432638043,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02925689293671603,0.0009256676987810299,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5620344995731748,-0.5620344995731748,-0.5511754824186965,-0.5511754824186965,-0.7033149674006537,-0.7033149674006537,0.007436774016641532,0.007436774016641532,-0.20544264127816486,-0.20544264127816486,-0.2860509539063491,-0.39860752468465005,-0.6906421271190765,-0.6104746476550517,-0.12893002641921006,-0.3118455067668386,-0.4053826588266001,-0.7027485619846322,-0.6455910359059727,-0.211365102953471,11.615170227347619,11.615170227347619,11.359791926580385,11.359791926580385,15.403906073580416,15.403906073580416,5.00114485657835,5.00114485657835,5.875316288600217,5.875316288600217,6.699758474113622,8.31042125737845,15.028754945914713,12.816674071616816,5.344357965612446,7.021383311718168,8.42459225164039,15.386990877043075,13.75136171424053,5.926608112539739,39.33699427473279,39.33699427473279,0.0,43.707771416369766,0.0,39.33699427473279,43.707771416369766,0,0
+2017/03/22 01:00:00,23.722049335390853,0,53.27528548984987,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249539117130638,0,0,0.0,17.78493297730574,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002836415660838738,8.974221436412652e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5908299759350767,-0.5908299759350767,-0.5891299697229119,-0.5891299697229119,-0.7572967717113954,-0.7572967717113954,-0.08268633349361962,-0.08268633349361962,-0.07554883173319592,-0.07554883173319592,-0.38799092515638356,-0.5043139161825977,-0.806063197503707,-0.7159889119010335,-0.06067360263483143,-0.39748217778582995,-0.49635360882287705,-0.8372184411982724,-0.7538805499737454,-0.19740357495285393,12.317136170934276,12.317136170934276,12.274694683625782,12.274694683625782,17.079397032533308,17.079397032533308,5.141573239078724,5.141573239078724,5.118180910536466,5.118180910536466,8.135464426763676,10.316308136906017,18.700163439994938,15.786021024352692,5.07621703921437,8.291647700883999,10.148493109783459,19.78828234323356,16.969656757684874,5.808041553328607,23.722049335390853,23.722049335390853,0.0,26.357832594878726,0.0,23.722049335390853,26.357832594878726,0,0
+2017/03/22 02:00:00,28.344508401266083,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251453147931838,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5526015001731038,-0.5526015001731038,-0.5543311367479242,-0.5543311367479242,-0.7298370476832684,-0.7298370476832684,-0.07525926719681315,-0.07525926719681315,-0.0014644966972258914,-0.0014644966972258914,-0.37844647527355074,-0.49776069839729226,-0.8177936912038155,-0.7231809183949542,-0.03784130454292685,-0.4068482165760374,-0.5099718262536077,-0.8706116211799146,-0.7790772667233526,-0.18505282126936626,11.39303687000887,11.39303687000887,11.43347843012873,11.43347843012873,16.21144814357514,16.21144814357514,5.117276487492049,5.117276487492049,5.000044397413589,5.000044397413589,7.982286858792122,10.177957420800112,19.105069035796703,16.005935816504362,5.029644283093958,8.449547514752211,10.437250390192588,20.99958741135771,17.79077829385868,5.709948598317496,28.344508401266083,28.344508401266083,0.0,31.49389822362898,0.0,28.344508401266083,31.49389822362898,0,0
+2017/03/22 03:00:00,23.722327316166595,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5252318924888004,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5061555681261675,-0.5061555681261675,-0.5101584276826936,-0.5101584276826936,-0.6863329197517287,-0.6863329197517287,-0.05082634210319887,-0.05082634210319887,0.058427313539235096,0.058427313539235096,-0.34701694443335235,-0.46611245694961273,-0.8033272010251555,-0.7001397909044839,-0.008068304379231303,-0.4024402405728817,-0.506902990952609,-0.8853645107244928,-0.7865957867222138,-0.15424840046173652,10.355522961611072,10.355522961611072,10.441262718943406,10.441262718943406,14.902771216676967,14.902771216676967,5.0534821520689945,5.0534821520689945,5.07067716909954,5.07067716909954,7.505333427261903,9.535901854115167,18.60655921846532,15.309260987969452,5.001347555475817,8.374766868154552,10.371479878694757,21.54941380115686,18.041036153390664,5.4930374152975645,23.722327316166595,23.722327316166595,0.0,26.35814146240733,0.0,23.722327316166595,26.35814146240733,0,0
+2017/03/22 04:00:00,41.15046780626274,0,258.1161207864548,0,0,0,0.0,0.0032315094691216925,4.633261998087618,9.319298099999997,25.555573451546493,0,0.6017790639020695,0.4599043192164865,0.5774193640409276,0,0,169.39023950509454,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,165.39004632905505,1.1352882161401339,1758.617875058984,0.0,767.1178249344797,0.0,0.0,0.0,3.4119401197055192,0.0,168.8660584139666,1.8049121527518766,2137.015585697896,0.29130910022968237,964.0632861694223,0.0,0.0,0,0,0,0,0,0,0,0,0.013742293459002294,0.00043479658587410177,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.488178942828011,-0.488178942828011,-0.4977322575389229,-0.4977322575389229,-0.6663797232059036,-0.6663797232059036,-0.057625929635978124,-0.057625929635978124,0.19040302205029286,0.19040302205029286,-0.4280946679136549,-0.5063127122599698,-0.6358368316964916,-0.6035145249708826,0.022511697167806446,-0.4612447941057509,-0.5264316061437223,-0.671077628411887,-0.6444587635046626,-0.15001289659733374,9.979007941284578,9.979007941284578,10.177361025187153,10.177361025187153,14.329890722421794,14.329890722421794,5.068751375508697,5.068751375508697,5.751658758682751,5.751658758682751,8.821666533847136,10.358875865997348,13.486369304682938,12.637771544644337,5.010490765916003,9.440982514069773,10.796964432250974,14.46322242309725,13.720389594891543,5.466306293294338,41.15046780626274,41.15046780626274,0.0,45.7227420069586,0.0,41.15046780626274,45.7227420069586,0,0
+2017/03/22 05:00:00,73.311079948773,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5250369188171257,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2493037411936831,-0.2493037411936831,-0.26383037191190845,-0.26383037191190845,-0.4223188138189888,-0.4223188138189888,0.15632608469755577,0.15632608469755577,0.5127514842768893,0.5127514842768893,-0.3620167821750515,-0.46669824653873904,-0.7219298933138929,-0.6621067576368171,0.14036332572219964,-0.402005117521315,-0.4958009888277623,-0.7531407403710675,-0.7054976033088113,-0.002447550583728768,6.290050352270882,6.290050352270882,6.445216173715735,6.445216173715735,8.718590305568725,8.718590305568725,5.5064232929866535,5.5064232929866535,10.497174822372813,10.497174822372813,7.727712313335772,9.547393548578512,15.967522394043186,14.209449291680187,5.408195369867826,8.367430169843075,10.13694469572431,16.9459574267441,15.469218016482543,5.000124006458535,73.311079948773,73.311079948773,0.0,81.45675549863667,0.0,73.311079948773,81.45675549863667,0,0
+2017/03/22 06:00:00,99.37067606524245,0,710.726508922985,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.0,2.5202727144216e-09,0.5249724143291777,0,0,0.0,480.03921759144794,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03783960577492306,0.0011972187503375411,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.07558815807041033,-0.07558815807041033,-0.09159679876645697,-0.09159679876645697,-0.24507857924622967,-0.24507857924622967,0.3076664732768395,0.3076664732768395,0.7651668213354864,0.7651668213354864,-0.30540519385920656,-0.41328718008338894,-0.6964971160974911,-0.6182845118598536,0.24499575500446483,-0.3363512624043342,-0.4314955766409684,-0.7242658125097166,-0.662088848045556,0.10159326601779288,5.118304010183451,5.118304010183451,5.1737418006351845,5.1737418006351845,6.2465851647695985,6.2465851647695985,6.967366237087319,6.967366237087319,17.33410777848755,17.33410777848755,6.938445692719,8.560278880698775,15.201216864877651,13.01992142316891,6.245740629796899,7.35303035338643,8.883029000461434,16.03930262550314,14.208946141111397,5.213752319269574,99.37067606524245,99.37067606524245,0.0,110.41186229471383,0.0,99.37067606524245,110.41186229471383,0,0
+2017/03/22 07:00:00,150.11143632905922,0,879.442763741104,0,0,0,0.0,0.0,10.843536854875632,0.0,69.33401494192633,0,39.380909295966944,0.04904185218814172,27.07195818164786,0,0,13.60971235233409,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1580.4582719892808,0.0,1218.1989195881256,0.0,1808.3392798583995,0.0,0.0,0.0,0.0,0.0,1417.6389668330025,0.0,1463.801576867566,0.0,1834.1184838860027,0.0,990.964239330721,0,0,0,0,0,0,0,0,0.04682218415069443,0.0014814212687733158,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.22884365361489187,-0.22884365361489187,-0.23409296998565562,-0.23409296998565562,-0.40377075396473433,-0.40377075396473433,0.22920529855213148,0.22920529855213148,0.5516599785891837,0.5516599785891837,-0.35781567268753317,-0.4423493845126998,-0.6240677246364288,-0.5852380145628628,0.049875130855833616,-0.37623974249938436,-0.45749324956579446,-0.6343993757762934,-0.6128747694435616,-0.07910169114323057,6.0865477349442045,6.0865477349442045,6.137083164139668,6.137083164139668,8.397251193727087,8.397251193727087,6.089992233162775,6.089992233162775,11.371077163472407,11.371077163472407,7.664463709996284,9.082185968029506,13.17213204158179,12.178002357593627,5.051498834076796,7.947424791169823,9.368523724926604,13.447666826642305,12.878854154104886,5.129560915413563,150.11143632905922,150.11143632905922,0.0,166.7904848100658,0.0,150.11143632905922,166.7904848100658,0,0
+2017/03/22 08:00:00,164.99743668222345,0,928.468690475091,0,0,0,0.0,0.0,11.86011032607099,0.0,83.2008179303116,0,39.380909295966944,0.02588145210842775,27.0977424753112,0,0,9.400110317504735,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1123.1704693645074,0.0,1096.5871103836855,0.0,1081.8546197390917,0.0,0.0,0.0,0.0,0.0,1086.9937785875318,0.0,1158.7899955465093,0.0,830.3325124765109,0.0,156.96990420759488,0,0,0,0,0,0,0,0,0.04943236080384266,0.001564005438635712,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3630626164134374,-0.3630626164134374,-0.4182133788970041,-0.4182133788970041,-0.48603852752725085,-0.48603852752725085,0.4879901985817071,0.4879901985817071,0.08577133331724027,0.08577133331724027,-0.3117980816114753,-0.46735548069800775,-0.5731881224212448,-0.4699995878421459,-0.15515648734552914,-0.3144036195669538,-0.4773742229737988,-0.5759991622933539,-0.47343858583270915,-0.2693237442831393,7.743574418195735,7.743574418195735,8.646194491958596,8.646194491958596,9.935107394403843,9.935107394403843,9.975128790809578,9.975128790809578,5.1523379392913,5.1523379392913,7.020766159714526,9.56030440269923,11.882800820459522,9.612433906831527,5.498865814707031,7.054813596084244,9.759419860476854,11.951103019511223,9.680685790686624,6.506207788675994,164.99743668222345,164.99743668222345,0.0,183.3304852024705,0.0,164.99743668222345,183.3304852024705,0,0
+2017/03/22 09:00:00,179.3296570860463,0,954.4662334606718,0,0,0,0.0,0.0,11.435487997441953,0.0,106.27511244621549,0,39.380909295966944,0.0015270650277171274,20.8638302004125,0,0,0.6059755736508886,581.2115565053074,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,205.89651217387382,0.0,67.44547866877448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,118.61234736363926,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0508164892489484,0.001607798297821743,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3092819169280771,-0.3092819169280771,-0.4303550353873451,-0.4303550353873451,-0.635503862891504,-0.635503862891504,0.7578179862849922,0.7578179862849922,-0.07959361626606684,-0.07959361626606684,-0.21638783719699559,-0.4660642794864977,-0.5470829640057737,-0.3999895194903032,-0.19934810812386267,-0.19194715723924302,-0.46908684742794776,-0.5356491735250856,-0.3423397881836301,-0.30304094052398084,6.98815939018462,6.98815939018462,8.862394925580276,8.862394925580276,13.477396380140746,13.477396380140746,17.096184054369573,17.096184054369573,5.131177834287556,5.131177834287556,5.9712586019112734,9.534957393392801,11.264871987658253,8.333550445722778,5.824066498824408,5.7639192252642175,9.594404856906337,11.003528603478514,7.437949842229713,6.908439484474911,179.3296570860463,179.3296570860463,0.0,199.25517454005143,0.0,179.3296570860463,199.25517454005143,0,0
+2017/03/22 10:00:00,211.04539014638647,0,1023.7492526733356,0,0,0,0.023276412566201637,0.0,16.903073633821148,0.0,133.89528835348938,0,39.380909295966944,0.0014640517230959846,18.553394930516788,0,0,0.5869898552994313,561.7876801549622,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,89.33387070497902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,252.2791772439072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,127.08918530190765,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05450516851022484,0.0017245055384269832,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.35346924887629194,-0.35346924887629194,-0.5373302323500613,-0.5373302323500613,-0.5602608492335232,-0.5602608492335232,0.7957154998247903,0.7957154998247903,0.08426206381847132,0.08426206381847132,-0.20972674300934632,-0.4682338893634295,-0.5385734954198176,-0.4446649907501423,-0.24289168328969,-0.16741155357426563,-0.4678379814830351,-0.5134206215350319,-0.3971874071800642,-0.2687394014255441,7.599818142527653,7.599818142527653,11.041597589977002,11.041597589977002,11.573108816375665,11.573108816375665,18.347812448712745,18.347812448712745,5.147022219139075,5.147022219139075,5.912272103803744,9.577589119953103,11.069831071423224,9.125330300694642,6.224382669336023,5.580884084388728,9.5697946032125,10.511650123293819,8.286739153885932,6.499659559880229,211.04539014638647,211.04539014638647,0.0,234.4948779404294,0.0,211.04539014638647,234.4948779404294,0,0
+2017/03/22 11:00:00,225.07916382176626,0,1095.8323876115574,0,0,0,0.3952040766560319,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.57865513131543e-05,20.742635887256913,0,0,0.009843390484351316,581.2124327891831,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1558.952841621293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.058342928006794366,0.0018459295737594005,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.11704295076043572,0.11704295076043572,-0.43342355071399435,-0.43342355071399435,-0.3631739128584185,-0.3631739128584185,0.8869098665086004,0.8869098665086004,0.30911783581762065,0.30911783581762065,-0.13585800325605066,-0.3747144932208652,-0.41880865816855395,-0.3029647277568302,-0.18011414142044277,-0.07588195855901608,-0.34772638787928256,-0.41384204395709073,-0.26297128079203946,-0.22845787725881705,5.283750403113331,5.283750403113331,8.918035897031004,8.918035897031004,7.745265187520772,7.745265187520772,21.60752440630222,21.60752440630222,6.98604238405315,6.98604238405315,5.382390853414563,7.923450262147696,8.656646932322332,6.90747615431944,5.672507770036432,5.119225696177978,7.515635571529984,8.569904037590248,6.4357927879530195,6.082879443003833,225.07916382176626,225.07916382176626,0.0,250.0879598019625,0.0,225.07916382176626,250.0879598019625,0,0
+2017/03/22 12:00:00,204.73310312201053,0,1040.9201878117365,0,0,0,0.5475536253358978,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.802260790860083e-09,18.569075411323652,0,0,0.0,561.8004288923905,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2106.455677939288,0.0,0.0,0.0,0.0,0.0,60.53298768635045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05541936181561944,0.001753429977364368,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.35225416497278467,0.35225416497278467,-0.24126980152715777,-0.24126980152715777,-0.13898172158613611,-0.13898172158613611,0.8668574095337774,0.8668574095337774,0.5259791220632561,0.5259791220632561,0.04109557611825143,-0.35204397754169964,-0.3832606080706601,-0.3455862283359103,0.07566882083596002,0.11826237804365719,-0.3185543505661562,-0.3284830520533303,-0.2849615230259171,0.023140956838824542,7.581889645912142,7.581889645912142,6.20804623012522,6.20804623012522,5.400192358937787,5.400192358937787,20.861101158053216,20.861101158053216,10.786919066705266,10.786919066705266,5.03496261449736,7.578794714412226,8.059062030912173,7.484622450341988,5.118556702141504,5.289697458380601,7.109646437153202,7.2437707963809,6.686793372014236,5.0110854647568885,204.73310312201053,204.73310312201053,0.0,227.4812256911228,0.0,204.73310312201053,227.4812256911228,0,0
+2017/03/22 13:00:00,202.58396941895037,0,984.9504873515127,0,0,0,0.8899245448940335,0.0,16.73568395689411,0.0,129.2730206906943,0,39.380909295966944,2.7477389185342744e-09,16.30443092775314,0,0,0.0,541.321080944711,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2325.4184744116865,0.0,0.0,0.0,0.0,0.0,588.0718523978738,0.0,0.0,0.0,0.0,394.701190316444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05243949350598685,0.0016591490211871488,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.37842787906089187,0.37842787906089187,-0.06711430713553178,-0.06711430713553178,0.007609779506938588,0.007609779506938588,0.8821303310748714,0.8821303310748714,0.6412873017268047,0.6412873017268047,0.10005603446974642,-0.23906586214295555,-0.29679907363597746,-0.26801101288492274,0.16037262031747307,0.19554609266601208,-0.1916480755414766,-0.22672506502858414,-0.21542481228678215,0.1277997167976419,7.981992206774535,7.981992206774535,5.093260708691503,5.093260708691503,5.001198743076841,5.001198743076841,21.42811419987656,21.42811419987656,13.633933534396888,13.633933534396888,5.207329733060234,6.186024055629559,6.830355835414608,6.491517273847194,5.533010157587938,5.792881637827534,5.761536729749565,6.066479360704818,5.962615752763895,5.338342240857429,202.58396941895037,202.58396941895037,0.0,225.0932993543893,0.0,202.58396941895037,225.0932993543893,0,0
+2017/03/22 14:00:00,186.23180036831675,0,947.8442440253942,0,0,0,0.5043656082411017,0.0,16.798297350153536,0.0,115.5196477718057,0,39.380909295966944,6.0049287015856036e-06,14.028574337220775,0,0,0.0024191097517708374,539.7027710213848,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2005.4951384887984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050463929626462505,0.0015966435571206185,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.27308756611685886,0.27308756611685886,-0.08012436222952772,-0.08012436222952772,0.003738473096172116,0.003738473096172116,0.869882275992476,0.869882275992476,0.6227796079653871,0.6227796079653871,-0.035428088644509165,-0.21810419464091754,-0.32078664686716585,-0.2442234844393773,0.04808605734102364,0.05380993208208861,-0.21153691374711847,-0.23649226898658884,-0.17849104600245458,-0.004125275356395486,6.5487304708017575,6.5487304708017575,5.132933608994904,5.132933608994904,5.0002893141183336,5.0002893141183336,20.972637647392034,20.972637647392034,13.138103970558234,13.138103970558234,5.0259836856220375,5.986758697322699,7.139437819059509,6.237879880798431,5.047870088518266,5.059946264198572,5.928118004946285,6.160566352318924,5.660425183769647,5.000352279241341,186.23180036831675,186.23180036831675,0.0,206.92422263146307,0.0,186.23180036831675,206.92422263146307,0,0
+2017/03/22 15:00:00,179.49516364541506,0,930.6257559983203,0,0,0,0.3672635187415134,0.0,16.923524219979218,0.0,108.75639138185811,0,39.380909295966944,3.918363138555961e-06,14.067071310506117,0,0,0.0,522.4867021040628,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1443.8738873496382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04954720457005221,0.0015676390153458732,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.12431151994222245,0.12431151994222245,-0.1801764140247807,-0.1801764140247807,-0.08268375644037866,-0.08268375644037866,0.8531250665419144,0.8531250665419144,0.5486910869663293,0.5486910869663293,-0.08708908045140917,-0.33327278121614495,-0.3727008821948317,-0.3658928174491209,-0.122995094074498,-0.006737383728848764,-0.2734868006589131,-0.3153327340454954,-0.2969850618030063,-0.18477981298340482,5.320112295141072,5.320112295141072,5.672973528017707,5.672973528017707,5.141564411809995,5.141564411809995,20.359504414687095,20.359504414687095,11.302083446420738,11.302083446420738,5.157056374954578,7.309969032750558,7.891951432040443,7.786733570128945,5.313363884929828,5.0009396460402655,6.553275937938253,7.067024181229428,6.832658678768368,5.707852288954015,179.49516364541506,179.49516364541506,0.0,199.43907071712783,0.0,179.49516364541506,199.43907071712783,0,0
+2017/03/22 16:00:00,202.395629173136,0,998.2989301034921,0,0,0,0.4329354621584757,0.0,16.86091074341296,0.0,131.64086955684016,0,39.380909295966944,8.327561937360142e-06,14.079995787195468,0,0,0.002068636243762895,536.9222788041747,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1710.939435650054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05315017448538278,0.0016816344719897288,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.09189221177662248,0.09189221177662248,-0.1834464121562992,-0.1834464121562992,-0.07019035374954503,-0.07019035374954503,0.8764849964315062,0.8764849964315062,0.5665557305866445,0.5665557305866445,-0.11581453235310998,-0.3259025788756075,-0.3491095348858053,-0.3768708473512236,-0.17915882142912432,-0.04363350617486236,-0.27326598444005523,-0.2948093149358571,-0.31404682698345876,-0.2432926714814026,5.174864714626636,5.174864714626636,5.69765842334759,5.69765842334759,5.102007369077967,5.102007369077967,21.217411049426232,21.217411049426232,11.723006581153925,11.723006581153925,5.2778219701417015,7.208509835513198,7.535782400018903,7.957373800330473,5.665382897835826,5.0394146946538,6.550761014463106,6.8058107802698515,7.0501342807329195,6.228438666639278,202.395629173136,202.395629173136,0.0,224.88403241459554,0.0,202.395629173136,224.88403241459554,0,0
+2017/03/22 17:00:00,210.51437388315574,0,1023.2095494627437,0,0,0,0.3662351756014076,0.0,17.48022705469545,0.0,133.89528835348938,0,39.380909295966944,8.181668445733833e-05,18.53363838610448,0,0,0.03298861163824525,561.8019781880315,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1439.7605490268488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05447643431153116,0.0017235964084097038,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.05359274194731819,-0.05359274194731819,-0.3341104224665371,-0.3341104224665371,-0.17176261311260396,-0.17176261311260396,0.8793845077677134,0.8793845077677134,0.49957567825860044,0.49957567825860044,-0.13354602135302485,-0.3344438143039321,-0.3560982620887928,-0.33294673179185963,-0.23006580283805686,-0.12019234084015319,-0.28838469997931016,-0.29868162055930675,-0.31698828661175443,-0.13474027817171652,5.059463262929981,5.059463262929981,7.321645987800466,7.321645987800466,5.611510217096381,5.611510217096381,21.325467264160324,21.325467264160324,10.216089239422132,10.216089239422132,5.369476700377007,7.326301850243297,7.638824103192249,7.305431864410579,6.0982101880785535,5.29923603063115,6.727700530769113,6.853732396039234,7.088872363503583,5.376119756699126,210.51437388315574,210.51437388315574,0.0,233.90485987017303,0.0,210.51437388315574,233.90485987017303,0,0
+2017/03/22 18:00:00,196.65339744498502,0,1025.55962203363,0,0,0,0.3770836379463752,0.0,19.950740305062688,0.0,110.93442390708215,0,39.380909295966944,4.953922581082078e-05,26.01019075970102,0,0,0.019984338411166147,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1484.0046930271787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05460155391591956,0.0017275551054769943,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.10849982104952115,-0.10849982104952115,-0.4028826019929949,-0.4028826019929949,-0.1990708270999779,-0.1990708270999779,0.8827251569869804,0.8827251569869804,0.4700326657698801,0.4700326657698801,-0.09327247763054776,-0.2950815453040143,-0.32265926021692215,-0.3031436871244044,-0.14204334942603777,-0.05361164077277397,-0.26115114784533294,-0.2524701868345859,-0.2817090788338079,-0.1564960448778744,5.243818680654442,5.243818680654442,8.382233919799418,8.382233919799418,5.821771753281141,5.821771753281141,21.450391290965612,21.450391290965612,9.613087958030079,9.613087958030079,5.180159321067194,6.8091590524207675,7.1645918988080695,6.909738591379096,5.4180340166739,5.059505213708363,6.41593035748032,6.323116167373627,6.648384637733514,5.507526251611125,196.65339744498502,196.65339744498502,0.0,218.50377493887223,0.0,196.65339744498502,218.50377493887223,0,0
+2017/03/22 19:00:00,207.373770702815,0,990.0708257242452,0,0,0,0.276014684142999,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,5.337488454834263e-05,27.0977424753112,0,0,0.02154054157082271,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1077.9239865500808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0527121041136199,0.0016677742307873898,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.174800164860951,-0.174800164860951,-0.4613052104871882,-0.4613052104871882,-0.24310072272415387,-0.24310072272415387,0.8753494041658503,0.8753494041658503,0.4456461417173409,0.4456461417173409,-0.10667791424870651,-0.24696172996499843,-0.3035581577632029,-0.26234068218756984,-0.10997117628842612,-0.03733641159204018,-0.2516941013163873,-0.2700816036223296,-0.2225421775472543,-0.15693578072070127,5.633358972856598,5.633358972856598,9.442154377832068,9.442154377832068,6.226496261399873,6.226496261399873,21.175185051917268,21.175185051917268,9.143680616164161,9.143680616164161,5.235695027517224,6.265864888981099,6.91498360621965,6.428895513687465,5.250479886295224,5.028858460808777,6.314972847282974,6.514721893736052,6.0274094729370375,5.510385507939986,207.373770702815,207.373770702815,0.0,230.41530078090554,0.0,207.373770702815,230.41530078090554,0,0
+2017/03/22 20:00:00,208.41358926703379,0,954.5799609123592,0,0,0,0.15890404137842776,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,5.208388472624137e-05,23.78287917806762,0,0,0.021028242228859097,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,614.9863852207518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050822544182714924,0.0016079898717054788,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.22168226487055792,-0.22168226487055792,-0.4969537852922241,-0.4969537852922241,-0.2753801616322718,-0.2753801616322718,0.8661081362669667,0.8661081362669667,0.42648574457658844,0.42648574457658844,-0.11227535577975012,-0.2274139631926366,-0.2939921230841807,-0.24101902681059403,-0.0729986668238991,-0.05756641220982079,-0.24956959565710565,-0.2681304621776776,-0.17982724231704247,-0.13011879382031594,6.019468424473658,6.019468424473658,10.161050282546086,10.161050282546086,6.57492419449423,6.57492419449423,20.833531426494886,20.833531426494886,8.792809768339055,8.792809768339055,5.261092166746948,6.07298431080892,6.795778612003829,6.205530158025681,5.110335264386904,5.068609411696471,6.292810346110343,6.49285100497319,5.670364045091873,5.350742131666763,208.41358926703379,208.41358926703379,0.0,231.57065474114864,0.0,208.41358926703379,231.57065474114864,0,0
+2017/03/22 21:00:00,195.33331774911807,0,919.1854791427577,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.0002891639145897503,25.725074602886746,0,0,0.1168989851715974,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.141361508412327,0.0,0.0,0.0,22.47349944000492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048938115756372726,0.0015483678698509805,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.36222034395684516,-0.36222034395684516,-0.43601985581877195,-0.43601985581877195,-0.40014326108869674,-0.40014326108869674,0.8420368852364298,0.8420368852364298,0.29677886080336513,0.29677886080336513,-0.14102553795705483,-0.3282128616332022,-0.34882045077877905,-0.336516010069964,-0.07063472807724978,-0.1397467349917967,-0.3124198935915712,-0.31157522991566516,-0.29163974642977114,-0.13857829931358326,7.730796071113815,7.730796071113815,8.965430124760402,8.965430124760402,8.33612852923838,8.33612852923838,19.960203659101666,19.960203659101666,6.8301056549443615,6.8301056549443615,5.412059428329911,7.240065532038173,7.531564895306573,7.3553461608342445,5.103303361390232,5.404613922911025,7.028865470536303,7.0178674258438605,6.767057400693901,5.397870497945291,195.33331774911807,195.33331774911807,0.0,217.0370197212423,0.0,195.33331774911807,217.0370197212423,0,0
+2017/03/22 22:00:00,139.11741308552925,0,747.608963637195,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.015811097646179044,20.774662980720453,0,0,6.690311968783343,581.212065361963,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1059.1587322731662,0.0,561.7933920178758,0.0,1061.2702342228463,0.0,0.0,0.0,0.0,0.0,759.3847260146944,0.0,0.0,0.0,644.037750280494,0.0,0.0,0,0,0,0,0,0,0,0,0.03980325498298769,0.0012593472425042969,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3941913118154446,-0.3941913118154446,-0.4646258835446436,-0.4646258835446436,-0.45965842414940744,-0.45965842414940744,0.630463776236831,0.630463776236831,0.026731262689646842,0.026731262689646842,-0.18240001286043248,-0.37003186142534855,-0.39355862276148107,-0.37644241411105117,-0.1287412179934123,-0.20731158672969408,-0.3691588271251514,-0.3772128812123112,-0.361202739604943,-0.2114527669382961,8.237058724631169,8.237058724631169,9.506805446129533,9.506805446129533,9.410268804201394,9.410268804201394,13.342162274068912,13.342162274068912,5.01479223234027,5.01479223234027,5.689710682456052,7.8504665476616395,8.226616732747303,7.950617941532073,5.34334939514865,5.891343859508922,7.836962801619748,7.962772870473174,7.715398021768394,5.9273783589867435,139.11741308552925,139.11741308552925,0.0,154.57490342836584,0.0,139.11741308552925,154.57490342836584,0,0
+2017/03/22 23:00:00,90.7827265660761,0,593.3327341014991,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.04805995116657264,11.791710353616958,0,0,22.63737392366527,517.4598314090176,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1939.804933769679,0.0,948.3920517899566,0.0,1932.7311205932783,0.0,511.32282507285987,0.0,0.0,0.0,1747.3911000226385,0.0,500.8329934099275,0.0,1639.925545067113,0.0,188.79524257819034,0,0,0,0,0,0,0,0,0.03158947424907551,0.0009994689455607843,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5059703172434328,-0.5059703172434328,-0.6403152353864573,-0.6403152353864573,-0.5964772757018235,-0.5964772757018235,0.4062008537052836,0.4062008537052836,-0.2824828525029188,-0.2824828525029188,-0.2790214851454796,-0.3954241865538876,-0.42142787113617786,-0.40123288702272364,-0.2253382730112838,-0.30934975451344804,-0.4102087930951589,-0.41858547375777766,-0.40725492842351996,-0.2746756384512054,10.351571728881154,10.351571728881154,13.607521725206936,13.607521725206936,12.459024139751321,12.459024139751321,8.438512993774737,8.438512993774737,6.657481816654794,6.657481816654794,6.616983082617963,8.25745543668063,8.702817891628328,8.354429382998035,6.0534448696598275,6.989034976727979,8.50711806338036,8.652726282700286,8.456489234624883,6.566851184989559,90.7827265660761,90.7827265660761,0.0,100.86969618452899,0.0,90.7827265660761,100.86969618452899,0,0
+2017/03/23 00:00:00,39.341108248014855,0,547.1546157424757,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.578564836543127e-09,9.543787249013112,0,0,0.0,493.91908697365955,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02913091702320098,0.000921681908689869,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.34541283818406654,-0.34541283818406654,-0.5311295625648337,-0.5311295625648337,-0.4650117847260898,-0.4650117847260898,0.3719624714787592,0.3719624714787592,0.054052689300408234,0.054052689300408234,-0.24249794026955881,-0.43639324847798433,-0.5330008619148838,-0.4466949684305586,0.013473506565545064,-0.26916055230476965,-0.43105189401219424,-0.4873199189135381,-0.4257852878054971,-0.09099490988447885,7.482118374758571,7.482118374758571,10.901785134053071,10.901785134053071,9.514349464651772,9.514349464651772,7.880443838818522,7.880443838818522,5.060488436300275,5.060488436300275,6.220406528952623,8.972270030618148,10.943803676560208,9.163342432850385,5.003757903762619,6.504377588636132,8.874995490050807,9.961365351226277,8.780281467321146,5.171465125646733,39.341108248014855,39.341108248014855,0.0,43.71234249779428,0.0,39.341108248014855,43.71234249779428,0,0
+2017/03/23 01:00:00,23.722143396872404,0,51.493542188621916,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525047973194614,0,0,0.0,16.00318967607778,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0027415543277322205,8.674086790844005e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.32971436998798254,-0.32971436998798254,-0.5120860621370326,-0.5120860621370326,-0.46003681172677585,-0.46003681172677585,0.31449418491620196,0.31449418491620196,0.27213474740801036,0.27213474740801036,-0.2662869426164159,-0.469702573747918,-0.5715477723860349,-0.4828710315634266,0.11301527310003004,-0.3073848249740917,-0.48644318157042316,-0.5518856458241547,-0.48167410352391005,-0.047949793596091576,7.260695727630562,7.260695727630562,10.482799094601631,10.482799094601631,9.417584925361595,9.417584925361595,7.056002213609261,7.056002213609261,6.537909342157235,6.537909342157235,6.472333811430161,9.606563147933187,11.8431022480557,9.870503941212746,5.264546758143339,6.963752311633314,9.943391808789698,11.376337042335436,9.8462044078545,5.047599141524628,23.722143396872404,23.722143396872404,0.0,26.357937107636005,0.0,23.722143396872404,26.357937107636005,0,0
+2017/03/23 02:00:00,28.397163078540828,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5777999920679331,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.33881288803356635,-0.33881288803356635,-0.518876481627434,-0.518876481627434,-0.4729476665648615,-0.4729476665648615,0.25862210042113815,0.25862210042113815,0.35793554398070104,0.35793554398070104,-0.31137446467205754,-0.521429203549615,-0.6292090976107242,-0.5343456628312406,0.13776253958523277,-0.3527569022597425,-0.5425137995727716,-0.613957795833343,-0.5369714791393251,-0.03735637127679229,7.387752721961405,7.387752721961405,10.630398350113893,10.630398350113893,9.670911594143888,9.670911594143888,6.388563273297493,6.388563273297493,7.6662579828770845,7.6662579828770845,7.015257780808696,10.686401284043285,13.308668427365149,10.974093768223824,5.393196156761235,7.589299888875402,11.15975457998529,12.906994035064272,11.03346304825665,5.028889325896387,28.397163078540828,28.397163078540828,0.0,31.552403420600918,0.0,28.397163078540828,31.552403420600918,0,0
+2017/03/23 03:00:00,23.72187797981568,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5247825561378908,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.32949547335274715,-0.32949547335274715,-0.5057374874187042,-0.5057374874187042,-0.46397031734740535,-0.46397031734740535,0.23523282297407114,0.23523282297407114,0.39968781849150076,0.39968781849150076,-0.3061221118127138,-0.5221437329935936,-0.6333106556971099,-0.5371216383013095,0.1634774096951979,-0.36980557174842965,-0.564847484455188,-0.6407676304491822,-0.5609168909594057,-0.0110038480826168,7.25768220949206,7.25768220949206,10.346607784680657,10.346607784680657,9.494004426348852,9.494004426348852,6.148209372815899,6.148209372815899,8.32849417933879,8.32849417933879,6.9475912647972535,10.702127515193965,13.418413465734332,11.03686715042599,5.553872166607647,7.846963269706123,11.682158817143417,13.61980855793243,11.588650686303396,5.002506526900376,23.72187797981568,23.72187797981568,0.0,26.3576421997952,0.0,23.72187797981568,26.3576421997952,0,0
+2017/03/23 04:00:00,41.224658591988415,0,243.13224416600042,0,0,0,0.05069906054364882,0.00166763034149911,4.633261998087618,9.319298099999997,25.555573451546493,0,0.6539473938715991,0.485211317063457,0.5249996405341014,0,0,154.4063628846401,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,160.04991920512805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.22304589305937,0.0,632.9624517892554,0.8733229175815418,1595.1786411431867,0.0,669.4791233551435,0.0,0.0,0.0,86.47955599886461,0.0,569.7496015755657,0.7943074239175681,1296.8157909727242,0.0,550.2611702469189,0.0,0.0,0,0,0,0,0,0,0,0,0.012944540769071998,0.0004095562468442033,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3269538361485263,-0.3269538361485263,-0.5027565781017308,-0.5027565781017308,-0.46004857336028687,-0.46004857336028687,0.20553568203343064,0.20553568203343064,0.5283530864274232,0.5283530864274232,-0.3764593355836409,-0.47645577192801575,-0.5227664352071262,-0.48289159377619734,0.20052617383730198,-0.4196696595713036,-0.5074873675958862,-0.5344779311171641,-0.5051336279233524,-0.010176211280078062,7.222840682811068,7.222840682811068,10.283261693167873,10.283261693167873,9.417812435255541,9.417812435255541,5.876110723790731,5.876110723790731,10.839720964609953,10.839720964609953,7.950884623537121,9.740986113738074,10.715850720536565,9.870921926761824,5.833851884422273,8.671792036121218,10.383972705629319,10.977077189815162,10.333744388890366,5.0021436559639625,41.224658591988415,41.224658591988415,0.0,45.80517621332046,0.0,41.224658591988415,45.80517621332046,0,0
+2017/03/23 05:00:00,73.61811816596372,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.3070623477644396,0.0,0.5250127882434105,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.13094743401373543,-0.13094743401373543,-0.30610724554273666,-0.30610724554273666,-0.2592392554034648,-0.2592392554034648,0.3621911258931795,0.3621911258931795,0.8319570754221808,0.8319570754221808,-0.3679976839043103,-0.5783685847689684,-0.650046702155807,-0.5884514868844878,0.32597917692422373,-0.41181128495467284,-0.5809509274664683,-0.6165735870639916,-0.5764880619999276,0.0972614580872931,5.355227026639497,5.355227026639497,6.947401398132342,6.947401398132342,6.39521674463559,6.39521674463559,7.730353338133952,7.730353338133952,19.601666014722028,19.601666014722028,7.819053044944482,12.008941147922911,13.873781533020733,12.257791044264295,7.209552444898705,8.534740913933291,12.07225411852518,12.975169135358499,11.963017224779023,5.1959051857973435,73.61811816596372,73.61811816596372,0.0,81.79790907329303,0.0,73.61811816596372,81.79790907329303,0,0
+2017/03/23 06:00:00,100.00201200367388,0,712.9445645807406,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.6312315782693533,2.5202771461888247e-09,0.5250767744912481,0,0,0.0,482.25727324920376,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.037957696701070576,0.0012009550649246827,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.04575165677535925,-0.04575165677535925,-0.21991894924471156,-0.21991894924471156,-0.16926327516627654,-0.16926327516627654,0.426665255406363,0.426665255406363,0.910371605323297,0.910371605323297,-0.373306962056723,-0.5788609589942122,-0.667564903217861,-0.5899049151938537,0.4296061572038737,-0.4069363157433541,-0.5869745338861898,-0.6359078703932494,-0.5802445003359616,0.20496816077742583,5.043334648536899,5.043334648536899,6.003281635941491,6.003281635941491,5.593821422565142,5.593821422565142,8.796023870440052,8.796023870440052,22.50172052249576,22.50172052249576,7.901414120836208,12.020990680870511,14.363437295431808,12.294026021280104,8.848876984381292,8.451050582194512,12.221063492588343,13.4882842952713,12.054905435887065,5.871270536396352,100.00201200367388,100.00201200367388,0.0,111.11334667074875,0.0,100.00201200367388,111.11334667074875,0,0
+2017/03/23 07:00:00,150.1909235858247,0,903.0027240243928,0,0,0,0.0,0.0,10.843536854875632,0.0,69.33401494192633,0,39.380909295966944,0.11719752852319021,27.083289762078316,0,0,37.16967263562286,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1652.7412645254599,0.0,3625.0419439258203,0.0,3404.275756415842,0.0,3065.1577646144638,0.0,2024.3926093125017,0.0,1487.6008665391653,0.0,3341.5588186359605,0.0,2808.4496555972946,0.0,3226.498759762752,0.0,1859.0996336926692,0,0,0,0,0,0,0,0,0.04807653388719638,0.0015211080200823453,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.34257030025873453,-0.34257030025873453,-0.46022251660106755,-0.46022251660106755,-0.4525609447309942,-0.4525609447309942,0.21883530470726612,0.21883530470726612,0.43868514466266123,0.43868514466266123,-0.3910480060276378,-0.5057872215594726,-0.5362349821078612,-0.5728817671040162,0.045686066494582796,-0.41893709718457456,-0.5264537896726789,-0.533300753832255,-0.5212971189988704,-0.09369090468724126,7.441249038164827,7.441249038164827,9.421177783088538,9.421177783088538,9.274181137379003,9.274181137379003,5.993398694760444,5.993398694760444,9.014384799921388,9.014384799921388,8.185349825818122,10.3476679223686,11.016780833797355,11.875377764532686,5.04321047554528,8.65890417085231,10.797457145251059,10.950551610800147,10.683496626728385,5.181779994437278,150.1909235858247,150.1909235858247,0.0,166.87880398424966,0.0,150.1909235858247,166.87880398424966,0,0
+2017/03/23 08:00:00,165.77849089606366,0,1005.0722571897599,0,0,0,0.0,0.0,12.503018240070961,0.0,83.2008179303116,0,39.380909295966944,0.16402775194864133,27.097742475311204,0,0,86.0036770321739,599.655407544689,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2660.568158763249,0.0,4380.091310866467,0.0,4286.604652076163,0.0,4318.845144623962,0.0,531.5689511620528,0.0,2457.233682118743,0.0,4410.886412128683,0.0,3760.7278470255324,0.0,4268.976013236117,0.0,298.8795112471826,0,0,0,0,0,0,0,0,0.053510791436504196,0.0016930441409524599,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4915497131853332,-0.4915497131853332,-0.5376854628667258,-0.5376854628667258,-0.5787296090750418,-0.5787296090750418,0.10439977700516362,0.10439977700516362,-0.0639224688095562,-0.0639224688095562,-0.4164997077002144,-0.57602353821664,-0.5295634941920522,-0.5812094648629367,-0.20647983100290124,-0.44418510737006406,-0.5386927012351956,-0.5299815884864787,-0.530052496656035,-0.2595685215022724,10.04854442094404,10.04854442094404,11.049657749924435,11.049657749924435,12.0177752166163,12.0177752166163,5.22573103444077,5.22573103444077,5.084599432507005,5.084599432507005,8.616189148022613,11.95169680113301,10.866736866890719,12.07860878227082,5.884192896512374,9.116370187529185,11.072541655395824,10.876083334133469,10.877669231761004,6.398773078034864,165.77849089606366,165.77849089606366,0.0,184.1983232178485,0.0,165.77849089606366,184.1983232178485,0,0
+2017/03/23 09:00:00,181.52903999231975,0,1088.0434453939374,0,0,0,0.0,0.0,11.346097261187438,0.0,106.27511244621549,0,39.380909295966944,0.21362327589772945,20.881322510597904,0,0,134.204802073453,581.1899419387711,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2584.078353728488,0.0,4807.570079111214,0.0,4218.831028906157,0.0,4689.632289402976,0.0,41.335043769774224,0.0,2381.2225177114437,0.0,4523.0807988781235,0.0,3670.4696588806,0.0,4314.28958627212,0.0,18.084845326515634,0,0,0,0,0,0,0,0,0.05792823895380685,0.0018328091011849904,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4235085341572622,-0.4235085341572622,-0.5136353490151656,-0.5136353490151656,-0.528009968463362,-0.528009968463362,0.12960569956623705,0.12960569956623705,-0.08648324062273702,-0.08648324062273702,-0.408909872007202,-0.536058909250409,-0.5207351539751174,-0.530727135397081,-0.22664858949157832,-0.4297764470129884,-0.5310548809149631,-0.5196034609672463,-0.5103312087153271,-0.2727925988859893,8.73970508499879,8.73970508499879,10.516299380752926,10.516299380752926,10.832074224396393,10.832074224396393,5.3479793979145,5.3479793979145,5.154878108207072,5.154878108207072,8.484808707054043,11.01279613053697,10.671146953266756,10.892768763435384,6.065758464443846,8.85194875765103,10.90011136359955,10.64631848106852,10.444979222291536,6.545376449483868,181.52903999231975,181.52903999231975,0.0,201.69893332479973,0.0,181.52903999231975,201.69893332479973,0,0
+2017/03/23 10:00:00,212.16545146512928,0,1115.9308916021773,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.11994045876014733,18.539040720998077,0,0,92.81378029269551,561.7425286464083,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1678.4858282259988,0.0,4965.89017862015,0.0,3371.264274228873,0.0,4809.257700728083,0.0,4.230832977028611,0.0,1343.416177924934,0.0,4639.1046619897625,0.0,2687.694486108113,0.0,4383.679237062837,0.0,0.0,0,0,0,0,0,0,0,0,0.05941298724635087,0.0018797855022061494,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4334183359358289,-0.4334183359358289,-0.45944113212393956,-0.45944113212393956,-0.4578846540048936,-0.4578846540048936,0.19835941523523679,0.19835941523523679,-0.0643803701140897,-0.0643803701140897,-0.40945892529724026,-0.5311451120829175,-0.5201786120067416,-0.521797625170117,-0.2592728223831041,-0.4244704818106074,-0.5350680227718954,-0.516789088269385,-0.5115358305924091,-0.2946861438969726,8.91794099521924,8.91794099521924,9.406070250998098,9.406070250998098,9.376055150801633,9.376055150801633,5.815898897967585,5.815898897967585,5.085816035803376,5.085816035803376,8.494230043972735,10.90213366133797,10.658929925612298,10.69450719488222,6.395579085636442,8.756821819387383,10.990396430787598,10.584813588861664,10.470926400165226,6.804296878375197,212.16545146512928,212.16545146512928,0.0,235.73939051681032,0.0,212.16545146512928,235.73939051681032,0,0
+2017/03/23 11:00:00,228.3735857389617,0,1227.2910407538277,0,0,0,0.0,0.0,16.903073633821148,0.0,147.76209134187457,0,39.380909295966944,0.16179277405235065,20.733743490792307,0,0,131.49029257935754,581.1906367425802,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1284.6154377269029,0.0,3725.517561975997,0.0,3390.9526211184716,0.0,3513.9896030250525,0.0,0.0,0.0,1045.392033986559,0.0,3470.7385306080746,0.0,2886.092849606439,0.0,3151.2116331209036,0.0,0.0,0,0,0,0,0,0,0,0,0.06534188407238962,0.0020673716650000127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.36010333163316216,-0.36010333163316216,-0.44725290852376653,-0.44725290852376653,-0.5232447524636695,-0.5232447524636695,0.3398336041010555,0.3398336041010555,0.017555454548967307,0.017555454548967307,-0.3821286234706615,-0.5183939762036502,-0.5132499027795738,-0.5030564079528147,-0.2661444968458513,-0.3856355124759627,-0.5238674087955147,-0.5051119678133806,-0.49605151205129705,-0.293209841481029,7.698811708246922,7.698811708246922,9.173821124327915,9.173821124327915,10.72640334511972,10.72640334511972,7.402225876121122,7.402225876121122,5.006379857896562,5.006379857896562,8.040920317404883,10.619844582870101,10.507955161361977,10.289615882385249,6.470754438172747,8.097301178810923,10.740155210905257,10.33328327876255,10.142178387252201,6.786201446415802,228.3735857389617,228.3735857389617,0.0,253.74842859884635,0.0,228.3735857389617,253.74842859884635,0,0
+2017/03/23 12:00:00,207.6766270617927,0,1095.789239374672,0,0,0,0.0,0.0,16.798297433460366,0.0,129.49988082968767,0,39.380909295966944,0.06537077047372357,18.500193529749662,0,0,54.9238382529115,561.7456422024148,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2498.069452113886,0.0,3562.442557810332,0.0,2351.9205730618614,0.0,0.0,0.0,0.0,0.0,2036.5784296524143,0.0,2776.0189495146064,0.0,1795.233190563319,0.0,0.0,0,0,0,0,0,0,0,0,0.0583406307627024,0.0018458568905576418,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.23118847020012911,-0.23118847020012911,-0.4221973455418917,-0.4221973455418917,-0.5867343024346563,-0.5867343024346563,0.4059699087733307,0.4059699087733307,0.023932351792396944,0.023932351792396944,-0.27733717412840353,-0.5003812874312669,-0.505499243389294,-0.4919703187367357,-0.2306730329978848,-0.20628385133976226,-0.49685253038683996,-0.48662325757000474,-0.4798213499203192,-0.29203420401768193,6.108978539721349,6.108978539721349,8.716437940743575,8.716437940743575,12.215098581816946,12.215098581816946,8.434580800814942,8.434580800814942,5.011856670846569,5.011856670846569,6.59745905670114,10.233060294845231,10.341530835195826,10.057255627149303,6.104028026824409,5.882512189251344,10.158930688882762,9.947080746955166,9.808712466514862,6.771857197192816,207.6766270617927,207.6766270617927,0.0,230.75180784643632,0.0,207.6766270617927,230.75180784643632,0,0
+2017/03/23 13:00:00,205.2814268816226,0,1046.191067029892,0,0,0,0.0,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,0.06775872004699669,16.32946562230644,0,0,61.29039310387899,541.2712675192114,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2769.712358111507,0.0,3616.534311632142,0.0,2848.068074263337,0.0,0.0,0.0,0.0,0.0,2299.217523996315,0.0,2832.507280252305,0.0,2309.1205710885224,0.0,0.0,0,0,0,0,0,0,0,0,0.05569998732936941,0.001762308773007298,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3316937233486263,-0.3316937233486263,-0.44495016375867097,-0.44495016375867097,-0.6300861761799912,-0.6300861761799912,0.4111267824848612,0.4111267824848612,-0.008644517959687757,-0.008644517959687757,-0.3030739638829375,-0.4791674639610075,-0.5098228309469963,-0.4936395766725381,-0.24773174231977363,-0.21161553112871392,-0.4714138847242588,-0.4928044241274049,-0.48374196668029046,-0.3061159522370171,7.288037506937144,7.288037506937144,9.13065958094036,9.13065958094036,13.332074995860395,13.332074995860395,8.522928388026585,8.522928388026585,5.0015469057557596,5.0015469057557596,6.908856976350933,9.795515918546627,10.434047754421869,10.091903130028712,6.273791210342395,5.928809315412877,9.640440954368387,10.074553469381954,9.888224157537692,6.947512595772537,205.2814268816226,205.2814268816226,0.0,228.09047431291398,0.0,205.2814268816226,228.09047431291398,0,0
+2017/03/23 14:00:00,189.51563411242057,0,1087.1015863613677,0,0,0,0.0,0.0,16.965686943773743,0.0,115.5196477718057,0,39.380909295966944,0.15957589162939395,14.057839006790534,0,0,139.3302187504702,539.63231371664,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.00945455612955,0.0,3636.7626533941457,0.0,2968.4793145580747,0.0,3721.7967219787397,0.0,138.97979482654767,0.0,0.0,0.0,3275.3111642054746,0.0,2375.4918797524924,0.0,3311.647038766023,0.0,0.0,0,0,0,0,0,0,0,0,0.05787809368127157,0.0018312225397161125,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.521595421725813,-0.521595421725813,-0.4660055170298316,-0.4660055170298316,-0.5718765279139544,-0.5718765279139544,0.36648752115201855,0.36648752115201855,-0.0775252695282766,-0.0775252695282766,-0.3711509062758047,-0.5054791604421303,-0.5251117551264106,-0.5179689236845889,-0.2991134841033169,-0.3077832197259875,-0.5057486393754682,-0.5152225083775073,-0.5160987886713059,-0.3344316344427318,10.690057643208789,10.690057643208789,9.533805562081596,9.533805562081596,11.851049199910307,11.851049199910307,7.795845896751203,7.795845896751203,5.124446950144687,5.124446950144687,7.867823006426377,10.341102982322312,10.76768787991793,10.610555819893975,6.859116193164752,6.968865234669963,10.346845491554475,10.550726246520625,10.56978021797616,7.326131673781248,189.51563411242057,189.51563411242057,0.0,210.5729267915784,0.0,189.51563411242057,210.5729267915784,0,0
+2017/03/23 15:00:00,182.47236672121608,0,1005.7124573391909,0,0,0,0.0,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,0.08819320414925604,14.079213763200222,0,0,77.90421962454349,519.66918382039,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.97437801170461,0.0,4023.612733646734,0.0,2734.6221515402535,0.0,4403.807247128492,0.0,0.0,0.0,0.0,0.0,3588.2488132993008,0.0,2083.4757977206027,0.0,3957.9747028698444,0.0,0.0,0,0,0,0,0,0,0,0,0.053544876166660434,0.0016941225580555865,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5869379319409588,-0.5869379319409588,-0.3798784796698785,-0.3798784796698785,-0.5189015534052598,-0.5189015534052598,0.33282559537884204,0.33282559537884204,-0.12724025412417592,-0.12724025412417592,-0.3831198353191059,-0.4879035539354187,-0.5332681378033869,-0.5330409361183507,-0.33060067181256814,-0.3200307462440919,-0.4814901977643109,-0.5244186925244336,-0.5329720093371803,-0.3575056274901231,12.22015451007826,12.22015451007826,8.00502091226005,8.00502091226005,10.630947016592955,10.630947016592955,7.303747330019405,7.303747330019405,5.335384327046995,5.335384327046995,8.056802962178395,9.97334854892172,10.949817521561698,10.944705169594656,7.272918096093477,7.129326208878382,9.84247630824963,10.752344761583416,10.943154663733566,7.659825688852294,182.47236672121608,182.47236672121608,0.0,202.7470741346845,0.0,182.47236672121608,202.7470741346845,0,0
+2017/03/23 16:00:00,205.54018655596454,0,1196.2389149161806,0,0,0,0.0,0.0,16.798297266846703,0.0,131.64086955684016,0,39.380909295966944,0.25127904023796876,14.03685619361841,0,0,195.23848189840612,539.6258503547006,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,331.49332055306365,0.0,3319.2264328770184,0.0,2792.87146564082,0.0,4252.403415608814,0.0,0.0,0.0,0.0,0.0,2801.190588074555,0.0,2152.6670604528395,0.0,3813.994442017161,0.0,0.0,0,0,0,0,0,0,0,0,0.06368864589227667,0.0020150643613833126,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6159802654097744,-0.6159802654097744,-0.27229520582220684,-0.27229520582220684,-0.5290428293350239,-0.5290428293350239,0.3450724152134795,0.3450724152134795,-0.09643320504609124,-0.09643320504609124,-0.4033640722668768,-0.4433600545646578,-0.5399167366837995,-0.5431608709489646,-0.3379676603521855,-0.36657429016362547,-0.4279288790833705,-0.5320895734040083,-0.5447148985480084,-0.3618562227282537,12.959679415288932,12.959679415288932,6.539728983728935,6.539728983728935,10.855108024207738,10.855108024207738,7.477205752826876,7.477205752826876,5.192581465493461,5.192581465493461,8.390370646092379,9.100988406834716,11.100410232260714,11.174586003218067,7.375801383922365,7.797176671789188,8.818687902656109,10.923322472823173,11.210279742002896,7.725281243043156,205.54018655596454,205.54018655596454,0.0,228.3779850621828,0.0,205.54018655596454,228.3779850621828,0,0
+2017/03/23 17:00:00,212.3835499955822,0,1117.6068962399263,0,0,0,0.0,0.0,16.957216997845705,0.0,133.89528835348938,0,39.380909295966944,0.13621224930620734,18.58194789651969,0,0,94.47676607283613,561.7555475040162,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1954.4708474453314,0.0,3012.865369942645,0.0,4049.374218578061,0.0,4159.113264403535,0.0,0.0,0.0,1238.9835067850904,0.0,2402.6588215426045,0.0,3314.14124609541,0.0,3643.6991583175136,0.0,0.0,0,0,0,0,0,0,0,0,0.059502218974692433,0.0018826087318912308,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5534428008009704,-0.5534428008009704,-0.4744433596936523,-0.4744433596936523,-0.5486548946326056,-0.5486548946326056,0.3185049828188912,0.3185049828188912,-0.05925291769898241,-0.05925291769898241,-0.4298356210740686,-0.4409101209982607,-0.547162782498319,-0.5494904666901907,-0.32897482560437113,-0.4234045904244791,-0.42869316833273613,-0.5431202323932612,-0.5535450443983513,-0.3518080972398442,11.412691570830361,11.412691570830361,9.700723222243084,9.700723222243084,11.301244734288389,11.301244734288389,7.1089899804049,7.1089899804049,5.072688997402921,5.072688997402921,8.853016460565755,9.055485783279138,11.266716318858087,11.320622548929919,7.250522695502525,8.737857904087562,8.832429257621456,11.173653999202017,11.41508230553437,7.575323703045399,212.3835499955822,212.3835499955822,0.0,235.98172221731355,0.0,212.3835499955822,235.98172221731355,0,0
+2017/03/23 18:00:00,198.73467263516304,0,1121.8089130984224,0,0,0,0.0,0.0,19.36824075680029,0.0,110.93442390708215,0,39.380909295966944,0.1240213497360927,25.49510212312324,0,0,96.26927540320372,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2742.8774990063043,0.0,2209.085995645986,0.0,4564.834909568235,0.0,3225.088552934807,0.0,0.0,0.0,2241.656290456961,0.0,1734.5153784155852,0.0,3971.7468614356894,0.0,2812.6353096752555,0.0,0.0,0,0,0,0,0,0,0,0,0.059725937464700674,0.0018896870289704401,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4910334771116364,-0.4910334771116364,-0.5294767840234383,-0.5294767840234383,-0.6514803500655068,-0.6514803500655068,0.30638659311601585,0.30638659311601585,-0.053073315985650814,-0.053073315985650814,-0.4396388061644682,-0.44693138842973357,-0.5414553551965425,-0.5424450898350891,-0.3107441639541274,-0.4480816397191237,-0.44249004507857803,-0.5414564853152201,-0.5509274030198966,-0.3332182151368537,10.037863042734799,10.037863042734799,10.864799415095504,10.864799415095504,13.913354152403556,13.913354152403556,6.9509706879977955,6.9509706879977955,5.058316056819095,5.058316056819095,9.031975309527368,9.167781010339311,11.13553324975517,11.158180760226344,7.0070759107561855,9.189410262244735,9.084800177799835,11.13555908538568,11.354017420012482,7.309209399475165,198.73467263516304,198.73467263516304,0.0,220.81630292795893,0.0,198.73467263516304,220.81630292795893,0,0
+2017/03/23 19:00:00,210.65721344229505,0,1099.3272697386399,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.12753559605332151,27.097742475311204,0,0,109.27798455596546,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2943.9124598387125,0.0,2708.017362476096,0.0,4678.377428573771,0.0,3315.825098012757,0.0,0.0,0.0,2590.5885470673484,0.0,2358.2978596611997,0.0,4177.301804447372,0.0,2969.9575068137333,0.0,0.0,0,0,0,0,0,0,0,0,0.05852899811992274,0.0018518167024372144,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48530180000175904,-0.48530180000175904,-0.49047594085203944,-0.49047594085203944,-0.636747571412813,-0.636747571412813,0.2643115136000083,0.2643115136000083,-0.07975048816133706,-0.07975048816133706,-0.44634529790717575,-0.480239058848158,-0.5413995923695883,-0.5398532688776317,-0.3040179089687374,-0.4588161146117301,-0.48678186186126665,-0.5456393215345071,-0.5523571966938048,-0.3282269739304228,9.92004264199727,9.92004264199727,10.026340052413659,10.026340052413659,13.510936706972956,13.510936706972956,6.450507399503053,6.450507399503053,5.1316955701803835,5.1316955701803835,9.156782082704254,9.817152208609116,11.134258525119364,11.098963615249218,6.9208101341988595,9.394004890572774,9.95033098676602,11.231562028166096,11.387335132580759,7.240258984794821,210.65721344229505,210.65721344229505,0.0,234.06357049143892,0.0,210.65721344229505,234.06357049143892,0,0
+2017/03/23 20:00:00,211.7171836810997,0,1100.954299650626,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.16070500030560225,23.652749514636803,0,0,146.39536698049554,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3420.1541253409428,0.0,3109.182620442323,0.0,5040.861339297982,0.0,3578.299178339683,0.0,0.0,0.0,3094.3601204678084,0.0,2792.923284966505,0.0,4549.016742119807,0.0,3237.367448442154,0.0,0.0,0,0,0,0,0,0,0,0,0.058615622397588774,0.001854557434200465,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4435193158722319,-0.4435193158722319,-0.4645103477632609,-0.4645103477632609,-0.664249817023777,-0.664249817023777,0.20162416667938302,0.20162416667938302,-0.12423789252864582,-0.12423789252864582,-0.4543075444824192,-0.489366923627498,-0.5433500077960182,-0.5416116384962547,-0.3009265945061771,-0.47075881074466885,-0.5004849572319089,-0.5505595663484447,-0.55683958199471,-0.32596490877518425,9.103955298285982,9.103955298285982,9.504548074102246,9.504548074102246,14.269756528130287,14.269756528130287,5.843024420564049,5.843024420564049,5.319732956179877,5.319732956179877,9.30746946766682,10.003459121225575,11.178924606374025,11.139106565843264,6.881805246959104,9.627457932670751,10.235246251427569,11.345460251995448,11.492360189162454,7.209358216053246,211.7171836810997,211.7171836810997,0.0,235.24131520122188,0.0,211.7171836810997,235.24131520122188,0,0
+2017/03/23 21:00:00,197.8071891272411,0,1125.2681609796016,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.2450231074614847,25.666228569160044,0,0,206.19958082201535,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2738.4068845284046,0.0,4099.267689543282,0.0,4221.393727531731,0.0,4485.879689952362,0.0,0.0,0.0,2577.1068132023765,0.0,3898.7847312988224,0.0,3888.1568680967844,0.0,4251.808930748048,0.0,0.0,0,0,0,0,0,0,0,0,0.05991011038418261,0.0018955141317637337,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5001927715058189,-0.5001927715058189,-0.5541377143835694,-0.5541377143835694,-0.6804390521601105,-0.6804390521601105,0.11066587812083534,0.11066587812083534,-0.20778816103176734,-0.20778816103176734,-0.4723912908891102,-0.513528135470359,-0.5568702528379037,-0.5609011872650077,-0.31810893843060645,-0.494949936309439,-0.5316858292525425,-0.5696562670491986,-0.5814891279134978,-0.3456518049880138,10.229086483291525,10.229086483291525,11.428949477088665,11.428949477088665,14.731758461095595,14.731758461095595,5.253656229834803,5.253656229834803,5.895454221835479,5.895454221835479,9.659846721521845,10.513977754741177,11.493081826675052,11.588278441966509,7.103727404433187,10.11918556856591,10.914259821999053,11.797470301018137,12.085485964994888,7.485569831965776,197.8071891272411,197.8071891272411,0.0,219.78576569693453,0.0,197.8071891272411,219.78576569693453,0,0
+2017/03/23 22:00:00,140.37553076327995,0,1010.9439402459875,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.42040777650699396,20.77019017899671,0,0,270.04804402839824,581.1893099111408,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,734.2531428436303,0.0,0.0,0.0,0.0,0.0,3095.763081788928,0.0,5091.605839838515,0.0,4439.201364390645,0.0,5417.866274303001,0.0,0.0,0.0,2972.890298341709,0.0,4917.613314607133,0.0,4153.130525514918,0.0,5214.526657291763,0.0,1944.2219799425677,0,0,0,0,0,0,0,0,0.053823404191612544,0.0017029349906150222,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6796770965890995,-0.6796770965890995,-0.7030558954977961,-0.7030558954977961,-0.7830832235029397,-0.7830832235029397,-0.11329643792289655,-0.11329643792289655,-0.4404746630804446,-0.4404746630804446,-0.49947574024118285,-0.5464864209926167,-0.5811812255321844,-0.5902933710727506,-0.34349227543539523,-0.5299875026163475,-0.5737398150526878,-0.6010234941803386,-0.6176934136196229,-0.37610232996807885,14.709759709677925,14.709759709677925,15.396167402454708,15.396167402454708,17.923819541579306,17.923819541579306,5.265865448316433,5.265865448316433,9.047425022690518,9.047425022690518,10.213985888885759,11.251096671115775,12.077914538679906,12.303726021437669,7.454467351698781,10.876215598363189,11.896178721286944,12.574253156940955,13.004445832279913,7.945260813550078,140.37553076327995,140.37553076327995,0.0,155.97281195919996,0.0,140.37553076327995,155.97281195919996,0,0
+2017/03/23 23:00:00,91.23216510015094,0,851.0106130258034,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.5088274435606783,11.7803813952977,0,0,280.4020426207874,517.3730416361998,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,990.785779681678,0.0,543.5696281929321,0.0,2141.374779809263,0.0,0.0,0.0,0.0,0.0,2867.92285767723,0.0,5636.777444805964,0.0,4063.160863161512,0.0,5926.561346897264,0.0,4449.660004535089,0.0,2882.2498069586636,0.0,5573.673668179754,0.0,3949.8490747306178,0.0,5789.306618829916,0.0,8848.748246444044,0,0,0,0,0,0,0,0,0.04530843538672824,0.0014335273130513554,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8056952893285887,-0.8056952893285887,-0.821340255107781,-0.821340255107781,-0.8676123767022619,-0.8676123767022619,-0.35326647804462996,-0.35326647804462996,-0.5815440601268071,-0.5815440601268071,-0.5252255197305459,-0.576688862059834,-0.6050036771570259,-0.6177818922858105,-0.3727369458744112,-0.5619330819987222,-0.6103475826613481,-0.6299273242019225,-0.6519951449934096,-0.4101377988190827,18.687558117945386,18.687558117945386,19.22862806939068,19.22862806939068,20.888903846297822,20.888903846297822,7.596821903303379,7.596821903303379,12.086837199596218,12.086837199596218,10.770208403516364,11.967913611380055,12.675871815628753,13.006761334457579,7.892514053771663,11.612761472585532,12.813389160316035,13.327833243103257,13.927585646221786,8.505896848672805,91.23216510015094,91.23216510015094,0.0,101.36907233350104,0.0,91.23216510015094,101.36907233350104,0,0
+2017/03/24 00:00:00,39.33973874867108,0,547.0341897986696,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.578569340272887e-09,9.542417749669328,0,0,0.0,493.7986610298533,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029124505456752447,0.000921479051196668,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7426347229223677,-0.7426347229223677,-0.7681813460125249,-0.7681813460125249,-0.8444706782054003,-0.8444706782054003,-0.3006641718047948,-0.3006641718047948,-0.22154677524612224,-0.22154677524612224,-0.6436663375600368,-0.7307380020937747,-0.8764795346491541,-0.9031732630018456,-0.14707982969881817,-0.7059996833334812,-0.7839653391448259,-0.8564534209745717,-0.8714921924853855,-0.2581207364114063,16.611934232472805,16.611934232472805,17.43237229082122,17.43237229082122,20.047409307370685,20.047409307370685,6.878512717358063,6.878512717358063,6.018220042688114,6.018220042688114,13.698746684990226,16.23941209201081,21.217207830955047,22.224992322803104,5.448232931406594,15.484271048511374,17.953207034091804,20.480360648812137,21.032154295911923,6.383169928075134,39.33973874867108,39.33973874867108,0.0,43.71082083185676,0.0,39.33973874867108,43.71082083185676,0,0
+2017/03/24 01:00:00,23.77460159768309,0,49.339639740218,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5775061740052989,0,0,0.0,13.849287227673857,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0026268789659692924,8.311261939758207e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8028896762192134,-0.8028896762192134,-0.8358684439385903,-0.8358684439385903,-0.9183492272792914,-0.9183492272792914,-0.37047958613345017,-0.37047958613345017,-0.06597802592817263,-0.06597802592817263,-0.738999202763801,-0.8220161962227529,-0.9559276660454286,-0.9601204280680662,-0.07032563259749287,-0.820270992799525,-0.8950937935501273,-0.9954479346054896,-1.0021614170168218,-0.2563835604608379,18.591619911949977,18.591619911949977,19.740288608057654,19.740288608057654,22.810852138333857,22.810852138333857,7.857404379721359,7.857404379721359,5.090128924447825,5.090128924447825,16.497450422611053,19.252237241065032,24.301227703274776,24.47097781040806,5.102401035381092,19.191320252834757,21.91689451111398,25.92837477976265,26.210747004625418,6.3645643324415175,23.77460159768309,23.77460159768309,0.0,26.416223997425657,0.0,23.77460159768309,26.416223997425657,0,0
+2017/03/24 02:00:00,28.34419701230949,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248339258365954,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7902335448554344,-0.7902335448554344,-0.8236750064598185,-0.8236750064598185,-0.906216764147979,-0.906216764147979,-0.3661888942268538,-0.3661888942268538,0.014054361900250657,0.014054361900250657,-0.7544153852365313,-0.8373629368234864,-0.9704753829622718,-0.9707172516966401,-0.04683754203627263,-0.867588570248355,-0.9417051959026139,-1.0485326898012288,-1.0564069640637304,-0.23687507814297004,18.162982989489336,18.162982989489336,19.310257287170288,19.310257287170288,22.341738634862622,22.341738634862622,7.791268312300588,7.791268312300588,5.004088904375038,5.004088904375038,16.98680445492265,19.793423818945286,24.893156906521938,24.903067974282777,5.045416302730374,20.888026782086385,23.730562908225238,28.20717700019422,28.554021520516912,6.164335455531898,28.34419701230949,28.34419701230949,0.0,31.493552235899433,0.0,28.34419701230949,31.493552235899433,0,0
+2017/03/24 03:00:00,23.7220209989423,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249255752645059,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8411141334269612,-0.8411141334269612,-0.8779445758923167,-0.8779445758923167,-0.9572764305795148,-0.9572764305795148,-0.4349613803817031,-0.4349613803817031,0.08072872708554996,0.08072872708554996,-0.8338973664259323,-0.916040529312492,-1.0511310435404624,-1.0464066186211365,-0.014421424588973842,-0.9553471106635542,-1.0294100035460467,-1.1412309285365885,-1.146393886576369,-0.24220633620143156,19.927204979492387,19.927204979492387,21.271762086510662,21.271762086510662,24.355759216576303,24.355759216576303,8.946073240120313,8.946073240120313,5.1349471496465355,5.1349471496465355,19.67035173770111,22.72112674545633,28.321381626567785,28.1139122085621,5.004305278196625,24.277777415684326,27.37424412792234,32.42714429993514,32.670631333208846,6.217466016816985,23.7220209989423,23.7220209989423,0.0,26.357801109935885,0.0,23.7220209989423,26.357801109935885,0,0
+2017/03/24 04:00:00,42.5497005684053,0,349.60236947237087,0,0,0,0.0,0.012816235297578544,4.633261998087618,9.319298099999997,25.555573451546493,0,1.4518958915927755,1.05178223357065,0.5250726583101739,0,0,260.8764881910105,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,223.67868260434759,0.0,0.0,0.0,0.0,1.4160436256387925,1938.8797154070235,0.515635013442818,1473.2074637069768,2.3972543575511054,3239.44005610248,1.8189886499663999,1962.3356930216491,0.0,0.0,1.6373367351891943,2415.445443214463,1.2526268117285895,1692.2286223328506,2.012014081806285,3445.3019246358695,1.7663360222553592,2109.4519205845713,0.0,0.0,0,0,0,0,0,0,0,0,0.018613089103514776,0.0005889051648418389,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7939374139261689,-0.7939374139261689,-0.8314514170342391,-0.8314514170342391,-0.8818852761812075,-0.8818852761812075,-0.3992547506696999,-0.3992547506696999,0.21316240963478855,0.21316240963478855,-0.6555716441401005,-0.6996392906717149,-0.7476625785458743,-0.7546027427971118,0.01699766286448585,-0.7255404816871025,-0.7706707162368056,-0.8054680153662525,-0.8220502996155217,-0.21895071251137638,18.287722941622803,18.287722941622803,19.583791751260733,19.583791751260733,21.418940758808134,21.418940758808134,8.321243117100394,8.321243117100394,5.942464206813142,5.942464206813142,14.026774995515495,15.294381872214458,16.771197282011116,16.992814341489904,5.005980877318947,16.078570828045784,17.513810644134196,18.679774082327143,19.253428908171557,5.994448883865104,42.5497005684053,42.5497005684053,0.0,47.27744507600589,0.0,42.5497005684053,47.27744507600589,0,0
+2017/03/24 05:00:00,75.59323464409849,0,292.5915032876574,0,0,0,0.12106612587037742,0.008092178228658327,5.555297838843742,9.319298099999997,57.911447091112116,0,1.2903458002598078,0.8626850456710397,0.5250024641127372,0,0,79.6493882123926,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,385.2720356166618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.592036238126127,1048.5662161128269,0.0,850.253397906854,1.6570431494303648,2062.335431836887,0.5789123531378095,1234.5183396364737,0.0,0.0,1.461700601345001,1824.2418519203957,0.5955763833664491,1310.334284311583,2.179606236450468,2763.673278801165,1.0273032668021074,1691.1924601496385,0.0,0.0,0,0,0,0,0,0,0,0,0.015577788359511976,0.0004928703650807404,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5665398526807599,-0.5665398526807599,-0.6065041638158906,-0.6065041638158906,-0.6690736232937672,-0.6690736232937672,-0.19005148414270126,-0.19005148414270126,0.5369516985230594,0.5369516985230594,-0.6200412577700053,-0.6572764963491148,-0.6902510345618359,-0.6987391332020072,0.10919933332747767,-0.6640123554235833,-0.7013965221021697,-0.7149212640364112,-0.7336406182695345,-0.08042005397778837,11.722626324213351,11.722626324213351,12.714359428861187,12.714359428861187,14.406229683350787,14.406229683350787,5.748881463339629,5.748881463339629,11.033014695288102,11.033014695288102,13.066004424939237,14.07425186785332,15.017287871910241,15.267648766782614,5.24697434180834,14.263064387120252,15.34666937310358,15.753564736139325,16.32974114428923,5.133916861914614,75.59323464409849,75.59323464409849,0.0,83.9924829378872,0.0,75.59323464409849,83.9924829378872,0,0
+2017/03/24 06:00:00,101.47012592772118,0,760.1233522490792,0,0,0,0.090992947570046,0.0038269736202354732,11.110595677687485,13.929299233552332,73.80580873715317,0,1.327705435993867,0.6768650027756802,0.5250319193683458,0,0,47.29737648867729,482.138684428865,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,290.4321269496578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,541.0230812997163,0.0,495.9233998303076,1.4115340462121821,1353.2310075872838,0.0,807.3629216375291,0.0,0.0,0.0,1178.5361583719905,0.0,869.2312462506499,1.3819839946590946,1880.2657405111902,1.0334555793641962,1158.9009617443944,0.0,0.0,0,0,0,0,0,0,0,0,0.040469530302175476,0.0012804277291711898,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3782740979536043,-0.3782740979536043,-0.4207955978410016,-0.4207955978410016,-0.47832581762264564,-0.47832581762264564,-0.019609965899645757,-0.019609965899645757,0.7795385116673768,0.7795385116673768,-0.5973408237616125,-0.6335030650005821,-0.6630936162488675,-0.6727649481633161,0.1568267182629054,-0.6378780373053802,-0.673992197662391,-0.6835739339336783,-0.7036919499003604,0.039134798127783844,7.979556151870526,7.979556151870526,8.691645369744563,8.691645369744563,9.778557189174037,9.778557189174037,5.007960530562997,5.007960530562997,17.806061856610825,17.806061856610825,12.480842724794428,13.42357966629568,14.237195492253008,14.511343636642039,5.509675609239977,13.541481315642997,14.546421374931867,14.822531201188724,15.4151719958343,5.03170566652031,101.47012592772118,101.47012592772118,0.0,112.74458436413465,0.0,101.47012592772118,112.74458436413465,0,0
+2017/03/24 07:00:00,149.94257743363295,0,1004.0480441789075,0,0,0,0.0,0.0,10.27086813030411,0.0,69.33401494192633,0,39.380909295966944,0.4306107626004707,27.0941991003808,0,0,138.2149927901376,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1227.964794285713,0.0,705.738576198062,0.0,1757.7397196005477,0.0,119.08520888462175,0.0,0.0,0.0,4439.875140098414,0.0,6001.717426026898,0.0,5504.0179394318075,0.0,6143.863206012397,0.0,3212.0994369083905,0.0,4857.244716266292,0.0,6236.215841284846,0.0,5830.165114267464,0.0,6302.540934276281,0.0,3462.667302079846,0,0,0,0,0,0,0,0,0.05345626157716501,0.0016913188542134153,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6125884640453964,-0.6125884640453964,-0.6257162955955969,-0.6257162955955969,-0.6702170733435642,-0.6702170733435642,-0.3769920950763068,-0.3769920950763068,0.2084212210761401,0.2084212210761401,-0.5878425171078626,-0.6351049544497549,-0.6519767260096393,-0.6613616206107419,-0.1915329994010862,-0.6265748571711186,-0.6735737541480188,-0.6719758404565758,-0.6886925790276041,-0.2514534165070107,12.871423692290861,12.871423692290861,13.215787239927735,13.215787239927735,14.438727436397201,14.438727436397201,7.959287147829556,7.959287147829556,5.90092894410482,5.90092894410482,12.242636257030284,13.466652830287131,13.927076255690437,14.188527211338595,5.760621024936782,13.238569191050686,14.534453929818739,14.48882347940777,14.971658653137823,6.312452531298305,149.94257743363295,149.94257743363295,0.0,166.6028638151477,0.0,149.94257743363295,166.6028638151477,0,0
+2017/03/24 08:00:00,165.37799908774352,0,1061.0906418503675,0,0,0,0.0,0.0,11.966054075548788,0.0,83.2008179303116,0,39.380909295966944,0.30050010815070616,27.097742475311204,0,0,142.0220616927814,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,612.2952100974196,0.0,0.0,0.0,0.0,0.0,3580.332221403757,0.0,5391.4177873528315,0.0,4717.196168483792,0.0,5284.579434708621,0.0,147.0924870802819,0.0,3873.1915546760983,0.0,5583.17560248001,0.0,4975.681026486449,0.0,5345.756304725101,0.0,158.83278076346227,0,0,0,0,0,0,0,0,0.056493251729025924,0.00178740710566153,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6407956311081359,-0.6407956311081359,-0.6777873854178914,-0.6777873854178914,-0.7236737544126677,-0.7236737544126677,-0.3454970799870378,-0.3454970799870378,-0.26867625933645267,-0.26867625933645267,-0.5648853794243327,-0.6284340365521197,-0.6369803771539264,-0.6312544753209737,-0.29806579777618014,-0.6004436332411358,-0.6635315010211723,-0.6557223246031763,-0.6518331745746805,-0.345459731464595,13.620569334076464,13.620569334076464,14.655309425581166,14.655309425581166,16.02108711474561,16.02108711474561,7.483334823118312,7.483334823118312,6.498952841803074,6.498952841803074,11.683063592974477,13.28801217511284,13.517222466441211,13.363305195250192,6.846068919891351,12.55950601971368,14.249520432537167,14.030966083865408,13.923106739191823,7.482795474682391,165.37799908774352,165.37799908774352,0.0,183.753332319715,0.0,165.37799908774352,183.753332319715,0,0
+2017/03/24 09:00:00,181.58320228181483,0,1109.7478491134818,0,0,0,0.0,0.0,11.346097261187438,0.0,106.27511244621549,0,39.380909295966944,0.27494752951512896,20.874160546475583,0,0,155.92968735085117,581.1694603809173,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3239.103425739152,0.0,5047.638115210328,0.0,4213.410871645796,0.0,5024.727413344482,0.0,0.0,0.0,3361.36778841037,0.0,5163.2323916278565,0.0,4344.125593200855,0.0,5018.651284313171,0.0,0.0,0,0,0,0,0,0,0,0,0.05908379748443193,0.0018693701676032268,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5800739931637464,-0.5800739931637464,-0.6142007948830218,-0.6142007948830218,-0.6881491030335699,-0.6881491030335699,-0.27380544544723423,-0.27380544544723423,-0.2481445273088228,-0.2481445273088228,-0.550951300559884,-0.6149190874617648,-0.6204511063307941,-0.626058239275495,-0.306706728301209,-0.5821698402530235,-0.6450163351448924,-0.633780780808589,-0.6430632017707284,-0.3477754776283238,12.050721305574314,12.050721305574314,12.913314783098073,12.913314783098073,14.955771186090018,14.955771186090018,6.556908674540409,6.556908674540409,6.278050578727473,6.278050578727473,11.354573563310893,12.932013569350232,13.076774849438308,13.22485689085373,6.955065190701902,12.102239518090357,13.735634432781438,13.431039183179209,13.68229195889073,7.5163492172483615,181.58320228181483,181.58320228181483,0.0,201.75911364646092,0.0,181.58320228181483,201.75911364646092,0,0
+2017/03/24 10:00:00,212.48468079148645,0,1242.9748321069583,0,0,0,0.0,0.0,16.903073633821148,0.0,133.89528835348938,0,39.380909295966944,0.3587143465200062,18.514719959234657,0,0,219.89818877446038,561.702060669424,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2176.907302491084,0.0,5424.416930560166,0.0,3324.8815792174455,0.0,5329.2629419904315,0.0,0.0,0.0,2156.357267476549,0.0,5433.339138197274,0.0,3305.8737400076025,0.0,5218.791447597879,0.0,3183.000477794066,0,0,0,0,0,0,0,0,0.0661769007411191,0.002093791010343981,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48718927345563856,-0.48718927345563856,-0.5652082121019666,-0.5652082121019666,-0.6050643730903567,-0.6050643730903567,-0.16760535543633812,-0.16760535543633812,-0.20288864074686738,-0.20288864074686738,-0.5331025400096542,-0.6160404293381906,-0.6161624384228871,-0.6180414429708855,-0.32490720295173786,-0.5582358710449951,-0.643142853428721,-0.6272144942906128,-0.6313298613562648,-0.36015259804161537,9.958684952014764,9.958684952014764,11.690774033530687,11.690774033530687,12.677426775186177,12.677426775186177,5.582231411096856,5.582231411096856,5.853650203246474,5.853650203246474,10.94609112139554,12.961249405922885,12.964433741488037,13.013555781340727,7.1949839646227645,11.525254051052471,13.684464108117268,13.255562766683752,13.36532239861721,7.699553868592645,212.48468079148645,212.48468079148645,0.0,236.09408976831827,0.0,212.48468079148645,236.09408976831827,0,0
+2017/03/24 11:00:00,228.3424267472868,0,1221.4429225129277,0,0,0,0.0,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,0.21869368757908092,20.75045978595147,0,0,125.66184835290375,581.170962728134,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2017.4757625431482,0.0,3895.9158906349544,0.0,3312.173593571578,0.0,3820.5144145367885,0.0,0.0,0.0,2197.7798267209973,0.0,3832.6942391550824,0.0,3217.112812267622,0.0,3666.6603954036464,0.0,0.0,0,0,0,0,0,0,0,0,0.06503052592550393,0.002057520510267081,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4637180812898638,-0.4637180812898638,-0.47115179521964073,-0.47115179521964073,-0.5494016651438468,-0.5494016651438468,0.018466111050807144,0.018466111050807144,-0.09987509790561991,-0.09987509790561991,-0.4859276998562361,-0.5785807343466264,-0.5811012709527378,-0.5824729645862304,-0.3152111090992465,-0.4888327382133351,-0.5957127814480123,-0.5824154632194593,-0.5863769973312773,-0.34089121343204165,9.489084029744419,9.489084029744419,9.63524433848032,9.63524433848032,11.318561708367014,11.318561708367014,5.007058921847701,5.007058921847701,5.206580228866613,5.206580228866613,9.932839670979732,12.014131647669018,12.075949100659926,12.109706422645118,7.065423685156105,9.992456906723007,12.439735277625857,12.108289676915618,12.206231382486948,7.417268840718023,228.3424267472868,228.3424267472868,0.0,253.7138074969853,0.0,228.3424267472868,253.7138074969853,0,0
+2017/03/24 12:00:00,207.65485414623737,0,1102.0208762547038,0,0,0,0.0,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,0.09693552409461852,18.50946933713974,0,0,61.187550664798856,561.7135666705592,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1139.4687614043376,0.0,2758.6939021540366,0.0,3790.5615040302287,0.0,2749.265237248718,0.0,0.0,0.0,785.9354216763337,0.0,2676.3659750185166,0.0,3493.501077207446,0.0,2545.1901875131666,0.0,0.0,0,0,0,0,0,0,0,0,0.058672407726010276,0.0018563540824090823,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2571388766654818,-0.2571388766654818,-0.44121461395814565,-0.44121461395814565,-0.573486441945191,-0.573486441945191,0.1466961030308487,0.1466961030308487,-0.06815904385425947,-0.06815904385425947,-0.3628869588201173,-0.5403397997055265,-0.5495311829104648,-0.5510492624077041,-0.30121731591975665,-0.3333723878115979,-0.5389915625865949,-0.5382925606218186,-0.5414931819946279,-0.3143707429554828,6.372638360979465,6.372638360979465,9.061127093210544,9.061127093210544,11.890033080268267,11.890033080268267,5.445894930341666,5.445894930341666,5.096187405554318,5.096187405554318,7.740906974637241,11.110057535320578,11.32156757512584,11.35685358913824,6.885456230697187,7.3113560165499365,11.079340077181996,11.063445417377011,11.136398037837523,7.054382195618615,207.65485414623737,207.65485414623737,0.0,230.7276157180415,0.0,207.65485414623737,230.7276157180415,0,0
+2017/03/24 13:00:00,205.2088264338225,0,1080.0348786590318,0,0,0,0.0,0.0,16.67307048032785,0.0,129.2730206906943,0,39.380909295966944,0.13752736611285188,16.312323398266255,0,0,95.20615079759028,541.19932145464,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,735.731471810099,0.0,2804.9029737303363,0.0,3544.41201080245,0.0,3012.0837659374683,0.0,0.0,0.0,109.68753301766614,0.0,2543.5575632851715,0.0,3128.7426737218952,0.0,2686.596275295866,0.0,0.0,0,0,0,0,0,0,0,0,0.057501856928841716,0.001819318671127882,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.39476893972718224,-0.39476893972718224,-0.31130047676055483,-0.31130047676055483,-0.6308093063269619,-0.6308093063269619,0.1766720484780406,0.1766720484780406,-0.09075285844423904,-0.09075285844423904,-0.37696892855860964,-0.5078414550130935,-0.5383155578832683,-0.5403410370249501,-0.30607597187079916,-0.35400371229219074,-0.4998417161903993,-0.5244624253091571,-0.5295603577219236,-0.32036708618826104,8.246606924413214,8.246606924413214,7.014296479968181,7.014296479968181,13.35139824932044,13.35139824932044,5.647014941378941,5.647014941378941,5.170553791878746,5.170553791878746,7.958921520547406,10.391549583879481,11.063968017139516,11.110085761864383,6.9470020125422,7.607724013449683,10.221690523715807,10.753312309580451,10.86666677993486,7.133822405854488,205.2088264338225,205.2088264338225,0.0,228.00980714869166,0.0,205.2088264338225,228.00980714869166,0,0
+2017/03/24 14:00:00,189.40903104920474,0,1074.6256778135657,0,0,0,0.0,0.0,16.798297350153536,0.0,115.5196477718057,0,39.380909295966944,0.21501443791410213,14.06318699091013,0,0,143.37418646852976,523.1124374507787,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,966.2022648344524,0.0,3841.5703276696236,0.0,2989.8658843270023,0.0,3986.2474897356815,0.0,0.0,0.0,523.7606281708953,0.0,3579.3251917216458,0.0,2570.826582656637,0.0,3661.0663244307393,0.0,0.0,0,0,0,0,0,0,0,0,0.05721386706919797,0.0018102068727142457,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4476429985947581,-0.4476429985947581,-0.45072836266267163,-0.45072836266267163,-0.567264552468684,-0.567264552468684,0.14038680873131779,0.14038680873131779,-0.1566159590422581,-0.1566159590422581,-0.43109358714568013,-0.5328647068914675,-0.5484738293243003,-0.5567009248688014,-0.3272452310805394,-0.4253776496581554,-0.5327012696029522,-0.5410159431548922,-0.5523228384766029,-0.34724246516382135,9.18115537067142,9.18115537067142,9.239395185038887,9.239395185038887,11.739993161824557,11.739993161824557,5.40833208290114,5.40833208290114,5.508305160150243,5.508305160150243,8.87575004426543,10.940741307933962,11.297049624433754,11.48909831040963,7.226821305169366,8.773000182023779,10.937066372924775,11.12549204969639,11.38653346232536,7.508605994184592,189.40903104920474,189.40903104920474,0.0,210.45447894356082,0.0,189.40903104920474,210.45447894356082,0,0
+2017/03/24 15:00:00,182.58476799877695,0,1076.9671546355946,0,0,0,0.0,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,0.22452336302867332,14.05528488188167,0,0,132.84766994288196,535.9804307984554,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,136.67099919787222,0.0,3588.1860860420074,0.0,2405.256207273271,0.0,4403.7207473108465,0.0,0.0,0.0,0.0,0.0,3274.0941336924902,0.0,2021.597994420873,0.0,4104.7707123803975,0.0,0.0,0,0,0,0,0,0,0,0,0.05733852902955027,0.0018141510902432382,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.32730600024915524,-0.32730600024915524,-0.32153353796708123,-0.32153353796708123,-0.5249926704213617,-0.5249926704213617,0.12276526524917468,0.12276526524917468,-0.196101545998866,-0.196101545998866,-0.41723104618262036,-0.46170623943630407,-0.5564996198218113,-0.5705909979714764,-0.345540943501589,-0.3961222370754538,-0.4434974389214248,-0.5502483565052264,-0.567978094958059,-0.36447308743650253,7.2276519008106845,7.2276519008106845,7.149452694869339,7.149452694869339,10.765050086424964,10.765050086424964,5.312193096519039,5.312193096519039,5.797399874282718,5.797399874282718,8.628979043502653,9.449936903311439,11.484364136596284,11.820000980404728,7.483968329992024,8.269032820193189,9.103547686245236,11.338225002399028,11.757114881110297,7.765040738914678,182.58476799877695,182.58476799877695,0.0,202.8719644430855,0.0,182.58476799877695,202.8719644430855,0,0
+2017/03/24 16:00:00,205.42943323765806,0,1108.459611141339,0,0,0,0.0,0.0,16.735683873587277,0.0,131.64086955684016,0,39.380909295966944,0.19662330416759674,14.043372004641682,0,0,107.50255650642896,539.5824719718364,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,618.0594086337652,0.0,2634.7348948395193,0.0,2568.8557958188167,0.0,4227.682322780746,0.0,0.0,0.0,168.21720009651796,0.0,2113.907927325044,0.0,2089.239634136689,0.0,3871.497349674078,0.0,0.0,0,0,0,0,0,0,0,0,0.0590152107405886,0.001867200130836928,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4673979911396166,-0.4673979911396166,-0.25614144983680115,-0.25614144983680115,-0.4931300697655398,-0.4931300697655398,0.1445144865299383,0.1445144865299383,-0.16688767573792748,-0.16688767573792748,-0.44766188816831404,-0.41210866312953365,-0.5641973412581238,-0.583289823654475,-0.3565324679378763,-0.4399446280428398,-0.38372394129431553,-0.557178803874257,-0.5813336431613355,-0.3734648983342308,9.561140128133516,9.561140128133516,6.361981345890712,6.361981345890712,10.081314927728855,10.081314927728855,5.432719098460467,5.432719098460467,5.577249881263953,5.577249881263953,9.181510687549334,8.53987905248077,11.666645775244106,12.129848077019787,7.645294601112198,9.037624541001136,8.066503406025518,11.50034382460467,12.081662026863938,7.9038825436610125,205.42943323765806,205.42943323765806,0.0,228.25492581962007,0.0,205.42943323765806,228.25492581962007,0,0
+2017/03/24 17:00:00,212.34792316768127,0,1126.7721185660587,0,0,0,0.0,0.0,16.90307355543791,0.0,133.89528835348938,0,39.380909295966944,0.19349006136870892,18.543186698964025,0,0,106.23881722285783,559.158718680127,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2106.937921313276,0.0,2187.18211325402,0.0,3673.876924922129,0.0,4080.6442416253094,0.0,0.0,0.0,1731.3181356902373,0.0,1638.365937958924,0.0,3213.2537434745836,0.0,3740.191923151215,0.0,0.0,0,0,0,0,0,0,0,0,0.059990182200077,0.0018980475482039724,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44631240206051825,-0.44631240206051825,-0.40162296329646535,-0.40162296329646535,-0.48309227564878254,-0.48309227564878254,0.1396393913200005,0.1396393913200005,-0.12719396906644473,-0.12719396906644473,-0.4729557229140051,-0.4037187092987941,-0.5698923537296052,-0.5878068852701752,-0.3479269332879215,-0.47573969258799553,-0.379013481380734,-0.566551997668954,-0.5901098091200859,-0.36536709150511626,9.156165177230108,9.156165177230108,8.360993272340423,8.360993272340423,9.87500231541226,9.87500231541226,5.403992037611275,5.403992037611275,5.335140197942053,5.335140197942053,9.6710719121006,8.39637026783879,11.803157337944683,12.241750023521007,7.518551660414076,9.726639300838897,7.991278004106874,11.722917181236696,12.299141541985037,7.778690702885768,212.34792316768127,212.34792316768127,0.0,235.9421368529792,0.0,212.34792316768127,235.9421368529792,0,0
+2017/03/24 18:00:00,199.0475220358668,0,1096.0213941729985,0,0,0,0.0,0.0,18.242407792819918,0.0,110.93442390708215,0,39.380909295966944,0.1442354007021862,26.913570436841308,0,0,85.7027835359366,584.4343804865323,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3362.875219493968,0.0,1536.2273077133655,0.0,4626.4076199761585,0.0,3467.5927663583943,0.0,0.0,0.0,3085.4774196565404,0.0,1054.1027805092676,0.0,4213.6760096734515,0.0,3166.326591184574,0.0,0.0,0,0,0,0,0,0,0,0,0.05835299085612391,0.0018462479552978027,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5065554373405681,-0.5065554373405681,-0.5084103658000436,-0.5084103658000436,-0.5365849453115903,-0.5365849453115903,0.12602033405747842,0.12602033405747842,-0.110764902404056,-0.110764902404056,-0.47833692597223354,-0.3966787373764905,-0.5554332751211952,-0.5771665278091107,-0.32306871775689205,-0.48827856263592756,-0.3790033306352972,-0.555196266584322,-0.5843435115103994,-0.34177603632780834,10.364056865474737,10.364056865474737,10.403734674664491,10.403734674664491,11.024704835068619,11.024704835068619,5.328979659701147,5.328979659701147,5.254110624908591,5.254110624908591,9.778780817581833,8.278277477418314,11.45931577336529,11.97956822893272,7.170111785477943,9.981055989181527,7.991116920801659,11.453755155924497,12.155872087094536,7.429890676794315,199.0475220358668,199.0475220358668,0.0,221.16391337318532,0.0,199.0475220358668,221.16391337318532,0,0
+2017/03/24 19:00:00,210.69148597573601,0,1107.4603064689131,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.16180812949431558,27.0977424753112,0,0,117.41102128623861,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3508.804454979131,0.0,2359.245220505819,0.0,4797.30431796594,0.0,3533.7040951166773,0.0,0.0,0.0,3363.3316788814222,0.0,2077.2704909932163,0.0,4497.149719899544,0.0,3311.2768167329205,0.0,0.0,0,0,0,0,0,0,0,0,0.05896200701963702,0.0018655168021920728,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5658720417432134,-0.5658720417432134,-0.5492259868682353,-0.5492259868682353,-0.5694718121674172,-0.5694718121674172,0.08670161806055406,0.08670161806055406,-0.13056940329030373,-0.13056940329030373,-0.4806300770415779,-0.45695533136293004,-0.5584086344831803,-0.5722341225760841,-0.31292601941463505,-0.49595757710806293,-0.45977761805876766,-0.5645915167766319,-0.5842953635648173,-0.3351387411174001,11.706642949279939,11.706642949279939,11.314485703958866,11.314485703958866,11.793028692916849,11.793028692916849,5.155661518294508,5.155661518294508,5.353177448110699,5.353177448110699,9.825059489616308,9.358183832866573,11.529329899645504,11.859698599018998,7.035470015434498,10.140215670586159,9.41257275248546,11.6760489941435,12.154681877426512,7.3360217661400355,210.69148597573601,210.69148597573601,0.0,234.10165108415111,0.0,210.69148597573601,234.10165108415111,0,0
+2017/03/24 20:00:00,211.70637869632245,0,1069.4523214265764,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.14903171222480174,23.653617817940304,0,0,114.89338875644611,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3545.46243260949,0.0,2580.856856063418,0.0,4767.785931233474,0.0,3515.2683459438845,0.0,0.0,0.0,3476.3239472845817,0.0,2402.2678315385156,0.0,4548.993145313039,0.0,3343.226809861322,0.0,0.0,0,0,0,0,0,0,0,0,0.0569384337432151,0.0018014923542730135,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5976066349652667,-0.5976066349652667,-0.5420326081713558,-0.5420326081713558,-0.5963948573334349,-0.5963948573334349,0.04261689867310861,0.04261689867310861,-0.16862412510932037,-0.16862412510932037,-0.4807218820580062,-0.4642972272876987,-0.5535039339076676,-0.5653675567284602,-0.3044641643061146,-0.49985564890492906,-0.4716222260552302,-0.5628921553618543,-0.580292897655472,-0.32829005699090896,12.487565280377922,12.487565280377922,11.148737028519378,11.148737028519378,12.456943431965911,12.456943431965911,5.037599313792924,5.037599313792924,5.589339741287361,5.589339741287361,9.826916952859804,9.500385572291663,11.414120975442898,11.694581439863711,6.926474176678582,10.221983953735403,9.644573983278406,11.635558127685883,12.056093303119198,7.241123836871282,211.70637869632245,211.70637869632245,0.0,235.22930966258048,0.0,211.70637869632245,235.22930966258048,0,0
+2017/03/24 21:00:00,197.7244519346978,0,1096.2883897896977,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.22039365832524097,25.608120825752998,0,0,177.21980963211158,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2744.9560634950767,0.0,3619.338210274944,0.0,3882.4075182132974,0.0,4415.6071633579195,0.0,0.0,0.0,2830.887588630722,0.0,3578.3629499191916,0.0,3824.7118630344103,0.0,4350.6760748535435,0.0,0.0,0,0,0,0,0,0,0,0,0.058367205900522405,0.0018466977093938679,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6517020128109478,-0.6517020128109478,-0.5191679450681896,-0.5191679450681896,-0.6068630411952944,-0.6068630411952944,-0.02589115759691703,-0.02589115759691703,-0.24563870610738348,-0.24563870610738348,-0.49377554483158786,-0.48729130697129613,-0.5639538909847046,-0.5795154648760363,-0.3186733010015957,-0.5192844179458077,-0.5027117513065996,-0.5794410530829238,-0.5998742038691465,-0.34571480143045463,13.919480605590223,13.919480605590223,10.636778365816426,10.636778365816426,12.723579145310111,12.723579145310111,5.013877040209195,5.013877040209195,6.252304182766551,6.252304182766551,10.094730616696197,9.960778268747887,11.660841535263742,12.03702423442705,7.111228578537705,10.639328937521682,10.282312028442504,12.035200418266712,12.545038381933779,7.4864801096212545,197.7244519346978,197.7244519346978,0.0,219.69383548299757,0.0,197.7244519346978,219.69383548299757,0,0
+2017/03/24 22:00:00,140.29283401545268,0,974.1329584174703,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.3385185973082401,20.769382610368204,0,0,233.25759011543363,581.168781995588,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,410.0091303187649,0.0,0.0,0.0,0.0,0.0,2951.7307705174962,0.0,4595.801588259474,0.0,3967.323336006497,0.0,5265.131825025984,0.0,0.0,0.0,3088.462247108543,0.0,4604.31454157783,0.0,3988.1881389296104,0.0,5217.896097236768,0.0,2508.333274594522,0,0,0,0,0,0,0,0,0.051863560252922644,0.0016409268945187913,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7359752627688544,-0.7359752627688544,-0.6607207347316703,-0.6607207347316703,-0.7483400910059996,-0.7483400910059996,-0.2356615110500744,-0.2356615110500744,-0.4727523417538487,-0.4727523417538487,-0.5154742002968894,-0.5172419054711045,-0.5840989923489991,-0.603875417642158,-0.34031101159163896,-0.548700689866827,-0.5419241814745345,-0.6064703500271277,-0.6317841227760806,-0.3731259138981812,16.402657650129598,16.402657650129598,14.17055155291581,14.17055155291581,16.792741106586277,16.792741106586277,6.152407946374808,6.152407946374808,9.667025568924288,9.667025568924288,10.556195673387705,10.594686256256878,12.14982865357274,12.64699622321291,7.409010424327775,11.30230599117705,11.146255832404876,12.713491026024045,13.377482888286409,7.898585785800151,140.29283401545268,140.29283401545268,0.0,155.88092668383632,0.0,140.29283401545268,155.88092668383632,0,0
+2017/03/24 23:00:00,91.27503379694694,0,892.7406429869502,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.551828957225459,11.780248578428907,0,0,322.2208541320888,517.2842600860453,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1596.5918216215773,0.0,563.6794096707954,0.0,2297.2329356925943,0.0,0.0,0.0,0.0,0.0,3138.3285120313003,0.0,5584.519709636037,0.0,4064.9342521082754,0.0,6134.033259367495,0.0,6916.850321649477,0.0,3304.8094969238714,0.0,5597.088433925606,0.0,4198.705122716704,0.0,6176.989561122202,0.0,10643.03550572058,0,0,0,0,0,0,0,0,0.047530173091571086,0.0015038215453536516,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8327131228263319,-0.8327131228263319,-0.8052205401355548,-0.8052205401355548,-0.8498601071984286,-0.8498601071984286,-0.5029384033951393,-0.5029384033951393,-0.579583353027703,-0.579583353027703,-0.5435718261160483,-0.5538664808251408,-0.6109434173901341,-0.6366258345517277,-0.3711533442390304,-0.5823985917253637,-0.5868107309429352,-0.6366943686695238,-0.6673253003475413,-0.40886977325242885,19.628411126228684,19.628411126228684,18.67130064369411,18.67130064369411,20.241397204367274,20.241397204367274,10.287114589373545,10.287114589373545,12.038688367201615,12.038688367201615,11.184014863686173,11.422601319654873,12.828798867762927,13.507650745458989,7.867860877682645,12.107874016330143,12.216996018527354,13.509500561896616,14.356650419885398,8.484121148795126,91.27503379694694,91.27503379694694,0.0,101.41670421882993,0.0,91.27503379694694,101.41670421882993,0,0
+2017/03/25 00:00:00,40.73105412950492,0,546.9112220851241,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.5785739534556596e-09,9.545420062126288,0,0,0.0,493.6756933163079,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02911795856460028,0.0009212719120925336,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7602189682665439,-0.7602189682665439,-0.7371200898348448,-0.7371200898348448,-0.8116949900317727,-0.8116949900317727,-0.4334808436704917,-0.4334808436704917,-0.23779733894639463,-0.23779733894639463,-0.665286178659226,-0.6353118040759702,-0.8244228970435021,-0.853863602273436,-0.15344097712354704,-0.7614254992013743,-0.6975198657645144,-0.8447552069888814,-0.8766939316139475,-0.2509082212528887,17.17366370042528,17.17366370042528,16.43849886424836,16.43849886424836,18.89383393653769,18.89383393653769,8.919078627168176,8.919078627168176,6.17344121200405,6.17344121200405,14.298991853320103,13.472222919365066,19.336453986354186,20.386281763422815,5.487883958433514,17.212691461723495,15.231494439974554,20.057620429848143,21.22518589559124,6.306752559951121,40.73105412950492,40.73105412950492,0.0,45.25672681056102,0.0,40.73105412950492,45.25672681056102,0,0
+2017/03/25 01:00:00,23.743446869077882,0,47.31976609757719,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5463514454000893,0,0,0.0,11.829413585033056,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002519339397101223,7.971014239985944e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8127679226668043,-0.8127679226668043,-0.7914556826354175,-0.7914556826354175,-0.8779919213846784,-0.8779919213846784,-0.48729920850256814,-0.48729920850256814,-0.09445062539296747,-0.09445062539296747,-0.7552511723922286,-0.7259571501092533,-0.9259620189677983,-0.9446045260707194,-0.08604686567634937,-0.8661592342633603,-0.8070793114108773,-0.9948044286248777,-1.0205277102218968,-0.24007791822687927,18.93088251958399,18.93088251958399,18.20407817234593,18.20407817234593,21.273526578506818,21.273526578506818,9.960940395088969,9.960940395088969,5.184741155719038,5.184741155719038,17.01362567589186,16.091422117665047,23.10823342065771,23.84624794879133,5.153318577269303,20.83541085564184,18.73500737758711,25.901398587783078,26.991930358879998,6.196111382912278,23.743446869077882,23.743446869077882,0.0,26.381607632308757,0.0,23.743446869077882,26.381607632308757,0,0
+2017/03/25 02:00:00,28.375585595495373,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5562225090224809,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8113436861520237,-0.8113436861520237,-0.7931713084493337,-0.7931713084493337,-0.8817517368821266,-0.8817517368821266,-0.49266689832002925,-0.49266689832002925,-0.016266575656328133,-0.016266575656328133,-0.7877416250539194,-0.7570513415694355,-0.9641289862509234,-0.9816901237517903,-0.06343540646347905,-0.9236818547827783,-0.8676333211237083,-1.0650111078959275,-1.090717435583006,-0.23316040990305417,18.88171388947022,18.88171388947022,18.261874103741192,18.261874103741192,21.41394285466606,21.41394285466606,10.071699363549854,10.071699363549854,5.005477448116196,5.005477448116196,18.079386934597494,17.071496363262312,24.63391354469374,25.355086882640336,5.08331488886445,23.018918644682458,20.889675488437504,28.935558494003715,30.09103285018095,6.128020912426223,28.375585595495373,28.375585595495373,0.0,31.528428439439303,0.0,28.375585595495373,31.528428439439303,0,0
+2017/03/25 03:00:00,23.721957346495877,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.524861922818089,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8486278007419292,-0.8486278007419292,-0.8328762949520785,-0.8328762949520785,-0.9222452915737157,-0.9222452915737157,-0.5432813491572555,-0.5432813491572555,0.04726064178300361,0.04726064178300361,-0.8548409676919654,-0.8216481766624554,-1.0338191548185545,-1.04896447452959,-0.033445109617532776,-1.0043014881699415,-0.945087854267021,-1.1507678256005462,-1.1753922435458923,-0.2361691751401185,20.19693475584512,20.19693475584512,19.6341864660274,19.6341864660274,22.962755004199707,22.962755004199707,11.1773494691719,11.1773494691719,5.046240613655257,5.046240613655257,20.42175326223301,19.23938072675837,27.565107009093936,28.226138187199552,5.023156232106501,26.301118504885054,23.86556539652817,32.87757138980288,34.05374795707614,6.157389987226125,23.721957346495877,23.721957346495877,0.0,26.357730384995417,0.0,23.721957346495877,26.357730384995417,0,0
+2017/03/25 04:00:00,40.13020263590989,0,360.0117310148467,0,0,0,0.0,0.011099609632614424,4.633261998087618,9.319298099999997,23.111338313975452,0,1.4688932069307497,1.06125505536445,0.525056351918986,0,0,271.2858497334864,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,267.25035467189986,0.0,0.0,0.0,0.0,1.3871317354224981,2057.396176800009,0.9455916246707197,1130.397520896462,1.736212206985783,3075.5955663954614,0.7585053437734737,1920.7269883485758,0.0,0.0,1.9545606649413554,2903.0786229045457,0.579244741689283,1521.8749679126024,2.3430631847601635,3717.961126099966,1.3953001303711463,2317.7026039953384,0.0,0.0,0,0,0,0,0,0,0,0,0.01916729122231968,0.0006064397335700822,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8122079951119894,-0.8122079951119894,-0.7988095177716613,-0.7988095177716613,-0.8524262978494547,-0.8524262978494547,-0.5184594531691208,-0.5184594531691208,0.1791015524386818,0.1791015524386818,-0.6628245831547026,-0.6614391010871149,-0.7384737422236887,-0.7571282559647756,-0.0022288151957170228,-0.7388736916122642,-0.7309105923901427,-0.8021333998406868,-0.8290733358126966,-0.2218108536165691,18.911542051874534,18.911542051874534,18.452692500858504,18.452692500858504,20.334189772065912,20.334189772065912,10.621276159758565,10.621276159758565,5.664956990332541,5.664956990332541,14.229627261191823,14.190701600426678,16.4809503995927,17.073972046019406,5.000102832182321,16.493508160852443,16.24477295585234,18.565815903359635,19.499873807242082,6.020653934162922,40.13020263590989,40.13020263590989,0.0,44.589114039899876,0.0,40.13020263590989,44.589114039899876,0,0
+2017/03/25 05:00:00,74.78491480251121,0,310.6154196109327,0,0,0,0.0,0.01188751815155524,4.633261998087618,9.319298099999997,57.911447091112116,0,1.380494612502346,1.003585607805816,0.5249398748517471,0,0,97.67330453566787,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.411120188344114,1802.879597621295,0.2525497884311676,996.4287496949678,1.8488422531900142,2719.8813939163183,1.459524475681917,1685.030244105135,0.0,0.0,2.3037026667838063,2606.8351271289534,0.9336118985496,1398.3632001636834,2.182653590059317,3411.1287229353297,1.495513290515305,2131.1542538285094,0.0,0.0,0,0,0,0,0,0,0,0,0.01653739501499813,0.0005232316507593056,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6323644998549648,-0.6323644998549648,-0.6249514959599913,-0.6249514959599913,-0.6968525037088895,-0.6968525037088895,-0.3553448595866913,-0.3553448595866913,0.4928245785191519,0.4928245785191519,-0.6387436183096444,-0.6416919248095628,-0.6954200983871924,-0.7130796424214415,0.06473319770965615,-0.6825424851099441,-0.6867242559161925,-0.7221012689474047,-0.7480346482156949,-0.16488059660655138,13.393032494829939,13.393032494829939,13.1955201993254,13.1955201993254,15.211732671218371,15.211732671218371,7.627616005322082,7.627616005322082,10.074971806894482,10.074971806894482,13.564906340042256,13.644939541700182,15.169381567555064,15.697695225176545,5.0867593954382215,14.79261794588669,14.914179159535223,15.972780596651575,16.783026074117018,5.563432442528509,74.78491480251121,74.78491480251121,0.0,83.09434978056801,0.0,74.78491480251121,83.09434978056801,0,0
+2017/03/25 06:00:00,105.6630111623086,0,781.8863579526218,0,0,0,0.1602938521984345,0.00758544121442939,8.33396954093373,13.929299233552332,80.56906512710079,0,1.268646963074773,0.8691809224262659,0.524970081807891,0,0,69.18705798943668,482.01200863164826,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,509.52317033276574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.5153860993676,0.0,758.2535010899435,1.4505548884108066,2122.6859144358264,1.0984716154984349,1314.2812279778946,0.0,0.0,2.0407458960741374,1992.4957873878298,0.0,1085.4364589258716,1.66993271106215,2608.390037988849,1.3257361033838606,1631.8907424835857,0.0,0.0,0,0,0,0,0,0,0,0,0.0416282088458355,0.0013170875106270233,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48657453576541565,-0.48657453576541565,-0.4859162371733771,-0.4859162371733771,-0.5525682077632675,-0.5525682077632675,-0.22207098567123482,-0.22207098567123482,0.7337817189704166,0.7337817189704166,-0.6273608173846492,-0.6314470112112369,-0.6794507659959852,-0.6967798538484615,0.13673546548426777,-0.6660855283993188,-0.6727214052981666,-0.7014147775560572,-0.7272868421424016,-0.06571593286692748,9.946082520669577,9.946082520669577,9.932605155163102,9.932605155163102,11.392259714559373,11.392259714559373,6.023054311841506,6.023054311841506,16.334141407397567,16.334141407397567,13.259452704181015,13.368457620744266,14.703230058657525,15.209582541422662,5.387350349623446,14.321572949257913,14.510100274530501,15.34721327490142,16.132483704849548,5.08941414714505,105.6630111623086,105.6630111623086,0.0,117.40334573589845,0.0,105.6630111623086,117.40334573589845,0,0
+2017/03/25 07:00:00,120.31807682503961,0,868.3681928559666,0,0,0,0.0,0.0,7.305572790900944,0.0,69.33401494192633,0,39.380909295966944,0.3405191357595801,0.5250854580315314,0,0,111.85343595918525,490.33711305270043,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1404.4569478920039,0.0,772.8672002735811,0.0,2058.6914413782238,0.0,220.4289411054105,0.0,0.0,0.0,4950.189328534183,0.0,5533.562643919604,0.0,6016.404091915778,0.0,5699.165104430631,0.0,1911.6336521240187,0.0,5363.437712140175,0.0,5733.4943451697145,0.0,6312.273566164147,0.0,5791.6174995915235,0.0,2270.0748620678155,0,0,0,0,0,0,0,0,0.046232565793761234,0.0014627661549578477,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6358171848578664,-0.6358171848578664,-0.6382321162969539,-0.6382321162969539,-0.6838623825659386,-0.6838623825659386,-0.4876136057619839,-0.4876136057619839,0.18394353724731805,0.18394353724731805,-0.6021562277058627,-0.6180321933348526,-0.6571342644874346,-0.6514725733084873,-0.19699036736632153,-0.6369022433982728,-0.6562585474373449,-0.6766771861935271,-0.6737504455928114,-0.2772307522267183,13.48583972337461,13.48583972337461,13.5510597481899,13.5510597481899,14.83090479053989,14.83090479053989,9.967393493399356,9.967393493399356,5.701450270043651,5.701450270043651,12.60310315579487,13.013313596661476,14.07028616696104,13.913139252215544,5.804656667744098,13.515112591443469,14.045888787414114,14.623392109323547,14.53950636408591,6.596229464140748,120.31807682503961,120.31807682503961,0.0,133.6867520278218,0.0,120.31807682503961,133.6867520278218,0,0
+2017/03/25 08:00:00,143.42757100663496,0,953.6153180598881,0,0,0,0.0,0.0,11.86011032607099,0.0,87.89947186453183,0,39.380909295966944,0.277524717681675,0.5775795999292619,0,0,143.87184329521062,490.33030215178036,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,772.9653807369156,0.0,0.0,0.0,0.0,0.0,3737.7802885981505,0.0,5021.496300905023,0.0,5295.330375542746,0.0,4462.705069141231,0.0,137.66109695231162,0.0,3836.330871897215,0.0,5145.018381928552,0.0,5447.8565497799245,0.0,4290.859335711023,0.0,120.56058381752067,0,0,0,0,0,0,0,0,0.05077118588273196,0.0016063649308937062,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6204237438679437,-0.6204237438679437,-0.6813968865023655,-0.6813968865023655,-0.7272783902129026,-0.7272783902129026,-0.23505741197544228,-0.23505741197544228,-0.2808442828429186,-0.2808442828429186,-0.5464294911462593,-0.6036999791050496,-0.6375618735405728,-0.5621054767128509,-0.2915706377503105,-0.572938194581338,-0.6393641372549665,-0.6548759370574997,-0.568212367694688,-0.3388639652287934,13.076055563251131,13.076055563251131,14.759448142371355,14.759448142371355,16.13222246468635,16.13222246468635,6.1464936201620475,6.1464936201620475,6.638247208471768,6.638247208471768,11.249782858493504,12.642511180842405,13.53293314938854,11.61685626088817,6.766217156423892,11.876744708660226,13.581719303071011,14.007437072187045,11.762741159010133,7.388475914749947,143.42757100663496,143.42757100663496,0.0,159.36396778514995,0.0,143.42757100663496,159.36396778514995,0,0
+2017/03/25 09:00:00,183.31401660821882,0,1088.7344095131787,0,0,0,0.0,0.0,11.435487997441953,0.0,106.27511244621549,0,39.380909295966944,0.17158525015772616,22.61894641598246,0,0,116.43030058677621,599.6554075446891,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2424.530288690947,0.0,4672.596427335482,0.0,4432.150646018633,0.0,3796.59791791049,0.0,1.4650703097114295,0.0,1938.2859194196678,0.0,4528.745532749691,0.0,4170.30887107431,0.0,3481.361220672647,0.0,3.7189532330547026,0,0,0,0,0,0,0,0,0.05796502639531699,0.001833973030191409,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48812665116372395,-0.48812665116372395,-0.6225064231749634,-0.6225064231749634,-0.7103011011312748,-0.7103011011312748,0.05909990883864742,0.05909990883864742,-0.2838023310820953,-0.2838023310820953,-0.475816800205846,-0.5945049152540233,-0.6241131249277991,-0.49098077971691456,-0.3085667076120075,-0.4872392559806172,-0.6242915692792949,-0.6346295376302069,-0.47280146465794864,-0.3477431708011264,9.97793306717736,9.97793306717736,13.13089652461639,13.13089652461639,15.613678904844505,15.613678904844505,5.072314013801645,5.072314013801645,6.673053059685813,6.673053059685813,9.728183107218285,12.409311449018489,13.173332690824509,10.036773334606224,6.978939962771207,9.95971033593851,13.178052669780769,13.453857743971653,9.668002723876697,7.51587954292296,183.31401660821882,183.31401660821882,0.0,203.68224067579868,0.0,183.31401660821882,203.68224067579868,0,0
+2017/03/25 10:00:00,210.4078143257574,0,1154.1538148282023,0,0,0,0.0,0.0,15.051765606641785,0.0,131.64086955684016,0,39.380909295966944,0.17445114346349602,20.727843520390643,0,0,130.13956649935176,562.6396656657765,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,902.1540995249042,0.0,4934.244784176252,0.0,3656.6668949417567,0.0,3831.6551127833295,0.0,0.0,0.0,370.1064022412756,0.0,4634.480679366872,0.0,3174.130772418819,0.0,3259.297848201036,0.0,0.0,0,0,0,0,0,0,0,0,0.0614480039908785,0.0019441720134793178,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4629005238252849,-0.4629005238252849,-0.5630131064581221,-0.5630131064581221,-0.6471224111334146,-0.6471224111334146,0.21381196665858426,0.21381196665858426,-0.23215993940458937,-0.23215993940458937,-0.41721770026795907,-0.5888932200069157,-0.6143007757005559,-0.47756439123549926,-0.32564631195982036,-0.4066889332014043,-0.6135660528643947,-0.6193184914801143,-0.4559307411487035,-0.35592937542753383,9.473154682337508,9.473154682337508,11.63843590247798,11.63843590247798,13.793339304292331,13.793339304292331,5.948227967538202,5.948227967538202,6.1183393087978,6.1183393087978,8.628745440247627,12.268794060588277,12.915916169287144,9.763241173569426,7.2050234836915905,8.44683081101185,12.896809643569881,13.047028586575593,9.338523561733481,7.636309536395046,210.4078143257574,210.4078143257574,0.0,233.78646036195266,0.0,210.4078143257574,233.78646036195266,0,0
+2017/03/25 11:00:00,217.94380759574074,0,1224.470673273565,0,0,0,0.0,0.0,15.382700222279265,0.0,136.4899973586286,0,39.380909295966944,0.15909675811518,23.099128758296402,0,0,110.20515429698581,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,764.0184730353069,0.0,4359.055599895574,0.0,4343.336418581352,0.0,3419.3299092222037,0.0,0.0,0.0,0.0,0.0,3839.827767049643,0.0,3526.554718895997,0.0,2693.880532900128,0.0,0.0,0,0,0,0,0,0,0,0,0.06519172561867542,0.0020626207561935716,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3460404128790061,-0.3460404128790061,-0.49358998951069216,-0.49358998951069216,-0.605800037230258,-0.605800037230258,0.22995062296171556,0.22995062296171556,-0.14204650962759427,-0.14204650962759427,-0.3668436595721706,-0.5763788098971058,-0.6023366932757839,-0.49407702917358215,-0.32161001545370455,-0.33148716323435135,-0.5957973213516129,-0.6005654047407712,-0.47648417875497157,-0.3451565441671562,7.491187776302439,7.491187776302439,10.090872153188542,10.090872153188542,12.696286352348835,12.696286352348835,6.097108401206597,6.097108401206597,5.4180526343066475,5.4180526343066475,7.801310030517527,11.9603539139449,12.607704641302163,10.101002895465399,7.150479496803911,7.2851764213544214,12.441867046315707,12.562601725882189,9.741555706999392,7.478419354074433,217.94380759574074,217.94380759574074,0.0,242.1597862174897,0.0,217.94380759574074,242.1597862174897,0,0
+2017/03/25 12:00:00,205.32614921309016,0,1179.3487325507976,0,0,0,0.0,0.0,15.081367944243603,0.0,124.80122689546741,0,39.380909295966944,0.140025687874657,22.490644187083248,0,0,100.57356608676267,599.6554075446891,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3876.0269090779334,0.0,3876.443300078723,0.0,3324.764414765111,0.0,0.0,0.0,0.0,0.0,3484.5712295570856,0.0,3171.2302185000935,0.0,2731.154279888595,0.0,0.0,0,0,0,0,0,0,0,0,0.062789400072473,0.0019866128504707676,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.26677576524248825,-0.26677576524248825,-0.4536270457305039,-0.4536270457305039,-0.5626996048664789,-0.5626996048664789,0.18338658766624147,0.18338658766624147,-0.13911140010165776,-0.13911140010165776,-0.30601254596158944,-0.5702931890104416,-0.5944209656294941,-0.5207450547832192,-0.3305000871789723,-0.21586092502106383,-0.5807701235675288,-0.5868529573434791,-0.5052481712021706,-0.3483769028705882,6.477760149729477,6.477760149729477,9.294484277480464,9.294484277480464,11.630978106054428,11.630978106054428,5.697202804724299,5.697202804724299,5.4009401503932395,5.4009401503932395,6.946192148556335,11.812818502860267,12.407199272596031,10.6713644139232,7.271529327124597,5.966524916322072,12.067811811785333,12.218044452328968,10.336183174743937,7.525100797262837,205.32614921309016,205.32614921309016,0.0,228.1401657923224,0.0,205.32614921309016,228.1401657923224,0,0
+2017/03/25 13:00:00,201.1479273974015,0,1099.889572860136,0,0,0,0.0,0.0,14.932575391494975,0.0,122.5097643007467,0,39.380909295966944,0.126989610386457,20.765713596352075,0,0,93.62292761552337,562.6372388378112,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3387.2120181350256,0.0,3663.7780719593666,0.0,3246.5972112571762,0.0,0.0,0.0,0.0,0.0,2981.5013229447404,0.0,2913.82765837077,0.0,2642.3648100569726,0.0,0.0,0,0,0,0,0,0,0,0,0.058558935554612855,0.001852763902002696,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.25174218733376363,-0.25174218733376363,-0.34202984786922497,-0.34202984786922497,-0.5431060738986557,-0.5431060738986557,0.1630657713652778,0.1630657713652778,-0.16832161002630733,-0.16832161002630733,-0.24107506772820525,-0.5317666958440503,-0.5877800076218783,-0.5239124654070625,-0.33793757062131935,-0.14839109815073998,-0.5295248986476229,-0.5754639814326757,-0.5073110337313006,-0.353178476409809,6.315476668926337,6.315476668926337,7.43351739126787,7.43351739126787,11.17332930531245,11.17332930531245,5.551083139959829,5.551083139959829,5.587224464280467,5.587224464280467,6.20609219843071,10.91607443013946,12.241081560283178,10.741150973496403,7.375376480884256,5.456268604415158,10.865874447936648,11.938072858519504,10.38020147791508,7.5955220932355445,201.1479273974015,201.1479273974015,0.0,223.4976971082239,0.0,201.1479273974015,223.4976971082239,0,0
+2017/03/25 14:00:00,185.097967996287,0,1073.4422090883713,0,0,0,0.0,0.0,14.876918321203716,0.0,108.75639138185811,0,39.380909295966944,0.13799965857837984,18.51377413622558,0,0,103.65641198003436,561.6467432140795,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3044.3631711699954,0.0,3166.93036803337,0.0,3519.157149293398,0.0,0.0,0.0,0.0,0.0,2556.0312759485514,0.0,2458.119018540345,0.0,2955.5719886502975,0.0,0.0,0,0,0,0,0,0,0,0,0.05715085831766544,0.0018082133197364794,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3205973030671898,-0.3205973030671898,-0.3649600396335106,-0.3649600396335106,-0.5463636540824018,-0.5463636540824018,0.1339193710934812,0.1339193710934812,-0.21802213219550498,-0.21802213219550498,-0.24041817258720216,-0.463031455328899,-0.5863559438382908,-0.5311996704513691,-0.3502276660827492,-0.1973318357000634,-0.44675445521284995,-0.5736044849743268,-0.5166616950413877,-0.36518465183609194,7.136902712045128,7.136902712045128,7.772471471152642,7.772471471152642,11.248263662502197,11.248263662502197,5.3715470848179905,5.3715470848179905,5.986014797837626,5.986014797837626,6.199512413903932,9.475703824905523,12.205709073233024,10.903356616782574,7.552128492958346,5.807453372517585,9.164459018552236,11.892895902960163,10.582037663087618,7.775902385188402,185.097967996287,185.097967996287,0.0,205.66440888476333,0.0,185.097967996287,205.66440888476333,0,0
+2017/03/25 15:00:00,182.89826155420545,0,1086.063337524335,0,0,0,0.0,0.0,15.025710799900967,0.0,106.31215624428707,0,39.380909295966944,0.15662237905941115,18.59088763253679,0,0,116.27353256856905,561.6507510615086,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2753.712071014904,0.0,3506.6452342051766,0.0,4056.0079434466443,0.0,0.0,0.0,0.0,0.0,2073.5405165388806,0.0,2688.199738839155,0.0,3433.748880127157,0.0,0.0,0,0,0,0,0,0,0,0,0.05782281654415013,0.0018294736096289331,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4601094901276157,-0.4601094901276157,-0.41709329481730756,-0.41709329481730756,-0.5680528724456941,-0.5680528724456941,0.08923957970559174,0.08923957970559174,-0.2402033782857347,-0.2402033782857347,-0.2643347118113976,-0.4042475449900518,-0.5902136608403264,-0.5414997059523635,-0.3572343014624574,-0.24250354349521785,-0.3778565301484884,-0.5795289549608833,-0.5308281069062507,-0.37355751162750067,9.4189908675161,9.4189908675161,8.626568248422629,8.626568248422629,11.75891047342904,11.75891047342904,5.16491134066878,5.16491134066878,6.197364859958341,6.197364859958341,6.450762761863871,8.405326918489763,12.301735070209077,11.13654719341767,7.6557702321078125,6.220463066406069,7.972946528046194,12.037354899071033,10.895030368531195,7.905330513200909,182.89826155420545,182.89826155420545,0.0,203.22029061578382,0.0,182.89826155420545,203.22029061578382,0,0
+2017/03/25 16:00:00,194.71952910803796,0,1130.5082030325175,0,0,0,0.0,0.0,15.238036343299997,0.0,120.17895923267236,0,39.380909295966944,0.20368412996339683,16.285964903680973,0,0,127.99886461895962,541.1347557504843,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1599.5605895384024,0.0,3100.486378523814,0.0,3776.3116160104296,0.0,0.0,0.0,0.0,0.0,870.4123125165668,0.0,2385.5058334188493,0.0,3234.796067631227,0.0,0.0,0,0,0,0,0,0,0,0,0.060189094104413934,0.0019043409822041579,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5603779688502728,-0.5603779688502728,-0.2915478202398852,-0.2915478202398852,-0.5918851791181419,-0.5918851791181419,0.11911295989808715,0.11911295989808715,-0.19446430001226153,-0.19446430001226153,-0.31393233660350867,-0.3429791609118929,-0.5889526165893503,-0.5450699483078902,-0.35855496541718623,-0.27760289850854036,-0.3094215949181355,-0.5806723278704485,-0.5380513176482546,-0.3753311508363274,11.575882054613189,11.575882054613189,6.765939778511637,6.765939778511637,12.343542921073848,12.343542921073848,5.293882264222702,5.293882264222702,5.784119008346394,5.784119008346394,7.04863388811593,7.447106395997665,12.270274200597669,11.21844940175508,7.675539433995894,6.600531305837464,6.9899624404139615,12.065409586997475,11.057964687991557,7.933131202666061,194.71952910803796,194.71952910803796,0.0,216.3550323422644,0.0,194.71952910803796,216.3550323422644,0,0
+2017/03/25 17:00:00,217.2424886214197,0,1102.7917132557986,0,0,0,0.0,0.0,17.35500010156294,0.0,138.40412594678773,0,39.380909295966944,0.14053815416664184,18.529939920481123,0,0,79.75216692913664,561.6649636635883,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,123.44731558499511,0.0,1157.819435121398,0.0,3232.424062351961,0.0,3967.924484915521,0.0,0.0,0.0,0.0,0.0,393.2244695378773,0.0,2567.899132185261,0.0,3465.6521140200603,0.0,0.0,0,0,0,0,0,0,0,0,0.05871344765891267,0.0018576525572789211,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5009825504340967,-0.5009825504340967,-0.22157773926939758,-0.22157773926939758,-0.584583448301432,-0.584583448301432,0.1288430222326718,0.1288430222326718,-0.16808600864303413,-0.16808600864303413,-0.3903891001775824,-0.3109808890305052,-0.593813886690504,-0.5538781056688589,-0.35901164254666124,-0.3336271392567223,-0.2775925375972967,-0.5902913414628852,-0.5522519247841451,-0.37731472042763414,10.2457448467854,10.2457448467854,6.018505272893279,6.018505272893279,12.161804786718193,12.161804786718193,5.343893025437566,5.343893025437566,5.585579711781605,5.585579711781605,8.174564047906344,7.010146843054841,12.391934241835045,11.422873330959362,7.682392774968335,7.3149052490055055,6.60041145938888,12.30367532371882,11.384879015646689,7.9643813864284425,217.2424886214197,217.2424886214197,0.0,241.38054291268855,0.0,217.2424886214197,241.38054291268855,0,0
+2017/03/25 18:00:00,207.82250754133213,0,1071.2706833021905,0,0,0,0.0,0.0,18.669156022600564,0.0,120.14191543460078,0,39.380909295966944,0.07725148817073234,26.12130009753883,0,0,45.731045606971726,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,912.0704696536764,0.0,0.0,0.0,3519.7817883190824,0.0,2772.109563655403,0.0,0.0,0.0,321.7494478810843,0.0,0.0,0.0,2955.6779250669024,0.0,2354.157214177645,0.0,0.0,0,0,0,0,0,0,0,0,0.057035244676345555,0.001804555384714474,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4822625274600389,-0.4822625274600389,-0.3801901859382775,-0.3801901859382775,-0.5053368932260033,-0.5053368932260033,0.1544160854869406,0.1544160854869406,-0.14839431227391547,-0.14839431227391547,-0.40344430277505217,-0.27102547146946765,-0.559779958663965,-0.5364961072603525,-0.3293295897982784,-0.3827717591137875,-0.19850217732853037,-0.5560603581339575,-0.5378142261308895,-0.3474459442950185,9.858142620337674,9.858142620337674,8.00998106245521,8.00998106245521,10.338072579924997,10.338072579924997,5.4941110867254395,5.4941110867254395,5.4562883890588125,5.4562883890588125,8.391727485833812,6.525359530812111,11.561728196601337,11.02269282736259,7.255399868732468,8.05122079749053,5.817075731850807,11.474039938386,11.052580730821191,7.5115605676793535,207.82250754133213,207.82250754133213,0.0,230.9138972681468,0.0,207.82250754133213,230.9138972681468,0,0
+2017/03/25 19:00:00,218.79109436643787,0,1048.3627339976824,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,110.89738010901058,0,39.380909295966944,0.08500146075754209,26.066666007231177,0,0,58.313448815008044,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2047.1501433668702,0.0,744.2720101203574,0.0,4614.668300849553,0.0,2606.4048282207555,0.0,0.0,0.0,1403.1540294668582,0.0,204.95007291496592,0.0,4021.828222044855,0.0,2177.667041106717,0.0,0.0,0,0,0,0,0,0,0,0,0.05581560848730278,0.001765966945849714,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5054845014617912,-0.5054845014617912,-0.41822090006341006,-0.41822090006341006,-0.5322683498374811,-0.5322683498374811,0.12846037151397077,0.12846037151397077,-0.14084459881224762,-0.14084459881224762,-0.3991323779273887,-0.3605042740789635,-0.5503161093218715,-0.5185172242332831,-0.3021622061464646,-0.39644438035755836,-0.33407630459111415,-0.5504519996206976,-0.5224191960212486,-0.32189170379105186,10.341216767237071,10.341216767237071,8.64632646049563,8.64632646049563,10.927337636420447,10.927337636420447,5.341851921243247,5.341851921243247,5.41100182276125,5.41100182276125,8.319195625470627,7.704854598304237,11.339799815312674,10.622539410213491,6.8973471847579475,8.274382693050072,7.3211697931549935,11.34295898189373,10.7081961410466,7.154263638609677,218.79109436643787,218.79109436643787,0.0,243.10121596270875,0.0,218.79109436643787,243.10121596270875,0,0
+2017/03/25 20:00:00,199.74549525569455,0,1028.4793391615985,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,0.09851403353062058,23.015346039252588,0,0,73.92040649146811,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1798.381343905617,0.0,1675.0445801516344,0.0,4150.1148932325095,0.0,3154.56884170746,0.0,0.0,0.0,1307.7117637024521,0.0,1240.3464205791001,0.0,3637.6584973886756,0.0,2776.754944649125,0.0,0.0,0,0,0,0,0,0,0,0,0.05475700181846655,0.0017324733687574545,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5153201696501263,-0.5153201696501263,-0.4335181561644149,-0.4335181561644149,-0.5956476298570217,-0.5956476298570217,0.07453597098075193,0.07453597098075193,-0.19023155661120517,-0.19023155661120517,-0.4070610803205946,-0.385445881920701,-0.5487355016751387,-0.5179442989633303,-0.30282059799283084,-0.4141496682363615,-0.3801052943413955,-0.5528780251115215,-0.5259353882529785,-0.325136374380804,10.55284816324965,10.55284816324965,8.919757789261212,8.919757789261212,12.438092618664612,12.438092618664612,5.115032539188533,5.115032539188533,5.750303465496486,5.750303465496486,8.453179769897758,8.094239023552234,11.3031127794154,10.610017930186757,6.905655024180575,8.575246043447251,8.008629780165393,11.399493737768452,10.785948624688146,7.19809438483621,199.74549525569455,199.74549525569455,0.0,221.93943917299393,0.0,199.74549525569455,221.93943917299393,0,0
+2017/03/25 21:00:00,195.03439059415365,0,981.909808848594,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,0.07476323707358487,25.318108703109758,0,0,62.8412286910078,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1470.5695729071265,0.0,1766.6769353661575,0.0,3648.5843484863226,0.0,3025.5823767208935,0.0,0.0,0.0,1162.7053059128968,0.0,1484.0966064183544,0.0,3286.9114192634684,0.0,2743.885738369646,0.0,0.0,0,0,0,0,0,0,0,0,0.05227760553024062,0.0016540269984797657,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49378276506505947,-0.49378276506505947,-0.43081050908259344,-0.43081050908259344,-0.613381246805849,-0.613381246805849,0.037408870401065795,0.037408870401065795,-0.24970235226631393,-0.24970235226631393,-0.4107366547259595,-0.3988689234118063,-0.5452635040804663,-0.516262958285738,-0.3011001375903312,-0.4219112137340803,-0.4028306887507278,-0.5513803562336768,-0.5264939532051046,-0.32398467920271584,10.094880785306174,10.094880785306174,8.870628419319118,8.870628419319118,12.892007434823256,12.892007434823256,5.028970587820609,5.028970587820609,6.294189683889428,6.294189683889428,8.516204894875841,8.314789784376003,11.222905401735517,10.573353641676036,6.883984233308524,8.711370311102513,8.381357191614214,11.36456275467657,10.7983492619651,7.182485572448627,195.03439059415365,195.03439059415365,0.0,216.70487843794848,0.0,195.03439059415365,216.70487843794848,0,0
+2017/03/25 22:00:00,140.1493197753025,0,885.044283012963,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,0.20428193135831396,18.50568623951876,0,0,163.6752595289688,561.6624371775455,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1788.6305134149202,0.0,2398.060662503932,0.0,3756.275342400876,0.0,3477.754677161517,0.0,0.0,0.0,1494.4613681323272,0.0,2144.8655077821245,0.0,3389.914277017519,0.0,3189.2378909401255,0.0,0.0,0,0,0,0,0,0,0,0,0.04712041318581087,0.001490857027561614,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.624725226773464,-0.624725226773464,-0.5817498920593895,-0.5817498920593895,-0.6998691587655298,-0.6998691587655298,-0.13193902727253867,-0.13193902727253867,-0.4661879487058708,-0.4661879487058708,-0.4315863962767204,-0.4250259392335688,-0.5591897223570628,-0.5327626221366556,-0.32040517921171935,-0.44650071097667804,-0.43819020238037953,-0.5695872096489888,-0.5476187871633039,-0.3454535428026092,13.189528975312768,13.189528975312768,12.091901463013002,12.091901463013002,15.301214160542074,15.301214160542074,5.36063141306856,5.36063141306856,9.537381979535937,9.537381979535937,8.88467446227854,8.766723614236,11.547773539524599,10.938445766882921,7.13433193614685,9.159697218854333,9.005270876597933,11.795807250480493,11.27725831531582,7.4827061102025,140.1493197753025,140.1493197753025,0.0,155.72146641700277,0.0,140.1493197753025,155.72146641700277,0,0
+2017/03/25 23:00:00,93.24172590005132,0,750.3258094125166,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.23578287492336017,14.062986763835392,0,0,165.6549709675404,531.43530967616,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,981.7915210523201,0.0,0.0,0.0,0.0,0.0,1852.9571271409018,0.0,3268.493395474298,0.0,3634.104733771239,0.0,4204.221532492129,0.0,0.0,0.0,1655.4927502859127,0.0,3093.1909147700353,0.0,3403.367799207321,0.0,3973.748113194115,0.0,0.0,0,0,0,0,0,0,0,0,0.03994790186445159,0.001263923769006621,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7476235021673536,-0.7476235021673536,-0.7225712172393937,-0.7225712172393937,-0.8175387997907312,-0.8175387997907312,-0.3490827327009276,-0.3490827327009276,-0.5496354404594463,-0.5496354404594463,-0.45647051872071637,-0.4593764362630959,-0.580301841376814,-0.5582643014075209,-0.34514979912091504,-0.47732964903018266,-0.4780632955940189,-0.594226208698449,-0.5782562617984298,-0.37272327281920553,16.76995531493729,16.76995531493729,15.987206188208916,15.987206188208916,19.09620923332136,19.09620923332136,7.535391228216625,7.535391228216625,11.323987727388598,11.323987727388598,9.348875410432086,9.404820579399711,12.056312829574566,11.525924693429772,7.478322042394765,9.758524400403857,9.77327376033324,12.402300357110178,12.006193819292548,7.89230073684152,93.24172590005132,93.24172590005132,0.0,103.6019176667237,0.0,93.24172590005132,103.6019176667237,0,0
+2017/03/26 00:00:00,42.966322095341,0,558.3119444301617,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.635914189568805e-09,11.780688027905018,0,0,0.0,505.0764156613456,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029724941466841126,0.0009404764280174494,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7064278659202654,-0.7064278659202654,-0.6954134512211425,-0.6954134512211425,-0.8170987279074192,-0.8170987279074192,-0.3659142960424739,-0.3659142960424739,-0.20378329705112086,-0.20378329705112086,-0.5594076636879325,-0.524858748195821,-0.8790133104702067,-0.8182768370191003,-0.13515172457104932,-0.5666742887680934,-0.5228620998901933,-0.8329167142685823,-0.8182463554144839,-0.2481125327815898,15.4971171278101,15.4971171278101,15.169185241193432,15.169185241193432,19.080919155504773,19.080919155504773,7.787062412794839,7.787062412794839,5.8612086921882,5.8612086921882,11.552924456420655,10.762084366829654,21.31161456245475,19.121870264209804,5.378422169212499,11.725846254101924,10.717960480434456,19.635617245901784,19.120809986670736,6.27772018358165,42.966322095341,42.966322095341,0.0,47.74035788371222,0.0,42.966322095341,47.74035788371222,0,0
+2017/03/26 01:00:00,23.722181941328806,0,53.275349696207385,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250865176510131,0,0,0.0,17.78499718366325,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.00283641907923277,8.974232251973086e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7369911828208263,-0.7369911828208263,-0.7305205369531222,-0.7305205369531222,-0.8635220406707369,-0.8635220406707369,-0.4243879100662281,-0.4243879100662281,-0.08184751214813464,-0.08184751214813464,-0.6165382580896014,-0.5787819803809697,-0.9436664074972433,-0.8583095648315261,-0.06912782269249693,-0.6458854840587487,-0.596563700847733,-0.9534091215626014,-0.8923041736937867,-0.25670015078456243,16.434460347946924,16.434460347946924,16.232659184097542,16.232659184097542,20.738553474238415,20.738553474238415,8.755350994214481,8.755350994214481,5.138714542484195,5.138714542484195,12.974246381712774,12.01905718372089,23.80878002077479,20.547958911823144,5.098941745743005,13.759425141211594,12.461206318019308,24.199592381720578,21.811133777287125,6.367945635020249,23.722181941328806,23.722181941328806,0.0,26.357979934809784,0.0,23.722181941328806,26.357979934809784,0,0
+2017/03/26 02:00:00,28.397167345847535,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5778042593746389,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7543603942174674,-0.7543603942174674,-0.7512428302134793,-0.7512428302134793,-0.8856867743791468,-0.8856867743791468,-0.46212467383160133,-0.46212467383160133,-0.01051941498623899,-0.01051941498623899,-0.6688032928301298,-0.629538140652561,-0.9999971987474503,-0.9103748554813441,-0.047233568576079514,-0.7083084343514313,-0.6579773762751642,-1.0296255577282483,-0.9559359780821465,-0.2477918060717496,16.985040787857045,16.985040787857045,16.885266236169144,16.885266236169144,21.561523939194856,21.561523939194856,9.458064589140506,9.458064589140506,5.0022906892139645,5.0022906892139645,14.398554952068665,13.31744567698378,26.11953213450039,22.501845942836525,5.046187645764888,15.55363046060667,14.093806566190224,27.383558357262388,24.30156354623,6.274410539743755,28.397167345847535,28.397167345847535,0.0,31.552408162052817,0.0,28.397167345847535,31.552408162052817,0,0
+2017/03/26 03:00:00,23.721905564780155,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.52481014110236,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7958376772152155,-0.7958376772152155,-0.7957262278297911,-0.7957262278297911,-0.9302338627163964,-0.9302338627163964,-0.5258283251823429,-0.5258283251823429,0.04686159205341053,0.04686159205341053,-0.7245550421861703,-0.6816234497083656,-1.0582367817228187,-0.9627720598579106,-0.01853665587278087,-0.7775056834579679,-0.7211502858438249,-1.1064596748004794,-1.0235507339796375,-0.2500123530205438,18.351946290360743,18.351946290360743,18.34817540276879,18.34817540276879,23.276122983834995,23.276122983834995,10.783573272102814,10.783573272102814,5.045462959781531,5.045462959781531,16.04820667236055,14.766003578433981,28.634940294167592,24.578688301373504,5.007112959134034,17.738771145837916,15.943618181936117,30.8099165726249,27.121719595653374,6.29741346860061,23.721905564780155,23.721905564780155,0.0,26.357672849755726,0.0,23.721905564780155,26.357672849755726,0,0
+2017/03/26 04:00:00,39.88908940113494,0,377.53753416253585,0,0,0,0.0,0.009438164955278525,4.633261998087618,9.319298099999997,23.111338313975452,0,1.3237849055364252,0.9669378334059018,0.5250300851742512,0,0,288.8116528811755,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,199.1371107013499,0.0,0.0,0.0,0.0,1.4200543394022702,1663.2806648869152,0.1820602819873045,860.44864224201,1.888914275262266,3668.4136589056634,0.8663188381414102,1917.6193015022009,0.0,0.0,1.405719034789513,1704.816954034425,0.1992082924056433,831.70540749486,2.158661233425903,3522.328267749079,1.3172286598642131,1854.3106210523715,0.0,0.0,0,0,0,0,0,0,0,0,0.020100377963381877,0.0006359619476421787,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7557420095773478,-0.7557420095773478,-0.7590164040575366,-0.7590164040575366,-0.8660680055831942,-0.8660680055831942,-0.5010235787996848,-0.5010235787996848,0.17740390177158452,0.17740390177158452,-0.583624215266357,-0.5696683419692407,-0.7258950362292119,-0.6889981796387956,0.012312874573389398,-0.6237883217560344,-0.607853791532228,-0.7647803029378781,-0.7354788487346015,-0.23358074971194873,17.029391048707538,17.029391048707538,17.134826166569553,17.134826166569553,20.8320554603456,20.8320554603456,10.246610971560855,10.246610971560855,5.652393798720496,5.652393798720496,12.138101671051814,11.797761112279147,16.08950586774735,14.980597902363982,5.003138359599404,13.164744964159112,12.749060970471305,17.32153648992484,16.387133860647054,6.1321010917571925,39.88908940113494,39.88908940113494,0.0,44.32121044570549,0.0,39.88908940113494,44.32121044570549,0,0
+2017/03/26 05:00:00,74.59765275231372,0,307.2506556780264,0,0,0,0.0,0.0100506652801007,4.633261998087618,9.319298099999997,57.911447091112116,0,1.268702748598075,0.9298628996052609,0.5250292496305138,0,0,94.30854060276162,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3691295857689738,1629.2087230259751,0.2687126047491688,930.0266668773809,2.0662596235558794,3201.8018713785095,1.0185565902866074,1670.5716247255955,0.0,0.0,1.3173089400982008,1609.4105986463424,0.0,823.2364369639052,2.576369482800146,3229.352294185937,1.4343284528417257,1699.0700682441625,0.0,0.0,0,0,0,0,0,0,0,0,0.016358252490907128,0.0005175637061697062,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6057224770654153,-0.6057224770654153,-0.6155340517920498,-0.6155340517920498,-0.7297492342983248,-0.7297492342983248,-0.36901150680802014,-0.36901150680802014,0.49082766145814877,0.49082766145814877,-0.5684232394249394,-0.5570184155069314,-0.67757218297266,-0.6504971853602532,0.07887515490588184,-0.5983440153394294,-0.5902844027685452,-0.6900369541888212,-0.6753743849621752,-0.19499005018423754,12.694296902680904,12.694296902680904,12.94804027802006,12.94804027802006,16.208724445750804,16.208724445750804,7.834687313796721,7.834687313796721,10.033607744390395,10.033607744390395,11.767807475828505,11.496568439604403,14.649118364978037,13.886206506924651,5.128819683570413,12.506230210354175,12.303502003101784,15.011013703334811,14.586005660145617,5.788371527459404,74.59765275231372,74.59765275231372,0.0,82.88628083590413,0.0,74.59765275231372,82.88628083590413,0,0
+2017/03/26 06:00:00,105.32146532629062,0,769.0787277257307,0,0,0,0.12866883343784788,0.004812053376076468,8.33396954093373,13.929299233552332,80.56906512710079,0,1.0792091577760388,0.7513357784420808,0.5251056016718088,0,0,56.77109076174748,481.6203456324463,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,407.83883263840517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1015.8303337677335,0.0,552.6979709571247,2.397737429820457,2294.3884915011013,0.0,1166.603163988726,0.0,0.0,0.0,1060.9007911904964,0.0,526.0313300673323,2.4143159462560106,2295.0477523335358,0.0,1196.7350032642803,0.0,0.0,0,0,0,0,0,0,0,0,0.04094632112585873,0.001295513058481908,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4532019165727531,-0.4532019165727531,-0.46611528063510826,-0.46611528063510826,-0.5778515315554518,-0.5778515315554518,-0.230561509266951,-0.230561509266951,0.7315165303987285,0.7315165303987285,-0.5574844979158028,-0.5471790219115115,-0.6590519712293254,-0.6346651191414641,0.15399388406554887,-0.5853731910447633,-0.5787686884843471,-0.6679514737113557,-0.6559360151272565,-0.08158470507190484,9.286382130464133,9.286382130464133,9.535957212146286,9.535957212146286,11.996298986212622,11.996298986212622,6.102958364565012,6.102958364565012,16.263604262900287,16.263604262900287,11.50754265173785,11.267091589721602,14.123829328790094,13.454815024224331,5.4914100089728635,12.181349683830632,12.018731807752047,14.374392346097352,14.036911447124254,5.137824901910733,105.32146532629062,105.32146532629062,0.0,117.02385036254513,0.0,105.32146532629062,117.02385036254513,0,0
+2017/03/26 07:00:00,120.19901075682417,0,793.135352812907,0,0,0,0.0,0.0,7.372214670688671,0.0,69.33401494192633,0,39.380909295966944,0.15471538029685963,0.5251812654910627,0,0,36.78425825206972,490.1734507167564,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58.98857287748618,0.0,0.0,0.0,743.777152374766,0.0,0.0,0.0,0.0,0.0,2977.703611902588,0.0,3597.305710059458,0.0,4397.247742235511,0.0,3949.049631940894,0.0,2253.301551524305,0.0,2792.0962951944484,0.0,3450.9135525525417,0.0,4203.2625477340025,0.0,3775.308310105944,0.0,1479.4533249844014,0,0,0,0,0,0,0,0,0.042227113664402564,0.0013360364416153893,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6179560840318861,-0.6179560840318861,-0.6198531232064397,-0.6198531232064397,-0.6883460282158891,-0.6883460282158891,-0.3682123996510103,-0.3682123996510103,0.31008232777064115,0.31008232777064115,-0.5274389308158055,-0.5287527961396836,-0.6264087884804191,-0.5955514725065144,-0.17447016516294533,-0.5534901652552027,-0.5588668841098318,-0.632711765783539,-0.6103994711992495,-0.2506835815306632,13.011320955741667,13.011320955741667,13.061062871233517,13.061062871233517,14.961526437086576,14.961526437086576,7.822360542097556,7.822360542097556,6.998502782381621,6.998502782381621,10.819359357763787,10.848635338412862,13.234160059607731,12.435668551937113,5.630966683828419,11.413799024856658,11.540147230167264,13.402343517201203,12.814730509209994,6.304407605422625,120.19901075682417,120.19901075682417,0.0,133.5544563964713,0.0,120.19901075682417,133.5544563964713,0,0
+2017/03/26 08:00:00,151.3562703295172,0,884.9550546694669,0,0,0,0.0,0.0,10.89659452950939,0.0,96.91714705112861,0,39.380909295966944,0.15205869939097016,0.5775855510670611,0,0,75.33169175716316,490.2101902994065,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2866.5229989835734,0.0,3520.462645216435,0.0,4199.655806822275,0.0,3929.297736059397,0.0,163.6484377955909,0.0,2610.627658850788,0.0,3363.06925920094,0.0,3896.619730147548,0.0,3698.8649074040704,0.0,168.92547684495145,0,0,0,0,0,0,0,0,0.04711566260271111,0.0014907067224237674,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6381314022074499,-0.6381314022074499,-0.6341472443142667,-0.6341472443142667,-0.6898384946839392,-0.6898384946839392,-0.3674700825577091,-0.3674700825577091,-0.1983120647173069,-0.1983120647173069,-0.5184779223051924,-0.5241613230184781,-0.6129226780450601,-0.5980397978131797,-0.29055223569607913,-0.5438570079415636,-0.5541528054201271,-0.6188277737933134,-0.6142652669017075,-0.33709811153340474,13.548334709201441,13.548334709201441,13.440887606011486,13.440887606011486,15.005199113101312,15.005199113101312,7.810934181425523,7.810934181425523,5.815508760619295,5.815508760619295,10.621679999252478,10.746652373072052,12.880097869776506,12.498526849056375,6.753858503014612,11.190562311019647,11.429302772904265,13.034157979422886,12.91499222139474,7.363537812879073,151.3562703295172,151.3562703295172,0.0,168.17363369946355,0.0,151.3562703295172,168.17363369946355,0,0
+2017/03/26 09:00:00,150.21511073336976,0,1067.251146586411,0,0,0,0.0,0.0,9.455765784041175,0.0,97.06762091869685,0,39.380909295966944,0.353818461770041,0.5250210704404829,0,0,204.38348716971095,490.21895803498705,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,194.15559579274532,0.0,0.0,0.0,0.0,0.0,2565.0522358072485,0.0,5196.360081302521,0.0,4225.6917611490335,0.0,5260.551475687792,0.0,6.169239808024762,0.0,2180.8861130790588,0.0,4970.084776385247,0.0,3792.965775378587,0.0,4606.057092420245,0.0,4230.681331054866,0,0,0,0,0,0,0,0,0.05682124156429982,0.0017977844754218212,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5792855188319935,-0.5792855188319935,-0.6480426729812488,-0.6480426729812488,-0.6998402952686933,-0.6998402952686933,-0.2792616979350919,-0.2792616979350919,-0.27907792446779883,-0.27907792446779883,-0.493966152031024,-0.5397509225675067,-0.6146233385188615,-0.572679127427894,-0.31912640578308266,-0.5092743912904915,-0.5682423426179458,-0.6185663234166063,-0.6179589565501665,-0.3672268234722404,12.031389084990906,12.031389084990906,13.818614151251168,13.818614151251168,15.300356135766947,15.300356135766947,6.619777304749874,6.619777304749874,6.617639381831566,6.617639381831566,10.098695677996332,11.096631210994573,12.924311841369857,11.870469998463378,7.117260746703707,10.422267381649675,11.763461206492536,13.027304892021164,13.011396157455863,7.807194844905837,150.21511073336976,150.21511073336976,0.0,166.90567859263305,0.0,150.21511073336976,166.90567859263305,0,0
+2017/03/26 10:00:00,203.83073807132814,0,1226.255550638702,0,0,0,0.0,0.0,13.065493553185489,0.0,124.87761316689259,0,39.380909295966944,0.3407629629464794,22.7339838898823,0,0,183.29123049847263,581.5897374771558,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2361.0989185947315,0.0,5311.881210746073,0.0,4313.830992084236,0.0,5345.578721199549,0.0,0.0,0.0,1784.5971565477828,0.0,4955.40061202405,0.0,3649.588948668428,0.0,4770.833702705861,0.0,3719.392771139448,0,0,0,0,0,0,0,0,0.06528675381166589,0.0020656273819796753,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5039403050408795,-0.5039403050408795,-0.6074678342718469,-0.6074678342718469,-0.6419406491735131,-0.6419406491735131,-0.19065755095284018,-0.19065755095284018,-0.22381368144105201,-0.22381368144105201,-0.47345714871330585,-0.547762661621546,-0.6130181074467645,-0.567280144728714,-0.33162986649931725,-0.47567254744509513,-0.5700913281391224,-0.6120597234400476,-0.5881751392242751,-0.3730065394985008,10.308370615581538,10.308370615581538,12.739129190853504,12.739129190853504,13.651708527571358,13.651708527571358,5.753672865509813,5.753672865509813,6.039208246500877,6.039208246500877,9.681055581276723,11.2805863008265,12.882575530552373,11.74036706792019,7.287152825734381,9.725295166499762,11.807952263635755,12.857710679784091,12.250911877595357,7.896721683215773,203.83073807132814,203.83073807132814,0.0,226.47859785703127,0.0,203.83073807132814,226.47859785703127,0,0
+2017/03/26 11:00:00,222.32318191826633,0,1251.1443449083285,0,0,0,0.0,0.0,13.065493553185489,0.0,143.25325374857618,0,39.380909295966944,0.24611553941898903,22.94543457866433,0,0,136.87882593174962,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,978.4723538430902,0.0,4219.340396548533,0.0,3464.5085102273724,0.0,4227.717725791923,0.0,0.0,0.0,444.5884321156784,0.0,3966.9095515842273,0.0,2890.368784045846,0.0,3804.3095246482553,0.0,0.0,0,0,0,0,0,0,0,0,0.06661185165387665,0.002107552554037834,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42101694266642264,-0.42101694266642264,-0.520712676769776,-0.520712676769776,-0.5673514928196717,-0.5673514928196717,-0.020309405710952032,-0.020309405710952032,-0.15302502549265767,-0.15302502549265767,-0.4163119410461885,-0.5354153705728996,-0.5950906454203877,-0.5505573397345205,-0.33828357681752197,-0.3991982370781054,-0.5476447682854012,-0.5871889770213895,-0.5502789846635463,-0.36944427272811153,8.69555467097797,8.69555467097797,10.670653281248477,10.670653281248477,11.742078146603802,11.742078146603802,5.008538534006632,5.008538534006632,5.485239705748029,5.485239705748029,8.612909119717912,10.998243635931274,12.42405695887426,11.345408471023902,7.380264823956637,8.320297474748315,11.277859222862617,12.226390198953737,11.338936883497354,7.841374385163888,222.32318191826633,222.32318191826633,0.0,247.02575768696258,0.0,222.32318191826633,247.02575768696258,0,0
+2017/03/26 12:00:00,199.2959329105162,0,1137.6576074765017,0,0,0,0.0,0.0,13.016794053187484,0.0,124.80122689546741,0,39.380909295966944,0.1807121854303045,18.48431527800975,0,0,96.91311156512758,561.6247369920284,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,268.3271113616019,0.0,3950.9083832442857,0.0,4177.032724871063,0.0,4112.494499552913,0.0,0.0,0.0,0.0,0.0,3632.871271162295,0.0,3526.5854029534485,0.0,3659.307315244755,0.0,0.0,0,0,0,0,0,0,0,0,0.06056973369262319,0.0019163841534474188,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2945488028053116,-0.2945488028053116,-0.453105917663994,-0.453105917663994,-0.5737069273316312,-0.5737069273316312,-0.007494920775276007,-0.007494920775276007,-0.13985841243050787,-0.13985841243050787,-0.3344948423314855,-0.5322793078821835,-0.5887364801129675,-0.5620728346274886,-0.3355965265682753,-0.2647919336217512,-0.5371971481489165,-0.574439249034603,-0.5557028964842916,-0.35607728117517373,6.802609567440427,6.802609567440427,9.284553651587274,9.284553651587274,11.895380862414768,11.895380862414768,5.001162829456291,5.001162829456291,5.405261424394865,5.405261424394865,7.327014879964835,10.927583789617373,12.26488889775419,11.61608083408305,7.342435996009513,6.455800413841928,11.038579324715897,11.913158159364116,11.465644503605716,7.6385116506786375,199.2959329105162,199.2959329105162,0.0,221.43992545612912,0.0,199.2959329105162,221.43992545612912,0,0
+2017/03/26 13:00:00,199.22052229163452,0,1092.3010904431844,0,0,0,0.0,0.0,12.968094553189474,0.0,124.7641830973959,0,39.380909295966944,0.17173760155990814,18.503622541067955,0,0,100.86442110636094,547.8072629300219,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3626.0335948438396,0.0,4249.717425266111,0.0,4147.7485378835645,0.0,0.0,0.0,0.0,0.0,3177.9246422549772,0.0,3474.031192826575,0.0,3600.588476050565,0.0,0.0,0,0,0,0,0,0,0,0,0.058154919129894844,0.0018399811039472975,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.28911503814819717,-0.28911503814819717,-0.3533006322456053,-0.3533006322456053,-0.5946076325158087,-0.5946076325158087,-0.009763095585048759,-0.009763095585048759,-0.16622817531281822,-0.16622817531281822,-0.30558890318317666,-0.49812819550940785,-0.586330975992387,-0.5618314130044255,-0.34356544611573814,-0.2294799084565496,-0.49179474644483606,-0.5678134412864247,-0.5513075508518378,-0.3605928821794847,6.736492142558163,6.736492142558163,7.597326459669134,7.597326459669134,12.411896236133273,12.411896236133273,5.001973139441219,5.001973139441219,5.572691119931761,5.572691119931761,6.940787162026012,10.185666859713692,12.205089679003876,11.610347194108243,7.455517943396686,6.092611427774699,10.053618401912317,11.753161994479143,11.36286715166085,7.706190997901629,199.22052229163452,199.22052229163452,0.0,221.35613587959392,0.0,199.22052229163452,221.35613587959392,0,0
+2017/03/26 14:00:00,181.14472536187222,0,1058.7805908430769,0,0,0,0.0,0.0,13.01679398839311,0.0,111.01081017850728,0,39.380909295966944,0.1973641768219477,14.106872519728627,0,0,116.68511756423017,533.9564193845893,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3412.2188426820426,0.0,3513.5828149144636,0.0,4580.283498997144,0.0,0.0,0.0,0.0,0.0,2945.0006922595885,0.0,2859.745999310346,0.0,4117.689361101683,0.0,0.0,0,0,0,0,0,0,0,0,0.056370262902327585,0.0017835158249150788,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.349529459112739,-0.349529459112739,-0.3857341307908257,-0.3857341307908257,-0.6339580252834472,-0.6339580252834472,-0.03368520951925932,-0.03368520951925932,-0.22610183274053133,-0.22610183274053133,-0.2701839728218167,-0.44370825212676246,-0.5945131151019233,-0.5757218123944561,-0.3605778760610744,-0.1920908767405653,-0.4261799545794874,-0.5774531294259897,-0.5666787268697465,-0.37666991735953526,7.541915087608217,7.541915087608217,8.098894274977823,8.098894274977823,13.435801763699942,13.435801763699942,5.02348991615861,5.02348991615861,6.060611608966084,6.060611608966084,6.515873806624754,9.107476420670764,12.409517773966357,11.944348771912658,7.705964650036307,5.765065429712635,8.787337849290324,11.986565804192296,11.725952566130417,7.954204409328497,181.14472536187222,181.14472536187222,0.0,201.27191706874692,0.0,181.14472536187222,201.27191706874692,0,0
+2017/03/26 15:00:00,178.9182318804174,0,1121.3160642059192,0,0,0,0.0,0.0,13.01679398839311,0.0,108.75639138185811,0,39.380909295966944,0.3464923091480606,13.985669702596935,0,0,184.75753080488235,528.4194795067793,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2970.516318129041,0.0,3336.0083487210295,0.0,5005.699719288777,0.0,0.0,0.0,0.0,0.0,2397.2599567207208,0.0,2722.7557512354942,0.0,4571.091794417605,0.0,2398.8193239732504,0,0,0,0,0,0,0,0,0.05969969782460734,0.0018888568250484247,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4613894910662702,-0.4613894910662702,-0.39592043647538416,-0.39592043647538416,-0.6222787825271591,-0.6222787825271591,-0.06007432733169834,-0.06007432733169834,-0.2577645360310493,-0.2577645360310493,-0.304384690121629,-0.38476767296157693,-0.603043678606388,-0.5898585248735829,-0.3741801877162172,-0.2119347580335525,-0.3559211937239317,-0.5880271473495944,-0.5831914052860324,-0.3915815472754757,9.443789385070275,9.443789385070275,8.265683753727274,8.265683753727274,13.124893145304824,13.124893145304824,5.074718636021927,5.074718636021927,6.3793445841047856,6.3793445841047856,6.925464843605852,8.083299870524641,12.625744868355795,12.292868062034657,7.915075288020091,5.9316190493453576,7.636187749195756,12.247229254741228,12.127419797773342,8.194097077893048,178.9182318804174,178.9182318804174,0.0,198.798035422686,0.0,178.9182318804174,198.798035422686,0,0
+2017/03/26 16:00:00,193.29010222327884,0,1127.1497104690025,0,0,0,0.0,0.0,11.156669655582503,0.0,124.87761316689259,0,39.380909295966944,0.3204317237574198,14.1225031786251,0,0,135.40294575443272,530.372182051496,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2087.4553104237375,0.0,3294.9385348887236,0.0,4782.032322175742,0.0,0.0,0.0,0.0,0.0,1451.3884639532184,0.0,2741.2927498217323,0.0,4389.893596734586,0.0,538.2067701698609,0,0,0,0,0,0,0,0,0.06001028547267456,0.0018986836017358222,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5628707200993203,-0.5628707200993203,-0.31712576432742445,-0.31712576432742445,-0.5864437147059225,-0.5864437147059225,-0.033157175815582585,-0.033157175815582585,-0.21844997196023044,-0.21844997196023044,-0.36995007817272524,-0.34645988719019793,-0.6044778536617942,-0.5946688268428375,-0.3788160250566165,-0.30095056998645486,-0.3140353123404361,-0.5924702846977251,-0.5912450711888871,-0.39754571687688534,11.635048187263067,11.635048187263067,7.090691865792877,7.090691865792877,12.207886679175473,12.207886679175473,5.022759218077667,5.022759218077667,5.989896282137764,5.989896282137764,7.849200177596728,7.497259148697822,12.662407518930593,12.413436353761128,7.988145337014643,6.882106204430542,7.049983356613183,12.358206175393065,12.327518278290668,8.292706246486503,193.29010222327884,193.29010222327884,0.0,214.7667802480876,0.0,193.29010222327884,214.7667802480876,0,0
+2017/03/26 17:00:00,202.2042363133397,0,1083.1900015233095,0,0,0,0.0,0.0,11.357652356848849,0.0,129.38645076019097,0,39.380909295966944,0.14712469995401725,18.500123997924604,0,0,60.20218005007667,561.6132388101591,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.4218080036683,0.0,1577.1226863342192,0.0,3960.0528748051006,0.0,4927.296926656002,0.0,0.0,0.0,214.45458160488616,0.0,881.4717408515647,0.0,3407.1198198539832,0.0,4540.848948108636,0.0,0.0,0,0,0,0,0,0,0,0,0.0576698380071564,0.0018246334753532882,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5489106029493226,-0.5489106029493226,-0.22480581363441365,-0.22480581363441365,-0.5916631172041026,-0.5916631172041026,-0.030641441855088703,-0.030641441855088703,-0.1877851882939919,-0.1877851882939919,-0.42221670204409595,-0.3061493184409952,-0.6081817582109726,-0.6003257957746498,-0.374284908923263,-0.39542632789747584,-0.2732996784915963,-0.6019559849085502,-0.602537919165066,-0.39373308731802076,11.30717167166604,11.30717167166604,6.048461694959457,6.048461694959457,12.33798174596572,12.33798174596572,5.019436476609769,5.019436476609769,5.731100724478594,5.731100724478594,8.716780887123164,6.94793876230375,12.757505568270417,12.556510938257489,7.916715781616077,8.257490919664306,6.55114463040843,12.59799904768441,12.61283713723924,8.229494412187648,202.2042363133397,202.2042363133397,0.0,224.67137368148855,0.0,202.2042363133397,224.67137368148855,0,0
+2017/03/26 18:00:00,193.4109643715545,0,1139.0678960106795,0,0,0,0.0,0.0,12.088942716023777,0.0,115.6330778413024,0,39.380909295966944,0.2336511232996355,22.64240819250744,0,0,113.52825831546072,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2275.8428584517114,0.0,1418.5080826729056,0.0,4630.002173193531,0.0,4622.513876137691,0.0,0.0,0.0,1642.8473188347655,0.0,816.3067557388545,0.0,4152.702356108458,0.0,4281.421595101912,0.0,0.0,0,0,0,0,0,0,0,0,0.06064481849879294,0.0019187597843762026,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5894708523331027,-0.5894708523331027,-0.40477413445929045,-0.40477413445929045,-0.5909275351471384,-0.5909275351471384,-0.05789999020303362,-0.05789999020303362,-0.1885621453256715,-0.1885621453256715,-0.4446147678474241,-0.33025262977350195,-0.5956482335316591,-0.6017675071191065,-0.3603965290168566,-0.4401758650260311,-0.3103941856092881,-0.5932428078050842,-0.611383700633932,-0.38186157180149094,12.283194931703349,12.283194931703349,8.414257420501272,8.414257420501272,12.319575589770949,12.319575589770949,5.069406972026329,5.069406972026329,5.737172345230462,5.737172345230462,9.12439210298622,7.268114517472398,12.438107838192607,12.593196414785794,7.70323002287256,9.04189868665945,7.002540138632554,12.377589034385409,12.840195541982652,8.03664839855574,193.4109643715545,193.4109643715545,0.0,214.90107152394944,0.0,193.4109643715545,214.90107152394944,0,0
+2017/03/26 19:00:00,200.01448450558024,0,1118.2786020978624,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,104.13412371906301,0,39.380909295966944,0.21653886988578133,22.25574466812662,0,0,128.22931691518792,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2820.246279521496,0.0,2318.781018798268,0.0,5059.173803057766,0.0,4410.135517211456,0.0,0.0,0.0,2564.757466908399,0.0,2072.7332706755983,0.0,4847.812321005646,0.0,4248.228247129577,0.0,0.0,0,0,0,0,0,0,0,0,0.05953798109210596,0.0018837402203579427,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6080308714667023,-0.6080308714667023,-0.4667755289055536,-0.4667755289055536,-0.5891602936496948,-0.5891602936496948,-0.09595051041556087,-0.09595051041556087,-0.20921228494503522,-0.20921228494503522,-0.45892617405864766,-0.4187275566883653,-0.6049560588953288,-0.6021915986999153,-0.35001446739854936,-0.4649685832489233,-0.42193853788943875,-0.6103806856371852,-0.617824113855027,-0.3744027423533019,12.75361990514952,12.75361990514952,9.54891073501173,9.54891073501173,12.275450636657212,12.275450636657212,5.190657577907118,5.190657577907118,5.9077936651448795,5.9077936651448795,9.396128261996168,8.655221986839592,12.674652002807761,12.604004929013541,7.549007613392163,9.51350459601548,8.711854092717772,12.814244878006633,13.007866400051952,7.918562241973092,200.01448450558024,200.01448450558024,0.0,222.23831611731137,0.0,200.01448450558024,222.23831611731137,0,0
+2017/03/26 20:00:00,200.554388416101,0,1052.468894317098,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,0.24360139011262444,18.486608604115563,0,0,154.9662257950657,542.5991433965912,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3581.5143232680075,0.0,2904.542806623139,0.0,5649.777000239749,0.0,4593.45695877133,0.0,0.0,0.0,3453.0524349343195,0.0,2785.6932787914348,0.0,5534.810165227344,0.0,4475.017598109353,0.0,0.0,0,0,0,0,0,0,0,0,0.05603422350416877,0.001772883772596117,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6419677579748331,-0.6419677579748331,-0.5347131680506753,-0.5347131680506753,-0.6467618770969202,-0.6467618770969202,-0.15203047141021278,-0.15203047141021278,-0.24336288189769276,-0.24336288189769276,-0.465883223738902,-0.43411955066555186,-0.6019557553444601,-0.5988826064496757,-0.3387391220196637,-0.4788345396761771,-0.44552164422911666,-0.6113446943981966,-0.6185953639909441,-0.36456615971127876,13.652446450539983,13.652446450539983,10.98238502738623,10.98238502738623,13.783447304039356,13.783447304039356,5.47894642620129,5.47894642620129,6.229149540140867,6.229149540140867,9.531408909157491,8.930712620777811,12.597993197187066,12.519878203161426,7.3867084778583205,9.788804017266642,9.141349866071394,12.839185531014067,13.028065951569417,7.766460210625581,200.554388416101,200.554388416101,0.0,222.83820935122333,0.0,200.554388416101,222.83820935122333,0,0
+2017/03/26 21:00:00,187.27503233853298,0,1169.0779613556513,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,0.47125945426111715,23.241804974586078,0,0,250.00938119806503,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2338.4774395482596,0.0,4164.534817479138,0.0,4213.252936310584,0.0,5590.755246879138,0.0,1438.4393843254352,0.0,2445.657822013403,0.0,4224.947596556274,0.0,4325.90160949829,0.0,5595.275580041693,0.0,4558.720950632607,0,0,0,0,0,0,0,0,0.0622425766064147,0.0019693117371720817,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6695175097646799,-0.6695175097646799,-0.6278531000716887,-0.6278531000716887,-0.6768513917855072,-0.6768513917855072,-0.23235917500993508,-0.23235917500993508,-0.3256052385647535,-0.3256052385647535,-0.48483293203965294,-0.4657068020814054,-0.6142429875008231,-0.6163935030214639,-0.35517624014841287,-0.5067583350797112,-0.4888468028484301,-0.6297096227826386,-0.6428998400146501,-0.38713868855560557,14.41883856485866,14.41883856485866,13.272546651022154,13.272546651022154,14.628396849335644,14.628396849335644,6.120263972842679,6.120263972842679,7.204464964679744,7.204464964679744,9.910467333844636,9.52795260629972,12.91441253370806,12.970466105450825,7.625110822984112,10.368389699437756,9.99274642750639,13.32202183852641,13.677837845079182,8.121628818969754,187.27503233853298,187.27503233853298,0.0,208.08336926503665,0.0,187.27503233853298,208.08336926503665,0,0
+2017/03/26 22:00:00,131.28136298165373,0,1000.916819979626,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,0.5539594508741417,18.495543453872735,0,0,279.59570206629166,561.6145316068857,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,699.7482773147517,0.0,0.0,0.0,1661.2999084012295,0.0,0.0,0.0,0.0,0.0,2902.2082920448106,0.0,5253.309466146297,0.0,4661.905168402996,0.0,6450.687294822238,0.0,7033.259511505082,0.0,2727.1794339913777,0.0,5157.35803552594,0.0,4539.101554807705,0.0,6342.253311778462,0.0,11423.66938922819,0,0,0,0,0,0,0,0,0.053289552881476625,0.0016860443072873816,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7632601107176075,-0.7632601107176075,-0.7410015907664659,-0.7410015907664659,-0.7865716787692536,-0.7865716787692536,-0.45987389672221207,-0.45987389672221207,-0.4880897631803672,-0.4880897631803672,-0.5123617297546376,-0.5052903482445077,-0.6374539188304489,-0.6454112771091597,-0.3817068377798479,-0.5412059583152008,-0.5345244350516661,-0.6561364575261579,-0.6740805547592197,-0.4183212797236732,17.27215500250638,17.27215500250638,16.56043616841184,16.56043616841184,18.04022986812862,18.04022986812862,9.414434209143195,9.414434209143195,9.9771748923187,9.9771748923187,10.488752272723161,10.337081325555616,13.53001535495757,13.746440889442184,8.034174573403703,11.129833144021688,10.97812630491373,14.04249001566194,14.548949348656691,8.648087982895163,131.28136298165373,131.28136298165373,0.0,145.86818109072635,0.0,131.28136298165373,145.86818109072635,0,0
+2017/03/26 23:00:00,89.14531721947631,0,899.4191931073326,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.642713830494071,9.559647127689663,0,0,352.74797782843365,493.43568651008275,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2255.905000368437,0.0,998.0080331282602,0.0,3179.9872918586507,0.0,226.03880633200203,0.0,0.0,0.0,3395.2145549737015,0.0,5826.845103931408,0.0,5068.351257524425,0.0,6901.068284413675,0.0,10924.833991260362,0.0,3399.879944377489,0.0,5816.408675074316,0.0,5096.772055004492,0.0,6886.788255830485,0.0,15033.392844810387,0,0,0,0,0,0,0,0,0.04788574404682685,0.0015150715625245426,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8548197593037795,-0.8548197593037795,-0.8353975979627685,-0.8353975979627685,-0.8803930008084526,-0.8803930008084526,-0.694563195629506,-0.694563195629506,-0.6380450853265697,-0.6380450853265697,-0.5387188218809085,-0.5370777166086468,-0.6582189504628632,-0.6691305921281511,-0.4064231533096316,-0.5718850047639289,-0.5735699414185053,-0.6792919941528668,-0.7002977139585479,-0.44611415700054136,20.42098312581207,20.42098312581207,19.72356749270851,19.72356749270851,21.36313174857328,21.36313174857328,15.144088381777095,15.144088381777095,13.545999568150592,13.545999568150592,11.073135686863239,11.035871346353375,14.100551469887733,14.407847442644098,8.442300143565006,11.851254171380305,11.892058077449661,14.69865080415525,15.313958046175898,9.152448414565555,89.14531721947631,89.14531721947631,0.0,99.05035246608479,0.0,89.14531721947631,99.05035246608479,0,0
+2017/03/27 00:00:00,39.364651815755735,0,546.651165759829,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5785835026880474e-09,9.56733081675398,0,0,0.0,493.4156369910128,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029104112973216124,0.0009208338472323123,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8053324735097147,-0.8053324735097147,-0.7712294849215386,-0.7712294849215386,-0.8810075012285397,-0.8810075012285397,-0.618133883993293,-0.618133883993293,-0.31519558094739214,-0.31519558094739214,-0.639628193779796,-0.575857511378551,-0.9013147386946831,-0.9184731763213613,-0.2093502366353323,-0.702176541906986,-0.6382557164584635,-0.9200260524090138,-0.9359190517608397,-0.3159599998793393,18.675132870707245,18.675132870707245,17.532126768981954,17.532126768981954,21.386102140387763,21.386102140387763,13.015976383183371,13.015976383183371,7.065219391042021,7.065219391042021,13.588878980883521,11.947653005626435,22.15388552621856,22.815675368102404,5.908993469288291,15.369922055154717,13.55169836557225,22.87615478690371,23.50068887509542,7.075288492848259,39.364651815755735,39.364651815755735,0.0,43.73850201750637,0.0,39.364651815755735,43.73850201750637,0,0
+2017/03/27 01:00:00,23.753866885656244,0,51.4678710651152,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5567714619784512,0,0,0.0,15.977518552571059,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0027401875781019503,8.669762490284139e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8401457784389782,-0.8401457784389782,-0.8009374235137747,-0.8009374235137747,-0.9296213227409184,-0.9296213227409184,-0.6419119187439926,-0.6419119187439926,-0.1649785888992063,-0.1649785888992063,-0.6991549115943859,-0.6312482998240618,-0.9997073241741671,-0.986790782549251,-0.150570765907712,-0.7936931501817153,-0.723267372289903,-1.0721979052376918,-1.0708574047864161,-0.3059974751633778,19.892613691293306,19.892613691293306,18.525058785884625,18.525058785884625,23.252004491339207,23.252004491339207,13.65092649738969,13.65092649738969,5.564103155872999,5.564103155872999,15.279992311697185,13.363139960277095,26.107328332253203,25.566785446123376,5.46978439489358,18.279478641049693,16.008592919753525,29.256263240308613,29.196305976935534,6.9459997396554485,23.753866885656244,23.753866885656244,0.0,26.393185428506936,0.0,23.753866885656244,26.393185428506936,0,0
+2017/03/27 02:00:00,28.344224164448015,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248610779751189,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8489963311429238,-0.8489963311429238,-0.8097370693619562,-0.8097370693619562,-0.9427691339804938,-0.9427691339804938,-0.6546105588269762,-0.6546105588269762,-0.08358871386332867,-0.08358871386332867,-0.7440705086575019,-0.6734154021479469,-1.0535024599030889,-1.0358580013642513,-0.12937662048182025,-0.857919239123933,-0.7857327484512093,-1.1523759208390665,-1.1477364247169155,-0.3052933463113084,20.210224959558047,20.210224959558047,18.82635165520705,18.82635165520705,23.7729760179151,23.7729760179151,14.00006612690872,14.00006612690872,5.144681128892756,5.144681128892756,16.657303813262985,14.529927054185919,28.425824452877237,27.65360614480376,5.346749466523747,20.533731913720402,18.012187402693144,32.95380576492238,32.73408507268444,6.937020837741173,28.344224164448015,28.344224164448015,0.0,31.493582404942238,0.0,28.344224164448015,31.493582404942238,0,0
+2017/03/27 03:00:00,23.722047704288645,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249522806108532,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8772292919395377,-0.8772292919395377,-0.8382351445102105,-0.8382351445102105,-0.9736142145172689,-0.9736142145172689,-0.6874620263084309,-0.6874620263084309,-0.017906536558381887,-0.017906536558381887,-0.7969002446939841,-0.7207961910175977,-1.1124391245909215,-1.0904415936258798,-0.10238314499299322,-0.9286381418246382,-0.8532191493631918,-1.233038313702143,-1.2262293298012739,-0.3062921250832721,21.245115786173443,21.245115786173443,19.82447743767439,19.82447743767439,25.021953417872027,25.021953417872027,14.935704103554258,14.935704103554258,5.006637587789811,5.006637587789811,18.387924661320454,15.932769617697147,31.085174447675612,30.078511877862425,5.217090604617951,23.21332351177469,20.362914349401834,36.87742160355241,36.53902414540895,6.9497632781870635,23.722047704288645,23.722047704288645,0.0,26.357830782542937,0.0,23.722047704288645,26.357830782542937,0,0
+2017/03/27 04:00:00,42.536959612397645,0,359.65783238165733,0,0,0,0.0,0.012797716244566928,4.633261998087618,9.319298099999997,25.555573451546493,0,1.4449565292267026,1.0460365933510634,0.525035223941191,0,0,270.931951100297,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.05948645877498,0.0,0.0,0.11729456781934762,479.341609608173,0.0,0.0,0.0,0.0,1.2212401431194797,1704.786498054484,0.11132178956454986,724.3775133426066,2.1230031774796565,3470.6204542396595,1.5984768185206168,2011.1821662974373,0.0,0.0,1.5647563089521805,2415.8181656949037,1.1475233037128365,1136.909675393855,2.9452198785827215,4137.834992638596,1.9688802568155346,2457.176482068319,0.0,0.0,0,0,0,0,0,0,0,0,0.0191484493969536,0.0006058435913493352,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8357786285963851,-0.8357786285963851,-0.8029468262131303,-0.8029468262131303,-0.8808386532565727,-0.8808386532565727,-0.6587438396199402,-0.6587438396199402,0.11597928485402542,0.11597928485402542,-0.6474018103997179,-0.6302511533161591,-0.7837539017528505,-0.7852842402814919,-0.07152301937773566,-0.7143841316942952,-0.7012855183827527,-0.8446133688860324,-0.8597030932529005,-0.29292953554107143,19.737098287422597,19.737098287422597,18.59357084184788,18.59357084184788,21.379788958895304,21.379788958895304,14.1152154223102,14.1152154223102,5.278613436653842,5.278613436653842,13.80100907962067,13.336481464862203,17.946160029067585,17.997207630173534,5.105918550180036,15.737254586599548,15.343362445211412,20.052529745427265,20.598803196619826,6.782776062397176,42.536959612397645,42.536959612397645,0.0,47.263288458219606,0.0,42.536959612397645,47.263288458219606,0,0
+2017/03/27 05:00:00,75.45731422418532,0,299.9351155707508,0,0,0,0.0,0.009611128485153756,5.555297838843742,9.319298099999997,57.911447091112116,0,1.2321821360485865,0.9044491368339259,0.5250287928617755,0,0,86.99300049548599,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5872412000165923,1184.2535555906998,0.0,495.575419641708,2.135268519923102,2775.3323147779356,1.0576554842112955,1576.4829883508874,0.0,0.0,1.5649988727610094,1869.920025381758,0.0,860.7399144056556,2.596354397998539,3472.6383562847764,1.6696100102432183,2049.3239153186732,0.0,0.0,0,0,0,0,0,0,0,0,0.01596876771692644,0.0005052406794142404,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6415957793979699,-0.6415957793979699,-0.6120581116427188,-0.6120581116427188,-0.7208222221968076,-0.7208222221968076,-0.4739267985104419,-0.4739267985104419,0.4422510628811371,0.4422510628811371,-0.6229264646230729,-0.612574843717855,-0.7241954473140553,-0.7318047258076312,0.04775549320782715,-0.6639947131246227,-0.6652571717837948,-0.7485745478041389,-0.7669751856998948,-0.17051729351310277,13.642323681739143,13.642323681739143,12.857668895989036,12.857668895989036,15.933566962954856,15.933566962954856,9.69041640362093,9.69041640362093,9.08035914231128,9.08035914231128,13.14197983436405,12.871070293630694,16.03713695024267,16.272566320909135,5.047214124787558,14.26256728945512,14.298172948797458,16.80020104280493,17.39300851494987,5.602664032156937,75.45731422418532,75.45731422418532,0.0,83.84146024909481,0.0,75.45731422418532,83.84146024909481,0,0
+2017/03/27 06:00:00,101.73172134118944,0,779.8878828720623,0,0,0,0.21721308709450998,0.009748514059896024,11.110595677687485,13.929299233552332,73.80580873715317,0,1.2772321925449222,0.8567659690182525,0.5250579300788617,0,0,67.48909327280298,481.7114982677224,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,691.1873927517295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2606751888889296,1229.650977552879,0.0,584.8781928485854,1.770362919721265,2549.2440497762427,1.4871815659010583,1469.7839836614512,0.0,0.0,1.1134976151258797,1611.8677809408523,0.0,793.5232173203844,2.900029473343541,2834.6580120691174,1.21676729691535,1681.1816845981916,0.0,0.0,0,0,0,0,0,0,0,0,0.041521808552262694,0.0013137210795055023,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5445873288475541,-0.5445873288475541,-0.5212041564327196,-0.5212041564327196,-0.6261381803555024,-0.6261381803555024,-0.39046997614048545,-0.39046997614048545,0.6957618989383791,0.6957618989383791,-0.6118116843485228,-0.6029471055016362,-0.705404264605956,-0.713012440903955,0.13225127789539876,-0.6470969143353331,-0.6511269911407194,-0.7217453507803753,-0.7420291144119406,-0.07151063268911177,11.207345709896018,11.207345709896018,10.681452749517646,10.681452749517646,13.226977964954102,13.226977964954102,8.175886925775728,8.175886925775728,15.17947933781366,15.17947933781366,12.851281908288755,12.623279321944352,15.466420795851718,15.695659288117284,5.362341709092249,13.792639561484222,13.903592201946907,15.961861613929273,16.592824043264287,5.1058818580470415,101.73172134118944,101.73172134118944,0.0,113.03524593465494,0.0,101.73172134118944,113.03524593465494,0,0
+2017/03/27 07:00:00,149.48619612784154,0,1028.8807654538325,0,0,0,0.0,0.0,9.739607277421733,0.0,69.33401494192633,0,39.380909295966944,0.5030684710784591,27.096620938993784,0,0,163.0477140650627,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1660.6797607569476,0.0,821.1088950015592,0.0,2426.1317402577574,0.0,574.8998066094846,0.0,0.0,0.0,4774.367891645083,0.0,5911.970762892884,0.0,6334.997595877363,0.0,6423.807221351864,0.0,2868.597084858182,0.0,4547.857080508431,0.0,6043.579865668798,0.0,6493.4448180358195,0.0,6455.268704523194,0.0,5912.798435919793,0,0,0,0,0,0,0,0,0.05477837405160422,0.001733149571316255,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6766629894792217,-0.6766629894792217,-0.6681168257720618,-0.6681168257720618,-0.7299689154012476,-0.7299689154012476,-0.5983713244948905,-0.5983713244948905,0.13044490816781054,0.13044490816781054,-0.6007048457644203,-0.6065054727414755,-0.6937597218397272,-0.6847280840307571,-0.2252231342266143,-0.6780939455038182,-0.6535683181602336,-0.7084448024130896,-0.706650777260522,-0.31528375184162055,14.622984310801513,14.622984310801513,14.37908024666045,14.37908024666045,16.215538892339367,16.215538892339367,12.506921926125884,12.506921926125884,5.3525037707036205,5.3525037707036205,12.566147421623626,12.714393045573999,15.120401071645247,14.856057483873315,6.052366302860321,14.664132172691836,13.971147170764468,15.55773441530907,15.503807911580182,7.066379535603204,149.48619612784154,149.48619612784154,0.0,166.09577347537947,0.0,149.48619612784154,166.09577347537947,0,0
+2017/03/27 08:00:00,165.2558385933435,0,1107.3532822181824,0,0,0,0.0,0.0,11.86011032607099,0.0,83.2008179303116,0,39.380909295966944,0.3918687105072899,26.99015712803239,0,0,188.284702060596,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,157.65391592728406,0.0,1417.1190671401819,0.0,0.0,0.0,0.0,0.0,3807.458885984459,0.0,5421.2569164705665,0.0,5709.62690160566,0.0,5243.689628145997,0.0,138.00405350759473,0.0,3736.035512241144,0.0,5433.672363913987,0.0,5656.747036127112,0.0,4995.092188747873,0.0,2061.3924115018103,0,0,0,0,0,0,0,0,0.058956308969254516,0.0018653365198498392,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6711715314606456,-0.6711715314606456,-0.7159220296574528,-0.7159220296574528,-0.7663653184866965,-0.7663653184866965,-0.41743835225020537,-0.41743835225020537,-0.33474638507020477,-0.33474638507020477,-0.557245220084933,-0.5986624481811931,-0.6787626521861223,-0.6117705734769384,-0.32452237023276564,-0.5878657436245922,-0.6439779466073619,-0.691654880808701,-0.6203592809193803,-0.3804001362626027,14.465897235629129,14.465897235629129,15.783986375266778,15.783986375266778,17.373128760584805,17.373128760584805,8.632608652853108,8.632608652853108,7.330531376552244,7.330531376552244,11.501907523698833,12.514297832853472,14.68339154566209,12.850216639036617,7.189765847295305,12.243213975602316,13.707254170648412,15.058480225850928,13.074361132655866,8.013324318070545,165.2558385933435,165.2558385933435,0.0,183.61759843704831,0.0,165.2558385933435,183.61759843704831,0,0
+2017/03/27 09:00:00,181.64784594446266,0,1138.4369140162294,0,0,0,0.0,0.0,11.435487997441953,0.0,106.27511244621549,0,39.380909295966944,0.3316767358714488,20.79268426651256,0,0,184.68336479370572,581.1048478408103,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,819.7971208927079,0.0,0.0,0.0,0.0,0.0,2982.3395232792886,0.0,5327.8569333935175,0.0,5538.397735230255,0.0,4789.854242432288,0.0,5.258117550569467,0.0,2581.800014900334,0.0,5191.948086901948,0.0,5234.03318008533,0.0,4248.79313431845,0.0,1454.6810250483902,0,0,0,0,0,0,0,0,0.06061122455003584,0.001917696895254442,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5210925430554205,-0.5210925430554205,-0.6955598985150367,-0.6955598985150367,-0.7496554942812094,-0.7496554942812094,-0.15317454546873446,-0.15317454546873446,-0.31975424903784927,-0.31975424903784927,-0.48559164558930434,-0.589126455275643,-0.6649409082686246,-0.5348467981657504,-0.33190691896401586,-0.4939554882067015,-0.6289767292948787,-0.6724555889114197,-0.528441821809152,-0.3778656492118531,10.678999309204087,10.678999309204087,15.173511055109259,15.173511055109259,16.834625009722615,16.834625009722615,5.486189391863931,5.486189391863931,7.125633580881498,7.125633580881498,9.925966667608705,12.274607073639288,14.289246753653345,10.985401297173667,7.29099240039757,10.098473804868604,13.302472813787745,14.502511694266843,10.841699354328455,7.973090792984294,181.64784594446266,181.64784594446266,0.0,201.83093993829183,0.0,181.64784594446266,201.83093993829183,0,0
+2017/03/27 10:00:00,212.53406642959888,0,1261.0779030541962,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.4576951374419102,18.569901006785916,0,0,238.12971502326315,561.5736053678592,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2306.1452368413525,0.0,5694.034738392847,0.0,4458.114248721791,0.0,5479.02979616819,0.0,336.57391769583296,0.0,1938.830515217585,0.0,5519.779099411269,0.0,4071.383148676074,0.0,5079.018756548467,0.0,5948.4553334157645,0,0,0,0,0,0,0,0,0.06714072164741537,0.0021242856319806033,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5270315912476179,-0.5270315912476179,-0.6108097642399675,-0.6108097642399675,-0.6993452682907253,-0.6993452682907253,-0.18753995522187236,-0.18753995522187236,-0.24853898613935096,-0.24853898613935096,-0.5041784732450627,-0.580863895478297,-0.6507302991054708,-0.5761165641089907,-0.3433287893197207,-0.5116548626316915,-0.6160150331944373,-0.6548690602139303,-0.5754058280729555,-0.3850680456481721,10.810298060431691,10.810298060431691,12.825340938013198,12.825340938013198,15.285646073622829,15.285646073622829,5.729189558250198,5.729189558250198,6.2821275379610455,6.2821275379610455,10.3134298991977,12.070115587202125,13.89263957290467,11.953963088230424,7.452120824370681,10.473493719940308,12.960586668937708,14.007246027652812,11.936657734946692,8.088142300080364,212.53406642959888,212.53406642959888,0.0,236.14896269955432,0.0,212.53406642959888,236.14896269955432,0,0
+2017/03/27 11:00:00,228.2608959791568,0,1168.6859368834623,0,0,0,0.0,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,0.17371941053797496,20.713903294862575,0,0,91.52485658268782,562.5509688688846,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1395.9423529319165,0.0,3983.1628257039392,0.0,4142.219053762903,0.0,3765.377754870972,0.0,0.0,0.0,1082.3307125376477,0.0,3930.419409355161,0.0,3792.8844729288285,0.0,3470.520663981817,0.0,0.0,0,0,0,0,0,0,0,0,0.06222170493314022,0.001968651371978434,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3971750294808621,-0.3971750294808621,-0.515639948894132,-0.515639948894132,-0.600015809118286,-0.600015809118286,-0.010042512792378647,-0.010042512792378647,-0.14209033366920618,-0.14209033366920618,-0.4130709625378308,-0.5431038201987523,-0.6108649931579716,-0.5319744176815135,-0.32748842269319306,-0.39455813157096137,-0.5633759921432715,-0.605946128520324,-0.518383455828299,-0.3558835998161897,8.286533120610727,8.286533120610727,10.559798993316761,10.559798993316761,12.548634868065363,12.548634868065363,5.002087697592884,5.002087697592884,5.418310856862021,5.418310856862021,8.556531752765522,11.173277622470351,12.826769749503512,10.92073690811327,7.230146199561034,8.243120608673678,11.647073805036896,12.700034362195083,10.61961458452582,7.635628188824043,228.2608959791568,228.2608959791568,0.0,253.62321775461865,0.0,228.2608959791568,253.62321775461865,0,0
+2017/03/27 12:00:00,207.79119393162557,0,1135.748079906143,0,0,0,0.0,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,0.15239802531312466,18.590346621309457,0,0,95.07387468128209,561.5544463055153,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1892.5911883080812,0.0,2739.5462927426365,0.0,4428.602197508848,0.0,2714.388575625878,0.0,0.0,0.0,1385.8465476619992,0.0,2607.2043627997955,0.0,3967.443150095905,0.0,2344.548550978509,0.0,0.0,0,0,0,0,0,0,0,0,0.06046806903037749,0.0019131675544000804,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5310561983289376,-0.5310561983289376,-0.44742713743501156,-0.44742713743501156,-0.4792879578739489,-0.4792879578739489,0.05007286242726575,0.05007286242726575,-0.1052461778479615,-0.1052461778479615,-0.4174301877370295,-0.5115422127940017,-0.5787575713542892,-0.5217689115196431,-0.3110491290678519,-0.4029208628437641,-0.5229696598269029,-0.5680238142179521,-0.5086000998532848,-0.33308054380174257,10.900140887482664,10.900140887482664,9.177096066168076,9.177096066168076,9.797946307612719,9.797946307612719,5.051908027054438,5.051908027054438,5.229407817194343,5.229407817194343,8.632465669977577,10.471064037912981,12.018459674375151,10.693875233994135,7.011032532104011,8.382880155661937,10.720333047689138,11.75821268473905,10.407801563674795,7.307293390836506,207.79119393162557,207.79119393162557,0.0,230.87910436847284,0.0,207.79119393162557,230.87910436847284,0,0
+2017/03/27 13:00:00,205.23497985303675,0,1061.7723311810958,0,0,0,0.0,0.0,16.73568395689411,0.0,129.2730206906943,0,39.380909295966944,0.11134433345273136,16.30204637357435,0,0,77.15106209282509,540.9918626814691,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1574.6806015067104,0.0,2930.8569750179527,0.0,4218.949156948659,0.0,3080.865458591898,0.0,0.0,0.0,1007.6418086027994,0.0,2723.589087270936,0.0,3713.080289964194,0.0,2678.7005874555953,0.0,0.0,0,0,0,0,0,0,0,0,0.056529545373925724,0.0017885554112874024,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5610365322042272,-0.5610365322042272,-0.41012631643035147,-0.41012631643035147,-0.4308509626391151,-0.4308509626391151,0.06627671601196142,0.06627671601196142,-0.12177815956190649,-0.12177815956190649,-0.3999336013907423,-0.4882049771461066,-0.5652034964438922,-0.5142955978463521,-0.3117585236592082,-0.3839762083021886,-0.49414191429025894,-0.5529775095751288,-0.5018141789431606,-0.33224158464267645,11.591487043690464,11.591487043690464,8.505699353566357,8.505699353566357,8.871360119624086,8.871360119624086,5.090946980132713,5.090946980132713,5.307189571530799,5.307189571530799,8.332613009299934,9.979543130140968,11.690661373610155,10.530607515234038,7.0202514578647595,8.070558801075094,10.102353321512226,11.401817514591514,10.26331505509394,7.295634760780004,205.23497985303675,205.23497985303675,0.0,228.03886650337415,0.0,205.23497985303675,228.03886650337415,0,0
+2017/03/27 14:00:00,189.43449448858465,0,1091.3642798795804,0,0,0,0.0,0.0,16.86091082671979,0.0,115.5196477718057,0,39.380909295966944,0.18391932157969537,14.057132070058246,0,0,143.87285057935745,539.3523754059656,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1957.0513526877744,0.0,4304.816908113045,0.0,3951.400734323106,0.0,4419.532517643434,0.0,0.0,0.0,1479.7705024463125,0.0,4071.866794885698,0.0,3393.246644012712,0.0,4009.189876017679,0.0,0.0,0,0,0,0,0,0,0,0,0.05810504264158674,0.0018384030466240093,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5903460663058985,-0.5903460663058985,-0.4856309884363562,-0.4856309884363562,-0.5351966441734494,-0.5351966441734494,-0.013001868975289287,-0.013001868975289287,-0.18069770575551639,-0.18069770575551639,-0.4503073995666331,-0.517883046779362,-0.5805436452750798,-0.538711038006122,-0.32753399570611713,-0.4514419179600199,-0.5331604720733139,-0.5765370658633481,-0.5356106397238082,-0.35206710668431,12.305042360681867,12.305042360681867,9.926771058120082,9.926771058120082,10.99330160793616,10.99330160793616,5.003499417054428,5.003499417054428,5.676878796006406,5.676878796006406,9.231424897355197,10.608680082876717,12.062249297803632,11.072958664159813,7.230769548887437,9.252922668269406,10.947394615121425,11.96421199263493,11.00265740836366,7.5791351903790485,189.43449448858465,189.43449448858465,0.0,210.48277165398292,0.0,189.43449448858465,210.48277165398292,0,0
+2017/03/27 15:00:00,182.76769775051034,0,1164.0984151497992,0,0,0,0.0,0.0,16.798297350153536,0.0,108.75639138185811,0,39.380909295966944,0.37555919834619783,14.024565321731272,0,0,236.66975664668837,519.2896046088533,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1694.354332019407,0.0,4907.391785048842,0.0,3487.4192171258624,0.0,4672.451837548955,0.0,0.0,0.0,1252.408649073418,0.0,4658.603613639882,0.0,2930.256830198508,0.0,4665.067196290807,0.0,3177.40439085505,0,0,0,0,0,0,0,0,0.06197746187803207,0.0019609236919662654,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5752259656790384,-0.5752259656790384,-0.53117152069557,-0.53117152069557,-0.5847106425878115,-0.5847106425878115,-0.06399370026166293,-0.06399370026166293,-0.21346001220436492,-0.21346001220436492,-0.4608056167394869,-0.5233493908507881,-0.58366086230838,-0.6136565992032315,-0.3448682719211465,-0.4646276571764814,-0.5388455882545528,-0.5806988841931968,-0.5508429287516609,-0.3731724048182869,11.932281831149226,11.932281831149226,10.90272560862995,10.90272560862995,12.16495081778254,12.16495081778254,5.084788117396954,5.084788117396954,5.945102751812769,5.945102751812769,9.432468753287424,10.728713194967057,12.139006503737932,12.8991630426233,7.474262136826695,9.506840104350687,11.076019006885076,12.066061867666761,11.35205173415315,7.8993119337350635,182.76769775051034,182.76769775051034,0.0,203.07521972278926,0.0,182.76769775051034,203.07521972278926,0,0
+2017/03/27 16:00:00,205.55784813629785,0,1148.7050467067834,0,0,0,0.0,0.0,16.735683873587277,0.0,131.64086955684016,0,39.380909295966944,0.2783342925068459,14.090075914942245,0,0,147.96871023911402,539.3617538045957,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1467.8375669687994,0.0,3369.2586683405725,0.0,3330.9924771986093,0.0,4650.569506357564,0.0,0.0,0.0,1004.441336578504,0.0,3036.647577058422,0.0,2752.4731651364955,0.0,4196.7166694938105,0.0,0.0,0,0,0,0,0,0,0,0,0.061157907540155286,0.0019349935639923423,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5031969133623764,-0.5031969133623764,-0.30332521064637696,-0.30332521064637696,-0.5614993936626331,-0.5614993936626331,-0.02592112938599857,-0.02592112938599857,-0.17585068806684204,-0.17585068806684204,-0.4585246208218155,-0.40506849465723765,-0.584559987984776,-0.5782728499539693,-0.34970933317612474,-0.4591037956207468,-0.3883425812044268,-0.5790455923384557,-0.5560317214745556,-0.37156894731620815,10.292594901434,10.292594901434,6.912034828688562,6.912034828688562,11.602466033158976,11.602466033158976,5.01390918809669,5.01390918809669,5.641004859945028,5.641004859945028,9.388383635110117,8.419254687016718,12.16122459453402,12.006599517651765,7.544544311477921,9.399556205935482,8.14118241903681,12.025511796466162,11.47336716641648,7.874320548956646,205.55784813629785,205.55784813629785,0.0,228.39760904033093,0.0,205.55784813629785,228.39760904033093,0,0
+2017/03/27 17:00:00,212.2971207855162,0,1117.04897933367,0,0,0,0.0,0.0,16.90307355543791,0.0,133.89528835348938,0,39.380909295966944,0.18427112614066046,18.50160325202704,0,0,94.09570469601127,561.578691974585,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2362.6983924500446,0.0,2914.195769819128,0.0,3953.2331471082825,0.0,4026.574655384319,0.0,0.0,0.0,1993.99859331163,0.0,2551.4029958779383,0.0,3446.3557467763576,0.0,3624.5643361708653,0.0,0.0,0,0,0,0,0,0,0,0,0.059472515065350576,0.0018816689209049874,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42585974612021965,-0.42585974612021965,-0.4034251232649566,-0.4034251232649566,-0.5534532931475574,-0.5534532931475574,0.005956943165194064,0.005956943165194064,-0.13460730585663686,-0.13460730585663686,-0.47097950559890017,-0.4513512750911228,-0.578907257952225,-0.5617216002358854,-0.3370328563813608,-0.47687477970948616,-0.4501479741120255,-0.5752682707660479,-0.554908072852244,-0.35768244932822124,8.781612221444973,8.781612221444973,8.391403101350974,8.391403101350974,11.412936889697761,11.412936889697761,5.000734561971441,5.000734561971441,5.375377162765346,5.375377162765346,9.6318298551421,9.251203058687409,12.022124264228424,11.607740033414217,7.36261879039138,9.749391285449079,9.2284084121615,11.933310952807801,11.446996929253146,7.6624702967085625,212.2971207855162,212.2971207855162,0.0,235.88568976168466,0.0,212.2971207855162,235.88568976168466,0,0
+2017/03/27 18:00:00,197.9484884084109,0,1111.1453617802763,0,0,0,0.0,0.0,18.98444897975631,0.0,110.93442390708215,0,39.380909295966944,0.13962196172071079,25.077109061430512,0,0,85.60572408505763,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3178.3965818490974,0.0,1204.58637909158,0.0,4413.387715442175,0.0,3134.100616097463,0.0,0.0,0.0,2858.9131238517484,0.0,791.7723056120304,0.0,3924.4547546938857,0.0,2768.636441253807,0.0,0.0,0,0,0,0,0,0,0,0,0.059158202093959014,0.0018717242775843725,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46616136460319374,-0.46616136460319374,-0.47634425455719825,-0.47634425455719825,-0.47591149972775404,-0.47591149972775404,0.02074341474544121,0.02074341474544121,-0.11986567735298989,-0.11986567735298989,-0.47071713201993937,-0.3498079743898941,-0.5547351094036956,-0.5487148097391182,-0.31339892653434037,-0.48108317424304703,-0.33365116896065666,-0.5518103996283263,-0.5491154856315036,-0.333020400843499,9.536860731621033,9.536860731621033,9.738750384091517,9.738750384091517,9.730079479842317,9.730079479842317,5.008907374881204,5.008907374881204,5.297610659342126,5.297610659342126,9.626632520849952,7.545986736874411,11.442942615292395,11.302633222855619,7.041650884314365,9.834230399967453,7.3152401763488655,11.374582949684836,11.3119225917916,7.306456617752474,197.9484884084109,197.9484884084109,0.0,219.94276489823432,0.0,197.9484884084109,219.94276489823432,0,0
+2017/03/27 19:00:00,210.66925093124257,0,1090.88501966755,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,101.68988858149199,0,39.380909295966944,0.13957308500089144,27.0977424753112,0,0,100.83573448487559,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3104.6352999240594,0.0,1957.6940846625298,0.0,4455.89367260422,0.0,3075.710431876072,0.0,0.0,0.0,2973.3231715403517,0.0,1741.8013088218809,0.0,4144.220501051094,0.0,2833.20536838048,0.0,0.0,0,0,0,0,0,0,0,0,0.058079526472907005,0.0018375957328332193,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5186039937578069,-0.5186039937578069,-0.5124093577249669,-0.5124093577249669,-0.5460387687783494,-0.5460387687783494,0.006766413341463696,0.006766413341463696,-0.14482191265113592,-0.14482191265113592,-0.4719925877237217,-0.43974937444089407,-0.5614197871661228,-0.5430253103066083,-0.3071228693081615,-0.4866784377030413,-0.4471968030073233,-0.5642532267481298,-0.5490336590940998,-0.3295079981270265,10.624437026575691,10.624437026575691,10.489781155208703,10.489781155208703,11.240769656503517,11.240769656503517,5.000947760876457,5.000947760876457,5.4345637997554945,5.4345637997554945,9.6519257550068,9.034017295330202,11.600577120009717,11.171477336309138,6.960394081892687,9.948211417058516,9.172766799366457,11.667978536580762,11.310024939683203,7.257854581406548,210.66925093124257,210.66925093124257,0.0,234.0769454791584,0.0,210.66925093124257,234.0769454791584,0,0
+2017/03/27 20:00:00,211.43700229208483,0,1077.2163440198324,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.15786674083787613,23.375406385089665,0,0,122.6574113497021,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3393.3670038935616,0.0,2395.829317963803,0.0,4682.47294356151,0.0,3248.2757836064766,0.0,0.0,0.0,3322.2381501529935,0.0,2270.646578895008,0.0,4444.128079688718,0.0,3048.982112908976,0.0,0.0,0,0,0,0,0,0,0,0,0.057351796056943335,0.0018145708497420737,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5095042154791831,-0.5095042154791831,-0.549521766321205,-0.549521766321205,-0.6009903204165808,-0.6009903204165808,-0.027769361353957182,-0.027769361353957182,-0.1822510344122928,-0.1822510344122928,-0.47193173162784496,-0.4472838221558816,-0.5564294789855014,-0.5377442959417486,-0.2989359789858817,-0.4904202170206623,-0.45889507396774165,-0.5626524525106271,-0.5477927616114059,-0.32283368111574,10.427202375483574,10.427202375483574,11.321349009071511,11.321349009071511,12.573409081712725,12.573409081712725,5.015963483172072,5.015963483172072,5.688582861040501,5.688582861040501,9.650717340321549,9.174402105687577,11.482715018386244,11.050993196652385,6.856902383561945,10.025189106933126,9.395528196630195,11.629856781402381,11.2812826624927,7.166942393559609,211.43700229208483,211.43700229208483,0.0,234.9300025467609,0.0,211.43700229208483,234.9300025467609,0,0
+2017/03/27 21:00:00,197.42099202799562,0,1081.0048638560374,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.20734783753126615,25.317706739844812,0,0,161.93628369845126,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2749.5027131718734,0.0,3456.0360342762274,0.0,3935.9924573615394,0.0,4174.521407481143,0.0,0.0,0.0,2710.9342538745655,0.0,3386.975428934205,0.0,3749.7595464597916,0.0,4009.5859084606946,0.0,0.0,0,0,0,0,0,0,0,0,0.057553499659204796,0.0018209526111186173,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5617761839796294,-0.5617761839796294,-0.6189508032777926,-0.6189508032777926,-0.6372171357219687,-0.6372171357219687,-0.09752628714794664,-0.09752628714794664,-0.25691531633142145,-0.25691531633142145,-0.4826450483845698,-0.46777780047356077,-0.5642420211327748,-0.5490567606567849,-0.3104932568030428,-0.5069552864156056,-0.4869623390463998,-0.5755923287558508,-0.5644474870314945,-0.33696132902732334,11.609035888302799,11.609035888302799,13.037383831167006,13.037383831167006,13.523617363404938,13.523617363404938,5.196973933301152,5.196973933301152,6.370246089786406,6.370246089786406,9.865911391387641,9.568610368756481,11.667711293372136,11.31056066225797,7.003823590129741,10.372597251661304,9.954030783303637,11.941196625063341,11.67261232410462,7.3616116409279755,197.42099202799562,197.42099202799562,0.0,219.35665780888402,0.0,197.42099202799562,219.35665780888402,0,0
+2017/03/27 22:00:00,140.29449093656763,0,971.2249657169942,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.35805894622731727,20.751499182564086,0,0,230.4141425480612,581.1042368624845,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,444.8927287705812,0.0,0.0,0.0,0.0,0.0,2785.1366010422494,0.0,4294.533604104148,0.0,3874.313084640887,0.0,4906.025274217363,0.0,0.0,0.0,2876.860394012489,0.0,4321.871607830943,0.0,3883.2168410864856,0.0,4832.674589982944,0.0,1721.3918750877096,0,0,0,0,0,0,0,0,0.05170873656757972,0.0016360283810355522,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6656092478081675,-0.6656092478081675,-0.6934753607740172,-0.6934753607740172,-0.7455295080287888,-0.7455295080287888,-0.29432579157630684,-0.29432579157630684,-0.4852019210256306,-0.4852019210256306,-0.5043737529057102,-0.49881649553350926,-0.5846866797232299,-0.574699841142135,-0.33394142896304035,-0.535875128973969,-0.5267702318534013,-0.6013247599832158,-0.5968071668415713,-0.36558938638873956,14.308115008833582,14.308115008833582,15.112024469553845,15.112024469553845,16.703497481174693,16.703497481174693,6.799871449352139,6.799871449352139,9.918002099817741,9.918002099817741,10.317579953071998,10.200121874413057,12.164358065187912,11.919489712348579,7.319287772493652,11.008638433073571,10.804487885513964,12.581920768498478,12.46735541764177,7.782090064768525,140.29449093656763,140.29449093656763,0.0,155.88276770729735,0.0,140.29449093656763,155.88276770729735,0,0
+2017/03/27 23:00:00,91.23299250084352,0,866.9077841529688,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.5255397551144454,11.764496484436533,0,0,297.6027656566898,516.0694897274628,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1346.6350751963523,0.0,754.8608113064984,0.0,2269.9326925157234,0.0,0.0,0.0,0.0,0.0,3123.9689317704706,0.0,5353.126050688222,0.0,4173.356739548815,0.0,5861.6696885607125,0.0,5989.615671215639,0.0,3196.0431665273945,0.0,5351.583167175568,0.0,4187.367901745431,0.0,5768.480096749495,0.0,9938.417297177293,0,0,0,0,0,0,0,0,0.04615481255267918,0.0014603060966084911,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8029526507658404,-0.8029526507658404,-0.8099550244017762,-0.8099550244017762,-0.8473143355429028,-0.8473143355429028,-0.559821205613166,-0.559821205613166,-0.580639229452389,-0.580639229452389,-0.5340838298501525,-0.538419969572168,-0.6120517748746201,-0.6099665081187264,-0.36604828673782486,-0.5708757183732011,-0.5744525168498194,-0.6323817492295101,-0.6379633946683937,-0.4028155402010877,18.59376968241429,18.59376968241429,18.833855760666694,18.833855760666694,20.149613617962558,20.149613617962558,11.562703942010245,11.562703942010245,12.064596661168864,12.064596661168864,10.968190141425424,11.06634100188161,12.857504624431328,12.803541742010893,7.789114287875449,11.826871389037194,11.913480453565867,13.393494867955368,13.543789878507951,8.381101379583498,91.23299250084352,91.23299250084352,0.0,101.36999166760391,0.0,91.23299250084352,101.36999166760391,0,0
+2017/03/28 00:00:00,39.347067396088775,0,547.494320542254,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5785884359119816e-09,9.549746397087006,0,0,0.0,494.25879177343774,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02914900315836279,0.0009222541413993127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7658479262603008,-0.7658479262603008,-0.7807811358118405,-0.7807811358118405,-0.8423663422976433,-0.8423663422976433,-0.5252528703421553,-0.5252528703421553,-0.24600652622509606,-0.24600652622509606,-0.7070378250969638,-0.6550350578673589,-0.8655636249327209,-0.8683640875887723,-0.15756689610367924,-0.7797500709282438,-0.7092454254924195,-0.8649259623586317,-0.8488284004478915,-0.26651083271841786,17.356275847794294,17.356275847794294,17.847281820503923,17.847281820503923,19.97199403389449,19.97199403389449,10.770814456392444,10.770814456392444,6.25606687723247,6.25606687723247,15.51543041749558,14.011858155321065,20.813510520694678,20.91660999431022,5.51450323462457,17.813074998116832,15.581845094750506,20.79008015003501,20.204168223329944,6.4748179290389345,39.347067396088775,39.347067396088775,0.0,43.71896377343197,0.0,39.347067396088775,43.71896377343197,0,0
+2017/03/28 01:00:00,23.72218549373604,0,41.2121585021607,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250900700582447,0,0,0.0,5.721805989616563,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002194165844775586,6.94218778689399e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8160294190912893,-0.8160294190912893,-0.8325406046298951,-0.8325406046298951,-0.9007576843707474,-0.9007576843707474,-0.5732525811066537,-0.5732525811066537,-0.10719437348410378,-0.10719437348410378,-0.7751551631879134,-0.7253663152270461,-0.9655382603573526,-0.9265127789334814,-0.09287019607496952,-0.8714020822101602,-0.8041538932827719,-1.0122307022002899,-0.9701232541207542,-0.2626282562607054,19.043800525051083,19.043800525051083,19.622306202419594,19.622306202419594,22.132600042609525,22.132600042609525,11.884363186897673,11.884363186897673,5.237983855029341,5.237983855029341,17.661183508927138,16.07320123137403,24.691345342663695,23.129838090006174,5.178608033513115,21.028820206521843,18.63480875690989,26.637461295858714,24.878731766887597,6.432038825389867,23.72218549373604,23.72218549373604,0.0,26.35798388192893,0.0,23.72218549373604,26.35798388192893,0,0
+2017/03/28 02:00:00,28.397068308787578,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5777052223146816,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.834838898417754,-0.834838898417754,-0.8521275711752367,-0.8521275711752367,-0.9217527797763471,-0.9217527797763471,-0.598947941970119,-0.598947941970119,-0.0299318155392509,-0.0299318155392509,-0.8292435684352368,-0.7783467764677324,-1.0258726425958362,-0.9791267084981693,-0.07065631533745517,-0.9381820885977857,-0.8733931307098705,-1.0938297038310913,-1.0456554416471693,-0.26085197684414685,19.703738469661545,19.703738469661545,20.323373841571396,20.323373841571396,22.94351890110262,22.94351890110262,12.521534672918875,12.521534672918875,5.018546605211384,5.018546605211384,19.505873115869193,17.766591688189223,27.22163785052814,25.2490724791666,5.1033665278998654,23.59043728672893,21.10256716639374,30.23248583074661,28.08099936108745,6.412678959674011,28.397068308787578,28.397068308787578,0.0,31.552298120875086,0.0,28.397068308787578,31.552298120875086,0,0
+2017/03/28 03:00:00,23.721910076780805,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248146531030122,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8854143117161853,-0.8854143117161853,-0.9038874419373227,-0.9038874419373227,-0.9735493464782979,-0.9735493464782979,-0.6626503555737867,-0.6626503555737867,0.032381980342621415,0.032381980342621415,-0.9001820173618831,-0.8452740986039137,-1.1009927973968112,-1.0463556586760312,-0.04193438106491314,-1.0230843882335867,-0.9553238876492611,-1.185369647482591,-1.1318264563723537,-0.2665971354917017,21.551284962780286,21.551284962780286,22.25235394916386,22.25235394916386,25.01928780382474,25.01928780382474,14.224727698223802,14.224727698223802,5.021707414170635,5.021707414170635,22.110616595867768,20.076251014272856,30.559309886209974,28.111678749229014,5.036404543218367,27.101675547689325,24.276839647199978,34.53558280034444,31.98582681624221,6.475776043952067,23.721910076780805,23.721910076780805,0.0,26.357677863089783,0.0,23.721910076780805,26.357677863089783,0,0
+2017/03/28 04:00:00,42.764937277623666,0,365.9804762412791,0,0,0,0.0,0.013104771445689644,4.633261998087618,9.319298099999997,25.555573451546493,0,1.583397008488448,1.1352916830040891,0.5250102650513216,0,0,277.2545949599188,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.19618549447837,0.0,67.69556747779536,0.11351069300056021,487.4099932308643,0.0,0.0,0.0,0.0,1.824010092532363,2506.0353412961263,1.0887315330538614,1325.0878868746308,2.395579387388655,3697.022010876217,1.5228388066705063,2050.7896982674943,0.0,0.0,1.8061558702380451,2979.3295537960594,0.5392632202669019,1550.1780021893762,2.198148371876363,3773.947142767132,1.6165334706623873,2134.938541161029,0.0,0.0,0,0,0,0,0,0,0,0,0.01948507163926432,0.0006164940844509876,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8489016397318003,-0.8489016397318003,-0.8610506304844564,-0.8610506304844564,-0.8870607235787868,-0.8870607235787868,-0.6420056861507377,-0.6420056861507377,0.16602576671219876,0.16602576671219876,-0.6814899744627418,-0.667954373611081,-0.7669720773325757,-0.7526953450358668,-0.011011695125434774,-0.7453693365981494,-0.7316941129502005,-0.815654129938314,-0.8074611031786363,-0.25421197312161714,20.206809591515906,20.206809591515906,20.648045948894747,20.648045948894747,21.613202377388134,21.613202377388134,13.653478938911746,13.653478938911746,5.571295618582056,5.571295618582056,14.762141303821068,14.374474551030048,17.392907151695738,16.931700768177677,5.0025101030937265,16.69842180205727,16.269126153373037,19.030784626241385,18.748110809102783,6.341484610769982,42.764937277623666,42.764937277623666,0.0,47.5165969751374,0.0,42.764937277623666,47.5165969751374,0,0
+2017/03/28 05:00:00,75.63231358239833,0,299.78946204853844,0,0,0,0.06557178611546122,0.009914308830414654,5.555297838843742,9.319298099999997,57.911447091112116,0,1.311120913277966,0.9346298728332322,0.5250336713853637,0,0,86.84734697327364,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,207.7664361028456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.90761686777347,1569.789100209614,0.0,809.98863258806,2.023644846303455,2637.1642098473726,0.6423333483865576,1401.8291054237834,0.0,0.0,1.7036669014306653,2277.3749759970037,0.5648486085614195,1181.138556180524,2.7038095595946743,3174.1437390785413,1.368388698364413,1726.811097047287,0.0,0.0,0,0,0,0,0,0,0,0,0.015961013015517323,0.0005049953260671288,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6432630986192308,-0.6432630986192308,-0.6624393998497504,-0.6624393998497504,-0.7127936136443055,-0.7127936136443055,-0.44445840489856064,-0.44445840489856064,0.4907689859420404,0.4907689859420404,-0.6437840067585465,-0.636185003346872,-0.7081204173967002,-0.7005953618559874,0.10189476404840067,-0.6763671522951207,-0.6754294920884643,-0.720878558277277,-0.7234788532483507,-0.13514007609246648,13.68774378887069,13.68774378887069,14.21879704007894,14.21879704007894,15.689031046624649,15.689031046624649,9.121471831974674,9.121471831974674,10.03239494612265,10.03239494612265,13.70195877027841,13.495757062733787,15.547973463529942,15.322813825442495,5.215023491489106,14.614488415838338,14.58758558002009,15.935292659139293,16.01509400279484,5.37835688863791,75.63231358239833,75.63231358239833,0.0,84.03590398044258,0.0,75.63231358239833,84.03590398044258,0,0
+2017/03/28 06:00:00,101.30864404857097,0,765.9936824903757,0,0,0,0.0,0.005099929059220737,11.110595677687485,13.929299233552332,73.80580873715317,0,1.1995212973172755,0.7332092152050819,0.5251099585964066,0,0,53.694171727706376,481.61221943113236,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,902.3456215643146,0.0,434.04852106483384,1.230153112007277,1776.7826204422627,0.0,913.1201230783773,0.0,0.0,1.432360862813539,1470.636962067836,0.0,747.926699646454,1.403111558973857,2153.028523034206,1.0343035254260635,1158.957593495263,0.0,0.0,0,0,0,0,0,0,0,0,0.04078207103241485,0.0012903163000171035,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4546955701873796,-0.4546955701873796,-0.47851126251185844,-0.47851126251185844,-0.5270173909416471,-0.5270173909416471,-0.26907775842432646,-0.26907775842432646,0.7417866135860498,0.7417866135860498,-0.6208214107357057,-0.6142093524799992,-0.6808121680811294,-0.6751608739633362,0.16681925599575367,-0.6481017412400146,-0.6492496336134125,-0.688469783715107,-0.6934268910594693,-0.007167877201712393,9.314882645820745,9.314882645820745,9.782291181345997,9.782291181345997,10.809982303203753,10.809982303203753,6.503449483227499,6.503449483227499,16.585176255866443,16.585176255866443,13.086512359935952,12.913537424978657,14.74254001371122,14.579885546404668,5.576776090283843,13.820237705692094,13.85181879131106,14.96514411999405,15.11059701526888,5.001063562340278,101.30864404857097,101.30864404857097,0.0,112.56516005396774,0.0,101.30864404857097,112.56516005396774,0,0
+2017/03/28 07:00:00,149.37802641457176,0,928.266068204033,0,0,0,0.0,0.0,9.923278249553311,0.0,69.33401494192633,0,39.380909295966944,0.22389389958073364,27.08395482509016,0,0,62.43301681526312,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,757.7048282259818,0.0,384.6673479284957,0.0,1235.4305804603573,0.0,129.18327393639748,0.0,0.0,0.0,3824.8965764071045,0.0,4861.168681712739,0.0,4899.050957339858,0.0,5168.710665861939,0.0,2262.0568573774835,0.0,4140.367859437017,0.0,5013.168724692235,0.0,5031.377049662559,0.0,5201.784981911744,0.0,1796.1274998484835,0,0,0,0,0,0,0,0,0.04942157304404787,0.0015636641214354938,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6385584008947169,-0.6385584008947169,-0.6440730094041072,-0.6440730094041072,-0.6855989098778936,-0.6855989098778936,-0.5071258995565915,-0.5071258995565915,0.2590674432198147,0.2590674432198147,-0.6113415776510358,-0.6165872026536693,-0.6685504121375205,-0.6636579611432541,-0.19200740715710746,-0.6372847624355306,-0.6514491010912081,-0.676082451789578,-0.6798499620134841,-0.2639117926590974,13.559891109888113,13.559891109888113,13.709850393631072,13.709850393631072,14.881391758961271,14.881391758961271,10.376243485835758,10.376243485835758,6.393362848975116,6.393362848975116,12.839104830130381,12.975524773926978,14.391378487442154,14.253081392808184,5.764399630641535,13.525444421089276,13.912490645056494,14.606315921699263,14.71474838006553,6.446110891280625,149.37802641457176,149.37802641457176,0.0,165.97558490507973,0.0,149.37802641457176,165.97558490507973,0,0
+2017/03/28 08:00:00,164.9238124548071,0,1009.3559338287066,0,0,0,0.0,0.0,11.86011032607099,0.0,83.2008179303116,0,39.380909295966944,0.1676937455961918,26.88230595440709,0,0,90.28735367112037,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2501.155227056875,0.0,4111.812801585415,0.0,4019.1114931961574,0.0,3655.108405532152,0.0,188.67040034895848,0.0,2470.4928033965834,0.0,4146.383241081781,0.0,3959.0881480607145,0.0,3397.2628425883786,0.0,186.48406034264394,0,0,0,0,0,0,0,0,0.053738857553709565,0.00170025999392564,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5806478833482958,-0.5806478833482958,-0.6516340685666676,-0.6516340685666676,-0.7134035928937575,-0.7134035928937575,-0.24289593195068354,-0.24289593195068354,-0.23773812161055657,-0.23773812161055657,-0.5596549900236955,-0.6052867493425683,-0.6505839558292493,-0.5734827560145885,-0.31498402321388336,-0.5770261677226295,-0.6379468695788851,-0.6556841967282245,-0.5734704245647219,-0.36088635852528217,12.064809203761769,12.064809203761769,13.91760249383259,13.91760249383259,15.707512358658661,15.707512358658661,6.22442560915853,6.22442560915853,6.172855468817545,6.172855468817545,11.558772365863291,12.683125163397293,13.888600771542428,11.889943697464787,7.062437076546146,11.97614254113519,13.543342918664905,14.029905486487351,11.88964466748125,7.710619636245653,164.9238124548071,164.9238124548071,0.0,183.2486805053412,0.0,164.9238124548071,183.2486805053412,0,0
+2017/03/28 09:00:00,181.3881111604457,0,1035.3300073238784,0,0,0,0.0,0.0,11.393746067737203,0.0,106.27511244621549,0,39.380909295966944,0.11987122677821183,20.78649692129363,0,0,81.59903607546941,581.0822698666952,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1475.3697952983493,0.0,3612.4438739105453,0.0,3391.995019346609,0.0,2850.96390389222,0.0,13.614238748189472,0.0,983.1746396340187,0.0,3487.0647582831198,0.0,3118.091255312424,0.0,2597.556601292995,0.0,16.36957674129723,0,0,0,0,0,0,0,0,0.055121736465761906,0.001744013318756858,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42807895854095496,-0.42807895854095496,-0.6006530805495843,-0.6006530805495843,-0.6645826994041564,-0.6645826994041564,0.06918684236822069,0.06918684236822069,-0.284447778753958,-0.284447778753958,-0.4747825203015135,-0.5793464872956006,-0.6242124333594334,-0.49051423342870615,-0.32352978366383756,-0.47630029017700465,-0.6066176531799802,-0.624154664200402,-0.46525852811231466,-0.3609502819557666,8.821384242121155,8.821384242121155,12.564831041188981,12.564831041188981,14.279141928530606,14.279141928530606,5.099110802184001,5.099110802184001,6.680696782689267,6.680696782689267,9.707496667525348,12.032882978959307,13.175959298381045,10.027131042515052,7.176335910949845,9.737869122000731,12.717274415800105,13.174431310500779,9.519176436672751,7.711584744764792,181.3881111604457,181.3881111604457,0.0,201.54234573382854,0.0,181.3881111604457,201.54234573382854,0,0
+2017/03/28 10:00:00,212.16794250837435,0,1114.3367542569981,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.12975544193279404,18.53171678107058,0,0,91.43368266172483,561.5284889321997,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3387.278408683742,0.0,2013.4664838707233,0.0,2466.62834776601,0.0,0.0,0.0,0.0,0.0,3286.8228972677944,0.0,1769.6607980980032,0.0,2080.9752111862545,0.0,0.0,0,0,0,0,0,0,0,0,0.05932811419330537,0.001877100177969188,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.43920158126250025,-0.43920158126250025,-0.5163858649052242,-0.5163858649052242,-0.5500351138079547,-0.5500351138079547,0.28811030320024517,0.28811030320024517,-0.23494879334362817,-0.23494879334362817,-0.39848704064822427,-0.5578237683864724,-0.5984028148568696,-0.4681015055983918,-0.33788147769908733,-0.35137105450872574,-0.5775399543888164,-0.5926454388360908,-0.4393582505499114,-0.36430485209735464,9.023905742825107,9.023905742825107,10.5760296711412,10.5760296711412,11.3332697934421,11.3332697934421,6.7244032371317815,6.7244032371317815,6.1454318330052615,6.1454318330052615,8.308408697740475,11.515536918421986,12.507719588191307,9.574982036059026,7.374584484293351,7.568898814021111,11.988686398656654,12.362598579893472,9.026796338423637,7.762475870424595,212.16794250837435,212.16794250837435,0.0,235.74215834263816,0.0,212.16794250837435,235.74215834263816,0,0
+2017/03/28 11:00:00,228.23640195604193,0,1103.9149497701437,0,0,0,0.0,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,0.038159908090952266,20.824968774194733,0,0,26.798375476602793,562.506462861651,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1751.8518739464,0.0,1315.609937263191,0.0,942.2960480807143,0.0,0.0,0.0,0.0,0.0,1719.4267900338737,0.0,985.062207752404,0.0,527.4228608085905,0.0,0.0,0,0,0,0,0,0,0,0,0.058773249602925175,0.0018595446491020831,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2848617394698749,-0.2848617394698749,-0.4525860799615946,-0.4525860799615946,-0.49743052026949236,-0.49743052026949236,0.4590167708898078,0.4590167708898078,-0.13914371007634518,-0.13914371007634518,-0.2478012557355219,-0.520087009493884,-0.5590100308706707,-0.4470020189648863,-0.32415016942550773,-0.19240892936651513,-0.5216988340447885,-0.5424862822266532,-0.4155636322532907,-0.340599858313125,6.685608371660905,6.685608371660905,9.274659257164629,9.274659257164629,10.171035844191906,10.171035844191906,9.397876533478737,9.397876533478737,5.401126574828496,5.401126574828496,6.2745079909265655,10.656920381780978,11.543528184698076,9.169107502794873,7.184724985269881,5.76760505998611,10.692333043400026,11.159124261316308,8.599852193390447,7.413119993025148,228.23640195604193,228.23640195604193,0.0,253.59600217337993,0.0,228.23640195604193,253.59600217337993,0,0
+2017/03/28 12:00:00,207.6193910375177,0,1053.4078387255736,0,0,0,0.0,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,0.01740073317191707,18.553541019342767,0,0,12.76663374718403,561.5214460590439,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,871.8883726007465,0.0,1489.0116441026596,0.0,375.62482845787537,0.0,0.0,0.0,0.0,0.0,698.8165503958517,0.0,1081.8372890385785,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.056084213599958396,0.0017744654243809295,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2119326961465682,-0.2119326961465682,-0.39507273792889863,-0.39507273792889863,-0.6074270888152289,-0.6074270888152289,0.49371767870335326,0.49371767870335326,-0.09707009006191564,-0.09707009006191564,-0.14501368758617914,-0.4858425351487543,-0.5235329695933437,-0.4492176763649759,-0.20412061866334402,-0.075799397895315,-0.4816662008974,-0.49996257098886876,-0.4176180432202414,-0.2457653046106511,5.931600887579762,5.931600887579762,8.251634438747132,8.251634438747132,12.738081071490043,12.738081071490043,10.093527180707184,10.093527180707184,5.195134710309816,5.195134710309816,5.4357165321592475,9.931097415830521,10.732766766123845,9.210828074609495,5.864067241253892,5.118966332287741,9.846044177436085,10.224236066121293,8.635756254945449,6.253598607629115,207.6193910375177,207.6193910375177,0.0,230.68821226390853,0.0,207.6193910375177,230.68821226390853,0,0
+2017/03/28 13:00:00,205.14935173418752,0,992.5579612307572,0,0,0,0.0,0.0,16.735683873587277,0.0,129.2730206906943,0,39.380909295966944,0.01056732125984019,16.317195350224793,0,0,8.0179826079428,540.9105722160127,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,512.4536531265036,0.0,1006.6113806756787,0.0,437.49841350463765,0.0,0.0,0.0,0.0,0.0,263.33754569881114,0.0,543.5284439114548,0.0,6.244191862616599,0.0,0.0,0,0,0,0,0,0,0,0,0.052844521050224455,0.001671963810359339,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.16376194993372883,-0.16376194993372883,-0.37371953827797183,-0.37371953827797183,-0.6518396349569826,-0.6518396349569826,0.5207197615114545,0.5207197615114545,-0.1265738108948745,-0.1265738108948745,-0.0939017674812877,-0.43904518165827106,-0.511021495359433,-0.446041011517003,-0.1663239317477441,0.027946193489882806,-0.4240331063604572,-0.48425430761398147,-0.4150048418932628,-0.21631240944191657,5.555804178029163,5.555804178029163,7.9078646109814485,7.9078646109814485,13.923285363938135,13.923285363938135,10.670808882695923,10.670808882695923,5.331877784720078,5.331877784720078,5.182599472381156,9.021021174902344,10.459840103307528,9.151077486109202,5.573351905678464,5.016167444932577,8.749034313184879,9.898663637644646,8.590117746542447,5.970580259094476,205.14935173418752,205.14935173418752,0.0,227.94372414909725,0.0,205.14935173418752,227.94372414909725,0,0
+2017/03/28 14:00:00,189.10494326806497,0,950.7072744921961,0,0,0,0.0,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,0.016420051260622757,14.020307072990127,0,0,12.82678306610285,529.7414375318359,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,589.6780135691969,0.0,807.7645785756191,0.0,1225.1285072924431,0.0,0.0,0.0,0.0,0.0,231.79806950552344,0.0,334.1955108984599,0.0,794.7285563848346,0.0,403.3869124443628,0,0,0,0,0,0,0,0,0.050616359489180786,0.001601466331724646,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.23142258787086695,-0.23142258787086695,-0.5123420170568086,-0.5123420170568086,-0.5893526464107798,-0.5893526464107798,0.49749816774631417,0.49749816774631417,-0.1999316950684448,-0.1999316950684448,-0.09232930539552277,-0.39038205929179626,-0.5189464012671685,-0.4678585175359461,-0.2788426195459325,0.009498000688920545,-0.3631380514365794,-0.49196293374226574,-0.4428096305493152,-0.3151723572431358,6.111230802136404,6.111230802136404,10.488326458182925,10.488326458182925,12.280246777913632,12.280246777913632,10.172453565380707,10.172453565380707,5.828906701546714,5.828906701546714,5.176532822861034,8.174448894257281,10.631928527341145,9.570198744833775,6.614904048753587,5.001867441428104,7.744720338090119,10.057102609856983,9.09074291024018,7.064913870450042,189.10494326806497,189.10494326806497,0.0,210.1166036311833,0.0,189.10494326806497,210.1166036311833,0,0
+2017/03/28 15:00:00,182.4617944766896,0,968.3511783950744,0,0,0,0.0,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,0.040253204634323,14.11658151818869,0,0,31.51493015075844,528.6971943500585,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,274.3045468822785,0.0,745.6401561133031,0.0,1750.3431056235295,0.0,172.88268699244398,0.0,0.0,0.0,0.0,0.0,288.92533357515504,0.0,1353.921504972583,0.0,39.960164438313036,0,0,0,0,0,0,0,0,0.05155573400192727,0.0016311874865098947,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.37059533224968894,-0.37059533224968894,-0.4405783441059392,-0.4405783441059392,-0.5727629369908468,-0.5727629369908468,0.4802999700337385,0.4802999700337385,-0.2556347001487368,-0.2556347001487368,-0.14815812730664085,-0.3528699689647182,-0.5342211760631801,-0.4970223093124076,-0.34909296487501706,-0.03922505734903472,-0.3040629693270013,-0.5095175684816703,-0.4763106119032593,-0.37083709994436237,7.859199343404825,7.859199343404825,9.049343522792611,9.049343522792611,11.872499581027554,11.872499581027554,9.818383538197253,9.818383538197253,6.356583006822092,6.356583006822092,5.454835690095479,7.590967949687482,10.971286557441857,10.162484963890279,7.53554056086891,5.031852095105293,6.921381675073093,10.42748917349337,9.738076012598,7.862950462864575,182.4617944766896,182.4617944766896,0.0,202.73532719632175,0.0,182.4617944766896,202.73532719632175,0,0
+2017/03/28 16:00:00,205.23365690742128,0,1007.6371998663938,0,0,0,0.0,0.0,16.735683873587277,0.0,131.64086955684016,0,39.380909295966944,0.0349984003732918,14.009220578199276,0,0,27.07890832358326,519.1837088797367,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,914.6564912152528,0.0,1920.896355416696,0.0,25.063247678459277,0.0,0.0,0.0,0.0,0.0,451.60798261316586,0.0,1536.279383820985,0.0,0.0,0,0,0,0,0,0,0,0,0.05364735088447833,0.0016973647866965738,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47602801048684046,-0.47602801048684046,-0.3693343790792313,-0.3693343790792313,-0.43345631944600965,-0.43345631944600965,0.5059393848562371,0.5059393848562371,-0.22228659731221803,-0.22228659731221803,-0.24471213165106637,-0.3313115810344622,-0.5423410206119728,-0.5137825595678618,-0.3728600253838819,-0.06822508167242211,-0.2390223713417957,-0.5184600220882453,-0.49571393824129845,-0.3900509540825468,9.73241315646544,9.73241315646544,7.839675559243247,7.839675559243247,8.918632269743242,8.918632269743242,10.350912113757175,10.350912113757175,6.02504602545487,6.02504602545487,6.242850787326333,7.2827458377644945,11.155797409070132,10.519487920921108,7.894434608471855,5.096373922409001,6.185591539527735,10.621288599319428,10.135126752833088,8.169036062678387,205.23365690742128,205.23365690742128,0.0,228.03739656380142,0.0,205.23365690742128,228.03739656380142,0,0
+2017/03/28 17:00:00,212.45791335700847,0,1033.7906129185405,0,0,0,0.0,0.0,17.14193692815614,0.0,133.89528835348938,0,39.380909295966944,0.01384392748587878,18.593959649455847,0,0,10.891054166031056,561.5249760894354,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,909.2274629927213,0.0,1220.763388625765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,525.2390774972871,0.0,902.3897061100662,0.0,0.0,0,0,0,0,0,0,0,0,0.05503977796738203,0.0017414202089979047,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5389231144192537,-0.5389231144192537,-0.23624517845996695,-0.23624517845996695,-0.5874074037635766,-0.5874074037635766,0.549615909425415,0.549615909425415,-0.17260410087491768,-0.17260410087491768,-0.25285445725355715,-0.20809626396984415,-0.5421148836873289,-0.5145996744074149,-0.33554625326315085,-0.14629581067275188,-0.14351328224989976,-0.5223756525504131,-0.5019338937313031,-0.37734803650973886,11.07778269410295,11.07778269410295,6.158136788663953,6.158136788663953,12.2318179085524,12.2318179085524,11.323534313551505,11.323534313551505,5.617524391132363,5.617524391132363,6.327157619214091,5.8981166100503515,11.150620130684473,10.537203446051805,7.341731160094241,5.443462529600595,5.42673867157869,10.707236632132123,10.26584678689943,7.964907698742451,212.45791335700847,212.45791335700847,0.0,236.06434817445384,0.0,212.45791335700847,236.06434817445384,0,0
+2017/03/28 18:00:00,196.17823198130768,0,1033.9116325101747,0,0,0,0.0,0.0,18.134120908004327,0.0,110.93442390708215,0,39.380909295966944,0.010387981172145405,26.002402287854867,0,0,8.371994814955864,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1092.683713150037,0.0,625.8941691942955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,703.7389610150292,0.0,335.8026153304719,0.0,0.0,0,0,0,0,0,0,0,0,0.055046221140080655,0.0017416240664908274,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.593749037143401,-0.593749037143401,-0.3628553292138088,-0.3628553292138088,-0.6395627941809583,-0.6395627941809583,0.5616956593397193,0.5616956593397193,-0.1626893257758358,-0.1626893257758358,-0.2812913502593668,-0.18097306133320412,-0.5227445242367996,-0.5048704378631175,-0.26902171507661016,-0.2647471252951888,-0.07323141128292475,-0.5044183527353233,-0.4966028103948965,-0.3148356194132767,12.390304542236251,12.390304542236251,7.740426803760911,7.740426803760911,13.587105442234304,13.587105442234304,11.607124224339273,11.607124224339273,5.548538742849601,5.548538742849601,6.643483943919733,5.678946207086781,10.715367558394874,10.328142854889293,6.502821410659337,6.455306328418018,5.111040127055148,10.318528013143109,10.153705132435348,7.060486466098666,196.17823198130768,196.17823198130768,0.0,217.97581331256407,0.0,196.17823198130768,217.97581331256407,0,0
+2017/03/28 19:00:00,194.73421844459028,0,1003.2281099245813,0,0,0,0.0,0.0,23.689739879786647,0.0,101.68988858149199,0,39.380909295966944,0.015958876654893817,27.097742475311204,0,0,13.178824741906787,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1525.1901400163483,0.0,836.6631962776927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1141.7972735171238,0.0,644.0489897750531,0.0,0.0,0,0,0,0,0,0,0,0,0.053412607670133914,0.001689937675024235,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6463844950217712,-0.6463844950217712,-0.4018199471375643,-0.4018199471375643,-0.7000738246721883,-0.7000738246721883,0.535071750010776,0.535071750010776,-0.1841023125894212,-0.1841023125894212,-0.336560825853672,-0.2922514604797781,-0.5329915548017414,-0.5023420520713123,-0.26546908667792296,-0.2934119086692949,-0.2132213768726319,-0.5125383801476547,-0.4988659136975494,-0.2946253193132928,13.773099079883224,13.773099079883224,8.364310431929624,8.364310431929624,15.307299292819081,15.307299292819081,10.990480608011595,10.990480608011595,5.702663511431652,5.702663511431652,7.355976321967049,6.7745036006084405,10.943594317468438,10.274483187023264,6.463277431396392,6.788672798971305,5.942986715834934,10.49256885296478,10.201160494707949,6.8035495165545825,194.73421844459028,194.73421844459028,0.0,216.37135382732254,0.0,194.73421844459028,216.37135382732254,0,0
+2017/03/28 20:00:00,211.3622829021166,0,974.619666026875,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.023519896468745236,23.435033839490572,0,0,20.060733356744684,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1984.0812712140746,0.0,1199.6750997368194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1748.9366771317564,0.0,1055.5160197748119,0.0,0.0,0,0,0,0,0,0,0,0,0.051889472926554915,0.0016417467534498927,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.598840551830998,-0.598840551830998,-0.46368679089967496,-0.46368679089967496,-0.6749893845812923,-0.6749893845812923,0.4730235673681524,0.4730235673681524,-0.21626014021655315,-0.21626014021655315,-0.33494881020508543,-0.33131932520930324,-0.529512601182172,-0.5005057781629862,-0.25424801450163853,-0.33645542433812115,-0.2752494183002543,-0.521593595733487,-0.5023900271166317,-0.3196413698001487,12.518812078635207,12.518812078635207,9.488473835720342,9.488473835720342,14.574971375738002,14.574971375738002,9.672422099179343,9.672422099179343,5.9701103271826526,5.9701103271826526,7.333363173475632,7.282853012763113,10.865599674138451,10.235685332595978,6.341866041459355,7.3544943917867585,6.573424448039816,10.6900174697235,10.27549878477862,7.1241270067604034,211.3622829021166,211.3622829021166,0.0,234.84698100235175,0.0,211.3622829021166,234.84698100235175,0,0
+2017/03/28 21:00:00,197.20879399229375,0,971.619318568292,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.06157219920581398,25.251284342468402,0,0,52.5507384107057,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,784.6855630556204,0.0,1651.4215822741644,0.0,2095.703642433629,0.0,354.7922613723939,0.0,0.0,0.0,602.5398290222986,0.0,1515.794880201146,0.0,2013.0993284516003,0.0,70.15545316310994,0,0,0,0,0,0,0,0,0.05172973220548259,0.0016366926683836322,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6076833941161679,-0.6076833941161679,-0.5047889974890006,-0.5047889974890006,-0.6865973780580428,-0.6865973780580428,0.40426331530139803,0.40426331530139803,-0.2898651202908548,-0.2898651202908548,-0.33699531123182636,-0.3895700499935789,-0.5380935357441372,-0.5158504173090249,-0.3137313547883025,-0.3289667965224264,-0.36696955120019314,-0.5371045803476161,-0.5238095049760985,-0.3575642850456982,12.744675362542011,12.744675362542011,10.32641014748026,10.32641014748026,14.91047978460162,14.91047978460162,8.405594196920518,8.405594196920518,6.745544870027459,6.745544870027459,7.362090104333362,8.161182697236498,11.058923646707726,10.564376220084782,7.046001370608209,7.250412376299423,7.803242844176708,11.036480398125306,10.738875650774261,7.660702843775297,197.20879399229375,197.20879399229375,0.0,219.1208822136597,0.0,197.20879399229375,219.1208822136597,0,0
+2017/03/28 22:00:00,140.00925505316508,0,850.6527375073895,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.1349500186576983,20.68937222673114,0,0,109.86453310406795,581.081618096873,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,189.6660137912482,0.0,2473.563172976069,0.0,2425.4236339476392,0.0,3578.364845526653,0.0,56.98451307176536,0.0,247.10623094694103,0.0,2451.6906451283326,0.0,2517.1030299197205,0.0,3626.528139387784,0.0,11.272893381572226,0,0,0,0,0,0,0,0,0.04528938182904711,0.0014329244717677498,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.715260071825916,-0.715260071825916,-0.5530487692705965,-0.5530487692705965,-0.7766400520354022,-0.7766400520354022,0.17172610278982253,0.17172610278982253,-0.507014934351861,-0.507014934351861,-0.40314234792419534,-0.43760236790487467,-0.5599877891582304,-0.5452586786653536,-0.34884682636754094,-0.4115521417552073,-0.4423421688597366,-0.568893876702319,-0.5631679180207583,-0.38574121346741624,15.763859107763352,15.763859107763352,11.403482275707105,11.403482275707105,17.71017040319613,17.71017040319613,5.611249943818791,5.611249943818791,10.373871865862526,10.373871865862526,8.38662232816219,8.994460098828469,11.566645423626767,11.222794292317872,7.531949546610647,8.530266493421237,9.08205188635003,11.779121768600334,11.642120241000924,8.099008705666066,140.00925505316508,140.00925505316508,0.0,155.5658389479612,0.0,140.00925505316508,155.5658389479612,0,0
+2017/03/28 23:00:00,91.14366362115781,0,840.8132163891629,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.42851040301798254,11.772196956847273,0,0,282.1966295150597,505.3810581052871,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,364.19615134908287,0.0,0.0,0.0,1572.7662581282937,0.0,0.0,0.0,0.0,0.0,1162.0191301876184,0.0,4103.859850850072,0.0,3191.5140611064176,0.0,5022.587862374643,0.0,3219.1845469644268,0.0,1190.528349520968,0.0,4084.6667290164287,0.0,3202.23598389537,0.0,5030.457774211631,0.0,6787.401478338925,0,0,0,0,0,0,0,0,0.04476551843651383,0.001416349799190904,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8161208103874932,-0.8161208103874932,-0.7403134900497509,-0.7403134900497509,-0.8674957419921154,-0.8674957419921154,-0.13646164075544998,-0.13646164075544998,-0.5748410364944552,-0.5748410364944552,-0.45451776555323276,-0.48094491690677543,-0.588430933632634,-0.5776077123447513,-0.3740908105583963,-0.4764616098137247,-0.4992969137775592,-0.605609210006695,-0.6030844957401279,-0.41399205305191117,19.046971085269476,19.046971085269476,16.538772338741808,16.538772338741808,20.884607078273405,20.884607078273405,5.3857992290882635,5.3857992290882635,11.922921537496208,11.922921537496208,9.311484908252524,9.831431064475709,12.257279294788319,11.990341531820974,7.913675534193644,9.741103167982203,10.210223285668079,12.691392025758276,12.626787066288074,8.572508492707414,91.14366362115781,91.14366362115781,0.0,101.270737356842,0.0,91.14366362115781,101.270737356842,0,0
+2017/03/29 00:00:00,39.34895609021381,0,558.2497125019421,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.578593472938403e-09,9.551635091212038,0,0,0.0,505.01418373312583,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02972162819288711,0.0009403715983390867,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.70270611245774,-0.70270611245774,-0.6483455871902333,-0.6483455871902333,-0.804168779988588,-0.804168779988588,-0.09306693754095506,-0.09306693754095506,-0.2405012712269243,-0.2405012712269243,-0.4337468266107164,-0.4424184788093533,-0.7689199780095831,-0.6904387541785912,-0.1541375346025261,-0.47487294413949804,-0.4770313160108755,-0.7793491973087502,-0.7509958341442969,-0.24852363250377987,15.38572371716684,15.38572371716684,13.826941674334364,13.826941674334364,18.63531772677692,18.63531772677692,5.179365873538316,5.179365873538316,6.200343769536261,6.200343769536261,8.923921355141104,9.083469995548029,17.456508642251777,15.022791101454004,5.4923281948701685,9.709303377785957,9.752533299883552,17.799787743186243,16.877379161526676,6.28196872697464,39.34895609021381,39.34895609021381,0.0,43.72106232245979,0.0,39.34895609021381,43.72106232245979,0,0
+2017/03/29 01:00:00,23.72214884942362,0,38.986733682381804,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250534257458281,0,0,0.0,3.496381169837666,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002075682578983557,6.567314992892924e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.719011518632986,-0.719011518632986,-0.6701845074067738,-0.6701845074067738,-0.8414027967828356,-0.8414027967828356,-0.14440369646465834,-0.14440369646465834,-0.10786809020559,-0.10786809020559,-0.5022884201779284,-0.5080219259611531,-0.8416717061399241,-0.7598574684550637,-0.0819596900961672,-0.556725360097341,-0.5541431152198634,-0.8924612766868583,-0.8415638328148975,-0.2222450302851568,15.878173965588218,15.878173965588218,14.437801103607228,14.437801103607228,19.937524098390384,19.937524098390384,5.432055270354354,5.432055270354354,5.240986260375848,5.240986260375848,10.273347955554968,10.395413445745746,19.947140181094568,17.16198234811216,5.139095153646366,11.489673083341756,11.429075914774742,21.817081471653083,19.943282315046403,6.0246618982228455,23.72214884942362,23.72214884942362,0.0,26.357943166026242,0.0,23.72214884942362,26.357943166026242,0,0
+2017/03/29 02:00:00,28.395054544650854,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5756914581779582,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7286100220719073,-0.7286100220719073,-0.6847215550638515,-0.6847215550638515,-0.8574099037987015,-0.8574099037987015,-0.18302935525905212,-0.18302935525905212,-0.03247640781485354,-0.03247640781485354,-0.5557925958611873,-0.5596735571725883,-0.9046459788471657,-0.8212355853941088,-0.058378573459241176,-0.618712138247727,-0.6139811388142801,-0.9669371708082949,-0.9089915659570509,-0.22661061353660372,16.173419677478293,16.173419677478293,14.855867665439064,14.855867665439064,20.515176627019102,20.515176627019102,5.694485261418265,5.694485261418265,5.021834204564783,5.021834204564783,11.4677506851896,11.559211483999633,22.281437666081516,19.224973898106086,5.070559282483018,13.031126596701668,12.907601107661861,24.748431368422132,22.448504760492327,6.065400575425016,28.395054544650854,28.395054544650854,0.0,31.550060605167616,0.0,28.395054544650854,31.550060605167616,0,0
+2017/03/29 03:00:00,23.72394680238908,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5268513787112877,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7553529540279716,-0.7553529540279716,-0.7151822253895841,-0.7151822253895841,-0.89077871315962,-0.89077871315962,-0.23775180816114325,-0.23775180816114325,0.006736391987012542,0.006736391987012542,-0.600457920084075,-0.6028995422913385,-0.9569596038310734,-0.8693924100985995,-0.035495838529307745,-0.6789035576698815,-0.6734842835049463,-1.0366870916874171,-0.9747541586901038,-0.2263852166426255,17.01689398903882,17.01689398903882,15.761493375786372,15.761493375786372,21.753434392689087,21.753434392689087,6.172990835075552,6.172990835075552,5.000939369428565,5.000939369428565,12.559869190160327,12.62206516469567,24.342943271134672,20.954549108454486,5.026083164571631,14.687452222149702,14.531896061310547,27.689637650938877,25.068823600712733,6.063277658228998,23.72394680238908,23.72394680238908,0.0,26.35994089154342,0.0,23.72394680238908,26.35994089154342,0,0
+2017/03/29 04:00:00,41.8418871634717,0,318.73781572068384,0,0,0,0.0,0.0059466101192866576,4.633261998087618,9.319298099999997,25.555573451546493,0,1.033990160172534,0.7687237462934687,0.5250930972523057,0,0,230.01193443932357,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7744867149866472,0.0,0.0,0.0,0.0,0.0,733.0944463551106,0.0,390.2796166523621,2.014486567584429,2590.797037413062,0.36538303957422613,1264.2368077500414,0.0,0.0,0.4075452044399169,1103.7473048485,0.0,585.5782884238929,2.078245179721112,3022.723029368125,1.0809501279669735,1589.9343797794381,0.0,0.0,0,0,0,0,0,0,0,0,0.01696983740019423,0.000536913826389702,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7191607072016073,-0.7191607072016073,-0.6839347385083239,-0.6839347385083239,-0.8520467913487334,-0.8520467913487334,-0.2233763498357872,-0.2233763498357872,0.15014340962566827,0.15014340962566827,-0.5531331592241839,-0.5666289399748264,-0.7046368321647939,-0.6801215645861383,0.0023923467476101856,-0.5983344829727967,-0.6111830585960236,-0.7512448675402987,-0.7391843947005479,-0.21026238756213805,15.882732601946586,15.882732601946586,14.833005829349531,14.833005829349531,20.320449701225954,20.320449701225954,6.035142432354917,6.035142432354917,5.467118830684214,5.467118830684214,11.405454069183108,11.724760000278934,15.443436248783058,14.722589086742317,5.000118475677411,12.505988771902167,12.83500090567452,16.885331302921003,16.503268472003356,5.916946747272178,41.8418871634717,41.8418871634717,0.0,46.490985737190776,0.0,41.8418871634717,46.490985737190776,0,0
+2017/03/29 05:00:00,74.99061526021167,0,283.1364487106622,0,0,0,0.05617481427396608,0.003852267474757582,5.555297838843742,9.319298099999997,57.911447091112116,0,0.9601558012125047,0.6592523718287894,0.5251369754657664,0,0,70.19433363539738,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,178.3912086904508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,473.38982820915436,0.0,255.05371234459352,1.4902650236492718,1997.9971700373521,0.0,926.0984506477107,0.0,0.0,0.0,720.6017313784072,0.0,381.25090180531606,1.7737856213891519,2419.578225379232,0.5882168297191583,1238.6176527174564,0.0,0.0,0,0,0,0,0,0,0,0,0.015074394250410792,0.00047694332636341846,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5190762239670642,-0.5190762239670642,-0.49043476566467914,-0.49043476566467914,-0.6499578558900005,-0.6499578558900005,-0.051792456977842107,-0.051792456977842107,0.4736014286467938,0.4736014286467938,-0.5405249840210786,-0.5542888820798807,-0.6602648122820348,-0.645967790840603,0.10124999347483128,-0.5761578057633364,-0.5917211367344364,-0.677542746435134,-0.6797564988024596,-0.08916478679513014,10.634770231994395,10.634770231994395,10.025489588343234,10.025489588343234,13.871332063997968,13.871332063997968,5.055534916123463,5.055534916123463,9.683930283996816,9.683930283996816,11.114282819555399,11.432488905519008,14.157774607289639,13.761679774734233,5.212309612114794,11.954967933242244,12.339434543070851,14.6482716745045,14.712050993335481,5.164634929847679,74.99061526021167,74.99061526021167,0.0,83.32290584467962,0.0,74.99061526021167,83.32290584467962,0,0
+2017/03/29 06:00:00,101.18546579845433,0,757.3222381633019,0,0,0,0.0,0.0029212959899061084,11.110595677687485,13.929299233552332,73.80580873715317,0,1.1742677775744443,0.6375011879354553,0.5250718885615681,0,0,45.16172876301686,481.4732180687481,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,580.55859347513,0.0,337.7484051719904,1.0901610650836724,1853.2910409576157,0.0,908.712732084809,0.0,0.0,0.0,661.5055268063852,0.0,361.34706955939004,1.8311349248224358,1962.3435011470265,0.0,1034.4380230100273,0.0,0.0,0,0,0,0,0,0,0,0,0.04032039691344482,0.0012757092527062991,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4193014009591072,-0.4193014009591072,-0.396936561537309,-0.396936561537309,-0.5479996728781356,-0.5479996728781356,0.019396999820151268,0.019396999820151268,0.7250860551475933,0.7250860551475933,-0.5332041382878142,-0.5455138386241479,-0.6442277976330713,-0.6319193211359624,0.1532424333765879,-0.5644897757944721,-0.5794047341355554,-0.655363712158889,-0.6600152631082904,0.010273451029734966,8.665310438959708,8.665310438959708,8.282564976180325,8.282564976180325,11.286070606416658,11.286070606416658,5.007788562309855,5.007788562309855,16.064563480679382,16.064563480679382,10.9483772178193,11.228670958378729,13.714078593118899,13.381103850711298,5.486620893838989,11.67362127601261,12.034310336359397,14.020993105675274,14.15078495917885,5.0021848197097825,101.18546579845433,101.18546579845433,0.0,112.42829533161591,0.0,101.18546579845433,112.42829533161591,0,0
+2017/03/29 07:00:00,148.69239842833204,0,911.6665452589774,0,0,0,0.0,0.0,9.277979646591096,0.0,69.33401494192633,0,39.380909295966944,0.18710662993618749,27.080412711457203,0,0,45.83349387020732,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,142.41634154684476,0.0,0.0,0.0,974.1216569339583,0.0,0.0,0.0,0.0,0.0,2794.19399559201,0.0,4304.884860226581,0.0,4370.22222299137,0.0,4390.523109021475,0.0,2271.148517363023,0.0,2869.8708880282193,0.0,4342.953820709832,0.0,4509.535255209736,0.0,4365.437507495455,0.0,1848.483815015116,0,0,0,0,0,0,0,0,0.048537802147075815,0.0015357022262944304,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6024522981708965,-0.6024522981708965,-0.5926501309832917,-0.5926501309832917,-0.6825032848032193,-0.6825032848032193,-0.1896090021707202,-0.1896090021707202,0.2692577925609895,0.2692577925609895,-0.5163564690389136,-0.5454959394846762,-0.6303234221274084,-0.5823958614217473,-0.1870391536276431,-0.5453709183706736,-0.5796706603926572,-0.6426336832178725,-0.6017779099241869,-0.24653896432664185,12.610653061277347,12.610653061277347,12.362716264899504,12.362716264899504,14.791481997443526,14.791481997443526,5.74539301220689,5.74539301220689,6.5054680042199635,6.5054680042199635,10.57538957939623,11.228258625870993,13.33841210594035,12.107806751391863,5.725294482517711,11.225378971270715,12.040828814401024,13.670583468282658,12.5934614501368,6.261523636947672,148.69239842833204,148.69239842833204,0.0,165.21377603148005,0.0,148.69239842833204,165.21377603148005,0,0
+2017/03/29 08:00:00,164.84150148445678,0,986.5781263449023,0,0,0,0.0,0.0,11.86011032607099,0.0,83.2008179303116,0,39.380909295966944,0.13989305717670644,26.827795672476235,0,0,67.50954618731605,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1541.9788177117168,0.0,3596.3477564138975,0.0,3559.613873314109,0.0,3290.8489021819432,0.0,199.4310895516557,0.0,1528.1066450276599,0.0,3586.8775179393297,0.0,3501.1805491912774,0.0,2981.19980025649,0.0,210.60633245960204,0,0,0,0,0,0,0,0,0.05252615021159798,0.0016618907789479782,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5616889222653321,-0.5616889222653321,-0.5949298947445772,-0.5949298947445772,-0.6760028081570567,-0.6760028081570567,0.0902897766879374,0.0902897766879374,-0.21956361917965117,-0.21956361917965117,-0.46793625647001724,-0.5350419481525687,-0.6128593732705314,-0.5015312154271603,-0.30399496499577205,-0.48279309467132797,-0.565642906273464,-0.6206326499531796,-0.5089694392213764,-0.3442508725833021,11.606964298186995,11.606964298186995,12.420008645965567,12.420008645965567,14.604030332609824,14.604030332609824,5.1688170439829975,5.1688170439829975,6.000035570072853,6.000035570072853,9.571728781753649,10.989807569591221,12.878454487910616,10.257333396586702,6.920519148242036,9.868919817488873,11.701163282258165,13.08154797007407,10.4157226995857,7.465370411805125,164.84150148445678,164.84150148445678,0.0,183.15722387161864,0.0,164.84150148445678,183.15722387161864,0,0
+2017/03/29 09:00:00,181.2656192535609,0,999.3254397698659,0,0,0,0.0,0.0,11.323895916778682,0.0,106.27511244621549,0,39.380909295966944,0.07485700458937682,20.7788693875562,0,0,45.625472052294306,581.051266335858,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2593.0045973324914,0.0,2297.4325628342003,0.0,1819.8269968620502,0.0,8.787163516988326,0.0,0.0,0.0,2615.779465385444,0.0,2175.624810949038,0.0,1627.2414758953084,0.0,13.315099041762128,0,0,0,0,0,0,0,0,0.05320482662036306,0.0016833636274448244,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4080283924871291,-0.4080283924871291,-0.5330112850349955,-0.5330112850349955,-0.6221622819061914,-0.6221622819061914,0.3914734057548494,0.3914734057548494,-0.28229074272271604,-0.28229074272271604,-0.37784293377304096,-0.5187636251546776,-0.5897159232900281,-0.4410249547353282,-0.3207364152705797,-0.36608637786948783,-0.5391782642543747,-0.5897998099697939,-0.4245120607497057,-0.35316415919778005,8.469710190133185,8.469710190133185,10.944038144152145,10.944038144152145,13.121821640256158,13.121821640256158,8.192323146323403,8.192323146323403,6.655220844186161,6.655220844186161,7.972731437954977,10.627928955223766,12.289309136549306,9.05761282818682,7.138765124678386,7.78969773851405,11.08358908282122,12.291402599990406,8.757562563011646,7.595310654960841,181.2656192535609,181.2656192535609,0.0,201.40624361506767,0.0,181.2656192535609,201.40624361506767,0,0
+2017/03/29 10:00:00,212.08320952073944,0,1069.6119831571036,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.08138351780486766,18.495355717563555,0,0,51.89989469560429,556.3375057984258,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2370.655031625046,0.0,1187.327201384233,0.0,1404.6987475464343,0.0,0.0,0.0,0.0,0.0,2360.6996467268227,0.0,994.8998897403583,0.0,1108.7798886700543,0.0,0.0,0,0,0,0,0,0,0,0,0.05694693425201087,0.0018017613044459682,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2915580838853361,-0.2915580838853361,-0.49355965040496147,-0.49355965040496147,-0.5202020305728683,-0.5202020305728683,0.6365848430352244,0.6365848430352244,-0.24249553721003472,-0.24249553721003472,-0.24516242594086057,-0.5105687891220496,-0.5718746257212857,-0.4231435131371147,-0.3422952292582018,-0.19548954579247338,-0.5210773365261547,-0.5649629216301195,-0.4004481919555688,-0.3642081550479154,6.76606454437821,6.76606454437821,10.090241418989919,10.090241418989919,10.6594437321924,10.6594437321924,13.506544433591941,13.506544433591941,6.220382282097276,6.220382282097276,6.247440418969674,10.450091661958837,11.851003205042105,8.733220351485144,7.437312354592905,5.7924223907004375,10.67866508713064,11.684915175688772,8.341244888347191,7.761002200223771,212.08320952073944,212.08320952073944,0.0,235.64801057859938,0.0,212.08320952073944,235.64801057859938,0,0
+2017/03/29 11:00:00,227.85714299149862,0,1085.4516561691892,0,0,0,0.04441023805080552,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,0.005281887951196373,20.86317449204712,0,0,3.3760781553170265,567.4654665819825,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,170.48388581944482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,595.2118499331033,0.0,301.36035587701826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,468.8626412326706,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05779025017572571,0.0018284432324326158,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.23327612059452352,-0.23327612059452352,-0.4029679227403824,-0.4029679227403824,-0.526175394273995,-0.526175394273995,0.7979803110175859,0.7979803110175859,-0.1341534915144567,-0.1341534915144567,-0.12936853061140582,-0.4808478731999121,-0.5385448096463369,-0.39688248915535757,-0.2625037414553326,-0.053712580924094276,-0.47961561318013957,-0.5179185104343301,-0.3382333254183675,-0.29369389567648185,6.129143360264209,6.129143360264209,8.383675095649238,8.383675095649238,10.79127531627553,10.79127531627553,18.42454454703028,18.42454454703028,5.372848340876359,5.372848340876359,5.346706071697611,9.82946668559066,11.06917888643332,8.281665541422441,6.430677396211792,5.059729526798222,9.804558355151713,10.609454646989263,7.3795545613055396,6.79212448205746,227.85714299149862,227.85714299149862,0.0,253.17460332388734,0.0,227.85714299149862,253.17460332388734,0,0
+2017/03/29 12:00:00,205.58114746504114,0,1040.7773537728401,0,0,0,0.12061787226660743,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,0.0002873383777801293,18.55677747092765,0,0,0.185435415908004,561.472159437586,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,465.3528858635326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05541175722559046,0.0017531893734366877,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.08756724290313454,-0.08756724290313454,-0.414393097623447,-0.414393097623447,-0.5818020418561131,-0.5818020418561131,0.821667222327031,0.821667222327031,-0.011652462145163295,-0.011652462145163295,-0.03297536816987287,-0.3714272686367296,-0.44954369733519517,-0.34300857646569244,-0.18989652736278229,0.03213663629620469,-0.3854073263147495,-0.4388721537742234,-0.27005622645269706,-0.1413215343082164,5.158786335443381,5.158786335443381,8.579476156093591,8.579476156093591,12.09318484205589,12.09318484205589,19.240045934499577,19.240045934499577,5.002810728427534,5.002810728427534,5.022510303212016,7.872117625974752,9.21698483141951,7.447528078590338,5.747658880167819,5.0213797099917485,8.093616615295602,9.017831146614512,6.514436404564989,5.413792491159086,205.58114746504114,205.58114746504114,0.0,228.42349718337903,0.0,205.58114746504114,228.42349718337903,0,0
+2017/03/29 13:00:00,202.96512206082843,0,984.6296616732786,0,0,0,0.15431968550446123,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,0.00023882535125595273,16.301348582423984,0,0,0.15360707485362457,540.8466481916236,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,597.0528563976684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05242241250923996,0.001658608590356514,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.0116028398216733,-0.0116028398216733,-0.3368621136989013,-0.3368621136989013,-0.5431009181415205,-0.5431009181415205,0.8466211632466197,0.8466211632466197,0.03867682527703432,0.03867682527703432,-0.013165766043449557,-0.30490326250977323,-0.41158333647418033,-0.330567886149609,-0.14808219911298695,0.04373996108400341,-0.276008992440397,-0.38325658695360104,-0.24502495167686808,-0.11833711566180102,5.00278684013054,5.00278684013054,7.360214987307899,7.360214987307899,11.173211071535661,11.173211071535661,20.124669163674426,20.124669163674426,5.030967891349178,5.030967891349178,5.003588198696562,6.932055600206084,8.530804955631751,7.27246537828556,5.4543691731916795,5.039607269894745,6.582147531130758,8.058997489781802,6.246038306976757,5.290063957692624,202.96512206082843,202.96512206082843,0.0,225.51680228980936,0.0,202.96512206082843,225.51680228980936,0,0
+2017/03/29 14:00:00,187.11584913934428,0,927.2973004450536,0,0,0,0.05099812331853439,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,0.00014553714592353974,14.055674456538178,0,0,0.09410497000990073,519.0641415807861,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,195.67536174419274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049369995130987075,0.0015620322322190212,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.22424597358887677,-0.22424597358887677,-0.5843589710830076,-0.5843589710830076,-0.5972074819300773,-0.5972074819300773,0.8374062608419403,0.8374062608419403,-0.01923463529128861,-0.01923463529128861,-0.06578695052945058,-0.35170538659431444,-0.4243140783234668,-0.3825481137978519,-0.2183138104030925,-0.0831418742674656,-0.29149033777872646,-0.4037256397305525,-0.29529111590213486,-0.24591059100766505,6.0432350890436055,6.0432350890436055,12.156254266642065,12.156254266642065,12.477471569419919,12.477471569419919,19.794965553921145,19.794965553921145,5.007658715992235,5.007658715992235,5.089607544503906,7.573813041358065,8.754036099706099,8.047636884488199,5.9886601537088495,5.143137946420552,6.765241098391527,8.396487568015587,6.81173877969394,6.255084939452701,187.11584913934428,187.11584913934428,0.0,207.90649904371585,0.0,187.11584913934428,207.90649904371585,0,0
+2017/03/29 15:00:00,182.4597569589117,0,948.1257881927202,0,0,0,0.0646170303590894,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,0.001213466157028372,14.088966708528995,0,0,0.7861240925212927,539.2006102059415,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,248.1393103152776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,276.35887091227335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050478919246472576,0.0015971178182491103,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.29305199968059736,-0.29305199968059736,-0.5695117005806491,-0.5695117005806491,-0.5920686905951567,-0.5920686905951567,0.8405537708090038,0.8405537708090038,-0.027592478023539757,-0.027592478023539757,-0.12796413960376204,-0.36248099416584456,-0.465444675866556,-0.41929678513430196,-0.2564353239130627,-0.03095084563624471,-0.31169864453992335,-0.4163377641225119,-0.36489446720261165,-0.30361689911818657,6.784272185756663,6.784272185756663,11.79398906668031,11.79398906668031,12.348140278978036,12.348140278978036,19.90718310136222,19.90718310136222,5.015760757786879,5.015760757786879,5.339214028834093,7.734747238407081,9.522819728988111,8.665229234262839,6.36511689705948,5.019830997283236,7.019472476500766,8.613360124150148,7.771470268547105,6.915727550152553,182.4597569589117,182.4597569589117,0.0,202.73306328767967,0.0,182.4597569589117,202.73306328767967,0,0
+2017/03/29 16:00:00,205.44860741019528,0,988.7669102409639,0,0,0,0.018150114019307148,0.0,16.923524219979218,0.0,131.64086955684016,0,39.380909295966944,0.012616827257998285,14.04056219367736,0,0,8.30587985906385,519.0864477188262,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,69.44820229752192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,783.5221773557172,0.0,154.0823518265816,0.0,1012.5237360330318,0.0,0.0,0.0,0.0,0.0,413.388084222137,0.0,0.0,0.0,579.6928787371174,0.0,182.66726703958437,0,0,0,0,0,0,0,0,0.05264268268747111,0.0016655777852547676,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4148853861715585,-0.4148853861715585,-0.44150773155669354,-0.44150773155669354,-0.6107412496353012,-0.6107412496353012,0.8512432270457759,0.8512432270457759,-0.03216870837712887,-0.03216870837712887,-0.19454504677091236,-0.41185264620049133,-0.48225039018594945,-0.43484184855807273,-0.2957817292251494,-0.1044618930260479,-0.3998168395793503,-0.4296583614915142,-0.417116505178177,-0.33054929319027493,8.588038495839186,8.588038495839186,9.066561417132348,9.066561417132348,12.823568600313735,12.823568600313735,20.291376329179585,20.291376329179585,5.021422406794002,5.021422406794002,5.784771375779712,8.535455332060891,9.857896222904941,8.943890324090034,6.817785284091698,5.225999856326553,8.330655992551058,8.84981853928609,8.626974397389418,7.272208659385797,205.44860741019528,205.44860741019528,0.0,228.27623045577252,0.0,205.44860741019528,228.27623045577252,0,0
+2017/03/29 17:00:00,212.35874728056208,0,1029.8653944064265,0,0,0,0.0,0.0,17.073973916819753,0.0,133.89528835348938,0,39.380909295966944,0.010339072053106314,18.566261439778604,0,0,7.024834672679385,561.4659770706737,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,562.9385536802696,0.0,606.7948309433361,0.0,786.6889483351206,0.0,0.0,0.0,0.0,0.0,241.50981537753827,0.0,159.6126882242227,0.0,404.470467812155,0.0,0.0,0,0,0,0,0,0,0,0,0.05483079642636156,0.0017348081787121677,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4691185871486113,-0.4691185871486113,-0.46806308766127663,-0.46806308766127663,-0.610427301713298,-0.610427301713298,0.8573387105622403,0.8573387105622403,-0.05013423837134615,-0.05013423837134615,-0.17927830358021227,-0.40615009179217093,-0.47708021668773465,-0.4347610040644656,-0.24940143526672776,-0.16729745414196004,-0.39943878236333275,-0.44491043154610466,-0.4225392764120721,-0.30188444540822934,9.595031198222074,9.595031198222074,9.574225598375975,9.574225598375975,12.815449992334564,12.815449992334564,20.512583886126166,20.512583886126166,5.052035370108484,5.052035370108484,5.666271923241709,8.437648498274598,9.753515056455143,8.942414272319638,6.291064227471821,5.580091588133001,8.324323467688401,9.129916860308313,8.722498423045693,6.8938477919032835,212.35874728056208,212.35874728056208,0.0,235.95416364506897,0.0,212.35874728056208,235.95416364506897,0,0
+2017/03/29 18:00:00,196.89155587646536,0,1030.1531700619892,0,0,0,0.0,0.0,19.360722473577706,0.0,110.93442390708215,0,39.380909295966944,0.006627219161577402,25.492885379449785,0,0,4.613532366770297,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.44586971534748,0.0,949.2810400111935,0.0,232.82967206809667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,488.3575779117282,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054846117815421064,0.0017352929367821213,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5196007824604604,-0.5196007824604604,-0.4616133132940181,-0.4616133132940181,-0.6217537403872556,-0.6217537403872556,0.8484442416731632,0.8484442416731632,-0.05502785676379068,-0.05502785676379068,-0.2100246189096677,-0.4038877531513427,-0.46760740270153706,-0.42528579456275856,-0.17137252833193123,-0.19420688551908033,-0.387639244294435,-0.45291090171906745,-0.41116310175698384,-0.23335867685088785,10.646259782435749,10.646259782435749,9.448132925562518,9.448132925562518,13.111055215693057,13.111055215693057,20.190317227500998,20.190317227500998,5.062690972840116,5.062690972840116,5.9148702251744965,8.399231985401045,9.565258149000385,8.771360438696618,5.608732273675045,5.782041130144634,8.129751314828837,9.280840428953084,8.523554649011544,6.1299445379865745,196.89155587646536,196.89155587646536,0.0,218.76839541829483,0.0,196.89155587646536,218.76839541829483,0,0
+2017/03/29 19:00:00,195.7589202977391,0,1001.9029451424935,0,0,0,0.0,0.0,24.999863057464953,0.0,101.68988858149199,0,39.380909295966944,0.016535485663291768,27.0977424753112,0,0,11.85365995981906,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,524.7873793120295,0.0,1388.1102394999339,0.0,609.5996483303553,0.0,0.0,0.0,0.0,0.0,414.8673490849644,0.0,1059.8483173755865,0.0,408.7303799776007,0.0,0.0,0,0,0,0,0,0,0,0,0.05334205491557718,0.0016877054350493868,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5583796091647453,-0.5583796091647453,-0.46025487413264954,-0.46025487413264954,-0.6373491606899717,-0.6373491606899717,0.814048677414629,0.814048677414629,-0.06917058997573976,-0.06917058997573976,-0.2271058830817127,-0.40347560335180715,-0.45605712113586316,-0.41746853772206005,-0.18501872173966016,-0.23689563363555777,-0.39697797978918964,-0.44613020106614054,-0.41078917858320324,-0.20611569603628332,11.528645041600626,11.528645041600626,9.421803960611342,9.421803960611342,13.527184440515924,13.527184440515924,18.975170772986658,18.975170772986658,5.099064234291546,5.099064234291546,6.070072791389649,8.39225690863286,9.340946151446786,8.633137307538192,5.709686593055551,6.164538017014806,8.283254007940101,9.152749151061172,8.517109715465153,5.881071382841853,195.7589202977391,195.7589202977391,0.0,217.50991144193233,0.0,195.7589202977391,217.50991144193233,0,0
+2017/03/29 20:00:00,211.22722796379338,0,972.7515318607881,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.02421189894498268,23.29928689869106,0,0,18.19259919065763,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,843.7459549348695,0.0,1751.3616408791738,0.0,902.9018904310462,0.0,0.0,0.0,0.0,0.0,694.7118836073303,0.0,1425.3637749809884,0.0,683.6037705250568,0.0,0.0,0,0,0,0,0,0,0,0,0.051790012079813014,0.0016385998815889081,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6123057017523542,-0.6123057017523542,-0.46304724794895186,-0.46304724794895186,-0.583304734258392,-0.583304734258392,0.7504473149898564,0.7504473149898564,-0.10538846506521699,-0.10538846506521699,-0.24119322395831594,-0.3973011286149261,-0.4465170487716498,-0.4096023781105236,-0.14547047481585987,-0.2527335267850658,-0.4024849790682838,-0.44025529798455315,-0.41078904658116483,-0.20672825648711385,12.864088676129782,12.864088676129782,9.47601134580421,9.47601134580421,12.130216003444048,12.130216003444048,16.859873200055432,16.859873200055432,5.230028836425518,5.230028836425518,6.207277632194192,8.288632413289903,9.160003732797904,8.496693712478546,5.438468382914877,6.325885098808342,8.375521672387464,9.04336744237878,8.517107441337771,5.886325685343806,211.22722796379338,211.22722796379338,0.0,234.6969199597704,0.0,211.22722796379338,234.6969199597704,0,0
+2017/03/29 21:00:00,197.13103395767152,0,951.0657687150488,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.04046349382207783,25.194633013229883,0,0,31.997188557462593,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1665.902588600302,0.0,1396.6716822574494,0.0,1708.7820891738288,0.0,423.3787183724008,0.0,0.0,0.0,1567.8849602212451,0.0,1133.8925055427337,0.0,1538.7246975811117,0.0,219.13817092872623,0,0,0,0,0,0,0,0,0.05063544598714452,0.0016020702152158318,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5270953203268364,-0.5270953203268364,-0.45919512124873,-0.45919512124873,-0.5732327714292413,-0.5732327714292413,0.6722807420658248,0.6722807420658248,-0.1870614347998729,-0.1870614347998729,-0.26464893943612033,-0.41347923703495953,-0.45333187527947505,-0.42399860728244393,-0.23041086725810317,-0.27094931735874345,-0.42522717136261867,-0.45191923722980804,-0.43067532189881486,-0.26978999008902255,10.811715244260768,10.811715244260768,9.401319241044263,9.401319241044263,11.883883015580992,11.883883015580992,14.497521798564179,14.497521798564179,5.7254675557083345,5.7254675557083345,6.45422396357398,8.563608976707428,9.288858069034688,8.74842040341754,6.101514333875443,6.524499862006309,8.770314120926713,9.261983848721286,8.868183742158848,6.511442922761418,197.13103395767152,197.13103395767152,0.0,219.03448217519056,0.0,197.13103395767152,219.03448217519056,0,0
+2017/03/29 22:00:00,139.9645637612325,0,825.5828603893345,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.10757882593086888,20.67205212752542,0,0,84.81772906661865,581.0585450162672,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2433.3436787320015,0.0,1708.5578153942151,0.0,2463.0064422864625,0.0,47.97034450668042,0.0,0.0,0.0,2381.3234844749486,0.0,1496.880726349364,0.0,2337.8221008349747,0.0,14.993925754889894,0,0,0,0,0,0,0,0,0.04395464300185675,0.0013906942656651577,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5655830447795706,-0.5655830447795706,-0.5546172744377895,-0.5546172744377895,-0.642619299553225,-0.642619299553225,0.4802420812325073,0.4802420812325073,-0.4169422257417232,-0.4169422257417232,-0.28075927569832504,-0.44045973231632946,-0.47299901817986595,-0.4497159169409284,-0.28158292364745363,-0.29949251080838163,-0.4589398609897369,-0.47804484934754515,-0.46291320722054347,-0.31125010501827843,11.699732097956016,11.699732097956016,11.440181271951843,11.440181271951843,13.670191514227298,13.670191514227298,9.817213302829629,9.817213302829629,8.623925314429997,8.623925314429997,6.63725242911903,9.047148783841507,9.67193351759073,9.22023896528141,6.646903838755179,6.863847799706065,9.396392359735742,9.772902629237123,9.473401586657559,7.013642148918265,139.9645637612325,139.9645637612325,0.0,155.516181956925,0.0,139.9645637612325,155.516181956925,0,0
+2017/03/29 23:00:00,90.78455129901393,0,620.3857388877848,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.09070950235828458,11.75088553536308,0,0,71.09669364252342,496.0535164764452,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2836.1187572943018,0.0,1753.4231068126746,0.0,2857.444087113242,0.0,6.294583388923671,0.0,0.0,0.0,2785.445815018116,0.0,1565.1835772872964,0.0,2735.292107808493,0.0,2.3421163421192785,0,0,0,0,0,0,0,0,0.03302979626223836,0.0010450397300699945,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6716677608635924,-0.6716677608635924,-0.6698525262217803,-0.6698525262217803,-0.7500818557137832,-0.7500818557137832,0.25529956114385943,0.25529956114385943,-0.49471911329955603,-0.49471911329955603,-0.34871566715585994,-0.4653831521342536,-0.4928306464823053,-0.4740036104865521,-0.31036056673420764,-0.37226191925972435,-0.48937141885612967,-0.5021077194008048,-0.49271969339389865,-0.3406340324252739,14.480038585311107,14.480038585311107,14.428360572494356,14.428360572494356,16.848216738412418,16.848216738412418,6.353018748241482,6.353018748241482,10.114374319954592,10.114374319954592,7.530037064015488,9.521615418543377,10.075097760874613,9.691948285961772,7.00210470588695,7.885107711659785,10.003551758334169,10.269523959767838,10.072794935698681,7.413606439919263,90.78455129901393,90.78455129901393,0.0,100.87172366557103,0.0,90.78455129901393,100.87172366557103,0,0
+2017/03/30 00:00:00,39.347332996054355,0,567.5924843623636,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5785986122767824e-09,9.550011997052579,0,0,0.0,514.3569555935474,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030219044286989356,0.0009561094968288625,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5314620410663025,-0.5314620410663025,-0.5805534219249796,-0.5805534219249796,-0.6590953531816731,-0.6590953531816731,0.29524662511695554,0.29524662511695554,-0.13842658213017467,-0.13842658213017467,-0.2800294678204589,-0.4815413055303333,-0.6053978615589641,-0.5015348411436518,-0.08139873356379478,-0.32437293356711316,-0.521690762794884,-0.6151830748421725,-0.5289895333323751,-0.15942140719797038,10.909239596965705,10.909239596965705,12.062489375301368,12.062489375301368,14.125042413930728,14.125042413930728,6.811190961388078,6.811190961388078,5.396999055468271,5.396999055468271,6.628724537999119,9.843512207923766,12.685973216428465,10.257410019911305,5.137197091763369,7.187741261987313,10.69215543355864,12.938891386886894,10.853918341416502,5.526699075086924,39.347332996054355,39.347332996054355,0.0,43.71925888450484,0.0,39.347332996054355,43.71925888450484,0,0
+2017/03/30 01:00:00,23.774649787662998,0,36.764988243630896,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5775543639852051,0,0,0.0,1.2746357310867615,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.001957395206162801,6.193061990598096e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5373227040802018,-0.5373227040802018,-0.5924304915074627,-0.5924304915074627,-0.6786602920819846,-0.6786602920819846,0.22776623411135788,0.22776623411135788,-0.009220816764934608,-0.009220816764934608,-0.3357813421229141,-0.5505882958635648,-0.6682658966607351,-0.5711550370962741,-0.003403603855929048,-0.3845164797076613,-0.6024694402194091,-0.6971820265215644,-0.6099259333441631,-0.12211197670131399,11.041426833119147,11.041426833119147,12.357208452587855,12.357208452587855,14.68044222560897,14.68044222560897,6.0763183342572376,6.0763183342572376,5.0017600348941045,5.0017600348941045,7.345028047791786,11.34612838988329,14.383307574093337,11.833614870410685,5.000239805464673,8.079253241036312,12.611090306317095,15.221488019759391,12.802493612950158,5.308877120012539,23.774649787662998,23.774649787662998,0.0,26.416277541847776,0.0,23.774649787662998,26.416277541847776,0,0
+2017/03/30 02:00:00,28.344190273753842,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.524827187280943,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5277554499378172,-0.5277554499378172,-0.5860934222708883,-0.5860934222708883,-0.675187445299346,-0.675187445299346,0.19904649052015952,0.19904649052015952,0.06395267079498905,0.06395267079498905,-0.3615712172281204,-0.583677836600129,-0.7079009992696095,-0.6053054044554202,0.021208904439448364,-0.4239058168032999,-0.6506718559302177,-0.7485145774068387,-0.6582337355957031,-0.11573586976069858,10.826405307534742,10.826405307534742,12.199197876415809,12.199197876415809,14.580647083985596,14.580647083985596,5.8215705000553015,5.8215705000553015,5.084679408822737,5.084679408822737,7.720968608576229,12.139425626724744,15.541373605238746,12.683603297967721,5.009311637928818,8.746769453747419,13.891026538970749,16.798292683136665,14.100964362241044,5.277444474970039,28.344190273753842,28.344190273753842,0.0,31.493544748615378,0.0,28.344190273753842,31.493544748615378,0,0
+2017/03/30 03:00:00,23.72201437319127,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249189495134811,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5498746302280259,-0.5498746302280259,-0.6115308368043509,-0.6115308368043509,-0.6984245185191869,-0.6984245185191869,0.1330826959301452,0.1330826959301452,0.12309882229040743,0.12309882229040743,-0.4112987885700966,-0.6308698218618968,-0.7622984267996186,-0.6536545331346858,0.053686081806637406,-0.47756692703762665,-0.7064148587577405,-0.8075199968560516,-0.7149497634992488,-0.1150083809625791,11.329541869870454,11.329541869870454,12.844006018065414,12.844006018065414,15.258313510411298,15.258313510411298,5.366915424377524,5.366915424377524,5.313893013762069,5.313893013762069,8.525894825668658,13.353016354873276,17.240966911678072,13.973537583566582,5.059670598573518,9.763292139475709,15.49672677818161,18.750132640167152,15.75443047630597,5.273965500335706,23.72201437319127,23.72201437319127,0.0,26.3577937479903,0.0,23.72201437319127,26.3577937479903,0,0
+2017/03/30 04:00:00,41.4279954599653,0,345.2159086798496,0,0,0,0.0,0.003192957662797471,4.633261998087618,9.319298099999997,25.555573451546493,0,0.7945996725166223,0.5970467395439434,0.5250225406078111,0,0,256.4900273984892,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.06111738163344,0.2437659030150826,746.9975435434243,1.2827801565990287,1968.4411680032144,0.2273145209016093,825.0038081443716,0.0,0.0,0.0,291.29906360972825,0.0,803.1495340224274,1.2177779080951951,1883.6073518993614,0.22131917418655578,832.7890544698067,0.0,0.0,0,0,0,0,0,0,0,0,0.01837955068184019,0.0005815161719697634,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.518210363680899,-0.518210363680899,-0.581192130049773,-0.581192130049773,-0.6654822976815887,-0.6654822976815887,0.13037253640512375,0.13037253640512375,0.2538727610023306,0.2538727610023306,-0.43806539123676086,-0.5387312439901762,-0.5879783584384055,-0.549138510313621,0.08433247481975885,-0.4769969288975867,-0.5840806931616637,-0.6158160120930701,-0.5880993074449572,-0.1062676965390207,10.61583110034394,10.61583110034394,12.078182614283435,12.078182614283435,14.304529522773365,14.304529522773365,5.352112443409695,5.352112443409695,6.337897360703806,6.337897360703806,9.002974251722023,11.073418198818487,12.246015402089029,11.31245661313956,5.147268108869454,9.751842987262677,12.149376482846648,12.955393989559738,12.249024764428171,5.233884930636734,41.4279954599653,41.4279954599653,0.0,46.03110606662811,0.0,41.4279954599653,46.03110606662811,0,0
+2017/03/30 05:00:00,73.31103907012341,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.0,0.0,0.524996040167544,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.28528541569772775,-0.28528541569772775,-0.3512831140106208,-0.3512831140106208,-0.42875222856311557,-0.42875222856311557,0.33173475040046724,0.33173475040046724,0.5767486028359511,0.5767486028359511,-0.38784275721948475,-0.59146165751687,-0.6739008143745738,-0.6052841836149798,0.20234915746934867,-0.45235574849663307,-0.6308486528814893,-0.6893204432966162,-0.6369904601375419,0.02381095826671538,6.69064272241512,6.69064272241512,7.5676069980283955,7.5676069980283955,8.83349216036028,8.83349216036028,7.288605992423797,7.288605992423797,11.969370691313799,11.969370691313799,8.133056770765293,12.33293837116517,14.543807174696454,12.683059404426743,5.849108571082269,9.27027893238315,13.352450306202144,14.990028941960034,13.517494760306136,5.011736690223543,73.31103907012341,73.31103907012341,0.0,81.4567100779149,0.0,73.31103907012341,81.4567100779149,0,0
+2017/03/30 06:00:00,99.44251573051669,0,712.0180525874875,0,0,0,0.040630141543745564,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.03115636745998358,2.5203111192179764e-09,0.5250255705996649,0,0,0.0,481.3307612559507,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,130.6325801343942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03790836851627618,0.001199394355542369,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.11478343309486451,-0.11478343309486451,-0.18370012939681238,-0.18370012939681238,-0.25549981948004574,-0.25549981948004574,0.4706850785381645,0.4706850785381645,0.8211545512579075,0.8211545512579075,-0.33601156857094,-0.5400031861986456,-0.6466392483743086,-0.5574444491177492,0.3069871448480023,-0.40046542260452433,-0.5969291680982406,-0.6701999774806695,-0.6037368982031387,0.14380758908554553,5.272894212149836,5.272894212149836,5.699592374925288,5.699592374925288,6.355147960602835,6.355147960602835,9.625997779741994,9.625997779741994,19.2221451953303,19.2221451953303,7.348259019226489,11.102380950410904,13.780084014746294,11.506599306943798,6.958655257942425,8.341534115866438,12.470437710319587,14.438241141624843,12.643454897383563,5.428492305034538,99.44251573051669,99.44251573051669,0.0,110.49168414501854,0.0,99.44251573051669,110.49168414501854,0,0
+2017/03/30 07:00:00,150.3652625323159,0,903.1340871069827,0,0,0,0.0,0.0,11.007536273778666,0.0,69.33401494192633,0,39.380909295966944,0.11721949666732902,27.0936073215224,0,0,37.30103571821282,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,945.0693315539697,0.0,2916.338941708322,0.0,2338.5361398521172,0.0,2908.0597688212074,0.0,1762.2824005698305,0.0,1049.7264302554413,0.0,2893.47953169786,0.0,2339.352199721528,0.0,2844.109218318124,0.0,2695.618933988082,0,0,0,0,0,0,0,0,0.048083527755014975,0.0015213293011849976,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3222552365952024,-0.3222552365952024,-0.3765201236663912,-0.3765201236663912,-0.4366367197078388,-0.4366367197078388,0.3189868011848474,0.3189868011848474,0.5540741258213044,0.5540741258213044,-0.37118234289391705,-0.504090295503377,-0.5546178997992322,-0.5174952504803506,0.03470399449163379,-0.4105494901427833,-0.5462524578839257,-0.570366318733572,-0.5530096118363764,-0.07654592842960148,7.1591522329472355,7.1591522329472355,7.951842743045816,7.951842743045816,8.976733226927593,8.976733226927593,7.115401268314827,7.115401268314827,11.42746091557089,11.42746091557089,7.868311361455966,10.311556499333435,11.44019592507631,10.600213748284489,5.024932352004043,8.512981599561826,11.245698227098742,11.814581869745226,11.402567456816428,5.12132183060109,150.3652625323159,150.3652625323159,0.0,167.07251392479546,0.0,150.3652625323159,167.07251392479546,0,0
+2017/03/30 08:00:00,166.43306964961334,0,959.5635571816434,0,0,0,0.0,0.0,13.618162459406493,0.0,83.2008179303116,0,39.380909295966944,0.08225181657992453,26.718952944894117,0,0,40.49497702405719,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,447.8281780466875,0.0,2721.8014518893683,0.0,2063.8271616118,0.0,2729.1804652719443,0.0,962.9945803666394,0.0,687.4983664274032,0.0,2742.6991220242817,0.0,2106.625912307815,0.0,2703.4974629820613,0.0,704.3246151617282,0,0,0,0,0,0,0,0,0.05108787453947459,0.0016163847392428395,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46511656435294174,-0.46511656435294174,-0.427489850333868,-0.427489850333868,-0.5039469655289098,-0.5039469655289098,0.30075358291274296,0.30075358291274296,0.01682831979484714,0.01682831979484714,-0.3903836285456369,-0.4847060320622608,-0.5119114139068452,-0.4956407040822253,-0.1950301301657104,-0.4210434787861566,-0.5178566934929142,-0.5210732452493068,-0.5228657926215597,-0.2452593561358673,9.516398918854037,9.516398918854037,8.810805827046025,8.810805827046025,10.308512067548975,10.308512067548975,6.879634201509148,6.879634201509148,5.005862297755968,5.005862297755968,8.174474559211902,9.907877390466439,10.479029180694283,10.133597602314381,5.78869618753896,8.696023482046868,10.608104534188726,10.678575167266047,10.718041926751695,6.2484294957736495,166.43306964961334,166.43306964961334,0.0,184.92563294401484,0.0,166.43306964961334,184.92563294401484,0,0
+2017/03/30 09:00:00,181.9280845311768,0,997.9191834656068,0,0,0,0.0,0.0,11.993903757707747,0.0,106.27511244621549,0,39.380909295966944,0.07490042711375855,20.77128340171867,0,0,44.23829062450767,581.0321914593858,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.909674599548064,0.0,2318.71410004921,0.0,1477.4704121104567,0.0,2323.5421254310013,0.0,157.39545479990215,0.0,255.4778535330051,0.0,2343.610958378298,0.0,1476.8694910302065,0.0,2280.2058640834293,0.0,113.85803362800665,0,0,0,0,0,0,0,0,0.05312995649310089,0.001680994788807033,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.39056213257812555,-0.39056213257812555,-0.36874141840033,-0.36874141840033,-0.5024062169619758,-0.5024062169619758,0.3749168473922284,0.3749168473922284,-0.15547097029760998,-0.15547097029760998,-0.3821680012095539,-0.46895148219567506,-0.49056054276646205,-0.47749554473061906,-0.22835078504150508,-0.40863875621488327,-0.4978033328617153,-0.49712583741765,-0.5006056515023427,-0.2674218733131294,8.177394657673133,8.177394657673133,7.830517971069213,7.830517971069213,10.27584153479448,10.27584153479448,7.92662524284431,7.92662524284431,5.500892278051666,5.500892278051666,8.041550484941709,9.591734090892459,10.02808771531727,9.761857565700268,6.081862225361135,8.480161327723422,10.178851517205402,10.164652907413725,10.237791766985325,6.484947928764171,181.9280845311768,181.9280845311768,0.0,202.142316145752,0.0,181.9280845311768,202.142316145752,0,0
+2017/03/30 10:00:00,212.4642819980844,0,1045.6693326215884,0,0,0,0.0,0.0,17.187220306683432,0.0,133.89528835348938,0,39.380909295966944,0.06533331056264702,18.503555528927688,0,0,41.98786974588431,542.3068802126304,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2449.652168238256,0.0,924.9062532512951,0.0,2437.300315527571,0.0,33.542950773068505,0.0,0.0,0.0,2451.9702684077747,0.0,822.0174697994048,0.0,2357.2121666449857,0.0,23.690532153212526,0,0,0,0,0,0,0,0,0.05567220980301917,0.0017614299114361092,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3685171315277788,-0.3685171315277788,-0.29422795546723646,-0.29422795546723646,-0.47700933100191933,-0.47700933100191933,0.4974583437136417,0.4974583437136417,-0.11768164777945302,-0.11768164777945302,-0.37861716300890813,-0.4634819661974188,-0.478297071638831,-0.46979829685546204,-0.25119572098093235,-0.4004037639231563,-0.4890750862216058,-0.4825812639529621,-0.4884158249956044,-0.2818368094808937,7.827058027855102,7.827058027855102,6.798670886760817,6.798670886760817,9.752091950497658,9.752091950497658,10.17161892975605,10.17161892975605,5.286857574375375,5.286857574375375,7.984992049716766,9.484480589948944,9.777978512379264,9.608454788669206,6.309756788467581,8.340499193865057,9.997446839344306,9.864615529145482,9.98387861862652,6.649884613376983,212.4642819980844,212.4642819980844,0.0,236.071424442316,0.0,212.4642819980844,236.071424442316,0,0
+2017/03/30 11:00:00,228.43264828763634,0,1116.2084455740946,0,0,0,0.0,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.02962751975903417,20.862357900500864,0,0,20.56598723340891,581.0323469087956,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1552.5492141527438,0.0,917.778497271373,0.0,1521.9778095620509,0.0,0.0,0.0,0.0,0.0,1505.0413485604008,0.0,651.1479520806975,0.0,1411.8314317462941,0.0,0.0,0,0,0,0,0,0,0,0,0.059427764425401826,0.001880253041850778,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3708138562779528,-0.3708138562779528,-0.3025684861802382,-0.3025684861802382,-0.5287271131173557,-0.5287271131173557,0.6359339675036256,0.6359339675036256,-0.019580739453887226,-0.019580739453887226,-0.3239493699085208,-0.4358230167262997,-0.44812533609976946,-0.44030791735693364,-0.1929789013805022,-0.3390640412863731,-0.4509551883173144,-0.44662125895595606,-0.44901469194719384,-0.25641350234605215,7.862589720092018,7.862589720092018,6.902471615349583,6.902471615349583,10.848062344618441,10.848062344618441,13.488987850216915,13.488987850216915,5.0079368192884886,5.0079368192884886,7.182007917569962,8.96182678466522,9.190233048032468,9.04434055057925,5.772166827453432,7.391309822698815,9.24369293983608,9.161959093809145,9.206997116122409,6.3648839424035515,228.43264828763634,228.43264828763634,0.0,253.81405365292926,0.0,228.43264828763634,253.81405365292926,0,0
+2017/03/30 12:00:00,206.53215423741892,0,1046.5477510939215,0,0,0,0.0,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,0.008247211507067984,18.494222605234537,0,0,6.0086463926969955,561.4193457818789,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,402.0779127469951,0.0,595.5271281990966,0.0,380.40559301834696,0.0,0.0,0.0,0.0,0.0,295.67515254352134,0.0,348.62485502353485,0.0,198.0750468659832,0.0,0.0,0,0,0,0,0,0,0,0,0.055718977453136594,0.0017629096072860832,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48935401639048276,-0.48935401639048276,-0.31559553917840244,-0.31559553917840244,-0.5136179189476194,-0.5136179189476194,0.7593912356652658,0.7593912356652658,0.014699319365833905,0.014699319365833905,-0.25641214374756177,-0.39791757764670316,-0.4114599811030123,-0.40264403192376536,-0.0812084435482622,-0.25604132896253434,-0.40411736287415734,-0.40001589915588,-0.4042233116662136,-0.1533312010946495,10.003193135350614,10.003193135350614,7.070484645695757,7.070484645695757,10.515921912337618,10.515921912337618,17.14692494688991,17.14692494688991,5.004472800238517,5.004472800238517,6.364869439440071,8.298904817802452,8.528675921875973,8.378205821617655,5.136556187777089,6.360913914874459,8.403120972264134,8.333992732860338,8.404916227956605,5.487185399488041,206.53215423741892,206.53215423741892,0.0,229.4801713749099,0.0,206.53215423741892,229.4801713749099,0,0
+2017/03/30 13:00:00,203.55248964474188,0,991.6247288281313,0,0,0,0.0,0.0,16.86091082671979,0.0,129.2730206906943,0,39.380909295966944,0.009681492124427293,16.311979738009196,0,0,7.2162692115328255,540.779053209797,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,588.7276093497978,0.0,479.0292546294892,0.0,576.1584796045861,0.0,0.0,0.0,0.0,0.0,450.7638674527615,0.0,142.17466818012753,0.0,375.42916397109366,0.0,0.0,0,0,0,0,0,0,0,0,0.052794835065857186,0.0016703917804479465,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5351798115831946,-0.5351798115831946,-0.2025339833810028,-0.2025339833810028,-0.5200104839663443,-0.5200104839663443,0.8209793856555351,0.8209793856555351,0.000178541377132457,0.000178541377132457,-0.21628280495189295,-0.3752160659316041,-0.38936257692368953,-0.38163710210215823,-0.08690073292591383,-0.20467091594220188,-0.3778190227098555,-0.37656255909235803,-0.380460860780952,-0.12668325392048593,10.99292136874189,10.99292136874189,5.850663154293414,5.850663154293414,10.655241869952206,10.655241869952206,19.216031537365183,19.216031537365183,5.000000659870324,5.000000659870324,5.970314082792044,7.931323247460384,8.157797626465765,8.033060001646078,5.156377549836094,5.868740818393661,7.97235319210472,7.952511688141485,8.01429164802336,5.3324523603750436,203.55248964474188,203.55248964474188,0.0,226.16943293860209,0.0,203.55248964474188,226.16943293860209,0,0
+2017/03/30 14:00:00,189.06620279870816,0,941.4871675865727,0,0,0,0.0,0.0,16.86091082671979,0.0,115.5196477718057,0,39.380909295966944,0.01870260310034762,14.099198184550698,0,0,14.364905055471844,518.9832086368434,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1217.5910890576927,0.0,205.550677930618,0.0,1220.9019830789691,0.0,0.0,0.0,0.0,0.0,1115.7753816246418,0.0,0.0,0.0,1062.3419318983456,0.0,0.0,0,0,0,0,0,0,0,0,0.05012547416813075,0.0015859350623419178,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4000067218713738,-0.4000067218713738,-0.33319716183824133,-0.33319716183824133,-0.5576359605167349,-0.5576359605167349,0.8305700538942088,0.8305700538942088,-0.05683408225823964,-0.05683408225823964,-0.24874608592422107,-0.3788715774583996,-0.3879248068174594,-0.38617529668193334,-0.15243679057928688,-0.2419036028737959,-0.3831664101473436,-0.3722001717578942,-0.38732241549579616,-0.19918550137784521,8.333838861160586,8.333838861160586,7.30891634300572,7.30891634300572,11.511110964616648,11.511110964616648,19.552662492524433,19.552662492524433,5.066874637937474,5.066874637937474,6.284270651612445,7.989026513985138,8.134389920435169,8.106026025628012,5.4815125305790104,6.2144170566570125,8.057550284024572,7.884145686802626,8.124608904537993,5.822720394389464,189.06620279870816,189.06620279870816,0.0,210.07355866523127,0.0,189.06620279870816,210.07355866523127,0,0
+2017/03/30 15:00:00,182.2572903793303,0,959.3393938917012,0,0,0,0.0,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,0.031445934735289865,14.02566089108918,0,0,24.82741763765782,526.3729223597859,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1357.0714054127968,0.0,0.0,0.0,1477.7791432912607,0.0,427.8921744945246,0.0,0.0,0.0,1216.091465761856,0.0,0.0,0.0,1301.6946855395481,0.0,89.54711901896687,0,0,0,0,0,0,0,0,0.05107593991987883,0.0016160071361979455,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3128312686009193,-0.3128312686009193,-0.19470091473058143,-0.19470091473058143,-0.5519858318793808,-0.5519858318793808,0.8821918566405573,0.8821918566405573,-0.07482792843747868,-0.07482792843747868,-0.23022346284218817,-0.3579627566748427,-0.37588089764972393,-0.37873425172222175,-0.20809219743408272,-0.21769097603759563,-0.35255881982839105,-0.35961877523327007,-0.37448887672067066,-0.24589924928850337,7.034232766467227,7.034232766467227,5.78603143158449,5.78603143158449,11.378672898481355,11.378672898481355,21.430417748725603,21.430417748725603,5.115935694854699,5.115935694854699,6.09971923326772,7.666665396616295,7.941775384239605,7.98684848098236,5.89808144430765,5.9830157199483835,7.586378911377878,7.69151774804223,7.9199123498868005,6.25496887769188,182.2572903793303,182.2572903793303,0.0,202.5081004214781,0.0,182.2572903793303,202.5081004214781,0,0
+2017/03/30 16:00:00,205.7696633950342,0,1006.6589552713034,0,0,0,0.09188816547191023,0.0,17.133076708931206,0.0,131.64086955684016,0,39.380909295966944,0.016704678518998796,14.074239786850603,0,0,13.545288438080794,531.7390841701489,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,356.6883057373708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1057.954789893649,0.0,0.0,0.0,1138.478925792115,0.0,0.0,0.0,0.0,0.0,979.5530943432144,0.0,0.0,0.0,1026.0188472097238,0.0,12.511820073537699,0,0,0,0,0,0,0,0,0.05359526841764343,0.0016957169337503918,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2818418315369489,-0.2818418315369489,-0.256998759253148,-0.256998759253148,-0.5284591254163201,-0.5284591254163201,0.926259386388671,0.926259386388671,0.002430811645915861,0.002430811645915861,-0.2273551749814148,-0.37722838292733,-0.35388228029728075,-0.3902506402878667,-0.20400126702019858,-0.22555713371720942,-0.3799466969618396,-0.3293387610327027,-0.3919115617171103,-0.2500350223984213,6.649943602806744,6.649943602806744,6.37113874866624,6.37113874866624,10.842085184676577,10.842085184676577,23.119896748808458,23.119896748808458,5.000122316083733,5.000122316083733,6.0724284239398685,7.963017686263896,7.605926704311258,8.172299925966058,5.863055280891913,6.055496587786834,8.006106092610793,7.255526022435561,8.199513658027968,6.29764937231991,205.7696633950342,205.7696633950342,0.0,228.63295932781577,0.0,205.7696633950342,228.63295932781577,0,0
+2017/03/30 17:00:00,212.98146768669034,0,1029.290975237032,0,0,0,0.18506316786405125,0.0,17.967864984722677,0.0,133.89528835348938,0,39.380909295966944,0.007825190980552663,18.541538391519165,0,0,6.4893166117302465,561.4270759622278,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,723.9888902904675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,526.9927237339098,0.0,0.0,0.0,568.752475755544,0.0,0.0,0.0,0.0,0.0,497.253268632467,0.0,0.0,0.0,497.9739296696063,0.0,0.0,0,0,0,0,0,0,0,0,0.05480021392430688,0.0017338405696649202,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.45791568571978203,-0.45791568571978203,-0.28397706162694714,-0.28397706162694714,-0.49511736218377633,-0.49511736218377633,0.9549649233644606,0.9549649233644606,0.05454751169927275,0.05454751169927275,-0.21428196180502104,-0.36299876852485413,-0.32676967426650244,-0.3740753206293968,-0.11829939482350987,-0.22029249716779462,-0.36848131744888096,-0.3003256010106675,-0.3779416675928467,-0.15810473220074886,9.376652546939894,9.376652546939894,6.675120573203088,6.675120573203088,10.122676814483697,10.122676814483697,24.262347005453208,24.262347005453208,5.061601129859227,5.061601129859227,5.952409426745064,7.742604705790782,7.2203267828586775,7.9134329779116115,5.289878952740054,6.00669983296261,7.826505743411886,6.874269084760172,7.9742935531618855,5.518025456968729,212.98146768669034,212.98146768669034,0.0,236.6460752074337,0.0,212.98146768669034,236.6460752074337,0,0
+2017/03/30 18:00:00,197.99308102665861,0,1025.8137182727246,0,0,0,0.19485343233809985,0.0,20.72136573114024,0.0,110.93442390708215,0,39.380909295966944,0.00032750880539025027,25.04521355009859,0,0,0.274080577505849,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,763.7200676015209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05461508218789974,0.0017279831305724636,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.492781585689029,-0.492781585689029,-0.2824192412465477,-0.2824192412465477,-0.4845666138187985,-0.4845666138187985,0.963479915570366,0.963479915570366,0.06899377265870542,0.06899377265870542,-0.1889711891673029,-0.3268669849372005,-0.3098040599920088,-0.3334601755066791,-0.036784970547323916,-0.20261098329126764,-0.3309959922839831,-0.2823150839008666,-0.3321946191756127,-0.05254274065538201,10.07407944127381,10.07407944127381,6.65673299259808,6.65673299259808,9.905032758867435,9.905032758867435,24.607488192905933,24.607488192905933,5.098558308166375,5.098558308166375,5.740378999356054,7.221654941981541,6.994903763243627,7.31257877581271,5.028012253116998,5.85131122741079,7.27838043303332,6.655507233479824,7.294982986208524,5.057155767239195,197.99308102665861,197.99308102665861,0.0,219.9923122518429,0.0,197.99308102665861,219.9923122518429,0,0
+2017/03/30 19:00:00,194.9571852167244,0,990.6455930440135,0,0,0,0.07208252350509889,0.0,24.999863057464953,0.0,101.68988858149199,0,39.380909295966944,0.0007116817570682418,27.0977424753112,0,0,0.5963078613391384,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,280.08350538673653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.549321715361906,0.0,0.0,0.0,46.049300308639076,0.0,0.0,0.0,0.0,0.0,10.816716306064277,0.0,0.0,0.0,5.880653387729249,0.0,0.0,0,0,0,0,0,0,0,0,0.052742705151458354,0.0016687424262939153,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5455687179312243,-0.5455687179312243,-0.3222452617337193,-0.3222452617337193,-0.5152835992819527,-0.5152835992819527,0.9616391312484089,0.9616391312484089,0.019236676128669448,0.019236676128669448,-0.20187813778403155,-0.32162973338570744,-0.3205371550753969,-0.32905524014948545,-0.0032608520162633182,-0.20937604615229016,-0.3248285353650532,-0.2910989243219842,-0.3282649003504708,-0.06013993027024632,11.22993526895847,11.22993526895847,7.159018021609498,7.159018021609498,10.552053539206184,10.552053539206184,24.532634587713403,24.532634587713403,5.007660341318896,5.007660341318896,5.845153253865533,7.150744273876015,7.136097714017254,7.251627738380122,5.000220111748277,5.909218030283128,7.1939167653309966,6.760487308900622,7.240778925747307,5.074881941456354,194.9571852167244,194.9571852167244,0.0,216.61909468524934,0.0,194.9571852167244,216.61909468524934,0,0
+2017/03/30 20:00:00,209.17072817413472,0,955.9012878992509,0,0,0,0.0008978667959891755,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.0015978528999785063,23.225631975398148,0,0,1.3423552291207814,599.655407544689,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3.470478707629238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.22280618891915,0.0,42.776615667489565,0.0,101.22187031982514,0.0,0.0,0.0,0.0,0.0,88.49417645950055,0.0,0.0,0.0,38.34987451203479,0.0,0.0,0,0,0,0,0,0,0,0,0.050892892610212744,0.0016102156469146108,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4170211656473837,-0.4170211656473837,-0.3438529217957235,-0.3438529217957235,-0.5544072188683274,-0.5544072188683274,0.9568140209985628,0.9568140209985628,-0.04240231125415141,-0.04240231125415141,-0.22574357385239974,-0.3267296547716269,-0.33098905119133804,-0.3329722254970778,-0.014160914944278185,-0.24070012080401487,-0.33441955883834273,-0.31234916967956977,-0.3374234825233182,-0.06632084703210915,8.62530623586359,8.62530623586359,7.459647750039181,7.459647750039181,11.4352603250246,11.4352603250246,24.33705562644643,24.33705562644643,5.037221591549013,5.037221591549013,6.05724596214192,7.219780687393666,7.27828446735505,7.30578646161139,5.004151139960314,6.20233432605481,7.325962960207562,7.027943442651662,7.368122881607121,5.091068160202198,209.17072817413472,209.17072817413472,0.0,232.411920193483,0.0,209.17072817413472,232.411920193483,0,0
+2017/03/30 21:00:00,196.30072621045102,0,931.7525691605144,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.01491054038420898,25.076273259938105,0,0,12.683989002928222,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,973.4843702167639,0.0,91.63356305533577,0.0,964.616354760066,0.0,0.0,0.0,0.0,0.0,953.011573414912,0.0,0.0,0.0,896.1244487007979,0.0,0.0,0,0,0,0,0,0,0,0,0.049607196937445454,0.0015695371320320658,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3958280853540517,-0.3958280853540517,-0.32992925515838234,-0.32992925515838234,-0.4678308285783938,-0.4678308285783938,0.8942672551759788,0.8942672551759788,-0.13523881533568108,-0.13523881533568108,-0.2614819522590912,-0.3520322156208811,-0.34853740179261616,-0.3573632785112291,-0.07940710512124337,-0.2678165470160844,-0.3636213107063213,-0.3380955665569805,-0.36628233061898846,-0.14628079018610357,8.264151682806428,8.264151682806428,7.263655997909282,7.263655997909282,9.569653841068018,9.569653841068018,21.885525521180185,21.885525521180185,5.378910423416798,5.378910423416798,6.419529933580392,7.578621580045294,7.527438881433042,7.657697635901982,5.13056360579381,6.489347218197395,7.752067193595266,7.377608001853218,7.792700169073086,5.443371386561807,196.30072621045102,196.30072621045102,0.0,218.11191801161223,0.0,196.30072621045102,218.11191801161223,0,0
+2017/03/30 22:00:00,139.90255233443017,0,771.1394822735684,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.05102406572103525,20.666595460932886,0,0,44.19151591295014,567.2413800541697,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1812.3048362149998,0.0,635.886458898206,0.0,1796.9518940219416,0.0,725.6483631788697,0.0,0.0,0.0,1836.635206581007,0.0,558.7153505324738,0.0,1774.9728809589105,0.0,403.31168535400036,0,0,0,0,0,0,0,0,0.04105603722440024,0.001298984399361332,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4726648171997513,-0.4726648171997513,-0.49124810232290966,-0.49124810232290966,-0.5262541303108028,-0.5262541303108028,0.705164792846285,0.705164792846285,-0.3688846295790991,-0.3688846295790991,-0.2718582454420965,-0.3833341214099013,-0.372615918478447,-0.38772815554516354,-0.1747762133222195,-0.2950808613858917,-0.4009354815307002,-0.3743598959376108,-0.40255569148585946,-0.22001516540869265,9.665284784474181,9.665284784474181,10.042302429439445,10.042302429439445,10.793023326425782,10.793023326425782,15.45924590632734,15.45924590632734,7.832728328388754,7.832728328388754,6.534776281209176,8.060242081946186,7.890626150586897,8.131195193273811,5.633185186418984,6.809150636709845,8.34942925726861,7.917890766294789,8.376714869583495,6.00416151490883,139.90255233443017,139.90255233443017,0.0,155.44728037158907,0.0,139.90255233443017,155.44728037158907,0,0
+2017/03/30 23:00:00,90.79730075517413,0,637.9899261301339,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.08744321431044404,11.766901279571131,0,0,73.52990366583298,511.22449369548485,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2376.0716423051354,0.0,815.5019296692174,0.0,2352.858988204952,0.0,85.8903831537465,0.0,0.0,0.0,2452.120190920548,0.0,833.6666211930071,0.0,2381.7628327976154,0.0,43.30992704243325,0,0,0,0,0,0,0,0,0.03396705623055988,0.0010746939821435963,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6145166225026054,-0.6145166225026054,-0.6550500251750908,-0.6550500251750908,-0.6243413768589192,-0.6243413768589192,0.4805022273362463,0.4805022273362463,-0.43450035351122873,-0.43450035351122873,-0.32015090918429345,-0.4148993750773356,-0.3966226545899518,-0.41859274771024957,-0.23669439846540963,-0.3499469847388055,-0.4386578798115596,-0.4071391212235702,-0.4394962700214907,-0.2706572821602252,12.921533734739228,12.921533734739228,14.012274070098059,14.012274070098059,13.17937036204323,13.17937036204323,9.822473350798944,9.822473350798944,8.937657248470614,8.937657248470614,7.130931998281568,8.588281955636177,8.277345222585637,8.652854029549076,6.16255573379172,7.548020180569395,9.013882467934678,8.454511926904715,9.029343713124177,6.5212054759195155,90.79730075517413,90.79730075517413,0.0,100.88588972797126,0.0,90.79730075517413,100.88588972797126,0,0
+2017/03/31 00:00:00,39.34209403986759,0,552.460911693549,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5786038524062996e-09,9.5447730408658,0,0,0.0,499.2253829247328,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029413428150044912,0.0009306203638167111,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4680064569061819,-0.4680064569061819,-0.501950919646169,-0.501950919646169,-0.5103043757581145,-0.5103043757581145,0.5088634396159585,0.5088634396159585,-0.07851835696693464,-0.07851835696693464,-0.294610821269457,-0.42816149504225803,-0.43946061620837484,-0.4384899945496096,0.0034446604466363993,-0.3501986362377783,-0.47910640856506825,-0.4613918786294667,-0.48324424633205304,-0.07482832002464607,9.573110671732309,9.573110671732309,10.266206901747537,10.266206901747537,10.444401963293032,10.444401963293032,10.413448747098712,10.413448747098712,5.12765654800576,5.12765654800576,6.803371399737443,8.822867511453495,9.028685585376351,9.01079002679306,5.000245625755554,7.551703429876682,9.794284656678485,9.443835707232097,9.878093434137199,5.115936908583194,39.34209403986759,39.34209403986759,0.0,43.7134378220751,0.0,39.34209403986759,43.7134378220751,0,0
+2017/03/31 01:00:00,23.722217021399377,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251215977215846,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4728859439847071,-0.4728859439847071,-0.49059802838121674,-0.49059802838121674,-0.527373882912129,-0.527373882912129,0.4421577576898541,0.4421577576898541,0.04499582380568012,0.04499582380568012,-0.3578737649169307,-0.4960268332184597,-0.5096074086067334,-0.5068027680387917,0.08510636198566983,-0.42452690370748236,-0.558691122384736,-0.5432037375897971,-0.5629852995803352,-0.025571699769750347,9.669683433618758,9.669683433618758,10.02886217269932,10.02886217269932,10.817911880599553,10.817911880599553,9.078625906805101,9.078625906805101,5.041914540313371,5.041914540313371,7.665333177171462,10.141662700304636,10.42941897509705,10.369338792486701,5.149984233715315,8.757827013560316,11.53599716464906,11.175569183660471,11.637774240636162,5.013536699352002,23.722217021399377,23.722217021399377,0.0,26.358018912665973,0.0,23.722217021399377,26.358018912665973,0,0
+2017/03/31 02:00:00,28.396925314153123,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5775622276802266,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42261798960371083,-0.42261798960371083,-0.43265698797951196,-0.43265698797951196,-0.4788107199373672,-0.4788107199373672,0.46096399100777763,0.46096399100777763,0.11680433915666505,0.11680433915666505,-0.34018472940783856,-0.482932003574931,-0.49797883319638714,-0.4952739160740602,0.11036495590250364,-0.4330721564523512,-0.5711259009490836,-0.5553311791484963,-0.5763767465900839,0.0004241245488613253,8.723894268636585,8.723894268636585,8.904098036948184,8.904098036948184,9.78832398403381,9.78832398403381,9.435537991840178,9.435537991840178,5.282593940270743,5.282593940270743,7.407214857214086,9.871743424191777,10.182532798956402,10.125942447895738,5.252277880358918,8.911643615129108,11.83291128983187,11.456920132160192,11.960303620326272,5.000003723639779,28.396925314153123,28.396925314153123,0.0,31.552139237947912,0.0,28.396925314153123,31.552139237947912,0,0
+2017/03/31 03:00:00,23.72194352721978,0,53.27477103544013,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.524848103541986,0,0,0.0,17.78441852289599,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028363882709049036,8.974134776571235e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4595915696605847,-0.4595915696605847,-0.4659264547354169,-0.4659264547354169,-0.5214730234678586,-0.5214730234678586,0.3862829805719151,0.3862829805719151,0.17423275555700654,0.17423275555700654,-0.4200734182698804,-0.5635126626713859,-0.5785562214865004,-0.575764944167103,0.14389157592012505,-0.502318495647028,-0.6416871659987087,-0.627134730875815,-0.647210448556565,0.0017643841817010768,9.40897681396136,9.40897681396136,9.532256058573935,9.532256058573935,10.687365090000995,10.687365090000995,8.107768072157967,8.107768072157967,5.629248424817561,5.629248424817561,8.678905141171029,11.650328504848432,12.013531810681513,11.945398932347373,5.428993403595712,10.273984550605306,13.644810057731803,13.25344268129598,13.79575564999108,5.000064441732434,23.72194352721978,23.72194352721978,0.0,26.357715030244197,0.0,23.72194352721978,26.357715030244197,0,0
+2017/03/31 04:00:00,41.215772346197824,0,335.28800258622186,0,0,0,0.0,0.001480742114040254,4.633261998087618,9.319298099999997,25.555573451546493,0,0.6728546297066261,0.5081856221806742,0.5251178025623743,0,0,246.56212130486156,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,159.50526075073554,0.0,472.93300941071897,0.4107854707806382,992.1010647110688,0.0,509.8659656833846,0.0,0.0,0.0,563.3103698694968,0.0,671.6728491787683,0.7708287085531538,1163.3124851079215,0.29912793470646193,685.1614327118045,0.0,0.0,0,0,0,0,0,0,0,0,0.01785098160774922,0.0005647926149085629,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3890009294493084,-0.3890009294493084,-0.3957843825939309,-0.3957843825939309,-0.4476746066926233,-0.4476746066926233,0.4264736537351847,0.4264736537351847,0.3042267626833663,0.3042267626833663,-0.3983848805939406,-0.4745029323293279,-0.4652612915260667,-0.4794159890221658,0.17442249335527918,-0.4410813785029981,-0.519105287766442,-0.4926314076232906,-0.5206898247861941,0.024331435979355536,8.151901487939,8.151901487939,8.263426797322836,8.263426797322836,9.181749934328664,9.181749934328664,8.792593334174398,8.792593334174398,6.923459936361894,6.923459936361894,8.306702707503021,9.701912600352728,9.519230511416552,9.80052941066262,5.6306214690099665,9.058658163248765,10.635406512894377,10.070962949257833,10.670151400303382,5.012255410542366,41.215772346197824,41.215772346197824,0.0,45.79530260688647,0.0,41.215772346197824,45.79530260688647,0,0
+2017/03/31 05:00:00,73.31102159054905,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5249785605931677,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.08204353295913847,-0.08204353295913847,-0.09462196983097151,-0.09462196983097151,-0.13833835579210937,-0.13833835579210937,0.6753670290409557,0.6753670290409557,0.6801050221350438,0.6801050221350438,-0.3452143252789662,-0.46950636093878856,-0.4786798566724888,-0.47863679492859607,0.29978658707093364,-0.4294520849175548,-0.5415687169277486,-0.5170171226270031,-0.5433080518459944,0.16624873783089217,5.139379966862748,5.139379966862748,5.185412314676512,5.185412314676512,5.3964927360269,5.3964927360269,14.585794776018233,14.585794776018233,14.722111442909195,14.722111442909195,7.479253049103249,9.602686905351362,9.785687165984243,9.784819658621117,6.867523105402952,8.846098823523334,11.138125086660068,10.589784259717703,11.177962046592526,5.572832983317639,73.31102159054905,73.31102159054905,0.0,81.4566906561656,0.0,73.31102159054905,81.4566906561656,0,0
+2017/03/31 06:00:00,99.52877566094665,0,705.2135544979468,0,0,0,0.12456859757351309,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.0335404265470573,2.520316376794346e-09,0.5249629859127745,0,0,0.0,474.52626316640993,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,416.26274228037323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03754609199785192,0.0011879321790269901,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.07434480007722126,0.07434480007722126,0.061803290688249635,0.061803290688249635,0.010277119084232404,0.010277119084232404,0.8307493282202558,0.8307493282202558,0.9157168234374422,0.9157168234374422,-0.26896971932742025,-0.4042786932794482,-0.41378626367404037,-0.4137757233610397,0.4019047368461096,-0.3634683474001806,-0.48759252608558706,-0.4646390371782149,-0.4898063669831647,0.274829015747521,5.114443076384134,5.114443076384134,5.079082136658556,5.079082136658556,5.002186380140927,5.002186380140927,19.5589917261385,19.5589917261385,22.70856337024489,22.70856337024489,6.502238817472232,8.405854836258541,8.568935827290531,8.568752888021706,8.365738781010862,7.749740659110898,9.966960693250627,9.50706248214459,10.012519240888267,6.568606927234242,99.52877566094665,99.52877566094665,0.0,110.58752851216295,0.0,99.52877566094665,110.58752851216295,0,0
+2017/03/31 07:00:00,150.30128008660031,0,886.3431387191185,0,0,0,0.0,0.0,11.007536273778666,0.0,69.33401494192633,0,39.380909295966944,0.05971693172908325,27.08712744074501,0,0,20.51008733034864,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,194.77972621476567,0.0,2060.3759231688446,0.0,994.163752663384,0.0,2030.1188555760036,0.0,1379.1456851794176,0.0,496.0867011539717,0.0,2230.5506635371903,0.0,1240.1747706544863,0.0,2167.9844841624963,0.0,1602.7181578855257,0,0,0,0,0,0,0,0,0.047189565225677674,0.0014930449499000519,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1294531814728242,-0.1294531814728242,-0.13109852012148784,-0.13109852012148784,-0.20310740584184334,-0.20310740584184334,0.7070303311684941,0.7070303311684941,0.6497080302150134,0.6497080302150134,-0.31459767080965495,-0.41213303107831245,-0.40164679178220225,-0.418669947363824,0.13689745439672468,-0.3656975506411778,-0.4606739702381466,-0.4250769058897864,-0.4633482058159887,0.0354579292142485,5.3471602816336485,5.3471602816336485,5.356047836226594,5.356047836226594,5.855495343631574,5.855495343631574,15.515205323947754,15.515205323947754,13.864446267414252,13.864446267414252,7.057360830988046,8.540300252993788,8.361394449919374,8.654209967653244,5.388269428251689,7.7837448879224524,9.429918311671202,8.76763282819175,9.48187378378168,5.026027477895568,150.30128008660031,150.30128008660031,0.0,167.00142231844478,0.0,150.30128008660031,167.00142231844478,0,0
+2017/03/31 08:00:00,165.81591174193272,0,940.7620362370394,0,0,0,0.0,0.0,13.144846485210625,0.0,83.2008179303116,0,39.380909295966944,0.04678367758445399,26.61057915040479,0,0,21.693456079453142,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,129.51390391889586,0.0,2044.797799412474,0.0,962.6668940441909,0.0,2023.5930113495733,0.0,0.0,0.0,425.5669351705412,0.0,2140.243045761614,0.0,1077.3046027363557,0.0,2075.7320400367216,0.0,873.9291735039199,0,0,0,0,0,0,0,0,0.05008686763797197,0.0015847135786386654,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3051324626654398,-0.3051324626654398,-0.32669567886357154,-0.32669567886357154,-0.3500616724097257,-0.3500616724097257,0.6459324185964648,0.6459324185964648,0.08033071906464948,0.08033071906464948,-0.3416783862307323,-0.4186804653939995,-0.4020795883692788,-0.4248371086138079,-0.10703855955357351,-0.37403026759817853,-0.4527554660989173,-0.41554058904748464,-0.4539117670809303,-0.17549438634629577,6.934972227266158,6.934972227266158,7.219317114432641,7.219317114432641,7.549698450812315,7.549698450812315,13.760710785204992,13.760710785204992,5.1336194175381,5.1336194175381,7.428496083154002,8.654394726574594,8.368685263288484,8.763355962883082,5.237292157073824,7.912727552168718,9.277882011799889,8.599450503055863,9.29991486928489,5.638406474332456,165.81591174193272,165.81591174193272,0.0,184.2399019354808,0.0,165.81591174193272,184.2399019354808,0,0
+2017/03/31 09:00:00,181.0227664689635,0,971.2763477535894,0,0,0,0.0,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,0.03249097716091181,20.703866906341286,0,0,17.619642508180593,581.0080038636954,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1696.3903136056397,0.0,558.0814278253943,0.0,1596.94440541537,0.0,0.0,0.0,0.0,0.0,1682.9588636389942,0.0,456.0126360687049,0.0,1493.8241968177101,0.0,144.33850448763985,0,0,0,0,0,0,0,0,0.05171147218526706,0.0016361149340722969,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3208174240947386,-0.3208174240947386,-0.25668584338916767,-0.25668584338916767,-0.35886542626774004,-0.35886542626774004,0.7374395089720831,0.7374395089720831,-0.12487512774099406,-0.12487512774099406,-0.28761440304785063,-0.3999934274990528,-0.379616346391901,-0.3904733288808058,-0.1422419865715155,-0.3149889167419687,-0.42112523315541944,-0.38497678184893686,-0.4056842310633191,-0.20891095663252043,7.139850036137744,7.139850036137744,6.367792735740835,6.367792735740835,7.680197544985347,7.680197544985347,16.44850899210269,16.44850899210269,5.323023548065365,5.323023548065365,6.718452307791523,8.333615966358067,8.00085282225379,8.175941772158197,5.4192050517780075,7.0625014126645596,8.697468018438656,8.086670591942053,8.42971985731188,5.905175699543463,181.0227664689635,181.0227664689635,0.0,201.13640718773723,0.0,181.0227664689635,201.13640718773723,0,0
+2017/03/31 10:00:00,212.11426902887828,0,1024.6492415481932,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.03538917756224702,18.572409565944984,0,0,21.044041944190862,542.2306169409287,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1906.5971685029165,0.0,106.25939961505377,0.0,1759.1810604136642,0.0,262.77793203947556,0.0,0.0,0.0,1900.5958669848146,0.0,32.257723724546736,0.0,1696.1880993178295,0.0,24.045667930363063,0,0,0,0,0,0,0,0,0.05455308458455002,0.001726021569618373,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3286230606352502,-0.3286230606352502,-0.08994742759749794,-0.08994742759749794,-0.35406856710155515,-0.35406856710155515,0.8574881485543016,0.8574881485543016,-0.07241097258725071,-0.07241097258725071,-0.2570851170224573,-0.39316663934914975,-0.368423279417824,-0.38294809663622076,-0.1812941134683958,-0.2697703463671492,-0.40369217171574234,-0.3645125706284616,-0.3873399130400167,-0.22446307384973646,7.24569202636539,7.24569202636539,5.167538813795716,5.167538813795716,7.608684183419328,7.608684183419328,20.518026415081536,20.518026415081536,5.108565437587373,5.108565437587373,6.372062898555399,8.220155967335174,7.825610862263886,8.054048109534492,5.6813607118500045,6.511222172940734,8.395921128223137,7.765642863221913,8.124892793207025,6.045260353791662,212.11426902887828,212.11426902887828,0.0,235.68252114319807,0.0,212.11426902887828,235.68252114319807,0,0
+2017/03/31 11:00:00,228.43121664239433,0,1104.0680482687826,0,0,0,0.09120764346812263,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.013324437660764734,20.786021693888987,0,0,8.44882695511017,581.0091098817826,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,358.0465568891463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,946.2506981077148,0.0,0.0,0.0,837.5136104467231,0.0,0.0,0.0,0.0,0.0,908.8917719608141,0.0,0.0,0.0,761.2326086231836,0.0,0.0,0,0,0,0,0,0,0,0,0.058781400680393794,0.0018598025435114206,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4511258328346077,-0.4511258328346077,-0.22142521177038635,-0.22142521177038635,-0.40513895433480285,-0.40513895433480285,0.9553709706426374,0.9553709706426374,0.0103037714980827,0.0103037714980827,-0.2200896757197738,-0.3791006853503835,-0.34698121407055066,-0.3747977916477476,-0.10151801349141956,-0.22659970899168447,-0.3860976975395314,-0.3318261636834733,-0.37783896893617097,-0.1598464192938658,9.246927667485053,9.246927667485053,6.017100629237049,6.017100629237049,8.42045141042422,8.42045141042422,24.278740927501616,24.278740927501616,5.002197735102783,5.002197735102783,6.004843164406836,7.992662034737862,7.504815136761394,7.924757020955269,5.213435629010661,6.065297821129846,8.104770979489317,7.289872904421628,7.972668717053466,5.529514273351552,228.43121664239433,228.43121664239433,0.0,253.8124629359937,0.0,228.43121664239433,253.8124629359937,0,0
+2017/03/31 12:00:00,206.06954194721507,0,1027.9448631687017,0,0,0,0.24726801834885173,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,0.00027033501353297256,18.489541910076788,0,0,0.1752265073382655,548.6498777420175,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,981.9848228247794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054728545920714786,0.0017315730439879857,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42332648165746123,-0.42332648165746123,-0.3848309941257657,-0.3848309941257657,-0.3675622625478279,-0.3675622625478279,1.016802155741577,1.016802155741577,0.0809390339342954,0.0809390339342954,-0.18082457899555213,-0.3182982749128337,-0.2801230509859007,-0.31065158680137656,0.017049764195664716,-0.15617408922992998,-0.29742856505746057,-0.2352722133336397,-0.285107249443776,-0.044730602875123954,8.73647014055058,8.73647014055058,8.08432037608982,8.08432037608982,7.812351815181799,7.812351815181799,26.8324470753531,26.8324470753531,5.135651374200904,5.135651374200904,5.677830986126992,7.106242448925272,6.629816812625208,7.005875592542054,5.00601759922877,5.505437936017302,6.838155887373176,6.148594840429936,6.6885247313212375,5.041421834819758,206.06954194721507,206.06954194721507,0.0,228.96615771912786,0.0,206.06954194721507,228.96615771912786,0,0
+2017/03/31 13:00:00,203.12193906867478,0,986.9451566562242,0,0,0,0.34260286009741475,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,0.0002718412392518625,16.331134671261804,0,0,0.17640206074491724,543.1393481886778,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1365.6097067393057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052545691177234545,0.0016625090414795426,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4165834665955117,-0.4165834665955117,-0.30653022412655806,-0.30653022412655806,-0.36310870289756375,-0.36310870289756375,1.0301010377721453,1.0301010377721453,0.09228599363267397,0.09228599363267397,-0.12772626280335012,-0.2597073961589326,-0.25961349403068984,-0.2611979298592863,-0.03398246617851299,-0.1144655046357124,-0.21525177367796863,-0.19679056339947906,-0.2134116717028984,-0.03784670008110005,8.617652789514636,8.617652789514636,6.952807180507193,6.952807180507193,7.744274480894347,7.744274480894347,27.40411020588013,27.40411020588013,5.176367175566412,5.176367175566412,5.337953142878888,6.400274401682523,6.399259170906944,6.416439126143743,5.023906342615703,5.271383699922893,5.961066902069973,5.803022487820428,5.944673912534427,5.029652737799324,203.12193906867478,203.12193906867478,0.0,225.69104340963864,0.0,203.12193906867478,225.69104340963864,0,0
+2017/03/31 14:00:00,187.55852900418537,0,939.4198719837043,0,0,0,0.2750214123737358,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,0.002335317079175422,14.096333325765574,0,0,1.5218818081972894,529.7589362812495,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1088.5914667591583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,259.56207471277935,0.0,0.0,0.0,297.77189866365865,0.0,0.0,0.0,0.0,0.0,21.623206784220944,0.0,0.0,0.0,44.411291745623885,0.0,0.0,0,0,0,0,0,0,0,0,0.05001540981897439,0.0015824527030557907,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.43397244057642675,-0.43397244057642675,-0.2853269787127033,-0.2853269787127033,-0.3715054913866017,-0.3715054913866017,1.016927416205742,1.016927416205742,0.08486095773702758,0.08486095773702758,-0.1192849010964339,-0.2852194380955985,-0.2684325661809601,-0.29448209503153217,-0.07611212109019884,-0.12135488735128458,-0.25080346276159066,-0.19726822527142357,-0.2628578327759882,-0.09799512306483446,8.92803147018958,8.92803147018958,6.6911370047456415,6.6911370047456415,7.873333784260481,7.873333784260481,26.83780080281464,26.83780080281464,5.149120244447417,5.149120244447417,5.29473185644197,6.689858242754184,6.4962268800877325,6.801790313255509,5.119950242817566,5.305056459627394,6.305658749839722,5.806932018870711,6.434550697047868,5.198873111805426,187.55852900418537,187.55852900418537,0.0,208.39836556020597,0.0,187.55852900418537,208.39836556020597,0,0
+2017/03/31 15:00:00,182.55013971654833,0,932.9036775683431,0,0,0,0.2787500669867195,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,0.008935001111558418,14.062271094944254,0,0,5.911818503619097,518.8528051704666,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1100.783647306882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,651.5662719383672,0.0,0.0,0.0,756.4264344530305,0.0,0.0,0.0,0.0,0.0,383.3995459294578,0.0,0.0,0.0,498.16373886340966,0.0,0.0,0,0,0,0,0,0,0,0,0.04966848280171192,0.0015714761740576854,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4607681110994011,-0.4607681110994011,-0.13370595314104794,-0.13370595314104794,-0.3869418628500719,-0.3869418628500719,1.0046624945528155,1.0046624945528155,0.07054255744384468,0.07054255744384468,-0.16728544202955867,-0.3057893785317791,-0.2640333515386333,-0.32292091780444176,-0.1283720331660419,-0.11775534631687046,-0.28663531745156423,-0.21873474626777092,-0.30676867826499776,-0.1582093961848573,9.431742065131871,9.431742065131871,5.370362880861393,5.370362880861393,8.118437868845788,8.118437868845788,26.31638024636196,26.31638024636196,5.1030338781194615,5.1030338781194615,5.5800081876287635,6.943343952055372,6.447447198779798,7.168118478360128,5.341381579066592,5.287217198198547,6.706733511015088,5.99248408702023,6.955858026392448,5.518712289576186,182.55013971654833,182.55013971654833,0.0,202.8334885739426,0.0,182.55013971654833,202.8334885739426,0,0
+2017/03/31 16:00:00,205.55040413615447,0,1004.651473300779,0,0,0,0.3908960648730972,0.0,16.693521149792748,0.0,131.64086955684016,0,39.380909295966944,0.00628569995543159,14.005947166271715,0,0,4.250281043052394,539.0266095946529,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1555.1530775335452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,445.11643927167063,0.0,0.0,0.0,614.9915826331385,0.0,0.0,0.0,0.0,0.0,197.32360182612751,0.0,0.0,0.0,390.2239679794284,0.0,0.0,0,0,0,0,0,0,0,0,0.05348838859057743,0.0016923353305234087,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44273735682517124,-0.44273735682517124,-0.26018429333386883,-0.26018429333386883,-0.3509892971217515,-0.3509892971217515,1.0109022179146214,1.0109022179146214,0.12982769545510325,0.12982769545510325,-0.13060136735086816,-0.3061491066582437,-0.21553263553945715,-0.329619762139997,-0.10583518357151636,-0.08363751329306704,-0.2908798783957552,-0.21138754476388716,-0.3191393751854492,-0.15971909487813385,9.08939858700812,9.08939858700812,6.405436143346151,6.405436143346151,7.56329331353713,7.56329331353713,26.580944463715724,26.580944463715724,5.349173381492378,5.349173381492378,5.353350518437395,6.947936057181025,5.963581501754504,7.25939302570653,5.231984023082177,5.144850161729778,6.75782977892716,5.926805263497911,7.1174335359706475,5.52867011113959,205.55040413615447,205.55040413615447,0.0,228.3893379290605,0.0,205.55040413615447,228.3893379290605,0,0
+2017/03/31 17:00:00,211.70624225322783,0,1004.1903878205618,0,0,0,0.39257836788178385,0.0,17.136587393386012,0.0,133.89528835348938,0,39.380909295966944,0.0008456935730933083,18.612049680627734,0,0,0.5781406845449533,542.237664472943,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1560.5233006906246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.578900374700908,0.0,0.0,0.0,152.73677462579386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05346384005808157,0.0016915586320669785,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47437568251063944,-0.47437568251063944,-0.22270644943541879,-0.22270644943541879,-0.3613095543433162,-0.3613095543433162,1.000833349513605,1.000833349513605,0.16289063311523236,0.16289063311523236,-0.12703719213142278,-0.3162443486618507,-0.2047370938991248,-0.3333515428407603,-0.06167762994512463,-0.08644546353785865,-0.29116801069011883,-0.23535018972708613,-0.3242941160777702,-0.1166475923012167,9.699372221085923,9.699372221085923,6.028930002889169,6.028930002889169,7.717012235030879,7.717012235030879,26.154752172015932,26.154752172015932,5.5498986450378425,5.5498986450378425,5.334313944664643,7.0790403160470134,5.869303709513375,7.311065723448877,5.078760823462105,5.15474278691093,6.761325905497955,6.149358096710614,7.186673814883363,5.281835533271604,211.70624225322783,211.70624225322783,0.0,235.22915805914204,0.0,211.70624225322783,235.22915805914204,0,0
+2017/03/31 18:00:00,195.88077832212986,0,1025.5568194204236,0,0,0,0.34320167641333993,0.0,19.270119746674897,0.0,110.93442390708215,0,39.380909295966944,2.5096471447441658e-05,25.952098599521058,0,0,0.01718172520487975,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1358.0746678054377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05460140470271654,0.0017275503844752607,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5172633085257657,-0.5172633085257657,-0.19242426702642862,-0.19242426702642862,-0.3987206612018855,-0.3987206612018855,0.9902778518719692,0.9902778518719692,0.14821280410735677,0.14821280410735677,-0.10645459080706306,-0.2834996525032658,-0.2136045229962501,-0.3038227610557997,-0.007337732986368236,-0.06909241868891426,-0.2544383212907253,-0.2694454387384785,-0.28810318859417566,-0.059833004053444605,10.595153121609258,10.595153121609258,5.767727637088939,5.767727637088939,8.312311649710168,8.312311649710168,25.712087776997947,25.712087776997947,5.455171783170556,5.455171783170556,5.234708740121619,6.669474639310081,5.946385322537012,6.918335889829294,5.001114565752587,5.098840403515922,6.343880989168781,6.5075733237394076,6.724317786623686,5.074119444574919,195.88077832212986,195.88077832212986,0.0,217.64530924681094,0.0,195.88077832212986,217.64530924681094,0,0
+2017/03/31 19:00:00,194.52108203468143,0,990.3107244355389,0,0,0,0.23722738760383866,0.0,24.398945138444315,0.0,101.68988858149199,0,39.380909295966944,0.0003815546359586913,27.0977424753112,0,0,0.26143925286442593,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,930.7369468963918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05272487649870375,0.0016681783401483559,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5653496882730961,-0.5653496882730961,-0.3943424925627319,-0.3943424925627319,-0.44393792369807017,-0.44393792369807017,0.9761316511307986,0.9761316511307986,0.08840360330082599,0.08840360330082599,-0.16122675652307136,-0.28564282275839553,-0.23302425457506556,-0.29592474329248974,0.029553952827513365,-0.12947682423655132,-0.24526209957773648,-0.23104709779395693,-0.2746643371937626,-0.03093618954100132,11.694154433272217,11.694154433272217,8.239556366872876,8.239556366872876,9.111758775840727,9.111758775840727,25.125527991911326,25.125527991911326,5.16183503777421,5.16183503777421,5.538709290453298,6.69489551794787,6.126700861528519,6.819549758170169,5.0180812737203695,5.3472871945127025,6.248457495629893,6.107619620223062,6.566721856338134,5.019812219854401,194.52108203468143,194.52108203468143,0.0,216.13453559409047,0.0,194.52108203468143,216.13453559409047,0,0
+2017/03/31 20:00:00,209.28579200352968,0,954.8178420993348,0,0,0,0.11964037605330197,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.0003773044457434763,23.223173843990057,0,0,0.2589094292047213,599.655407544689,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,464.7096993731539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050835209153309684,0.0016083905825468843,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44288284593069477,-0.44288284593069477,-0.36806778003615737,-0.36806778003615737,-0.5038926429911719,-0.5038926429911719,0.9575713181540546,0.9575713181540546,-0.008611417803880392,-0.008611417803880392,-0.2095821680257325,-0.3137382617404659,-0.2667255661391152,-0.32292993321143154,-0.029926673742091542,-0.18785653989990744,-0.28521678405529993,-0.25197528529555424,-0.3024458743305026,-0.02742473858363479,9.092104977647807,9.092104977647807,7.820132594873272,7.820132594873272,10.307358449809541,10.307358449809541,24.367691238730544,24.367691238730544,5.001535082085923,5.001535082085923,5.911012436492868,7.046091811468287,6.477202434225092,7.168240038312064,5.0185402334947184,5.731657258245036,6.689826689818602,6.3179203326241975,6.90092437046394,5.015569709059264,209.28579200352968,209.28579200352968,0.0,232.53976889281074,0.0,209.28579200352968,232.53976889281074,0,0
+2017/03/31 21:00:00,196.58681889892088,0,931.7386123248133,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.018078451770403688,25.016000516776334,0,0,12.670032167227069,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1199.2296903939348,0.0,57.043458087502735,0.0,1206.6167241804606,0.0,0.0,0.0,0.0,0.0,1069.3699759169206,0.0,0.0,0.0,1084.8153605755515,0.0,0.0,0,0,0,0,0,0,0,0,0.0496064538651748,0.0015695136217433866,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3940700513951814,-0.3940700513951814,-0.3327253328792727,-0.3327253328792727,-0.5825747109267397,-0.5825747109267397,0.9037330423680459,0.9037330423680459,-0.10765429786077146,-0.10765429786077146,-0.23614310230045535,-0.3537974326775999,-0.3220442446116606,-0.36041878911876446,-0.10645928552962099,-0.23340392318408215,-0.34966023704082294,-0.3123739545151095,-0.3595941136398579,-0.1446377062212626,8.235056099388217,8.235056099388217,7.302353541315753,7.302353541315753,12.112213648400115,12.112213648400115,22.246436839702767,22.246436839702767,5.240031457297334,5.240031457297334,6.157133853823112,7.60467125112703,7.156314243688286,7.703565619218892,5.234729452620101,6.13038375812323,7.543826535456475,7.028266538534453,7.691146787868561,5.4334580021242544,196.58681889892088,196.58681889892088,0.0,218.42979877657876,0.0,196.58681889892088,218.42979877657876,0,0
+2017/03/31 22:00:00,139.92196236141274,0,765.15871104235,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.059758788304647315,20.677270765331873,0,0,43.09271570518956,562.3594090307117,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2118.2060938477016,0.0,619.9044388448553,0.0,2117.1551521240763,0.0,442.53058045166904,0.0,0.0,0.0,2047.9898185583388,0.0,540.9554463337621,0.0,2042.1465466487962,0.0,215.80784845972187,0,0,0,0,0,0,0,0,0.04073761653405304,0.0012889097906762772,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5402333854274358,-0.5402333854274358,-0.4888209121729289,-0.4888209121729289,-0.5702421304056927,-0.5702421304056927,0.7006155322187314,0.7006155322187314,-0.34578077224293335,-0.34578077224293335,-0.29035692136968566,-0.39142066825457733,-0.3607089651630149,-0.39671684396375767,-0.19280603506922678,-0.29329395803486835,-0.4007168894033977,-0.3667809255934522,-0.407686770178442,-0.23343717818270815,11.107630191042148,11.107630191042148,9.992213474063476,9.992213474063476,11.811587471329617,11.811587471329617,15.323414083213507,15.323414083213507,7.487433546770163,7.487433546770163,6.751493303231214,8.191458232380015,7.707942283410063,8.27891099362985,5.770781858519371,6.7872300117963675,8.345756593214304,7.800347128142292,8.463867622144647,6.130706629442159,139.92196236141274,139.92196236141274,0.0,155.46884706823639,0.0,139.92196236141274,155.46884706823639,0,0
+2017/03/31 23:00:00,90.85705056571287,0,658.7427540707441,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.12197963813011924,11.792114666290177,0,0,88.98946161881149,516.5177636831165,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,252.02239990829634,0.0,2993.7980386443,0.0,1111.3324442780731,0.0,2983.0365615678875,0.0,46.53156328277622,0.0,279.05992790299405,0.0,2979.7025605199515,0.0,1109.7137183103168,0.0,2953.3410714105926,0.0,24.25981782778338,0,0,0,0,0,0,0,0,0.035071952161875974,0.0011096521192344414,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.675372415350888,-0.675372415350888,-0.6346349795448435,-0.6346349795448435,-0.6712850966652028,-0.6712850966652028,0.44705443678011897,0.44705443678011897,-0.43404544033034514,-0.43404544033034514,-0.3470002944306153,-0.4291592493982993,-0.39389567094383376,-0.43364646509144555,-0.24920282865727575,-0.36389017670552176,-0.44701033746967,-0.40877485475736974,-0.4526353806400688,-0.27857170863220304,14.585949193873915,14.585949193873915,13.454004148962767,13.454004148962767,14.469132631357041,14.469132631357041,9.170092085900137,9.170092085900137,8.929361808884423,8.929361808884423,7.505091902159023,8.840821356339518,8.232177294770054,8.92209372489927,6.2890034968700945,7.756158995487013,9.169263744442588,8.482493891499246,9.275597128577019,6.611757700912776,90.85705056571287,90.85705056571287,0.0,100.95227840634763,0.0,90.85705056571287,100.95227840634763,0,0
+2017/04/01 00:00:00,40.72738181920661,0,545.9748574469245,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.5786091917762876e-09,9.541747751827934,0,0,0.0,492.7393286781083,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029068105817691002,0.0009196946059305553,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5534237071962166,-0.5534237071962166,-0.5100543046576427,-0.5100543046576427,-0.5463482357010863,-0.5463482357010863,0.48954670855115046,0.48954670855115046,-0.0711547435489008,-0.0711547435489008,-0.3327847739122613,-0.4583729094914714,-0.42665710047766375,-0.4710626778812647,0.0017269967380514107,-0.368607624881169,-0.4916172611700511,-0.45365038585302114,-0.5071940405723426,-0.07423102439776151,11.412245160394647,11.412245160394647,10.439023666122338,10.439023666122338,11.247907909156794,11.247907909156794,10.007164786710504,10.007164786710504,5.10483035189705,5.10483035189705,7.303179803156695,9.38545943478853,8.795877828245992,9.633478026685026,5.000061739616612,7.828453758173268,10.04994289951513,9.294929320695047,10.377700103428182,5.114092975897748,40.72738181920661,40.72738181920661,0.0,45.252646465785126,0.0,40.72738181920661,45.252646465785126,0,0
+2017/04/01 01:00:00,23.722144960798317,0,50.83834708959402,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250495371205253,0,0,0.0,15.347994577049885,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0027066712553525975,8.563719181385602e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5598475545874553,-0.5598475545874553,-0.5102006878936719,-0.5102006878936719,-0.5582379653482733,-0.5582379653482733,0.42147564546127486,0.42147564546127486,0.06062816581960802,0.06062816581960802,-0.40153939885807033,-0.529860953093137,-0.5001724233444999,-0.5426080665015106,0.08698412296284863,-0.45020639761576003,-0.5793565144430932,-0.5416631679882983,-0.5955479028412696,-0.024508930119481506,11.563327296805298,11.563327296805298,10.442171612742229,10.442171612742229,11.525303452270279,11.525303452270279,8.703662779694824,8.703662779694824,5.076102909448451,5.076102909448451,8.359586569278349,10.87338576188121,10.228657647117785,11.161914128694832,5.156677915121122,9.229513714952546,12.033128686918658,11.14028498618596,12.43557857063169,5.0124348702787245,23.722144960798317,23.722144960798317,0.0,26.357938845331464,0.0,23.722144960798317,26.357938845331464,0,0
+2017/04/01 02:00:00,28.376589946512144,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5572268600392495,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5437893232649234,-0.5437893232649234,-0.49402509539170536,-0.49402509539170536,-0.5437508524735505,-0.5437508524735505,0.3981363423709342,0.3981363423709342,0.13349297502881957,0.13349297502881957,-0.4291180313307466,-0.5606805515077832,-0.5309318186194282,-0.5736981959558846,0.11297353160238373,-0.49474933793411763,-0.6269655829019485,-0.5882996093966685,-0.6430817362933166,-0.013372794180783644,11.189008029581814,11.189008029581814,10.099922150997912,10.099922150997912,11.188124691567765,11.188124691567765,8.302554184459538,8.302554184459538,5.369183006174225,5.369183006174225,8.84007882187457,11.583049566935841,10.897353809562134,11.895169046389313,5.264351266446241,10.11500418786649,13.248947697052841,12.254009923384729,13.682797382049102,5.003701933776824,28.376589946512144,28.376589946512144,0.0,31.529544385013494,0.0,28.376589946512144,31.529544385013494,0,0
+2017/04/01 03:00:00,23.742502798821334,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5454073751435444,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5582057434865524,-0.5582057434865524,-0.5083706872008315,-0.5083706872008315,-0.558732526828728,-0.558732526828728,0.3466631276589903,0.3466631276589903,0.19344045241918237,0.19344045241918237,-0.4753051881984236,-0.6066845985580234,-0.5789797666388565,-0.6199278301833602,0.14798997661017224,-0.554561814467112,-0.6878440979883041,-0.6495772925280837,-0.7040492472945878,-0.0021999335806567005,11.524543411856612,11.524543411856612,10.402884373320958,10.402884373320958,11.536974680976897,11.536974680976897,7.500203493586909,7.500203493586909,5.775870797501781,5.775870797501781,9.717944685493208,12.718994177408092,12.023899753287125,13.06302494529885,5.453802863876959,11.438881831931127,14.946860548095245,13.860843900707778,15.425855299577478,5.000100184392252,23.742502798821334,23.742502798821334,0.0,26.380558665357036,0.0,23.742502798821334,26.380558665357036,0,0
+2017/04/01 04:00:00,38.92869883427341,0,316.12975958879673,0,0,0,0.0,0.0019667295186646355,4.633261998087618,9.319298099999997,23.111338313975452,0,0.7644385247935546,0.5733511720923234,0.5250439958057889,0,0,227.40387830743637,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,372.7249632839396,0.0,559.9499188538177,0.3367708565403973,867.8357973465022,0.0,593.6405981405594,0.0,0.0,0.312701638367912,837.0700950326354,0.27178227927242915,831.9310710752668,0.7362550961713623,1306.1321761813015,0.3092196483125349,879.0554183751915,0.0,0.0,0,0,0,0,0,0,0,0,0.016830982559927998,0.0005325205560334862,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5044076562321058,-0.5044076562321058,-0.45783377891946414,-0.45783377891946414,-0.5078064250110352,-0.5078064250110352,0.37064090636702673,0.37064090636702673,0.3196743207595215,0.3196743207595215,-0.4428961868631488,-0.5154389450257847,-0.4886934320872333,-0.5210136832076847,0.17893836902224358,-0.4831330076424149,-0.560440761223212,-0.5254640987238052,-0.5668915675444521,0.020766934302565435,10.31830062937837,10.31830062937837,9.375075836692844,9.375075836692844,10.390799758833808,10.390799758833808,7.859906252880634,7.859906252880634,7.124566740094977,7.124566740094977,9.092353191424678,10.55542938868281,9.989589748631943,10.677266168809496,5.663744151728864,9.875830715793924,11.577369140237096,10.775496084821626,11.731052038129931,5.008927585665376,38.92869883427341,38.92869883427341,0.0,43.254109815859344,0.0,38.92869883427341,43.254109815859344,0,0
+2017/04/01 05:00:00,74.02088302738096,0,295.2768653025336,0,0,0,0.1457855045674454,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,0.8957533243524302,0.5902046200858367,0.525132389175477,0,0,82.33475022726884,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,461.5058798804861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,521.1220567255797,0.0,563.2598065505241,0.0,883.290868662478,0.0,595.6356405621973,0.0,0.0,0.0,861.5377284321852,0.0,823.0190110014768,0.0,1272.8260212635469,0.0,864.5695139553186,0.0,0.0,0,0,0,0,0,0,0,0,0.015720759022249533,0.0004973938571909839,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.28639054675666265,-0.28639054675666265,-0.2454697592570985,-0.2454697592570985,-0.2873510795801878,-0.2873510795801878,0.5446033066815805,0.5446033066815805,0.6865465291335443,0.6865465291335443,-0.4463835504896099,-0.5082486389646309,-0.4835705281984347,-0.5126527629541296,0.23254138906129027,-0.4749711541677021,-0.5365421393012416,-0.5038854647604422,-0.5405351384867434,0.08452972111137677,6.703810142878822,6.703810142878822,6.250577810027593,6.250577810027593,6.715296578429545,6.715296578429545,11.207713152551975,11.207713152551975,14.908997378973325,14.908997378973325,9.15749950313213,10.400269340296745,9.884733449262157,10.495040844800826,6.122025662697496,9.711266059145302,11.023735320172307,10.307206019227962,11.11451455333355,5.147958028525025,74.02088302738096,74.02088302738096,0.0,82.24542558597885,0.0,74.02088302738096,82.24542558597885,0,0
+2017/04/01 06:00:00,105.15174908671997,0,752.8730922746026,0,0,0,0.09586926095462717,0.0,8.33396954093373,13.929299233552332,80.56906512710079,0,1.1382982412073115,0.5601803588351418,0.525067324136045,0,0,41.234340806243765,480.95146013682194,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,313.5404897478188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,513.0644989654161,0.0,542.0784968161202,0.0,840.7490464124741,0.0,572.3958257930276,0.0,0.0,0.0,758.4234228800365,0.0,708.4775587756162,0.0,1087.8014685602056,0.0,745.9724167102554,0.0,0.0,0,0,0,0,0,0,0,0,0.040083521090818454,0.0012682146667944696,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.18045965528076086,-0.18045965528076086,-0.14647378925571536,-0.14647378925571536,-0.1829389258710298,-0.1829389258710298,0.6136536846644337,0.6136536846644337,0.9042416190430637,0.9042416190430637,-0.4457792404954337,-0.5042197158880257,-0.48082905644939106,-0.5085935561246714,0.2549220019003892,-0.4706963088403827,-0.5283500266707883,-0.4966044637992051,-0.5321927405688996,0.159519511101557,5.675094028428035,5.675094028428035,5.444543203580125,5.444543203580125,5.693798190934146,5.693798190934146,12.899087285008363,12.899087285008363,22.265930855695686,22.265930855695686,9.14617313034563,10.31430624431961,9.829085840042737,10.407661275019677,6.349009002434769,9.626220163474954,10.839652752230563,10.153739722157852,10.925639348939967,5.52734822817105,105.15174908671997,105.15174908671997,0.0,116.8352767630222,0.0,105.15174908671997,116.8352767630222,0,0
+2017/04/01 07:00:00,119.67160509855472,0,783.9692076014451,0,0,0,0.0,0.0,6.867586094192867,0.0,69.33401494192633,0,39.380909295966944,0.13197595921264899,0.525143604801641,0,0,28.441388964630967,489.35017479273307,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,172.28650547319316,0.0,0.0,0.0,0.0,0.0,2379.3241907524985,0.0,3630.091670735212,0.0,3001.048710128533,0.0,3378.7150853561693,0.0,2258.6185174037064,0.0,2561.302805297056,0.0,3754.7015595397124,0.0,3224.15085035941,0.0,3422.2300191807954,0.0,2004.8422821868446,0,0,0,0,0,0,0,0,0.04173910130391947,0.0013205960707023804,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.41314624162939234,-0.41314624162939234,-0.375523138045125,-0.375523138045125,-0.4571647322684719,-0.4571647322684719,0.3798958461544151,0.3798958461544151,0.4303901406887242,0.4303901406887242,-0.4367046846779078,-0.5055785969674711,-0.4777186728914813,-0.483351614402424,-0.08335649628634344,-0.4612240065914506,-0.5297744546728704,-0.4948930406849607,-0.501929785522047,-0.11034964759886876,8.557836139237253,8.557836139237253,7.936148531410964,7.936148531410964,9.362207467484595,9.362207467484595,8.005297154273961,8.005297154273961,8.8630291993273,8.8630291993273,8.977979582363332,10.343221577165295,9.766342513604073,9.880277926196314,5.143878120489106,9.440579346282775,10.871451926899141,10.117999428916377,10.265759896108477,5.25220786246696,119.67160509855472,119.67160509855472,0.0,132.96845010950526,0.0,119.67160509855472,132.96845010950526,0,0
+2017/04/01 08:00:00,142.7883116149256,0,825.4933028127638,0,0,0,0.0,0.0,11.471581537141494,0.0,87.89947186453183,0,39.380909295966944,0.07929128349131884,0.5250824313397605,0,0,34.51607703386882,471.5640531659978,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,940.8562752533758,0.0,2909.9278371373657,0.0,2193.8130808567566,0.0,2109.4982075654293,0.0,211.92975845727636,0.0,1049.5234230548015,0.0,2897.7056420692097,0.0,2208.001912798874,0.0,1939.82531024259,0.0,309.2507213313744,0,0,0,0,0,0,0,0,0.04394987489014423,0.0013905434059342215,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42169594286478645,-0.42169594286478645,-0.44573064023553727,-0.44573064023553727,-0.4949089518459557,-0.4949089518459557,0.6737402293082749,0.6737402293082749,-0.0925460447246042,-0.0925460447246042,-0.37999876897856755,-0.48899649448021093,-0.46119875684361655,-0.3797500999827017,-0.21217346936825715,-0.3895668730592058,-0.5107858540605137,-0.4764066560577932,-0.3788150433570707,-0.24087775347767323,8.707560001594672,8.707560001594672,9.145262914717577,9.145262914717577,10.118331125032142,10.118331125032142,14.539214195953036,14.539214195953036,5.17736291911956,5.17736291911956,8.006934572411708,9.995828361752828,9.440089659804883,8.0029792250902,5.933722899037932,8.161130849424595,10.45476476772572,9.740001359738145,7.9881297663963835,6.2041138978572405,142.7883116149256,142.7883116149256,0.0,158.65367957213954,0.0,142.7883116149256,158.65367957213954,0,0
+2017/04/01 09:00:00,183.63644142660235,0,994.2449914195446,0,0,0,0.0,0.0,11.287802377079139,0.0,106.27511244621549,0,39.380909295966944,0.04800982957534812,23.212632275311194,0,0,25.479366410111357,596.1169236277199,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2341.8358520184743,0.0,1124.4328548628482,0.0,1009.2813064546793,0.0,9.867368557237674,0.0,0.0,0.0,2276.818054662848,0.0,1043.28538631507,0.0,820.3999592379805,0.0,25.589530146945272,0,0,0,0,0,0,0,0,0.05293433978707,0.0016748056125843078,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.28614529485738144,-0.28614529485738144,-0.4357903237402599,-0.4357903237402599,-0.4423179038154848,-0.4423179038154848,0.9211796327930483,0.9211796327930483,-0.17739639848446498,-0.17739639848446498,-0.2657631590642657,-0.47450657375428995,-0.4438727901211635,-0.336537009467804,-0.2356038794768396,-0.2492507030969728,-0.4897772141250592,-0.45253729663244147,-0.3168756690450169,-0.2613672653044134,6.700883563942014,6.700883563942014,8.961228467414998,8.961228467414998,9.081601008315005,9.081601008315005,22.921145675680947,22.921145675680947,5.652338538853897,5.652338538853897,6.466530545709475,9.701985307002715,9.110544093440168,7.3556414257469385,6.151843053637165,6.289500087604807,10.011917930509298,9.273731330485703,7.087382479097329,6.418281470880316,183.63644142660235,183.63644142660235,0.0,204.0404904740026,0.0,183.63644142660235,204.0404904740026,0,0
+2017/04/01 10:00:00,210.86146276156927,0,1034.0127391210378,0,0,0,0.6162958563973124,0.0,15.051765606641785,0.0,131.64086955684016,0,39.380909295966944,0.018152342115876494,20.72149490115285,0,0,10.334774484925756,562.3033819730384,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2485.3495047074252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1557.393546866973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1614.7986933434915,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05505160413093334,0.001741794380569152,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.14448316462315186,-0.14448316462315186,-0.3684608755515754,-0.3684608755515754,-0.524587282668746,-0.524587282668746,1.0516076598948694,1.0516076598948694,-0.1376304613334749,-0.1376304613334749,-0.12367758773313502,-0.46504598377001116,-0.41441260300496285,-0.28723408905648745,-0.26550164130500914,-0.0703031712523677,-0.4664136987253413,-0.41232629756862466,-0.23387124635539225,-0.27960594544781525,5.432531373128924,5.432531373128924,7.826190535972486,7.826190535972486,10.756075120426019,10.756075120426019,28.342356665010527,28.342356665010527,5.392441946647338,5.392441946647338,5.3168535683307,9.515018334437343,8.579815214215301,6.71389547605834,6.463637380903521,5.102335619535495,9.54180960121225,8.543641769389879,6.134925234300923,6.623785930581846,210.86146276156927,210.86146276156927,0.0,234.2905141795214,0.0,210.86146276156927,234.2905141795214,0,0
+2017/04/01 11:00:00,215.52064261569345,0,1096.9318403681277,0,0,0,0.7949537074546736,0.0,14.932575465546352,0.0,136.4899973586286,0,39.380909295966944,0.0015103509385448039,22.77670470300683,0,0,0.8737992552709106,581.4479296809669,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3161.4711712092994,0.0,0.0,0.0,0.0,0.0,0.0,72.02461224273452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,215.69377361585842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,175.1048499845677,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05840146368592617,0.0018477816018443967,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.01753275788241065,0.01753275788241065,-0.3553134137907473,-0.3553134137907473,-0.46799366383081553,-0.46799366383081553,1.0351420102522737,1.0351420102522737,0.03760256470225308,0.03760256470225308,-0.05005376092292134,-0.43254864662687365,-0.3363425883183774,-0.23525298467873137,-0.19687085438485138,0.03731872115260842,-0.4219369492330491,-0.31656563502600704,-0.16816105296735795,-0.21567641246308206,5.006363371863571,5.006363371863571,7.627148722720776,7.627148722720776,9.57285882524208,9.57285882524208,27.622510112104464,27.622510112104464,5.029271389307098,5.029271389307098,5.051868427019983,8.90213017895455,7.352908456355209,6.1484066638234935,5.803678980471091,5.028831118610128,8.711825964246799,7.083283631129532,5.586103351095275,5.9648700373965085,215.52064261569345,215.52064261569345,0.0,239.46738068410383,0.0,215.52064261569345,239.46738068410383,0,0
+2017/04/01 12:00:00,204.4612418213203,0,1078.8924385074145,0,0,0,0.6611344293503048,0.0,14.876918395255093,0.0,124.80122689546741,0,39.380909295966944,0.00020195485922557105,23.024863249194137,0,0,0.11727204337951286,599.6554075446891,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2509.169837659532,0.0,0.0,0.0,0.0,0.0,0.0,137.04159756399028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05744103256895656,0.001817394230779192,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.11802703566206611,0.11802703566206611,-0.3469208211645233,-0.3469208211645233,-0.4097744829570138,-0.4097744829570138,0.993294967946758,0.993294967946758,0.1160485883900994,0.1160485883900994,0.035204857290853556,-0.400716758622105,-0.283671339790664,-0.24820255214536655,-0.13386872816596598,0.1621131772752292,-0.3708789482658841,-0.23797824500381046,-0.16865522388090043,-0.15417094523808872,5.288544899518428,5.288544899518428,7.503939224574978,7.503939224574978,8.499650615995975,8.499650615995975,25.838182924097524,25.838182924097524,5.278946705921797,5.278946705921797,5.025657254192524,8.345754396511296,6.671503939408723,6.278649888604377,5.371265908169121,5.5446559921527125,7.863600008812369,6.1752315405528435,5.589557409654503,5.492541872278352,204.4612418213203,204.4612418213203,0.0,227.17915757924476,0.0,204.4612418213203,227.17915757924476,0,0
+2017/04/01 13:00:00,199.8789181824142,0,1006.0479024847888,0,0,0,0.6774911658586632,0.0,14.821261324963833,0.0,122.5097643007467,0,39.380909295966944,0.00018556095718128048,20.773318932693673,0,0,0.10785675303824686,562.310639324949,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2741.544528967411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053562735514678515,0.0016946876153778859,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.09330732109964845,0.09330732109964845,-0.38620007061749806,-0.38620007061749806,-0.2905159662084893,-0.2905159662084893,0.9994340111509757,0.9994340111509757,0.20064005625887255,0.20064005625887255,0.01332199785268793,-0.3010023517087162,-0.17604496911536782,-0.16655628019492077,-0.032968734969278615,0.1537812377455227,-0.22808943293990586,-0.16101047658518847,-0.07904314318427941,-0.07601582622848116,5.18029400128529,5.18029400128529,8.10642675989402,8.10642675989402,6.753419168249678,6.753419168249678,26.095824695665613,26.095824695665613,5.834800904445615,5.834800904445615,5.003673863503067,6.882756288782019,5.642423916575709,5.574956860355002,5.022501247505971,5.4900523937022,6.079381786273302,5.5372633106654945,5.129369141192058,5.119646841430892,199.8789181824142,199.8789181824142,0.0,222.0876868693491,0.0,199.8789181824142,222.0876868693491,0,0
+2017/04/01 14:00:00,183.59492514484035,0,969.5355383382094,0,0,0,0.5131732862815761,0.0,15.230160501368806,0.0,108.75639138185811,0,39.380909295966944,0.00014896740349704116,18.570149977809944,0,0,0.08510358623689307,561.311380857715,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2047.8405073460485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.781662114296033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05161879020256308,0.0016331825407442141,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.10852553935821461,-0.10852553935821461,-0.5056790749353043,-0.5056790749353043,-0.34738113773430496,-0.34738113773430496,0.9613360844829043,0.9613360844829043,0.17176357405753598,0.17176357405753598,-0.07292924785074166,-0.34771105338048247,-0.20424644744399606,-0.22479248899338455,-0.09964490025860999,0.034231700659102055,-0.30779148009947427,-0.2676684338835671,-0.1667110309287156,-0.15300706570614026,5.243934342034294,5.243934342034294,10.34536279515693,10.34536279515693,7.510619367370168,7.510619367370168,24.52032419745707,24.52032419745707,5.611517068191873,5.611517068191873,5.110125465028673,7.5154126661656875,5.865134765432742,6.0483371449100645,5.205628631916852,5.0242583152421645,6.96897131781536,6.487695483952848,5.576027055173412,5.4851256956094545,183.59492514484035,183.59492514484035,0.0,203.9943612720448,0.0,183.59492514484035,203.9943612720448,0,0
+2017/04/01 15:00:00,181.74299081780785,0,952.8123318214898,0,0,0,0.29903119317307936,0.0,14.932575391494975,0.0,106.31215624428707,0,39.380909295966944,0.0042758972165648605,18.526059327366383,0,0,2.5058930875170278,542.1673848397152,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1172.2604702505841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,662.2191906229609,0.0,0.0,0.0,31.842606042019458,0.0,0.0,0.0,0.0,0.0,406.5479213104644,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050728434300622384,0.00160501230063607,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.269629150904915,-0.269629150904915,-0.40734832976925633,-0.40734832976925633,-0.43516081697157033,-0.43516081697157033,0.9517728944693872,0.9517728944693872,0.09077533594465657,0.09077533594465657,-0.11584701574148489,-0.3825992522382815,-0.3033473839351287,-0.3027441399366715,-0.19107075178646854,-0.04650442407723965,-0.35878624628312483,-0.2735172796695972,-0.2351231965188335,-0.20569325877720981,6.5096359421746826,6.5096359421746826,8.458084400115865,8.458084400115865,8.94971676035955,8.94971676035955,24.13369643208246,24.13369643208246,5.170638318213946,5.170638318213946,5.277977930195277,8.048456188938658,6.912315411998279,6.904689306451274,5.756948320059806,5.044772518013559,7.679009149780214,6.553623231361286,6.147136929074861,5.877457030412984,181.74299081780785,181.74299081780785,0.0,201.93665646423094,0.0,181.74299081780785,201.93665646423094,0,0
+2017/04/01 16:00:00,194.67161668567212,0,1013.3276732709004,0,0,0,0.2210387249575316,0.0,15.137025018911437,0.0,120.17895923267236,0,39.380909295966944,0.018825606050989516,16.302883604658547,0,0,11.378713312265445,540.5743772955611,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,860.857955634476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1457.1872300797295,0.0,0.0,0.0,777.7846207324699,0.0,0.0,0.0,0.0,0.0,1147.2250173461152,0.0,0.0,0.0,423.73253131948354,0.0,500.29756589430053,0,0,0,0,0,0,0,0,0.05395031590350585,0.0017069503887145658,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3788798848430209,-0.3788798848430209,-0.39848891990377466,-0.39848891990377466,-0.48344760157215244,-0.48344760157215244,0.950407692157493,0.950407692157493,0.0317416945003956,0.0317416945003956,-0.1628496349916596,-0.4040807472683106,-0.3371502785578924,-0.3481395563931454,-0.2222093336339676,-0.09686139212629279,-0.39562248930486577,-0.29607909343661803,-0.313023629695416,-0.2524385881910112,7.98915829775423,7.98915829775423,8.308440083969089,8.308440083969089,9.88223128557864,9.88223128557864,24.078796148465656,24.078796148465656,5.020857425338406,5.020857425338406,5.549621551243803,8.40250064864189,7.364272638471604,7.521645236249228,6.024332077828831,5.194296194760753,8.260742230182089,6.821455063867575,7.036745000622929,6.322784114150991,194.67161668567212,194.67161668567212,0.0,216.30179631741345,0.0,194.67161668567212,216.30179631741345,0,0
+2017/04/01 17:00:00,217.09446065974726,0,1040.1716015088762,0,0,0,0.22471475998753698,0.0,17.028300508570425,0.0,138.40412594678773,0,39.380909295966944,0.027878797880774936,18.596556148099545,0,0,17.477924910706342,561.3190939350959,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,875.5814108885809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1626.1467495335664,0.0,0.0,0.0,1132.7715469640543,0.0,113.61286942744383,0.0,0.0,0.0,1409.3095785828043,0.0,0.0,0.0,811.8526881262059,0.0,50.35764904712509,0,0,0,0,0,0,0,0,0.05537950652637228,0.0017521689837940162,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4198810203105758,-0.4198810203105758,-0.383860563533151,-0.383860563533151,-0.4852501629942675,-0.4852501629942675,0.9562357406489151,0.9562357406489151,0.011835297274863276,0.011835297274863276,-0.17176721243188695,-0.4014046380149175,-0.3567182729227103,-0.36132155992299775,-0.2503853458628607,-0.163663574914559,-0.3952338584463694,-0.31758320329805334,-0.3507641761470511,-0.27278177865968195,8.675514752521565,8.675514752521565,8.068699381056149,8.068699381056149,9.918987636580539,9.918987636580539,24.313677088959594,24.313677088959594,5.002899625498415,5.002899625498415,5.611543008477071,8.3573186680985,7.648065902589906,7.71719369697972,6.301297680151421,5.555135835715461,8.254302401328616,7.096751784142484,7.559990675491321,6.5452534842847285,217.09446065974726,217.09446065974726,0.0,241.21606739971918,0.0,217.09446065974726,241.21606739971918,0,0
+2017/04/01 18:00:00,206.72619717970585,0,1028.5388612346942,0,0,0,0.2468305768733645,0.0,18.825218136881578,0.0,120.14191543460078,0,39.380909295966944,0.004618690533868871,25.552723643008505,0,0,2.9992235394755027,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,963.752423139369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,591.4833485699096,0.0,55.69721809960406,0.0,117.7895888870448,0.0,0.0,0.0,0.0,0.0,432.726939991089,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054760170817726564,0.0017325736336850665,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4573955414241968,-0.4573955414241968,-0.4034197866704858,-0.4034197866704858,-0.4929600708039579,-0.4929600708039579,0.9532560797037888,0.9532560797037888,0.012459945587681282,0.012459945587681282,-0.17622211132741084,-0.3932330356742151,-0.3650689743090769,-0.3538071666366361,-0.16979219380413643,-0.13897162451790385,-0.3927569195728413,-0.3369229432423186,-0.34078942139202417,-0.16093984020866312,9.366644648105222,9.366644648105222,8.391312845930983,8.391312845930983,10.077784627239964,10.077784627239964,24.19342444538792,24.19342444538792,5.00321378009113,5.00321378009113,5.643719161547622,8.221249865545488,7.774135161746685,7.604815264713608,5.597543051593135,5.400134163533906,8.213409887857338,7.361071234871844,7.415818929374666,5.5367914803771185,206.72619717970585,206.72619717970585,0.0,229.6957746441176,0.0,206.72619717970585,229.6957746441176,0,0
+2017/04/01 19:00:00,202.04442850155476,0,990.5784668316344,0,0,0,0.21338507027674442,0.0,24.398945138444315,0.0,110.89738010901058,0,39.380909295966944,0.000807284732694082,25.43701400189621,0,0,0.5291816489599905,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,831.677209513422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.18762142442879,0.0,74.98127454367986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052739131302190455,0.0016686293521942575,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4829776067070714,-0.4829776067070714,-0.3997119081065142,-0.3997119081065142,-0.4990159082169421,-0.4990159082169421,0.9506867011762942,0.9506867011762942,0.006632038240043096,0.006632038240043096,-0.15190654773479456,-0.3722797281062961,-0.35056598132890043,-0.30380760337788076,-0.0733337439187406,-0.11793283862283083,-0.3587392565309365,-0.3262924281323416,-0.28614278364631496,-0.0829117087305164,9.87267058237532,9.87267058237532,8.328897758882405,8.328897758882405,10.20431357187914,10.20431357187914,24.09001025579427,24.09001025579427,5.000910491167346,5.000910491167346,5.478165155979525,7.8853852033464165,7.5570848420357635,6.918143775843959,5.111350750539771,5.2880842266516055,7.6783040169968615,7.2138188329505795,6.70085361091391,5.142346290024605,202.04442850155476,202.04442850155476,0.0,224.49380944617195,0.0,202.04442850155476,224.49380944617195,0,0
+2017/04/01 20:00:00,197.78867981105654,0,938.1268567067043,0,0,0,0.16431054481946397,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,0.0026909620199043415,22.706030722532912,0,0,1.7742220676266913,581.4491095136364,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,638.3834987925412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,371.0187147246778,0.0,0.0,0.0,10.996819036415406,0.0,0.0,0.0,0.0,0.0,298.04818889287054,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049946568727881877,0.0015802746189198223,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5387461142205138,-0.5387461142205138,-0.4263327493807523,-0.4263327493807523,-0.5429820861586211,-0.5429820861586211,0.9433825959549063,0.9433825959549063,-0.052377010779554256,-0.052377010779554256,-0.15972803397636695,-0.36798356196017773,-0.32355530312262576,-0.3139302547226196,-0.08096203165486326,-0.16318552428950742,-0.3662147950654368,-0.3087231254828605,-0.3036358733097737,-0.12857116725196258,11.07375639637904,11.07375639637904,8.790071514307826,8.790071514307826,11.170486290685204,11.170486290685204,23.797451610795747,23.797451610795747,5.056795731160392,5.056795731160392,5.52872935540293,7.818835578349436,7.1766806722344825,7.048606610274817,5.135728494650266,5.551893788934507,7.791665189875474,6.980954422529749,6.915967884521891,5.342442292592878,197.78867981105654,197.78867981105654,0.0,219.7651997900628,0.0,197.78867981105654,219.7651997900628,0,0
+2017/04/01 21:00:00,194.00453453596623,0,922.5170955385406,0,0,0,0.050450599956321805,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,0.00516822595445869,26.023384657312267,0,0,3.4485153809545244,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,194.32212633989903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,623.4942352628282,0.0,0.0,0.0,146.92063993583355,0.0,0.0,0.0,0.0,0.0,546.1493342530409,0.0,0.0,0.0,30.2458395014674,0.0,0.0,0,0,0,0,0,0,0,0,0.04911549348103469,0.0015539799774168118,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.43692763275951835,-0.43692763275951835,-0.44346057401774147,-0.44346057401774147,-0.597772214827213,-0.597772214827213,0.9304612804438132,0.9304612804438132,-0.1189384882445578,-0.1189384882445578,-0.17697268961187013,-0.3722907137440386,-0.33216440179915785,-0.3331547635469447,-0.1200635803367655,-0.1765229753382713,-0.3764549437574754,-0.3194895343960745,-0.3321436146024112,-0.16907945782170303,8.982069442663047,8.982069442663047,9.1028608647362,9.1028608647362,12.49175446364876,12.49175446364876,23.285081271027195,23.285081271027195,5.293021424382104,5.293021424382104,5.649221839840308,7.885556384744945,7.294563686785509,7.3083262268544615,5.2985948307372155,5.64592204799456,7.95081540728745,7.1221013449470405,7.294275264004085,5.592530761151707,194.00453453596623,194.00453453596623,0.0,215.56059392885135,0.0,194.00453453596623,215.56059392885135,0,0
+2017/04/01 22:00:00,139.96427637965687,0,732.0247484924498,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,0.016030037724319084,18.508894737507127,0,0,11.00092785880675,561.3172343271945,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1181.088923782092,0.0,234.7663647181212,0.0,755.8320131032057,0.0,0.0,0.0,0.0,0.0,1144.4155149285093,0.0,174.97793587293907,0.0,676.9992069249397,0.0,0.0,0,0,0,0,0,0,0,0,0.0389735398253494,0.0012330956332757953,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47017378986918434,-0.47017378986918434,-0.4668711659411412,-0.4668711659411412,-0.5890653576653878,-0.5890653576653878,0.7754256059906135,0.7754256059906135,-0.336832952514698,-0.336832952514698,-0.1995493924010453,-0.38960191246606496,-0.3593365557947812,-0.35404630783699426,-0.1487983134152856,-0.2069837723005506,-0.39950105037430106,-0.3610802275536443,-0.36217987275856933,-0.2139334116236685,9.615878940318794,9.615878940318794,9.550788611587691,9.550788611587691,12.27308408599528,12.27308408599528,17.6700984976155,17.6700984976155,7.359804564966069,7.359804564966069,5.825734318299652,8.16170271907744,7.68727414519789,7.608354616716824,5.458778656882615,5.888522040592051,8.325366047212555,7.713547184722813,7.73018283229591,5.949307554395418,139.96427637965687,139.96427637965687,0.0,155.5158626440632,0.0,139.96427637965687,155.5158626440632,0,0
+2017/04/01 23:00:00,93.10764838970782,0,614.6317157488501,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.06118435781741986,14.103507770597844,0,0,42.648534836390915,518.747652143643,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2204.6243731144195,0.0,827.7940941004822,0.0,1822.982180606884,0.0,333.4205683871536,0.0,0.0,0.0,2183.367847327201,0.0,799.6504155345459,0.0,1778.6918140966254,0.0,97.46985228275182,0,0,0,0,0,0,0,0,0.03272344780827818,0.001035347078529182,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5666529508503694,-0.5666529508503694,-0.6199846882792562,-0.6199846882792562,-0.6349643329383218,-0.6349643329383218,0.5407349919384072,0.5407349919384072,-0.3992168034557258,-0.3992168034557258,-0.23790720104512153,-0.4188616402049917,-0.3865422914347958,-0.3849842273759542,-0.22559209188747825,-0.25520440295285324,-0.43509822744502497,-0.3976327493812313,-0.39978223620468273,-0.26778453136338193,11.725335129176145,11.725335129176145,13.064518405824316,13.064518405824316,13.462867205211978,13.462867205211978,11.11907629293404,11.11907629293404,8.320608131014495,8.320608131014495,6.174528293420167,8.65757797407467,8.111965083031095,8.086790644214304,6.055824490514084,6.352007586318479,8.948573124228488,8.294156466813845,8.330076125718762,6.488990106420502,93.10764838970782,93.10764838970782,0.0,103.45294265523091,0.0,93.10764838970782,103.45294265523091,0,0
+2017/04/02 00:00:00,42.95187540659987,0,569.6742020372067,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.6359505919329516e-09,11.766241339163853,0,0,0.0,516.4386732683905,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03032987647794016,0.0009596161500941358,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4093303599252973,-0.4093303599252973,-0.5036070328181923,-0.5036070328181923,-0.5186502124935186,-0.5186502124935186,0.5846707427740174,0.5846707427740174,-0.04447737311760352,-0.04447737311760352,-0.1609098839489898,-0.4285575528673999,-0.39345942871507955,-0.3502400368373673,0.0016889265201786743,-0.1956232765075188,-0.4623268789887121,-0.41840547311672127,-0.3810625054363201,-0.0732914588078514,8.49202280232025,8.49202280232025,10.301295202510772,10.301295202510772,10.625447945652283,10.625447945652283,12.163963857836364,12.163963857836364,5.040954124706332,5.040954124706332,5.536591444142076,8.829989162363532,8.224981171685187,7.552309639887156,5.000059047620567,5.7935087044583184,9.461994932289329,8.649565792089732,8.023884237740774,5.11122234443728,42.95187540659987,42.95187540659987,0.0,47.72430600733318,0.0,42.95187540659987,47.72430600733318,0,0
+2017/04/02 01:00:00,23.72214579974158,0,39.8350440105776,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250503760637896,0,0,0.0,4.344691498033459,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002120847249205817,6.71021286123894e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42589531565764505,-0.42589531565764505,-0.52321137293337,-0.52321137293337,-0.5460655889297047,-0.5460655889297047,0.500247038899809,0.500247038899809,0.07446122185814562,0.07446122185814562,-0.24007432187927644,-0.5191491189919112,-0.48479823612280687,-0.43371773523588847,0.08555964769447148,-0.2728152922545504,-0.5585445481268129,-0.5142378556051517,-0.4651904107988774,-0.029154788070558935,8.782248020957383,8.782248020957383,10.72566660526222,10.72566660526222,11.241388133526627,11.241388133526627,10.230230252568987,10.230230252568987,5.1148018748140345,5.1148018748140345,6.19607546138775,10.636366159646528,9.909759144434389,8.923391543070835,5.151586675271162,6.545634361648467,11.532537294589474,10.529355441002537,9.517843614588003,5.017596131140863,23.72214579974158,23.72214579974158,0.0,26.357939777490643,0.0,23.72214579974158,26.357939777490643,0,0
+2017/04/02 02:00:00,28.380570143636284,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5612070571633875,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.40997728306838893,-0.40997728306838893,-0.508448687060797,-0.508448687060797,-0.5321796357007945,-0.5321796357007945,0.472688343826829,0.472688343826829,0.1437050889671999,0.1437050889671999,-0.2617293330549848,-0.5474306893378128,-0.513585789356316,-0.4576427861177938,0.10983488387211085,-0.3083947904391637,-0.6019020579543538,-0.5572388957902235,-0.5033797777366603,-0.02163163050756918,8.50313651775295,8.50313651775295,10.404555953243218,10.404555953243218,10.925345020870353,10.925345020870353,9.665752675415533,9.665752675415533,5.42788114675426,5.42788114675426,6.422224763865884,11.272908744488163,10.515226143051052,9.371400337040441,5.249859076689319,6.976727086468742,12.596624768823375,11.501758616662002,10.29647330019641,5.009686535520444,28.380570143636284,28.380570143636284,0.0,31.533966826262535,0.0,28.380570143636284,31.533966826262535,0,0
+2017/04/02 03:00:00,23.73856872117991,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5414732975021157,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4160342948888692,-0.4160342948888692,-0.51354183711146,-0.51354183711146,-0.5362521532005536,-0.5362521532005536,0.43275501727884047,0.43275501727884047,0.17796149439120754,0.17796149439120754,-0.28223327613777993,-0.5704991602244238,-0.5372767921996184,-0.4787052908577617,0.13391430150694933,-0.3435995893905843,-0.6407496157951015,-0.5959628006177936,-0.5399575887415262,-0.010708856069741734,8.608061787914508,8.608061787914508,10.514274425423352,10.514274425423352,11.017169504508544,11.017169504508544,8.905879026305769,8.905879026305769,5.6565069069538225,5.6565069069538225,6.654544812787009,11.8177856516878,11.040385509077595,9.786199592071355,5.371518932956164,7.4560082536930565,13.619319118888612,12.446040689809436,11.10134146250958,5.002373937255484,23.73856872117991,23.73856872117991,0.0,26.376187467977676,0.0,23.73856872117991,26.376187467977676,0,0
+2017/04/02 04:00:00,38.429279966366884,0,266.01601978427783,0,0,0,0.0,0.00044597587198995825,4.633261998087618,9.319298099999997,23.111338313975452,0,0.4762301008504218,0.36362754911736056,0.5250779284640479,0,0,177.29013850291753,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,501.43463510036815,0.0,752.5641315839828,0.0,245.31567934310777,0.0,0.0,0.0,0.0,0.0,682.3176787297041,0.44597587198995825,1005.1854071504176,0.0,391.21469409643277,0.0,0.0,0,0,0,0,0,0,0,0,0.01416288993315425,0.00044810396513634263,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3653289946627574,-0.3653289946627574,-0.46401893373247244,-0.46401893373247244,-0.48536327545743685,-0.48536327545743685,0.44849868828345196,0.44849868828345196,0.3100027477091895,0.3100027477091895,-0.3097701583877889,-0.4914558211205922,-0.46614978106077565,-0.45093659535337377,0.1716913462434707,-0.37301621144483205,-0.5296936829055372,-0.4956727257931694,-0.4845879503526495,0.010249501391786025,7.778108332430108,7.778108332430108,9.494953106549062,9.494953106549062,9.921298808654768,9.921298808654768,9.197266472197086,9.197266472197086,6.997473186780809,6.997473186780809,6.994465515601064,10.046600855422653,9.536633616784115,9.243340568364559,5.611002224455447,7.8968726938116305,10.86964641452957,10.134266196439754,9.90546804622619,5.002174644960078,38.429279966366884,38.429279966366884,0.0,42.69919996262987,0.0,38.429279966366884,42.69919996262987,0,0
+2017/04/02 05:00:00,73.20880559446272,0,286.31544372040327,0,0,0,0.0683395680599827,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,0.4522750334462681,0.299051520431755,0.525132283324965,0,0,73.3733286451384,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,215.8356002873053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,335.17111698986355,0.0,486.8158616196744,0.0,147.4932795889822,0.0,0.0,0.0,0.0,0.0,528.622734848094,0.0,757.7925773330805,0.0,274.8295209972614,0.0,0.0,0,0,0,0,0,0,0,0,0.015243646299432204,0.00048229834321604563,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1413453328897237,-0.1413453328897237,-0.24106815700567152,-0.24106815700567152,-0.2577158694249952,-0.2577158694249952,0.6315104097759127,0.6315104097759127,0.6247572642284662,0.6247572642284662,-0.29493154685527867,-0.4790002507099708,-0.45609959181723003,-0.4457998203426781,0.22448255650371737,-0.3668786971661559,-0.5046285845533769,-0.4746140715205374,-0.4731339932774941,0.09228517464245133,5.413931990558552,5.413931990558552,6.206022882919967,6.206022882919967,6.378822353147697,6.378822353147697,13.370154572656219,13.370154572656219,13.190377137740114,13.190377137740114,6.807313773083422,9.792144227611146,9.341760430213412,9.146558593019677,6.0454421983809254,7.801847894725597,10.322998075815093,9.704131922807349,9.674620133299058,5.17636404406062,73.20880559446272,73.20880559446272,0.0,81.34311732718079,0.0,73.20880559446272,81.34311732718079,0,0
+2017/04/02 06:00:00,104.35395471049448,0,744.5101368562284,0,0,0,0.11862597466620918,0.0,8.33396954093373,13.929299233552332,80.56906512710079,0,0.654806384870134,0.2231212261293185,0.5250672232420127,0,0,32.98339000921773,480.8394555154738,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,383.2312437284469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,212.54974263536184,0.0,286.8519120132843,0.0,54.80166592301026,0.0,0.0,0.0,0.0,0.0,346.29710004818094,0.0,473.7190939282034,0.0,146.7636356279158,0.0,0.0,0,0,0,0,0,0,0,0,0.03963827114984737,0.0012541272690269557,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.013914024923710824,0.013914024923710824,-0.08667662871232835,-0.08667662871232835,-0.09995526480219619,-0.09995526480219619,0.7522950684876988,0.7522950684876988,0.8528333754140567,0.8528333754140567,-0.2704077720578272,-0.4674699310671036,-0.4454344676845328,-0.4355853870878224,0.25415475118494946,-0.33913422913610847,-0.48993342336326084,-0.46064404955310195,-0.46076116888395274,0.17731412845060932,5.004007653508921,5.004007653508921,5.155571770940341,5.155571770940341,5.206912141256396,5.206912141256396,16.918895562484423,16.918895562484423,20.34893470801842,20.34893470801842,6.518393652835243,9.562554593984672,9.13971820784677,8.95747894934857,6.3408791356697805,7.3923043770188315,10.015140349615649,9.429338750062783,9.43160756331956,5.6517327943878115,104.35395471049448,104.35395471049448,0.0,115.94883856721609,0.0,104.35395471049448,115.94883856721609,0,0
+2017/04/02 07:00:00,117.7452962306065,0,755.3877442673347,0,0,0,0.0,0.0,7.93331016764836,0.0,69.33401494192633,0,39.380909295966944,1.882713569288697e-05,0.5250471308534621,0,0,0.0014095756821040453,489.2086908475716,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.040217403025531,0.0012724505978853678,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.31817010017937064,-0.31817010017937064,-0.3817504706021429,-0.3817504706021429,-0.3894996707915931,-0.3894996707915931,0.5246543993758702,0.5246543993758702,0.27669809958116287,0.27669809958116287,-0.6668754515385551,-0.9805740222540955,-0.8447660785506865,-0.9318806468386358,-0.4072281929915892,-0.7346321543563723,-0.973815965454001,-0.8274324758692579,-0.9582755123056699,-0.29367894998355737,7.104539678295978,7.104539678295978,8.034872053895839,8.034872053895839,8.160034204329818,8.160034204329818,10.757560540150195,10.757560540150195,6.590082402453291,6.590082402453291,14.343914934495544,25.308897473599544,20.05801065360498,23.34103865189482,8.456032699278566,16.36068057497289,25.030244985515537,19.4421092042858,24.39619880576592,6.791941453880597,117.7452962306065,117.7452962306065,0.0,130.8281069228961,0.0,117.7452962306065,130.8281069228961,0,0
+2017/04/02 08:00:00,146.60721860213204,0,786.530445072343,0,0,0,0.0,0.0,9.784091042823487,0.0,96.91714705112861,0,39.380909295966944,2.9365196344873144e-05,0.525041847016655,0,0,0.0024381030614624767,467.1148343563844,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04187546348399575,0.0013249104750277135,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.43585718542601043,-0.43585718542601043,-0.44335622997911567,-0.44335622997911567,-0.47298364868787846,-0.47298364868787846,0.5458524483035967,0.5458524483035967,-0.20519851508249615,-0.20519851508249615,-0.8640107608987947,-1.0896247639163366,-0.9463030497220123,-1.0508136099985104,-0.5321243932898009,-0.9687839743410929,-1.158402001675608,-0.9902266085011033,-1.1429440938436657,-0.5751590472200113,8.962452158147215,8.962452158147215,9.100917171735432,9.100917171735432,9.671627644905286,9.671627644905286,11.236473936793956,11.236473936793956,5.873233521592738,5.873233521592738,20.75648121786618,30.0414498624138,23.914174600565346,28.307416489324808,10.924104388712323,24.823911496393677,33.2402044429505,25.709949152737963,32.50784342318238,11.930654118438568,146.60721860213204,146.60721860213204,0.0,162.8969095579245,0.0,146.60721860213204,162.8969095579245,0,0
+2017/04/02 09:00:00,150.57541884031036,0,919.1021127091576,0,0,0,0.0,0.0,9.877086002043693,0.0,97.06762091869685,0,39.380909295966944,0.24018443485259525,0.577642986296034,0,0,57.23711085817345,489.2163004692709,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1389.1573771676776,0.0,4296.845740254962,0.0,2622.228848660542,0.0,4009.674474099939,0.0,565.2729172880711,0.0,2143.3187495304137,0.0,4630.03306991594,0.0,2983.7436095659327,0.0,4392.233010198528,0.0,1343.706613260532,0,0,0,0,0,0,0,0,0.04893367726569778,0.0015482274390999087,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46716702500521373,-0.46716702500521373,-0.45874302402502065,-0.45874302402502065,-0.47809986366087137,-0.47809986366087137,0.5562409980795178,0.5562409980795178,-0.24168786976742043,-0.24168786976742043,-0.5199460933823613,-0.6412139825518592,-0.5784651721737577,-0.6182030320085561,-0.31888516246418047,-0.5860598315510898,-0.6955511751350565,-0.61720199758766,-0.6814856395709549,-0.36353144516535474,9.556600433854555,9.556600433854555,9.392595045695671,9.392595045695671,9.774009538587237,9.774009538587237,11.478284601125296,11.478284601125296,6.2122466627462956,6.2122466627462956,10.653829722443817,13.63193996568171,12.011304035151198,13.01778729159578,7.114047999979292,12.198364957686437,15.173253354763844,12.991591572105733,14.762015881178328,7.7507002399130585,150.57541884031036,150.57541884031036,0.0,167.30602093367818,0.0,150.57541884031036,167.30602093367818,0,0
+2017/04/02 10:00:00,203.64205789744605,0,1072.4206508127322,0,0,0,0.0,0.0,13.065493553185489,0.0,124.87761316689259,0,39.380909295966944,0.07638210409663203,22.80968457485008,0,0,29.62270888818741,581.4233592614711,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2688.136307646456,0.0,695.255442161463,0.0,2384.4532769987277,0.0,38.46883336219466,0.0,37.642670893913944,0.0,2775.695429091596,0.0,770.3150361666403,0.0,2434.9499292754153,0.0,42.88490204195239,0,0,0,0,0,0,0,0,0.057096469798395395,0.0018064925048987006,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4050967352896142,-0.4050967352896142,-0.35371863768834527,-0.35371863768834527,-0.3978828389328099,-0.3978828389328099,0.7361473121131403,0.7361473121131403,-0.17424760278518112,-0.17424760278518112,-0.4119978498410039,-0.5242631745451772,-0.4827221611358797,-0.4947919816165414,-0.28171265804385115,-0.44588813228951646,-0.5421867278544773,-0.49403473573240503,-0.5180178435979093,-0.30237179971358713,8.419734314923986,8.419734314923986,7.603505630399269,7.603505630399269,8.29832550547006,8.29832550547006,16.408040422467764,16.408040422467764,5.629355813128981,5.629355813128981,8.537963963311753,10.74890473870525,9.867478269881957,10.115892930307993,6.648426659994911,9.148212891687947,11.152264722541886,10.100122758140941,10.611624479076553,6.8999899273437535,203.64205789744605,203.64205789744605,0.0,226.26895321938449,0.0,203.64205789744605,226.26895321938449,0,0
+2017/04/02 11:00:00,222.06789524874878,0,1136.4740820873326,0,0,0,0.05862487541495202,0.0,13.016794053187484,0.0,143.25325374857618,0,39.380909295966944,0.050086120824485006,22.876251952324342,0,0,22.20856311075353,599.6554075446891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,227.08708821085372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1930.0579853671054,0.0,274.79372749673985,0.0,1708.0317672801887,0.0,1.5430123460838567,0.0,0.0,0.0,1829.6784840278774,0.0,81.375779049927,0.0,1621.903252452135,0.0,2.277363108204821,0,0,0,0,0,0,0,0,0.06050672192425868,0.0019143905050191918,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3127663451597775,-0.3127663451597775,-0.2579289776847776,-0.2579289776847776,-0.4392657221147618,-0.4392657221147618,0.9162001151585537,0.9162001151585537,-0.0805627355793449,-0.0805627355793449,-0.3217964010244613,-0.47053848664030407,-0.4312253371071775,-0.4387399709217243,-0.26891479431874576,-0.32700928745614005,-0.47676137934305374,-0.4312021874055013,-0.4469728772040093,-0.28542144270439884,7.033385220547061,7.033385220547061,6.381109909570668,6.381109909570668,9.025089033386493,9.025089033386493,22.7273219978467,22.7273219978467,5.134392612813059,5.134392612813059,7.15298298485223,9.623095448754668,8.878134919938148,9.01539502439492,6.50162352670668,7.22359790210615,9.747115760476987,8.877715820989067,9.16856017348482,6.6922606756853185,222.06789524874878,222.06789524874878,0.0,246.7421058319431,0.0,222.06789524874878,246.7421058319431,0,0
+2017/04/02 12:00:00,199.3305838732154,0,1033.7249362323253,0,0,0,0.12665549480279742,0.0,13.016794053187484,0.0,124.80122689546741,0,39.380909295966944,0.025537856844578495,18.54748507449187,0,0,12.529121645922913,542.0760556670563,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,492.7379347431165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1478.1314001354363,0.0,277.83504197085267,0.0,1212.967375563645,0.0,0.0,0.0,0.0,0.0,1338.2824272638145,0.0,44.96436655461329,0.0,1060.4201031820614,0.0,0.0,0,0,0,0,0,0,0,0,0.05503628129196077,0.00174130957662496,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.41834619364499553,-0.41834619364499553,-0.3142308964492703,-0.3142308964492703,-0.4230499306853558,-0.4230499306853558,0.9679400005131831,0.9679400005131831,-0.06297444163393137,-0.06297444163393137,-0.28117554740337297,-0.4335161049192203,-0.3974246965480076,-0.40798350749018275,-0.24689732817706347,-0.27687365870083847,-0.4268394710242031,-0.3864448111912022,-0.40664090638575123,-0.26840932472645135,8.6485252542209,8.6485252542209,7.052547668582051,7.052547668582051,8.731558745053633,8.731558745053633,24.789401237584613,24.789401237584613,5.082108228985334,5.082108228985334,6.642126675130825,8.919720450938854,8.290690226388051,8.468942262922042,6.2652030816485365,6.592107115501918,8.799144485106353,8.110387004094989,8.446011888890183,6.495967030881587,199.3305838732154,199.3305838732154,0.0,221.47842652579487,0.0,199.3305838732154,221.47842652579487,0,0
+2017/04/02 13:00:00,199.26807051696582,0,1019.9638300568714,0,0,0,0.1410492786248632,0.0,12.968094553189474,0.0,124.7641830973959,0,39.380909295966944,0.028749732696495483,18.553109356637822,0,0,15.067273442709162,561.2671502073607,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,548.9009626866159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1479.2543918900797,0.0,283.89020128609656,0.0,1256.2339181756633,0.0,57.23909982423695,0.0,0.0,0.0,1255.1267381474975,0.0,0.0,0.0,1054.4940704950832,0.0,0.0,0,0,0,0,0,0,0,0,0.05430362980623652,0.0017181289943168582,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.444101339014589,-0.444101339014589,-0.1680665708011052,-0.1680665708011052,-0.4306171369519031,-0.4306171369519031,0.9822371503834999,0.9822371503834999,-0.08038015501449035,-0.08038015501449035,-0.24955340183325161,-0.4099682109454801,-0.3797206467922816,-0.39216153201694015,-0.2507835080565596,-0.2299051849957356,-0.39744545045896273,-0.362527164494167,-0.38651586934160154,-0.2665360346377028,9.11480712673793,9.11480712673793,5.585444117991216,5.585444117991216,8.867131787689004,8.867131787689004,25.377742877227575,25.377742877227575,5.133783975725635,5.133783975725635,6.292642143389656,8.502980540707227,8.00251091529752,8.203619559183792,6.305450449989067,6.096673904090153,8.29103591141866,7.735447430932496,8.111537303451271,6.47509768292683,199.26807051696582,199.26807051696582,0.0,221.40896724107313,0.0,199.26807051696582,221.40896724107313,0,0
+2017/04/02 14:00:00,181.0468206375242,0,948.2507463058876,0,0,0,0.08511639963574646,0.0,13.01679398839311,0.0,111.01081017850728,0,39.380909295966944,0.03922408245711631,14.081991490109724,0,0,21.475287716245212,518.6364046953848,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,329.6083211545514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1036.9188080614522,0.0,63.92608637941781,0.0,1526.2509683019694,0.0,0.0,0.0,0.0,0.0,680.3241387155106,0.0,0.0,0.0,1273.7368340287428,0.0,0.0,0,0,0,0,0,0,0,0,0.05048557210897491,0.0015973283101812564,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3240893260974507,-0.3240893260974507,-0.2164482457044752,-0.2164482457044752,-0.5016260710994015,-0.5016260710994015,0.965094443453217,0.965094443453217,-0.14875413792014777,-0.14875413792014777,-0.11840104221739084,-0.33707471672674394,-0.3888409091438448,-0.4064774431463548,-0.272777291374755,-0.05713066312393432,-0.30563250924589114,-0.34735967511573584,-0.39922111006761235,-0.28190217909908605,7.183901518698548,7.183901518698548,5.971802044312369,5.971802044312369,10.25933819617552,10.25933819617552,24.673250226343825,24.673250226343825,5.458506027664399,5.458506027664399,5.290377625749059,7.363208310769181,8.149294371956984,8.443225359792379,6.545202490506256,5.067574513499849,6.9413431532711485,7.510307700278219,8.320680192194914,6.650652532802468,181.0468206375242,181.0468206375242,0.0,201.16313404169355,0.0,181.0468206375242,201.16313404169355,0,0
+2017/04/02 15:00:00,178.71555355908066,0,938.5332450188083,0,0,0,0.10800856320576166,0.0,13.01679398839311,0.0,108.75639138185811,0,39.380909295966944,0.02133728277799514,14.000137844424463,0,0,11.790662472138784,518.603528652412,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,418.7202359363517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,122.03561874806257,0.0,0.0,0.0,1556.325806261321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1284.583319818942,0.0,0.0,0,0,0,0,0,0,0,0,0.049968205142632824,0.0015809591800007173,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3590131430340704,-0.3590131430340704,-0.19748664260380946,-0.19748664260380946,-0.5322895489189022,-0.5322895489189022,0.9601867981837557,0.9601867981837557,-0.1411542506488941,-0.1411542506488941,-0.15515550937137815,-0.2683799766930906,-0.39275155460189143,-0.4127277646390484,-0.28489876917461404,-0.00940287215795107,-0.1898099306694844,-0.3434194312924938,-0.40506917150902644,-0.2932339498778375,7.682415307376459,7.682415307376459,5.80872288304235,5.80872288304235,10.927813841192261,10.927813841192261,24.473670439075065,24.473670439075065,5.412812594924134,5.412812594924134,5.498859519269558,6.495638940069568,8.21332160064074,8.550588122596096,6.686048076579581,5.001830221376466,5.74697608368966,7.453421674466455,8.419266182004705,6.786496209941703,178.71555355908066,178.71555355908066,0.0,198.5728372878674,0.0,178.71555355908066,198.5728372878674,0,0
+2017/04/02 16:00:00,193.14346011752957,0,1010.9355800972975,0,0,0,0.16645054949704757,0.0,11.156669655582503,0.0,124.87761316689259,0,39.380909295966944,0.018953065300518927,14.110889181835685,0,0,10.694506090396668,538.866491343827,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,647.6759980193858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.555650384246793,0.0,1496.5944170130756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1216.467290486682,0.0,0.0,0,0,0,0,0,0,0,0,0.053822959091103864,0.0017029209079451881,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4331948509356228,-0.4331948509356228,-0.07687536974764458,-0.07687536974764458,-0.5200928872457733,-0.5200928872457733,0.9609880390772595,0.9609880390772595,-0.07555673647578162,-0.07555673647578162,-0.18843995063989108,-0.17308851450930543,-0.39721397742317466,-0.4181455303457122,-0.28517452564592827,-0.08042505053364413,-0.09350234331526583,-0.338506699919735,-0.41429697636214075,-0.2953888721508593,8.913874972062388,8.913874972062388,5.122368652931115,5.122368652931115,10.657049314940323,10.657049314940323,24.50619029964615,24.50619029964615,5.118205648881869,5.118205648881869,5.7362157694581555,5.6209999282214085,8.287181451605306,8.645004111485676,6.6893243347580125,5.133933507932596,5.181048749429323,7.3834197828056745,8.577805537686615,6.812942753345865,193.14346011752957,193.14346011752957,0.0,214.60384457503284,0.0,193.14346011752957,214.60384457503284,0,0
+2017/04/02 17:00:00,202.278758809453,0,1020.4168714362087,0,0,0,0.11726057437266586,0.0,11.42750250780737,0.0,129.38645076019097,0,39.380909295966944,0.02979556163701245,18.50486490702372,0,0,16.95131942827483,542.0909693448599,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,454.2848612359065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,437.7631610146525,0.0,1733.5874853653143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.45307580803737,0.0,1486.190401796799,0.0,0.0,0,0,0,0,0,0,0,0,0.0543277500648432,0.0017188921424859662,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5004806937899399,-0.5004806937899399,0.02378434913898562,0.02378434913898562,-0.5197228448557176,-0.5197228448557176,0.9590974133597658,0.9590974133597658,-0.08446659197791836,-0.08446659197791836,-0.24227476626364206,-0.11860435123234685,-0.40109979370893456,-0.424247910856257,-0.280274593000733,-0.18977780764188343,0.005724939338324013,-0.366911289857802,-0.4247841305116437,-0.29203082777983036,10.23515634435455,10.23515634435455,5.011710472335849,5.011710472335849,10.648935056679505,10.648935056679505,24.42949602504335,24.42949602504335,5.147737042539518,5.147737042539518,6.218155739378801,5.291376329759359,8.352191285632927,8.752857899574437,6.631586348961619,5.746722880132197,5.00067845844633,7.802348274060407,8.76241141328218,6.771816086933157,202.278758809453,202.278758809453,0.0,224.75417645494775,0.0,202.278758809453,224.75417645494775,0,0
+2017/04/02 18:00:00,193.5401274016985,0,1034.8651859238,0,0,0,0.01582503503556427,0.0,12.047200841856396,0.0,115.6330778413024,0,39.380909295966944,0.015775329144005947,23.015363855938897,0,0,9.325548228581509,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,60.835786827192514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,647.3814972608263,0.0,1523.7846049577722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,180.29438090660724,0.0,1282.7915728215642,0.0,0.0,0,0,0,0,0,0,0,0,0.05509698903012543,0.0017432303271437055,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5583429330742872,-0.5583429330742872,-0.13342812185182526,-0.13342812185182526,-0.5080577386408631,-0.5080577386408631,0.947494296400959,0.947494296400959,-0.0998760336468486,-0.0998760336468486,-0.24810770515069197,-0.08503568702670314,-0.38488287639802754,-0.4224360676408086,-0.2513047388746785,-0.2590796676057887,-0.0005722381791897208,-0.37012843330875694,-0.42779234381067327,-0.27862691128583755,11.527779714343168,11.527779714343168,5.368824101632583,5.368824101632583,10.396180358474922,10.396180358474922,23.961882467954922,23.961882467954922,5.206584101546724,5.206584101546724,6.2776703342343865,5.149735153839771,8.085156656187607,8.720668592358976,6.310896879670523,6.3934947120571195,5.000006778514077,7.851962278947269,8.816235738819415,6.612398571100414,193.5401274016985,193.5401274016985,0.0,215.0445860018872,0.0,193.5401274016985,215.0445860018872,0,0
+2017/04/02 19:00:00,185.18111111739452,0,996.4204641267627,0,0,0,0.0,0.0,15.112000811269107,0.0,104.13412371906301,0,39.380909295966944,0.03961579866519994,23.082486289976043,0,0,24.604572808159862,581.4220136806173,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,465.3597335568081,0.0,259.16889745871526,0.0,1992.3858038168673,0.0,2097.123067670714,0.0,52.15533712140952,0.0,39.77945093976865,0.0,0.0,0.0,1415.0628434393227,0.0,1829.65241258554,0.0,0.0,0,0,0,0,0,0,0,0,0.05305016356538942,0.0016784701961945008,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4495954834155613,-0.4495954834155613,-0.30365850619051643,-0.30365850619051643,-0.5893711010436317,-0.5893711010436317,0.8562353593319948,0.8562353593319948,-0.12140592440733279,-0.12140592440733279,-0.3097324654786921,-0.2589130423849562,-0.40553980371792414,-0.4257660595369718,-0.24784172140012303,-0.32463249518322235,-0.17731656677522603,-0.39354040699672554,-0.4357236083881208,-0.26911225480589085,9.217963208627665,9.217963208627665,6.916254581162235,6.916254581162235,12.28070701182574,12.28070701182574,20.472428515674565,20.472428515674565,5.305313269885289,5.305313269885289,6.993978314691674,6.391697885743838,8.427263686315015,8.779937849282405,6.274925342067647,7.191258438915,5.651750743419598,8.226316350574479,8.96000764624361,6.5038361467424295,185.18111111739452,185.18111111739452,0.0,205.75679013043836,0.0,185.18111111739452,205.75679013043836,0,0
+2017/04/02 20:00:00,200.3830572435925,0,937.5755372440765,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,0.06127395051307829,18.497604871206633,0,0,40.58904714519955,542.0829649734355,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,683.961563268845,0.0,563.0681655413232,0.0,2176.649539747781,0.0,2073.675235206544,0.0,0.0,0.0,504.5113310034519,0.0,89.01863957852771,0.0,1809.2264614175438,0.0,1875.5451869223741,0.0,0.0,0,0,0,0,0,0,0,0,0.04991721607132558,0.0015793459213268705,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.40485944583255473,-0.40485944583255473,-0.40774477191381275,-0.40774477191381275,-0.5451996733158074,-0.5451996733158074,0.7844511264899469,0.7844511264899469,-0.16823400385679813,-0.16823400385679813,-0.3373514254882272,-0.3000410838873173,-0.4128670950847936,-0.43181254040566125,-0.2519819092453956,-0.35023026548535346,-0.2634138509827396,-0.4111315889099085,-0.4444806121294756,-0.2702072861774907,8.415705344883477,8.415705344883477,8.464859239934043,8.464859239934043,11.221435723973869,11.221435723973869,17.969405057079484,17.969405057079484,5.5866126081032945,5.5866126081032945,7.367107079426091,6.870706706260776,8.55300049109863,8.888773259559784,6.317989807650562,7.5521665558842415,6.440643467980024,8.52301126299858,9.121886515373177,6.516136202673849,200.3830572435925,200.3830572435925,0.0,222.64784138176944,0.0,200.3830572435925,222.64784138176944,0,0
+2017/04/02 21:00:00,186.69748590959244,0,1001.3868325812858,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,0.12035952122122973,23.01515847868546,0,0,82.31825242369975,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,651.8874668152935,0.0,1958.4035099551047,0.0,1955.2248294860715,0.0,3183.9354981023307,0.0,0.0,0.0,497.14019790139446,0.0,1516.0077322447312,0.0,1623.0173086581426,0.0,2982.300810644391,0.0,0.0,0,0,0,0,0,0,0,0,0.05331457670053047,0.0016868360434792043,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3894675009835277,-0.3894675009835277,-0.4620287418724143,-0.4620287418724143,-0.5430391018352697,-0.5430391018352697,0.6889488624972337,0.6889488624972337,-0.25304070125466593,-0.25304070125466593,-0.35925287560395924,-0.3373341783487315,-0.42939837685035454,-0.4529717399415638,-0.27233489371418307,-0.3772868720391566,-0.3274994059633235,-0.43379284045663186,-0.47097429807388674,-0.293290949622333,8.159509307276451,8.159509307276451,9.456200536862625,9.456200536862625,11.171793566267667,11.171793566267667,14.979155033213829,14.979155033213829,6.329118620049584,6.329118620049584,7.686016536819665,7.36686397581623,8.845130623772164,9.281998650221965,6.540179222469575,7.963941486592262,7.230296421071785,8.924759433430282,9.631726670892391,6.787193220197452,186.69748590959244,186.69748590959244,0.0,207.44165101065826,0.0,186.69748590959244,207.44165101065826,0,0
+2017/04/02 22:00:00,130.96061388211112,0,833.8428811634604,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,0.21591373457763327,18.512840070626652,0,0,132.056565905459,542.0797289515527,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,938.3325621124784,0.0,2777.254174801448,0.0,2098.77606742847,0.0,3808.222172556463,0.0,0.0,0.0,864.8687342655593,0.0,2481.333087508613,0.0,1855.7433052945692,0.0,3662.8473792542127,0.0,0.0,0,0,0,0,0,0,0,0,0.04439441262612367,0.0014046082700322478,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5529103609041136,-0.5529103609041136,-0.5577782433750127,-0.5577782433750127,-0.6227980752506665,-0.6227980752506665,0.4774497319224131,0.4774497319224131,-0.3628030798358449,-0.3628030798358449,-0.38436804645773914,-0.3739318754608267,-0.4519543371948969,-0.4801193012984898,-0.29533331158797116,-0.4069550075480084,-0.3753412958274017,-0.46180119659101304,-0.5026347294660659,-0.3183191207079701,11.40024899623154,11.40024899623154,11.514463917739832,11.514463917739832,13.138591310588396,13.138591310588396,9.760936979195009,9.760936979195009,7.7396336962848835,7.7396336962848835,8.076863303446487,7.911187261011378,9.262650555087887,9.814731756829374,6.812258415550744,8.45136952740873,7.933290605049095,9.451780693323741,10.280680507974537,7.1065194461286865,130.96061388211112,130.96061388211112,0.0,145.51179320234567,0.0,130.96061388211112,145.51179320234567,0,0
+2017/04/02 23:00:00,88.76383286424557,0,681.4462299900048,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.2575269312511656,9.56334967170185,0,0,135.76457674351076,492.446124477678,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,745.7789584861814,0.0,2797.3621947459665,0.0,1836.1795133654164,0.0,3709.3231013209324,0.0,0.0,0.0,984.8505789826705,0.0,2762.7794877535757,0.0,1930.4076539282155,0.0,3766.32728405692,0.0,1724.8975663259862,0,0,0,0,0,0,0,0,0.03628070203643338,0.0011478961226972712,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6760506510218952,-0.6760506510218952,-0.667626134703388,-0.667626134703388,-0.7272879704195838,-0.7272879704195838,0.2889900553416834,0.2889900553416834,-0.5179755799757644,-0.5179755799757644,-0.40318595770420446,-0.40253677431504836,-0.4693903447414617,-0.501328212974679,-0.3133161673737844,-0.431434002526172,-0.4122784347284291,-0.48527844530550346,-0.5292655050190683,-0.33990741240568806,14.60540327988231,14.60540327988231,14.365172107847343,14.365172107847343,16.132518578931226,16.132518578931226,6.734986036374309,6.734986036374309,10.6107012209889,10.6107012209889,8.387359398631432,8.37639564138449,9.600395751336393,10.25304419288436,7.0405685432410365,8.881913607737374,8.542814086965322,9.919565463549745,10.860079960576456,7.403274150283693,88.76383286424557,88.76383286424557,0.0,98.62648096027286,0.0,88.76383286424557,98.62648096027286,0,0
+2017/04/03 00:00:00,39.37066679361493,0,554.851039173288,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.578620161888558e-09,9.573345794613125,0,0,0.0,501.61551040447176,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029540680307449572,0.0009346465333749238,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5586790179562626,-0.5586790179562626,-0.5280129377844779,-0.5280129377844779,-0.6279403053397505,-0.6279403053397505,0.3491171872900368,0.3491171872900368,-0.17397909764760022,-0.17397909764760022,-0.4091009226566865,-0.3520973530611631,-0.5828818564907544,-0.6113483012063655,-0.11600999896026636,-0.47244386313842895,-0.36998541607946217,-0.6204731192427743,-0.6642759815304871,-0.18668627128966503,11.535711405588117,11.535711405588117,10.832140376936948,10.832140376936948,13.274867270572983,13.274867270572983,7.535894090727268,7.535894090727268,5.627415166939599,5.627415166939599,8.488085526284124,7.579580470985704,12.119785031394315,12.839278921408493,5.278761111099698,9.660891676630513,7.849747331256296,13.077353533780297,14.27049404544077,5.722556167711517,39.37066679361493,39.37066679361493,0.0,43.74518532623881,0.0,39.37066679361493,43.74518532623881,0,0
+2017/04/03 01:00:00,23.72208952745651,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249941037787199,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5576609837374706,-0.5576609837374706,-0.5136268907855737,-0.5136268907855737,-0.6360049683847262,-0.6360049683847262,0.3045316694312955,0.3045316694312955,-0.04741172943846457,-0.04741172943846457,-0.46290716923609987,-0.39671973435845986,-0.6350587540871108,-0.663513519884391,-0.05705081642779182,-0.5453601840318736,-0.42500934140077556,-0.6979096846503523,-0.7489942776685808,-0.15938075605447366,11.511700583322536,11.511700583322536,10.516116206297738,10.516116206297738,13.490902120509503,13.490902120509503,6.927331710896695,6.927331710896695,5.04653676952023,5.04653676952023,9.473284045938158,8.278959048535569,13.465408991031339,14.249014162265766,5.067385731634829,11.225131755105494,8.76642754311294,15.243046563458236,16.813561871614056,5.5264302041886,23.72208952745651,23.72208952745651,0.0,26.357877252729455,0.0,23.72208952745651,26.357877252729455,0,0
+2017/04/03 02:00:00,28.34426766153254,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5249045750596465,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5240887088889941,-0.5240887088889941,-0.4753162277978315,-0.4753162277978315,-0.6026502013490429,-0.6026502013490429,0.3152021329594827,0.3152021329594827,0.026851590204993666,0.026851590204993666,-0.4615969656054142,-0.39052125522161235,-0.6378997866180395,-0.6672846082341862,-0.03552757304323975,-0.5751259830981644,-0.4464709677312526,-0.7302152788112556,-0.7846577487075402,-0.14067900811823683,10.745046843443717,10.745046843443717,9.718165491721592,9.718165491721592,12.615701786369172,12.615701786369172,7.065305590493097,7.065305590493097,5.014925707242099,5.014925707242099,9.447815605900672,8.17672583600843,13.542069514397582,14.355498041631435,5.026129826574092,11.929849944325156,9.15913923425363,16.223183484550347,17.97629767849618,5.410035124278821,28.34426766153254,28.34426766153254,0.0,31.493630735036156,0.0,28.34426766153254,31.493630735036156,0,0
+2017/04/03 03:00:00,23.722090486614533,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249950629367405,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5295366427995521,-0.5295366427995521,-0.4793055130311903,-0.4793055130311903,-0.6087268115228711,-0.6087268115228711,0.2862199344430359,0.2862199344430359,0.0861902048421119,0.0861902048421119,-0.5000402833243079,-0.42885386029480455,-0.6796815529226434,-0.7107231719479357,-0.008541386418164298,-0.6329426997106714,-0.5011644347792029,-0.7910176772126805,-0.8463905716119028,-0.12604452515466538,10.866136864644943,10.866136864644943,9.798300451314148,9.798300451314148,12.771550112655433,12.771550112655433,6.701773965717962,6.701773965717962,5.153829976211,5.153829976211,10.22587324015143,8.83532156983587,14.709888297410885,15.626419860650586,5.001510215763744,13.408538299261465,10.249585049706667,18.18934266788675,20.11637554301555,5.329106063382369,23.722090486614533,23.722090486614533,0.0,26.357878318460592,0.0,23.722090486614533,26.357878318460592,0,0
+2017/04/03 04:00:00,41.352151098191264,0,274.2688735876752,0,0,0,0.0,0.002749893190501234,4.633261998087618,9.319298099999997,25.555573451546493,0,0.74900218963266,0.5671682338358134,0.525097231898176,0,0,167.75796599700013,17.785026309314727,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,398.6359942329311,0.0,0.0,0.4697901946985894,1245.7304196530597,0.0,779.351191223843,0.0,0.0,0.4558222252768701,1142.4125379130867,0.0,195.67132455505936,1.1421398126960867,1933.4309610541272,0.682140957829688,1276.924705674992,0.0,0.0,0,0,0,0,0,0,0,0,0.014602277982590955,0.00046200589674178443,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4706898719444352,-0.4706898719444352,-0.42250218372366033,-0.42250218372366033,-0.5482644392462754,-0.5482644392462754,0.3216694382365752,0.3216694382365752,0.2180459794585388,0.2180459794585388,-0.46286468084774296,-0.44627113802806817,-0.5406063819785006,-0.5725384873393691,0.022059038263435513,-0.5281976518455868,-0.49467659453434043,-0.5960282900141555,-0.6425028077240894,-0.10091170610041376,9.626092698657942,9.626092698657942,8.721840738947805,8.721840738947805,11.292200028613223,11.292200028613223,7.151277490042091,7.151277490042091,5.986230945188737,5.986230945188737,9.472456973976477,9.155391406502375,11.116140517685864,11.867064858586346,5.010073107653298,10.836256311983036,10.113488314636186,12.447692762095414,13.6670174489891,5.210892642414478,41.352151098191264,41.352151098191264,0.0,45.94683455354585,0.0,41.352151098191264,45.94683455354585,0,0
+2017/04/03 05:00:00,74.55833543313518,0,277.3963936141925,0,0,0,0.0,0.0021396729622381373,5.555297838843742,9.319298099999997,57.911447091112116,0,0.7102587444404214,0.5348238857828521,0.5250700999938213,0,0,64.45427853892771,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,365.08886963453654,0.0,6.560287953553244,0.2917180225938978,1058.9300647061887,0.0,675.9208442663971,0.0,0.0,0.0,943.7985111208977,0.0,173.2377144945944,1.2887483547169154,1680.2049591853513,0.559206584927324,1129.1568834907084,0.0,0.0,0,0,0,0,0,0,0,0,0.014768789465377671,0.0004672742039890781,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2793619692014323,-0.2793619692014323,-0.23769713899517675,-0.23769713899517675,-0.3559129824325021,-0.3559129824325021,0.47282754636596186,0.47282754636596186,0.5432479453274016,0.5432479453274016,-0.4540820429487182,-0.44968065612214675,-0.5172312422754567,-0.5482168914789721,0.14167942095936878,-0.5017497271961734,-0.4874971117002446,-0.5476248040331905,-0.58992554133427,7.978063137319229e-05,6.620944408011482,6.620944408011482,6.172450178997636,6.172450178997636,7.636065524437001,7.636065524437001,9.668521584630824,9.668521584630824,11.176583206623334,11.176583206623334,9.303164268577973,9.21957259915365,10.594453667107445,11.291099059465566,5.415892792165238,10.261952284171642,9.965001920151849,11.277397474620656,12.294540905016618,5.000000131757631,74.55833543313518,74.55833543313518,0.0,82.84259492570575,0.0,74.55833543313518,82.84259492570575,0,0
+2017/04/03 06:00:00,100.75599674125881,0,730.8624738900626,0,0,0,0.2719123313190674,0.00042234210651675617,11.110595677687485,13.929299233552332,73.80580873715317,0,0.6602106140258709,0.4001377094054963,0.5776100960088796,0,0,29.06595710070309,471.1092254578226,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,862.2798620113399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,113.3619152451364,0.0,0.0,0.0,687.1129113236398,0.0,440.5012507968519,0.0,0.0,0.0,582.5638918742384,0.0,52.14962161051479,0.42234210651675613,1148.2463616335217,0.0,777.2036289675676,0.0,0.0,0,0,0,0,0,0,0,0,0.03891165946461376,0.0012311377817962892,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.11898035340125893,-0.11898035340125893,-0.07776907503105654,-0.07776907503105654,-0.19981080560444225,-0.19981080560444225,0.6112910295133666,0.6112910295133666,0.7938527723634012,0.7938527723634012,-0.43708565421160134,-0.41218047038229955,-0.49743502187361777,-0.5277399436295912,0.22380277433837964,-0.48047170528455235,-0.46985433208075633,-0.5224661691037311,-0.5639911282280679,0.10870670773798173,5.293227870923275,5.293227870923275,5.125231126931382,5.125231126931382,5.827902888664497,5.827902888664497,12.837796063104335,12.837796063104335,18.284865864191772,18.284865864191772,8.984969552602152,8.54112031534244,10.171130180366433,10.826060024603478,6.039106747123398,9.8218560562035,9.609562317027908,10.70923131571162,11.66172916358461,5.2447498778367105,100.75599674125881,100.75599674125881,0.0,111.95110749028757,0.0,100.75599674125881,111.95110749028757,0,0
+2017/04/03 07:00:00,148.16251295273716,0,913.1761284072008,0,0,0,0.0,0.0,8.770770756981879,0.0,69.33401494192633,0,39.380909295966944,0.19540816596668714,27.049434589441038,0,0,47.343077018430954,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,514.6016287977548,0.0,0.0,0.0,0.0,0.0,3048.1499527756932,0.0,4557.758982588941,0.0,4055.8270624365396,0.0,4412.980161006514,0.0,2257.2847454803828,0.0,3322.4594023697978,0.0,4655.012640531231,0.0,4388.281840579263,0.0,4451.726252269687,0.0,1915.4345393546919,0,0,0,0,0,0,0,0,0.04861817347204553,0.0015382451189930371,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.40341218860856415,-0.40341218860856415,-0.38805642253887285,-0.38805642253887285,-0.5040322313642419,-0.5040322313642419,0.23049950193033092,0.23049950193033092,0.2910208334117908,0.2910208334117908,-0.44661570723429017,-0.4702489579118648,-0.5223862038765741,-0.4952307489220204,-0.1444372036701692,-0.4851420486355345,-0.5121753270694385,-0.5449427461172104,-0.5155798483397527,-0.18593794897261326,8.391184345433146,8.391184345433146,8.136529025915735,8.136529025915735,10.310323068241857,10.310323068241857,6.102363856677215,6.102363856677215,6.759539654445035,6.759539654445035,9.161854911599178,9.617365873605905,10.707469129985355,10.125041897657866,5.432255983779754,9.91677910447551,10.484726455004804,11.215521863966586,10.55849228971249,5.716766507573396,148.16251295273716,148.16251295273716,0.0,164.62501439193016,0.0,148.16251295273716,164.62501439193016,0,0
+2017/04/03 08:00:00,164.33818183422136,0,989.3259919474317,0,0,0,0.0,0.0,11.86011032607099,0.0,83.2008179303116,0,39.380909295966944,0.14923007173190833,26.315139007685634,0,0,70.25741178984556,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1597.4208094502858,0.0,3724.614867603106,0.0,3247.005164382485,0.0,3021.637693218596,0.0,187.7303679388782,0.0,1575.6827584403563,0.0,3774.5837616593367,0.0,3354.5014568435886,0.0,2865.8803648698276,0.0,200.98703700524027,0,0,0,0,0,0,0,0,0.05267244861163901,0.0016665195583468791,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.414040746863375,-0.414040746863375,-0.49568530803586314,-0.49568530803586314,-0.5668601944272824,-0.5668601944272824,0.5953614799232393,0.5953614799232393,-0.18886385304282796,-0.18886385304282796,-0.39436399251476467,-0.4772786576421027,-0.5187641450488634,-0.391790763287619,-0.260696417808819,-0.4164939815865845,-0.5069353861743414,-0.5361538041863614,-0.3873715045325112,-0.2896826388091898,8.573354121059822,8.573354121059822,10.134528918244442,10.134528918244442,11.73030024286021,11.73030024286021,12.430880137378807,12.430880137378807,5.739536873152659,5.739536873152659,8.23991164482986,9.757500123338502,10.627940329683867,8.197530433855974,6.410989828817506,8.616089098258698,10.372172038476108,11.014943530142375,8.125405382073922,6.7433403176303415,164.33818183422136,164.33818183422136,0.0,182.5979798158015,0.0,164.33818183422136,182.5979798158015,0,0
+2017/04/03 09:00:00,181.3186623417466,0,974.0373784873004,0,0,0,0.01367228340929301,0.0,11.435487997441953,0.0,106.27511244621549,0,39.380909295966944,0.0665360918730729,20.714969024385596,0,0,39.18551101621221,562.2031660893747,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,52.6289303668412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2668.4586612412636,0.0,2130.384490345652,0.0,1234.5724784025679,0.0,5.757714007147111,0.0,0.0,0.0,2650.1914038862806,0.0,2052.972159342787,0.0,951.7363063857656,0.0,9.020255366195533,0,0,0,0,0,0,0,0,0.0518584715066437,0.0016407658901336742,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3150970733264685,-0.3150970733264685,-0.44756850229997636,-0.44756850229997636,-0.5317577004735224,-0.5317577004735224,0.9451458064786539,0.9451458064786539,-0.25296692991295205,-0.25296692991295205,-0.2893975876135313,-0.46939519771259325,-0.5079520023986579,-0.335991459639727,-0.2812901906289146,-0.27888843642433764,-0.48820045719560673,-0.5169707048175631,-0.31152087205738543,-0.3034531648533014,7.06392362620133,7.06392362620133,9.179754229186386,9.179754229186386,10.915872564272476,10.915872564272476,23.86788222527086,23.86788222527086,6.328341692190136,6.328341692190136,6.739899437838801,9.600491578952514,10.393916223352889,7.347976723103997,6.643470349652759,6.615436470025884,9.979450211180108,10.588772266435484,7.017160687301612,6.913654261956779,181.3186623417466,181.3186623417466,0.0,201.46518037971845,0.0,181.3186623417466,201.46518037971845,0,0
+2017/04/03 10:00:00,212.85271960346992,0,1052.7122306664326,0,0,0,0.40440857137926317,0.0,17.091304499026357,0.0,133.89528835348938,0,39.380909295966944,0.047527165432855394,18.601306515720804,0,0,30.114721085108243,561.2229269182506,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1601.9372479077595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2041.7779299687475,0.0,708.9035260528195,0.0,506.05607443282264,0.0,0.0,0.0,0.0,0.0,2051.936376031992,0.0,635.1023650096053,0.0,178.65333546113754,0.0,0.0,0,0,0,0,0,0,0,0,0.056047178911648204,0.0017732936726581022,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2908118613980302,-0.2908118613980302,-0.37399512803448826,-0.37399512803448826,-0.5211169254188062,-0.5211169254188062,1.0235816401889883,1.0235816401889883,-0.22962879193679625,-0.22962879193679625,-0.13301069745925984,-0.4739217638958924,-0.5021237466559566,-0.34295245313244677,-0.31242120064371676,-0.0891145661762191,-0.48362312725491213,-0.5032334419931985,-0.3153257676365614,-0.3245282945332515,6.757004988885029,6.757004988885029,7.9121774083804155,7.9121774083804155,10.67953522647484,10.67953522647484,27.123048263473976,27.123048263473976,6.0940327819457,6.0940327819457,5.366518216369968,9.69031600580304,10.2698630720365,7.446723562177283,7.0288825125727215,5.1644494606433256,9.885804298921755,10.293369527288505,7.066932491425575,7.189846129919445,212.85271960346992,212.85271960346992,0.0,236.50302178163324,0.0,212.85271960346992,236.50302178163324,0,0
+2017/04/03 11:00:00,228.64873993128444,0,1079.0764847295789,0,0,0,0.5495520678122476,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,0.0035790926427449895,20.722335497073193,0,0,2.261155682973734,562.205217614715,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2198.145295448494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,484.2111514942698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,390.245742967314,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05745083132614886,0.001817704256626459,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.15794210018742955,-0.15794210018742955,-0.40740828556941633,-0.40740828556941633,-0.5808332369497751,-0.5808332369497751,0.9998745635953527,0.9998745635953527,-0.12453923856208111,-0.12453923856208111,-0.04404979414934563,-0.4459259069805241,-0.4709838302641105,-0.28794794375022864,-0.2351217097762049,0.047414243284743765,-0.4411585161669887,-0.4366076420369829,-0.2553465260711839,-0.26396635976870353,5.516959128614062,5.516959128614062,8.459108558909435,8.459108558909435,12.069362330706312,12.069362330706312,26.114368770631472,26.114368770631472,5.321286960331051,5.321286960331051,5.040170424315534,9.148920606398192,9.631915546897858,6.722453738880773,6.1471223881705725,5.04654170505718,9.060087475743785,8.976200055295834,6.353517943355342,6.446710675383699,228.64873993128444,228.64873993128444,0.0,254.05415547920492,0.0,228.64873993128444,254.05415547920492,0,0
+2017/04/03 12:00:00,206.46408631614494,0,1040.5807067444723,0,0,0,0.5082098198464888,0.0,16.798297433460366,0.0,129.49988082968767,0,39.380909295966944,0.0003856146856611636,18.5604157212706,0,0,0.24537309378217417,561.2155747313444,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2024.7483536755813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0554012875921424,0.0017528581215323273,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.22600711213534705,-0.22600711213534705,-0.39695230916089985,-0.39695230916089985,-0.5579103354952277,-0.5579103354952277,0.9501831767414229,0.9501831767414229,-0.026717259219344907,-0.026717259219344907,-0.07966893617364663,-0.35160931858944183,-0.38414193262846746,-0.24869150744751747,-0.1082049280133319,-0.03211473565749865,-0.34422732907744147,-0.3889018212170179,-0.1975343505282876,-0.14244427290679162,6.059721237218724,6.059721237218724,8.282826944135593,8.282826944135593,11.517577507761004,11.517577507761004,24.069774510005345,24.069774510005345,5.014776737751234,5.014776737751234,5.131426290768843,7.5724004853842075,8.073224431964348,6.283705686717283,5.242494439450184,5.0213505786653485,7.46503166121353,8.150286647286435,5.809114318949696,5.420399287857194,206.46408631614494,206.46408631614494,0.0,229.40454035127215,0.0,206.46408631614494,229.40454035127215,0,0
+2017/04/03 13:00:00,203.44917141415723,0,984.2510264928643,0,0,0,0.6529231254762289,0.0,16.67307048032785,0.0,129.2730206906943,0,39.380909295966944,0.0002790978519098825,16.32497698968849,0,0,0.17782196988612653,540.4437981161765,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2566.7211676545403,0.0,53.97984164326917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05240225369177709,0.0016579707794238438,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.12074053424836678,-0.12074053424836678,-0.46598190427814606,-0.46598190427814606,-0.41716755399462413,-0.41716755399462413,0.9656348281294103,0.9656348281294103,0.07546084978019205,0.07546084978019205,-0.017061810014446743,-0.22295839505371212,-0.26262932664855687,-0.14208133394291544,-0.11551657654205874,-0.17246300902426856,-0.18067025389760108,-0.2281442527723476,-0.12372981036103776,-0.13717711598259763,5.301973628451208,5.301973628451208,9.533342759025302,9.533342759025302,8.627867761778717,8.627867761778717,24.69528358057643,24.69528358057643,5.1179057408690625,5.1179057408690625,5.006026105324622,6.031264254278085,6.432050531704959,5.41825782163167,5.276393462590107,5.6165139361467595,5.676672856850445,6.07990183261866,5.3171213872147405,5.389858717231633,203.44917141415723,203.44917141415723,0.0,226.05463490461915,0.0,203.44917141415723,226.05463490461915,0,0
+2017/04/03 14:00:00,187.36077724415193,0,926.7545851888278,0,0,0,0.4458262990217003,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,0.00013966599268682293,14.07316985041613,0,0,0.08906401234728684,518.526467282223,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1765.7986768753908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04934110056875281,0.0015611180284111003,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.019937967846112795,-0.019937967846112795,-0.3337233903927568,-0.3337233903927568,-0.43888349310115876,-0.43888349310115876,0.9353436150747201,0.9353436150747201,0.06990118939710367,0.06990118939710367,0.040997919002912865,-0.1925657876927687,-0.3341847841551447,-0.2514287961446867,-0.16437225400068745,-0.054737818917196666,-0.12442410678771673,-0.2793875349726648,-0.21030090396673898,-0.18734445057363872,5.008229062725221,5.008229062725221,7.316246950201105,7.316246950201105,9.018040164707614,9.018040164707614,23.47790046080084,23.47790046080084,5.101168434430846,5.101168434430846,5.034796633212338,5.768859120513397,7.3226840500774415,6.312194858020732,5.55995949042584,5.0620317696661346,5.3206927944256535,6.621242047591025,5.917283348105826,5.727667738541456,187.36077724415193,187.36077724415193,0.0,208.17864138239102,0.0,187.36077724415193,208.17864138239102,0,0
+2017/04/03 15:00:00,180.42732801588846,0,926.7087308841618,0,0,0,0.40317440037838154,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,6.387448749448097e-05,14.00711345545885,0,0,0.039856264982895157,518.5298207249215,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1590.9370238611737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0493386592516078,0.0015610407868383706,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.035753988668036515,-0.035753988668036515,-0.13949221896422181,-0.13949221896422181,-0.3959225850770251,-0.3959225850770251,0.9235438452296906,0.9235438452296906,0.11490604162913995,0.11490604162913995,-0.0018922682276207353,-0.11302472072243631,-0.3893275996830317,-0.3139610946461463,-0.23516527993926678,-0.07206585063018948,-0.052434458178104555,-0.3067644667173727,-0.2696863839935188,-0.2669265501311379,5.0264639554042105,5.0264639554042105,5.403140187994197,5.403140187994197,8.265719402574533,8.265719402574533,23.013519452247735,23.013519452247735,5.273477860454193,5.273477860454193,5.000074121858489,5.264591015085031,8.157227129077555,7.049010709103499,6.1475485592942505,5.107532784859188,5.0569204025840975,6.955804121857952,6.510278814064634,6.479436018410084,180.42732801588846,180.42732801588846,0.0,200.47480890654273,0.0,180.42732801588846,200.47480890654273,0,0
+2017/04/03 16:00:00,204.01920052930936,0,1000.210244399329,0,0,0,0.4462264496486863,0.0,16.735683873587277,0.0,131.64086955684016,0,39.380909295966944,7.447824523308925e-05,14.099449273793859,0,0,0.04752769277853674,538.7881340434767,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1766.2416783458357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053251934274216366,0.0016848540807759993,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.10153524099089675,-0.10153524099089675,-0.08948104264231536,-0.08948104264231536,-0.3502434802684193,-0.3502434802684193,0.9278531006658562,0.9278531006658562,0.1962253929741982,0.1962253929741982,-0.024107840639438553,-0.13168923891878365,-0.40499058064510185,-0.32961306046476235,-0.24865387641072126,-0.09752115470845517,-0.01320504183350221,-0.297599106429733,-0.3176756246080798,-0.2560909257694112,5.213508107903863,5.213508107903863,5.165805295057595,5.165805295057595,7.552360063754136,7.552360063754136,23.182465623118688,23.182465623118688,5.7984090440614295,5.7984090440614295,5.012031195827248,5.359266162232103,8.417931602792734,7.259300761451556,6.283316224861977,5.196953193102601,5.003609639249618,6.840271955146605,7.097977211024784,6.361442634720618,204.01920052930936,204.01920052930936,0.0,226.6880005881215,0.0,204.01920052930936,226.6880005881215,0,0
+2017/04/03 17:00:00,210.99542339910343,0,1003.464586786091,0,0,0,0.3791606867436715,0.0,17.011360440253497,0.0,133.89528835348938,0,39.380909295966944,0.00014155658380407242,18.612575464838958,0,0,0.09037554880747681,541.9996285742097,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1492.642813963497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053425197873400686,0.0016903360202794998,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.22205850424486206,-0.22205850424486206,-0.2237109372358172,-0.2237109372358172,-0.39230437195453904,-0.39230437195453904,0.9221984715957651,0.9221984715957651,0.19507605980416767,0.19507605980416767,-0.057074878068455216,-0.16456239803991493,-0.3359673431930984,-0.32877386852882584,-0.19715346774524609,-0.15230396336089372,-0.08593606246221805,-0.32396827945756435,-0.2867361268301481,-0.18779940376104715,6.022939074264599,6.022939074264599,6.03825232667036,6.03825232667036,8.205966983736687,8.205966983736687,22.96092593098767,22.96092593098767,5.789068314193187,5.789068314193187,5.0674425928585265,5.561257276577706,7.347638190738465,7.247762377244101,5.805991889460955,5.480672905163345,5.152923842685979,7.182263714419889,6.707938242227499,5.731211586411263,210.99542339910343,210.99542339910343,0.0,234.43935933233715,0.0,210.99542339910343,234.43935933233715,0,0
+2017/04/03 18:00:00,196.16600254928272,0,1026.7943971679572,0,0,0,0.1727523030064493,0.0,18.289526074268082,0.0,110.93442390708215,0,39.380909295966944,0.0019585099915988536,25.6704448577403,0,0,1.254759472738381,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,668.9090682939654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,442.8555564474225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054667294258677314,0.0017296350840970507,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.39547571468569176,-0.39547571468569176,-0.2760206276903806,-0.2760206276903806,-0.5122174167045016,-0.5122174167045016,0.9048118434869211,0.9048118434869211,0.06334206116602643,0.06334206116602643,-0.14875104070638792,-0.21422318434313475,-0.4063843206012685,-0.333443280892661,-0.12270543226239063,-0.20776572572922333,-0.1497146572764198,-0.370058737268817,-0.2925074018941364,-0.1775885477554631,8.258309334381735,8.258309334381735,6.582281341535577,6.582281341535577,10.485635351321747,10.485635351321747,22.287800332591402,22.287800332591402,5.083069829338882,5.083069829338882,5.458486916247523,5.95188598850558,8.441638427645586,7.312343432154904,5.311888656968151,5.895260508423618,5.464452201724114,7.850882768019673,6.777623783649659,5.653754411438058,196.16600254928272,196.16600254928272,0.0,217.96222505475856,0.0,196.16600254928272,217.96222505475856,0,0
+2017/04/03 19:00:00,193.66110395959566,0,991.080921875369,0,0,0,0.09289702724394379,0.0,23.68207837024315,0.0,101.68988858149199,0,39.380909295966944,0.0016006081112337274,27.097742475311204,0,0,1.0316366926945058,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,357.41900037165476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,338.8063837279422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05276588238089068,0.0016694757376772926,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49069332250212383,-0.49069332250212383,-0.3035473642904171,-0.3035473642904171,-0.5740019518269934,-0.5740019518269934,0.8889403616242046,0.8889403616242046,-0.030088078098897283,-0.030088078098897283,-0.1835534817231033,-0.2615252649527626,-0.4301529837597162,-0.35622658581014827,-0.1424329469396535,-0.18376600429809306,-0.20530983598247893,-0.39582385019349,-0.3049870522427998,-0.16332676693539086,10.030831234051519,10.030831234051519,6.914846925574935,6.914846925574935,11.902539859025879,11.902539859025879,21.684026386002245,21.684026386002245,5.0187407680477065,5.0187407680477065,5.698474229867543,6.420001572222247,8.858745336139293,7.640735536822476,5.420332377834612,5.700094943841648,5.874182948537822,8.26408143180646,6.933121586991433,5.552850677637551,193.66110395959566,193.66110395959566,0.0,215.17900439955073,0.0,193.66110395959566,215.17900439955073,0,0
+2017/04/03 20:00:00,208.856460992827,0,958.7020924607688,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.006350414612597867,23.00556653352961,0,0,4.143159790638372,599.6554075446891,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,939.2470816193791,0.0,239.38983845171487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,480.95576436994776,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051042009519642564,0.0016149336019859102,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5702690984257596,-0.5702690984257596,-0.3754133295001373,-0.3754133295001373,-0.6315269649855432,-0.6315269649855432,0.8555092134571209,0.8555092134571209,-0.08572494924997923,-0.08572494924997923,-0.20165644697726773,-0.29137531847260495,-0.4366709790434676,-0.38331195664223816,-0.16945694745551956,-0.23287623876575192,-0.25956101172886026,-0.42408996339567695,-0.3553939270327684,-0.20975006175837924,11.812237660728556,11.812237660728556,7.934422554793727,7.934422554793727,13.37059772488037,13.37059772488037,20.446028712591044,20.446028712591044,5.152173165016421,5.152173165016421,5.843294850389867,6.763843496125432,8.977361456786255,8.059886264300417,5.595182804435964,6.125266703548732,6.398691915722864,8.750046193353512,7.628345228629712,5.912475359666317,208.856460992827,208.856460992827,0.0,232.06273443647444,0.0,208.856460992827,232.06273443647444,0,0
+2017/04/03 21:00:00,196.39855460639464,0,932.3546432353382,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.019647587174841535,24.768967502138132,0,0,13.286063077752079,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,728.5767894214051,0.0,1020.9549128596384,0.0,1267.1138337640139,0.0,0.0,0.0,0.0,0.0,428.5286492696232,0.0,600.7506673872753,0.0,937.5206323610751,0.0,204.99714320791318,0,0,0,0,0,0,0,0,0.04963925180714935,0.0015705513257654098,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.508549953530488,-0.508549953530488,-0.45533713332840847,-0.45533713332840847,-0.5576892802686257,-0.5576892802686257,0.7709119456675768,0.7709119456675768,-0.1735761692856782,-0.1735761692856782,-0.2427160409452906,-0.3585047244346782,-0.45141811788477,-0.41582318168375904,-0.24633624058955886,-0.2888091048998002,-0.3457035579069803,-0.4473044658885208,-0.4130027981852665,-0.29045741615013665,10.4067265418836,10.4067265418836,9.327153835860614,9.327153835860614,11.512367363301976,11.512367363301976,17.521716376792526,17.521716376792526,5.624508608236752,5.624508608236752,6.222608173384401,7.674786011124766,9.252471116593725,8.60437824402193,6.259444592586007,6.7328066605008985,7.48631763207635,9.174790100578676,8.555350855270689,6.7527100646428835,196.39855460639464,196.39855460639464,0.0,218.22061622932736,0.0,196.39855460639464,218.22061622932736,0,0
+2017/04/03 22:00:00,139.93956729874142,0,767.7529509635036,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.06632107060072408,20.688313420364494,0,0,45.8427878648263,562.2035767922287,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1642.3442387527086,0.0,1506.6688815826606,0.0,2110.684456556297,0.0,148.28137871737044,0.0,0.0,0.0,1356.7651859702341,0.0,1146.1835767337875,0.0,1846.186897594308,0.0,16.196929739309848,0,0,0,0,0,0,0,0,0.04087573578902607,0.0012932797876265612,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5445868267208639,-0.5445868267208639,-0.5418471295910234,-0.5418471295910234,-0.6329804452450807,-0.6329804452450807,0.5619601582798945,0.5619601582798945,-0.4070671036222279,-0.4070671036222279,-0.286535529876935,-0.4010701618584137,-0.4743969706219472,-0.44662294458409424,-0.3032070684759357,-0.3130447474433035,-0.4075651147060836,-0.4771284239763754,-0.4545253671041174,-0.33289153154198914,11.20733416265503,11.20733416265503,11.144492915445724,11.144492915445724,13.409551039840679,13.409551039840679,11.613404513941475,11.613404513941475,8.453282578276728,8.453282578276728,6.705541413429813,8.351693099549507,9.699797162268453,9.161990726144367,6.910540194823994,7.0370208936630405,8.461788225931059,9.754482993134232,9.31163014139051,7.304664167285978,139.93956729874142,139.93956729874142,0.0,155.48840810971268,0.0,139.93956729874142,155.48840810971268,0,0
+2017/04/03 23:00:00,90.89617844841015,0,639.8401540841309,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.10062132536555107,11.852600861752038,0,0,70.40308901767017,516.2015362976446,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2106.57555336104,0.0,1410.6470331124165,0.0,2487.8794373904366,0.0,11.243428492938786,0.0,0.0,0.0,1988.6379874071304,0.0,1212.007191620627,0.0,2355.533939499033,0.0,0.0,0,0,0,0,0,0,0,0,0.03406556373730686,0.0010778106909916743,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.660673060080368,-0.660673060080368,-0.7147094654493954,-0.7147094654493954,-0.7322681492668368,-0.7322681492668368,0.34540024958371546,0.34540024958371546,-0.47490260935927897,-0.47490260935927897,-0.35542816038452524,-0.43256653520414307,-0.49612004397986287,-0.4733936879271772,-0.33811397596956866,-0.39565273758049146,-0.4489732045114738,-0.5054841366896303,-0.48868422980107085,-0.3634066136968008,14.169215078587996,14.169215078587996,15.747131937861155,15.747131937861155,16.286984957691203,16.286984957691203,7.481936621766437,7.481936621766437,9.70989617945321,9.70989617945321,7.628854053471201,8.902455063362183,10.143610563004827,9.67979144227128,7.377868083769698,8.261243731781278,9.206214335010202,10.341208996103191,9.989400379359068,7.748801986887088,90.89617844841015,90.89617844841015,0.0,100.99575383156683,0.0,90.89617844841015,100.99575383156683,0,0
+2017/04/04 00:00:00,39.338598763948866,0,545.5404412592204,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5786257893844567e-09,9.54127776494706,0,0,0.0,492.3049124904042,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029044977178082677,0.0009189628318953396,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.501909468795159,-0.501909468795159,-0.564874682631692,-0.564874682631692,-0.6181078905252015,-0.6181078905252015,0.39345283227143524,0.39345283227143524,-0.11431831750394097,-0.11431831750394097,-0.26846490650865495,-0.37764780819121063,-0.5677965557086203,-0.4686433966013801,-0.10734129559171074,-0.3512361579385919,-0.39943796191560726,-0.5783001610985488,-0.4912922333664518,-0.1756457407603186,10.26533019735001,10.26533019735001,11.682808191300907,11.682808191300907,13.015295697276287,13.015295697276287,8.224872421138897,8.224872421138897,5.270685820117706,5.270685820117706,6.496588496369739,7.969645485767103,11.752756684185385,9.585658483237424,5.238637003439635,7.566917364029479,8.324309731693873,12.007267495353275,10.04321549869428,5.639509602664731,39.338598763948866,39.338598763948866,0.0,43.709554182165405,0.0,39.338598763948866,43.709554182165405,0,0
+2017/04/04 01:00:00,23.722231429379498,0,42.089099555809135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.52513600570171,0,0,0.0,6.598747043265,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002240854836027913,7.0899085007252e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48901371908811353,-0.48901371908811353,-0.5418684896337462,-0.5418684896337462,-0.6230157089927942,-0.6230157089927942,0.34220885093328923,0.34220885093328923,0.011771690075989822,0.011771690075989822,-0.3015640000016346,-0.4160036206773166,-0.6191447579226852,-0.5154911574400409,-0.03013204712463999,-0.3977948564676036,-0.443786864088844,-0.6484944839210703,-0.5497139853009188,-0.13246276575495353,9.996183053584133,9.996183053584133,11.144981599097179,11.144981599097179,13.144335642840147,13.144335642840147,7.43607681296956,7.43607681296956,5.002868541769715,5.002868541769715,6.889814685536734,8.60752645974766,13.042470685373956,10.556564261521913,5.018795583712219,8.296858516632767,9.108941929516192,13.831036506020226,11.325811316385483,5.363502398810354,23.722231429379498,23.722231429379498,0.0,26.358034921532774,0.0,23.722231429379498,26.358034921532774,0,0
+2017/04/04 02:00:00,28.34440908025735,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250459937844546,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47926789229696887,-0.47926789229696887,-0.5277366336793805,-0.5277366336793805,-0.6171166161307744,-0.6171166161307744,0.304844316171525,0.304844316171525,0.08233968577971953,0.08233968577971953,-0.32788808859435875,-0.4439285250294761,-0.656854810225197,-0.5482209764061176,-0.006055578831928733,-0.4311052925033051,-0.4761371201122521,-0.6933288000511781,-0.588456756267332,-0.13031289685052844,9.797541536992583,9.797541536992583,10.825986322443768,10.825986322443768,12.989359267374823,12.989359267374823,6.931305853139747,6.931305853139747,5.140388328261878,5.140388328261878,7.235615845658231,9.111583487897889,14.062496991950042,11.291193642157182,5.000759089309881,8.875961898966395,9.734599121323754,15.107708502731128,12.257922248056872,5.351790125188174,28.34440908025735,28.34440908025735,0.0,31.49378786695261,0.0,28.34440908025735,31.49378786695261,0,0
+2017/04/04 03:00:00,23.722207737325235,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251123136474448,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4611516911312724,-0.4611516911312724,-0.5075104460547787,-0.5075104460547787,-0.6022085653886282,-0.6022085653886282,0.2864436479896958,0.2864436479896958,0.11755088145469537,0.11755088145469537,-0.31719168050953905,-0.4325213238898733,-0.6559466126624391,-0.5388502744168541,0.017237408896436567,-0.4404862682232357,-0.483089584554987,-0.7087102821891471,-0.5983703125337302,-0.1128928083097877,9.439176953957912,9.439176953957912,10.384466380890728,10.384466380890728,12.604437509083908,12.604437509083908,6.704444131659955,6.704444131659955,5.286220034635619,5.286220034635619,7.091564543118579,8.901633982041957,14.037206346499843,11.076125607687061,5.006150785753235,9.0476397397712,9.874947586924009,15.56572624749765,12.506896293503644,5.263973413146346,23.722207737325235,23.722207737325235,0.0,26.35800859702804,0.0,23.722207737325235,26.35800859702804,0,0
+2017/04/04 04:00:00,40.470494700417305,0,195.1778418453301,0,0,0,0.0,0.00040115774155430014,4.633261998087618,9.319298099999997,25.555573451546493,0,0.24325201972261692,0.19358793564074678,0.5251200376782658,0,0,106.4519605639698,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,669.0351077569514,0.0,61.80713489611857,0.0,0.0,0.0,0.0,0.0,0.0,0.4011577415543001,911.3587305816527,0.0,206.47887083668297,0.0,0.0,0,0,0,0,0,0,0,0,0.010391412869374016,0.00032877705977471164,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.352767225212199,-0.352767225212199,-0.39764058900672467,-0.39764058900672467,-0.4903930620587169,-0.4903930620587169,0.37564285923907964,0.37564285923907964,0.2552697434463136,0.2552697434463136,-0.2745663333340883,-0.39137116475020384,-0.5300059397977578,-0.48320500183705667,0.055013115967260454,-0.4199227346545705,-0.4632522357479116,-0.5667679881108275,-0.5299272000485075,-0.06725945749748119,7.589452159709126,7.589452159709126,8.29428711419267,8.29428711419267,10.024628284525349,10.024628284525349,7.938030901728084,7.938030901728084,6.3527018609714645,6.3527018609714645,6.565600551428901,8.190646465291664,10.876627939170504,9.877295096616976,5.062657385623027,8.676249697481396,9.480003933745891,11.728090946313827,10.874867056327162,5.093664622671497,40.470494700417305,40.470494700417305,0.0,44.967216333797005,0.0,40.470494700417305,44.967216333797005,0,0
+2017/04/04 05:00:00,73.36361844348916,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.0,0.0,0.577575413533281,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.08117114526216729,-0.08117114526216729,-0.1282987450782144,-0.1282987450782144,-0.21198186284816037,-0.21198186284816037,0.5958900486836628,0.5958900486836628,0.6344600760310309,0.6344600760310309,-0.2345449452473658,-0.34940487689601796,-0.5481991298714889,-0.4525949762327433,0.17921987307320586,-0.3695827278240779,-0.4132000961642929,-0.5886721192557021,-0.51516498656121,0.0669785102094474,5.136430741764741,5.136430741764741,5.340991615650736,5.340991615650736,5.932034012231284,5.932034012231284,12.444205626913984,12.444205626913984,13.449299325259815,13.449299325259815,6.141488411879251,7.540094872653043,11.290687814360751,9.274828487637777,5.665837087571873,7.843515470218023,8.558769444102026,12.26328566054542,10.549476645271284,5.092883613493385,73.36361844348916,73.36361844348916,0.0,81.51513160387684,0.0,73.36361844348916,81.51513160387684,0,0
+2017/04/04 06:00:00,100.28783912110475,0,711.1743210344532,0,0,0,0.7206181093501184,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.19667095296514853,2.5203383564839494e-09,0.524846407876166,0,0,0.0,480.4870297029164,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2351.262474497072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03786344762343504,0.001197973089805321,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.06718024225299175,0.06718024225299175,0.01909590015153512,0.01909590015153512,-0.06585314879828034,-0.06585314879828034,0.7163703118447166,0.7163703118447166,0.8420065733539503,0.8420065733539503,-0.18371160164496225,-0.2981982945136115,-0.504515211182953,-0.4006686486982777,0.2819874617336393,-0.30966524121541267,-0.35434030365165753,-0.5449581942287864,-0.45739094863647484,0.17185527922217306,5.0934440799398715,5.0934440799398715,5.007548631402869,5.007548631402869,5.089788005800145,5.089788005800145,15.79762741370459,15.79762741370459,19.959119106505426,19.959119106505426,5.699679885293548,6.847716394040617,10.320587232532162,8.34494635494029,6.651654648306689,6.99310955457544,7.61270916606469,11.215877362341388,9.366556331894287,5.612171061101094,100.28783912110475,100.28783912110475,0.0,111.43093235678306,0.0,100.28783912110475,111.43093235678306,0,0
+2017/04/04 07:00:00,149.19121522924166,0,895.4660529139618,0,0,0,0.0,0.0,9.923278249553311,0.0,69.33401494192633,0,39.380909295966944,0.05896706460725151,27.06207047473359,0,0,29.63300152519193,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,319.6730114033637,0.0,2065.772140471305,0.0,1596.507905978515,0.0,2176.5331721403195,0.0,990.9280217417464,0.0,278.23788235828727,0.0,1869.0285842760584,0.0,1478.332573202786,0.0,1988.6223003178563,0.0,1668.3443331344477,0,0,0,0,0,0,0,0,0.04767527593481449,0.0015084124981688477,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1532430251989486,-0.1532430251989486,-0.1884019568890683,-0.1884019568890683,-0.29139239364294955,-0.29139239364294955,0.5353786922754472,0.5353786922754472,0.5739799596636362,0.5739799596636362,-0.27032223014031415,-0.3428815210527444,-0.46079282575203784,-0.40289125512074864,0.05761574259197066,-0.35167507828717026,-0.38271132179572787,-0.4867709487508522,-0.442429850988323,-0.03670356161216889,5.486624656362068,5.486624656362068,5.735918470386082,5.735918470386082,6.764050941600971,6.764050941600971,10.997414761121888,10.997414761121888,11.902006071991082,11.902006071991082,6.517430252609429,7.445706956924738,9.43222091551327,8.382380067927542,5.068727066472064,7.573367354442027,8.050252079752013,9.950107312219075,9.083681352349785,5.027888394819399,149.19121522924166,149.19121522924166,0.0,165.76801692137963,0.0,149.19121522924166,165.76801692137963,0,0
+2017/04/04 08:00:00,163.66260284122362,0,947.9412477328907,0,0,0,0.0,0.0,11.541431746919748,0.0,83.2008179303116,0,39.380909295966944,0.04782217606566409,26.059646489505358,0,0,28.872667575304433,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1939.8380449923275,0.0,1563.7066096906144,0.0,1953.920325811247,0.0,564.826201574278,0.0,7.943584650999361,0.0,1901.0656266417568,0.0,1372.1934951066453,0.0,1839.0517183115874,0.0,683.1216879994523,0,0,0,0,0,0,0,0,0.050469094175700904,0.0015968069598585337,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3354308757781473,-0.3354308757781473,-0.3599150830883374,-0.3599150830883374,-0.4442710875710909,-0.4442710875710909,0.5807428421269873,0.5807428421269873,0.030358785934026255,0.030358785934026255,-0.26941477645008666,-0.37408949993284657,-0.4375522881025928,-0.38057732508819586,-0.1758251692773577,-0.34921872184341646,-0.3992431746099294,-0.45373499720047294,-0.39562727211750554,-0.22212773330954955,7.3401139638937,7.3401139638937,7.6959768414570675,7.6959768414570675,9.11797483358258,9.11797483358258,12.067141636753703,12.067141636753703,5.019079527212952,5.019079527212952,6.507229203009032,7.913655010755505,8.993539774756428,8.016147342578279,5.640818584083732,7.537376274593896,8.321049403678586,9.296542863765396,8.26082152426973,6.023578329507728,163.66260284122362,163.66260284122362,0.0,181.84733649024847,0.0,163.66260284122362,181.84733649024847,0,0
+2017/04/04 09:00:00,181.11564879332502,0,978.6649851305061,0,0,0,0.0,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,0.0662975903359812,20.76294261752777,0,0,43.874710698572926,562.1415730502198,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2021.871498829399,0.0,1521.1272634916897,0.0,2046.4806475753371,0.0,193.57701072530398,0.0,0.0,0.0,1943.6057537084698,0.0,1252.2717808601378,0.0,1873.6139401018117,0.0,95.37750232925127,0,0,0,0,0,0,0,0,0.05210484871202707,0.0016485610931729249,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2680187419517885,-0.2680187419517885,-0.4002616038643945,-0.4002616038643945,-0.47500029668125054,-0.47500029668125054,0.6043732798060303,0.6043732798060303,-0.12965821666391136,-0.12965821666391136,-0.27551881734584033,-0.3780938735098627,-0.42517828150715553,-0.3897235417586704,-0.21546651442895942,-0.3427574294991085,-0.3969777982747926,-0.43507912046497943,-0.40111121315210924,-0.24661506807550854,6.491603555854866,6.491603555854866,8.33811370084591,8.33811370084591,9.711848538628033,9.711848538628033,12.659731219369078,12.659731219369078,5.348261671022044,5.348261671022044,6.576515490599206,7.976702491051753,8.76944163845917,8.163688208369791,5.962989211867452,7.4439289792802725,8.28325098811652,8.948224034918411,8.352383285280382,6.262304568936415,181.11564879332502,181.11564879332502,0.0,201.23960977036114,0.0,181.11564879332502,201.23960977036114,0,0
+2017/04/04 10:00:00,212.1546441284183,0,1079.331471723973,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.08182441737829926,18.566349425668975,0,0,56.80145794798667,561.1554311129128,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2751.457957686671,0.0,1543.7952375618952,0.0,2773.8651559974974,0.0,49.58606182143171,0.0,0.0,0.0,2544.4657156464455,0.0,1132.5566614434767,0.0,2481.0849431885354,0.0,22.164662237179286,0,0,0,0,0,0,0,0,0.05746440702260097,0.001818133782199163,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2867578358696557,-0.2867578358696557,-0.36479579895540054,-0.36479579895540054,-0.3636861950950721,-0.3636861950950721,0.6511101577877844,0.6511101577877844,-0.078182641849163,-0.078182641849163,-0.30561923437792093,-0.3886792661393592,-0.4243774302165002,-0.3982310808497886,-0.23423845121133477,-0.3504135294866272,-0.4053955954623592,-0.43002326615897213,-0.4078987806144719,-0.25963673713333607,6.708197734120887,6.708197734120887,7.76996408268019,7.76996408268019,7.753054370358427,7.753054370358427,13.903127296095676,13.903127296095676,5.126566961447168,5.126566961447168,6.941173885942177,8.14666192910488,8.755164340780908,8.304135218180619,6.138500184101687,7.5548508061122135,8.424812132171937,8.856403215192287,8.467492925188168,6.399510431114777,212.1546441284183,212.1546441284183,0.0,235.72738236490923,0.0,212.1546441284183,235.72738236490923,0,0
+2017/04/04 11:00:00,228.1407223725494,0,1097.4311302089382,0,0,0,0.0,0.0,16.73568395689411,0.0,147.76209134187457,0,39.380909295966944,0.028161269264291043,20.801901306095115,0,0,20.673623585703627,562.1473951913446,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1375.5100652640126,0.0,1000.7586469733674,0.0,1383.5349392201601,0.0,0.0,0.0,0.0,0.0,1166.7132975644527,0.0,616.0400637753401,0.0,1086.601362336412,0.0,0.0,0,0,0,0,0,0,0,0,0.058428046246878224,0.0018486226555433462,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2733227814713632,-0.2733227814713632,-0.32728614361010616,-0.32728614361010616,-0.4212635926069629,-0.4212635926069629,0.8077800813674505,0.8077800813674505,0.0016217197357617562,0.0016217197357617562,-0.23130180662639463,-0.3629725777352459,-0.3933233524144343,-0.36998577077192824,-0.1993947359187422,-0.2523041407471485,-0.3679638117355023,-0.3848308119801198,-0.36781175580046555,-0.24633614656664213,6.5514076917713595,6.5514076917713595,7.227380482175391,7.227380482175391,8.699913375821012,8.699913375821012,18.75906314182727,18.75906314182727,5.000054441801879,5.000054441801879,6.11006857340827,7.742206974130298,8.222738161886369,7.849752823398745,5.824452700838677,6.321371747312583,7.818531455012291,8.08431744032265,7.816190582262195,6.2594436287295,228.1407223725494,228.1407223725494,0.0,253.48969152505487,0.0,228.1407223725494,253.48969152505487,0,0
+2017/04/04 12:00:00,207.27659161743208,0,1059.1666300444292,0,0,0,0.0,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,0.024403669907849708,18.507508693002297,0,0,18.888010575165296,561.1588605499177,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.37672155259426,0.0,978.5442525254996,0.0,1732.267471775354,0.0,1015.0510101978009,0.0,0.0,0.0,22.593882220154732,0.0,691.70627669333,0.0,1204.7816118157987,0.0,648.3781979005906,0.0,0.0,0,0,0,0,0,0,0,0,0.05639081591534939,0.0017841661079204569,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44549528892734425,-0.44549528892734425,-0.34638148611789765,-0.34638148611789765,-0.47797075387101234,-0.47797075387101234,0.8362027981709232,0.8362027981709232,0.03547570180390893,0.03547570180390893,-0.27103678489681815,-0.35633262327318904,-0.38801818019313294,-0.36698445822041026,-0.12151878220369962,-0.28534630776639347,-0.36043223272312186,-0.3789869058959559,-0.3657551637320995,-0.1751017837512003,9.140856547034119,9.140856547034119,7.496123821644602,7.496123821644602,9.771412005778373,9.771412005778373,19.752168132259243,19.752168132259243,5.026053577430787,5.026053577430787,6.525487263748872,7.642315536502807,8.135907409820277,7.803471756322622,5.30588153654918,6.691366897644741,7.703768307060045,7.990856284105703,7.7846265238114825,5.635549493663561,207.27659161743208,207.27659161743208,0.0,230.30732401936896,0.0,207.27659161743208,230.30732401936896,0,0
+2017/04/04 13:00:00,205.3702091944233,0,1002.9486667437591,0,0,0,0.0,0.0,16.965687027080573,0.0,129.2730206906943,0,39.380909295966944,0.023351763655817512,16.29526521457137,0,0,18.94680588553285,540.3724544514247,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1073.56554211394,0.0,1362.0340869640943,0.0,1125.2410802443724,0.0,0.0,0.0,0.0,0.0,827.996955392352,0.0,892.4123992360999,0.0,807.4288779734222,0.0,0.0,0,0,0,0,0,0,0,0,0.05339772990820151,0.0016894669530073492,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5185582110056646,-0.5185582110056646,-0.34012746693259477,-0.34012746693259477,-0.5121770389902347,-0.5121770389902347,0.8393854504470343,0.8393854504470343,0.013398483977909858,0.013398483977909858,-0.2738346404031991,-0.3561433618154969,-0.3860580413193492,-0.3675976570703768,-0.10980085010126997,-0.29190983680396354,-0.36208152660169807,-0.37919164531966354,-0.3688796269927855,-0.1737536644322835,10.623435734674672,10.623435734674672,7.406400883121634,7.406400883121634,10.48476342124576,10.48476342124576,19.865480918425902,19.865480918425902,5.0037161707480635,5.0037161707480635,6.557241728092237,7.639495801950645,8.104129700755308,7.812896242881223,5.249704173831361,6.770343176032412,7.728692935360826,7.994106023368516,7.832651102478394,5.625788150131186,205.3702091944233,205.3702091944233,0.0,228.189121327137,0.0,205.3702091944233,228.189121327137,0,0
+2017/04/04 14:00:00,189.6199795036316,0,976.0790169766873,0,0,0,0.0,0.0,17.133076708931206,0.0,115.5196477718057,0,39.380909295966944,0.059009849546679365,14.09536067492685,0,0,49.52488526738065,518.4150778150492,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,176.8008142163509,0.0,2291.402882755126,0.0,1692.1773591191245,0.0,2341.554001186317,0.0,485.64702999892734,0.0,11.358544386443608,0.0,1965.5302633121432,0.0,1102.9585356157536,0.0,1948.3473889477307,0.0,203.60092632924358,0,0,0,0,0,0,0,0,0.051967169852073905,0.001644205030014089,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4388773357542065,-0.4388773357542065,-0.39709413701659074,-0.39709413701659074,-0.48763595641773533,-0.48763595641773533,0.7585409888276802,0.7585409888276802,-0.05510495911472025,-0.05510495911472025,-0.31438706245170583,-0.3816137306941393,-0.40441070385033034,-0.3926397941414753,-0.20218079730300834,-0.3345937852012177,-0.3910962790334674,-0.40051851457201504,-0.39775059793328477,-0.2407039585312521,9.017926665493889,9.017926665493889,8.28518678458859,8.28518678458859,9.967852409778956,9.967852409778956,17.119489398421422,17.119489398421422,5.062866798885821,5.062866798885821,7.054596331134761,8.032686507432018,8.408092682568068,8.211482724146137,5.847693726063881,7.328397752909183,8.186140746977685,8.342425378541066,8.296120690486873,6.202372759431597,189.6199795036316,189.6199795036316,0.0,210.68886611514623,0.0,189.6199795036316,210.68886611514623,0,0
+2017/04/04 15:00:00,182.86497644407825,0,1023.8834189684256,0,0,0,0.0,0.0,17.133076708931206,0.0,108.75639138185811,0,39.380909295966944,0.11918692485520829,14.043436930012549,0,0,97.3391326868877,518.4052323872804,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,555.1057818807801,0.0,3238.0888995516207,0.0,1972.8165745504439,0.0,3292.429643264747,0.0,35.25022877064155,0.0,309.46338958425025,0.0,2877.230326829725,0.0,1331.7539835732553,0.0,2867.8891216988486,0.0,9.763756476866106,0,0,0,0,0,0,0,0,0.0545123116231533,0.0017247315415408794,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44808358993924896,-0.44808358993924896,-0.46584056293006326,-0.46584056293006326,-0.4774946488395577,-0.4774946488395577,0.6982862328943694,0.6982862328943694,-0.09104286074877559,-0.09104286074877559,-0.33951669839058674,-0.39847906133576844,-0.41720855192881084,-0.41002451658716627,-0.24222922864634275,-0.3627730135879392,-0.41107120460301516,-0.4161116764759329,-0.4186887284291174,-0.26812400228518335,9.18944698237759,9.18944698237759,9.530573012002563,9.530573012002563,9.7618395623294,9.7618395623294,15.254211647271845,15.254211647271845,5.171645951143063,5.171645951143063,7.397727602299696,8.308275433606681,8.628585314621631,8.503948660787017,6.217696733217608,7.739177365266414,8.521970156104743,8.60941243517037,8.654539877750281,6.492778860587208,182.86497644407825,182.86497644407825,0.0,203.18330716008694,0.0,182.86497644407825,203.18330716008694,0,0
+2017/04/04 16:00:00,205.64374361300176,0,1054.054452117247,0,0,0,0.0,0.0,17.028300508570425,0.0,131.64086955684016,0,39.380909295966944,0.08772191669698269,14.073967132472887,0,0,74.30027029127896,518.3795991628942,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,449.4406260956445,0.0,3012.040655549353,0.0,1758.204622759569,0.0,3083.0575210114403,0.0,11.713969913702826,0.0,336.1824725418789,0.0,2744.088597467706,0.0,1259.0754772669607,0.0,2754.7479024303693,0.0,1.292044883254192,0,0,0,0,0,0,0,0,0.05611863977588193,0.001775554644590126,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3499022463260889,-0.3499022463260889,-0.40934938140982485,-0.40934938140982485,-0.42406795214636767,-0.42406795214636767,0.7162072067642719,0.7162072067642719,-0.054009002531074116,-0.054009002531074116,-0.3506572478867598,-0.406734122055055,-0.42238572801405305,-0.4199414967762709,-0.24997780034882924,-0.3744638195250083,-0.4199495708012472,-0.4219701035601198,-0.42990105318490435,-0.2734773813534609,7.547365657280565,7.547365657280565,8.49234932318383,8.49234932318383,8.749654444435151,8.749654444435151,15.792663192804469,15.792663192804469,5.0603906864384385,5.0603906864384385,7.558422739187748,8.447601432221546,8.719776266209138,8.676580282604604,6.297053945646539,7.919519559753795,8.676722550080655,8.712413011380065,8.854197255141372,6.553168617478235,205.64374361300176,205.64374361300176,0.0,228.49304845889083,0.0,205.64374361300176,228.49304845889083,0,0
+2017/04/04 17:00:00,212.90612842660906,0,1118.2514699499884,0,0,0,0.0,0.0,17.48022705469545,0.0,133.89528835348938,0,39.380909295966944,0.11375797929360426,18.603970540709355,0,0,95.73081544821754,561.146071838697,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1781.5998555748909,0.0,3080.1527984973036,0.0,2987.325285935288,0.0,3122.9526635313814,0.0,0.0,0.0,1436.7503767725916,0.0,2667.025505925775,0.0,2267.784819703109,0.0,2648.804851904648,0.0,0.0,0,0,0,0,0,0,0,0,0.05953653655645618,0.001883694516256908,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3577487220326976,-0.3577487220326976,-0.4537003534268933,-0.4537003534268933,-0.32965703811341235,-0.32965703811341235,0.6829869575953351,0.6829869575953351,-0.02072009939667161,-0.02072009939667161,-0.36528572055308267,-0.41716381895801613,-0.43117357398488315,-0.4278784765281935,-0.24507076715122933,-0.3902122898291323,-0.43223252473143264,-0.43240788470390723,-0.43917288434623436,-0.2651488835822892,7.6634618368440925,7.6634618368440925,9.295882167843928,9.295882167843928,7.259906251556544,7.259906251556544,14.805502540538015,14.805502540538015,5.00888736218397,5.00888736218397,7.777446894278469,8.627802394111399,8.877197839432739,8.817782583175301,6.246505494773544,8.171672956999402,8.896391180108765,8.899574202771078,9.023376390349412,6.459739392818179,212.90612842660906,212.90612842660906,0.0,236.5623649184545,0.0,212.90612842660906,236.5623649184545,0,0
+2017/04/04 18:00:00,197.4390405099095,0,1090.0077090364723,0,0,0,0.0,0.0,18.477756761070932,0.0,110.93442390708215,0,39.380909295966944,0.07115669719337543,25.142818646141787,0,0,64.4680713412536,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1878.4111880819976,0.0,1993.8150677288595,0.0,3013.0245805478244,0.0,2075.217301080734,0.0,0.0,0.0,1789.3106916180159,0.0,1769.8206831651382,0.0,2562.2118787061254,0.0,1778.6436396908546,0.0,0.0,0,0,0,0,0,0,0,0,0.05803281780507858,0.0018361179031417551,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3591999821698735,-0.3591999821698735,-0.43453045119585604,-0.43453045119585604,-0.48854714912171926,-0.48854714912171926,0.6919451744669854,0.6919451744669854,-0.014516896330126487,-0.014516896330126487,-0.3644845333239423,-0.4029770912445388,-0.4239878323718911,-0.418248047150161,-0.21619949123085566,-0.38918824750220454,-0.4175292869562559,-0.4253312327038219,-0.4289998817208161,-0.2474081358819435,7.6852217685944595,7.6852217685944595,8.938206399672936,8.938206399672936,9.986579897038752,9.986579897038752,15.067008792343586,15.067008792343586,5.004362470445727,5.004362470445727,7.765215283493987,8.38382998187403,8.748228674761734,8.646802811218421,5.96956519959636,8.154954739954249,8.634201360520848,8.772171528514974,8.83795078660566,6.270457048336155,197.4390405099095,197.4390405099095,0.0,219.3767116776772,0.0,197.4390405099095,219.3767116776772,0,0
+2017/04/04 19:00:00,195.72759516510575,0,1082.7220725176178,0,0,0,0.0,0.0,24.02992460262281,0.0,101.68988858149199,0,39.380909295966944,0.09715500725848088,27.097742475311204,0,0,92.67278733494344,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2456.5443931569284,0.0,2415.1662234555943,0.0,3544.4688036877064,0.0,2425.311804984025,0.0,91.78817461826789,0.0,2246.4755682592177,0.0,2071.0279541034206,0.0,2958.3930679515993,0.0,2055.4385717702826,0.0,0.0,0,0,0,0,0,0,0,0,0.05764492512029523,0.0018238452489787154,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.31979819576189933,-0.31979819576189933,-0.40055237828902257,-0.40055237828902257,-0.6054160086786994,-0.6054160086786994,0.6286677875529294,0.6286677875529294,-0.045475213473611616,-0.045475213473611616,-0.37443702254545813,-0.41351416988868706,-0.43115999057831084,-0.421098006474151,-0.22287370876963675,-0.3999724981030136,-0.4247063148431711,-0.43243569744098215,-0.43259270185164006,-0.24764936413651248,7.126220274078349,7.126220274078349,8.342993916737768,8.342993916737768,12.686438418338582,12.686438418338582,13.294239158296605,13.294239158296605,5.042812504017519,5.042812504017519,7.919099526853103,8.564214851071085,8.876951954743845,8.696986912232504,6.030479347318504,8.333265077291301,8.761024251619887,8.90007916319469,8.902930315159253,6.272942038931262,195.72759516510575,195.72759516510575,0.0,217.47510573900638,0.0,195.72759516510575,217.47510573900638,0,0
+2017/04/04 20:00:00,210.93080432904486,0,1021.3982001354291,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.08571095289009799,22.94136420999742,0,0,85.12365436547043,581.3710206445174,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2284.8457772807233,0.0,2307.11667172312,0.0,3373.098524483583,0.0,2318.7160821083485,0.0,0.0,0.0,2081.402246982344,0.0,2005.316123410968,0.0,2838.054071553332,0.0,1969.8859159045114,0.0,0.0,0,0,0,0,0,0,0,0,0.0543799967316664,0.0017205451906053214,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4130875965191131,-0.4130875965191131,-0.4513573064680815,-0.4513573064680815,-0.5498688952595179,-0.5498688952595179,0.5667152454960498,0.5667152454960498,-0.09268552682933004,-0.09268552682933004,-0.37824766097446333,-0.4153113064160309,-0.43383344316991224,-0.42363504675115626,-0.218742981497381,-0.4035207394204682,-0.43087966270959166,-0.4384773309859363,-0.4364168232602124,-0.24865827520682174,8.556819954529033,8.556819954529033,9.251317470540243,9.251317470540243,11.329408671142787,11.329408671142787,11.726827380072365,11.726827380072365,5.177898156568261,5.177898156568261,7.979137463903271,8.595454876319053,8.925499030967956,8.741953961781988,5.992558972858731,8.393020420913928,8.871879272339527,9.010556813473727,8.972702080732049,6.283361747064703,210.93080432904486,210.93080432904486,0.0,234.36756036560539,0.0,210.93080432904486,234.36756036560539,0,0
+2017/04/04 21:00:00,198.02752077921605,0,1041.2131877371098,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.12238075466599037,26.009202573930516,0,0,122.14460757952372,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2004.203428978134,0.0,3252.2400621994707,0.0,3027.462199686983,0.0,3259.0031767257024,0.0,65.33991422228749,0.0,1806.3221736432708,0.0,2975.0075561352623,0.0,2519.329065137675,0.0,2927.9239197811767,0.0,0.0,0,0,0,0,0,0,0,0,0.0554349613486733,0.0017539235357164208,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46149327233420967,-0.46149327233420967,-0.5124606141662476,-0.5124606141662476,-0.5586514020626748,-0.5586514020626748,0.48428641002410155,0.48428641002410155,-0.180136943373522,-0.180136943373522,-0.3973400817460538,-0.4388492385067808,-0.4514113754265361,-0.4460587871908234,-0.246051605325278,-0.4253990454320957,-0.4584478010505422,-0.46017025811907913,-0.46244970770086424,-0.27335043395323455,9.445803117592831,9.445803117592831,10.490888531288888,10.490888531288888,11.535059478571299,11.535059478571299,9.899318134806322,9.899318134806322,5.672678294810396,5.672678294810396,8.289281040743433,9.017408765787849,9.252343198389596,9.151410625328566,6.256528414558957,8.77338217882091,9.386902828188084,9.420166580914298,9.464383263193668,6.551722585475417,198.02752077921605,198.02752077921605,0.0,220.0305786435734,0.0,198.02752077921605,220.0305786435734,0,0
+2017/04/04 22:00:00,140.1747628772096,0,921.9738286806657,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.2237373589064669,20.766092710526895,0,0,200.12809759811284,562.1391447761043,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2515.4048081317933,0.0,4168.892368280367,0.0,3398.182051001897,0.0,4165.165739472097,0.0,3.909907994959893,0.0,2317.4394265534966,0.0,3895.556459060015,0.0,2926.556204692575,0.0,3833.806468002851,0.0,0.0,0,0,0,0,0,0,0,0,0.049086569551120035,0.0015530648444359544,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6091833651057957,-0.6091833651057957,-0.6438709740860528,-0.6438709740860528,-0.668743498635887,-0.668743498635887,0.2629901341853414,0.2629901341853414,-0.4110382175811486,-0.4110382175811486,-0.4245592704952281,-0.4692574561778877,-0.4751339114924615,-0.4757975725800583,-0.27670244695623253,-0.4586977487604734,-0.49631811659905106,-0.4896386967950448,-0.4994952066439678,-0.3030487001045192,12.783324182545869,12.783324182545869,13.704333154408417,13.704333154408417,14.396857811315215,14.396857811315215,6.435999257712297,6.435999257712297,8.52140148132618,8.52140148132618,8.75840371137285,9.597772104963155,9.714519603688416,9.727798118258704,6.590132524784082,9.391721846139177,10.147751012189929,10.00906135667124,10.214395555672823,6.908537579430799,140.1747628772096,140.1747628772096,0.0,155.74973653023287,0.0,140.1747628772096,155.74973653023287,0,0
+2017/04/04 23:00:00,91.07070731446836,0,791.3997854009244,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.29148080319501013,11.836270249980807,0,0,222.09259073179913,516.0716659003091,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,329.2112691266026,0.0,183.6242082753389,0.0,942.2562315492212,0.0,0.0,0.0,0.0,0.0,2522.183652465077,0.0,4723.011806935516,0.0,3335.9079102246874,0.0,4716.851837930477,0.0,0.0,0.0,2411.741564716902,0.0,4537.469149000575,0.0,2971.498442008436,0.0,4476.161563668082,0.0,3195.8638385375925,0,0,0,0,0,0,0,0,0.04213471076984226,0.001333112878441632,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7382202797330745,-0.7382202797330745,-0.7530719232692723,-0.7530719232692723,-0.7728907349867075,-0.7728907349867075,0.02076445243202285,0.02076445243202285,-0.49562377827406406,-0.49562377827406406,-0.4513225823294765,-0.5002019092560496,-0.5010224785177292,-0.506111239759133,-0.3050653951788627,-0.49036781067090274,-0.5329238196317693,-0.5207314053961244,-0.5351460616699293,-0.33529888291579557,16.472995643613075,16.472995643613075,16.94375410555837,16.94375410555837,17.58666023285437,17.58666023285437,5.008925451867825,5.008925451867825,10.133244219481455,10.133244219481455,9.250658794453614,10.229279066603468,10.246587743231046,10.354577342857397,6.934118547388195,10.024106804570579,10.942070759977625,10.671064620847133,10.992159013257492,7.338264570275328,91.07070731446836,91.07070731446836,0.0,101.18967479385374,0.0,91.07070731446836,101.18967479385374,0,0
+2017/04/05 00:00:00,39.3401462911184,0,545.391607580012,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5786315096290204e-09,9.542825292116584,0,0,0.0,492.15607881119575,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029037053162759514,0.000918712121574009,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6729329678614614,-0.6729329678614614,-0.701720664620253,-0.701720664620253,-0.7290545131274047,-0.7290545131274047,0.04506324347630816,0.04506324347630816,-0.1396814655734684,-0.1396814655734684,-0.5940343387911245,-0.6823048369797609,-0.7593404965387238,-0.7038465884113555,-0.08311354122753511,-0.6558935922181643,-0.7307737963954999,-0.7346196096974544,-0.7454123327918614,-0.18866633896678411,14.516142191468361,14.516142191468361,15.356328993850354,15.356328993850354,16.187188043842653,16.187188043842653,5.04204025148951,5.04204025148951,5.404235733638501,5.404235733638501,12.397475671560827,14.785732386364998,17.14528684249713,15.41979505950458,5.143040376085267,14.035730986509321,16.24052380118421,16.360288873490433,16.699784202230717,5.73798849628642,39.3401462911184,39.3401462911184,0.0,43.71127365679822,0.0,39.3401462911184,43.71127365679822,0,0
+2017/04/05 01:00:00,23.72221877394835,0,44.554956085097004,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251233502705561,0,0,0.0,9.064603572552866,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0023721388641235698,7.505282014368208e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7202309865814261,-0.7202309865814261,-0.7541584024654545,-0.7541584024654545,-0.7836832182695694,-0.7836832182695694,-0.03027487213195501,-0.03027487213195501,-0.008944238374138002,-0.008944238374138002,-0.6707418048791609,-0.7526614300802617,-0.8143393003188463,-0.7716725258007069,-0.010615538021519511,-0.751347861199016,-0.8181563354174703,-0.8364818289678951,-0.8301378089779937,-0.19820868444010784,15.915464376755295,15.915464376755295,16.97856363712083,16.97856363712083,17.943804640315406,17.943804640315406,5.018974194361149,5.018974194361149,5.0016560335334646,5.0016560335334646,14.453659670105722,16.930615532367,18.985230079006044,17.546658863294198,5.002332743857451,16.888620875635667,19.117678943347258,19.762085606494892,19.5374077353369,5.814657300436764,23.72221877394835,23.72221877394835,0.0,26.35802085994261,0.0,23.72221877394835,26.35802085994261,0,0
+2017/04/05 02:00:00,28.344396465844547,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250333793716538,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7344204536696378,-0.7344204536696378,-0.7710989170557736,-0.7710989170557736,-0.7998113575459557,-0.7998113575459557,-0.0706302270036415,-0.0706302270036415,0.06503459435750178,0.06503459435750178,-0.7230835039971832,-0.8052507089657822,-0.8646465933644798,-0.824033880681053,0.013258585469730006,-0.8156511402025681,-0.8808937045656687,-0.9026048162788118,-0.8914849019557011,-0.18763795274000566,16.354071219250116,16.354071219250116,17.527845635425763,17.527845635425763,18.486739417763445,18.486739417763445,5.103290193227025,5.103290193227025,5.0875693298192175,5.0875693298192175,16.00294223486216,18.672333472144985,20.77982026702007,19.322824804262325,5.003638971467339,19.03068095907929,21.381847184429006,22.203228776492423,21.780133640766408,5.729952977467747,28.344396465844547,28.344396465844547,0.0,31.493773850938386,0.0,28.344396465844547,31.493773850938386,0,0
+2017/04/05 03:00:00,23.722195274235858,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250998505580685,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7680617967047098,-0.7680617967047098,-0.8063831834442167,-0.8063831834442167,-0.8336347217603306,-0.8336347217603306,-0.1321568722013068,-0.1321568722013068,0.10294380370766285,0.10294380370766285,-0.7694178447018667,-0.8497553570142111,-0.9105395799599554,-0.868630212203486,0.03640237358603543,-0.8742271109722582,-0.9371923115239564,-0.9623377650069059,-0.9474016591700511,-0.1828575442604263,17.428467954795508,17.428467954795508,18.711131492414353,18.711131492414353,19.661044972813727,19.661044972813727,5.361824191388891,5.361824191388891,5.21947584841493,5.21947584841493,17.47279061309395,20.237615290327554,22.508203054266232,20.926424258902642,5.0274325434605345,21.133505686669068,23.551159263421923,24.561028223584486,23.958170458489107,5.693180156188205,23.722195274235858,23.722195274235858,0.0,26.357994749150954,0.0,23.722195274235858,26.357994749150954,0,0
+2017/04/05 04:00:00,42.38115640700144,0,397.3404709591585,0,0,0,0.0,0.01064312556820323,4.633261998087618,9.319298099999997,25.555573451546493,0,1.351570796027057,0.9857766187492906,0.5250323170227802,0,0,308.61458967779816,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2523175980745038,2082.922590764546,0.9524828017458729,1581.7285231387805,1.8340175975227857,2911.585713517391,1.2214506935732254,1643.9102495046354,0.0,0.0,1.7647499083600449,2341.382711048188,1.3716266794663492,1631.934774838365,1.8245036277469024,2825.130998456608,0.4219766617135455,1654.743892678953,0.0,0.0,0,0,0,0,0,0,0,0,0.021154700986601375,0.0006693199931730722,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7259800476157026,-0.7259800476157026,-0.7664245139251915,-0.7664245139251915,-0.7908132938185161,-0.7908132938185161,-0.11382262226105548,-0.11382262226105548,0.24585406016685227,0.24585406016685227,-0.5863017774502631,-0.6257694259173885,-0.6466895221782148,-0.6340042107528765,0.07493989908736452,-0.6434592654193024,-0.6800060853455772,-0.6815507129671856,-0.6841751937291966,-0.1670457958942805,16.092128561141564,16.092128561141564,17.37505765015726,17.37505765015726,18.182469527805907,18.182469527805907,5.268342127465942,5.268342127465942,6.254506503314914,6.254506503314914,12.204365365351023,13.21719612585403,13.781462775549826,13.43704299668451,5.1162830080561434,13.693095573026511,14.719255006514175,14.763898753524614,14.839989684561303,5.578345573834866,42.38115640700144,42.38115640700144,0.0,47.090173785557155,0.0,42.38115640700144,47.090173785557155,0,0
+2017/04/05 05:00:00,75.52744727630372,0,296.72347955326154,0,0,0,0.07694269490042945,0.00836676239032812,5.555297838843742,9.319298099999997,57.911447091112116,0,1.2347388768463292,0.8437928067488365,0.5775631054619335,0,0,83.78136447799675,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,243.4161848150401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9839484086969605,1387.9836311576657,0.285649292101823,1079.3130815034924,1.4685149534068955,2012.477411004289,0.5674654289442174,1122.2951996317004,0.0,0.0,1.6270853030148942,1760.126538691025,0.9329912915265481,1258.2249721613512,1.629546926503167,2205.75697629294,0.8715607861336139,1281.2621612646105,0.0,0.0,0,0,0,0,0,0,0,0,0.015797777836475107,0.0004998306787865388,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5361211236034439,-0.5361211236034439,-0.5795517429869715,-0.5795517429869715,-0.5978173257085992,-0.5978173257085992,0.04567664005696674,0.04567664005696674,0.5687918565728395,0.5687918565728395,-0.5568170690625706,-0.5886516223782263,-0.6035749883326125,-0.5949601480342319,0.1724573753239303,-0.5917957021875361,-0.6208669211559624,-0.6174157108734255,-0.6232074166021191,-0.05840401302768998,11.014203949585507,11.014203949585507,12.037913489811643,12.037913489811643,12.492895978676003,12.492895978676003,5.043192644423286,5.043192644423286,11.776668351625275,11.776668351625275,11.491830520639667,12.26277511843962,12.639316637853867,12.420770453097546,5.6164736066183565,12.341301861204883,13.087709510806704,12.997180509311988,13.149397370555505,5.070620800355925,75.52744727630372,75.52744727630372,0.0,83.91938586255968,0.0,75.52744727630372,83.91938586255968,0,0
+2017/04/05 06:00:00,101.4408309223153,0,761.8218835277306,0,0,0,0.03783288636957471,0.003566210638310319,11.110595677687485,13.929299233552332,73.80580873715317,0,1.3102634094647456,0.7184163340999833,0.5250484333496951,0,0,50.823441551935346,480.3111506442584,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,123.71170324137866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1032.3429365693414,0.0,822.7688564479909,0.33384378150738786,1540.4594865970955,0.0,859.5496635411985,0.0,0.0,1.2478892749952593,1272.8453668392563,0.0,925.5901214209081,1.6331701643132417,1614.505800389722,0.3513074174944298,941.908050473654,0.0,0.0,0,0,0,0,0,0,0,0,0.04055996136556432,0.0012832889049811619,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4078169651648647,-0.4078169651648647,-0.45376520451827745,-0.45376520451827745,-0.46830997793034695,-0.46830997793034695,0.1503246849365384,0.1503246849365384,0.8200767237688883,0.8200767237688883,-0.5451090855083105,-0.5750429255205302,-0.588414412829051,-0.581095490564513,0.22073387757637092,-0.5746341078762697,-0.6019217476675681,-0.5974911002204963,-0.6040905426712396,0.06056682549135517,8.46609368203859,8.46609368203859,9.2971189936098,9.2971189936098,9.579087902846979,9.579087902846979,5.468248576626976,5.468248576626976,19.18454713852175,19.18454713852175,11.219350279136819,11.927830055928183,12.256867961366282,12.075807018302811,6.010746276165008,11.917892326816911,12.597126528438025,12.4846429472274,12.652497664130607,5.075948968404418,101.4408309223153,101.4408309223153,0.0,112.71203435812811,0.0,101.4408309223153,112.71203435812811,0,0
+2017/04/05 07:00:00,148.07495220155778,0,899.6036191571845,0,0,0,0.0,0.0,8.719240986467439,0.0,69.33401494192633,0,39.380909295966944,0.1481043002112684,27.060707474531515,0,0,33.77056776841457,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,408.6777086986953,0.0,0.0,0.0,0.0,0.0,2681.3193057197946,0.0,4153.198571612213,0.0,3615.775850167127,0.0,3515.0304571966103,0.0,2262.35997695225,0.0,2745.944778464666,0.0,4181.640213862939,0.0,3599.302863883202,0.0,3318.984925587285,0.0,1829.8249075012573,0,0,0,0,0,0,0,0,0.04789556302632657,0.0015153822281915204,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5534735119015324,-0.5534735119015324,-0.6123256754621007,-0.6123256754621007,-0.6228367500077278,-0.6228367500077278,-0.030389114786770133,-0.030389114786770133,0.3778626576576944,0.3778626576576944,-0.5171871183956995,-0.5696642275918797,-0.5732412688860538,-0.5046503945506169,-0.13572173575780055,-0.5443916525762432,-0.5973112567418487,-0.5830425238054738,-0.5159263717751388,-0.19116470270124142,11.413409632664283,11.413409632664283,12.864606691724646,12.864606691724646,13.13961196102278,13.13961196102278,5.0191176692659525,5.0191176692659525,7.9730434657616485,7.9730434657616485,10.593491274747052,11.797662021283742,11.884088985301517,10.323461921157275,5.381623530575027,11.202846635083944,12.480095143222911,12.123747239542752,10.566028533838022,5.757694067102761,148.07495220155778,148.07495220155778,0.0,164.52772466839752,0.0,148.07495220155778,164.52772466839752,0,0
+2017/04/05 08:00:00,163.92859295622137,0,968.194698892806,0,0,0,0.0,0.0,11.86011032607099,0.0,83.2008179303116,0,39.380909295966944,0.10662769537745923,25.94815250604008,0,0,49.1261187352199,599.655407544689,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1467.8555102135858,0.0,3512.758551818402,0.0,2875.6759038006594,0.0,2246.4485690614,0.0,170.13184665910555,0.0,1120.8848162518248,0.0,3465.046240272352,0.0,2743.575669312997,0.0,2155.324765580401,0.0,210.97714607192376,0,0,0,0,0,0,0,0,0.05154740291732109,0.0016309238968002003,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5060866387358895,-0.5060866387358895,-0.59887791970334,-0.59887791970334,-0.6251770612545553,-0.6251770612545553,0.42804970259454633,0.42804970259454633,-0.1639339787410643,-0.1639339787410643,-0.4496462936699522,-0.5628943886064053,-0.5602452664517233,-0.39821895638012456,-0.270109185120347,-0.4688959585793819,-0.5883710849604955,-0.5680693093485242,-0.3739930915055114,-0.3096974519588109,10.354052587138241,10.354052587138241,12.519759385889927,12.519759385889927,13.201494996625357,13.201494996625357,8.820858551610911,8.820858551610911,5.556973880655221,5.556973880655221,9.218923261994817,11.635611257253942,11.57273988146757,8.303932858747189,6.515032212024863,9.590638834229267,12.25578924441534,11.759305196613141,7.912145526168132,6.9935258001885785,163.92859295622137,163.92859295622137,0.0,182.14288106246818,0.0,163.92859295622137,182.14288106246818,0,0
+2017/04/05 09:00:00,181.27869467919174,0,967.2409856680277,0,0,0,0.0,0.0,11.435487997441953,0.0,106.27511244621549,0,39.380909295966944,0.058322826078081154,20.69688691103506,0,0,32.49367510763451,562.0986091786799,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2742.566597528906,0.0,1940.5364146763975,0.0,796.8160413601139,0.0,3.3998333235207983,0.0,0.0,0.0,2644.0912801607974,0.0,1743.0248560409314,0.0,354.32319400751766,0.0,10.19599568649742,0,0,0,0,0,0,0,0,0.05149662651881216,0.0016293173669454468,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4049819653276248,-0.4049819653276248,-0.5686557532913561,-0.5686557532913561,-0.5707864272014832,-0.5707864272014832,0.778598823458241,0.778598823458241,-0.23851069792870153,-0.23851069792870153,-0.3424725786132173,-0.5450244119083812,-0.5400750605133555,-0.3429320825232851,-0.28750142544678636,-0.3226982575630004,-0.5647123969867522,-0.5424583603535869,-0.31315205304867055,-0.3197517074599293,8.417785319125215,8.417785319125215,11.773395993609839,11.773395993609839,11.824716381530507,11.824716381530507,17.77493442316691,17.77493442316691,6.180508909791413,6.180508909791413,7.4398501248629145,11.217401308326629,11.104019656276293,7.4464315868024755,6.7170979995530615,7.165117314818659,11.678933991376411,11.158484709997296,7.038423080630139,7.125599653063503,181.27869467919174,181.27869467919174,0.0,201.4207718657686,0.0,181.27869467919174,201.4207718657686,0,0
+2017/04/05 10:00:00,212.48818550198618,0,1047.0193156708808,0,0,0,0.22152135682617866,0.0,16.932384784220176,0.0,133.89528835348938,0,39.380909295966944,0.04003622334513471,18.586070285684062,0,0,24.54163614010492,561.1030968677019,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,861.7877756920473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2432.9180150944003,0.0,914.2690118098906,0.0,298.92722378233833,0.0,0.0,0.0,0.0,0.0,2270.263808292919,0.0,665.3891158747658,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05574408390050494,0.0017637039577801802,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.31743126479083134,-0.31743126479083134,-0.521123445992423,-0.521123445992423,-0.548669946420387,-0.548669946420387,0.9219834705563497,0.9219834705563497,-0.19345414079927248,-0.19345414079927248,-0.1816529444674875,-0.5336624162629761,-0.5255971133800361,-0.33198789438723847,-0.30638054790718916,-0.12313781563028715,-0.5468745885626883,-0.5215129665389115,-0.28952163665371955,-0.32872494982364153,7.09473799700946,7.09473799700946,10.679678551150687,10.679678551150687,11.301593533775488,11.301593533775488,22.952527811652047,22.952527811652047,5.775980783379254,5.775980783379254,5.68406442916222,10.958694638068323,10.778445189176722,7.292115226063643,6.950893411987494,5.314092038662665,11.26005844826176,10.68824369826568,6.741396423804844,7.247090696037034,212.48818550198618,212.48818550198618,0.0,236.09798389109574,0.0,212.48818550198618,236.09798389109574,0,0
+2017/04/05 11:00:00,227.66067482979,0,1081.694828379876,0,0,0,0.35215151871163697,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,0.007967981328258605,20.78527585660741,0,0,4.992071537257668,562.0926454107286,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1383.2485815246255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1007.3314969402763,0.0,242.37198986316932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,787.2968485219366,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05759023388151528,0.001822114856306656,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.09028354969624287,-0.09028354969624287,-0.4587043112106973,-0.4587043112106973,-0.6028199645322421,-0.6028199645322421,0.9218509005153331,0.9218509005153331,-0.030279307135322814,-0.030279307135322814,-0.04711210958263736,-0.4995739484538494,-0.492413451485076,-0.2736825688349842,-0.22662333229679368,0.0009010594475217351,-0.5002327100725334,-0.46425597268108054,-0.2521264883604845,-0.22303431504591606,5.1687937508182245,5.1687937508182245,9.391848407100866,9.391848407100866,12.62003398409422,12.62003398409422,22.947350440201305,22.947350440201305,5.018979754103356,5.018979754103356,5.045950388680566,10.21605282932876,10.066441660650852,6.555507302488252,6.065520431497987,5.00001680690481,10.229928238003751,9.49958004572926,6.319506679350752,6.031968167224605,227.66067482979,227.66067482979,0.0,252.95630536643333,0.0,227.66067482979,252.95630536643333,0,0
+2017/04/05 12:00:00,206.21258230529946,0,1027.6163754280494,0,0,0,0.17434811548098436,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,0.005546001097881769,18.574999635119028,0,0,3.5511590359505654,544.945457472753,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,675.5134153169427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,540.2057387419768,0.0,593.1104127914533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,212.43102389949672,0.0,120.0060319340707,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054711056990089414,0.0017310197064137893,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.013074831959809295,-0.013074831959809295,-0.4135367214955903,-0.4135367214955903,-0.6042609893561101,-0.6042609893561101,0.8904814137157385,0.8904814137157385,0.009902202316458211,0.009902202316458211,-0.016964472228663395,-0.46435473692401563,-0.45959013094501994,-0.27963237121478624,-0.11176742723431159,0.09251480465514733,-0.4567073371389659,-0.43113841733255776,-0.25081078508356686,-0.1421147729832443,5.003538803129572,5.003538803129572,8.564606013236101,8.564606013236101,12.65685796182774,12.65685796182774,21.742200327300537,21.742200327300537,5.002029767709914,5.002029767709914,5.0059575425963345,9.501508612609001,9.40894901231205,6.624093854728031,5.258733869213415,5.177243151636489,9.353421069691294,8.876561455523557,6.305735189072934,5.418454894320604,206.21258230529946,206.21258230529946,0.0,229.12509145033272,0.0,206.21258230529946,229.12509145033272,0,0
+2017/04/05 13:00:00,204.0092501347063,0,989.3110173904768,0,0,0,0.006647469011079434,0.0,16.735683873587277,0.0,129.2730206906943,0,39.380909295966944,0.013138671178582147,16.311866665965148,0,0,8.648565445884879,537.0330455377904,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,25.427491356079734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,979.1195289149241,0.0,1195.9165642839387,0.0,122.88077480724621,0.0,0.0,0.0,0.0,0.0,594.050341011506,0.0,546.6696955371106,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05267165135513497,0.0016664943337068251,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.007211360823180835,-0.007211360823180835,-0.3838014882943657,-0.3838014882943657,-0.6144946515162605,-0.6144946515162605,0.8906676783156307,0.8906676783156307,-0.040675530430519004,-0.040675530430519004,0.01986184977421035,-0.41875882785677776,-0.4483905746104419,-0.319021117046281,-0.1345415351215214,0.0687430854585871,-0.4027988699315549,-0.423567001047955,-0.27205341021280416,-0.18516751630540912,5.001076505622834,5.001076505622834,8.067749747133291,8.067749747133291,12.920961831872717,12.920961831872717,21.749238292596118,21.749238292596118,5.034251495341152,5.034251495341152,5.008166348632358,8.655771384963586,9.195229147700658,7.1158582655557865,5.375010133003045,5.097843239968952,8.380819881772638,8.740744301995065,6.536987370878379,5.710830219135602,204.0092501347063,204.0092501347063,0.0,226.67694459411808,0.0,204.0092501347063,226.67694459411808,0,0
+2017/04/05 14:00:00,189.09475318010888,0,944.1790976741507,0,0,0,0.0,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,0.011106742618600875,14.015430293676044,0,0,7.568732780445201,528.4713109994481,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,862.5190471594658,0.0,755.2287120611337,0.0,616.0218869384603,0.0,0.0,0.0,0.0,0.0,409.12090114594656,0.0,151.88428601032743,0.0,108.91860986887865,0.0,57.908458042740556,0,0,0,0,0,0,0,0,0.05026879451992396,0.0015904696183701285,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.08432071967894712,-0.08432071967894712,-0.450718794368227,-0.450718794368227,-0.5249010699417694,-0.5249010699417694,0.8736550905617717,0.8736550905617717,-0.10473289622880362,-0.10473289622880362,-0.027097347105317075,-0.35299702388752596,-0.4455595822764396,-0.35318694489935937,-0.1924362425786763,0.061518132966228704,-0.3253765612937666,-0.42272483298231023,-0.3240256772813178,-0.25294378682600077,5.14722704319442,5.14722704319442,9.23921393945706,9.23921393945706,10.763021501752092,10.763021501752092,21.112282118131816,21.112282118131816,5.227174561465176,5.227174561465176,5.0152001791032745,7.592843026161418,9.142060043596402,7.5956471609923,5.76782335138563,5.07835393382301,7.2013567024520455,8.725789380785827,7.183040250032263,6.3280980063667585,189.09475318010888,189.09475318010888,0.0,210.1052813112321,0.0,189.09475318010888,210.1052813112321,0,0
+2017/04/05 15:00:00,182.45360277057293,0,969.1276704718852,0,0,0,0.0,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,0.04765251352252449,14.100990503183818,0,0,32.567565504544646,528.4210510730829,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,792.5023856432248,0.0,949.5400406939766,0.0,1534.7143627421929,0.0,393.6280457756652,0.0,0.0,0.0,211.42145315085486,0.0,369.5950994620616,0.0,1036.5936170873742,0.0,67.6917960411552,0,0,0,0,0,0,0,0,0.05159707501524953,0.0016324954873543475,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.21866112753102102,-0.21866112753102102,-0.33381737760752167,-0.33381737760752167,-0.49680494504487965,-0.49680494504487965,0.8412669949990041,0.8412669949990041,-0.14328275549573874,-0.14328275549573874,-0.04740851733422034,-0.2973603497834597,-0.45325245291014965,-0.37656447419810624,-0.26075407725024663,0.060152100096261665,-0.26104520838995793,-0.43359221454458213,-0.36124290167617135,-0.29491656712830655,5.991814772201209,5.991814772201209,7.317557472748817,7.317557472748817,10.157934726282477,10.157934726282477,19.932669031879215,19.932669031879215,5.425367591093831,5.425367591093831,5.0465304634459045,6.8373098202607,9.287344848911914,7.952541879366365,6.411615802508166,5.0749122554232,6.414778574085176,8.921105977145928,7.716004904866168,6.807129544849374,182.45360277057293,182.45360277057293,0.0,202.72622530063657,0.0,182.45360277057293,202.72622530063657,0,0
+2017/04/05 16:00:00,205.37214501364292,0,1002.9861488038719,0,0,0,0.0,0.0,16.798297266846703,0.0,131.64086955684016,0,39.380909295966944,0.03412496732945153,14.085968724205328,0,0,23.33836361388793,518.2732025269102,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,132.9496802914607,0.0,1167.0884696989121,0.0,1728.8008704208714,0.0,70.31021302821995,0.0,0.0,0.0,0.0,0.0,581.1848584047509,0.0,1274.3224524382974,0.0,12.01672213601447,0,0,0,0,0,0,0,0,0.05339972548084514,0.0016895300915347644,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3396794895512062,-0.3396794895512062,-0.1919480299916042,-0.1919480299916042,-0.3642730515561647,-0.3642730515561647,0.847154634444277,0.847154634444277,-0.10109303705839551,-0.10109303705839551,-0.11514617126001271,-0.2508415839484965,-0.4572995582351687,-0.3906382133888441,-0.2795150650482748,-0.026654442134660953,-0.1653782744616914,-0.44105421379368887,-0.38142984730031976,-0.30008514774550804,7.4000377858236845,7.4000377858236845,5.763926183110826,5.763926183110826,7.761991183858214,7.761991183858214,20.143864850608963,20.143864850608963,5.2116515848015155,5.2116515848015155,5.274622748946243,6.306056729472033,9.364799144907224,8.178639656645984,6.622727178778646,5.014707331684676,5.566842971204068,9.058154879119968,8.029748713908688,6.8712581965010315,205.37214501364292,205.37214501364292,0.0,228.191272237381,0.0,205.37214501364292,228.191272237381,0,0
+2017/04/05 17:00:00,212.48224784370234,0,1012.8229844646835,0,0,0,0.0,0.0,17.250223812971733,0.0,133.89528835348938,0,39.380909295966944,0.013723942032250414,18.510127236787703,0,0,9.634155023462025,541.8142467781477,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1139.8326002548174,0.0,1031.497327872512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,639.9441036220666,0.0,656.4502665090233,0.0,0.0,0,0,0,0,0,0,0,0,0.0539234458976365,0.0017061002404587984,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4150382593013693,-0.4150382593013693,-0.40217546008335087,-0.40217546008335087,-0.5071038414837982,-0.5071038414837982,0.8795695199918445,0.8795695199918445,-0.06089744017183367,-0.06089744017183367,-0.14986481294169562,-0.30589126523407373,-0.4489686934502116,-0.38802756126226623,-0.23562004190124453,-0.07785625898760261,-0.2164719368972517,-0.43699786562912984,-0.3842653257228747,-0.28811289466806733,8.590699520648144,8.590699520648144,8.370301385373637,8.370301385373637,10.375772004073994,10.375772004073994,21.33237384279485,21.33237384279485,5.076780531021029,5.076780531021029,5.465385225149177,6.944644029829192,9.206129225184668,8.136059890068822,6.152001460306181,5.125512144001618,5.972015214941578,8.98335826841047,8.075209938193339,6.724434362680768,212.48224784370234,212.48224784370234,0.0,236.0913864930026,0.0,212.48224784370234,236.0913864930026,0,0
+2017/04/05 18:00:00,196.9490156874453,0,1035.1074954857147,0,0,0,0.0,0.0,17.874806865821192,0.0,110.93442390708215,0,39.380909295966944,0.013198103716254732,26.171696113018008,0,0,9.56785779049592,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1517.439266522121,0.0,619.3811835594131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1013.5117298062961,0.0,276.71182431723014,0.0,0.0,0,0,0,0,0,0,0,0,0.05510988977068207,0.0017436384975823595,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4672517859102699,-0.4672517859102699,-0.3827305542874201,-0.3827305542874201,-0.5491896256324639,-0.5491896256324639,0.865539744502599,0.865539744502599,-0.04722857260970326,-0.04722857260970326,-0.18479907289341369,-0.19802115015574714,-0.4208786600850986,-0.3779101914164144,-0.17771892086653684,-0.14346607051164637,-0.08765549587147012,-0.40852765916557693,-0.3771178428984093,-0.19391075154073675,9.55826616260704,9.55826616260704,8.050560330249724,8.050560330249724,11.31364223482997,11.31364223482997,20.812632751701187,20.812632751701187,5.046177874630047,5.046177874630047,5.708000075194477,5.813113872026705,8.693112134641936,7.973795508280162,5.654715957224823,5.426457695014747,5.1591066657956475,8.478257847230367,7.9612721716460015,5.779654129948909,196.9490156874453,196.9490156874453,0.0,218.832239652717,0.0,196.9490156874453,218.832239652717,0,0
+2017/04/05 19:00:00,194.0636736572414,0,1004.2887406052046,0,0,0,0.0,0.0,22.444206592715457,0.0,101.68988858149199,0,39.380909295966944,0.018951509301522555,27.0977424753112,0,0,14.239455422530202,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.74456518746101,0.0,1926.8230445162121,0.0,837.9094176332258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1428.9828606495764,0.0,605.019546205916,0.0,0.0,0,0,0,0,0,0,0,0,0.05346907643318652,0.0016917243073252444,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5241387402673765,-0.5241387402673765,-0.3926778169159341,-0.3926778169159341,-0.6142180423630655,-0.6142180423630655,0.8361735669231312,0.8361735669231312,-0.07297042349171774,-0.07297042349171774,-0.21479419950308995,-0.3037841428736658,-0.43454652074064326,-0.3810192065478358,-0.1539397999394733,-0.16725193025336324,-0.1817624187089147,-0.41866865607094184,-0.3844366429376969,-0.2013651498690352,10.746153034281477,10.746153034281477,8.212108280704598,8.212108280704598,12.913763511781383,12.913763511781383,19.75112936669275,19.75112936669275,5.110249882736525,5.110249882736525,5.956977245752114,6.917846447944356,8.938499614564066,8.023193366611352,5.491064536652459,5.579775546037993,5.684890365162801,8.65418728522718,8.077967664823788,5.840856072138848,194.0636736572414,194.0636736572414,0.0,215.62630406360154,0.0,194.0636736572414,215.62630406360154,0,0
+2017/04/05 20:00:00,210.93899379383993,0,958.7577873757156,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.02859368372818047,23.006670943954415,0,0,22.508726360234025,581.3455358900403,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,611.8108973104809,0.0,2399.8749239927615,0.0,1231.7815922632615,0.0,0.0,0.0,0.0,0.0,85.51271979967969,0.0,1961.751520118924,0.0,981.783754385976,0.0,0.0,0,0,0,0,0,0,0,0,0.05104497475816792,0.0016150274200659107,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4943012503319853,-0.4943012503319853,-0.4041707374714301,-0.4041707374714301,-0.5508526579373935,-0.5508526579373935,0.7543930965023156,0.7543930965023156,-0.11416796906932147,-0.11416796906932147,-0.22684935203171058,-0.32934541126108985,-0.4346369770994578,-0.38500289487419387,-0.15784564252116678,-0.22588793950689356,-0.2835084348380478,-0.4294462579031954,-0.39161820661788493,-0.23215307394351978,10.105670285593447,10.105670285593447,8.404025321288813,8.404025321288813,11.352278113046523,11.352278113046523,16.986089597027345,16.986089597027345,5.269973880384242,5.269973880384242,6.067651474665865,7.255617501005219,8.94015034436552,8.087091650856166,5.516327205893475,6.0586015513514155,6.6695784140904095,8.845993773467626,8.19469854375167,6.118273016470411,210.93899379383993,210.93899379383993,0.0,234.37665977093326,0.0,210.93899379383993,234.37665977093326,0,0
+2017/04/05 21:00:00,197.8818222473831,0,989.9292139104942,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.08926241647760381,25.896622380285955,0,0,70.86063375290806,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1825.6379203054328,0.0,2267.316490116443,0.0,2328.8008045225965,0.0,401.74153167004204,0.0,0.0,0.0,1370.376421699365,0.0,1918.787567324069,0.0,2132.4832738748555,0.0,73.72897544751154,0,0,0,0,0,0,0,0,0.05270456459576298,0.0016675356856978743,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5270820832043674,-0.5270820832043674,-0.39630494910750536,-0.39630494910750536,-0.5385735185994855,-0.5385735185994855,0.659261687144028,0.659261687144028,-0.19810339950177203,-0.19810339950177203,-0.25517881036222706,-0.3651774884860175,-0.45205579571513355,-0.4107542430234562,-0.22842199590620368,-0.240752872066913,-0.3504774017745576,-0.45291987751844653,-0.42252736599601526,-0.2717099312771508,10.811420867531027,10.811420867531027,8.272066596509575,8.272066596509575,11.069831598438626,11.069831598438626,14.129694349381666,14.129694349381666,5.813790612415218,5.813790612415218,6.351735701486646,7.775792933023041,9.264578007232586,8.516507872671397,6.082538569651959,6.202862664042087,7.555786673073698,9.281011297726408,8.722287235068677,6.533097051719608,197.8818222473831,197.8818222473831,0.0,219.8686913859812,0.0,197.8818222473831,219.8686913859812,0,0
+2017/04/05 22:00:00,140.06894752317038,0,811.2904859411708,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.11500494432643736,20.769009771067722,0,0,89.49581305845541,562.0880865762668,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.033411864624876,0.0,2786.9979431394327,0.0,2543.8707841227224,0.0,3198.6622971745137,0.0,60.72017097627684,0.0,0.0,0.0,2519.4700529316983,0.0,2307.8525095134296,0.0,3081.5432071569803,0.0,14.132382903922425,0,0,0,0,0,0,0,0,0.043193706399779465,0.0013666187619919984,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.624001395180351,-0.624001395180351,-0.5677992573444149,-0.5677992573444149,-0.6577018261488872,-0.6577018261488872,0.4422346982636375,0.4422346982636375,-0.42942448582750176,-0.42942448582750176,-0.31614656049685547,-0.40575244795468834,-0.47823064204859217,-0.4447556649382821,-0.2751526155373529,-0.306769821212275,-0.4054764369101215,-0.4873960112525799,-0.46386407135706126,-0.3085344797928587,13.170378063599884,13.170378063599884,11.752821531641416,11.752821531641416,14.086116120070983,14.086116120070983,9.080055126420447,9.080055126420447,8.845601276988745,8.845601276988745,7.077749669506517,8.43088028295523,9.776641374535103,9.127024430337372,6.572314495460844,6.955872655358263,8.426186334869612,9.962926846024956,9.4919315400319,6.97852503881218,140.06894752317038,140.06894752317038,0.0,155.63216391463376,0.0,140.06894752317038,155.63216391463376,0,0
+2017/04/05 23:00:00,90.99597059463531,0,733.2907217519622,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.2327364954688313,11.820277837873915,0,0,164.0949166351801,515.960276347966,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,626.491550062424,0.0,0.0,0.0,0.0,0.0,326.7334608531543,0.0,3553.5291232971103,0.0,2661.4671221570525,0.0,3897.7095403109147,0.0,7.473732708083891,0.0,196.65155941704614,0.0,3369.9895913332975,0.0,2508.556702853045,0.0,3801.7971052625276,0.0,1365.3320965227113,0,0,0,0,0,0,0,0,0.03904094117940068,0.0012352281651353584,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7247441929950599,-0.7247441929950599,-0.6750610123163434,-0.6750610123163434,-0.7712558392987264,-0.7712558392987264,0.19346119595049618,0.19346119595049618,-0.508704612372995,-0.508704612372995,-0.36224364703638395,-0.44216955163934457,-0.5049223745868129,-0.47789574919324684,-0.30706134755764886,-0.37574816964691804,-0.4523481786463958,-0.5199049621728984,-0.5045488415981589,-0.3410206714932749,16.05403169940446,16.05403169940446,14.577023773193218,14.577023773193218,17.53299097947864,17.53299097947864,5.776037474445545,5.776037474445545,10.410042421102304,10.410042421102304,7.731149202092382,9.078844970332668,10.329247998869391,9.769903332539641,6.95960580392574,7.939687197477198,9.270135011625442,10.652927769323227,10.321302313057913,7.419113458865368,90.99597059463531,90.99597059463531,0.0,101.10663399403923,0.0,90.99597059463531,101.10663399403923,0,0
+2017/04/06 00:00:00,39.33837274415113,0,545.2263795943351,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.578637320929403e-09,9.541051745149307,0,0,0.0,491.99085082551886,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02902825630241661,0.0009184337950446771,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6130417688237638,-0.6130417688237638,-0.6046434530809257,-0.6046434530809257,-0.7128406935878344,-0.7128406935878344,0.2251566330661958,0.2251566330661958,-0.15500584241776896,-0.15500584241776896,-0.3382609102159551,-0.4672090983477483,-0.736320396558461,-0.5651050242725963,-0.08181349158387775,-0.3548975790898423,-0.46514288327582587,-0.6939314395478624,-0.5962486404111937,-0.17907651112084938,12.883189918778697,12.883189918778697,12.666646582131136,12.666646582131136,15.690456916078602,15.690456916078602,6.051743604014391,6.051743604014391,5.497896549395463,5.497896549395463,7.37994443670361,9.557427224184849,16.413456861868568,11.688309034301284,5.1385992164660195,7.620973402267268,9.51691378243936,15.125461159438785,12.453252811729897,5.664770801936129,39.33837274415113,39.33837274415113,0.0,43.70930304905681,0.0,39.33837274415113,43.70930304905681,0,0
+2017/04/06 01:00:00,23.72204178714811,0,41.48503588957092,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249463634703181,0,0,0.0,5.994683377026785,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002208694039003406,6.988153980732139e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6223374213958398,-0.6223374213958398,-0.6273740651479103,-0.6273740651479103,-0.749493827807734,-0.749493827807734,0.15411266428463205,0.15411266428463205,-0.027153296664339004,-0.027153296664339004,-0.4001276563619131,-0.5323691579521144,-0.7749128588759149,-0.6291028672156133,-0.006701227491257637,-0.42051567972780485,-0.5387632486858842,-0.7857704589933412,-0.6808602996127026,-0.15891489969753528,13.126439364876973,13.126439364876973,13.259804936218245,13.259804936218245,16.829473374101426,16.829473374101426,5.492169167174353,5.492169167174353,5.015263015474048,5.015263015474048,8.33586680841222,10.929602309502485,17.653198735258783,13.305835726095694,5.000929587841384,8.686704579713705,11.074146101911225,18.013447290630097,14.743931260318817,5.523353898375348,23.72204178714811,23.72204178714811,0.0,26.357824207942343,0.0,23.72204178714811,26.357824207942343,0,0
+2017/04/06 02:00:00,28.34450101174943,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251379252765308,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6123702565052673,-0.6123702565052673,-0.6233827827654715,-0.6233827827654715,-0.74691682604435,-0.74691682604435,0.12957446068675288,0.12957446068675288,0.046229269808453016,0.046229269808453016,-0.4240324824222744,-0.5603146603952615,-0.8038500444519769,-0.6610788973498946,0.017484952522614675,-0.45988231797852047,-0.5812630748042227,-0.8371356283096713,-0.7287348439384601,-0.14959718780027884,12.865762957798935,12.865762957798935,13.154029025594681,13.154029025594681,16.747506274330817,16.747506274330817,5.347811547081321,5.347811547081321,5.044244220720714,5.044244220720714,8.749023209775544,11.574382919931196,18.624422346801467,14.180595155594474,5.006328717563363,9.414597045130279,12.079926839234162,19.785336069863604,16.177285248839596,5.463722935311708,28.34450101174943,28.34450101174943,0.0,31.49389001305492,0.0,28.34450101174943,31.49389001305492,0,0
+2017/04/06 03:00:00,23.722298553620472,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5252031299426809,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.626882568375917,-0.626882568375917,-0.6421518322573242,-0.6421518322573242,-0.7665075102142618,-0.7665075102142618,0.08317764611047039,0.08317764611047039,0.08412694513787423,0.08412694513787423,-0.45264041561136176,-0.5899969180576604,-0.8388928598945115,-0.6938221320677253,0.0410892695741495,-0.5052248664116126,-0.6276384709087747,-0.8923104595722056,-0.7781035695449314,-0.14175381821177227,13.246742100599349,13.246742100599349,13.657457940704717,13.657457940704717,17.377762344810236,17.377762344810236,5.143261181278419,5.143261181278419,5.146550932814392,5.146550932814392,9.275692917234522,12.296322801794403,19.847915408024505,15.12223999631479,5.034951883753905,10.335686937354339,13.26683655934933,21.81137173230651,17.75854412211517,5.416330070658248,23.722298553620472,23.722298553620472,0.0,26.358109504022746,0.0,23.722298553620472,26.358109504022746,0,0
+2017/04/06 04:00:00,41.52517145213367,0,313.93142746008203,0,0,0,0.0,0.0038179399615000118,4.633261998087618,9.319298099999997,25.555573451546493,0,0.8194802722584225,0.6161570071643011,0.5775826831153489,0,0,225.20554617872176,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,156.2757780243414,0.0,472.08777640271063,1.6713216683390708,2133.459749149649,0.2384215982097354,818.6322205678584,0.0,0.0,0.0,414.4554102443475,0.0,561.1432748358778,1.4510863992000695,2368.595763700636,0.45711029575113565,1043.1057785763164,0.0,0.0,0,0,0,0,0,0,0,0,0.016713941729075962,0.0005288174657295169,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5797795030030048,-0.5797795030030048,-0.5982497769644134,-0.5982497769644134,-0.7206489893848511,-0.7206489893848511,0.10214640987237653,0.10214640987237653,0.22521410798334346,0.22521410798334346,-0.4585375760925671,-0.5269135137234066,-0.6233732716428895,-0.5711630004603641,0.07938811853398463,-0.4902313781913943,-0.5561498394676065,-0.6560619777536588,-0.6206492569755483,-0.12303987629431223,12.043497687751696,12.043497687751696,12.503843487621978,12.503843487621978,15.928261322687987,15.928261322687987,5.216087366836135,5.216087366836135,6.052281772688943,6.052281772688943,9.38863339083781,10.807672760558177,13.153777789895088,11.833807176379935,5.130501159050908,10.021289740471389,11.476142386645009,14.040416944972364,13.08198467108393,5.3135922690076995,41.52517145213367,41.52517145213367,0.0,46.139079391259635,0.0,41.52517145213367,46.139079391259635,0,0
+2017/04/06 05:00:00,74.64296888377274,0,279.2743952241061,0,0,0,0.11967967467609683,0.002287691736527393,5.555297838843742,9.319298099999997,57.911447091112116,0,0.7343104103075069,0.4756199151613303,0.525028161935399,0,0,66.33228014884128,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,379.25293234222755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,274.3261088477421,0.9083213531388878,1487.7832135842223,0.0,518.8480306944991,0.0,0.0,0.0,172.12971676080343,0.0,344.62389185315857,1.3793703833885047,1839.1150579632324,0.0,762.3092447795749,0.0,0.0,0,0,0,0,0,0,0,0,0.014868775662137783,0.00047043769755843965,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3725570797161303,-0.3725570797161303,-0.3956907181130025,-0.3956907181130025,-0.5101068900141352,-0.5101068900141352,0.27595810527319925,0.27595810527319925,0.5487099980293925,0.5487099980293925,-0.44488170784415204,-0.5109798142819354,-0.5851406165388897,-0.5476002285629794,0.17151086573156518,-0.47974861223159904,-0.5357204735211686,-0.5974042073781928,-0.5810140428823364,0.007417913510715393,7.889708551936593,7.889708551936593,8.26187348581891,8.26187348581891,10.440154398631833,10.440154398631833,6.58156237377564,6.58156237377564,11.302521709272256,11.302521709272256,9.12937996580277,10.458942184948299,12.175591017119103,11.276829098380958,5.609716700989168,9.80724358260305,11.005140765831342,12.482445463392523,12.0738051825724,5.00113905695423,74.64296888377274,74.64296888377274,0.0,82.93663209308082,0.0,74.64296888377274,82.93663209308082,0,0
+2017/04/06 06:00:00,100.52923497789222,0,739.8095085582069,0,0,0,0.0,0.00033408267309156754,11.110595677687485,13.929299233552332,73.80580873715317,0,0.8133137638342366,0.3449197718064744,0.5249637111853849,0,0,28.97218150024637,480.1500357264237,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,122.08672278416518,0.0,1042.7286026894049,0.0,326.15922307648685,0.0,0.0,0.0,0.0,0.0,178.36828630977288,0.3340826730915675,1258.066122960583,0.0,501.517281503066,0.0,0.0,0,0,0,0,0,0,0,0,0.039388006217473986,0.00124620906101571,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.21066659384045788,-0.21066659384045788,-0.23820622025607419,-0.23820622025607419,-0.34435357480945755,-0.34435357480945755,0.40572443368141875,0.40572443368141875,0.8009149275424032,0.8009149275424032,-0.4047195925398983,-0.4932752758925015,-0.5632533875822487,-0.5285966541754675,0.2180531398566743,-0.45919117052698966,-0.516135120742682,-0.5713297776812583,-0.5583059159332149,0.11823560992676369,5.920482262674682,5.920482262674682,6.177489643925782,6.177489643925782,7.466848395885748,7.466848395885748,8.43040371293003,8.43040371293003,18.524292735926593,18.524292735926593,8.413331885675447,10.084331353656395,11.64415476436595,10.845152218336608,5.9862958504150185,9.401242965195493,10.570570945246914,11.837835284171675,11.526906399559834,5.289566248991491,100.52923497789222,100.52923497789222,0.0,111.69914997543579,0.0,100.52923497789222,111.69914997543579,0,0
+2017/04/06 07:00:00,148.13972761224278,0,892.4835770729794,0,0,0,0.0,0.0,8.798598673093464,0.0,69.33401494192633,0,39.380909295966944,0.1240330571113421,27.070196441690427,0,0,26.65052568420953,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.54853009481486,0.0,0.0,0.0,0.0,0.0,1580.0499628236198,0.0,3509.1399145008395,0.0,3191.7959714359713,0.0,3360.101363052517,0.0,2270.332415912339,0.0,1705.4060952763925,0.0,3506.798570505158,0.0,3282.6574784440313,0.0,3326.5868715356005,0.0,2013.0697161061487,0,0,0,0,0,0,0,0,0.047516486711900854,0.001503388517841079,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.45395479303939507,-0.45395479303939507,-0.4416765124793746,-0.4416765124793746,-0.5633046421468458,-0.5633046421468458,0.1724116853791097,0.1724116853791097,0.3732457979297213,0.3732457979297213,-0.41460793971231313,-0.49057789844249927,-0.5492027451554596,-0.4880354406665909,-0.1275223103564031,-0.4472770846422348,-0.5163335203586462,-0.5571954757147606,-0.5107328490427651,-0.1589311482484034,9.300735822140311,9.300735822140311,9.06969224675423,9.06969224675423,11.645374983536612,11.645374983536612,5.616146578511589,5.616146578511589,7.9004584582419,7.9004584582419,8.583211612086984,10.02844627816279,11.313946560909883,9.976058484875551,5.336873949188686,9.174275479411634,10.574889900400322,11.500736327390797,10.453623455494991,5.52346104427437,148.13972761224278,148.13972761224278,0.0,164.5996973469364,0.0,148.13972761224278,164.5996973469364,0,0
+2017/04/06 08:00:00,163.34353232075634,0,942.8754184551736,0,0,0,0.0,0.0,11.435487997441953,0.0,83.2008179303116,0,39.380909295966944,0.058900207807609496,25.835441686773944,0,0,23.80683829758741,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2293.069253185137,0.0,1716.0562868167467,0.0,1444.1134982110405,0.0,204.16504206119146,0.0,0.0,0.0,2368.9595402795085,0.0,1809.6900933477168,0.0,1490.537287812521,0.0,289.13117711286685,0,0,0,0,0,0,0,0,0.05019938567266174,0.0015882735708247096,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4231617176291222,-0.4231617176291222,-0.469257325974879,-0.469257325974879,-0.5631438342730556,-0.5631438342730556,0.582171677241904,0.582171677241904,-0.14653700908199097,-0.14653700908199097,-0.3025047909528699,-0.46958383063314435,-0.520928013066864,-0.36736694943759607,-0.24883793530090825,-0.3252055556340136,-0.48856849111953926,-0.525131656709389,-0.35633705864090015,-0.28031316604364437,8.733543625612484,8.733543625612484,9.59776953471146,9.59776953471146,11.641547007016342,11.641547007016342,12.102284756889063,12.102284756889063,5.444927387532104,5.444927387532104,6.901667762832091,9.60421714404707,10.675383660359813,7.80934852901008,6.285221705999376,7.199033782291195,9.987018962696837,10.768128771092009,7.642381635644483,6.632036916009923,163.34353232075634,163.34353232075634,0.0,181.49281368972927,0.0,163.34353232075634,181.49281368972927,0,0
+2017/04/06 09:00:00,181.35829803561927,0,950.830291332053,0,0,0,0.10689615399959884,0.0,11.393746067737203,0.0,106.27511244621549,0,39.380909295966944,0.03422441750807877,20.735434451737703,0,0,16.14450541270757,562.0370845376322,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,413.980447458183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1709.1266740717301,0.0,977.9900661563215,0.0,137.92612514461499,0.0,3.3620713944878178,0.0,0.0,0.0,1767.9912230019781,0.0,959.2573779919428,0.0,0.0,0.0,17.781575831953315,0,0,0,0,0,0,0,0,0.050622908996854156,0.001601673553582048,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.40685793693110045,-0.40685793693110045,-0.45978679017832624,-0.45978679017832624,-0.5112915056416447,-0.5112915056416447,0.8990996786822363,0.8990996786822363,-0.23689892383457412,-0.23689892383457412,-0.17467468153345792,-0.4647868191177309,-0.5066316741641593,-0.31695798756923454,-0.2756404700537609,-0.16136612015684662,-0.4724518504588338,-0.5035799654122884,-0.2821046050324086,-0.30043089039295445,8.449713338252565,8.449713338252565,9.412750069518808,9.412750069518808,10.46565864390682,10.46565864390682,22.069320938771753,22.069320938771753,6.164570441508545,6.164570441508545,5.6324487626988,9.509950810971404,10.365684676354263,7.0884714667179765,6.57791231751159,5.539642064887275,9.661050447455324,10.300720768714768,6.653031643460423,6.875588258370229,181.35829803561927,181.35829803561927,0.0,201.50922003957697,0.0,181.35829803561927,201.50922003957697,0,0
+2017/04/06 10:00:00,212.59778864006248,0,1030.6289448267532,0,0,0,0.5368624015253031,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.01638052076552103,18.538075432400635,0,0,8.221534554074308,561.0328276096052,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2144.681657895493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1274.9181577125619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1283.1431621548822,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05487144841630663,0.0017360943793372555,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.26603740097045936,-0.26603740097045936,-0.38212604758314606,-0.38212604758314606,-0.486526820551466,-0.486526820551466,1.0047076677653606,1.0047076677653606,-0.17835222548641133,-0.17835222548641133,-0.002517467652052438,-0.4554173918680499,-0.4825153008234199,-0.25750305069136037,-0.2995913190710064,-0.012154238740769412,-0.45161631124586454,-0.4668860299390764,-0.19371826372067164,-0.31348792489240923,6.469567571031135,6.469567571031135,8.040879097418795,8.040879097418795,9.94510501700941,9.94510501700941,26.31829031509446,26.31829031509446,5.659396886138836,5.659396886138836,5.000131192424121,9.32869018907489,9.863275588514398,6.376539811396327,6.865082277571744,5.003058012407848,9.256232123177497,9.551080508314328,5.778104539548707,7.042815146518791,212.59778864006248,212.59778864006248,0.0,236.21976515562497,0.0,212.59778864006248,236.21976515562497,0,0
+2017/04/06 11:00:00,227.55054914415288,0,1076.807616082465,0,0,0,0.6827864520305698,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,0.00030699389841350774,20.866972505449368,0,0,0.15520228500984964,562.0423023655651,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2758.0290399313153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05733003507881039,0.0018138823475626002,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.051106571994296225,-0.051106571994296225,-0.3587260604903286,-0.3587260604903286,-0.3978063106395751,-0.3978063106395751,0.9944688742372535,0.9944688742372535,-0.032790535843380764,-0.032790535843380764,-0.00029422982027538095,-0.41748933761280577,-0.4107604026625381,-0.20528436601173833,-0.22557824088465375,0.12698664456756936,-0.3910864891184195,-0.3869114110574577,-0.12272405317902643,-0.24201846819126965,5.054073592303283,5.054073592303283,7.678106012837446,7.678106012837446,8.297049480741734,8.297049480741734,25.887338185292833,25.887338185292833,5.022258650441984,5.022258650441984,5.000001792066868,8.633501610135994,8.516613982371538,5.873965676047561,6.055694563924064,5.33404776434233,8.185980337666791,8.117944330387743,5.311983387141865,6.2155734624898,227.55054914415288,227.55054914415288,0.0,252.8339434935032,0.0,227.55054914415288,252.8339434935032,0,0
+2017/04/06 12:00:00,204.76929447074107,0,1020.8896608956214,0,0,0,0.7416110624415223,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,4.1206501244918034e-05,18.515944319610284,0,0,0.020852886355715375,541.74904908992,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3011.0812283341857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05435292172586065,0.0017196885562944632,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2463260503296997,0.2463260503296997,-0.3483810321907513,-0.3483810321907513,-0.3435331490818713,-0.3435331490818713,0.9682829735277333,0.9682829735277333,0.168185922775164,0.168185922775164,0.12148718926683366,-0.2724099569745201,-0.32540963980118953,-0.11507994872270816,-0.14548469244528195,0.2514687327132066,-0.22139123757374327,-0.2574454818410219,-0.08290507539112078,-0.15381003879932167,6.259340131403718,6.259340131403718,7.5251609378206155,7.5251609378206155,7.455054191413325,7.455054191413325,24.803422130339797,24.803422130339797,5.586276937806048,5.586276937806048,5.305722405015942,6.541030958081777,7.201806180022373,5.274306774330398,5.4385541744219665,6.312612841434188,6.016787889645784,6.375922696461473,5.14232350717063,5.490236160338796,204.76929447074107,204.76929447074107,0.0,227.5214383008234,0.0,204.76929447074107,227.5214383008234,0,0
+2017/04/06 13:00:00,202.24772706963103,0,983.8251270972393,0,0,0,0.7039089901548197,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,3.0404510312045326e-05,16.32156340833753,0,0,0.015389339070329645,540.1803313513673,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2848.915913181499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05237957849248749,0.0016572533519242385,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3078577014565732,0.3078577014565732,-0.3170011292074073,-0.3170011292074073,-0.2679207608070071,-0.2679207608070071,0.9705555453145923,0.9705555453145923,0.23846962421985873,0.23846962421985873,0.08095106337872761,-0.16559775523170017,-0.2981724375162748,-0.10877319760205403,-0.15022521355024385,0.22118248285402897,-0.07547422213376036,-0.17211436091230176,-0.07141659248431899,-0.1535656518465257,6.969821864331337,6.969821864331337,7.089042299926064,7.089042299926064,6.490509947713605,6.490509947713605,24.896441471689357,24.896441471689357,6.18010138697835,6.18010138697835,5.1356917109479525,5.568350328863133,6.8473948279652035,5.245049526224037,5.467628480548143,6.014867320553805,5.117947543148915,5.614020590858743,5.105603497458915,5.4886779338973355,202.24772706963103,202.24772706963103,0.0,224.71969674403448,0.0,202.24772706963103,224.71969674403448,0,0
+2017/04/06 14:00:00,186.18403408762316,0,926.3060838968047,0,0,0,0.6336060193297838,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,1.8189988910596513e-05,14.08155853056475,0,0,0.007698122926389306,518.1593318796208,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2549.552533799305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049317222027757596,0.001560362528018728,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2974536800793422,0.2974536800793422,-0.1714358841397423,-0.1714358841397423,-0.22025208837887963,-0.22025208837887963,0.9604145515511071,0.9604145515511071,0.2673901849803269,0.2673901849803269,0.025086059232808176,-0.12235751821878779,-0.2861335988474061,-0.15825279336614215,-0.20474582105525374,0.16173517899203707,0.008998779493899947,-0.1802333736037255,-0.07990468687591916,-0.2135382111255165,6.838467435971353,6.838467435971353,5.609183022935682,5.609183022935682,6.006329785227479,6.006329785227479,24.48291168023475,24.48291168023475,6.484594994551358,6.484594994551358,5.013027407458566,5.310121364392373,6.7007440594507415,5.518997207175374,5.8693779539288045,5.542116122247933,5.0016762918576205,5.6733996898346675,5.1322054781990545,5.945796678924609,186.18403408762316,186.18403408762316,0.0,206.87114898624796,0.0,186.18403408762316,206.87114898624796,0,0
+2017/04/06 15:00:00,179.47669051598425,0,926.3148830297699,0,0,0,0.6697994566085932,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.2838112608094436e-05,14.038659870211482,0,0,0.010517653661003056,518.1653114818513,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2701.3779786149016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049317690500114246,0.00156037735015754,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2901707861341188,0.2901707861341188,0.0317902496415313,0.0317902496415313,-0.15164472619721978,-0.15164472619721978,0.9576190425177377,0.9576190425177377,0.3198628018200101,0.3198628018200101,-0.022047182219883152,-0.03750530652815571,-0.23554767374836888,-0.18421253634541976,-0.2579752967143402,0.10038523682715815,0.09910307809274845,-0.2572052996237673,-0.07668611109519251,-0.26728215497466207,6.749240758738793,6.749240758738793,5.020921288077872,5.020921288077872,5.476516619265141,5.476516619265141,24.36962262801393,24.36962262801393,7.127082920065902,7.127082920065902,5.01006228236588,5.029120156028952,6.151292271008131,5.703506377332943,6.381607362198594,5.208696893064811,5.203397515289524,6.373349543972424,5.12176672054882,6.483392109790813,179.47669051598425,179.47669051598425,0.0,199.41854501776027,0.0,179.47669051598425,199.41854501776027,0,0
+2017/04/06 16:00:00,202.4578267091829,0,999.8898540151181,0,0,0,0.7642818940869068,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,5.971847719041875e-06,14.040852317214593,0,0,0.0013867679459744677,538.5138845840985,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3106.6011715152604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05323487645284569,0.0016843143831981136,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.31158907346564674,0.31158907346564674,0.29200346084897405,0.29200346084897405,-0.027011363787800214,-0.027011363787800214,0.9652827782326215,0.9652827782326215,0.4785013155675037,0.4785013155675037,-0.02436110346802357,-0.05674797196355716,-0.22890487838028634,-0.19282138013729153,-0.18664238261708668,0.0761271828328488,0.06358624175098854,-0.24112723391736818,-0.0999960297362333,-0.19660739198309585,7.018047433978921,7.018047433978921,6.771482875325049,6.771482875325049,5.015103864805013,5.015103864805013,24.680927994754583,24.680927994754583,9.782090858791548,9.782090858791548,5.012285315773568,5.066672116442106,6.087130486358831,5.770904749501412,5.722215961792045,5.119997733431248,5.083711640176361,6.2066154972949334,5.207081021304262,5.801525810603096,202.4578267091829,202.4578267091829,0.0,224.953140787981,0.0,202.4578267091829,224.953140787981,0,0
+2017/04/06 17:00:00,209.58190363722136,0,1003.1369607021945,0,0,0,0.7745663498182902,0.0,16.90307355543791,0.0,133.89528835348938,0,39.380909295966944,1.904400366588242e-05,18.628047038505173,0,0,0.009642583204899052,541.752735455916,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3151.244028972781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05340775481801921,0.0016897841341660424,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.26122891973747103,0.26122891973747103,0.29067345066333317,0.29067345066333317,0.010307234210519621,0.010307234210519621,0.9645818508354375,0.9645818508354375,0.547727958089211,0.547727958089211,-0.0480537643851068,-0.07194285789909853,-0.15773721494141468,-0.15262400549129002,-0.10445355461817582,0.029060212389545967,0.03326217046944628,-0.18249056143657433,-0.1144622512450042,-0.11571688921588254,6.416776201236118,6.416776201236118,6.755327191218441,6.755327191218441,5.002199212511272,5.002199212511272,24.652360575079143,24.652360575079143,11.279783485186059,11.279783485186059,5.047805807620534,5.107165967046171,5.515617327571718,5.482697198484402,5.225963760569627,5.017482151245048,5.022903590955892,5.69039662114551,5.27136826442019,5.2773534274308105,209.58190363722136,209.58190363722136,0.0,232.86878181913482,0.0,209.58190363722136,232.86878181913482,0,0
+2017/04/06 18:00:00,193.54088664664502,0,1025.5591461458525,0,0,0,0.4898039984065869,0.0,17.37545085433467,0.0,110.93442390708215,0,39.380909295966944,3.851987900907841e-05,25.360260070975627,0,0,0.019508450633952745,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1947.1830945586687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0546015285793018,0.0017275543038440693,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.05832948371728409,0.05832948371728409,-0.0700227090137126,-0.0700227090137126,-0.11859159280466047,-0.11859159280466047,0.9406323877317077,0.9406323877317077,0.4625110265337023,0.4625110265337023,-0.048452163823115776,0.009540380003436787,-0.24065680374673667,-0.15324567364897412,-0.09958736224850043,-0.005773774657596547,0.04504418093429888,-0.193103930819991,-0.11835285281192352,-0.12804463336736102,5.070440649650195,5.070440649650195,5.101520569510029,5.101520569510029,5.2913136067044775,5.2913136067044775,23.6878416306901,23.6878416306901,9.465575814412546,9.465575814412546,5.048601864715209,5.001884143421435,6.20190056511106,5.4866414941174355,5.2053911234291945,5.000690082709369,5.042004688251765,5.773169315653803,5.290141159318466,5.33964122556084,193.54088664664502,193.54088664664502,0.0,215.04542960738334,0.0,193.54088664664502,215.04542960738334,0,0
+2017/04/06 19:00:00,192.01482889559134,0,990.0765070436777,0,0,0,0.37272100460241137,0.0,23.51198600882507,0.0,101.68988858149199,0,39.380909295966944,5.3734498536686086e-05,27.059270270206373,0,0,0.027221861003217978,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1467.4644960268831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05271240659127468,0.0016677838009695426,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.11703152516805991,-0.11703152516805991,-0.2972087758171778,-0.2972087758171778,-0.2640341166413323,-0.2640341166413323,0.9219275481125687,0.9219275481125687,0.32967969357060983,0.32967969357060983,-0.0580009430733233,-0.07172959516009597,-0.2580007326494936,-0.15083250454083993,-0.1381090291506424,-0.10591867869796108,-0.09927394222919658,-0.24437942820579778,-0.15396225579883419,-0.17276297451443065,5.283694973534438,5.283694973534438,6.835430567753548,6.835430567753548,6.447455611591508,6.447455611591508,22.950343738507343,22.950343738507343,7.260218206922872,7.260218206922872,5.0696492517648295,5.106531411314364,6.381880574986894,5.471420702043147,5.395178175396495,5.23235038164718,5.204099784534662,6.239465174489808,5.491207962798569,5.618663187740424,192.01482889559134,192.01482889559134,0.0,213.34980988399036,0.0,192.01482889559134,213.34980988399036,0,0
+2017/04/06 20:00:00,208.76656626184865,0,936.3570720298774,0,0,0,0.14279070570223515,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.00026803786102051524,23.007761820430886,0,0,0.13592100079396402,581.3176259036419,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,551.9194241538501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04985234408079631,0.0015772934167660319,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.31733536366451315,-0.31733536366451315,-0.28840497892249684,-0.28840497892249684,-0.4322888357919042,-0.4322888357919042,0.8969233097785886,0.8969233097785886,0.18137917767606823,0.18137917767606823,-0.08023801448657268,-0.15886243231301087,-0.3286840033463131,-0.24178692626931605,-0.12550638788411905,-0.14694547229673338,-0.11796828692512007,-0.29789339609598287,-0.202028153548925,-0.17085892003022854,7.093467430635556,7.093467430635556,6.727944339185157,6.727944339185157,8.897413158736398,8.897413158736398,21.986427725508705,21.986427725508705,5.682001166903547,5.682001166903547,5.133311103661001,5.523007994023416,7.246528556031109,6.213242983026845,5.326299929610059,5.447413610221972,5.288257544151122,6.843926375651705,5.846411981586243,5.605084352727374,208.76656626184865,208.76656626184865,0.0,231.96285140205404,0.0,208.76656626184865,231.96285140205404,0,0
+2017/04/06 21:00:00,197.62091269176312,0,919.5635849447633,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.0009728744593937893,25.72400236668418,0,0,0.49500478717719293,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,180.965816292277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.986379250084712,0.0,0.0,0,0,0,0,0,0,0,0,0.048958246389337,0.0015490047890457615,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4532386801875967,-0.4532386801875967,-0.3351598925401876,-0.3351598925401876,-0.5445857273889867,-0.5445857273889867,0.86135664596477,0.86135664596477,0.017004484092235376,0.017004484092235376,-0.13801623746605168,-0.2372309263460511,-0.3730815734287115,-0.32119921257654205,-0.14289071933532466,-0.16586587349871204,-0.19167469316384228,-0.32551081039654406,-0.29745302152024505,-0.20445941984045204,9.287082467320957,9.287082467320957,7.336317931820503,7.336317931820503,11.207308881722568,11.207308881722568,20.659239080081164,20.659239080081164,5.005985678642816,5.005985678642816,5.394646890885596,6.1678446205696815,7.897893311926865,7.144966886364145,5.423040997007249,5.570194446305749,5.761748615145095,7.203181194881822,6.8384592662905845,5.866943120519224,197.62091269176312,197.62091269176312,0.0,219.5787918797368,0.0,197.62091269176312,219.5787918797368,0,0
+2017/04/06 22:00:00,139.8990064656521,0,732.1658417207842,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.020053366687217463,20.694020291188632,0,0,10.421657882664556,562.037597531671,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,539.9533049194301,0.0,348.171945605912,0.0,1020.8396184882598,0.0,477.5182635105804,0.0,0.0,0.0,310.9268193507619,0.0,63.43438379732759,0.0,849.2154331378542,0.0,273.3871639348699,0,0,0,0,0,0,0,0,0.038981051733334625,0.001233333304808216,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4906023117849207,-0.4906023117849207,-0.4644963153528435,-0.4644963153528435,-0.5841574896921481,-0.5841574896921481,0.6700957881503742,0.6700957881503742,-0.262847696451425,-0.262847696451425,-0.1735372535064811,-0.32643656166750534,-0.419513613183676,-0.3801748007836447,-0.2630299512097931,-0.20576122437861794,-0.31899026296215865,-0.4038444563066621,-0.38499100810226217,-0.3011055450771598,10.02895067220588,10.02895067220588,9.504273943907052,9.504273943907052,12.151274213383587,12.151274213383587,14.435277731682277,14.435277731682277,6.434439745391728,6.434439745391728,5.624228244596239,7.215783286637404,8.669044805699997,8.009736142755443,6.436435356316082,5.878038036691052,7.115447367843146,8.398498903214701,8.086899979246738,6.884052149528529,139.8990064656521,139.8990064656521,0.0,155.44334051739122,0.0,139.8990064656521,155.44334051739122,0,0
+2017/04/06 23:00:00,90.88842226420118,0,612.7601831924061,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.08296766854425092,11.862498334364366,0,0,43.682621052233486,515.8420333713565,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1558.1149860968737,0.0,956.2270401025714,0.0,2024.6995582376287,0.0,55.4675438536186,0.0,0.0,0.0,1442.138858044366,0.0,703.6018446105321,0.0,1942.8005808088087,0.0,26.92416729246858,0,0,0,0,0,0,0,0,0.03262380602871646,0.0010321944820798987,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6186930325176861,-0.6186930325176861,-0.5875384165624592,-0.5875384165624592,-0.6555014133552587,-0.6555014133552587,0.43771775100263566,0.43771775100263566,-0.3775152203890884,-0.3775152203890884,-0.27500149329186807,-0.37781469312169014,-0.449238818623503,-0.41940129662021597,-0.3111995714902108,-0.3076886501091513,-0.3903601620635239,-0.451963079357803,-0.43580598687869787,-0.3413804575557439,13.030625796359686,13.030625796359686,12.235074453044831,12.235074453044831,14.024821903776314,14.024821903776314,8.99658092149734,8.99658092149734,7.967549508798996,7.967549508798996,6.57058249861565,7.972284705548304,9.211227197858676,8.667068094488044,7.012985824195738,6.967650938145212,8.174090778746873,9.262816616366123,8.961515114178411,7.424243706951046,90.88842226420118,90.88842226420118,0.0,100.98713584911242,0.0,90.88842226420118,100.98713584911242,0,0
+2017/04/07 00:00:00,39.33927667528263,0,545.0676057030781,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5786432215657954e-09,9.541955676280802,0,0,0.0,491.832076934262,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029019803062841208,0.0009181663404369054,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3929518474246636,-0.3929518474246636,-0.4506283051657704,-0.4506283051657704,-0.5297453722557794,-0.5297453722557794,0.4602019035575068,0.4602019035575068,-0.11285179992846706,-0.11285179992846706,-0.1762543137774111,-0.2857549307751905,-0.4916715812804604,-0.37710427968225135,-0.07144985451691416,-0.23447516370270577,-0.30478089500497485,-0.4854475281357804,-0.40236600782867216,-0.14869216493160123,8.21661850065857,8.21661850065857,9.237500059848756,9.237500059848756,10.870801807503682,10.870801807503682,9.420778906435615,9.420778906435615,5.263781562915312,5.263781562915312,5.643954763095962,6.696230604815625,10.051067657940322,7.961058033630195,5.105701911729497,6.140807715495072,6.9304993542240965,9.923020661582811,8.373514641527024,5.4581236981167365,39.33927667528263,39.33927667528263,0.0,43.710307416980704,0.0,39.33927667528263,43.710307416980704,0,0
+2017/04/07 01:00:00,23.72209420783896,0,38.213653180900536,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249987841611682,0,0,0.0,2.7233006683563974,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002034523200458813,6.437089588285986e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.38391866759797133,-0.38391866759797133,-0.45058520029389,-0.45058520029389,-0.5444950221067018,-0.5444950221067018,0.3717750567066529,0.3717750567066529,0.08887807632736726,0.08887807632736726,-0.23424269385076776,-0.346734125773129,-0.5739675409940762,-0.4481923436427144,0.012339911124265647,-0.28092291172687006,-0.3541834329356404,-0.5695946929394484,-0.46814595608164694,-0.11046512531715214,8.069633548739162,8.069633548739162,9.236683770714635,9.236683770714635,11.205223146003604,11.205223146003604,7.877526815716109,7.877526815716109,5.1635774891810655,5.1635774891810655,6.138541521695728,7.501232457221747,11.901704659127432,9.191494933420529,5.003152157215311,6.639167618858679,7.610385201596415,11.795987454195398,9.575857332135215,5.252736280506994,23.72209420783896,23.72209420783896,0.0,26.3578824531544,0.0,23.72209420783896,26.3578824531544,0,0
+2017/04/07 02:00:00,28.344437497878555,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250744114056599,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3543979881970578,-0.3543979881970578,-0.4260127124973757,-0.4260127124973757,-0.5243013710442481,-0.5243013710442481,0.35391015715275337,0.35391015715275337,0.18100890331877448,0.18100890331877448,-0.23582316724811006,-0.35202401580646975,-0.5942216484351672,-0.45870002984760755,0.03666317243477992,-0.30116557616261114,-0.37706297229338764,-0.6067507735335437,-0.49747395693982366,-0.09665004927885121,7.61356399828469,7.61356399828469,8.784346855024964,8.784346855024964,10.74974953972469,10.74974953972469,7.60633925282643,7.60633925282643,5.679215546937655,5.679215546937655,6.153993210865252,7.578500883030898,12.402185667979893,9.391765838122652,5.027827047233146,6.88480620286829,7.960405914963886,12.720694339290617,10.171946144975962,5.19344889459407,28.344437497878555,28.344437497878555,0.0,31.493819442087283,0.0,28.344437497878555,31.493819442087283,0,0
+2017/04/07 03:00:00,23.7222575573832,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251621337054077,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3689912482759009,-0.3689912482759009,-0.44562385082899614,-0.44562385082899614,-0.5444228996127507,-0.5444228996127507,0.28974477284306677,0.28974477284306677,0.2473716237908896,0.2473716237908896,-0.2777776888400396,-0.3937658726633204,-0.644236418882832,-0.5031303328396528,0.06987853185836444,-0.34926335443830714,-0.4255197296941315,-0.6657562056413151,-0.5500068529333658,-0.08975891175292745,7.834374475865715,7.834374475865715,9.143263253624752,9.143263253624752,11.203564969350964,11.203564969350964,6.744090798842748,6.744090798842748,6.270081135486194,6.270081135486194,6.602553818090925,8.23003533038829,13.71431412195733,10.291183143757635,5.101102845958593,7.538027952220972,8.775537224575828,14.312266449516102,11.332613231707128,5.166837027526029,23.7222575573832,23.7222575573832,0.0,26.358063952648003,0.0,23.7222575573832,26.358063952648003,0,0
+2017/04/07 04:00:00,40.606948502210244,0,186.25056305297386,0,0,0,0.0,0.000947825204522284,4.633261998087618,9.319298099999997,25.555573451546493,0,0.2894531878149049,0.23081555857558514,0.5775983809811215,0,0,97.52468177161354,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4738375065370898,973.97793157017,0.0,105.85252845702902,0.0,0.0,0.0,0.0,0.0,0.0,0.47398769798519425,957.0356083095188,0.0,204.66822308300493,0.0,0.0,0,0,0,0,0,0,0,0,0.009916117933974051,0.0003137390593265564,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.31215641370558367,-0.31215641370558367,-0.39079308056270257,-0.39079308056270257,-0.4861882436158115,-0.4861882436158115,0.3170330670538729,0.3170330670538729,0.3735541904188336,0.3735541904188336,-0.2873688450688007,-0.40384241195158166,-0.5457571039638083,-0.4910502243296434,0.09985944914382754,-0.3680865816803515,-0.4444676724185618,-0.5619855447691005,-0.5229288999038147,-0.06908016463737084,7.025431557494954,7.025431557494954,8.1811746929651,8.1811746929651,9.938171683075538,9.938171683075538,7.08946493975391,7.08946493975391,7.905278581188554,7.905278581188554,6.715509392075006,8.398464291121968,11.234276303199835,10.038209376796758,5.206515469928618,7.820422194455659,9.12164488504284,11.614007452886227,10.71943390252855,5.098805338997906,40.606948502210244,40.606948502210244,0.0,45.11883166912249,0.0,40.606948502210244,45.11883166912249,0,0
+2017/04/07 05:00:00,73.44583311382091,0,212.9421150752648,0,0,0,0.09950761301576959,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.035317284815417446,0.0,0.5249651860338329,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,316.87240013992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.08309851682604721,-0.08309851682604721,-0.1623574958865647,-0.1623574958865647,-0.2492112816324622,-0.2492112816324622,0.5011258771290049,0.5011258771290049,0.691990108571249,0.691990108571249,-0.23183970468016027,-0.3470909972278216,-0.5732227667829138,-0.44924829590678933,0.21827416174889477,-0.30097814682349966,-0.3772594155633016,-0.5691569823816394,-0.4850585754335014,0.07740308109873055,5.142988650145284,5.142988650145284,5.54630080200549,5.54630080200549,6.289091170666509,6.289091170666509,10.248770845936619,10.248770845936619,15.068329241332023,15.068329241332023,6.115249253814966,7.506407780609109,11.883640517133074,9.211406116115697,5.988300353580669,6.882452398777218,7.963507809898488,11.785451112744823,9.915074280634883,5.1240548701147475,73.44583311382091,73.44583311382091,0.0,81.60648123757879,0.0,73.44583311382091,81.60648123757879,0,0
+2017/04/07 06:00:00,99.85935869472397,0,710.6740038956921,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.48856661773307847,2.5203557921921314e-09,0.5250884260775482,0,0,0.0,479.9867125641552,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03783681036837915,0.001197130305623051,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.10536270848667333,0.10536270848667333,0.025294437411637775,0.025294437411637775,-0.05855614229650608,-0.05855614229650608,0.660218098644416,0.660218098644416,0.8327234285608912,0.8327234285608912,-0.15412613453262053,-0.2689010182561811,-0.49982945699363873,-0.37164544374213526,0.3232798228337818,-0.21707651963074023,-0.2941609760641633,-0.49688863947861495,-0.40309232491576646,0.18848647937272575,5.229916358316814,5.229916358316814,5.013244737752245,5.013244737752245,5.070989238510137,5.070989238510137,14.156465995019417,14.156465995019417,19.6287758560363,19.6287758560363,5.492255296469594,6.501469221966545,10.22143234576464,7.875510326759411,7.1729604644765175,5.977463136689707,6.797849204955199,10.159686518508579,8.385776964775275,5.736579936458114,99.85935869472397,99.85935869472397,0.0,110.95484299413773,0.0,99.85935869472397,110.95484299413773,0,0
+2017/04/07 07:00:00,145.87403905658127,0,866.5511085796479,0,0,0,0.0,0.0,8.376753423314472,0.0,69.33401494192633,0,39.38090929596695,0.002151034207858862,27.06422275993855,0,0,0.7180571908776442,599.6554075446892,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,367.5295743715306,0.0,0.0,0.0,50.453944923375005,0.0,0.0,0.0,0.0,0.0,132.74587720851295,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046135822880963594,0.0014597052766323034,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2665876233019212,-0.2665876233019212,-0.3406931494771615,-0.3406931494771615,-0.4588374241437206,-0.4588374241437206,0.55317633239445,0.55317633239445,0.08201442023424702,0.08201442023424702,-0.24719769559815555,-0.39304814042545316,-0.46326911015931954,-0.3682007498486933,-0.0491516141211175,-0.28814804470431205,-0.41164284544900004,-0.4598604683825762,-0.34495464913539275,-0.1298575879900375,6.475670426276494,6.475670426276494,7.41444805095,7.41444805095,9.394415973599308,9.394415973599308,11.406462941047366,11.406462941047366,5.139281038237527,5.139281038237527,6.2682912143907,8.218204132408374,9.480332680623349,7.822181037269303,5.050015368803997,6.724856570024457,8.531832275056246,9.41417456097848,7.475507424946116,5.349334312178669,145.87403905658127,145.87403905658127,0.0,162.08226561842363,0.0,145.87403905658127,162.08226561842363,0,0
+2017/04/07 08:00:00,159.88916999325565,0,919.0831168386279,0,0,0,0.11398522222645682,0.0,11.471581537141494,0.0,83.2008179303116,0,39.380909295966944,4.314270247468204e-05,25.72183286490666,0,0,0.014536681041603319,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,441.07707780959595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048932665911480405,0.0015481954405574428,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.33261277495943264,-0.33261277495943264,-0.46936330070477944,-0.46936330070477944,-0.5120822754069799,-0.5120822754069799,0.809633019615943,0.809633019615943,0.04217693670943404,0.04217693670943404,-0.1754246387480238,-0.3817004435586342,-0.3965518527399225,-0.26811566407036513,-0.18645836380436542,-0.18722731229548104,-0.35426351793924443,-0.3847569818295521,-0.2338379901113129,-0.26986235815831217,7.30078933745537,7.30078933745537,9.599861753649805,9.599861753649805,10.48271734118309,10.48271734118309,18.822769970563854,18.822769970563854,5.036826935106987,5.036826935106987,5.637898449166315,8.034072367165606,8.276168487307302,6.492685741607048,5.720790403823486,5.726756692197128,7.611571491702918,8.08312758547659,6.134601745135882,6.5122563120839345,159.88916999325565,159.88916999325565,0.0,177.6546333258396,0.0,159.88916999325565,177.6546333258396,0,0
+2017/04/07 09:00:00,178.02910692394434,0,934.6364957167035,0,0,0,0.4496481813668071,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,1.8669843561521258e-05,20.725006689726943,0,0,0.005376258526300242,561.9824180764639,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1781.878152297128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04976073932344058,0.0015743951060970798,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.10309163465053447,-0.10309163465053447,-0.3777430204727376,-0.3777430204727376,-0.3220593458061855,-0.3220593458061855,0.9280715017227176,0.9280715017227176,0.2590590722872181,0.2590590722872181,-0.21433981551895392,-0.2715532800561234,-0.363947313805421,-0.18815897000951315,-0.10487237477709199,-0.23486617001743973,-0.2544009223181724,-0.3309474775442949,-0.13739630450172197,-0.1797926426071096,5.220106948595088,5.220106948595088,7.9711510850911225,7.9711510850911225,7.156517302584817,7.156517302584817,23.191047916292376,23.191047916292376,6.393272556290199,6.393272556290199,5.952924779910603,6.53132443569892,7.757028946953312,5.734018537174165,5.227780341344456,6.144624491116545,6.343484892637861,7.277709724096312,5.39110661839652,5.670105746453217,178.02910692394434,178.02910692394434,0.0,197.8101188043826,0.0,178.02910692394434,197.8101188043826,0,0
+2017/04/07 10:00:00,209.30368355752015,0,1009.0316617689462,0,0,0,0.6813047045399624,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,5.44468505957078e-06,18.547878325378353,0,0,0.0018344471528941974,547.6552446587195,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2749.054998837202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053721593069057445,0.0016997137576655855,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.11904314775161594,0.11904314775161594,-0.23606082509642456,-0.23606082509642456,-0.14368068427351474,-0.14368068427351474,0.9617293461647984,0.9617293461647984,0.451999088485231,0.451999088485231,-0.18624470813818414,-0.3222202397874741,-0.35260650014970607,-0.1776971081713798,-0.10809678563842824,-0.18705504463710856,-0.30331250595309317,-0.3006305202062132,-0.11707432107961276,-0.1738613560731617,5.293537660597309,5.293537660597309,6.156325769146548,6.156325769146548,5.427735697910265,5.427735697910265,24.536299998925998,24.536299998925998,9.26350066044624,9.26350066044624,5.719137029405587,7.1586813709450325,7.58708186583813,5.654555031803866,5.242009722344065,5.725417916797838,6.911874071429864,6.878090712669504,5.283902619488742,5.626565127370043,209.30368355752015,209.30368355752015,0.0,232.5596483972446,0.0,209.30368355752015,232.5596483972446,0,0
+2017/04/07 11:00:00,226.79134042277622,0,1089.5664078047923,0,0,0,2.0454344005926557,0.0,16.73568395689411,0.0,147.76209134187457,0,39.380909295966944,2.8559522854701455e-09,20.867221424591897,0,0,0.0,574.9562963729023,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3898.671602455837,2138.8942102032142,0.0,0.0,0.0,0.0,1313.559541896235,0.0,0.0,0.0,0.0,59.62458449927084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05800932260062918,0.0018353745312504847,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.49111393419883526,0.49111393419883526,0.0539860321441617,0.0539860321441617,0.1825465135936876,0.1825465135936876,0.9893622155038303,0.9893622155038303,0.7460760201159587,0.7460760201159587,0.11733189923486824,-0.1596043526562816,-0.17759876947547049,-0.027496807271755942,0.14444683865733202,0.1444857671671115,-0.13800428253090602,-0.11047898254203396,0.03619456391372895,0.1071190123546848,10.039527013621182,10.039527013621182,5.060339321541747,5.060339321541747,5.6908206503998855,5.6908206503998855,25.673889148301143,25.673889148301143,16.720824203738943,16.720824203738943,5.285153997252806,5.5279099477773315,5.6538297744501875,5.015651649748477,5.4323137075182615,5.432546969711353,5.394578468218896,5.25279972742797,5.027120211627562,5.237649181779844,226.79134042277622,226.79134042277622,0.0,251.99037824752912,0.0,226.79134042277622,251.99037824752912,0,0
+2017/04/07 12:00:00,218.8708636615479,0,1020.7806354889038,0,0,0,14.73224279356387,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.802348972159731e-09,18.522146782632944,0,0,0.0,541.6608765695579,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117.9634441565183,0.0,0.0,4306.285683253029,9445.913370215178,2114.4200209770624,53.18570428873177,263.996560318722,68.33614490945749,15219.210947102507,2494.621755481372,110.6145136915963,872.4426383174969,219.98212264204534,14614.805298971627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05434711713245115,0.001719504903005122,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7751291815106882,0.7751291815106882,0.2813919196758933,0.2813919196758933,0.4124779685477814,0.4124779685477814,0.990105127833306,0.990105127833306,0.8629282520196032,0.8629282520196032,0.320043770917184,0.09282536407671074,0.06870082435030597,0.16162486074823837,0.274849992422097,0.3693168162290485,0.13192187793621532,0.12800185927579896,0.21574783984137405,0.2607555983450405,17.66032720217551,17.66032720217551,6.644663127975292,6.644663127975292,8.546265233274255,8.546265233274255,25.704879600525487,25.704879600525487,20.71678479271776,20.71678479271776,7.129500233656714,5.178435567208368,5.09772294963409,5.541375987665489,6.568847128735314,7.8394041060513615,5.360537598169216,5.339414181239988,5.965510494887553,6.41163231800887,218.8708636615479,218.8708636615479,0.0,243.189848512831,0.0,218.8708636615479,243.189848512831,0,0
+2017/04/07 13:00:00,217.49354920324544,0,983.70203740417,0,0,0,15.861832311584418,0.0,16.67307048032785,0.0,129.2730206906943,0,39.380909295966944,2.7478262465948255e-09,16.304716421924084,0,0,0.0,540.0726309973685,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775.5580803267089,0.0,0.0,4129.396775794578,11663.019268594922,2554.678861443181,213.8488687715094,52.63041818836109,112.93496722062329,15183.893346925093,3213.857116916213,445.8564237154918,840.2721305958733,378.73195927718757,14308.926540998697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052373025106055134,0.0016570460073456058,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8111326487550768,0.8111326487550768,0.38847849622148595,0.38847849622148595,0.46922661530892934,0.46922661530892934,0.983063683485127,0.983063683485127,0.8443973571443033,0.8443973571443033,0.3272366440835829,0.149987131610092,0.09560618108493174,0.1766172802013942,0.2565973735637708,0.3773657678989414,0.20140992719364176,0.16054913049636102,0.23487865538178268,0.25050854402169415,18.874435563518574,18.874435563518574,8.143393837958044,8.143393837958044,9.597163316123172,9.597163316123172,25.41199693214533,25.41199693214533,20.04477851991203,20.04477851991203,7.2267039503515775,5.4661459715739085,5.189291085525099,5.646613313334356,6.3668474738078515,7.965187830476609,5.841230723015627,5.534185410409208,6.144746471673599,6.302581905773621,217.49354920324544,217.49354920324544,0.0,241.65949911471714,0.0,217.49354920324544,241.65949911471714,0,0
+2017/04/07 14:00:00,195.22701031645093,0,926.183204857084,0,0,0,9.652166066292862,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.6923748701173044e-09,14.105992899726042,0,0,0.0,518.0441509628265,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,483.6273573328792,0.0,0.0,3754.9907546236154,9790.441482957262,1424.451825356985,0.0,0.0,0.0,7940.047847529608,2160.176223647253,75.10115171712444,0.0,0.0,6899.134955177237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04931067985666555,0.0015601555382856447,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.80571738663096,0.80571738663096,0.49712367129285034,0.49712367129285034,0.49216229811102874,0.49216229811102874,0.9776055074955927,0.9776055074955927,0.8334194931406214,0.8334194931406214,0.31846133689739714,0.16997384312385824,0.05285437638380223,0.14041404258886725,0.23791406062285317,0.36576428132079514,0.2613036184488641,0.1613928151832244,0.22555135373238988,0.22893638807790465,18.68831505745584,18.68831505745584,10.16460754265779,10.16460754265779,10.061234271553317,10.061234271553317,25.18628046060536,25.18628046060536,19.653420538951053,19.653420538951053,7.108409694379475,5.598823882081689,5.05783585493073,5.408490661307567,6.17459618549546,7.784766060505561,6.417588860892167,5.539820829694278,6.055442377277302,6.087430464194412,195.22701031645093,195.22701031645093,0.0,216.91890035161214,0.0,195.22701031645093,216.91890035161214,0,0
+2017/04/07 15:00:00,180.73318435245324,0,926.1680980258911,0,0,0,1.7934215533755746,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,2.692374870117305e-09,14.066778244972962,0,0,0.0,518.0290441316337,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3267.7320936351007,3172.901882976941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0493098755577831,0.0015601300908296468,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7343636944327249,0.7343636944327249,0.5509040032043067,0.5509040032043067,0.43395622461454875,0.43395622461454875,0.958757884635494,0.958757884635494,0.8499877304157931,0.8499877304157931,0.24139444634399937,0.10555039669801632,-0.13267756132529354,-0.020385874254082417,0.1744982398489649,0.311795204038578,0.21525333766328136,-0.022712644620377382,0.061958711339393326,0.14830923851925812,16.35229950698529,16.35229950698529,11.353472883738974,11.353472883738974,8.927735983523917,8.927735983523917,24.41573767873919,24.41573767873919,20.24600554605246,20.24600554605246,6.209297798709798,5.230736617396246,5.364683146096368,5.0086029544698505,5.631170030693951,7.020728716409394,5.961080895524432,5.0106788948262135,5.079480450871699,5.455764859680841,180.73318435245324,180.73318435245324,0.0,200.8146492805036,0.0,180.73318435245324,200.8146492805036,0,0
+2017/04/07 16:00:00,204.47973272375563,0,979.3913787965641,0,0,0,2.576893891427934,0.0,16.86091074341296,0.0,131.64086955684016,0,39.380909295966944,2.692374870117305e-09,14.020149233415154,0,0,0.0,518.0167961334903,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3538.16104581141,5520.556063411905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05214352244885262,0.0016497847032482672,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6648611140283432,0.6648611140283432,0.44248975985977584,0.44248975985977584,0.461109764805411,0.461109764805411,0.9676456128749515,0.9676456128749515,0.8867293381955678,0.8867293381955678,0.16644504562803786,0.004750502710515159,-0.14979509804861404,-0.06892956255199369,0.1679411943280677,0.22048438142149276,0.08596730376961915,-0.0571436898337985,-0.009576072175097752,0.13625373566650226,14.28699533203806,14.28699533203806,9.084794876080707,9.084794876080707,9.43836399225529,9.43836399225529,24.777370187988723,24.777370187988723,21.600730890100465,21.600730890100465,5.57418822298213,5.000467154370526,5.464951920409419,5.0983749050249685,5.584569899943304,6.008457967133808,5.153035087762191,5.06760533766851,5.001898267647746,5.3846236034430035,204.47973272375563,204.47973272375563,0.0,227.19970302639513,0.0,204.47973272375563,227.19970302639513,0,0
+2017/04/07 17:00:00,211.38604793251963,0,1022.3519537098788,0,0,0,2.1684945776094193,0.0,17.346139882338,0.0,133.89528835348938,0,39.380909295966944,2.802348972159731e-09,18.595215820313502,0,0,0.0,560.9773710468049,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3500.0788040503458,4216.099090208387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054430775278421745,0.0017221517884290934,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.606875478490106,0.606875478490106,0.3741497341393167,0.3741497341393167,0.45294886013139646,0.45294886013139646,0.9646984344346741,0.9646984344346741,0.9179771205536755,0.9179771205536755,0.13851451725102196,-0.03307255245358817,-0.13574026455167376,-0.09382564335615554,0.22205182918496025,0.17582507389258392,0.02857774895209293,-0.05283459810417093,-0.048698937110726044,0.1896284751375345,12.723898765056518,12.723898765056518,7.914598310095627,7.914598310095627,9.28156305203349,9.28156305203349,24.657110797945336,24.657110797945336,22.796376059211795,22.796376059211795,5.39750402593009,5.022643189001229,5.381727820911223,5.18230341769997,6.022877447952084,5.64081788786811,5.016906464483725,5.057792572889511,5.049098249652218,5.745546361614899,211.38604793251963,211.38604793251963,0.0,234.87338659168847,0.0,211.38604793251963,234.87338659168847,0,0
+2017/04/07 18:00:00,199.77492378667276,0,1025.5396376952187,0,0,0,3.2492492865838014,0.0,21.314621688003783,0.0,110.93442390708215,0,39.380909295966944,2.960437629959996e-09,24.895719606075577,0,0,0.0,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3504.631795171932,2548.568926594433,0.0,0.0,0.0,0.0,2943.4555040026303,0.0,0.0,0.0,0.0,2146.866865903501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054600489934940016,0.0017275214418604574,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5461209126046556,0.5461209126046556,0.2983837202478415,0.2983837202478415,0.42843149485835913,0.42843149485835913,0.9614548560767096,0.9614548560767096,0.9200415990847165,0.9200415990847165,0.15680762122218622,-0.029074574321001526,-0.07360558020307456,-0.08145206825229379,0.28450059870440153,0.17875938865718113,0.006417572837889974,-0.0024360054904565623,-0.056023839076880626,0.2642539564147782,11.24266400488493,11.24266400488493,6.850023237095726,6.850023237095726,8.827721739904533,8.827721739904533,24.525148518864597,24.525148518864597,22.87676076880821,22.87676076880821,5.509551355635466,5.01749943597963,5.112177998908521,5.137376994466507,6.681323081891804,5.662415182601478,5.000852556661499,5.000122839340719,5.064981195185993,6.449873916665425,199.77492378667276,199.77492378667276,0.0,221.9721375407475,0.0,199.77492378667276,221.9721375407475,0,0
+2017/04/07 19:00:00,195.42851300882512,0,990.0492851826745,0,0,0,2.3760584425513582,0.0,24.883914210492264,0.0,101.68988858149199,0,39.380909295966944,3.011338138455682e-09,27.0977424753112,0,0,0.0,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3129.097467908438,1242.859804710547,0.0,0.0,0.0,0.0,2675.863888215623,0.0,0.0,0.0,0.0,1199.7075302322019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05271095727923145,0.0016677379457467486,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.48642600333219865,0.48642600333219865,0.23881460324266848,0.23881460324266848,0.3893902215952065,0.3893902215952065,0.9524347284490623,0.9524347284490623,0.9114052145719755,0.9114052145719755,0.1464533201786288,-0.042587361592537634,-0.06324235907822362,-0.09041813633541067,0.3118918045779784,0.16498750013428445,-0.014710078377733008,0.01021438654688595,-0.07078814404575193,0.2973502772495398,9.943039977951216,9.943039977951216,6.183526381304347,6.183526381304347,8.158248562739928,8.158248562739928,24.160337855158176,24.160337855158176,22.541627976934222,22.541627976934222,5.444418849607615,5.037547208670105,5.082808480179381,5.1692975543560635,7.021985885243211,5.564164169144249,5.0044793503364104,5.002159769725466,5.103752691271339,6.837184908309723,195.42851300882512,195.42851300882512,0.0,217.14279223202792,0.0,195.42851300882512,217.14279223202792,0,0
+2017/04/07 20:00:00,214.10156059745248,0,936.1923295751105,0,0,0,6.608608220905184,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,2.908645425184192e-09,23.02119840993563,0,0,0.0,581.2888044496692,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2914.5604237718326,4358.402762197698,0.0,0.0,0.0,0.0,8230.46694057309,0.0,0.0,0.0,0.0,6406.934139161109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04984357307047869,0.001577015908113481,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4810700972404526,0.4810700972404526,0.2436569315862405,0.2436569315862405,0.3959815837214396,0.3959815837214396,0.9386383313938906,0.9386383313938906,0.9038671554809481,0.9038671554809481,0.1847461669532553,0.002042169977479837,-0.008006666592499021,-0.04127806333744936,0.3273149723945902,0.2009269529305225,0.02840876121850913,0.06460326556592513,-0.02484038794927912,0.31428138044924503,9.833965590876005,9.833965590876005,6.2321290137535925,6.2321290137535925,8.266698364592173,8.266698364592173,23.608555799120538,23.608555799120538,22.25157644894057,22.25157644894057,5.707594151486731,5.000086330586498,5.001327044770747,5.0352738345995505,7.227774545755096,5.837194114200713,5.016707103697385,5.086411394028204,5.012773491382589,7.0532098295926176,214.10156059745248,214.10156059745248,0.0,237.8906228860583,0.0,214.10156059745248,237.8906228860583,0,0
+2017/04/07 21:00:00,194.44810940570795,0,919.0685801575862,0,0,0,0.5486846927208359,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.960437629959996e-09,25.435462461861416,0,0,0.0,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2191.9319653687917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04893189196781434,0.0015481709535193316,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.40366762022944935,0.40366762022944935,0.17238792236721645,0.17238792236721645,0.32790594166476733,0.32790594166476733,0.9253030010318778,0.9253030010318778,0.8771203333344275,0.8771203333344275,0.07560489737227043,-0.034842223301367964,-0.044525568725674855,-0.07255906394706396,0.2902806269243851,0.0892452086206755,-0.004147433718604129,-0.0696771075732008,-0.05061886069084158,0.2522728931023336,8.395505629466115,8.395505629466115,5.615976527970389,5.615976527970389,7.235860332764858,7.235860332764858,23.082398074004544,23.082398074004544,21.241058622899104,21.241058622899104,5.118356427150616,5.025131373531721,5.0410429363291485,5.10901006155575,6.750569837195513,5.164932152740278,5.000356073849304,5.100520703560164,5.053046347565527,6.3210436004827955,194.44810940570795,194.44810940570795,0.0,216.05345489523106,0.0,194.44810940570795,216.05345489523106,0,0
+2017/04/07 22:00:00,136.68801249776115,0,721.6824808783357,0,0,0,0.17041162012512667,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,6.854164109124686e-06,20.76463641814996,0,0,0.001490535434486339,561.9744040364525,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,660.4931839612793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03842290983698739,0.0012156740842647847,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.17727119826332607,0.17727119826332607,-0.046717717152294336,-0.046717717152294336,0.10687110241266184,0.10687110241266184,0.8648486847593693,0.8648486847593693,0.6093394551686807,0.6093394551686807,-0.07684345764071805,-0.11423758250275218,-0.15342116914740855,-0.14807398540884711,0.13740542679398488,-0.08614373351334044,-0.10033302786241648,-0.1420291160991061,-0.1415344642699475,0.08782740669790894,5.651416816692503,5.651416816692503,5.04518419944867,5.04518419944867,5.2365498959307075,5.2365498959307075,20.787241791776154,20.787241791776154,12.787351667588652,12.787351667588652,5.122267053171498,5.270303401720241,5.4877578734081,5.454318721058513,5.391158597468589,5.153664084553284,5.208479771830881,5.417950169309151,5.41504145405375,5.1597315754310245,136.68801249776115,136.68801249776115,0.0,151.87556944195683,0.0,136.68801249776115,151.87556944195683,0,0
+2017/04/07 23:00:00,87.2945586282445,0,564.7326188728504,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,3.6108507625599213e-06,11.783573958555477,0,0,0.0,511.49709010403416,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030066782930006242,0.0009512920536288377,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.04560190311310514,-0.04560190311310514,-0.25961402085042806,-0.25961402085042806,-0.11238858734525889,-0.11238858734525889,0.7507784562240797,0.7507784562240797,0.33086347835843305,0.33086347835843305,-0.05584301004366433,-0.21214245087172068,-0.2131478976515188,-0.2309717658838075,-0.016134101019259547,-0.0846305590195055,-0.2098379728802579,-0.19838964710329404,-0.23150890147339073,-0.07435442567619117,5.043051401726018,5.043051401726018,6.399264865627927,6.399264865627927,5.2616193584436814,5.2616193584436814,16.870440014629324,16.870440014629324,7.276548684223997,7.276548684223997,5.064562332043707,5.9334493868892935,5.942335638375326,6.10689584678768,5.005388593929936,5.148311358458756,5.913241834037251,5.816148037857559,6.112061737741229,5.114472720052959,87.2945586282445,87.2945586282445,0.0,96.99395403138277,0.0,87.2945586282445,96.99395403138277,0,0
+2017/04/08 00:00:00,40.73284875176362,0,546.8220615629436,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.578649209791923e-09,9.54721468438491,0,0,0.0,493.58653279412744,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029113211592357597,0.0009211217211996879,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.16153366064878807,0.16153366064878807,-0.04541666976137184,-0.04541666976137184,0.05021731511563535,0.05021731511563535,0.7274559448564692,0.7274559448564692,0.5872160456441934,0.5872160456441934,0.09529403882902851,-0.09530909568201927,-0.18116468092108948,-0.11824364283972696,0.23973698331241422,0.07013916251734485,-0.10833997409591398,-0.13279475223940446,-0.1318573502970162,0.15346936460749577,5.54076450138075,5.54076450138075,5.042702333182163,5.042702333182163,5.052207986656924,5.052207986656924,16.137711135761165,16.137711135761165,12.227062717679402,12.227062717679402,5.188056581662266,5.188116037789825,5.68038678366527,5.2896056208272455,6.192708425489215,5.101858598615024,5.243100426640339,5.365328162393922,5.360184711369101,5.488064683664604,40.73284875176362,40.73284875176362,0.0,45.25872083529291,0.0,40.73284875176362,45.25872083529291,0,0
+2017/04/08 01:00:00,23.77476714838215,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5776717247043596,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.18521728899880127,0.18521728899880127,-0.014347914278619815,-0.014347914278619815,0.05111622267700716,0.05111622267700716,0.6445304868252709,0.6445304868252709,0.6986489117580124,0.6986489117580124,0.059334423190951655,-0.13066206845851466,-0.2357902528007676,-0.1547212902923545,0.34466188189798047,0.0408544288059829,-0.1274835505106593,-0.18494740538861837,-0.1534048811796492,0.2309015908077892,5.711212975448234,5.711212975448234,5.004261499074687,5.004261499074687,5.054094018538478,5.054094018538478,13.722349861639884,13.722349861639884,15.26497127631076,15.26497127631076,5.072889141508156,5.353679303293589,6.153670349873835,5.496068290587004,7.471287925112264,5.034553469103642,5.3366690509699595,5.709138787671705,5.487654206770756,6.106221833330906,23.77476714838215,23.77476714838215,0.0,26.41640794264683,0.0,23.77476714838215,26.41640794264683,0,0
+2017/04/08 02:00:00,28.344144975752204,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5247818892793065,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.19675970457627945,0.19675970457627945,0.003556942700314876,0.003556942700314876,0.05563247493348148,0.05563247493348148,0.5963057449537945,0.5963057449537945,0.7649961324321741,0.7649961324321741,0.03551078304666273,-0.14830440517695082,-0.26218832074126636,-0.17324736363504206,0.3787751755660962,0.011260451317360696,-0.15217820629378434,-0.22338788232841772,-0.17866764013543893,0.24530561281062352,5.802770244888023,5.802770244888023,5.000261899591209,5.000261899591209,5.064076366324173,5.064076366324173,12.454694061012177,12.454694061012177,17.32855543358589,17.32855543358589,5.026105133593049,5.45573512516367,6.4272315465193515,5.622141759374557,7.987497462917091,5.002624792062647,5.479878648707455,6.035249545492874,5.661734447773696,6.24890163854451,28.344144975752204,28.344144975752204,0.0,31.493494417502447,0.0,28.344144975752204,31.493494417502447,0,0
+2017/04/08 03:00:00,23.72197007641445,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248746527366593,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.18388610356913476,0.18388610356913476,-0.0038627740631405386,-0.0038627740631405386,0.04087432420667203,0.04087432420667203,0.54017372843645,0.54017372843645,0.7878634947200143,0.7878634947200143,0.02085092294094206,-0.15846532735873559,-0.27779299852503847,-0.18387804374299563,0.4039465428534759,-0.010585660791011024,-0.17054211027685667,-0.2498788493780213,-0.19716836148743916,0.2547507239378926,5.701011664486174,5.701011664486174,5.000308872853253,5.000308872853253,5.03458713370425,5.03458713370425,11.106269610304636,11.106269610304636,18.083469147101894,18.083469147101894,5.008999945569627,5.520393700127613,6.6027310289849765,5.700950124783006,8.400227513938276,5.002319631343084,5.602839687448025,6.296024631565118,5.806113872543804,6.347191977121568,23.72197007641445,23.72197007641445,0.0,26.35774452934939,0.0,23.72197007641445,26.35774452934939,0,0
+2017/04/08 04:00:00,38.82241266542339,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,1.2335008404753374,0.0,0.5250134128849878,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2300259913388158,0.2300259913388158,0.04626236631102985,0.04626236631102985,0.08866358040701779,0.08866358040701779,0.5645032026091275,0.5645032026091275,0.8138265192928285,0.8138265192928285,0.01356846202797211,-0.16541949462097877,-0.28460215993904503,-0.19069547046331006,0.3153559945101538,-0.023009137044189245,-0.18219511098605223,-0.26215369095739977,-0.20847447173181877,0.2627308556867626,6.097829296580244,6.097829296580244,5.044307600204718,5.044307600204718,5.162788619109946,5.162788619109946,11.673941637625404,11.673941637625404,18.967483632572495,18.967483632572495,5.003811059020052,5.567125911261698,6.682527649378173,5.75397315720906,7.067330343441384,5.010959527327628,5.688159739449318,6.426853484615577,5.901390222201599,6.4331611250225365,38.82241266542339,38.82241266542339,0.0,43.13601407269266,0.0,38.82241266542339,43.13601407269266,0,0
+2017/04/08 05:00:00,73.68045511000831,0,212.9421150752648,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,1.2913456768794562,0.0,0.525102243929111,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4431190747454652,0.4431190747454652,0.2626731911864787,0.2626731911864787,0.3058935660511088,0.3058935660511088,0.7452177503825966,0.7452177503825966,0.908328528145625,0.908328528145625,0.01915492276011945,-0.15932669520496315,-0.2771974446174677,-0.18425257431034683,0.4348795666645355,-0.017381392478049772,-0.17588008127593724,-0.2550555227690381,-0.20141238449293947,0.3406439552121341,9.096501247813833,9.096501247813833,6.432530298462012,6.432530298462012,6.944673393403306,6.944673393403306,16.693619193199083,16.693619193199083,22.422964711320972,22.422964711320972,5.007595367698599,5.526072746788003,6.595844728049755,5.703812667765419,8.94457907404609,5.006253970980325,5.6412194510312474,6.350426332379513,5.841251285611534,7.413747693815182,73.68045511000831,73.68045511000831,0.0,81.86717234445368,0.0,73.68045511000831,81.86717234445368,0,0
+2017/04/08 06:00:00,105.05452933973908,0,712.987509331081,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,80.56906512710079,0,1.69719160828702,2.5203617761588568e-09,0.5250038273448916,0,0,0.0,482.3002179995441,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.037959983111388165,0.0012010274053533717,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6518449940858135,0.6518449940858135,0.4755011335529074,0.4755011335529074,0.5209494941804146,0.5209494941804146,0.9293633393754518,0.9293633393754518,0.936872380163911,0.936872380163911,0.062388622382550205,-0.115696027833349,-0.230464100508469,-0.14029531707990672,0.5850961775529755,0.030662126418930048,-0.12700530125121945,-0.20389091491631905,-0.15205204993937088,0.4577330627681095,13.923433541221172,13.923433541221172,9.721864626499752,9.721864626499752,10.675855654701735,10.675855654701735,23.24185099478204,23.24185099478204,23.53847152887323,23.53847152887323,5.080587447353324,5.277253374990835,6.10202451071018,5.407799567633248,12.174490951627703,5.019462727835759,5.334145996907523,5.862120156208405,5.4790825322761805,9.373137441346302,105.05452933973908,105.05452933973908,0.0,116.7272548219323,0.0,105.05452933973908,116.7272548219323,0,0
+2017/04/08 07:00:00,115.76653339380442,0,735.8566403761108,0,0,0,0.0,0.0,6.283304557177808,0.0,69.33401494192633,0,39.380909295966944,5.078653597823875e-05,0.5775885231721035,0,0,0.016858261144492414,469.6621382708853,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03917755258754337,0.0012395504548629868,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2219956841533716,0.2219956841533716,0.029986995205180035,0.029986995205180035,0.10141660871068729,0.10141660871068729,0.8436817907029984,0.8436817907029984,0.42683084236763863,0.42683084236763863,-0.007101591928511514,-0.21069703590284694,-0.24110921435491467,-0.11613108881211638,0.12436299756932381,-0.03735498124657564,-0.21869621167649755,-0.23710189950591962,-0.10429037534721061,0.10403496809604136,6.0223591727702654,6.0223591727702654,5.018615052789428,5.018615052789428,5.213009252305454,5.213009252305454,20.01911549066243,20.01911549066243,8.798989894758847,8.798989894758847,5.001043982565648,5.9207488105689094,6.206434723297107,5.2793436970103755,5.32037764909218,5.028887175858756,5.992133716188263,6.166571619727932,5.225257962244001,5.224155470262247,115.76653339380442,115.76653339380442,0.0,128.62948154867158,0.0,115.76653339380442,128.62948154867158,0,0
+2017/04/08 08:00:00,140.48048594980187,0,803.948448475208,0,0,0,0.9116530069155333,0.0,11.763618543777666,0.0,87.89947186453183,0,39.380909295966944,4.333085545418411e-05,0.5247899077544653,0,0,0.014618314144588331,484.5206575481663,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3459.291316559303,0.0,0.0,0.0,0.0,0.0,0.0,171.95787565640808,0.0,0.0,100.91219407365465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04280281088679552,0.0013542511004378355,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.11018700617747862,0.11018700617747862,-0.14324277266788416,-0.14324277266788416,-0.05302642391839241,-0.05302642391839241,1.1057310545070878,1.1057310545070878,0.4168548673844617,0.4168548673844617,-0.05502457956155222,-0.15086698661124498,-0.13288022978294406,0.028894371767522877,0.07810469958211197,0.03772926988520005,-0.16205618603081284,-0.17719482553386298,0.0588947991857851,0.024114992150067165,5.251464565967893,5.251464565967893,5.425130014397951,5.425130014397951,5.058213040961945,5.058213040961945,30.776457540412125,30.776457540412125,8.62239743764573,8.62239743764573,5.062683504887104,5.471636485735743,5.36579898924353,5.017283179095955,5.126314662951685,5.02946899936866,5.544272671703524,5.650854883053654,5.071812867107212,5.012038335100712,140.48048594980187,140.48048594980187,0.0,156.0894288331132,0.0,140.48048594980187,156.0894288331132,0,0
+2017/04/08 09:00:00,181.2692912772458,0,953.9111848323819,0,0,0,1.251354395980995,0.0,11.393746067737203,0.0,106.27511244621549,0,39.380909295966944,2.9086518824931732e-09,22.968169068436517,0,0,0.0,581.2624834506684,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5319.683517773094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05078693804885002,0.001606863318449516,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4462883315978118,0.4462883315978118,-0.03202510496949907,-0.03202510496949907,0.12720337335093107,0.12720337335093107,1.1357000101297348,1.1357000101297348,0.6510304164631879,0.6510304164631879,0.10964161869136736,-0.21284984513619593,-0.20862987605723823,0.12188443419933574,0.21750585636842876,0.17803223793646236,-0.22357057521862844,-0.19155653836314593,0.18425278697845107,0.1576920328520504,9.15571380625397,9.15571380625397,5.021231562613195,5.021231562613195,5.335189793339296,5.335189793339296,32.16725241547506,32.16725241547506,13.900925156162955,13.900925156162955,5.248980079792858,5.939697002477814,5.902737074124701,5.307726320021061,5.981341206810683,5.657029677689721,6.036947130415413,5.760808288429303,5.703814294855164,5.515321663799995,181.2692912772458,181.2692912772458,0.0,201.41032364138422,0.0,181.2692912772458,201.41032364138422,0,0
+2017/04/08 10:00:00,208.06136833687484,0,1023.2939865903809,0,0,0,1.338276911136615,0.0,14.932575465546352,0.0,131.64086955684016,0,39.380909295966944,2.8559586904675186e-09,20.768737104528725,0,0,0.0,561.9194039273073,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4886.985894124158,564.8235045326642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0544809298067497,0.0017237386427448,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6318541611614501,0.6318541611614501,0.15390704489054868,0.15390704489054868,0.3351712750408964,0.3351712750408964,1.0803147807366789,1.0803147807366789,0.8628301033319873,0.8628301033319873,0.17615546377376393,-0.17061891711080884,-0.16535762002977897,0.1177800083355182,0.24395241954579655,0.23403814390751576,-0.17397235175308792,-0.13130973456813055,0.17390839168135946,0.19648762060274164,13.37935859874814,13.37935859874814,5.4908553669867075,5.4908553669867075,7.336477319317581,7.336477319317581,29.62066008704008,29.62066008704008,20.71318800195894,20.71318800195894,5.643231688078444,5.603383495932874,5.566701223378402,5.2873375908691,6.235126719616332,6.136549376200108,5.6273664490885835,5.35719689789606,5.6269046332696036,5.800547927886612,208.06136833687484,208.06136833687484,0.0,231.17929815208313,0.0,208.06136833687484,231.17929815208313,0,0
+2017/04/08 11:00:00,227.81868100879382,0,1095.8724678055557,0,0,0,14.045115394085336,0.0,14.876918395255093,0.0,136.4899973586286,0,39.380909295966944,2.9086518824931732e-09,23.02574056194906,0,0,0.0,581.2623563736659,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,855.9260782682651,0.0,0.0,5472.1395475997415,16003.58181833091,1334.4339705144453,0.0,0.0,3.261854761581286,11893.917299844954,2007.7009422903018,0.0,0.0,81.9183193779668,9960.572551279074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05834506190601051,0.001845997088843149,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9044911537385649,0.9044911537385649,0.40407281425324565,0.40407281425324565,0.604947685260326,0.604947685260326,1.0842970813929957,1.0842970813929957,0.9731998551898654,0.9731998551898654,0.37196651470120595,0.04120298735489776,0.06308911805820575,0.28532912052154635,0.3433768351315488,0.42288876378348794,0.05786716443292237,0.12331681008535327,0.34401384848302646,0.3251435962440093,22.275499488755017,22.275499488755017,8.402366258957784,8.402366258957784,12.674437509827996,12.674437509827996,29.800282670442712,29.800282670442712,25.0049290090153,25.0049290090153,7.880506786186103,5.035145630381422,5.082407592612768,6.691162477882457,7.452810311319169,8.728698021144965,5.06932828348873,5.315006450582359,7.461961117588814,7.198192439486419,227.81868100879382,227.81868100879382,0.0,253.13186778754869,0.0,227.81868100879382,253.13186778754869,0,0
+2017/04/08 12:00:00,217.882033267575,0,1060.3774197565135,0,0,0,15.816683219324561,0.0,14.876918395255093,0.0,124.80122689546741,0,39.380909295966944,2.9086518824931724e-09,23.006295458652325,0,0,0.0,581.2576608371678,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1325.2991725405686,0.0,0.0,5100.241845839002,17655.458722810996,1702.7672391964331,0.0,0.0,0.0,13371.549427600632,2600.8150003282044,0.0,111.07926913833,19.06071593448531,11720.662582541694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05645527925646079,0.001786205683098566,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9567182479219171,0.9567182479219171,0.4979648335416085,0.4979648335416085,0.7068149055916335,0.7068149055916335,1.05865686429075,1.05865686429075,0.9830406042860529,0.9830406042860529,0.424336071560857,0.1226753439545762,0.15628001525760707,0.31035249101044216,0.37494682735627494,0.47166282844947593,0.16162764256759224,0.23583676729846223,0.37984661229251393,0.3676496331815833,24.333182835777762,24.333182835777762,10.182239094415564,10.182239094415564,15.508735667040497,15.508735667040497,28.653534251327386,28.653534251327386,25.41104010297802,25.41104010297802,8.754427760263383,5.3117356192035174,5.506124532134223,7.002000115980792,7.927095783524052,9.64537966238018,5.541394644896201,6.154126628347953,8.004514043584905,7.813695820270226,217.882033267575,217.882033267575,0.0,242.0911480750833,0.0,217.882033267575,242.0911480750833,0,0
+2017/04/08 13:00:00,225.11058824793457,0,1005.5512342394272,0,0,0,27.615898832616626,0.0,14.821261324963833,0.0,122.5097643007467,0,39.380909295966944,2.8559586904675186e-09,20.782754490784498,0,0,0.0,561.9218278326257,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3218.6079887734277,0.0,837.9849050671239,5194.441867478228,24687.96356162581,4127.163215817326,927.8441015173805,1297.274047640913,1284.3897675812009,22862.939183753184,5042.040616062538,1148.9693139454498,1830.1385764876147,1637.0679298574805,21647.18309383087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05353629252940998,0.0016938509777562707,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9643287251143686,0.9643287251143686,0.6843083741797931,0.6843083741797931,0.8051387478329319,0.8051387478329319,1.0572527136769412,1.0572527136769412,0.9822213265121263,0.9822213265121263,0.44306704316568657,0.24352080816115437,0.23540142149119261,0.35017085094622025,0.380265161863614,0.4903940671657155,0.2873004749222381,0.30160557190418996,0.40538047316783815,0.37512804926602494,24.642048740744073,24.642048740744073,14.843858894335199,14.843858894335199,18.66850068160359,18.66850068160359,28.591407607737594,28.591407607737594,25.37708734415709,25.37708734415709,9.095532722691374,6.23074928461638,6.149859707466518,7.551296623463983,8.011174765484,10.024649042098858,6.714690455817518,6.890337661855128,8.424555103291539,7.929940908849133,225.11058824793457,225.11058824793457,0.0,250.1228758310384,0.0,225.11058824793457,250.1228758310384,0,0
+2017/04/08 14:00:00,201.78481480198982,0,949.7067820304995,0,0,0,20.362857460295118,0.0,14.728125842506467,0.0,108.75639138185811,0,39.380909295966944,2.8023553203333232e-09,18.55653081856078,0,0,0.0,541.5677281362422,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3018.1948321290665,0.0,86.79586676905052,4587.092344726761,20795.749477003166,3280.820004575146,304.03898426735174,0.0,285.60670619483335,16084.540252556817,4283.237043457087,768.90550949912,702.2206233052641,711.7703778763787,14702.89140085369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05056309252944863,0.001599781002248854,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0030926437750531,1.0030926437750531,0.8390237529650282,0.8390237529650282,0.8378492590505489,0.8378492590505489,1.036514918141807,1.036514918141807,0.9823613701708079,0.9823613701708079,0.4695355142442821,0.34680068888922716,0.26184167252054746,0.3660847512438693,0.3864722119089196,0.5142527356721615,0.3997059503418448,0.3222882099895126,0.40966381163387006,0.3819268705521839,26.25004981056756,26.25004981056756,19.852581994816447,19.852581994816447,19.810734655954363,19.810734655954363,27.682153073335613,27.682153073335613,25.382889245908714,25.382889245908714,9.60326273264856,7.502197339822473,6.423449378659413,7.7896728218509566,8.110830545226989,10.52967808438396,8.328797944601035,7.1595959185825535,8.497749045589046,8.037692675354918,201.78481480198982,201.78481480198982,0.0,224.2053497799887,0.0,201.78481480198982,224.2053497799887,0,0
+2017/04/08 15:00:00,190.14097996800152,0,969.058626358075,0,0,0,11.011222395769558,0.0,14.876918321203716,0.0,106.31215624428707,0,39.380909295966944,2.8023553203333232e-09,18.559773707971853,0,0,0.0,560.9195724638175,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,888.5304588772058,0.0,0.0,4234.006734739871,15156.06734793161,970.0543750829484,0.0,0.0,0.0,7796.98108541515,1825.133698842278,0.0,0.0,0.0,6231.05848108083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051593399055488855,0.001632379182549875,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9584017858700549,0.9584017858700549,0.8167138338000077,0.8167138338000077,0.8117208352180327,0.8117208352180327,1.0312384218401254,1.0312384218401254,0.9891099589962032,0.9891099589962032,0.4419572891012777,0.30760107872560705,0.17840253654077393,0.3027647340434265,0.38760414302179047,0.4751885295368854,0.3915339308086954,0.2878623047577961,0.36798707879449305,0.38193601861772725,24.40131273542174,24.40131273542174,19.067552884519216,19.067552884519216,18.894725805623835,18.894725805623835,27.453305600995193,27.453305600995193,25.663371116864425,25.663371116864425,9.074903271644743,6.966526838086423,5.659769466779338,6.904949399827927,8.12918137904181,9.715611682965914,8.193315925440643,6.7214258943191965,7.818889733977869,8.037838988443752,190.14097996800152,190.14097996800152,0.0,211.26775552000169,0.0,190.14097996800152,211.26775552000169,0,0
+2017/04/08 16:00:00,195.96716743253475,0,981.4997730823599,0,0,0,4.712799241247882,0.0,15.389955544298049,0.0,120.17895923267236,0,39.380909295966944,2.7478325333468082e-09,16.304544115601583,0,0,0.0,520.1251904192861,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4252.0043896070765,12057.33055462522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05225577492233009,0.0016533362932626655,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9000984227922117,0.9000984227922117,0.7059772653775565,0.7059772653775565,0.7776991261782206,0.7776991261782206,1.031086363912496,1.031086363912496,1.0271408301517329,1.0271408301517329,0.35585479464104586,0.17468142386789606,0.08766210870601897,0.18749017234854476,0.39699225736406657,0.40040001711725565,0.2459595226377563,0.181349761654944,0.24134522450448115,0.37431260149257767,22.107425424017492,22.107425424017492,15.483598696209114,15.483598696209114,17.74516691715155,17.74516691715155,27.44672586178524,27.44672586178524,27.2762958727522,27.2762958727522,7.635199483607238,5.632497652423481,5.159130681305456,5.728801893906919,8.283491545894861,8.340436310122954,6.255585727191615,5.681779657214435,6.208803480322246,7.917149673408744,195.96716743253475,195.96716743253475,0.0,217.74129714726084,0.0,195.96716743253475,217.74129714726084,0,0
+2017/04/08 17:00:00,215.8842516944232,0,1022.3146065976977,0,0,0,2.5947735538622374,0.0,16.90307355543791,0.0,138.40412594678773,0,39.380909295966944,2.8023553203333237e-09,18.601369339565935,0,0,0.0,560.9400239346238,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3944.113728680137,5258.825915931871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05442878689050596,0.001722088877221459,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8086591470124679,0.8086591470124679,0.6232349244300542,0.6232349244300542,0.7193391674473163,0.7193391674473163,1.0351719932499022,1.0351719932499022,1.0593951506181836,1.0593951506181836,0.24627734715860927,0.08046794452655047,-0.002390384402670985,0.06764069378848446,0.33459153961019916,0.2826331894302675,0.1419327995004747,0.08168273335999407,0.10221152375767656,0.304568228694888,18.78926868689922,18.78926868689922,13.150123800856733,13.150123800856733,15.888186928575465,15.888186928575465,27.623811918896948,27.623811918896948,28.686228047209624,28.686228047209624,6.25884093149979,5.134076451799331,5.000118281395501,5.0947296587560515,7.328366362844335,6.659252243395102,5.417382997683035,5.138156407100695,5.2163630749547,6.927796212684413,215.8842516944232,215.8842516944232,0.0,239.87139077158133,0.0,215.8842516944232,239.87139077158133,0,0
+2017/04/08 18:00:00,213.57839237022574,0,1025.5396376952187,0,0,0,9.002787197115317,0.0,20.084827655822497,0.0,120.14191543460078,0,39.380909295966944,2.9604441351540604e-09,24.967952783759664,0,0,0.0,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3931.255687233942,10339.547119967956,0.0,0.0,0.0,0.0,9078.252176229802,0.0,0.0,0.0,0.0,6611.089945877016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054600489934940016,0.0017275214418604574,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7840586516210318,0.7840586516210318,0.5542362926880019,0.5542362926880019,0.711204272983501,0.711204272983501,1.0282486641051927,1.0282486641051927,1.0663877988149324,1.0663877988149324,0.30706512550754606,0.11368574586873917,0.09447623800068826,0.1287073062720441,0.4203642943385134,0.3279723254375414,0.14809217888436674,0.16639459830585418,0.14462885133198317,0.40439967885354955,17.956317653556866,17.956317653556866,11.431257469296725,11.431257469296725,15.640952114627282,15.640952114627282,27.324091454098962,27.324091454098962,28.996850489326576,28.996850489326576,6.959654206168807,5.267696761798533,5.184841403271292,5.343168403692076,8.684033900266755,7.236769537374514,5.454430477055851,5.57383979908424,5.4334048814967275,8.407905758015232,213.57839237022574,213.57839237022574,0.0,237.30932485580638,0.0,213.57839237022574,237.30932485580638,0,0
+2017/04/08 19:00:00,210.64874672868132,0,990.0492851826745,0,0,0,11.563025268390925,0.0,24.02992460262281,0.0,110.89738010901058,0,39.380909295966944,2.9604441351540604e-09,24.777507449729512,0,0,0.0,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3630.3910807389275,9184.039604278847,0.0,0.0,0.0,0.0,14221.571966418462,0.0,0.0,0.0,0.0,11403.191332251989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05271095727923145,0.0016677379457467486,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7266585836457178,0.7266585836457178,0.488825027623495,0.488825027623495,0.6732045975503099,0.6732045975503099,1.0135449019354161,1.0135449019354161,1.0435353587475134,1.0435353587475134,0.3308104804530259,0.13079845962477213,0.1478056937254451,0.15226338611532447,0.4555156214439413,0.3564069496687839,0.17191734621060942,0.229207615042375,0.16996868683520452,0.4469171091409215,16.1130732758201,16.1130732758201,9.99229818770739,9.99229818770739,14.523902378123239,14.523902378123239,26.69343557880657,26.69343557880657,27.98821840335104,27.98821840335104,7.275816299247978,5.354418618956899,5.45267230160988,5.480416555424242,9.330570931071392,7.643423314169922,5.612613889231611,6.090014314325998,5.598787505511396,9.167512861052941,210.64874672868132,210.64874672868132,0.0,234.05416303186811,0.0,210.64874672868132,234.05416303186811,0,0
+2017/04/08 20:00:00,198.67514756287915,0,936.1635263873163,0,0,0,2.5334685783954796,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,2.9086518824931724e-09,22.94201900111792,0,0,0.0,581.260001261875,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2912.7926013562196,1923.185973294408,0.0,0.0,0.0,0.0,3448.6906202662867,0.0,0.0,0.0,0.0,408.62068211816825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049842039567425805,0.0015769673891458276,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6292184902831203,0.6292184902831203,0.3922652400189825,0.3922652400189825,0.5889489397062059,0.5889489397062059,0.9939220650857097,0.9939220650857097,1.0298194525758493,1.0298194525758493,0.247450838080724,0.04782434502309692,0.06453499545341664,0.06965792552951605,0.4577528959710815,0.27007092152507267,0.08129740937608092,0.14568044503354347,0.08253756060350138,0.4490166343485038,13.308918912526764,13.308918912526764,8.205323804685435,8.205323804685435,12.270182569637143,12.270182569637143,25.86443497737487,25.86443497737487,27.391938138281404,27.391938138281404,6.2708967629607315,5.047350379478871,5.086228824423543,5.100465352669417,9.373519119063374,6.514601718513589,5.136855641126161,5.439736233183936,5.141064093259288,9.207033766985433,198.67514756287915,198.67514756287915,0.0,220.7501639587546,0.0,198.67514756287915,220.7501639587546,0,0
+2017/04/08 21:00:00,191.5446570213626,0,919.0685801575862,0,0,0,0.6230258849938972,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,2.9604441351540604e-09,24.712087681892207,0,0,0.0,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2511.3481301714432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04893189196781434,0.0015481709535193316,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5451169286585419,0.5451169286585419,0.3074894706696112,0.3074894706696112,0.5184712320317707,0.5184712320317707,0.9799269854305467,0.9799269854305467,0.9882556526563935,0.9882556526563935,0.1937153505042388,-0.009255677701814327,0.02447042724434365,0.010747226596180602,0.45450049273403126,0.20208769335570953,0.008848524248492855,0.09233791941006257,0.00858773103212908,0.42197404884966633,11.219530824220499,11.219530824220499,6.965094664362169,6.965094664362169,10.621533710432587,10.621533710432587,25.282142097396488,25.282142097396488,25.62776824408678,25.62776824408678,5.778081099092731,5.001773368352076,5.0123958302192335,5.0023909797639305,9.311154907770302,5.84691181940363,5.001620779943806,5.17656577672966,5.001526648805324,8.712482871793057,191.5446570213626,191.5446570213626,0.0,212.8273966904029,0.0,191.5446570213626,212.8273966904029,0,0
+2017/04/08 22:00:00,136.6482011142238,0,701.2898090634237,0,0,0,0.11560928200849829,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,1.0502771900331316e-05,18.525204927472295,0,0,0.003543482917872266,541.5796792740572,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,448.0947924678133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03733718888457351,0.0011813226301403432,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2950833204634217,0.2950833204634217,0.06220662246692868,0.06220662246692868,0.2725443144582914,0.2725443144582914,0.9300039747413986,0.9300039747413986,0.7093965221032924,0.7093965221032924,0.148426531691226,-0.0024429728346695642,-0.018231264198213214,0.030711858991773824,0.3168313274949426,0.1514089778527193,0.015494088720339923,0.019987176832056044,0.028020370175663036,0.26813164548975527,6.8091808961049765,6.8091808961049765,5.080117872952499,5.080117872952499,6.542556092437366,6.542556092437366,23.267069489213057,23.267069489213057,15.586398453688588,15.586398453688588,5.4564867405376845,5.000123543023989,5.006880514097176,5.019525917028332,7.086796005918629,5.475034692916864,5.004969556080795,5.008269733954151,5.016253387325065,6.492864220449107,136.6482011142238,136.6482011142238,0.0,151.83133457135978,0.0,136.6482011142238,151.83133457135978,0,0
+2017/04/08 23:00:00,89.58505644024292,0,571.133942493617,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,1.5311023251568405e-05,14.074060070381396,0,0,0.0027781812739452816,517.8956355435271,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030407594141078933,0.0009620750827821666,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.09400589707557547,0.09400589707557547,-0.1304745823240681,-0.1304745823240681,0.07508668775057155,0.07508668775057155,0.8367003643070788,0.8367003643070788,0.4439064261227129,0.4439064261227129,-0.07162047497153069,-0.04070064402780536,-0.05763123882847408,-0.04369653836127559,0.18045343028024544,0.0454890106363944,-0.07975314710414347,-0.07750058010852375,-0.05350044573837299,0.12543818209933497,5.183004832715014,5.183004832715014,5.3526642872320025,5.3526642872320025,5.116739108038985,5.116739108038985,19.769855189150007,19.769855189150007,9.111171351726881,9.111171351726881,5.106207457271239,5.0342938061706235,5.068764046379613,5.039528662191614,5.67504738864254,5.04283848896354,5.131704354481272,5.1243676764613895,5.0592586004905655,5.325945128048076,89.58505644024292,89.58505644024292,0.0,99.53895160026991,0.0,89.58505644024292,99.53895160026991,0,0
+2017/04/09 00:00:00,43.094493600027164,0,568.8302740155008,0,0,0,0.06348599640448892,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.017925416492000128,2.6359917538417087e-09,11.827448119694626,0,0,0.0,515.5947452466847,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,201.5776906130602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.030284945124961427,0.0009581945534056255,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3311355992287421,0.3311355992287421,0.11300906981408469,0.11300906981408469,0.2679854072661227,0.2679854072661227,0.8313539622378283,0.8313539622378283,0.7167602507893337,0.7167602507893337,0.14735183904042337,0.06155837433350856,0.001823308370439649,0.08764320900669177,0.4386270202370885,0.1864340854984346,0.0323038735703137,0.024931912648983336,0.06685167291316799,0.35715047367815156,7.280311035149069,7.280311035149069,5.264517701159363,5.264517701159363,6.491231448236334,6.491231448236334,19.580348101644745,19.580348101644745,15.809500131982233,15.809500131982233,5.449893965185154,5.078456493349094,5.000068817858178,5.159062049002912,9.013313944722,5.720602430124771,5.021602817074978,5.012867795578941,5.092532088738238,7.654517908376093,43.094493600027164,43.094493600027164,0.0,47.88277066669685,0.0,43.094493600027164,47.88277066669685,0,0
+2017/04/09 01:00:00,23.72215369457546,0,37.934367602160194,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250582708976654,0,0,0.0,2.4440150896160526,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0020196538293779875,6.390043934666917e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3880232367287941,0.3880232367287941,0.175822447117401,0.175822447117401,0.2991967468329806,0.2991967468329806,0.7862535279667879,0.7862535279667879,0.8247114441474956,0.8247114441474956,0.17546569928093614,0.04822445365318799,-0.021469933806340578,0.08320353450890859,0.5374846436988757,0.18471022897946732,0.0156260642362596,-0.006096450551706568,0.05471558747327893,0.4423518103478301,8.135989598472904,8.135989598472904,5.640798715125726,5.640798715125726,6.860155088792837,6.860155088792837,18.02959169603433,18.02959169603433,19.346567334179113,19.346567334179113,5.638197499892115,5.0481460632661594,5.00954225983547,5.143350400537386,11.045100502940429,5.707318482097847,5.005054576917232,5.000769370751158,5.061981385468073,9.08223104554044,23.72215369457546,23.72215369457546,0.0,26.357948549528288,0.0,23.72215369457546,26.357948549528288,0,0
+2017/04/09 02:00:00,28.344331605691185,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5249685192182861,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3944596412443944,0.3944596412443944,0.18826019034409808,0.18826019034409808,0.2987351083109293,0.2987351083109293,0.7401985224926079,0.7401985224926079,0.8810455376674164,0.8810455376674164,0.1563726615992493,0.012236850575510381,-0.056655876629159,0.051131788010104345,0.5635257247540281,0.158345541835649,-0.01171424967777967,-0.04059876333870308,0.026525659079251404,0.44825124337827205,8.241492440696945,8.241492440696945,5.734809687061755,5.734809687061755,6.854398769656584,6.854398769656584,16.535154736755388,16.535154736755388,21.387524474303746,21.387524474303746,5.506725434628748,5.0030997243203785,5.066455858850858,5.0541269716081985,11.650639610359008,5.519606396251575,5.002840615585356,5.0341223218266435,5.014565551253284,9.192604292131065,28.344331605691185,28.344331605691185,0.0,31.493701784101315,0.0,28.344331605691185,31.493701784101315,0,0
+2017/04/09 03:00:00,23.722131212388614,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525035788710823,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3823338874362129,0.3823338874362129,0.18169601966305446,0.18169601966305446,0.2825411103629694,0.2825411103629694,0.688758677330039,0.688758677330039,0.8981322001290793,0.8981322001290793,0.14791136887156942,-0.008522493300363044,-0.07857720659917881,0.03421179526317812,0.5899680445693547,0.13562649438833335,-0.03698236291605317,-0.06926275882926845,0.003291302282835779,0.45984820407475707,8.044205912622303,8.044205912622303,5.684389353251362,5.684389353251362,6.658167770947415,6.658167770947415,14.973591779655635,14.973591779655635,22.032447974647468,22.032447974647468,5.453320438105251,5.001503542088187,5.127848029999626,5.024230110022032,12.29560195788271,5.381087684671641,5.028313712150734,5.0993284702399535,5.00022424180932,9.413937427125177,23.722131212388614,23.722131212388614,0.0,26.357923569320683,0.0,23.722131212388614,26.357923569320683,0,0
+2017/04/09 04:00:00,39.64432830418244,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,2.0553852447312324,0.0,0.5250446473881243,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.447490380194509,0.447490380194509,0.2503363159528972,0.2503363159528972,0.346774438524139,0.346774438524139,0.7325882877393394,0.7325882877393394,0.8832736149707392,0.8832736149707392,0.1560450127188895,-0.004308959263284143,-0.07485903762175858,0.03891836110859993,0.4301359719440503,0.13395769211309846,-0.040160774390645845,-0.07290041194218719,0.0006034317709396729,0.3828391898942487,9.178285149088055,9.178285149088055,6.300786766673596,6.300786766673596,7.5018167984753745,7.5018167984753745,16.296950914359996,16.296950914359996,21.470944687650643,21.470944687650643,5.504601913949614,5.00038434919378,5.116032137904995,5.031355912898107,8.858438137518974,5.371759919407367,5.033390001059928,5.110038375323796,5.000007537671166,8.052301793804446,39.64432830418244,39.64432830418244,0.0,44.04925367131382,0.0,39.64432830418244,44.04925367131382,0,0
+2017/04/09 05:00:00,76.4393167375576,0,212.9421150752648,0,0,0,0.027506608864716772,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,4.0048724824271975,0.0,0.5429304570659519,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,108.07472604907828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6543066750602372,0.6543066750602372,0.46362586643403564,0.46362586643403564,0.5561139611287896,0.5561139611287896,0.9021769231333177,0.9021769231333177,0.936704253081767,0.936704253081767,0.1725905962991239,0.010146117833288476,-0.05812013582413787,0.05385847702368851,0.3966190352865524,0.14892690783311993,-0.025232928269137145,-0.05646254996073001,0.015526603157562345,0.3685312614880347,13.99162942961243,13.99162942961243,9.487285868469684,9.487285868469684,11.475299349570733,11.475299349570733,22.186855112210353,22.186855112210353,23.5318056306904,23.5318056306904,5.617427639711877,5.002130996063883,5.069935849591246,5.060054488780196,8.277285064127682,5.459572740336299,5.013180399085485,5.06600303381056,5.004990435477353,7.8272759392501,76.4393167375576,76.4393167375576,0.0,84.93257415284178,0.0,76.4393167375576,84.93257415284178,0,0
+2017/04/09 06:00:00,108.44763618589946,0,710.3001183233648,0,0,0,0.10763827655720326,0.0,8.33396954093373,13.929299233552332,80.56906512710079,0,4.948058631792348,2.5203678432269027e-09,0.5596053734427066,0,0,0.0,479.61282699182794,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,428.95541629251045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.037816904423568914,0.001196500495404843,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8093794241033215,0.8093794241033215,0.6181681757973408,0.6181681757973408,0.7128957821532599,0.7128957821532599,0.9865196087145605,0.9865196087145605,0.9543520181339832,0.9543520181339832,0.2200288223336259,0.05678148479372674,-0.0093074391202796,0.10004479600905519,0.40052689949973597,0.19590428054517522,0.022563808005086783,-0.006754736171086267,0.06215747380670428,0.37576406988620625,18.814042413803776,18.814042413803776,13.01687442086103,13.01687442086103,15.692125457012821,15.692125457012821,25.55550545590303,25.55550545590303,24.2376135813184,24.2376135813184,6.0042864363924195,5.066750898238695,5.0017932586489025,5.207283139738394,8.342566148584638,5.795793776539227,5.010539392000737,5.000944492486639,5.079991300876728,7.939937313573523,108.44763618589946,108.44763618589946,0.0,120.49737353988829,0.0,108.44763618589946,120.49737353988829,0,0
+2017/04/09 07:00:00,115.52325619585655,0,732.8166597283347,0,0,0,0.0,0.0,6.283304557177808,0.0,69.33401494192633,0,39.380909295966944,2.520368518197284e-09,0.5250273982651068,0,0,0.0,466.6390158842537,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.039015701766121846,0.0012344296076925384,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.422769548947026,0.422769548947026,0.20201286735748866,0.20201286735748866,0.32603491365371173,0.32603491365371173,0.9237507482678655,0.9237507482678655,0.4683555323839789,0.4683555323839789,-0.11723165310787571,-0.38948224226715017,-0.3317156908465177,-0.26170667408704296,0.08935576372432381,-0.12293384011425974,-0.3937627481889987,-0.289688751361992,-0.25594211136037726,0.020298001305151272,8.726582666228339,8.726582666228339,5.846283677639349,5.846283677639349,7.210311258187502,7.210311258187502,23.02161417270382,23.02161417270382,9.579985348065122,9.579985348065122,5.284666649343421,8.159749827199192,7.288341887551425,6.421977822373577,5.165341180155693,5.3130516318933445,8.229983778392693,6.743414140405605,6.35985652999787,5.008528947180793,115.52325619585655,115.52325619585655,0.0,128.3591735509517,0.0,115.52325619585655,128.3591735509517,0,0
+2017/04/09 08:00:00,146.7734104093375,0,806.5885511674194,0,0,0,0.25925583882895525,0.0,9.691096083603279,0.0,96.91714705112861,0,39.380909295966944,2.520368518280575e-09,0.5250021372893622,0,0,0.0,487.1753785545222,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1027.213815111164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.042943371909670514,0.0013586983532224849,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.07004489424747914,0.07004489424747914,-0.1992712159972261,-0.1992712159972261,0.04733868449623633,0.04733868449623633,1.0074687193492318,1.0074687193492318,0.4048647000346597,0.4048647000346597,-0.29636295478128727,-0.51641487486662,-0.4193795645031864,-0.40876684889984727,0.0630646337728111,-0.3566718043802212,-0.5814199889331438,-0.42365949722439,-0.4714317528910313,-0.0037139598429173893,5.101584923147485,5.101584923147485,5.823429826336337,5.823429826336337,5.0463934717244285,5.0463934717244285,26.43518266797321,26.43518266797321,8.415794530603023,8.415794530603023,6.824961690387255,10.576661396500441,8.66668568335001,8.482356658862983,5.082343630448861,7.647372681446001,12.08378545534147,8.742388670419302,9.640795345727597,5.000285532476397,146.7734104093375,146.7734104093375,0.0,163.0815671214861,0.0,146.7734104093375,163.0815671214861,0,0
+2017/04/09 09:00:00,146.75472098796524,0,838.4345261643374,0,0,0,0.44820089124031176,0.0,9.332689672910613,0.0,97.06762091869685,0,39.380909295966944,0.0002089405880433578,0.5250912685625319,0,0,0.0705800871554885,465.71524469546847,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1794.410579781099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.659438851192974,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04463887520703242,0.001412342895687725,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1259766023910712,0.1259766023910712,-0.15185482716446816,-0.15185482716446816,0.10879813607887873,0.10879813607887873,1.0032057861066097,1.0032057861066097,0.5163926754469241,0.5163926754469241,-0.08695477298664299,-0.3209474492989068,-0.2349767934278171,-0.25420701176549004,0.035981801070206806,-0.12301677668289432,-0.36353696360340076,-0.2452284199189557,-0.2897805886910142,-0.026161063117050017,5.328751214092193,5.328751214092193,5.4778392755779635,5.4778392755779635,5.245161963248108,5.245161963248108,26.254827264176924,26.254827264176924,10.576177975269133,10.576177975269133,5.1565721655889405,7.141591981416482,6.145705496778717,6.341432108359911,5.026802288302974,5.313474453284584,7.750784171508656,6.248113779378357,6.744523471912032,5.0141678829862855,146.75472098796524,146.75472098796524,0.0,163.06080109773916,0.0,146.75472098796524,163.06080109773916,0,0
+2017/04/09 10:00:00,201.29021312318307,0,1042.6050792994981,0,0,0,0.9019104525608985,0.0,13.065493553185489,0.0,124.87761316689259,0,39.380909295966944,9.351388210877215e-06,23.064277303188838,0,0,0.001231296781938642,581.2292653396423,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3731.7758793607127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05550906668643822,0.0017562681769476211,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4336424617672466,0.4336424617672466,-0.03769511438588452,-0.03769511438588452,0.24603458952874369,0.24603458952874369,1.0963948498443465,1.0963948498443465,0.6710770061644823,0.6710770061644823,-0.09161635057616432,-0.26610114329379725,-0.13341939550896403,-0.0806929509600359,0.05071964854536038,0.1343169029040467,-0.28126578706829425,-0.11630764507956336,-0.0463308391731238,0.0023974087344682234,8.922020831462703,8.922020831462703,5.0294156648135555,5.0294156648135555,6.256354190196532,6.256354190196532,30.349321953818375,30.349321953818375,14.463204699757867,14.463204699757867,5.17381600841621,6.470273923514256,5.368775822454779,5.134827533799424,5.053257824742687,5.373757942765252,6.6431842815703135,5.280194233931937,5.044438869126367,5.0001189775753545,201.29021312318307,201.29021312318307,0.0,223.6557923590923,0.0,201.29021312318307,223.6557923590923,0,0
+2017/04/09 11:00:00,219.78288027344257,0,1095.8490492817864,0,0,0,1.04381213429206,0.0,13.016794053187484,0.0,143.25325374857618,0,39.380909295966944,3.229428848013708e-05,23.08807874713128,0,0,0.01092002096377617,581.2280178289327,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4361.320846888029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05834381508645878,0.001845957640341637,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5675985034781647,0.5675985034781647,0.08255952463761294,0.08255952463761294,0.3913934690863208,0.3913934690863208,1.073497629414976,1.073497629414976,0.8146130529827863,0.8146130529827863,-0.025485851401257704,-0.13301471908016452,-0.08509573985413092,-0.01175093223222145,0.10261745983193485,0.07891526775612312,-0.1383933163129404,-0.04363853158721396,0.01587816095822844,0.06386411986707483,11.748003692071478,11.748003692071478,5.141139203065293,5.141139203065293,8.191012202716365,8.191012202716365,29.31445715454811,29.31445715454811,18.994708711330134,18.994708711330134,5.013445959455282,5.366540397545066,5.149946784889323,5.0028584340263365,5.2180858768693525,5.128950778694701,5.3968081092471465,5.039423774988009,5.0052189862696395,5.084445028763483,219.78288027344257,219.78288027344257,0.0,244.20320030382507,0.0,219.78288027344257,244.20320030382507,0,0
+2017/04/09 12:00:00,196.73376099101512,0,1020.5944369161639,0,0,0,1.0122058153450342,0.0,13.016794053187484,0.0,124.80122689546741,0,39.380909295966944,5.58718595710215e-06,18.52261934386223,0,0,0.001888815265142405,541.4727891815529,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4212.96697966418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05433720378251995,0.0017191912515234738,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6191705719908203,0.6191705719908203,0.15166443828137224,0.15166443828137224,0.4716329413263592,0.4716329413263592,1.0441832332472907,1.0441832332472907,0.8871019163251156,0.8871019163251156,0.057354899864233116,-0.08179818727665304,-0.08069123650395874,-0.11398127879969477,0.20281538331408835,0.12087599281672459,-0.07181820246670341,-0.024994573480254845,-0.1093542191381474,0.17330136733064547,13.043147834796954,13.043147834796954,5.476640635315874,5.476640635315874,9.64478660102985,9.64478660102985,28.01655392869199,28.01655392869199,21.614752955234792,21.614752955234792,5.068106090063893,5.138547352180979,5.134821802926439,5.269091159422885,5.853032772221454,5.302652013120465,5.106794830258451,5.012932559374519,5.247675815418873,5.622530185765697,196.73376099101512,196.73376099101512,0.0,218.59306776779457,0.0,196.73376099101512,218.59306776779457,0,0
+2017/04/09 13:00:00,196.57705754565404,0,1004.483110894076,0,0,0,0.9447636332539128,0.0,12.88660173648153,0.0,124.7641830973959,0,39.380909295966944,2.802361756317051e-09,18.60059977975335,0,0,0.0,560.8537044872745,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3909.7146394358906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05347942485133741,0.001692051724062096,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.794033362323676,0.794033362323676,0.24620877799400212,0.24620877799400212,0.502126639403091,0.502126639403091,1.0374537602396656,1.0374537602396656,0.9097542238495517,0.9097542238495517,0.18423499023381146,-0.12036040187609787,-0.08091500477560978,-0.11738877138878016,0.2370389034000482,0.2681716921508969,-0.09763809580105637,-0.02290820418891674,-0.11447728212026566,0.21569927811816084,18.290962048699114,18.290962048699114,6.258138277207337,6.258138277207337,10.269924279335498,10.269924279335498,27.722978780081064,27.722978780081064,22.477904131610487,22.477904131610487,5.703678141335203,5.300073975376122,5.1355708183645845,5.285430667647674,6.165950343287847,6.493311504681628,5.197426023643203,5.010863584903461,5.2714395811171215,5.965075040287417,196.57705754565404,196.57705754565404,0.0,218.41895282850447,0.0,196.57705754565404,218.41895282850447,0,0
+2017/04/09 14:00:00,178.84012265640828,0,925.9165684945947,0,0,0,1.3457002555133617,0.0,13.01679398839311,0.0,111.01081017850728,0,39.380909295966944,2.6923873974580608e-09,14.085908935335185,0,0,0.0,517.7775146003372,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3849.115733970091,1316.1472365458994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04929648393922729,0.0015597063893532691,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7806317671964474,0.7806317671964474,0.35979136545943724,0.35979136545943724,0.5597336872808889,0.5597336872808889,1.026905255100064,1.026905255100064,0.9249058852293192,0.9249058852293192,0.18473828961840266,-0.06835427941746167,-0.06372970097748551,-0.0889186044970866,0.23655014412622852,0.2614070587166859,-0.039956584513392145,-0.0026343941211755015,-0.0870121140989195,0.21603309297808382,17.84232353501075,17.84232353501075,7.694114578418166,7.694114578418166,11.56063368006582,11.56063368006582,27.266138246361052,27.266138246361052,23.066838422088367,23.066838422088367,5.70753372220436,5.0967393506183925,5.084089864689247,5.163726757515349,6.161135790846387,6.418714592485031,5.033051309636463,5.000143662185195,5.1567788019719245,5.968070363576729,178.84012265640828,178.84012265640828,0.0,198.71124739600918,0.0,178.84012265640828,198.71124739600918,0,0
+2017/04/09 15:00:00,176.01192096292584,0,925.9323337727222,0,0,0,0.909576737101907,0.0,12.935301171685163,0.0,108.75639138185811,0,39.380909295966944,1.0809004182599882e-06,14.029741295413295,0,0,0.0,517.7932798784649,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3747.6298384839783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04929732329431224,0.0015597329459630781,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7933585692109567,0.7933585692109567,0.5917054218850386,0.5917054218850386,0.5536423338530335,0.5536423338530335,1.0210374814750454,1.0210374814750454,0.9116958896475407,0.9116958896475407,0.16188258585138635,0.03549977668059986,-0.12295037105740057,-0.10201172356142835,0.1552869224166971,0.24630654056116735,0.10319959658327435,-0.056492370982318324,-0.009160975313762058,0.14498114990774397,18.268190091519045,18.268190091519045,12.339041032048385,12.339041032048385,11.41735761964334,11.41735761964334,27.013792842458273,27.013792842458273,22.55285865842049,22.55285865842049,5.543105879301805,5.0260889529095465,5.313135885972457,5.2155176306490745,5.499705811367278,6.259140147354316,5.2205684185804415,5.066072781949842,5.001737264313846,5.43552084486663,176.01192096292584,176.01192096292584,0.0,195.56880106991758,0.0,176.01192096292584,195.56880106991758,0,0
+2017/04/09 16:00:00,190.37445523878452,0,979.1676624594448,0,0,0,0.9486266319400132,0.0,11.08681950462398,0.0,124.87761316689259,0,39.380909295966944,1.9635828259160026e-06,14.080484675778152,0,0,0.0,517.7930797963711,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3923.2053940206115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05213161162535621,0.0016494078530953696,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7477410265905019,0.7477410265905019,0.6331016157354017,0.6331016157354017,0.6027808238850367,0.6027808238850367,1.032560015873546,1.032560015873546,0.9780554585446964,0.9780554585446964,0.10956898033673249,0.04532819530136353,-0.11508571038040585,-0.15875275001308675,0.16180909323540713,0.17424503000933583,0.11179897309556258,-0.05742116016974143,0.04793164200882193,0.1462030375626107,16.77369079884582,16.77369079884582,13.412802551304395,13.412802551304395,12.619035040421522,12.619035040421522,27.51052851466396,27.51052851466396,25.20484420024738,25.20484420024738,5.248650111563094,5.042536106397847,5.274334258302474,5.522285256606594,5.542612303062114,5.629337203875295,5.258880023616797,5.068263565827124,5.047563106943741,5.442899740393116,190.37445523878452,190.37445523878452,0.0,211.52717248753834,0.0,190.37445523878452,211.52717248753834,0,0
+2017/04/09 17:00:00,199.29718313099372,0,1002.852666462526,0,0,0,0.80395714102751,0.0,11.198411529749883,0.0,129.38645076019097,0,39.380909295966944,1.3591056525722223e-05,18.52744081300184,0,0,0.0027818513859836527,541.4753019480662,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3284.8206625949215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05339261878212062,0.0016893052405408985,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5584800529464993,0.5584800529464993,0.5680822652060576,0.5680822652060576,0.4816667336920563,0.4816667336920563,1.019430730982326,1.019430730982326,0.8942108908822262,0.8942108908822262,0.10526787285688635,0.1015152556185568,-0.07556440672168686,-0.08565401140503436,0.0628026202629254,0.15994810221026814,0.12644414536206308,-0.06386400711069178,-0.01095306364506137,0.0353617212210055,11.53101518773579,11.53101518773579,11.759616332667576,11.759616332667576,9.84605498007761,9.84605498007761,26.94491718969155,26.94491718969155,21.883387383408817,21.883387383408817,5.229502451761022,5.213424027334895,5.118229655833204,5.151921338777669,5.081660708159475,5.5301889173875765,5.3311976854541,5.084444730522662,5.0024834441560415,5.025886420894778,199.29718313099372,199.29718313099372,0.0,221.441314589993,0.0,199.29718313099372,221.441314589993,0,0
+2017/04/09 18:00:00,191.18918742076818,0,1007.1513760567401,0,0,0,0.6174963810502777,0.0,11.916068294830932,0.0,115.6330778413024,0,39.380909295966944,0.00010008207267131356,23.069539658469186,0,0,0.033873697760015524,581.2332722084503,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2486.0680413871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053621485264999436,0.0016965464165260857,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3246834968807002,0.3246834968807002,0.15527945306630103,0.15527945306630103,0.32794489035234325,0.32794489035234325,1.0036768496557493,1.0036768496557493,0.71970525857503,0.71970525857503,0.04401746620066481,0.09389986914160152,-0.06402992307193857,-0.10625832044588188,-0.0503348330646109,0.07942355407999897,0.13378241561093152,-0.07794618246168836,-0.06076395958065528,0.03345160157256295,7.191949870711738,7.191949870711738,5.499657689916248,5.499657689916248,7.23639375863587,7.23639375863587,26.274723203813693,26.274723203813693,15.899380158410978,15.899380158410978,5.040111479039808,5.182592086615983,5.084884148607301,5.233843640052342,5.052452653325034,5.130617718381814,5.3707869345885655,5.1258023214778206,5.0764442551639775,5.023165223038674,191.18918742076818,191.18918742076818,0.0,212.4324304675202,0.0,191.18918742076818,212.4324304675202,0,0
+2017/04/09 19:00:00,182.61911329087584,0,971.6639792724533,0,0,0,0.510790506020008,0.0,15.135998270485793,0.0,104.13412371906301,0,39.380909295966944,0.00011181713317592532,23.028182781900114,0,0,0.037289395899880146,581.2328122385679,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2039.6689841080931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05173210997445262,0.0016367678993364021,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.18511668955408742,0.18511668955408742,-0.03425922287202428,-0.03425922287202428,0.19333440741699726,0.19333440741699726,0.98993356194618,0.98993356194618,0.6159631352670413,0.6159631352670413,0.047388334958959784,-0.0039769462288773635,-0.10346421386772275,-0.09652708327741907,-0.06476634158916911,0.0745233514324511,0.04564245437247396,-0.09849897472677753,-0.07223678462672697,0.08178789478562497,5.710439463801606,5.710439463801606,5.024297340243393,5.024297340243393,5.775018993242924,5.775018993242924,25.69772088594307,25.69772088594307,12.959232429265683,12.959232429265683,5.046490850738721,5.000327401437758,5.221701539230679,5.192956761449082,5.086848277760325,5.114993580935831,5.043128009399041,5.200924304454517,5.1080436258570785,5.138512477745479,182.61911329087584,182.61911329087584,0.0,202.91012587875093,0.0,182.61911329087584,202.91012587875093,0,0
+2017/04/09 20:00:00,197.980683709674,0,896.4159658157981,0,0,0,0.42547746890393995,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,0.00015322876645279646,18.5908539255094,0,0,0.051987623032748634,541.4604530673241,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1688.26182088604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04772585000131508,0.001510012626379894,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.0630284504880626,0.0630284504880626,-0.17875429472883728,-0.17875429472883728,0.09058608172279882,0.09058608172279882,0.9769014521700538,0.9769014521700538,0.5230704223994718,0.5230704223994718,0.08800340141430664,5.619207978699376e-05,-0.07933634275594569,-0.11620695694220891,-0.08598884536416705,0.09983508846825888,0.0031898200644036516,-0.09334733474604594,-0.06348052502655874,0.08702120114875316,5.082249151586922,5.082249151586922,5.662377378617208,5.662377378617208,5.169927285087738,5.169927285087738,25.157248773459443,25.157248773459443,10.722556132309492,10.722556132309492,5.160372600422463,5.000000065362855,5.130330944875453,5.27970902319187,5.153111817364874,5.2064146788925285,5.000210626691057,5.180448727901677,5.083433468145699,5.1568115608946385,197.980683709674,197.980683709674,0.0,219.97853745519333,0.0,197.980683709674,219.97853745519333,0,0
+2017/04/09 21:00:00,184.61564270307636,0,900.6869020224428,0,0,0,0.1722562568491244,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,0.00011830957744339428,23.026284728497906,0,0,0.03944994429628411,581.2342794652494,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,670.3923389120653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04795323780846776,0.0015172070180958282,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.09721284585626397,-0.09721284585626397,-0.34890974728039503,-0.34890974728039503,-0.05646482547254266,-0.05646482547254266,0.957887927241048,0.957887927241048,0.37708157683249,0.37708157683249,-0.01950657545142792,-0.08889653263235776,-0.1326071062811854,-0.20395108103734869,-0.0798317028394037,-0.02028841140316671,-0.10664573152695489,-0.14607583893002257,-0.1747404076787247,-0.02043861750887108,5.195709321873309,5.195709321873309,7.532867280140323,7.532867280140323,5.066008354687597,5.066008354687597,24.38050597311441,24.38050597311441,7.960699615324401,7.960699615324401,5.00787680913561,5.1636454567069165,5.364295637972333,5.862629941274363,5.131964009922967,5.008520889839943,5.235552767771651,5.442128698191567,5.6329254341713835,5.008647528797638,184.61564270307636,184.61564270307636,0.0,205.12849189230707,0.0,184.61564270307636,205.12849189230707,0,0
+2017/04/09 22:00:00,130.54873516723197,0,722.8941516087668,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,0.006685522130956727,18.59618750173204,0,0,2.3150099180594204,560.8725553842588,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.9113553230639,0.0,0.0,0.0,735.7420087244366,0.0,0.0,0.0,0.0,0.0,74.70429004016154,0.0,0.0,0.0,645.2517766060431,0.0,0.0,0,0,0,0,0,0,0,0,0.03848742008416814,0.001217715143518232,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3408130525090167,-0.3408130525090167,-0.35810052013992666,-0.35810052013992666,-0.29845145603875256,-0.29845145603875256,0.8291257176083661,0.8291257176083661,0.08112938994041083,0.08112938994041083,-0.08862863164375488,-0.2012278438184243,-0.18269512978309135,-0.27527128505699316,-0.14871407077811674,-0.07370827273725335,-0.223888820016629,-0.20661721348294076,-0.2814573365227767,-0.13715410125212732,7.416155488410155,7.416155488410155,7.668728400487609,7.668728400487609,6.850866286420441,6.850866286420441,19.501719708032212,19.501719708032212,5.1362903737729795,5.1362903737729795,5.162660265882366,5.8397077583395856,5.691947561846689,6.573675229700697,5.45825882343668,5.112491308709011,6.039907606995442,5.885372036892747,6.645430374509175,5.389727803933681,130.54873516723197,130.54873516723197,0.0,145.05415018581328,0.0,130.54873516723197,145.05415018581328,0,0
+2017/04/09 23:00:00,88.50499615326437,0,547.1000761710387,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.018949037900516174,9.543090854071282,0,0,6.941390049636061,486.9231573525865,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,496.16810127237886,0.0,0.0,0.0,1146.5325124281271,0.0,51.92645854445236,0.0,0.0,0.0,601.3861512691228,0.0,0.0,0.0,1118.501475971896,0.0,114.6549677465642,0,0,0,0,0,0,0,0,0.029128013296019856,0.0009215900367859231,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3749321931405954,-0.3749321931405954,-0.40010353327154513,-0.40010353327154513,-0.3589339405380262,-0.3589339405380262,0.6404043976788214,0.6404043976788214,-0.1891735651451234,-0.1891735651451234,-0.13925029862279653,-0.2534649657832613,-0.248867908777947,-0.3057464513013209,-0.1920642836221892,-0.1274156344073927,-0.28038894789930924,-0.2771487092737242,-0.32552878186670453,-0.19687342903988114,7.926866092208101,7.926866092208101,8.335462238994424,8.335462238994424,7.681226076216447,7.681226076216447,13.60994262796659,13.60994262796659,5.741968088334218,5.741968088334218,5.401741885180911,6.33359123321803,6.285532143110018,6.9427963306375915,5.764853276844107,5.336310173105048,6.632922297466251,6.595281870541541,7.203425491472572,5.80370003638663,88.50499615326437,88.50499615326437,0.0,98.33888461473819,0.0,88.50499615326437,98.33888461473819,0,0
+2017/04/10 00:00:00,39.34485192937765,0,539.966878306517,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.578661441899097e-09,9.54753093037581,0,0,0.0,486.73134953770074,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.028748236558105506,0.0009095741655245368,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.13239240634613603,-0.13239240634613603,-0.17233182932831387,-0.17233182932831387,-0.1517928026241206,-0.1517928026241206,0.685358942395156,0.685358942395156,0.1813634830680295,0.1813634830680295,-0.004254550466154902,-0.09689551733016524,-0.1831192573245192,-0.2108547390540841,0.08399114268098341,-0.04432709815952117,-0.14766158612598504,-0.22867489416534814,-0.2447576155014372,0.0584134413221508,5.363116045125082,5.363116045125082,5.615575213888931,5.615575213888931,5.477448618955023,5.477448618955023,14.874407294380191,14.874407294380191,5.681882978247955,5.681882978247955,5.000374704188474,5.194433180845834,5.6951686638617645,5.922130265930079,5.146078024562726,5.040677825851091,5.4517891970455565,6.0849422575674765,6.243313995407291,5.070643606635059,39.34485192937765,39.34485192937765,0.0,43.71650214375294,0.0,39.34485192937765,43.71650214375294,0,0
+2017/04/10 01:00:00,23.72215928728515,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250638636073583,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.04462656134279645,-0.04462656134279645,-0.1284436749575603,-0.1284436749575603,-0.08834776643874649,-0.08834776643874649,0.6191145837544103,0.6191145837544103,0.4093707525624687,0.4093707525624687,-0.05163136856416334,-0.13382800910492948,-0.23969859036369393,-0.26032243723100834,0.19245089852752206,-0.08597304209434657,-0.17110440611146566,-0.28066223155112474,-0.2900924797151735,0.1432036232864049,5.041229350785713,5.041229350785713,5.341762998462357,5.341762998462357,5.1616305971146375,5.1616305971146375,13.041679199340791,13.041679199340791,8.492716196696193,8.492716196696193,5.055189955247485,5.371039907593243,6.19232552154331,6.406933144665587,5.767940496839955,5.153055525379173,5.606826553397099,6.63611716173321,6.748293558658844,5.424897454488018,23.72215928728515,23.72215928728515,0.0,26.357954763650167,0.0,23.72215928728515,26.357954763650167,0,0
+2017/04/10 02:00:00,28.344489228964882,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.52512614249199,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.10571899940799409,-0.10571899940799409,-0.2088548059444356,-0.2088548059444356,-0.1557205264440615,-0.1557205264440615,0.4785997945907858,0.4785997945907858,0.5139784349010011,0.5139784349010011,-0.18977800797659772,-0.2617546032350325,-0.37367793042658876,-0.3928145872552804,0.23528162658235602,-0.207977022421399,-0.288612566664015,-0.40283483387937363,-0.4087013983863915,0.12848391068474252,5.231474713758502,5.231474713758502,5.904688277768514,5.904688277768514,5.502503298556633,5.502503298556633,9.784074326187309,9.784074326187309,10.523731980291402,10.523731980291402,5.74672445909826,6.422500188305463,7.907213757088073,8.214358958417549,6.148686966582304,5.8970857451796235,6.730441110716171,8.381427191695124,8.481234839957324,5.341977306217515,28.344489228964882,28.344489228964882,0.0,31.49387692107209,0.0,28.344489228964882,31.49387692107209,0,0
+2017/04/10 03:00:00,23.7222623500046,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251669263268096,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.14415282150403483,-0.14415282150403483,-0.25518557244568163,-0.25518557244568163,-0.19871234594490172,-0.19871234594490172,0.38573765998477627,0.38573765998477627,0.547883599366033,0.547883599366033,-0.2466753440526153,-0.314864290558429,-0.4350552202083993,-0.4503801149711612,0.2597260053028181,-0.2778289970009862,-0.35374452313948224,-0.47430051377161697,-0.47688944080129114,0.12270509021126917,5.430553974835988,5.430553974835988,6.3518075363163575,6.3518075363163575,5.818809770255726,5.818809770255726,8.098951293845005,8.098951293845005,11.2833844271928,11.2833844271928,6.26292325833964,7.060863245176449,8.947787393319217,9.23280110684415,6.400475640064229,6.603147753320172,7.603888526859393,9.697871901736448,9.749685519697422,5.311886916986566,23.7222623500046,23.7222623500046,0.0,26.358069277782885,0.0,23.7222623500046,26.358069277782885,0,0
+2017/04/10 04:00:00,40.51292045292109,0,137.97601593603073,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.2758136977542556,0.1511689222881307,0.5778042832445753,0,0,49.25013465467043,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,179.16188037127444,0.0,123.27650263591549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,434.80336544820534,0.0,232.92346607906637,0.0,0.0,0,0,0,0,0,0,0,0,0.007345945288189121,0.0002324205883720418,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.08144317628837583,-0.08144317628837583,-0.19578098045174952,-0.19578098045174952,-0.13820380415528538,-0.13820380415528538,0.4198015579006676,0.4198015579006676,0.6641317871542148,0.6641317871542148,-0.24533018473662044,-0.31417459943212767,-0.4134313546544517,-0.42631201987372525,0.27070531531307845,-0.29597637748726524,-0.3710894938791527,-0.43840231052746664,-0.4480943587668313,0.15522721622791583,5.137346992877184,5.137346992877184,5.79479071687561,5.79479071687561,5.395721185354532,5.395721185354532,8.674114948986855,8.674114948986855,14.266429905956954,14.266429905956954,6.249152481228236,7.0518093898451895,8.562778591096063,8.789700582168393,6.521747080647401,6.8201870211267135,7.866869111477996,9.00917537132483,9.189649748474807,5.499321217925413,40.51292045292109,40.51292045292109,0.0,45.014356058801205,0.0,40.51292045292109,45.014356058801205,0,0
+2017/04/10 05:00:00,73.85114447675815,0,230.72649543001862,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.5401117395737723,0.0,0.5249897072285074,0,0,0.0,17.784380354753797,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.012284049517347533,0.00038865876404002234,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.14423537307671816,0.14423537307671816,0.027286322005116326,0.027286322005116326,0.08722149818890715,0.08722149818890715,0.6113494255724257,0.6113494255724257,0.8538710029478583,0.8538710029478583,-0.19262542417889716,-0.26215432812484574,-0.37646865013171443,-0.39238090076887516,0.43475676593212215,-0.24903569565071584,-0.32411357729607426,-0.4319512643419809,-0.43791754436434105,0.29767109928518226,5.431047693902443,5.431047693902443,5.015412935339768,5.015412935339768,5.157534504020518,5.157534504020518,12.83930803451939,12.83930803451939,20.38655020689599,20.38655020689599,5.76933617572891,6.426860440274112,7.951031425806178,8.207225013330955,8.942336900609305,6.287270619215079,7.184229720777708,8.89128867757752,9.000254616961982,6.841165607444694,73.85114447675815,73.85114447675815,0.0,82.05682719639795,0.0,73.85114447675815,82.05682719639795,0,0
+2017/04/10 06:00:00,100.13499539904271,0,696.9610219091328,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.7643225377287994,2.52037399160108e-09,0.5249692104005408,0,0,0.0,466.27373057759587,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.037106721050117565,0.0011740307885074897,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3369290751727161,0.3369290751727161,0.21875338013036183,0.21875338013036183,0.2795286331674341,0.2795286331674341,0.7773675490849575,0.7773675490849575,0.9228995907444408,0.9228995907444408,-0.1138254316303928,-0.18401704288773388,-0.29941496233649517,-0.31663474640099043,0.5280238929175259,-0.17636388753481516,-0.2522311199643357,-0.36206753733083646,-0.36977579009542,0.41607203890752376,7.361157557741905,7.361157557741905,5.9926535353440755,5.9926535353440755,6.622885224521411,6.622885224521411,17.734205002116397,17.734205002116397,22.988325113251804,22.988325113251804,5.268355381659802,5.702011813822793,6.8628792237367975,7.084196975030082,10.83238444608962,5.644756757525457,6.320604984419688,7.728481038108413,7.846502370985775,8.608720554116957,100.13499539904271,100.13499539904271,0.0,111.26110599893634,0.0,100.13499539904271,111.26110599893634,0,0
+2017/04/10 07:00:00,149.854405927,0,888.6329751591608,0,0,0,0.0,0.0,10.576478033044985,0.0,69.33401494192633,0,39.380909295966944,0.06435566525596852,27.066672788351443,0,0,22.799923770390947,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,466.31593909347237,0.0,2234.1327458741953,0.0,1265.6151025301508,0.0,2405.356596835662,0.0,2036.8347016922553,0.0,273.28388108036404,0.0,2096.194750980731,0.0,1208.123257211066,0.0,2284.191593473915,0.0,2054.37167660023,0,0,0,0,0,0,0,0,0.04731147781384264,0.001496902179209507,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.046345667856908995,0.046345667856908995,-0.05416124272618672,-0.05416124272618672,-0.025207057090666125,-0.025207057090666125,0.5582873439229951,0.5582873439229951,0.5459951987993474,0.5459951987993474,-0.24927780056418405,-0.2992617463036847,-0.3559911204436817,-0.37251323747048654,0.14939052687850413,-0.28590520741554437,-0.34357927316385667,-0.38903786363486337,-0.40593217651393365,0.0755261930707837,5.044467322694018,5.044467322694018,5.060731668737205,5.060731668737205,5.013153384593409,5.013153384593409,11.52646826787172,11.52646826787172,11.239764992206332,11.239764992206332,6.289781206199422,6.860966311607555,7.637228722019799,7.889024922032249,5.462441351049208,6.69802107137815,7.455716499050325,8.152503390140922,8.433938568028779,5.1181100758791445,149.854405927,149.854405927,0.0,166.50489547444442,0.0,149.854405927,166.50489547444442,0,0
+2017/04/10 08:00:00,163.29141810652524,0,942.3443253455242,0,0,0,0.0,0.0,11.740063645974242,0.0,83.2008179303116,0,39.380909295966944,0.04844703692121341,25.489204994896976,0,0,23.275745187938103,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1841.7375911906734,0.0,859.3275861719173,0.0,2194.9764311103536,0.0,849.1882719717642,0.0,0.0,0.0,2055.0461354545027,0.0,1105.6980764086675,0.0,2256.347480200685,0.0,856.0606813947702,0,0,0,0,0,0,0,0,0.05017110988211979,0.0015873789445218142,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.33490796614404406,-0.33490796614404406,-0.31485649803239524,-0.31485649803239524,-0.3599673033305472,-0.3599673033305472,0.5448179140543381,0.5448179140543381,0.053656233456254906,0.053656233456254906,-0.2708652236276019,-0.35839194657774753,-0.37792780247692304,-0.39621288800966825,-0.1420346766826514,-0.31862975928015175,-0.38972107124185656,-0.3992040035492738,-0.41636321297752804,-0.18019169862760062,7.332791651347307,7.332791651347307,7.060760837004864,7.060760837004864,7.696763083709428,7.696763083709428,11.212649556006923,11.212649556006923,5.05960425723211,5.05960425723211,6.523550850370853,7.673095165322792,7.974074161393531,8.270537822630999,5.417982925248424,7.110649367259654,8.163647873105177,8.320393958894371,8.61380462070683,5.673087871502943,163.29141810652524,163.29141810652524,0.0,181.43490900725027,0.0,163.29141810652524,181.43490900725027,0,0
+2017/04/10 09:00:00,181.10195195563423,0,957.1220889566681,0,0,0,0.0,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,0.041044720722706,20.77449864945024,0,0,22.669366315128606,561.8040212598261,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1591.7170874220074,0.0,462.5421081437776,0.0,1830.989470264421,0.0,138.52439911348316,0.0,0.0,0.0,1742.2822655501093,0.0,631.1283301523933,0.0,1838.1415516262045,0.0,94.87371223055273,0,0,0,0,0,0,0,0,0.05095788896276511,0.0016122720862031727,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.483703818244817,-0.483703818244817,-0.3392971290138137,-0.3392971290138137,-0.4373763144441628,-0.4373763144441628,0.625474239895805,0.625474239895805,-0.021960895240955604,-0.021960895240955604,-0.23793921575170673,-0.35941605197286564,-0.3704248489877438,-0.3877817721698356,-0.18504318249872867,-0.2786787769670486,-0.38453246340019104,-0.3842873377330006,-0.39935748728322107,-0.21375621463644906,9.887447296551443,9.887447296551443,7.394613457251424,7.394613457251424,8.990306734791986,8.990306734791986,13.209370066120343,13.209370066120343,5.009983672440853,5.009983672440853,6.174845173104956,7.688469149271654,7.856555727807063,8.132066066214037,5.709874533468664,6.613000818104041,8.079510652074475,8.07556419963953,8.322962559577064,5.947732565951554,181.10195195563423,181.10195195563423,0.0,201.22439106181582,0.0,181.10195195563423,201.22439106181582,0,0
+2017/04/10 10:00:00,212.06694047103548,0,1023.8513749569613,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.03461068121175662,18.52585950445266,0,0,21.094103182593933,541.3826891112936,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1505.7666524239721,0.0,0.0,0.0,1710.3698386526228,0.0,77.9907429007095,0.0,0.0,0.0,1620.1290402980458,0.0,0.0,0.0,1692.78464923469,0.0,53.290001891273846,0,0,0,0,0,0,0,0,0.05451060557624773,0.0017246775634059998,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47994039919376497,-0.47994039919376497,-0.31787912786508504,-0.31787912786508504,-0.41303390486712127,-0.41303390486712127,0.7569394104648578,0.7569394104648578,0.00326421634419264,0.00326421634419264,-0.23438506546942559,-0.3664380630524284,-0.36066990874143545,-0.3924090508513938,-0.22121373848009226,-0.271119586635102,-0.3889097906133501,-0.36544540441319523,-0.40226648070083887,-0.2408398256329799,9.811117071147464,9.811117071147464,7.100676764428314,7.100676764428314,8.555889731060716,8.555889731060716,17.067894031928958,17.067894031928958,5.000220566175813,5.000220566175813,6.139929138650672,7.795087502174994,7.707352994791634,8.207687825369831,6.015154759903822,6.526422291331102,8.150416482790476,7.779888033697787,8.371836095867252,6.203733815269985,212.06694047103548,212.06694047103548,0.0,235.6299338567061,0.0,212.06694047103548,235.6299338567061,0,0
+2017/04/10 11:00:00,227.19458410007897,0,1079.7337177697416,0,0,0,0.052721598525190774,0.0,16.86091082671979,0.0,147.76209134187457,0,39.380909295966944,0.005300677335146672,20.844666891354386,0,0,3.327257102516968,561.7963492353348,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,203.68970706869086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,287.6011978124938,0.0,0.0,0.0,484.95266497049295,0.0,0.0,0.0,0.0,0.0,288.04455222307087,0.0,0.0,0.0,364.2073920317156,0.0,0.0,0,0,0,0,0,0,0,0,0.057485822900024026,0.0018188113656327305,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4341502122293847,-0.4341502122293847,-0.48226830946867855,-0.48226830946867855,-0.3470993922792959,-0.3470993922792959,0.8958336157100079,0.8958336157100079,0.13210896986444334,0.13210896986444334,-0.19466676501347394,-0.3474195936839548,-0.3012108208604811,-0.3732992890941148,-0.15713422992705153,-0.220244020664369,-0.3667252320344317,-0.2999610212149149,-0.3811981631322438,-0.1255203104782581,8.931271559245488,8.931271559245488,9.858260002478346,9.858260002478346,7.506529590208771,7.506529590208771,21.944996029701983,21.944996029701983,5.361561739801033,5.361561739801033,5.785755274184723,7.511177850264687,6.885374624385875,7.9012942254163505,5.511678505487865,6.006255912477627,7.799492429546433,6.869704875563514,8.0260492915165,5.326372377706335,227.19458410007897,227.19458410007897,0.0,252.43842677786552,0.0,227.19458410007897,252.43842677786552,0,0
+2017/04/10 12:00:00,205.66813200111878,0,1022.3598604774595,0,0,0,0.13586863314028413,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,0.00031514529115786834,18.503256569392537,0,0,0.19984624305951376,543.0402553150543,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,528.2205779156245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05443119624058434,0.0017221651073784834,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4291697115769407,-0.4291697115769407,-0.3225042864762819,-0.3225042864762819,-0.3314178959528613,-0.3314178959528613,0.9450582518016061,0.9450582518016061,0.17656763888060162,0.17656763888060162,-0.17691360563974928,-0.27515338785149057,-0.2650032586400953,-0.3276040659453759,-0.06974288152051548,-0.19334785155799702,-0.28114414542283495,-0.2491146816914351,-0.30349003509645667,-0.016712803441265984,8.841009841801466,8.841009841801466,7.162504555805484,7.162504555805484,7.28421739844147,7.28421739844147,23.864381992640773,23.864381992640773,5.646249390559319,5.646249390559319,5.648787827825075,6.5723233493480535,6.45813175893187,7.231728144018078,5.10071061389219,5.775126957007103,6.641758725333418,6.288089420314876,6.914121033184287,5.005782090643393,205.66813200111878,205.66813200111878,0.0,228.52014666790976,0.0,205.66813200111878,228.52014666790976,0,0
+2017/04/10 13:00:00,203.15169382553333,0,981.8649407826559,0,0,0,0.1609944479225277,0.0,16.86091082671979,0.0,129.2730206906943,0,39.380909295966944,0.0002540062806550526,16.331612823797627,0,0,0.16127631648035973,538.0742580593742,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,626.7367048360209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052275216721176,0.0016539514182260986,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46043386637959977,-0.46043386637959977,-0.34065452465726437,-0.34065452465726437,-0.35109901639004815,-0.35109901639004815,0.9519841659190938,0.9519841659190938,0.17226187005417937,0.17226187005417937,-0.14788179626588166,-0.2660472286941659,-0.2692101636219981,-0.3149723192402284,-0.06126313990666591,-0.16941351266111732,-0.26318328862556023,-0.2696719539945672,-0.2884159933851902,-0.03583126800621228,9.4252686030203,9.4252686030203,7.413898157689474,7.413898157689474,7.564903731794786,7.564903731794786,24.142199066160444,24.142199066160444,5.615074878656387,5.615074878656387,5.453139013835042,6.469676464550147,6.504933861478079,7.062283206354422,5.077705616087528,5.594877351871929,6.438115417958997,6.5101167157829,6.728076770457847,5.026578485006482,203.15169382553333,203.15169382553333,0.0,225.72410425059257,0.0,203.15169382553333,225.72410425059257,0,0
+2017/04/10 14:00:00,188.72441274132723,0,943.8446018171352,0,0,0,0.0,0.0,16.86091082671979,0.0,115.5196477718057,0,39.380909295966944,0.027891810156442997,14.075073701299747,0,0,18.05593637093882,517.6496115519387,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1227.8900752262348,0.0,7.24259846286361,0.0,1426.9669211656296,0.0,0.0,0.0,0.0,0.0,1155.6490167062134,0.0,0.0,0.0,1252.9870048408316,0.0,683.3935192306643,0,0,0,0,0,0,0,0,0.05025098571273314,0.0015899061601243737,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5094790119071763,-0.5094790119071763,-0.3188421545181863,-0.3188421545181863,-0.39749176301480854,-0.39749176301480854,0.9258762183427239,0.9258762183427239,0.07195357563155785,0.07195357563155785,-0.20680602628673941,-0.3120235426594922,-0.30470273154270433,-0.3471416481109557,-0.13166143617051473,-0.20768089184931904,-0.3205635860856385,-0.3091654837662072,-0.3402802100086998,-0.15909405232430957,10.426661069979673,10.426661069979673,7.113475502654339,7.113475502654339,8.291807377377609,8.291807377377609,23.10486881146933,23.10486881146933,5.107197907041311,5.107197907041311,5.886993887432183,7.023700974240242,6.929505618123642,7.507142754751769,5.35911436317555,5.894528216631883,7.136451437801398,6.986657029674703,7.408572403727845,5.524535871478776,188.72441274132723,188.72441274132723,0.0,209.69379193480802,0.0,188.72441274132723,209.69379193480802,0,0
+2017/04/10 15:00:00,182.59334516837305,0,971.0521945697093,0,0,0,0.0,0.0,16.923524219979218,0.0,108.75639138185811,0,39.380909295966944,0.06802065158355403,14.03252441653092,0,0,45.25965631638535,517.6534843590665,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2476.129470865076,0.0,397.14607586137515,0.0,2697.3246826447757,0.0,170.17162627129917,0.0,0.0,0.0,2361.6664715533034,0.0,250.41649510917827,0.0,2468.9197904818507,0.0,115.02759139902372,0,0,0,0,0,0,0,0,0.05169953810372553,0.0016357373480510638,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4339621626043885,-0.4339621626043885,-0.39431624494632483,-0.39431624494632483,-0.45469327067765175,-0.45469327067765175,0.8487208700421855,0.8487208700421855,0.0032284270676808916,0.0032284270676808916,-0.2907096797356361,-0.3624640803606784,-0.3535642239254758,-0.3895726067550331,-0.21843904500316036,-0.29710482529945204,-0.3803473149904085,-0.36047347737555185,-0.39710132843527046,-0.24006193548627938,8.927844184047657,8.927844184047657,8.239122662485912,8.239122662485912,9.314838694915295,9.314838694915295,20.200290553330348,20.200290553330348,5.000215756057969,5.000215756057969,6.7557662773464955,7.73449075613361,7.601222141084378,8.161224424092154,5.989797054236206,6.834142324146782,8.01248301332167,7.704390196472033,8.285306463835212,6.19595174610194,182.59334516837305,182.59334516837305,0.0,202.8814946315256,0.0,182.59334516837305,202.8814946315256,0,0
+2017/04/10 16:00:00,205.66086913201596,0,1049.9778174152327,0,0,0,0.0,0.0,17.028300508570425,0.0,131.64086955684016,0,39.380909295966944,0.10431376635998052,14.074500801824112,0,0,70.94087351238537,517.6623612397738,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2603.8609632616426,0.0,730.3178955580245,0.0,2805.845210462543,0.0,7.086826268609981,0.0,0.0,0.0,2505.7959154095406,0.0,549.7425581634857,0.0,2604.057781447228,0.0,5.420791396756142,0,0,0,0,0,0,0,0,0.0559015967247562,0.0017686875537439944,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.40068818210931634,-0.40068818210931634,-0.4089102870001312,-0.4089102870001312,-0.4499571789867612,-0.4499571789867612,0.8456617501718097,0.8456617501718097,0.036366329641424014,0.036366329641424014,-0.30790117137737516,-0.38038459089032184,-0.36801093888980263,-0.4042797080152807,-0.23254712820601744,-0.31265396399647255,-0.39995890506862225,-0.38048346632210284,-0.41668428133038676,-0.2500516455748567,8.345274421010217,8.345274421010217,8.484815823141645,8.484815823141645,9.224799819369082,9.224799819369082,20.090176801876567,20.090176801876567,5.027378242265939,5.027378242265939,6.970380292492038,8.013076708570836,7.819257168806388,8.405872035239412,6.122081172777129,7.031918557542696,8.333037195079626,8.01465179017039,8.619414871391527,6.297822371349071,205.66086913201596,205.66086913201596,0.0,228.51207681335106,0.0,205.66086913201596,228.51207681335106,0,0
+2017/04/10 17:00:00,212.65169322818485,0,1063.2302744024737,0,0,0,0.0,0.0,17.346139882338,0.0,133.89528835348938,0,39.380909295966944,0.05800333357025344,18.539377160365934,0,0,41.04219105225214,560.8135006871477,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,460.66511427560613,0.0,2204.278598107185,0.0,1408.1926375343949,0.0,2377.704967317543,0.0,0.0,0.0,367.94010982790746,0.0,2087.7286866445374,0.0,1207.8727991204623,0.0,2161.2697024392264,0.0,0.0,0,0,0,0,0,0,0,0,0.056607167350940145,0.0017910113165331574,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5289569194060058,-0.5289569194060058,-0.4101089622391695,-0.4101089622391695,-0.4525681766842903,-0.4525681766842903,0.8364308181144219,0.8364308181144219,0.06240938623921364,0.06240938623921364,-0.33114130150181176,-0.3852066668821426,-0.37491982014958763,-0.407118763943061,-0.22693338457417547,-0.34583596887126655,-0.4061505063458497,-0.3883200917362297,-0.42124318887120077,-0.24245660370400868,10.853190388245238,10.853190388245238,8.505400875187505,8.505400875187505,9.274318700069443,9.274318700069443,19.76027230603455,19.76027230603455,5.080641107014458,5.080641107014458,7.280389908551939,8.090378368542773,7.926671899068737,8.45416440330132,6.068444327749802,7.488231413157578,8.437655557841268,8.140816577991217,8.699552709704136,6.219989477067543,212.65169322818485,212.65169322818485,0.0,236.27965914242762,0.0,212.65169322818485,236.27965914242762,0,0
+2017/04/10 18:00:00,197.8590439786937,0,1058.4293272978273,0,0,0,0.0,0.0,19.505468714925904,0.0,110.93442390708215,0,39.380909295966944,0.04277247604934947,24.563494382215033,0,0,32.8896896026086,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,956.7139455397485,0.0,1418.8256703196705,0.0,1852.6287789944197,0.0,1572.8127993311714,0.0,0.0,0.0,875.7066360984027,0.0,1344.1832699850825,0.0,1687.3600508304066,0.0,1384.411810193576,0.0,0.0,0,0,0,0,0,0,0,0,0.05635156137099525,0.0017829241214997664,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5739997243310124,-0.5739997243310124,-0.43714546602947885,-0.43714546602947885,-0.4683041773122405,-0.4683041773122405,0.8308102049170151,0.8308102049170151,0.06152477916308398,0.06152477916308398,-0.3371015204453752,-0.3800947880852123,-0.3751676612196365,-0.4004057647700469,-0.1539713154983398,-0.3587870690412493,-0.4033119197526134,-0.3892944626553855,-0.4157297951966663,-0.20247419507296655,11.902485792972527,11.902485792972527,8.986067536881123,8.986067536881123,9.578973634226088,9.578973634226088,19.561141268389875,19.561141268389875,5.07837086775595,5.07837086775595,7.363585827341865,8.008462565711213,7.930562990280421,8.340532774911154,5.491265833277154,7.67902149700592,8.389488802615801,8.156686694764858,8.602749427977912,5.850160114438609,197.8590439786937,197.8590439786937,0.0,219.84338219854857,0.0,197.8590439786937,219.84338219854857,0,0
+2017/04/10 19:00:00,196.52696698621412,0,1025.4443011195956,0,0,0,0.0,0.0,24.883914210492264,0.0,101.68988858149199,0,39.380909295966944,0.04253722049740893,27.097742475311204,0,0,35.395015936921354,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,947.970637033842,0.0,1413.825779414407,0.0,1797.469826253824,0.0,1541.5188451821225,0.0,0.0,0.0,920.0344327947882,0.0,1388.5656063934266,0.0,1665.559603166987,0.0,1378.0953593335726,0.0,0.0,0,0,0,0,0,0,0,0,0.05459541414503741,0.0017273608474060564,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4533710471317947,-0.4533710471317947,-0.4465177044758081,-0.4465177044758081,-0.5062914923692486,-0.5062914923692486,0.7946271980050402,0.7946271980050402,0.02533819217610886,0.02533819217610886,-0.3397269600570932,-0.3779555604325326,-0.37546319210231116,-0.3958518840169521,-0.13303156858955223,-0.3630268560199483,-0.403692130986355,-0.390240380054078,-0.4114536139558443,-0.19584401103500432,9.28960450324334,9.28960450324334,9.16001603472614,9.16001603472614,10.358423045645267,10.358423045645267,18.311017936364763,18.311017936364763,5.013290600668398,5.013290600668398,7.400711655894028,7.974513391839551,7.935206234099638,8.264546458932742,5.366633338013401,7.7430312731704305,8.395920438915198,8.172132181314169,8.528566046734213,5.7953033981160615,196.52696698621412,196.52696698621412,0.0,218.363296651349,0.0,196.52696698621412,218.363296651349,0,0
+2017/04/10 20:00:00,210.9725297650534,0,975.4969737520547,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.0442780087718242,23.02452259012425,0,0,39.39783066972589,581.1956179568878,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1022.8449418182928,0.0,1450.9824073213645,0.0,1828.036754575151,0.0,1562.0000810089894,0.0,0.0,0.0,1041.173475827659,0.0,1428.632108870926,0.0,1737.24555811386,0.0,1427.4671937564708,0.0,0.0,0,0,0,0,0,0,0,0,0.051936181439671165,0.0016432245782463716,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42596816241916347,-0.42596816241916347,-0.4612863122854209,-0.4612863122854209,-0.556994463448242,-0.556994463448242,0.7514517723030212,0.7514517723030212,-0.02784667536604724,-0.02784667536604724,-0.34834068088209,-0.38118839138278005,-0.3805780155484304,-0.397739080122417,-0.13251398906331574,-0.37196246538309347,-0.40567711717388505,-0.39714368993947935,-0.4147144374731244,-0.20119151108800304,8.783550314030023,8.783550314030023,9.441787802774257,9.441787802774257,11.496004727337933,11.496004727337933,16.891940211484155,16.891940211484155,5.016052499410719,5.016052499410719,7.524573281307411,8.025893311239656,8.016158345815214,8.295928692851277,5.363783802916117,7.880443743917979,8.429598855650255,8.286011486856154,8.585064020231599,5.839404033488691,210.9725297650534,210.9725297650534,0.0,234.41392196117044,0.0,210.9725297650534,234.41392196117044,0,0
+2017/04/10 21:00:00,196.94033685640238,0,1000.1838433600375,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.08862231517741752,24.955777090605395,0,0,81.11526320245116,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1273.7899176185774,0.0,2697.6171500151186,0.0,2016.2012683402513,0.0,2786.828316708869,0.0,364.6508744410609,0.0,1159.1759208458093,0.0,2575.1055518800604,0.0,1790.0525464146556,0.0,2563.277222193289,0.0,107.7520242483043,0,0,0,0,0,0,0,0,0.053250528663329064,0.0016848096082273168,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4923561668929774,-0.4923561668929774,-0.4892350005418443,-0.4892350005418443,-0.5147024273808875,-0.5147024273808875,0.6333654498681834,0.6333654498681834,-0.11644564847749775,-0.11644564847749775,-0.3709324925465906,-0.40948948595228996,-0.40196712882707675,-0.4241224556281595,-0.2058720850969264,-0.39773628835070757,-0.4373474638173558,-0.4217336366467505,-0.4447319006297468,-0.24467524916857725,10.065253687817048,10.065253687817048,10.000740855289337,10.000740855289337,10.539433234595677,10.539433234595677,13.419884528736617,13.419884528736617,5.2808599492323935,5.2808599492323935,7.864431201705017,8.494754820887977,8.366790019299458,8.750624517321285,5.87898614813497,8.295882155906611,8.989776809497386,8.708227040647571,9.126580390863168,6.242475239493956,196.94033685640238,196.94033685640238,0.0,218.82259650711376,0.0,196.94033685640238,218.82259650711376,0,0
+2017/04/10 22:00:00,140.08725862793025,0,842.018390314954,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.13149510495528097,20.770830715198727,0,0,120.50439157361787,561.8074124348875,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1361.1716138428235,0.0,3214.6265742459627,0.0,2050.156624967783,0.0,3286.428850981694,0.0,28.19608172557203,0.0,1332.7451622410097,0.0,3141.3530659903836,0.0,1904.915331187587,0.0,3115.9535834068924,0.0,5.150972451212089,0,0,0,0,0,0,0,0,0.04482968278900332,0.0014183799145774279,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.636202365188313,-0.636202365188313,-0.5615071984038739,-0.5615071984038739,-0.6046298476303823,-0.6046298476303823,0.41864189740493846,0.41864189740493846,-0.35550192129616176,-0.35550192129616176,-0.39683555449491265,-0.4407862289943404,-0.4273825412454811,-0.454227456965775,-0.25776917259903503,-0.4281350107882642,-0.47403798568479993,-0.45213350407380043,-0.4804756860793421,-0.2861590689328279,13.496225327997593,13.496225327997593,11.602651239852236,11.602651239852236,12.66629826088429,12.66629826088429,8.653717267390817,8.653717267390817,7.629950562723394,7.629950562723394,8.280884936206576,9.053191589232767,8.808880517925559,9.305940213275775,6.379394343324705,8.822391529186774,9.692633922378832,9.26605456662034,9.821936563686222,6.701047862022179,140.08725862793025,140.08725862793025,0.0,155.65250958658916,0.0,140.08725862793025,155.65250958658916,0,0
+2017/04/10 23:00:00,90.96193641261878,0,703.065122602214,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.18768763972993455,11.831292511596294,0,0,155.58622739024543,494.24336644315235,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1378.2810487108104,0.0,2815.4068375315746,0.0,2017.7857463253417,0.0,3699.7495015376153,0.0,0.8398968949126633,0.0,1401.797020476865,0.0,3605.780404143241,0.0,1943.1590276349575,0.0,3579.1226197737706,0.0,0.0,0,0,0,0,0,0,0,0,0.03743170789236529,0.0011843131456616917,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7406131229877048,-0.7406131229877048,-0.7277544282089865,-0.7277544282089865,-0.7457405243406621,-0.7457405243406621,0.1777173577196588,0.1777173577196588,-0.4520895779824147,-0.4520895779824147,-0.42238900485709024,-0.5341627302355165,-0.45205154229276556,-0.48203655553839647,-0.2886487501881507,-0.45850536032682454,-0.5081596156271722,-0.48161896147560784,-0.5139924949177302,-0.31767303938856417,16.548203339745484,16.548203339745484,16.146941079846997,16.146941079846997,16.71018606479322,16.71018606479322,5.654704424286038,5.654704424286038,9.26521988211043,9.26521988211043,8.719834348607321,10.969968819524894,9.264497194202264,9.853556232278464,6.730876495993229,9.388012338670734,10.398362312423984,9.845086426461407,10.524036684559945,7.0979429283234055,90.96193641261878,90.96193641261878,0.0,101.06881823624309,0.0,90.96193641261878,101.06881823624309,0,0
+2017/04/11 00:00:00,39.34035940802852,0,544.4017877120713,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5786676821599747e-09,9.543038409026666,0,0,0.0,491.1662589432551,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.028984354419824176,0.000917044770081589,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6358537475375641,-0.6358537475375641,-0.6276757436840292,-0.6276757436840292,-0.6361321266619494,-0.6361321266619494,0.21393119515302744,0.21393119515302744,-0.17494284924477277,-0.17494284924477277,-0.494914342707584,-0.5994812969579892,-0.5684363820521093,-0.603120615390468,-0.04748131911164162,-0.5490695293649953,-0.6220713578167522,-0.606972013308984,-0.6415421729956677,-0.14068877126196144,13.486825285258874,13.486825285258874,13.267828037771807,13.267828037771807,13.494331009143622,13.494331009143622,5.9492878455125435,5.9492878455125435,5.634394751496146,5.634394751496146,10.118443509497624,12.535063900691469,11.76812329899795,12.627709382063813,5.046673494448157,11.310856777055307,13.119424862232378,12.726379792803968,13.640865368720497,5.410092088676862,39.34035940802852,39.34035940802852,0.0,43.71151045336502,0.0,39.34035940802852,43.71151045336502,0,0
+2017/04/11 01:00:00,23.722141077919463,0,46.678392674618095,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250456542416704,0,0,0.0,11.188040162073964,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0024851922009933108,7.862974891756426e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6853652119125634,-0.6853652119125634,-0.6832905160727314,-0.6832905160727314,-0.6853678064063453,-0.6853678064063453,0.10433740976043719,0.10433740976043719,0.006995292881584052,0.006995292881584052,-0.5984393083682966,-0.7029849433844283,-0.6684647743920213,-0.6989548234271045,0.038571972130216015,-0.6583459558834834,-0.7275860599275424,-0.7140227775005654,-0.7450551189473075,-0.13200850948048887,14.87458974252172,14.87458974252172,14.814307158361501,14.814307158361501,14.874665244933638,14.874665244933638,5.225461286500817,5.225461286500817,5.001012963029737,5.001012963029737,12.508644035649468,15.394048515107414,14.388948813872048,15.274051202952009,5.030800199416092,14.104098555531564,16.141734188358498,15.726288976794066,16.68846774117074,5.361011638452922,23.722141077919463,23.722141077919463,0.0,26.357934531021627,0.0,23.722141077919463,26.357934531021627,0,0
+2017/04/11 02:00:00,28.344483719603254,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251206331303592,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6749169335878948,-0.6749169335878948,-0.675051092285875,-0.675051092285875,-0.6751018711758927,-0.6751018711758927,0.080863115270517,0.080863115270517,0.09539396319273352,0.09539396319273352,-0.6259494856086344,-0.7192411951484187,-0.6981875045740861,-0.7278576562165322,0.06382417228751536,-0.7018568971045427,-0.7713360455500167,-0.7589760339686163,-0.7892070033604832,-0.1184942572903238,14.572895614793026,14.572895614793026,14.576739514671488,14.576739514671488,14.578194628909841,14.578194628909841,5.135396944630656,5.135396944630656,5.188451336482359,5.188451336482359,13.221971778519048,15.885192406096692,15.251283648081156,16.150134071593442,5.084339400323643,15.360390148388333,17.535621278257977,17.133523462843712,18.12851383315413,5.29083530794567,28.344483719603254,28.344483719603254,0.0,31.49387079955917,0.0,28.344483719603254,31.49387079955917,0,0
+2017/04/11 03:00:00,23.722281463106647,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251860394288579,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.702704348177608,-0.702704348177608,-0.7050841773077972,-0.7050841773077972,-0.7032023687815665,-0.7032023687815665,0.018657115339559716,0.018657115339559716,0.1402781856099332,0.1402781856099332,-0.6706305703755346,-0.7563393754686893,-0.7439508617037524,-0.7718814980368549,0.0890455321586341,-0.758866592085001,-0.8272117874208182,-0.8168742243392988,-0.8453904342702472,-0.11259008110394757,15.385671053363339,15.385671053363339,15.456831115174595,15.456831115174595,15.400542312920052,15.400542312920052,5.007205707331792,5.007205707331792,5.407699894858197,5.407699894858197,14.450493285125702,17.048591960419287,16.653519696848804,17.55351622382878,5.164194682667514,17.12999222960262,19.43434873360924,19.07312203111735,20.080429536976368,5.262558804748679,23.722281463106647,23.722281463106647,0.0,26.35809051456294,0.0,23.722281463106647,26.35809051456294,0,0
+2017/04/11 04:00:00,42.10412689191589,0,387.3464005708273,0,0,0,0.0,0.007613388107736728,4.633261998087618,9.319298099999997,25.555573451546493,0,1.1576158683772675,0.8532544834975134,0.5775096022992539,0,0,298.620519289467,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.225030101196171,1557.6008022010578,0.6293878176924864,1256.2254497072627,1.266635778524642,1978.8926643742454,0.6954395820181617,1310.2940871421977,0.0,0.0,1.3354502557688648,1776.4210602990959,0.6178758982570344,1283.8799304632325,1.1006031194994192,2071.3183537970594,0.7429655547799485,1332.9040084279718,0.0,0.0,0,0,0,0,0,0,0,0,0.02062260927645206,0.0006524849823624654,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6625200062459966,-0.6625200062459966,-0.668025476643361,-0.668025476643361,-0.6628578692282637,-0.6628578692282637,0.028450271163337842,0.028450271163337842,0.27975098234004564,0.27975098234004564,-0.5428655927675214,-0.5851583054606724,-0.5750270565240837,-0.592156700656067,0.1300455308241092,-0.5936642628453073,-0.6331337916839025,-0.6189546007322271,-0.6409415564943212,-0.09824514956986106,14.221062923001028,14.221062923001028,14.376490258780237,14.376490258780237,14.230563469327436,14.230563469327436,5.016755964879977,5.016755964879977,6.6254763242085914,6.6254763242085914,11.167815726974425,12.176028921623,11.927444169724993,12.350345639180759,5.350346980240104,12.388174399526818,13.413666073710885,13.037483411448406,13.62453466800504,5.199889658839396,42.10412689191589,42.10412689191589,0.0,46.782363213239876,0.0,42.10412689191589,46.782363213239876,0,0
+2017/04/11 05:00:00,73.31088898932954,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5248459593736721,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4521079694493066,-0.4521079694493066,-0.4650139818094382,-0.4650139818094382,-0.45223081604736676,-0.45223081604736676,0.19681894726562926,0.19681894726562926,0.6608826817148905,0.6608826817148905,-0.6636962279243196,-0.7178184278922011,-0.7074244208493522,-0.7300740477105364,0.25382456759508165,-0.6909236838453847,-0.7424472312542169,-0.7270443104977585,-0.7499055922686835,0.012481696098352296,9.265569347047418,9.265569347047418,9.51439243400722,9.51439243400722,9.267903986455096,9.267903986455096,5.803254535372417,5.803254535372417,14.175092184844303,14.175092184844303,14.254159074446136,15.841752123952716,15.527045798161595,16.218800801273858,6.3373880963761025,15.037014454294493,16.60601618566784,16.12498853014472,16.84259679419391,5.003225010133562,73.31088898932954,73.31088898932954,0.0,81.45654332147727,0.0,73.31088898932954,81.45654332147727,0,0
+2017/04/11 06:00:00,99.80338788316608,0,709.890483999613,0,0,0,0.2956923147308995,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.13704297053831196,2.5203802194613306e-09,0.52494894698352,0,0,0.0,479.2031926680762,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,962.8477819545581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0377950951887535,0.0011958104664175741,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3007532921571652,-0.3007532921571652,-0.3174388655536144,-0.3174388655536144,-0.30108403022105096,-0.30108403022105096,0.32076030218667045,0.32076030218667045,0.8748845478654396,0.8748845478654396,-0.6185308352107783,-0.6886162134419628,-0.6766673308073331,-0.7031083290416149,0.3571706956927515,-0.6755039034078062,-0.7343094950801233,-0.7199521931730543,-0.7464437936912125,0.13691466243729733,6.87963055401211,6.87963055401211,7.094838713988253,7.094838713988253,6.883781937481871,6.883781937481871,7.13908500151841,7.13908500151841,21.1579150802459,21.1579150802459,13.026374910589283,14.969425482359256,14.62310901388473,15.397733397768619,7.654819982612281,14.589719159148274,16.350607829446417,15.906933438403144,16.732491373664644,5.38836712588467,99.80338788316608,99.80338788316608,0.0,110.89265320351787,0.0,99.80338788316608,110.89265320351787,0,0
+2017/04/11 07:00:00,148.1925842247541,0,904.8808931435517,0,0,0,0.0,0.0,8.83882312045455,0.0,69.33401494192633,0,39.380909295966944,0.13826548562152505,27.06859617833047,0,0,39.04784175478169,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2269.350411518184,0.0,3570.7877970680725,0.0,2792.134995252615,0.0,3512.5204799448848,0.0,2002.4866876839787,0.0,2315.6775722046177,0.0,3517.039849784118,0.0,2754.0604317808543,0.0,3418.812160559653,0.0,2443.399494753779,0,0,0,0,0,0,0,0,0.04817652900227278,0.0015242717958210176,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4827713231755399,-0.4827713231755399,-0.48625128506546234,-0.48625128506546234,-0.5147151702023526,-0.5147151702023526,0.18482233546862212,0.18482233546862212,0.4871375799690922,0.4871375799690922,-0.5214746756062907,-0.5729202196447585,-0.5520054986343597,-0.5773858440917048,0.01763172592591528,-0.5647679494796376,-0.614882945228952,-0.5873122819850187,-0.6165669022172552,-0.11588153039527048,9.868477342918226,9.868477342918226,9.939462262717512,9.939462262717512,10.539709791732676,10.539709791732676,5.708178595569848,5.708178595569848,9.957624581412503,9.957624581412503,10.68740142991588,11.876309254495425,11.379131483550907,11.984922666422634,5.00643541491965,11.680260051956367,12.931072170009926,12.229453962752757,12.974994530417604,5.278143690848935,148.1925842247541,148.1925842247541,0.0,164.65842691639347,0.0,148.1925842247541,164.65842691639347,0,0
+2017/04/11 08:00:00,163.11024873480184,0,971.2919470128032,0,0,0,0.0,0.0,11.67966540338046,0.0,83.2008179303116,0,39.380909295966944,0.10349022631395714,25.313390676374603,0,0,52.22336685521699,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1969.2335627863924,0.0,3305.8273589120363,0.0,2411.8124560802044,0.0,3213.7790904475246,0.0,652.2559573829146,0.0,1877.2752124497167,0.0,3251.9366992785835,0.0,2391.6941420484163,0.0,3096.1159476889575,0.0,410.6801035757833,0,0,0,0,0,0,0,0,0.05171230270138208,0.0016361412110232586,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5321799509841048,-0.5321799509841048,-0.5500666524825342,-0.5500666524825342,-0.5509980790305484,-0.5509980790305484,0.19336399873291113,0.19336399873291113,-0.05781448293902511,-0.05781448293902511,-0.4787677417906188,-0.5255287746396835,-0.5050561114859646,-0.5234414523903643,-0.21076783693807483,-0.5093990560926835,-0.5544707059068781,-0.5279012081075168,-0.5480562078468671,-0.26545268418776014,10.925352101871326,10.925352101871326,11.33400254649355,11.33400254649355,11.355662263044294,11.355662263044294,5.775256637589123,5.775256637589123,5.069202090988284,5.069202090988284,9.787457918117823,10.776929936591486,10.332094277816267,10.730745807912768,5.921368887959176,10.42494401413201,11.436747426636543,10.829651450817195,11.287379153066368,6.463096089498947,163.11024873480184,163.11024873480184,0.0,181.23360970533537,0.0,163.11024873480184,181.23360970533537,0,0
+2017/04/11 09:00:00,181.1255082408132,0,983.0819539805409,0,0,0,0.0,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,0.07847114803577027,20.76062850731612,0,0,48.68747153484027,561.7457810639874,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1058.1284881636936,0.0,2700.1977043933975,0.0,1675.436467264311,0.0,2576.02946379675,0.0,58.53484782529158,0.0,910.0126803463934,0.0,2538.696444416204,0.0,1487.5090782497894,0.0,2324.2643336363226,0.0,32.166605648969515,0,0,0,0,0,0,0,0,0.052340011405281196,0.0016560014768655664,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48792657791312977,-0.48792657791312977,-0.42648322314971815,-0.42648322314971815,-0.4989205703678226,-0.4989205703678226,0.3069059869992392,0.3069059869992392,-0.1634767498001247,-0.1634767498001247,-0.4460132969720513,-0.498999281743446,-0.47810195430487745,-0.48837661007843186,-0.23394672717331397,-0.46604767117345797,-0.5206596877861746,-0.49471345789882576,-0.5050319270252205,-0.27756249845456604,9.973821578842276,9.973821578842276,8.79276463259049,8.79276463259049,10.202309335443516,10.202309335443516,6.957615882508975,6.957615882508975,5.553867689881969,5.553867689881969,9.150558106638456,10.20396401417753,9.774051605731216,9.983072129710948,6.1356596213172026,9.534631830741077,10.669489558569879,10.114256468306436,10.331579510535917,6.600064017026838,181.1255082408132,181.1255082408132,0.0,201.25056471201464,0.0,181.1255082408132,201.25056471201464,0,0
+2017/04/11 10:00:00,212.14912601075457,0,1073.4796779350165,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.10157255951976445,18.541083165863736,0,0,70.81774485917519,541.2873504127678,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,621.3653684668923,0.0,3114.9920738785577,0.0,1288.9522762498104,0.0,2934.732861209331,0.0,27.848033735398882,0.0,469.71510264573124,0.0,2909.412091924667,0.0,1007.4312027015769,0.0,2709.6176457107786,0.0,15.754658524340298,0,0,0,0,0,0,0,0,0.057152853186814255,0.0018082764360058093,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.439161217418434,-0.439161217418434,-0.30371324983051096,-0.30371324983051096,-0.441611975090085,-0.441611975090085,0.4336774880237452,0.4336774880237452,-0.13139137943981255,-0.13139137943981255,-0.42937085678500325,-0.48811050407548806,-0.4619412431869607,-0.47523934807764057,-0.257669729622795,-0.43978740715775805,-0.5035364946834866,-0.47181689605267835,-0.4827892810715126,-0.2908193934708885,9.023161188593122,9.023161188593122,6.91694812279664,6.91694812279664,9.0684949552126,9.0684949552126,8.922658620830191,8.922658620830191,5.357641564490166,5.357641564490166,8.844634565262822,9.977601181780528,9.454500696994941,9.716627907281676,6.378327328802641,9.034719808713376,10.299798284227194,9.648437494239857,9.868842310039454,6.757096314944434,212.14912601075457,212.14912601075457,0.0,235.72125112306063,0.0,212.14912601075457,235.72125112306063,0,0
+2017/04/11 11:00:00,228.18370984245462,0,1096.3348649388922,0,0,0,0.0,0.0,16.73568395689411,0.0,147.76209134187457,0,39.380909295966944,0.027788665354951492,20.845261379909722,0,0,19.98271929209022,561.7420342149121,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1679.609405078203,0.0,707.3525154162253,0.0,1513.3431692721708,0.0,0.0,0.0,0.0,0.0,1486.0311200321114,0.0,454.954747219174,0.0,1242.6030973492614,0.0,0.0,0,0,0,0,0,0,0,0,0.05836968027188999,0.0018467759967791591,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5157461499364697,-0.5157461499364697,-0.3227712838906404,-0.3227712838906404,-0.4742625768205249,-0.4742625768205249,0.6235553188188747,0.6235553188188747,-0.03978313877174994,-0.03978313877174994,-0.391141935979254,-0.452435412586071,-0.4266347014855463,-0.44117961610386514,-0.19883876475243828,-0.37376339743412246,-0.45561447411707406,-0.42429835133877086,-0.4394974040143452,-0.27202898975565865,10.562108393720152,10.562108393720152,7.166101380853547,7.166101380853547,9.69711479726584,9.69711479726584,13.158587235966664,13.158587235966664,5.032764970213364,5.032764970213364,8.186888897373763,9.271793684652906,8.795476711530995,9.060478488871041,5.819853703705775,7.908550761016315,9.332464022382396,8.753756042721918,9.029364646204087,6.536710615158711,228.18370984245462,228.18370984245462,0.0,253.53745538050512,0.0,228.18370984245462,253.53745538050512,0,0
+2017/04/11 12:00:00,206.33152784886275,0,1026.8211307102747,0,0,0,0.0,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,0.008548728454947014,18.52329776991695,0,0,6.421102820538978,541.28026897039,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,650.5861450195608,0.0,521.4334625245226,0.0,504.1482225942677,0.0,0.0,0.0,0.0,0.0,356.7873449493596,0.0,102.99942562089431,0.0,149.9033946235855,0.0,0.0,0,0,0,0,0,0,0,0,0.054668717572272006,0.0017296801167470553,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3087248519925892,-0.3087248519925892,-0.32875223240608753,-0.32875223240608753,-0.48565647738124984,-0.48565647738124984,0.7336309460771756,0.7336309460771756,-0.003516293769461734,-0.003516293769461734,-0.24408604952756766,-0.42070826503631586,-0.3983562595116126,-0.4140145147094982,-0.08514313478726057,-0.17691628210190977,-0.41363884616079516,-0.38706300505018054,-0.4044366924116205,-0.16302914229377038,6.980976663518362,6.980976663518362,7.247465288646168,7.247465288646168,9.927292232105799,9.927292232105799,16.329439545708524,16.329439545708524,5.00025594778711,5.00025594778711,6.236483591423379,8.690103511698666,8.306224838644184,8.572898554590111,5.150113914110094,5.648807485112087,8.56637765891405,8.120401637615544,8.408533329152434,5.550835304495465,206.33152784886275,206.33152784886275,0.0,229.25725316540306,0.0,206.33152784886275,229.25725316540306,0,0
+2017/04/11 13:00:00,202.78769472765617,0,985.6489486751846,0,0,0,0.0,0.0,16.67307048032785,0.0,129.2730206906943,0,39.380909295966944,0.003035708531342116,16.31366681798425,0,0,2.314446909538131,539.7050953588447,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,287.5091441265959,0.0,20.685835131543016,0.0,435.0999836768734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.806005680732994,0.0,0.0,0,0,0,0,0,0,0,0,0.05247668010421411,0.0016603255792338619,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2805226388615488,-0.2805226388615488,-0.162833692950864,-0.162833692950864,-0.5057068956156104,-0.5057068956156104,0.7885025224485096,0.7885025224485096,0.006461730684382752,0.006461730684382752,-0.1643835127353787,-0.37421385354688685,-0.3845134692204948,-0.40011191167404875,-0.06250141890640196,-0.11291930013643377,-0.3535170718381169,-0.33810625731784916,-0.3883541086691128,-0.13705285349101207,6.634484838479381,6.634484838479381,5.549513822779687,5.549513822779687,10.345955740002793,10.345955740002793,18.104884688942022,18.104884688942022,5.0008643295415,5.0008643295415,5.560036292449837,7.915602623777303,8.079204759553747,8.335602750732278,5.080879160495883,5.264097387466094,7.6005250525396235,7.377759035532506,8.14136994717613,5.389152144147957,202.78769472765617,202.78769472765617,0.0,225.31966080850685,0.0,202.78769472765617,225.31966080850685,0,0
+2017/04/11 14:00:00,189.17007627738403,0,931.5197267889729,0,0,0,0.0,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,0.007596035036337195,14.094264098533456,0,0,5.857560101821104,517.5231127928943,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,242.36958472120835,0.0,0.0,0.0,1012.9989269578205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,695.6449638444362,0.0,0.0,0,0,0,0,0,0,0,0,0.04959480023711668,0.0015691449090748765,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.33932466508614917,-0.33932466508614917,-0.24206330448965216,-0.24206330448965216,-0.5571407479340664,-0.5571407479340664,0.8056902220653703,0.8056902220653703,-0.0340088672744055,-0.0340088672744055,-0.1630059105341037,-0.32281084739595595,-0.37560381875064913,-0.41256924136750006,-0.115798992339586,-0.05377212465065495,-0.27829591004465964,-0.31593456308802365,-0.4011514920532577,-0.1886781548447349,7.395003888129622,7.395003888129622,6.216025002000293,6.216025002000293,11.49944792413342,11.49944792413342,18.68738454257273,18.68738454257273,5.023943504814483,5.023943504814483,5.55067814538728,7.166634613153903,7.937417002902805,8.547844460839102,5.277747374544873,5.0598620451225855,6.608557767191101,7.074953035498041,8.353060555042163,5.738081078948966,189.17007627738403,189.17007627738403,0.0,210.1889736415378,0.0,189.17007627738403,210.1889736415378,0,0
+2017/04/11 15:00:00,182.36593806759694,0,932.2081423976775,0,0,0,0.0,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,0.008350897928736932,14.05262741580157,0,0,6.544396002882296,517.5246925005378,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1193.1072510299668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,927.9738579958023,0.0,0.0,0,0,0,0,0,0,0,0,0.049631451994038144,0.0015703045451154897,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3932842179519681,-0.3932842179519681,-0.19390092263255035,-0.19390092263255035,-0.5507294220574604,-0.5507294220574604,0.8363299402894699,0.8363299402894699,-0.02086769649842384,-0.02086769649842384,-0.16060251768592812,-0.24246441418194928,-0.3820913804634881,-0.4263535873967626,-0.1725737116966091,-0.10345102167884757,-0.1716908913098597,-0.3247753091274062,-0.41603952536175687,-0.24288811592655082,8.222093236660598,8.222093236660598,5.779574966477455,5.779574966477455,11.349410961242228,11.349410961242228,19.756686687385837,19.756686687385837,5.009014431717631,5.009014431717631,5.5345411326194665,6.220068272854874,8.040324373197905,8.7904444066819,5.6173066833220275,5.22164497995513,5.610998982353934,7.193194850539172,8.608153074463416,6.22434661575295,182.36593806759694,182.36593806759694,0.0,202.6288200751077,0.0,182.36593806759694,202.6288200751077,0,0
+2017/04/11 16:00:00,205.4670338715923,0,984.8450524771617,0,0,0,0.05551080619545151,0.0,16.90307355543791,0.0,131.64086955684016,0,39.380909295966944,0.007469736596157959,14.04722571810133,0,0,5.944012918620938,517.526456895467,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,213.57936246168225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1094.603050405211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,814.3942069557044,0.0,0.0,0,0,0,0,0,0,0,0,0.0524338800751801,0.0016589714161493073,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4475114747551619,-0.4475114747551619,-0.014474337346549064,-0.014474337346549064,-0.515621223310108,-0.515621223310108,0.8790254533282673,0.8790254533282673,0.05295148325338393,0.05295148325338393,-0.22042477139464955,-0.13271862338443732,-0.383945202952857,-0.43277968038601594,-0.1725060100448451,-0.14091757009279848,-0.06598463648042076,-0.3302266895732655,-0.4248905362740965,-0.24520632792381808,9.178681804788482,9.178681804788482,5.004336928911698,5.004336928911698,10.559391845735789,10.559391845735789,21.312067631926737,21.312067631926737,5.058048595076073,5.058048595076073,6.007911626699936,5.364909085786621,8.070060218670008,8.906327168853352,5.616821807801699,5.4114281825180655,5.090146989485561,7.267756703916447,8.764308649630763,6.247888346393296,205.4670338715923,205.4670338715923,0.0,228.2967043017692,0.0,205.4670338715923,228.2967043017692,0,0
+2017/04/11 17:00:00,211.56639321347285,0,1006.5267771558827,0,0,0,0.08601467594775818,0.0,17.03716072779536,0.0,133.89528835348938,0,39.380909295966944,0.004790102311864155,18.588248656120836,0,0,3.8590530472284685,541.2931414455804,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,331.69463523872145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,750.0235906664508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,480.9772366484103,0.0,0.0,0,0,0,0,0,0,0,0,0.053588231156873216,0.0016954942797249976,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.516051427473709,-0.516051427473709,0.05090482578464526,0.05090482578464526,-0.5049360231391498,-0.5049360231391498,0.8961386389029418,0.8961386389029418,0.06322849435832222,0.06322849435832222,-0.22471488832634828,-0.06017659140516964,-0.3538849151910073,-0.4308976616578355,-0.14962955681189008,-0.16943071745102373,0.09669732034753964,-0.29287778629487116,-0.42579370380717263,-0.17879858248056163,10.5687495397367,10.5687495397367,5.053647468097736,5.053647468097736,10.32953844114624,10.32953844114624,21.956588567013384,21.956588567013384,5.0827721692078285,5.0827721692078285,6.047611932418917,5.074973279725427,7.605965696587461,8.872204871563156,5.463923829163107,5.594998334105057,5.1936382493289415,6.782144041159327,8.78043187014903,5.662706091134723,211.56639321347285,211.56639321347285,0.0,235.07377023719204,0.0,211.56639321347285,235.07377023719204,0,0
+2017/04/11 18:00:00,195.08476215894635,0,1026.1185020381924,0,0,0,0.0889713305422079,0.0,17.644803712327896,0.0,110.93442390708215,0,39.380909295966944,0.0007139742471331503,25.318952337552783,0,0,0.5788643429736221,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,343.186754273851,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,122.00441890118196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05463130910132862,0.0017284965388022619,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5476109585902177,-0.5476109585902177,-0.07686677153891718,-0.07686677153891718,-0.4577381787343846,-0.4577381787343846,0.896891840952934,0.896891840952934,0.021920727858760515,0.021920727858760515,-0.2265324044275648,-0.0012595864935871393,-0.31106938091841446,-0.42037441083224236,-0.0755783036345242,-0.16775339240814643,0.17861383099142827,-0.25350239493701454,-0.4132256337288745,-0.11413581398972165,11.277077256945617,11.277077256945617,5.122341274338638,5.122341274338638,9.373235893330516,9.373235893330516,21.985230558870015,21.985230558870015,5.009947183956413,5.009947183956413,6.0646637158413625,5.000032842549018,7.011295419281183,8.684212340691431,5.118273157720282,5.583261631629526,5.661335370382631,6.333986176158959,8.559212056270283,5.269821739448176,195.08476215894635,195.08476215894635,0.0,216.76084684327373,0.0,195.08476215894635,216.76084684327373,0,0
+2017/04/11 19:00:00,192.41126118892765,0,996.6968355471009,0,0,0,0.0,0.0,22.089604118759734,0.0,101.68988858149199,0,39.380909295966944,0.008132215863840156,27.0977424753112,0,0,6.647550364426453,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,487.3528261970697,0.0,771.314213478762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,250.73683839255614,0.0,635.3940891098082,0.0,0.0,0,0,0,0,0,0,0,0,0.05306487778451839,0.0016789357438310847,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5944398218671735,-0.5944398218671735,-0.39447369414662775,-0.39447369414662775,-0.5091958337848254,-0.5091958337848254,0.8701834344066536,0.8701834344066536,-0.025838042933491904,-0.025838042933491904,-0.24799931344690468,-0.12592924194645064,-0.3609180206111122,-0.4177524498151767,-0.11047120873424872,-0.22815764370371036,-0.0292675692987825,-0.34252692066880325,-0.41900297252146385,-0.1425388980128502,12.407673669770205,12.407673669770205,8.241724727336788,8.241724727336788,10.420581047272293,10.420581047272293,20.983762981979226,20.983762981979226,5.013820160531566,5.013820160531566,6.27655135665897,5.328503902139573,7.711097644984889,8.638111526759943,5.252764133159857,6.080028884355286,5.017732536051625,7.440627996844526,8.660062164720898,5.420958509947212,192.41126118892765,192.41126118892765,0.0,213.79029020991962,0.0,192.41126118892765,213.79029020991962,0,0
+2017/04/11 20:00:00,208.97429099702708,0,943.0762402576846,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.008420872860076428,23.02326964512636,0,0,6.997688768460081,581.1750263637833,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,486.1697806490859,0.0,779.4437649531457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,283.2291763506656,0.0,680.4699921493212,0.0,0.0,0,0,0,0,0,0,0,0,0.05021007757417746,0.0015886118551357968,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.49298332392218486,-0.49298332392218486,-0.3974546118211413,-0.3974546118211413,-0.579030279612258,-0.579030279612258,0.8267108846106531,0.8267108846106531,-0.08397124411942095,-0.08397124411942095,-0.2628221189251931,-0.1920510890972106,-0.38465410996705957,-0.4193455647855173,-0.13275858084810985,-0.28147429824131953,-0.12146692279189367,-0.3809700806881279,-0.4260961606386363,-0.17982954987057712,10.078267441769526,10.078267441769526,8.291188512410784,8.291188512410784,12.025136777581764,12.025136777581764,19.416742155148143,19.416742155148143,5.146008795565734,5.146008795565734,6.434159794410746,5.764748025381536,8.081470079357715,8.666087444904264,5.3651290148803525,6.64562934080584,5.305620345963348,8.022409618040143,8.785839109963774,5.670381273543882,208.97429099702708,208.97429099702708,0.0,232.1936566633634,0.0,208.97429099702708,232.1936566633634,0,0
+2017/04/11 21:00:00,196.4641712842475,0,935.643333529544,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.019574300315391414,24.891857053557978,0,0,16.57475337195774,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.6641522885581,0.0,559.7500339181256,0.0,1746.8687301789278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,425.2441435492463,0.0,1662.308819982925,0.0,202.46282238361502,0,0,0,0,0,0,0,0,0.04981434411436769,0.0015760911243163922,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44886544654977795,-0.44886544654977795,-0.4403137847618018,-0.4403137847618018,-0.5165652437105154,-0.5165652437105154,0.7476722166723162,0.7476722166723162,-0.16752435318436704,-0.16752435318436704,-0.28112714651158527,-0.27854354123705727,-0.4001597819258686,-0.4378095891662595,-0.20890963623970252,-0.2812082055904175,-0.23202863391469117,-0.4031547543069141,-0.4494273497713177,-0.2560089352349921,9.204181513585127,9.204181513585127,9.044449065894412,9.044449065894412,10.579936434925088,10.579936434925088,16.771503621269275,16.771503621269275,5.581668086171092,5.581668086171092,6.6415595595196635,6.611430743616424,8.336405626324535,8.99826938047454,5.905164236223726,6.64250938853823,6.117071776562838,8.386832006290902,9.214787136272562,6.360568641918775,196.4641712842475,196.4641712842475,0.0,218.2935236491639,0.0,196.4641712842475,218.2935236491639,0,0
+2017/04/11 22:00:00,139.99793938078116,0,759.3301185012436,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.04511318997055502,20.767893383034387,0,0,37.874704521873916,561.7488276729213,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,483.74446007724765,0.0,286.346046467078,0.0,1945.0317347631626,0.0,100.65673673531562,0.0,0.0,0.0,387.3104687681022,0.0,414.42938768119745,0.0,2013.558623930596,0.0,12.268493198005956,0,0,0,0,0,0,0,0,0.040427297949887184,0.001279091526983166,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.560782174555037,-0.560782174555037,-0.476782163929764,-0.476782163929764,-0.5901555656609396,-0.5901555656609396,0.5939905679323508,0.5939905679323508,-0.3992179041181197,-0.3992179041181197,-0.2791400983569583,-0.32677453473579704,-0.4155458900128574,-0.45796536710835606,-0.26261633350401875,-0.2943710531964133,-0.31697895263174514,-0.4262774202948985,-0.4756555577327639,-0.2982016598766807,11.585457682286105,11.585457682286105,9.74753278857385,9.74753278857385,12.30028417967631,12.30028417967631,12.396375250505045,12.396375250505045,8.320626547976218,8.320626547976218,6.618362520411836,7.220393112165752,8.599542907738197,9.377609057021203,6.431908435217551,6.800426998773688,7.088748858341091,8.789081501146043,9.724955091471742,6.847758248874797,139.99793938078116,139.99793938078116,0.0,155.55326597864573,0.0,139.99793938078116,155.55326597864573,0,0
+2017/04/11 23:00:00,90.82493362089285,0,634.4254583474062,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.10880486107409644,11.773172498526181,0,0,87.12755192189752,494.0623776566926,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1688.7782378631464,0.0,958.9600858741665,0.0,2910.1544813859773,0.0,6.1131940830440685,0.0,0.0,0.0,1648.6077424731156,0.0,1057.4984592526005,0.0,2956.016072731476,0.0,0.0,0,0,0,0,0,0,0,0,0.03377728132558241,0.00106868963643413,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6270858354738802,-0.6270858354738802,-0.6004040018879121,-0.6004040018879121,-0.6811898658843348,-0.6811898658843348,0.3481709848924693,0.3481709848924693,-0.48189568762372414,-0.48189568762372414,-0.35306622768484536,-0.3681478155570604,-0.44150155757442466,-0.48797640133382036,-0.2953417857993092,-0.3751964683293419,-0.3766599635228829,-0.46034148323574703,-0.5123698238867269,-0.32908288040701006,13.252143194034076,13.252143194034076,12.558498640139604,12.558498640139604,14.753460097656756,14.753460097656756,7.522102670632236,7.522102670632236,9.850698253288058,9.850698253288058,7.593864624687967,7.821365477324477,9.066446915039862,9.974845284333938,6.812362783728815,7.931015430305919,7.954047446188298,9.423480227279043,10.488927119165325,7.252007629408041,90.82493362089285,90.82493362089285,0.0,100.91659291210317,0.0,90.82493362089285,100.91659291210317,0,0
+2017/04/12 00:00:00,39.33952523153605,0,544.226690212963,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5786740027713208e-09,9.542204232534196,0,0,0.0,490.9911614441468,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.028975032099275773,0.0009167498183576309,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5163263468294876,-0.5163263468294876,-0.465951529379841,-0.465951529379841,-0.5642069977934057,-0.5642069977934057,0.38082809589001776,0.38082809589001776,-0.12453887936547066,-0.12453887936547066,-0.33225284717527925,-0.2578594897765267,-0.4752779306798903,-0.5400799226226121,-0.0556943000958535,-0.36785867044753817,-0.27362488857218625,-0.5099239645997505,-0.5893610627037432,-0.13548005838648033,10.574733710391158,10.574733710391158,9.532747455189991,9.532747455189991,11.66687605533744,11.66687605533744,8.020144987328806,8.020144987328806,5.321285105751514,5.321285105751514,7.295791073202551,6.380363799348785,9.717399522468853,11.104130518521089,5.064218883203679,7.8169127193806105,6.554849695331384,10.436221505178565,12.28045666719376,5.3802645442460175,39.33952523153605,39.33952523153605,0.0,43.71058359059561,0.0,39.33952523153605,43.71058359059561,0,0
+2017/04/12 01:00:00,23.77476469750726,0,43.84937406530677,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5776692738294632,0,0,0.0,8.35902155276263,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0023345731547606318,7.386426728489819e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.526599607794839,-0.526599607794839,-0.4420381412152188,-0.4420381412152188,-0.5745017375749959,-0.5745017375749959,0.3195937037023422,0.3195937037023422,0.0076843045556503195,0.0076843045556503195,-0.3922191685126924,-0.2992193603489652,-0.5407328907491001,-0.6034473771966015,0.027830464446085994,-0.4340718689312791,-0.3119061951950879,-0.5869059004057452,-0.666435950285064,-0.0880133271190032,10.800696406590063,10.800696406590063,9.076404460729421,9.076404460729421,11.91467616207585,11.91467616207585,7.123490980080376,7.123490980080376,5.001222337472555,5.001222337472555,8.204566649582517,6.860437295448364,11.11902832339753,12.636055822527865,5.016033814301693,8.929843496938318,7.0221731999474315,12.2193590780564,14.331480857926152,5.160408791064171,23.77476469750726,23.77476469750726,0.0,26.416405219452507,0.0,23.77476469750726,26.416405219452507,0,0
+2017/04/12 02:00:00,28.344165942444825,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248028559719283,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.512333475709814,-0.512333475709814,-0.41710107602157787,-0.41710107602157787,-0.5596155447097005,-0.5596155447097005,0.2991062781197075,0.2991062781197075,0.08128211372094567,0.08128211372094567,-0.4155006349207592,-0.31173590847068555,-0.5687909912823391,-0.6318725337224366,0.053463805313349294,-0.4692505058187832,-0.333776342260024,-0.6273677717206515,-0.7077467052631672,-0.07780394799880529,10.48814196152506,10.48814196152506,8.626704406079483,8.626704406079483,11.557839523042517,11.557839523042517,6.859026295588649,6.859026295588649,5.136804133551323,5.136804133551323,8.598754074625447,7.019957233788105,11.77664754473723,13.379850672807365,5.059177449966796,9.597634903530476,7.316985245103325,13.25963760538366,15.536733852972574,5.125343493953821,28.344165942444825,28.344165942444825,0.0,31.493517713827583,0.0,28.344165942444825,31.493517713827583,0,0
+2017/04/12 03:00:00,23.72199044586748,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248950221896864,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5343470132468107,-0.5343470132468107,-0.4349673214467149,-0.4349673214467149,-0.5832095224756918,-0.5832095224756918,0.2362146914075045,0.2362146914075045,0.14097164308451265,0.14097164308451265,-0.4691286226493077,-0.35788107888271664,-0.6252089314335443,-0.6830501852967362,0.08765461419959698,-0.525347026385583,-0.3810111215582869,-0.6862833247386366,-0.7640294858004697,-0.07409249348160207,10.974124224145541,10.974124224145541,8.946181753143108,8.946181753143108,12.127866772151819,12.127866772151819,6.157837196644806,6.157837196644806,5.411744265479896,5.411744265479896,9.595229244559732,7.665442655577834,13.202339355285204,14.807336111478222,5.159103464007828,10.772901075672564,8.023064372493593,14.901325932193828,17.29713482646973,5.113667425375652,23.72199044586748,23.72199044586748,0.0,26.35776716207498,0.0,23.72199044586748,26.35776716207498,0,0
+2017/04/12 04:00:00,40.90759218652829,0,280.53295040351145,0,0,0,0.0,0.0011850201177047667,4.633261998087618,9.319298099999997,25.555573451546493,0,0.49402713096380135,0.37919123816911543,0.5250552476435397,0,0,191.80706912215112,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.126989313878,0.0,0.0,0.29664637375492475,871.471724405236,0.27099281228754535,659.7922007849187,0.0,0.0,0.0,354.0908883056552,0.0,0.0,0.3018346966379113,1080.9864644247225,0.31554623502438517,813.3411432238788,0.0,0.0,0,0,0,0,0,0,0,0,0.014935782072109533,0.0004725577336626252,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.45662578742995685,-0.45662578742995685,-0.36043194330498246,-0.36043194330498246,-0.5058565055249711,-0.5058565055249711,0.28606745793726507,0.28606745793726507,0.2700832544602814,0.2700832544602814,-0.44742264896026407,-0.34956789395400045,-0.5159726017453559,-0.5539344833379071,0.11827777157045694,-0.4813213371851027,-0.3858043979871452,-0.5512824435203219,-0.6017742131170917,-0.04550185828086443,9.351855474712892,9.351855474712892,7.703763943451435,7.703763943451435,10.349144964222901,10.349144964222901,6.699955270514778,6.699955270514778,6.514740466343554,6.514740466343554,9.177011680931102,7.542476775086399,10.567034342974026,11.424192602836811,5.289772926379072,9.839054486453122,8.100029636036695,11.362282467031179,12.593367264947815,5.042862692720334,40.90759218652829,40.90759218652829,0.0,45.452880207253656,0.0,40.90759218652829,45.452880207253656,0,0
+2017/04/12 05:00:00,73.31101536595033,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5249723359944589,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.20401532119286142,-0.20401532119286142,-0.11619369215937765,-0.11619369215937765,-0.25071116031529467,-0.25071116031529467,0.4880437316186578,0.4880437316186578,0.6468537076005193,0.6468537076005193,-0.4292008625340478,-0.3185375448049294,-0.5610807422944789,-0.6113479541843706,0.24414523820678133,-0.4829419342112399,-0.3488553719046178,-0.5962462240106401,-0.6568871581086677,0.09216151034050139,5.863174412647908,5.863174412647908,5.279645132315835,5.279645132315835,6.304695378809043,6.304695378809043,9.976228867880124,9.976228867880124,13.785966329746586,13.785966329746586,8.841571081845032,7.10942295465081,11.592535297646918,12.83926993600977,6.237084829879791,9.871945316512523,7.532074177737073,12.453191827836534,14.06339844510508,5.175891518391666,73.31101536595033,73.31101536595033,0.0,81.45668373994481,0.0,73.31101536595033,81.45668373994481,0,0
+2017/04/12 06:00:00,99.60937398813209,0,709.7097953322341,0,0,0,0.16287085305511273,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.07579733185948064,2.5203865249645644e-09,0.5250021523041188,0,0,0.0,479.0225040006974,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,529.7040373353642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03778547519026495,0.0011955060963710885,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.06561628653240413,-0.06561628653240413,0.017763907435530076,0.017763907435530076,-0.10988817593274794,-0.10988817593274794,0.5906052450435242,0.5906052450435242,0.871316711150148,0.871316711150148,-0.39335095409515036,-0.28408531876854615,-0.5297772024972127,-0.5841034445011515,0.34648184906026114,-0.43463154978053375,-0.29840467364964446,-0.5630285786829711,-0.6316399336462485,0.19180608682875752,5.089143139796818,5.089143139796818,5.006532268002843,5.006532268002843,5.250101729249806,5.250101729249806,12.311518460107507,12.311518460107507,21.025661777261234,21.025661777261234,8.22319306940004,6.6764021810938345,10.871513354701548,12.149938667916658,7.497577225705797,8.940051291810263,6.850284005408994,11.638804077022584,13.373622003575377,5.762794987557172,99.60937398813209,99.60937398813209,0.0,110.67708220903566,0.0,99.60937398813209,110.67708220903566,0,0
+2017/04/12 07:00:00,149.78523551726406,0,876.8641917642589,0,0,0,0.0,0.0,10.51688428816451,0.0,69.33401494192633,0,39.380909295966944,0.03018453205989235,27.091267256692078,0,0,11.031140375488949,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1104.8422468405784,0.0,664.8233489357199,0.0,1642.325861708331,0.0,0.0,0.0,14.847602741694285,0.0,1145.3802585431413,0.0,716.869036770074,0.0,1628.638554468621,0.0,0.0,0,0,0,0,0,0,0,0,0.04668489906868174,0.0014770776644740305,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.19444997638645284,-0.19444997638645284,-0.110443666897412,-0.110443666897412,-0.24635834104874946,-0.24635834104874946,0.5215065624497613,0.5215065624497613,0.6650992865186712,0.6650992865186712,-0.3809422276000865,-0.3145067070769858,-0.46989057106195287,-0.5186157557739053,0.17800376073556598,-0.4089999337752602,-0.3224447579907838,-0.49306190308813136,-0.5569218731145922,0.0368666662289485,5.7840033136852895,5.7840033136852895,5.2526380463663855,5.2526380463663855,6.259671161183462,6.259671161183462,10.688102825990427,10.688102825990427,14.29371626669996,14.29371626669996,8.021965298696074,7.056166587019391,9.61027864746167,10.62469428244863,5.656819215742772,8.48635321331625,7.161703036628808,10.079899187692888,11.49429646405602,5.02813682361375,149.78523551726406,149.78523551726406,0.0,166.42803946362673,0.0,149.78523551726406,166.42803946362673,0,0
+2017/04/12 08:00:00,163.38407513434,0,926.5604430382157,0,0,0,0.0,0.0,13.186588359378003,0.0,83.2008179303116,0,39.380909295966944,0.017896915109559892,25.195479991855912,0,0,7.491862880629472,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,544.1214086547893,0.0,294.671683272879,0.0,1380.790130607012,0.0,0.0,0.0,0.0,0.0,589.7415378843256,0.0,326.4582786530151,0.0,1403.3318301005975,0.0,0.0,0,0,0,0,0,0,0,0,0.049330764296851834,0.0015607909959731293,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3851972664873021,-0.3851972664873021,-0.31781488562603477,-0.31781488562603477,-0.4042692532870996,-0.4042692532870996,0.5468480952252679,0.5468480952252679,0.18630079067581223,0.18630079067581223,-0.34502350282783945,-0.3441304324743491,-0.43167934820394954,-0.47247413480261674,-0.06530443556223225,-0.3694183336610885,-0.3580924140732556,-0.44903922620104475,-0.5001681230784084,-0.1217684872234554,8.09022670691293,8.09022670691293,7.099824375505236,7.099824375505236,8.40569483786362,8.40569483786362,11.259446578533996,11.259446578533996,5.719570839574885,5.719570839574885,7.476500306074371,7.463637733604642,8.886358923448995,9.661493427028248,5.088297660645139,7.840973351429412,7.668606990003795,9.20746006099695,10.228567021580233,5.3071407439239096,163.38407513434,163.38407513434,0.0,181.53786126037778,0.0,163.38407513434,181.53786126037778,0,0
+2017/04/12 09:00:00,180.70558272124327,0,937.9209929474476,0,0,0,0.0,0.0,11.703970106274701,0.0,106.27511244621549,0,39.380909295966944,0.00798689092017461,20.7636225800253,0,0,3.5860861568041593,561.6862054089299,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,153.35788867070795,0.0,0.0,0.0,929.7756948721203,0.0,0.0,0.0,0.0,0.0,140.74485205556695,0.0,0.0,0.0,842.5359121939505,0.0,0.0,0,0,0,0,0,0,0,0,0.0499356083888544,0.0015799278414329793,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.43499813582368946,-0.43499813582368946,-0.39789011311293343,-0.39789011311293343,-0.4275890902225721,-0.4275890902225721,0.6392191482339389,0.6392191482339389,0.018092930644877075,0.018092930644877075,-0.3185284203930823,-0.3386314411677121,-0.40033826032111164,-0.44232079834797267,-0.10505074646729592,-0.3316375236667699,-0.3492353363482065,-0.4095443400150725,-0.4611825616035844,-0.11491145073428359,8.946744599313263,8.946744599313263,8.29844680742275,8.29844680742275,8.812586800710221,8.812586800710221,13.577789329857652,13.577789329857652,5.006776494005152,5.006776494005152,7.109301623511556,7.385184544531228,8.339399914242676,9.081654791396929,5.228556218033802,7.287258900010016,7.537618852003874,8.495696856066829,9.439775588346265,5.273503623576673,180.70558272124327,180.70558272124327,0.0,200.7839808013814,0.0,180.70558272124327,200.7839808013814,0,0
+2017/04/12 10:00:00,212.07899951730107,0,1007.564173408706,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.010590357290283854,18.56193887463976,0,0,4.982630438184507,541.2069603074478,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,395.6612600317193,0.0,0.0,0.0,1081.8857239307094,0.0,0.0,0.0,0.0,0.0,311.2640774954939,0.0,0.0,0.0,950.0198598535118,0.0,0.0,0,0,0,0,0,0,0,0,0.05364346290177984,0.0016972417736341413,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47214146970888404,-0.47214146970888404,-0.5075845607723882,-0.5075845607723882,-0.4223944051367599,-0.4223944051367599,0.8028058576695336,0.8028058576695336,0.13128898165038422,0.13128898165038422,-0.3156346349545138,-0.32810858894738765,-0.38310628356643517,-0.41284924465733475,-0.07317759246557429,-0.3145786616705281,-0.3351728158975201,-0.3838395638706366,-0.4189585559792624,-0.14407964562608513,9.654882765859782,9.654882765859782,10.38605193721358,10.38605193721358,8.719930070154987,8.719930070154987,18.58875884708698,18.58875884708698,5.357083914419647,5.357083914419647,7.070999685997023,7.238636413637508,8.05658553334419,8.552691382194226,5.110876938052542,7.057111234982116,7.336498896130834,8.068361794601458,8.65928136522976,5.43011656648838,212.07899951730107,212.07899951730107,0.0,235.6433327970012,0.0,212.07899951730107,235.6433327970012,0,0
+2017/04/12 11:00:00,226.11294372806668,0,1076.3497579385341,0,0,0,0.23595058196516924,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,0.00013416232185593988,20.791569178326224,0,0,0.06479871989667463,561.6748477867473,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,928.4365197924857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05730565837208893,0.0018131110855538997,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.35693499658203903,-0.35693499658203903,-0.4206369825099777,-0.4206369825099777,-0.28354661776232404,-0.28354661776232404,0.9165217750596681,0.9165217750596681,0.3101786793707371,0.3101786793707371,-0.20352409920329861,-0.22342564085049152,-0.2872374426578669,-0.367671401895034,-0.11932667265778711,-0.19054804211175172,-0.21201787203735628,-0.2659923911017303,-0.357460212141527,-0.034534079435535645,7.651300216091329,7.651300216091329,8.688845263261939,8.688845263261939,6.6700296331511595,6.6700296331511595,22.73981221351744,22.73981221351744,6.999749724536898,6.999749724536898,5.859015418116783,6.035600283514327,6.7139356314286545,7.814030734691016,5.2949384426887605,5.752805981813211,5.93235129250526,6.469068902937593,7.659146656200093,5.0246887928841915,226.11294372806668,226.11294372806668,0.0,251.2366041422963,0.0,226.11294372806668,251.2366041422963,0,0
+2017/04/12 12:00:00,204.5900387141072,0,1020.3405492775818,0,0,0,0.279885932644515,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,4.903452368454048e-05,18.56840279456464,0,0,0.023696044587321205,541.1970943136486,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1106.406828413399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05432368661658558,0.0017187635778155522,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3111411189694391,-0.3111411189694391,-0.39149597518769214,-0.39149597518769214,-0.22278252385607203,-0.22278252385607203,0.962195514931511,0.962195514931511,0.4015488617973611,0.4015488617973611,-0.14891112117234673,-0.18067275955114467,-0.23477029285841117,-0.27973043870080544,-0.027836399837829304,-0.11145255648944899,-0.15613180498259788,-0.17909257066904596,-0.24192966410996095,-0.03694189674555782,7.012226783181234,7.012226783181234,8.192693329448858,8.192693329448858,6.029634544515815,6.029634544515815,24.555245397652953,24.555245397652953,8.359745851052224,8.359745851052224,5.459475219041536,5.67669165253119,6.1436880004415855,6.625236835766316,5.016040654318886,5.257277314208565,5.505163986623302,5.664890205641555,6.214679379380556,5.028251780425933,204.5900387141072,204.5900387141072,0.0,227.3222652378969,0.0,204.5900387141072,227.3222652378969,0,0
+2017/04/12 13:00:00,202.1058135690764,0,983.2557304353337,0,0,0,0.3089852007250528,0.0,16.86091082671979,0.0,129.2730206906943,0,39.380909295966944,4.1263959781296886e-05,16.28194629101044,0,0,0.01994634297023448,539.606377685562,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1225.5181325175179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05234926339245174,0.0016562942032904752,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2729664455802822,-0.2729664455802822,-0.35775318589430233,-0.35775318589430233,-0.17646409352094217,-0.17646409352094217,0.9820557088827355,0.9820557088827355,0.43681291611483397,0.43681291611483397,-0.08967478169882928,-0.1317855654468072,-0.18020354639509706,-0.24570304033256066,0.004499668065066648,-0.10812683896890973,-0.09478367619084262,-0.11749461182241816,-0.19835308713081218,-0.054145952011991634,6.547352786442872,6.547352786442872,7.66352862970237,7.66352862970237,5.645490625812684,5.645490625812684,25.37022690658985,25.37022690658985,8.979964762045753,8.979964762045753,5.166524313158959,5.359792340036819,5.6731765108743275,6.25296189328165,5.0004191236675695,5.242144379026769,5.186046838636074,5.285945915639047,5.81584675309179,5.0606973777448445,202.1058135690764,202.1058135690764,0.0,224.56201507675155,0.0,202.1058135690764,224.56201507675155,0,0
+2017/04/12 14:00:00,187.21603648538243,0,925.6645620534775,0,0,0,0.2113243016746066,0.0,16.86091082671979,0.0,115.5196477718057,0,39.380909295966944,0.0002615643595864811,14.098990990704378,0,0,0.12655247468392103,517.3989556845362,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,829.6192624507548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.9052038111265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04928306692963936,0.0015592818845223343,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3647619050829455,-0.3647619050829455,-0.4502044108179364,-0.4502044108179364,-0.26006479985338676,-0.26006479985338676,0.9616606769582298,0.9616606769582298,0.3548840838913294,0.3548840838913294,-0.11934798043678395,-0.1972340432403573,-0.22617538247257477,-0.3099312958195435,-0.05301512029050793,-0.12582737812604367,-0.12987910873359335,-0.1564146267224532,-0.2707665081986419,-0.06313230006535697,7.769446783255745,7.769446783255745,9.229476124703098,9.229476124703098,6.404141895735776,6.404141895735776,24.53350995600475,24.53350995600475,7.620773116169573,7.620773116169573,5.295043850783031,5.806651931443298,6.06130323440793,6.996548980707459,5.058188221968891,5.327972294468097,5.349450195148677,5.506997737338722,6.522437210643332,5.0825204608102865,187.21603648538243,187.21603648538243,0.0,208.01781831709158,0.0,187.21603648538243,208.01781831709158,0,0
+2017/04/12 15:00:00,181.56815144406596,0,928.3347382294941,0,0,0,0.1556663957780505,0.0,16.923524219979218,0.0,108.75639138185811,0,39.380909295966944,0.0073870229078188635,14.05628965927294,0,0,3.6342581135773813,516.5614262216592,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,608.2229431820871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,254.270177383905,0.0,0.0,0.0,911.9258502055056,0.0,0.0,0.0,0.0,0.0,86.3979459570551,0.0,0.0,0.0,653.7277130878363,0.0,0.0,0,0,0,0,0,0,0,0,0.04942522908706777,0.001563779796088171,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4236472011119852,-0.4236472011119852,-0.32164789616326384,-0.32164789616326384,-0.306668496895668,-0.306668496895668,0.9700929104078146,0.9700929104078146,0.28950780254678266,0.28950780254678266,-0.15162003493437837,-0.25409973064760716,-0.2648820034724385,-0.33217676651756145,-0.10158068121502611,-0.1702110180933583,-0.22631872401058037,-0.20444495515127672,-0.32084915147875526,-0.12515545979155107,8.74217005278389,8.74217005278389,7.150988182546257,7.150988182546257,6.954575986167171,6.954575986167171,24.87748894647015,24.87748894647015,6.741229445832801,6.741229445832801,5.47636130018148,6.340297083812985,6.456793837696793,7.2947352562054135,5.213699341428793,5.600498302023112,6.062651799405785,5.866820240336153,7.140275021230792,5.324476489351383,181.56815144406596,181.56815144406596,0.0,201.74239049340662,0.0,181.56815144406596,201.74239049340662,0,0
+2017/04/12 16:00:00,205.26421256486069,0,978.9704080052821,0,0,0,0.20331509609335988,0.0,17.133076708931206,0.0,131.64086955684016,0,39.380909295966944,0.008028855854679091,14.038033715795672,0,0,4.085141500230423,513.510683841978,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,797.60508034916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,343.3136325234942,0.0,0.0,0.0,958.9817532186458,0.0,0.0,0.0,0.0,0.0,72.9683203448777,0.0,0.0,0.0,681.4509303359505,0.0,0.0,0,0,0,0,0,0,0,0,0.0521211096521089,0.0016490755779823038,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4236303041956706,-0.4236303041956706,-0.2778293206394229,-0.2778293206394229,-0.2924278881761371,-0.2924278881761371,0.9836779243195842,0.9836779243195842,0.3264440078610542,0.3264440078610542,-0.19769200242826507,-0.2698503676347047,-0.2650176936916004,-0.3352319445488055,-0.08765401534651385,-0.1749572146081604,-0.26595876612151265,-0.2100461157268954,-0.33207502284818846,-0.10777028188054176,8.741869646144934,8.741869646144934,6.6031515000603065,6.6031515000603065,6.776654135246588,6.776654135246588,25.437469968470353,25.437469968470353,7.215884797726147,7.215884797726147,5.810408504478318,6.512121527950768,6.4582910755407,7.337326958380558,5.159101289293673,5.634499080031176,6.46869642464749,5.9150578675634335,7.2933236820980625,5.240549209884136,205.26421256486069,205.26421256486069,0.0,228.07134729428964,0.0,205.26421256486069,228.07134729428964,0,0
+2017/04/12 17:00:00,212.24531108898702,0,1008.4525577736479,0,0,0,0.2514617109040862,0.0,17.814648864560443,0.0,133.89528835348938,0,39.380909295966944,0.0026481488522374697,18.612371246911067,0,0,1.3797538793096484,545.6982212312644,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,990.2770069246296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,461.35307250877133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,212.22115407761493,0.0,0.0,0,0,0,0,0,0,0,0,0.05369076114340157,0.0016987382570294587,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4504325321159569,-0.4504325321159569,-0.12233884954322498,-0.12233884954322498,-0.30919562854125604,-0.30919562854125604,0.9909845503568834,0.9909845503568834,0.34587602067879114,0.34587602067879114,-0.20541766142816917,-0.2672580476465909,-0.22828355972566175,-0.3293081293648121,0.0025881116224429463,-0.1827954269234782,-0.25131026378156396,-0.2116960430923757,-0.3283505959828867,-0.06122786622867609,9.23379329317703,9.23379329317703,5.310026675690835,5.310026675690835,6.987045938726681,6.987045938726681,25.74159183180241,25.74159183180241,7.488810442484706,7.488810442484706,5.875103058032451,6.483123748325099,6.081223930044388,7.255104686520525,5.000138658651537,5.692708605836003,6.310954671541083,5.929517553818869,7.241953969176052,5.077616145215856,212.24531108898702,212.24531108898702,0.0,235.8281234322078,0.0,212.24531108898702,235.8281234322078,0,0
+2017/04/12 18:00:00,194.38391043744429,0,1027.666753085566,0,0,0,0.0327510482114995,0.0,17.832332939166402,0.0,110.93442390708215,0,39.380909295966944,0.004020927165045842,24.769482652162925,0,0,2.1271153903471243,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,126.68209844307214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,313.9993790032518,0.0,529.0023587029682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,176.22521246130574,0.0,0.0,0,0,0,0,0,0,0,0,0.05471373913389064,0.0017311045675740516,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3630636689302528,-0.3630636689302528,-0.13068287862038644,-0.13068287862038644,-0.38434837545969186,-0.38434837545969186,0.9810719909809835,0.9810719909809835,0.22564708625705346,0.22564708625705346,-0.23153300918341332,-0.22026149198120953,-0.28201771206926346,-0.3346837714769202,0.006502448215391028,-0.19570480225972556,-0.17573953954645405,-0.2448420487997428,-0.3318104158700375,-0.050977359180790015,7.743590405122276,7.743590405122276,5.353792055883119,5.353792055883119,8.076546649482523,8.076546649482523,25.32949977889143,25.32949977889143,6.056340433682962,6.056340433682962,6.112293876984523,6.006415893596042,6.652010179273773,7.329655805070189,5.0008752567423755,5.794171316638469,5.640193723561168,6.244174095561661,7.289654627554242,5.053800477503515,194.38391043744429,194.38391043744429,0.0,215.98212270827142,0.0,194.38391043744429,215.98212270827142,0,0
+2017/04/12 19:00:00,195.76778080461838,0,1004.2807564813476,0,0,0,0.0,0.0,24.999863057464953,0.0,101.68988858149199,0,39.380909295966944,0.02539599254257476,27.0977424753112,0,0,14.23147129867303,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,642.0345057806488,0.0,740.9685466038261,0.0,1262.8031917808398,0.0,1302.4886235955832,0.0,0.0,0.0,380.6864153470113,0.0,510.4285428863651,0.0,837.4037085892792,0.0,999.2362254409684,0.0,0.0,0,0,0,0,0,0,0,0,0.05346865135251848,0.0016917108580692133,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3768278778311785,-0.3768278778311785,-0.22835485784128284,-0.22835485784128284,-0.4679590648674829,-0.4679590648674829,0.9192409479849873,0.9192409479849873,0.12687878947625628,0.12687878947625628,-0.2775883176276916,-0.27791654249923997,-0.32198947095544417,-0.35346341872970954,-0.037576845612868635,-0.2603731287980252,-0.25838538147002615,-0.3042971657186532,-0.35355084408150045,-0.06810946780793785,7.956695871147332,7.956695871147332,6.081900902135587,6.081900902135587,9.572177739946483,9.572177739946483,22.845565435666288,22.845565435666288,5.333480161310433,5.333480161310433,6.600362647569398,6.60416142258434,7.155577808353925,7.599731969053991,5.029231358863001,6.407482667081709,6.386015488123931,6.924353580782366,7.601024326103669,5.096047502034779,195.76778080461838,195.76778080461838,0.0,217.51975644957597,0.0,195.76778080461838,217.51975644957597,0,0
+2017/04/12 20:00:00,210.363907277999,0,952.7425793214832,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.0271836613016951,23.004990317615718,0,0,16.694523203271473,581.1445309927705,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,647.7267807128845,0.0,797.7153738255979,0.0,1363.1837735772997,0.0,1331.5764820606973,0.0,0.0,0.0,345.2469432791763,0.0,555.9509587127259,0.0,964.421006772153,0.0,1068.654016344183,0.0,0.0,0,0,0,0,0,0,0,0,0.05072472062585588,0.0016048948025551028,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3031933761758183,-0.3031933761758183,-0.29727268699342246,-0.29727268699342246,-0.5356736522863116,-0.5356736522863116,0.854487166963996,0.854487166963996,0.05115365912617225,0.05115365912617225,-0.3078943843014269,-0.3070641069329426,-0.3410973525573797,-0.36771347885985073,-0.060942905931027205,-0.30749522407366164,-0.30637014295493886,-0.3351545363034694,-0.37016062811484357,-0.08537631855424592,6.910367009706334,6.910367009706334,6.836222836345129,6.836222836345129,11.004082067288252,11.004082067288252,20.40890820170776,20.40890820170776,5.054173291491736,5.054173291491736,6.970293098329762,6.959641156360959,7.42020640549498,7.814678151387199,5.076895240881484,6.965168480144712,6.950760408921553,7.336242931122243,7.852461009127694,5.150937549312715,210.363907277999,210.363907277999,0.0,233.73767475333221,0.0,210.363907277999,233.73767475333221,0,0
+2017/04/12 21:00:00,196.60408091846898,0,950.1448085326699,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.04610366903057687,24.66203979881885,0,0,31.07622837508373,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,532.3426628995875,0.0,1748.3032459585966,0.0,1207.5043611542965,0.0,2216.582567877912,0.0,338.07568085497087,0.0,328.03676497349113,0.0,1578.7814367419467,0.0,903.3547446132568,0.0,1999.8019477459377,0.0,502.82875281151144,0,0,0,0,0,0,0,0,0.050586413384873324,0.0016005188578585145,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4091783073520549,-0.4091783073520549,-0.3453933239469518,-0.3453933239469518,-0.505042470191553,-0.505042470191553,0.7620462557654977,0.7620462557654977,-0.056072056384800256,-0.056072056384800256,-0.33834530673353325,-0.35007326742689737,-0.3683469015690567,-0.4013571344646291,-0.15863235598221995,-0.3465742199705899,-0.35819445415929413,-0.3692700197849146,-0.4080723339932091,-0.1908568540666951,8.48941324038175,8.48941324038175,7.481836632966278,7.481836632966278,10.331803919173282,10.331803919173282,17.23279536490074,17.23279536490074,5.065093112105387,5.065093112105387,7.381137472899184,7.54986815644223,7.82443342055997,8.356519412232373,5.521492512771275,7.49891527173429,7.670135522964415,7.838680879664608,8.470462058944307,5.755251856171569,196.60408091846898,196.60408091846898,0.0,218.44897879829887,0.0,196.60408091846898,218.44897879829887,0,0
+2017/04/12 22:00:00,140.05728166517116,0,796.2193783055792,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.10662012377477824,20.765728733620126,0,0,77.60804577292095,558.9047462262097,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1053.8048096463663,0.0,2654.9171696579547,0.0,1678.0010567366674,0.0,3057.134560829209,0.0,62.68163669484624,0.0,943.2773084859382,0.0,2553.4532487549313,0.0,1464.320306026829,0.0,2881.657357023287,0.0,46.051547177262876,0,0,0,0,0,0,0,0,0.04239130946599068,0.0013412314823237222,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.53613541490484,-0.53613541490484,-0.5176437335833666,-0.5176437335833666,-0.6211852265071363,-0.6211852265071363,0.5322531888490796,0.5322531888490796,-0.3036749105290458,-0.3036749105290458,-0.37448108865333385,-0.3962397169265546,-0.40407246699376076,-0.4436210082921379,-0.23243680965805255,-0.3901263567839844,-0.4133260542979607,-0.412319072176958,-0.4574228880589428,-0.2610526904046423,11.014527364337852,11.014527364337852,10.603454649574218,10.603454649574218,13.096085040562869,13.096085040562869,10.926997080061597,10.926997080061597,6.916462392766263,6.916462392766263,7.919790263284568,8.27098330832753,8.402360376250641,9.105850304767884,6.121014393213628,8.170268316674054,8.560952797283733,8.543516815861949,9.367170524250866,6.414859903727077,140.05728166517116,140.05728166517116,0.0,155.61920185019017,0.0,140.05728166517116,155.61920185019017,0,0
+2017/04/12 23:00:00,90.9262582831117,0,672.6921251488523,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.1698019758161855,11.813500046002934,0,0,122.46920247794772,496.98739390208846,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1385.2946508293264,0.0,3486.780777478744,0.0,1966.5867253359484,0.0,3827.067151942254,0.0,2.134703360618711,0.0,1371.2739012142667,0.0,3456.1719687796126,0.0,1837.3268462801325,0.0,3720.3485383564143,0.0,1.1975326261753312,0,0,0,0,0,0,0,0,0.03581462701046661,0.0011331498337567752,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6835610098790333,-0.6835610098790333,-0.6895194910917896,-0.6895194910917896,-0.7310853505179762,-0.7310853505179762,0.2667672953855497,0.2667672953855497,-0.40932433239272076,-0.40932433239272076,-0.4105720843694752,-0.44058039733501,-0.4404017435355584,-0.48593379302550727,-0.27134846242540217,-0.4337306718525601,-0.4663784559783996,-0.4572436155374668,-0.5073821092208579,-0.3021159077293581,14.822156103436242,14.822156103436242,14.995856314192068,14.995856314192068,16.25020245971109,16.25020245971109,6.477666041591547,6.477666041591547,8.491919337543933,8.491919337543933,8.513370631282598,9.049381520138894,9.04607600569274,9.932964333857214,6.529008343549691,8.923627140224966,9.541118242682103,9.363723697527675,10.38172139774845,6.896763663534102,90.9262582831117,90.9262582831117,0.0,101.0291758701241,0.0,90.9262582831117,101.0291758701241,0,0
+2017/04/13 00:00:00,39.33833005390355,0,544.0489169609103,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.578680401862448e-09,9.541009054901691,0,0,0.0,490.8133881920942,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.028965567319658655,0.0009164503593280409,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6028690788476294,-0.6028690788476294,-0.5804739114288949,-0.5804739114288949,-0.6357664812835843,-0.6357664812835843,0.2914365147728917,0.2914365147728917,-0.04007496950714575,-0.04007496950714575,-0.49227067682863945,-0.5028485238132315,-0.5593734789216487,-0.6286551330977842,-0.02453284696133215,-0.5198624057996841,-0.5324928794279972,-0.5685426804610558,-0.6513812484561339,-0.11704012557276977,12.621287568789683,12.621287568789683,12.060537018913521,12.060537018913521,13.484473083898024,13.484473083898024,6.764587024239205,6.764587024239205,5.033247465429511,5.033247465429511,10.063481051005226,10.285209853430445,11.552116383106522,13.293901990683878,5.012459151711951,10.651994641300448,10.932382337028713,11.770677972356793,13.910615809290746,5.283736696626605,39.33833005390355,39.33833005390355,0.0,43.709255615448384,0.0,39.33833005390355,43.709255615448384,0,0
+2017/04/13 01:00:00,23.72207939314649,0,40.52749157542977,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249839694686995,0,0,0.0,5.0371390628856405,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0021577136704590744,6.8268556482827e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6278736539925676,-0.6278736539925676,-0.598491303772095,-0.598491303772095,-0.6559124482008575,-0.6559124482008575,0.21311009729240266,0.21311009729240266,0.09922160892118953,0.09922160892118953,-0.5632143113272475,-0.5696802550965261,-0.6293995073145541,-0.6919801190327493,0.06360379926523436,-0.607917161680228,-0.6160804524886637,-0.6560420861738182,-0.7319136975404871,-0.08497549585815814,13.273093581729583,13.273093581729583,12.509961274267368,12.509961274267368,14.036255663786648,14.036255663786648,5.942000788741311,5.942000788741311,5.203884560491204,5.203884560491204,11.64322455117157,11.798048033136624,13.31374704890544,15.068035677788231,5.083757884051877,12.750692282772562,12.962293905638717,14.039863323226854,16.27595596204408,5.149523185376381,23.72207939314649,23.72207939314649,0.0,26.357865992384987,0.0,23.72207939314649,26.357865992384987,0,0
+2017/04/13 02:00:00,28.344537808348523,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251747218756295,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6288194444267583,-0.6288194444267583,-0.6001724303955814,-0.6001724303955814,-0.6540690849803188,-0.6540690849803188,0.17663686691455163,0.17663686691455163,0.17706688591600933,0.17706688591600933,-0.6060079052426633,-0.6096658662588477,-0.6732370119455756,-0.7349737556874135,0.09019925846757619,-0.6610512496897522,-0.6665257404513972,-0.7079792250633015,-0.7846537694828547,-0.07594635731724102,13.298280472300007,13.298280472300007,12.55261374446485,12.55261374446485,13.98503602575029,13.98503602575029,5.646756932711554,5.646756932711554,5.649914077142,5.649914077142,12.70161953865744,12.79577724716458,14.524828638046358,16.371349525205034,5.16847860284112,14.17981966146155,14.334020461551333,15.543726313748522,17.97616492012304,5.119428200748985,28.344537808348523,28.344537808348523,0.0,31.493930898165026,0.0,28.344537808348523,31.493930898165026,0,0
+2017/04/13 03:00:00,23.774858851149247,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5777634274714509,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6403701041112745,-0.6403701041112745,-0.6088290911693601,-0.6088290911693601,-0.6622020398599138,-0.6622020398599138,0.13472698539715375,0.13472698539715375,0.21546505796845095,0.21546505796845095,-0.6310634509909393,-0.6305646762717577,-0.6997519258932051,-0.7593841207380729,0.1161350235108273,-0.7028884871053942,-0.7047875508138326,-0.7511810138422509,-0.8268318761572203,-0.06385442364386194,13.609011460449224,13.609011460449224,12.774187018283797,12.774187018283797,14.212126376144198,14.212126376144198,5.376045489107142,5.376045489107142,5.962976167462543,5.962976167462543,13.358194809745527,13.344858783704936,15.2977294041727,17.14669523599585,5.279362637800887,15.391168329326803,15.44794825648556,16.883292071659056,19.420994006305563,5.084419384162075,23.774858851149247,23.774858851149247,0.0,26.416509834610274,0.0,23.774858851149247,26.416509834610274,0,0
+2017/04/13 04:00:00,41.858735473961914,0,351.8557673928975,0,0,0,0.0,0.004913059688100157,4.633261998087618,9.319298099999997,25.555573451546493,0,1.0461896347196578,0.7746894976595379,0.5248097322604968,0,0,263.1298861115372,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7563819290302036,1392.425710536237,0.0,823.0799383612379,1.2158013627820765,1742.7936579724285,0.25569279313549487,1241.757902700068,0.0,0.0,1.0982487883738032,1521.8860082085214,0.27696159939346215,878.1280683605651,0.8090705861015066,1740.5666424292467,0.5009026292836097,1233.142173146741,0.0,0.0,0,0,0,0,0,0,0,0,0.018733061677910477,0.000592701013467936,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6162404868811812,-0.6162404868811812,-0.5876537493155463,-0.5876537493155463,-0.6377641828876335,-0.6377641828876335,0.1272254038316364,0.1272254038316364,0.3532846732421573,0.3532846732421573,-0.5261672427846084,-0.5349554796402363,-0.5567349293411196,-0.5905684473022773,0.15644127349612388,-0.5630407452408377,-0.5788943359259892,-0.586045244393512,-0.631534495154048,-0.05289214817867524,12.966471080100874,12.966471080100874,12.23794185998959,12.23794185998959,13.53840251745261,13.53840251745261,5.335305989933957,5.335305989933957,7.5970906928370425,7.5970906928370425,10.791094361280912,10.987855002010903,11.489898181080207,12.310598817336512,5.507170680641821,11.639093597745557,12.021807872073268,12.198003268368339,13.370799297444293,5.057918558333938,41.858735473961914,41.858735473961914,0.0,46.5097060821799,0.0,41.858735473961914,46.5097060821799,0,0
+2017/04/13 05:00:00,73.31110997076173,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5250669408058716,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3921138262981275,-0.3921138262981275,-0.36666158248303715,-0.36666158248303715,-0.4127423945250621,-0.4127423945250621,0.31550602515338777,0.31550602515338777,0.679029808060222,0.679029808060222,-0.6048902914796666,-0.6129152181609575,-0.6546259786502776,-0.7063559042453809,0.2719020442216562,-0.637306593977109,-0.6470525111130974,-0.6716141616685426,-0.7259515214985877,0.07139770987195643,8.202835760007872,8.202835760007872,7.798515796545274,7.798515796545274,8.550841385482698,8.550841385482698,7.069305648801318,7.069305648801318,14.69109129129076,14.69109129129076,12.672967434152824,12.879904203333155,14.000494332751188,15.494957623550349,6.535272353153829,13.52603428193106,13.791421011619377,14.478510623079558,16.091248464860485,5.105547648808198,73.31110997076173,73.31110997076173,0.0,81.45678885640193,0.0,73.31110997076173,81.45678885640193,0,0
+2017/04/13 06:00:00,99.74166431459992,0,709.5180887679712,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.37098350201378355,2.520392906244414e-09,0.524977161672748,0,0,0.0,478.8307974364343,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03777526859078526,0.0011951831666781377,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2869172725652369,-0.2869172725652369,-0.26983849871660653,-0.26983849871660653,-0.3055627085834395,-0.3055627085834395,0.3840475566533868,0.3840475566533868,0.8630373903290945,0.8630373903290945,-0.6172280851502352,-0.6224480598903455,-0.6780350961863257,-0.7331913348147308,0.3784411354890536,-0.6593940901293787,-0.6688836650411525,-0.7033207162492003,-0.7669589732594629,0.17526293831452802,6.710104118006683,6.710104118006683,6.5119881167367595,6.5119881167367595,6.940453211177513,6.940453211177513,8.071706276199833,8.071706276199833,20.720784780865827,20.720784780865827,12.99227369652597,13.12935714342845,14.662438183981507,16.315735817512646,7.982202249824013,14.133398179086583,14.40083640330208,15.404077828826303,17.39247983495197,5.636721441954677,99.74166431459992,99.74166431459992,0.0,110.82407146066657,0.0,99.74166431459992,110.82407146066657,0,0
+2017/04/13 07:00:00,147.52749601296244,0,906.9597682300949,0,0,0,0.0,0.0,8.162298223100674,0.0,69.33401494192633,0,39.380909295966944,0.14485342422380756,27.073444925290396,0,0,41.12671684132502,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,187.7526410285243,0.0,0.0,0.0,0.0,0.0,2430.5756843785884,0.0,3645.721373454545,0.0,3145.048481333213,0.0,3050.591167023712,0.0,2014.323066655124,0.0,2417.743810739069,0.0,3632.5690553477975,0.0,3082.6139411467175,0.0,2853.4154220128744,0.0,2496.8237017814345,0,0,0,0,0,0,0,0,0.04828720985171698,0.0015277736607465157,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4616901288903473,-0.4616901288903473,-0.461363012413012,-0.461363012413012,-0.5384722055938862,-0.5384722055938862,0.5163376031825804,0.5163376031825804,0.4575660145857186,0.4575660145857186,-0.5169994060735773,-0.5487021517479462,-0.560542811032347,-0.5119439254464243,0.01993809685101319,-0.5442689237897383,-0.588079248947512,-0.582074006708081,-0.5210996219043256,-0.10719569766733908,9.449624122193285,9.449624122193285,9.443275677550844,9.443275677550844,11.067528357339938,11.067528357339938,10.574978797151843,10.574978797151843,9.369923374408543,9.369923374408543,10.589397995396922,11.302339870247636,11.579786308127808,10.479730866892481,5.0082291692166905,11.200025647609763,12.248525640048769,12.09987966635748,10.679154897598082,5.237989737738417,147.52749601296244,147.52749601296244,0.0,163.9194400144027,0.0,147.52749601296244,163.9194400144027,0,0
+2017/04/13 08:00:00,162.70855248373155,0,964.3967286359327,0,0,0,0.0,0.0,11.524878733696466,0.0,83.2008179303116,0,39.380909295966944,0.09129874681243391,25.078672574489893,0,0,45.32814847834654,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1597.5849926182302,0.0,3274.1536363351115,0.0,2599.1784374078657,0.0,2084.3655063787237,0.0,771.2218625984362,0.0,1211.9265484008172,0.0,3150.3516810680403,0.0,2448.933689025159,0.0,1798.176241795204,0.0,488.24923592716215,0,0,0,0,0,0,0,0,0.051345196167663275,0.0016245262161907583,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4628013456175193,-0.4628013456175193,-0.5385472230972608,-0.5385472230972608,-0.5874701520904714,-0.5874701520904714,0.7963200297960134,0.7963200297960134,-0.0538428404647512,-0.0538428404647512,-0.4443534532442847,-0.5185439782998121,-0.5212018118263408,-0.3830143965541466,-0.2143947921528569,-0.4558541681485938,-0.5463813630236174,-0.5301607085052503,-0.35738591704767597,-0.2650658225732437,9.471224245165104,9.471224245165104,11.0692337560386,11.0692337560386,12.233377531300917,12.233377531300917,18.368272746770486,18.368272746770486,5.060019618462235,5.060019618462235,9.119512319857975,10.623124476692766,10.681401205780801,8.055111474352358,5.953414634323238,9.337056061228338,11.248672279396445,10.880089864990794,7.658036014116206,6.458822327217149,162.70855248373155,162.70855248373155,0.0,180.7872805374795,0.0,162.70855248373155,180.7872805374795,0,0
+2017/04/13 09:00:00,181.2897600841518,0,992.692845041731,0,0,0,0.025983053345854695,0.0,11.323895916778682,0.0,106.27511244621549,0,39.380909295966944,0.09984753822739606,20.752036631163193,0,0,58.418445726638595,561.6256979333789,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,99.74192942505721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1019.3737573475833,0.0,3399.967433014869,0.0,2664.943653402022,0.0,1694.6652832505042,0.0,89.0009125103543,0.0,677.8412282894362,0.0,3153.4321326922745,0.0,2257.6395520218057,0.0,1105.0235412128886,0.0,52.34585605195977,0,0,0,0,0,0,0,0,0.052851702364230035,0.0016721910221286866,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3849254896441678,-0.3849254896441678,-0.4612598887950259,-0.4612598887950259,-0.5530973891921901,-0.5530973891921901,0.9448964960820089,0.9448964960820089,-0.14622110443746625,-0.14622110443746625,-0.3914889612709367,-0.503711856727288,-0.5041095850109824,-0.3424855163016601,-0.23868192176967729,-0.3803453459764036,-0.5250303920452181,-0.5075265828527995,-0.3104254889090538,-0.2782788854101024,8.08584361667144,8.08584361667144,9.441275282835306,9.441275282835306,11.40461825527322,11.40461825527322,23.857916172164835,23.857916172164835,5.44300931131977,5.44300931131977,8.192578285075896,10.303520110342006,10.311966290147808,7.440035308267625,6.182208511942605,8.01245165437966,10.765885575276016,10.384811579577033,7.002945622985024,6.608360345180486,181.2897600841518,181.2897600841518,0.0,201.43306676016866,0.0,181.2897600841518,201.43306676016866,0,0
+2017/04/13 10:00:00,212.32573368517424,0,1055.1502267026185,0,0,0,0.15497918428170346,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.07948597469847134,18.584798240823062,0,0,52.67359258460549,541.1020514549392,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,599.8342366949707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3485.5704660704077,0.0,1860.0543786606038,0.0,1834.823687010895,0.0,36.28463039623316,0.0,0.0,0.0,3286.8788729375474,0.0,1406.9559329740234,0.0,1242.537317360775,0.0,21.44856561447908,0,0,0,0,0,0,0,0,0.056176979626454675,0.001777400476796017,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.30014106876233676,-0.30014106876233676,-0.4674402588421516,-0.4674402588421516,-0.47724827398258457,-0.47724827398258457,0.9760741063196671,0.9760741063196671,-0.1162480745337256,-0.1162480745337256,-0.3567646288206994,-0.5004463010906034,-0.4930153226672472,-0.35330633125788174,-0.2704965430787534,-0.32395319966409064,-0.5130838400589642,-0.49136192038717036,-0.32328503167490086,-0.2984394787852216,6.8719582056306905,6.8719582056306905,9.561971158690056,9.561971158690056,9.756889852308618,9.756889852308618,25.123157693987366,25.123157693987366,5.279907115777817,5.279907115777817,7.6487575348730985,10.234431102992119,10.078931883700179,7.597410655401063,6.519393746224949,7.182059722943947,10.50436218212063,10.044657491183628,7.173030777130748,6.850717201698501,212.32573368517424,212.32573368517424,0.0,235.9174818724158,0.0,212.32573368517424,235.9174818724158,0,0
+2017/04/13 11:00:00,228.45614819811559,0,1096.1065302461395,0,0,0,0.35520660213755617,0.0,16.693521233099577,0.0,147.76209134187457,0,39.380909295966944,0.028479969359790754,20.803964553222773,0,0,19.873865749985818,561.622553064264,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1396.1050856990505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1966.9127639831383,0.0,1268.5788182066963,0.0,502.57149886209015,0.0,0.0,0.0,0.0,0.0,1757.339941128962,0.0,912.61403448887,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.058357523563718795,0.001846391367006547,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.23114202341065507,-0.23114202341065507,-0.42001771031203106,-0.42001771031203106,-0.42662589018809033,-0.42662589018809033,0.9854172866573669,0.9854172866573669,-0.025479330741411236,-0.025479330741411236,-0.23866336931183804,-0.46863721271539266,-0.46091533589738126,-0.34486216587888524,-0.24256234168033616,-0.18283109892507227,-0.46884573619829883,-0.4458580782095195,-0.3090405071845611,-0.27996523496992914,6.1085319849510995,6.1085319849510995,8.677923306233978,8.677923306233978,8.795318926461377,8.795318926461377,25.509681321843942,25.509681321843942,5.013439079726965,5.013439079726965,6.182024297069191,9.58553657567451,9.434594957684354,7.4741741188776984,6.22105642913219,5.692979382438892,9.5896482639574,9.147649867651765,6.985045070156531,6.62797504522419,228.45614819811559,228.45614819811559,0.0,253.84016466457285,0.0,228.45614819811559,253.84016466457285,0,0
+2017/04/13 12:00:00,206.23189228984137,0,1026.7437077263535,0,0,0,0.2831609428734312,0.0,16.798297433460366,0.0,129.49988082968767,0,39.380909295966944,0.00895229192008628,18.544703894705673,0,0,6.5181379803787864,541.1058108266288,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1107.0974360031232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,694.0756872712283,0.0,854.389492022758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,433.0306373558578,0.0,393.5517686769242,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054664595515260324,0.0017295496977365163,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.15470021691965263,-0.15470021691965263,-0.38871637169128537,-0.38871637169128537,-0.49635507387972033,-0.49635507387972033,0.9449864971480696,0.9449864971480696,0.006553554612936355,0.006553554612936355,-0.14050726726069848,-0.4354000885460783,-0.43317546861291534,-0.3219147667836478,-0.13455291158675411,-0.03246370928076189,-0.4286445892364726,-0.41464478339286853,-0.2517030789814616,-0.18702986780595912,5.495933027477676,5.495933027477676,8.147266114158086,8.147266114158086,10.14852374344197,10.14852374344197,23.86151363430534,23.86151363430534,5.000889069105995,5.000889069105995,5.409033727356231,8.954090282793416,8.91352243661035,7.154573610953776,5.375073605834984,5.021817132399903,8.831555095317995,8.583852411267102,6.31506690346184,5.725222359275747,206.23189228984137,206.23189228984137,0.0,229.14654698871263,0.0,206.23189228984137,229.14654698871263,0,0
+2017/04/13 13:00:00,203.6486028877143,0,964.196203819606,0,0,0,0.28506091094113156,0.0,16.67307048032785,0.0,129.2730206906943,0,39.380909295966944,0.0014889036859992673,16.319065004870854,0,0,1.0996585555027063,519.4671388573017,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1115.1201908758376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,232.6035210439879,0.0,114.24997553219924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05133452007791197,0.0016241884321528755,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.20471079700716435,-0.20471079700716435,-0.3535059213436606,-0.3535059213436606,-0.514021789841956,-0.514021789841956,0.9494215484643985,0.9494215484643985,-0.011300461648410759,-0.011300461648410759,-0.08687141751807756,-0.38323929278851715,-0.4077034540634478,-0.30496295814731544,-0.11918006454772645,-0.03012717700418878,-0.36096449022220023,-0.3594107028776132,-0.2283109603909513,-0.17777270607452916,5.869080013593944,5.869080013593944,7.600360219331861,7.600360219331861,10.52467158242996,10.52467158242996,24.039185022759355,24.039185022759355,5.002643477988272,5.002643477988272,5.156272026247947,8.058719916833851,8.464152840871563,6.932815027518231,5.2942136941259434,5.018789508247963,7.711799283157077,7.688388732048821,6.081484072786921,5.655112848029191,203.6486028877143,203.6486028877143,0.0,226.27622543079366,0.0,203.6486028877143,226.27622543079366,0,0
+2017/04/13 14:00:00,189.1114728008781,0,937.5180917466604,0,0,0,0.11724163351164979,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,0.01613076240271769,14.077273854769766,0,0,12.119018405291001,517.260019447112,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,452.4543469514593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1195.790521748336,0.0,496.8675859319248,0.0,876.1025520920641,0.0,0.0,0.0,0.0,0.0,776.5884998200067,0.0,0.0,0.0,294.29697407102265,0.0,429.62615388823673,0,0,0,0,0,0,0,0,0.049914157630492874,0.0015792491543908328,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3281570218201584,-0.3281570218201584,-0.3644092524492466,-0.3644092524492466,-0.5564846804363671,-0.5564846804363671,0.9420979611958339,0.9420979611958339,-0.08332140270026035,-0.08332140270026035,-0.13958449495201197,-0.3653860932107214,-0.40835672237939324,-0.3408416215554034,-0.20899675124816608,-0.08637513726117543,-0.3419694914257149,-0.3734968033897188,-0.29500635802280756,-0.2527790126554498,7.239300157243278,7.239300157243278,7.7640673867526,7.7640673867526,11.484012870944326,11.484012870944326,23.74621498511094,23.74621498511094,5.143756961415193,5.143756961415193,5.403674186060925,7.778981197107086,8.475330135316256,7.416562406089696,5.90592070333075,5.154491028843751,7.432654709663453,7.904381324359733,6.80823398044744,6.326363662844841,189.1114728008781,189.1114728008781,0.0,210.1238586676423,0.0,189.1114728008781,210.1238586676423,0,0
+2017/04/13 15:00:00,182.38611029506004,0,964.6914410120407,0,0,0,0.03560352644899979,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,0.052416768755467184,14.09790644634979,0,0,39.29704452560346,517.2553425921799,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,136.45329053761358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1596.734957573375,0.0,621.0400204226731,0.0,1689.8486722917678,0.0,111.74019538015328,0.0,0.0,0.0,1150.437950097401,0.0,74.04448710714658,0.0,1153.9801990037447,0.0,18.40001404537688,0,0,0,0,0,0,0,0,0.051360886872862686,0.0016250226591659439,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.43860187724524535,-0.43860187724524535,-0.3440900029271766,-0.3440900029271766,-0.6047297439499422,-0.6047297439499422,0.9214523291601592,0.9214523291601592,-0.13019035074881818,-0.13019035074881818,-0.22308106825654614,-0.3624836229671198,-0.4299803551195257,-0.38516814303199426,-0.2802760009489309,-0.12343462749933563,-0.3411153131077066,-0.41129897115661096,-0.36341906857285106,-0.30531428246687997,9.012850767854971,9.012850767854971,7.4630562433560925,7.4630562433560925,12.668855953152587,12.668855953152587,22.931788939827015,22.931788939827015,5.351128296715643,5.351128296715643,6.032401772592635,7.7347871028507456,8.855628592321509,8.089756866491228,6.6316027939306395,5.315609059971209,7.420462436002907,8.525897975251041,7.748991352476992,6.937287508608335,182.38611029506004,182.38611029506004,0.0,202.6512336611778,0.0,182.38611029506004,202.6512336611778,0,0
+2017/04/13 16:00:00,205.2765584246417,0,1014.6715576841063,0,0,0,0.12481576275280412,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,0.048536434696630285,14.018544498704356,0,0,36.042141506211166,517.2548335148214,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,481.64109618607716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,994.7829582187431,0.0,562.8352079927001,0.0,1682.731453462912,0.0,8.417937600504933,0.0,0.0,0.0,543.1353774926233,0.0,130.9116788536951,0.0,1269.8826373472057,0.0,0.0,0,0,0,0,0,0,0,0,0.05402186530508908,0.001709214161906612,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.473496747466935,-0.473496747466935,-0.3970363835782149,-0.3970363835782149,-0.5731484718912536,-0.5731484718912536,0.9333614957727795,0.9333614957727795,-0.08637579416857648,-0.08637579416857648,-0.20984510859238178,-0.3220233090566075,-0.43080768822199983,-0.39438840332200925,-0.28700083607061794,-0.20326759684736284,-0.2949227514763785,-0.4147655137930801,-0.3781879031897627,-0.3059662460723518,9.681844476513021,9.681844476513021,8.28422573482979,8.28422573482979,11.881839850109714,11.881839850109714,23.399505588984738,23.399505588984738,5.154493379529541,5.154493379529541,5.913304062664437,7.156032748788405,8.870577399860352,8.240315047442706,6.711103715062279,5.856847719694358,6.807205601930562,8.585952607522529,7.978191177274141,6.945601068394652,205.2765584246417,205.2765584246417,0.0,228.08506491626855,0.0,205.2765584246417,228.08506491626855,0,0
+2017/04/13 17:00:00,212.33696191033297,0,1005.5128847582179,0,0,0,0.25260527266750654,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,0.004130404044399914,18.573756026633337,0,0,3.0406898093463615,541.0976122857977,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,984.7543251759647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,134.2866369632183,0.0,631.2486628021597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,305.6943157616673,0.0,0.0,0,0,0,0,0,0,0,0,0.053534250774624675,0.001693786378058084,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4924666181013414,-0.4924666181013414,-0.38551049031958046,-0.38551049031958046,-0.5356379742945955,-0.5356379742945955,0.9372236045557999,0.9372236045557999,-0.05243508458465483,-0.05243508458465483,-0.22377034858622005,-0.27599050149550686,-0.41723059463461004,-0.3916316393035998,-0.23732886219180577,-0.19351505796738472,-0.21918138064258216,-0.38835732186804195,-0.3797527127349001,-0.28224526424687063,10.067544361341234,10.067544361341234,8.095282147836855,8.095282147836855,11.00327539797982,11.00327539797982,23.552400490855874,23.552400490855874,5.056921762755152,5.056921762755152,6.0388050288273405,6.581934889013397,8.628971139604488,8.194918946750391,6.1688113388985215,5.776470346660815,5.996549592461037,8.14142222032524,8.003020769998713,6.654685828252838,212.33696191033297,212.33696191033297,0.0,235.92995767814773,0.0,212.33696191033297,235.92995767814773,0,0
+2017/04/13 18:00:00,196.907847138545,0,1028.5942919828597,0,0,0,0.17950566498059706,0.0,17.31283737776841,0.0,110.93442390708215,0,39.380909295966944,0.004104402118003762,25.66409128817463,0,0,3.05465428764089,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,695.8936706008872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,559.8803229121611,0.0,214.51693399669648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,267.23757741999975,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054763121991816814,0.0017326670067761443,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5290475290938192,-0.5290475290938192,-0.4351309462009187,-0.4351309462009187,-0.5118701686808297,-0.5118701686808297,0.9291767685178586,0.9291767685178586,-0.03804780763407712,-0.03804780763407712,-0.24833695968561367,-0.222581926842763,-0.39904455363676633,-0.38540152716358056,-0.13060557431048558,-0.2073553366632168,-0.1984925331157418,-0.37835581097049703,-0.3743503895786174,-0.18940882276689186,10.855212938955077,10.855212938955077,8.949170940506008,8.949170940506008,10.478139063909495,10.478139063909495,23.234509749612656,23.234509749612656,5.0299687295079565,5.0299687295079565,6.2800386612202885,6.027777295786194,8.317726579529506,8.093523004322734,5.353373300305563,5.891720798073209,5.816996204658793,7.980850446571196,7.917741796212624,5.743817520079119,196.907847138545,196.907847138545,0.0,218.78649682060555,0.0,196.907847138545,218.78649682060555,0,0
+2017/04/13 19:00:00,192.901984914533,0,998.4697767091972,0,0,0,0.05874420124136874,0.0,22.089604118759734,0.0,101.68988858149199,0,39.380909295966944,0.011114839920976059,27.097742475311204,0,0,8.420491526522698,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,225.6619196200927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6000030638254676,0.0,1075.0928312778676,0.0,581.9022751899707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,876.0985549764604,0.0,387.49394169820084,0.0,0.0,0,0,0,0,0,0,0,0,0.053159270485217736,0.0016819222630840716,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5818302748819593,-0.5818302748819593,-0.4350206443835389,-0.4350206443835389,-0.5522906768630512,-0.5522906768630512,0.917964684191798,0.917964684191798,-0.06747352959704851,-0.06747352959704851,-0.25787938885260747,-0.3055124141227361,-0.40811897102013417,-0.3892197469021042,-0.1753269750963844,-0.2601576161330859,-0.2687095746457572,-0.4049511084143117,-0.3872019651215605,-0.19337765022282802,12.093879691196932,12.093879691196932,8.947155759692478,8.947155759692478,11.38578309115438,11.38578309115438,22.795892343233035,22.795892343233035,5.094261920890517,5.094261920890517,6.380577440282778,6.939812096350039,8.47126014038264,8.155468322007636,5.63718743114481,6.405147147419541,6.499325702602576,8.417261410649004,8.122655013987952,5.775366283421192,192.901984914533,192.901984914533,0.0,214.33553879392554,0.0,192.901984914533,214.33553879392554,0,0
+2017/04/13 20:00:00,210.36581735130488,0,949.5552213016487,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.017330830918213278,23.01675322130504,0,0,13.53744462167113,581.1142515545364,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,301.7705548452528,0.0,1374.9095149608913,0.0,781.9770005971808,0.0,0.0,0.0,0.0,0.0,162.5182217747605,0.0,1265.3683319902839,0.0,658.7097286666885,0.0,0.0,0,0,0,0,0,0,0,0,0.05055502332398256,0.001599525698212608,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.502929862500308,-0.502929862500308,-0.40414872884173253,-0.40414872884173253,-0.6095494549007335,-0.6095494549007335,0.8929356332324572,0.8929356332324572,-0.10701694864008504,-0.10701694864008504,-0.2790204308581168,-0.3430565325585578,-0.4123276070811464,-0.38818094666175196,-0.17474066882257122,-0.28235578432448866,-0.333577417608728,-0.4141107690553218,-0.3927511305185536,-0.2122122930265782,10.286933574972238,10.286933574972238,8.403652404726003,8.403652404726003,12.792771815212546,12.792771815212546,21.835046040330894,21.835046040330894,5.237196300305897,5.237196300305897,6.616970824217276,7.448215625347956,8.543664415904672,8.138553555410084,5.632927328447252,6.655986155444239,7.314212303751674,8.574570321263337,8.213314621878638,5.934065291617685,210.36581735130488,210.36581735130488,0.0,233.73979705700543,0.0,210.36581735130488,233.73979705700543,0,0
+2017/04/13 21:00:00,196.5359248331607,0,962.3471845075135,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.054566478164363226,24.585420904376758,0,0,43.27860434992722,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1459.8398401536183,0.0,1176.4170557297634,0.0,1804.188605410601,0.0,442.09399072644703,0.0,0.0,0.0,1410.888799960804,0.0,1191.2713221612087,0.0,1776.3683530499457,0.0,197.52132448758155,0,0,0,0,0,0,0,0,0.05123607692015523,0.0016210737592619938,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4588832006691272,-0.4588832006691272,-0.4314905084881787,-0.4314905084881787,-0.5809237427222146,-0.5809237427222146,0.8241188216157365,0.8241188216157365,-0.18864020276748844,-0.18864020276748844,-0.2942933158387629,-0.3745272245206119,-0.426823176371727,-0.41118673377782244,-0.22963997845343886,-0.3015903462066263,-0.3832807990224528,-0.4354935338798032,-0.42231371880675134,-0.26779989571071333,9.39529911647405,9.39529911647405,8.882937186566977,8.882937186566977,12.071586105529803,12.071586105529803,19.325800166270653,19.325800166270653,5.737783728253007,5.737783728253007,6.7994728895271805,7.92051353196004,8.798852554045695,8.523962171351513,6.094139614438049,6.890146113445184,8.059386117180196,8.955798989823393,8.718500011461614,6.489161479371418,196.5359248331607,196.5359248331607,0.0,218.373249814623,0.0,196.5359248331607,218.373249814623,0,0
+2017/04/13 22:00:00,140.1023731352216,0,810.793687647013,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.14390583426206335,20.77353449318331,0,0,108.48832222225774,542.5987791183068,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58.83993299853447,0.0,2485.9464219501233,0.0,1614.4016025181465,0.0,2746.6570157512324,0.0,26.898654675106314,0.0,118.2983127303281,0.0,2525.855358297856,0.0,1685.8388093750052,0.0,2767.7508401271825,0.0,17.57347438084401,0,0,0,0,0,0,0,0,0.0431672564906167,0.001365781905303196,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.546762723623247,-0.546762723623247,-0.5751115756108394,-0.5751115756108394,-0.6633921067392107,-0.6633921067392107,0.6224570291674598,0.6224570291674598,-0.4144237562189573,-0.4144237562189573,-0.3482354656074109,-0.41013654454833587,-0.44798685492502976,-0.43903888546727854,-0.2746904124583763,-0.36567340477611276,-0.42664456886326624,-0.46465824961071717,-0.45759693791066897,-0.3068236857848152,11.257475108680296,11.257475108680296,11.929499545248035,11.929499545248035,14.245596064966563,14.245596064966563,13.129593706115969,13.129593706115969,8.580009095616305,8.580009095616305,7.523041303688501,8.505875275157479,9.187625783832871,9.020905072635045,6.567020263005205,7.78337543303536,8.79565341192405,9.507437926939843,9.370518259665744,6.956562148783917,140.1023731352216,140.1023731352216,0.0,155.66930348357954,0.0,140.1023731352216,155.66930348357954,0,0
+2017/04/13 23:00:00,90.98582652094552,0,721.4834974477429,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.22994853771136836,11.812921721941594,0,0,153.35684411170038,514.8911245672264,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,482.43383325533375,0.0,0.0,0.0,0.0,0.0,862.5607671755831,0.0,3683.3504435063583,0.0,1962.0638714335378,0.0,3897.6764215813782,0.0,0.9805783931008183,0.0,872.1400338661301,0.0,3660.172602435016,0.0,2294.7322826833965,0.0,3836.308496124344,0.0,1216.4559205078258,0,0,0,0,0,0,0,0,0.03841231581175428,0.001215338896691054,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7152130936402222,-0.7152130936402222,-0.7125971396618698,-0.7125971396618698,-0.775189528280339,-0.775189528280339,0.3360487219832074,0.3360487219832074,-0.48755803021775246,-0.48755803021775246,-0.3942884627981593,-0.44847663986966113,-0.5196259249889388,-0.4747019431442732,-0.3028339801090797,-0.41919064149826535,-0.4727546304019519,-0.5005384324590503,-0.5004254435547698,-0.33761537561307275,15.762431422268051,15.762431422268051,15.68308164057757,15.68308164057757,17.66231616129609,17.66231616129609,7.348780636827712,7.348780636827712,9.96625247818092,9.96625247818092,8.238663634241348,9.196850944872267,10.646810785250224,9.705886995576677,6.905824074916438,8.663362136005816,9.6670710925018,10.236373998821435,10.233991303509399,7.370829111672592,90.98582652094552,90.98582652094552,0.0,101.09536280105058,0.0,90.98582652094552,101.09536280105058,0,0
+2017/04/14 00:00:00,39.33891085211784,0,543.8643322766607,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5786868775394128e-09,9.541589853115978,0,0,0.0,490.6288035078445,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02895573989434609,0.000916139426441432,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6064289728549028,-0.6064289728549028,-0.6061805251659094,-0.6061805251659094,-0.6902190769725438,-0.6902190769725438,0.3729606236230489,0.3729606236230489,-0.14610675454839203,-0.14610675454839203,-0.3957099283621537,-0.46840841782254317,-0.6040763900978011,-0.5351216210940779,-0.06974035247322681,-0.43125516610445386,-0.5028161254595939,-0.6386577024505141,-0.5703872545895592,-0.16305658063494077,12.712428448533018,12.712428448533018,12.706049804158354,12.706049804158354,15.01635114789562,15.01635114789562,7.896004841221156,7.896004841221156,5.442316037980376,5.442316037980376,8.262192033857318,9.581027329475788,12.652135675453266,10.99160697131957,5.100703308411937,8.878674973839594,10.284523350303786,13.562579765749675,11.815086735856028,5.551020949427624,39.33891085211784,39.33891085211784,0.0,43.7099009467976,0.0,39.33891085211784,43.7099009467976,0,0
+2017/04/14 01:00:00,23.722080353407744,0,35.77178215321243,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249849297299541,0,0,0.0,0.28142964066829357,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0019045161782345488,6.02575643220541e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6059638761720662,-0.6059638761720662,-0.6080182566382754,-0.6080182566382754,-0.7004509941434021,-0.7004509941434021,0.3209604772195836,0.3209604772195836,-0.012841414219265802,-0.012841414219265802,-0.44705545015810955,-0.5200189088015416,-0.6546257723098422,-0.58762268747247,0.010372473630281123,-0.49818915616203757,-0.5734915943951046,-0.7146989014587249,-0.645188984108511,-0.1260872626325786,12.70048974589271,12.70048974589271,12.753295090531637,12.753295090531637,15.318518042505389,15.318518042505389,7.1417665557249705,7.1417665557249705,5.003413577464983,5.003413577464983,9.17011112171592,10.655426647973542,14.00048860264475,12.237169542561915,5.00222714048941,10.18694627052453,11.89015802674956,15.746811136370638,13.740357645543426,5.32932943534702,23.722080353407744,23.722080353407744,0.0,26.357867059341938,0.0,23.722080353407744,26.357867059341938,0,0
+2017/04/14 02:00:00,28.344538746386327,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.525175659913434,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6094850242835128,-0.6094850242835128,-0.6142911370813274,-0.6142911370813274,-0.7075633686798701,-0.7075633686798701,0.27698449359151306,0.27698449359151306,0.06234334629536443,0.06234334629536443,-0.49612991809205276,-0.5698135969277747,-0.7098647435254234,-0.6383006941287231,0.035398932769717284,-0.5536002762742667,-0.6303054316009199,-0.774006262707014,-0.7045640292230881,-0.12511595568677797,12.791108640719457,12.791108640719457,12.915665364575602,12.915665364575602,15.531222100503612,15.531222100503612,6.593386036990253,6.593386036990253,5.080470503135643,5.080470503135643,10.143816928275854,11.801259914979966,15.600514751880354,13.552915522526561,5.0259409337855345,11.416373966260437,13.337931472874857,17.623345410768707,15.441257125460126,5.3242715446071,28.344538746386327,28.344538746386327,0.0,31.493931940429253,0.0,28.344538746386327,31.493931940429253,0,0
+2017/04/14 03:00:00,23.774885488534636,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5777900648568441,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6400172472332519,-0.6400172472332519,-0.6479208013050585,-0.6479208013050585,-0.7427974993778773,-0.7427974993778773,0.1964514755357151,0.1964514755357151,0.1225278305912748,0.1225278305912748,-0.5589979317770675,-0.6272271967008362,-0.7740832084307303,-0.6989237723478655,0.0690659419131401,-0.6197034256103637,-0.6922241641404994,-0.841675565869419,-0.7675248602013883,-0.12930104186192387,13.599433358873938,13.599433358873938,13.815264855547937,13.815264855547937,16.61707338322975,16.61707338322975,5.800252936493521,5.800252936493521,5.310985868398376,5.310985868398376,11.543242384264246,13.255900418059369,17.625877798209288,15.273129375139362,5.098764649000543,13.057132002520405,15.075208689243723,19.94727822532343,17.410939777394773,5.346344161747027,23.774885488534636,23.774885488534636,0.0,26.41653943170515,0.0,23.774885488534636,26.41653943170515,0,0
+2017/04/14 04:00:00,41.734149298276755,0,323.5880839235055,0,0,0,0.0,0.0045656514419612215,4.633261998087618,9.319298099999997,25.555573451546493,0,0.9724406094509074,0.7239732047542454,0.5250362829955173,0,0,234.86220264214518,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2169718165028295,898.0443004856015,0.17252051426881582,745.8144202789589,1.965229185783831,2101.36357630805,0.0,997.1787442426828,0.0,0.0,0.24264394846719975,1006.2510569410405,0.2582542966470859,767.48769241972,1.4017286339472244,2109.890535172141,0.30830304634423555,1004.9274905863833,0.0,0.0,0,0,0,0,0,0,0,0,0.01722806927193845,0.0005450841028092259,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6144365594818991,-0.6144365594818991,-0.6252513146457446,-0.6252513146457446,-0.714028007616607,-0.714028007616607,0.18640642061638993,0.18640642061638993,0.2542574367423382,0.2542574367423382,-0.5050543905544883,-0.5435990416293782,-0.5983896426862663,-0.5744475702945314,0.09990935792362828,-0.5393011499154815,-0.5839713756382631,-0.635862722183657,-0.6169207608658646,-0.1206674010203187,12.919449802187074,12.919449802187074,13.203462311270684,13.203462311270684,15.726447649119947,15.726447649119947,5.72038826602342,5.72038826602342,6.341965767286055,6.341965767286055,10.332057646880713,11.184639548514141,12.507385927190398,11.913360293772499,5.206722041859365,11.086386571096185,12.146675562634258,13.487067209353825,12.984239811662434,5.301607689841774,41.734149298276755,41.734149298276755,0.0,46.371276998085285,0.0,41.734149298276755,46.371276998085285,0,0
+2017/04/14 05:00:00,73.31110868517052,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.0,0.0,0.525065655214638,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4099984720904252,-0.4099984720904252,-0.42469576665097697,-0.42469576665097697,-0.5074410754055618,-0.5074410754055618,0.3511960650132697,0.3511960650132697,0.5768247520231631,0.5768247520231631,-0.5642489846662383,-0.640504135706322,-0.7309271917256874,-0.677258110629247,0.21802503012933214,-0.5965477617461157,-0.6481519193304904,-0.737359246472276,-0.6998052548800979,-0.0065083929655087355,8.50350083442602,8.50350083442602,8.760836236888764,8.760836236888764,10.382982530889663,10.382982530889663,7.56632860185789,7.56632860185789,11.97122819753963,11.97122819753963,11.667877366344385,13.61265108786884,16.24528861882952,14.640086557850111,5.986041062922723,12.460803841774265,13.821617023153806,16.44599327085689,15.299314538949432,5.00087685785347,73.31110868517052,73.31110868517052,0.0,81.45678742796724,0.0,73.31110868517052,81.45678742796724,0,0
+2017/04/14 06:00:00,99.48303871592024,0,709.3466199465627,0,0,0,0.088390954909895,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.02394312817870614,2.520399361412632e-09,0.5250009819182618,0,0,0.0,478.65932861502586,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,288.7196376237403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03776613946372537,0.0011948943274614893,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.24776204221101847,-0.24776204221101847,-0.2674411216006012,-0.2674411216006012,-0.3408190437285469,-0.3408190437285469,0.477920476315015,0.477920476315015,0.8260631015334718,0.8260631015334718,-0.5107073887987797,-0.5835678666215091,-0.7016008911733536,-0.6379711382006903,0.32285202434966237,-0.5547115099521983,-0.6179348093628624,-0.7337852712517697,-0.680540949012464,0.11722281980452157,6.274103619651626,6.274103619651626,6.4851623304969195,6.4851623304969195,7.416240820311884,7.416240820311884,9.770400676666526,9.770400676666526,19.39398839053773,19.39398839053773,10.4530752847851,12.136710510230898,15.352759152688577,13.543999324594537,7.167189661792548,11.442389537787008,13.010764002085153,16.334252197279838,14.734702273430202,5.284623726137127,99.48303871592024,99.48303871592024,0.0,110.53670968435583,0.0,99.48303871592024,110.53670968435583,0,0
+2017/04/14 07:00:00,149.78478789037746,0,908.964228371808,0,0,0,0.0,0.0,10.413824884255693,0.0,69.33401494192633,0,39.380909295966944,0.1507957154301506,27.073267850344045,0,0,43.13117698303801,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.99625430810306,0.0,0.0,0.0,0.0,0.0,2239.634683489287,0.0,3592.163514754895,0.0,3270.60048320864,0.0,3703.907685513551,0.0,1933.1896322634354,0.0,2165.5382143808433,0.0,3481.5852932865296,0.0,3119.843210328513,0.0,3577.2473897663385,0.0,2406.8656217915227,0,0,0,0,0,0,0,0,0.048393928794378774,0.0015311501737030955,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46690596638088655,-0.46690596638088655,-0.4779431490097941,-0.4779431490097941,-0.5629867412706753,-0.5629867412706753,0.25841269703264585,0.25841269703264585,0.44761882836481587,0.44761882836481587,-0.47842588451053225,-0.5273506193177003,-0.5782742369103162,-0.562226143385171,-0.01590286818750327,-0.5089360389712421,-0.5603654416871038,-0.6047070864914539,-0.5995018528679013,-0.13942573225398328,9.55147203179942,9.55147203179942,9.770856722653846,9.770856722653846,11.637808544687587,11.637808544687587,6.3863093627767284,6.3863093627767284,9.180700745908183,9.180700745908183,9.780571883723411,10.817394252406274,12.006633439137772,11.61972315083213,5.0052352411092755,10.415006129570415,11.57558539948225,12.668275805651518,12.535585574582655,5.402755651238266,149.78478789037746,149.78478789037746,0.0,166.4275421004194,0.0,149.78478789037746,166.4275421004194,0,0
+2017/04/14 08:00:00,164.2246625309506,0,985.5146423014656,0,0,0,0.0,0.0,13.067551829438962,0.0,83.2008179303116,0,39.380909295966944,0.12995847878603164,25.013449793992788,0,0,66.44606214387939,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2248.6259218719415,0.0,3624.675314630354,0.0,3225.2908034044335,0.0,3715.7689453550547,0.0,597.0797588963375,0.0,2083.2181345662884,0.0,3445.6666451717583,0.0,3108.8641622498126,0.0,3563.3627681691446,0.0,382.08988828199296,0,0,0,0,0,0,0,0,0.05246952953339568,0.001660099340157526,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5632793457961395,-0.5632793457961395,-0.5480003489280422,-0.5480003489280422,-0.5930117511730199,-0.5930117511730199,0.2033771035479704,0.2033771035479704,-0.08580920977340266,-0.08580920977340266,-0.46646823702165174,-0.5067130202474627,-0.5381228347953474,-0.5318363729019708,-0.2242644851766987,-0.49193991356840533,-0.5361389823053753,-0.5538648560564845,-0.5601538014009759,-0.2784227417490428,11.644772738211557,11.644772738211557,11.286086253309065,11.286086253309065,12.37178903261217,12.37178903261217,5.857772822832459,5.857772822832459,5.152472557412651,5.152472557412651,9.542879586873227,10.367421857390127,11.059589202462774,10.917638177552377,6.043407701167197,10.056625646322189,11.014608096641226,11.422563301938013,11.570574585030869,6.610028924741044,164.2246625309506,164.2246625309506,0.0,182.4718472566118,0.0,164.2246625309506,182.4718472566118,0,0
+2017/04/14 09:00:00,181.8518255761821,0,1011.9648738754339,0,0,0,0.0,0.0,11.85165572991988,0.0,106.27511244621549,0,39.380909295966944,0.15348017198573743,20.758692729639833,0,0,96.81515678903396,542.5010157046866,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1861.8571964349821,0.0,3370.478763831171,0.0,2788.587123328586,0.0,3466.042368221235,0.0,84.9106619686745,0.0,1726.8944178299303,0.0,3217.926724443481,0.0,2624.9067959750882,0.0,3277.4340084947917,0.0,52.909634901576915,0,0,0,0,0,0,0,0,0.053877759454256616,0.0017046547532363371,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.524571830005639,-0.524571830005639,-0.5239246526706851,-0.5239246526706851,-0.5857289329465618,-0.5857289329465618,0.2528285756075053,0.2528285756075053,-0.1778189967755712,-0.1778189967755712,-0.4527309894302279,-0.4914085510347281,-0.5202128550327333,-0.5138985487660291,-0.24267350599039186,-0.474701836180107,-0.5189521919862146,-0.5338857417819103,-0.5395505732698345,-0.2878577384273877,10.755733151367451,10.755733151367451,10.741420330225168,10.741420330225168,12.190162580906275,12.190162580906275,6.326885221547684,6.326885221547684,5.6554545321845495,5.6554545321845495,9.277416240373299,10.045622508823413,10.659681230359112,10.522000875370082,6.2221786421526275,9.705884858963387,10.632055265545901,10.96372576323644,11.0920666976222,6.7213710976298415,181.8518255761821,181.8518255761821,0.0,202.05758397353566,0.0,181.8518255761821,202.05758397353566,0,0
+2017/04/14 10:00:00,212.11512911075232,0,1080.8948943412674,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.08225015740352094,18.526408667977766,0,0,58.9817991521153,560.5385125260784,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,972.1449846874549,0.0,3632.607905735826,0.0,2045.3541685821542,0.0,3681.5400629108726,0.0,11.592120102975112,0.0,783.3634470156799,0.0,3474.0960086936357,0.0,1729.2213519520174,0.0,3398.6639360445693,0.0,5.5204624008419385,0,0,0,0,0,0,0,0,0.05754764480078328,0.0018207673674793337,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4839902179306968,-0.4839902179306968,-0.38271982330265253,-0.38271982330265253,-0.47318643581808384,-0.47318643581808384,0.3894125420535379,0.3894125420535379,-0.12057417989708265,-0.12057417989708265,-0.4198135537718329,-0.46995871351509516,-0.4946777498512793,-0.48030408539167646,-0.258674810162028,-0.42723257825719446,-0.4859163135803816,-0.5008755918961337,-0.4957971662070696,-0.29396208527542994,9.893281120717944,9.893281120717944,8.050388336474512,8.050388336474512,9.675664189220441,9.675664189220441,8.158612674970797,8.158612674970797,5.301141559167533,5.301141559167533,8.67432624995429,9.611625762254377,10.1135123880792,9.818466736603938,6.389130904537055,8.806190752509892,9.93260671836049,10.243487252400627,10.136864858188943,6.795410393651409,212.11512911075232,212.11512911075232,0.0,235.6834767897248,0.0,212.11512911075232,235.6834767897248,0,0
+2017/04/14 11:00:00,228.47562292167046,0,1144.4569958092454,0,0,0,0.0,0.0,16.965687027080573,0.0,147.76209134187457,0,39.380909295966944,0.11334043902719339,20.82161961526682,0,0,87.34405353114532,542.5028308462103,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1302.3934120216145,0.0,2667.519895137087,0.0,2371.4685426858723,0.0,2723.83976643648,0.0,0.0,0.0,992.0934275736352,0.0,2433.869529678146,0.0,1947.7846191705328,0.0,2458.3463626764305,0.0,0.0,0,0,0,0,0,0,0,0,0.060931738163810735,0.001927837722577861,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.331457016259342,-0.331457016259342,-0.26447377031869507,-0.26447377031869507,-0.42856218736226287,-0.42856218736226287,0.49131676452531187,0.49131676452531187,-0.030288357638830737,-0.030288357638830737,-0.41410905767420103,-0.45696002981361145,-0.4781867085197903,-0.4724915189298095,-0.2443115069407105,-0.4231531385318407,-0.47144395445946924,-0.4844128410280884,-0.48663259002441345,-0.2740976908229283,7.284759003888425,7.284759003888425,6.452293971626631,6.452293971626631,8.830072536647435,8.830072536647435,10.04372308360503,10.04372308360503,5.018991102386565,5.018991102386565,8.574540594152552,9.3582740928111,9.775757156560246,9.661839012455928,6.238774574671041,8.733391276817088,9.641037355541627,9.901896215918228,9.947271964646475,6.56024420481539,228.47562292167046,228.47562292167046,0.0,253.8618032463005,0.0,228.47562292167046,253.8618032463005,0,0
+2017/04/14 12:00:00,207.53875549292482,0,1074.9166723866429,0,0,0,0.0,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,0.04394556339419203,18.551136844888383,0,0,35.672199110885515,560.1247143564115,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1030.8298711246493,0.0,1509.8437208758635,0.0,2336.6311450404037,0.0,1601.085332752527,0.0,0.0,0.0,554.9960583217448,0.0,1169.270450726634,0.0,1876.19068777727,0.0,1241.580183023093,0.0,0.0,0,0,0,0,0,0,0,0,0.057229359835810206,0.0018106970530505078,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3671570627116834,-0.3671570627116834,-0.36753202236006555,-0.36753202236006555,-0.49401017866748703,-0.49401017866748703,0.6164168735773211,0.6164168735773211,0.012885570585144893,0.012885570585144893,-0.3491319111235077,-0.39841887480135785,-0.4203389373095985,-0.415625396642749,-0.14789274753923684,-0.33994841816167615,-0.3969084900405043,-0.4081821076277537,-0.414235674516759,-0.22033939062130978,7.806122959905281,7.806122959905281,7.811886712177213,7.811886712177213,10.099611754792846,10.099611754792846,12.971076365583372,12.971076365583372,5.003437093792783,5.003437093792783,7.5361089995257515,8.307270333698199,8.683586657968746,8.600928985613933,5.453206194294083,7.403856641039198,8.282098022016925,8.472340721171577,8.576740298685536,6.007129350473946,207.53875549292482,207.53875549292482,0.0,230.5986172143609,0.0,207.53875549292482,230.5986172143609,0,0
+2017/04/14 13:00:00,205.32203194997822,0,998.2582152637985,0,0,0,0.0,0.0,16.86091082671979,0.0,129.2730206906943,0,39.380909295966944,0.040099630054282305,16.335116304088626,0,0,34.83923750980232,519.7895713471946,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,758.0562668853913,0.0,1576.06490972934,0.0,1928.5490223788433,0.0,1673.3406263710508,0.0,0.0,0.0,325.70546074296925,0.0,1268.9777325282523,0.0,1434.0136812425321,0.0,1344.8934134130177,0.0,0.0,0,0,0,0,0,0,0,0,0.05314800679715974,0.001681565887845355,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.26039022605959394,-0.26039022605959394,-0.2681494333203742,-0.2681494333203742,-0.5544688441968489,-0.5544688441968489,0.6394882738437283,0.6394882738437283,-0.010158866438694422,-0.010158866438694422,-0.3646092504729709,-0.40103947873575996,-0.42173074364279184,-0.4183741960025394,-0.12958816352204666,-0.3654859542548254,-0.4047050923497627,-0.4173044781130896,-0.42281480931075416,-0.22422794249158007,6.407668034497092,6.407668034497092,6.493062885756061,6.493062885756061,11.436703816004467,11.436703816004467,13.585084789005762,13.585084789005762,5.00213635464975,5.00213635464975,7.767117525067263,8.351177278525114,8.708175843131741,8.649016763333051,5.347885169320151,7.780508105377706,8.413085849921131,8.63026451258962,8.727385696940914,6.043066971086603,205.32203194997822,205.32203194997822,0.0,228.13559105553136,0.0,205.32203194997822,228.13559105553136,0,0
+2017/04/14 14:00:00,189.16784455021426,0,965.2393239017618,0,0,0,0.0,0.0,16.693521149792748,0.0,115.5196477718057,0,39.380909295966944,0.04416215069348552,14.09762897950109,0,0,39.98909373053976,517.1111762769646,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1747.3150094366638,0.0,925.3053157617264,0.0,1902.2411304190982,0.0,532.7872241693698,0.0,0.0,0.0,1497.309180740633,0.0,547.3117772699276,0.0,1644.133741541463,0.0,81.31256605530336,0,0,0,0,0,0,0,0,0.051390056563731946,0.0016259455678520956,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.35641016369824474,-0.35641016369824474,-0.2708118048851761,-0.2708118048851761,-0.5661652491338057,-0.5661652491338057,0.6954909333793802,0.6954909333793802,-0.06655402353457983,-0.06655402353457983,-0.33799296980571686,-0.3759524212971075,-0.4001558975407499,-0.3992672207428998,-0.1899853007194918,-0.3280586909100642,-0.3735357828854417,-0.392016385557855,-0.39978872038505425,-0.24606202945483666,7.643471222106811,7.643471222106811,6.5229481658006705,6.5229481658006705,11.713658187629747,11.713658187629747,15.171473822220463,15.171473822220463,5.091709783373062,5.091709783373062,7.376158813492864,7.942900965064865,8.336340474108965,8.321451797328749,5.748359164414538,7.237952694891348,7.904990760693437,8.201235122726303,8.330184780617543,6.256635152999195,189.16784455021426,189.16784455021426,0.0,210.1864939446825,0.0,189.16784455021426,210.1864939446825,0,0
+2017/04/14 15:00:00,182.60590904401403,0,978.755993535761,0,0,0,0.0,0.0,16.923524219979218,0.0,108.75639138185811,0,39.380909295966944,0.0586153170456722,14.054493626709812,0,0,53.496476269778505,517.120463371725,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2015.610636579379,0.0,588.3049683000997,0.0,2153.302470861398,0.0,143.39498465533836,0.0,0.0,0.0,1816.2124116721807,0.0,289.366045470329,0.0,1944.8486295408459,0.0,21.79192357350821,0,0,0,0,0,0,0,0,0.052109694066933374,0.0016487143968246694,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2399443613834318,-0.2399443613834318,-0.2944221791356304,-0.2944221791356304,-0.5943664361404151,-0.5943664361404151,0.7204622297560765,0.7204622297560765,-0.09872559963888468,-0.09872559963888468,-0.35446374062268166,-0.3881977129470739,-0.40691805014456495,-0.40861351241077054,-0.22275108050926298,-0.35355114756817785,-0.3923043436203293,-0.40451305773473606,-0.4148722778802026,-0.26073308347264174,6.194777736846859,6.194777736846859,6.801054632022854,6.801054632022854,12.405827471998364,12.405827471998364,15.922542840777538,15.922542840777538,5.20185033577873,5.20185033577873,7.614538561800572,8.13882619447709,8.450738923941145,8.479728766781506,6.029343311484325,7.601028812933393,8.205966518007187,8.409828301427297,8.587810369670223,6.411387869560983,182.60590904401403,182.60590904401403,0.0,202.89545449334892,0.0,182.60590904401403,202.89545449334892,0,0
+2017/04/14 16:00:00,205.65282152102935,0,1003.8909603153845,0,0,0,0.0,0.0,17.133076708931206,0.0,131.64086955684016,0,39.380909295966944,0.027877145396726838,14.038113611439954,0,0,25.38688428899142,517.1294933633194,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1395.7537534137596,0.0,37.71175951784775,0.0,1512.209752765897,0.0,0.0,0.0,0.0,0.0,1289.9352669763775,0.0,0.0,0.0,1391.5731182343698,0.0,8.101785303470443,0,0,0,0,0,0,0,0,0.05344789831591797,0.001691054246457233,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2996179483611137,-0.2996179483611137,-0.2990856631875197,-0.2990856631875197,-0.547948161226364,-0.547948161226364,0.8143696496178227,0.8143696496178227,-0.027751471620877512,-0.027751471620877512,-0.3326723480196345,-0.38101990466668717,-0.3972042141950956,-0.40025710567393974,-0.22198995675435584,-0.3356888280978467,-0.3872853621983899,-0.3933586017342798,-0.4083441329349577,-0.2533022692648171,6.865415045751121,6.865415045751121,6.858769128048053,6.858769128048053,11.284878449033727,11.284878449033727,18.98628076193033,18.98628076193033,5.015942920917951,5.015942920917951,7.301617150116542,8.023204505065266,8.287018925928365,8.338038233827888,6.022306310535868,7.343730350490716,8.124007776991192,8.223319117070204,8.475114559659986,6.3318751854111355,205.65282152102935,205.65282152102935,0.0,228.50313502336593,0.0,205.65282152102935,228.50313502336593,0,0
+2017/04/14 17:00:00,211.2810441667766,0,1002.5089951504928,0,0,0,0.21141916656134788,0.0,17.48022705469545,0.0,133.89528835348938,0,39.380909295966944,0.00013887053031452938,18.597073824305962,0,0,0.12740057688532488,541.0070119105336,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,827.722810614933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053374321466908334,0.0016887263262418625,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3348690466318823,-0.3348690466318823,-0.2355771409137176,-0.2355771409137176,-0.4020956743876242,-0.4020956743876242,0.9133380712928895,0.9133380712928895,0.17000452232977795,0.17000452232977795,-0.25077679477600884,-0.30483704548137536,-0.32435103152138217,-0.35082245359450237,-0.0783582756977153,-0.24987942689352835,-0.299249839552098,-0.31189767914361133,-0.3495972786446459,-0.13264272358820453,7.3322471249118735,7.3322471249118735,6.151581015125288,6.151581015125288,8.368956399952893,8.368956399952893,22.616370944251074,22.616370944251074,5.599040340583159,5.599040340583159,6.3053803762776255,6.9312133863550685,7.187444610084285,7.56084542819778,5.127136410247076,6.296030637839564,6.860817696596669,7.022062350156119,7.542906245873567,5.364491510076945,211.2810441667766,211.2810441667766,0.0,234.7567157408629,0.0,211.2810441667766,234.7567157408629,0,0
+2017/04/14 18:00:00,194.7910953344916,0,1025.5679687034594,0,0,0,0.4172906939459063,0.0,19.165343546314112,0.0,110.93442390708215,0,39.380909295966944,3.087690938458974e-05,24.89309701427304,0,0,0.028331008240762012,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1663.7080157551702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05460199829880372,0.0017275691654416885,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.18858044586694864,-0.18858044586694864,-0.2337521704790447,-0.2337521704790447,-0.20738036368763874,-0.20738036368763874,0.9515902623192206,0.9515902623192206,0.4092838651353287,0.4092838651353287,-0.15160250846924264,-0.1687958280269595,-0.21419069244708566,-0.20893631330251122,0.10836031267687252,-0.13875214333242344,-0.15179916433032242,-0.1825948712916122,-0.19740402632023005,0.04982838861933341,5.7373156609329925,5.7373156609329925,6.133767177332885,6.133767177332885,5.891936460720615,5.891936460720615,24.126347804719302,24.126347804719302,8.491224742728178,8.491224742728178,5.47625106628773,5.590542037968461,5.951596696481346,5.905395853958467,5.243191756810404,5.3988702113819755,5.477488680280089,5.691187230921656,5.808045254712269,5.051402340683708,194.7910953344916,194.7910953344916,0.0,216.4345503716573,0.0,194.7910953344916,216.4345503716573,0,0
+2017/04/14 19:00:00,192.41654269939403,0,990.0845888996026,0,0,0,0.44993665622695034,0.0,23.798027217215836,0.0,101.68988858149199,0,39.380909295966944,3.847318109270657e-05,27.0977424753112,0,0,0.03530371692829119,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1799.5083572910066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052712836875270404,0.0016677974148552345,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1354637373646846,-0.1354637373646846,-0.20013243450517884,-0.20013243450517884,-0.12978508557398793,-0.12978508557398793,0.9553732902699223,0.9553732902699223,0.5007249289354403,0.5007249289354403,-0.0687460120839979,-0.10634248635925653,-0.12371802569513639,-0.1480115260219304,0.17598290397429261,-0.050850593557226986,-0.07594535201549599,-0.08202858779778299,-0.12144376839019987,0.12024148285467555,5.380172856398687,5.380172856398687,5.83057490352958,5.83057490352958,5.348944049409695,5.348944049409695,24.278834599702435,24.278834599702435,10.24030801902579,10.24030801902579,5.097851572939973,5.234214421902067,5.3170609407485045,5.4539351603141455,5.641970412664037,5.053533207469997,5.119425038214601,5.139329176972623,5.305503764620028,5.299480929065041,192.41654269939403,192.41654269939403,0.0,213.79615855488225,0.0,192.41654269939403,213.79615855488225,0,0
+2017/04/14 20:00:00,207.7762546840528,0,936.0233453064031,0,0,0,0.36015504358910855,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,3.842034761091239e-05,22.94430725641296,0,0,0.035258874106697875,581.0845613068553,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1430.9563003758822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04983457622284492,0.0015767312541256687,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.15575415378615193,-0.15575415378615193,-0.23286161854851642,-0.23286161854851642,-0.13662897927716078,-0.13662897927716078,0.9532867067693979,0.9532867067693979,0.49675879379284127,0.49675879379284127,-0.023347799100805894,-0.10272126881491822,-0.13742119758200183,-0.09389345025404597,0.18261391539356506,0.008314857809610037,-0.07024328252683985,-0.032109003823477575,-0.05912249418025912,0.12281184497502978,5.502720579686766,5.502720579686766,6.125125094909222,6.125125094909222,5.386746772134785,5.386746772134785,24.19465871233453,24.19465871233453,10.156968872668685,10.156968872668685,5.011284527100685,5.218527542996711,5.391248468019143,5.182567114113127,5.691331623501469,5.001431172023871,5.10216130337345,5.021342957695666,5.072369303371104,5.312430204428736,207.7762546840528,207.7762546840528,0.0,230.8625052045031,0.0,207.7762546840528,230.8625052045031,0,0
+2017/04/14 21:00:00,195.60828909980074,0,909.9386193439939,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.009745957219482383,25.41859329318881,0,0,8.989472907844606,581.535973823252,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,746.7203446136775,0.0,0.0,0.0,793.319455619418,0.0,0.0,0.0,0.0,0.0,476.4619498342325,0.0,0.0,0.0,542.2626699341429,0.0,0.0,0,0,0,0,0,0,0,0,0.04844580609147584,0.0015327915352217878,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.25017736274061037,-0.25017736274061037,-0.28985164747322223,-0.28985164747322223,-0.24742619434583354,-0.24742619434583354,0.8711344638305514,0.8711344638305514,0.21594499168708145,0.21594499168708145,-0.17481828586031511,-0.2455038550236706,-0.25710562950662813,-0.2578285891349018,0.05643299440026709,-0.1428428601504851,-0.23319974571002575,-0.21107059621219923,-0.24307943020377146,-0.021954006917520284,6.2991310983534134,6.2991310983534134,6.745382057313478,6.745382057313478,6.2706429912520605,6.2706429912520605,21.018920271791885,21.018920271791885,5.967279376644271,5.967279376644271,5.633490470249782,6.250926118876762,6.372282457168538,6.380032076166955,5.065933942914668,5.422757408041221,6.128402425124449,5.924022829393422,6.226280889343286,5.00997741026741,195.60828909980074,195.60828909980074,0.0,217.34254344422305,0.0,195.60828909980074,217.34254344422305,0,0
+2017/04/14 22:00:00,139.6488999333374,0,747.7056856907708,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.028133370503311314,20.779031275303254,0,0,26.43769221032785,561.5614071739943,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1512.1081990733383,0.0,578.49316280054,0.0,1600.1905068522613,0.0,0.0,0.0,0.0,0.0,1331.1445567706546,0.0,223.251817530335,0.0,1385.5665569245475,0.0,482.6951032054101,0,0,0,0,0,0,0,0,0.03980840453676273,0.0012595101707962041,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47772555300573755,-0.47772555300573755,-0.44369152656816147,-0.44369152656816147,-0.4828319755083545,-0.4828319755083545,0.6573385264215316,0.6573385264215316,-0.16205006453657142,-0.16205006453657142,-0.26883152824981005,-0.32534432164821175,-0.32615649711801764,-0.33780877214867716,-0.11448509378197169,-0.250355580830149,-0.3316398464307515,-0.3090715085233498,-0.3420865010018156,-0.1850442609988467,9.766480840242636,9.766480840242636,9.107164651837081,9.107164651837081,9.869710065872212,9.869710065872212,14.075981661421665,14.075981661421665,5.544231506871071,5.544231506871071,6.500690991000937,7.2009186681586925,7.2119669819664125,7.373558126745095,5.271476648660666,6.300987503213747,7.287291077610249,6.985444866643121,7.434327281855218,5.70988282053068,139.6488999333374,139.6488999333374,0.0,155.16544437037487,0.0,139.6488999333374,155.16544437037487,0,0
+2017/04/14 23:00:00,90.91153535049081,0,651.1036364721699,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.11509662002144438,11.853482469176798,0,0,104.31896493516831,493.54914276818545,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1028.348888503623,0.0,2499.2810863269697,0.0,1854.4501593638342,0.0,3120.4276145264107,0.0,227.62866494984786,0.0,684.0179640458407,0.0,2832.220686366969,0.0,1392.1234296971156,0.0,2847.3962835118678,0.0,58.9402142577766,0,0,0,0,0,0,0,0,0.03466523988258255,0.0010967840262194422,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6060785165721937,-0.6060785165721937,-0.6371928650809688,-0.6371928650809688,-0.6521255025499574,-0.6521255025499574,0.36460936065899185,0.36460936065899185,-0.33315456771797275,-0.33315456771797275,-0.33585687912413525,-0.4517354505312035,-0.3805382761363416,-0.4015995695823352,-0.20759466422911685,-0.3426707629824815,-0.40536752918317837,-0.3793090769495655,-0.4140590187715562,-0.2515061481647186,12.70343161196449,12.70343161196449,13.522961696619262,13.522961696619262,13.93119120057095,13.93119120057095,7.76711920596658,7.76711920596658,7.308323501406562,7.308323501406562,7.346087877299581,9.258493777249484,8.015525088058595,8.360599438233578,5.893784202648902,7.442687613805788,8.424335106234324,7.995970771574079,8.573671461594529,6.313004499217072,90.91153535049081,90.91153535049081,0.0,101.0128170561009,0.0,90.91153535049081,101.0128170561009,0,0
+2017/04/15 00:00:00,40.732640546303834,0,543.686896764841,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.578693427885582e-09,9.547006478925072,0,0,0.0,490.45136799602477,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.028946293096269143,0.0009158405363352388,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5713727973777222,-0.5713727973777222,-0.5819731925115905,-0.5819731925115905,-0.6089016644588152,-0.6089016644588152,0.2878270654204835,0.2878270654204835,-0.07880109527874767,-0.07880109527874767,-0.4881861638052434,-0.557917220187622,-0.6008020923527657,-0.5902349381959826,0.03801738122911023,-0.4685471140028826,-0.537782304342439,-0.5435212804610373,-0.5642126445179124,-0.0921745544815791,11.838874518564722,11.838874518564722,12.097397598769248,12.097397598769248,12.776058329798317,12.776058329798317,6.721003039496779,6.721003039496779,5.128577820347942,5.128577820347942,9.979156380363833,11.517739810021453,12.568620699960164,12.302266495418138,5.029920814253543,9.583760579382755,11.051856025679015,11.182854761147013,11.667010715057955,5.175941330578496,40.732640546303834,40.732640546303834,0.0,45.25848949589315,0.0,40.732640546303834,45.25848949589315,0,0
+2017/04/15 01:00:00,23.722031125805913,0,42.86190923737276,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249357021281206,0,0,0.0,7.371556724828618,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0022819997958996438,7.220088285719067e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5778419324654226,-0.5778419324654226,-0.5886252426883247,-0.5886252426883247,-0.6225785784760909,-0.6225785784760909,0.22005153615782863,0.22005153615782863,0.11524010517788948,0.11524010517788948,-0.5368646935594888,-0.6065280694375366,-0.6421985103723972,-0.6322099143388069,0.12649772074477478,-0.5455669302400481,-0.611701554054307,-0.6216542432905513,-0.6404589988702977,-0.07070434140649262,11.996064394224447,11.996064394224447,12.262118072386144,12.262118072386144,13.13279988627967,13.13279988627967,6.004494219697776,6.004494219697776,5.2750712583243455,5.2750712583243455,11.03104281773426,12.71497340093893,13.65872900313964,13.388889373625716,5.331478605059161,11.229894082036608,12.848428365401915,13.108434233800793,13.611425310260998,5.103507126341285,23.722031125805913,23.722031125805913,0.0,26.35781236200657,0.0,23.722031125805913,26.35781236200657,0,0
+2017/04/15 02:00:00,28.344375290190403,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250122037175048,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5888293896387636,-0.5888293896387636,-0.6012380538098148,-0.6012380538098148,-0.6358802520909165,-0.6358802520909165,0.16643452246330098,0.16643452246330098,0.20243284511537166,0.20243284511537166,-0.592935465417423,-0.6596685510541693,-0.6969274635302863,-0.6867685546749692,0.15031198287700423,-0.6082947933031786,-0.6729740474833443,-0.6861737295477426,-0.7019055087380431,-0.05928779693363822,12.267203603016426,12.267203603016426,12.579713578450267,12.579713578450267,13.487539762515453,13.487539762515453,5.574115534010787,5.574115534010787,5.8498122964862205,5.8498122964862205,12.369874610336396,14.141078344490893,15.213951405046984,14.915470941388307,5.468169370129303,12.76041711607958,14.517315589920074,14.898132515867118,15.361839477995744,5.072774612820666,28.344375290190403,28.344375290190403,0.0,31.49375032243378,0.0,28.344375290190403,31.49375032243378,0,0
+2017/04/15 03:00:00,23.72217436041374,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250789367359481,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.611960845157997,-0.611960845157997,-0.6246214301520709,-0.6246214301520709,-0.6604125187831846,-0.6604125187831846,0.10588967760496464,0.10588967760496464,0.24534442844012566,0.24534442844012566,-0.6325460420084619,-0.6943459805471633,-0.7371876497233384,-0.7241637906009134,0.17456570446453706,-0.6639405531563762,-0.7259367125795796,-0.7430278454721063,-0.7559752800775426,-0.05069509479619711,12.855147594823777,12.855147594823777,13.186781360232317,13.186781360232317,14.161913004756244,14.161913004756244,5.232223098308438,5.232223098308438,6.249297899792836,6.249297899792836,13.397899417528748,15.137681886554176,16.440615726901356,16.036162700535527,5.631658815979009,14.261041337084919,16.090791589473127,16.624347773247607,17.036887159671224,5.053206266292548,23.72217436041374,23.72217436041374,0.0,26.35797151157082,0.0,23.72217436041374,26.35797151157082,0,0
+2017/04/15 04:00:00,39.56011164098273,0,425.59161469347396,0,0,0,0.0,0.006750956649511726,4.633261998087618,9.319298099999997,23.111338313975452,0,1.1305398661070112,0.8337210378684645,0.5252013682946532,0,0,336.8657334121137,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1529258053311424,1609.468435253562,0.5158523490776588,1181.8054990556464,1.5343327943129679,2175.998096754578,0.5116011850003815,1279.1825789805043,0.0,0.0,0.6654171456596942,1565.9202821914914,0.30428125191119765,1105.0996963976631,1.530220733631586,1955.421235489121,0.5363253845870987,1193.2035340080358,0.0,0.0,0,0,0,0,0,0,0,0,0.022658812804826834,0.000716909042649301,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6051087761706441,-0.6051087761706441,-0.6197301483527797,-0.6197301483527797,-0.652285834124323,-0.652285834124323,0.07824368077626266,0.07824368077626266,0.3817998391331843,0.3817998391331843,-0.5263736492295062,-0.5603380930646595,-0.5717804762540866,-0.5727593315310464,0.21347650860190542,-0.5395141450677116,-0.5784567134121573,-0.573468097312752,-0.5907506026785136,-0.050694019245736424,12.678564431978373,12.678564431978373,13.057833636487274,13.057833636487274,13.935626815159651,13.935626815159651,5.126764719860887,5.126764719860887,8.035661318991274,8.035661318991274,10.795677265774401,11.574937781753917,11.848726874531735,11.872412262781367,5.9452491173983475,11.091236948860981,12.011097086203236,11.88958823380959,12.31515178746966,5.053204008401352,39.56011164098273,39.56011164098273,0.0,43.95567960109192,0.0,39.56011164098273,43.95567960109192,0,0
+2017/04/15 05:00:00,72.44162332384614,0,212.9421150752648,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5776161346464057,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44468147489852083,-0.44468147489852083,-0.46384718443188744,-0.46384718443188744,-0.4899503651966988,-0.4899503651966988,0.1941595176024482,0.1941595176024482,0.7507907809216071,0.7507907809216071,-0.7315179311204897,-0.7679137686941567,-0.7988373519626596,-0.7876150621337086,0.28757968789033905,-0.6947806889569841,-0.7384375911748775,-0.7415279629758307,-0.7564026614191666,-0.014789258746529636,9.125638259345664,9.125638259345664,9.491602116606444,9.491602116606444,10.01548990371829,10.01548990371829,5.781659072821782,5.781659072821782,16.87083339001441,16.87083339001441,16.26364781273311,17.42363438376013,18.453637855212378,18.07514818183563,6.7180361057978075,15.15050512554221,16.479815653740275,16.577021930583967,17.05062703171842,5.004527702855057,72.44162332384614,72.44162332384614,0.0,80.49069258205127,0.0,72.44162332384614,80.49069258205127,0,0
+2017/04/15 06:00:00,104.22072571657968,0,709.1087618710114,0,0,0,0.5925105499120499,0.0,8.33396954093373,13.929299233552332,80.56906512710079,0,0.27085647517918515,2.5204058885582115e-09,0.5250247873812246,0,0,0.0,478.4214705394745,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,1964.0754551652485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.037753475723599966,0.0011944936555512767,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2994492182210922,-0.2994492182210922,-0.32089283922860135,-0.32089283922860135,-0.34376100644068464,-0.34376100644068464,0.31321839061928947,0.31321839061928947,0.9338021777263034,0.9338021777263034,-0.6952071433504489,-0.7430662761584648,-0.7776332774437466,-0.7659048964401562,0.3724837805593902,-0.7000531405872463,-0.7503085395384224,-0.7602152021585385,-0.7734116089643093,0.11370990391200803,6.863307046425049,6.863307046425049,7.140860284030495,7.140860284030495,7.458326934144267,7.458326934144267,7.039290172763572,7.039290172763572,23.416921488285453,23.416921488285453,15.163092815289644,16.62556164591099,17.742989590231005,17.358130966125486,7.888565647956611,15.306684230904182,16.85544623092359,17.173541975207016,17.603783063593056,5.26781060925984,104.22072571657968,104.22072571657968,0.0,115.8008063517552,0.0,104.22072571657968,115.8008063517552,0,0
+2017/04/15 07:00:00,120.04519017707251,0,759.4334315742622,0,0,0,0.0,0.0,7.2705466950989335,0.0,69.33401494192633,0,39.380909295966944,0.10278758928264417,0.524956452343357,0,0,28.827479819359887,464.4283079108213,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1990.0284615570795,0.0,2772.7615381488963,0.0,1801.9129294927025,0.0,2762.641828464314,0.0,1538.9648683665303,0.0,1919.8228468386365,0.0,2693.85120003208,0.0,2409.2768373180866,0.0,2654.4480115027573,0.0,1745.6207402666969,0,0,0,0,0,0,0,0,0.04043279841441938,0.0012792655578468249,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4360315444683964,-0.4360315444683964,-0.4326174959148995,-0.4326174959148995,-0.49050884366068603,-0.49050884366068603,0.23022287341112288,0.23022287341112288,0.616042057355848,0.616042057355848,-0.5723856094474206,-0.6134648972803356,-0.6877927556352285,-0.6288918509398097,0.109720743025957,-0.5833085339390875,-0.6301223775799284,-0.6119646161324004,-0.6450363258149393,-0.06759952706779541,8.965644149745685,8.965644149745685,8.903380664518451,8.903380664518451,10.027019705014993,10.027019705014993,6.099713589577263,6.099713589577263,12.961291891576195,12.961291891576195,11.863364393659694,12.894180919341125,14.945360990890862,13.300210294684632,5.249339760711763,12.130309763960994,13.333041818698163,12.855245336795534,13.736181257754382,5.094614363700842,120.04519017707251,120.04519017707251,0.0,133.3835446411917,0.0,120.04519017707251,133.3835446411917,0,0
+2017/04/15 08:00:00,142.7798519967489,0,818.7537721078756,0,0,0,0.0,0.0,11.471581537141494,0.0,87.89947186453183,0,39.380909295966944,0.07090951627923715,0.5250045803751556,0,0,32.905324177427964,466.4352753175505,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1618.5594892563279,0.0,2663.2117253711185,0.0,2423.214709000732,0.0,2217.8975939572765,0.0,0.0,0.0,1235.740618702761,0.0,2454.790231069438,0.0,2045.8388115313762,0.0,1866.044630079819,0.0,751.3839560550009,0,0,0,0,0,0,0,0,0.04359105728340066,0.0013791906669733591,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4882248772976276,-0.4882248772976276,-0.5226516471070036,-0.5226516471070036,-0.5713248628261905,-0.5713248628261905,0.387164952183539,0.387164952183539,0.05731903122595851,0.05731903122595851,-0.49132919605884634,-0.5448983846789562,-0.5544258854901711,-0.499374500265531,-0.13090637608947753,-0.49359820416634437,-0.5554625593970458,-0.5364080097563614,-0.4979216557340495,-0.25615061227757435,9.97995223834063,9.97995223834063,10.713319741383188,10.713319741383188,11.837716560261299,11.837716560261299,8.122054731626207,8.122054731626207,5.068020919732291,5.068020919732291,10.043980319809947,11.21450105757205,11.435697548316725,10.21185557664316,5.355004134186842,10.091042938437965,11.460003000602299,11.02069792920382,10.181333302684735,6.362079051609541,142.7798519967489,142.7798519967489,0.0,158.64427999638767,0.0,142.7798519967489,158.64427999638767,0,0
+2017/04/15 09:00:00,184.01124781789002,0,1005.796446299804,0,0,0,0.0,0.0,11.628471562028606,0.0,106.27511244621549,0,39.380909295966944,0.09209245402276156,23.20268685720199,0,0,53.75727938048781,579.3904655376027,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1431.7562107687852,0.0,2973.6967725865143,0.0,2232.0772003176417,0.0,2584.6581889342633,0.0,524.3734325922649,0.0,1107.0554563448911,0.0,2710.304251099048,0.0,1802.1110365509162,0.0,2268.946220971278,0.0,115.36692608509932,0,0,0,0,0,0,0,0,0.05354934780113465,0.0016942640374533642,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5334001153894253,-0.5334001153894253,-0.5072207109205547,-0.5072207109205547,-0.5835268217042792,-0.5835268217042792,0.4126262203283081,0.4126262203283081,-0.15569572076607496,-0.15569572076607496,-0.4801643580910222,-0.5371093087088578,-0.5355990447300333,-0.498821613778568,-0.22275643660551558,-0.4797319957554573,-0.5486988562625844,-0.5270448069990373,-0.49680684316855755,-0.29768523222940896,10.952788226178185,10.952788226178185,10.378270277246713,10.378270277246713,12.135697261490236,12.135697261490236,8.54883050753034,8.54883050753034,5.502343048294108,5.502343048294108,9.815642339082856,11.036587602253206,11.002395274431208,10.200229439540792,6.029392917529151,9.806908057161891,11.302263497560233,10.810591933001447,10.157974452193471,6.841341066382654,184.01124781789002,184.01124781789002,0.0,204.4569420198778,0.0,184.01124781789002,204.4569420198778,0,0
+2017/04/15 10:00:00,210.2696555806843,0,1088.6197426790666,0,0,0,0.0,0.0,14.932575465546352,0.0,131.64086955684016,0,39.380909295966944,0.09962456462850135,20.783701495248017,0,0,65.7634004672157,561.481759548777,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,950.8041512972768,0.0,3355.2610038512894,0.0,1638.0873209671613,0.0,3093.2531599428607,0.0,102.21671471546196,0.0,685.5178162170259,0.0,3125.365800873403,0.0,1273.0053583455497,0.0,2824.2967119775444,0.0,23.08155511106785,0,0,0,0,0,0,0,0,0.05795892144813438,0.0018337798739180508,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5145817475538585,-0.5145817475538585,-0.4107832209326599,-0.4107832209326599,-0.47362578800384475,-0.47362578800384475,0.46712512308783255,0.46712512308783255,-0.13105499079501134,-0.13105499079501134,-0.47703557736692365,-0.5328685358397423,-0.5232271937898096,-0.5076963452036996,-0.2757585917005636,-0.4762170795637774,-0.5436386927323561,-0.5158850999664274,-0.5079875925966607,-0.3218403666853514,10.536814471569315,10.536814471569315,8.51700707797346,8.51700707797346,9.684415720085326,9.684415720085326,9.555777088036209,9.555777088036209,5.3558112559216795,5.3558112559216795,9.752618849082182,10.940827416818905,10.726015790968049,10.388443821205371,6.579269197477899,9.73620140083662,11.185549728144181,10.56513067578723,10.39467826396401,7.153573736117693,210.2696555806843,210.2696555806843,0.0,233.63295064520474,0.0,210.2696555806843,233.63295064520474,0,0
+2017/04/15 11:00:00,217.3198474327684,0,1111.6648061237213,0,0,0,0.0,0.0,14.876918395255093,0.0,136.4899973586286,0,39.380909295966944,0.04735917931814878,23.092688001145216,0,0,34.61566068070527,562.4390340111262,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,625.1016933737039,0.0,2388.9521796162176,0.0,1515.287380471728,0.0,2111.4286809475543,0.0,4.085247618064201,0.0,267.5041906334788,0.0,2194.7080520550626,0.0,1026.3118691955347,0.0,1804.7817861383094,0.0,0.0,0,0,0,0,0,0,0,0,0.05918585769555991,0.0018725992815414804,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.26582325349699015,-0.26582325349699015,-0.244750175451612,-0.244750175451612,-0.5164271975849891,-0.5164271975849891,0.615623629502119,0.615623629502119,-0.051524794056740646,-0.051524794056740646,-0.4344304962108684,-0.497019126889165,-0.4840288921079269,-0.4717347510441341,-0.2762231714969606,-0.41914737175004035,-0.4919634038817195,-0.46643392911265924,-0.45924246857846224,-0.31064056824099284,6.467195775932865,6.467195775932865,6.243238219904313,6.243238219904313,10.57692974891917,10.57692974891917,12.950376150130282,12.950376150130282,5.054962323456948,5.054962323456948,8.936382807990185,10.162418329284932,9.894069166410759,9.646807007118056,6.5846115973276795,8.662601146809351,10.057112351089458,9.542206485793571,9.402233419406969,7.005732754469278,217.3198474327684,217.3198474327684,0.0,241.46649714752044,0.0,217.3198474327684,241.46649714752044,0,0
+2017/04/15 12:00:00,205.62793332365294,0,1099.089902087139,0,0,0,0.0,0.0,14.932575465546352,0.0,124.80122689546741,0,39.380909295966944,0.048929011768647224,23.03231745244925,0,0,38.92118717202179,581.0489559957715,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,602.2279745696887,0.0,2211.7771343840136,0.0,1446.4103278756884,0.0,1974.1622385875585,0.0,0.0,0.0,183.91966661472418,0.0,1923.359077964478,0.0,966.9134587813977,0.0,1623.07966256884,0.0,0.0,0,0,0,0,0,0,0,0,0.058516360490337024,0.0018514168566462767,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3548433122083987,-0.3548433122083987,-0.3710038679681265,-0.3710038679681265,-0.565427678675714,-0.565427678675714,0.6642293708930009,0.6642293708930009,-0.045938548866544464,-0.045938548866544464,-0.4336399401588242,-0.49022609685604945,-0.47699877664715307,-0.4721224416213156,-0.28250453758757454,-0.4220999835992943,-0.4869323818159169,-0.45996809387847987,-0.4631817552590542,-0.3114642248903145,7.620168059050215,7.620168059050215,7.865539385812426,7.865539385812426,11.696018289565629,11.696018289565629,14.269180219333947,14.269180219333947,5.043689442784938,5.043689442784938,8.921974917796916,10.021180707374327,9.751880079072407,9.654504787352991,6.65773712988144,8.714713186537097,9.953416560397002,9.41625580811224,9.478630967149002,7.016424317210635,205.62793332365294,205.62793332365294,0.0,228.47548147072547,0.0,205.62793332365294,228.47548147072547,0,0
+2017/04/15 13:00:00,201.01039913106717,0,1036.4006722964798,0,0,0,0.0,0.0,14.876918395255093,0.0,122.5097643007467,0,39.380909295966944,0.037571548645989945,20.773260387998175,0,0,31.28522466129916,561.4860412283789,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,252.79169220304405,0.0,1904.8789036745036,0.0,1118.5676582204983,0.0,1717.9780206762427,0.0,0.0,0.0,0.0,0.0,1606.0140334928913,0.0,613.7422410522565,0.0,1361.4495187291914,0.0,0.0,0,0,0,0,0,0,0,0,0.055178739461951884,0.001745816853821943,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3275777429574897,-0.3275777429574897,-0.39346264694113786,-0.39346264694113786,-0.5706871055475755,-0.5706871055475755,0.7157071169111432,0.7157071169111432,-0.07035091996095962,-0.07035091996095962,-0.414323427727338,-0.4659939408786348,-0.4559078887640749,-0.4539666600869624,-0.276088824515108,-0.38819088511856314,-0.45782714801168484,-0.4363181205719173,-0.44250773821614764,-0.309802586470117,7.231368008251934,7.231368008251934,8.225034228804219,8.225034228804219,11.822319698591087,11.822319698591087,15.777449740882588,15.777449740882588,5.102474706677739,5.102474706677739,8.57826523142748,9.533578669887902,9.33808557564221,9.3009622642695,6.583065749265998,8.138715164689415,9.374948204003516,8.970893336426258,9.085129069145509,6.99488471394514,201.01039913106717,201.01039913106717,0.0,223.34488792340795,0.0,201.01039913106717,223.34488792340795,0,0
+2017/04/15 14:00:00,185.1090064152393,0,1031.4576830594465,0,0,0,0.0,0.0,14.83943990903761,0.0,108.75639138185811,0,39.380909295966944,0.09862326122383057,18.601667364698546,0,0,82.40051488368813,540.9181142815011,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,805.6090246667457,0.0,2890.3842568411774,0.0,1633.4354820845847,0.0,2765.5466205484827,0.0,60.97710061034878,0.0,290.6497137885623,0.0,2525.913559787618,0.0,1047.6424481908261,0.0,2358.313068217289,0.0,0.0,0,0,0,0,0,0,0,0,0.05491557105366715,0.0017374903888273268,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3562825436728442,-0.3562825436728442,-0.4320770017787268,-0.4320770017787268,-0.6122827858415443,-0.6122827858415443,0.6783327489681614,0.6783327489681614,-0.11361097054385201,-0.11361097054385201,-0.4176846016768162,-0.46360986419175415,-0.4559529372011875,-0.4575168715149046,-0.2874095446773292,-0.40081817140518816,-0.4564631724010296,-0.4389956600440613,-0.44913957742720545,-0.3169770036756686,7.641569271228775,7.641569271228775,8.893569331160037,8.893569331160037,12.863494376256241,12.863494376256241,14.671007713184764,14.671007713184764,5.2673445284385,5.2673445284385,8.636922494199752,9.486973866971567,9.33894899015921,9.368978072781417,6.715996984874749,8.347458023221307,9.348734438609995,9.020108038348852,9.209353890683673,7.088723070650403,185.1090064152393,185.1090064152393,0.0,205.67667379471033,0.0,185.1090064152393,205.67667379471033,0,0
+2017/04/15 15:00:00,182.5854725210979,0,1028.909489940769,0,0,0,0.0,0.0,14.78378283874635,0.0,106.31215624428707,0,39.380909295966944,0.09669199046875676,18.579956949174516,0,0,79.85850078246978,540.9119352640416,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,910.4275762642079,0.0,3038.353392821576,0.0,1693.4790546854408,0.0,2998.327905114178,0.0,0.0,0.0,319.5996087923215,0.0,2617.9310796735126,0.0,1047.3265001378677,0.0,2554.361349406407,0.0,0.0,0,0,0,0,0,0,0,0,0.05477990336456514,0.0017331979577123193,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.27730654065866306,-0.27730654065866306,-0.41804309923755173,-0.41804309923755173,-0.6264206952794407,-0.6264206952794407,0.6558458820818461,0.6558458820818461,-0.13340710455795854,-0.13340710455795854,-0.41629696596083743,-0.45268309354976083,-0.4515824175775962,-0.45552014093258886,-0.2933820488949272,-0.40518738410365585,-0.44396713022638484,-0.43526414691409826,-0.4482383264926337,-0.3192836137822662,6.597105070398285,6.597105070398285,8.643207365321175,8.643207365321175,13.234476145852156,13.234476145852156,14.034403496595914,14.034403496595914,5.368707827174632,5.368707827174632,8.612647590391518,9.276504894653556,9.25558882185608,9.33065747296726,6.788307494851267,8.421274089769682,9.112303510448356,8.951605173743246,9.192360993723142,7.119355684076666,182.5854725210979,182.5854725210979,0.0,202.87274724566433,0.0,182.5854725210979,202.87274724566433,0,0
+2017/04/15 16:00:00,194.71013835179207,0,1065.8722668174498,0,0,0,0.0,0.0,15.326422632075596,0.0,120.17895923267236,0,39.380909295966944,0.10273803624870817,16.28913395237414,0,0,85.28680870954639,519.2108754448298,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1140.1099533552492,0.0,3193.1515873939775,0.0,1815.234238817668,0.0,3094.592930090661,0.0,0.0,0.0,686.6042811118203,0.0,2854.5204072774254,0.0,1281.9429044776641,0.0,2724.3276017349463,0.0,0.0,0,0,0,0,0,0,0,0,0.05674782898405488,0.0017954617525556612,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.40928646678577124,-0.40928646678577124,-0.4316781016544529,-0.4316781016544529,-0.6258650707673933,-0.6258650707673933,0.6482515562678235,0.6482515562678235,-0.08143851923950189,-0.08143851923950189,-0.43579120629714035,-0.47343284654261336,-0.4649049801026022,-0.46900716322007163,-0.28718960211619726,-0.4370446062657164,-0.4773677134352372,-0.458858065256433,-0.4718197884391333,-0.3142562300956731,8.491269396298947,8.491269396298947,8.886336331208156,8.886336331208156,13.21973270158719,13.21973270158719,13.824356210771668,13.824356210771668,5.137331281248791,5.137331281248791,8.961244618564166,9.680571461466656,9.512260888953392,9.592832586004292,6.7133628430138685,8.98421611152574,9.75928908295144,9.394814180763277,9.648494910197584,7.052879937653799,194.71013835179207,194.71013835179207,0.0,216.34459816865785,0.0,194.71013835179207,216.34459816865785,0,0
+2017/04/15 17:00:00,217.78185323853378,0,1087.7833241667772,0,0,0,0.0,0.0,17.90525159146325,0.0,138.40412594678773,0,39.380909295966944,0.10212038052567439,18.55747082133579,0,0,85.53589195685996,540.8728495468438,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6076052432395,0.0,3156.6045132749123,0.0,1687.6832529262851,0.0,3045.078824244506,0.0,0.0,0.0,769.5619350373896,0.0,2920.3105479937453,0.0,1299.7896812486047,0.0,2773.9095610775676,0.0,0.0,0,0,0,0,0,0,0,0,0.05791438990699932,0.001832370926997582,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.40201795133828067,-0.40201795133828067,-0.4257585342425654,-0.4257585342425654,-0.6197732011939439,-0.6197732011939439,0.6689526358942551,0.6689526358942551,-0.0520984927300686,-0.0520984927300686,-0.43665833297984014,-0.4743483859493407,-0.46287149452980303,-0.46958416603591274,-0.28011053612000003,-0.4432788876393717,-0.4837158338549198,-0.4616635519269252,-0.47742205532424636,-0.3069278351587895,8.367646447481192,8.367646447481192,8.7798033731151,8.7798033731151,13.058964099710764,13.058964099710764,14.40279443778509,14.40279443778509,5.056193234171914,5.056193234171914,8.977129553985492,9.698827371229157,9.472589602753217,9.604223769732954,6.6296707214691395,9.099476761225347,9.887691977627952,9.449108163342856,9.760380875031103,6.957895660938092,217.78185323853378,217.78185323853378,0.0,241.9798369317042,0.0,217.78185323853378,241.9798369317042,0,0
+2017/04/15 18:00:00,208.1149782075761,0,1069.416776525322,0,0,0,0.0,0.0,19.505468714925904,0.0,120.14191543460078,0,39.380909295966944,0.05010537305064785,25.60460418657745,0,0,43.877138830103064,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1231.025929577516,0.0,1792.852837649048,0.0,1834.182178691652,0.0,1690.4278979738247,0.0,0.0,0.0,1010.846802349141,0.0,1623.5658587853254,0.0,1524.2851476220808,0.0,1473.4767603303044,0.0,0.0,0,0,0,0,0,0,0,0,0.056936541306343964,0.001801432478889548,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3013595705239211,-0.3013595705239211,-0.3281346888117569,-0.3281346888117569,-0.610516126654649,-0.610516126654649,0.7068566256966926,0.7068566256966926,-0.04293942493732268,-0.04293942493732268,-0.42100441833030156,-0.4547356399312522,-0.4442137488465477,-0.4510477198044937,-0.2266723491105991,-0.42784402893885154,-0.46480169953212275,-0.44302771308374783,-0.4582827066721658,-0.2768647482486706,6.887244017180379,6.887244017180379,7.238994084333612,7.238994084333612,12.817746547261848,12.817746547261848,15.509988448163824,15.509988448163824,5.038170620512616,5.038170620512616,8.69533341522883,9.31564854191933,9.11690468729168,9.24544680590816,6.065982408111324,8.817163905960228,9.51024169383966,9.094800702747833,9.383721266318673,6.592004320474416,208.1149782075761,208.1149782075761,0.0,231.23886467508453,0.0,208.1149782075761,231.23886467508453,0,0
+2017/04/15 19:00:00,203.7872757565019,0,1036.393979325269,0,0,0,0.0,0.0,24.883914210492264,0.0,110.89738010901058,0,39.380909295966944,0.06888319885166906,25.124213739726102,0,0,64.49510499688766,581.5049966903957,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2582.729063388795,0.0,1996.588212836445,0.0,3164.628107370184,0.0,1877.972202706293,0.0,0.0,0.0,2076.9564875068636,0.0,1662.867765976324,0.0,2568.5756220492312,0.0,1472.4600999525214,0.0,0.0,0,0,0,0,0,0,0,0,0.055178383123207095,0.0017458055795124465,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.38011127923216154,-0.38011127923216154,-0.4244538397078135,-0.4244538397078135,-0.5177643753536004,-0.5177643753536004,0.637868635143903,0.637868635143903,-0.052344509478218615,-0.052344509478218615,-0.4145329844702691,-0.44263603700256154,-0.4365551630230691,-0.4375086768936255,-0.160108950393837,-0.42021879528090356,-0.4534946803736102,-0.4342406689551068,-0.4430014911613066,-0.24795663109216226,8.008725036016344,8.008725036016344,8.756525355176194,8.756525355176194,10.606088567863111,10.606088567863111,13.541227045468673,13.541227045468673,5.0567252579185435,5.0567252579185435,8.581908141818417,9.087514371508519,8.975237885780771,8.992738412766371,5.53125699004751,8.68146799124213,9.291960813689798,8.932920756173857,9.094312691631544,6.276110862516063,203.7872757565019,203.7872757565019,0.0,226.43030639611322,0.0,203.7872757565019,226.43030639611322,0,0
+2017/04/15 20:00:00,199.78124263752332,0,1053.0979071285456,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,0.1220897567263591,23.0275176978856,0,0,117.15225002120431,581.0421319819001,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2783.100717892129,0.0,2889.2288030472355,0.0,3334.0323027020086,0.0,2768.6581417991156,0.0,604.5081989275541,0.0,2247.4414098591888,0.0,2514.2086979428927,0.0,2710.278149137227,0.0,2343.3443698475253,0.0,85.517712014422,0,0,0,0,0,0,0,0,0.05606771261216423,0.0017739433446292592,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3999531214786139,-0.3999531214786139,-0.5148281633430234,-0.5148281633430234,-0.5071017104580723,-0.5071017104580723,0.5499021680082414,0.5499021680082414,-0.10690270641676519,-0.10690270641676519,-0.4237336064754741,-0.45202365208388,-0.44501479131318966,-0.44650552233012714,-0.20182224322967768,-0.43312987240455597,-0.4640404586478519,-0.4464792257266234,-0.45550392089969316,-0.2603847319044602,8.332940237722013,8.332940237722013,10.542162386340607,10.542162386340607,10.375726455435483,10.375726455435483,11.330181474284771,11.330181474284771,5.236689892921902,5.236689892921902,8.743706426591771,9.263967312598382,9.131867819184507,9.159787483632513,5.844684503703405,8.91269317340874,9.495373167437322,9.159294150797635,9.330346886073656,6.407608465877416,199.78124263752332,199.78124263752332,0.0,221.979158486137,0.0,199.78124263752332,221.979158486137,0,0
+2017/04/15 21:00:00,194.94030575409028,0,1003.2405223066539,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,0.10525602694731452,25.193531073172668,0,0,102.32272380740486,581.504625886352,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2477.0475777257298,0.0,2838.038413077694,0.0,3003.8191080595243,0.0,2720.840228888205,0.0,129.05649132007343,0.0,2013.65612711454,0.0,2502.820723029794,0.0,2452.989846844175,0.0,2343.51200964893,0.0,8.381997271843288,0,0,0,0,0,0,0,0,0.053413268514549396,0.001689958583680894,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.39504636404739396,-0.39504636404739396,-0.5142531586619683,-0.5142531586619683,-0.5530200201117998,-0.5530200201117998,0.4808114410873705,0.4808114410873705,-0.1693042104243797,-0.1693042104243797,-0.42501954849309337,-0.45385917683033394,-0.4453581787853069,-0.44831214879678816,-0.23094824740823452,-0.4359278542077278,-0.4671271787391697,-0.44854389213815704,-0.45876877790196285,-0.26613052385163294,8.251197824612532,8.251197824612532,10.529687256180338,10.529687256180338,11.402810614550944,11.402810614550944,9.828729324091455,9.828729324091455,5.594109038652704,5.594109038652704,8.766609615200181,9.29891153402481,9.138290598629752,9.193751584184326,6.1066699348957485,8.96374573440761,9.555817478502703,9.198118455401882,9.393091786178587,6.470599558053735,194.94030575409028,194.94030575409028,0.0,216.60033972676698,0.0,194.94030575409028,216.60033972676698,0,0
+2017/04/15 22:00:00,140.1763572926807,0,822.1679107115642,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,0.1251637214048676,18.611841966850438,0,0,121.57170503284581,540.8896193722699,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2533.0784251018076,0.0,3270.7825829458416,0.0,3031.4407794628996,0.0,3163.367671773933,0.0,11.281308058899013,0.0,2276.032805073388,0.0,3069.323780261107,0.0,2697.361707414589,0.0,2921.7540068145545,0.0,0.0,0,0,0,0,0,0,0,0,0.04377282855153627,0.0013849417831921437,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5677884266618772,-0.5677884266618772,-0.5647201131504799,-0.5647201131504799,-0.6112100345372421,-0.6112100345372421,0.3027070476194426,0.3027070476194426,-0.3846843754799266,-0.3846843754799266,-0.43835917779690814,-0.46978686504620126,-0.4587872226822557,-0.4644151317332969,-0.2542531315776149,-0.4551998268228823,-0.4888490745652495,-0.4682375087916418,-0.480701877157036,-0.2865459213414719,11.752561564308976,11.752561564308976,11.67911817133556,11.67911817133556,12.835699213007572,12.835699213007572,6.9042208940863645,6.9042208940863645,8.081957680577702,8.081957680577702,9.008381225834086,9.608228857184955,9.393447566438482,9.502688147559638,6.341920200579622,9.324526081880748,9.992793191641809,9.577660409337227,9.826512168741402,6.705665533926762,140.1763572926807,140.1763572926807,0.0,155.75150810297856,0.0,140.1763572926807,155.75150810297856,0,0
+2017/04/15 23:00:00,93.265121997428,0,788.0848887208316,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.38090929596693,0.2533123216022525,14.068853414533177,0,0,217.84324089523298,517.0061190567825,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,475.2089194394014,0.0,0.0,0.0,0.0,0.0,2737.857868618866,0.0,4150.382211373263,0.0,3217.0732710772836,0.0,3274.7984635674525,0.0,0.0,0.0,2470.8559677807816,0.0,3945.474124426326,0.0,2880.4971487705043,0.0,3798.911557957819,0.0,0.0,0,0,0,0,0,0,0,0,0.041958223215228053,0.0013275289352356122,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7258606412530234,-0.7258606412530234,-0.7354523008927574,-0.7354523008927574,-0.763471892028903,-0.763471892028903,0.03227061495389153,0.03227061495389153,-0.4809899515546827,-0.4809899515546827,-0.4649964632373452,-0.5024833418745454,-0.48543620227792633,-0.5607622949381852,-0.2850905240359202,-0.4870485951807355,-0.526937405857086,-0.4999889417076558,-0.5186342760568646,-0.31709672165354014,16.088444833794654,16.088444833794654,16.386303958422474,16.386303958422474,17.279028528474598,17.279028528474598,5.021558355316856,5.021558355316856,9.832342803200547,9.832342803200547,9.51404982112929,10.277474477067926,9.922789179764166,11.58498656876867,6.688325973088382,9.955799537416311,10.808203922303946,10.224791591604912,10.625099365576773,7.09030742252574,93.265121997428,93.265121997428,0.0,103.62791333047555,0.0,93.265121997428,103.62791333047555,0,0
+2017/04/16 00:00:00,42.9643270820094,0,546.606011004843,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.6360370790969017e-09,11.778693014573298,0,0,0.0,493.3704822360268,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029101708900614236,0.0009207577840509654,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6112754576037589,-0.6112754576037589,-0.6429370704480863,-0.6429370704480863,-0.6740225846635303,-0.6740225846635303,0.10310338012949795,0.10310338012949795,-0.12150381884190006,-0.12150381884190006,-0.5726904866993937,-0.635235578320624,-0.6355854662947765,-0.6471629312696936,-0.06018426078533869,-0.6138430622882436,-0.6932039758150513,-0.6660338580799581,-0.6595483899646557,-0.1552583525733431,12.83739290537413,12.83739290537413,13.678852843683117,13.678852843683117,14.547290735458006,14.547290735458006,5.220157129738524,5.220157129738524,5.305806161914504,5.305806161914504,11.870745063532581,13.470170080665753,13.479595003664159,13.794451410699452,5.074992394414039,12.904010544352204,15.104033370639272,14.320112460697004,14.1377155077476,5.499521762092613,42.9643270820094,42.9643270820094,0.0,47.73814120223266,0.0,42.9643270820094,47.73814120223266,0,0
+2017/04/16 01:00:00,23.774773714281388,0,51.26546710390573,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5776782906035939,0,0,0.0,15.775114591361596,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0027294114412851947,8.635667544554624e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7189105568435562,-0.7189105568435562,-0.7643754367260114,-0.7643754367260114,-0.7952505492658112,-0.7952505492658112,-0.053175622462428976,-0.053175622462428976,0.007248941099732083,0.007248941099732083,-0.7427226426359161,-0.7999151348971107,-0.7978672812186924,-0.8355812654462248,0.01564906062655008,-0.7672520485876885,-0.834136390288981,-0.8131534344422948,-0.8063740207994835,-0.17748271838164364,15.875089500314246,15.875089500314246,17.30837528997006,17.30837528997006,18.3320867451192,18.3320867451192,5.058541127237305,5.058541127237305,5.001087754785786,5.001087754785786,16.61470987766937,18.490268656014976,18.42070993265969,19.73008895836658,5.005069465353941,17.402038613987074,19.67882401284588,18.94420617040076,18.710817367322832,5.6529744056700935,23.774773714281388,23.774773714281388,0.0,26.41641523809043,0.0,23.774773714281388,26.41641523809043,0,0
+2017/04/16 02:00:00,28.3441673193028,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248042328299026,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7844246799618249,-0.7844246799618249,-0.8349903254923157,-0.8349903254923157,-0.8634571048601396,-0.8634571048601396,-0.15323014072504662,-0.15323014072504662,0.07786395624297962,0.07786395624297962,-0.854233148736096,-0.9146162297822849,-0.9144202213752373,-0.9261231771286996,0.0386550803232991,-0.8807827174930142,-0.9495078379071068,-0.9299663048557253,-0.9196231236349927,-0.20542329138297724,17.968522969729506,17.968522969729506,19.70911153705225,19.70911153705225,20.736172174657938,20.736172174657938,5.486542746347467,5.486542746347467,5.1255369694446244,5.1255369694446244,20.399689041296824,22.665879714890863,22.658283160612797,23.114553917552684,5.030933077158778,21.3776977932598,24.042649540750148,23.265586167420196,22.86045272397061,5.875151113626316,28.3441673193028,28.3441673193028,0.0,31.49351924366978,0.0,28.3441673193028,31.49351924366978,0,0
+2017/04/16 03:00:00,23.721991796037873,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248963723600827,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8625238791460379,-0.8625238791460379,-0.9170837844796579,-0.9170837844796579,-0.942696548748449,-0.942696548748449,-0.2666161847352035,-0.2666161847352035,0.13557824857207193,0.13557824857207193,-0.946458849444788,-1.0039238992759325,-1.0074995270298974,-1.009763719063457,0.0700643959384901,-0.9876757961666359,-1.0532954225837123,-1.0380345580994743,-1.0227758372848863,-0.22350632135843246,20.701968565815733,20.701968565815733,22.761645318661024,22.761645318661024,23.770081035480857,23.770081035480857,6.475987566834135,6.475987566834135,5.380816388606675,5.380816388606675,23.920410988613483,26.285160997530582,26.436488568917923,26.532562803819204,5.1016415093708645,25.603618883666158,28.416697962367905,27.748251033304598,27.088418131553937,6.036349923132093,23.721991796037873,23.721991796037873,0.0,26.357768662264302,0.0,23.721991796037873,26.357768662264302,0,0
+2017/04/16 04:00:00,40.999573983218376,0,469.1881426959768,0,0,0,0.0,0.018252500436526726,4.633261998087618,9.319298099999997,23.111338313975452,0,1.9942843278360256,1.3980902210195019,0.5250485218632541,0,0,380.4622614146164,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,300.5080504255725,0.0,395.66503668107134,0.20696455597530417,769.344478270837,0.0,0.0,0.0,0.0,3.220009285086917,3980.245425646887,2.065672390500424,2753.656755613123,2.947674342872631,4407.11159577368,1.555567153833806,2762.3267539711296,0.0,0.0,2.0759080326346293,3675.481917767162,1.5609082868292035,2530.840461764806,2.912455206442644,4006.400591409485,1.707341182351172,2402.047677037336,0.0,0.0,0,0,0,0,0,0,0,0,0.024979924247919023,0.0007903473907605968,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8459476898087027,-0.8459476898087027,-0.8712752573530834,-0.8712752573530834,-0.8798033476463089,-0.8798033476463089,-0.3081781191856098,-0.3081781191856098,0.2665906388248942,0.2665906388248942,-0.6727379856815889,-0.7006821452340573,-0.6988970059095057,-0.7028039849835745,0.10168041079219645,-0.7065805025493971,-0.7430436033258278,-0.7295414501192528,-0.7283006557715092,-0.22793303219503805,20.100452756678266,20.100452756678266,21.0241282407531,21.0241282407531,21.341104730802826,21.341104730802826,6.9739399280051515,6.9739399280051515,6.475703908430489,6.475703908430489,14.510573716027125,15.325396570950005,15.272334780859154,15.388645424789459,5.214119350232494,15.501698353288873,16.62484549356509,16.202280947626974,16.16384189213437,6.07789878901977,40.999573983218376,40.999573983218376,0.0,45.55508220357597,0.0,40.999573983218376,45.55508220357597,0,0
+2017/04/16 05:00:00,75.00104862801962,0,319.34596507207755,0,0,0,0.0,0.013518234180501052,4.633261998087618,9.319298099999997,57.911447091112116,0,1.509394639926947,1.0891546446796068,0.5249739200328257,0,0,106.40384999681271,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9515992957730077,2692.689788526292,1.4300101070350024,1889.4645795556028,1.9893675576659007,3033.8423865316436,0.9928874027971801,1890.383816129203,0.0,0.0,2.2703227747547317,2801.010998835288,1.4199856855075268,1962.0729156962277,1.8871991307574945,3097.2625889937876,1.5768622262102099,1848.7161448506495,0.0,0.0,0,0,0,0,0,0,0,0,0.017002215722122713,0.000537938253925967,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6923780006011945,-0.6923780006011945,-0.7435694761934816,-0.7435694761934816,-0.7566930914536254,-0.7566930914536254,-0.15516158248908285,-0.15516158248908285,0.5790165003431856,0.5790165003431856,-0.6390196152189314,-0.660430288345883,-0.6590387808267428,-0.6612027808372489,0.16930395374960916,-0.6520783670673267,-0.6777063509965913,-0.6661608156634108,-0.6692291184548057,-0.1706724176630869,15.079731596573396,15.079731596573396,16.641461580051114,16.641461580051114,17.059968518692415,17.059968518692415,5.498898613925718,5.498898613925718,12.02479932278257,12.02479932278257,13.572382415222066,14.16241093085371,14.123460503064393,14.184070392178882,5.594107235006902,13.929887397159078,14.65297794821008,14.323701190070125,14.410645652881172,5.603762436457302,75.00104862801962,75.00104862801962,0.0,83.33449847557735,0.0,75.00104862801962,83.33449847557735,0,0
+2017/04/16 06:00:00,105.75736852380835,0,785.5410004633502,0,0,0,0.0,0.011128079718911523,8.33396954093373,13.929299233552332,80.56906512710079,0,1.4609288765990203,0.9279739489303618,0.5250037169732386,0,0,76.67921858054864,478.1744905512646,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9451710547232322,1975.0107200911775,1.3664419520642543,1406.251885944418,1.2126513335577631,2254.572692808554,0.0,1407.083536683892,0.0,0.0,1.7974323791093714,2089.776849912276,1.3238684069948854,1474.5994507217588,2.3595083845989393,2315.7137792992253,1.1230062078630756,1389.332163336741,0.0,0.0,0,0,0,0,0,0,0,0,0.04182278472012475,0.0013232437556589627,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5549841022419373,-0.5549841022419373,-0.6116715054414045,-0.6116715054414045,-0.6219687111496813,-0.6219687111496813,-0.03329411449535492,-0.03329411449535492,0.820205715385978,0.820205715385978,-0.630331622712685,-0.6502881590163127,-0.6483993776373053,-0.6512127381168066,0.21966528963084064,-0.6401967167670166,-0.6638993845585466,-0.652414250357471,-0.6565939417518811,-0.0579099481222027,11.448779490826581,11.448779490826581,12.847649878974707,12.847649878974707,13.11671950570934,13.11671950570934,5.0229476061610825,5.0229476061610825,19.18904420412963,19.18904420412963,13.338631196596936,13.880440166132644,13.828420862720904,13.905960564342578,6.00096382528811,13.604304283679596,14.259881500435085,13.939180287178857,14.05522890910855,5.069430851553008,105.75736852380835,105.75736852380835,0.0,117.50818724867594,0.0,105.75736852380835,117.50818724867594,0,0
+2017/04/16 07:00:00,119.26655215440897,0,854.2125820353098,0,0,0,0.0,0.0,6.18285738480025,0.0,69.33401494192633,0,39.380909295966944,0.3590478085859324,0.5777475206752234,0,0,123.85185603807683,464.18308215315204,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1677.2396748934827,0.0,1059.9674500741878,0.0,2273.9378112490895,0.0,0.0,0.0,0.0,0.0,6004.007351837205,0.0,6309.1788047724585,0.0,6576.92239625495,0.0,6041.9530275069865,0.0,2253.5329654736806,0.0,5662.929801467815,0.0,6090.531450410137,0.0,6233.8284756704115,0.0,5662.5932781292595,0.0,2804.6780398076558,0,0,0,0,0,0,0,0,0.04547891058851416,0.0014389210296048439,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.682456240787826,-0.682456240787826,-0.7081472237915912,-0.7081472237915912,-0.7267806621075639,-0.7267806621075639,-0.2526867531310675,-0.2526867531310675,0.3056156111461844,0.3056156111461844,-0.6132122449115482,-0.6450552349361377,-0.6349387422745512,-0.6246155519503026,-0.13273550204196136,-0.623616323523548,-0.661975963340674,-0.6419192602588533,-0.6286816635678121,-0.2551205445712498,14.790118841357213,14.790118841357213,15.548779913020269,15.548779913020269,16.11684363540843,16.11684363540843,6.325393076524421,6.325393076524421,6.941127687549283,6.941127687549283,12.887617196785243,13.736698513977501,13.46217837969374,13.186625771506826,5.365001979174153,13.160199221426666,14.205775087394557,13.651126326924853,13.294608881356083,6.351116813182543,119.26655215440897,119.26655215440897,0.0,132.51839128267662,0.0,119.26655215440897,132.51839128267662,0,0
+2017/04/16 08:00:00,150.26857495845988,0,939.9015493762336,0,0,0,0.0,0.0,9.749305565675648,0.0,96.91714705112861,0,39.380909295966944,0.26414552610929903,0.5250923171250946,0,0,156.30574151882723,464.18263524450913,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.030063101150267,0.0,91.28120400406527,0.0,728.7158266420786,0.0,0.0,0.0,0.0,0.0,4795.530350291238,0.0,5438.37215382118,0.0,5373.982588350066,0.0,5173.52278214953,0.0,168.74498928635182,0.0,4543.878607654828,0.0,5290.424514160849,0.0,5132.291259182986,0.0,4867.805325476585,0.0,103.86878984705292,0,0,0,0,0,0,0,0,0.050041054680134305,0.0015832640885869473,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7088234633309255,-0.7088234633309255,-0.7298415078967166,-0.7298415078967166,-0.7435139448797039,-0.7435139448797039,-0.24868194009506617,-0.24868194009506617,-0.17458204053173154,-0.17458204053173154,-0.5928421755280961,-0.6315633457572948,-0.6160411752285617,-0.6103580181451674,-0.265981128678669,-0.6045402316012783,-0.650079800655087,-0.6245310969932554,-0.6170747504631037,-0.3302576325957404,15.569134303770554,15.569134303770554,16.21158649435739,16.21158649435739,16.639706388437006,16.639706388437006,6.283606663902958,6.283606663902958,5.631777200350669,5.631777200350669,12.367533805644072,13.371571612367646,12.961268871078147,12.813658914257132,6.468944138956459,12.664004148259096,13.874694137739922,13.18439051883891,12.988264801880675,7.268183528613022,150.26857495845988,150.26857495845988,0.0,166.96508328717763,0.0,150.26857495845988,166.96508328717763,0,0
+2017/04/16 09:00:00,150.3514077932089,0,1146.8774152815263,0,0,0,0.0,0.0,9.455765784041175,0.0,97.06762091869685,0,39.380909295966944,0.49025899442590126,0.5248775976237463,0,0,287.503343987583,486.72536991222995,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.657595940090463,0.0,98.8943475924856,0.0,682.9877834440828,0.0,0.0,0.0,0.0,0.0,3887.471712370615,0.0,6380.500784696236,0.0,4460.217624799869,0.0,6161.52370112254,0.0,137.91422877134497,0.0,3524.3081219084324,0.0,6162.7976154630105,0.0,4115.377650315242,0.0,5803.609814217436,0.0,6938.312333835922,0,0,0,0,0,0,0,0,0.0610606030893358,0.0019319149189952112,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6968231954663423,-0.6968231954663423,-0.7159489421428402,-0.7159489421428402,-0.7244924211832824,-0.7244924211832824,-0.23294213612605813,-0.23294213612605813,-0.2343841559386082,-0.2343841559386082,-0.5903794684098638,-0.6340086744888132,-0.6143708246396596,-0.6162231542660506,-0.29241617709781337,-0.6012743794199643,-0.652679155228365,-0.622289540807598,-0.6244455810857851,-0.35713271631694604,15.210865243285497,15.210865243285497,15.784805066613785,15.784805066613785,16.04627855541291,16.04627855541291,6.1259050841462965,6.1259050841462965,6.139920271260081,6.139920271260081,12.305876815451313,13.437162964345987,12.917739020780559,12.966018615195352,6.77651134435969,12.580638242503284,13.946512865018377,13.125176813949736,13.182127501555385,7.6542526652160205,150.3514077932089,150.3514077932089,0.0,167.0571197702321,0.0,150.3514077932089,167.0571197702321,0,0
+2017/04/16 10:00:00,204.38423011414565,0,1251.147231134536,0,0,0,0.0,0.0,13.065493553185489,0.0,124.87761316689259,0,39.380909295966944,0.4379110739142338,23.190327821732065,0,0,227.38586393967012,562.386784531792,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2781.618850293939,0.0,5992.133299281653,0.0,3838.089664878275,0.0,5096.620545153061,0.0,0.4104055073251537,0.0,2219.3486568157555,0.0,5739.224529185688,0.0,3453.1876483065366,0.0,5061.388362425533,0.0,5588.801011718795,0,0,0,0,0,0,0,0,0.06661200531869778,0.0021075574158856613,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5510857188620005,-0.5510857188620005,-0.6542018556973215,-0.6542018556973215,-0.6661481964561199,-0.6661481964561199,-0.006083664576424411,-0.006083664576424411,-0.20394114348498396,-0.20394114348498396,-0.5336248140892027,-0.6265340930144654,-0.5986831523489327,-0.6376185582919567,-0.31739619910830486,-0.5309593889423978,-0.639533815453831,-0.6006218739217867,-0.5700330128430938,-0.36911293412927126,11.357702205860733,11.357702205860733,13.988720267553148,13.988720267553148,14.32334444976955,14.32334444976955,5.0007661469552716,5.0007661469552716,5.862545730360779,5.862545730360779,10.957847740704338,13.237486789985866,12.514822533536432,13.534465424371675,7.094273376704365,10.897971542557713,13.586319642096697,12.564037518245826,11.806546791887925,7.836253845982029,204.38423011414565,204.38423011414565,0.0,227.09358901571738,0.0,204.38423011414565,227.09358901571738,0,0
+2017/04/16 11:00:00,222.41160069934074,0,1252.6166984567676,0,0,0,0.0,0.0,13.065493553185489,0.0,143.25325374857618,0,39.380909295966944,0.33080133271793516,22.949167566439808,0,0,165.22735597579492,572.7792310490827,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2732.626572018867,0.0,5157.922452298447,0.0,3918.603748084891,0.0,5198.522573590373,0.0,0.0,0.0,2204.1338647254333,0.0,5242.786865121093,0.0,3439.777745677746,0.0,4760.644630589883,0.0,1651.0327933537537,0,0,0,0,0,0,0,0,0.06669024084737764,0.00211003273347843,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4496227610130722,-0.4496227610130722,-0.5933555994106828,-0.5933555994106828,-0.5927190361008091,-0.5927190361008091,0.11628941693807186,0.11628941693807186,-0.1209301259676936,-0.1209301259676936,-0.5019537317231458,-0.6725021185994523,-0.5791576383378362,-0.5682873399189994,-0.32483482110006967,-0.4897248806505187,-0.6170852765883954,-0.5788118511110434,-0.5581803769474282,-0.36543021190842984,9.218478601596686,9.218478601596686,12.38042117973717,12.38042117973717,12.364444602729648,12.364444602729648,5.2801063622686115,5.2801063622686115,5.302923328473369,5.302923328473369,10.266266381147346,14.50383981242804,12.028256187358664,11.764542189628187,7.194002027551591,10.010838585989632,12.988539972011381,12.019788425454323,11.523945104579141,7.779655734138572,222.41160069934074,222.41160069934074,0.0,247.12400077704527,0.0,222.41160069934074,247.12400077704527,0,0
+2017/04/16 12:00:00,199.41448126699055,0,1161.7214918606644,0,0,0,0.0,0.0,13.016794053187484,0.0,124.80122689546741,0,39.380909295966944,0.25240997339501453,18.531165846519382,0,0,133.11613753689488,549.485595404424,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2936.267801009859,0.0,4680.342805145727,0.0,4215.805719186548,0.0,4398.71195185057,0.0,0.0,0.0,2289.329541924265,0.0,4286.143096677736,0.0,3645.2110594903506,0.0,3938.9526520232384,0.0,0.0,0,0,0,0,0,0,0,0,0.061850912721515605,0.0019569197648661232,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.41462907685030753,-0.41462907685030753,-0.5573580964146045,-0.5573580964146045,-0.5349550543201236,-0.5349550543201236,0.15486509270530557,0.15486509270530557,-0.10331818247299174,-0.10331818247299174,-0.4751619055922976,-0.6030111637571797,-0.5539727204336226,-0.5519121750474939,-0.3142476541049734,-0.4580671846398216,-0.5848099342635604,-0.5498433106909103,-0.543543035845948,-0.34778736680928724,8.583579230044904,8.583579230044904,11.504565515677271,11.504565515677271,10.987845398549098,10.987845398549098,5.4969918052553055,5.4969918052553055,5.221075857060669,5.221075857060669,9.715079325278467,12.624914707256352,11.425087452645784,11.376955533660364,7.052767454298063,9.379569670315632,12.167407191944662,11.328814468683944,11.183354067988091,7.516522072475382,199.41448126699055,199.41448126699055,0.0,221.5716458522117,0.0,199.41448126699055,221.5716458522117,0,0
+2017/04/16 13:00:00,199.29133511577984,0,1088.2888260374712,0,0,0,0.0,0.0,12.968094553189474,0.0,124.7641830973959,0,39.380909295966944,0.1715641602438904,18.574608806529287,0,0,103.83824565763905,540.8211739730305,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1800.8826861784264,0.0,3860.9975858459065,0.0,3481.2979754287803,0.0,3804.0013669297687,0.0,0.0,0.0,1116.681197254223,0.0,3560.1127819481253,0.0,3004.1572411024454,0.0,3385.4149840217087,0.0,0.0,0,0,0,0,0,0,0,0,0.057941303201023676,0.0018332224448603994,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.365429541474945,-0.365429541474945,-0.4649412476680066,-0.4649412476680066,-0.514826980922716,-0.514826980922716,0.20436653762071608,0.20436653762071608,-0.12299651343225783,-0.12299651343225783,-0.433514609336312,-0.5466975893097148,-0.5338559834642065,-0.5340199007289561,-0.31119953138649353,-0.40738133653798897,-0.5301317948666652,-0.5244534027680168,-0.5232637403997148,-0.3377729905463206,7.779645483165268,7.779645483165268,9.512970049924789,9.512970049924789,10.54213671822697,10.54213671822697,5.8661542214271805,5.8661542214271805,5.313371122209077,5.313371122209077,8.919693227317211,11.255971187039862,10.963055236736352,10.966749163338974,7.012985303375359,8.458648199290849,10.87944303484663,10.753112687304252,10.726822460891114,7.3730530934366385,199.29133511577984,199.29133511577984,0.0,221.43481679531092,0.0,199.29133511577984,221.43481679531092,0,0
+2017/04/16 14:00:00,180.89730711851203,0,979.1417132069145,0,0,0,0.0,0.0,12.88660173648153,0.0,111.01081017850728,0,39.380909295966944,0.09398246617132583,14.093028238930684,0,0,67.17085452189947,503.8318047907574,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1094.2159879037795,0.0,3960.313794933063,0.0,3058.521310931569,0.0,4339.259718167256,0.0,0.0,0.0,218.56375742318266,0.0,3426.8493766286065,0.0,2436.67664859957,0.0,3834.4143499155416,0.0,0.0,0,0,0,0,0,0,0,0,0.05213023006793071,0.0016493641415814516,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2673911554265796,-0.2673911554265796,-0.35173110177484973,-0.35173110177484973,-0.47735284087054636,-0.47735284087054636,0.20659695122055088,0.20659695122055088,-0.17120172852985477,-0.17120172852985477,-0.4063360245905693,-0.47042649269607545,-0.5210828668602,-0.5218364565131428,-0.31703600035834356,-0.37875636070772695,-0.4446563380251882,-0.5090451227957784,-0.5096366362111223,-0.3403189771109804,6.484605802434302,6.484605802434302,7.574191216495777,7.574191216495777,9.758990297937927,9.758990297937927,5.885198078222217,5.885198078222217,5.607517940881053,5.607517940881053,8.440815545533539,9.620878736851978,10.678786636372493,10.695361893581776,7.089503758917701,7.987199082675048,9.125168654222392,10.417346595859684,10.430046870901705,7.409123706284717,180.89730711851203,180.89730711851203,0.0,200.9970079094578,0.0,180.89730711851203,200.9970079094578,0,0
+2017/04/16 15:00:00,178.84351428855726,0,1102.8795024688225,0,0,0,0.0,0.0,12.935301171685163,0.0,108.75639138185811,0,39.380909295966944,0.28554813364442105,14.053389102948378,0,0,185.5883954389609,509.1520531356041,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,879.3320725332962,0.0,3565.604253626442,0.0,2509.191229632306,0.0,4251.839416571359,0.0,0.0,0.0,104.51515246236727,0.0,2989.0609965530307,0.0,1919.5532038578458,0.0,3773.904912120552,0.0,0.0,0,0,0,0,0,0,0,0,0.058718121621640126,0.0018578004382015971,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.34527478424989894,-0.34527478424989894,-0.3540520984772446,-0.3540520984772446,-0.4691311134238779,-0.4691311134238779,0.22077739157039547,0.22077739157039547,-0.20266999292656937,-0.20266999292656937,-0.4289637376257776,-0.4427678743572325,-0.5179281037422065,-0.5214173439098881,-0.32604214839680473,-0.40788300625673946,-0.4166130644928943,-0.5072236835835455,-0.5114688051725517,-0.34949657088324604,7.480125533566763,7.480125533566763,7.608440349875011,7.608440349875011,9.595278399608745,9.595278399608745,6.01114564151851,6.01114564151851,5.851808052461578,5.851808052461578,8.837299901946835,9.089966199213634,10.60966418443347,10.686140449113779,7.2104097633865365,8.467223123005752,8.618170068703236,10.37833383042566,10.469481044880027,7.5414345082959215,178.84351428855726,178.84351428855726,0.0,198.71501587617473,0.0,178.84351428855726,198.71501587617473,0,0
+2017/04/16 16:00:00,193.03497349518545,0,1082.028610960546,0,0,0,0.0,0.0,11.08681950462398,0.0,124.87761316689259,0,39.380909295966944,0.18792921319018321,14.069727112057457,0,0,103.84597683875509,516.808051458717,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,874.1459196407709,0.0,2690.844683109236,0.0,2154.4058842387185,0.0,3676.8521661298155,0.0,0.0,0.0,265.0287899510048,0.0,2126.9940807077946,0.0,1645.886610955647,0.0,3259.6013873724337,0.0,0.0,0,0,0,0,0,0,0,0,0.05760800471334513,0.0018226771130384607,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4297570797283752,-0.4297570797283752,-0.31445929830339,-0.31445929830339,-0.4707255569759406,-0.4707255569759406,0.28973788611191215,0.28973788611191215,-0.17570210355460844,-0.17570210355460844,-0.4478210325042613,-0.4194308147623293,-0.5192016684898507,-0.5268025010336891,-0.33372379741733,-0.4353402597377592,-0.39245667756900665,-0.5104390753544408,-0.5194984592672961,-0.35641506114606447,8.851599338091575,8.851599338091575,7.05554430597941,7.05554430597941,9.626799363925642,9.626799363925642,6.744007609950216,6.744007609950216,5.6399206403487625,5.6399206403487625,9.184504835446134,8.667587545543853,10.637516795008466,10.805205088580166,7.316252624791019,8.952996472126642,8.20847092750104,10.447300077852418,10.644017634339022,7.643544223720866,193.03497349518545,193.03497349518545,0.0,214.48330388353938,0.0,193.03497349518545,214.48330388353938,0,0
+2017/04/16 17:00:00,202.13441212885425,0,1078.5018872027053,0,0,0,0.0,0.0,11.198411588569618,0.0,129.38645076019097,0,39.380909295966944,0.14564630050899469,18.591018981163405,0,0,76.32239084603953,540.804913693592,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1504.6506265455532,0.0,2338.503572589759,0.0,2514.702600353764,0.0,3663.8555684835596,0.0,0.0,0.0,919.1865661532183,0.0,1725.1157068114085,0.0,1968.7346374617887,0.0,3236.161094305955,0.0,0.0,0,0,0,0,0,0,0,0,0.05742023932820989,0.0018167363471360517,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4413606145133156,-0.4413606145133156,-0.44450926714414374,-0.44450926714414374,-0.373132784663562,-0.373132784663562,0.3067525210393643,0.3067525210393643,-0.1617233913619202,-0.1617233913619202,-0.46239599548922433,-0.40027681932491144,-0.5183371820810835,-0.5355947201342144,-0.3367492818733543,-0.455013752934158,-0.3729189119984097,-0.5106410620426124,-0.5314439567416586,-0.358819031280192,9.063833443908521,9.063833443908521,9.122421631824565,9.122421631824565,7.898693095403914,7.898693095403914,6.955651230552135,6.955651230552135,5.54203701381843,5.54203701381843,9.463338781393603,8.338368980009307,10.618602996371052,11.002297507580991,7.358627162321142,9.32096631894531,7.895353714237416,10.451647370995161,10.908834007260893,7.679501180305763,202.13441212885425,202.13441212885425,0.0,224.5937912542825,0.0,202.13441212885425,224.5937912542825,0,0
+2017/04/16 18:00:00,193.36135509298333,0,1078.7440499715156,0,0,0,0.0,0.0,11.762734284462907,0.0,115.6330778413024,0,39.380909295966944,0.12049254424946469,23.032165924547336,0,0,71.84083398303552,581.0189858379503,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2022.7101671424207,0.0,1383.820497906323,0.0,2570.420436374903,0.0,3214.2806715078077,0.0,0.0,0.0,1625.0640563368927,0.0,833.2148527180641,0.0,2156.3033872803844,0.0,2895.3235207806897,0.0,0.0,0,0,0,0,0,0,0,0,0.05743313225339293,0.001817144270301733,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47214586057613567,-0.47214586057613567,-0.4155258414581427,-0.4155258414581427,-0.5088597141902194,-0.5088597141902194,0.2954523309728182,0.2954523309728182,-0.17152128681149487,-0.17152128681149487,-0.4742065139431643,-0.3628414801438721,-0.499618200155355,-0.541785312321781,-0.33033533895561773,-0.4728789178921221,-0.33437085458930144,-0.4918315006859247,-0.5426493606748287,-0.3521905090155354,9.654969989319042,9.654969989319042,8.599193434271953,8.599193434271953,10.413368836382944,10.413368836382944,6.813724533331737,6.813724533331737,5.60979089111251,5.60979089111251,9.695996068852821,7.740216573646478,10.216984309545495,11.143078746483852,7.269255580828229,9.669543638314067,7.325282554581477,10.054379707187039,11.162860252777904,7.580952137284967,193.36135509298333,193.36135509298333,0.0,214.8459501033148,0.0,193.36135509298333,214.8459501033148,0,0
+2017/04/16 19:00:00,184.53525266858009,0,1052.9221382302094,0,0,0,0.0,0.0,14.34944290856651,0.0,104.13412371906301,0,39.380909295966944,0.15884368169249047,23.079957860836892,0,0,100.14499193579647,562.3832686564276,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3113.8409168653366,0.0,2289.497564642889,0.0,3744.3692769491786,0.0,3582.641226151159,0.0,0.0,0.0,2738.9005188899396,0.0,1864.3715080867673,0.0,3347.54001607793,0.0,3267.751132982693,0.0,0.0,0,0,0,0,0,0,0,0,0.05605835454582362,0.0017736472619333528,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5409955597366473,-0.5409955597366473,-0.552538932300155,-0.552538932300155,-0.6491653336544366,-0.6491653336544366,0.22314158264064843,0.22314158264064843,-0.1995030500128353,-0.1995030500128353,-0.48849334889297513,-0.43015565758622004,-0.5195390716151673,-0.5506927620356633,-0.3257432489508875,-0.49392304046945484,-0.4218127585080404,-0.5211680343709245,-0.5575321819655334,-0.34974677542926075,11.125026462176436,11.125026462176436,11.391576367695237,11.391576367695237,13.84949756742165,13.84949756742165,6.032963139866936,6.032963139866936,5.82535018020522,5.82535018020522,9.985473160420455,8.858793621110635,10.644907494665105,11.348558172340901,7.206341923607496,10.097798722590923,8.70962740005686,10.680658669895806,11.508665934698413,7.545091778893308,184.53525266858009,184.53525266858009,0.0,205.03916963175564,0.0,184.53525266858009,205.03916963175564,0,0
+2017/04/16 20:00:00,200.55769466364632,0,1025.9183772917404,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,0.19826783544511012,18.535248406328435,0,0,130.23259841616397,540.7822537501352,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3356.9688648416804,0.0,2687.3866695425304,0.0,4060.0889559437023,0.0,3549.291530467174,0.0,0.0,0.0,3215.774501472153,0.0,2484.251542374513,0.0,3878.9397718779273,0.0,3390.600713457466,0.0,0.0,0,0,0,0,0,0,0,0,0.054620654311593776,0.0017281594286820523,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5288744363964023,-0.5288744363964023,-0.5764297544291491,-0.5764297544291491,-0.622935949542122,-0.622935949542122,0.16288747729472397,0.16288747729472397,-0.2372535460067257,-0.2372535460067257,-0.4961938240288519,-0.4652247984009407,-0.5325646010087218,-0.554821125301914,-0.3208031621544099,-0.5079721499817482,-0.46730630414173113,-0.5409796786354923,-0.5668906599015632,-0.3467321503933198,10.851349546859382,10.851349546859382,11.96159575808744,11.96159575808744,13.142230193999595,13.142230193999595,5.549877313321858,5.549877313321858,6.168067862002687,6.168067862002687,10.145152640415944,9.518516436978075,10.933994227932857,11.444958691046878,7.139659012791768,10.394347607217156,9.559337723271426,11.124663726736472,11.731030287647144,7.501203825478655,200.55769466364632,200.55769466364632,0.0,222.841882959607,0.0,200.55769466364632,222.841882959607,0,0
+2017/04/16 21:00:00,186.88849825569554,0,1069.212668110896,0,0,0,0.0,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,0.23980659146095387,23.08672375454879,0,0,168.77798696432706,581.0215085336719,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2688.414194633663,0.0,4016.956380770367,0.0,3353.08851253594,0.0,4697.58655848396,0.0,0.0,0.0,2548.6834549087635,0.0,3861.873834395681,0.0,3209.847734759528,0.0,4554.084143799642,0.0,0.0,0,0,0,0,0,0,0,0,0.05692567442317546,0.0018010886582809393,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5895589432055737,-0.5895589432055737,-0.5502693500257847,-0.5502693500257847,-0.632135564361636,-0.632135564361636,0.07084401373843796,0.07084401373843796,-0.32272041610898833,-0.32272041610898833,-0.515369660826432,-0.4978240254238939,-0.5518668304054885,-0.5778769039752736,-0.3411241026385541,-0.5349860003372665,-0.5092029139563209,-0.5668794318227992,-0.5963322322517008,-0.3703447066572255,12.285392385490866,12.285392385490866,11.338712944117503,11.338712944117503,13.386897053130653,13.386897053130653,5.103916566687843,5.103916566687843,7.165415888340277,7.165415888340277,10.553923630895667,10.179285493626864,11.375898405950522,11.996919081572898,7.420587737160844,10.9885441606921,10.420733021001013,11.730761224280215,12.455362616280539,7.855313420994662,186.88849825569554,186.88849825569554,0.0,207.6538869507728,0.0,186.88849825569554,207.6538869507728,0,0
+2017/04/16 22:00:00,131.25178193267618,0,965.9448385384845,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,0.46036671364611975,18.559555142123212,0,0,265.42721204724415,540.8110401847919,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,374.888266755877,0.0,0.0,0.0,0.0,0.0,2744.8884229212385,0.0,4903.784787818151,0.0,3359.1045850288647,0.0,5464.362599519437,0.0,3697.621101974223,0.0,2737.522813854853,0.0,4822.109400554333,0.0,3298.5480346550935,0.0,5363.217191675245,0.0,7545.256258943008,0,0,0,0,0,0,0,0,0.05142761868557045,0.001627134007204107,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7067971968231129,-0.7067971968231129,-0.6848884512149397,-0.6848884512149397,-0.7557886709710433,-0.7557886709710433,-0.1433119073891036,-0.1433119073891036,-0.4633988596056549,-0.4633988596056549,-0.5388832599020053,-0.5318969965269554,-0.5755576671345742,-0.6061695726869722,-0.36606383893224503,-0.5639389875524408,-0.5520732052077477,-0.5971268924836093,-0.6314271812698112,-0.40098570394026084,15.50820392667319,15.50820392667319,14.860720461380936,14.860720461380936,17.030890319016237,17.030890319016237,5.425540852664355,5.425540852664355,9.482860865928757,9.482860865928757,11.076875988293054,10.918998911734192,11.94035294674174,12.705768671937392,7.789352496951551,11.660486297338906,11.38071037877198,12.475434476817043,13.367926880221916,8.350273355248262,131.25178193267618,131.25178193267618,0.0,145.83531325852908,0.0,131.25178193267618,145.83531325852908,0,0
+2017/04/16 23:00:00,89.00851022558865,0,825.0094460806379,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.5250182653039549,9.540535698992128,0,0,284.0056922509065,487.76822506091526,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1241.0118733888814,0.0,422.6676933341366,0.0,1892.5590171671183,0.0,0.0,0.0,0.0,0.0,3150.102425220176,0.0,5300.526372196045,0.0,3704.9561408173877,0.0,5767.866620875764,0.0,6802.128788470973,0.0,3193.298262955873,0.0,5278.998892138527,0.0,3827.435498970955,0.0,5791.384890775337,0.0,10528.879609344893,0,0,0,0,0,0,0,0,0.04392411399932993,0.0013897283493056792,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.816084407599498,-0.816084407599498,-0.808621320521256,-0.808621320521256,-0.8522974810262931,-0.8522974810262931,-0.3865393174240751,-0.3865393174240751,-0.5875283101051737,-0.5875283101051737,-0.5617786164817787,-0.5616407769678069,-0.5989400334964722,-0.6321921901456687,-0.3899277191503961,-0.5923997731551275,-0.5886847707582881,-0.6232343095102841,-0.6599290348823982,-0.4286173421077613,19.0457081522802,19.0457081522802,18.787968260533248,18.787968260533248,20.32952527517284,20.32952527517284,8.111916931645041,8.111916931645041,12.234823213457943,12.234823213457943,11.609093640551734,11.605821471830183,12.52133415731494,13.388414405196542,8.16702264278679,12.356438307491928,12.26360079690211,13.150107561616608,14.148370411269582,8.831064837969294,89.00851022558865,89.00851022558865,0.0,98.8983446950985,0.0,89.00851022558865,98.8983446950985,0,0
+2017/04/17 00:00:00,39.350423391853,0,523.7050060209798,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5787067448089154e-09,9.553102392851114,0,0,0.0,470.46947725216364,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02788244243234629,0.0008821810428938046,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7345044268650814,-0.7345044268650814,-0.7253016919443813,-0.7253016919443813,-0.7893969734725155,-0.7893969734725155,-0.3046842540464825,-0.3046842540464825,-0.26781104326977245,-0.26781104326977245,-0.7082424823373489,-0.6294887385526451,-0.7822913738167802,-0.8157159647107282,-0.18915382585918927,-0.7563434333465873,-0.6841055885667926,-0.81324385311029,-0.8475821363711494,-0.2855763562533408,16.356692655958312,16.356692655958312,16.071209210910183,16.071209210910183,18.13488926729117,18.13488926729117,6.929270741079563,6.929270741079563,6.489285824758824,6.489285824758824,15.551645942830035,13.316127572308758,17.897467415534507,19.03292879156362,5.741813016951298,17.048722443495734,14.83796779374319,18.947332031761462,20.15925603919878,6.694104223265683,39.350423391853,39.350423391853,0.0,43.722692657614445,0.0,39.350423391853,43.722692657614445,0,0
+2017/04/17 01:00:00,23.77467125530338,0,51.70803365232283,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.577575831625588,0,0,0.0,16.2176811397787,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0027529740121349146,8.710217876276462e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.777569742217871,-0.777569742217871,-0.7682408441873021,-0.7682408441873021,-0.8425958416980551,-0.8425958416980551,-0.35283166741368144,-0.35283166741368144,-0.13356746234690278,-0.13356746234690278,-0.7846614646421779,-0.7161920256805315,-0.871176693056286,-0.9022072130068669,-0.12835585071092184,-0.8691976862794779,-0.788398016052759,-0.9433727976637298,-0.9777321092946258,-0.2774438421821787,17.740888935802488,17.740888935802488,17.43431565662867,17.43431565662867,19.980209870718355,19.980209870718355,7.590402830150239,7.590402830150239,5.369595442959948,5.369595442959948,17.976421653364127,15.792201203856834,21.020482250047863,22.188013933430923,5.341295453562324,20.94736158484882,18.10138121211726,23.79706056645915,25.19150291117745,6.5986919724990685,23.77467125530338,23.77467125530338,0.0,26.416301394781534,0.0,23.77467125530338,26.416301394781534,0,0
+2017/04/17 02:00:00,28.344209880355447,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248467938825524,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7868404314685381,-0.7868404314685381,-0.7789994256360284,-0.7789994256360284,-0.8545434908447544,-0.8545434908447544,-0.37286278581531784,-0.37286278581531784,-0.05701759444647624,-0.05701759444647624,-0.8340892116133826,-0.7630540488925474,-0.9229062904619578,-0.9537628142052192,-0.10683168042929485,-0.9381986649813016,-0.8543331583245201,-1.0167631900171665,-1.0516061143066011,-0.2800213676833287,18.049219640179373,18.049219640179373,17.78819988659066,17.78819988659066,20.410952744189558,20.410952744189558,7.8944776901453935,7.8944776901453935,5.067307262597296,5.067307262597296,19.67715156064814,17.26546894578408,22.98858702803402,24.2138505267299,5.23637532559178,23.591095430521065,20.403318399829388,26.830781770202094,28.342288633171876,6.6286300129993805,28.344209880355447,28.344209880355447,0.0,31.493566533728274,0.0,28.344209880355447,31.493566533728274,0,0
+2017/04/17 03:00:00,23.722033655128673,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.524938231450878,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.8144635454085744,-0.8144635454085744,-0.8063054655066666,-0.8063054655066666,-0.8824674189496547,-0.8824674189496547,-0.41530689144876703,-0.41530689144876703,0.004229241350462073,0.004229241350462073,-0.8875751443321254,-0.8123686650905891,-0.9778248749008805,-1.0057491488323118,-0.0789775624020744,-1.0086202294431046,-0.918561551992637,-1.089510863380768,-1.1227984502771242,-0.28158754541966136,18.989531649607116,18.989531649607116,18.708467182705675,18.708467182705675,21.44073684764048,21.44073684764048,8.595377960366804,8.595377960366804,5.000370259426475,5.000370259426475,21.632571187792266,18.91709040438758,25.19532997804876,26.362348851749786,5.1291544997049385,26.484018115000197,22.81911470839752,30.036283681348195,31.564881584949646,6.646958076880978,23.722033655128673,23.722033655128673,0.0,26.357815172365193,0.0,23.722033655128673,26.357815172365193,0,0
+2017/04/17 04:00:00,42.12473780042689,0,326.7150373804522,0,0,0,0.0,0.009437227232785545,4.633261998087618,9.319298099999997,25.555573451546493,0,1.2015754334936875,0.8805573889551349,0.5250342011111758,0,0,237.98915609909187,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3497029918706858,1656.4929435654112,0.1513901539797189,689.4202119482311,1.3283021942369828,2139.1469302315963,0.5386972013820923,1337.6580283648443,0.0,0.0,1.854762663745305,2535.893309232066,1.0882923020345174,1172.7085776185043,1.8512397279430957,2977.689372294891,1.2748399975931477,1870.5770898719513,0.0,0.0,0,0,0,0,0,0,0,0,0.017394550590141562,0.0005503514556701209,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7200110185484564,-0.7200110185484564,-0.7134538265858381,-0.7134538265858381,-0.7897991027120908,-0.7897991027120908,-0.3264369786748452,-0.3264369786748452,0.1376438757743383,0.1376438757743383,-0.6702154991078711,-0.6547240616618365,-0.7098177612462915,-0.736276319718482,-0.04814009102553245,-0.7340890830833096,-0.7168217547569986,-0.7711463951498906,-0.8043388883120751,-0.24127501834449638,15.908733186802465,15.908733186802465,15.709035066955863,15.709035066955863,18.148389855863897,18.148389855863897,7.215788971475689,7.215788971475689,5.392518514386978,5.392518514386978,14.438682656462106,14.003218322366138,15.599097867464621,16.412077415757395,5.0479777421456475,16.343729600396472,15.811373380300921,17.529402290117915,18.641134319867632,6.208098599522955,42.12473780042689,42.12473780042689,0.0,46.80526422269654,0.0,42.12473780042689,46.80526422269654,0,0
+2017/04/17 05:00:00,75.13408574608331,0,286.8488857487155,0,0,0,0.013713852978680292,0.006346572873662068,5.555297838843742,9.319298099999997,57.911447091112116,0,1.0386247601845002,0.7643423630159358,0.5250151670746565,0,0,73.90677067345071,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.40856691839334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,992.289461944233,0.0,366.6773989738562,1.2024782808500731,1455.9015851367637,0.5239616431078389,922.5265045012075,0.0,0.0,1.689325795086404,1928.4782714518926,0.0,865.8851491651739,1.8968383724893556,2365.3671598501514,1.0339687821283974,1494.6321458273458,0.0,0.0,0,0,0,0,0,0,0,0,0.015272047148143614,0.00048319692627225006,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4728318032393955,-0.4728318032393955,-0.47133693238503666,-0.47133693238503666,-0.5404223322334613,-0.5404223322334613,-0.0989501951750953,-0.0989501951750953,0.4632406042533683,0.4632406042533683,-0.6285725992157984,-0.6230087887024132,-0.659050333314845,-0.6851905937700873,0.07089009419478744,-0.6641639280830812,-0.665302338753178,-0.6878708917523642,-0.7207868076297472,-0.10665838732455223,9.668606272227422,9.668606272227422,9.638914864173074,9.638914864173074,11.111940466932666,11.111940466932666,5.202770177964865,5.202770177964865,9.479777336389404,9.479777336389404,13.291703113296137,13.144152953647605,14.12378352955082,14.869508845692607,5.1040518259704015,14.267335724718222,14.299448091102178,14.94764315938464,15.932482207989622,5.235608706030277,75.13408574608331,75.13408574608331,0.0,83.48231749564813,0.0,75.13408574608331,83.48231749564813,0,0
+2017/04/17 06:00:00,101.25002804950392,0,760.7610213852901,0,0,0,0.0,0.005228356527229153,11.110595677687485,13.929299233552332,73.80580873715317,0,1.1383784286620946,0.7356731489817967,0.525044466939786,0,0,52.11193830863591,477.96179174511724,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1414966053059743,1058.5110093359572,0.0,468.318341485136,1.1599702215412435,1456.9177644996294,0.0,933.0766590761044,0.0,0.0,1.0992227003635737,1621.5910670650305,0.0,769.7102219576193,1.8276670000183608,1964.3455975856473,0.0,1248.7706227592448,0.0,0.0,0,0,0,0,0,0,0,0,0.040503480279313116,0.0012815018827827386,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3523033952599431,-0.3523033952599431,-0.3558532046346243,-0.3558532046346243,-0.41954610003741094,-0.41954610003741094,-0.002291561940188385,-0.002291561940188385,0.7162546008459151,0.7162546008459151,-0.6106801083080521,-0.6065444895831964,-0.6392290477792046,-0.6652247261946569,0.14787141160364597,-0.6416914561521326,-0.6457015011505957,-0.6632157507731057,-0.6964853838114717,-0.010162655542066853,7.58261481517971,7.58261481517971,7.635175820691813,7.635175820691813,8.669616657733798,8.669616657733798,5.000108703653083,5.000108703653083,15.794105547779878,15.794105547779878,12.821987166783316,12.715395136654521,13.578057631158117,14.29725700777162,5.453075313858037,13.644926789810427,13.754386350958598,14.240632321025956,15.200869803273562,5.002137948610226,101.25002804950392,101.25002804950392,0.0,112.50003116611546,0.0,101.25002804950392,112.50003116611546,0,0
+2017/04/17 07:00:00,147.55256088736724,0,948.8871708631573,0,0,0,0.0,0.0,8.02393619021803,0.0,69.33401494192633,0,39.380909295966944,0.28644425424625547,27.09528100255538,0,0,83.0541194743873,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,821.9519091474419,0.0,471.6057266299796,0.0,1441.6355828335359,0.0,0.0,0.0,0.0,0.0,3888.9444930831996,0.0,5156.839462637082,0.0,4741.964755739487,0.0,4675.675631453704,0.0,2273.838605928426,0.0,4204.8367738417355,0.0,5335.748412244393,0.0,5062.861415657382,0.0,4624.055717841796,0.0,2390.415535297242,0,0,0,0,0,0,0,0,0.05051945582380787,0.0015984003672996736,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5547229558730558,-0.5547229558730558,-0.5631522238338335,-0.5631522238338335,-0.6157862891078448,-0.6157862891078448,-0.011771848325775809,-0.011771848325775809,0.2243600003897465,0.2243600003897465,-0.5861694962418554,-0.6031100853257324,-0.6266152160632211,-0.5720861336838073,-0.19760928290891333,-0.6099397530951168,-0.6367337285286884,-0.6458430437507446,-0.5827313998317372,-0.26825923276316094,11.442657781741303,11.442657781741303,11.641746689916573,11.641746689916573,12.954618631721743,12.954618631721743,5.002868618895761,5.002868618895761,6.044298565311351,6.044298565311351,12.20108439495732,12.627440490866292,13.239640902249889,11.856118412473236,5.809729319297446,12.802850597238717,13.510563022885805,13.758262686649516,12.11607564331915,6.494289487730256,147.55256088736724,147.55256088736724,0.0,163.9472898748525,0.0,147.55256088736724,163.9472898748525,0,0
+2017/04/17 08:00:00,162.7563781252241,0,991.2638908451593,0,0,0,0.0,0.0,11.435487997441953,0.0,83.2008179303116,0,39.380909295966944,0.18449410417685413,25.12269359487245,0,0,90.40804017927687,581.4426780529853,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2636.760633488697,0.0,4427.825079597624,0.0,3898.14365504727,0.0,3676.8547368001655,0.0,191.66936138383517,0.0,2577.8832841355356,0.0,4459.029407717122,0.0,3967.1008087782066,0.0,3308.9151607393032,0.0,165.50412262084228,0,0,0,0,0,0,0,0,0.05277562378436865,0.001669783948893017,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5209311419788188,-0.5209311419788188,-0.6139003073727367,-0.6139003073727367,-0.6494795970415603,-0.6494795970415603,0.21828661487009324,0.21828661487009324,-0.23891528153630603,-0.23891528153630603,-0.5363078067838912,-0.5878242625197819,-0.6076278438174217,-0.48288217879017786,-0.3077958061128544,-0.5488002621255327,-0.6153478553766804,-0.6203739874344434,-0.4754127504348501,-0.348058783837655,10.675452409218906,10.675452409218906,12.905499053963567,12.905499053963567,13.85815246770386,13.85815246770386,5.988413354977652,5.988413354977652,6.184526869736246,6.184526869736246,11.018429320961687,12.242182222830507,12.743245907655535,9.870730538086704,6.969026875427062,11.304613788329974,12.94318604357342,13.074747682544668,9.720096292811832,7.520469803466128,162.7563781252241,162.7563781252241,0.0,180.84042013913788,0.0,162.7563781252241,180.84042013913788,0,0
+2017/04/17 09:00:00,181.26192738824477,0,1028.2682745487168,0,0,0,0.0,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,0.14452633079834978,20.830992471985123,0,0,94.26480571734591,561.3547674496576,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1781.500127587914,0.0,3928.2244185776626,0.0,3265.7022868442373,0.0,2609.0704291274387,0.0,10.79412794042062,0.0,1368.42955866475,0.0,3762.2507692527765,0.0,3062.4318615858524,0.0,2242.558564468881,0.0,10.218087523572729,0,0,0,0,0,0,0,0,0.054745764582139755,0.0017321178304330748,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44521814294943207,-0.44521814294943207,-0.5868694379396329,-0.5868694379396329,-0.6032971320617146,-0.6032971320617146,0.43948560397051606,0.43948560397051606,-0.2839863019482868,-0.2839863019482868,-0.4731119080420552,-0.5695215829453657,-0.5874449717188225,-0.4327845656665537,-0.3196626146424461,-0.46771847066394356,-0.5883102983101338,-0.5915035937825801,-0.40414079350391474,-0.3515198092835685,9.13567073164883,9.13567073164883,12.218453667898714,12.218453667898714,12.63221755224096,12.63221755224096,9.029146824554616,9.029146824554616,6.675229945930965,6.675229945930965,9.674180483352757,11.794227010197147,12.232751647387246,8.90641594025125,7.124410515705009,9.567443036873641,12.254276000345982,12.33398806534332,8.403517952603238,7.57108471991765,181.26192738824477,181.26192738824477,0.0,201.40214154249418,0.0,181.26192738824477,201.40214154249418,0,0
+2017/04/17 10:00:00,212.1678530390172,0,1068.2812875378295,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.09929235394135416,18.56209039970482,0,0,66.20457126336152,540.7021336113941,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3895.142486514745,0.0,2278.2599334143924,0.0,2263.818754935964,0.0,2.4912904271944645,0.0,0.0,0.0,3716.3402450902104,0.0,1980.4096430900936,0.0,1750.206102635647,0.0,2.0907881212568564,0,0,0,0,0,0,0,0,0.056876087031585594,0.0017995197477762989,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.30481305091863975,-0.30481305091863975,-0.5126390228933714,-0.5126390228933714,-0.5452880296296774,-0.5452880296296774,0.6726274931028555,0.6726274931028555,-0.2296523299925754,-0.2296523299925754,-0.40130612442845176,-0.5598574548025,-0.5761621696376577,-0.40349706293946375,-0.3314336991733347,-0.3305565729278492,-0.5718082255491087,-0.5751934975345628,-0.3714407080258898,-0.35321010915527556,6.930908245487416,6.930908245487416,10.49474387063428,10.49474387063428,11.22347013962721,11.22347013962721,14.507418900674011,14.507418900674011,6.094257579123706,6.094257579123706,8.355661266616423,11.563561520402757,11.955074262521904,8.392619903648622,7.284436180071637,7.272309171289265,11.849397752508239,11.931492057505963,7.872326554611419,7.595989280270587,212.1678530390172,212.1678530390172,0.0,235.74205893224132,0.0,212.1678530390172,235.74205893224132,0,0
+2017/04/17 11:00:00,228.23736847535784,0,1136.4634739554986,0,0,0,0.0,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,0.08769317209070333,20.77640202951088,0,0,60.50212093111641,561.3512415924921,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2647.0708228987687,0.0,2154.093813428851,0.0,1284.7920595491946,0.0,0.0,0.0,0.0,0.0,2490.693480464107,0.0,1793.4899151663622,0.0,773.9963110737731,0.0,0.0,0,0,0,0,0,0,0,0,0.06050615713946233,0.0019143726356219226,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.24074602036120715,-0.24074602036120715,-0.44783014121180803,-0.44783014121180803,-0.5225367825706947,-0.5225367825706947,0.7343101639934393,0.7343101639934393,-0.13261860958344227,-0.13261860958344227,-0.27013071208805056,-0.5299941676700319,-0.5463816252096031,-0.4116523227550566,-0.31703904138901967,-0.2250973420826617,-0.528090054776675,-0.5349737638739214,-0.3810392940606386,-0.3300266688876782,6.202794033178236,6.202794033178236,9.184676239988804,9.184676239988804,10.710787647729987,10.710787647729987,16.350628706890404,16.350628706890404,5.3643588929106585,5.3643588929106585,6.515274433314005,10.876364658148205,11.248678329189602,8.531995898341876,7.089544004108035,6.05118857566022,10.833858575051977,10.9882678559663,8.02351387026016,7.264998620341061,228.23736847535784,228.23736847535784,0.0,253.59707608373094,0.0,228.23736847535784,253.59707608373094,0,0
+2017/04/17 12:00:00,207.81059860123412,0,1044.1883722646537,0,0,0,0.0,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,0.03379916350565918,18.603123282899805,0,0,24.361391341417498,540.7072220038904,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1700.684316070283,0.0,2480.648100940018,0.0,784.4183750654607,0.0,0.0,0.0,0.0,0.0,1390.612491843273,0.0,1961.751819704375,0.0,233.32507174930976,0.0,0.0,0,0,0,0,0,0,0,0,0.055593362376658746,0.0017589352338272554,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1764151232201491,-0.1764151232201491,-0.42829624187879456,-0.42829624187879456,-0.609490379263232,-0.609490379263232,0.6934002880534227,0.6934002880534227,-0.10025778875920867,-0.10025778875920867,-0.23407935447575817,-0.5039704247298994,-0.5211679818543311,-0.42759750589126355,-0.2660876661811565,-0.17038641024914056,-0.4943579541370135,-0.5009673200597323,-0.39977134241760715,-0.30680868609782797,5.6451319346965505,5.6451319346965505,8.825289684708366,8.825289684708366,12.791246864187698,12.791246864187698,15.109813588250319,15.109813588250319,5.208167074272481,5.208167074272481,6.13695059145337,10.309010297082452,10.68065751545251,8.812737848980717,6.47012456433356,5.601738053629489,10.106850976634519,10.245423346165097,8.329893583437979,6.956370132967521,207.81059860123412,207.81059860123412,0.0,230.90066511248236,0.0,207.81059860123412,230.90066511248236,0,0
+2017/04/17 13:00:00,205.17786688920958,0,978.1554470410971,0,0,0,0.0,0.0,16.735683873587277,0.0,129.2730206906943,0,39.380909295966944,0.020381516034648068,16.33589631047206,0,0,15.602988457665838,518.9230521766298,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1109.1818142934508,0.0,1601.6600182946931,0.0,648.9374159152968,0.0,0.0,0.0,0.0,0.0,739.4977330610977,0.0,1049.9070516859242,0.0,117.51059761715881,0.0,0.0,0,0,0,0,0,0,0,0,0.05207772052672867,0.0016477027762999885,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2099847676447458,-0.2099847676447458,-0.42859661920855596,-0.42859661920855596,-0.6628525047698313,-0.6628525047698313,0.6902592600373794,0.6902592600373794,-0.14053843647991823,-0.14053843647991823,-0.15975101163782135,-0.4642013457983932,-0.515374859378457,-0.4330288585116503,-0.24454190994803646,-0.11725844476092435,-0.4446876043485507,-0.49118010900994963,-0.4053098821829506,-0.29757250673295427,5.914522420826231,5.914522420826231,8.830691992357814,8.830691992357814,14.230412584675818,14.230412584675818,15.017528979856365,15.017528979856365,5.409215379545557,5.409215379545557,5.528881656137969,9.498513528443056,10.554036604142098,8.910856340715739,6.241118018747031,5.284796856443023,9.125752773376647,10.040895815527847,8.423355420049077,6.83994182669025,205.17786688920958,205.17786688920958,0.0,227.9754076546773,0.0,205.17786688920958,227.9754076546773,0,0
+2017/04/17 14:00:00,189.12888110676585,0,935.0453318205291,0,0,0,0.0,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,0.012923087420244467,14.047741875531447,0,0,10.211099611283775,516.6951783149879,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,607.1001396243689,0.0,638.3972698451398,0.0,909.6407748559222,0.0,0.0,0.0,0.0,0.0,195.76897282045076,0.0,186.6345626399297,0.0,469.9365622303343,0.0,187.68104663101698,0,0,0,0,0,0,0,0,0.04978250606043589,0.0015750837904829444,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3076574117073077,-0.3076574117073077,-0.5176510765142524,-0.5176510765142524,-0.7171278071342405,-0.7171278071342405,0.6936022532384492,0.6936022532384492,-0.22115291263947104,-0.22115291263947104,-0.133526194631932,-0.4049773308478352,-0.5180352498647488,-0.4516923065152447,-0.3204744308789298,-0.08772157395557498,-0.37106973056519743,-0.49221274757368977,-0.4255461434916931,-0.3474374480959534,6.967249912736918,6.967249912736918,10.603614946531351,10.603614946531351,15.820697349687094,15.820697349687094,15.115761988774992,15.115761988774992,6.01459541861756,6.01459541861756,5.369366914830906,8.41770662935211,10.612004745259696,9.2576746919068,7.1352584003529245,5.159346719868196,7.866562169786761,10.062280067071441,8.7760089762412,7.511437165291838,189.12888110676585,189.12888110676585,0.0,210.14320122973982,0.0,189.12888110676585,210.14320122973982,0,0
+2017/04/17 15:00:00,182.36905754168043,0,953.3540303494999,0,0,0,0.0,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,0.03647427675989683,14.027623511053944,0,0,28.530844580975543,516.6841318742669,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,454.3608588530385,0.0,668.3881266048503,0.0,1588.333220993332,0.0,56.31344598560122,0.0,0.0,0.0,0.0,0.0,204.45097541840119,0.0,1167.6735636906676,0.0,9.501816049606887,0,0,0,0,0,0,0,0,0.05075727473149335,0.0016059247917653886,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4317342864202086,-0.4317342864202086,-0.43782191913889645,-0.43782191913889645,-0.5899015349805238,-0.5899015349805238,0.6804317681800812,0.6804317681800812,-0.2525003844273754,-0.2525003844273754,-0.19475249435001055,-0.35728491289378916,-0.5227998950171757,-0.47063875273182015,-0.362337851155729,-0.13405205702136078,-0.30565946865668064,-0.4990781901711214,-0.44753881307263577,-0.37710089319472323,8.887354680147993,8.887354680147993,8.998496096536314,8.998496096536314,12.293941643858261,12.293941643858261,14.731548043236216,14.731548043236216,6.32343353693669,6.32343353693669,5.786448631225213,7.65652647345361,10.716588587994337,9.625080488272232,7.732576991344374,5.372284281648021,6.94168693462143,10.205623104056386,9.179195894663351,7.961004568500542,182.36905754168043,182.36905754168043,0.0,202.6322861574227,0.0,182.36905754168043,202.6322861574227,0,0
+2017/04/17 16:00:00,205.23048445677404,0,991.0522384240957,0,0,0,0.0,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,0.04287712038132505,14.102945607904754,0,0,33.70784054053695,495.969815220485,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,770.0850393859249,0.0,893.1578858795087,0.0,1803.5757083208487,0.0,0.0,0.0,0.0,0.0,206.65352615198222,0.0,400.42486536955226,0.0,1387.844018076569,0.0,0.0,0,0,0,0,0,0,0,0,0.05276435525269886,0.0016694274204057996,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5035260028975718,-0.5035260028975718,-0.5083246907638614,-0.5083246907638614,-0.5397192692512075,-0.5397192692512075,0.7082960334502768,0.7082960334502768,-0.204034285552474,-0.204034285552474,-0.25706282046029205,-0.38148003839962374,-0.518209974571285,-0.4735417000001083,-0.36386840785108904,-0.18088634765354983,-0.34489176849570774,-0.49744852998986244,-0.4551901032147543,-0.380336776677146,10.299575652168016,10.299575652168016,10.40189876766702,10.40189876766702,11.095909944875942,11.095909944875942,15.553257299096316,15.553257299096316,5.863335179248082,5.863335179248082,6.37182426385921,8.030550443447723,10.615822596565394,9.682740112876672,7.755827586362116,5.678294806279581,7.474600852229315,10.17141326338131,9.324340023502828,8.012315179797511,205.23048445677404,205.23048445677404,0.0,228.03387161863782,0.0,205.23048445677404,228.03387161863782,0,0
+2017/04/17 17:00:00,212.05572880632556,0,1016.5661915634576,0,0,0,0.0,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,0.015022664175340253,18.534235935162492,0,0,11.669026718006721,543.522582182377,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,779.7244390736082,0.0,1089.4130012154342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,337.8291295340566,0.0,740.8658653247874,0.0,0.0,0,0,0,0,0,0,0,0,0.054122737016193675,0.0017124056725325786,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.536537176158855,-0.536537176158855,-0.38450667119747645,-0.38450667119747645,-0.6046452464772851,-0.6046452464772851,0.7411045980230351,0.7411045980230351,-0.15975496870876046,-0.15975496870876046,-0.26351495641697137,-0.2823818654979747,-0.5023184930044658,-0.4712894431905146,-0.3462206251407432,-0.18074903482975954,-0.2029769347711368,-0.4825048205173093,-0.45909318824494616,-0.36417277674627213,11.023622914913517,11.023622914913517,8.079095284266202,8.079095284266202,12.666692496539298,12.666692496539298,16.563680947274804,16.563680947274804,5.528907886650842,5.528907886650842,6.441752765884544,6.656293089405779,10.273984494669563,9.637973203481465,7.493795209630562,5.677263942377138,5.854394664589535,9.863062714322908,9.39935145453508,7.760463131819023,212.05572880632556,212.05572880632556,0.0,235.61747645147284,0.0,212.05572880632556,235.61747645147284,0,0
+2017/04/17 18:00:00,196.6017718052482,0,1030.5004494349155,0,0,0,0.0,0.0,17.250223901202155,0.0,110.93442390708215,0,39.380909295966944,0.009566778028425383,25.594672720514264,0,0,7.591909076935124,597.0243102074509,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1064.3045055273437,0.0,600.6820577132205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,572.5912746173852,0.0,262.85262967031105,0.0,0.0,0,0,0,0,0,0,0,0,0.054864607226467806,0.0017358779288594575,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5962222852730179,-0.5962222852730179,-0.3920869853088236,-0.3920869853088236,-0.5909971814269047,-0.5909971814269047,0.7296516222090593,0.7296516222090593,-0.15063381522691424,-0.15063381522691424,-0.2932621485716108,-0.23423630888284877,-0.48099916799374404,-0.46957467175397977,-0.24653347198909617,-0.2356316643173797,-0.13396193655222943,-0.4613179356840784,-0.4618102344349031,-0.2921653156908776,12.452587687791393,12.452587687791393,8.202394808571313,8.202394808571313,12.321317312522694,12.321317312522694,16.205697211679336,16.205697211679336,5.470178298439848,5.470178298439848,6.7868410150132235,6.138479310895534,9.832529403307674,9.604036217610329,6.261467287220341,6.152115377482886,5.3717834967406475,9.442401221610723,9.451956202037607,6.773454031431768,196.6017718052482,196.6017718052482,0.0,218.44641311694244,0.0,196.6017718052482,218.44641311694244,0,0
+2017/04/17 19:00:00,195.16137489479135,0,1009.2835396959443,0,0,0,0.0,0.0,23.537332128894946,0.0,101.68988858149199,0,39.380909295966944,0.023527210672031614,27.097742475311204,0,0,19.234254513269956,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.49276243971592,0.0,2053.6633175804113,0.0,1202.5174011435304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1653.6254932329002,0.0,908.0059105015011,0.0,243.3878795545464,0,0,0,0,0,0,0,0,0.05373500323645849,0.0017001380460144966,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6496807603608954,-0.6496807603608954,-0.46049674500139165,-0.46049674500139165,-0.6628529818859521,-0.6628529818859521,0.6612188546249173,0.6612188546249173,-0.16486033867983196,-0.16486033867983196,-0.35358259847748097,-0.35737236074277295,-0.4955644113843112,-0.46781178770310333,-0.2531202533772247,-0.29103059946573623,-0.2914855463727893,-0.4872964314489386,-0.46649812075364966,-0.3111945997110578,13.863694808422721,13.863694808422721,9.426486033119133,9.426486033119133,14.230426004339648,14.230426004339648,14.184521350195965,14.184521350195965,5.563293836032869,5.563293836032869,7.601493812991961,7.657833385400309,10.132004835000359,9.56927914607212,6.32995668504212,6.759658154078281,6.765182866753406,9.960883414238623,9.543465929516401,7.0129212570356145,195.16137489479135,195.16137489479135,0.0,216.8459721053237,0.0,195.16137489479135,216.8459721053237,0,0
+2017/04/17 20:00:00,210.8762452796967,0,936.6645777181625,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.022859330907345522,22.949656782632033,0,0,19.44065467859468,562.3203979141265,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.04117071772467,0.0,1984.7911291541598,0.0,1138.1133213040507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1605.142205879064,0.0,867.0048833777596,0.0,0.0,0,0,0,0,0,0,0,0,0.04986871591141212,0.0015778114100746087,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5412066242541944,-0.5412066242541944,-0.5008996224068024,-0.5008996224068024,-0.5961286198835466,-0.5961286198835466,0.5964877330008082,0.5964877330008082,-0.21456858440361457,-0.21456858440361457,-0.37819400944892045,-0.394883728538054,-0.5040619197934423,-0.47283701061019234,-0.2403721316641476,-0.3221673063258339,-0.3587643191507794,-0.4984632475913293,-0.47420778190668883,-0.314186981273925,11.129848360842814,11.129848360842814,10.243994425942176,10.243994425942176,12.450224100736392,12.450224100736392,12.459288162455024,12.459288162455024,5.954963995673282,5.954963995673282,7.978287865156744,8.248506084695137,10.310953708341316,9.668709870383779,6.199051924937521,7.157969280187444,7.67868009740468,10.19270074426565,9.696021369424543,7.051971753728921,210.8762452796967,210.8762452796967,0.0,234.306939199663,0.0,210.8762452796967,234.306939199663,0,0
+2017/04/17 21:00:00,197.3385616334725,0,980.4492209791172,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.0724905752216321,25.370133607631317,0,0,61.3806408215311,599.6554075446891,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1307.0784690859582,0.0,1769.835422181011,0.0,2014.386191858363,0.0,571.6687750629675,0.0,0.0,0.0,969.7577236713262,0.0,1386.8202134028638,0.0,1747.8841206749116,0.0,202.83441362203038,0,0,0,0,0,0,0,0,0.05219984275020251,0.001651566638324489,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.528292157655352,-0.528292157655352,-0.3930750298882107,-0.3930750298882107,-0.5078885430090775,-0.5078885430090775,0.5245240589409608,0.5245240589409608,-0.2962408287619683,-0.2962408287619683,-0.3968657775783912,-0.42580518548327445,-0.5178562548894519,-0.49186820799467934,-0.2968670522278663,-0.344119526246013,-0.41362951955239013,-0.5165015670592502,-0.49736171474012153,-0.3465306567626352,10.838362731435282,10.838362731435282,8.218646984982172,8.218646984982172,10.392557596580673,10.392557596580673,10.754676038053503,10.754676038053503,6.823452612753329,6.823452612753329,8.281387587966861,8.780637064714043,10.608094955461297,10.055140098555768,6.831197354116696,7.463480864618873,8.566215843557302,10.578549435929133,10.169594055936088,7.4982841882904125,197.3385616334725,197.3385616334725,0.0,219.2650684816361,0.0,197.3385616334725,219.2650684816361,0,0
+2017/04/17 22:00:00,140.1024305395475,0,807.9190418412925,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.1329248907479277,20.78457284102333,0,0,106.00202943361994,542.210426101224,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,506.95143326230567,0.0,2354.1187043617565,0.0,2270.9111526038596,0.0,2935.8326738522896,0.0,139.9435089834977,0.0,54.91703245550586,0.0,2088.301950309533,0.0,1920.4867503100697,0.0,2703.485012633336,0.0,35.90866938089465,0,0,0,0,0,0,0,0,0.04301420821865084,0.001360939564661642,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6282492958556407,-0.6282492958556407,-0.5889215855569006,-0.5889215855569006,-0.687721510029758,-0.687721510029758,0.30632379155178446,0.30632379155178446,-0.5277029472933386,-0.5277029472933386,-0.4392873972065873,-0.46771092331669334,-0.5442379405032519,-0.5246542054715787,-0.3536914758738936,-0.41880870517662105,-0.47071971282732,-0.5499204827032449,-0.5365753198630777,-0.3876004463599689,13.283092473530147,13.283092473530147,12.269500900094144,12.269500900094144,14.943280307739258,14.943280307739258,6.950167969905323,6.950167969905323,10.825236259769753,10.825236259769753,9.025488942241182,9.567294551416964,11.19931358321935,10.757556248400476,7.603103884683094,8.656647758331488,9.626683629378306,11.330606877526606,11.024486821015415,8.129121359784122,140.1024305395475,140.1024305395475,0.0,155.66936726616387,0.0,140.1024305395475,155.66936726616387,0,0
+2017/04/17 23:00:00,90.93369039065587,0,680.955093861444,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.17186215980921424,11.818871969554106,0,0,123.59080388832454,504.1287612043033,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106.55034429728269,0.0,0.0,0.0,0.0,0.0,946.5664057200197,0.0,3173.810814296463,0.0,2531.0097153977645,0.0,3661.98743617416,0.0,24.7196969233449,0.0,525.8693224127605,0.0,2957.5795257116674,0.0,2226.551467772093,0.0,3434.283193666264,0.0,2.9096695459038537,0,0,0,0,0,0,0,0,0.036254553585161,0.0011470688039259872,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.780246538594462,-0.780246538594462,-0.7447704014241041,-0.7447704014241041,-0.8208395219638113,-0.8208395219638113,0.05525484686492966,0.05525484686492966,-0.5827950581340459,-0.5827950581340459,-0.47111581230871663,-0.5007121755908707,-0.5692619002272625,-0.5529107854124568,-0.38463655435367045,-0.4727855592120854,-0.513778264220092,-0.5799686680465834,-0.571829449077135,-0.41682861476018446,17.829540266654234,17.829540266654234,16.679451866686946,16.679451866686946,19.21115091846177,19.21115091846177,5.063209311365753,5.063209311365753,12.117644967746557,12.117644967746557,9.634531113497317,10.240038947755181,11.787975883386324,11.40025891166087,8.081187262543054,9.667686320664899,10.519394871590876,12.048137328961317,11.849910883495326,8.621938349446694,90.93369039065587,90.93369039065587,0.0,101.03743376739541,0.0,90.93369039065587,101.03743376739541,0,0
+2017/04/18 00:00:00,39.34537442771428,0,531.6745134767011,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.578713507444468e-09,9.548053428712388,0,0,0.0,478.43898470788497,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.028306744912356196,0.0008956056775980917,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6755555262872415,-0.6755555262872415,-0.6642714470869848,-0.6642714470869848,-0.7564156922920642,-0.7564156922920642,0.07262400075118945,0.07262400075118945,-0.23416466978012856,-0.23416466978012856,-0.4967846730461756,-0.5208198755329565,-0.7781750450137132,-0.6577412905113804,-0.16860562666896473,-0.4844252715456801,-0.5235077257775822,-0.7575385482467465,-0.6677285773878945,-0.26522932129201926,14.591199471215731,14.591199471215731,14.27036622777581,14.27036622777581,17.05104608367826,17.05104608367826,5.109205312152142,5.109205312152142,6.137781425314472,6.137781425314472,10.157510462469048,10.673007908796166,17.760908939764946,14.087217345952936,5.589210285037893,9.902149726454297,10.732209275197732,17.087182607180196,14.36807488031269,6.460627771804894,39.34537442771428,39.34537442771428,0.0,43.71708269746031,0.0,39.34537442771428,43.71708269746031,0,0
+2017/04/18 01:00:00,23.72205096364183,0,49.37186647086017,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249555399640392,0,0,0.0,13.881513958316036,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0026285947409792365,8.316690532290284e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.7080363116215704,-0.7080363116215704,-0.7060700684877829,-0.7060700684877829,-0.8091737048265151,-0.8091737048265151,-0.025268876351637017,-0.025268876351637017,-0.11580618256488891,-0.11580618256488891,-0.5827339642952114,-0.6034676460414461,-0.840944731210667,-0.739200191763671,-0.09862606050400335,-0.5729801583062956,-0.6100920445307412,-0.848368229558609,-0.7600359687651236,-0.26244718481862606,15.545443408009788,15.545443408009788,15.486382158870029,15.486382158870029,18.80696452391524,18.80696452391524,5.013217981816027,5.013217981816027,5.277781888013308,5.277781888013308,12.116138859877495,12.63657370001799,19.921150819308508,16.50376482575261,5.201443337916984,11.877761360898916,12.806785055712282,20.1875773085939,17.16774963364331,6.430059228621374,23.72205096364183,23.72205096364183,0.0,26.35783440404648,0.0,23.72205096364183,26.35783440404648,0,0
+2017/04/18 02:00:00,28.344509993195555,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251469067226611,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6872138512846467,-0.6872138512846467,-0.6879605281426054,-0.6879605281426054,-0.7942848781283774,-0.7942848781283774,-0.036109756581427156,-0.036109756581427156,-0.0453133309786529,-0.0453133309786529,-0.5939514347210154,-0.6134834869926192,-0.8562129805206339,-0.7536389768363252,-0.07569214141328402,-0.6036476633141592,-0.6395854266729608,-0.8863171161550345,-0.7982076168777462,-0.24586873212748667,14.928460805100968,14.928460805100968,14.950261548296595,14.950261548296595,18.299454783913262,18.299454783913262,5.026993262584838,5.026993262584838,5.042508210960364,5.042508210960364,12.395391492602542,12.894663975797627,20.471614583556445,16.96191553970246,5.118629808705464,12.64117399928601,13.587719180349978,21.585223434631857,18.432257693791883,6.2546566171770905,28.344509993195555,28.344509993195555,0.0,31.493899992439506,0.0,28.344509993195555,31.493899992439506,0,0
+2017/04/18 03:00:00,23.729136417267984,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5320409935901887,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6747838682469375,-0.6747838682469375,-0.6776505331105257,-0.6776505331105257,-0.7863087581787815,-0.7863087581787815,-0.05499644407549054,-0.05499644407549054,-0.009132989050523663,-0.009132989050523663,-0.5941185230294294,-0.6113696382696808,-0.8622748175500118,-0.7558773341298274,-0.0535283894922861,-0.6236922109353733,-0.6579165109002332,-0.9145417401914839,-0.8206266258407304,-0.22728025552274497,14.569083811109763,14.569083811109763,14.651372152246623,14.651372152246623,18.031438148652526,18.031438148652526,5.062619409214378,5.062619409214378,5.0017266659983335,5.0017266659983335,12.399592338729576,12.839831409459379,20.692846312511833,17.03373939846162,5.059320527178215,13.162204692230105,14.09210756535147,22.662992593948715,19.20372337213199,6.0717202140018856,23.729136417267984,23.729136417267984,0.0,26.36570713029776,0.0,23.729136417267984,26.36570713029776,0,0
+2017/04/18 04:00:00,41.55153341811222,0,332.0867616782412,0,0,0,0.0,0.0032115502372004508,4.633261998087618,9.319298099999997,25.555573451546493,0,0.839828970547944,0.629610411238905,0.5707489364540481,0,0,243.36088039688084,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,605.9984088750045,0.0,396.89436514557985,1.4027929761816342,2001.376668926808,0.188981882711649,871.7338603091753,0.0,0.0,0.0,647.1976396628261,0.0,443.0289128529199,1.4463344859151068,1969.498573466499,0.17344089239206065,922.6529209114226,0.0,0.0,0,0,0,0,0,0,0,0,0.01768054517062785,0.0005594001248420396,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.613805407601956,-0.613805407601956,-0.6188218364254251,-0.6188218364254251,-0.7262486479516442,-0.7262486479516442,-0.020548348123444124,-0.020548348123444124,0.13391818706705316,0.13391818706705316,-0.5340889129202055,-0.5482629575806282,-0.64981350952498,-0.6108385547479493,-0.016259142004723545,-0.5620828110015852,-0.5883984933063068,-0.6877585400593819,-0.6587481907797527,-0.20466279114746155,12.903031509661375,12.903031509661375,13.034002317350911,13.034002317350911,16.100417215391886,16.100417215391886,5.008740633324621,5.008740633324621,5.371540509718969,5.371540509718969,10.968304722668947,11.292165719147405,13.867353200916156,12.826085752466525,5.005472442929914,11.616317822245861,12.256471609784214,14.944361719107576,14.115337031580083,5.868671723800446,41.55153341811222,41.55153341811222,0.0,46.168370464569136,0.0,41.55153341811222,46.168370464569136,0,0
+2017/04/18 05:00:00,73.31108006339919,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5250370334433184,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4127016931393548,-0.4127016931393548,-0.4230183214985918,-0.4230183214985918,-0.5215462254083206,-0.5215462254083206,0.1454523256474608,0.1454523256474608,0.45657945909383235,0.45657945909383235,-0.5771168379436694,-0.5965201589225235,-0.7660059971131192,-0.7046067078813542,0.09940975795088033,-0.6041227555451183,-0.6308311636072802,-0.7829453911127844,-0.7341318877078946,-0.08211940539912063,8.550136812811829,8.550136812811829,8.73099759192381,8.73099759192381,10.688975330087118,10.688975330087118,5.438358880084365,5.438358880084365,9.350966188739278,9.350966188739278,11.978355379263533,12.460106872437606,17.361423445548283,15.442534546924293,5.20465886564989,12.653321624123805,13.351982665826085,17.919230673261694,16.34506520837006,5.139637955945474,73.31108006339919,73.31108006339919,0.0,81.4567556259991,0.0,73.31108006339919,81.4567556259991,0,0
+2017/04/18 06:00:00,99.37067617918439,0,708.4468644206205,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.0,2.5204258824376744e-09,0.5249725282709681,0,0,0.0,477.75957308908363,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.037718235813069295,0.0011933786893463302,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.24833251311506288,-0.24833251311506288,-0.26357136792216185,-0.26357136792216185,-0.35287684527892554,-0.35287684527892554,0.2779096643972102,0.2779096643972102,0.7078186417845388,0.7078186417845388,-0.5205348562808134,-0.5395288671375501,-0.7448557190853152,-0.6648600584345816,0.20550599537360204,-0.545289677985621,-0.5762096455085608,-0.7713760751065899,-0.7051252683459394,0.03304115994629414,6.279992704664423,6.279992704664423,6.4423718827108445,6.4423718827108445,7.591069412748766,7.591069412748766,6.6040817709186825,6.6040817709186825,15.538896917719171,15.538896917719171,10.666748539717403,11.091572276061655,16.682153173854047,14.286965549949443,5.875857202757999,11.223508096452576,11.956231103386912,17.53693411761354,15.458061938076852,5.022600221412219,99.37067617918439,99.37067617918439,0.0,110.41186242131599,0.0,99.37067617918439,110.41186242131599,0,0
+2017/04/18 07:00:00,148.0642425435378,0,899.721524083987,0,0,0,0.0,0.0,8.73110472000432,0.0,69.33401494192633,0,39.380909295966944,0.11589651667342019,27.070341866512518,0,0,33.888472695217075,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1313.524358118863,0.0,2629.521851723054,0.0,2512.354384666538,0.0,2821.6328116882596,0.0,1720.6929388933495,0.0,1197.6303826146648,0.0,2558.0144308600184,0.0,2322.681259160975,0.0,2694.8314030333236,0.0,2456.7812769210304,0,0,0,0,0,0,0,0,0.047901840371962504,0.0015155808390317706,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3977130484075626,-0.3977130484075626,-0.37250344341820096,-0.37250344341820096,-0.47155594323140515,-0.47155594323140515,0.2004409665421337,0.2004409665421337,0.4843325110411179,0.4843325110411179,-0.47103973141529204,-0.4890069535495186,-0.6002456701367475,-0.5603380313775911,-0.026291835311053113,-0.49058791176393457,-0.519358259230153,-0.6248459686891162,-0.5943797074522972,-0.1419125712357574,8.295494774723153,8.295494774723153,7.888872215074784,7.888872215074784,9.643258876443866,9.643258876443866,5.8331421784963595,5.8331421784963595,9.900258110402802,9.900258110402802,9.633023281566253,9.996043735023292,12.554474724665468,11.574936321035509,5.01430988436536,10.028653156172311,10.640946248844017,13.192725739870468,12.406161327054946,5.417263930224607,148.0642425435378,148.0642425435378,0.0,164.51582504837532,0.0,148.0642425435378,164.51582504837532,0,0
+2017/04/18 08:00:00,162.89702591229636,0,928.3958298411508,0,0,0,0.0,0.0,11.577525286619291,0.0,83.2008179303116,0,39.380909295966944,0.05990635212091155,25.2458918448233,0,0,27.576671386170915,581.4059858420828,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,530.2395904411056,0.0,2077.1734109391714,0.0,1820.7227069808716,0.0,2192.1576152578004,0.0,579.1744152198823,0.0,413.43249311031104,0.0,2020.54147327637,0.0,1753.4292347904143,0.0,2012.704313214448,0.0,634.4646191292909,0,0,0,0,0,0,0,0,0.049428481649723334,0.0015638827049033698,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46072374315570075,-0.46072374315570075,-0.44092241530991244,-0.44092241530991244,-0.5420344011924907,-0.5420344011924907,0.28459316086604086,0.28459316086604086,-0.02615396884409592,-0.02615396884409592,-0.4368829920994222,-0.4628661493637997,-0.5334818529666068,-0.4911549530204632,-0.2261404405724411,-0.4489349151551081,-0.4853131484142954,-0.5439541052098854,-0.5104379016869076,-0.2812828111818539,9.430882495059066,9.430882495059066,9.055713481540579,9.055713481540579,11.148778063628228,11.148778063628228,6.6824208982557,6.6824208982557,5.014160199790339,5.014160199790339,8.98125036326796,9.47248555857064,10.954628448667222,10.04037545075407,6.060974629712518,9.205491960655635,9.920274518973784,11.19279235707252,10.447274822547328,6.643383842238208,162.89702591229636,162.89702591229636,0.0,180.99669545810707,0.0,162.89702591229636,180.99669545810707,0,0
+2017/04/18 09:00:00,181.12645398115538,0,966.9191509274331,0,0,0,0.0,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,0.06067215802832312,20.779373237665776,0,0,32.99118128458551,561.2792682611341,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1961.132316381665,0.0,1424.7172765973198,0.0,1701.7777971668957,0.0,194.89145742700128,0.0,0.0,0.0,1889.596585204541,0.0,1233.7874386850312,0.0,1604.9086115065227,0.0,99.79882357176969,0,0,0,0,0,0,0,0,0.051479491798837755,0.001628775236349342,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.36930697419052144,-0.36930697419052144,-0.46162742827837155,-0.46162742827837155,-0.5441863321206722,-0.5441863321206722,0.5106808276382183,0.5106808276382183,-0.21036417667186358,-0.21036417667186358,-0.37810943319955637,-0.4482852574061334,-0.5059381066354942,-0.42060885859193486,-0.2619582629469835,-0.3658314914769635,-0.45993669402401877,-0.5073161204288582,-0.41057001840872165,-0.29921538972891176,7.839251992255697,7.839251992255697,9.44840691618758,9.44840691618758,11.198127600898786,11.198127600898786,10.452503440714509,10.452503440714509,5.917836432900032,5.917836432900032,7.976948807385682,9.193245004022316,10.350884857334961,8.688348891923368,6.424720894998472,7.785794762265439,9.415648550487916,10.380310247574116,8.513335058266492,6.860387742305562,181.12645398115538,181.12645398115538,0.0,201.2516155346171,0.0,181.12645398115538,201.2516155346171,0,0
+2017/04/18 10:00:00,212.15240571845206,0,1027.9889749675842,0,0,0,0.0,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.04408320898985882,18.601852224091243,0,0,26.00395535421485,540.6104369502956,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1832.6174643697536,0.0,614.8382430608272,0.0,1756.474456914003,0.0,46.280717744898595,0.0,0.0,0.0,1738.7231754318586,0.0,392.83469692809905,0.0,1548.860366034227,0.0,20.317526953898692,0,0,0,0,0,0,0,0,0.0547308944655612,0.0017316473503098553,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44190446106062375,-0.44190446106062375,-0.3821165951691858,-0.3821165951691858,-0.38611112165364,-0.38611112165364,0.5892671507885882,0.5892671507885882,-0.16916166124414694,-0.16916166124414694,-0.3963057496660954,-0.44431678879749653,-0.49023150570869745,-0.44939474275477764,-0.28470487313987713,-0.37059403690377213,-0.4524630171903549,-0.48772410139205774,-0.4479451947775033,-0.31359824270981207,9.073922560026958,9.073922560026958,8.04072783999095,8.04072783999095,8.104988075378714,8.104988075378714,12.278114824050164,12.278114824050164,5.593107772892907,5.593107772892907,8.27207989223848,9.118827883633656,10.021292373079277,9.21417132510932,6.683746322489,7.8591792523230595,9.272318628979889,9.96966246275558,9.186841585810598,7.044258772003786,212.15240571845206,212.15240571845206,0.0,235.7248952427245,0.0,212.15240571845206,235.7248952427245,0,0
+2017/04/18 11:00:00,228.18077577185147,0,1063.8041204531226,0,0,0,0.0,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,0.011362804001286616,20.79613969409397,0,0,7.0872396625462395,542.1067693586864,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,744.9568137821136,0.0,276.08540504905125,0.0,736.5956157964927,0.0,0.0,0.0,0.0,0.0,651.7138627682644,0.0,49.517061140987835,0.0,550.8734632108133,0.0,0.0,0,0,0,0,0,0,0,0,0.05663771933972829,0.0017919779601619215,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5336632454034622,-0.5336632454034622,-0.3366571437843297,-0.3366571437843297,-0.4735512754876402,-0.4735512754876402,0.7521153957612936,0.7521153957612936,-0.07186027433382584,-0.07186027433382584,-0.29916690121898887,-0.418013784908736,-0.4573853104959293,-0.4256006568979287,-0.1991739327111025,-0.29317944375867316,-0.4194930799735279,-0.44775977989244087,-0.4194463896001504,-0.2579209662653603,10.958713313128001,10.958713313128001,7.357330950750963,7.357330950750963,9.682930906591508,9.682930906591508,16.91314990145004,16.91314990145004,5.1069200188632635,5.1069200188632635,6.859782661852975,8.642693244862386,9.36644791549503,8.776982682878781,5.822624667840486,6.785829820869694,8.668683391823109,9.183352297424804,8.667861641737233,6.381023878460795,228.18077577185147,228.18077577185147,0.0,253.53419530205719,0.0,228.18077577185147,253.53419530205719,0,0
+2017/04/18 12:00:00,206.03971064043918,0,1019.8142637940329,0,0,0,0.11414134203234381,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,0.00016036214996623007,18.59294725248098,0,0,0.1020229074149565,540.5924819672721,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,442.23914393358973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05429566678761827,0.0017178770499584584,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4205415271538795,-0.4205415271538795,-0.32643568191958167,-0.32643568191958167,-0.46044921054185906,-0.46044921054185906,0.8625540676875422,0.8625540676875422,0.033382865844669186,0.033382865844669186,-0.1839242514059101,-0.3453474598574287,-0.36433059636012993,-0.35711724828868663,-0.060913422005362844,-0.12841676993687476,-0.33001262848956947,-0.31817155039328804,-0.33407696720885977,-0.12022896538908205,8.68716066770898,8.68716066770898,7.215771293528121,7.215771293528121,9.425565674696202,9.425565674696202,20.703074440675465,20.703074440675465,5.023070117152201,5.023070117152201,5.701302973896588,7.481174522166086,7.762868282044494,7.654021628948186,5.076820843335227,5.341619731672239,7.2648050811684755,7.104558940147243,7.321179041062891,5.299418538951599,206.03971064043918,206.03971064043918,0.0,228.9330118227102,0.0,206.03971064043918,228.9330118227102,0,0
+2017/04/18 13:00:00,203.15023649552552,0,982.7676306457053,0,0,0,0.13626880528021476,0.0,16.903073550514318,0.0,129.2730206906943,0,39.380909295966944,0.00022276937948832493,16.312749649538688,0,0,0.14183901957316927,538.9963852193306,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,528.9624913400098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052323276598113144,0.001655471999231892,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4472124858466008,-0.4472124858466008,-0.30388468465870405,-0.30388468465870405,-0.47763044309381697,-0.47763044309381697,0.8939439571817446,0.8939439571817446,0.05616925912968435,0.05616925912968435,-0.18249043831502965,-0.28501677629578503,-0.3272234555591373,-0.33787755607941444,-0.06294481642955964,-0.14159619813512367,-0.24864069299181063,-0.30522211890227163,-0.3042371046590702,-0.1200155538548321,9.173061494882958,9.173061494882958,6.919120833293093,6.919120833293093,9.764568809587374,9.764568809587374,21.873263209678356,21.873263209678356,5.065319021697462,5.065319021697462,5.690395688222196,6.687449724461729,7.226523714514485,7.374529118501073,5.082030980765083,5.415403913316467,6.283179797342427,6.936113729087253,6.923591196668696,5.298355845507899,203.15023649552552,203.15023649552552,0.0,225.72248499502834,0.0,203.15023649552552,225.72248499502834,0,0
+2017/04/18 14:00:00,188.24521952651656,0,904.1278416595179,0,0,0,0.15157122601670345,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,0.0003068018189438498,14.050508749100512,0,0,0.19556329095331942,495.793224474307,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,589.1501352134328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.83218760632869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04813643598347257,0.0015230032806533185,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.35005023828472004,-0.35005023828472004,-0.35934060355195213,-0.35934060355195213,-0.4590584444725732,-0.4590584444725732,0.9145626674176882,0.9145626674176882,0.0574596343303247,0.0574596343303247,-0.06456261041782191,-0.20078120417829287,-0.2852656841282567,-0.3464608553080858,-0.13154240198698508,0.01047211324641971,-0.12612309443944797,-0.2683764242320838,-0.3032383171168088,-0.12183440076379318,7.54953110561307,7.54953110561307,7.687334985474294,7.687334985474294,9.398680838505129,9.398680838505129,22.66380368378954,22.66380368378954,5.068355087888321,5.068355087888321,5.086302649770573,5.835977889693368,6.690408093012394,7.497273169660161,5.358464816904942,5.002270134742858,5.329516772610745,6.495599228462353,6.91093546852683,5.307473563706083,188.24521952651656,188.24521952651656,0.0,209.16135502946284,0.0,188.24521952651656,209.16135502946284,0,0
+2017/04/18 15:00:00,180.63658609998242,0,924.7532157587563,0,0,0,0.3781427845459099,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,7.504648691933069e-05,14.06017025020872,0,0,0.04787409840603451,516.5662877660928,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1495.7409406415438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04923454617786812,0.0015577467217580462,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.19266486993788853,-0.19266486993788853,-0.021286888518102332,-0.021286888518102332,-0.30520857177831223,-0.30520857177831223,0.9250524511517527,0.9250524511517527,0.2014343837951582,0.2014343837951582,-0.10466033876551194,-0.08506891078805758,-0.2801931039245746,-0.3611469039974945,-0.16214169033794584,-0.016367482988210974,-0.015726252870592556,-0.22873552592290539,-0.33308930330835207,-0.1396137946615489,5.769651799215396,5.769651799215396,5.009380242069625,5.009380242069625,6.9359412255059425,6.9359412255059425,23.072580381110953,23.072580381110953,5.841435386267108,5.841435386267108,5.226859751034482,5.149852218590482,6.630634691258749,7.71455441232888,5.544847820493089,5.00554561681993,5.005119601642093,6.085518934687741,7.307415275258663,5.403843816618107,180.63658609998242,180.63658609998242,0.0,200.70731788886934,0.0,180.63658609998242,200.70731788886934,0,0
+2017/04/18 16:00:00,202.34026174440547,0,977.9297618797513,0,0,0,0.4844637641770587,0.0,16.735683873587277,0.0,131.64086955684016,0,39.380909295966944,1.115667865156992e-05,14.098324097155302,0,0,0.00668932200436549,516.5484898946733,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1931.2171837193218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05206570488157211,0.0016473226096628307,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.12455818734763757,-0.12455818734763757,0.31507506167580374,0.31507506167580374,-0.1755625210311286,-0.1755625210311286,0.9319050697703505,0.9319050697703505,0.38109946290062274,0.38109946290062274,-0.1524905949617244,-0.09314888033143791,-0.28552016914748474,-0.35789590331889076,-0.16771062439092801,-0.06142706603646124,0.04777546869907608,-0.23718122151773377,-0.28688138392142437,-0.18798518875912237,5.321384803018361,5.321384803018361,7.063634142110601,7.063634142110601,5.638902947430921,5.638902947430921,23.342002209856503,23.342002209856503,8.024473989284019,8.024473989284019,5.481852847156915,5.179681987602137,6.693435451954571,7.6656645607369,5.582963906095927,5.078122087576048,5.047253635176645,6.167354141490023,6.709674904062894,5.732661240986673,202.34026174440547,202.34026174440547,0.0,224.8225130493394,0.0,202.34026174440547,224.8225130493394,0,0
+2017/04/18 17:00:00,209.28179904357063,0,1001.9854666461129,0,0,0,0.5299177344150652,0.0,16.90307355543791,0.0,133.89528835348938,0,39.380909295966944,2.263459730694906e-05,18.572587469664004,0,0,0.014441541003178427,540.5964424420359,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2119.8490800437266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0533464484215541,0.00168784444251597,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.09015483447841188,-0.09015483447841188,0.44321242310401665,0.44321242310401665,-0.08248521235682368,-0.08248521235682368,0.9421609896831241,0.9421609896831241,0.4765223371939692,0.4765223371939692,-0.06812277822495458,-0.016944228963535483,-0.20891500562326598,-0.2907519539327247,-0.09021321289491682,0.017902893856699513,0.10007271314889234,-0.13586828989814412,-0.24318566929968652,-0.1219121736443951,5.168312629089627,5.168312629089627,9.098239142516718,9.098239142516718,5.140885160067398,5.140885160067398,23.748727300560077,23.748727300560077,9.742320887340526,9.742320887340526,5.09608505400449,5.005943332933654,5.905210852321986,6.756278698755594,5.168530755280884,5.006634887475215,5.207398890545221,5.3824488088963705,6.227355678423109,5.307866497544865,209.28179904357063,209.28179904357063,0.0,232.53533227063403,0.0,209.28179904357063,232.53533227063403,0,0
+2017/04/18 18:00:00,194.1397361502743,0,1007.3958563660261,0,0,0,0.2791194509789931,0.0,17.644803712327896,0.0,110.93442390708215,0,39.380909295966944,0.00015899733430733965,25.213925746093054,0,0,0.10092247398913334,581.4107037415074,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1093.7771438070145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05363450157775401,0.0016969582435885221,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.30916933697848,-0.30916933697848,0.24942339989231616,0.24942339989231616,-0.20238644889041282,-0.20238644889041282,0.9243087303379883,0.9243087303379883,0.3296491084825528,0.3296491084825528,-0.1685961526922058,0.054294680671348176,-0.2305764375381897,-0.2782519937503752,-0.1700968002988465,-0.11327784997113935,0.13850099738375712,-0.19548927255576556,-0.2559780436834845,-0.0871820628863019,6.986706739267987,6.986706739267987,6.291292232967834,6.291292232967834,5.849422116666446,5.849422116666446,23.043452802077212,23.043452802077212,7.259797069282342,7.259797069282342,5.589143989542194,5.061031328140501,6.103101516476187,6.608048527526989,5.599691648524683,5.265778167650623,5.3974263666952425,5.792420171924832,6.360239421228371,5.157392036431148,194.1397361502743,194.1397361502743,0.0,215.7108179447492,0.0,194.1397361502743,215.7108179447492,0,0
+2017/04/18 19:00:00,189.76198337159786,0,990.2484928097568,0,0,0,0.08660800229735766,0.0,20.280817825003037,0.0,101.68988858149199,0,39.380909295966944,0.000311762079395742,27.097742475311204,0,0,0.1992076270825008,599.655407544689,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,334.12830452647677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05272156324085174,0.0016680735109794497,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48828824776712837,-0.48828824776712837,-0.24367915069438656,-0.24367915069438656,-0.36357647940081556,-0.36357647940081556,0.9079350481920632,0.9079350481920632,0.15336108337556362,0.15336108337556362,-0.22586958010190916,-0.02887050749019256,-0.3005511630530154,-0.3393136884197389,-0.1175287998818354,-0.1880515532394831,-0.03244890427285773,-0.2724491464078085,-0.28169546920502164,-0.08889313109417066,9.981255125170051,9.981255125170051,6.232354297608097,6.232354297608097,7.751385217144332,7.751385217144332,22.407816369947355,22.407816369947355,5.487375505437512,5.487375505437512,6.058429108584534,5.017254640965305,6.8770957313826955,7.394848247348534,5.286112447987108,5.733179423353533,5.021797236680669,6.541475731165818,6.648224856745529,5.163632929077963,189.76198337159786,189.76198337159786,0.0,210.8466481906643,0.0,189.76198337159786,210.8466481906643,0,0
+2017/04/18 20:00:00,208.6341774281731,0,917.446679578103,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.00046756232885425674,23.017964167989756,0,0,0.2991001294120228,562.2440543232498,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.083965863581334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04884554077961008,0.0015454388621162923,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5737337945129438,-0.5737337945129438,-0.433042148881355,-0.433042148881355,-0.47545847448044176,-0.47545847448044176,0.8860876272502201,0.8860876272502201,0.032767563923337295,0.032767563923337295,-0.2676763109568438,-0.13357267386699578,-0.3438918279016096,-0.36899092610236256,-0.08752862641456935,-0.24270653046535834,-0.09254008271160816,-0.30254642317910224,-0.3253933677907687,-0.11974791565647334,11.896032658978811,11.896032658978811,8.911097987249136,8.911097987249136,9.721011078972495,9.721011078972495,21.576593262899607,21.576593262899607,5.0222274725765885,5.0222274725765885,6.487783304565411,5.369624307820359,7.460206935653133,7.834369500912956,5.158646271432346,6.222512126997671,5.17734005895997,6.902193154358926,7.201585066795673,5.297025802935195,208.6341774281731,208.6341774281731,0.0,231.8157526979701,0.0,208.6341774281731,231.8157526979701,0,0
+2017/04/18 21:00:00,196.7492186580864,0,924.663713679968,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.008636080353083256,25.33492729889293,0,0,5.59513352238193,599.655407544689,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.7457114853738,0.0,1165.5760713325765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,925.8803592144432,0.0,0.0,0,0,0,0,0,0,0,0,0.04922978102089865,0.0015575959555131206,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.489692815839239,-0.489692815839239,-0.3980653970249036,-0.3980653970249036,-0.5693685422883599,-0.5693685422883599,0.8101482589914487,0.8101482589914487,-0.07838157641056817,-0.07838157641056817,-0.30897177809251125,-0.20554698368694777,-0.38069152749400237,-0.3986326889850803,-0.1721208915219671,-0.28462484393492277,-0.1864433018443391,-0.3502013326466381,-0.39038085523019594,-0.21843165283185623,10.01017732813689,10.01017732813689,8.301370471470747,8.301370471470747,11.790542635339506,11.790542635339506,18.840510426906462,18.840510426906462,5.127212053087888,5.127212053087888,6.984158877690277,5.8762072484454535,8.01796755915771,8.310841679050654,5.614067247690883,6.682796752483711,5.720673784371911,7.551742909936792,8.174429202048415,5.989729928627142,196.7492186580864,196.7492186580864,0.0,218.61024295342932,0.0,196.7492186580864,218.61024295342932,0,0
+2017/04/18 22:00:00,140.03256724563911,0,719.0417260694534,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.026112635699566955,20.821521802163314,0,0,17.22291485072091,542.112224912284,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,119.74849961889569,0.0,319.1354685497899,0.0,1665.0286447488677,0.0,321.87797146155236,0.0,0.0,0.0,65.66027025379634,0.0,119.35910072422067,0.0,1536.9473823585122,0.0,135.75858855371263,0,0,0,0,0,0,0,0,0.038282314094937805,0.0012112257329896525,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5078616998306745,-0.5078616998306745,-0.4208908542531807,-0.4208908542531807,-0.5716365204688643,-0.5716365204688643,0.6346708703530746,0.6346708703530746,-0.31239908199131244,-0.31239908199131244,-0.2941545484268243,-0.28029294032713864,-0.4021215049227719,-0.4218410543079372,-0.24267229768886267,-0.2848725424361201,-0.28152410969401026,-0.39680483846191156,-0.42665551296200493,-0.27622608757325584,10.391982952928913,10.391982952928913,8.693327491771342,8.693327491771342,11.845247078453752,11.845247078453752,13.454969759213455,13.454969759213455,7.028594127641853,7.028594127641853,6.797770362731711,6.631800654035757,8.369391807749167,8.710128266012134,6.222166441457219,6.685736644247598,6.646213714978913,8.280374126038652,8.795849398621101,6.584645159261157,140.03256724563911,140.03256724563911,0.0,155.59174138404344,0.0,140.03256724563911,155.59174138404344,0,0
+2017/04/18 23:00:00,90.81426858915513,0,602.0300065249007,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.08471569189213739,11.786596635970433,0,0,55.96208382880834,492.83239392727614,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1161.340371542554,0.0,810.9255905884622,0.0,2493.8625366326005,0.0,31.376249953363214,0.0,0.0,0.0,1189.3848123867324,0.0,732.281814625216,0.0,2439.298135633455,0.0,10.84566948025627,0,0,0,0,0,0,0,0,0.03205252347502508,0.0010141195002978927,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6724686077877854,-0.6724686077877854,-0.5213027339278175,-0.5213027339278175,-0.6531088352224642,-0.6531088352224642,0.3999190538703233,0.3999190538703233,-0.37884465033413056,-0.37884465033413056,-0.3597732231598097,-0.3317293153109904,-0.42723402626326407,-0.4514010147137635,-0.2853253628778053,-0.3667061103136957,-0.34946569128064736,-0.43375983226591436,-0.4648815268030607,-0.31270881308402865,14.502883288565343,14.502883288565343,10.683620088668022,10.683620088668022,13.958412893167377,13.958412893167377,8.332369149987372,8.332369149987372,7.988599377178403,7.988599377178403,7.693841545744789,7.288530677777729,8.80621671961498,9.25214663831835,6.691117787293464,7.7991990094378,7.540983321919569,8.924158225867771,9.511802323005071,7.032634314681445,90.81426858915513,90.81426858915513,0.0,100.90474287683904,0.0,90.81426858915513,100.90474287683904,0,0
+2017/04/19 00:00:00,39.34712860568999,0,542.9440232062326,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.578720336867159e-09,9.549807606688086,0,0,0.0,489.7084944374164,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02890674195775744,0.0009145891658821463,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5175893475922854,-0.5175893475922854,-0.40540329953429594,-0.40540329953429594,-0.5274894914101971,-0.5274894914101971,0.41417686934557246,0.41417686934557246,-0.013425589520167314,-0.013425589520167314,-0.34213754441184263,-0.2123821657474563,-0.4741694268629562,-0.48658368887658304,-0.04729026978852695,-0.36360528035888245,-0.24601807365496686,-0.48106932466506613,-0.507791601788281,-0.1178328431223989,10.602267470268984,10.602267470268984,8.424943079621983,8.424943079621983,10.820484582902282,10.820484582902282,8.575718595592619,8.575718595592619,5.003731221932739,5.003731221932739,7.435057094875518,5.935564170832919,9.69525607481387,9.94627004441611,5.046298614726467,7.7518233291749965,6.2561850961671155,9.833949946467712,10.390482480403804,5.287595599719353,39.34712860568999,39.34712860568999,0.0,43.71903178409999,0.0,39.34712860568999,43.71903178409999,0,0
+2017/04/19 01:00:00,23.722181985877558,0,46.1487472545885,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250865621997665,0,0,0.0,10.658394742044361,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002456993486519042,7.773756124772381e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5321181058514253,-0.5321181058514253,-0.3909445077829166,-0.3909445077829166,-0.5500650888884964,-0.5500650888884964,0.3292293962520475,0.3292293962520475,0.11287275497798566,0.11287275497798566,-0.4169276253682423,-0.2651896235380671,-0.5542601560720335,-0.5644097936588075,0.03432493706004667,-0.44230162971533066,-0.2965513675858601,-0.5716453142573111,-0.595959426105627,-0.07493259124023299,10.923963194015286,10.923963194015286,8.183654411444294,8.183654411444294,11.333966217752575,11.333966217752575,7.25402190208824,7.25402190208824,5.263879588563682,5.263879588563682,8.623669934620821,6.46018930346159,11.431816240808658,11.671713077287492,5.024390646259448,9.081298627236166,6.827291091877285,11.845459622042128,12.445955567513437,5.1162603245469,23.722181985877558,23.722181985877558,0.0,26.357979984308397,0.0,23.722181985877558,26.357979984308397,0,0
+2017/04/19 02:00:00,28.397166049046465,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5778029625735689,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5106245307184266,-0.5106245307184266,-0.3622960325990276,-0.3622960325990276,-0.5328542248765337,-0.5328542248765337,0.31409658249039335,0.31409658249039335,0.18324496639235274,0.18324496639235274,-0.42986969270098807,-0.26685253173813567,-0.5747232803637365,-0.5827275996372575,0.059603535932721434,-0.47868265534316556,-0.3188174347893,-0.6144264271954344,-0.6378039581730632,-0.05943050385502264,10.45129150644388,10.45129150644388,7.73194312860808,7.73194312860808,10.940505582059458,10.940505582059458,7.050786498029822,7.050786498029822,5.6961248238728786,5.6961248238728786,8.853631297702776,6.47861323603766,11.92005935472595,12.11598196529539,5.073551927239819,9.785743549827473,7.1131464831476166,12.91918609225327,13.539478038313305,5.073125429804193,28.397166049046465,28.397166049046465,0.0,31.55240672116274,0.0,28.397166049046465,31.55240672116274,0,0
+2017/04/19 03:00:00,23.721905621746764,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.524810198068969,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5267633616935473,-0.5267633616935473,-0.37688048905603666,-0.37688048905603666,-0.5512286215736967,-0.5512286215736967,0.2600160099736617,0.2600160099736617,0.2398573544360068,0.2398573544360068,-0.47615955820577416,-0.30672649748331404,-0.6256333613991597,-0.6309805695179473,0.09303711345122163,-0.5377077780229729,-0.3700345283100114,-0.6775801424265397,-0.6996134094654222,-0.04998276721277569,10.804335197659924,10.804335197659924,7.957525928119395,7.957525928119395,11.361029185569677,11.361029185569677,6.403613619708594,6.403613619708594,6.193909322635363,6.193909322635363,9.735048722611111,6.955318179070616,13.213588273101692,13.355978012494802,5.179250889085168,11.050164262017049,7.850507847749682,14.649347311175447,15.29361275712047,5.0517213798296865,23.721905621746764,23.721905621746764,0.0,26.35767291305196,0.0,23.721905621746764,26.35767291305196,0,0
+2017/04/19 04:00:00,41.05249196750184,0,269.03722159001103,0,0,0,0.0,0.001106601081787801,4.633261998087618,9.319298099999997,25.555573451546493,0,0.5766937801895037,0.44147703270088545,0.5250810038955527,0,0,180.31134030865073,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,299.8149093344504,0.0,0.0,0.38786238169967646,1060.1784178648743,0.0,617.4801278661369,0.0,0.0,0.0,617.1387580054819,0.0,0.0,0.7187387000881245,1316.360387879636,0.0,811.3381829737283,0.0,0.0,0,0,0,0,0,0,0,0,0.014323740955115799,0.00045319317934879467,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47658448544262444,-0.47658448544262444,-0.3294369439702243,-0.3294369439702243,-0.5017700383899005,-0.5017700383899005,0.2794447882898941,0.2794447882898941,0.3669681360188378,0.3669681360188378,-0.45945617716825593,-0.32896091976755093,-0.5220257670457292,-0.5364998635589008,0.12380164133998314,-0.4950834312850884,-0.40562635589473933,-0.5527951650904492,-0.5778443387444575,-0.03065060357056286,9.743567262941056,9.743567262941056,7.256876788447329,7.256876788447329,10.262381725682303,10.262381725682303,6.621908697130806,6.621908697130806,7.803221113149377,7.803221113149377,9.406360888378174,7.250331631701073,10.699529654598763,11.022777893239109,5.3174899509057525,10.121969173024695,8.428735509118923,11.397558605309001,11.996123200858904,5.019448101754534,41.05249196750184,41.05249196750184,0.0,45.61387996389093,0.0,41.05249196750184,45.61387996389093,0,0
+2017/04/19 05:00:00,73.3110716531683,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5250286232124219,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.23925308777489127,-0.23925308777489127,-0.10088671115616585,-0.10088671115616585,-0.2642330965031725,-0.2642330965031725,0.4719357710821994,0.4719357710821994,0.7433388425617533,0.7433388425617533,-0.4743038943944723,-0.3116746113639328,-0.5983545656086238,-0.6096059550545634,0.2494994352655804,-0.539193003964393,-0.387219671182406,-0.624800301865056,-0.6495487711738351,0.10759920610192202,6.187886921743058,6.187886921743058,5.210788135646723,5.210788135646723,6.449644363848861,6.449644363848861,9.650797546500613,9.650797546500613,16.634172753271983,16.634172753271983,9.697939371547307,7.01915986602387,12.506497435125226,12.794230425603743,6.292081680652714,11.083924597334303,8.122942194702446,13.19151659005037,13.860058117302259,5.2397857234217184,73.3110716531683,73.3110716531683,0.0,81.45674628129811,0.0,73.3110716531683,81.45674628129811,0,0
+2017/04/19 06:00:00,99.69318920096087,0,708.2460494742126,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.3223805612731488,2.520432677969479e-09,0.5251049887743078,0,0,0.0,477.55875814267563,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03770754427657757,0.0011930404165843478,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.06425899390519205,-0.06425899390519205,0.06870272750575077,0.06870272750575077,-0.08922887698275143,-0.08922887698275143,0.6172110852748682,0.6172110852748682,0.9123662903400461,0.9123662903400461,-0.41321962973485493,-0.25255215747956095,-0.5483893116076296,-0.558568910644581,0.35174000695724694,-0.48820893601854237,-0.33631570135566435,-0.597562851799138,-0.6244153778212095,0.21310931237809716,5.0854927034746,5.0854927034746,5.097728365107969,5.097728365107969,5.164871772578053,5.164871772578053,12.99182918901225,12.99182918901225,22.578773631916746,22.578773631916746,8.559107993685657,6.323977748702035,11.295091916306163,11.533112304725051,7.574322185329649,9.979624515454304,7.352530633853391,12.486457761818713,13.181328304923383,5.9419938363127045,99.69318920096087,99.69318920096087,0.0,110.77021022328985,0.0,99.69318920096087,110.77021022328985,0,0
+2017/04/19 07:00:00,147.4059017893545,0,898.3453150013271,0,0,0,0.0,0.0,8.07546596073247,0.0,69.33401494192633,0,39.380909295966944,0.10063440056567,27.082901987708777,0,0,32.51226361255716,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,886.1789324201179,0.0,2266.8090261898824,0.0,1845.8153147680812,0.0,1974.3787503369208,0.0,1801.1786613351017,0.0,1007.6907980269067,0.0,2365.482761103154,0.0,2022.720781225571,0.0,1832.2865906996701,0.0,2774.31452524818,0,0,0,0,0,0,0,0,0.04782856998103444,0.0015132626149364822,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.21421930660963287,-0.21421930660963287,-0.1267326679853509,-0.1267326679853509,-0.2940104694616162,-0.2940104694616162,0.8492641461795756,0.8492641461795756,0.589672867578233,0.589672867578233,-0.3888384256723375,-0.3231325717068154,-0.48903474790003026,-0.3802942762194692,0.06083122211504419,-0.42636628700727497,-0.37427191239441227,-0.5138991718311424,-0.39575987680081726,-0.03273987540339054,5.95185146073085,5.95185146073085,5.332711947292935,5.332711947292935,6.796003529745477,6.796003529745477,20.219886640052763,20.219886640052763,12.288234763239174,12.288234763239174,8.149253918849766,7.17097323956672,9.996616099546344,8.011638364218186,5.076613616470283,8.790671672959348,7.916512161113602,10.522014375907531,8.263020362311181,5.022189922309948,147.4059017893545,147.4059017893545,0.0,163.78433532150498,0.0,147.4059017893545,163.78433532150498,0,0
+2017/04/19 08:00:00,163.20622224434288,0,910.4034536150493,0,0,0,0.30154167010847627,0.0,11.56097227339601,0.0,83.2008179303116,0,39.380909295966944,0.02166116313580528,25.30834470896975,0,0,9.61334745361068,581.3769335485415,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1200.7255592048639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1120.4654102230065,0.0,1040.5015679974417,0.0,267.9642145553255,0.0,0.0,0.0,0.0,0.0,1278.245152915327,0.0,1025.3631393736446,0.0,68.29875764784616,0.0,840.517284259504,0,0,0,0,0,0,0,0,0.048470554212372674,0.0015335745485161002,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.35607426522139035,-0.35607426522139035,-0.31536572724553347,-0.31536572724553347,-0.44363875362968824,-0.44363875362968824,1.0496005716555645,1.0496005716555645,0.11982450531283027,0.11982450531283027,-0.30442593598525447,-0.3618074781561628,-0.45805535823861654,-0.2951013527094461,-0.1409258361985757,-0.3148098661573854,-0.3904459167184115,-0.4671693047421302,-0.27293237144964727,-0.21515317522945662,7.6384667379525695,7.6384667379525695,7.067458455842129,7.067458455842129,9.106181029145858,9.106181029145858,28.254083737179997,28.254083737179997,5.297406115349176,5.297406115349176,6.9259886383983655,7.724543406690998,9.379341916493829,6.809402793970136,5.41147649405174,7.060148061860275,8.175493359650645,9.556645231393674,6.546965322010379,5.960184918444298,163.20622224434288,163.20622224434288,0.0,181.34024693815874,0.0,163.20622224434288,181.34024693815874,0,0
+2017/04/19 09:00:00,181.9992946587602,0,936.3184940431313,0,0,0,0.738641995588784,0.0,11.393746067737203,0.0,106.27511244621549,0,39.380909295966944,0.006711312613418737,20.772198338184115,0,0,3.2059419419265978,560.4638507194911,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3015.1541719850898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,556.9438627424613,0.0,365.4864250802939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,644.3458351898676,0.0,181.82128256519718,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04985029016020697,0.0015772284321502862,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.25577856778786,-0.25577856778786,-0.3218097802532887,-0.3218097802532887,-0.3878277143060648,-0.3878277143060648,1.1256329684423358,1.1256329684423358,-0.060236001332046096,-0.060236001332046096,-0.18018166503342337,-0.35171077008661417,-0.4281108592248386,-0.18822401399022182,-0.124629941590112,-0.15335420444861056,-0.3721332905948724,-0.4286898008079034,-0.13682917392609215,-0.20579637343176313,6.358114512219146,6.358114512219146,7.153162748215081,7.153162748215081,8.132812383277084,8.132812383277084,31.696757801863555,31.696757801863555,5.075121413044457,5.075121413044457,5.673012809497706,7.573892210278203,8.821957496916454,5.734526879328399,5.321755443723475,5.4873317395875745,7.883103863035103,8.832368657029562,5.387881891343454,5.878338585410276,181.9992946587602,181.9992946587602,0.0,202.22143850973353,0.0,181.9992946587602,202.22143850973353,0,0
+2017/04/19 10:00:00,213.23692921226996,0,989.9490046697694,0,0,0,1.0129346114432634,0.0,16.986528298665572,0.0,133.89528835348938,0,39.380909295966944,0.001978129289417178,18.52731532096109,0,0,0.9660387697995052,527.608383236896,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4216.499758440173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,235.84015036542502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,277.4546339535632,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05270561827044594,0.0016675690232303712,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.13044558381425556,-0.13044558381425556,-0.40551343768948,-0.40551343768948,-0.3919846191810835,-0.3919846191810835,1.1151068509703606,1.1151068509703606,0.09977533005283647,0.09977533005283647,-0.07811846419565892,-0.34352214724414404,-0.4123195168069049,-0.1588125532056046,-0.10872959273740139,-0.013183030507487908,-0.35675781215526503,-0.4033150946869794,-0.041304547470589814,-0.17723692719949743,5.352507425073156,5.352507425073156,8.426815394803214,8.426815394803214,8.200713391267769,8.200713391267769,31.20836707971189,31.20836707971189,5.206167535870648,5.206167535870648,5.126359200579458,7.454896226531247,8.543524505080256,5.5226792599037395,5.244852992431433,5.003597615456357,7.648655824152556,8.38954248404714,5.035319116186557,5.651164627680785,213.23692921226996,213.23692921226996,0.0,236.9299213469666,0.0,213.23692921226996,236.9299213469666,0,0
+2017/04/19 11:00:00,225.8761098072373,0,1069.9523698787818,0,0,0,1.015714728875453,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,3.053829627426918e-05,20.9190664687636,0,0,0.01404457278695379,555.3282138741046,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4223.41570802253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.056965056693199734,0.0018023346858528004,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.20637801436467448,0.20637801436467448,-0.3426242350809694,-0.3426242350809694,-0.2388986206209492,-0.2388986206209492,1.0686802795552166,1.0686802795552166,0.3458557793892075,0.3458557793892075,0.03575128139703551,-0.23079203715542548,-0.29783931305503686,-0.10981691600050496,-0.10585095578470817,0.02452786809468084,-0.22647126425403272,-0.25811609953973896,-0.020191149706827845,-0.15000233944474894,5.88331952386396,5.88331952386396,7.442021304355933,7.442021304355933,6.184361272852982,6.184361272852982,29.099063774016173,29.099063774016173,7.488517805463474,7.488517805463474,5.026459947655866,6.105170011837217,6.843254510509212,5.249777290903694,5.232053205967276,5.012454094994666,6.064087852580315,6.383120097010021,5.0084393866793135,5.466240598443335,225.8761098072373,225.8761098072373,0.0,250.97345534137477,0.0,225.8761098072373,250.97345534137477,0,0
+2017/04/19 12:00:00,205.21621841931545,0,1019.6201622588717,0,0,0,0.9227825915534102,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,1.1177266258901588e-05,18.551723698121364,0,0,0.005486735166806763,540.494916604359,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3808.340696594466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05428533267811398,0.0017175500859372113,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4523510839763153,0.4523510839763153,-0.19549320521043423,-0.19549320521043423,-0.06963450281313116,-0.06963450281313116,1.0195814348983416,1.0195814348983416,0.5340092007539335,0.5340092007539335,0.15885287865796788,-0.11158133746632262,-0.29862931882323207,-0.037872951777822676,0.09108393661228445,0.18231864705630255,-0.08383873084564195,-0.23100514857554624,-0.1039588982408238,0.06380549615037907,9.270190248527541,9.270190248527541,5.7924521067276515,5.7924521067276515,5.100397785757863,5.100397785757863,26.9513732415095,26.9513732415095,10.966508000567671,10.966508000567671,5.522945021509727,5.2578725421300305,6.853080915259213,5.029693890911673,5.171800926477573,5.689094598665648,5.145548188090075,6.107216551421914,5.223827630287886,5.084290040014977,205.21621841931545,205.21621841931545,0.0,228.01802046590606,0.0,205.21621841931545,228.01802046590606,0,0
+2017/04/19 13:00:00,202.68059334750166,0,962.2871190270815,0,0,0,0.9220129112256128,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,5.018073942114989e-05,16.306302918721745,0,0,0.02464211329439853,518.6330705069856,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3482.6611647824957,0.0,0.0,0.0,0.0,113.19861966339678,0.0,0.0,154.11947112082092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051232878989486134,0.001620972578964765,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5205840320972238,0.5205840320972238,-0.0673257600786743,-0.0673257600786743,-0.016748677237193945,-0.016748677237193945,1.0034258438501817,1.0034258438501817,0.5839085307931445,0.5839085307931445,0.1693209552511189,0.03326881519861692,-0.31862166421729937,0.07047950879999194,0.11633403891182789,0.251230731843148,0.07219329343083683,-0.2474017189096601,-0.14214478674729347,0.09854273067690099,10.667828249446274,10.667828249446274,5.093849415292084,5.093849415292084,5.005806939948258,5.005806939948258,26.264120625226482,26.264120625226482,12.145123082805952,12.145123082805952,5.594226709977576,5.0229127431499165,7.110541692001135,5.102849742922714,5.280321494077143,6.310122871839667,5.1079135363144985,6.270390977880268,5.418631819805682,5.201102933297861,202.68059334750166,202.68059334750166,0.0,225.20065927500184,0.0,202.68059334750166,225.20065927500184,0,0
+2017/04/19 14:00:00,186.5307780037874,0,924.5491585624076,0,0,0,0.808811735036154,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.6924547744432425e-09,14.08572532469889,0,0,0.0,516.4101046681502,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3301.9323953721714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04922368202158799,0.0015574029874262844,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5587044240305916,0.5587044240305916,0.2359708563480178,0.2359708563480178,0.07242119602734262,0.07242119602734262,0.9778806094709359,0.9778806094709359,0.6517788246111893,0.6517788246111893,0.1822718186012429,-0.02244201492937434,-0.3108283019780052,-0.12216093199320245,0.10767904544832482,0.2778062932071242,0.04754054099517595,-0.23539941380271565,-0.12850473165931883,0.09610789496264989,11.536311194718863,11.536311194718863,6.155442467276941,6.155442467276941,5.108596102844103,5.108596102844103,25.197629480663167,25.197629480663167,13.921604074918548,13.921604074918548,5.688740149337548,5.010425919168981,7.0081671253105355,5.309124993520115,5.240141883628624,6.602884924068434,5.046790007475991,6.149840048093054,5.342088231508711,5.191283806830313,186.5307780037874,186.5307780037874,0.0,207.2564200042082,0.0,186.5307780037874,207.2564200042082,0,0
+2017/04/19 15:00:00,179.69696120355349,0,924.5518327538506,0,0,0,0.7379122583699486,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,1.4220954174487863e-06,14.086062971675785,0,0,0.0,516.4127788595931,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2993.739544834491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04922382439752122,0.0015574074921015676,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.49545894128457596,0.49545894128457596,0.5136780214174949,0.5136780214174949,0.11420480324374939,0.11420480324374939,0.965514693771947,0.965514693771947,0.703644462363694,0.703644462363694,0.0978257572792308,0.06836108499743426,-0.24948965187376312,-0.18672877654878434,0.05491951679555844,0.1966384950474147,0.1578989412396023,-0.28682235076248735,-0.16485018769160503,0.03717244176141793,10.129803343326444,10.129803343326444,10.517223556798157,10.517223556798157,5.2701482131224395,5.2701482131224395,24.69038430267115,24.69038430267115,15.413752518369535,15.413752518369535,5.198185985790204,5.096758618984296,6.291980089623564,5.722885726706025,5.06244432801239,5.801779852078667,5.516676333646586,6.708969009167731,5.563224388523835,5.028605527073836,179.69696120355349,179.69696120355349,0.0,199.66329022617055,0.0,179.69696120355349,199.66329022617055,0,0
+2017/04/19 16:00:00,202.5588245054721,0,963.3314259821145,0,0,0,0.7889159001291316,0.0,16.735683873587277,0.0,131.64086955684016,0,39.380909295966944,2.692454774443243e-09,14.012445876256011,0,0,0.0,501.9568433190407,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3211.679613191389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05128847866529721,0.0016227317139512565,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.42932110894833525,0.42932110894833525,0.6978999315692271,0.6978999315692271,0.17061496767432185,0.17061496767432185,0.9627159204030986,0.9627159204030986,0.7808395434921509,0.7808395434921509,0.019312212579887838,0.15395554027743352,-0.32096614890225517,-0.22651884373920556,0.047539194369744624,0.10165744447653434,0.2633162031442944,-0.3024977218702544,-0.20258873825658885,0.02487632986296881,8.84373792613492,8.84373792613492,15.242757454850064,15.242757454850064,5.603355527093385,5.603355527093385,24.57640504325505,24.57640504325505,17.84922091933963,17.84922091933963,5.007720620003738,5.491165068390572,7.141842558594917,6.064535977746445,5.046787356513207,5.214022591531688,6.43957251428472,6.901578559506262,5.851123975625725,5.0128104834482485,202.5588245054721,202.5588245054721,0.0,225.06536056163566,0.0,202.5588245054721,225.06536056163566,0,0
+2017/04/19 17:00:00,209.6373603698317,0,995.827069858761,0,0,0,0.8694106715527596,0.0,16.90307355543791,0.0,133.89528835348938,0,39.380909295966944,2.802430514505187e-09,18.588678490582247,0,0,0.0,534.4524871956872,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3259.4687222057782,117.91804193558647,0.0,0.0,0.0,0.0,0.0,0.0,114.34734044776857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053018570815029926,0.00167747062359509,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4058289130882189,0.4058289130882189,0.8548257700398976,0.8548257700398976,0.23699942177179803,0.23699942177179803,0.9616470422745854,0.9616470422745854,0.8463553119928162,0.8463553119928162,0.025428644839534754,0.28493548455463985,-0.2767845233244187,-0.2098692122689067,0.13690230928327937,0.09693462538916545,0.40206039033192337,-0.21741235211110807,-0.18488284738264069,0.11139638335168933,8.432181254819227,8.432181254819227,20.42120139070579,20.42120139070579,6.1655610548485384,6.1655610548485384,24.532955998151692,24.532955998151692,20.115107565999296,20.115107565999296,5.013385662774127,6.686484106219297,6.591078960024902,5.913514280108444,5.3882969903354905,5.194590228643477,8.368361686716938,5.980495953115621,5.708643078630274,5.257017896760573,209.6373603698317,209.6373603698317,0.0,232.9304004109241,0.0,209.6373603698317,232.9304004109241,0,0
+2017/04/19 18:00:00,194.1444159040022,0,1025.5435984187168,0,0,0,0.7016052750757745,0.0,17.644803712327896,0.0,110.93442390708215,0,39.380909295966944,8.06656028708869e-06,25.48266564698909,0,0,0.003960723498117323,599.6554075446891,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2836.374760029451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05460070080679279,0.0017275281136988892,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.29689006551330555,0.29689006551330555,0.7071568234223609,0.7071568234223609,0.22105199169635073,0.22105199169635073,0.956130603619003,0.956130603619003,0.8012361250201769,0.8012361250201769,-0.01627738862501881,0.24592421149436597,-0.24870844573240047,-0.12327252966755237,0.1822896934399702,0.04356886332851773,0.3650902747674575,-0.17600689227227498,-0.09664690390090729,0.15362134689305637,6.831482283790692,6.831482283790692,15.51900506970263,15.51900506970263,6.013667713485219,6.013667713485219,24.309428051798193,24.309428051798193,18.535232426478984,18.535232426478984,5.005484732730551,6.25522432737624,6.2838810086692405,5.314780115453416,5.688875435000867,5.03929798584069,7.774460529311412,5.642145673750974,5.193436298376923,5.489032830100996,194.1444159040022,194.1444159040022,0.0,215.71601767111355,0.0,194.1444159040022,215.71601767111355,0,0
+2017/04/19 19:00:00,188.9264415472911,0,990.0587420040888,0,0,0,0.5676668419641343,0.0,20.19021509810023,0.0,101.68988858149199,0,39.380909295966944,1.92544566211926e-05,27.097742475311204,0,0,0.009456821414394844,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2271.6673564758253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05271146076740828,0.001667753875761703,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.14372056331227295,0.14372056331227295,0.28953935817111276,0.28953935817111276,0.13478852846184575,0.13478852846184575,0.9535079568859083,0.9535079568859083,0.6840890834763836,0.6840890834763836,-0.04231629012987784,0.07822350252076564,-0.1808486992924657,-0.10306501840219631,0.10885418574695936,0.0034362047677837498,0.16969764676476584,-0.10679812854826595,-0.07026422368097625,0.07207567200917295,5.427973384709361,5.427973384709361,6.7416103347122345,6.7416103347122345,5.37638939595621,5.37638939595621,24.203576160408176,24.203576160408176,14.83748838459232,14.83748838459232,5.0370707105206804,5.126699327766474,5.678012086207119,5.219993255077327,5.2454147617117,5.000244421349777,5.59687693401122,5.2362268003614645,5.102222239202675,5.10756210352217,188.9264415472911,188.9264415472911,0.0,209.91826838587897,0.0,188.9264415472911,209.91826838587897,0,0
+2017/04/19 20:00:00,207.95643021279685,0,917.1082592736661,0,0,0,0.46596651746944523,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,3.635260796921082e-05,23.018673379016366,0,0,0.017858999084163118,562.1868751491407,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1850.0744235794393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04882752303193168,0.0015448687931391538,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.025867592257834932,0.025867592257834932,0.07787289076386122,0.07787289076386122,-0.005405853492105111,-0.005405853492105111,0.9407953270422252,0.9407953270422252,0.5880706500024723,0.5880706500024723,-0.08412887454524146,0.058698877573915606,-0.17045549795614276,-0.08182616020754988,0.07061318595525173,0.03844045682034318,-0.03391438239652088,-0.14495430335345383,-0.051346283900704344,0.02577064278747306,5.013851790032177,5.013851790032177,5.125565788438337,5.125565788438337,5.0006049367218,5.0006049367218,23.694327246796107,23.694327246796107,12.248311674079233,12.248311674079233,5.146557657148691,5.071335797621458,5.6022267492606375,5.138642156114955,5.103240346218058,5.0305905103651725,5.023810641047746,5.435359418174059,5.0545820989962635,5.013748150924457,207.95643021279685,207.95643021279685,0.0,231.06270023644095,0.0,207.95643021279685,231.06270023644095,0,0
+2017/04/19 21:00:00,194.0010049847152,0,900.8047372630429,0,0,0,0.3415761420987395,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.766155276233282e-05,25.19543893289842,0,0,0.012756327051058508,581.3788083230946,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1342.5887183742432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04795951144395866,0.0015174055115496758,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.09253088561852982,-0.09253088561852982,-0.08816149992516203,-0.08816149992516203,-0.12010111135215785,-0.12010111135215785,0.9201683641836262,0.9201683641836262,0.47622597780674375,0.47622597780674375,-0.08873816473123075,-0.0165184926766965,-0.21607957900596364,-0.13845623298903825,-0.06878674597944896,-0.06383672855616579,-0.018670465077788783,-0.19262747183673187,-0.14536277149145255,-0.09141417780100175,5.177304797418316,5.177304797418316,5.160949537771998,5.160949537771998,5.298781656056391,5.298781656056391,22.881702210413096,22.881702210413096,9.73637972666711,9.73637972666711,5.163062707818057,5.005648420089429,5.968487853312553,5.397169290593098,5.097967591289802,5.084372594183236,5.0072160229916705,5.769352558371779,5.437818756723729,5.173049439142858,194.0010049847152,194.0010049847152,0.0,215.5566722052391,0.0,194.0010049847152,215.5566722052391,0,0
+2017/04/19 22:00:00,137.79039896498736,0,720.9662814726565,0,0,0,0.02715610568732402,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,8.499348741618558e-05,20.866208526339257,0,0,0.04177882853767587,561.2179163376703,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,104.11783536069267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03838477885013536,0.001214467646420277,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2662097597318103,-0.2662097597318103,-0.2781967388758136,-0.2781967388758136,-0.29783856415320686,-0.29783856415320686,0.8597538658940703,0.8597538658940703,0.24655399989276583,0.24655399989276583,-0.09002507893503434,-0.03718263883219017,-0.2556368076608602,-0.2340655946222901,-0.10723960468779326,-0.08309572286529751,-0.02278138894931267,-0.23508154871081002,-0.22187513880009235,-0.11850351733508985,6.4714779370036695,6.4714779370036695,6.6074079247585615,6.6074079247585615,6.843245207886952,6.843245207886952,20.600657206536994,20.600657206536994,6.261677903807865,6.261677903807865,5.16782831450864,5.028621224223102,6.356605435508882,6.136816621213683,5.2381848367436845,5.142979032142577,5.010743637754558,6.146729632886078,6.021246864115653,5.2908807941028755,137.79039896498736,137.79039896498736,0.0,153.1004432944304,0.0,137.79039896498736,153.1004432944304,0,0
+2017/04/19 23:00:00,89.51827765587142,0,545.8933270919593,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,6.134699288043358e-05,11.862250748506328,0,0,0.030168319862946245,492.62763000328016,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.029063765081202585,0.0009195572680538047,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47917730812072895,-0.47917730812072895,-0.5000353924300484,-0.5000353924300484,-0.5116760604171795,-0.5116760604171795,0.6941529077917469,0.6941529077917469,-0.02350798421117648,-0.02350798421117648,-0.15278313304107655,-0.1316486847432158,-0.34896054936879944,-0.3130614233623394,-0.1503456738840958,-0.14261789082295015,-0.12729391353318764,-0.3052123052368893,-0.3195032756019045,-0.18215896528533398,9.795714453948364,9.795714453948364,10.225770195467248,10.225770195467248,10.47395098460187,10.47395098460187,15.131989150922578,15.131989150922578,5.011439904408235,5.011439904408235,5.483705281555473,5.35904475294717,7.5336083772912446,7.037238769726343,5.468379472569637,5.421425632606102,5.335667463428933,6.935988765078065,7.122284628493233,5.687886327356026,89.51827765587142,89.51827765587142,0.0,99.46475295096823,0.0,89.51827765587142,99.46475295096823,0,0
+2017/04/20 00:00:00,39.34394902116396,0,542.7373945468412,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5787272310555074e-09,9.546628022162043,0,0,0.0,489.50186577802504,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.028895740894880215,0.0009142410999210843,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.21543881654037284,-0.21543881654037284,-0.20281404722471574,-0.20281404722471574,-0.2966512322311843,-0.2966512322311843,0.6992529318368252,0.6992529318368252,0.2673904015937279,0.2673904015937279,-0.041580648818632784,0.03070369743014028,-0.3115707000167563,-0.2066823058712923,0.072012560024278,-0.03682660728493776,0.013923294328714562,-0.2912039722981675,-0.22882323604416202,0.03126745845169176,5.962741158245706,5.962741158245706,5.853021513427834,5.853021513427834,6.828526355405657,6.828526355405657,15.282903404049364,15.282903404049364,6.484597406976505,6.484597406976505,5.035792914219286,5.019515540089472,7.017808525181351,5.88593099426339,5.107373772098512,5.028075706744659,5.004012995063405,6.761762500938232,6.086353430762017,5.020238814192595,39.34394902116396,39.34394902116396,0.0,43.7154989124044,0.0,39.34394902116396,43.7154989124044,0,0
+2017/04/20 01:00:00,23.722012328601256,0,37.76153991783779,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249169049234642,0,0,0.0,2.2711874052936487,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0020104523554500446,6.360931112554549e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.14203206875799967,-0.14203206875799967,-0.11024401419821217,-0.11024401419821217,-0.25370658212013486,-0.25370658212013486,0.632936229160734,0.632936229160734,0.4233822196900667,0.4233822196900667,-0.07814626448894006,0.02519417679796326,-0.3659776100987255,-0.24191532494195572,0.17581086323938852,-0.07090296749062559,0.029438664430986996,-0.3473768990391827,-0.261420182314161,0.09218700723151066,5.417967562488045,5.417967562488045,5.251724976397895,5.251724976397895,6.336141744888067,6.336141744888067,13.408364695831153,13.408364695831153,8.737460415053178,8.737460415053178,5.1264491768722,5.013139945421628,7.788031881302004,6.214535043111525,5.640714168230289,5.10408962849678,5.017940475221522,7.510557814065805,6.4188574476674916,5.1759888909835325,23.722012328601256,23.722012328601256,0.0,26.357791476223618,0.0,23.722012328601256,26.357791476223618,0,0
+2017/04/20 02:00:00,28.34435675351047,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5249936670375721,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.09682406851128342,-0.09682406851128342,-0.06057344851730816,-0.06057344851730816,-0.21380480894364212,-0.21380480894364212,0.6151670106707575,0.6151670106707575,0.4985913235260693,0.4985913235260693,-0.08270981674216206,0.03401421217211941,-0.3760116468457795,-0.24265619800073693,0.20205090327008982,-0.08279988730196548,0.029487951929923612,-0.3657575210453555,-0.2705395656108232,0.10605462828463237,5.194146424889212,5.194146424889212,5.0759655821876635,5.0759655821876635,5.948164358197232,5.948164358197232,12.938472771217988,12.938472771217988,10.195390775796952,10.195390775796952,5.141653689745624,5.023951031809304,7.943833173627667,6.222003882431238,5.846602948425613,5.141962472305593,5.018000601312565,7.78466260008274,6.519878557067543,5.232947518449194,28.34435675351047,28.34435675351047,0.0,31.493729726122744,0.0,28.34435675351047,31.493729726122744,0,0
+2017/04/20 03:00:00,23.722156048791135,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250606251133452,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.095727444149221,-0.095727444149221,-0.05669094763625109,-0.05669094763625109,-0.21543151006358643,-0.21543151006358643,0.5634076624615026,0.5634076624615026,0.5288092345975153,0.5288092345975153,-0.10448860316817388,0.018630377325891234,-0.4002196631380421,-0.2617322121703524,0.22805273430147888,-0.10820602687714001,0.010608149387078498,-0.39415810349926766,-0.2934369891811284,0.11426718974922512,5.189771764235587,5.189771764235587,5.066538170898781,5.066538170898781,5.962675729082477,5.962675729082477,11.647827936338388,11.647827936338388,10.84989459297691,10.84989459297691,5.226115500088326,5.007185068423695,8.337410086698355,6.422256142528397,6.079033716403174,5.242499367283912,5.002329497695001,8.23651022420701,6.7889796627559775,5.270443611257335,23.722156048791135,23.722156048791135,0.0,26.35795116532348,0.0,23.722156048791135,26.35795116532348,0,0
+2017/04/20 04:00:00,40.25330361798987,0,90.67471684432192,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.21601676382428855,0.003982780209983256,0.5251705243214738,0,0,1.948835562961591,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.567980797829237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004827589088158964,0.000152741553642166,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.04723740280619847,-0.04723740280619847,-0.009110708742743962,-0.009110708742743962,-0.1659709459431758,-0.1659709459431758,0.5748191221402472,0.5748191221402472,0.6470443444954317,0.6470443444954317,-0.1282544830455286,-0.006347972381200746,-0.4220288116160439,-0.2847466769460438,0.224828108953747,-0.13135143916557473,-0.01179098374079755,-0.41727633446672996,-0.3153232108417877,0.13498388392262187,5.0461951454717,5.0461951454717,5.001718251695522,5.001718251695522,5.5709179520692516,5.5709179520692516,11.922388841221391,11.922388841221391,13.791196905865519,13.791196905865519,5.340756207055975,5.000834164452954,8.713452641295419,6.684242444386342,6.048670113703196,5.357424001117366,5.002877952548218,8.62977181420635,7.066898840168307,5.377482099460067,40.25330361798987,40.25330361798987,0.0,44.72589290887763,0.0,40.25330361798987,44.72589290887763,0,0
+2017/04/20 05:00:00,74.20715464001914,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.8434953175091484,0.0,0.5776162925541151,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.21993993509093485,0.21993993509093485,0.25350000445020016,0.25350000445020016,0.10390165530415678,0.10390165530415678,0.80420841488198,0.80420841488198,0.8053976877742597,0.8053976877742597,-0.04316253942526152,0.07855902096319771,-0.33700072249411794,-0.20075109946695674,0.4798671221130289,-0.051614963317889444,0.0675073693140777,-0.3351887491476102,-0.23561866965315134,0.30570694709637514,6.003473514533141,6.003473514533141,6.333960950586999,6.333960950586999,5.223581087533091,5.223581087533091,18.636672871861364,18.636672871861364,18.67736583459515,18.67736583459515,5.03856835557103,5.127788843152359,7.362166298471621,5.835726786675039,9.80963691914674,5.055154884746628,5.094356513432899,7.336722017388837,6.151988010583054,6.942292445537973,74.20715464001914,74.20715464001914,0.0,82.4523940444657,0.0,74.20715464001914,82.4523940444657,0,0
+2017/04/20 06:00:00,100.35431773223635,0,708.0275948524267,0,0,0,0.0,0.0,11.110595677687485,13.929299233552332,73.80580873715317,0,0.9838441094065508,2.520439535617066e-09,0.5247699719163808,0,0,0.0,477.34030352088973,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03769591359070289,0.0011926724297905296,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4089764794005431,0.4089764794005431,0.4372234454719991,0.4372234454719991,0.2939617834559045,0.2939617834559045,0.956697914644165,0.956697914644165,0.9048791010291752,0.9048791010291752,-0.024562240066996484,0.09098318969372142,-0.3107062059716728,-0.18148596173291343,0.6089160893232846,-0.014187032281363433,0.10108361299633394,-0.2920277655023871,-0.19637897630502651,0.43325501947918055,8.485950951155502,8.485950951155502,8.9874992607308,8.9874992607308,6.795406693991467,6.795406693991467,24.332360662201836,24.332360662201836,22.29038068974775,22.29038068974775,5.0124890253316465,5.171420942635123,7.006583718906214,5.682805580057831,12.776430303998964,5.004166466326012,5.21161210771578,6.771778799982258,5.7996614118562775,8.914969450618415,100.35431773223635,100.35431773223635,0.0,111.50479748026261,0.0,100.35431773223635,111.50479748026261,0,0
+2017/04/20 07:00:00,146.13688693926858,0,867.1117652649264,0,0,0,0.0,0.0,8.07546596073247,0.0,69.33401494192633,0,39.380909295966944,0.00260761784227355,27.055905654497735,0,0,1.2787138761565207,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,66.00651794548897,0.0,0.0,0.0,267.9127522183899,0.0,0.0,0.0,0.0,0.0,181.6865885832087,0.0,0.0,0.0,210.72860035496336,0.0,0.0,0,0,0,0,0,0,0,0,0.046165672658169954,0.0014606497027761015,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2184616231878962,0.2184616231878962,0.23506041751420875,0.23506041751420875,0.08679825137886917,0.08679825137886917,0.9877137664509527,0.9877137664509527,0.6945338249123651,0.6945338249123651,-0.08176119529049732,-0.07932234711118674,-0.32599690899501377,-0.20248142084473122,0.32919708695096217,-0.07440043054875344,-0.07720220335471135,-0.28706815473278025,-0.2016196049414895,0.20048770168330995,5.990002092665009,5.990002092665009,6.146523007451265,6.146523007451265,5.156008813325656,5.156008813325656,25.605199842978422,25.605199842978422,15.143222008960095,15.143222008960095,5.138422031320985,5.130284952927653,7.209793839301014,5.8502209018457165,7.2535776415337665,5.114614452937531,5.1234116362010695,6.711909203662117,5.842986207889382,5.833531405766195,146.13688693926858,146.13688693926858,0.0,162.37431882140953,0.0,146.13688693926858,162.37431882140953,0,0
+2017/04/20 08:00:00,159.8196336206251,0,900.7712902116285,0,0,0,0.399829379707202,0.0,11.471581537141494,0.0,83.2008179303116,0,39.380909295966944,2.608530114713474e-05,25.366469392196745,0,0,0.01222745241813011,581.3458901463133,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1602.8470056005635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04795773069816691,0.001517349169994107,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.0213375796809282,-0.0213375796809282,-0.09647155953945367,-0.09647155953945367,-0.1311534668580328,-0.1311534668580328,1.0499751594290458,1.0499751594290458,0.4249566650763142,0.4249566650763142,-0.07233916295859796,-0.11672237609039142,-0.2619047609229165,-0.10617202250575625,0.038366353708378105,-0.060667922187669227,-0.12855289140632611,-0.22454999956834362,-0.08714000423827145,-0.061456244030928475,5.009424971130599,5.009424971130599,5.1927347506300805,5.1927347506300805,5.356346582255043,5.356346582255043,28.2705472842689,28.2705472842689,8.765487984347459,8.765487984347459,5.108350166380632,5.282197241254124,6.424137339537168,5.233463771269825,5.030472675315266,5.076202766190988,5.34234487521212,6.046071812322779,5.157240162598896,5.0781963340771625,159.8196336206251,159.8196336206251,0.0,177.57737068958343,0.0,159.8196336206251,177.57737068958343,0,0
+2017/04/20 09:00:00,178.5951982291053,0,914.5594028761213,0,0,0,0.966301681970677,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,3.193023232283447e-05,20.774431233895292,0,0,0.015766186817587156,541.8949353075906,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4010.1790773166745,0.0,0.0,0.0,0.0,0.0,0.0,15.681238020618169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048691820029371474,0.001540575244730945,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.111794573857248,0.111794573857248,-0.13989352891456572,-0.13989352891456572,-0.07109342941379608,-0.07109342941379608,1.136714915567079,1.136714915567079,0.48129830889437986,0.48129830889437986,0.02105682453567425,-0.05072954710378154,-0.19793089840633477,0.0014442041469221833,0.052181131155457666,0.05765382306561801,-0.05136423374654424,-0.1631307401385009,0.05392205893367857,-0.02989321872078888,5.25885963912674,5.25885963912674,5.405465135671008,5.405465135671008,5.104649724073738,5.104649724073738,32.214867868889755,32.214867868889755,9.838587932263138,9.838587932263138,5.009178574579849,5.053278616996565,5.81237161405933,5.0000431755672,5.056371664286516,5.068817958768193,5.054620272247661,5.551522861875881,5.060196384004826,5.01849880275789,178.5951982291053,178.5951982291053,0.0,198.43910914345034,0.0,178.5951982291053,198.43910914345034,0,0
+2017/04/20 10:00:00,209.46380515406153,0,1001.7412203942911,0,0,0,0.8167440261476497,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,1.795500504071976e-05,18.572548089992072,0,0,0.008866309404080548,540.3577714218131,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3351.356466934736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053333444570192276,0.001687433009723314,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.11969679833788913,0.11969679833788913,-0.07784130002759689,-0.07784130002759689,0.025946060367384987,0.025946060367384987,1.0406650146101695,1.0406650146101695,0.5980179245876878,0.5980179245876878,0.07370039557362466,-0.1118370326399319,-0.17905670970499277,-0.056227692056113276,-0.009880393051233527,0.1321225291857358,-0.10777231129327622,-0.11572932796859779,0.0017107205711584738,-0.08591863459398318,5.296772111213414,5.296772111213414,5.125463904895369,5.125463904895369,5.013935957528773,5.013935957528773,27.862864516456554,27.862864516456554,12.497973132532138,12.497973132532138,5.112467260392464,5.259056411435651,5.664623592040584,5.065455014492969,5.002020836527592,5.361636020133901,5.2405582741542105,5.277413093038518,5.00006058136411,5.152861802551598,209.46380515406153,209.46380515406153,0.0,232.73756128229059,0.0,209.46380515406153,232.73756128229059,0,0
+2017/04/20 11:00:00,225.83966307305806,0,1075.7675849217164,0,0,0,1.0819798958208227,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.856041893625666e-09,20.81638510307921,0,0,0.0,561.1574734898265,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4530.014380439574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05727466304945412,0.0018121304151512564,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.40348198414400216,0.40348198414400216,0.10668777045293136,0.10668777045293136,0.2439342263997804,0.2439342263997804,1.0660737753211327,1.0660737753211327,0.8235188478024456,0.8235188478024456,0.11207222259369141,-0.06832450978161053,-0.163360983860467,-0.046908619216257545,0.17207080162095412,0.17966390464520232,-0.058877880407349974,-0.09230394911159676,0.0046055900032737525,0.11234535616297532,8.392364839484813,8.392364839484813,5.2357386042533705,5.2357386042533705,6.23494204538612,6.23494204538612,28.98286384761539,28.98286384761539,19.304790412207808,19.304790412207808,5.260147739333036,5.096655087608696,5.55308261512198,5.045554261745934,5.613709434407681,5.669145112549899,5.071771607100715,5.176435837453823,5.000439088231232,5.261418016731312,225.83966307305806,225.83966307305806,0.0,250.9329589700645,0.0,225.83966307305806,250.9329589700645,0,0
+2017/04/20 12:00:00,208.85788982474125,0,1019.5150842236168,0,0,0,4.647731765444257,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.802437785369247e-09,18.593683973945822,0,0,0.0,540.395325304271,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4548.731190931093,1943.0332896843447,0.0,0.0,0.0,0.0,5506.552048552614,0.0,0.0,0.0,0.0,3981.0345869434545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054279738245685,0.0017173730819947995,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.552199038177365,0.552199038177365,0.19852303139433425,0.19852303139433425,0.35923935682052766,0.35923935682052766,1.0428127908110907,1.0428127908110907,0.9073631432603413,0.9073631432603413,0.22871281779562336,0.024921678638073718,-0.04398280492344321,0.004097303508093524,0.2966311010076467,0.3069261252697902,0.04219599809776408,0.03233540139467301,0.04662663473581296,0.27085850889870705,11.383645290480615,11.383645290480615,5.817247709966438,5.817247709966438,7.68581339442413,7.68581339442413,27.956634092016216,27.956634092016216,22.385810124430535,22.385810124430535,6.08530293645596,5.012857233549028,5.040048327371693,5.000347518104036,6.8282773107792,6.9578737640834305,5.0368602323181335,5.021645007319151,5.045008168810554,6.523475086392892,208.85788982474125,208.85788982474125,0.0,232.06432202749028,0.0,208.85788982474125,232.06432202749028,0,0
+2017/04/20 13:00:00,202.51894960930642,0,962.1454628768823,0,0,0,0.8669602543480208,0.0,16.67307048032785,0.0,129.2730206906943,0,39.380909295966944,2.556207888232581e-05,16.324963325890355,0,0,0.012624872558554536,518.5034315975221,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3559.9485220049505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05122533711112387,0.001620733959190506,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.40073695082520233,0.40073695082520233,0.060096226308381365,0.060096226308381365,0.23353435501194314,0.23353435501194314,1.0356057589073584,1.0356057589073584,0.7747247476996388,0.7747247476996388,0.21465854558576322,0.03356753414206708,-0.045212917158768996,0.028672494641271768,0.1449846963786532,0.28151538130295517,0.08003795099705519,0.05977914059262103,0.048849780548523625,0.08807831725041956,8.346093568924985,8.346093568924985,5.074773129326701,5.074773129326701,6.131650380936918,6.131650380936918,27.642648919353775,27.642648919353775,17.647001539310395,17.647001539310395,5.955766498257844,5.023326075938755,5.042320007047508,5.017018756682603,5.4355421718233,6.646111308347741,5.132646953557469,5.073986034233002,5.049402913876037,5.160645856045889,202.51894960930642,202.51894960930642,0.0,225.02105512145158,0.0,202.51894960930642,225.02105512145158,0,0
+2017/04/20 14:00:00,186.3190511269118,0,924.4097513905751,0,0,0,0.7602219950145478,0.0,16.630907673226492,0.0,115.5196477718057,0,39.380909295966944,1.4608034777544747e-05,14.027349782863338,0,0,0.00721512778474027,516.2634823685329,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3095.3155375462948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04921625988049981,0.0015571681560559137,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4478292397878239,0.4478292397878239,0.21795444212061926,0.21795444212061926,0.19998641197226888,0.19998641197226888,1.016641782080533,1.016641782080533,0.7156003161625627,0.7156003161625627,0.04493701095256985,0.10115579422108323,-0.06164946521754239,0.013210331235742266,0.05998580036618097,0.11952444724596532,0.05835085574468245,0.013122086604557935,0.01543861473016908,0.011549163598972213,9.184659277141563,9.184659277141563,5.985401396832984,5.985401396832984,5.8293612475490875,5.8293612475490875,26.825593438858377,26.825593438858377,15.774202104837187,15.774202104837187,5.041805031233807,5.211914566515659,5.078688896325858,5.003612531600552,5.074498548517795,5.295917544942071,5.070492286133344,5.003564429213398,5.004934034077394,5.002761115059172,186.3190511269118,186.3190511269118,0.0,207.0211679187909,0.0,186.3190511269118,207.0211679187909,0,0
+2017/04/20 15:00:00,179.70546683662485,0,903.5599600664676,0,0,0,0.7641678945334996,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,1.0056421935437488e-05,14.068304334257048,0,0,0.0023276760501856697,495.41857849616,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3112.660455089101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04810620154682489,0.0015220466841529268,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4197913723799602,0.4197913723799602,0.3970226858441129,0.3970226858441129,0.23262906890752746,0.23262906890752746,1.0129866266566967,1.0129866266566967,0.7480505331219007,0.7480505331219007,-0.025887600282579557,0.07261651734509257,-0.06473189636206225,-0.02246638377030848,0.022527659731918066,0.035677367393683525,0.0678887677144065,0.06776680205847829,-0.017039571008534857,-0.021778697331577335,8.673935541235224,8.673935541235224,8.28399781774472,8.28399781774472,6.12287386927089,6.12287386927089,26.669649654396835,26.669649654396835,16.783531217092502,16.783531217092502,5.013873227085924,5.109182802293759,5.086755906528396,5.010448574110484,5.01050564908634,5.026350645251867,5.095425923056624,5.0950832856204045,5.006010406052567,5.009818697639091,179.70546683662485,179.70546683662485,0.0,199.67274092958317,0.0,179.70546683662485,199.67274092958317,0,0
+2017/04/20 16:00:00,202.6403797217822,0,977.6024406702488,0,0,0,0.875253599034815,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,5.263227779272466e-06,14.112434333485915,0,0,0.0025990510727622825,516.2252589561024,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3597.4975298504296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052048278057929206,0.0016467712371102674,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.426058574175673,0.426058574175673,0.7011953213229396,0.7011953213229396,0.3139454675108658,0.3139454675108658,1.0256813206226703,1.0256813206226703,0.8507288095629831,0.8507288095629831,-0.04686783535388782,0.2113001603679694,-0.05226758781460457,-0.033431375740233506,0.05436519362083441,-0.0006651772481509216,0.25898364802321605,-0.11679156267824838,-0.0014620641224474232,0.015283561185638955,8.785166935962067,8.785166935962067,15.340675763188557,15.340675763188557,7.048805940038676,7.048805940038676,27.213397172983008,27.213397172983008,20.272778529818197,20.272778529818197,5.045475075706506,5.9260377117276875,5.0565586414533925,5.023137217338601,5.061189975846801,5.000009159159376,6.392459128858306,5.282532084097525,5.000044250045079,5.004835423452178,202.6403797217822,202.6403797217822,0.0,225.15597746864688,0.0,202.6403797217822,225.15597746864688,0,0
+2017/04/20 17:00:00,209.41544068400626,0,1001.753809005598,0,0,0,0.9216409292570313,0.0,16.693521066485914,0.0,133.89528835348938,0,39.380909295966944,2.8024377853692473e-09,18.524081036004468,0,0,0.0,540.3792263425242,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3803.9837363443457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05333411479718273,0.001687454215238105,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4414973997901738,0.4414973997901738,0.6100470453611095,0.6100470453611095,0.38404815270668996,0.38404815270668996,1.030407044393521,1.030407044393521,0.9344426629068644,0.9344426629068644,-0.0032241856706784144,0.20134390073258082,-0.10697614827741907,-0.1196726348444445,0.1651255495155326,0.03089142231372151,0.24425347775654502,-0.07891421209217442,-0.10166374985385844,0.12541108000913315,9.066369806088645,9.066369806088645,12.805622394666472,12.805622394666472,8.071715863270256,8.071715863270256,27.417341253251735,27.417341253251735,23.442247472217062,23.442247472217062,5.000215189524241,5.840678310429894,5.237015380221777,5.296652227261944,5.565109785898272,5.0197549190438195,6.238184707617037,5.128947327763413,5.214049154348558,5.325804198626059,209.41544068400626,209.41544068400626,0.0,232.68382298222917,0.0,209.41544068400626,232.68382298222917,0,0
+2017/04/20 18:00:00,193.78464459416253,0,1007.2288443970731,0,0,0,0.7901297646952734,0.0,17.31283737776841,0.0,110.93442390708215,0,39.380909295966944,7.076698314883406e-06,25.366337171951432,0,0,0.003495020053281585,581.34111922649,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3225.6940064929904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053625609736820075,0.0016966769119394966,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2921730332185077,0.2921730332185077,0.4571758175610454,0.4571758175610454,0.3018587660868215,0.3018587660868215,1.0125652439027897,1.0125652439027897,0.8477356891517369,0.8477356891517369,-0.08896542827891164,0.11790799013586165,-0.15460810180444393,-0.06256076595232024,0.1778532603313755,-0.06767006293837162,0.1541242719763275,-0.10945178275784628,-0.05356661954292094,0.13670206214038966,6.773548047309703,6.773548047309703,9.362420523787009,9.362420523787009,6.893524433488722,6.893524433488722,26.651703922715527,26.651703922715527,20.164786198550786,20.164786198550786,5.163899297914838,5.2879627659927735,5.495341987758877,5.081032854882267,5.655707498335531,5.094811955456009,5.492243386761118,5.248118189856342,5.059405301933836,5.38716096440119,193.78464459416253,193.78464459416253,0.0,215.3162717712917,0.0,193.78464459416253,215.3162717712917,0,0
+2017/04/20 19:00:00,190.24612670048597,0,990.0727890698445,0,0,0,0.5847087361197983,0.0,21.492830045698696,0.0,101.68988858149199,0,39.380909295966944,4.756589734566707e-05,27.097742475311204,0,0,0.02350388716995548,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2347.077926968701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05271220864359387,0.0016677775380429026,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.09251955341517244,0.09251955341517244,0.10521363369685792,0.10521363369685792,0.13728841397935607,0.13728841397935607,0.9918892105250434,0.9918892105250434,0.6820368580421037,0.6820368580421037,-0.015987063371377973,0.09302631201990454,-0.13590504042593748,-0.05782872212886881,0.06164706451792609,-0.004202744367422336,0.1075277440444251,-0.09527189187849579,-0.038457319960768246,0.011860815909209975,5.177261354716919,5.177261354716919,5.229265894847742,5.229265894847742,5.390492117862891,5.390492117862891,25.779388470380994,25.779388470380994,14.777970959512558,14.777970959512558,5.005290822779315,5.179209254113317,5.382655899257216,5.06923618799955,5.078682766935017,5.000365634468196,5.239467158480778,5.187969145430827,5.030617357051526,5.002912143092303,190.24612670048597,190.24612670048597,0.0,211.38458522276218,0.0,190.24612670048597,211.38458522276218,0,0
+2017/04/20 20:00:00,208.49277640808802,0,917.1290245048128,0,0,0,0.3154459075533839,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.0002115673927503681,23.018969928948003,0,0,0.10463093350175509,562.1208684458697,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1239.0177985704875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048828628588218875,0.0015449037721694445,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.14515873679170116,-0.14515873679170116,-0.19244929281197945,-0.19244929281197945,-0.09825999099614129,-0.09825999099614129,0.9666708464397213,0.9666708464397213,0.4657639583053359,0.4657639583053359,-0.031003456323772896,0.05633557009141984,-0.158853567984696,-0.1140079426469701,0.04416624140092621,-0.033718633733796084,0.039956048128483225,-0.13706870892390238,-0.1375041679257276,0.01686245541169187,5.436589419621143,5.436589419621143,5.767927661867873,5.767927661867873,5.199950082055949,5.199950082055949,24.737557463102263,24.737557463102263,9.529072215518624,9.529072215518624,5.0198984755152765,5.065706454161443,5.522949565050425,5.269217144512169,5.0403831076221195,5.023536557494893,5.0330504222045676,5.389242264495607,5.3917214487157,5.005886105084514,208.49277640808802,208.49277640808802,0.0,231.65864045343113,0.0,208.49277640808802,231.65864045343113,0,0
+2017/04/20 21:00:00,195.61894228559535,0,900.871638913149,0,0,0,0.12141102733016622,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.000228561570368565,25.317352847302345,0,0,0.11318725991751906,581.3452790403343,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,469.61668349091406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047963073337364805,0.0015175182073742016,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2908363073993718,-0.2908363073993718,-0.36601978925320316,-0.36601978925320316,-0.2380122221461856,-0.2380122221461856,0.9441709064892186,0.9441709064892186,0.26281569849000946,0.26281569849000946,-0.11088534793634297,-0.04102555432605155,-0.2205700600088001,-0.20598697109715128,-0.005061005132023414,-0.09260207881662233,-0.11526428037400191,-0.18743331198778196,-0.22131891393581546,-0.06111733188923001,6.757301404330619,6.757301404330619,7.7886778257697955,7.7886778257697955,6.175567947050737,6.175567947050737,23.82892509802008,23.82892509802008,6.434089525827673,6.434089525827673,5.2546638651539865,5.03484356305259,6.009243493107974,5.87996922753463,5.000530218517028,5.177577842837721,5.275186747745039,5.728359243095767,6.016122296518702,5.077336111370812,195.61894228559535,195.61894228559535,0.0,217.35438031732815,0.0,195.61894228559535,217.35438031732815,0,0
+2017/04/20 22:00:00,139.76058992257242,0,723.3987645702875,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.005050646011767789,20.856604402322304,0,0,2.5313047051414657,561.1608735586974,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,472.3976114855865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,607.3966341060648,0.0,252.4464109308957,0,0,0,0,0,0,0,0,0.03851428605200969,0.0012185651640136143,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3407298549238687,-0.3407298549238687,-0.37311471532040086,-0.37311471532040086,-0.452010905935717,-0.452010905935717,0.8037223335509799,0.8037223335509799,-0.03283423216188955,-0.03283423216188955,-0.13323940119929206,-0.14886249591046752,-0.2794295454727646,-0.2935016931520568,-0.1312854715452253,-0.14560380725765112,-0.20300006461298387,-0.27217857018144365,-0.31675265768042377,-0.18507599513765155,7.41497067724076,7.41497067724076,7.898410887483806,7.898410887483806,9.263725161716877,9.263725161716877,18.620057992724057,18.620057992724057,5.022318016120991,5.022318016120991,5.367780696241965,5.459174904167227,6.621731198417137,6.78977144815164,5.357064806401397,5.439273263312842,5.85458974045072,6.538406196496595,7.085755702923407,5.710126683487076,139.76058992257242,139.76058992257242,0.0,155.2895443584138,0.0,139.76058992257242,155.2895443584138,0,0
+2017/04/20 23:00:00,90.78535933013069,0,561.7168792229147,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.03143702290924794,11.81096604592888,0,0,16.043120964431772,492.43822948966675,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,326.9202544388861,0.0,0.0,0.0,1370.0184307413274,0.0,266.34605024558357,0.0,0.0,0.0,619.9873146008608,0.0,0.0,0.0,1468.6105302860065,0.0,52.26688940545166,0,0,0,0,0,0,0,0,0.0299062227172652,0.0009462120404174117,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5308351413647773,-0.5308351413647773,-0.462268511570958,-0.462268511570958,-0.5443272906053248,-0.5443272906053248,0.5777406022094435,0.5777406022094435,-0.33501866161511357,-0.33501866161511357,-0.2566836863362152,-0.260958246815465,-0.3432151697446788,-0.3596914664586676,-0.229377308511681,-0.2423746686547033,-0.3129144797264369,-0.3503155869850987,-0.3914710729807804,-0.27691867232035877,10.895187945934538,10.895187945934538,9.460860240475725,9.460860240475725,11.201367159008385,11.201367159008385,11.993588229780045,11.993588229780045,7.334340753308268,7.334340753308268,6.367769684644145,6.413833472949179,7.450490703888676,7.692611321549066,6.091632472329138,6.219163032051156,7.035319310728823,7.553416073983868,8.19228488547816,6.592626464254906,90.78535933013069,90.78535933013069,0.0,100.87262147792299,0.0,90.78535933013069,100.87262147792299,0,0
+2017/04/21 00:00:00,39.33830591997386,0,538.7597928176128,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.578734187968828e-09,9.54098492097195,0,0,0.0,485.5242640487967,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.028683970432579982,0.0009075408301100941,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3375294641233965,-0.3375294641233965,-0.22973669275795044,-0.22973669275795044,-0.3702182951123833,-0.3702182951123833,0.5895441188031859,0.5895441188031859,0.05153934464815334,0.05153934464815334,-0.176119886762032,-0.10470117543980104,-0.32286135978507935,-0.29193388950104016,0.048532887089384906,-0.2035557626761684,-0.18823600387377296,-0.33715403096818547,-0.34365765270250226,-0.038311852586872155,7.369617325694293,7.369617325694293,6.095063465788357,6.095063465788357,7.853354439838654,7.853354439838654,12.285022562666185,12.285022562666185,5.054993374231785,5.054993374231785,5.642971546621865,5.227036905239743,7.167315509671582,6.770635937717998,5.048763962071348,5.85928319661879,5.734620603882988,7.364325499441989,7.45684217850193,5.030386155515714,39.33830591997386,39.33830591997386,0.0,43.70922879997096,0.0,39.33830591997386,43.70922879997096,0,0
+2017/04/21 01:00:00,23.72207750311167,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249820794338793,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2548831394464356,-0.2548831394464356,-0.17802471583678225,-0.17802471583678225,-0.3026599434370701,-0.3026599434370701,0.556925209324471,0.556925209324471,0.2899605641522706,0.2899605641522706,-0.17909888955423225,-0.08563827485862383,-0.3442310003342047,-0.30166955965614656,0.1665813809967295,-0.23102741788366554,-0.1896399943609469,-0.38017565073956994,-0.3785537736844297,0.04575015613256446,6.348596616644926,6.348596616644926,5.656974082007167,5.656974082007167,6.903626132894431,6.903626132894431,11.494374969842426,11.494374969842426,6.74669848403758,6.74669848403758,5.664937189883773,5.151865503017845,7.465084482739215,6.891142773329321,5.57513037971421,6.107430516736073,5.745637082835799,8.009749673129264,7.98398726166225,5.04333180558578,23.72207750311167,23.72207750311167,0.0,26.3578638923463,0.0,23.72207750311167,26.3578638923463,0,0
+2017/04/21 02:00:00,28.3445695124571,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5252064259842051,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.20964262183403434,-0.20964262183403434,-0.14804613089788488,-0.14804613089788488,-0.2634652725116042,-0.2634652725116042,0.5526917221888324,0.5526917221888324,0.37917877401844685,0.37917877401844685,-0.17671217929317806,-0.07720183255475536,-0.35006530081422216,-0.30354926824706596,0.19526442990831258,-0.25703491828419356,-0.2085850077917101,-0.41330857789396375,-0.408817003321706,0.07198615825647317,5.91153905801194,5.91153905801194,5.454147647487545,5.454147647487545,6.4412075954909795,6.4412075954909795,11.39514319314128,11.39514319314128,7.99390167013803,7.99390167013803,5.647309309107612,5.123410450403654,7.549751555825779,6.914871035531405,5.790595430635875,6.371525663099121,5.902348107860718,8.560649821389006,8.483216427588616,5.107295036012488,28.3445695124571,28.3445695124571,0.0,31.49396612495233,0.0,28.3445695124571,31.49396612495233,0,0
+2017/04/21 03:00:00,23.774893300384793,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5777978767070011,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.20281486876774943,-0.20281486876774943,-0.1477164547329149,-0.1477164547329149,-0.2584502996485229,-0.2584502996485229,0.5253052007512111,0.5253052007512111,0.422165705157614,0.422165705157614,-0.19185462779754467,-0.08942554265869124,-0.3694006442566657,-0.32144459434296985,0.2247076594696027,-0.2921968611450078,-0.2396004731166436,-0.4517621121422351,-0.4462872928266908,0.08864810080003847,5.853028436296796,5.853028436296796,5.452125334956648,5.452125334956648,6.386713962112111,6.386713962112111,10.771974118332153,10.771974118332153,8.71587739083958,8.71587739083958,5.76318173306818,5.1655996065462375,7.840699878940583,7.148258831908549,6.0475443884157585,6.773838337937519,6.191347251157751,9.258999985622438,9.155694327707081,5.162731762276678,23.774893300384793,23.774893300384793,0.0,26.41654811153866,0.0,23.774893300384793,26.41654811153866,0,0
+2017/04/21 04:00:00,40.43319114607686,0,140.57049650791868,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.28708783576973806,0.11314210185136053,0.524827658821643,0,0,51.84461522655836,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,134.79689759898935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,436.35898904884993,0.0,168.58724970650763,0.0,0.0,0,0,0,0,0,0,0,0,0.00748407735558549,0.00023679099069846924,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.18466686489609987,-0.18466686489609987,-0.1369255474129595,-0.1369255474129595,-0.24220273965696787,-0.24220273965696787,0.5043534601973891,0.5043534601973891,0.542671739638205,0.542671739638205,-0.2586152733549946,-0.15761007877486938,-0.4185359791152611,-0.38941325423820816,0.21850038484564294,-0.3540825932721225,-0.3010011878539763,-0.4564016841589352,-0.47125013753001704,0.09757031238573484,5.706985921064756,5.706985921064756,5.388428931051621,5.388428931051621,6.217429771846398,6.217429771846398,10.317148618752398,10.317148618752398,11.163373026114755,11.163373026114755,6.388489761168287,5.514785587584981,8.651857106482197,8.158624293144939,5.990354147273479,7.60889186322828,6.882741676130834,9.347554604256246,9.63719388717351,5.197151884290619,40.43319114607686,40.43319114607686,0.0,44.9257679400854,0.0,40.43319114607686,44.9257679400854,0,0
+2017/04/21 05:00:00,73.76130586004807,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.4501648764270856,0.0,0.5250979536651198,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.019225084347970562,0.019225084347970562,0.05953789779196886,0.05953789779196886,-0.03770548987485571,-0.03770548987485571,0.6674041982621424,0.6674041982621424,0.7663899288382751,0.7663899288382751,-0.2311615155996511,-0.13255076877320443,-0.40322348649126555,-0.36292768933814507,0.426229446155389,-0.33135422498196215,-0.27947053524576143,-0.4740216226145235,-0.47446020845490017,0.23075962833214303,5.007651111895328,5.007651111895328,5.0733899932675826,5.0733899932675826,5.029431861255901,5.029431861255901,14.358884969698309,14.358884969698309,17.373930673306788,17.373930673306788,6.108719378271331,5.363985925926059,8.387993756391396,7.741525369750775,8.788223197671243,7.283336037450127,6.622208536113575,9.692307543598176,9.701059595194835,6.104858952152455,73.76130586004807,73.76130586004807,0.0,81.95700651116452,0.0,73.76130586004807,81.95700651116452,0,0
+2017/04/21 06:00:00,86.1806512421598,0,709.8456060800519,0,0,0,0.0,0.0,11.110595677687485,0.0,73.80580873715317,0,0.7392387579785553,2.5204464533515096e-09,0.5250080668201265,0,0,0.0,479.15831474851495,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.037792705855074694,0.0011957348695654797,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.17237757516927302,0.17237757516927302,0.2058169351035384,0.2058169351035384,0.1167994145630458,0.1167994145630458,0.7862245519565921,0.7862245519565921,0.8478950197238692,0.8478950197238692,-0.1958806181276946,-0.09948314568512964,-0.367469822548823,-0.3273550781261798,0.5187064655575374,-0.2880575366404761,-0.23874997762444872,-0.4346032111604821,-0.43497848656046156,0.3330221260143766,5.615902489726835,5.615902489726835,5.878514425894707,5.878514425894707,5.2825700974895256,5.2825700974895256,18.02862302389184,18.02862302389184,20.170525481014764,20.170525481014764,5.795601230918706,5.2049612825812375,7.810930183267587,7.228322813700615,10.626678465237276,6.723769531270321,6.182884389843636,8.939534111735057,8.946385687051745,7.306480618033888,86.1806512421598,86.1806512421598,0.0,95.75627915795533,0.0,86.1806512421598,95.75627915795533,0,0
+2017/04/21 07:00:00,147.24667113895924,0,881.9100866543037,0,0,0,0.0,0.0,7.9533070238995,0.0,69.33401494192633,0,39.380909295966944,0.0694735625523399,27.07699111215983,0,0,32.54687568094822,583.1855671292745,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,336.62015981555174,0.0,2034.3353498406914,0.0,1535.4048053220645,0.0,1893.9675765004956,0.0,2371.1799243450114,0.0,574.4256757157154,0.0,2312.2708526696965,0.0,1704.9911241026077,0.0,1929.7038990261103,0.0,1939.7153907948746,0,0,0,0,0,0,0,0,0.046953546250155714,0.0014855774740333341,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.10707349316485625,-0.10707349316485625,-0.09898770254779488,-0.09898770254779488,-0.20567982311022565,-0.20567982311022565,0.8320644222076544,0.8320644222076544,0.4369393748935821,0.4369393748935821,-0.2873039647949006,-0.26413060667442295,-0.398182229673125,-0.2962628477232946,0.11585855951029943,-0.3360985525623213,-0.34579336718975334,-0.4330562524390076,-0.33838884313183404,-0.004889262433404103,5.237447148644279,5.237447148644279,5.202923995305994,5.202923995305994,5.877342198034739,5.877342198034739,19.605461940042673,19.605461940042673,8.982284904863704,8.982284904863704,6.714732252663779,6.448516781058643,8.303319922215252,6.823724648428424,5.278033364983841,7.349480328307152,7.487615595122193,8.911354427523904,7.381753025325409,5.000494843647743,147.24667113895924,147.24667113895924,0.0,163.60741237662137,0.0,147.24667113895924,163.60741237662137,0,0
+2017/04/21 08:00:00,162.75979487272573,0,902.9896021622187,0,0,0,0.5062426029677354,0.0,11.435487997441953,0.0,83.2008179303116,0,39.380909295966944,0.004149235875428078,25.372208474783527,0,0,2.265886672319583,581.3105428770019,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2031.2887944348672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,154.2752278055907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,679.508860697129,0.0,86.6397112661357,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04807583526953478,0.001521085916306509,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.23455341310211422,-0.23455341310211422,-0.3605348027024049,-0.3605348027024049,-0.39648704718447353,-0.39648704718447353,1.0398198405273409,1.0398198405273409,0.04918632553271926,0.04918632553271926,-0.18168619410399983,-0.31376993952657484,-0.37700459757951005,-0.16446361555686703,-0.0722792659304555,-0.21913357818172835,-0.36610214764560634,-0.4067931668002073,-0.1680110043576369,-0.1557914188081256,6.141571026965522,6.141571026965522,7.705314997461812,7.705314997461812,8.27509159908304,8.27509159908304,27.82601127188535,27.82601127188535,5.050086044216869,5.050086044216869,5.684315230439793,7.046506631913189,7.959484479026742,5.560582870422806,5.108170770349346,5.996114069430789,7.789939305904852,8.448608474513009,5.585056586521262,5.502961420507489,162.75979487272573,162.75979487272573,0.0,180.8442165252508,0.0,162.75979487272573,180.8442165252508,0,0
+2017/04/21 09:00:00,180.41536199119255,0,921.5903150849234,0,0,0,0.9808271232941819,0.0,11.287802377079139,0.0,106.27511244621549,0,39.380909295966944,0.00026228796550009816,20.77446085944417,0,0,0.14455480807564217,548.7970588951342,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4074.074804350926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04906615100321164,0.0015524188158130348,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2187914347012154,-0.2187914347012154,-0.3738466054088622,-0.3738466054088622,-0.4520141071815845,-0.4520141071815845,1.1313287853622598,1.1313287853622598,0.03917375792720955,0.03917375792720955,-0.07032927811229037,-0.2684227696692525,-0.2895911761514792,-0.08434152718511,-0.08991061824842785,-0.07505893682777046,-0.3308676492844732,-0.30448741515625677,-0.053935302049817856,-0.1651589180362968,5.992999632420634,5.992999632420634,7.909852725055771,7.909852725055771,9.263785978217712,9.263785978217712,31.962552727265034,31.962552727265034,5.031768830066881,5.031768830066881,5.102411654457654,6.49611734820526,6.742235889463473,5.147299736514,5.167401668112134,5.116652812217652,7.276606327854665,6.926769516187846,5.0602259596351615,5.565338474309087,180.41536199119255,180.41536199119255,0.0,200.46151332354728,0.0,180.41536199119255,200.46151332354728,0,0
+2017/04/21 10:00:00,211.22385455267133,0,994.5396958079205,0,0,0,1.179827070558984,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.00011049206788392853,18.596631826145945,0,0,0.059920234330413394,533.1051929105163,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4966.676646906959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05295003006699663,0.0016753020421041592,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.0637713062933984,0.0637713062933984,-0.33353046311428963,-0.33353046311428963,-0.3070901659491655,-0.3070901659491655,1.1200850901054156,1.1200850901054156,0.21753671655141157,0.21753671655141157,0.02976747038760687,-0.2856279962405148,-0.28127943536972005,-0.0341230447475536,-0.11722843603091415,0.06842225180414199,-0.31131954912439547,-0.27917582989554357,0.02299083413238248,-0.15269740627363404,5.084199715000906,5.084199715000906,7.313558019247438,7.313558019247438,6.9599750339331194,6.9599750339331194,31.438890403191877,31.438890403191877,5.981620255074262,5.981620255074262,5.018343490391885,6.69471898965493,6.6433442692016484,5.0241045534611,5.284651016395216,5.09693188428669,7.014544258811114,6.618778184301789,5.010942098056887,5.483162066025528,211.22385455267133,211.22385455267133,0.0,234.69317172519035,0.0,211.22385455267133,234.69317172519035,0,0
+2017/04/21 11:00:00,225.90369139976954,0,1075.7072529969496,0,0,0,1.1529856190710037,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.061321924879866e-05,20.80938709617733,0,0,0.011373327564753864,561.0857682374949,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4837.994338820939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.057271450933091266,0.0018120287860285654,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3739240754261669,0.3739240754261669,-0.2364996423741073,-0.2364996423741073,-0.08358401866091048,-0.08358401866091048,1.0687669167352016,1.0687669167352016,0.45921473149965747,0.45921473149965747,0.04136305479468875,-0.17765274360863337,-0.18880794477975318,-0.10045399376047076,-0.02573883779903707,0.11266749198333292,-0.20514490525514179,-0.1567203106839145,-0.04311204982405402,-0.0827949069736807,7.911065172126385,7.911065172126385,6.160638891904142,6.160638891904142,5.1446648707275955,5.1446648707275955,29.102930257651934,29.102930257651934,9.401697862452735,9.401697862452735,5.035419252818883,5.654227788909793,5.739098424776685,5.208983004908291,5.013714236135613,5.262920174353596,5.872776482331602,5.508983469068028,5.038478169769093,5.1419453898082566,225.90369139976954,225.90369139976954,0.0,251.00410155529948,0.0,225.90369139976954,251.00410155529948,0,0
+2017/04/21 12:00:00,205.09515323938152,0,1019.4135974247063,0,0,0,0.9882112955558734,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,1.1341458201906147e-05,18.595232720179492,0,0,0.006257475604358282,540.2875810297562,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4089.573691219761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05427433501333907,0.001717202127489738,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5423828943093285,0.5423828943093285,-0.1324678061761703,-0.1324678061761703,0.04277072496016947,0.04277072496016947,1.0233580470050763,1.0233580470050763,0.5889792821133685,0.5889792821133685,0.16914740045199791,-0.09032866345841739,-0.23909826707490983,-0.12160827070584543,0.1262984755979693,0.25570842882005446,-0.09591024205406011,-0.17767436616374122,-0.08523334302638569,0.0873817470758166,11.156756327086327,11.156756327086327,5.36353008439535,5.36353008439535,5.0378712564489945,5.0378712564489945,27.113436720732324,27.113436720732324,12.270938745005381,12.270938745005381,5.593007651690925,5.1689625432263,6.186346374371993,5.306332509387616,5.330434477310078,6.357367757387408,5.190497516331092,5.654387271429258,5.150432273765759,5.1581140975836774,205.09515323938152,205.09515323938152,0.0,227.8835035993128,0.0,205.09515323938152,227.8835035993128,0,0
+2017/04/21 13:00:00,202.49538331054617,0,961.9764458554906,0,0,0,0.9379663474863669,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.7479214638413685e-09,16.335192693683545,0,0,0.0,518.347039448689,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3865.1289013944497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05121633851971294,0.0016204492500307998,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6426194045789474,0.6426194045789474,0.03169302520325536,0.03169302520325536,0.13926852048321547,0.13926852048321547,1.010800557851915,1.010800557851915,0.6661867490554473,0.6661867490554473,0.24818644432826734,-0.10136817453588651,-0.19049268397240873,-0.09165350012387007,0.19060507372611996,0.35623109867847125,-0.08542360299145937,-0.12260687333243009,-0.051673809820226874,0.15707335886855864,13.670194376139833,13.670194376139833,5.020793510432,5.020793510432,5.401847122969343,5.401847122969343,26.576622336176115,26.576622336176115,14.324434339075111,14.324434339075111,6.278483504729024,5.2128057517602,5.752367951544116,5.173957051111927,5.75325738764225,7.640802770575419,5.151104839114737,5.311387498227404,5.0552807362598315,5.511281725102336,202.49538331054617,202.49538331054617,0.0,224.9948703450513,0.0,202.49538331054617,224.9948703450513,0,0
+2017/04/21 14:00:00,186.26282082168598,0,923.8709060413555,0,0,0,0.7725605792403816,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,7.837006948835162e-06,14.021401057698947,0,0,0.004323749369058917,515.727528397729,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3140.186800869075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04918757135498101,0.0015562604711060507,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5685501370274769,0.5685501370274769,0.16311314528906296,0.16311314528906296,0.10536376309156899,0.10536376309156899,0.992121085080574,0.992121085080574,0.6228395030506325,0.6228395030506325,0.1342436585172949,-0.11391382687030865,-0.15474452990206955,-0.06919641293151141,0.05373730292858712,0.24369895453469018,-0.08502287856058595,-0.11478472904773174,-0.01777240108842471,0.01581471623483777,11.770857194673823,11.770857194673823,5.551403758970437,5.551403758970437,5.22992096319993,5.22992096319993,25.789081205980565,25.789081205980565,13.139684617979185,13.139684617979185,5.373350102904496,5.268772584940876,5.496217479516105,5.09913822978983,5.059784529346601,6.23255511007244,5.149690035118965,5.272900377954571,5.006538516275512,5.005177361886666,186.26282082168598,186.26282082168598,0.0,206.9586898018733,0.0,186.26282082168598,206.9586898018733,0,0
+2017/04/21 15:00:00,179.59622810325556,0,903.7408956740227,0,0,0,0.7532441539679519,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,1.2694692234179035e-05,14.074762903543816,0,0,0.007005069512510682,495.5948367102527,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3056.1709791473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048115834692591335,0.0015223514701701204,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.48260104864837955,0.48260104864837955,0.3489535397965167,0.3489535397965167,0.12257548016791987,0.12257548016791987,0.9816310348490207,0.9816310348490207,0.6173715095068621,0.6173715095068621,0.03900515763396306,-0.05573830951083147,-0.13969582607835934,-0.07494098058649173,-0.030635240502352078,0.12384028191859009,-0.016842969818452697,-0.11498744789151215,-0.013818696810633121,-0.07282031700692836,9.86501746173613,9.86501746173613,7.533506115636371,7.533506115636371,5.311227953044735,5.311227953044735,25.3526403094167,25.3526403094167,12.996024411755442,12.996024411755442,5.031495939609414,5.064320428435636,5.404318927210909,5.116286365210385,5.019428609791547,5.317688303864287,5.005872509265998,5.2738657202938555,5.003952926485411,5.109796654870749,179.59622810325556,179.59622810325556,0.0,199.55136455917284,0.0,179.59622810325556,199.55136455917284,0,0
+2017/04/21 16:00:00,202.50246129812535,0,977.4680986793719,0,0,0,0.7423650085975257,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,7.626009203440291e-06,14.107402137484929,0,0,0.004207744888636313,516.0893082714095,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3009.769240587204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05204112559082691,0.0016465449380368314,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.38031641124308657,0.38031641124308657,0.49395331762134864,0.49395331762134864,0.12749012452910857,0.12749012452910857,0.9920911651183244,0.9920911651183244,0.6541292163863854,0.6541292163863854,0.08334108279808711,-0.0242466534402835,-0.1700131640017153,-0.1025928149152014,-0.07682003832803642,-0.023319991200296444,0.028762817811750142,-0.14576133626059917,-0.04738625783337937,-0.12411704843828658,8.011990852656126,8.011990852656126,10.098428643945894,10.098428643945894,5.336703799151962,5.336703799151962,25.787830387269324,25.787830387269324,13.986704511674944,13.986704511674944,5.14382489980288,5.012170149488895,5.599101319370277,5.217981088220569,5.122192519102754,5.011257662059478,5.017126153436891,5.4402251634567875,5.046486774843871,5.319110838605397,202.50246129812535,202.50246129812535,0.0,225.00273477569482,0.0,202.50246129812535,225.00273477569482,0,0
+2017/04/21 17:00:00,209.38594185376775,0,1001.6677086174927,0,0,0,0.7921340397398919,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,1.4877214437873721e-05,18.51929793227996,0,0,0.008210506700766102,540.2849154477183,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3224.5750019121115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05332953074874487,0.0016873091791408767,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3294705973674532,0.3294705973674532,0.49631120393960015,0.49631120393960015,0.16055923006901177,0.16055923006901177,0.9853499329938453,0.9853499329938453,0.6879788033701224,0.6879788033701224,-0.061585392643199205,0.019135309387375905,-0.12710175589404019,-0.04815272729732755,-0.010551857280533558,-0.06303429786151103,0.060759988450437376,-0.14836452122931282,-0.05477852968078415,-0.05895966283532598,7.25733987405971,7.25733987405971,10.14760648353895,10.14760648353895,5.534252695388005,5.534252695388005,25.506882904871915,25.506882904871915,14.950795432733784,14.950795432733784,5.0785253901226355,5.007579821098915,5.334654087916988,5.048002935382158,5.002304840225506,5.082264416098894,5.076434262059394,5.4561050257625965,5.0621240875274935,5.071971160697586,209.38594185376775,209.38594185376775,0.0,232.65104650418638,0.0,209.38594185376775,232.65104650418638,0,0
+2017/04/21 18:00:00,193.71224092649052,0,1007.2072958488477,0,0,0,0.652599863845334,0.0,17.31283737776841,0.0,110.93442390708215,0,39.380909295966944,1.8594381866650932e-05,25.431451887445785,0,0,0.010263113966183094,581.3128025843519,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2625.7128234353067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0536244624761514,0.0016966406134116465,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.16415962805205564,0.16415962805205564,0.23802409788290155,0.23802409788290155,0.06202429688366664,0.06202429688366664,0.9587403520739072,0.9587403520739072,0.6141074031869584,0.6141074031869584,-0.17136243647183527,-0.11985001936295661,-0.1254856313153221,-0.12282831642627003,0.014029906947985473,-0.17028023947000984,-0.09486663621633978,-0.2902571866377192,-0.05690923689224256,-0.03859518791509916,5.5585100441570745,5.5585100441570745,6.175685539734914,6.175685539734914,5.079648834777942,5.079648834777942,24.415027348792137,24.415027348792137,12.910885230168446,12.910885230168446,5.6086604899010695,5.297532861653025,5.3261919349674685,5.312514071748126,5.004074687031078,5.600987436953005,5.186372788897145,6.750286165920471,5.067051644084216,5.030837289237368,193.71224092649052,193.71224092649052,0.0,215.23582325165614,0.0,193.71224092649052,215.23582325165614,0,0
+2017/04/21 19:00:00,189.14822932521565,0,990.0791415480415,0,0,0,0.5363866709421549,0.0,20.44324822426402,0.0,101.68988858149199,0,39.380909295966944,5.407723938168314e-05,27.097742475311204,0,0,0.029856365367064933,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2137.7344645955004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052712546854238415,0.0016677882387919438,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.013636349324406154,0.013636349324406154,-0.04900034555920706,-0.04900034555920706,-0.03488740522464,-0.03488740522464,0.939852057386659,0.939852057386659,0.4974065411543658,0.4974065411543658,-0.11083256551042832,-0.07319529028413999,-0.155539774202645,-0.13471110016946536,-0.05486450964492065,-0.12523105663004966,-0.06935368955689902,-0.23282433177534764,-0.09342393691814165,-0.10984447233680607,5.003849290603625,5.003849290603625,5.049707955773371,5.049707955773371,5.025196597960544,5.025196597960544,23.656796058780884,23.656796058780884,10.170533349632677,10.170533349632677,5.254421346438306,5.1109305879893725,5.501336185575894,5.375956746952113,5.062319285870274,5.324868861731574,5.099589501737782,6.124763982931242,5.180745122066654,5.249902726751245,189.14822932521565,189.14822932521565,0.0,210.1646992502396,0.0,189.14822932521565,210.1646992502396,0,0
+2017/04/21 20:00:00,208.48638036287787,0,917.0712865781358,0,0,0,0.30211766828464165,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.00021241962885373765,23.025901270770476,0,0,0.11736367650157722,562.0503977761928,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1181.5620887206724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048825554578235716,0.001544806512636339,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2043735802575202,-0.2043735802575202,-0.3180432861761223,-0.3180432861761223,-0.24639853006272183,-0.24639853006272183,0.9145241633766306,0.9145241633766306,0.3092945065016711,0.3092945065016711,-0.1002160363010428,-0.08807758149124312,-0.22841779305336044,-0.14599633001527898,-0.0200078058498767,-0.08147553024386439,-0.08732798413615954,-0.2360596663044831,-0.1460124321292833,-0.08153438173106442,5.8662140257162605,5.8662140257162605,7.1028556696601015,7.1028556696601015,6.260083221893709,6.260083221893709,22.662311371774805,22.662311371774805,6.9883218703591865,6.9883218703591865,5.207993650307927,5.160643171231058,6.082498646023936,5.441647079708929,5.008286813664441,5.1374561712393785,5.157919527224337,6.156314390113053,5.441744595641097,5.1376548767812125,208.48638036287787,208.48638036287787,0.0,231.65153373653095,0.0,208.48638036287787,231.65153373653095,0,0
+2017/04/21 21:00:00,195.65157019936365,0,900.8321561754161,0,0,0,0.0975669223023832,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.00019572653437652346,25.37385770113444,0,0,0.10826087397847993,581.3107226885406,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,375.4596707640825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04796097124716278,0.0015174516987054873,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3405691116228692,-0.3405691116228692,-0.47557941101212314,-0.47557941101212314,-0.3693586512338785,-0.3693586512338785,0.892077760637767,0.892077760637767,0.12773646320531756,0.12773646320531756,-0.16598487393543135,-0.1810370854508282,-0.27397145108332577,-0.23877862920265394,-0.1014036105856771,-0.11524216737478199,-0.19348668759029553,-0.31086097564962356,-0.22828638461316134,-0.14995637410783177,7.412682375716145,7.412682375716145,9.72343105152649,9.72343105152649,7.840050733768251,7.840050733768251,21.80256387440717,21.80256387440717,5.338007162684633,5.338007162684633,5.571013891717797,5.679427363362379,6.55880293121794,6.183168993236308,5.212954629952449,5.275081108876236,5.7762423276829225,7.0085909620165125,6.0812507481557105,5.465954620304501,195.65157019936365,195.65157019936365,0.0,217.39063355484848,0.0,195.65157019936365,217.39063355484848,0,0
+2017/04/21 22:00:00,139.68742283567406,0,709.6813209340576,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.00833237552588711,20.780155585909768,0,0,4.63826512676699,545.3364695008421,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,576.6219483066884,0.0,0.0,0.0,0.0,0.0,88.23342208545017,0.0,0.0,0.0,534.2528860640066,0.0,395.87455263463687,0,0,0,0,0,0,0,0,0.03778395919221485,0.001195458131249521,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3954010115853776,-0.3954010115853776,-0.4467996759180902,-0.4467996759180902,-0.5755577532913243,-0.5755577532913243,0.7283700281961225,0.7283700281961225,-0.1474419535022034,-0.1474419535022034,-0.17990364851215768,-0.2837246155669319,-0.3237156758663376,-0.3358081098144565,-0.2227193276885452,-0.2003171383452252,-0.31737806911147404,-0.35765471493393736,-0.3486259486697608,-0.2582173987037596,8.257071430034813,8.257071430034813,9.165307927284772,9.165307927284772,11.94035504376835,11.94035504376835,16.165989260655095,16.165989260655095,5.450444931378982,5.450444931378982,5.67093462043745,6.672133898405804,7.178847898460958,7.345403586871953,6.029049254113886,5.832111333861647,7.094033174669406,7.662055403616904,7.528729265828176,6.384208934648555,139.68742283567406,139.68742283567406,0.0,155.2082475951934,0.0,139.68742283567406,155.2082475951934,0,0
+2017/04/21 23:00:00,90.83822500990784,0,593.3581763486335,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.06112472346390423,11.83414402515137,0,0,33.7107652868526,506.4118822929646,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1049.0626977477534,0.0,0.0,0.0,1590.3375899961259,0.0,114.70416916368748,0.0,0.0,0.0,1296.7320530469458,0.0,252.24180328485232,0.0,1652.2317866820688,0.0,41.24330612654505,0,0,0,0,0,0,0,0,0.031590828813158195,0.0009995118030241513,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5619592578440028,-0.5619592578440028,-0.5030704425637509,-0.5030704425637509,-0.6217995752892288,-0.6217995752892288,0.513301470146226,0.513301470146226,-0.397877882244406,-0.397877882244406,-0.22213737651848695,-0.33613653950067957,-0.3788652078648841,-0.37967484410264285,-0.27229200296252243,-0.26298462624751756,-0.3762891276234412,-0.42065048603190097,-0.4061807640871854,-0.3107223529069229,11.613383128753767,11.613383128753767,10.28991340818115,10.28991340818115,13.112262756739625,13.112262756739625,10.509071129966216,10.509071129966216,8.29824285058099,8.29824285058099,6.023667390010729,7.350013789218892,7.98892547226059,8.00178271977137,6.539692651826172,6.435938936912308,7.948202706717382,8.689083604882896,8.438170846425294,7.006793084801771,90.83822500990784,90.83822500990784,0.0,100.93136112211982,0.0,90.83822500990784,100.93136112211982,0,0
+2017/04/22 00:00:00,40.73188159384042,0,523.7071252900797,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.5787412055478347e-09,9.54624752646161,0,0,0.0,470.4715965212635,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027882555263802927,0.0008821846128024425,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.35067826099544647,-0.35067826099544647,-0.3563910625939669,-0.3563910625939669,-0.4010234686608419,-0.4010234686608419,0.5583518171661745,0.5583518171661745,-0.01772782056247244,-0.01772782056247244,-0.12208217913658116,-0.17928834524921455,-0.33636803201277926,-0.27774978547366486,0.0077249362548657075,-0.18120033294137583,-0.2586914862128722,-0.41131417035513146,-0.33166387950802495,-0.07354872032612056,7.558730825285764,7.558730825285764,7.643186509800174,7.643186509800174,8.350908145470669,8.350908145470669,11.527989318214182,11.527989318214182,5.006505754352915,5.006505754352915,5.308726295879751,5.666346666977745,7.3532660259484,6.602230859696348,5.001235298200044,5.6806549810724505,6.389310513284329,8.526160163520743,7.287624024899287,5.11200471032943,40.73188159384042,40.73188159384042,0.0,45.257646215378244,0.0,40.73188159384042,45.257646215378244,0,0
+2017/04/22 01:00:00,23.722142409878646,0,48.169266297249386,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250469862008531,0,0,0.0,12.67891378470525,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0025645674169622323,8.114112542173127e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.28732613475318736,-0.28732613475318736,-0.30906564267652814,-0.30906564267652814,-0.3852713273433389,-0.3852713273433389,0.49641559331916874,0.49641559331916874,0.21196721744039898,0.21196721744039898,-0.16751720183510185,-0.21024748344574568,-0.3949925359027697,-0.3204342250663455,0.11709008864809366,-0.2330352868839505,-0.2932945206275175,-0.48265606864913896,-0.38179628996594933,-0.003949595941906574,6.714997785630729,6.714997785630729,6.985369216952904,6.985369216952904,8.091421672831515,8.091421672831515,10.149789257852305,10.149789257852305,5.931904985729076,5.931904985729076,5.581618365719606,5.91681651455292,8.250306803146614,7.134720493304073,5.2839791429857,6.126807792827265,6.7872368921063355,9.86613529993096,8.035604574236444,5.000322913703727,23.722142409878646,23.722142409878646,0.0,26.357936010976275,0.0,23.722142409878646,26.357936010976275,0,0
+2017/04/22 02:00:00,28.344447747694772,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.525084661221875,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2595763663343073,-0.2595763663343073,-0.28697884554833936,-0.28697884554833936,-0.37211582836236173,-0.37211582836236173,0.46453613130899085,0.46453613130899085,0.3023314806562998,0.3023314806562998,-0.19319888319377324,-0.22415920045963336,-0.42544858619067194,-0.3442630551680021,0.14531182114030258,-0.27272952114627,-0.3248142773344608,-0.5294397825698551,-0.4202599771339594,0.0077012814880753335,6.3988578640468035,6.3988578640468035,6.710840633118423,6.710840633118423,7.882831881093566,7.882831881093566,9.50505179074753,9.50505179074753,6.899481404407979,6.899481404407979,5.773931081926179,6.042426160639636,8.774266747154911,7.465545707513201,5.437511611508199,6.544659679330792,7.193723369918814,10.86397275380908,8.68219415049461,5.0012277444730415,28.344447747694772,28.344447747694772,0.0,31.49383083077197,0.0,28.344447747694772,31.49383083077197,0,0
+2017/04/22 03:00:00,23.722267645530977,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251722218531861,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2634078160588815,-0.2634078160588815,-0.29544277477412884,-0.29544277477412884,-0.3832167046487187,-0.3832167046487187,0.40896966589869965,0.40896966589869965,0.3715820862223493,0.3715820862223493,-0.23294397003546233,-0.2578165033197732,-0.46884511583511934,-0.38217104529741663,0.18569052092861674,-0.324377884230938,-0.37116473833522867,-0.585161775170147,-0.470672593776277,0.019987262383192646,6.440577268251374,6.440577268251374,6.813606795005526,6.813606795005526,8.058357394335772,8.058357394335772,8.485834098311159,8.485834098311159,7.874524885577827,7.874524885577827,6.1259228527473795,6.379902343995511,9.589636028790977,8.041599202667925,5.714857338433433,7.187808318991472,7.868037876631689,12.17611481886432,9.625750561435524,5.0082698047494745,23.722267645530977,23.722267645530977,0.0,26.358075161701084,0.0,23.722267645530977,26.358075161701084,0,0
+2017/04/22 04:00:00,38.02763688370128,0,149.4348632901665,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,0.26066268025997896,0.12528944895377675,0.5777863424244416,0,0,60.7089820088062,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,176.3582223054765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,718.635315111218,0.0,61.94240034445116,0.0,0.0,0,0,0,0,0,0,0,0,0.007956022808967936,0.00025172301587037167,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.20645084061325233,-0.20645084061325233,-0.24090477579215847,-0.24090477579215847,-0.32725947407311723,-0.32725947407311723,0.42824284484070413,0.42824284484070413,0.5063040009401909,0.5063040009401909,-0.2595977582612248,-0.2827725575053736,-0.47159776444305174,-0.4079378346580044,0.18994744316150017,-0.36193419040712826,-0.4070199813883976,-0.5318318328056221,-0.49218319149100737,0.03999029956521723,5.883944175756525,5.883944175756525,6.204384730777946,6.204384730777946,7.227015964958227,7.227015964958227,8.824329740555356,8.824329740555356,10.358689969051781,10.358689969051781,6.399089078608924,6.660894348372295,9.644088622321092,8.468160945373114,5.74806048666585,7.726461633816712,8.452478316588753,10.917536278730935,10.061667368940675,5.033107114040533,38.02763688370128,38.02763688370128,0.0,42.2529298707792,0.0,38.02763688370128,42.2529298707792,0,0
+2017/04/22 05:00:00,73.08056611440871,0,212.9421150752648,0,0,0,0.42253131574260505,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,0.26905432047022726,0.0,0.5249732889961395,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,1358.9233024554314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.050681054376243054,0.050681054376243054,0.014314431917141,0.014314431917141,-0.06745315394730626,-0.06745315394730626,0.6604037709033588,0.6604037709033588,0.762894606240483,0.762894606240483,-0.20138173693209455,-0.2236143201359924,-0.43185974795560383,-0.34957466154102895,0.30713105089516046,-0.33459386928984747,-0.3803352472480006,-0.569600671755476,-0.47633259511412995,0.14796213661962,5.053176795164788,5.053176795164788,5.004241632789444,5.004241632789444,5.094204987502351,5.094204987502351,14.161667882890043,14.161667882890043,17.260296778981214,17.260296778981214,5.840994845946554,6.037353816421287,8.88962915983879,7.542575683232897,6.960498924602476,7.3283989283489035,8.012290822452485,11.796131430689229,9.738516663470634,5.453631976860194,73.08056611440871,73.08056611440871,0.0,81.20062901600967,0.0,73.08056611440871,81.20062901600967,0,0
+2017/04/22 06:00:00,90.00171172766572,0,706.7951169738362,0,0,0,0.0,0.0,8.33396954093373,0.0,80.56906512710079,0,0.5737932230298303,2.520453429124318e-09,0.5248838340809528,0,0,0.0,476.10782564229925,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03763029555554215,0.0011905963208975873,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.22325806877770302,0.22325806877770302,0.18368116993111863,0.18368116993111863,0.10723654209334862,0.10723654209334862,0.8157089273318415,0.8157089273318415,0.86360462750013,0.86360462750013,-0.15858802819734696,-0.18284699079499242,-0.38849156787395706,-0.30791296468627666,0.38298092212162704,-0.3037550829971212,-0.35132320981633347,-0.5471417446377035,-0.4478738661502539,0.23286213942008216,6.034044166407128,6.034044166407128,5.6994477640698165,5.6994477640698165,5.238171225636307,5.238171225636307,19.032684757256447,19.032684757256447,20.74158231670735,20.74158231670735,5.521200785172056,5.693100030472451,8.14360656319515,6.970531806806122,8.05457456434904,6.917478188390135,7.568195950968928,11.266230179362651,9.18549909059844,6.1251301398179265,90.00171172766572,90.00171172766572,0.0,100.00190191962858,0.0,90.00171172766572,100.00190191962858,0,0
+2017/04/22 07:00:00,118.78340479506991,0,762.8655001466661,0,0,0,0.0,0.0,6.039267856855606,0.0,69.33401494192633,0,39.380909295966944,0.07223772952512429,0.5249997683416289,0,0,33.14191784504893,463.54593845753624,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,325.1519827456835,0.0,2089.4542889364984,0.0,1540.0205828819048,0.0,1178.580297738499,0.0,1747.572297183067,0.0,284.5010014669409,0.0,2132.918043954844,0.0,1869.5801880175559,0.0,926.2471251976258,0.0,1663.2875214585956,0,0,0,0,0,0,0,0,0.04061552428737024,0.0012850468770965499,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.025586244308836974,0.025586244308836974,-0.04994356256173745,-0.04994356256173745,-0.14806164990211165,-0.14806164990211165,1.0759009525978567,1.0759009525978567,0.5205619462532286,0.5205619462532286,-0.2464751416322551,-0.28937211619947467,-0.4116141912780599,-0.20942722420275042,0.10264171470262486,-0.32977631242564953,-0.3944107523846701,-0.4964259509023559,-0.26618588636490326,-0.011356219593775052,5.013552102851506,5.013552102851506,5.051640265877651,5.051640265877651,5.454242956303446,5.454242956303446,29.42222018549684,29.42222018549684,10.667343317237837,10.667343317237837,6.2608689135623905,6.739592136992428,8.531337591465402,5.909663397871128,5.218189031687345,7.261548849187548,8.240684400882316,10.150005859831978,6.471213258072751,5.002669629024325,118.78340479506991,118.78340479506991,0.0,131.98156088341102,0.0,118.78340479506991,131.98156088341102,0,0
+2017/04/22 08:00:00,142.93533906831817,0,788.5967554853064,0,0,0,0.7803224263249976,0.0,11.763618543777666,0.0,87.89947186453183,0,39.380909295966944,0.012073584576707012,0.5249619512993569,0,0,6.445208598576108,462.7383742738332,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3193.9583798192416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,687.4083335086736,0.0,442.8377401581058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1073.0345114111801,0.0,844.9793775698588,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04198547538091182,0.0013283911747615199,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.15891035534286324,-0.15891035534286324,-0.372278244748113,-0.372278244748113,-0.40881397200379005,-0.40881397200379005,1.1431025770163388,1.1431025770163388,0.11467245012877315,0.11467245012877315,-0.18977967337664928,-0.3572562105267482,-0.4203122095021789,-0.13847346137237865,-0.13063236868509837,-0.24852452465206648,-0.414042206290817,-0.46547404712196716,-0.14328552697030492,-0.18410229928142732,5.523323934043134,5.523323934043134,7.885362089622689,7.885362089622689,8.4831644603711,8.4831644603711,32.51531356253433,32.51531356253433,5.272366443078141,5.272366443078141,5.746737585246606,7.65609758627329,8.683115267996115,5.397268221090229,5.353518416643524,6.2819779546774726,8.573379467393352,9.523394720887396,5.425384061573894,5.702663409697877,142.93533906831817,142.93533906831817,0.0,158.81704340924242,0.0,142.93533906831817,158.81704340924242,0,0
+2017/04/22 09:00:00,183.91636627210138,0,935.3863119837955,0,0,0,1.1503910783105564,0.0,11.393746067737203,0.0,106.27511244621549,0,39.380909295966944,0.0013883080120330965,23.140837674018478,0,0,0.762139165990983,561.9754714360911,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4834.771001314144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,263.4304607273134,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04980066009689446,0.001575658171542086,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.21799403575476128,-0.21799403575476128,-0.22792429457664573,-0.22792429457664573,-0.5512261556812927,-0.5512261556812927,1.1577267444436126,1.1577267444436126,-0.02512141543771942,-0.02512141543771942,-0.025919172726830347,-0.36566813209044174,-0.36066631384330944,-0.016469546882753,-0.15527943680523787,-0.054261551844162724,-0.40935119472960796,-0.40639326866576597,0.01018554789417765,-0.17030719753461307,5.985760167267372,5.985760167267372,6.077815968877658,6.077815968877658,11.3609717685584,11.3609717685584,33.208055288313744,33.208055288313744,5.013064155943141,5.013064155943141,5.013907088239577,7.783294759193808,7.707298757742905,5.005614995711454,5.499657585156527,5.0609568624324055,8.492380451255329,8.441790898453803,5.0021475913703455,5.60117798320907,183.91636627210138,183.91636627210138,0.0,204.35151808011264,0.0,183.91636627210138,204.35151808011264,0,0
+2017/04/22 10:00:00,209.8414710820303,0,1007.0777789220621,0,0,0,1.258202495604322,0.0,15.099896736033342,0.0,131.64086955684016,0,39.380909295966944,0.0001322981092967278,20.745473098249015,0,0,0.07288244380515721,545.6303138151832,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5326.924442071701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05361756689903529,0.0016964224421583064,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.0221538498272832,0.0221538498272832,-0.2945625888035104,-0.2945625888035104,-0.4344957881610993,-0.4344957881610993,1.1333659898257717,1.1333659898257717,0.10303007102390213,0.10303007102390213,0.01053849452853466,-0.3485245020471975,-0.30166613533441866,0.0037409256815035233,-0.17965354321650423,0.021327750872727605,-0.39532533438901857,-0.3405047954125613,0.05587000846355169,-0.21798037115054864,5.010159885744486,5.010159885744486,6.802778900036145,6.802778900036145,8.937573954181786,8.937573954181786,32.05787564426437,32.05787564426437,5.2198440191077395,5.2198440191077395,5.002299006245892,7.527250922613888,6.891099683187832,5.000289693845957,5.669067826357448,5.0094162900345225,8.255817627264932,7.4117670936635704,5.064624783760323,5.9856363405472734,209.8414710820303,209.8414710820303,0.0,233.15719009114477,0.0,209.8414710820303,233.15719009114477,0,0
+2017/04/22 11:00:00,214.99446332211866,0,1091.609586279352,0,0,0,1.066095523377914,0.0,14.932575465546352,0.0,136.4899973586286,0,39.380909295966944,4.662916412768417e-05,23.124839049434637,0,0,0.025698813059091958,576.973776034403,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4414.940556731343,0.0,18.73138851297118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05811810293601065,0.0018388162652358056,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.25680877276066794,0.25680877276066794,-0.2776502958094347,-0.2776502958094347,-0.3006197507931839,-0.3006197507931839,1.065241400380481,1.065241400380481,0.26862432015821974,0.26862432015821974,0.10119518248928737,-0.29768709175360747,-0.2894599660610273,-0.054890460487728665,-0.22156698964559518,0.031649372970800865,-0.3304800224276493,-0.2952351854265997,-0.0047048650447099665,-0.26100870711478635,6.369106729671984,6.369106729671984,6.601079616315246,6.601079616315246,6.8779556699774105,6.8779556699774105,28.94580671382151,28.94580671382151,6.498371638241679,6.498371638241679,5.212079705199116,6.841364152798178,6.740652120691948,5.062378261651432,6.018406246407892,5.020736267627257,7.271252345073918,6.811050117157947,5.000458221653915,6.414381838314739,214.99446332211866,214.99446332211866,0.0,238.88273702457627,0.0,214.99446332211866,238.88273702457627,0,0
+2017/04/22 12:00:00,203.18950272671933,0,1041.1204369311165,0,0,0,0.9204928921048867,0.0,14.988232461786234,0.0,124.80122689546741,0,39.380909295966944,3.2724812760481964e-05,23.098608456580994,0,0,0.016699946932519704,561.9839780648381,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3786.2854767921554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05543002322706108,0.0017537672969907645,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.46800906446622115,0.46800906446622115,-0.2789491056965065,-0.2789491056965065,-0.16312055639179623,-0.16312055639179623,1.0079919913242203,1.0079919913242203,0.3946395821180071,0.3946395821180071,0.150062972132017,-0.24022922020222331,-0.2741116672976046,-0.05304593620246222,-0.14189512443684482,0.09263556971824367,-0.2094451643281444,-0.21822324752391584,-0.006211978746515603,-0.17010483219476621,9.573162005433872,9.573162005433872,6.616141621790334,6.616141621790334,5.551453924571035,5.551453924571035,26.457368398640767,26.457368398640767,8.244467401157635,8.244467401157635,5.466617965612144,6.1976231297919355,6.5604038149178905,5.058255895879867,5.417161248687492,5.177706362361803,5.909819544471517,5.987838418230751,5.000798806354112,5.599748355322234,203.18950272671933,203.18950272671933,0.0,225.76611414079923,0.0,203.18950272671933,225.76611414079923,0,0
+2017/04/22 13:00:00,198.5510923042322,0,985.343694962947,0,0,0,0.8709583117333924,0.0,14.932575391494975,0.0,122.5097643007467,0,39.380909295966944,3.863900818339724e-05,20.856846365281942,0,0,0.02130310534227311,541.692985450803,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3567.606039121384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05246042817047112,0.001659811379378766,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5628918247701592,0.5628918247701592,-0.1276428793480619,-0.1276428793480619,-0.07315160744432112,-0.07315160744432112,0.9908612116097923,0.9908612116097923,0.4715551163829082,0.4715551163829082,0.16714813832182657,-0.13317390009096558,-0.23229426190898977,-0.03160837817988642,-0.07633937002833799,0.20069325318425132,-0.08375319045641727,-0.16546405767432348,0.021791178031259316,-0.0942307219702945,11.635550262827152,11.635550262827152,5.337511718776881,5.337511718776881,5.110798189459885,5.110798189459885,25.73644116985281,25.73644116985281,9.643242472271936,9.643242472271936,5.579055310790537,5.367418897716831,6.119636713699663,5.0206825814768905,5.120667772601806,5.835244397954213,5.145251242128367,5.567431877034323,5.009829954689167,5.183881575657537,198.5510923042322,198.5510923042322,0.0,220.61232478248024,0.0,198.5510923042322,220.61232478248024,0,0
+2017/04/22 14:00:00,182.36228376646162,0,948.3221231797428,0,0,0,0.8187046632348342,0.0,14.876918321203716,0.0,108.75639138185811,0,39.380909295966944,2.0040496766047586e-05,18.529340063701248,0,0,0.011049525632715513,540.1720197598526,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3338.878364498013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050489372266608296,0.001597448544519848,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5663450211533726,0.5663450211533726,0.12584698311645307,0.12584698311645307,0.006472735166976694,0.006472735166976694,0.9774880815256418,0.9774880815256418,0.5254957851909965,0.5254957851909965,0.17668896672653267,-0.151835422334589,-0.3474812044373573,-0.19116008542225943,-0.06145456036282152,0.2264822555527664,-0.0714911474225559,-0.14517188997703012,-0.1512171585393955,-0.07613704753608591,11.717961231442672,11.717961231442672,5.328074575616668,5.328074575616668,5.000867276001813,5.000867276001813,25.181437075619883,25.181437075619883,10.776198544665206,10.776198544665206,5.647139031993618,5.4777170385810905,7.512072733694566,5.757657408259732,5.078192048845892,6.0641913651843,5.105824151217064,5.436668617110769,5.473830614660031,5.120028842553609,182.36228376646162,182.36228376646162,0.0,202.6247597405129,0.0,182.36228376646162,202.6247597405129,0,0
+2017/04/22 15:00:00,179.92801550009628,0,948.3110285769874,0,0,0,0.7677431283310601,0.0,14.876918321203716,0.0,106.31215624428707,0,39.380909295966944,8.041320601011025e-06,18.590280468986865,0,0,0.004432886997176675,540.1675417957327,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3117.6580531206228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05048878158173975,0.0015974298556623487,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4789332911435102,0.4789332911435102,0.36917229023778375,0.36917229023778375,0.033541421869393635,0.033541421869393635,0.9589023994169592,0.9589023994169592,0.5566973817508195,0.5566973817508195,0.10521566769484057,-0.0519155971927413,-0.3787739533998541,-0.24271259692196306,-0.07652333866822547,0.15314708737823104,0.010904311079411304,-0.1464696090585669,-0.21700526713645008,-0.09209109702796481,9.790794391915085,9.790794391915085,7.837170797003282,7.837170797003282,5.023289797391911,5.023289797391911,24.42159313911347,24.42159313911347,11.489014970252043,11.489014970252043,5.229274763656022,5.055799338317129,7.987478080422463,6.222573391735963,5.1212502149636805,5.486014920164578,5.002461385402441,5.444517806580919,5.97682028136586,5.175622750161395,179.92801550009628,179.92801550009628,0.0,199.9200172223292,0.0,179.92801550009628,199.9200172223292,0,0
+2017/04/22 16:00:00,191.5757181089395,0,979.5842299254148,0,0,0,0.808596175867833,0.0,14.876918321203716,0.0,120.17895923267236,0,39.380909295966944,2.7479287877892095e-09,16.33033508048064,0,0,0.0,518.209647262341,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3294.6461414011637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05215378998579875,0.0016501095609601788,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4393517615073525,0.4393517615073525,0.6212101692451579,0.6212101692451579,0.11776664649206374,0.11776664649206374,0.9624000785556374,0.9624000785556374,0.6654384663135285,0.6654384663135285,0.05359320923809198,0.0873379635279858,-0.36588140376582,-0.24314963491663277,-0.04523180583813325,0.08678786196176122,0.1739379766773166,-0.30572042366165547,-0.22711783055471202,-0.06642929858721516,9.026676592694614,9.026676592694614,13.096741541537057,13.096741541537057,5.287272359169862,5.287272359169862,24.56356167626376,24.56356167626376,14.303291743931496,14.303291743931496,5.059464300022981,5.157955634003571,7.786558831765916,6.226991076241717,5.042355377883325,5.155971455725108,5.627118226872042,6.942464334766996,6.070185627122754,5.0913663020026405,191.5757181089395,191.5757181089395,0.0,212.86190900993276,0.0,191.5757181089395,212.86190900993276,0,0
+2017/04/22 17:00:00,213.97448082591308,0,1001.5455103093032,0,0,0,0.7487136402467668,0.0,16.90307355543791,0.0,138.40412594678773,0,39.380909295966944,5.8561068028175185e-06,18.537652531366852,0,0,0.003227957457612505,540.1676996887719,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3035.601539354242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05332302482030375,0.0016871033361000058,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3536386454666661,0.3536386454666661,0.5344489763263272,0.5344489763263272,0.11621794518817412,0.11621794518817412,0.9535283840130551,0.9535283840130551,0.6797985636178363,0.6797985636178363,-0.05483306453966887,0.00879330972723813,-0.299842557554411,-0.17995771480496645,-0.08840681107400002,-0.035977208699912035,0.0941075578219121,-0.2979559275431635,-0.16396376814933766,-0.1193545306276565,7.60232256914324,7.60232256914324,10.976424025557534,10.976424025557534,5.279761954484329,5.279761954484329,24.20439956933987,24.20439956933987,14.71326495445112,14.71326495445112,5.062247861241232,5.0016006157476625,6.868223027332633,5.671338516269472,5.16184678661925,5.026795446770834,5.1834010162969975,6.8447033481267425,5.557176557800389,5.295076257911248,213.97448082591308,213.97448082591308,0.0,237.7494231399034,0.0,213.97448082591308,237.7494231399034,0,0
+2017/04/22 18:00:00,202.69903498841134,0,1007.1683716064522,0,0,0,0.6860726186450984,0.0,17.073973916819753,0.0,120.14191543460078,0,39.380909295966944,1.1633159172282526e-05,25.416152089219516,0,0,0.004907215022540422,581.2792342409,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2767.281027091559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05362239012065481,0.0016965750455282854,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2707950216018174,0.2707950216018174,0.3971564607496106,0.3971564607496106,0.11328828980667084,0.11328828980667084,0.9416076261987554,0.9416076261987554,0.659538036432949,0.659538036432949,-0.05664009408963217,-0.006154093938322456,-0.18913289106859332,-0.07924568372818068,0.00342338258647384,-0.05453515072399429,0.06123447442633424,-0.30093531580011196,-0.05441762360662454,-0.03321695968625068,6.522758837121046,6.522758837121046,8.28622404665822,8.28622404665822,5.265827186658498,5.265827186658498,23.72667560926348,23.72667560926348,14.137425782351073,14.137425782351073,5.0664188336816665,5.000783988724976,5.741648571498743,5.130033168791272,5.000242600638003,5.061573210523662,5.077632902831809,6.8819147201003545,5.06130807207289,5.022841367909834,202.69903498841134,202.69903498841134,0.0,225.2211499871237,0.0,202.69903498841134,225.2211499871237,0,0
+2017/04/22 19:00:00,195.9960837994088,0,971.6852554836645,0,0,0,0.521051043176526,0.0,19.824230540335805,0.0,110.89738010901058,0,39.380909295966944,2.3533902978297732e-05,25.37248927701594,0,0,0.012978487269757498,581.2783993584094,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2073.476125650206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05173324273569693,0.0016368037391125724,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.0934294848589952,0.0934294848589952,0.054515282752808224,0.054515282752808224,0.007927951709455669,0.007927951709455669,0.9173668970251477,0.9173668970251477,0.5485151706657455,0.5485151706657455,-0.17259446615501806,-0.006763333822056179,-0.21630653556409773,-0.14202368155561013,-0.009070427320945653,-0.1835070930428506,0.05672304110647191,-0.22324839674591376,-0.12209289127437652,-0.05404871902848127,5.180766597980934,5.180766597980934,5.061528348644529,5.061528348644529,5.001301080159067,5.001301080159067,22.77264857217874,22.77264857217874,11.298007338552836,11.298007338552836,5.6174553639112474,5.0009468983841145,5.970527443676758,5.417918157082198,5.001703091323151,5.698120716896582,5.066613539293428,6.033954385377612,5.3087805124677345,5.060479549485095,195.9960837994088,195.9960837994088,0.0,217.77342644378757,0.0,195.9960837994088,217.77342644378757,0,0
+2017/04/22 20:00:00,197.27076355151277,0,916.978828557543,0,0,0,0.2921231798757939,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,0.00016559452413322627,23.092419756164944,0,0,0.09137606703434421,561.9839273650673,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1141.2129053244919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0488206320447351,0.0015446507671076685,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1411309603067978,-0.1411309603067978,-0.24666126086571213,-0.24666126086571213,-0.23041983096054863,-0.23041983096054863,0.8851692676103068,0.8851692676103068,0.35055819244846814,0.35055819244846814,-0.12014734255319168,-0.1653862810640707,-0.3191787020090517,-0.21425219836095694,-0.07554989723226777,-0.14670072961871608,-0.12630974045223842,-0.27669122714218547,-0.19272951025118848,-0.09947560885137759,5.412676259621804,5.412676259621804,6.262778690921763,6.262778690921763,6.101600231885541,6.101600231885541,21.542078954223925,21.542078954223925,7.556970679480742,7.556970679480742,5.299011870421438,5.5668979239276695,7.11795752450567,5.9521443525631526,5.118184244925857,5.445923083080729,5.330493465830074,6.590003169447741,5.770169156404151,5.204930214418255,197.27076355151277,197.27076355151277,0.0,219.18973727945863,0.0,197.27076355151277,219.18973727945863,0,0
+2017/04/22 21:00:00,192.99061080167735,0,900.8133437428897,0,0,0,0.11834622348594485,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,0.00022164607785188012,25.375508779677197,0,0,0.12243429026792133,581.2777368397246,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,455.97493249176347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047959969659320575,0.0015174200091643243,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.31856735573424144,-0.31856735573424144,-0.4559024043329737,-0.4559024043329737,-0.39019015648191196,-0.39019015648191196,0.8591453944230822,0.8591453944230822,0.19711263725307354,0.19711263725307354,-0.12505070708350863,-0.1893489100242593,-0.3523465108713206,-0.2718620367252945,-0.10206131942878557,-0.14238467818555028,-0.15300125850179286,-0.3151133451595082,-0.25456357639870214,-0.13051997686778313,7.109819387696874,7.109819387696874,9.337980465031265,9.337980465031265,8.17131114060146,8.17131114060146,20.57844533723761,20.57844533723761,5.805657526154221,5.805657526154221,5.323933181138202,5.743346308319403,7.583249999079385,6.534819218689947,5.2157273383881915,5.4200472820553784,5.485088833893627,7.064137636828505,6.345208007877105,5.3529099109703395,192.99061080167735,192.99061080167735,0.0,214.43401200186372,0.0,192.99061080167735,214.43401200186372,0,0
+2017/04/22 22:00:00,138.2762436542794,0,700.0144443124603,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,0.0002271186382837262,18.552652532442846,0,0,0.12560689950082685,540.182251106511,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03726928752056106,0.0011791742783141441,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5465133233249319,-0.5465133233249319,-0.4700227904293783,-0.4700227904293783,-0.6109530908580966,-0.6109530908580966,0.7000198812402243,0.7000198812402243,-0.09554843575787623,-0.09554843575787623,-0.18994686370021016,-0.27331734740434627,-0.38094069385776097,-0.3354269442931007,-0.16292244279763526,-0.21831357076467192,-0.2540777782511069,-0.3753389928361487,-0.3284995558749471,-0.2279735256412212,11.25171756522083,11.25171756522083,9.612892687586466,9.612892687586466,12.829049173825638,12.829049173825638,15.305695269743168,15.305695269743168,5.1890624013941675,5.1890624013941675,5.7480559154629844,6.551345814912409,8.021940833021475,7.340058867929173,5.550113685236852,5.988657978861298,6.340064889094407,7.933254419092975,7.243997222385872,6.078282650853822,138.2762436542794,138.2762436542794,0.0,153.6402707269771,0.0,138.2762436542794,153.6402707269771,0,0
+2017/04/22 23:00:00,92.99974618444966,0,554.1384146002173,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.010429983430757314,14.04635993972634,0,0,5.868403809044584,495.0344820223565,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,251.09404162897422,0.0,154.57843236229326,0.0,847.1716340956909,0.0,0.0,0.0,0.0,0.0,154.39630513641026,0.0,74.1562274575388,0.0,784.4605648880214,0.0,290.06669537523004,0,0,0,0,0,0,0,0,0.029502739647333524,0.0009334461173356737,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5714080827729513,-0.5714080827729513,-0.5414734845687939,-0.5414734845687939,-0.6402463870492696,-0.6402463870492696,0.4802098351685255,0.4802098351685255,-0.391001534406271,-0.391001534406271,-0.2305684829836834,-0.3495027708594358,-0.43798952227500193,-0.4002159948419105,-0.26157678144983604,-0.274416656029123,-0.35925341295231605,-0.44496616624649454,-0.4168568545735402,-0.3225700449329278,11.839726974010986,11.839726974010986,11.135947711808925,11.135947711808925,13.605652615617856,13.605652615617856,9.816561503957558,9.816561503957558,8.184588513235,8.184588513235,6.103025236575348,7.541525101940579,9.001578529203954,8.337348549496383,6.42056264616312,6.5638888094296135,7.6860246115407875,9.130958737188735,8.62243218947168,7.1633901328284395,92.99974618444966,92.99974618444966,0.0,103.33305131605518,0.0,92.99974618444966,103.33305131605518,0,0
+2017/04/23 00:00:00,43.03858126156292,0,545.306868803862,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.6360859111371396e-09,11.852947194126768,0,0,0.0,492.0713400350458,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02903254160755072,0.0009185693791120161,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3136457178701983,-0.3136457178701983,-0.35390116163848245,-0.35390116163848245,-0.45041668593878403,-0.45041668593878403,0.48826451471462756,0.48826451471462756,-0.024140173963111605,-0.024140173963111605,-0.13664795023919443,-0.22170182637900074,-0.4420760307286232,-0.3302832232176956,-0.00981701390367676,-0.19306657922329118,-0.2467321270952191,-0.4583898163733731,-0.36211552765129656,-0.11003926913890075,7.044880193371,7.044880193371,7.606206124942105,7.606206124942105,9.233493333806166,9.233493333806166,9.98076715705946,9.98076715705946,5.012063490681655,5.012063490681655,5.386854267445969,6.019648724939344,9.077108055706319,7.268536553569675,5.0019949936975365,5.772869761470645,6.26350623494838,9.3857852619129,7.729207988302647,5.250790337069986,43.03858126156292,43.03858126156292,0.0,47.820645846181016,0.0,43.03858126156292,47.820645846181016,0,0
+2017/04/23 01:00:00,23.72296285363225,0,51.06042769629628,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5258674299544602,0,0,0.0,15.57007518375214,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0027184949913500113,8.601128657899033e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.293550683742816,-0.293550683742816,-0.33598955897594196,-0.33598955897594196,-0.45577907743340734,-0.45577907743340734,0.40657806906347344,0.40657806906347344,0.19992202489856462,0.19992202489856462,-0.18967018500945798,-0.2624851056732518,-0.5123635077253019,-0.3852424678060911,0.09927828362410605,-0.24981203562448798,-0.28323679713672256,-0.5416735358253689,-0.4209030929402182,-0.050171499818350854,6.790371065860143,6.790371065860143,7.347950041817327,7.347950041817327,9.33561721339322,9.33561721339322,8.44494057674629,8.44494057674629,5.82882638222398,5.82882638222398,5.745874879727893,6.430473691069679,10.488790679543769,8.090955998676435,5.204117643902805,6.295329850071383,6.666370165511864,11.140522100623613,8.693543641546782,5.052112756441019,23.72296285363225,23.72296285363225,0.0,26.358847615146942,0.0,23.72296285363225,26.358847615146942,0,0
+2017/04/23 02:00:00,28.34423089462954,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248678081566432,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2861102927222917,-0.2861102927222917,-0.3305925014870772,-0.3305925014870772,-0.4561026962724268,-0.4561026962724268,0.3617495944089594,0.3617495944089594,0.2869613564488845,0.2869613564488845,-0.22304488769111452,-0.28830803985136677,-0.5535034464275889,-0.41793505093399214,0.1247176431842786,-0.2976071495468012,-0.3218347702803804,-0.5968110193431048,-0.46842289621535654,-0.03980898765257936,6.700466092197402,6.700466092197402,7.272805272639459,7.272805272639459,9.341819954129363,9.341819954129363,7.723667364001571,7.723667364001571,6.710631418177925,6.710631418177925,6.032066213558181,6.726779023028172,11.41410957662012,8.641312575291153,5.3222087498492385,6.8403717840458285,7.153498534623282,12.467452739034584,9.581312612683249,5.0328075647994694,28.34423089462954,28.34423089462954,0.0,31.49358988292171,0.0,28.34423089462954,31.49358988292171,0,0
+2017/04/23 03:00:00,23.722054323761252,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249589000834624,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.30168102983157197,-0.30168102983157197,-0.3484420977063034,-0.3484420977063034,-0.47539770996172015,-0.47539770996172015,0.29392922656271675,0.29392922656271675,0.353075098962661,0.353075098962661,-0.2630711673313851,-0.32437025054497004,-0.6005311581956493,-0.45774050139835004,0.16317437668332246,-0.34928101374061754,-0.3692027528270222,-0.6573209724705973,-0.5210215053242814,-0.0301021778909489,6.89128711252701,6.89128711252701,7.526050397476695,7.526050397476695,9.719795402645332,9.719795402645332,6.7950076389156635,6.7950076389156635,7.593995598772821,7.593995598772821,6.436886848923891,7.1877049207442525,12.561731036418095,9.37328059119723,5.55181830169667,7.538285817940761,7.837641450564561,14.075492128530186,10.677438067164047,5.018758337371594,23.722054323761252,23.722054323761252,0.0,26.357838137512502,0.0,23.722054323761252,26.357838137512502,0,0
+2017/04/23 04:00:00,38.10231855503917,0,169.21484813633882,0,0,0,0.0,0.0004255668591949871,4.633261998087618,9.319298099999997,23.111338313975452,0,0.3429780849030765,0.1699430699443924,0.5250734212694346,0,0,80.48896685497851,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,640.0856990632501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.42556685919498705,840.7664507218692,0.0,77.52056439689217,0.0,0.0,0,0,0,0,0,0,0,0,0.009009123853344793,0.0002850423988424736,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.25963314267743715,-0.25963314267743715,-0.3081019850138696,-0.3081019850138696,-0.43145049275653813,-0.43145049275653813,0.3069572143077441,0.3069572143077441,0.46841001236466046,0.46841001236466046,-0.2833602013309148,-0.34406100038848203,-0.5483160807996387,-0.4776987999773148,0.15522012538991897,-0.37923939171049714,-0.3985740441716931,-0.5836995544101449,-0.5324779528335257,-0.01150508094005986,6.399471573209723,6.399471573209723,6.9729610450395825,6.9729610450395825,8.882212306311686,8.882212306311686,6.958271909920043,6.958271909920043,9.581058747996252,9.581058747996252,6.667827277303999,7.4626391483216,11.29339590043665,9.76594297452219,5.499275552630564,7.994864138186571,8.30986193817455,12.139961893157121,10.932046900567542,5.002740077047221,38.10231855503917,38.10231855503917,0.0,42.335909505599076,0.0,38.10231855503917,42.335909505599076,0,0
+2017/04/23 05:00:00,73.34467911030035,0,260.9102803959844,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,0.8147377162047986,0.1409590784390445,0.5249751264567489,0,0,47.968165320719606,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,421.83213637760696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,643.778825517545,0.0,55.31848087696738,0.0,0.0,0,0,0,0,0,0,0,0,0.013891056586266302,0.0004395033475242813,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.027927056739433034,-0.027927056739433034,-0.07962096424809006,-0.07962096424809006,-0.19542025209723146,-0.19542025209723146,0.5026463932819359,0.5026463932819359,0.7518460371314633,0.7518460371314633,-0.2746129035485817,-0.3350414292012707,-0.5419176467608122,-0.4684725348126759,0.1694996874247692,-0.38170964557709347,-0.4010310638512242,-0.5711810969969974,-0.5348513264343859,0.06422115339553518,5.016145309735151,5.016145309735151,5.131268019400892,5.131268019400892,5.791859802144941,5.791859802144941,10.280927561087807,10.280927561087807,16.9045388106603,16.9045388106603,6.566133331084089,7.334659433485768,11.146106310727362,9.58229076345637,5.595483447492342,8.034219454228236,8.35103582100659,11.834244196894915,10.985503521813513,5.0853920255431575,73.34467911030035,73.34467911030035,0.0,81.49408790033372,0.0,73.34467911030035,81.49408790033372,0,0
+2017/04/23 06:00:00,90.91610081678878,0,724.9906422642795,0,0,0,0.0,0.0,8.33396954093373,0.0,80.56906512710079,0,1.409217029653112,0.07862395809114948,0.5252251610100029,0,0,21.218641666617216,473.08470926612523,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,132.01183245629682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,352.242515935338,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03859903879955224,0.0012212466818683223,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.12510264159725362,0.12510264159725362,0.07125859314169995,0.07125859314169995,-0.03616531036179311,-0.03616531036179311,0.6305386038536548,0.6305386038536548,0.8245789669020959,0.8245789669020959,-0.2349711242676772,-0.29612475760424634,-0.5298602706964074,-0.4282769211409339,0.18941169902896235,-0.3483089834943693,-0.368969182062007,-0.5574922323228781,-0.512331449210818,0.13709959995143292,5.324202486587723,5.324202486587723,5.1051366422084214,5.1051366422084214,5.027076388005838,5.027076388005838,13.344161967328134,13.344161967328134,19.3419236774362,19.3419236774362,6.145650085583171,6.822018937555995,10.873370504350149,8.82494233241303,5.74384014555892,7.524111704776487,7.834033743112116,11.507724842812095,10.488098188764567,5.389417875370043,90.91610081678878,90.91610081678878,0.0,101.01788979643197,0.0,90.91610081678878,101.01788979643197,0,0
+2017/04/23 07:00:00,115.27633645891945,0,732.2052289224021,0,0,0,0.0,0.0,5.983737561587482,0.0,69.33401494192633,0,39.380909295966944,2.6843466337992246e-05,0.5776478159723573,0,0,0.00666220836749776,466.0209228699535,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.038983148737123115,0.0012333996525463518,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2143759878236085,-0.2143759878236085,-0.2529916695967214,-0.2529916695967214,-0.34103192451976166,-0.34103192451976166,0.7158847393885496,0.7158847393885496,0.30211610391602484,0.30211610391602484,-0.5091680489349023,-0.7073858233264779,-0.8076808972876185,-0.7177478191516952,-0.46041932241388306,-0.6133816007555309,-0.7757786276440268,-0.8517017813861347,-0.772851184920689,-0.46658005732206415,5.95324706919493,5.95324706919493,6.328602214333728,6.328602214333728,7.419273834288077,7.419273834288077,15.78285203809429,15.78285203809429,6.896766135977813,6.896766135977813,10.419984674859634,15.5258858348097,18.755657128908496,15.839598550981634,9.424987032961852,12.892016630833695,17.681740337177928,20.307963774687764,17.585360565185965,9.545073787680977,115.27633645891945,115.27633645891945,0.0,128.08481828768828,0.0,115.27633645891945,128.08481828768828,0,0
+2017/04/23 08:00:00,146.7225695468933,0,781.9401867929942,0,0,0,0.3691922420766938,0.0,9.530259310631308,0.0,96.91714705112861,0,39.380909295966944,2.520461242761901e-09,0.525061644569324,0,0,0.0,462.52701418009696,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1452.6004830817333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0416310747331683,0.0013171781853045447,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2788337341462796,-0.2788337341462796,-0.473801628570292,-0.473801628570292,-0.47616495168261114,-0.47616495168261114,0.9341123893040176,0.9341123893040176,0.014209004816246054,0.014209004816246054,-0.6987112851111728,-0.9105985913085646,-0.9386009345537174,-0.781202258830811,-0.5497460050071992,-0.8231791379914141,-1.0220555736108954,-1.0193535059167584,-0.8600115925387022,-0.5858468124054002,6.614800805006524,6.614800805006524,9.687920650136604,9.687920650136604,9.735156797156321,9.735156797156321,23.429185794686873,23.429185794686873,5.00417938228324,5.00417938228324,15.266822284987157,22.510480709978935,23.60707036844248,17.861266092718736,11.326554800101803,19.292901230702626,27.057484544229865,26.94160924912886,20.61006997981565,12.193084054236863,146.7225695468933,146.7225695468933,0.0,163.0250772743259,0.0,146.7225695468933,163.0250772743259,0,0
+2017/04/23 09:00:00,149.20967861552484,0,840.6661190032705,0,0,0,0.7373926887547836,0.0,9.332689672910613,0.0,97.06762091869685,0,39.38090929596693,0.02101606815978731,0.5250654695019535,0,0,5.519008533053079,462.49840908850405,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2987.4496791791903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,733.4282992631631,0.0,455.03230421620026,0.0,85.36671998827184,0.0,33.94210469397764,0.0,54.34879360018119,0.0,1205.145118226893,0.0,674.8368663327667,0.0,133.6785237490989,0.0,10.685234223400927,0,0,0,0,0,0,0,0,0.04475768686273291,0.001416102013655533,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2315377336760045,-0.2315377336760045,-0.619254344990526,-0.619254344990526,-0.5100569474933312,-0.5100569474933312,1.0333979377165063,1.0333979377165063,0.006955912330015713,0.006955912330015713,-0.3246656003523356,-0.559255116524898,-0.5911886332268301,-0.3812934305944385,-0.3378380760567857,-0.4048529225847905,-0.6194762063701582,-0.6307503744572313,-0.4441016384893605,-0.39163999497840757,6.112339373177235,6.112339373177235,13.045345550405486,13.045345550405486,10.43908049164105,10.43908049164105,27.54684249109684,27.54684249109684,5.00100158999787,5.00100158999787,7.1917072342899075,11.549318876445398,12.326106247437906,8.027570199554745,7.373971772244971,8.415594619811586,13.05116737215397,13.349822641581525,9.114812714197072,8.195056050237014,149.20967861552484,149.20967861552484,0.0,165.78853179502758,0.0,149.20967861552484,165.78853179502758,0,0
+2017/04/23 10:00:00,201.44414720089048,0,1023.2920694018051,0,0,0,1.0591448289042789,0.0,13.065493553185489,0.0,124.87761316689259,0,39.380909295966944,1.1292675899293667e-05,23.060975063265246,0,0,0.0010578144953642592,561.916428924236,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4407.664054591874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05448082773420986,0.0017237354132407898,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1384137366339588,0.1384137366339588,-0.40795104635282237,-0.40795104635282237,-0.2732628923110121,-0.2732628923110121,1.0554062981484353,1.0554062981484353,0.2531713244722934,0.2531713244722934,-0.13826661815689467,-0.4629146109739004,-0.46268330982613687,-0.19087139649505935,-0.318430330944244,-0.11991271397855648,-0.4890993425149966,-0.4792780570350312,-0.15568019449428153,-0.3455087422958037,5.396925316696667,5.396925316696667,8.468386946458097,8.468386946458097,6.550725812129556,6.550725812129556,28.50982056295814,28.50982056295814,6.330494848622081,6.330494848622081,5.396081281838988,9.473428913580861,9.468927309936333,5.7553671343911645,7.107997509678555,5.297844424993173,9.997946414730635,9.797746581870143,5.502242758128546,7.4835032501751755,201.44414720089048,201.44414720089048,0.0,223.82683022321163,0.0,201.44414720089048,223.82683022321163,0,0
+2017/04/23 11:00:00,219.8042334322569,0,1076.528149005008,0,0,0,1.0127992234359529,0.0,13.065493553185489,0.0,143.25325374857618,0,39.380909295966944,8.77244278026481e-06,23.09176883864938,0,0,0.0,561.9180375731179,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4197.756472741217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05731515604460345,0.0018134115852918352,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4366959906710923,0.4366959906710923,-0.21508327488234286,-0.21508327488234286,-0.058902130684118,-0.058902130684118,1.0265748244289152,1.0265748244289152,0.5020573984806576,0.5020573984806576,-0.06610044343555582,-0.3635334631690824,-0.3471531592581588,-0.12046618303829473,-0.19966331651078742,0.01875608652294397,-0.3762693081314058,-0.373859847784163,-0.08334203026981972,-0.22964027833128206,8.97782013883139,8.97782013883139,5.9595598919588895,5.9595598919588895,5.07183075019465,5.07183075019465,27.251894054849274,27.251894054849274,10.268459318010088,10.268459318010088,5.090463755646638,7.750730932192468,7.507309803488013,5.300601997410766,5.82667903187226,5.007282360150143,7.947890497147867,7.91005995715031,5.143828171010128,6.094142478377435,219.8042334322569,219.8042334322569,0.0,244.226926035841,0.0,219.8042334322569,244.226926035841,0,0
+2017/04/23 12:00:00,196.63068189678728,0,1019.1756955387631,0,0,0,0.9055844125778075,0.0,12.935301236479537,0.0,124.80122689546741,0,39.380909295966944,3.77935081670233e-06,18.607656276944706,0,0,0.0,540.0559366194173,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3719.865560431891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054261668940715935,0.0017168013817809229,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6288170655640927,0.6288170655640927,-0.1077874813810669,-0.1077874813810669,0.06563511007736675,0.06563511007736675,0.98641432529646,0.98641432529646,0.6148721346691499,0.6148721346691499,0.10010707671639021,-0.26201665513239825,-0.31404190712773283,-0.20795581696050247,-0.05926172365445848,0.15679686309047858,-0.2574420347396749,-0.3631698261684242,-0.1786391325967533,-0.07846821675441383,13.298217073266002,13.298217073266002,5.240626036007342,5.240626036007342,5.089194302513718,5.089194302513718,25.551126752451154,25.551126752451154,12.930790597594608,12.930790597594608,5.207541414127135,6.4253579257715785,7.050069794773279,5.896902482439856,5.072710607958101,5.509481365269963,6.375885749345045,7.745203094893483,5.6615230055663375,5.127493517596676,196.63068189678728,196.63068189678728,0.0,218.47853544087474,0.0,196.63068189678728,218.47853544087474,0,0
+2017/04/23 13:00:00,196.51691852789543,0,983.683176576951,0,0,0,0.9768574283385046,0.0,12.88660173648153,0.0,124.7641830973959,0,39.380909295966944,2.8024599696662967e-09,18.508366966910007,0,0,0.0,540.0537701701495,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3959.6387936388664,0.0,0.0,0.0,0.0,0.0,0.0,61.397995342141904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05237202094164366,0.0016570142362835872,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7445703374947964,0.7445703374947964,0.11578226004054361,0.11578226004054361,0.22481109149803388,0.22481109149803388,0.9984923676797035,0.9984923676797035,0.7226616878158805,0.7226616878158805,0.24503079888180862,-0.1539298261553942,-0.23465407198957516,-0.11025114700124322,0.06528876154525015,0.322216481286287,-0.12111425206667285,-0.20836218217585722,-0.0798819468013048,0.056794317039462965,16.673118714936848,16.673118714936848,5.277667066924252,5.277667066924252,6.048511031042622,6.048511031042622,26.05621300578146,26.05621300578146,15.98998437542852,15.98998437542852,6.246097926961184,5.491000840576177,6.142553317606939,5.251757568266825,5.08825527220371,7.158630805551638,5.303847080115887,5.900417664700214,5.132130218786287,5.066781076540437,196.51691852789543,196.51691852789543,0.0,218.35213169766158,0.0,196.51691852789543,218.35213169766158,0,0
+2017/04/23 14:00:00,178.20106326978504,0,902.9635022894345,0,0,0,0.8121881023994427,0.0,12.88660173648153,0.0,111.01081017850728,0,39.380909295966944,6.827431182626442e-06,14.110547128998604,0,0,0.0019039602800458733,494.822544434897,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3311.7242507620804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04807444569297539,0.0015210419510727849,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7058797855359241,0.7058797855359241,0.2708446128615977,0.2708446128615977,0.2054764320554373,0.2054764320554373,0.9874268898526828,0.9874268898526828,0.7030704524610051,0.7030704524610051,0.17811374531322327,-0.0714412026992338,-0.20060056571432447,-0.08687716595152435,-0.0173613879651176,0.270013054691512,-0.06861025381174715,-0.1476636527074283,-0.04274316954498664,-0.02561358941027925,15.48067536346872,15.48067536346872,6.5233182999387935,6.5233182999387935,5.875604771697965,5.875604771697965,25.593256601442135,25.593256601442135,15.3966021530116,15.3966021530116,5.657632248459393,5.10567630869005,5.8344717551933485,5.156292715468794,5.006239583486106,6.513950791375038,5.097465402616322,5.451801855134832,5.037822470393593,5.013581086595451,178.20106326978504,178.20106326978504,0.0,198.00118141087225,0.0,178.20106326978504,198.00118141087225,0,0
+2017/04/23 15:00:00,175.89849788899957,0,923.9333167758724,0,0,0,0.7841939529539017,0.0,12.935301171685163,0.0,108.75639138185811,0,39.380909295966944,6.111451798031783e-06,14.041695975083645,0,0,0.0,515.7942628816149,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3190.2704112898955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049190894148714734,0.0015563656019836074,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5924014472873153,0.5924014472873153,0.4493086225486183,0.4493086225486183,0.1864685461068173,0.1864685461068173,0.9848556956638824,0.9848556956638824,0.6605593843489903,0.6605593843489903,0.07133580759181138,-0.06098149522033203,-0.19246385338992594,-0.14896201977397136,-0.1166155110781787,0.1425718319091062,0.008736913400941744,-0.12833005807952427,-0.10493629065070924,-0.12929970050366063,12.356480278892889,12.356480278892889,9.212545091872855,9.212545091872855,5.7208692471734395,5.7208692471734395,25.486353610075497,25.486353610075497,14.166028778307975,14.166028778307975,5.105364665575095,5.076992668657738,5.768044052931998,5.459789679775895,5.281680436716826,5.421153232423194,5.001580150260281,5.341158203736796,5.2280582091250665,5.346336970602508,175.89849788899957,175.89849788899957,0.0,195.44277543222174,0.0,175.89849788899957,195.44277543222174,0,0
+2017/04/23 16:00:00,190.383153682642,0,956.2222335450643,0,0,0,0.7978076237192586,0.0,11.27624695113195,0.0,124.87761316689259,0,39.380909295966944,6.208810147743006e-06,14.050570436121061,0,0,0.0,494.84765088199066,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3249.8137249563933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050909979994122424,0.001610756279830624,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4959035647839655,0.4959035647839655,0.291380820630992,0.291380820630992,0.21015557188545678,0.21015557188545678,0.9870613159873379,0.9870613159873379,0.7230559752446468,0.7230559752446468,-0.025149900825782036,-0.1365250106675812,-0.1964746626810182,-0.1428827257268006,-0.11137791936214775,0.015700911178550044,-0.14905271493370148,-0.16039547824291406,-0.1026624640870919,-0.13908889158756843,10.139087286701013,10.139087286701013,6.763910340255222,6.763910340255222,5.916013593444106,5.916013593444106,25.57804160783806,25.57804160783806,16.002096339795244,16.002096339795244,5.013093800698712,5.386157919872048,5.800442167883546,5.422993624353921,5.256932655424578,5.005103115035666,5.4603502781920525,5.53316227868828,5.218277297222613,5.400810304807763,190.383153682642,190.383153682642,0.0,211.53683742515776,0.0,190.383153682642,211.53683742515776,0,0
+2017/04/23 17:00:00,199.64595190613727,0,1001.442288307258,0,0,0,0.7904382128366707,0.0,11.471581269908235,0.0,129.38645076019097,0,39.380909295966944,1.1218977875149751e-05,18.616561148256537,0,0,0.003129911257947805,540.0645757329262,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3218.2277648068202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05331752920445764,0.0016869294586453953,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4227028894712391,0.4227028894712391,0.24196851789942872,0.24196851789942872,0.2032298301613504,0.2032298301613504,0.9860126098904494,0.9860126098904494,0.7355163979523792,0.7355163979523792,-0.09049361485657367,-0.09123877160023829,-0.2186264017273461,-0.15227527487684211,-0.1097950088794194,-0.0736342198760946,-0.08548179463876683,-0.1591253141927292,-0.12633442054726363,-0.14269698960362867,8.72540012237991,8.72540012237991,6.215070520160168,6.215070520160168,5.8565287863404905,5.8565287863404905,25.53442344483102,25.53442344483102,16.388307724483383,16.388307724483383,5.169580425046192,5.172385733506545,5.991499136623489,5.480491656448237,5.249677592664568,5.112265333156287,5.151310845344355,5.524742261099178,5.330622721831119,5.421893642155112,199.64595190613727,199.64595190613727,0.0,221.82883545126361,0.0,199.64595190613727,221.82883545126361,0,0
+2017/04/23 18:00:00,194.61730560385794,0,987.8020570426266,0,0,0,0.6680779740899287,0.0,15.864717049567478,0.0,115.6330778413024,0,39.380909295966944,1.754100103044425e-05,23.070505901930165,0,0,0.004894928091873539,561.9129319640052,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2692.6190216773357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052591313188518445,0.0016639524901153999,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.26622827305834645,0.26622827305834645,0.022500688252577866,0.022500688252577866,0.08927891135706144,0.08927891135706144,0.9621388266027044,0.9621388266027044,0.6451285663448025,0.6451285663448025,-0.07846983792036784,-0.13635300016532237,-0.2447944395668138,-0.18644088721750313,-0.1361670525207265,-0.0780671801949037,-0.1117297069722669,-0.17802073382702874,-0.1738237247053575,-0.17340181570919516,6.471683206832509,6.471683206832509,5.01048050757457,5.01048050757457,5.165056791065098,5.165056791065098,24.55294109383877,24.55294109383877,13.73870463050207,13.73870463050207,5.127498787170936,5.385184682791376,6.243689075801697,5.7206550896480906,5.384133973803046,5.126193302817015,5.258559162599724,5.6569446520117594,5.626293568322268,5.623252993322566,194.61730560385794,194.61730560385794,0.0,216.24145067095327,0.0,194.61730560385794,216.24145067095327,0,0
+2017/04/23 19:00:00,182.04710858535543,0,952.311554295484,0,0,0,0.517531065360421,0.0,14.962211832420806,0.0,104.13412371906301,0,39.380909295966944,3.124161727233309e-05,23.052301430926953,0,0,0.008721390321458368,561.9089552671772,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2060.2412415648887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05070177253420858,0.0016041687409315216,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1162553907482984,0.1162553907482984,-0.15179973421082654,-0.15179973421082654,-0.02198375814380016,-0.02198375814380016,0.940896524630337,0.940896524630337,0.5388594335741236,0.5388594335741236,-0.10854456416010468,-0.17361344497004028,-0.23748026786836068,-0.17788789764503007,-0.17231020386252666,-0.12301592492275834,-0.1252316548726316,-0.19267032208866272,-0.17086143894413394,-0.21578119283200575,5.279942370531231,5.279942370531231,5.477492269048682,5.477492269048682,5.010004471183521,5.010004471183521,23.698355833131345,23.698355833131345,11.07633396290828,11.07633396290828,5.244019918790443,5.6247772152768505,6.170306646826987,5.655963273727252,5.615420530926599,5.313470109447778,5.32487196775422,5.769695429472662,5.605102216550591,5.965809629491218,182.04710858535543,182.04710858535543,0.0,202.27456509483937,0.0,182.04710858535543,202.27456509483937,0,0
+2017/04/23 20:00:00,198.19796204145715,0,895.0238644195655,0,0,0,0.3451032008165559,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,0.00018184811652926036,18.602479972492027,0,0,0.05083656963651268,540.0695027244876,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1354.6706925673607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047651733491840875,0.001507667631683599,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.08956583504222515,-0.08956583504222515,-0.37285586076108523,-0.37285586076108523,-0.19745370045505317,-0.19745370045505317,0.9149783932165616,0.9149783932165616,0.36965238860642485,0.36965238860642485,-0.13257263004818437,-0.18484895510940064,-0.25531163841074306,-0.2155727905557108,-0.12056198164562358,-0.1568234397511191,-0.19280307715044556,-0.2224338021601922,-0.21322255248875205,-0.16662087917803736,5.16611979097766,5.16611979097766,7.8943696123919835,7.8943696123919835,5.808452653511495,5.808452653511495,22.679919891534638,22.679919891534638,7.84459302134843,7.84459302134843,5.364106091290509,5.708382906281102,6.3531471099104095,5.9639412857825675,5.301080591352957,5.509654276744243,5.770758171157283,6.026406950243398,5.9429971344562915,5.575403479930998,198.19796204145715,198.19796204145715,0.0,220.21995782384127,0.0,198.19796204145715,220.21995782384127,0,0
+2017/04/23 21:00:00,186.65766530737972,0,883.0320541698585,0,0,0,0.0651917033468914,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,0.005903652070481659,23.024602042276523,0,0,1.7041023835786455,561.9147791733827,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,250.26495299421174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,316.88533981033726,0.0,0.0,0.0,406.4286082121333,0.0,0.0,0.0,0.0,0.0,172.39820631067107,0.0,0.0,0.0,352.34548585904537,0.0,389.1260227037354,0,0,0,0,0,0,0,0,0.04701328063173267,0.0014874674282281302,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.29471076274599023,-0.29471076274599023,-0.37389929585826565,-0.37389929585826565,-0.3760836186103204,-0.3760836186103204,0.8860136160063202,0.8860136160063202,0.13969263460972067,0.13969263460972067,-0.14894792855000524,-0.3122414888506167,-0.3355781500298443,-0.3279060011048756,-0.2185862207908573,-0.18112323412491502,-0.32881491779316896,-0.34173092933715615,-0.33914301165170485,-0.26195231533716024,6.804599418723271,6.804599418723271,7.9106773308340195,7.9106773308340195,7.944966208713609,7.944966208713609,21.57381045180574,21.57381045180574,5.404300437587466,5.404300437587466,5.459702610855828,7.026540013996538,7.342178342970541,7.235861146784117,5.991133980394039,5.680075060936346,7.2483260849587055,7.429246429211389,7.392428839054574,6.424656017477886,186.65766530737972,186.65766530737972,0.0,207.39740589708856,0.0,186.65766530737972,207.39740589708856,0,0
+2017/04/23 22:00:00,130.88463920041258,0,714.5714851055277,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,0.04753376737118256,18.605245356134553,0,0,14.790278404300704,540.0746203947784,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1377.9221317479464,0.0,242.29518452553904,0.0,1454.9395209705715,0.0,154.50990183319817,0.0,0.0,0.0,1359.7538035788266,0.0,60.68042770802653,0.0,1418.9519817208015,0.0,76.3126084559985,0,0,0,0,0,0,0,0,0.03804431515488112,0.0012036956124252052,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3420914234173626,-0.3420914234173626,-0.5210765363597859,-0.5210765363597859,-0.457304991844382,-0.457304991844382,0.696240989450053,0.696240989450053,-0.1587107591866668,-0.1587107591866668,-0.22217739924267352,-0.37851696050292444,-0.40222988354395617,-0.38817040559854704,-0.29941012628583624,-0.2339077893990636,-0.4009845020156199,-0.4166062961365781,-0.4131548105790679,-0.3292128941006291,7.434397657184007,7.434397657184007,10.678647500668674,10.678647500668674,9.364903608270367,9.364903608270367,15.193641540976316,15.193641540976316,5.522008696156163,5.522008696156163,6.024037064221375,7.983403812384665,8.37121898381848,8.138382151757725,6.862818830162624,6.135280748245137,8.350253153002384,8.618051775574713,8.557984631740652,7.253794988058232,130.88463920041258,130.88463920041258,0.0,145.4273768893473,0.0,130.88463920041258,145.4273768893473,0,0
+2017/04/23 23:00:00,88.58493716151057,0,563.5158206540261,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.0833653839931709,9.558615516224835,0,0,30.691708493896147,479.5885833913138,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2112.525292677543,0.0,873.3498044265857,0.0,2160.2436632139074,0.0,14.605756951920124,0.0,0.0,0.0,2139.155799882914,0.0,835.8834132673395,0.0,2175.106833520287,0.0,6.271110035826403,0,0,0,0,0,0,0,0,0.030001999691545482,0.0009492423571215815,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5094772249279726,-0.5094772249279726,-0.5940736354682782,-0.5940736354682782,-0.6130177444348919,-0.6130177444348919,0.4688953666311753,0.4688953666311753,-0.4117111446615507,-0.4117111446615507,-0.28718647450825796,-0.41329446748187704,-0.4388563406647012,-0.421300616516671,-0.3236621796011048,-0.32373917815471726,-0.4431411474340481,-0.45698595766528477,-0.45191531854046063,-0.3520570931208554,10.426622691475401,10.426622691475401,12.39846368031057,12.39846368031057,12.882566104822729,12.882566104822729,9.59062715819806,9.59062715819806,8.533011529694008,8.533011529694008,6.713325399946413,8.560405208833018,9.017539672400787,8.700567873611718,7.178124845755093,7.179165592515417,9.096912147938085,9.358772198870412,9.26190941845681,7.578987781442677,88.58493716151057,88.58493716151057,0.0,98.42770795723396,0.0,88.58493716151057,98.42770795723396,0,0
+2017/04/24 00:00:00,39.344712026198785,0,528.8756055042754,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5787554143764583e-09,9.54739102719685,0,0,0.0,475.64007673545933,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.028157728978734458,0.0008908909173309742,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.310404002989549,-0.310404002989549,-0.42535747456415657,-0.42535747456415657,-0.40880155048080946,-0.40880155048080946,0.5151375095603196,0.5151375095603196,-0.03184499694229705,-0.03184499694229705,-0.20168417934292662,-0.345867162789315,-0.44824401437766315,-0.36555316661241144,-0.0863894776657418,-0.2715243976443812,-0.396010103754139,-0.48117321297592,-0.41972433372341955,-0.15869667556928516,7.0026673026810045,7.0026673026810045,8.772639997047122,8.772639997047122,8.482951516844452,8.482951516844452,10.548879786704106,10.548879786704106,5.020993412234688,5.020993412234688,5.843527214491274,7.488682378027093,9.192468128057968,7.781536043714496,5.154542348799595,6.530997724299752,8.267171649660497,9.83605388313255,8.6727548333959,5.52191595493278,39.344712026198785,39.344712026198785,0.0,43.71634669577643,0.0,39.344712026198785,43.71634669577643,0,0
+2017/04/24 01:00:00,23.722204629152195,0,45.680225832052706,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251092054744024,0,0,0.0,10.189873319508571,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002432049058946295,7.694833694702243e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.259932045358109,-0.259932045358109,-0.4037165579867261,-0.4037165579867261,-0.4022049646229864,-0.4022049646229864,0.4484720454705442,0.4484720454705442,0.19985875551203103,0.19985875551203103,-0.2455204210837705,-0.3980059547214559,-0.516973590729305,-0.42099412636772937,-0.0002865083367664973,-0.32881184873590813,-0.4636093299569993,-0.568485354404171,-0.4918561659885176,-0.11011314194863092,6.402704721173507,6.402704721173507,8.39633385648709,8.39633385648709,8.37079882642621,8.37079882642621,9.196764360850679,9.196764360850679,5.828300970450897,5.828300970450897,6.251095368817815,8.30037885086655,10.58883518188074,8.695151601773361,5.000001699242517,7.2482839367552,9.48696345099384,11.769300192349135,10.054890642159677,5.251127357782977,23.722204629152195,23.722204629152195,0.0,26.35800514350244,0.0,23.722204629152195,26.35800514350244,0,0
+2017/04/24 02:00:00,28.344509264963982,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251461784910845,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.23368423306636302,-0.23368423306636302,-0.3856441907687805,-0.3856441907687805,-0.39017248838625057,-0.39017248838625057,0.4181584378621414,0.4181584378621414,0.2903040057964011,0.2903040057964011,-0.26683146006430375,-0.42431053564801324,-0.551019365513612,-0.4487744820809592,0.023940084773669403,-0.3676612882480965,-0.5073785925060578,-0.6198252809205547,-0.5375194723032857,-0.10341207974638633,6.133106727427958,6.133106727427958,8.097441352684214,8.097441352684214,8.171022333215149,8.171022333215149,8.645230554406837,8.645230554406837,6.750852788349974,6.750852788349974,6.478379047236899,8.753973012878959,11.356157705864419,9.20246588508165,5.011864334496764,7.813875132436593,10.381646189126613,13.06033169455992,11.045890753231404,5.221478065160625,28.344509264963982,28.344509264963982,0.0,31.493899183293312,0.0,28.344509264963982,31.493899183293312,0,0
+2017/04/24 03:00:00,23.725679389109928,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5285839654321367,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2428985402947484,-0.2428985402947484,-0.3984583064016003,-0.3984583064016003,-0.4054854646125254,-0.4054854646125254,0.36751907743209444,0.36751907743209444,0.33404396069892944,0.33404396069892944,-0.2952669227516909,-0.45459533369248384,-0.5869253579304533,-0.48031725582076756,0.04829134625573884,-0.413653963486353,-0.5552738363372074,-0.6726602535270259,-0.5869773283321412,-0.0979540049639568,6.224451971211735,6.224451971211735,8.307928813949644,8.307928813949644,8.426339811795458,8.426339811795458,7.811687627280975,7.811687627280975,7.3207184042148015,7.3207184042148015,6.811440877280873,9.312967020541649,12.219842257150745,9.818733002367722,5.04827973760122,8.566639950323747,11.455574804204218,14.508354230453747,12.221132892996224,5.198706184041299,23.725679389109928,23.725679389109928,0.0,26.361865987899918,0.0,23.725679389109928,26.361865987899918,0,0
+2017/04/24 04:00:00,40.552193418325686,0,155.72357086179574,0,0,0,0.0,0.0004513765143467481,4.633261998087618,9.319298099999997,25.555573451546493,0,0.26198620216131796,0.20733362888669732,0.5742886611292131,0,0,66.99768958043542,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,385.6980034293959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,171.5711365059325,0.4513765143467481,984.2699689194891,0.0,264.48307349535764,0.0,0.0,0,0,0,0,0,0,0,0,0.008290838258169099,0.0002623163432974763,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1644750610072378,-0.1644750610072378,-0.3210156855446659,-0.3210156855446659,-0.32834219493663325,-0.32834219493663325,0.4249661570862706,0.4249661570862706,0.46266182516794585,0.46266182516794585,-0.27894739635341115,-0.4396920645683442,-0.5229304534805915,-0.4653090286062786,0.08729636305034391,-0.42927690715178835,-0.5366897872101857,-0.5708163196524565,-0.5497221020259753,-0.05951618996014109,5.5606609897770625,5.5606609897770625,7.142506427839962,7.142506427839962,7.241838761735565,7.241838761735565,8.765657279340289,8.765657279340289,9.468509290551978,9.468509290551978,6.61612175217283,9.032958825390267,10.719468172399715,9.520164687081916,5.157805145177036,8.842941336187735,11.02707973833914,11.825437785630712,11.32599977902214,5.0733364777864125,40.552193418325686,40.552193418325686,0.0,45.05799268702854,0.0,40.552193418325686,45.05799268702854,0,0
+2017/04/24 05:00:00,74.71667400011052,0,236.7498626381368,0,0,0,0.6960448109309234,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.6079222328377278,0.1016284981843841,0.5250354282016165,0,0,23.80774756287199,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,1424.295067553285,0.0,0.0,0.0,0.0,803.8229467953956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.88721099755545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.847587683541075,0.0,556.980846127715,0.0,81.15140944909649,0.0,0.0,0,0,0,0,0,0,0,0,0.012604738049055993,0.0003988051256449316,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.07728969347357446,0.07728969347357446,-0.07737171211036907,-0.07737171211036907,-0.08122407091962089,-0.08122407091962089,0.6345678624906022,0.6345678624906022,0.7265708333383066,0.7265708333383066,-0.22210300722690246,-0.38430374305251985,-0.49912124337933783,-0.4100412191990419,0.1628701326630889,-0.3893057576732909,-0.5202368604953642,-0.5376504029788547,-0.5302350426713112,0.06914000825751133,5.123691584060367,5.123691584060367,5.123954312716364,5.123954312716364,5.1366087647542145,5.1366087647542145,13.452198574308156,13.452198574308156,16.110363527778745,16.110363527778745,6.023349987922032,8.075828240424883,10.206528433123466,8.504235871870677,5.54976007998539,8.156870900802986,10.660207949406612,11.04886199995532,10.881752968845447,5.098976638346016,74.71667400011052,74.71667400011052,0.0,83.01852666678946,0.0,74.71667400011052,83.01852666678946,0,0
+2017/04/24 06:00:00,87.09666569993016,0,707.8696923244994,0,0,0,0.36499501783414934,0.0,11.110595677687485,0.0,73.80580873715317,0,1.255369968688609,0.03495054115033222,0.5249457574163555,0,0,7.105034588564571,470.077366404398,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1158.9700409622662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,186.06121838417852,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03768750674315658,0.0011924064429942205,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2653731158344826,0.2653731158344826,0.10941175563933639,0.10941175563933639,0.1087976477546,0.1087976477546,0.8094615215136127,0.8094615215136127,0.830515573177054,0.830515573177054,-0.1425064553073586,-0.30553900086839725,-0.42688169954399674,-0.33166669970647683,0.1984331693225781,-0.31983186747791104,-0.459927989983451,-0.5075183050529983,-0.4822369148691973,0.1641629543461487,6.4622165621287735,6.4622165621287735,5.247936650466386,5.247936650466386,5.245159761352937,5.245159761352937,18.816867520892785,18.816867520892785,19.550739331711412,19.550739331711412,5.420766735787893,6.940150990257294,8.799901094098615,7.287663096718418,5.816506770234028,7.12666985025885,9.415480226171908,10.38463449932189,9.857622669464845,5.558532704603294,87.09666569993016,87.09666569993016,0.0,96.7740729999224,0.0,87.09666569993016,96.7740729999224,0,0
+2017/04/24 07:00:00,147.38455238090546,0,874.6641763343032,0,0,0,0.0,0.0,8.0916690959953,0.0,69.33401494192633,0,39.380909295966944,0.07465787526660556,27.07132596929598,0,0,21.858110588284312,586.6284219019379,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,370.6070139211364,0.0,2787.0385947796635,0.0,2016.8888642830661,0.0,1621.0760664766203,0.0,2269.699804906714,0.0,591.2916728301859,0.0,2990.6076195370842,0.0,2224.8829702736,0.0,1592.2151878270638,0.0,2278.63602735521,0,0,0,0,0,0,0,0,0.04656776861762481,0.0014733717386492485,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.0405945574859679,-0.0405945574859679,-0.21834836690478593,-0.21834836690478593,-0.2399311950676297,-0.2399311950676297,1.0380077310310893,1.0380077310310893,0.3662893493492513,0.3662893493492513,-0.2894509726388565,-0.40681706357700403,-0.4567701237359947,-0.26631324697179815,-0.1344158961267646,-0.36901764883432703,-0.4835553555885425,-0.5008004188181999,-0.30926260023958674,-0.17302000554346336,5.03411525182652,5.03411525182652,5.988973797735724,5.988973797735724,6.194646303759356,6.194646303759356,27.74708343529052,27.74708343529052,7.792807741935306,7.792807741935306,6.740543592390566,8.449016090299125,9.354626644645862,6.472625555502887,5.374309512081908,7.834782164144528,9.884424576475112,10.241900855647756,6.987910103368435,5.620507800506729,147.38455238090546,147.38455238090546,0.0,163.7606137565616,0.0,147.38455238090546,163.7606137565616,0,0
+2017/04/24 08:00:00,164.06220100470708,0,914.4980537245035,0,0,0,0.7801388657588291,0.0,11.86011032607099,0.0,83.2008179303116,0,39.380909295966944,0.03406728813311613,25.37418209601136,0,0,13.875021748546926,581.2098593630594,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3187.413958141814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1756.6527132157953,0.0,935.7412586784302,0.0,0.0,0.0,313.51176839320794,0.0,0.0,0.0,2045.4655668042915,0.0,1093.0420508901398,0.0,0.0,0.0,278.5908846693768,0,0,0,0,0,0,0,0,0.04868855375509762,0.001540471902089701,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.27970442813184093,-0.27970442813184093,-0.3843555063146434,-0.3843555063146434,-0.5328077413626765,-0.5328077413626765,1.1270120873820613,1.1270120873820613,-0.10076054731489881,-0.10076054731489881,-0.22247487355338438,-0.4304417537342357,-0.4521531328393216,-0.16782784007513887,-0.25720792105018475,-0.2647960401747366,-0.47402579762599484,-0.4780593648008895,-0.16337590319023848,-0.28113639402748086,6.624933641869504,6.624933641869504,8.076661436537137,8.076661436537137,10.939460290100314,10.939460290100314,31.76101690570539,31.76101690570539,5.2102610258002215,5.2102610258002215,6.026786821785251,8.863961826907484,9.266427579671415,5.583780074025711,6.373377615091499,6.455845699564875,9.692390817530296,9.773194673118269,5.55318376023213,6.641667905477874,164.06220100470708,164.06220100470708,0.0,182.29133444967454,0.0,164.06220100470708,182.29133444967454,0,0
+2017/04/24 09:00:00,182.31111271045813,0,923.3463740396726,0,0,0,1.0190498911610837,0.0,11.393746067737203,0.0,106.27511244621549,0,39.380909295966944,0.020596956544294703,20.789722850378876,0,0,9.225111984968681,541.4725606729905,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4233.17719485572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1399.4490255125243,0.0,502.500023413534,0.0,0.0,0.0,4.318479907191625,0.0,0.0,0.0,1564.0140156671885,0.0,609.6657917543198,0.0,0.0,0.0,24.581846508103293,0,0,0,0,0,0,0,0,0.04915964488268706,0.001555376896989027,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2813260661519288,-0.2813260661519288,-0.2373181806426919,-0.2373181806426919,-0.5935690020539663,-0.5935690020539663,1.150489047781491,1.150489047781491,-0.13637467877041168,-0.13637467877041168,-0.09650789551885454,-0.4308641337232677,-0.4448795851189634,-0.10026468503346984,-0.2750941080063847,-0.11581530193143923,-0.4596946298727693,-0.45610403633503954,-0.06185386335538927,-0.29387160699315434,6.643890942178643,6.643890942178643,6.168705882463257,6.168705882463257,12.385781132519597,12.385781132519597,32.864363770387385,32.864363770387385,5.385307272755938,5.385307272755938,5.192880025020997,8.871598365662763,9.12934028989116,5.208195725758344,6.571643832326018,5.2778256645533475,9.41096857489012,9.34184564822614,5.07921163511962,6.7943014963408075,182.31111271045813,182.31111271045813,0.0,202.56790301162013,0.0,182.31111271045813,202.56790301162013,0,0
+2017/04/24 10:00:00,213.48676658576807,0,1012.3111239367753,0,0,0,1.0639408894835498,0.0,17.091304499026357,0.0,133.89528835348938,0,39.380909295966944,0.023020471237143195,18.60032787411038,0,0,10.989623759057679,539.9469175146439,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4430.779827135177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1425.9300665735627,0.0,0.0,0.0,0.0,0.0,29.378209086452063,0.0,0.0,0.0,1535.2984384965907,0.0,0.0,0.0,0.0,0.0,17.209743681849588,0,0,0,0,0,0,0,0,0.05389619406399215,0.0017052380114383865,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.12009713874401277,-0.12009713874401277,-0.38216843667742667,-0.38216843667742667,-0.5489618523426816,-0.5489618523426816,1.1233949331942472,1.1233949331942472,-0.09293083380374154,-0.09293083380374154,0.03551741248385999,-0.4296047752543873,-0.43265491798295036,-0.11227254850541629,-0.29303768957112714,0.04491148219950765,-0.448434024139364,-0.4350039810603461,-0.05580310078831163,-0.30249478327607493,5.298761878074245,5.298761878074245,8.041557454165911,8.041557454165911,11.308359897096466,11.308359897096466,31.592611036708888,31.592611036708888,5.178841436312581,5.178841436312581,5.026114882085068,8.848852061172792,8.904060433845999,5.261079103202221,6.784097328917824,5.041757541487399,9.19604786243842,8.946851371254994,5.064470070795679,6.901541478601629,213.48676658576807,213.48676658576807,0.0,237.20751842863118,0.0,213.48676658576807,237.20751842863118,0,0
+2017/04/24 11:00:00,228.017187645104,0,1056.2150098419602,0,0,0,1.0105120785867394,0.0,16.986528298665572,0.0,147.76209134187457,0,39.380909295966944,0.0002451309285838816,20.81771637760893,0,0,0.11769903459308374,541.4871993754772,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4188.562246986256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05623366946948519,0.0017791941039134221,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.15313908566040488,0.15313908566040488,-0.4982915099211489,-0.4982915099211489,-0.4000684946563067,-0.4000684946563067,1.069291084008497,1.069291084008497,0.12367769903990722,0.12367769903990722,0.07460235088523186,-0.35972638000572804,-0.3666871561231251,-0.08975014961319207,-0.16595362980739814,0.11607933196652695,-0.36678389693670665,-0.3460698857996414,-0.02925254426593573,-0.18095797697028387,5.485964082286955,5.485964082286955,10.189094779656443,10.189094779656443,8.334874649168924,8.334874649168924,29.126328697892504,29.126328697892504,5.3168541390365505,5.3168541390365505,5.115237571647384,7.693136644159068,7.7989081754339225,5.166804444645152,5.570798685282611,5.279094610604673,7.800392731436716,7.491614116091441,5.0177143333935845,5.678832869467797,228.017187645104,228.017187645104,0.0,253.3524307167822,0.0,228.017187645104,253.3524307167822,0,0
+2017/04/24 12:00:00,205.15816972829384,0,1019.0880199060634,0,0,0,0.8431271750959806,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,5.325661480659246e-05,18.57328834420867,0,0,0.025595001644652088,539.942665985073,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3446.9436021593147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05425700102508909,0.001716653692184295,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3213713594663504,0.3213713594663504,-0.4833977004050192,-0.4833977004050192,-0.30001824084570067,-0.30001824084570067,1.0133516134887204,1.0133516134887204,0.24986635950975036,0.24986635950975036,0.13727704765273177,-0.25916462094502113,-0.26028971609896084,-0.08651417389358536,-0.17128544398918055,0.22019995144971558,-0.24562335498133497,-0.27535866163678535,-0.01908537248643362,-0.17855558664324356,7.14727607435006,7.14727607435006,9.881215736562652,9.881215736562652,6.870420841803266,6.870420841803266,26.685198992579316,26.685198992579316,6.295894737917763,6.295894737917763,5.390427408087987,6.394411267902399,6.406578488353162,5.154988958362253,5.608112979371356,6.0058524369112405,6.252147268718275,6.574677520234474,5.007540310364703,5.660903535355843,205.15816972829384,205.15816972829384,0.0,227.9535219203265,0.0,205.15816972829384,227.9535219203265,0,0
+2017/04/24 13:00:00,202.52568090825622,0,961.5604799173265,0,0,0,0.7562971767219888,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,4.729783367285705e-05,16.317109096885677,0,0,0.022738287946255646,517.9083352225788,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3070.0217739856525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05119419218505634,0.0016197485554395336,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.36308088326286914,0.36308088326286914,-0.393859906452165,-0.393859906452165,-0.2644258029284194,-0.2644258029284194,0.9976057975054619,0.9976057975054619,0.27967086277686193,0.27967086277686193,0.030471353382984036,-0.15497049578774463,-0.216026975034705,-0.027709638987751643,-0.19625781849257298,0.10717105749205164,-0.11215757886440932,-0.22757786035603417,0.04883693651360534,-0.19913501152608495,7.743851884384142,7.743851884384142,8.231587028102794,8.231587028102794,6.4517656981042535,6.4517656981042535,26.018948835216378,26.018948835216378,6.624542427286329,6.624542427286329,5.019221285527465,5.4976692624001515,5.968015425236047,5.015894890696686,5.7986733700276005,5.2378802852221895,5.2605443775699285,6.07453484736061,5.04937693557612,5.822302650147719,202.52568090825622,202.52568090825622,0.0,225.0285343425069,0.0,202.52568090825622,225.0285343425069,0,0
+2017/04/24 14:00:00,186.78300283773535,0,912.2046829695441,0,0,0,0.7160732691230907,0.0,17.091304081972734,0.0,115.5196477718057,0,39.380909295966944,2.4183325586991628e-05,14.075044235541258,0,0,0.011628009705292278,504.05400106558136,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2897.062073071342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04856645299738857,0.0015366087192270359,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3473547560913368,0.3473547560913368,-0.14757463597720846,-0.14757463597720846,-0.21062455454021928,-0.21062455454021928,0.9814873001336909,0.9814873001336909,0.3159593026317982,0.3159593026317982,-0.011539002506742495,-0.09803230033091047,-0.23920644559308527,-0.032058023873719,-0.2313540350764316,0.05489984556467973,-0.061573154035377324,-0.182988252311669,-0.03176574648360757,-0.23545300771617167,7.510236271956728,7.510236271956728,5.451256776825133,5.451256776825133,5.920114234216811,5.920114234216811,25.346689541651287,25.346689541651287,7.075279297266064,7.075279297266064,5.0027562586433305,5.199024101313057,6.187422701581212,5.0212752353030226,6.110571071409012,5.062399597010085,5.07849417788654,5.694172924350937,5.020889047798491,6.150364900058861,186.78300283773535,186.78300283773535,0.0,207.53666981970593,0.0,186.78300283773535,207.53666981970593,0,0
+2017/04/24 15:00:00,180.68762464534325,0,914.4126964475483,0,0,0,0.6010903435608624,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,6.6404175314068e-05,14.06949161204329,0,0,0.03193986414640323,506.2417026891445,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2408.7812812593443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04868400927044782,0.0015403281177631485,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.24662202657906884,0.24662202657906884,0.06712380498022263,0.06712380498022263,-0.19488712559664187,-0.19488712559664187,0.961955320662498,0.961955320662498,0.3470992162005674,0.3470992162005674,-0.1314616869139286,-0.04445852430698115,-0.28354282484157695,-0.093133985205727,-0.19994779495115417,-0.08018174406344276,0.028928051368377002,-0.21068074433682948,-0.1088421931917873,-0.21314612542681038,6.2623759851583145,6.2623759851583145,5.093287111907202,5.093287111907202,5.787538114531827,5.787538114531827,24.545482687168857,24.545482687168857,7.506527035330123,7.506527035330123,5.358024705797732,5.040919417560019,6.6699848083178495,5.1796245053437815,5.829040434003076,5.13312413514241,5.017323495023206,5.920606158291832,5.245360661222264,5.942319938013142,180.68762464534325,180.68762464534325,0.0,200.7640273837147,0.0,180.68762464534325,200.7640273837147,0,0
+2017/04/24 16:00:00,203.52923359097733,0,977.0445656708251,0,0,0,0.7042717760693845,0.0,16.90307355543791,0.0,131.64086955684016,0,39.380909295966944,4.2011656588964474e-05,14.04207359439274,0,0,0.020213480677629923,515.6497695270737,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2845.934124216373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05201857637973815,0.0016458314967160799,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.20789559733798765,0.20789559733798765,0.33444499748695694,0.33444499748695694,-0.11405816460640855,-0.11405816460640855,0.9731413737299913,0.9731413737299913,0.44201739199154233,0.44201739199154233,-0.1881898929245096,-0.07820974734808468,-0.2869813582511168,-0.14938844385008,-0.18361309982226598,-0.16294599519708705,-0.02396859961292424,-0.21385458859803885,-0.12535359664705661,-0.19860654210095915,5.896382152459324,5.896382152459324,7.3263183819578614,7.3263183819578614,5.269454520484331,5.269454520484331,25.002526769774946,25.002526769774946,9.076019181069555,9.076019181069555,5.734260188861398,5.126654760768787,6.710870692614364,5.4624284424381955,5.698928691873064,5.5502729316293795,5.011892615081763,5.94860678556789,5.325505389280622,5.817936583505883,203.52923359097733,203.52923359097733,0.0,226.1435928788637,0.0,203.52923359097733,226.1435928788637,0,0
+2017/04/24 17:00:00,210.01804072136164,0,981.4662192993057,0,0,0,0.6496232475008723,0.0,16.90307355543791,0.0,133.89528835348938,0,39.380909295966944,7.435296998933269e-05,18.61707604892083,0,0,0.035788514480844025,520.0558481217512,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2613.9350788215543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05225398849406678,0.0016532797719176577,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.11791283812755841,0.11791283812755841,0.4451557745205164,0.4451557745205164,-0.10282931259700008,-0.10282931259700008,0.9743767617724252,0.9743767617724252,0.4568505013600784,0.4568505013600784,-0.06271282224526943,-0.05851076803418787,-0.2598306440547105,-0.1379764652505187,-0.2226001327294677,-0.04424279222680996,0.016958387613334694,-0.1926058321742953,-0.13179509559597521,-0.14437525417601157,5.287986461206415,5.287986461206415,9.13450418035761,9.13450418035761,5.218987701666762,5.218987701666762,25.053300897144595,25.053300897144595,9.35617023523696,9.35617023523696,5.081427309746431,5.070879247330552,6.401607469819382,5.394419282299381,6.027945787327994,5.040523228703307,5.005953269746357,5.769179435345777,5.359844418876008,5.431884933249648,210.01804072136164,210.01804072136164,0.0,233.3533785792907,0.0,210.01804072136164,233.3533785792907,0,0
+2017/04/24 18:00:00,194.0697645688415,0,1007.1206868890819,0,0,0,0.62039709659566,0.0,17.644803712327896,0.0,110.93442390708215,0,39.380909295966944,5.236145358358098e-05,25.48917819541521,0,0,0.025213192879665756,581.2112435456726,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2491.5447745361043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053619851350981636,0.0016964947206254944,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.08122212937488443,0.08122212937488443,0.4569526397319303,0.4569526397319303,-0.016931261607627264,-0.016931261607627264,0.9705778511066451,0.9705778511066451,0.48042980747996417,0.48042980747996417,-0.018220319638794346,0.02769371249095394,-0.17174902451760649,-0.07698915867217193,-0.10269367705240863,0.0084750127659927,0.10229804565471352,-0.09599714402357361,-0.05416310872874841,-0.09079497541370511,5.136602232039152,5.136602232039152,9.358132125512455,9.358132125512455,5.00593423947592,5.00593423947592,24.897355471636814,24.897355471636814,9.821008757635383,9.821008757635383,5.006872255458205,5.015876623703917,5.611413340786115,5.122731270694317,5.218410107315748,5.001486835627347,5.216729702172117,5.190843024617564,5.060735854102276,5.170712189330814,194.0697645688415,194.0697645688415,0.0,215.63307174315722,0.0,194.0697645688415,215.63307174315722,0,0
+2017/04/24 19:00:00,189.8362557955562,0,990.1599744458209,0,0,0,0.4061036133307245,0.0,20.280817825003037,0.0,101.68988858149199,0,39.380909295966944,0.00022966089398187593,27.097742475311204,0,0,0.11068926314660966,599.655407544689,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1603.8571401687273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05271685045758964,0.0016679244018021177,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1151834853968908,-0.1151834853968908,-0.057878528428290735,-0.057878528428290735,-0.187959166580348,-0.187959166580348,0.9617948771218672,0.9617948771218672,0.347351852162727,0.347351852162727,-0.046531317607866274,0.022325485771141365,-0.20698817973546416,-0.09996492549405231,-0.024049282856613736,-0.022063206346902828,0.06576984602746687,-0.17704452186272426,-0.1003465065763149,-0.04975422465297674,5.274800870099398,5.274800870099398,5.069355519721057,5.069355519721057,5.732458106696626,5.732458106696626,24.53896270607507,24.53896270607507,7.510194104983398,7.510194104983398,5.044824321949832,5.010317925614075,5.888559949861701,5.206952157115609,5.011972817908003,5.010076914749263,5.089560945916645,5.649749692883205,5.208535814874608,5.051249424365125,189.8362557955562,189.8362557955562,0.0,210.92917310617355,0.0,189.8362557955562,210.92917310617355,0,0
+2017/04/24 20:00:00,209.0526054117185,0,916.8789207770794,0,0,0,0.26551941943454954,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.00028046644463826674,23.028060861215952,0,0,0.1345378930776752,561.8408577585606,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1037.233532003418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04881531288050086,0.0015444824724590606,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.26076547932039035,-0.26076547932039035,-0.3051558588379602,-0.3051558588379602,-0.33317442042117,-0.33317442042117,0.9462944336041288,0.9462944336041288,0.21069847577506012,0.21069847577506012,-0.04858148011277982,-0.039903666359069674,-0.26023924122131975,-0.11563045910722532,-0.04968955819947501,-0.035498308546337225,-0.0046370726947640335,-0.21501754919496013,-0.12328269486438583,-0.03150360823297347,6.411739604459584,6.411739604459584,6.935270074183194,6.935270074183194,7.308599809500777,7.308599809500777,23.91382974055631,23.91382974055631,5.920761418918303,5.920761418918303,5.048861670056269,5.032963815625706,6.406031491915897,5.27693902118078,5.051116276631461,5.026086794954622,5.000445111754971,5.958972380618263,5.314832066679273,5.020545692576931,209.0526054117185,209.0526054117185,0.0,232.28067267968723,0.0,209.0526054117185,232.28067267968723,0,0
+2017/04/24 21:00:00,195.90315148178192,0,900.7422116650072,0,0,0,0.050253875369614856,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.00024322035520551002,25.427563450775068,0,0,0.11761627202625285,581.2114227800837,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,193.02125002450254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04795618253480611,0.00151730018718453,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.388537039522779,-0.388537039522779,-0.31001039510099043,-0.31001039510099043,-0.4522372588248564,-0.4522372588248564,0.9241263423051782,0.9241263423051782,0.060695257303743526,0.060695257303743526,-0.09614945851095917,-0.14267583215993074,-0.28445742972272464,-0.21980917803615357,-0.1339331095724099,-0.09541115779339555,-0.11039862922453411,-0.2815255994888987,-0.21193367163127955,-0.1424400178308,8.144346615814854,8.144346615814854,6.99757211601424,6.99757211601424,9.268026446204303,9.268026446204303,23.036313019462625,23.036313019462625,5.076271462265893,5.076271462265893,5.191449358675044,5.421768432846633,6.680811207819573,6.002278272358041,5.371623381179148,5.1885193061632435,5.252431931352163,6.646231194452213,5.931609479941542,5.420374149666458,195.90315148178192,195.90315148178192,0.0,217.670168313091,0.0,195.90315148178192,217.670168313091,0,0
+2017/04/24 22:00:00,139.98698670633908,0,711.6005358780567,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.02132498510773964,20.780728913455118,0,0,10.400025019669588,541.4939245519386,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,216.35965971791046,0.0,415.6332243284737,0.0,958.1801972828976,0.0,264.87969438381003,0.0,0.0,0.0,21.579295589856468,0.0,108.0407653435697,0.0,844.1788680151341,0.0,296.12333589549354,0,0,0,0,0,0,0,0,0.037886139617408665,0.0011986910486770216,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.43138564145268576,-0.43138564145268576,-0.46197375073615027,-0.46197375073615027,-0.5016626465634507,-0.5016626465634507,0.732657385559256,0.732657385559256,-0.20116964592226858,-0.20116964592226858,-0.16056020387099537,-0.24460161446597703,-0.34604359097658066,-0.2944274748681556,-0.22450215399081508,-0.16979247365503286,-0.23097950641114312,-0.34653859076276233,-0.3108642216699335,-0.2354900425230437,8.881037678584917,8.881037678584917,9.45513218373884,9.45513218373884,10.260111332104245,10.260111332104245,16.299102517280943,16.299102517280943,5.83922127741107,5.83922127741107,5.534259183238291,6.2417256411431055,7.491233747216356,6.801119649909381,6.045625130838047,5.5975450237958455,6.106970205201435,7.498399119090806,7.0086330712476155,6.150727657037706,139.98698670633908,139.98698670633908,0.0,155.54109634037675,0.0,139.98698670633908,155.54109634037675,0,0
+2017/04/24 23:00:00,90.84541433346538,0,580.5661637687979,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.07310996426658568,11.829348107906233,0,0,35.68500093654825,491.64563406343353,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1065.337660995608,0.0,622.7896921355727,0.0,1661.5031540692746,0.0,29.663975380021682,0.0,0.0,0.0,945.9777455643446,0.0,486.05265886973365,0.0,1686.5638833042437,0.0,17.213758926123774,0,0,0,0,0,0,0,0,0.030909772588278747,0.0009779636588043157,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5462726590120263,-0.5462726590120263,-0.5088361562848877,-0.5088361562848877,-0.5965381430857373,-0.5965381430857373,0.5295755004237126,0.5295755004237126,-0.3155587408000018,-0.3155587408000018,-0.2389641100327331,-0.29048960851158206,-0.37763940985512445,-0.33432728140771356,-0.2607787900534602,-0.2625657200962892,-0.3042281123332308,-0.3884985145687093,-0.3627940052506887,-0.28024303139232404,11.246164252562238,11.246164252562238,10.412863531099575,10.412863531099575,12.46056096752858,12.46056096752858,10.86700515976112,10.86700515976112,7.0699999300188665,7.0699999300188665,6.185012255149516,6.7530999305328265,7.9695127007811095,7.324673916077359,6.4118841373062025,6.431354981276982,6.923477065854925,8.143719615169573,7.739495962548347,6.631217728315534,90.84541433346538,90.84541433346538,0.0,100.93934925940599,0.0,90.84541433346538,100.93934925940599,0,0
+2017/04/25 00:00:00,39.33917058818227,0,533.4408655478653,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5787717170311404e-09,9.54184958918032,0,0,0.0,480.2053367790492,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.028400786804973734,0.000898581097527904,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.26995830414686683,-0.26995830414686683,-0.3021036829890243,-0.3021036829890243,-0.4194332163546951,-0.4194332163546951,0.6222236829306182,0.6222236829306182,-0.047266059494047274,-0.047266059494047274,-0.08166022067497893,-0.09580416462410994,-0.3252848256818149,-0.19898110442689498,-0.02129521831003726,-0.14481840410132946,-0.1315774781596146,-0.35110046834144565,-0.25797178634046325,-0.06431012660529575,6.513335048347088,6.513335048347088,6.896609604377645,6.896609604377645,8.667629809660468,8.667629809660468,13.123440387035458,13.123440387035458,5.046251216885054,5.046251216885054,5.138080240026625,5.190076194282653,7.2001104228338875,5.821029907374154,5.009387584837796,5.434542724612697,5.35865615948326,7.564925046425685,6.381569658663906,5.085628840702213,39.33917058818227,39.33917058818227,0.0,43.71018954242474,0.0,39.33917058818227,43.71018954242474,0,0
+2017/04/25 01:00:00,23.72221597219865,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251205485208581,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.257948378760292,-0.257948378760292,-0.2868712117538299,-0.2868712117538299,-0.42203324421800853,-0.42203324421800853,0.5364080109298122,0.5364080109298122,0.15433707544658362,0.15433707544658362,-0.15785144467211412,-0.16086989650433023,-0.430806557482489,-0.2813855718174625,0.06353971832762122,-0.19616171638559904,-0.17159468470766534,-0.44484863787930107,-0.32319141493162545,-0.014322386607899754,6.381318260376432,6.381318260376432,6.709553258862542,6.709553258862542,8.713531141901285,8.713531141901285,11.020697955773429,11.020697955773429,5.493605046944509,5.493605046944509,5.516365206542645,5.53632448184635,8.870556948850691,6.644588686236943,5.083589166194201,5.797890093900406,5.610313556348913,9.128761876231337,7.171767246967008,5.004246348388833,23.72221597219865,23.72221597219865,0.0,26.358017746887388,0.0,23.72221597219865,26.358017746887388,0,0
+2017/04/25 02:00:00,28.344557586138894,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.525194499665999,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.207863361766579,-0.207863361766579,-0.23640203837996157,-0.23640203837996157,-0.3734918769333743,-0.3734918769333743,0.5454350926942397,0.5454350926942397,0.2485621443805266,0.2485621443805266,-0.12990325729331573,-0.13423481739796256,-0.42123594245521356,-0.2594010840040832,0.08815788854459947,-0.1965057223728458,-0.1662708642725263,-0.45908736170462455,-0.3276915087285763,0.00580303627600378,5.896103682125457,5.896103682125457,6.159678846013975,6.159678846013975,7.904304304848907,7.904304304848907,11.226857036070342,11.226857036070342,6.282367094961984,6.282367094961984,5.349580251078351,5.373300888821603,8.699424622912346,6.396964050971761,5.160936347451695,5.800695682719336,5.572985656100613,9.399238988412648,7.232924696153049,5.000697095153697,28.344557586138894,28.344557586138894,0.0,31.493952873487657,0.0,28.344557586138894,31.493952873487657,0,0
+2017/04/25 03:00:00,23.774755028659648,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5776596049818558,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.22633231171407855,-0.22633231171407855,-0.2569954314156991,-0.2569954314156991,-0.39301210778185797,-0.39301210778185797,0.4812146280514805,0.4812146280514805,0.31509578196608184,0.31509578196608184,-0.1787730260049614,-0.18330984620745452,-0.478877410598726,-0.3107787533609414,0.12187997079480291,-0.2430325730160357,-0.21025946709545495,-0.513962418196467,-0.37706286051162946,0.009828293760794582,6.062779677965182,6.062779677965182,6.3711031423915045,6.3711031423915045,8.217610745845931,8.217610745845931,9.836892747304745,9.836892747304745,7.063906642433707,7.063906642433707,5.662516395889824,5.696618566613608,9.789668045898026,7.007524476224049,5.3077037677985714,6.225806999889471,5.916921227393914,10.523384881717803,7.960404150366983,5.00199958089074,23.774755028659648,23.774755028659648,0.0,26.416394476288495,0.0,23.774755028659648,26.416394476288495,0,0
+2017/04/25 04:00:00,40.28180795214982,0,138.24950809301907,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.13582852900657927,0.11302894582222851,0.5248169276868987,0,0,49.52362681165876,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,386.4846027519437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,509.45036417055184,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.007360506213204643,0.0002328812858897309,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.15981020180607608,-0.15981020180607608,-0.19275782673819375,-0.19275782673819375,-0.3248256455018388,-0.3248256455018388,0.5092990741234306,0.5092990741234306,0.4610618599935174,0.4610618599935174,-0.18879439964143627,-0.19198644667716408,-0.4430479753679203,-0.3199793642681207,0.15469409520082775,-0.26242123302559883,-0.22768052301095043,-0.4658311336646525,-0.3960601884534579,0.029317309344841537,5.529274082269822,5.529274082269822,5.770395846110446,5.770395846110446,7.193877566634185,7.193877566634185,10.422797284393752,10.422797284393752,9.437435198905348,9.437435198905348,5.738992219631456,5.764232484122388,9.095177820434714,7.128639756051129,5.495893737627966,6.429775618961358,6.075506653348157,9.530388265276642,8.268002880862923,5.01779286225748,40.28180795214982,40.28180795214982,0.0,44.757564391277576,0.0,40.28180795214982,44.757564391277576,0,0
+2017/04/25 05:00:00,73.55148988306212,0,212.9421150752648,0,0,0,0.15195020697084596,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.08857420063343217,0.0,0.5249224455019598,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,489.44464017217047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.09122797668509335,0.09122797668509335,0.05497883871121229,0.05497883871121229,-0.06664553938473561,-0.06664553938473561,0.7245664360218126,0.7245664360218126,0.774404503106373,0.774404503106373,-0.11638793397337212,-0.12071523462196446,-0.4070911559051982,-0.24761422336675531,0.274546509037282,-0.19945364689163597,-0.1661267785649973,-0.4504887317715601,-0.33296844779588863,0.19890225207222162,5.1723449291826284,5.1723449291826284,5.062579318978479,5.062579318978479,5.091962219992084,5.091962219992084,16.04855750966219,16.04855750966219,17.63645476474001,17.63645476474001,5.280581443673228,5.301847010913988,8.453693128777928,6.272579887360223,6.565373782232555,5.82494077020327,5.5719918288965005,9.23485720866725,7.3057339150458915,5.820378217476716,73.55148988306212,73.55148988306212,0.0,81.72387764784679,0.0,73.55148988306212,81.72387764784679,0,0
+2017/04/25 06:00:00,85.88028214376993,0,697.8043854202687,0,0,0,0.0,0.0,11.110595677687485,0.0,73.80580873715317,0,0.43887859582427013,2.520496377882179e-09,0.5249991305844788,0,0,0.0,467.1170940887317,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03715162234813541,0.0011754514342779878,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2552166234594993,0.2552166234594993,0.21686811685232418,0.21686811685232418,0.10022661117397642,0.10022661117397642,0.8652757026696271,0.8652757026696271,0.9125657719837316,0.9125657719837316,-0.0612288747272516,-0.06795242298801135,-0.3511686124664289,-0.19319732926397964,0.37798088828406484,-0.13600647797139342,-0.10424676319276277,-0.3916351911009588,-0.27043555299804284,0.3031917048675941,6.352137421517725,6.352137421517725,5.97558348069164,5.97558348069164,5.208037567498707,5.208037567498707,20.80292898064964,20.80292898064964,22.58648828548499,22.58648828548499,5.077618702533201,5.0956049943550425,7.565925502314158,5.773918612313821,7.974914198008506,5.38322779453901,5.225069514082193,8.194977225796208,6.518706596922186,6.910345870944084,85.88028214376993,85.88028214376993,0.0,95.42253571529993,0.0,85.88028214376993,95.42253571529993,0,0
+2017/04/25 07:00:00,149.1138701973884,0,880.1084375426285,0,0,0,0.0,0.0,9.848037412074062,0.0,69.33401494192633,0,39.380909295966944,0.042761597014514624,27.076171747952294,0,0,18.522391202563643,595.408402495984,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1548.1221731842122,0.0,790.322182290368,0.0,1699.1127733563176,0.0,1368.4428283825396,0.0,0.0,0.0,1262.8667058206618,0.0,828.8197330767036,0.0,1600.5151472320579,0.0,1632.5420764520907,0,0,0,0,0,0,0,0,0.04685762511695662,0.0014825425962414602,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.03940285138973354,0.03940285138973354,0.01636471054466501,0.01636471054466501,-0.1165897208794765,-0.1165897208794765,0.7130847250451214,0.7130847250451214,0.6108374409184987,0.6108374409184987,-0.1854703453122764,-0.1981740114268764,-0.3710792067252731,-0.27456476627472365,0.11184019411379142,-0.2299467700700016,-0.23147487621910126,-0.3941168697593045,-0.32878292418760025,0.04351962670977302,5.032141519405499,5.032141519405499,5.005543738242466,5.005543738242466,5.281555785102938,5.281555785102938,15.697849216251868,15.697849216251868,12.826056936874465,12.826056936874465,5.713160600663798,5.81437182679683,7.866709340829715,6.5655826253077265,5.259071066064351,6.097071554860307,6.11173414144514,8.23582923379783,7.247886727644257,5.039209208182683,149.1138701973884,149.1138701973884,0.0,165.68207799709822,0.0,149.1138701973884,165.68207799709822,0,0
+2017/04/25 08:00:00,163.3590947206067,0,911.2400788859859,0,0,0,0.0,0.0,11.952161883540366,0.0,83.2008179303116,0,39.380909295966944,0.02110880313947168,25.372121605194035,0,0,10.651704086937935,581.1752021861507,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,634.8539774536562,0.0,341.6372093839074,0.0,1053.791573873266,0.0,0.0,0.0,0.0,0.0,809.549071750777,0.0,497.8283794815876,0.0,1281.3974796633938,0.0,834.0265820145814,0,0,0,0,0,0,0,0,0.04851509676149125,0.001534983843721494,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2510238798658004,-0.2510238798658004,-0.24491630666775205,-0.24491630666775205,-0.3780940267159522,-0.3780940267159522,0.7088891675327681,0.7088891675327681,0.11773586798904172,0.11773586798904172,-0.19936479440747862,-0.28057623292163475,-0.3715514602624976,-0.3244059379858766,-0.12249362723482224,-0.25122091507490374,-0.3073934665739929,-0.3857224986437462,-0.35803159665035755,-0.1711844950022884,6.307960716886242,6.307960716886242,6.2449307887836625,6.2449307887836625,7.97670491631726,7.97670491631726,15.571113010614127,15.571113010614127,5.287122128634337,5.287122128634337,5.824204695135194,6.635111441930917,7.874048601245988,7.188188328219539,5.3108121557316395,6.310020219764937,6.963863145034978,8.098706345788727,7.667696172246352,5.607395483515987,163.3590947206067,163.3590947206067,0.0,181.51010524511855,0.0,163.3590947206067,181.51010524511855,0,0
+2017/04/25 09:00:00,181.7019949271092,0,919.0437568819032,0,0,0,0.0,0.0,11.815562190220337,0.0,106.27511244621549,0,39.380909295966944,0.009316835320884287,20.78911895693136,0,0,5.0179726770090625,541.3770828231807,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,326.55010515070353,0.0,0.0,0.0,687.8646043595302,0.0,0.0,0.0,0.0,0.0,490.15167608851266,0.0,0.0,0.0,879.6360574810078,0.0,0.0,0,0,0,0,0,0,0,0,0.04893057035823021,0.0015481291387133276,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.26392433481503463,-0.26392433481503463,-0.27188296620419905,-0.27188296620419905,-0.3569511996732094,-0.3569511996732094,0.78134157520357,0.78134157520357,-0.059339707049080495,-0.059339707049080495,-0.16749832848937113,-0.2921226741512392,-0.34906556147399864,-0.33004709736917165,-0.13539061139266625,-0.2566992395522319,-0.3136021509531224,-0.3683075251530642,-0.35774532922111524,-0.19413683624047226,6.446248739525714,6.446248739525714,6.535056262556296,6.535056262556296,7.651542106086168,7.651542106086168,17.865894045279717,17.865894045279717,5.072902126001395,5.072902126001395,5.581487157188718,6.772934612262702,7.535140634114001,7.265280230670868,5.379762187107588,6.36793589666911,7.04430992495891,7.823826490466118,7.6634110706979754,5.781476164047788,181.7019949271092,181.7019949271092,0.0,201.8911054745658,0.0,181.7019949271092,201.8911054745658,0,0
+2017/04/25 10:00:00,212.50391166408141,0,1014.721723871077,0,0,0,0.0,0.0,17.187220306683432,0.0,133.89528835348938,0,39.380909295966944,0.02409648052219954,18.58442202496515,0,0,13.503079365569505,539.8440618424338,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,925.0109871980422,0.0,0.0,0.0,1223.8330468257814,0.0,290.9242336480369,0.0,0.0,0.0,981.3270028475043,0.0,0.0,0.0,1275.1254210025559,0.0,157.50279553257587,0,0,0,0,0,0,0,0,0.05402453619004183,0.0017092986668447567,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44483054326789423,-0.44483054326789423,-0.2488335179325866,-0.2488335179325866,-0.4671595302957831,-0.4671595302957831,0.8722239377769491,0.8722239377769491,0.0025453008292215633,0.0025453008292215633,-0.17309026142294687,-0.3033367307627048,-0.35395617502082594,-0.3356218359736085,-0.18556517509040837,-0.25864535480889844,-0.32506904031922385,-0.3663007387540599,-0.3601462762311604,-0.2198012950048884,9.128423701319022,9.128423701319022,6.285175958241695,6.285175958241695,9.556453162062596,9.556453162062596,21.059241336305732,21.059241336305732,5.000134109393954,5.000134109393954,5.621012479571533,6.912180602951366,7.607020341838165,7.342790876584729,5.713891138472235,6.3888136854063475,7.197180264893106,7.792982306590488,7.699458629626463,6.002206236953484,212.50391166408141,212.50391166408141,0.0,236.1154574045349,0.0,212.50391166408141,236.1154574045349,0,0
+2017/04/25 11:00:00,228.4241988979913,0,1056.8731950250235,0,0,0,0.2395541422951876,0.0,16.73568395689411,0.0,147.76209134187457,0,39.380909295966944,0.0015326757516190336,20.872452282754505,0,0,0.8918446084650176,541.3712389846687,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,942.7777281189304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,173.02999834654833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,147.87609857352624,0.0,0.0,0,0,0,0,0,0,0,0,0.05626871173615364,0.0017803028168043372,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.37865713318909455,-0.37865713318909455,-0.014755859978649543,-0.014755859978649543,-0.3723548298866379,-0.3723548298866379,0.9812542764892463,0.9812542764892463,0.07538495345764137,0.07538495345764137,-0.10227751594949876,-0.2711884366510349,-0.2869403385031139,-0.2981975198717619,-0.11289587370509258,-0.14699649895730157,-0.2764367984120884,-0.26983057081020545,-0.3061601631917003,-0.15338213687028143,7.985625707638874,7.985625707638874,5.004507275810553,5.004507275810553,7.886555563775772,7.886555563775772,25.33704380931482,25.33704380931482,5.117668627709975,5.117668627709975,5.216642681635079,6.527199990924217,6.710380006175043,6.8477067599306025,5.263987756845225,5.447724685982379,6.587071237833669,6.511899007319272,6.948077285949012,5.487509466497173,228.4241988979913,228.4241988979913,0.0,253.80466544221252,0.0,228.4241988979913,253.80466544221252,0,0
+2017/04/25 12:00:00,206.255711381816,0,1019.1524691070506,0,0,0,0.2868289097516047,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,0.00034427094968976393,18.510849647513133,0,0,0.2011815573954053,539.8315286303093,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1132.3953028822752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054260432348287584,0.0017167622568584659,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.40295170520683693,-0.40295170520683693,-0.16192883149179654,-0.16192883149179654,-0.36784439241187067,-0.36784439241187067,0.9910180433739144,0.9910180433739144,0.10577591022281156,0.10577591022281156,-0.10385445716794389,-0.20724279576099452,-0.27079123459319887,-0.2510313067374679,-0.013720160703382183,-0.134967097944063,-0.20875076116085634,-0.2427243943914138,-0.25577467489936223,-0.05995546929521155,8.383401136917186,8.383401136917186,5.543416580322145,5.543416580322145,7.816692933747163,7.816692933747163,25.742990610309448,25.742990610309448,5.231724120137443,5.231724120137443,5.2233779096162465,5.890751335605287,6.522716118316708,6.308038316372787,5.003896753235168,5.377388146227048,5.90378545524311,6.222692538014627,6.358073060030648,5.074423216930768,206.255711381816,206.255711381816,0.0,229.17301264646224,0.0,206.255711381816,229.17301264646224,0,0
+2017/04/25 13:00:00,202.88713229413835,0,961.5263642680272,0,0,0,0.4234752555941114,0.0,16.630907756533322,0.0,129.2730206906943,0,39.380909295966944,0.00019879388715710825,16.320626700848834,0,0,0.11632608150171553,517.780631779724,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1689.0581270221073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05119237584261796,0.0016196910876308786,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.34301005991789024,-0.34301005991789024,-0.2850572185804265,-0.2850572185804265,-0.30795449631734295,-0.30795449631734295,1.0199724813748026,1.0199724813748026,0.16510913182585332,0.16510913182585332,-0.017904746162316548,-0.14479639028585226,-0.2052637465737293,-0.20680207897059122,-0.07452673110456877,-0.021693960501215477,-0.1218721667015794,-0.15305129942831538,-0.19031785322179975,-0.03668062906179264,7.447549345387557,7.447549345387557,6.687930219188672,6.687930219188672,6.971065430513335,6.971065430513335,26.968129349561025,26.968129349561025,5.564997285652851,5.564997285652851,5.0066362605104615,5.434410503809147,5.8737898010816565,5.886959965792897,5.1150040137934525,5.009742439241876,5.307664338084081,5.485406518964609,5.75098541563122,5.027853554014854,202.88713229413835,202.88713229413835,0.0,225.43014699348706,0.0,202.88713229413835,225.43014699348706,0,0
+2017/04/25 14:00:00,187.14670359027892,0,902.6835228577554,0,0,0,0.42419665245749555,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,0.00013931751019978237,14.109524538420116,0,0,0.08158878529532722,494.46288017820274,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1689.6211135044634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04805953938065017,0.0015205703257413715,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1893651832659711,-0.1893651832659711,-0.19071305670971153,-0.19071305670971153,-0.27023397188987147,-0.27023397188987147,0.9996935061826009,0.9996935061826009,0.21564082835953707,0.21564082835953707,0.06348793578153972,-0.08334811674957801,-0.19618799613180005,-0.18811191368675834,-0.08018013092721367,0.08540784978331663,-0.008668072238182487,-0.1721112254410696,-0.19507101314393516,-0.058121602520037584,5.743474281997351,5.743474281997351,5.754112446379565,5.754112446379565,6.516436583316832,6.516436583316832,26.106746670457184,26.106746670457184,5.9645510503360555,5.9645510503360555,5.08345295294113,5.1438491858617965,5.7981042474956155,5.7336508852358605,5.133118777145739,5.151049094807192,5.001555347177799,5.613998190648985,5.789027421320569,5.0699393799141745,187.14670359027892,187.14670359027892,0.0,207.94078176697656,0.0,187.14670359027892,207.94078176697656,0,0
+2017/04/25 15:00:00,182.94983590495488,0,928.2015135960102,0,0,0,0.13771132060210486,0.0,17.20806100094678,0.0,108.75639138185811,0,39.380909295966944,0.007720991546645143,14.027066711580037,0,0,4.5827363477600125,515.4797233539927,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,534.8212671101462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,230.36889082603864,0.0,0.0,0.0,919.9076558843732,0.0,0.0,0.0,0.0,0.0,22.50577772356787,0.0,0.0,0.0,709.2408103708974,0.0,183.5804663687608,0,0,0,0,0,0,0,0,0.0494181361089007,0.0015635553792031787,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.20388284152005734,-0.20388284152005734,-0.20708580124617657,-0.20708580124617657,-0.4328408005026144,-0.4328408005026144,0.9664075076936639,0.9664075076936639,0.08814819673651872,0.08814819673651872,-0.12260350297698014,-0.2432498615706444,-0.31288727980498726,-0.3025643982624204,-0.18430417812819738,-0.11073367329114608,-0.20809336482157004,-0.26144343762587074,-0.30650348991904675,-0.20807937791946152,5.862051762179007,5.862051762179007,5.889399821314143,5.889399821314143,8.907437868360702,8.907437868360702,24.726808176001015,24.726808176001015,5.160900951460604,5.160900951460604,5.311370367568415,6.228005322159532,7.034964110600654,6.9024200194711085,5.704207535719647,5.253967279169473,5.8980915393276945,6.419110608087564,6.952465285902761,5.897970590903924,182.94983590495488,182.94983590495488,0.0,203.27759544994987,0.0,182.94983590495488,203.27759544994987,0,0
+2017/04/25 16:00:00,205.5579086404592,0,957.3273119761349,0,0,0,0.2873151337563549,0.0,16.735683873587277,0.0,131.64086955684016,0,39.380909295966944,0.002508739172141297,14.07864683868201,0,0,1.5163070660723648,494.43642224698874,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1128.2732742808707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,404.9073850261264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,219.72101574404158,0.0,0.0,0,0,0,0,0,0,0,0,0.050968815188331594,0.0016126177843638887,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3641919633645592,-0.3641919633645592,-0.21078232757841048,-0.21078232757841048,-0.3790233756709462,-0.3790233756709462,0.9790710365106641,0.9790710365106641,0.14718637757957884,0.14718637757957884,-0.15469102675609184,-0.15859541627920834,-0.3015495138295398,-0.32106781590414574,-0.15578434220865275,-0.1463464352316708,-0.10975782615517238,-0.24269949965292817,-0.32788721080983285,-0.19151645127660727,7.760755476705896,7.760755476705896,5.9214958232523145,5.9214958232523145,7.991435021927927,7.991435021927927,25.246772880449726,25.246772880449726,5.448883202454766,5.448883202454766,5.495874044607078,5.521249401526916,6.889632466039174,7.143205169303869,5.502915680567682,5.443769784307406,5.249508421527537,6.222441125228514,7.235603825273586,5.760489390699476,205.5579086404592,205.5579086404592,0.0,228.39767626717688,0.0,205.5579086404592,228.39767626717688,0,0
+2017/04/25 17:00:00,211.03399200757457,0,1001.3783018631384,0,0,0,0.40231050591839845,0.0,17.03716072779536,0.0,133.89528835348938,0,39.380909295966944,0.0002730945720257127,18.60206242860531,0,0,0.16594313781499495,539.8377760622495,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1592.2235155147573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05331412251877753,0.0016868216734851323,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3929218591034984,-0.3929218591034984,0.05952125585695341,0.05952125585695341,-0.3251749910388359,-0.3251749910388359,0.9696485059713319,0.9696485059713319,0.21658893918779357,0.21658893918779357,-0.14821056522710865,-0.024331460740920085,-0.26061950669487993,-0.29826621733584957,-0.08876652168591656,-0.1444939053731382,0.05016590214967924,-0.19604086628816839,-0.29170728998439943,-0.12764590792362696,8.216124771731884,8.216124771731884,5.073348964799749,5.073348964799749,7.198618727159314,7.198618727159314,24.859291090215734,24.859291090215734,5.973068332881198,5.973068332881198,5.455158018543145,5.012255435487177,6.410155069154925,6.848561239092049,5.163166976878756,5.432595742349932,5.052101127266894,5.796905658392902,6.767878810618825,5.3375277467092985,211.03399200757457,211.03399200757457,0.0,234.4822133417495,0.0,211.03399200757457,234.4822133417495,0,0
+2017/04/25 18:00:00,195.30564981939068,0,1007.2875938482873,0,0,0,0.2532099415706021,0.0,17.644803712327896,0.0,110.93442390708215,0,39.380909295966944,0.00037428659814125646,25.37594107461774,0,0,0.22776786608359548,581.1755958316741,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,989.6879804110346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05362873760111884,0.0016967758753856082,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4828204129384887,-0.4828204129384887,-0.0005174961896528923,-0.0005174961896528923,-0.32820673539436857,-0.32820673539436857,0.9514913779964337,0.9514913779964337,0.14813907472084423,0.14813907472084423,-0.15379432613423535,0.031235349993240687,-0.2649347497233093,-0.2817913147524152,-0.024839137623421378,-0.14735220804955151,0.07004817425919406,-0.17980207653664906,-0.26594465784794225,-0.06562406181954694,9.86947505120159,9.86947505120159,5.000005543641706,5.000005543641706,7.239981555584151,7.239981555584151,24.122369513114975,24.122369513114975,5.4547186049146035,5.4547186049146035,5.4901359005705075,5.0201972673617234,6.457375760147613,6.649350277519673,5.012772205487451,5.449896220643652,5.101594439346243,5.6701761690003,6.468540155445396,5.089164271379843,195.30564981939068,195.30564981939068,0.0,217.00627757710075,0.0,195.30564981939068,217.00627757710075,0,0
+2017/04/25 19:00:00,189.20596719008083,0,990.8187995248386,0,0,0,0.05251992604350917,0.0,19.61085651528496,0.0,101.68988858149199,0,39.380909295966944,0.0012603150005242787,27.097742475311204,0,0,0.7695143421641596,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,202.0728311433636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,209.76144752814236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.69382124263522,0.0,0.0,0,0,0,0,0,0,0,0,0.052751926792792676,0.001669034192597719,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5517047349027249,-0.5517047349027249,-0.36641307073613916,-0.36641307073613916,-0.34388158918455625,-0.34388158918455625,0.9351890692940131,0.9351890692940131,0.054849025830624676,0.054849025830624676,-0.22008095422875806,-0.007329534049122351,-0.258111045582169,-0.32769953605505375,-0.0620102621054326,-0.23272623901355863,-0.013590695931850071,-0.23344220945222735,-0.3299189543821152,-0.10924494302523864,11.372120173472538,11.372120173472538,7.794704307583174,7.794704307583174,7.4600597714531744,7.4600597714531744,23.47178239161667,23.47178239161667,5.062284110707566,5.062284110707566,6.004763364770554,5.00111207638119,6.383065784678493,7.23303455697328,5.079612786985891,6.123814260550617,5.003823559309097,6.130755481858159,7.263514049126044,5.247180803386328,189.20596719008083,189.20596719008083,0.0,210.22885243342313,0.0,189.20596719008083,210.22885243342313,0,0
+2017/04/25 20:00:00,209.22003838005173,0,920.4972019467591,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.006174942557118652,23.0261218725644,0,0,3.817975954199574,561.7757008671183,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,509.7705778971339,0.0,630.8850831579523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,448.80265087579534,0.0,0.0,0,0,0,0,0,0,0,0,0.04900795285005959,0.001550577466814763,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4726270182660418,-0.4726270182660418,-0.3582040558964736,-0.3582040558964736,-0.47726415139351575,-0.47726415139351575,0.8774515969499534,0.8774515969499534,-0.004852117611530387,-0.004852117611530387,-0.24148128608332864,-0.11123150611963407,-0.3258929301087423,-0.34926290844092917,-0.10018168527279281,-0.2598114202697356,-0.11054117912559813,-0.31622008112124905,-0.36200070796489003,-0.1534863402446279,9.664533099878682,9.664533099878682,7.670279377214982,7.670279377214982,9.757208753098354,9.757208753098354,21.253395009329893,21.253395009329893,5.000487353325056,5.000487353325056,6.210170149131272,5.2562572215828,7.208378519592387,7.538021439823098,5.207851023352205,6.401399500337305,5.253084599978834,7.078719985744414,7.727468880284732,5.488172772893094,209.22003838005173,209.22003838005173,0.0,232.4667093111686,0.0,209.22003838005173,232.4667093111686,0,0
+2017/04/25 21:00:00,197.40496446164354,0,893.007272979172,0,0,0,0.0,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.017108059155276047,25.4919189518687,0,0,10.900140199445824,562.693960166829,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,349.0087858414118,0.0,1505.1399308451419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.38737567362635,0.0,1427.8916352568522,0.0,491.57131189269,0,0,0,0,0,0,0,0,0.047544368669851594,0.0015042706835553124,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4396808448992253,-0.4396808448992253,-0.3978772953173488,-0.3978772953173488,-0.5688502662910149,-0.5688502662910149,0.8140163231980143,0.8140163231980143,-0.09607376814574826,-0.09607376814574826,-0.2534343326138658,-0.20037802722871131,-0.35338319034755666,-0.3719409925419242,-0.16995211454218137,-0.2801206954520629,-0.19950570940008142,-0.35267068292849924,-0.3906598895750526,-0.21538158142650787,9.032751623118813,9.032751623118813,8.298233063392075,8.298233063392075,11.778072954407236,11.778072954407236,18.974051119356545,18.974051119356545,5.1911479298461956,5.1911479298461956,6.3332680436200945,5.83261814133202,7.598546286683899,7.880109453240578,5.598670598856231,6.629789315009148,5.82537222178351,7.588028269961725,8.178994414622338,5.9622286802825215,197.40496446164354,197.40496446164354,0.0,219.33884940182617,0.0,197.40496446164354,219.33884940182617,0,0
+2017/04/25 22:00:00,140.02573553797134,0,758.5471664815718,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.059216284936697755,20.7815864452584,0,0,38.03975331142326,560.8008268637001,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,773.5894433921001,0.0,822.9527304408983,0.0,2251.434250598003,0.0,153.51319029008775,0.0,0.0,0.0,753.1083795622113,0.0,639.350925219476,0.0,2229.8257242604714,0.0,45.29490279932929,0,0,0,0,0,0,0,0,0.04038561300442208,0.0012777726443654544,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5107418343602111,-0.5107418343602111,-0.4900019978075705,-0.4900019978075705,-0.6066342681809388,-0.6066342681809388,0.6118319398422655,0.6118319398422655,-0.33278230008478116,-0.33278230008478116,-0.30403845223984555,-0.2786443161291802,-0.38147557425059403,-0.4038240246445688,-0.23830895696739535,-0.3458327966330359,-0.293795823610404,-0.3901313567568718,-0.42981373293076486,-0.2696938364098725,10.453816920185858,10.453816920185858,10.016555295252374,10.016555295252374,12.717701220857464,12.717701220857464,12.851806797757789,12.851806797757789,7.303145412653819,7.303145412653819,6.921070692250524,6.612600657693264,8.03047913082679,8.398152991609933,6.178507968094252,7.488185554996505,6.793372965136697,8.170350036349106,8.85262150591042,6.510362533644852,140.02573553797134,140.02573553797134,0.0,155.58415059774595,0.0,140.02573553797134,155.58415059774595,0,0
+2017/04/25 23:00:00,90.86111762277902,0,616.3686398660252,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.11074894250457802,11.807412418981874,0,0,71.68626069179224,491.4468504054167,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.57793176517873,0.0,1669.8409292435292,0.0,1122.3576747371194,0.0,2911.7648145515195,0.0,14.196992042247546,0.0,378.83837701972766,0.0,1726.3402320501789,0.0,1045.186532590226,0.0,2929.4392033530294,0.0,1.0302517905789286,0,0,0,0,0,0,0,0,0.03281592293482785,0.0010382729270727328,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6704344386729456,-0.6704344386729456,-0.6507247105545834,-0.6507247105545834,-0.6693561621570482,-0.6693561621570482,0.3720868345278513,0.3720868345278513,-0.4148550274079082,-0.4148550274079082,-0.3562387419464757,-0.3278716899037736,-0.4103646673438031,-0.4365611937459626,-0.2757222548056702,-0.3970959103011585,-0.35646128417159273,-0.4260889931020418,-0.46936669409770293,-0.30484773754349975,14.444911533952563,14.444911533952563,13.892485322278304,13.892485322278304,14.414254395091916,14.414254395091916,7.882380318104794,7.882380318104794,8.58751016753449,8.58751016753449,7.640916643722008,7.235391287324987,8.509800106252797,8.975348449252834,6.578851727814495,8.285216295300316,7.644233276851594,8.785710925314604,9.599928756117762,6.931349366050455,90.86111762277902,90.86111762277902,0.0,100.95679735864336,0.0,90.86111762277902,100.95679735864336,0,0
+2017/04/26 00:00:00,39.34390710833361,0,519.2598733675674,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5787934351861206e-09,9.54658610933163,0,0,0.0,466.02434459875116,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027645780277339223,0.0008746932172765112,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5333621777354797,-0.5333621777354797,-0.488398526832961,-0.488398526832961,-0.552866234311729,-0.552866234311729,0.40905596811088935,0.40905596811088935,-0.05058910629890913,-0.05058910629890913,-0.3330819675463497,-0.2148779182810529,-0.4448242799750635,-0.4664513357968175,-0.034080963038472294,-0.40484501854348104,-0.26247545332266736,-0.46486237338019104,-0.523853367426289,-0.1116925454467599,10.951934204194629,10.951934204194629,9.983522858667186,9.983522858667186,11.39921835448763,11.39921835448763,8.487314344457573,8.487314344457573,5.052983996150104,5.052983996150104,7.307313201352656,5.957724842831638,9.128306648285147,9.54254798840364,5.024045133900529,8.415460459704136,6.430368188314773,9.511427847112856,10.739844911028072,5.258387101645738,39.34390710833361,39.34390710833361,0.0,43.7154523425929,0.0,39.34390710833361,43.7154523425929,0,0
+2017/04/26 01:00:00,23.722153955782723,0,47.211696427907384,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250585321049324,0,0,0.0,11.721343915363246,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002513585687840078,7.952809904950299e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5418594902289495,-0.5418594902289495,-0.47212668333625707,-0.47212668333625707,-0.5644454493828976,-0.5644454493828976,0.3403680500878844,0.3403680500878844,0.08138241760219106,0.08138241760219106,-0.39615581169838143,-0.25722013642350267,-0.5135112341663944,-0.5320295092407706,0.05082878368831477,-0.47845186129537226,-0.30572847933868535,-0.5444835418557386,-0.6040369117925782,-0.06968199003187521,11.14477570468344,11.14477570468344,9.654589044446652,9.654589044446652,11.672563710561363,11.672563710561363,7.409821659073387,7.409821659073387,5.137142080122857,5.137142080122857,8.269590190896608,6.373508425245234,10.51361181550287,10.92197379445632,5.053487291115729,9.781094957378386,6.942567085989737,11.2049591871328,12.651125961615733,5.100534794610951,23.722153955782723,23.722153955782723,0.0,26.35794883975858,0.0,23.722153955782723,26.35794883975858,0,0
+2017/04/26 02:00:00,28.39713767015879,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.577774583685893,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5314167370322921,-0.5314167370322921,-0.45448203341775506,-0.45448203341775506,-0.5542905504796152,-0.5542905504796152,0.30933049261880324,0.30933049261880324,0.15494559138323394,0.15494559138323394,-0.4267411734195824,-0.2777781615174951,-0.5482641839545981,-0.5650373841858903,0.07680427289096206,-0.5195018666846318,-0.3334663712683912,-0.5870934693336052,-0.6465080342188042,-0.06255662683174291,10.908223558640898,10.908223558640898,9.31080225322954,9.31080225322954,11.43252797482539,11.43252797482539,6.988786341714373,6.988786341714373,5.497509152582452,5.497509152582452,8.797383581895659,6.6025592892244305,11.292194117069585,11.68669346679161,5.12214235698967,10.644092291783537,7.312665086427373,12.224017568732677,13.776485978270912,5.081022130833361,28.39713767015879,28.39713767015879,0.0,31.552375189065323,0.0,28.39713767015879,31.552375189065323,0,0
+2017/04/26 03:00:00,23.721854332631242,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5247589089534518,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5323328771558777,-0.5323328771558777,-0.4509797289326095,-0.4509797289326095,-0.5560484445412469,-0.5560484445412469,0.273374884672776,0.273374884672776,0.19187229357136476,0.19187229357136476,-0.4423325548709089,-0.2853425387555613,-0.5676125610843196,-0.5816974660572422,0.10221577561000497,-0.5510301961856269,-0.355802485158479,-0.620817825300382,-0.6795961459953996,-0.04997071988946006,10.928787203960908,10.928787203960908,9.244158053203208,9.244158053203208,11.473760043486052,11.473760043486052,6.552001045833876,6.552001045833876,5.763322507864743,5.763322507864743,9.08187324213246,6.691322069131061,11.748340999966828,12.090611405648943,5.216381084459741,11.356409797257754,7.634421055876288,13.086418048936949,14.707424025692433,5.0516964472852806,23.721854332631242,23.721854332631242,0.0,26.357615925145822,0.0,23.721854332631242,26.357615925145822,0,0
+2017/04/26 04:00:00,40.83076537681114,0,239.88112150386675,0,0,0,0.0,0.00034598130840208797,4.633261998087618,9.319298099999997,25.555573451546493,0,0.4502161209790033,0.3469820629434904,0.525087661946117,0,0,151.15524022250642,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.98416146144222,0.0,0.0,0.0,612.3865100493283,0.0,380.3086184307664,0.0,0.0,0.0,594.625623808985,0.0,0.0,0.0,924.554811880429,0.34598130840208796,683.1836192217563,0.0,0.0,0,0,0,0,0,0,0,0,0.012771448590411771,0.00040407973096659515,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4682949392599106,-0.4682949392599106,-0.3874508518911468,-0.3874508518911468,-0.4920575059254204,-0.4920575059254204,0.31118239190477975,0.31118239190477975,0.3264346036122313,0.3264346036122313,-0.4410708485552592,-0.29097945474405784,-0.49698053906416756,-0.5117781796855144,0.14080542293436166,-0.49550917884221757,-0.3769997809804728,-0.5273900005972085,-0.5663250830043838,-0.020482564603742152,9.578791653251528,9.578791653251528,8.126693023445327,8.126693023445327,10.05906232617339,10.05906232617339,7.012762721974468,7.012762721974468,7.215756593614472,7.215756593614472,9.058463069763306,6.759037617435027,10.161610399762282,10.476154106489119,5.41077301566564,10.130851898741952,7.959408456240482,10.818270521989916,11.717483920494033,5.0086847572951,40.83076537681114,40.83076537681114,0.0,45.3675170853457,0.0,40.83076537681114,45.3675170853457,0,0
+2017/04/26 05:00:00,73.31102039032457,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5249773603686947,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.23745268097314182,-0.23745268097314182,-0.16261741890645792,-0.16261741890645792,-0.2608405191490393,-0.2608405191490393,0.5028249427072276,0.5028249427072276,0.6542511703715347,0.6542511703715347,-0.40236075619465317,-0.24841643853009612,-0.5233372708253095,-0.5405538652767926,0.25713240209257393,-0.5141897922195439,-0.34038622918677847,-0.5621331757010626,-0.6122463718327921,0.12161430313948168,6.170034122313041,6.170034122313041,5.548053396021558,5.548053396021558,6.412554512057966,6.412554512057966,10.2847101783928,10.2847101783928,13.990088890274464,13.990088890274464,8.373426061036014,6.280860237580214,10.728445626065863,11.114941926760181,6.372569048398276,10.528313351633955,7.4100802418602285,11.617514298532797,12.8625500643913,5.3063629215103845,73.31102039032457,73.31102039032457,0.0,81.45668932258286,0.0,73.31102039032457,81.45668932258286,0,0
+2017/04/26 06:00:00,86.3224047813566,0,694.799996445615,0,0,0,0.6017044302373902,0.0,11.110595677687485,0.0,73.80580873715317,0,0.2792177403516404,2.5205179396970635e-09,0.525078193406381,0,0,0.0,464.11270511407804,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,1967.766671383969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03699166645375391,0.0011703905412782129,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.0459822868766789,-0.0459822868766789,0.02525129014384017,0.02525129014384017,-0.0690951558762298,-0.0690951558762298,0.6683811082104537,0.6683811082104537,0.8595804072296435,0.8595804072296435,-0.3288349040251825,-0.17734678296243525,-0.44864803195765735,-0.46600624529738,0.3637297320879273,-0.4471412654345522,-0.27066170429715364,-0.5044394951240502,-0.560653096217146,0.23017652533290436,5.043772683556398,5.043772683556398,5.01319958923429,5.01319958923429,5.0988482367273065,5.0988482367273065,14.386575383255916,14.386575383255916,20.59432364385708,20.59432364385708,7.248600571128065,5.651973191861288,9.200081573291328,9.533819836295322,7.753716859938876,9.171723280421531,6.5212553342980755,10.318977467648551,11.582399048183547,6.099269861163563,86.3224047813566,86.3224047813566,0.0,95.91378309039622,0.0,86.3224047813566,95.91378309039622,0,0
+2017/04/26 07:00:00,147.25269238064442,0,882.9284902690927,0,0,0,0.0,0.0,7.9533070238995,0.0,69.33401494192633,0,39.380909295966944,0.07139432477814969,27.081091591619202,0,0,25.878376037025607,590.872470387986,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,603.7988942685303,0.0,2019.7938417359267,0.0,1432.258499757851,0.0,1800.8646272775197,0.0,1716.0226733604534,0.0,788.0308578833946,0.0,1950.4557063225295,0.0,1532.2861307928652,0.0,1682.6613329432616,0.0,2207.202335468688,0,0,0,0,0,0,0,0,0.04700776681294542,0.0014872929748451504,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.20670615660650254,-0.20670615660650254,-0.1608016852771985,-0.1608016852771985,-0.26976682626975107,-0.26976682626975107,0.8139787666426299,0.8139787666426299,0.5700172749678631,0.5700172749678631,-0.3539166806738426,-0.2872739449368951,-0.4411651859529533,-0.36301432812682355,0.0798456544516094,-0.41834835104016377,-0.3471866381499932,-0.4695149680453959,-0.4028266681549483,-0.022700806641975095,5.886135848224114,5.886135848224114,5.535869247066273,5.535869247066273,6.511182616937305,6.511182616937305,18.97275148832422,18.97275148832422,11.806167514641501,11.806167514641501,7.60643579893933,6.7143727333215395,9.060211074702636,7.74284100674987,5.13201015186705,8.648563120529587,7.5077956781843795,9.602856906514333,8.381289295261197,5.010667765650538,147.25269238064442,147.25269238064442,0.0,163.61410264516047,0.0,147.25269238064442,163.61410264516047,0,0
+2017/04/26 08:00:00,163.14439750266916,0,904.5666138510663,0,0,0,0.37457184597797255,0.0,11.435487997441953,0.0,83.2008179303116,0,39.380909295966944,0.008938001625922454,25.311697228890463,0,0,4.011788492477924,581.1416527456912,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1487.8391422289674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,590.4530722571313,0.0,406.1936877310196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,807.6768971185237,0.0,409.4248784413975,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0481597965399521,0.0015237423923766798,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.33688560043697047,-0.33688560043697047,-0.34823355984796794,-0.34823355984796794,-0.47768675646792486,-0.47768675646792486,1.0290240430016968,1.0290240430016968,0.09649242438849967,0.09649242438849967,-0.27620859639025835,-0.34740419663526684,-0.43183507514272823,-0.26512105197240887,-0.1083933294209979,-0.2855150653169201,-0.3822352243647049,-0.4438872306039915,-0.2501088746006923,-0.20054443347198683,7.360545572223984,7.360545572223984,7.523013559388545,7.523013559388545,9.765700851604905,9.765700851604905,27.3575708193775,27.3575708193775,5.1928181634039134,5.1928181634039134,6.584443853743238,7.51095423652869,8.88918181548594,6.459432075337361,5.243340054710131,6.693374709823516,8.04262641959636,9.110813379671995,6.298418048273646,5.8340040115062095,163.14439750266916,163.14439750266916,0.0,181.27155278074352,0.0,163.14439750266916,181.27155278074352,0,0
+2017/04/26 09:00:00,180.32771106711704,0,914.0112792277477,0,0,0,0.8433863139275765,0.0,11.287802377079139,0.0,106.27511244621549,0,39.380909295966944,0.00019742148406190233,20.824315611216694,0,0,0.09080636221851685,541.2717714838158,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3457.3869976326555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04866263752033322,0.0015396519304868613,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.23699437848252802,-0.23699437848252802,-0.38891813849159085,-0.38891813849159085,-0.4984381691961356,-0.4984381691961356,1.103735276083812,1.103735276083812,-0.03714025175043214,-0.03714025175043214,-0.17539533894491374,-0.32715467154645567,-0.3831331370544477,-0.12266014086967554,-0.1465501406237759,-0.1411816893936077,-0.36156782759704287,-0.3676584772529271,-0.11750285403601436,-0.22233873924804862,6.165511332782486,6.165511332782486,8.150552487341585,8.150552487341585,10.192174095390797,10.192174095390797,30.684901111069095,30.684901111069095,5.0285560027251535,5.0285560027251535,5.637685096815389,7.225583824147066,8.0570163872773,5.311658306262871,5.44500720817345,5.412973242806785,7.720917338313754,7.813831884995011,5.285986059575549,6.025527979429199,180.32771106711704,180.32771106711704,0.0,200.3641234079078,0.0,180.32771106711704,200.3641234079078,0,0
+2017/04/26 10:00:00,211.37648531371835,0,982.1876023040385,0,0,0,1.036444522632628,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.00013907163740604743,18.549419035304417,0,0,0.06403659953182984,520.748983041433,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4308.678625029963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05229239545957195,0.0016544949415343779,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.07216688471500853,-0.07216688471500853,-0.44805287933734367,-0.44805287933734367,-0.4264144623198337,-0.4264144623198337,1.0878815528219532,1.0878815528219532,0.13826586268593044,0.13826586268593044,-0.09422063651669985,-0.34306192975981337,-0.3585213492291968,-0.10333823330137597,-0.1634716849125444,-0.02030852180690117,-0.3604904729714872,-0.3212956654535891,-0.06882999313150102,-0.22693141113817714,5.107834581632559,5.107834581632559,9.188868760295634,9.188868760295634,8.791533858692503,8.791533858692503,29.96243215234344,29.96243215234344,5.39607694994325,5.39607694994325,5.183842200776908,7.448293011169412,7.675035307657083,5.221161713860354,5.5538333303081515,5.008537790782498,7.704646478190867,7.146260555916754,5.098090843179548,6.068425704843861,211.37648531371835,211.37648531371835,0.0,234.86276145968705,0.0,211.37648531371835,234.86276145968705,0,0
+2017/04/26 11:00:00,225.70232151007434,0,1074.3534133182932,0,0,0,1.0009450398473398,0.0,16.693521233099577,0.0,147.76209134187457,0,39.380909295966944,2.0325799055342065e-05,20.86483427348675,0,0,0.009362708972397145,559.7339391774309,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4146.902737865302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05719937150580154,0.0018097482431926237,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.19332473682901413,0.19332473682901413,-0.3617010771011872,-0.3617010771011872,-0.24430580303173416,-0.24430580303173416,1.0466259219838576,1.0466259219838576,0.3418891241442832,0.3418891241442832,-0.12774066133739032,-0.23118899689944572,-0.2641267764950901,-0.06441710696288762,-0.13379340422834854,-0.09811854600178185,-0.23403496265804405,-0.24118179925436692,0.003379393747981752,-0.17755455466287842,5.774941337833212,5.774941337833212,7.722933187803875,7.722933187803875,6.238716588128071,6.238716588128071,28.12352485478182,28.12352485478182,7.431506251117142,7.431506251117142,5.3380293966218915,6.108983604101468,6.4484746503833605,5.085914018937828,5.370847896421964,5.199374595196133,6.13651840735514,6.207162985212477,5.000236406084994,5.653503817483369,225.70232151007434,225.70232151007434,0.0,250.78035723341594,0.0,225.70232151007434,250.78035723341594,0,0
+2017/04/26 12:00:00,205.14855599687536,0,998.8684946303632,0,0,0,0.9544120130425342,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,8.703032314715436e-06,18.577661198251786,0,0,0.004008551918526239,519.7447271590988,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3939.592618225853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05318049852267363,0.0016825939033920136,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4284100334404642,0.4284100334404642,-0.22395233695655636,-0.22395233695655636,-0.07231388944055284,-0.07231388944055284,1.004459052934104,1.004459052934104,0.504490167098632,0.504490167098632,0.06574070188459236,-0.1338064376210484,-0.2902096505699884,-0.1705896780817282,0.05315956567985106,0.12826169896924347,-0.11805047841111656,-0.21032922057641712,-0.1189655998271991,0.0317895965569111,8.827335778418231,8.827335778418231,6.040498982444078,6.040498982444078,5.108274452184531,5.108274452184531,26.30777903561082,26.30777903561082,10.320054754154938,10.320054754154938,5.089481575111947,5.370920208618969,6.749710961901698,5.603176448470322,5.058505774227157,5.340794579547364,5.28865960413961,5.91753085096272,5.29315510940711,5.020920428452612,205.14855599687536,205.14855599687536,0.0,227.94283999652816,0.0,205.14855599687536,227.94283999652816,0,0
+2017/04/26 13:00:00,202.42217431171574,0,961.2248195507266,0,0,0,0.8934576447157109,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.7479981567647987e-09,16.30649239762366,0,0,0.0,517.595413143925,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3670.1079827821027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05117632137851269,0.0016191831355774724,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5503455400256752,0.5503455400256752,-0.04017678287781762,-0.04017678287781762,0.032726675169085374,0.032726675169085374,0.9971511134428439,0.9971511134428439,0.6025708374265369,0.6025708374265369,0.16698724966592685,-0.1406787082126458,-0.23575881954849273,-0.14314487612810084,0.13581408475103873,0.26028605863207394,-0.10538821123809224,-0.15831797140731654,-0.09559397584424364,0.12149021973882312,11.340483950006046,11.340483950006046,5.033416627470544,5.033416627470544,5.022172031759354,5.022172031759354,25.999849217160474,25.999849217160474,12.613676922324046,12.613676922324046,5.577939756587,5.4100333745013955,6.153362060515775,5.424548597174763,5.382143463769253,6.406538848767752,5.230027727836642,5.5194252711458205,5.1892427385673585,5.305737667504133,202.42217431171574,202.42217431171574,0.0,224.91352701301747,0.0,202.42217431171574,224.91352701301747,0,0
+2017/04/26 14:00:00,186.42467501055,0,923.4423674890456,0,0,0,0.8286778876500142,0.0,16.630907673226492,0.0,115.5196477718057,0,39.380909295966944,2.692544972800744e-09,14.064532379208327,0,0,0.0,515.3033135947882,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3384.4368525934774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049164755645034676,0.0015555385979472104,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5353188409902283,0.5353188409902283,0.176763292740372,0.176763292740372,0.07842119067697277,0.07842119067697277,0.9774500335300651,0.9774500335300651,0.6277729514273083,0.6277729514273083,0.13699810638601076,-0.06643419254306136,-0.2815988866095715,-0.18043403239802464,0.0778372893818807,0.23719710663876978,-0.012458693384539015,-0.20001094576578146,-0.13218090846406702,0.067005327730765,10.996062336478587,10.996062336478587,5.647684334006186,5.647684334006186,5.127340707510683,5.127340707510683,25.17986785142925,25.17986785142925,13.27041410628064,13.27041410628064,5.388841048684796,5.091379767366021,6.6470911735604545,5.674902063597187,5.125450973089428,6.1675108819784725,5.003213134160319,5.829565096115857,5.361955919363467,5.092958022638129,186.42467501055,186.42467501055,0.0,207.1385277895,0.0,186.42467501055,207.1385277895,0,0
+2017/04/26 15:00:00,179.59356392310232,0,902.3905020194857,0,0,0,0.7387132681507748,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,5.648193877984242e-06,14.086636655706101,0,0,0.0015091822517261945,494.2499389429765,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2994.6128907581356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0480439387341782,0.001520076732161546,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4340674683789244,0.4340674683789244,0.39636820099382036,0.39636820099382036,0.057366341920518274,0.057366341920518274,0.971855807515942,0.971855807515942,0.6019494423698081,0.6019494423698081,0.001936444833581854,-0.0206268161884835,-0.25301116052844647,-0.14354964078152788,-0.05439720269952718,0.09734134282637498,0.06732036427324108,-0.16229290156989237,-0.08560579587468983,-0.06658810573761825,8.929763290327514,8.929763290327514,8.273117172397264,8.273117172397264,5.068133270522026,5.068133270522026,24.94975314700565,24.94975314700565,12.597832310370563,12.597832310370563,5.000077623132867,5.0088075178506415,6.328807482427919,5.426955119462363,5.061262061340344,5.19622726305478,5.0938343697747825,5.545865696048793,5.1517502949173775,5.091803754891814,179.59356392310232,179.59356392310232,0.0,199.54840435900257,0.0,179.59356392310232,199.54840435900257,0,0
+2017/04/26 16:00:00,202.47047801733427,0,976.6932575125936,0,0,0,0.7580654777440732,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,8.547588543929585e-06,14.059717465967971,0,0,0.0031635508978175276,515.3155112986221,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3077.999914642462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05199987247317762,0.0016452397181502029,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.34172147806791503,0.34172147806791503,0.28869348809131906,0.28869348809131906,0.08675888247737872,0.08675888247737872,0.9845989462729331,0.9845989462729331,0.6424767508599931,0.6424767508599931,-0.1017011029606687,-0.1166584220553892,-0.20445734138233235,-0.13217554113012228,-0.08643298315251875,-0.035487076665596855,-0.04686628066938042,-0.17109750985259806,-0.06691607408330474,-0.11277836041210659,7.429111450948611,7.429111450948611,6.73141488992151,6.73141488992151,5.155867276815883,5.155867276815883,25.475692630796303,25.475692630796303,13.66630755538472,13.66630755538472,5.214206546543409,5.281887899332759,5.866925463098369,5.361926502223113,5.154698093932396,5.026070288592592,5.04547205849093,5.606777576725094,5.09271049080256,5.263438164109289,202.47047801733427,202.47047801733427,0.0,224.96719779703807,0.0,202.47047801733427,224.96719779703807,0,0
+2017/04/26 17:00:00,209.5787000850042,0,981.1335933450439,0,0,0,0.713146432126339,0.0,17.028300508570425,0.0,133.89528835348938,0,39.380909295966944,2.0871325779795787e-05,18.561034623525277,0,0,0.009616851823952997,519.7493938301461,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2885.7857949627805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05223627924188362,0.0016527194635229496,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2297077323749101,0.2297077323749101,0.11772280372924196,0.11772280372924196,0.048777222899107624,0.048777222899107624,0.9806369920705126,0.9806369920705126,0.6394594280714863,0.6394594280714863,-0.06912713002712402,-0.0679314834055377,-0.2023244724515521,-0.13782453387630858,-0.06890719648700101,-0.14327814334374986,-0.013260190570524848,-0.12985186053914824,-0.08071889348723754,-0.10529120805935187,6.094786784183256,6.094786784183256,5.287058373601269,5.287058373601269,5.049256248775293,5.049256248775293,25.311502176465808,25.311502176465808,13.58430268727983,13.58430268727983,5.098939762523926,5.0955460698060335,5.848901051904178,5.393550414780634,5.098311061033272,5.425340182437793,5.003639852604422,5.349303474759637,5.134914266168153,5.229604262738647,209.5787000850042,209.5787000850042,0.0,232.86522231667132,0.0,209.5787000850042,232.86522231667132,0,0
+2017/04/26 18:00:00,195.65627742068355,0,1007.0479638353761,0,0,0,0.6810047936635784,0.0,19.111200031868716,0.0,110.93442390708215,0,39.380909295966944,4.8178253515685954e-05,25.548691213848578,0,0,0.02220396096771059,581.1415297238788,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2748.94888006694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05361597952173589,0.001696372218647047,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.13914922601366503,0.13914922601366503,-0.024783949011024178,-0.024783949011024178,0.0012597218991896217,0.0012597218991896217,0.9735844950537277,0.9735844950537277,0.6080112271485019,0.6080112271485019,-0.18249890726049162,0.013715411188256896,-0.17083301026399164,-0.0901480731351855,0.007142848909475308,-0.1793343482487373,0.06136621255497627,-0.13810764607844178,-0.042001258650532204,-0.0301231450602321,5.401158405424681,5.401158405424681,5.012715511357456,5.012715511357456,5.000032849610534,5.000032849610534,25.020732139510017,25.020732139510017,12.753114093758953,12.753114093758953,5.690459861055373,5.003894055797176,5.604900619259794,5.168287375019105,5.001056147945263,5.666689137578274,5.077967352966283,5.395170253901199,5.036520762035295,5.01878447915017,195.65627742068355,195.65627742068355,0.0,217.39586380075949,0.0,195.65627742068355,217.39586380075949,0,0
+2017/04/26 19:00:00,191.31865140969418,0,990.071400699099,0,0,0,0.5899076453715238,0.0,22.560155439688142,0.0,101.68988858149199,0,39.380909295966944,4.7971864329519305e-05,27.097742475311204,0,0,0.022115516424519085,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2364.599097330757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052712134725706995,0.001667775199332487,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.05038230400934616,0.05038230400934616,-0.1459592712473707,-0.1459592712473707,-0.053839602142277045,-0.053839602142277045,0.9628675652943166,0.9628675652943166,0.5571081322702769,0.5571081322702769,-0.04720212844137782,-0.034279095009453905,-0.16511454907387688,-0.07218499322850949,0.008138624699758972,-0.03854104839896295,0.004875642658750652,-0.11806895512918406,-0.05666213551091488,-0.032315408116735826,5.05255164776905,5.05255164776905,5.44142268929852,5.44142268929852,5.0600123981054566,5.0600123981054566,24.5825729034691,24.5825729034691,11.498680146838652,11.498680146838652,5.046126172220525,5.02432553735602,5.56503440545157,5.107888717912843,5.001371147487305,5.03075082995619,5.000492090562162,5.288750026222331,5.066470544780529,5.021618247723609,191.31865140969418,191.31865140969418,0.0,212.57627934410465,0.0,191.31865140969418,212.57627934410465,0,0
+2017/04/26 20:00:00,207.93498326737313,0,916.6299139697234,0,0,0,0.4375388689409602,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,5.310725347779466e-05,23.025637327475657,0,0,0.024491527237605476,561.7018973170444,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1732.6662663361362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04880205557363621,0.0015440630205109682,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1066646955896849,-0.1066646955896849,-0.31835552360447544,-0.31835552360447544,-0.1826017140005062,-0.1826017140005062,0.9451790126690425,0.9451790126690425,0.431383359877695,0.431383359877695,-0.02320244378776065,-0.03852035172367002,-0.18379325672985666,-0.13332808477273103,-0.07751280165432993,-0.007164071485076418,-0.09237191427600845,-0.13449688405675458,-0.08211411526839432,-0.07094072381720228,5.235636590863237,5.235636590863237,7.107003208958972,7.107003208958972,5.691239110668832,5.691239110668832,23.86920981093124,23.86920981093124,8.880996356547314,8.880996356547314,5.011144453972378,5.030717810024143,5.700302909480669,5.368270828600998,5.1244069146840445,5.001062433260756,5.176695857914609,5.374761062880907,5.139619960168957,5.1042005398470565,207.93498326737313,207.93498326737313,0.0,231.03887029708125,0.0,207.93498326737313,231.03887029708125,0,0
+2017/04/26 21:00:00,195.07516015619146,0,882.1010799214503,0,0,0,0.26175276053034213,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.00013574038471040088,25.49131560649757,0,0,0.06264015817277813,562.6252671503803,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1022.1066486292024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04696371487316858,0.0014858992021773464,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.26236504017147994,-0.26236504017147994,-0.48247652115955686,-0.48247652115955686,-0.316455640947792,-0.316455640947792,0.9243867807517376,0.9243867807517376,0.28076722912312957,0.28076722912312957,-0.08118637479465153,-0.13059890953214595,-0.1876585177758277,-0.2115528607908138,-0.08870444232380449,-0.07439410624122712,-0.15471210439165925,-0.20198936056241726,-0.18027921855114556,-0.13981837613902678,6.4291616222731705,6.4291616222731705,9.862487926267661,9.862487926267661,7.081830417632418,7.081830417632418,23.04650857974559,23.04650857974559,6.637345489579445,6.637345489579445,5.136481956562122,5.353337208999179,5.730113233917606,5.92825821202473,5.162938753312517,5.114594963660849,5.496009327010583,5.846086393505146,5.673742792259276,5.405029235842221,195.07516015619146,195.07516015619146,0.0,216.75017795132385,0.0,195.07516015619146,216.75017795132385,0,0
+2017/04/26 22:00:00,138.82490513476415,0,718.341264727485,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.00016327621346979193,20.78380078492592,0,0,0.0754218119210293,558.5592566091154,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03824502101425503,0.0012100458059122713,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4750353254753058,-0.4750353254753058,-0.4423748593773261,-0.4423748593773261,-0.5206612979348316,-0.5206612979348316,0.8330204629811023,0.8330204629811023,0.011673260643998535,0.011673260643998535,-0.12275777776509743,-0.21504293610712832,-0.25518451382796736,-0.2689726983133563,-0.1572029403898261,-0.13444942363462306,-0.22934809879110615,-0.2494138709878504,-0.25528777588092255,-0.17954316372536688,9.712548717290815,9.712548717290815,9.082659361330542,9.082659361330542,10.669524918215018,10.669524918215018,19.639290099301945,19.639290099301945,5.0028207711912245,5.0028207711912245,5.3121549908889705,5.95919928869418,6.351796290302843,6.502272192835036,5.512126571543007,5.374496412680756,6.091353849074778,6.2911933149469945,6.352893496013067,5.6682447807533265,138.82490513476415,138.82490513476415,0.0,154.2498945941824,0.0,138.82490513476415,154.2498945941824,0,0
+2017/04/26 23:00:00,90.76510903969506,0,544.5509044443587,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.012951667241227828,11.809201111161274,0,0,6.1036807021783295,485.2116949733642,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,271.13923202324355,0.0,0.0,0.0,568.8801978443365,0.0,348.53711717985846,0.0,0.0,0.0,463.4763819876205,0.0,0.0,0.0,560.297735201405,0.0,463.683094960429,0,0,0,0,0,0,0,0,0.02899229350510292,0.0009172959572058096,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5069080760757531,-0.5069080760757531,-0.4824014026862825,-0.4824014026862825,-0.5821053820401172,-0.5821053820401172,0.6547405881362283,0.6547405881362283,-0.27131762950915655,-0.27131762950915655,-0.16439003368943425,-0.2971323704964205,-0.34499564942902716,-0.3335918336441565,-0.24010730832516067,-0.1918805544338414,-0.32443406585736206,-0.3484950011242672,-0.34106910548078867,-0.26525940743005555,10.371588524979117,10.371588524979117,9.860962363087324,9.860962363087324,12.100652223886087,12.100652223886087,14.0036773414121,14.0036773414121,6.528659835847563,6.528659835847563,5.560080777882192,6.834483643282525,7.4760986313904425,7.314413201884264,6.196404961413563,5.763388341397146,7.188569374913953,7.526821098971297,7.4198037666420475,6.460960122443154,90.76510903969506,90.76510903969506,0.0,100.85012115521673,0.0,90.76510903969506,100.85012115521673,0,0
+2017/04/27 00:00:00,39.34470193175612,0,527.6991401086271,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5788153039106714e-09,9.547380932754129,0,0,0.0,474.463611339811,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.028095093089654383,0.0008889091614612969,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2965958667730741,-0.2965958667730741,-0.35467045888655135,-0.35467045888655135,-0.4127713269976478,-0.4127713269976478,0.6776081689359268,0.6776081689359268,0.06428042451070089,0.06428042451070089,-0.07265210357094884,-0.16280673147569258,-0.29875722503729696,-0.226876237641387,0.011962580152703661,-0.11504377650638851,-0.2227011540148732,-0.3151573051469255,-0.25429568864741486,-0.052224285578330906,6.827841467077761,6.827841467077761,7.617603678791625,7.617603678791625,8.551342272265018,8.551342272265018,14.650153489151876,14.650153489151876,5.085549747767487,5.085549747767487,5.109289865312093,5.549331654512272,6.854674344770828,6.067905110113557,5.002962329400731,5.274134258938275,6.028880969887197,7.064715864053156,6.342370667171053,5.056464954323189,39.34470193175612,39.34470193175612,0.0,43.71633547972902,0.0,39.34470193175612,43.71633547972902,0,0
+2017/04/27 01:00:00,23.72214221274015,0,43.7795606229784,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250467890623589,0,0,0.0,8.289208110434274,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0023308562353797873,7.374666654659482e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.23289782529089711,-0.23289782529089711,-0.3082666328474461,-0.3082666328474461,-0.3709667898540188,-0.3709667898540188,0.6189651484215348,0.6189651484215348,0.2727999762959428,0.2727999762959428,-0.11039237315477678,-0.19067645450542864,-0.34812304811981953,-0.25964151801173296,0.11430218837124781,-0.16426355588389116,-0.2577487101410914,-0.37587794514405776,-0.2977802933837533,0.02235747475336032,6.125475802917151,6.125475802917151,6.9750782866529875,6.9750782866529875,7.864963679064303,7.864963679064303,13.037760005770991,13.037760005770991,6.545460292027258,6.545460292027258,5.252403307098604,5.753822558769812,7.521404979055603,6.399562115695829,5.270609399426391,5.559218272569439,6.379174748925948,7.941728924804181,6.842521459451717,5.010347515457553,23.72214221274015,23.72214221274015,0.0,26.3579357919335,0.0,23.72214221274015,26.3579357919335,0,0
+2017/04/27 02:00:00,28.344540808589297,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251777221164018,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2207433462616401,-0.2207433462616401,-0.3029507575698391,-0.3029507575698391,-0.3628529366878659,-0.3628529366878659,0.5682534938703978,0.5682534938703978,0.3569348701838482,0.3569348701838482,-0.1539306960783202,-0.2251287458508163,-0.39592741144899407,-0.3000299127373865,0.14003257265009691,-0.21323936925108222,-0.30394898599459186,-0.43175789745807297,-0.3450860544177043,0.026714805293132814,6.010833171679906,6.010833171679906,6.907299597654458,6.907299597654458,7.740390484420345,7.740390484420345,11.763729088059165,11.763729088059165,7.651298329183106,7.651298329183106,5.491006396043531,6.05148253086584,8.265799480770696,6.870566904489664,5.406272234419973,5.943146175392471,6.919936088543992,8.887782670679869,7.477402484576459,5.014774023361994,28.344540808589297,28.344540808589297,0.0,31.493934231765884,0.0,28.344540808589297,31.493934231765884,0,0
+2017/04/27 03:00:00,23.774887722725694,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5777922990479042,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.24223430027658846,-0.24223430027658846,-0.32984854738584934,-0.32984854738584934,-0.38700912655662945,-0.38700912655662945,0.49018983447951225,0.49018983447951225,0.4203841864785263,0.4203841864785263,-0.2125875712319275,-0.2795409017833809,-0.45759194407412496,-0.3562650698615699,0.17774128149109952,-0.2789602273352319,-0.3667152963334922,-0.5010580355072886,-0.40925376406095626,0.03258472997648095,6.217747849490351,6.217747849490351,7.262543933334356,7.262543933334356,8.11952816594183,8.11952816594183,10.020432103621303,10.020432103621303,8.684384773225844,8.684384773225844,5.937378188747644,6.623028139924344,9.37042218830446,7.641308908917225,5.654880945664843,6.616270904116234,7.7993399656716065,10.247338422276329,8.490708122358853,5.021980106504202,23.774887722725694,23.774887722725694,0.0,26.41654191413966,0.0,23.774887722725694,26.41654191413966,0,0
+2017/04/27 04:00:00,40.401119952331406,0,136.98382538889857,0,0,0,0.08951125675479363,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.16502036890177785,0.11365612962282826,0.5247986474178906,0,0,48.25794410753825,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,282.8081082082856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,335.55318702765857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,483.47857768516195,0.0,9.394121203359532,0.0,0.0,0,0,0,0,0,0,0,0,0.0072931203285376495,0.00023074924347070357,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.19212279091319606,-0.19212279091319606,-0.28260517871041413,-0.28260517871041413,-0.3355031457156501,-0.3355031457156501,0.4960433286896497,0.4960433286896497,0.5576589549966382,0.5576589549966382,-0.24834612322971125,-0.31372647955608773,-0.45010062149865254,-0.39064373451092166,0.2052938429722615,-0.31972594877907295,-0.406168512210956,-0.4765171518724036,-0.4462381444814255,0.04802451783130836,5.765320071561874,5.765320071561874,6.6589223058668665,6.6589223058668665,7.341126874150035,7.341126874150035,10.142007385456083,10.142007385456083,11.511652779370152,11.511652779370152,6.280133371643842,7.045937534666692,9.22751266510042,8.178730014828162,5.874046516425011,7.125255812895389,8.437962192554778,9.742216903872986,9.154772774112246,5.047747628033349,40.401119952331406,40.401119952331406,0.0,44.890133280368225,0.0,40.401119952331406,44.890133280368225,0,0
+2017/04/27 05:00:00,74.55993856309277,0,212.9421150752648,0,0,0,0.8445107183119878,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.4042814899761455,0.0,0.5251033248487507,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2742.5731183370394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.006226488413362376,0.006226488413362376,-0.08548299160309553,-0.08548299160309553,-0.13242404882481756,-0.13242404882481756,0.656312367931804,0.656312367931804,0.8048488614778343,0.8048488614778343,-0.22099691150489678,-0.28726043831663056,-0.45640128177106737,-0.36381851303676016,0.33309729077190264,-0.2922658065060923,-0.37916154303588,-0.49773436099110346,-0.4213499303055977,0.1834642722425346,5.000802542352233,5.000802542352233,5.151315084232863,5.151315084232863,5.363289773072822,5.363289773072822,14.047387261942447,14.047387261942447,18.658579398015462,18.658579398015462,6.013161574681817,6.714210989760872,9.347546883787132,7.755068063678067,7.307526419902899,6.7746784198868255,7.993628110812153,10.1774051327032,8.701439719569464,5.6977944733323085,74.55993856309277,74.55993856309277,0.0,82.84437618121419,0.0,74.55993856309277,82.84437618121419,0,0
+2017/04/27 06:00:00,86.09735600218586,0,691.8462019297693,0,0,0,0.0,0.0,11.110595677687485,0.0,73.80580873715317,0,0.6559469476191494,2.520539644411236e-09,0.5250046372054934,0,0,0.0,461.1589105982324,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.036834404245835,0.0011654148746404601,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.26997953944673775,0.26997953944673775,0.17445886348923803,0.17445886348923803,0.1344072648968295,0.1344072648968295,0.8747712932482824,0.8747712932482824,0.9540213974292121,0.9540213974292121,-0.15078743760245966,-0.21708373576140633,-0.38766424175008773,-0.2932635628057319,0.4692408579663831,-0.2159051858722267,-0.30335359709196197,-0.42588045739907965,-0.34551759356187567,0.32449019593605116,6.513573852674895,6.513573852674895,5.630884834319417,5.630884834319417,5.374261404471127,5.374261404471127,21.153708881602128,21.153708881602128,24.22427770980879,24.22427770980879,5.471138754465812,5.977528254032492,8.130157228059645,6.786858308723524,9.597444456509209,5.966922100552722,6.912394037718926,8.781982425476997,7.4836310840140925,7.189329866200254,86.09735600218586,86.09735600218586,0.0,95.66372889131762,0.0,86.09735600218586,95.66372889131762,0,0
+2017/04/27 07:00:00,147.95691454749561,0,872.1810806517158,0,0,0,0.0,0.0,8.703276803892733,0.0,69.33401494192633,0,39.380909295966944,0.03245710396065025,27.074281199294667,0,0,13.019962827737626,592.9834739798971,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1398.6790848143287,0.0,585.284898944523,0.0,1448.398437289024,0.0,0.0,0.0,0.0,0.0,1473.1853277739347,0.0,615.343031019006,0.0,1422.8101389460153,0.0,0.0,0,0,0,0,0,0,0,0,0.04643556676423833,0.0014691889641603938,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.07695556881198666,0.07695556881198666,0.00288234497149275,0.00288234497149275,-0.06427104316574694,-0.06427104316574694,0.769004660057608,0.769004660057608,0.6889791423713418,0.6889791423713418,-0.22559934372599003,-0.2858203527407031,-0.3943719702035944,-0.3294332227912747,0.23571783764492818,-0.2670090008018727,-0.3440877197053068,-0.41574842973186105,-0.3627612098058449,0.10521061756567837,5.122624172086546,5.122624172086546,5.000171978007614,5.000171978007614,5.085524774026496,5.085524774026496,17.459277293186787,17.459277293186787,14.980040917522246,14.980040917522246,6.055892518157862,6.697009955725008,8.240043477918093,7.256825586331374,6.15296018269089,6.480352804955615,7.463023406296088,8.603074415491491,7.738998223677356,5.2292527439763035,147.95691454749561,147.95691454749561,0.0,164.39657171943958,0.0,147.95691454749561,164.39657171943958,0,0
+2017/04/27 08:00:00,161.0295448398807,0,882.3271321207619,0,0,0,0.1586233990622294,0.0,11.234505180524165,0.0,83.2008179303116,0,39.380909295966944,0.0008254466876947272,25.337875986100993,0,0,0.3593032582097005,562.554656249655,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,624.2643939652312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.22793811626374,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046975750059698305,0.0014862799870899298,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.13851304907339634,-0.13851304907339634,-0.2739660657531804,-0.2739660657531804,-0.31240622759736103,-0.31240622759736103,0.9992815619088958,0.9992815619088958,0.29558648759995815,0.29558648759995815,-0.19255953926529945,-0.323254385329705,-0.3557748721172055,-0.21796286079556412,-0.02945080810539965,-0.19205054030314314,-0.36654742374636673,-0.34585794294485667,-0.2098243175692291,-0.09200097463244548,5.397495592228367,5.397495592228367,6.558741462077464,6.558741462077464,7.028687290415533,7.028687290415533,26.089409399028995,26.089409399028995,6.8153778339617475,6.8153778339617475,5.768809145538739,7.172617107420095,7.634010187724499,5.985477675610014,5.017955280017333,5.764743647861394,7.796764587656256,7.488549084085847,5.91312275568302,5.175279052357169,161.0295448398807,161.0295448398807,0.0,178.92171648875635,0.0,161.0295448398807,178.92171648875635,0,0
+2017/04/27 09:00:00,178.6843461973009,0,933.3452663108731,0,0,0,0.4379778823006134,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,0.00011622792977503127,20.819822836987733,0,0,0.05074526241891066,560.6458196667409,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1748.9487578997403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04969199331345194,0.001572220030260961,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.23020044755651003,-0.23020044755651003,-0.34783313237354624,-0.34783313237354624,-0.39155628738062725,-0.39155628738062725,1.0479203809657582,1.0479203809657582,0.20598881462262034,0.20598881462262034,-0.1271398535404883,-0.30213863999666685,-0.3436535941923812,-0.1723209460268034,-0.168200477676294,-0.08759696057338662,-0.32971941477239125,-0.29062102179244814,-0.13909731814453596,-0.11328428409809767,6.099498877106228,6.099498877106228,7.517187508047584,7.517187508047584,8.193682674960584,8.193682674960584,28.180299934866753,28.180299934866753,5.87998500708288,5.87998500708288,5.334854880224498,6.897050157907898,7.4567838841575735,5.615497365204831,5.586378540319757,5.158894165100989,7.260765202409374,6.754691866254561,5.400858912887756,5.265808377794286,178.6843461973009,178.6843461973009,0.0,198.53816244144542,0.0,178.6843461973009,198.53816244144542,0,0
+2017/04/27 10:00:00,209.92618300184316,0,980.9968797296647,0,0,0,0.6881270321646191,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,7.516397434716755e-05,18.59148985571172,0,0,0.03283664432180295,519.5894604222691,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2789.41912712605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05222900050773615,0.00165248916944822,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1170794970105966,-0.1170794970105966,-0.3739029994338347,-0.3739029994338347,-0.2561809192039684,-0.2561809192039684,1.016198399507524,1.016198399507524,0.35278939863857056,0.35278939863857056,-0.04218914461046716,-0.3178379525580384,-0.3295233728830241,-0.1612589436318856,-0.22326782899377093,-0.027064377051947523,-0.3343051731593215,-0.20251678150809382,-0.11627641442630068,-0.14342380234429417,5.283927738287559,5.283927738287559,7.910735296263084,7.910735296263084,6.362402261398287,6.362402261398287,26.806650298011434,26.806650298011434,7.589779248724099,7.589779248724099,5.0368482586340235,7.100130415660104,7.258066185227449,5.538924650028491,6.034134769985954,5.015163211476832,7.324365134672149,5.850518407870041,5.280043690022836,5.426206218398178,209.92618300184316,209.92618300184316,0.0,233.2513144464924,0.0,209.92618300184316,233.2513144464924,0,0
+2017/04/27 11:00:00,225.49679432119078,0,1055.7394006810352,0,0,0,0.6947939665983587,0.0,16.86091082671979,0.0,147.76209134187457,0,39.380909295966944,2.4125729762138438e-05,20.798064764301238,0,0,0.010542125228984102,541.1187471239161,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2813.864512414772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05620834768547066,0.001778392940317942,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.07221088488913864,-0.07221088488913864,-0.29869939902554,-0.29869939902554,-0.1310362903247404,-0.1310362903247404,0.9859175012960336,0.9859175012960336,0.5139149712675011,0.5139149712675011,-0.017619736763340096,-0.26193710581502627,-0.22743366129738793,-0.18420957706639995,-0.11100016810069561,0.0011106651728403838,-0.2778561246526902,-0.14073615967354947,-0.14687775278117715,-0.13086120160500556,5.10796614590501,5.10796614590501,6.853953874467507,6.853953874467507,5.355709643745001,5.355709643745001,25.530469740494766,25.530469740494766,10.522356722757209,10.522356722757209,5.006426665908975,6.424490116244428,6.073170603660543,5.703483741505266,5.255191827509023,5.0000255356647045,6.603461823626503,5.410368639203256,5.447000936579229,5.354758975035793,225.49679432119078,225.49679432119078,0.0,250.55199369021196,0.0,225.49679432119078,250.55199369021196,0,0
+2017/04/27 12:00:00,204.9052229913986,0,1018.7180367015146,0,0,0,0.7733113644519124,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,3.211457431736811e-05,18.620181630184412,0,0,0.014036174974300986,539.5842416071946,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3150.441495731262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05423730284522988,0.0017160304555043136,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.03573461983276488,0.03573461983276488,-0.207748367767147,-0.207748367767147,-0.007833363129424207,-0.007833363129424207,1.006817307593797,1.006817307593797,0.6052711381979017,0.6052711381979017,-0.1161389784816541,-0.1227675626194885,-0.1274809878534751,-0.055334180468984556,0.05113613507729351,-0.08684239153828652,-0.11637843035668227,-0.11747578952988141,-0.05712356045312198,0.01499442179080769,5.026435289147443,5.026435289147443,5.895110648810359,5.895110648810359,5.001270218845349,5.001270218845349,26.407578472221445,26.407578472221445,12.682725057997175,12.682725057997175,5.279381676825224,5.3122047888632835,5.3366555060614616,5.063390975437855,5.0541361764943105,5.156167579608564,5.280535596547239,5.285854251709793,5.067557709921843,5.004654195999322,204.9052229913986,204.9052229913986,0.0,227.6724699904429,0.0,204.9052229913986,227.6724699904429,0,0
+2017/04/27 13:00:00,202.32778920937358,0,961.0753232698539,0,0,0,0.7217386159180227,0.0,16.630907756533322,0.0,129.2730206906943,0,39.380909295966944,2.8852223571672657e-05,16.32118399803739,0,0,0.012612946711074324,517.4333039163413,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2926.356641558637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051168362085786144,0.0016189313091036891,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.04544871066483489,0.04544871066483489,-0.1907946407486643,-0.1907946407486643,0.016584499459608555,0.016584499459608555,0.9975495732086047,0.9975495732086047,0.6084123791012641,0.6084123791012641,-0.1866171054951818,-0.11120541062960218,-0.11922390926729799,-0.05741257020091564,0.0460124386630528,-0.1693626370893688,-0.09079801514271942,-0.09694617812430233,-0.021774507614502194,0.011866197215591217,5.042762611960086,5.042762611960086,5.7547587893010785,5.7547587893010785,5.005693652250827,5.005693652250827,26.01658663192859,26.01658663192859,12.763446469030725,12.763446469030725,5.722020061040325,5.256136931312781,5.294430344297368,5.068243140446199,5.043830113609644,5.594519672551314,5.17072362427669,5.194636633569971,5.009814920141892,5.002914786213736,202.32778920937358,202.32778920937358,0.0,224.80865467708173,0.0,202.32778920937358,224.80865467708173,0,0
+2017/04/27 14:00:00,186.11000913034138,0,902.1646410860247,0,0,0,0.619011843918881,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.80476489436135e-05,14.022117891033867,0,0,0.012263672437139203,494.0133235193301,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2487.301072968514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04803191373078404,0.0015196962694362735,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.016799154333691765,0.016799154333691765,-0.20478153302093938,-0.20478153302093938,0.00016286963086292424,0.00016286963086292424,0.9808794739564302,0.9808794739564302,0.5610183314121814,0.5610183314121814,-0.088762711975963,-0.13849260673631364,-0.15396957753532278,-0.09963339173822183,-0.065924615672956,-0.06808036140554646,-0.10358940742355885,-0.0944274630762855,-0.08308337447209213,-0.10624462191258693,5.005841995001617,5.005841995001617,5.8696817990448125,5.8696817990448125,5.000000549112158,5.000000549112158,25.32153369896089,25.32153369896089,11.591055514072664,11.591055514072664,5.163152966563004,5.397378173947715,5.49125473145719,5.205581115433816,5.089983033597619,5.095965411282478,5.222238645054276,5.184650522029031,5.142936527592411,5.233783320801749,186.11000913034138,186.11000913034138,0.0,206.78889903371265,0.0,186.11000913034138,206.78889903371265,0,0
+2017/04/27 15:00:00,180.82708351246006,0,923.3058480247864,0,0,0,0.5203567376682464,0.0,16.798297350153536,0.0,108.75639138185811,0,39.380909295966944,6.903293691795689e-05,14.084069012955931,0,0,0.03019637826536143,515.1365977522637,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2073.503221385749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04915748724763663,0.0015553086309200272,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.05031520240238141,-0.05031520240238141,-0.25717853381303807,-0.25717853381303807,-0.04429893361181063,-0.04429893361181063,0.9608261971781993,0.9608261971781993,0.5254341672676519,0.5254341672676519,-0.0749229396374202,-0.19984194486927984,-0.21363292007993176,-0.16397405020577405,-0.10609682973717388,-0.045280924543726286,-0.16590238687611733,-0.15310180335963253,-0.1259931603245928,-0.10863083907267997,5.052411743433765,5.052411743433765,6.3730629431804715,6.3730629431804715,5.040626145980838,5.040626145980838,24.499619619101978,24.499619619101978,10.774832571878108,10.774832571878108,5.116230369428962,5.828161396968909,5.946637456822771,5.5572465220530916,5.233133037670768,5.042447426484685,5.570445817209446,5.485727249180755,5.328837700121582,5.24440818649208,180.82708351246006,180.82708351246006,0.0,200.91898168051117,0.0,180.82708351246006,200.91898168051117,0,0
+2017/04/27 16:00:00,203.66015139028943,0,955.446879478936,0,0,0,0.6037660254963886,0.0,16.798297350153536,0.0,131.64086955684016,0,39.380909295966944,6.776940506451826e-05,14.092249658275835,0,0,0.02965836178187846,494.0426384540803,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2421.906762543699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05086869956933184,0.0016094501959650798,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.03264231778451045,-0.03264231778451045,-0.22922524932309554,-0.22922524932309554,-0.0031031583577289888,-0.0031031583577289888,0.9724480317731242,0.9724480317731242,0.5811013627511464,0.5811013627511464,-0.11401787939947401,-0.18734857265677038,-0.2012821205622058,-0.16132150223597813,-0.13543345933953838,-0.08788273128166059,-0.1575952907880789,-0.18034073411660875,-0.11631504480729858,-0.05837400910127538,5.0220578708591574,5.0220578708591574,6.090182414547243,6.090182414547243,5.00019933745115,5.00019933745115,24.974056510728914,24.974056510728914,12.075951357083085,12.075951357083085,5.269264102630018,5.727699808602182,5.840161589709226,5.539343344678755,5.380002790578118,5.159932945503357,5.514688886535524,5.6742033110477905,5.28022990943937,5.070548247806499,203.66015139028943,203.66015139028943,0.0,226.28905710032157,0.0,203.66015139028943,226.28905710032157,0,0
+2017/04/27 17:00:00,210.76772060436153,0,1001.0278522909722,0,0,0,0.5373170729864283,0.0,17.542840531261707,0.0,133.89528835348938,0,39.380909295966944,8.684200414005297e-05,18.553284708039286,0,0,0.038026822211738164,539.6152428056865,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2144.2735875128055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05329546432397507,0.001686231341207417,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.0808815475249677,-0.0808815475249677,-0.2842131844417029,-0.2842131844417029,-0.034450913337795194,-0.034450913337795194,0.9667862942062363,0.9667862942062363,0.6013415345199735,0.6013415345199735,-0.14835976719914729,-0.209706882519711,-0.18386412520233036,-0.18578177562895687,-0.13967413256697744,-0.126153270486702,-0.19446388758210956,-0.20536796168898902,-0.1553054419929658,-0.039571349458422486,5.135458695486236,5.135458695486236,6.677916562650466,6.677916562650466,5.0245700170303,5.0245700170303,24.742270804761475,24.742270804761475,12.582347818329822,12.582347818329822,5.456075768219165,5.912099009509845,5.7008438580515275,5.715561167369799,5.4041932552242855,5.32967458161454,5.7841156769493836,5.874678893601626,5.49982513416262,5.032417019508159,210.76772060436153,210.76772060436153,0.0,234.18635622706836,0.0,210.76772060436153,234.18635622706836,0,0
+2017/04/27 18:00:00,196.50655092075053,0,1007.0109279551264,0,0,0,0.5356113835664215,0.0,20.35234519531874,0.0,110.93442390708215,0,39.380909295966944,6.037080204341296e-05,25.30320076801415,0,0,0.026449340859467537,581.1002484637374,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2138.267359705428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05361400770403867,0.001696309831709577,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1142954925995137,-0.1142954925995137,-0.33046470947142376,-0.33046470947142376,-0.05114243634701865,-0.05114243634701865,0.9664477835533934,0.9664477835533934,0.5899793581442229,0.5899793581442229,-0.04880249405966021,-0.183415529167786,-0.12248972182370542,-0.15680909983062136,-0.04518749870010943,-0.038036564340464235,-0.1746790937016724,-0.11382997616845728,-0.12693431351915824,-0.007041339970387357,5.270577677677267,5.270577677677267,7.271040970243561,7.271040970243561,5.054149520781337,5.054149520781337,24.728452030930214,24.728452030930214,12.295884403737816,12.295884403737816,5.049307306125513,5.697423202267856,5.310792323947354,5.5095609755585855,5.0422724319094385,5.029951019194414,5.632480755808174,5.268376822820258,5.333772304221,5.0010263427759725,196.50655092075053,196.50655092075053,0.0,218.34061213416726,0.0,196.50655092075053,218.34061213416726,0,0
+2017/04/27 19:00:00,192.4076128520684,0,971.9667759357171,0,0,0,0.4409849190538099,0.0,23.798027217215836,0.0,101.68988858149199,0,39.380909295966944,6.036302864262326e-05,27.097742475311204,0,0,0.02645733007822649,581.5464409676536,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1750.1022481806992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05174823109308829,0.0016372779602926882,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.21380441991460558,-0.21380441991460558,-0.27681208993841583,-0.27681208993841583,-0.1335312120444548,-0.1335312120444548,0.9732151748676431,0.9732151748676431,0.5009921503994013,0.5009921503994013,-0.08318694932083719,-0.1514073723003072,-0.15680723566306268,-0.11973100983751492,-0.052845427969730525,-0.07978965978047757,-0.14483174662090528,-0.1408082155846437,-0.09163194029785986,-0.06658780189768108,5.948160901026782,5.948160901026782,6.591396898614363,6.591396898614363,5.369394695961844,5.369394695961844,25.00555831636609,25.00555831636609,10.245947499272447,10.245947499272447,5.14329323975808,5.475024608266779,5.5095488471775695,5.296941888505344,5.057816270551271,5.131825010401869,5.434622873136348,5.410789324052544,5.173875189683713,5.09180291693103,192.4076128520684,192.4076128520684,0.0,213.78623650229824,0.0,192.4076128520684,213.78623650229824,0,0
+2017/04/27 20:00:00,208.70781877165817,0,916.6093203217312,0,0,0,0.2863044888509122,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.0001997241263267349,23.09156679436436,0,0,0.08644307951712502,561.6193521167728,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1123.3996397717285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04880095915256326,0.0015440283305124885,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.31912489679915773,-0.31912489679915773,-0.30806927920210747,-0.30806927920210747,-0.22603906512762298,-0.22603906512762298,0.9658327258837708,0.9658327258837708,0.4054710556955695,0.4054710556955695,-0.10532587472649407,-0.15332898000534967,-0.13751965770031174,-0.12061434148904844,0.015639515486268556,-0.10654333297516091,-0.14640691121179472,-0.16164154475107623,-0.11917547807006086,-0.0016166770321342642,7.117240643215851,7.117240643215851,6.972540610602607,6.972540610602607,6.060021552643704,6.060021552643704,24.703355405214126,24.703355405214126,8.426094852314392,8.426094852314392,5.229755554394231,5.487171270783676,5.391809781443683,5.301342333641642,5.005063282934032,5.235100413756115,5.444136969927655,5.5414878895173985,5.294191035552231,5.000054103756938,208.70781877165817,208.70781877165817,0.0,231.89757641295353,0.0,208.70781877165817,231.89757641295353,0,0
+2017/04/27 21:00:00,195.6378244803363,0,900.6094511086114,0,0,0,0.14196107413375667,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.00020525737043252645,25.31570829943966,0,0,0.09018600008346199,581.1060924956308,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,551.3560085478439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04794911426444697,0.0015170765520373577,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3985629639687989,-0.3985629639687989,-0.31902024133732776,-0.31902024133732776,-0.3011877747835324,-0.3011877747835324,0.957378889535156,0.957378889535156,0.32285927490594357,0.32285927490594357,-0.13605794687113032,-0.2038757670242093,-0.16715924390029624,-0.17394581152855032,0.027537888938400683,-0.14480531042980002,-0.20435675199303632,-0.15637417475386234,-0.15838765357563298,-0.008177041328775256,8.309676844932042,8.309676844932042,7.115846602789674,7.115846602789674,6.885085079400298,6.885085079400298,24.359904621927782,24.359904621927782,7.167287403793637,7.167287403793637,5.3835181350271455,5.861991832607501,5.579132353402272,5.627174797947902,5.01569845504406,5.4344640781241225,5.866071127798861,5.506735251890291,5.519883112265163,5.001384122491089,195.6378244803363,195.6378244803363,0.0,217.37536053370698,0.0,195.6378244803363,217.37536053370698,0,0
+2017/04/27 22:00:00,139.01404339471753,0,702.5147849803226,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.0037279922410470403,20.85497515543655,0,0,1.656873720390231,541.1513249534838,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,384.3168199326922,0.0,0.0,0.0,182.35117192946075,0.0,0.0,0.0,0.0,0.0,362.5006006643129,0.0,0.0,0.0,71.32196810105133,0.0,0.0,0,0,0,0,0,0,0,0,0.03740240750973705,0.0011833861019793857,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.41899829671690925,-0.41899829671690925,-0.3988127820168623,-0.3988127820168623,-0.48906333541236496,-0.48906333541236496,0.8331484115380513,0.8331484115380513,0.07441974064112739,0.07441974064112739,-0.13456627459298265,-0.259404645826046,-0.22116633940814712,-0.24140641958209502,-0.08655668746632515,-0.15141005696588586,-0.2746237524818801,-0.21604053033399884,-0.2429252298389004,-0.07390345705030213,8.6599799646538,8.6599799646538,8.313851296157395,8.313851296157395,9.997204832314225,9.997204832314225,19.64382028243564,19.64382028243564,5.1146739700674715,5.1146739700674715,5.3751481690719345,6.3970025213029515,6.014718874945089,6.209418057300823,5.155141371587007,5.475041471004872,6.566257459831007,5.9681371521828765,6.224721733942815,5.113088011610159,139.01404339471753,139.01404339471753,0.0,154.46004821635282,0.0,139.01404339471753,154.46004821635282,0,0
+2017/04/27 23:00:00,90.74890927440765,0,552.1981305638108,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.017000982223454603,11.788952030891618,0,0,7.930699869888127,491.03190192510635,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1001.3964499642384,0.0,0.0,0.0,792.3313067258154,0.0,38.385392541663336,0.0,0.0,0.0,1084.0019114448417,0.0,0.0,0.0,772.1356922889195,0.0,507.97140521873104,0,0,0,0,0,0,0,0,0.029399437488053914,0.0009301777090236118,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5165501153479073,-0.5165501153479073,-0.5028126953472744,-0.5028126953472744,-0.5036987494857041,-0.5036987494857041,0.6627923077363084,0.6627923077363084,-0.18502503448585159,-0.18502503448585159,-0.22259407756035246,-0.2947712205903974,-0.2699505594758757,-0.28185461083615226,-0.16813823199816902,-0.2502319889725266,-0.32149150709375957,-0.28149825697458886,-0.30123206662383567,-0.1760818267956443,10.579606894426448,10.579606894426448,10.28445067078384,10.28445067078384,10.303241880613186,10.303241880613186,14.228719524696501,14.228719524696501,5.709735093660342,5.709735093660342,6.0278897465062045,6.805342492144717,6.513247959369579,6.650093714168165,5.5859440875976105,6.299699969406248,7.148888485572741,6.645910404966855,6.885641570588859,5.642693308116392,90.74890927440765,90.74890927440765,0.0,100.8321214160085,0.0,90.74890927440765,100.8321214160085,0,0
+2017/04/28 00:00:00,39.3431083765774,0,518.7505032994765,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5788373167356324e-09,9.54578737757538,0,0,0.0,465.5149745306603,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027618661037620257,0.0008738351834354725,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2960238828737934,-0.2960238828737934,-0.3910994054222712,-0.3910994054222712,-0.2965947243768744,-0.2965947243768744,0.6755565500954691,0.6755565500954691,0.15188412917476327,0.15188412917476327,-0.1519541674888776,-0.23172645571175274,-0.240344266704785,-0.20504527762728397,0.08458015695879027,-0.19846916728065112,-0.27391961383348024,-0.2619623519177397,-0.23301816766557118,0.03273735460617704,6.820773426342072,6.820773426342072,8.186191974217039,8.186191974217039,6.827827336637441,6.827827336637441,14.591228830598595,14.591228830598595,5.478023887682525,5.478023887682525,5.478465296517214,6.114157505399874,6.198773270325802,5.871927447428945,5.148134699962597,5.816803543654018,6.558211302140421,6.424765499037633,6.1266418659886455,5.022186505263903,39.3431083765774,39.3431083765774,0.0,43.714564862863774,0.0,39.3431083765774,43.714564862863774,0,0
+2017/04/28 01:00:00,23.77479076959764,0,46.932913032207345,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5776953459198504,0,0,0.0,11.442560519663214,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0024987430533562885,7.905848844060559e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2672616811507001,-0.2672616811507001,-0.3580757330266151,-0.3580757330266151,-0.27475952299545725,-0.27475952299545725,0.6222961656075754,0.6222961656075754,0.3506473929324501,0.3506473929324501,-0.18034734661736063,-0.26384911686100726,-0.28094019791890823,-0.23346271513456968,0.18079300670081955,-0.23369581828105612,-0.3155481052126749,-0.3102420977570852,-0.2672578391140609,0.10459509942153049,6.483164194728744,6.483164194728744,7.668357154580349,7.668357154580349,6.5678113061882755,6.5678113061882755,13.125351495668014,13.125351495668014,7.558278256116736,7.558278256116736,5.674252823057827,6.445422133770663,6.639370001743188,6.130954598084756,5.677593971640675,6.133219338771852,7.069859846597154,7.000570673240404,6.483121427059089,5.226576878902847,23.77479076959764,23.77479076959764,0.0,26.416434188441823,0.0,23.77479076959764,26.416434188441823,0,0
+2017/04/28 02:00:00,28.344158323938398,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5247952374655054,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2520718129498793,-0.2520718129498793,-0.3426599498293453,-0.3426599498293453,-0.26211496190339534,-0.26211496190339534,0.5838996317546826,0.5838996317546826,0.43558210014898113,0.43558210014898113,-0.20836683658827096,-0.29403546424499905,-0.31455001098749275,-0.2632593409580867,0.20713431140601005,-0.26556095295376503,-0.3501972057897928,-0.34839101453865823,-0.30023709277478855,0.11330695668774665,6.3189329414102815,6.3189329414102815,7.442532754298782,7.442532754298782,6.42643072976297,6.42643072976297,12.14490326036676,12.14490326036676,8.95741882626102,8.95741882626102,5.900457966813605,6.79630997662187,7.056735071371193,6.438949062594077,5.889817319249488,6.464293291762559,7.5516824857851645,7.525306326483843,6.873160525199509,5.265914846067105,28.344158323938398,28.344158323938398,0.0,31.49350924882044,0.0,28.344158323938398,31.49350924882044,0,0
+2017/04/28 03:00:00,23.721982950559358,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248875268815683,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.26505754577250923,-0.26505754577250923,-0.35825913900884865,-0.35825913900884865,-0.2770294924529847,-0.2770294924529847,0.5172884999650071,0.5172884999650071,0.4980051044165354,0.4980051044165354,-0.24954793651413218,-0.33386795133959674,-0.35838689529783346,-0.30294638574304167,0.2440695187274255,-0.31015460861296446,-0.39330961219445537,-0.39422463644167266,-0.34256378066328536,0.12171906588041692,6.458730960072458,6.458730960072458,7.671104714124425,7.671104714124425,6.593905425746428,6.593905425746428,10.595702648478834,10.595702648478834,10.183083976590567,10.183083976590567,6.292585378460927,7.3182628091104505,7.6730194456132494,6.907244347751856,6.236315697888443,6.999438174023652,8.22251171936523,8.237609193540777,7.441155695658395,5.306891317284482,23.721982950559358,23.721982950559358,0.0,26.35775883395484,0.0,23.721982950559358,26.35775883395484,0,0
+2017/04/28 04:00:00,40.19193840458514,0,113.51827210993812,0,0,0,0.02795571368845989,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.07630286030346825,0.05456798474928759,0.5249782962098068,0,0,24.792390828577805,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.18609311681094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.049432891533502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.70187438630835,0.0,157.9478828967674,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.006043796890874046,0.00019122152075330004,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.20021319048827108,-0.20021319048827108,-0.2950419679097159,-0.2950419679097159,-0.21287452347069358,-0.21287452347069358,0.5409317928480574,0.5409317928480574,0.6347358294116265,0.6347358294116265,-0.26197241866458765,-0.34547232829352015,-0.3686036438295743,-0.3146337795537852,0.27567297186541007,-0.328103980531072,-0.3935080530617741,-0.3878242929251414,-0.3597565609889044,0.14391439050593105,5.83124648414811,5.83124648414811,6.8086720794075575,6.8086720794075575,5.939915336615613,5.939915336615613,11.123570048064238,11.123570048064238,13.456717566956542,13.456717566956542,6.4248753139178945,7.482977378330318,7.828392348816095,7.0578349923570585,6.578285611733989,7.238573263227622,8.225782861679008,8.132756800800024,7.693590800626325,5.429129575120328,40.19193840458514,40.19193840458514,0.0,44.65770933842793,0.0,40.19193840458514,44.65770933842793,0,0
+2017/04/28 05:00:00,74.48131605761513,0,212.9421150752648,0,0,0,0.7145490683082736,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.4557583450340799,0.0,0.5249656143169025,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2358.626608600786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.041452323521287554,0.041452323521287554,-0.054214129939492525,-0.054214129939492525,0.028341241069791717,0.028341241069791717,0.7408128829270142,0.7408128829270142,0.8761113525139411,0.8761113525139411,-0.19964318292068967,-0.2844933191198119,-0.30818248622560357,-0.25377539552284717,0.3974737894078074,-0.26445496033269383,-0.3439321842595544,-0.342018952678277,-0.2975241223933261,0.3089729745310209,5.035572311501994,5.035572311501994,5.060850348428204,5.060850348428204,5.016627778437041,5.016627778437041,16.55449296034375,16.55449296034375,21.203511575905154,21.203511575905154,5.826512034963159,6.6812367590637365,6.973996083963584,6.3368685910728715,8.291507965475745,6.452086802311541,7.460787033271188,7.433361653599022,6.839341406012878,6.984174302850846,74.48131605761513,74.48131605761513,0.0,82.75701784179459,0.0,74.48131605761513,82.75701784179459,0,0
+2017/04/28 06:00:00,86.27347024766713,0,688.911688160094,0,0,0,0.0,0.0,11.110595677687485,0.0,73.80580873715317,0,0.8320703201745628,2.5205614856054947e-09,0.5249955101313418,0,0,0.0,458.22439682855713,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.036678168559123564,0.0011604716864181677,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.21818247929079898,0.21818247929079898,0.12034721771203352,0.12034721771203352,0.20580815916724832,0.20580815916724832,0.8915241066153804,0.8915241066153804,0.9509111864578307,0.9509111864578307,-0.12914393235806532,-0.2148035029413319,-0.23687353886976237,-0.1849802596650867,0.5009341038258007,-0.18187994500611795,-0.26506273995052837,-0.26267923264949644,-0.21876808334035114,0.4142491379321803,5.987468613888069,5.987468613888069,5.300008197298439,5.300008197298439,5.878439373175169,5.878439373175169,21.781616468179465,21.781616468179465,24.099035137160158,24.099035137160158,5.345502392128154,5.957060309667753,6.164320287674002,5.7093911262645065,10.244722213678571,5.685777607402358,6.4587882979787,6.432596383085752,5.99278725027402,8.57697423796013,86.27347024766713,86.27347024766713,0.0,95.85941138629681,0.0,86.27347024766713,95.85941138629681,0,0
+2017/04/28 07:00:00,147.633440158982,0,867.3001361346141,0,0,0,0.0,0.0,8.38205293619271,0.0,69.33401494192633,0,39.380909295966944,0.013690056923675857,27.090797725518087,0,0,6.069667180251251,595.052825110282,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1038.0542725478535,0.0,0.0,0.0,936.130485524063,0.0,0.0,0.0,0.0,0.0,886.9830330532012,0.0,0.0,0.0,683.6623241567945,0.0,0.0,0,0,0,0,0,0,0,0,0.04617570166279969,0.0014609670134917933,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.08788307701522073,0.08788307701522073,0.006124340762189671,0.006124340762189671,0.06341602779535917,0.06341602779535917,0.8150497944250054,0.8150497944250054,0.7472413867671879,0.7472413867671879,-0.17908309587568935,-0.25751806284367007,-0.270780049633034,-0.2294972607529584,0.32152007833525653,-0.21553906159613473,-0.2966166263236222,-0.2848966430577511,-0.2577170366011494,0.2348098162561243,5.159934204301436,5.159934204301436,5.000776426342398,5.000776426342398,5.083263984319387,5.083263984319387,19.009837333918853,19.009837333918853,16.75781396495003,16.75781396495003,5.66481975868173,6.37670075855506,6.522589951515201,6.092777038037468,7.149272008831915,5.963639073896175,6.828098254141423,6.686022828686461,6.3788348766995,6.14407400282947,147.633440158982,147.633440158982,0.0,164.03715573220222,0.0,147.633440158982,164.03715573220222,0,0
+2017/04/28 08:00:00,160.60655942236951,0,883.3492033443135,0,0,0,0.0,0.0,11.276247110228917,0.0,83.2008179303116,0,39.380909295966944,0.0031479326687850772,25.372647072211578,0,0,1.457217997116996,562.4788127342995,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,295.1452542724151,0.0,0.0,0.0,46.437391982175065,0.0,0.0,0.0,0.0,0.0,406.7717296469334,0.0,0.0,0.0,54.99073200088698,0.0,0.0,0,0,0,0,0,0,0,0,0.04703016588869516,0.0014880016659884283,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1964689673790683,-0.1964689673790683,-0.20895448638217484,-0.20895448638217484,-0.19318475625936993,-0.19318475625936993,0.8735384160842466,0.8735384160842466,0.3603946797931551,0.3603946797931551,-0.14421013613637812,-0.2908048196157357,-0.26474589864865355,-0.2605474259018177,0.05528231061071689,-0.18863714784727273,-0.3115071930227166,-0.2743704644781407,-0.2737568182634955,-0.001473527822157541,5.800395686172337,5.800395686172337,5.905553654787013,5.905553654787013,5.773817723118867,5.773817723118867,21.107954820200447,21.107954820200447,7.703202144671948,7.703202144671948,5.4308967283491825,6.756919609744656,6.4552928038133075,6.409372961676738,5.063272170410045,5.737759795878176,7.016982857812579,6.563360743555833,6.556354019552828,5.000044946673853,160.60655942236951,160.60655942236951,0.0,178.45173269152167,0.0,160.60655942236951,178.45173269152167,0,0
+2017/04/28 09:00:00,179.6847675537696,0,915.7447043098567,0,0,0,0.0,0.0,11.457689345133073,0.0,106.27511244621549,0,39.380909295966944,0.0020699190680462786,20.852998946158916,0,0,0.971400389606129,542.1246025385374,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,217.1429308908553,0.0,0.0,0.0,4.027738840449242,0.0,0.0,0.0,0.0,0.0,288.480095709557,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048754926355664224,0.0015425718849061095,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4305396496257487,-0.4305396496257487,-0.2450883204858519,-0.2450883204858519,-0.3541418847500853,-0.3541418847500853,0.9239894859287054,0.9239894859287054,0.20299059899846586,0.20299059899846586,-0.1358620421493993,-0.3051423266241296,-0.2595668535662791,-0.2879955810560529,-0.0025583933487785286,-0.18324731104634853,-0.322755454014384,-0.2657759935176797,-0.2997158799542261,-0.06837473925462965,8.86573108159891,8.86573108159891,6.246684512330489,6.246684512330489,7.609769860542002,7.609769860542002,23.030956499777474,23.030956499777474,5.854509905253778,5.854509905253778,5.382413608226926,6.935097798388014,6.3987550515148115,6.723025618832281,5.0001354926066455,5.69614266389398,7.165888046217745,6.4666726071027085,6.866639088303131,5.096797283525845,179.6847675537696,179.6847675537696,0.0,199.64974172641067,0.0,179.6847675537696,199.64974172641067,0,0
+2017/04/28 10:00:00,212.46728759609005,0,1003.749365733401,0,0,0,0.19177162768757255,0.0,16.965687027080573,0.0,133.89528835348938,0,39.380909295966944,0.008314266631292378,18.59334182277998,0,0,4.002219263634598,538.3725638066925,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,754.7462120854914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,636.4603656788543,0.0,0.0,0.0,430.37494405620316,0.0,0.0,0.0,0.0,0.0,682.2652055223264,0.0,0.0,0.0,414.23439925068396,0.0,0.0,0,0,0,0,0,0,0,0,0.05344035971549313,0.0016908157303946291,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4114655179346734,-0.4114655179346734,-0.2776260494868655,-0.2776260494868655,-0.30587301111762816,-0.30587301111762816,0.9850589442857566,0.9850589442857566,0.28178119172187793,0.28178119172187793,-0.1348653947484051,-0.30744832074502854,-0.23784254610101058,-0.29024759097193753,0.0032546766411408697,-0.1479130445512895,-0.3221620772120135,-0.23720241080126597,-0.3023543543075297,-0.06425612920081465,8.528771470029099,8.528771470029099,6.600799113556732,6.600799113556732,6.9444110743914536,6.9444110743914536,25.494794877798356,25.494794877798356,6.649231394341811,6.649231394341811,5.3768191512993155,6.9645667544643715,6.173888473778831,6.750170047124939,5.00021927884562,5.4533307192827465,7.1578989416474315,6.167563221176394,6.8997698892304555,5.0854850796057605,212.46728759609005,212.46728759609005,0.0,236.0747639956556,0.0,212.46728759609005,236.0747639956556,0,0
+2017/04/28 11:00:00,226.9531738481503,0,1055.7577842724015,0,0,0,0.4273640182414448,0.0,16.86091082671979,0.0,147.76209134187457,0,39.380909295966944,0.00021117481504917172,20.805699589305217,0,0,0.1038164655782573,541.0438563749334,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1711.0717233958649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05620932644149186,0.0017784239074762037,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3693007027368707,-0.3693007027368707,-0.03936349486487497,-0.03936349486487497,-0.24403748144327536,-0.24403748144327536,1.0221092431670502,1.0221092431670502,0.359895921198526,0.359895921198526,-0.10582183268679468,-0.2798644264656555,-0.1887288874496702,-0.25242635044216555,0.0487007815558353,-0.11175012855649347,-0.287150587537822,-0.17293411432800362,-0.2528024415161879,-0.012701877228646692,7.839155065849923,7.839155065849923,5.032077339551861,5.032077339551861,6.235990346873322,6.235990346873322,27.059788857378223,27.059788857378223,7.695688363923935,7.695688363923935,5.23192546913107,6.626799124999053,5.738478657774195,6.3226555254807835,5.04910196925556,5.258653740656186,6.7128957982016715,5.6198910856792,6.326610195540567,5.003339794957384,226.9531738481503,226.9531738481503,0.0,252.17019316461145,0.0,226.9531738481503,252.17019316461145,0,0
+2017/04/28 12:00:00,204.8993709974676,0,1018.6419236349311,0,0,0,0.5633605868408376,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,6.51414131749685e-05,18.594244316839177,0,0,0.03205140445424139,539.4901133111309,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2277.9216466947937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054233250529187524,0.0017159022430494307,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3086645541757746,-0.3086645541757746,-0.17098240327038278,-0.17098240327038278,-0.17334131086774487,-0.17334131086774487,1.0349239112232815,1.0349239112232815,0.42260432166694123,0.42260432166694123,-0.09187506990328603,-0.18634025859863085,-0.156707123477741,-0.1602015894686065,-0.011544248735195335,-0.035731204553955516,-0.1816623541718769,-0.12778678353555825,-0.14877261717473067,-0.06063430926204025,6.980199978621272,6.980199978621272,5.605960392001194,5.605960392001194,5.622817561496731,5.622817561496731,27.613041645037583,27.613041645037583,8.72365187178255,8.72365187178255,5.174799456549877,5.719876210979976,5.50889772424496,5.531872626298792,5.002758765504083,5.026430236079037,5.684135401672606,5.338273714952663,5.4586200625604135,5.07611833575794,204.8993709974676,204.8993709974676,0.0,227.665967774964,0.0,204.8993709974676,227.665967774964,0,0
+2017/04/28 13:00:00,203.16787624198162,0,961.0302192559359,0,0,0,0.48946084138302215,0.0,16.86091082671979,0.0,129.2730206906943,0,39.380909295966944,0.00019351239932488944,16.30538727420466,0,0,0.0952903109986751,517.3055225381356,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1965.2231005979343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051165960714676294,0.0016188553313956672,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3406108528882782,-0.3406108528882782,-0.38528047813773236,-0.38528047813773236,-0.19578306639906393,-0.19578306639906393,1.0293972855837408,1.0293972855837408,0.39202759163276263,0.39202759163276263,-0.061837208123912135,-0.14342174388023027,-0.15240423923015037,-0.14651642828420997,0.048862261021161944,-0.04475842336509931,-0.15583169723522247,-0.1166804728521928,-0.14139118560930242,0.0042907414035803304,7.413276488442349,7.413276488442349,8.091569336419212,8.091569336419212,5.794807680998574,5.794807680998574,27.37369463049285,27.37369463049285,8.201419181763754,8.201419181763754,5.079168975339982,5.42619397336027,5.4813066995025395,5.444802300711061,5.049428163382984,5.041473380631146,5.503221801784463,5.2819945385492275,5.414200830465248,5.000381106079558,203.16787624198162,203.16787624198162,0.0,225.7420847133129,0.0,203.16787624198162,225.7420847133129,0,0
+2017/04/28 14:00:00,187.89819018427926,0,902.064938805192,0,0,0,0.3726945348463388,0.0,16.86091082671979,0.0,115.5196477718057,0,39.380909295966944,0.00017626338562563157,14.047863890327696,0,0,0.08689678465093251,493.8389881262837,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1482.1618672630095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.63214358194465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048026605507502367,0.0015195283209517782,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3734853641656472,-0.3734853641656472,-0.45477582993279775,-0.45477582993279775,-0.22668011991554926,-0.22668011991554926,1.0190440606971738,1.0190440606971738,0.3434525969535258,0.3434525969535258,-0.10130995606538931,-0.20136908894795014,-0.1407184385592792,-0.18797559227599234,0.03653281790641354,-0.08361420864539215,-0.19181174805838125,-0.156194138850634,-0.17786287498009165,-0.011587429148025933,7.904202486762543,7.904202486762543,9.316416806041744,9.316416806041744,6.0660556561130505,6.0660556561130505,26.928356373522078,26.928356373522078,7.453897739368131,7.453897739368131,5.2125612704992506,5.8408890269600136,5.41026521092364,5.732586325642998,5.027629511142024,5.144769426113726,5.762840087788646,5.505567858687343,5.655778491619245,5.002779442144799,187.89819018427926,187.89819018427926,0.0,208.77576687142138,0.0,187.89819018427926,208.77576687142138,0,0
+2017/04/28 15:00:00,181.4765024196212,0,907.712562496938,0,0,0,0.2634005606440778,0.0,17.028300508570425,0.0,108.75639138185811,0,39.380909295966944,0.00805319332576526,14.078318792139106,0,0,4.042959092531163,495.5305495101493,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1036.7971527999455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,654.38318086047,0.0,0.0,0.0,542.4768932571573,0.0,0.0,0.0,0.0,0.0,499.7432933549396,0.0,0.0,0.0,425.1703706930159,0.0,0.0,0,0,0,0,0,0,0,0,0.048327289176083435,0.0015290417426318766,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4403177820149496,-0.4403177820149496,-0.326693394093142,-0.326693394093142,-0.28929273484390766,-0.28929273484390766,1.004729315257071,1.004729315257071,0.287038355574179,0.287038355574179,-0.15145300234800246,-0.26885200182378816,-0.18290249656934301,-0.2620525377584678,-0.0766690315437048,-0.15491552723815344,-0.26970935595292783,-0.19219663730428943,-0.26206003729285404,-0.10344570900332545,9.044522994345897,9.044522994345897,7.21928594240039,7.21928594240039,6.73863461332472,6.73863461332472,26.31920566799438,26.31920566799438,6.7115526239209515,6.7115526239209515,5.475311257413452,6.500920257067591,5.693521502423394,6.425749459229991,5.12171247253184,5.497315905339832,6.510536885899725,5.765909452025241,6.425831297285242,5.221622204799459,181.4765024196212,181.4765024196212,0.0,201.64055824402354,0.0,181.4765024196212,201.64055824402354,0,0
+2017/04/28 16:00:00,205.94819636716622,0,978.3082266839966,0,0,0,0.36427807428994335,0.0,17.028300508570425,0.0,131.64086955684016,0,39.380909295966944,0.007044018767148658,14.0948197102772,0,0,3.6561101460968555,513.2775338748261,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1444.448033064129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,567.0415322616884,0.0,0.0,0.0,471.24497766056805,0.0,0.0,0.0,0.0,0.0,440.09045127576076,0.0,0.0,0.0,344.70923983143985,0.0,0.0,0,0,0,0,0,0,0,0,0.05208585462808154,0.001647960133596857,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.43672909475599625,-0.43672909475599625,-0.31481091807375805,-0.31481091807375805,-0.2763825883708036,-0.2763825883708036,1.0123603593161736,1.0123603593161736,0.3188145210925646,0.3188145210925646,-0.14844961196523418,-0.28278447550988994,-0.19944834560366917,-0.27919314408324053,-0.048395187867245865,-0.123073242810846,-0.29111046632087906,-0.17748722286348884,-0.28943703467773246,-0.09038400074836155,8.978427267768055,8.978427267768055,7.060161883754887,7.060161883754887,6.586446896414856,6.586446896414856,26.64298076091471,26.64298076091471,7.113107703559862,7.113107703559862,5.4566288555422915,6.66103481035114,5.824896843813889,6.618979619082495,5.0484876159494405,5.313762488528539,6.760627396045379,5.653007596018867,6.7403754025146725,5.169169702115184,205.94819636716622,205.94819636716622,0.0,228.83132929685135,0.0,205.94819636716622,228.83132929685135,0,0
+2017/04/28 17:00:00,211.49189445900024,0,980.911632372602,0,0,0,0.42474023221005136,0.0,17.542840531261707,0.0,133.89528835348938,0,39.380909295966944,0.0001884633302087498,18.53193998151473,0,0,0.09942355182782056,519.4376261577004,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1691.6898201062381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05222446187530284,0.0016523455702817176,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.43162705903990567,-0.43162705903990567,-0.10646196416799678,-0.10646196416799678,-0.2627904458127146,-0.2627904458127146,1.0126337095814637,1.0126337095814637,0.36038008316897396,0.36038008316897396,-0.1421468183410264,-0.28082021363458093,-0.19558938637247686,-0.27021332720680175,0.02114165743016115,-0.123195272815939,-0.28237980990382067,-0.1678895067748826,-0.2713554040553917,-0.03676987916567628,8.885411301256411,8.885411301256411,5.234741270830398,5.234741270830398,6.433813164223793,6.433813164223793,26.654619266970215,26.654619266970215,7.7029820965700395,7.7029820965700395,5.418643797022824,6.63796551237067,5.79323333931066,6.516204199290684,5.009252681593864,5.314385419578684,6.6562688972876884,5.584209686701911,6.529086811049595,5.027989271855276,211.49189445900024,211.49189445900024,0.0,234.9909938433336,0.0,211.49189445900024,234.9909938433336,0,0
+2017/04/28 18:00:00,197.56265217933847,0,1007.1312081792789,0,0,0,0.41593433520108014,0.0,19.505468714925904,0.0,110.93442390708215,0,39.380909295966944,0.0003377420761626837,25.609590582859063,0,0,0.17844096248889357,581.0685370662602,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1655.0551201913463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05362041151226492,0.001696512443738033,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46422981394952545,-0.46422981394952545,-0.2580004671370821,-0.2580004671370821,-0.2862612372224559,-0.2862612372224559,1.006887876455574,1.006887876455574,0.3471834136252857,0.3471834136252857,-0.1244499771450683,-0.21961127526615232,-0.17392316965516225,-0.20517141430869326,0.11505177478809477,-0.10975086244120519,-0.21856866699318386,-0.158426416905898,-0.20207499237681822,0.05846593610541987,9.499069315221035,9.499069315221035,6.381877722921033,6.381877722921033,6.702266782112659,6.702266782112659,26.410568122692,26.410568122692,7.507748879013079,7.507748879013079,5.320826256785324,6.000470618084918,5.627011320646233,5.87300246463893,5.274172400294319,5.249476744934313,5.9909744762598365,5.520137891215754,5.846805182000409,5.0707706546070455,197.56265217933847,197.56265217933847,0.0,219.51405797704274,0.0,197.56265217933847,219.51405797704274,0,0
+2017/04/28 19:00:00,191.33360736909222,0,990.113950993715,0,0,0,0.32919028052285587,0.0,21.977760699136827,0.0,101.68988858149199,0,39.380909295966944,0.00012223604877609597,27.0977424753112,0,0,0.06466581104054046,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1301.1552091511576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052714400134909654,0.0016678468753005386,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5095888173239336,-0.5095888173239336,-0.10579977567601928,-0.10579977567601928,-0.3240612324762454,-0.3240612324762454,0.9977364861882543,0.9977364861882543,0.30648826629611065,0.30648826629611065,-0.10184598642090613,-0.19398533225716033,-0.17276719914503716,-0.1755536113047865,0.06619178684363287,-0.08633356614371022,-0.1845302383337293,-0.1782586829079106,-0.16373531099967042,0.08609658433732918,10.429019598311953,10.429019598311953,5.231828748301481,5.231828748301481,7.183521346608558,7.183521346608558,26.024440043660306,26.024440043660306,6.952270609726597,6.952270609726597,5.214817579987937,5.780254945569823,5.618693484009356,5.638838014429254,5.090713998944395,5.154342306640544,5.705938639549302,5.65870443345338,5.55562315803499,5.153495864696694,191.33360736909222,191.33360736909222,0.0,212.59289707676913,0.0,191.33360736909222,212.59289707676913,0,0
+2017/04/28 20:00:00,208.5031913881855,0,897.5348577660278,0,0,0,0.23897966044044439,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.00023370429572322507,23.056800802077507,0,0,0.12302217027914407,542.5083104703073,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,937.5278426532839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04778542063751604,0.0015118973997851335,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4151734829988874,-0.4151734829988874,-0.2502499582499013,-0.2502499582499013,-0.3832980480989635,-0.3832980480989635,0.979214188143736,0.979214188143736,0.24658819031862694,0.24658819031862694,-0.13749260022466034,-0.18832973343542728,-0.18252118476951565,-0.20747770268960303,0.00886782712145183,-0.1377354270114616,-0.21685060266920753,-0.1753616427045851,-0.20835889390638096,0.03374638711407749,8.593054160924638,8.593054160924638,6.299887126732756,6.299887126732756,8.059662997006427,8.059662997006427,25.25268617322672,25.25268617322672,6.262028737377179,6.262028737377179,5.391655488702611,5.73535349199507,5.69062868159908,5.892775498731311,5.001627859077843,5.393041275872918,5.975425597154953,5.6374397752213525,5.900389192434872,5.023575320705433,208.5031913881855,208.5031913881855,0.0,231.67021265353947,0.0,208.5031913881855,231.67021265353947,0,0
+2017/04/28 21:00:00,195.80160036260645,0,903.6389397601863,0,0,0,0.032676984312715686,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.005884714124008575,25.583088814777316,0,0,3.1573171143770145,581.0684500329121,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,126.14013507975218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,525.2531610845929,0.0,0.0,0.0,385.77352571746746,0.0,0.0,0.0,0.0,0.0,413.1731213783466,0.0,0.0,0.0,242.85143244598282,0.0,0.0,0,0,0,0,0,0,0,0,0.04811040648421926,0.0015221797254410013,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4009126421951942,-0.4009126421951942,-0.2957809632519735,-0.2957809632519735,-0.4813171674829916,-0.4813171674829916,0.9599320784522226,0.9599320784522226,0.13213162091395472,0.13213162091395472,-0.1776691782881751,-0.2677584782310285,-0.23652748593534295,-0.2701454884130401,-0.027686847717858527,-0.1637220524565287,-0.2853816237624285,-0.23368382349439829,-0.2850122405132255,-0.05123198640471519,8.349045427734765,8.349045427734765,6.8177758360208855,6.8177758360208855,9.83897000640738,9.83897000640738,24.463337425060814,24.463337425060814,5.3616858304933,5.3616858304933,5.654349005186688,6.488699534167438,6.160912838190271,6.515440707718966,5.015868753349906,5.555533073061326,6.691786974281953,6.133102746383457,6.687395839140464,5.054339339998606,195.80160036260645,195.80160036260645,0.0,217.5573337362294,0.0,195.80160036260645,217.5573337362294,0,0
+2017/04/28 22:00:00,139.99673855740377,0,710.8600929146446,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.01805918432177849,20.793746565305742,0,0,10.122518097496977,541.030988510699,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1199.5296283348607,0.0,0.0,0.0,1097.9632348378725,0.0,0.0,0.0,0.0,0.0,1176.8709428936388,0.0,0.0,0.0,1070.6546596066182,0.0,0.0,0,0,0,0,0,0,0,0,0.03784671788558557,0.0011974437725613529,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4009301512061372,-0.4009301512061372,-0.43708450073209526,-0.43708450073209526,-0.5132875838025839,-0.5132875838025839,0.7886313229624305,0.7886313229624305,-0.13457471530273665,-0.13457471530273665,-0.23396322182482474,-0.32498415887518317,-0.2624619273360924,-0.32173332524030507,-0.08999380306230126,-0.23822418221700314,-0.34538594013669327,-0.2687698832392455,-0.34161827444172316,-0.14400458854521558,8.349339675783483,8.349339675783483,8.98494837932796,8.98494837932796,10.508770604496604,10.508770604496604,18.10920324065019,18.10920324065019,5.375195270583504,5.375195270583504,6.13582013707402,7.196028197515133,6.430220352288458,7.1521356006119134,5.167711681309143,6.1776676505484005,7.481730031537268,6.500000787806044,7.427637795779404,5.4296681448253,139.99673855740377,139.99673855740377,0.0,155.55193173044864,0.0,139.99673855740377,155.55193173044864,0,0
+2017/04/28 23:00:00,90.83909821821545,0,566.7779547346254,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.03812826156743633,11.858013695355464,0,0,22.722267866087726,490.8201580997214,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1792.558239976152,0.0,0.0,0.0,1693.2979022111128,0.0,410.52262620537755,0.0,0.0,0.0,1844.7821446382295,0.0,23.176259542885887,0.0,1735.1368778592046,0.0,214.79330486682167,0,0,0,0,0,0,0,0,0.030175678126281042,0.0009547374217327591,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.536413105831505,-0.536413105831505,-0.594410522970842,-0.594410522970842,-0.5984746068778594,-0.5984746068778594,0.5858310782538578,0.5858310782538578,-0.3932248489567105,-0.3932248489567105,-0.27642141747026866,-0.35652138852458337,-0.31110777008591434,-0.3521053391918046,-0.18495928076100288,-0.292760552704132,-0.3817833683516304,-0.3286109915869611,-0.3776244094357753,-0.21918066246538806,11.020813316625564,11.020813316625564,12.406936556212855,12.406936556212855,12.509538266514994,12.509538266514994,12.19269407098409,12.19269407098409,8.221114976876109,8.221114976876109,6.586894081695959,7.645129396887086,7.011793792742566,7.5796980475653015,5.709229991744891,6.780712668298875,8.035397985573823,7.245526379355354,7.96927553861461,5.996543048518177,90.83909821821545,90.83909821821545,0.0,100.93233135357272,0.0,90.83909821821545,100.93233135357272,0,0
+2017/04/29 00:00:00,40.73493119122658,0,518.4874876920005,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.57885946714891e-09,9.549297123847651,0,0,0.0,465.2519589231843,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027604657891860826,0.0008733921336646419,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.41591303360864423,-0.41591303360864423,-0.45097890404119984,-0.45097890404119984,-0.43519601763953586,-0.43519601763953586,0.6007612930708192,0.6007612930708192,-0.04377588851634942,-0.04377588851634942,-0.2541263407025418,-0.351567374132292,-0.30616609153722113,-0.341900758499104,0.06677444353327495,-0.2854524530951737,-0.3905873037566737,-0.33539244265542095,-0.38262977075287496,-0.002346547686316514,8.605945764233738,8.605945764233738,9.244142418780712,9.244142418780712,8.950360021056895,8.950360021056895,12.567582999389018,12.567582999389018,5.039672367996005,5.039672367996005,6.3405785706534346,7.571783869425019,6.948153012802123,7.431672490520185,5.092318377070953,6.692629633536313,8.177806535620661,7.339575388959489,8.048945188509634,5.000113982902462,40.73493119122658,40.73493119122658,0.0,45.26103465691842,0.0,40.73493119122658,45.26103465691842,0,0
+2017/04/29 01:00:00,23.72215042436006,0,52.09377546698285,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250550006822651,0,0,0.0,16.603422954438717,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002773511192068947,8.77519608202821e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4107726309765915,-0.4107726309765915,-0.4171017966694522,-0.4171017966694522,-0.4163172073983122,-0.4163172073983122,0.5525031679867806,0.5525031679867806,0.16665964500681438,0.16665964500681438,-0.2906700426813101,-0.3898561745262818,-0.34637230562658494,-0.37851583030471186,0.1641541382638771,-0.33510730341636563,-0.4457384872370909,-0.39021402924322607,-0.435694412524335,0.06559812179151968,8.516824639584414,8.516824639584414,8.626717016305918,8.626717016305918,8.613001095135857,8.613001095135857,11.390741608729144,11.390741608729144,5.5756715797369765,5.5756715797369765,6.755285890290793,8.165854040075331,7.495990895909074,7.983385900875319,5.558472645872229,7.33558160540457,9.145409871325086,8.171701392290913,8.95947345260798,5.089093781645005,23.72215042436006,23.72215042436006,0.0,26.35794491595562,0.0,23.72215042436006,26.35794491595562,0,0
+2017/04/29 02:00:00,28.344362777847042,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.524999691374144,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4247069418320127,-0.4247069418320127,-0.4224826224986407,-0.4224826224986407,-0.4241892654185012,-0.4241892654185012,0.4927470707130137,0.4927470707130137,0.2572401441261891,0.2572401441261891,-0.34558009834369907,-0.44621188453453664,-0.4045474877036673,-0.435675881720196,0.18959918430153608,-0.39054822026041575,-0.5024410054540467,-0.4490554579792249,-0.49347946243259916,0.06586725264643588,8.761035427442408,8.761035427442408,8.721493925987588,8.721493925987588,8.751813796229413,8.751813796229413,10.073363101027411,10.073363101027411,6.373722694285931,6.373722694285931,7.484533900086106,9.15428043086284,8.41041223256373,8.959134415435841,5.745315702598404,8.177167020957768,10.27657806911003,9.207766357968268,10.08857454421809,5.089826477388129,28.344362777847042,28.344362777847042,0.0,31.493736419830046,0.0,28.344362777847042,31.493736419830046,0,0
+2017/04/29 03:00:00,23.722161998202047,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250665745242563,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.44187497798134756,-0.44187497798134756,-0.43417280314397,-0.43417280314397,-0.43628181790451454,-0.43628181790451454,0.43697960743005276,0.43697960743005276,0.3035992173459102,0.3035992173459102,-0.3744208637346186,-0.47396872611464685,-0.4347948523156303,-0.4629505503894471,0.2154046428461972,-0.43049952505826805,-0.5419094479612436,-0.490343359957936,-0.5326073252762248,0.07301212181435265,9.073375281669897,9.073375281669897,8.931683401358256,8.931683401358256,8.970228188856495,8.970228188856495,8.983023196402982,8.983023196402982,6.915503599767291,6.915503599767291,7.918846258178647,9.691252545819125,8.943032236601553,9.474128576537396,5.962435153615999,8.865005867813423,11.145918715491248,10.023601886017076,10.934954530971638,5.110375951433667,23.722161998202047,23.722161998202047,0.0,26.35795777578005,0.0,23.722161998202047,26.35795777578005,0,0
+2017/04/29 04:00:00,38.232794899101265,0,208.91756106664164,0,0,0,0.018490008402744035,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,0.3668696728355371,0.25852151180949307,0.5250152939904128,0,0,120.19167978528137,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58.29704744558589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,178.66409350240562,0.0,165.64141306663066,0.0,142.35471063535977,0.0,0.0,0.0,174.02722653423237,0.0,351.6225272895368,0.0,422.0661173101659,0.0,323.59331314113444,0.0,0.0,0,0,0,0,0,0,0,0,0.011122925697818265,0.00035192161576018383,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3612246112809187,-0.3612246112809187,-0.3533924437809452,-0.3533924437809452,-0.3528634764502722,-0.3528634764502722,0.49167581514727154,0.49167581514727154,0.43578022283769524,0.43578022283769524,-0.3625772231388017,-0.4253413418821452,-0.3999871041769553,-0.4199556763248878,0.25063809758017563,-0.40633794222691183,-0.465176792643408,-0.4299449364638505,-0.46014739158009654,0.1108882303567528,7.715728512899503,7.715728512899503,7.5986830277172,7.5986830277172,7.5908721516080675,7.5908721516080675,10.051155330223835,10.051155330223835,8.96104361918053,8.96104361918053,7.736206694008374,8.772351993621484,8.333509951548308,8.676830133649815,6.303933068774953,8.440848216900633,9.517577177990987,8.854989280248574,9.419724150129909,5.254677112305188,38.232794899101265,38.232794899101265,0.0,42.48088322122363,0.0,38.232794899101265,42.48088322122363,0,0
+2017/04/29 05:00:00,72.44167393386935,0,212.9421150752648,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,0.0,0.0,0.5776667446696208,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.12722667702158044,-0.12722667702158044,-0.12387171758744446,-0.12387171758744446,-0.11677381412039395,-0.11677381412039395,0.677529435650567,0.677529435650567,0.7549194169336676,0.7549194169336676,-0.3507575439960602,-0.4493810264974704,-0.4078637300096591,-0.4365153168847725,0.32246230141867094,-0.4205001648056103,-0.5114805439086731,-0.46950560202075137,-0.5041705682231604,0.1869690130063653,5.335312705807581,5.335312705807581,5.3178497177799215,5.3178497177799215,5.282446167303533,5.282446167303533,14.647888825396834,14.647888825396834,17.00297574356084,17.00297574356084,7.559893411185797,9.21391229562144,8.466893439513868,8.974507411060372,7.1619392338783285,8.686430826571055,10.469734168302523,9.602671915920368,10.313261937578758,5.724749787460368,72.44167393386935,72.44167393386935,0.0,80.49074881541038,0.0,72.44167393386935,80.49074881541038,0,0
+2017/04/29 06:00:00,89.90186059192744,0,685.9954547301494,0,0,0,0.0,0.0,8.33396954093373,0.0,80.56906512710079,0,0.4740253906057499,2.520583456816628e-09,0.5248005307666066,0,0,0.0,455.3081633986126,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03652290613123978,0.0011555592914267647,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.024275201229233486,0.024275201229233486,0.02590598544637615,0.02590598544637615,0.03484855121394789,0.03484855121394789,0.7981808761331215,0.7981808761331215,0.9069982974021631,0.9069982974021631,-0.3196273485417277,-0.4166259626916997,-0.37706560258511773,-0.405584500063975,0.4082615961186565,-0.38174591795256685,-0.4823392075407268,-0.4344409117911123,-0.47417443892314826,0.27287147210637924,5.012198825164759,5.012198825164759,5.013892939983833,5.013892939983833,5.025140503387746,5.025140503387746,18.431350189273346,18.431350189273346,22.37177818990888,22.37177818990888,7.123939905837744,8.618395500848536,7.960447437140175,8.428023709203387,8.473701406602032,8.034799274969089,9.859699440937234,8.9365728111581,9.695356076380747,6.54627294406383,89.90186059192744,89.90186059192744,0.0,99.89095621325271,0.0,89.90186059192744,99.89095621325271,0,0
+2017/04/29 07:00:00,119.58088709243992,0,734.496575921234,0,0,0,0.0,0.0,6.8810114640411175,0.0,69.33401494192633,0,39.380909295966944,0.02808345485901893,0.5248927331922385,0,0,10.723858938211388,457.5950731389416,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.57891571313786,0.0,1458.1260795601704,0.0,491.8141668478031,0.0,1387.610443163849,0.0,0.0,0.0,187.50584411253402,0.0,1501.918093065153,0.0,620.3902333027909,0.0,1415.1413967040091,0.0,0.0,0,0,0,0,0,0,0,0,0.03910514174855693,0.001237259426391974,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.09803978055620759,-0.09803978055620759,-0.08875523521943982,-0.08875523521943982,-0.09815202067524992,-0.09815202067524992,0.714365200483663,0.714365200483663,0.7020634388082323,0.7020634388082323,-0.3247400136948125,-0.39599216525660275,-0.3615860728292993,-0.38956029507193485,0.2635926610830098,-0.3628404165403813,-0.4417850968317646,-0.39518990067013327,-0.4372624244485289,0.14494266909874218,5.199054487981854,5.199054487981854,5.16312547233062,5.16312547233062,5.199510716132508,5.199510716132508,15.7366799627478,15.7366799627478,15.366548781692103,15.366548781692103,7.192716199966711,8.26687395930115,7.721193314486257,8.161023497540313,6.442605610189986,7.7402004283886185,9.071707097356978,8.25357440315166,8.988215023302843,5.435289471428945,119.58088709243992,119.58088709243992,0.0,132.86765232493323,0.0,119.58088709243992,132.86765232493323,0,0
+2017/04/29 08:00:00,141.3535832454276,0,790.1263681371488,0,0,0,0.0,0.0,11.809913855752498,0.0,87.89947186453183,0,39.380909295966944,0.022303812491501374,0.5249968154577009,0,0,9.808839581010798,460.90435594324083,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1288.6860616207862,0.0,186.79081052149763,0.0,1195.446033440801,0.0,0.0,0.0,0.0,0.0,1370.1547975888193,0.0,349.94435338175725,0.0,1258.1664663743582,0.0,0.0,0,0,0,0,0,0,0,0,0.042066913091490195,0.0013309678071574528,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3089352268648837,-0.3089352268648837,-0.2731699646289908,-0.2731699646289908,-0.33906794902818405,-0.33906794902818405,0.7140979473166532,0.7140979473166532,0.23631940963030904,0.23631940963030904,-0.2992461782491192,-0.3794882078310117,-0.34872230015103745,-0.3737921349154932,-0.013826351125343351,-0.3354297873340995,-0.40793088868052907,-0.36764468740658063,-0.40204303980007194,-0.07758399267452958,6.983687667829287,6.983687667829287,6.549668065251836,6.549668065251836,7.391365189481462,7.391365189481462,15.7285696072626,15.7285696072626,6.158866411179517,6.158866411179517,6.860771998974343,7.998816402831494,7.530133764691058,7.90900038606425,5.003957306867065,7.340098710336278,8.468042129516334,7.8136197317093945,8.36806926280805,5.124635602109024,141.3535832454276,141.3535832454276,0.0,157.059536939364,0.0,141.3535832454276,157.059536939364,0,0
+2017/04/29 09:00:00,182.59625826905972,0,942.4123677992283,0,0,0,0.0,0.0,11.457689345133073,0.0,106.27511244621549,0,39.380909295966944,0.017121527547155076,23.17744218589418,0,0,8.285097522878438,561.4785688946365,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1121.626048375229,0.0,0.0,0.0,1017.8008368303897,0.0,0.0,0.0,0.0,0.0,1172.1180598229084,0.0,0.0,0.0,1045.5698282870303,0.0,0.0,0,0,0,0,0,0,0,0,0.05017473251275449,0.001587493562029914,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3326824309696848,-0.3326824309696848,-0.28778106581546736,-0.28778106581546736,-0.34272887460782536,-0.34272887460782536,0.7842546848465877,0.7842546848465877,-0.004379590443938284,-0.004379590443938284,-0.25053936892538137,-0.37131485852203056,-0.31650125052843053,-0.36556433906235053,-0.10284147375166386,-0.27723158337947,-0.3920308078130132,-0.33593333570046746,-0.38532024530389347,-0.10251257557946958,7.301757275226564,7.301757275226564,6.720451145602908,6.720451145602908,7.443519938821552,7.443519938821552,17.96285372748946,17.96285372748946,5.000397052750415,5.000397052750415,6.302903326369631,7.870370400836592,7.082432937495511,7.781706932581727,5.219039526392777,6.596239065381809,8.201472008302488,7.347160855702597,8.092211088634471,5.217640090268603,182.59625826905972,182.59625826905972,0.0,202.88473141006634,0.0,182.59625826905972,202.88473141006634,0,0
+2017/04/29 10:00:00,210.37290191388433,0,1011.7655277200876,0,0,0,0.00445992655488141,0.0,15.081367944243603,0.0,131.64086955684016,0,39.380909295966944,0.01816736922240216,20.81515261860197,0,0,9.474383612580464,540.9165614444333,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,17.318531493019844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1209.430157133678,0.0,0.0,0.0,1099.4064778951533,0.0,0.0,0.0,0.0,0.0,1217.13947199773,0.0,0.0,0.0,1091.7125101993076,0.0,0.0,0,0,0,0,0,0,0,0,0.05386714611728895,0.001704318954652786,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3059217239915141,-0.3059217239915141,-0.23960961528964925,-0.23960961528964925,-0.40224990553353235,-0.40224990553353235,0.920747230749757,0.920747230749757,0.10999683222884918,0.10999683222884918,-0.2883269210437367,-0.36459006809677563,-0.32578864613269537,-0.35836707298048176,-0.08450358433143584,-0.30301961404879557,-0.3804548585528487,-0.3370863712259991,-0.373967679571479,-0.13517472495689128,6.945032769876718,6.945032769876718,6.191438385405434,6.191438385405434,8.371556593408556,8.371556593408556,22.90427526381292,22.90427526381292,5.250596834946066,5.250596834946066,6.727005964985679,7.766824903786215,7.20695950763843,7.672722315554722,5.147866515658265,6.90816989285851,8.014196026668515,7.363372454640242,7.911747712834966,5.378551084888414,210.37290191388433,210.37290191388433,0.0,233.7476687932048,0.0,210.37290191388433,233.7476687932048,0,0
+2017/04/29 11:00:00,216.47944130974486,0,1076.2309609077943,0,0,0,0.436190277664079,0.0,14.783782912797726,0.0,136.4899973586286,0,39.380909295966944,0.00025762692355965047,23.100320369460984,0,0,0.1394643957115843,561.481385080193,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1748.242671525405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05729933353017859,0.0018129109719646347,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2853898119337672,-0.2853898119337672,-0.21700212200659752,-0.21700212200659752,-0.24591211677579794,-0.24591211677579794,1.0243957609324872,1.0243957609324872,0.2681189769811893,0.2681189769811893,-0.14226847568021,-0.2982702976196631,-0.19900670505627044,-0.2747468273478585,0.007543612791029852,-0.12955286599527982,-0.28829251655218385,-0.22940511537798422,-0.26199195974740486,-0.04959772962912647,6.69188437844268,6.69188437844268,5.976791910229181,5.976791910229181,6.255100553312616,6.255100553312616,27.15806034008793,27.15806034008793,6.492722738969249,6.492722738969249,5.419361338391354,6.848611997132039,5.821241544431558,6.56766597598002,5.001177987609253,5.347695539530292,6.726592452446852,6.091897747404104,6.425088493436675,5.050927499984965,216.47944130974486,216.47944130974486,0.0,240.53271256638317,0.0,216.47944130974486,240.53271256638317,0,0
+2017/04/29 12:00:00,202.74377304271306,0,1040.6161032904868,0,0,0,0.6869852466739031,0.0,14.783782912797726,0.0,124.80122689546741,0,39.380909295966944,3.925322151823264e-05,23.090829438585544,0,0,0.01999255192933725,561.4763518192115,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2803.2514676693645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.055403172130470656,0.0017529177470114018,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1765878115825882,-0.1765878115825882,-0.264656513283619,-0.264656513283619,-0.11150380161462815,-0.11150380161462815,1.0326004868350431,1.0326004868350431,0.38953156495151275,0.38953156495151275,-0.06589231609970511,-0.2052690025987251,-0.12274190908786614,-0.18418298840337116,-0.05585379069615443,-0.02938703065294284,-0.20210701456921853,-0.11091953527512137,-0.15485302774884926,-0.09791364694313225,5.646397265148337,5.646397265148337,6.454307440438754,6.454307440438754,5.257514087550192,5.257514087550192,27.512281857364485,27.512281857364485,8.160554647439412,8.160554647439412,5.089894864240762,5.873834631031997,5.3120742390284335,5.703280378508964,5.064587265816186,5.0178775947861,5.8470740532289796,5.254821007016702,5.496914289691603,5.198542410226764,202.74377304271306,202.74377304271306,0.0,225.27085893634785,0.0,202.74377304271306,225.27085893634785,0,0
+2017/04/29 13:00:00,198.28569462436894,0,984.5777545563056,0,0,0,0.8008872222740612,0.0,14.728125842506467,0.0,122.5097643007467,0,39.380909295966944,4.942901598273795e-05,20.865958533858738,0,0,0.026785241064466114,540.9215629084396,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3291.7640314790574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05241964893588437,0.0016585211528219127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.028127593935333078,-0.028127593935333078,-0.14293960090743876,-0.14293960090743876,0.03346252697725686,0.03346252697725686,1.0406030562128017,1.0406030562128017,0.49488272125264626,0.49488272125264626,-0.010448924281266267,-0.1030713054437646,-0.06557062889261425,-0.0951597551237306,-0.006544883056368589,0.04609215533399867,-0.05377447375089139,0.0030293567914676054,-0.0502953858311603,-0.04033376696824467,5.01637802134853,5.01637802134853,5.423330742527995,5.423330742527995,5.023180357948348,5.023180357948348,27.860161976648442,27.860161976648442,10.117784308058617,10.117784308058617,5.002260092061292,5.2200201080449204,5.089019102565331,5.1875267416282185,5.000886717854584,5.043982131214747,5.059867276205566,5.000189968620035,5.052370462304793,5.033678296555038,198.28569462436894,198.28569462436894,0.0,220.31743847152103,0.0,198.28569462436894,220.31743847152103,0,0
+2017/04/29 14:00:00,182.0744493633872,0,927.4190523676167,0,0,0,0.6975546726645367,0.0,14.728125842506467,0.0,108.75639138185811,0,39.380909295966944,2.3710787441515806e-05,18.511444459603688,0,0,0.012850349908971973,519.2671481234502,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2836.6026386695685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049376477293526795,0.001562237323323338,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.036973287513898716,-0.036973287513898716,-0.15056741973313248,-0.15056741973313248,0.03119249750405676,0.03119249750405676,1.0244439975350672,1.0244439975350672,0.471759181034112,0.471759181034112,0.004631588531254435,-0.12355211874379372,-0.05984114825177953,-0.13161762725645643,-0.08048428237881457,0.07657729356143837,-0.051663971804619,-0.03131494122900634,-0.0692679566353811,-0.08862136257520133,5.028299816740613,5.028299816740613,5.469763494138931,5.469763494138931,5.020141884774731,5.020141884774731,27.1601355750647,27.1601355750647,9.647291884877475,9.647291884877475,5.00044405952886,5.31621057567699,5.074139626789119,5.358875237965407,5.134130917620055,5.121421301616479,5.0552596862933825,5.020300332919149,5.099343382154444,5.162633575784042,182.0744493633872,182.0744493633872,0.0,202.3049437370969,0.0,182.0744493633872,202.3049437370969,0,0
+2017/04/29 15:00:00,180.97553050082607,0,947.5728422693318,0,0,0,0.45944760036781856,0.0,14.78378283874635,0.0,106.31215624428707,0,39.380909295966944,9.515676605587942e-05,18.609149697002547,0,0,0.05159181462119798,539.3821965604532,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1829.8872585363315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05044947999594064,0.0015961863808831302,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2410185633622535,-0.2410185633622535,-0.12104572140781783,-0.12104572140781783,-0.14265411755339344,-0.14265411755339344,1.0047771803910845,1.0047771803910845,0.3014520248670162,0.3014520248670162,-0.08206388327626493,-0.2165042048013143,-0.1273513652790092,-0.23108495257357076,-0.11760998480721872,-0.006025696261516998,-0.16514908663768588,-0.09910497859767639,-0.16688396928896132,-0.1446590979883243,6.205525510602172,6.205525510602172,5.3035031005288005,5.3035031005288005,5.4216399456339275,5.4216399456339275,26.321229683064004,26.321229683064004,6.888406397048541,6.888406397048541,5.139449140621366,5.972305595652287,5.335970742959603,6.10798341100184,5.286508099845761,5.000751616000116,5.565271090803833,5.2034053198964045,5.5772242099562845,5.433586345156485,180.97553050082607,180.97553050082607,0.0,201.08392277869564,0.0,180.97553050082607,201.08392277869564,0,0
+2017/04/29 16:00:00,193.65620878133825,0,978.578541583834,0,0,0,0.5307481717402285,0.0,14.83943990903761,0.0,120.17895923267236,0,39.380909295966944,0.00016213166969260485,16.323607398533362,0,0,0.08796632342631239,517.115992597334,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2124.7694419321406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052100246393572934,0.0016484154790251165,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.28528449270625245,-0.28528449270625245,-0.35484403728671166,-0.35484403728671166,-0.16125006612636245,-0.16125006612636245,1.0100352474187317,1.0100352474187317,0.2883076870301846,0.2883076870301846,-0.096214323389487,-0.2386353076630706,-0.16101362979670178,-0.264425675570314,-0.1384075646659413,-0.07489968257820337,-0.17827648378342212,-0.10837309999359994,-0.21179922503184156,-0.11695333404248065,6.690631746695871,6.690631746695871,7.620178818689581,7.620178818689581,5.5388652475318025,5.5388652475318025,26.54409725192623,26.54409725192623,6.726774782447208,6.726774782447208,5.1917078653471975,6.181745689044632,5.537284378042926,6.451764295615419,5.396889889340287,5.116158203714903,5.6588361770094195,5.243249186908841,5.930425609660588,5.283315786381181,193.65620878133825,193.65620878133825,0.0,215.17356531259804,0.0,193.65620878133825,215.17356531259804,0,0
+2017/04/29 17:00:00,217.12579600791625,0,981.6279047994976,0,0,0,0.4842373161119938,0.0,16.81874801961843,0.0,138.40412594678773,0,39.380909295966944,0.001779602219192949,18.6040206247576,0,0,0.9694455898149137,519.2838765466089,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1931.3225998444018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,141.18981578991156,0.0,0.0,0.0,265.1970455289057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.428580811420982,0.0,0.0,0,0,0,0,0,0,0,0,0.052262596749858524,0.0016535521311304591,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.345819759595059,-0.345819759595059,-0.4399178007532451,-0.4399178007532451,-0.20026847419357452,-0.20026847419357452,1.00443948981325,1.00443948981325,0.2874589097910109,0.2874589097910109,-0.10739268812564827,-0.26744087455453397,-0.13814888706803072,-0.2895530598243735,-0.1040455289390613,-0.1086973938923676,-0.2213454111202489,-0.17818752536363877,-0.2613651863174317,-0.11872371804714536,7.487997094894922,7.487997094894922,9.03712881862458,9.03712881862458,5.8317063902019015,5.8317063902019015,26.306952018199752,26.306952018199752,6.716588486717214,6.716588486717214,5.238865682732737,6.485159578615352,5.395406494353509,6.741775732183896,5.22420100355923,5.244707917997275,6.016366124181189,5.658177931467748,6.418258844490026,5.291963489263509,217.12579600791625,217.12579600791625,0.0,241.25088445324027,0.0,217.12579600791625,241.25088445324027,0,0
+2017/04/29 18:00:00,205.30644417617137,0,1007.1207211006179,0,0,0,0.5188185494061534,0.0,17.48022705469545,0.0,120.14191543460078,0,39.380909295966944,0.00037762958896168925,25.496212743610098,0,0,0.20675603510072607,581.0297349149874,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2074.3901381100704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05361985317242916,0.0016964947782548245,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3915413611373327,-0.3915413611373327,-0.5036872166737189,-0.5036872166737189,-0.22758752505751695,-0.22758752505751695,0.9936699148380518,0.9936699148380518,0.2713521675258677,0.2713521675258677,-0.11636626681727452,-0.21245222095584018,-0.14826541977996993,-0.2187090222985326,0.012760495198327495,-0.08811274519039224,-0.19273664526401652,-0.18089648454908383,-0.1932548520576664,-0.01887449272364102,8.193437814274091,8.193437814274091,10.302997077720462,10.302997077720462,6.074626314700609,6.074626314700609,25.853877454903667,25.853877454903667,6.5290502253868254,6.5290502253868254,5.2804769229592665,5.936182657855383,5.455495324218077,5.992250188223494,5.00337069199189,5.160771510095799,5.770226273112684,5.6783709393286586,5.774380275054952,5.007374598175275,205.30644417617137,205.30644417617137,0.0,228.11827130685708,0.0,205.30644417617137,228.11827130685708,0,0
+2017/04/29 19:00:00,199.13343476410958,0,952.8764633385543,0,0,0,0.4127126259518537,0.0,21.72772467980669,0.0,110.89738010901058,0,39.38090929596693,0.0001355029888982954,25.427581849464225,0,0,0.07429096816470221,562.4082947324042,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1637.0415181342557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050731848710093536,0.0016051203301716977,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4486002576315511,-0.4486002576315511,-0.33118221533852377,-0.33118221533852377,-0.2853084142816938,-0.2853084142816938,0.9811257389074421,0.9811257389074421,0.23640434694924817,0.23640434694924817,-0.14649974881386796,-0.2050817328974211,-0.18404716528253479,-0.21342957551572891,0.04567886979683185,-0.11811655651745033,-0.17592764850519946,-0.19199669294110855,-0.18553034491615486,0.008766850176599936,9.199180931583953,9.199180931583953,7.280955866063579,7.280955866063579,6.690916220841956,6.690916220841956,25.331724046412972,25.331724046412972,6.159701548791844,6.159701548791844,5.444700938475876,5.8722380740820626,5.702241997986917,5.9448327298073025,5.043196861884013,5.288983045102171,5.641566801623199,5.764314189277798,5.713622774481664,5.001590997526165,199.13343476410958,199.13343476410958,0.0,221.25937196012174,0.0,199.13343476410958,221.25937196012174,0,0
+2017/04/29 20:00:00,198.34763770069029,0,916.5363046460174,0,0,0,0.30384950839487906,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,0.00032069681159808624,23.12781991379954,0,0,0.17604255865109494,561.4567369619251,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1195.4350362803061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04879707174390506,0.0015439053356122903,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5108208239179546,-0.5108208239179546,-0.10576567196358747,-0.10576567196358747,-0.35243572827444813,-0.35243572827444813,0.9683120685255869,0.9683120685255869,0.16988999012403183,0.16988999012403183,-0.12023863592198432,-0.20714970887444464,-0.1584234761852899,-0.21286278974526726,0.05851523169802215,-0.10394387375857868,-0.1823196709006182,-0.19215292070691303,-0.1922363088144268,0.014303132006112775,10.45551781062062,10.45551781062062,5.231679241992936,5.231679241992936,7.584564610754342,7.584564610754342,24.804611757680988,24.804611757680988,5.5982324538022965,5.5982324538022965,5.299466738683336,5.889949856643028,5.5201185606064485,5.9398115228309365,5.070890063858386,5.223762907350107,5.6891023492700015,5.7655605149880955,5.766226171120337,5.004234938622957,198.34763770069029,198.34763770069029,0.0,220.3862641118781,0.0,198.34763770069029,220.3862641118781,0,0
+2017/04/29 21:00:00,193.04687990003177,0,900.5817384469851,0,0,0,0.1976881398199187,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,0.0002465429874529946,25.413696336260372,0,0,0.13554128351488137,581.0330245505733,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,771.4308039599827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04794763882181503,0.0015170298700609517,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.448958702173774,-0.448958702173774,-0.25909140171527106,-0.25909140171527106,-0.40435577333608863,-0.40435577333608863,0.9542672757448508,0.9542672757448508,0.11818182586915021,0.11818182586915021,-0.13309922698604598,-0.22318547540019354,-0.17762524971307841,-0.2261489528025266,-0.015439445495007737,-0.12896027052680065,-0.20031371793832548,-0.19560978558713057,-0.20610840269180616,-0.030908131060326912,9.205940723701772,9.205940723701772,6.393621292496377,6.393621292496377,8.407161408578432,8.407161408578432,24.234195014434704,24.234195014434704,5.289302705468714,5.289302705468714,5.3670066549138085,6.0333704111532285,5.654025029043424,6.0610546767035345,5.00493456510641,5.344519660304897,5.832082868769305,5.7933990818725505,5.881008917994663,5.019776296069182,193.04687990003177,193.04687990003177,0.0,214.4965332222575,0.0,193.04687990003177,214.4965332222575,0,0
+2017/04/29 22:00:00,139.1814201212292,0,680.8088682576441,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,0.003268253000249443,18.59679406441712,0,0,1.8099825504991516,519.2922994006964,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,252.3556110321715,0.0,0.0,0.0,238.60868394477322,0.0,0.0,0.0,0.0,0.0,183.587751668154,0.0,0.0,0.0,167.88959891128962,0.0,0.0,0,0,0,0,0,0,0,0,0.036246768425704415,0.0011468224869074846,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5008577690834881,-0.5008577690834881,-0.39564912790365936,-0.39564912790365936,-0.4100143446596778,-0.4100143446596778,0.8410775242408689,0.8410775242408689,-0.12898907715039823,-0.12898907715039823,-0.1615972777394824,-0.2862262795357514,-0.2147803002026065,-0.2892102914958591,-0.05974948502376847,-0.19168944827494347,-0.28296851127892425,-0.23915492114460332,-0.28722553032252707,-0.06024424866312974,10.243111110926861,10.243111110926861,8.261183883050933,8.261183883050933,8.503773754457654,8.503773754457654,19.925896525167744,19.925896525167744,5.344673705113962,5.344673705113962,5.541191010161398,6.701849669397333,5.956853155339317,6.7376404365735425,5.0739126339123715,5.761866083641266,6.663204560770879,6.186909995397187,6.7137929975953625,5.075141988586026,139.1814201212292,139.1814201212292,0.0,154.64602235692132,0.0,139.1814201212292,154.64602235692132,0,0
+2017/04/29 23:00:00,93.00454560268054,0,566.626209595327,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.01757582241957449,14.044013518968393,0,0,10.101190643749202,503.28949018276165,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,976.4464321455142,0.0,0.0,0.0,950.9246056929505,0.0,0.0,0.0,0.0,0.0,990.6143768942806,0.0,0.0,0.0,957.2640688047194,0.0,704.3687627456254,0,0,0,0,0,0,0,0,0.03016759910266617,0.0009544818070571285,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5339442689354577,-0.5339442689354577,-0.5100854856051356,-0.5100854856051356,-0.5257373174554894,-0.5257373174554894,0.6586643385644365,0.6586643385644365,-0.38914245171647327,-0.38914245171647327,-0.20156168355975113,-0.32571954128646785,-0.2376652892231246,-0.3280475000939882,-0.13528612003196822,-0.2299360126170554,-0.336642045213785,-0.2521634055181381,-0.3399914343702673,-0.17383583195556612,10.965044632724712,10.965044632724712,10.439694129432297,10.439694129432297,10.781554521237226,10.781554521237226,14.112993615407945,14.112993615407945,8.154208138064774,8.154208138064774,5.8425010889090885,7.206019438876879,6.172135255395148,7.237799369276786,5.379175758478183,6.096968681443286,7.357118576317319,6.3198941416568175,7.404467767236696,5.626380931363386,93.00454560268054,93.00454560268054,0.0,103.33838400297837,0.0,93.00454560268054,103.33838400297837,0,0
+2017/04/30 00:00:00,42.97935697156532,0,533.9384417580812,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.6362210418069544e-09,11.793722904129037,0,0,0.0,480.7029129892651,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.028427278130963643,0.0008994192646162473,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.38399942435724616,-0.38399942435724616,-0.31549242245353953,-0.31549242245353953,-0.31597494596320325,-0.31597494596320325,0.7178425196186272,0.7178425196186272,-0.04643548925671004,-0.04643548925671004,-0.1158822204817905,-0.23748509407796362,-0.15810405417138848,-0.24461901323719767,0.094199935611499,-0.17163596363208486,-0.27564521323024305,-0.21703786601869487,-0.2856396181304083,0.02597265270994715,8.070932154388842,8.070932154388842,7.0691265161810435,7.0691265161810435,7.075485612790743,7.075485612790743,15.84248697291875,15.84248697291875,5.044639868441067,5.044639868441067,5.278147005574681,6.170354327111326,5.518021009049775,6.2419027393907385,5.183761395060401,5.610607601640595,6.577966791711148,5.977114369097734,6.694857362046022,5.013964539200899,42.97935697156532,42.97935697156532,0.0,47.75484107951703,0.0,42.97935697156532,47.75484107951703,0,0
+2017/04/30 01:00:00,23.769752709974085,0,51.70490816512057,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5726572862962918,0,0,0.0,16.214555652576443,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0027528076088811962,8.709691387980962e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.37884993276691936,-0.37884993276691936,-0.33190434677666003,-0.33190434677666003,-0.3204961785904209,-0.3204961785904209,0.635674563613185,0.635674563613185,0.15744148178261874,0.15744148178261874,-0.21760536821336968,-0.33721549933707196,-0.26152247920093974,-0.3471616320193731,0.18561166929166428,-0.25146874651953116,-0.3543408872583551,-0.3083469428892241,-0.36825626065152334,0.09147078782770468,7.988683168368041,7.988683168368041,7.290956738358204,7.290956738358204,7.13554938800992,7.13554938800992,13.481995864048315,13.481995864048315,5.513683644711364,5.513683644711364,5.982241169837067,7.365191502033994,6.419971235362453,7.5074327630385795,5.714249451914839,6.312612985945293,7.612717813873289,6.976111426867718,7.823036421880758,5.173263913835385,23.769752709974085,23.769752709974085,0.0,26.41083634441565,0.0,23.769752709974085,26.41083634441565,0,0
+2017/04/30 02:00:00,28.34422035571723,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248572692443348,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3186066892701677,-0.3186066892701677,-0.2772615626934669,-0.2772615626934669,-0.2642576085682666,-0.2642576085682666,0.6576450387218516,0.6576450387218516,0.24535766897250427,0.24535766897250427,-0.18660310475187536,-0.3049197422274896,-0.23369575989010136,-0.31450883590899115,0.20895703143134667,-0.249539345957402,-0.3528270949104347,-0.30903719037665456,-0.3666006052710451,0.11720393203734869,7.110342512317743,7.110342512317743,6.596585397395231,6.596585397395231,6.449914108658916,6.449914108658916,14.084531624416002,14.084531624416002,6.249433084304556,6.249433084304556,5.721911565071679,6.932265234427732,6.133218771182243,7.056194532008462,5.905575755109609,6.2924961561374175,7.590335369404698,6.9850022986657905,7.797580329607342,5.2845319566816755,28.34422035571723,28.34422035571723,0.0,31.493578173019145,0.0,28.34422035571723,31.493578173019145,0,0
+2017/04/30 03:00:00,23.722021331826273,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.524925908148479,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.29971611174580287,-0.29971611174580287,-0.2617454542708608,-0.2617454542708608,-0.24742082086046321,-0.24742082086046321,0.6469452679510266,0.6469452679510266,0.29061433574188067,0.29061433574188067,-0.1821518265479036,-0.2997003253399442,-0.2306007139078492,-0.3093143891581963,0.2328382596533991,-0.2641744091972801,-0.36779480890004085,-0.3243687106019759,-0.38153403032290023,0.1382253834863509,6.866641985936539,6.866641985936539,6.422400468922163,6.422400468922163,6.270587660554568,6.270587660554568,13.788478308830705,13.788478308830705,6.754610854071657,6.754610854071657,5.6878323352094355,6.866444644798179,6.103334330220349,6.988578488225443,6.124898863712346,6.4489986378949595,7.815929748928227,7.187684062521782,8.031413005669776,5.395844875586732,23.722021331826273,23.722021331826273,0.0,26.35780147980697,0.0,23.722021331826273,26.35780147980697,0,0
+2017/04/30 04:00:00,37.7323749348773,0,95.42334904047746,0,0,0,0.09021067526731087,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,0.04178157780229333,0.011445723490950164,0.5250385462536654,0,0,6.697467759117135,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,284.7570568430247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5579152541452892,0.0,0.0,0.0,23.03614106663492,0.0,0.0,0,0,0,0,0,0,0,0,0.005080409783625809,0.00016074062421617488,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2279955554235466,-0.2279955554235466,-0.19373414116267898,-0.19373414116267898,-0.17759368038550566,-0.17759368038550566,0.6887664875291964,0.6887664875291964,0.4192353475251033,0.4192353475251033,-0.1906962681053478,-0.308225632567279,-0.23899135577552236,-0.3180029774984578,0.2646729170897617,-0.27911308825900155,-0.3824326533197239,-0.3394347042035868,-0.38973790327934127,0.1693744953738929,6.07849151334851,6.07849151334851,5.778232299587529,5.778232299587529,5.653792252905831,5.653792252905831,14.973820211054445,14.973820211054445,8.664148469487174,8.664148469487174,5.753979474530837,6.974550948036523,6.185283138173844,7.1023205389773665,6.45448824696048,6.618048348508225,8.04578746782218,7.396564441940242,8.163922689063526,5.59460303224877,37.7323749348773,37.7323749348773,0.0,41.92486103875255,0.0,37.7323749348773,41.92486103875255,0,0
+2017/04/30 05:00:00,72.64309942455624,0,216.16698228475593,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,0.24844637570022882,0.005620652964351343,0.5250252066919076,0,0,3.224867209491126,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.276597809239961,0.0,0.0,0,0,0,0,0,0,0,0,0.011508890253165299,0.00036413326525187563,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.01646192741078744,0.01646192741078744,0.04343820533414908,0.04343820533414908,0.06557537614833957,0.06557537614833957,0.8761821287684279,0.8761821287684279,0.7405858612549545,0.7405858612549545,-0.18863602713614158,-0.30435878481941914,-0.23524564255098585,-0.31541631851278046,0.2850721884732457,-0.274666577893451,-0.377137077150618,-0.33318762958395465,-0.38696445679975094,0.22853756425945762,5.0056098014062655,5.0056098014062655,5.0390626191021255,5.0390626191021255,5.089031995318706,5.089031995318706,21.206143996685043,21.206143996685043,16.547345112456398,16.547345112456398,5.737751016277301,6.925135900441148,6.148334815950108,7.06812445542792,6.688108093968282,6.566747497894809,7.961575858256609,7.308783662679801,8.118804079228411,6.08363666374531,72.64309942455624,72.64309942455624,0.0,80.7145549161736,0.0,72.64309942455624,80.7145549161736,0,0
+2017/04/30 06:00:00,90.56512580281601,0,683.1013599299528,0,0,0,0.0,0.0,8.33396954093373,0.0,80.56906512710079,0,1.1368760641961844,2.520605551547726e-09,0.5252150680647111,0,0,0.0,452.41406859841584,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.036368822380402,0.0011506841889554914,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.17702905824975784,0.17702905824975784,0.20304518000735386,0.20304518000735386,0.2263671457686863,0.2263671457686863,1.0241742080588858,1.0241742080588858,0.9092751659850521,0.9092751659850521,-0.1393157746972684,-0.2541170078300554,-0.18467601657136096,-0.26571383180189906,0.30479795238318563,-0.2223031781735246,-0.324178140908672,-0.2794220967527371,-0.3378414571842874,0.28144455459519,5.649636041679855,5.649636041679855,5.854970305699069,5.854970305699069,6.063107548618632,6.063107548618632,27.14852980160539,27.14852980160539,22.45943438988887,22.45943438988887,5.402120097400598,6.340479842145726,5.707056099120578,6.46598461899238,6.930716248629281,6.025199271926553,7.185103609950872,6.6216444635385585,7.374019501610505,6.645280446494979,90.56512580281601,90.56512580281601,0.0,100.62791755868446,0.0,90.56512580281601,100.62791755868446,0,0
+2017/04/30 07:00:00,116.17358152208037,0,726.182565545238,0,0,0,0.0,0.0,6.8810114640411175,0.0,69.33401494192633,0,39.380909295966944,9.03021774603224e-06,0.5776367899282276,0,0,0.00514762642857147,459.9997740747287,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03866249767789599,0.0012232544765446315,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.15362593264512248,-0.15362593264512248,-0.13753492723193197,-0.13753492723193197,-0.12757918170355778,-0.12757918170355778,0.8418539626528563,0.8418539626528563,0.42344604253662504,0.42344604253662504,-0.48350059843842547,-0.706963010351132,-0.518548526448188,-0.7178563330811306,-0.3580971089051753,-0.5317576071467143,-0.7370068787067335,-0.573920224344619,-0.752286632073225,-0.3105356076503991,5.489062056877231,5.489062056877231,5.391896867974481,5.391896867974481,5.337174704258899,5.337174704258899,19.95365931098985,19.95365931098985,8.738594492752128,8.738594492752128,9.883309953469592,15.513183331385846,10.623223940135404,15.84290832422026,7.668677307591182,10.915870469936095,16.434952044802827,11.900556300575602,16.91862574783137,7.004372365358961,116.17358152208037,116.17358152208037,0.0,129.08175724675596,0.0,116.17358152208037,129.08175724675596,0,0
+2017/04/30 08:00:00,146.2206603969106,0,780.062944418764,0,0,0,0.0,0.0,9.39755635098607,0.0,96.91714705112861,0,39.38090929596693,1.0593894556167365e-05,0.5250371049344534,0,0,0.006039534537474291,460.6437322713293,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.041531128958678346,0.0013140159706676344,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.33422169964904797,-0.33422169964904797,-0.338741607707898,-0.338741607707898,-0.48540563367509326,-0.48540563367509326,0.855857384307391,0.855857384307391,-0.10113283436938739,-0.10113283436938739,-0.765563573733912,-0.9238332442550786,-0.7293261755161565,-0.9392015768912624,-0.5112492972644304,-0.8448570448128079,-1.0008710368760043,-0.8098146583651793,-1.0219270524050426,-0.5088366605816841,7.3231994642095515,7.3231994642095515,7.386743661916412,7.386743661916412,9.922164435672556,9.922164435672556,20.458684102914205,20.458684102914205,5.211818335086988,5.211818335086988,17.34701855634181,23.024842162858803,16.19560712516801,23.63093505247373,10.464748873755994,20.06127598896515,26.156340249550325,18.829022784031537,27.051966895748052,10.412874347762212,146.2206603969106,146.2206603969106,0.0,162.4674004410118,0.0,146.2206603969106,162.4674004410118,0,0
+2017/04/30 09:00:00,149.86970376338994,0,906.8035700965899,0,0,0,0.0,0.0,9.332689672910613,0.0,97.06762091869685,0,39.380909295966944,0.13143945520514377,0.5250692181560994,0,0,73.51348420615273,460.64138450872383,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,427.9874759769683,0.0,2676.6849460475955,0.0,455.57859841411585,0.0,2636.551784800154,0.0,118.4698437977299,0.0,618.4787143966124,0.0,2758.3185667897196,0.0,990.6195145795887,0.0,2964.715845419772,0.0,325.2824855134771,0,0,0,0,0,0,0,0,0.048278893747392165,0.0015275105450024817,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.34714725621972564,-0.34714725621972564,-0.3508461548422831,-0.3508461548422831,-0.5091485371008916,-0.5091485371008916,0.9171219689832566,0.9171219689832566,-0.14782816116039113,-0.14782816116039113,-0.4206390396694449,-0.5119698166088039,-0.4225743674345698,-0.5104233758890657,-0.2654481069651776,-0.4754733402136875,-0.5862664398571676,-0.4731273856184796,-0.5603147003671314,-0.2937877057257284,7.50722413841973,7.50722413841973,7.561193094658108,7.561193094658108,10.419565893934532,10.419565893934532,22.76312918258786,22.76312918258786,5.452810062022124,5.452810062022124,8.688881572300943,10.4802897002983,8.723120670270305,10.446962257311867,6.463045486873554,9.721308512299245,12.203488812809695,9.674488592676525,11.574383866404219,6.793273515644458,149.86970376338994,149.86970376338994,0.0,166.52189307043326,0.0,149.86970376338994,166.52189307043326,0,0
+2017/04/30 10:00:00,204.2156823028867,0,1041.1852924160194,0,0,0,0.30024200994095196,0.0,13.065493553185489,0.0,124.87761316689259,0,39.380909295966944,0.03127687053944481,23.128172203907003,0,0,18.421100100363073,561.3896096525823,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1193.8249577721672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1390.9123628498678,0.0,0.0,0.0,1261.153128977841,0.0,48.95462859557888,0.0,0.0,0.0,1401.1030564183231,0.0,0.0,0.0,1212.0473121833854,0.0,61.249373050037384,0,0,0,0,0,0,0,0,0.0554334761811162,0.001753876546050161,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.100503592784407,-0.100503592784407,-0.2294424238704566,-0.2294424238704566,-0.41418594431085787,-0.41418594431085787,1.0083225592985747,1.0083225592985747,-0.04449540085769315,-0.04449540085769315,-0.29274836925158887,-0.40936384083901317,-0.3168074775876595,-0.40207930972715783,-0.22983963101457894,-0.31760510746252957,-0.4398432381904473,-0.3439501889214317,-0.41967957582756277,-0.23738347389362655,5.209189518566745,5.209189518566745,6.092253718111479,6.092253718111479,8.575876257772606,8.575876257772606,26.471389163606005,26.471389163606005,5.040987333748305,5.040987333748305,6.7805639467669465,8.492597542637625,7.086480595125735,8.36868056675489,6.096047201699292,7.0970421817574305,9.035751192562728,7.46104586144871,8.67196664924083,6.169350582297739,204.2156823028867,204.2156823028867,0.0,226.90631366987412,0.0,204.2156823028867,226.90631366987412,0,0
+2017/04/30 11:00:00,221.87496596616114,0,1077.3468022411919,0,0,0,0.6996838102891166,0.0,12.935301236479537,0.0,143.25325374857618,0,39.380909295966944,0.002231255704819934,23.029605217303757,0,0,1.3358726238686323,561.4008181854335,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2867.4294646098256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,198.9562407256715,0.0,0.0,0.0,75.15990549304101,0.0,0.0,0.0,0.0,0.0,204.6572407238204,0.0,0.0,0.0,36.17018892400611,0.0,0.0,0,0,0,0,0,0,0,0,0.05735874174927979,0.001814790606606052,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.10484386629852631,-0.10484386629852631,-0.15210886072992727,-0.15210886072992727,-0.20640832725488417,-0.20640832725488417,1.0614432926313286,1.0614432926313286,0.1836383422088766,0.1836383422088766,-0.16854936083182503,-0.338459939239753,-0.20402713689284044,-0.3324296436325106,-0.13614107268980316,-0.16972330391418558,-0.34302172436909173,-0.21202470740520687,-0.33273204015975255,-0.14673178908271936,5.227656458326635,5.227656458326635,5.479440957769583,5.479440957769583,5.883579499365609,5.883579499365609,28.77702866009176,28.77702866009176,5.699121156447916,5.699121156447916,5.588816611765083,7.382758412042932,5.8632745761358365,7.298245532568728,5.383987287645297,5.597057660910167,7.447716570426991,5.932411525690384,7.30244676856087,5.446112102669446,221.87496596616114,221.87496596616114,0.0,246.52773996240126,0.0,221.87496596616114,246.52773996240126,0,0
+2017/04/30 12:00:00,198.8988096339668,0,998.3476292508539,0,0,0,0.8882220914231881,0.0,12.935301236479537,0.0,124.80122689546741,0,39.380909295966944,0.00017892828068893338,18.604987718046107,0,0,0.10753957194854016,519.1203307595595,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3688.720587637593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0531527672640601,0.0016817165056997633,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.08093772329596248,-0.08093772329596248,-0.2066782654630583,-0.2066782654630583,-0.051686458308373054,-0.051686458308373054,1.0773775516131097,1.0773775516131097,0.3119220123141204,0.3119220123141204,-0.07314737001749615,-0.2242422327018151,-0.11038778600393051,-0.2174801213096267,-0.0036693721438720746,-0.045991366906593716,-0.2066095353350044,-0.0951058178223901,-0.19908644199051725,-0.007162323281248223,5.135646979773071,5.135646979773071,5.885896293555746,5.885896293555746,5.055307805561796,5.055307805561796,29.488530220215694,29.488530220215694,7.0223790927525584,7.0223790927525584,5.110785350431954,6.043200208720776,5.25238231991149,5.9811085321704525,5.000278717743711,5.0437899743101156,5.885306115262338,5.187314133157287,5.821900894868023,5.001061914804865,198.8988096339668,198.8988096339668,0.0,220.99867737107422,0.0,198.8988096339668,220.99867737107422,0,0
+2017/04/30 13:00:00,196.51542348234312,0,981.0339863156099,0,0,0,0.916962461829599,0.0,12.935301236479537,0.0,124.7641830973959,0,39.380909295966944,4.395343401419737e-05,18.51802343723709,0,0,0.024150184026882085,537.3804297247814,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3808.26766621762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05223097608985697,0.0016525516754894282,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.010612570907526746,-0.010612570907526746,-0.15179534472815964,-0.15179534472815964,0.04379955103441118,0.04379955103441118,1.0680983263815271,1.0680983263815271,0.385801294975604,0.385801294975604,0.049103295298823346,-0.1256290252670256,0.008599866654690785,-0.12478189407775472,-0.08415118099997668,0.09677663973252898,-0.07805939287950624,0.04529572149883525,-0.08041578808568733,-0.08245601166892164,5.0023314399980165,5.0023314399980165,5.47746462704572,5.47746462704572,5.039715272097737,5.039715272097737,29.073098988262885,29.073098988262885,8.099979493845126,8.099979493845126,5.049917070637903,5.326938366907314,5.001530966589769,5.322541048493221,5.146635410397764,5.193956189064949,5.126168121297638,5.042475175611301,5.133902650921129,5.140785397659059,196.51542348234312,196.51542348234312,0.0,218.3504705359368,0.0,196.51542348234312,218.3504705359368,0,0
+2017/04/30 14:00:00,178.7423288460494,0,903.5678347396141,0,0,0,0.7914768395173003,0.0,12.88660173648153,0.0,111.01081017850728,0,39.380909295966944,3.281762399698211e-05,14.100502110876581,0,0,0.01973687473023865,495.4090439706263,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3248.570631135692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04810662080025603,0.0015220599490392442,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.006776993953629932,0.006776993953629932,-0.1261265370327323,-0.1261265370327323,0.07237744446884417,0.07237744446884417,1.0513852813573734,1.0513852813573734,0.4063444653470213,0.4063444653470213,0.03271743721975028,-0.1605431108094731,-0.018454931156194673,-0.16848699151527935,-0.1603613540503794,0.09627492518757566,-0.07267516089051718,0.03500720992701172,-0.11822892382758836,-0.10636155501648663,5.0009507272194185,5.0009507272194185,5.32953477412309,5.32953477412309,5.10846490024656,5.10846490024656,28.332569160862036,28.332569160862036,8.440959354506447,8.440959354506447,5.02215951566761,5.534145308308197,5.007050376971151,5.588380388777622,5.532935187800106,5.1919495401047016,5.109359262491736,5.025369956814103,5.289533480358912,5.234298467232861,178.7423288460494,178.7423288460494,0.0,198.60258760672153,0.0,178.7423288460494,198.60258760672153,0,0
+2017/04/30 15:00:00,175.9342762428637,0,901.5792140021845,0,0,0,0.7787489164357814,0.0,12.935301171685163,0.0,108.75639138185811,0,39.380909295966944,1.8749616148698482e-05,14.082906727301554,0,0,0.010667100638348111,493.42949300728867,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3189.7429620128573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04800074515921064,0.0015187101175579778,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.11009180601494631,0.11009180601494631,0.1662308593743813,0.1662308593743813,0.13357889757038063,0.13357889757038063,1.0302880963260765,1.0302880963260765,0.4959280409645183,0.4959280409645183,0.044411078514344976,-0.038690197944410504,-0.032409806127179135,-0.23235100484548782,-0.12851493607327535,0.04057484778682671,0.007236875821327569,-0.04292156771460849,-0.19617648497185083,-0.10888560485432752,5.251029996233683,5.251029996233683,5.572709636607968,5.572709636607968,5.369658780304391,5.369658780304391,27.412197792425943,27.412197792425943,10.139598608604132,10.139598608604132,5.040832118675368,5.030989311034304,5.0217447382517975,6.120185014333558,5.3421426028654935,5.034082129763718,5.001084136830286,5.038138876453559,5.798010439524305,5.245556527059463,175.9342762428637,175.9342762428637,0.0,195.48252915873744,0.0,175.9342762428637,195.48252915873744,0,0
+2017/04/30 16:00:00,190.2253337842087,0,969.4406972608512,0,0,0,0.8613420371736003,0.0,11.08681950462398,0.0,124.87761316689259,0,39.380909295966944,1.485413708070002e-05,14.018634925414444,0,0,0.007824388865144326,508.0582902089123,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3548.4034602412994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051613740793355116,0.0016330227809566026,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1530416007803799,0.1530416007803799,0.47247506264151545,0.47247506264151545,0.21606145825206355,0.21606145825206355,1.0372588863807988,1.0372588863807988,0.6122287463204121,0.6122287463204121,-0.027677283445889996,-0.008829538461204146,-0.025264587931904794,-0.17578488666596676,-0.09743055035206157,-0.00183327089998842,0.05688429793918995,0.011000912097577843,-0.13625997755131708,-0.09323958791988239,5.485344938901122,5.485344938901122,9.661511871548228,9.661511871548228,5.968325100555887,5.968325100555887,27.71450200222594,27.71450200222594,12.862093008757668,12.862093008757668,5.015857791316407,5.0016138321460915,5.013213495580274,5.640524594168184,5.196587240725393,5.000069571952338,5.0669928812677085,5.00250518951664,5.384658872786858,5.180032238919779,190.2253337842087,190.2253337842087,0.0,211.36148198245408,0.0,190.2253337842087,211.36148198245408,0,0
+2017/04/30 17:00:00,199.3860236127404,0,986.7953819200832,0,0,0,0.8652884561519282,0.0,11.12856137879136,0.0,129.38645076019097,0,39.380909295966944,2.243475493743689e-05,18.624791286884246,0,0,0.01349572456965563,525.4073035324399,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3564.896001114735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05253771705934325,0.0016622567459478807,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.17085891110908946,0.17085891110908946,0.4999590249870738,0.4999590249870738,0.27583515548703863,0.27583515548703863,1.0340955141097268,1.0340955141097268,0.6799502462464425,0.6799502462464425,0.044261523440055094,-0.03185105583925506,0.0008156778254010276,-0.14022902729075365,-0.05196866196844686,0.01619448773278473,0.05468337643691791,0.043196634300643806,-0.09097866818132902,-0.05202377302555654,5.605084289460237,5.605084289460237,10.22416136835001,10.22416136835001,6.580149010659198,6.580149010659198,27.57709384773517,27.57709384773517,14.717643044562692,14.717643044562692,5.040557551879999,5.021001401861014,5.000013772670599,5.407413954159111,5.055913479388778,5.005429006751228,5.0619084203668905,5.038629316427276,5.171403898870011,5.056032145462439,199.3860236127404,199.3860236127404,0.0,221.5400262363782,0.0,199.3860236127404,221.5400262363782,0,0
+2017/04/30 18:00:00,190.07011137724595,0,987.3042529859828,0,0,0,0.7731351335666166,0.0,11.198411588569618,0.0,115.6330778413024,0,39.380909295966944,4.067824507882496e-05,23.084536839595266,0,0,0.021964541203695585,561.3980582942494,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3159.956699138218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05256480973181594,0.0016631139392197661,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.09579802475354741,0.09579802475354741,0.46784032169969,0.46784032169969,0.273016479989764,0.273016479989764,1.0156996817645736,1.0156996817645736,0.6436217178694315,0.6436217178694315,0.03794683639746248,-0.03264131027673284,0.03839592245682805,-0.09506336578129057,-0.03088357927169516,-0.030764315458767892,0.05266349418687324,-0.11113921473621731,-0.09847970202478147,-0.03592409866892678,5.190051822027385,5.190051822027385,9.56984065685856,9.56984065685856,6.547921827394859,6.547921827394859,26.785351791007145,26.785351791007145,13.697528832068727,13.697528832068727,5.0298098683348655,5.022056509179137,5.0305196667854375,5.187146881856762,5.019744888711045,5.019592678137968,5.057418812128503,5.255831920336263,5.2008456509834105,5.026716389001692,190.07011137724595,190.07011137724595,0.0,211.18901264138438,0.0,190.07011137724595,211.18901264138438,0,0
+2017/04/30 19:00:00,180.98308561366386,0,932.6860090294417,0,0,0,0.6444950603202301,0.0,13.729556885809787,0.0,104.13412371906301,0,39.380909295966944,3.047063035084574e-05,23.093970181873566,0,0,0.016273823309334863,542.275857568147,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2607.14533645204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04965689396747227,0.0015711095114204268,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.015583355255938203,0.015583355255938203,0.1730522909967703,0.1730522909967703,0.18092254833714722,0.18092254833714722,0.9966354761611061,0.9966354761611061,0.5928939931712733,0.5928939931712733,-0.03564304849740028,-0.015300298086695965,-0.026320394193065887,-0.09903245539306114,-0.01647893377728894,-0.04932149984481871,0.05014253543048718,-0.18902506575502248,-0.0492265333867504,-0.027393720745743703,5.005026984151783,5.005026984151783,5.620739695628785,5.620739695628785,5.678566710835128,5.678566710835128,25.9781986881776,25.9781986881776,12.368833953310954,12.368833953310954,5.026299972139157,5.004846019826573,5.014340989761152,5.2031076026588465,5.005621398199196,5.050361746396121,5.05205259685458,5.740801879923126,5.050167973255739,5.015534508587791,180.98308561366386,180.98308561366386,0.0,201.0923173485154,0.0,180.98308561366386,201.0923173485154,0,0
+2017/04/30 20:00:00,198.06328260387315,0,894.2520190034456,0,0,0,0.4287652937318828,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,0.00013010443618477227,18.555788945795715,0,0,0.07831693157770288,539.2701769464269,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1705.3410032673398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0476106398701756,0.001506367458138727,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.16962568257991872,-0.16962568257991872,-0.09184761711251997,-0.09184761711251997,-0.007294646301533269,-0.007294646301533269,0.9807194450158223,0.9807194450158223,0.4400667951012509,0.4400667951012509,-0.050828278208456694,-0.014361952918289,-0.06622844088790585,-0.1774782262771345,0.007609980811763418,-0.07721742998574671,0.024129379332061315,-0.13531667786475474,-0.12316058855141734,-0.0120677765008772,5.596370170583953,5.596370170583953,5.174694970832547,5.174694970832547,5.001101514837785,5.001101514837785,25.314913016519228,25.314913016519228,9.039882370147396,9.039882370147396,5.053486227161784,5.004269842513523,5.090814513154356,5.652941307364543,5.001198806499588,5.123460335035233,5.012052704080077,5.379347208802642,5.314208302575892,5.003014658992754,198.06328260387315,198.06328260387315,0.0,220.0703140043035,0.0,198.06328260387315,220.0703140043035,0,0
+2017/04/30 21:00:00,186.81981962444485,0,882.2397119507316,0,0,0,0.18572153069334857,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,0.0023587019327952654,23.06977148213294,0,0,1.4250702677306806,561.4014690701039,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,724.9777952230235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,367.227248012762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,201.51141842862882,0.0,0.0,0,0,0,0,0,0,0,0,0.046971095745093186,0.0014861327278201486,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.36278774648010387,-0.36278774648010387,-0.10896592119249202,-0.10896592119249202,-0.1922706589011428,-0.1922706589011428,0.9674604292083714,0.9674604292083714,0.23922099981081968,0.23922099981081968,-0.1276900166502086,-0.12807652794087326,-0.16592040959999774,-0.26764866019052014,-0.07994276169294416,-0.14563535619310075,-0.1404277384469172,-0.15773763113149963,-0.2553877198105823,-0.1106211495009817,7.739400969190939,7.739400969190939,5.24591910670091,5.24591910670091,5.766500459548595,5.766500459548595,24.769803820467985,24.769803820467985,6.187567546949708,6.187567546949708,5.337761223663108,5.33981057105315,5.5705699124566905,6.487475040766043,5.1323315367218925,5.4394638212612705,5.408570421767337,5.51562005144298,6.353955872284942,5.253451116090872,186.81981962444485,186.81981962444485,0.0,207.57757736049427,0.0,186.81981962444485,207.57757736049427,0,0
+2017/04/30 22:00:00,130.86158714768092,0,695.5148533759876,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,0.02742699380146789,18.60230007697262,0,0,16.675459027184395,519.1328080423546,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,414.0746214900572,0.0,0.0,0.0,1338.7816959268685,0.0,414.7086512954069,0.0,0.0,0.0,387.86469983762584,0.0,0.0,0.0,1260.4089404754097,0.0,328.05494465907407,0,0,0,0,0,0,0,0,0.03702972596622624,0.0011715947177231689,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.41612134242814225,-0.41612134242814225,-0.3027491606920428,-0.3027491606920428,-0.44026764020668646,-0.44026764020668646,0.8388483318313601,0.8388483318313601,-0.06878522177145924,-0.06878522177145924,-0.16884420666963815,-0.2243183301226411,-0.20909595645541207,-0.3146149479656785,-0.17764419291685146,-0.21766746071924511,-0.2389718652952084,-0.2367198222643943,-0.3201709995670897,-0.19947892845912307,8.609581166358552,8.609581166358552,6.904752714453565,6.904752714453565,9.04359568066809,9.04359568066809,19.84632806106069,19.84632806106069,5.097963248799317,5.097963248799317,5.590881016507481,6.0439098624245275,5.906782543076687,7.057587698783593,5.654164726545417,5.982802930861027,6.185089356460836,6.162806079153924,7.131200534472285,5.8251502690441725,130.86158714768092,130.86158714768092,0.0,145.40176349742325,0.0,130.86158714768092,145.40176349742325,0,0
+2017/04/30 23:00:00,88.57879833201282,0,554.6642160327848,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.06019369515212771,9.575648375568125,0,0,36.32298032875865,465.10570693521,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1016.2701242852013,0.0,0.0,0.0,1818.7794740510105,0.0,41.94076422120344,0.0,0.0,0.0,1076.987440016051,0.0,0.0,0.0,1807.8554926358454,0.0,32.65187861166717,0,0,0,0,0,0,0,0,0.029530733705068042,0.0009343318298089259,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4968771564077982,-0.4968771564077982,-0.4441141382066082,-0.4441141382066082,-0.5042298304880333,-0.5042298304880333,0.6453612645213893,0.6453612645213893,-0.20020793959427174,-0.20020793959427174,-0.23765627502503492,-0.27264676942645116,-0.2655193073571901,-0.346165335965215,-0.2213896877574531,-0.2825086673174739,-0.29074931201195026,-0.29913005779962976,-0.35914587244906837,-0.24026169271288841,10.159446150633073,10.159446150633073,9.115045931469353,9.115045931469353,10.3145211758264,10.3145211758264,13.745072064093875,13.745072064093875,5.831202808521496,5.831202808521496,6.172046132701553,6.5437196024767275,6.463832729320927,7.492995101499389,6.016773624416118,6.657785754244728,6.756246672831423,6.8593229650967515,7.684408847901906,6.19794770701003,88.57879833201282,88.57879833201282,0.0,98.4208870355698,0.0,88.57879833201282,98.4208870355698,0,0
+2017/05/01 00:00:00,39.34469089992038,0,540.0662839601697,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5789041544888556e-09,9.547369900918296,0,0,0.0,486.83075519135355,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.028753528988736402,0.0009097416143405699,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.28388979508739737,-0.28388979508739737,-0.19172663053711855,-0.19172663053711855,-0.31402324089102024,-0.31402324089102024,0.6902580997581379,0.6902580997581379,0.06073568699157002,0.06073568699157002,-0.1763659114764125,-0.1477948728193528,-0.2066470834654932,-0.30824485568993,0.0031329537213031075,-0.24262351078231742,-0.18516556605677983,-0.26652604699070515,-0.33908485327806687,-0.042897880936174033,6.674087823669154,6.674087823669154,5.7621621396842215,5.7621621396842215,7.049825140378729,7.049825140378729,15.017494969178145,15.017494969178145,5.076373123171734,5.076373123171734,5.644771575912159,5.452605960080348,5.885628512563201,6.974798183706369,5.000203183757009,6.221673872113868,5.710815223661612,6.474986811858415,7.391604704570085,5.038096789810481,39.34469089992038,39.34469089992038,0.0,43.71632322213375,0.0,39.34469089992038,43.71632322213375,0,0
+2017/05/01 01:00:00,23.72205760238278,0,38.39453801712879,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249621787049865,0,0,0.0,2.904185504584654,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.00204415364312221,6.467559637575744e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2757263719946548,-0.2757263719946548,-0.17193037696542185,-0.17193037696542185,-0.27011452876595793,-0.27011452876595793,0.6297249863616862,0.6297249863616862,0.254981836904699,0.254981836904699,-0.23354308462655934,-0.1930629363418542,-0.2633882871565067,-0.37057395407770544,0.07957776495775519,-0.3115722449592922,-0.23281080702449208,-0.3368226588261925,-0.41506734331375594,0.01027621216244597,6.578899026844823,6.578899026844823,5.6127068799152084,5.6127068799152084,6.51509233686599,6.51509233686599,13.322431892320608,13.322431892320608,6.349644060940037,6.349644060940037,6.131735179668269,5.772840549230651,6.440363057658217,7.858867772709829,5.131125575816625,7.0178286134214005,6.124633013916352,7.359659697451221,8.591205892264284,5.002185994274484,23.72205760238278,23.72205760238278,0.0,26.35784178042531,0.0,23.72205760238278,26.35784178042531,0,0
+2017/05/01 02:00:00,28.344401400430296,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250383139574,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.25334042990324973,-0.25334042990324973,-0.14886683775770432,-0.14886683775770432,-0.23752507730520392,-0.23752507730520392,0.6119017344116837,0.6119017344116837,0.3431959789316193,0.3431959789316193,-0.24726421889387012,-0.20138097738352767,-0.27851010828623857,-0.3903280463522291,0.10240913536116793,-0.34612352690998877,-0.26059539276038357,-0.37298371996979635,-0.45469854815337624,0.021061028787992715,6.332277586294111,6.332277586294111,5.459201715882003,5.459201715882003,6.1707493769115445,6.1707493769115445,12.853615551346792,12.853615551346792,7.450215423997619,7.450215423997619,6.268975665466144,5.840988491017015,6.611042709012452,8.173565583385795,5.217200888528296,7.492390154982019,6.409893398297569,7.8963654118314395,9.314939564509984,5.00918224024791,28.344401400430296,28.344401400430296,0.0,31.49377933381144,0.0,28.344401400430296,31.49377933381144,0,0
+2017/05/01 03:00:00,23.722200147634712,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.52510472395692,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.25753776591292904,-0.25753776591292904,-0.15319798227730996,-0.15319798227730996,-0.23789640313584406,-0.23789640313584406,0.5751352089833914,0.5751352089833914,0.3847919962852312,0.3847919962852312,-0.26870334248298344,-0.22010085090097747,-0.30201044543844835,-0.4164336978175606,0.12482356810374161,-0.3855921131332904,-0.2969034223400658,-0.41498958167608196,-0.49908778149476873,0.030685382771714887,6.376912012008248,6.376912012008248,5.486338336742506,5.486338336742506,6.17442142605239,6.17442142605239,11.930074328337582,11.930074328337582,8.083691853282488,8.083691853282488,6.499255949456696,6.004945419402517,6.895434809953841,8.615035872822844,5.322756673783772,8.09660023045467,6.831647666197256,8.589852092567682,10.205824784858706,5.019492264133845,23.722200147634712,23.722200147634712,0.0,26.358000164038568,0.0,23.722200147634712,26.358000164038568,0,0
+2017/05/01 04:00:00,40.3923144337022,0,167.4975466065453,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.20346150289183912,0.15550564878894166,0.5252137323872916,0,0,78.77166532518498,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.71585777229367,0.0,0.0,0.0,197.03139839610662,0.0,0.0,0.0,334.40306078083626,0.0,376.32391975735663,0.0,0.0,0,0,0,0,0,0,0,0,0.008917693447881896,0.0002821496045458774,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.19383206059220168,-0.19383206059220168,-0.09198489276653933,-0.09198489276653933,-0.17229786387423487,-0.17229786387423487,0.6135316711124977,0.6135316711124977,0.5112297251342484,0.5112297251342484,-0.27657580956372885,-0.2283696218379937,-0.3092999064915841,-0.39973670091727753,0.16059268231505286,-0.3821226889765309,-0.3221487728527826,-0.39357727794624897,-0.44458638736759254,0.06537633302606535,5.7790204547294195,5.7790204547294195,5.175217756733119,5.175217756733119,5.615332274012459,5.615332274012459,12.895916117182551,12.895916117182551,10.464327037206232,10.464327037206232,6.588672806707677,6.082041112200912,6.988391564314924,8.32931314517019,5.534475589996788,8.040825352594496,7.157719985535792,8.226924375760575,9.12386198442806,5.088492228931543,40.3923144337022,40.3923144337022,0.0,44.880349370780216,0.0,40.3923144337022,44.880349370780216,0,0
+2017/05/01 05:00:00,74.20920186953188,0,238.81012269367622,0,0,0,0.3849485362877045,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.3954044153547603,0.0652950295342039,0.5775108583993288,0,0,25.86800761841141,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,1068.869587897053,0.0,0.0,0.0,0.0,180.38175773697185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.703675187516778,0.0,0.0,0.0,106.66191271669638,0.0,210.92183819930986,0.0,0.0,0,0,0,0,0,0,0,0,0.012714427820461269,0.00040227563355211665,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.04152244397776699,0.04152244397776699,0.1363956121611393,0.1363956121611393,0.0620279476531814,0.0620279476531814,0.8068281377892014,0.8068281377892014,0.8138983661115153,0.8138983661115153,-0.23338404715890468,-0.18758186575291422,-0.26586761344626036,-0.3770450723220954,0.25431837666910295,-0.3726588411269132,-0.29845618009072006,-0.3812190398273194,-0.42546901910551477,0.18115411021818983,5.035692770342479,5.035692770342479,5.385425667176094,5.385425667176094,5.079658212977989,5.079658212977989,18.72639023307252,18.72639023307252,18.969969456787368,18.969969456787368,6.130190804825645,5.729516000123056,6.467686926951572,7.960123351196131,6.34261085101231,7.891295628372731,6.850925089880192,8.026382546697079,8.774631614982397,5.6803072742448535,74.20920186953188,74.20920186953188,0.0,82.45466874392432,0.0,74.20920186953188,82.45466874392432,0,0
+2017/05/01 06:00:00,85.46863253843276,0,682.2565389341532,0,0,0,0.16152677299318005,0.0,10.078969852645546,0.0,73.80580873715317,0,0.8973093975829078,2.520627763262877e-09,0.525017775537312,0,0,0.0,451.5692476026163,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,512.4885908992918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03632384348482108,0.0011492610880521879,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.22180691796340657,0.22180691796340657,0.31514181579835043,0.31514181579835043,0.2471027417286834,0.2471027417286834,0.9670566374543629,0.9670566374543629,0.9428222695474141,0.9428222695474141,-0.152936557467989,-0.11071944514068395,-0.1847062105656944,-0.1410363176429591,0.296814579235124,-0.31038829569767723,-0.23467900552011386,-0.3290892190706118,-0.2347109596830255,0.27350038104115315,6.020617639564165,6.020617639564165,7.064512115733507,7.064512115733507,6.267314566354557,6.267314566354557,24.753310035864033,24.753310035864033,23.775095404075188,23.775095404075188,5.4846782336749555,5.253901983517935,5.707287661407079,5.412122479566932,6.830547764705685,7.002463848852301,6.142796699871255,7.252094753332571,6.143108650382317,6.553430674917124,85.46863253843276,85.46863253843276,0.0,94.96514726492528,0.0,85.46863253843276,94.96514726492528,0,0
+2017/05/01 07:00:00,147.61170222473763,0,879.5067611718149,0,0,0,0.31847095504969325,0.0,8.051403600932776,0.0,69.33401494192633,0,39.380909295966944,0.033486406127961665,27.061441822279633,0,0,13.673709783044993,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1288.975189404407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1410.37800439578,0.0,248.85724816235137,0.0,128.84933118886835,0.0,2234.1713688970176,0.0,71.55811273637259,0.0,1625.6828270961462,0.0,676.1093348999738,0.0,183.01788718232086,0.0,2217.734932595408,0,0,0,0,0,0,0,0,0.04682559142130881,0.0014815290724404912,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.058345134107884035,-0.058345134107884035,0.0043742065477054,0.0043742065477054,-0.06612178806164878,-0.06612178806164878,1.2188817865667079,1.2188817865667079,0.49642159869908276,0.49642159869908276,-0.24382390703595672,-0.2763726705878249,-0.2870081534683068,-0.1637971397469035,-0.08054592088721749,-0.3234604234542924,-0.33278326446768225,-0.35552217920147705,-0.1722843758371618,-0.10009528375863914,5.070478460357776,5.070478460357776,5.0003960771438045,5.0003960771438045,5.090522200161729,5.090522200161729,36.17528001964358,36.17528001964358,10.149914844227752,10.149914844227752,6.233822517962338,6.5863326859155364,6.711191260720469,5.5560433493073305,5.134336502798746,7.175399011967471,7.303158819221892,7.630251751653958,5.615235813397504,5.207492497074924,147.61170222473763,147.61170222473763,0.0,164.0130024719307,0.0,147.61170222473763,164.0130024719307,0,0
+2017/05/01 08:00:00,163.84920534514245,0,884.1073716456942,0,0,0,0.9007399664940496,0.0,11.435487997441953,0.0,83.2008179303116,0,39.380909295966944,0.005338143161159168,25.49393680931248,0,0,2.4296099714850916,562.264589061312,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3748.2926488859625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,534.5973349167559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,751.5911200705206,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04707053133064099,0.0014892788004345603,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3227966472435047,-0.3227966472435047,-0.37141102156129885,-0.37141102156129885,-0.46832525067381947,-0.46832525067381947,1.162028636929127,1.162028636929127,-0.04367419956643999,-0.04367419956643999,-0.21210560468445616,-0.3439223935648682,-0.3087926798457325,-0.13395583302368494,-0.1720114420655796,-0.2706457585202669,-0.372036361454156,-0.35959843963626104,-0.09565189519800044,-0.21098248541991052,7.166443217524886,7.166443217524886,7.8718650593527855,7.8718650593527855,9.57938877346578,9.57938877346578,33.41311214020453,33.41311214020453,5.03948825292909,5.03948825292909,5.9331245401965305,7.460646291747651,6.981850525299237,5.371749592632099,5.613285539591459,6.521075553917072,7.8815943133267865,7.691211857718713,5.189472221558248,5.92325006777682,163.84920534514245,163.84920534514245,0.0,182.05467260571382,0.0,163.84920534514245,182.05467260571382,0,0
+2017/05/01 09:00:00,180.3561802423589,0,913.4162320461211,0,0,0,1.182070922165939,0.0,11.287802377079139,0.0,106.27511244621549,0,39.380909295966944,0.0001537700094578891,20.85734134994023,0,0,0.07100951372265045,540.6965211506852,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4984.588444090152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048630956767628006,0.0015386495735545747,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.20234782629057851,-0.20234782629057851,-0.44042278152589537,-0.44042278152589537,-0.445120471308426,-0.445120471308426,1.1473608341395853,1.1473608341395853,0.02700634792151453,0.02700634792151453,-0.1251176887942742,-0.3196185977761348,-0.243361736627309,-0.030440042790582485,-0.16121881936151186,-0.14321458697586945,-0.33646845867535374,-0.2799661492902867,0.053312345186211654,-0.1986590974761477,5.849097379630948,5.849097379630948,9.046465186624474,9.046465186624474,9.133843936300082,9.133843936300082,32.71632738823028,32.71632738823028,5.015098255727821,5.015098255727821,5.3242805344961965,7.123823139063546,6.229137942730517,5.0191818028277595,5.538656190619918,5.424962575896345,7.354677627136525,6.627985712633034,5.058842589131373,5.818370258358826,180.3561802423589,180.3561802423589,0.0,200.3957558248432,0.0,180.3561802423589,200.3957558248432,0,0
+2017/05/01 10:00:00,211.00824173392215,0,980.4000589010515,0,0,0,1.079007689929463,0.0,16.986528298665572,0.0,133.89528835348938,0,39.380909295966944,8.258543249571879e-05,18.522433776286817,0,0,0.038164414039238564,518.9873118239385,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4501.939662419362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05219722532475161,0.0016514838248077185,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.11851017452404118,-0.11851017452404118,-0.4458602989511369,-0.4458602989511369,-0.31818934845142993,-0.31818934845142993,1.0880565475869202,1.0880565475869202,0.20137369747843398,0.20137369747843398,-0.09119871375644989,-0.33837312613202386,-0.22660832085155386,-0.07424363860066584,-0.19846167677763588,-0.08339145748354035,-0.3490374666291124,-0.24832457431204902,0.022826074255436347,-0.2268880825815674,5.290913497004226,5.290913497004226,9.147691469024068,9.147691469024068,7.104795342563037,7.104795342563037,29.97035971896908,29.97035971896908,5.840927583319612,5.840927583319612,5.172234340865856,7.381530796524174,6.065378970878271,5.114131764756124,5.816741786181311,5.143998873289831,7.53473064954261,6.279910656971168,5.010785827001428,6.068016863402633,211.00824173392215,211.00824173392215,0.0,234.45360192658015,0.0,211.00824173392215,234.45360192658015,0,0
+2017/05/01 11:00:00,225.7697930563219,0,1055.2873184606708,0,0,0,0.970171300309434,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,4.9354453506914526e-05,20.85827433025695,0,0,0.022816718782417297,540.6543903099987,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4009.7665834298223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05618427849319815,0.001777631407852051,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.021000779728474403,-0.021000779728474403,-0.33930415137927983,-0.33930415137927983,-0.16043924580022198,-0.16043924580022198,1.0379117367776425,1.0379117367776425,0.3813690421646446,0.3813690421646446,-0.035326340334410476,-0.2572531196889065,-0.21212926579094907,-0.04242607749421981,-0.19375189669556267,-0.00614055557278791,-0.256855140058966,-0.2155402506724641,-0.0036315217828622377,-0.21858856783664293,5.009129779279533,5.009129779279533,7.394713023523522,7.394713023523522,5.533453615625007,5.533453615625007,27.742905680548304,27.742905680548304,8.028777584695845,8.028777584695845,5.025834643008977,6.373861662839147,5.933333136854884,5.037263331566052,5.778375184425158,5.00078054312624,6.369602515545381,5.9636497272241655,5.000272997330228,5.991155308011528,225.7697930563219,225.7697930563219,0.0,250.85532561813545,0.0,225.7697930563219,250.85532561813545,0,0
+2017/05/01 12:00:00,205.26961393125072,0,1018.2741020770825,0,0,0,1.037911739860071,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,6.938182282868117e-05,18.61515872701903,0,0,0.032088227654453017,539.1222549300824,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3816.5245544805894,0.0,52.17470655602391,0.0,0.0,0.0,0.0,273.7948989777965,0.0,0.0,76.91403915441755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05421366743699978,0.0017152826476631519,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.12346223836291381,0.12346223836291381,-0.2668401420889156,-0.2668401420889156,-0.05038257285621852,-0.05038257285621852,1.026849956066698,1.026849956066698,0.4729149015832077,0.4729149015832077,0.016825730187967715,-0.16435350908377114,-0.13625923239474685,0.03944882088769748,-0.06530396219642444,0.0732882526909272,-0.13423048521173855,-0.10626081178465503,0.06451117717464265,-0.08113291495572812,5.3157503667396355,5.3157503667396355,6.478475536259012,6.478475536259012,5.052552208679899,5.052552208679899,27.26375413643082,27.26375413643082,9.670259613631899,9.670259613631899,5.005860493645784,5.559831632757721,5.384654662245353,5.032216564460185,5.088296380336715,5.111212611528458,5.373276774897775,5.2338546110925535,5.086165174454791,5.136302220948679,205.26961393125072,205.26961393125072,0.0,228.0773488125008,0.0,205.26961393125072,228.0773488125008,0,0
+2017/05/01 13:00:00,202.39492027509124,0,960.4623830662324,0,0,0,0.8656335242306474,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,3.506094506063692e-05,16.30702742328717,0,0,0.01622029532464389,516.8167563641063,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3534.788197215361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.238877256476457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05113572869533644,0.00161789881137721,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.25005732304148287,0.25005732304148287,-0.14727333682571211,-0.14727333682571211,0.0042958958601359695,0.0042958958601359695,1.008738013979859,1.008738013979859,0.5189051934159727,0.5189051934159727,0.008139360486487286,-0.05662391299779522,-0.13558138874280526,0.03854760252554814,-0.02226284040224672,0.09939948589464408,-0.0787347052966159,-0.23189887637402185,0.08254875067395367,-0.02908453441804022,6.2978814599628095,6.2978814599628095,5.449414272653627,5.449414272653627,5.000382022273797,5.000382022273797,26.489016161889424,26.489016161889424,10.631026676223215,10.631026676223215,5.001371395421273,5.066380884241269,5.380834043481002,5.030761290252926,5.010260101316831,5.204616554290595,5.128361197919787,6.115819897782529,5.141102357136575,5.017511428076332,202.39492027509124,202.39492027509124,0.0,224.88324475010137,0.0,202.39492027509124,224.88324475010137,0,0
+2017/05/01 14:00:00,186.30467486269708,0,901.3629652006472,0,0,0,0.7864715136994849,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,9.951809413152998e-06,14.049342049448493,0,0,0.0032453129580883163,493.22066599343157,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3200.1366043832477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047989231912839866,0.0015183458464682012,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1720741115788667,0.1720741115788667,-0.10423879223180893,-0.10423879223180893,0.013394264951562875,0.013394264951562875,1.0011856523357026,1.0011856523357026,0.483617116660787,0.483617116660787,-0.15692149038165829,-0.049498293008376805,-0.15585909309054355,-0.10904866736633559,-0.1376450140644061,-0.08564793413494048,-0.050129827544757505,-0.3159784914314208,0.013339003400303076,-0.14610110259623293,5.613733075602923,5.613733075602923,5.2250350800880625,5.2250350800880625,5.0037138307400255,5.0037138307400255,26.169599678184937,26.169599678184937,9.885681924854623,9.885681924854623,5.510292462445861,5.050723477041686,5.503398941854371,5.246292935765936,5.3925250119310135,5.1518997744430095,5.052026213303066,7.075532374420746,5.003683248947567,5.442281785797505,186.30467486269708,186.30467486269708,0.0,207.00519429188563,0.0,186.30467486269708,207.00519429188563,0,0
+2017/05/01 15:00:00,179.5586548271885,0,901.350804186989,0,0,0,0.7185203300704841,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,1.3127524280332847e-05,14.071913018542164,0,0,0.00540328880232285,493.2063470039291,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2906.6130922772363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04798858445146496,0.0015183253612416172,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.10342839607985152,0.10342839607985152,-0.0808085320965276,-0.0808085320965276,0.004505531089106246,0.004505531089106246,0.9771473759536721,0.9771473759536721,0.4743885522830265,0.4743885522830265,-0.13304328282128666,-0.15565457011295167,-0.20610650562280772,-0.18288963642580597,-0.23597362942216837,-0.07808317563405526,-0.08880201130434158,-0.25710931238141727,-0.07773357817978126,-0.25249263569465696,5.22154799335469,5.22154799335469,5.135214165340869,5.135214165340869,5.000420216608319,5.000420216608319,25.167387251921795,25.167387251921795,9.69962911783432,9.69962911783432,5.366697959683279,5.502077262352259,5.880992670652333,5.693423840055772,6.155469687896002,5.126245034493962,5.1632975198830025,6.372321879274736,5.125116801434643,6.32335209593009,179.5586548271885,179.5586548271885,0.0,199.50961647465388,0.0,179.5586548271885,199.50961647465388,0,0
+2017/05/01 16:00:00,202.6074852469426,0,961.8775025509985,0,0,0,0.7711912289165447,0.0,16.735683873587277,0.0,131.64086955684016,0,39.380909295966944,1.3830422781606112e-05,14.07881746120876,0,0,0.005423292004766791,500.49749659592,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3132.8830126577495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051211070704893814,0.0016202825800418926,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.10903649948577279,0.10903649948577279,0.31461299000904425,0.31461299000904425,0.06371374284504691,0.06371374284504691,0.9744163248476925,0.9744163248476925,0.5649526023081277,0.5649526023081277,-0.09070096361365568,-0.12462536427425444,-0.22103745454574916,-0.19980657902393947,-0.2194556707602293,-0.027779811237843666,0.012659872804323255,-0.19142915191407758,-0.10683793339783829,-0.23320534131483078,5.246237946116949,5.246237946116949,7.057561988054459,7.057561988054459,5.08404774954667,5.08404774954667,25.05492790626458,25.05492790626458,11.684668751892232,11.684668751892232,5.170358722142424,5.321731793579346,6.013534117430893,5.827867804058798,5.999050470842121,5.015975500280462,5.003317742277943,5.7597951458389645,5.236403010984006,6.128456701417306,202.6074852469426,202.6074852469426,0.0,225.1194280521584,0.0,202.6074852469426,225.1194280521584,0,0
+2017/05/01 17:00:00,209.49020330932012,0,993.5901591523489,0,0,0,0.7924668831572276,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,5.779375881273814e-06,18.62323564225353,0,0,0.0015129685415317382,532.2140635207335,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3225.054209796701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05289947603212587,0.0016737025476799175,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.11768621107188015,0.11768621107188015,0.41832795675117806,0.41832795675117806,0.14925528664260124,0.14925528664260124,0.971834280864377,0.971834280864377,0.640499184789515,0.640499184789515,-0.22066827544170128,-0.04786815667029571,-0.27626789498029686,-0.14300648440021796,-0.11616841111346497,-0.17401097636640797,0.051338713210831055,-0.18157187596095023,-0.08027657506746042,-0.12888680190278207,5.286879835137441,5.286879835137441,8.648205170695562,8.648205170695562,5.461603636811347,5.461603636811347,24.948870004754397,24.948870004754397,13.612516631884972,13.612516631884972,6.010144338935419,5.047437183027057,6.585126371756743,5.423727355570662,5.279523384402111,5.627645416012854,5.054566002701662,5.683453124668887,5.133439303896054,5.344126939519157,209.49020330932012,209.49020330932012,0.0,232.76689256591123,0.0,209.49020330932012,232.76689256591123,0,0
+2017/05/01 18:00:00,193.6385553115719,0,988.1354811156945,0,0,0,0.740895534568933,0.0,17.14544770084137,0.0,110.93442390708215,0,39.380909295966944,5.450996379635659e-06,25.436873422116083,0,0,0.0,562.2512509651648,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3002.400461718442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052609064933138,0.001664514142941176,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.05820008655964718,0.05820008655964718,0.43189006893030585,0.43189006893030585,0.20500364695102244,0.20500364695102244,0.9620920328747009,0.9620920328747009,0.623550139853904,0.623550139853904,-0.24230725646651863,0.01325626923312355,-0.2030282128355048,-0.018964542407871293,-0.03154568985974298,-0.22081569476805138,0.11135197451140667,-0.1645199813077414,-0.09429187340012003,-0.04296963028968276,5.070128420253184,5.070128420253184,8.890178947172032,8.890178947172032,5.8715727903854855,5.8715727903854855,24.551039086775077,24.551039086775077,13.158450394675356,13.158450394675356,6.218483284573168,5.003637700132742,5.854827171260013,5.007445135185478,5.020600620396465,6.0114972485772284,5.2568129016786,5.5609676399175925,5.184120408928251,5.038224345406704,193.6385553115719,193.6385553115719,0.0,215.153950346191,0.0,193.6385553115719,215.153950346191,0,0
+2017/05/01 19:00:00,187.93711249948745,0,990.0608870055504,0,0,0,0.6607984519102992,0.0,19.10774862870365,0.0,101.68988858149199,0,39.380909295966944,2.5066103380715105e-05,27.097742475311204,0,0,0.011601822875973885,599.6554075446891,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2660.493806502241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05271157496887492,0.0016677574890165028,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.012251293402115731,-0.012251293402115731,0.0991633576998136,0.0991633576998136,0.14706273249878832,0.14706273249878832,0.9477744556331849,0.9477744556331849,0.5719725530368734,0.5719725530368734,-0.12288155629074798,-0.0990819111859911,-0.23724024545204098,-0.04514146548145196,-0.029129400897221696,-0.11124647085795014,-0.027254740866923113,-0.21043233721889648,-0.0898269138707679,-0.045114592868359865,5.003107045730786,5.003107045730786,5.203645132349223,5.203645132349223,5.448128629705323,5.448128629705323,23.97311061801895,23.97311061801895,11.853371283754655,11.853371283754655,5.312785229107831,5.203310601478208,6.167936591521752,5.042186340728804,5.017565498879591,5.256326216087999,5.015377276992311,5.918432431236653,5.167090008400152,5.042136124230396,187.93711249948745,187.93711249948745,0.0,208.81901388831938,0.0,187.93711249948745,208.81901388831938,0,0
+2017/05/01 20:00:00,208.03978022334917,0,897.0977854521805,0,0,0,0.47115643601823987,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,4.67204702288405e-05,23.096823103157654,0,0,0.021630927337813997,542.1726293994013,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1867.9667221329523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04776215058378443,0.0015111611515056308,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.18117056611161247,-0.18117056611161247,-0.1534493081147092,-0.1534493081147092,-0.05459958433496358,-0.05459958433496358,0.9243202021928136,0.9243202021928136,0.43589591248865284,0.43589591248865284,-0.11310682707617782,-0.0789847862253992,-0.21422455282481642,-0.1277970913373404,-0.1293656948986858,-0.09494725832604393,-0.07420094304163363,-0.20310228795700236,-0.10159502426234038,-0.1558076053567765,5.6804310521933274,5.6804310521933274,5.487936993127079,5.487936993127079,5.061718814149785,5.061718814149785,23.043901925171056,23.043901925171056,8.963161021809753,8.963161021809753,5.264975794563071,5.129178134051514,5.951898173770559,5.338328329493237,5.346690861311927,5.186689827137002,5.114000501913452,5.85545215475166,5.213759721418754,5.503066050884371,208.03978022334917,208.03978022334917,0.0,231.15531135927685,0.0,208.03978022334917,231.15531135927685,0,0
+2017/05/01 21:00:00,195.02831420303278,0,900.4261116986177,0,0,0,0.2706995599950091,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.00012181414156090435,25.435536780117403,0,0,0.0564309470681148,580.9565081386525,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1055.9888371947309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047939353138458186,0.0015167677168151387,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.36034412316958875,-0.36034412316958875,-0.38083019584337957,-0.38083019584337957,-0.2344576776242087,-0.2344576776242087,0.8962694140739589,0.8962694140739589,0.2604028895902178,0.2604028895902178,-0.14678037218583037,-0.1459915077102873,-0.23126690911962566,-0.21700856472953858,-0.1594564522528266,-0.18156228132641933,-0.11872787926378724,-0.22602995237497348,-0.23127272478397418,-0.1954223520506402,7.702440028452827,7.702440028452827,8.020178474918481,8.020178474918481,6.140637176478435,6.140637176478435,21.96155989373395,21.96155989373395,6.4078053396158055,6.4078053396158055,5.446407846984499,5.441617877472169,6.109732882873004,5.976850028266057,5.526930922007338,5.683380793608578,5.291983968764171,6.059935900583625,6.109788822103411,5.791876848506504,195.02831420303278,195.02831420303278,0.0,216.69812689225864,0.0,195.02831420303278,216.69812689225864,0,0
+2017/05/01 22:00:00,139.3495983056668,0,700.4788052533416,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.0001738340505839968,20.850886704330822,0,0,0.08060744245325335,540.6916115044398,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.037294010441008815,0.0011799564942838142,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.41176609498155586,-0.41176609498155586,-0.43011581130466336,-0.43011581130466336,-0.4925639152204847,-0.4925639152204847,0.7851815664057717,0.7851815664057717,-0.04232472470206499,-0.04232472470206499,-0.21728375346704154,-0.2599018958339079,-0.2871295572691067,-0.31251780587884165,-0.2228610828948171,-0.23590196520647885,-0.25460292182094335,-0.29678866468102494,-0.32278172551295187,-0.2736400320446791,8.533960447336568,8.533960447336568,8.858074093663234,8.858074093663234,10.069562665574352,10.069562665574352,17.993779616584035,17.993779616584035,5.037085491204849,5.037085491204849,5.9793340537460296,6.402378431583742,6.712644070809887,7.0301423029090415,6.030362351320491,6.15476633238228,6.345624990230064,6.830226998408904,7.1662421053733425,6.555022331037364,139.3495983056668,139.3495983056668,0.0,154.83288700629643,0.0,139.3495983056668,154.83288700629643,0,0
+2017/05/01 23:00:00,90.73350598447695,0,539.3757141285408,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.023064469968495947,11.767485253215874,0,0,10.712601357009973,475.42758400271475,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,203.01216006354315,0.0,0.0,0.0,691.8000720546123,0.0,444.13571902792563,0.0,0.0,0.0,159.37627303513992,0.0,0.0,0.0,744.948200676366,0.0,241.7937930768426,0,0,0,0,0,0,0,0,0.02871676253939081,0.0009085783495116046,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5762564593931438,-0.5762564593931438,-0.5457901307778631,-0.5457901307778631,-0.5646675942152655,-0.5646675942152655,0.5931010094868305,0.5931010094868305,-0.3449310113739503,-0.3449310113739503,-0.3190401351827492,-0.3387548048138431,-0.37166508562119727,-0.38617519325279964,-0.30940496144660606,-0.34114949032065933,-0.36204667110862915,-0.39829206719183236,-0.4083535790014063,-0.34362060994862514,11.957371909439118,11.957371909439118,11.235037508155003,11.235037508155003,11.677864628519643,11.677864628519643,12.374029327187685,12.374029327187685,7.475166611154265,7.475166611154265,7.11611155872599,7.386930466786453,7.875815864582947,8.106024352650536,6.989747681923333,7.420949675474574,7.728164990294303,8.305153185824082,8.475276308971502,7.4563101414697,90.73350598447695,90.73350598447695,0.0,100.81500664941883,0.0,90.73350598447695,100.81500664941883,0,0
+2017/05/02 00:00:00,39.348688104108916,0,532.8937754149202,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5789266781939674e-09,9.5513671051068,0,0,0.0,479.65824664610403,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02837165932106243,0.0008976595242404815,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4021634850011412,-0.4021634850011412,-0.3006383105671216,-0.3006383105671216,-0.3901057309095042,-0.3901057309095042,0.6209659250744698,0.6209659250744698,-0.0006311931243523579,-0.0006311931243523579,-0.2374248891801937,-0.18224397464886555,-0.31745200813703567,-0.2758126910292959,-0.0725993626456506,-0.28869014527004455,-0.22308099689802163,-0.36625838576113706,-0.32205196562974514,-0.13526452537066372,8.370099498342299,8.370099498342299,6.87818840269442,6.87818840269442,8.169931218187699,8.169931218187699,13.090314117718165,13.090314117718165,5.000008247177888,5.000008247177888,6.169759605967116,5.688529439043876,7.095012870875706,6.579890840467641,5.109131210240207,6.731374658144034,6.032401110719292,7.792333193007536,7.156418063500169,5.379054621096216,39.348688104108916,39.348688104108916,0.0,43.72076456012102,0.0,39.348688104108916,43.72076456012102,0,0
+2017/05/02 01:00:00,23.774654428629326,0,39.13991942592596,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5775590049515342,0,0,0.0,3.649566913381824,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.00208383830143555,6.593119130230278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3244512595611333,-0.3244512595611333,-0.2485193300266357,-0.2485193300266357,-0.3239666654402485,-0.3239666654402485,0.5968114711634245,0.5968114711634245,0.21797466410640884,0.21797466410640884,-0.23630523646794724,-0.1611544025241145,-0.32815745152018805,-0.271569411368003,0.021356553389454833,-0.31283159801233085,-0.21909012366381533,-0.4047014868321579,-0.34289375908879155,-0.06117421616088083,7.188802313572921,7.188802313572921,6.281924225895452,6.281924225895452,7.182241880385959,7.182241880385959,12.467464152902949,12.467464152902949,5.985584626432413,5.985584626432413,6.158727084472915,5.538225337303672,7.239306046470958,6.531506924799444,5.009441740588954,7.0342370672380525,5.995718243115007,8.413024673758898,7.4458823383490085,5.077480161911211,23.774654428629326,23.774654428629326,0.0,26.416282698477026,0.0,23.774654428629326,26.416282698477026,0,0
+2017/05/02 02:00:00,28.344190160447013,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248270739741167,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3227683501246747,-0.3227683501246747,-0.2587450413205315,-0.2587450413205315,-0.3232253980583518,-0.3232253980583518,0.5402300315140504,0.5402300315140504,0.30362776807974184,0.30362776807974184,-0.293051266296783,-0.21430992499862983,-0.38784147941168345,-0.32739679515936254,0.04546522683998415,-0.36946919005857476,-0.26822370005408486,-0.46532823715366195,-0.39686024008041276,-0.0614669505115637,7.166061842541424,7.166061842541424,6.389887405587686,6.389887405587686,7.17222586881924,7.17222586881924,11.107553695162736,11.107553695162736,6.915865218714586,6.915865218714586,6.784263224246956,5.952658501640798,8.133036011097118,7.228893181436916,5.042793700567557,7.841759649240913,6.493892485774836,9.52054061036273,8.281295488778738,5.078223586701029,28.344190160447013,28.344190160447013,0.0,31.493544622718904,0.0,28.344190160447013,31.493544622718904,0,0
+2017/05/02 03:00:00,23.722014260746533,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249188370687378,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.33265237057824687,-0.33265237057824687,-0.2747595554329216,-0.2747595554329216,-0.3346962700768345,-0.3346962700768345,0.477284328735281,0.477284328735281,0.36831883689296174,0.36831883689296174,-0.3370244214069268,-0.252867426657748,-0.4339768665553693,-0.3693312256848049,0.07991152888188459,-0.42236731310011577,-0.3147799625331646,-0.5212153363325619,-0.4477948830545554,-0.052919418759085075,7.301339531695149,7.301339531695149,6.567811677516616,6.567811677516616,7.3298305688011425,7.3298305688011425,9.75761403449657,9.75761403449657,7.824000837693333,7.824000837693333,7.362500009425588,6.327294129450607,8.928112122178092,7.839626819090981,5.132228126356495,8.719449868428981,7.059755155985357,10.681698531279409,9.184012783872362,5.057978305500782,23.722014260746533,23.722014260746533,0.0,26.357793623051702,0.0,23.722014260746533,26.357793623051702,0,0
+2017/05/02 04:00:00,40.11367831160534,0,105.17913670456731,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.04403652462118413,0.036499146130981534,0.5250090912190594,0,0,16.45325542320699,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,204.69118074177425,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.005599815145038916,0.00017717424779588255,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.25654277692888067,-0.25654277692888067,-0.20360630966430449,-0.20360630966430449,-0.2586684277261495,-0.2586684277261495,0.5093785048552559,0.5093785048552559,0.5051460287822825,0.5051460287822825,-0.34762140685039755,-0.26190108712184845,-0.4448523160545125,-0.3788621284056623,0.11241427517865966,-0.438168683521997,-0.3289226857197686,-0.5079537818194263,-0.462875687497742,-0.028960795893634952,6.366264296600164,6.366264296600164,5.859710760239693,5.859710760239693,6.389062165859613,6.389062165859613,10.42450271975072,10.42450271975072,10.33400839306195,10.33400839306195,7.514109746219049,6.424097273199607,9.128830620328785,7.988876623002838,5.261739031830203,9.004874864643412,7.24980634475952,10.393954322174366,9.472671220148285,5.017362736659138,40.11367831160534,40.11367831160534,0.0,44.57075367956149,0.0,40.11367831160534,44.57075367956149,0,0
+2017/05/02 05:00:00,74.28190932471335,0,212.9421150752648,0,0,0,0.5783280523313268,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.3925421687891608,0.0,0.5249960736369998,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,1866.1507310731563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.00839430176792847,-0.00839430176792847,0.036919818712321195,0.036919818712321195,-0.010432982283206755,-0.010432982283206755,0.7167399936388285,0.7167399936388285,0.7510786609053614,0.7510786609053614,-0.2791703513320844,-0.19457815884445231,-0.3751946731827215,-0.3109435758990849,0.23169113058624988,-0.3741151119702597,-0.2667174085727469,-0.46266374541072747,-0.3996235206190911,0.13118830155496897,5.001458650904709,5.001458650904709,5.0282180195452355,5.0282180195452355,5.002253200811552,5.002253200811552,15.808883188383362,15.808883188383362,16.880023693221318,16.880023693221318,6.6187144488464185,5.785038972910911,7.93098723497549,7.00966263840813,6.113817072441293,7.914056089814906,6.477111813123855,9.468546651226589,8.32741710203726,5.356536043930319,74.28190932471335,74.28190932471335,0.0,82.53545480523705,0.0,74.28190932471335,82.53545480523705,0,0
+2017/05/02 06:00:00,86.12933344511723,0,681.9267980647984,0,0,0,0.0,0.0,11.007536273778666,0.0,73.80580873715317,0,0.7908018671378424,2.5206500853811684e-09,0.5251865645268805,0,0,0.0,451.2395067332615,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03630628783669537,0.0011487056395827868,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.16270796941234053,0.16270796941234053,0.20162397263213502,0.20162397263213502,0.15831099461178214,0.15831099461178214,0.8560272284538378,0.8560272284538378,0.826630233740777,0.826630233740777,-0.2195878375835461,-0.1390298636406023,-0.31462006467475206,-0.2571733974671848,0.33556716940168035,-0.29921452243656516,-0.1950642332421023,-0.3903133074630093,-0.3311490477733426,0.23649162880492502,5.548664616219611,5.548664616219611,5.843022795055219,5.843022795055219,5.519379441811694,5.519379441811694,20.46485946038598,20.46485946038598,19.413908285940508,19.413908285940508,6.0002566457528275,5.400469888536492,7.057654889149092,6.3730079480769035,7.342024393059262,6.860376918628447,5.7889724857411125,8.173324569812337,7.280497056594754,6.160560054302124,86.12933344511723,86.12933344511723,0.0,95.69925938346358,0.0,86.12933344511723,95.69925938346358,0,0
+2017/05/02 07:00:00,147.92006535703965,0,870.9131898803593,0,0,0,0.0,0.0,8.668398971615169,0.0,69.33401494192633,0,39.380909295966944,0.011380627289690824,27.09338631778725,0,0,5.080138491589297,599.6554075446891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,758.2486333398654,0.0,0.0,0.0,880.3978125951564,0.0,0.0,0.0,0.0,0.0,576.931119728514,0.0,0.0,0.0,762.0169089445815,0.0,0.0,0,0,0,0,0,0,0,0,0.046368063320436165,0.001467053202252275,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.054476104184511154,0.054476104184511154,0.0976114159603414,0.0976114159603414,0.040047150168889364,0.040047150168889364,0.7933667825689195,0.7933667825689195,0.628542044431598,0.628542044431598,-0.2672930933407117,-0.23027348302228576,-0.349745813615183,-0.30893490832471693,0.17686268012489081,-0.3226999665625408,-0.27546103660225074,-0.39810495543633145,-0.3617875014296325,0.08145139965798795,5.061439931362827,5.061439931362827,5.197318098469012,5.197318098469012,5.033201318522316,5.033201318522316,18.2684671481817,18.2684671481817,13.29088914410238,13.29088914410238,6.483513883159802,6.10019822008293,7.545077714841071,6.983683561532629,5.648413862139961,7.16514034185289,6.575852265642112,8.302030471374167,7.724241052411486,5.13737473850756,147.92006535703965,147.92006535703965,0.0,164.3556281744885,0.0,147.92006535703965,164.3556281744885,0,0
+2017/05/02 08:00:00,160.79887984394657,0,881.6883437263251,0,0,0,0.017383524440608308,0.0,11.276247110228917,0.0,83.2008179303116,0,39.380909295966944,0.00017934977141043288,25.550552552245364,0,0,0.08251307293552158,562.1926580404925,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,67.17973221216982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04694174049242367,0.0014852039480879842,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.20993920218045983,-0.20993920218045983,-0.2069081362507057,-0.2069081362507057,-0.19255773174372795,-0.19255773174372795,0.885287849469776,0.885287849469776,0.29447713687904403,0.29447713687904403,-0.22253998142995748,-0.2614684033393173,-0.27498892181947626,-0.2729481354054212,-0.07250009198736866,-0.2253491552093161,-0.2795106907486441,-0.31740593956937263,-0.30833012864844667,-0.1315573794839097,5.914124826919078,5.914124826919078,5.88787160578903,5.88787160578903,5.768794689270521,5.768794689270521,21.546533623266527,21.546533623266527,6.801729428500778,6.801729428500778,6.027389152944593,6.419382413504053,6.570438461610237,6.5471445713357355,5.108832897400831,6.053546837798862,6.622676227208331,7.09440243259148,6.975895099218178,5.358546513769056,160.79887984394657,160.79887984394657,0.0,178.66542204882953,0.0,160.79887984394657,178.66542204882953,0,0
+2017/05/02 09:00:00,178.45565477647116,0,913.2309201997596,0,0,0,0.5124874637498739,0.0,11.435487997441953,0.0,106.27511244621549,0,39.380909295966944,4.032793298235155e-05,20.85161724516395,0,0,0.018566154765606645,540.5636526632807,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2054.9410255962343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048621090627666,0.0015383374157634437,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1964298476030472,-0.1964298476030472,-0.2980561522688029,-0.2980561522688029,-0.18493543482039157,-0.18493543482039157,1.0001535548058909,1.0001535548058909,0.3134624309968773,0.3134624309968773,-0.15914968308834798,-0.1888916107287295,-0.23163180794110047,-0.20491642378141148,-0.08667551258714719,-0.1302606897085329,-0.20579050924634984,-0.2620368157659832,-0.15787431546792374,-0.14151307597327586,5.800076450173009,5.800076450173009,6.845949015920553,6.845949015920553,5.709046858445532,5.709046858445532,26.126116092313552,26.126116092313552,7.04248160520072,7.04248160520072,5.524903171832932,5.739754605271557,6.1132454899583735,5.87082996020483,5.15556776306552,5.351508096387292,5.878288438975289,6.425577901957411,5.516515010360109,5.414915913520105,178.45565477647116,178.45565477647116,0.0,198.28406086274572,0.0,178.45565477647116,198.28406086274572,0,0
+2017/05/02 10:00:00,209.4732234922572,0,980.2004513118819,0,0,0,0.9638404614316066,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.402931370167642e-05,18.539640118955887,0,0,0.010546270363706842,518.8153223784444,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3990.8865699085404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052186598068853556,0.0016511475858389127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.12361840686326207,0.12361840686326207,-0.152920481508195,-0.152920481508195,0.0003729067852533785,0.0003729067852533785,1.0818562187612406,1.0818562187612406,0.5175006362542457,0.5175006362542457,-0.07119221399600222,-0.19068563706188887,-0.21682691280612176,-0.10400382135350615,-0.09697834850223025,-0.022563619706832152,-0.18783594670829606,-0.20196725081317482,-0.01688246580880811,-0.14019051355359766,5.316550201778611,5.316550201778611,5.484576240825888,5.484576240825888,5.000002878600583,5.000002878600583,29.690121492371304,29.690121492371304,10.600331285469764,10.600331285469764,5.104940814349476,5.7538952788928555,5.975212062714746,5.2240212073945,5.194765884455464,5.010539216091928,5.731496612045433,5.845900855371738,5.005900083439599,5.40719000038294,209.4732234922572,209.4732234922572,0.0,232.748026102508,0.0,209.4732234922572,232.748026102508,0,0
+2017/05/02 11:00:00,225.80148050558773,0,1055.1896077773335,0,0,0,1.109894239762438,0.0,16.693521233099577,0.0,147.76209134187457,0,39.380909295966944,2.856268737823312e-09,20.855064392027867,0,0,0.0,540.5794963454437,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4642.282535865821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05617907630404232,0.0017774668142133854,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.42070993698428566,0.42070993698428566,0.012412780744134237,0.012412780744134237,0.1954836472412065,0.1954836472412065,1.045350041910198,1.045350041910198,0.7351521196629963,0.7351521196629963,0.029014907772631226,-0.17831276051416,-0.16230742781376759,-0.08363972032681233,0.07249725590617508,0.091973112096452,-0.15903867869787888,-0.1299320912736276,-0.05138247609026547,0.04709046710352748,8.690133026819055,8.690133026819055,5.003189495619424,5.003189495619424,5.792374493138709,5.792374493138709,28.067624116663353,28.067624116663353,16.37692221068437,16.37692221068437,5.017427682634818,5.659104700560533,5.545963529363178,5.144857808849991,5.108824380850919,5.17517286181787,5.524170396944456,5.349735572854314,5.054659081219924,5.045908176573846,225.80148050558773,225.80148050558773,0.0,250.89053389509746,0.0,225.80148050558773,250.89053389509746,0,0
+2017/05/02 12:00:00,207.90057926461915,0,1007.2487730573464,0,0,0,3.690467306263953,0.0,16.798297433460366,0.0,129.49988082968767,0,39.380909295966944,2.802662617522389e-09,18.53102439643752,0,0,0.0,528.1290141380006,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4099.716828770681,892.5775054289322,0.0,0.0,0.0,0.0,4148.049728415848,0.0,0.0,0.0,0.0,3601.7472809523706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05362667075345432,0.0016967104817662145,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4524028331522855,0.4524028331522855,0.09194626710765437,0.09194626710765437,0.29193948764327526,0.29193948764327526,1.0024856016677632,1.0024856016677632,0.8236009612655812,0.8236009612655812,0.1040992121169019,-0.10036076921656199,-0.0617442295272928,-0.06307682244442857,0.19521789965217817,0.1752653451750661,-0.0780325028404104,-0.01527012578887889,-0.03303911713457195,0.18420650830342902,9.27117417841606,9.27117417841606,5.175070579854918,5.175070579854918,6.770704080008542,6.770704080008542,26.224425626815517,26.224425626815517,19.307664950862204,19.307664950862204,5.224432531308068,5.208595125612234,5.078931036384574,5.082375468738604,5.790218071900227,5.636738953340654,5.126081187425697,5.004826925699987,5.022597426786888,5.703460268609916,207.90057926461915,207.90057926461915,0.0,231.0006436273546,0.0,207.90057926461915,231.0006436273546,0,0
+2017/05/02 13:00:00,202.6290598775927,0,950.6522265708478,0,0,0,0.9443032093313841,0.0,16.67307048032785,0.0,129.2730206906943,0,39.380909295966944,2.7481368577852657e-09,16.357756198524015,0,0,0.0,507.0228201640462,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3893.8701002059943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05061342869707384,0.0016013736035053127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4735626818010983,0.4735626818010983,0.1496430726506565,0.1496430726506565,0.33938375317739167,0.33938375317739167,1.0073419308630835,1.0073419308630835,0.8287336378789029,0.8287336378789029,0.11665269097961412,-0.0668833929077072,-0.05284485554660309,-0.07352690656691908,0.21893075448001018,0.2022525268091522,-0.0213077111221135,0.009869593880082845,-0.03327643462254788,0.20987578372258972,9.68315818507844,9.68315818507844,5.464007726284038,5.464007726284038,7.395841800248419,7.395841800248419,26.429808631278036,26.429808631278036,19.487905862286965,19.487905862286965,5.281860186751828,5.092619936969044,5.0578150178665595,5.111938265366163,5.994267229660224,5.8482963729328645,5.009398602722044,5.002016421414041,5.0229232401014485,5.913571596505577,202.6290598775927,202.6290598775927,0.0,225.1433998639919,0.0,202.6290598775927,225.1433998639919,0,0
+2017/05/02 14:00:00,186.60883874772713,0,913.6520380034065,0,0,0,0.8121545847116111,0.0,16.86091082671979,0.0,115.5196477718057,0,39.380909295966944,2.6926822157210933e-09,14.035216265830439,0,0,0.0,505.51298410914904,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3312.0340070632637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04864351125145692,0.0015390467886717244,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.35533807311977444,0.35533807311977444,0.10026148730619416,0.10026148730619416,0.296409827754055,0.296409827754055,0.9741111837957286,0.9741111837957286,0.7923168324180959,0.7923168324180959,-0.02922815577457765,-0.17572502425045242,-0.16487499462214242,-0.18051817257803518,0.11542590507816014,0.034878956644848504,-0.144996599729039,-0.10967076437925877,-0.15605419315063382,0.09396733198184311,7.627515155278402,7.627515155278402,5.208182440130884,5.208182440130884,6.825541054197544,6.825541054197544,25.042380722169355,25.042380722169355,18.2330729480569,18.2330729480569,5.017684806913678,5.640087832322777,5.563394111552668,5.675532538668833,5.275959482919973,5.025184395200938,5.435613757300743,5.249112539097155,5.504661352214669,5.182854652332026,186.60883874772713,186.60883874772713,0.0,207.34315416414125,0.0,186.60883874772713,207.34315416414125,0,0
+2017/05/02 15:00:00,179.85244055899867,0,909.9544305874116,0,0,0,0.7417934211344106,0.0,16.86091082671979,0.0,108.75639138185811,0,39.380909295966944,1.504131724594909e-06,14.11243412918766,0,0,0.0,501.8153766931541,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3006.9337512509614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048446647893786894,0.0015328181692601248,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3032410273419184,0.3032410273419184,0.08129648282958198,0.08129648282958198,0.27913988505973303,0.27913988505973303,0.9592453199771784,0.9592453199771784,0.7790962300137363,0.7790962300137363,-0.12930820520116987,-0.25645605483601236,-0.24870832047584296,-0.20695152460213279,0.020996774107910527,-0.08667860760870598,-0.24068856139290998,-0.20886929647459687,-0.13996270493941965,-0.009285824642049705,6.910969752946983,6.910969752946983,5.136852520737676,5.136852520737676,6.618360039293449,6.618360039293449,24.43549089299981,24.43549089299981,17.791406472728795,17.791406472728795,5.3463825663315845,6.365338227173282,6.283879712140461,5.88824469612662,5.009126296773815,5.1555788770525055,6.202218566691769,5.904814051659244,5.405866576989453,5.001784939390873,179.85244055899867,179.85244055899867,0.0,199.83604506555406,0.0,179.85244055899867,199.83604506555406,0,0
+2017/05/02 16:00:00,202.93151673874524,0,954.3694997282466,0,0,0,0.8135541324732982,0.0,17.028300508570425,0.0,131.64086955684016,0,39.380909295966944,2.4849334142551746e-06,14.067880759960893,0,0,0.0,492.9949170651729,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3316.973210164902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05081133907338276,0.0016076353498568148,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3225899815584805,0.3225899815584805,0.11144148709637097,0.11144148709637097,0.3269941919263491,0.3269941919263491,0.9670219316855253,0.9670219316855253,0.8517320202928707,0.8517320202928707,-0.15367055880999886,-0.2717052308444005,-0.25556349396442907,-0.2756907985218294,0.026921361275773343,-0.12794566531749024,-0.26898525083565017,-0.2280596893582635,-0.11893620528006386,-0.005225986483394859,7.163658657967787,7.163658657967787,5.25722618343174,5.25722618343174,7.223391751101033,7.223391751101033,24.751892696773865,24.751892696773865,20.309057924337182,20.309057924337182,5.489346522472275,6.533043848050468,6.35582532206125,6.578490375781627,5.015003376345135,5.339116020061709,6.502412830363184,6.079099677611026,5.293010168662846,5.000565350697954,202.93151673874524,202.93151673874524,0.0,225.47946304305026,0.0,202.93151673874524,225.47946304305026,0,0
+2017/05/02 17:00:00,209.9365628689244,0,980.1658325684874,0,0,0,0.7655176777552092,0.0,17.346139882338,0.0,133.89528835348938,0,39.380909295966944,9.000087574564401e-06,18.548698659287236,0,0,0.0032699688196326645,518.787979936594,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3109.3306394128485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05218475494131289,0.0016510892705682918,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.26862998286986267,0.26862998286986267,0.056358003088881045,0.056358003088881045,0.2978615494571165,0.2978615494571165,0.9660767546327456,0.9660767546327456,0.8597712567054155,0.8597712567054155,-0.19312005854960262,-0.15838206825260026,-0.26610350196794436,-0.16539386765175795,0.05771406085825652,-0.1778799856610272,-0.15789075164823937,-0.2431735509253555,-0.09482048961390471,0.02455434505463876,6.498434998918896,6.498434998918896,5.065758801045732,5.065758801045732,6.843530734882037,6.843530734882037,24.7133109157745,24.7133109157745,20.60129227263745,20.60129227263745,5.773298675641783,5.519846406887325,6.470300064145917,5.566949996377687,5.068961859920748,5.655904844148267,5.516622680876921,6.227233056507984,5.186191443467237,5.012480997738805,209.9365628689244,209.9365628689244,0.0,233.2628476321382,0.0,209.9365628689244,233.2628476321382,0,0
+2017/05/02 18:00:00,195.78092187555245,0,1006.8093670702148,0,0,0,0.7475966616503017,0.0,19.165343546314112,0.0,110.93442390708215,0,39.380909295966944,1.2579226640422366e-05,25.552635885312295,0,0,0.0057925345748015755,580.9193443851103,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3032.247383194548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05360327645322849,0.0016959703024142419,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.21293872994419977,0.21293872994419977,-0.004294450521607875,-0.004294450521607875,0.2581347994016161,0.2581347994016161,0.9620520359218826,0.9620520359218826,0.8298872658123684,0.8298872658123684,-0.1751874891646043,-0.05631667798339037,-0.22411299666971854,-0.059559332318748104,0.1423907311280059,-0.17250632460744825,-0.04825540319360729,-0.2082801847958799,-0.02424702308021735,0.1104373716671639,5.94048350355537,5.94048350355537,5.000381765256819,5.000381765256819,6.383321064333259,6.383321064333259,24.549413413513008,24.549413413513008,19.528569167737018,19.528569167737018,5.636172625694428,5.065662386036337,6.041995562096886,5.073442854141064,5.420083027988767,5.616824060239665,5.048207888008108,5.899707805899936,5.012170520569072,5.2526092311655646,195.78092187555245,195.78092187555245,0.0,217.53435763950273,0.0,195.78092187555245,217.53435763950273,0,0
+2017/05/02 19:00:00,192.62436804497702,0,971.7595917838648,0,0,0,0.6578004719793706,0.0,23.798027217215836,0.0,101.68988858149199,0,39.380909295966944,3.0116616910173993e-09,27.0977424753112,0,0,0.0,581.3657141458793,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2648.6367083412006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051737200455380994,0.001636928958604618,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1353662241850468,0.1353662241850468,-0.08454898227089239,-0.08454898227089239,0.194145256772144,0.194145256772144,0.9471692830348226,0.9471692830348226,0.7690928417591897,0.7690928417591897,-0.21978138100864247,-0.09800775532242788,-0.2523077884727902,-0.10188224312928804,0.13406217635923373,-0.223446392751544,-0.0936335907212153,-0.23993850242681541,-0.06396217419594741,0.10035483425781294,5.3796252800707975,5.3796252800707975,5.1480254858755075,5.1480254858755075,5.781544067033636,5.781544067033636,23.948860548610952,23.948860548610952,17.462160689248776,17.462160689248776,6.002024273784485,5.198924409260258,6.321410056543016,5.21497062584092,5.372340534272823,6.035793072882825,5.1815575735801644,6.19471924876224,5.084704582106951,5.208570444248451,192.62436804497702,192.62436804497702,0.0,214.02707560553,0.0,192.62436804497702,214.02707560553,0,0
+2017/05/02 20:00:00,208.13307869842984,0,896.9585362360046,0,0,0,0.568818575501365,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,2.038896453481817e-05,23.092485770260854,0,0,0.009390642919069115,542.0456204676443,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2273.686239346844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0477547368523724,0.0015109265862115514,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.039497755184970694,0.039497755184970694,-0.18203556363426615,-0.18203556363426615,0.11341334287425012,0.11341334287425012,0.9282870497349336,0.9282870497349336,0.6845100184181617,0.6845100184181617,-0.2733941670325452,-0.12612817683718028,-0.28981916388282397,-0.12990640776642,0.10404728200315287,-0.11269922136927867,-0.12881905008512604,-0.28605849995283966,-0.10638953899291788,0.06790271338667822,5.032296545714416,5.032296545714416,5.686953307770949,5.686953307770949,5.266414710423007,5.266414710423007,23.199519966126545,23.199519966126545,14.849718600210565,14.849718600210565,6.5522206633918785,5.32954334892527,6.744989539800699,5.349597220243254,5.224208562380113,5.263068365455197,5.343764976401985,6.699848452813711,5.234421834276333,5.095465139839462,208.13307869842984,208.13307869842984,0.0,231.2589763315887,0.0,208.13307869842984,231.2589763315887,0,0
+2017/05/02 21:00:00,194.40274832460042,0,900.3471564030677,0,0,0,0.38600429961842825,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.898237968852594e-05,25.552752794437,0,0,0.013351322735368099,580.9206324674352,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1520.1362599522356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04793514950004038,0.001516634716625777,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.10385417646601686,-0.10385417646601686,-0.3274007280620449,-0.3274007280620449,-0.02161170312430416,-0.02161170312430416,0.9025641396169741,0.9025641396169741,0.5414831151360949,0.5414831151360949,-0.2015327433934927,-0.19285325677665419,-0.25534822203002633,-0.19054007832383651,-0.0691414832648536,-0.09431475015269708,-0.20146744766012956,-0.26275202309214074,-0.1732361699317347,-0.07767450529154318,5.223376701530938,5.223376701530938,7.228946957064494,7.228946957064494,5.009668696602347,5.009668696602347,22.201671932792735,22.201671932792735,11.136167885439278,11.136167885439278,5.842258753895933,5.771160065032603,6.353535971614448,5.752742959162134,5.098980862354878,5.184209796351823,5.841712118537856,6.433392723089838,5.622061262890668,5.124926659902613,194.40274832460042,194.40274832460042,0.0,216.00305369400047,0.0,194.40274832460042,216.00305369400047,0,0
+2017/05/02 22:00:00,137.97820648620188,0,700.3360089181908,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.00011077885589389867,20.852348021042335,0,0,0.051059799973917956,540.5783628117683,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03728640785835519,0.0011797159538680907,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3589825230678335,-0.3589825230678335,-0.386596302855965,-0.386596302855965,-0.2731445563643434,-0.2731445563643434,0.8271585433443347,0.8271585433443347,0.23044494387590683,0.23044494387590683,-0.19380686217907508,-0.2705169095054768,-0.2655728502946618,-0.26260611778054965,-0.12306253042093504,-0.19038076498802337,-0.29324466409195066,-0.2795131000669404,-0.25877939426572966,-0.175506000803514,7.681955514718268,7.681955514718268,8.112839632768669,8.112839632768669,6.54937891971278,6.54937891971278,19.432476720880473,19.432476720880473,6.101840903679502,6.101840903679502,5.778817593980392,6.519623240999493,6.464424878950183,6.431796718336599,5.313707834151742,5.7514827655403735,6.786627216144211,6.622704290698309,6.390257516920386,5.638491091034652,137.97820648620188,137.97820648620188,0.0,153.30911831800208,0.0,137.97820648620188,153.30911831800208,0,0
+2017/05/02 23:00:00,90.03647510382959,0,532.9515150141644,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.004770944790528985,11.775142938237337,0,0,2.2274567329589523,477.4885295123892,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,295.72206901182346,0.0,0.0,0.0,220.25287810474146,0.0,0.0,0.0,0.0,0.0,500.83803536955065,0.0,0.0,0.0,281.0586035140829,0.0,0.0,0,0,0,0,0,0,0,0,0.028374733420094295,0.0008977567865910259,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.43681772143077574,-0.43681772143077574,-0.5470129901557549,-0.5470129901557549,-0.5230222811870975,-0.5230222811870975,0.6469507558311768,0.6469507558311768,-0.09310055015841887,-0.09310055015841887,-0.2616024441256815,-0.35516364928903554,-0.2893830125502275,-0.35114197383938084,-0.1930849108292041,-0.24545594268755083,-0.3835828275881041,-0.32508994059659435,-0.3637296236617668,-0.23624341769305335,8.980052912758211,8.980052912758211,11.26325535947177,11.26325535947177,10.721493957038192,10.721493957038192,13.788628881619204,13.788628881619204,5.1794955086057115,5.1794955086057115,6.420842183919532,7.62492380888628,6.739723593078736,7.565534384609862,5.77301677090442,6.250436679331486,8.06423607493106,7.197463984223987,7.753715209949661,6.158119484791143,90.03647510382959,90.03647510382959,0.0,100.04052789314399,0.0,90.03647510382959,100.04052789314399,0,0
+2017/05/03 00:00:00,39.35082260151927,0,530.3096952648289,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5789493130481884e-09,9.553501602517132,0,0,0.0,477.07416649601277,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.028234080979826166,0.0008933066414237808,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2366299860610865,-0.2366299860610865,-0.2876613124592938,-0.2876613124592938,-0.25512111912972796,-0.25512111912972796,0.692798580303307,0.692798580303307,0.23773110430203373,0.23773110430203373,-0.130246081410432,-0.21797712236748315,-0.22662364187400869,-0.21424011690554687,0.06835016716973266,-0.15657491393278053,-0.291393814033633,-0.29008282185542333,-0.2655555740668201,-0.006739478764770831,6.1619215933553875,6.1619215933553875,6.719014788209094,6.719014788209094,6.351122915337854,6.351122915337854,15.092102174351396,15.092102174351396,6.172786067469772,6.172786067469772,5.351429201027614,5.98560690168344,6.065523348903781,5.952036765322163,5.096727708706709,5.50803848212027,6.764068198418187,6.748176754429522,6.464233802055233,5.000940230511148,39.35082260151927,39.35082260151927,0.0,43.723136223910295,0.0,39.35082260151927,43.723136223910295,0,0
+2017/05/03 01:00:00,23.774695328072546,0,38.95795528472476,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5775999043947525,0,0,0.0,3.4676027721806264,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0020741503957759453,6.562467272026019e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.214705093158967,-0.214705093158967,-0.30633478144440784,-0.30633478144440784,-0.23207535117711728,-0.23207535117711728,0.5655510027623321,0.5655510027623321,0.44649681329440655,0.44649681329440655,-0.26068711633000463,-0.34187507821768154,-0.3700517235138389,-0.33427755850351554,0.18205493241573512,-0.25998158288376666,-0.3785317452184697,-0.3990540263290076,-0.3484372424697621,0.0692428917885506,5.956181860942095,5.956181860942095,6.9503084286546795,6.9503084286546795,6.117522669750343,6.117522669750343,11.698966092863529,11.698966092863529,9.15962409599652,9.15962409599652,6.4108888613927775,7.4313055612349075,7.850774144548154,7.323979475539531,5.6870997098751275,6.403240918131658,7.983638127252874,8.31788501435176,7.525979671940021,5.099271484281331,23.774695328072546,23.774695328072546,0.0,26.416328142302827,0.0,23.774695328072546,26.416328142302827,0,0
+2017/05/03 02:00:00,28.344141274314737,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5247781878418435,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.18664098936842843,-0.18664098936842843,-0.2903462424066326,-0.2903462424066326,-0.20518878277655683,-0.20518878277655683,0.5311943471652083,0.5311943471652083,0.5216080447017492,0.5216080447017492,-0.2686292418614748,-0.34006588035227364,-0.3782106497609583,-0.3348697541244705,0.20838536287348974,-0.2976063264438896,-0.41075603513797654,-0.43618861329118924,-0.37942635693743065,0.08271963302404384,5.722205163251473,5.722205163251473,6.751364030537502,6.751364030537502,5.873150541939808,5.873150541939808,10.903237286758852,10.903237286758852,10.690335364060815,10.690335364060815,6.4984267076211495,7.405525598249113,7.978551359681191,7.332257022931188,5.900618393138743,6.840361567799178,8.516538744561657,8.968520727252553,7.997833699213203,5.141687325876191,28.344141274314737,28.344141274314737,0.0,31.49349030479415,0.0,28.344141274314737,31.49349030479415,0,0
+2017/05/03 03:00:00,23.721966183588037,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248707599102461,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.19324942403182346,-0.19324942403182346,-0.30197437764373514,-0.30197437764373514,-0.210050453830293,-0.210050453830293,0.4662640701497924,0.4662640701497924,0.5776684531428821,0.5776684531428821,-0.30448620237257,-0.3715758646197773,-0.4159205520841178,-0.3669167858627204,0.24876128009640688,-0.34520126347291585,-0.45422636300915814,-0.483556720877235,-0.42196645858150067,0.09612384768650231,5.77433670524465,5.77433670524465,6.894980453851645,6.894980453851645,5.915095736542128,5.915095736542128,9.53887469951377,9.53887469951377,11.991825425205846,11.991825425205846,6.926754110468067,7.874428126129985,8.606076944193532,7.802432655942681,6.284427955193991,7.479064574362241,9.305919326313742,9.884452369607303,8.712348469255062,5.191347339675417,23.721966183588037,23.721966183588037,0.0,26.357740203986708,0.0,23.721966183588037,26.357740203986708,0,0
+2017/05/03 04:00:00,40.53331648481921,0,111.89020267781001,0,0,0,0.10382354953824798,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.3443246212506103,0.05207296038275751,0.5249618040134806,0,0,23.164321396449697,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,328.5249158206084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1158968714783288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.82200371547907,0.0,221.6875731757992,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.005957117268385662,0.00018847903791844857,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.13555350321446671,-0.13555350321446671,-0.24659377878018815,-0.24659377878018815,-0.15246112484330954,-0.15246112484330954,0.4791844425337392,0.4791844425337392,0.703572567292472,0.703572567292472,-0.3242193559430751,-0.389764807891549,-0.4354044934009144,-0.3852046450291728,0.21540790711953992,-0.3736852562446467,-0.4714748273794992,-0.4786700270814217,-0.4479860360062932,0.11604080908430724,5.380677277983352,5.380677277983352,6.262086086168836,6.262086086168836,5.481666431609298,5.481666431609298,9.795858342234581,9.795858342234581,15.411603646334797,15.411603646334797,7.185661561063711,8.164361984661696,8.954170819927185,8.090345748581939,5.962464381083791,7.907328346383167,9.641649727581097,9.785489135314236,9.187610368034967,5.278909286581197,40.53331648481921,40.53331648481921,0.0,45.03701831646579,0.0,40.53331648481921,45.03701831646579,0,0
+2017/05/03 05:00:00,74.05177960879178,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.7407872742449356,0.0,0.5249493045909736,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.10435175496114169,0.10435175496114169,-0.006850844687536619,-0.006850844687536619,0.08706012445975178,0.08706012445975178,0.6873718202653201,0.6873718202653201,0.8261971981969574,0.8261971981969574,-0.25386821687315825,-0.32044140526539144,-0.3659033534205979,-0.3169978509869697,0.3830720307810984,-0.31562728499777903,-0.4213372519705753,-0.4437492616812476,-0.39206776305104535,0.26536173870950647,5.225523317401979,5.225523317401979,5.000971560825363,5.000971560825363,5.156951918655281,5.156951918655281,14.933071019364519,14.933071019364519,19.39869717012982,19.39869717012982,6.337849338287043,7.134816550998323,7.786894876045565,7.088998921033095,8.056036005204376,7.070902854126771,8.701215562259108,9.108240900498515,8.202079038755272,6.462090824206342,74.05177960879178,74.05177960879178,0.0,82.27975512087976,0.0,74.05177960879178,82.27975512087976,0,0
+2017/05/03 06:00:00,85.14839190094887,0,681.6247901644904,0,0,0,0.0,0.0,9.849040240675949,0.0,73.80580873715317,0,0.9685635224047874,2.5206725113080773e-09,0.5249793981942673,0,0,0.0,450.93749883295357,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03629020871238371,0.0011481969072976398,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2635035201193816,0.2635035201193816,0.1547617446205303,0.1547617446205303,0.24702405886562162,0.24702405886562162,0.8064283313144561,0.8064283313144561,0.8881659135498589,0.8881659135498589,-0.2082549589483192,-0.27545501652315224,-0.31752412468052754,-0.19074823866211266,0.4975795038845936,-0.2610019496851403,-0.36696029472730235,-0.38950674861299284,-0.24373103707962826,0.3736918801522144,6.441627268738728,6.441627268738728,5.496328005577226,5.496328005577226,6.266505560823234,6.266505560823234,18.71267935918472,18.71267935918472,21.65482799651012,21.65482799651012,5.899489480040984,6.575783173438268,7.0959686422085895,5.75439113843143,10.174158428285423,6.414308397332007,7.803100706580182,8.160149695181332,6.2328804645106,7.907431958475186,85.14839190094887,85.14839190094887,0.0,94.60932433438762,0.0,85.14839190094887,94.60932433438762,0,0
+2017/05/03 07:00:00,147.32818549754677,0,854.7739723904457,0,0,0,0.0,0.0,8.07546596073247,0.0,69.33401494192633,0,39.380909295966944,0.01655388433713813,27.08926621212957,0,0,7.267060226100318,581.3292683202645,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1269.6053899590147,0.0,140.67893997752557,0.0,847.628460795109,0.0,0.0,0.0,0.0,0.0,1372.1063299963846,0.0,215.05775345893412,0.0,440.51974357123385,0.0,0.0,0,0,0,0,0,0,0,0,0.04550879942684717,0.0014398666916154614,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.09266836938443042,0.09266836938443042,-0.01416301704333659,-0.01416301704333659,0.0551536315997144,0.0551536315997144,0.900053075631154,0.900053075631154,0.6853684050472844,0.6853684050472844,-0.2572626447509169,-0.3281051483634934,-0.3496312432151542,-0.2181309477973377,0.25335259362320456,-0.28720139941616946,-0.38470245595620334,-0.3900735053320072,-0.24471797531775955,0.13972564414405347,5.177832274419387,5.177832274419387,5.004152372484299,5.004152372484299,5.062977919612095,5.062977919612095,22.105694442510668,22.105694442510668,14.874682666036094,14.874682666036094,6.3739636809644935,7.238589266274715,7.5434026994674355,5.987001276782593,6.33240586461973,6.7135040815356035,8.082248989938549,8.169404576623947,6.242910294432477,5.404491697251217,147.32818549754677,147.32818549754677,0.0,163.6979838861631,0.0,147.32818549754677,163.6979838861631,0,0
+2017/05/03 08:00:00,160.84381420444396,0,901.6704839719356,0,0,0,0.0019806148510290943,0.0,11.276247110228917,0.0,83.2008179303116,0,39.380909295966944,0.0029696084041904206,25.550899976991968,0,0,1.371085421012285,580.8862259380261,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7.634989134559655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,245.83680798497625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,479.10490502734393,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04800560444000447,0.0015188638618150964,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2354669672646664,-0.2354669672646664,-0.2913668699613738,-0.2913668699613738,-0.23331385399628685,-0.23331385399628685,0.9297380790464067,0.9297380790464067,0.2790654167263116,0.2790654167263116,-0.20586820864508892,-0.3586339141638965,-0.3313284447767576,-0.24496929455400682,-0.023286896740454904,-0.22903166997852706,-0.39074340626837023,-0.36130852547603753,-0.2552314921117244,-0.06518789259574086,6.150501627470604,6.150501627470604,6.763740860096618,6.763740860096618,6.129509513390488,6.129509513390488,23.256600563624502,23.256600563624502,6.617493925179602,6.617493925179602,5.878952986972507,7.676723580814524,7.2829792256804495,6.245470880939848,5.011225731434493,6.08833781791499,8.180361457794803,7.716996684192182,6.352295400069266,5.087982728222116,160.84381420444396,160.84381420444396,0.0,178.71534911604883,0.0,160.84381420444396,178.71534911604883,0,0
+2017/05/03 09:00:00,179.74323453290856,0,913.1876601930097,0,0,0,0.13043975147295087,0.0,11.457689345133073,0.0,106.27511244621549,0,39.380909295966944,0.00017901220875304216,20.782917080684232,0,0,0.08337054332663242,540.4555882679697,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,508.3134407743844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048618787432863665,0.001538264544285357,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.38291226538454814,-0.38291226538454814,-0.33940334826429935,-0.33940334826429935,-0.30441615031529595,-0.30441615031529595,0.9435819301290124,0.9435819301290124,0.23578671127233816,0.23578671127233816,-0.17504230526530729,-0.3431299936094214,-0.27910470395576115,-0.23910634777424514,-0.002848997492493706,-0.19226610301770478,-0.38284324629963234,-0.32114727250896685,-0.24531003605973858,-0.08587424113547432,8.053473500789835,8.053473500789835,7.396119705580944,7.396119705580944,6.925864360444876,6.925864360444876,23.805407751777352,23.805407751777352,6.153635613389113,6.153635613389113,5.635117227989554,7.449269026341298,6.61795083151695,6.186426756685762,5.000168021604608,5.766464077586946,8.052366829040338,7.144270406055966,6.248946791442748,5.152703826599662,179.74323453290856,179.74323453290856,0.0,199.71470503656505,0.0,179.74323453290856,199.71470503656505,0,0
+2017/05/03 10:00:00,210.2004954977305,0,980.1386119000219,0,0,0,0.3676000619641244,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.0002590432462833143,18.614149575451872,0,0,0.12080717993998312,518.6432220570083,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1455.7421568718175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.44433373462482,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052183305692761264,0.001651043417354328,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3194130532674299,-0.3194130532674299,-0.414100364617628,-0.414100364617628,-0.22181893006021247,-0.22181893006021247,0.9668123217753437,0.9668123217753437,0.3522631735061077,0.3522631735061077,-0.17389101990188846,-0.3555273778565717,-0.2611613715645372,-0.27763401233986995,-0.031162652232004748,-0.17871978836474317,-0.3857250168232376,-0.26710273600318934,-0.2783663728612154,-0.11673185642134247,7.121081367248394,7.121081367248394,8.574389595560703,8.574389595560703,6.020728417170076,6.020728417170076,24.743333494049637,24.743333494049637,7.582022335206688,7.582022335206688,5.626779231951403,7.630329046635495,6.416041535677877,6.600891232101461,5.020103357649575,5.662121322252915,8.09874702905428,6.481395414366901,6.6093750019909265,5.28224311152286,210.2004954977305,210.2004954977305,0.0,233.55610610858943,0.0,210.2004954977305,233.55610610858943,0,0
+2017/05/03 11:00:00,225.3691965102726,0,1055.07996360934,0,0,0,0.7847221023204264,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,3.93064467039605e-05,20.810526707130524,0,0,0.01834686092373837,540.4515053165264,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3206.0149766722634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05617323876732418,0.0017772821186207222,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.034041347809656314,-0.034041347809656314,-0.27919209879298174,-0.27919209879298174,-0.01591495963035319,-0.01591495963035319,1.0500389324296975,1.0500389324296975,0.5158654136680629,0.5158654136680629,-0.015620532675969846,-0.22866216485441082,-0.1705671703504695,-0.1147847628066542,-0.05127452607633727,0.02950631318029985,-0.22785831179051338,-0.14211412372898974,-0.08188132016107617,-0.11450209015477641,5.0239892640379935,5.0239892640379935,6.6189674577251765,6.6189674577251765,5.005243205258054,5.005243205258054,28.27335068340372,28.27335068340372,10.56470243116435,10.56470243116435,5.005050998913958,6.084821206895185,5.603017090976593,5.272900538571619,5.05442962772068,5.018023026021297,6.077190649693023,5.418451067503355,5.138829195530732,5.271557307838165,225.3691965102726,225.3691965102726,0.0,250.4102183447473,0.0,225.3691965102726,250.4102183447473,0,0
+2017/05/03 12:00:00,204.97995888548024,0,997.7703786161437,0,0,0,0.8840053257336341,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,1.6538899034484164e-05,18.58423913865963,0,0,0.007720424795748577,518.6428992720022,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3636.966451627539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05312203401269473,0.0016807441270494064,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2197126821308649,0.2197126821308649,-0.1637161477379321,-0.1637161477379321,0.12221670682750034,0.12221670682750034,1.0159661894399865,1.0159661894399865,0.6567407684468549,0.6567407684468549,0.0078122101172569845,-0.15956473724865802,-0.19935659859727242,-0.06872213252480625,0.13128190625770095,0.08037917809034803,-0.14099682037960323,-0.1583959484969402,-0.02211677567216502,0.08708095995742025,6.001396668685331,6.001396668685331,5.555492955897492,5.555492955897492,5.30940751755702,5.30940751755702,26.796732253593504,26.796732253593504,14.059319299659023,14.059319299659023,5.001263367956469,5.527647624453934,5.824136815729588,5.097783591119224,5.357045398510564,5.133780722841919,5.411891480546032,5.519937626859516,5.010125908600671,5.1570270774474665,204.97995888548024,204.97995888548024,0.0,227.75550987275582,0.0,204.97995888548024,227.75550987275582,0,0
+2017/05/03 13:00:00,202.4321518242708,0,960.0827285372302,0,0,0,0.8854996179813188,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.7481603931731604e-09,16.32442793691295,0,0,0.0,516.4533221304285,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3639.8230351529105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051115515606999715,0.001617259283351921,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4326054664031367,0.4326054664031367,0.03554082651061017,0.03554082651061017,0.24063534273648965,0.24063534273648965,0.9993310573311456,0.9993310573311456,0.7694211164145752,0.7694211164145752,0.09385579678799422,-0.14968146294497173,-0.12152209409756146,-0.14919334514113858,0.2433015651231551,0.17085768183475564,-0.11265762778547947,-0.06886663194474614,-0.10816197481971476,0.2192706796501901,8.903162162024799,8.903162162024799,5.026149326641061,5.026149326641061,6.201685691705322,6.201685691705322,26.09149214520606,26.09149214520606,17.47289764443788,17.47289764443788,5.182420658787052,5.464246068572933,5.30589822074181,5.461220208864631,6.228528702426388,5.60507557169656,5.262874112448671,5.098195322350449,5.24230185596538,5.997363442517809,202.4321518242708,202.4321518242708,0.0,224.92461313807866,0.0,202.4321518242708,224.92461313807866,0,0
+2017/05/03 14:00:00,186.38140250530483,0,900.9347493988682,0,0,0,0.8150408821434916,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.6927055037118503e-09,14.097510272728975,0,0,0.0,492.7956955046107,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3328.1808570546727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04796643338637086,0.0015176245169826058,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.43800186647801703,0.43800186647801703,0.2099237447575516,0.2099237447575516,0.29549179380843904,0.29549179380843904,0.9835184333798226,0.9835184333798226,0.8088195190479743,0.8088195190479743,0.051004073825809425,-0.09290247316908157,-0.14928740086213296,-0.17053190200789622,0.20174364059624514,0.13883626763899568,-0.036779085346275275,-0.08445561980139639,-0.12988190518954326,0.1771688789138709,9.001805602353684,9.001805602353684,5.913989968695859,5.913989968695859,6.814210780941153,6.814210780941153,25.430854362963004,25.430854362963004,18.794782743021145,18.794782743021145,5.053856887046393,5.178732253410502,5.461802491932076,5.602767429289827,5.844025537208637,5.399354431029906,5.028003289969632,5.147698650871746,5.349465254667834,5.65066402896781,186.38140250530483,186.38140250530483,0.0,207.0904472281165,0.0,186.38140250530483,207.0904472281165,0,0
+2017/05/03 15:00:00,179.5414378399825,0,900.9291166495393,0,0,0,0.7230541172903792,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,4.427702243521396e-06,14.05017094393837,0,0,0.00206611094895232,492.7879966443329,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2927.4556581011366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04796613349462437,0.0015176150286167888,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.32053251538118444,0.32053251538118444,0.10543514018146961,0.10543514018146961,0.26070180393311393,0.26070180393311393,0.9668207904958043,0.9668207904958043,0.766008431345655,0.766008431345655,-0.11725672717892327,-0.12776836605912087,-0.2722752495686787,-0.16952561562681276,0.05847539508290882,-0.04545372377226626,-0.1230331183259346,-0.2137414595919093,-0.12467267063054989,0.022389276236769513,7.13603562447021,7.13603562447021,5.230232735271613,5.230232735271613,6.411048296787442,6.411048296787442,24.743679272272658,24.743679272272658,17.361502724984916,17.361502724984916,5.284788508121181,5.338176143359462,6.539502615367169,5.595665869730169,5.070793559383944,5.042772047001861,5.3135577988196445,5.947601477289268,5.321976258783977,5.010376973863771,179.5414378399825,179.5414378399825,0.0,199.49048648886944,0.0,179.5414378399825,199.49048648886944,0,0
+2017/05/03 16:00:00,202.55536684625696,0,969.6288382363218,0,0,0,0.7373885687776828,0.0,16.756134543052177,0.0,131.64086955684016,0,39.380909295966944,9.3091419400109e-06,14.040055572478002,0,0,0.0030024149135153746,508.2512531583345,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2987.751860986411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05162375755824645,0.0016333397044155033,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.26000139573574743,0.26000139573574743,0.10214098780358369,0.10214098780358369,0.24843636896595733,0.24843636896595733,0.9619084060556906,0.9619084060556906,0.7794731310750448,0.7794731310750448,-0.2184691572310156,-0.14399435607374522,-0.33951687082428467,-0.13363156906607548,0.0015573776033929278,-0.17279468598233283,-0.1683145981454786,-0.29823822051275867,-0.08530293715553655,-0.0437783608547968,6.40345540246507,6.40345540246507,5.216064416409381,5.216064416409381,6.281066301020175,6.281066301020175,24.543576103393733,24.543576103393733,17.803894890026314,17.803894890026314,5.990070516042977,5.429607030024442,7.397730048725762,5.36995058708105,5.00005020751567,5.618890619689864,5.58717548034511,6.848212982331503,5.150678113512612,5.039676849673953,202.55536684625696,202.55536684625696,0.0,225.06151871806327,0.0,202.55536684625696,225.06151871806327,0,0
+2017/05/03 17:00:00,209.9547721371907,0,985.6246501062844,0,0,0,1.2599041642198086,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,2.802686382771501e-09,18.62037296563476,0,0,0.0,524.2500674432107,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3201.0974530614058,1507.5885190920808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05247538643040774,0.0016602846482963937,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.29629957980307375,0.29629957980307375,0.3758655879753402,0.3758655879753402,0.3543237438674298,0.3543237438674298,0.9579269146235527,0.9579269146235527,0.857645978092702,0.857645978092702,-0.15220845346551984,-0.027992685847564053,-0.21534328127502128,-0.24341562585600968,0.129054062521319,-0.1209906862075609,-0.02149814811818668,-0.1749521078144034,-0.2126079528137465,0.08406970415988924,6.82417850453875,6.82417850453875,7.941534481428931,7.941534481428931,7.612463791362472,7.612463791362472,24.382084256915192,24.382084256915192,20.52377556936605,20.52377556936605,5.480069623624814,5.016221285133753,5.9618858208649925,6.229683703695343,5.345021344243619,5.303227000733656,5.0095673563997,5.634461990925374,5.937558282988235,5.146351507877824,209.9547721371907,209.9547721371907,0.0,233.2830801524341,0.0,209.9547721371907,233.2830801524341,0,0
+2017/05/03 18:00:00,193.6610060128535,0,987.9968866880253,0,0,0,0.708994551579143,0.0,17.14544770084137,0.0,110.93442390708215,0,39.380909295966944,2.9607833845050977e-09,25.491230554422994,0,0,0.0,562.1126565374955,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2865.631637478583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05260168606315108,0.0016642806806382866,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2052350726045274,0.2052350726045274,0.4481501145599105,0.4481501145599105,0.38214977984583776,0.38214977984583776,0.9438869004751367,0.9438869004751367,0.8291512853523889,0.8291512853523889,-0.1761768758207282,0.016427850878072386,-0.14244567807181238,-0.22890411919752346,0.18771608140368856,-0.14826913458060212,0.05625842054304735,-0.08497076652657642,-0.21188417510324858,0.14736293307588666,5.873545253989192,5.873545253989192,9.190699653248487,9.190699653248487,8.041258877646257,8.041258877646257,23.817583255110506,23.817583255110506,19.502620740660646,19.502620740660646,5.643388279840039,5.005586600351393,5.420407589474053,6.08712325931981,5.730561901965032,5.455518171397486,5.065526586634533,5.149506536989591,5.931173549961898,5.449961776652572,193.6610060128535,193.6610060128535,0.0,215.1788955698372,0.0,193.6610060128535,215.1788955698372,0,0
+2017/05/03 19:00:00,188.1301623383472,0,971.7269416285127,0,0,0,0.5896211630837761,0.0,19.371992964164374,0.0,101.68988858149199,0,39.380909295966944,7.8583289138726e-06,27.0977424753112,0,0,0.0036681444456447766,581.3293958460816,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2360.2269312407207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05173546213692586,0.0016368739594204056,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1130269168664196,0.1130269168664196,0.11922418442729685,0.11922418442729685,0.34151245839486594,0.34151245839486594,0.9290189470175958,0.9290189470175958,0.7543456865114484,0.7543456865114484,-0.238525396490512,-0.07141277421765953,-0.16216844905508987,-0.17674457184640577,0.1638459736124136,-0.22385768682283194,-0.03493023432441534,-0.10418820591460326,-0.16946130768086268,0.11912086485262374,5.264601303349096,5.264601303349096,5.29443170419934,5.29443170419934,7.426127307455275,7.426127307455275,23.228300828498604,23.228300828498604,16.984569105554712,16.984569105554712,6.180654762363716,5.105592203070685,5.5450278768856265,5.647546964125198,5.556375339356009,6.0396178026795155,5.025258503918266,5.224816612229631,5.5952134718028645,5.293921297074164,188.1301623383472,188.1301623383472,0.0,209.03351370927464,0.0,188.1301623383472,209.03351370927464,0,0
+2017/05/03 20:00:00,208.03095539236486,0,916.1008117823407,0,0,0,0.3935670858147717,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,3.879286829209096e-05,23.16559554997873,0,0,0.018116228415682244,561.1791704284836,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1551.0749448987453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04877388578127045,0.0015431717479164803,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.08684622250227071,-0.08684622250227071,-0.1540753487737982,-0.1540753487737982,0.0908658087644992,0.0908658087644992,0.9157749565989667,0.9157749565989667,0.5795623374225,0.5795623374225,-0.16565541442968518,-0.08409507452166615,-0.1629106825877145,-0.1776363019299658,0.022619854566953097,-0.1621847532202697,-0.06836279639744496,-0.14944948369105648,-0.16351432518914813,-0.030570846720271414,5.156181362888404,5.156181362888404,5.491930609803049,5.491930609803049,5.170978752026471,5.170978752026471,22.710819270230687,22.710819270230687,12.038173193237242,12.038173193237242,5.568746655842119,5.146439880282884,5.55003417880927,5.6541065322902995,5.010591816121078,5.545137600409092,5.0967634647046935,5.462806783719557,5.55412263009201,5.01934701622767,208.03095539236486,208.03095539236486,0.0,231.1455059915165,0.0,208.03095539236486,231.1455059915165,0,0
+2017/05/03 21:00:00,195.3176618684625,0,881.6056132645177,0,0,0,0.21456850243757725,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.00016602642504276655,25.49497335728315,0,0,0.07759078089093771,562.1148498707296,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,833.8539167571663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046937335861358044,0.0014850645886313489,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.24128241684713012,-0.24128241684713012,-0.3464080696613013,-0.3464080696613013,-0.07178986312450877,-0.07178986312450877,0.8992362848644663,0.8992362848644663,0.42025116063476525,0.42025116063476525,-0.1577449603473193,-0.13359609569597303,-0.1869974022621163,-0.24091010040733574,-0.00515490940777876,-0.1592408175738711,-0.12581322487587848,-0.14193187174567695,-0.2393808659035804,-0.06319804430134492,6.208172871886006,6.208172871886006,7.496508749037744,7.496508749037744,5.106710545373161,5.106710545373161,22.074530399186784,22.074530399186784,8.682038683123963,8.682038683123963,5.515668020708176,5.369754047416663,5.724970226780897,6.204438100699605,5.000550076926999,5.525505163081036,5.327898465512234,5.417377536367155,6.189159139399564,5.082692450074475,195.3176618684625,195.3176618684625,0.0,217.01962429829166,0.0,195.3176618684625,217.01962429829166,0,0
+2017/05/03 22:00:00,138.66967730148565,0,700.7826154119077,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.001330566285639023,20.856204008405516,0,0,0.6244611788465518,540.4515679266126,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,192.4974012119675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,150.7973741824704,0.0,0.0,0,0,0,0,0,0,0,0,0.03731018551888508,0.00118046826247286,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.48444989862121923,-0.48444989862121923,-0.3846410592159957,-0.3846410592159957,-0.3251011345283032,-0.3251011345283032,0.7772096634545512,0.7772096634545512,0.12893902944684518,0.12893902944684518,-0.18927695836597583,-0.2248605610365124,-0.24261943199862093,-0.31804621151940504,-0.07471479604087337,-0.19755372292067563,-0.23466827057364192,-0.21545227548325263,-0.3297224681187005,-0.11318688754113893,9.902651995797427,9.902651995797427,8.081259833563252,8.081259833563252,7.197615948427838,7.197615948427838,17.72898695946334,17.72898695946334,5.3444060947076935,5.3444060947076935,5.742780609086921,6.0489735160705465,6.22163269584307,7.102894508665372,5.115585306077435,5.809273293505541,6.142691910245816,5.962861688312543,7.260807252413585,5.265351255948744,138.66967730148565,138.66967730148565,0.0,154.07741922387294,0.0,138.66967730148565,154.07741922387294,0,0
+2017/05/03 23:00:00,90.7459988515322,0,548.7931009932095,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.013725226691296279,11.789317363548344,0,0,6.677249990606552,488.88032223378684,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,456.1275002936421,0.0,0.0,0.0,1094.8996769066084,0.0,0.0,0.0,0.0,0.0,530.5289960567646,0.0,0.0,0.0,1132.5494686059264,0.0,417.87412356211496,0,0,0,0,0,0,0,0,0.029218151191586998,0.0009244419369703713,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5240654010182652,-0.5240654010182652,-0.49878431905979925,-0.49878431905979925,-0.4268663497934815,-0.4268663497934815,0.5630070751475447,0.5630070751475447,-0.18985860032558702,-0.18985860032558702,-0.25183872818007275,-0.30607653224786663,-0.307369947796384,-0.37134744136674736,-0.1864789862819091,-0.2725617824121808,-0.3291168119857018,-0.28986765677447074,-0.39757054268341424,-0.22723282095417563,10.744531544786,10.744531544786,10.199445679002707,10.199445679002707,8.799626063547137,8.799626063547137,11.638292385205403,11.638292385205403,5.747359794996285,5.747359794996285,6.316488469961357,6.947009168565955,6.963561510825556,7.87087679060447,5.720950091772977,6.542754432597334,7.252474033428527,6.745575523105657,8.293119885220477,6.071271939062854,90.7459988515322,90.7459988515322,0.0,100.82888761281356,0.0,90.7459988515322,100.82888761281356,0,0
+2017/05/04 00:00:00,39.34774031156848,0,518.0832447928241,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.578972052353765e-09,9.55041931256633,0,0,0.0,464.8477160240079,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02758313570048326,0.0008727111865316608,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.25465250447774124,-0.25465250447774124,-0.2549338564808572,-0.2549338564808572,-0.24880180855882722,-0.24880180855882722,0.5902807714518704,0.5902807714518704,0.16865551996915026,0.16865551996915026,-0.19412201066394658,-0.16727786625011332,-0.25380042335620506,-0.29079643807590566,0.10646774954869896,-0.23958560001093016,-0.21844019101542306,-0.25937131003191066,-0.33752244111208674,0.013064808757923268,6.346150559405061,6.346150559405061,6.349134809001129,6.349134809001129,6.284847589336323,6.284847589336323,12.303411297813895,12.303411297813895,5.589559482246784,5.589559482246784,5.7813566181210945,5.5799555918289485,6.337132998627368,6.756817989243757,5.234766797071558,6.191198995295338,5.989807460960179,6.396642490770148,7.369518279617523,5.0035333794553765,39.34774031156848,39.34774031156848,0.0,43.71971145729831,0.0,39.34774031156848,43.71971145729831,0,0
+2017/05/04 01:00:00,23.745520297427667,0,40.798897816080746,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5484248737498758,0,0,0.0,5.308545303536616,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0021721635397437444,6.87257402746042e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.21388829787392388,-0.21388829787392388,-0.22746408027966944,-0.22746408027966944,-0.19196090808946328,-0.19196090808946328,0.5370241952656402,0.5370241952656402,0.3961954170404018,0.3961954170404018,-0.22605270458445428,-0.18531232751195337,-0.2929199655779155,-0.3243233081731097,0.2242235801057768,-0.2806005386262637,-0.24487087333148796,-0.31167776511845385,-0.3836873666983606,0.10753174694198103,5.948906442927708,5.948906442927708,6.07345832010283,6.07345832010283,5.764028854914372,5.764028854914372,11.034658009463058,11.034658009463058,8.270247739249868,8.270247739249868,6.0601497583470945,5.7119441172257694,6.782659174488742,7.187069140809996,6.043026299215384,6.635395655863832,6.244467792183187,7.019200886952859,8.065915665538398,5.239484997067919,23.745520297427667,23.745520297427667,0.0,26.383911441586296,0.0,23.745520297427667,26.383911441586296,0,0
+2017/05/04 02:00:00,28.373462636963193,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5540995504902964,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.19815090555224882,-0.19815090555224882,-0.2152052641314074,-0.2152052641314074,-0.17062037048605214,-0.17062037048605214,0.5011674162780951,0.5011674162780951,0.479682525816452,0.479682525816452,-0.25395950149947794,-0.20772738564333432,-0.32372940976466014,-0.35446856979657615,0.2534008343947184,-0.31848317048569846,-0.2761120788347492,-0.35473041073271516,-0.4241472939425703,0.12216465075169737,5.814181616897997,5.814181616897997,5.960650813769703,5.960650813769703,5.60339378850648,5.60339378850648,10.249648011292962,10.249648011292962,9.805909214130253,9.805909214130253,6.338814201912172,5.89492951690481,7.179033544681118,7.614610145677446,6.3329146720140415,7.108699968599581,6.583333267957059,7.618492955518789,8.751066640988398,5.309143826642412,28.373462636963193,28.373462636963193,0.0,31.52606959662577,0.0,28.373462636963193,31.52606959662577,0,0
+2017/05/04 03:00:00,23.721957901062066,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248624773842749,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.20792112372275215,-0.20792112372275215,-0.2284099451812582,-0.2284099451812582,-0.18028147224356988,-0.18028147224356988,0.4424450750604126,0.4424450750604126,0.5399295324115729,0.5399295324115729,-0.29497177602646857,-0.24433577733296327,-0.36646859426469985,-0.39469899971014105,0.29602107637160846,-0.36802476334636197,-0.3208222855580936,-0.407135476563729,-0.473697676873558,0.1376710330865309,5.896602695642741,5.896602695642741,6.08242409970903,6.08242409970903,5.673759661098927,5.673759661098927,9.083964306931676,9.083964306931676,11.100701905476697,11.100701905476697,6.807808578632489,6.23902132533118,7.795555657988075,8.245450055588748,6.820738780303955,7.819470070375601,7.139915152178915,8.45444970681261,9.685848478963294,5.392673547422675,23.721957901062066,23.721957901062066,0.0,26.35773100118007,0.0,23.721957901062066,26.35773100118007,0,0
+2017/05/04 04:00:00,40.36968714533008,0,100.19488605167601,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.3131269858237148,0.02347295152546088,0.5249536583467965,0,0,11.469004770315685,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.26193330126515,0.0,0.0,0,0,0,0,0,0,0,0,0.0053344499484112955,0.00016877827794938537,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1534723048151054,-0.1534723048151054,-0.17686778091488425,-0.17686778091488425,-0.1259404874290533,-0.1259404874290533,0.4600965756984098,0.4600965756984098,0.6736903972150347,0.6736903972150347,-0.32344449216156784,-0.27229738691751154,-0.39564454491250994,-0.42281431198691755,0.24532975562179804,-0.40364962418070083,-0.3559826556316015,-0.44395589219681986,-0.4823310239451669,0.15721749682835862,5.488083404033048,5.488083404033048,5.648451314329435,5.648451314329435,5.328562616589039,5.328562616589039,9.418741025088465,9.418741025088465,14.537789148715987,14.537789148715987,7.175183845170622,6.539753725410691,8.261107897494213,8.727376872709499,6.249148100388837,8.395201088490623,7.63710269846878,9.11209390421483,9.859533278912764,5.5122215204166025,40.36968714533008,40.36968714533008,0.0,44.85520793925565,0.0,40.36968714533008,44.85520793925565,0,0
+2017/05/04 05:00:00,73.92885578658539,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.6177444802583834,0.0,0.5250682763711191,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.0559889504262443,0.0559889504262443,0.02939291121370657,0.02939291121370657,0.08233556121179303,0.08233556121179303,0.6371530480661888,0.6371530480661888,0.8252788295097507,0.8252788295097507,-0.28192908209196504,-0.2337879188938987,-0.35445025797426555,-0.38386416829566317,0.4105036056717305,-0.3720986146737845,-0.3266732070544849,-0.4129104206801704,-0.47193897523522826,0.3063057479927535,5.064900275407993,5.064900275407993,5.017884750655583,5.017884750655583,5.140374259672043,5.140374259672043,13.521886102821924,13.521886102821924,19.366463936843658,19.366463936843658,6.650968623891856,6.1341147813968036,7.61433871087425,8.0687573324048,8.512191619249563,7.882563783059922,7.219010532217709,8.553750800350741,9.65086116769045,6.949937371297011,73.92885578658539,73.92885578658539,0.0,82.14317309620598,0.0,73.92885578658539,82.14317309620598,0,0
+2017/05/04 06:00:00,84.52997039356275,0,681.3603254863551,0,0,0,0.0,0.0,9.400244987969673,0.0,73.80580873715317,0,0.7988867845224222,2.5206950344022103e-09,0.5250298813967691,0,0,0.0,450.67303415481837,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.036276128417029034,0.0011477514165673934,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.23391655912927664,0.23391655912927664,0.20512634380015007,0.20512634380015007,0.25996764958510993,0.25996764958510993,0.7822796714109191,0.7822796714109191,0.8958890144761203,0.8958890144761203,-0.228781368141937,-0.1781577157190293,-0.29995146367082737,-0.17498189842185904,0.5364339724417887,-0.3159870245062797,-0.26712423980274297,-0.3559132489550165,-0.23745538190432866,0.4133094647308657,6.135366074089816,6.135366074089816,5.872618268593357,5.872618268593357,6.403090092886643,6.403090092886643,17.897078168711033,17.897078168711033,21.947101202027625,21.947101202027625,6.085955048798226,5.657957429656136,6.869585299347278,5.63467836648185,11.02128579870022,7.075644920410184,6.481634651653877,7.636069491569373,6.17006080277244,8.560665195529793,84.52997039356275,84.52997039356275,0.0,93.92218932618083,0.0,84.52997039356275,93.92218932618083,0,0
+2017/05/04 07:00:00,147.02990392202702,0,855.7490503520459,0,0,0,0.0,0.0,7.777944015249205,0.0,69.33401494192633,0,39.380909295966944,0.016747279776861503,27.08831318665339,0,0,8.278147684372755,581.293258823592,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1316.1633643672005,0.0,193.6322381342478,0.0,415.8789351878585,0.0,0.0,0.0,0.0,0.0,1389.0140321913207,0.0,279.61773128755675,0.0,143.8140399574082,0.0,676.0302024099387,0,0,0,0,0,0,0,0,0.04556071329976952,0.00144150921036777,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.0437171978663351,0.0437171978663351,0.005928149806648443,0.005928149806648443,0.02745090139559696,0.02745090139559696,1.0217627353069196,1.0217627353069196,0.6295666597989837,0.6295666597989837,-0.2794348409601925,-0.28288399388892105,-0.35170559597818724,-0.19018349301128684,0.23635356523926113,-0.3276268731857523,-0.3347545292541302,-0.3782011086797893,-0.20178338126528908,0.12755969329357036,5.039566052138696,5.039566052138696,5.000727477994758,5.000727477994758,5.015599430798005,5.015599430798005,27.04491335920747,27.04491335920747,13.318206648720036,13.318206648720036,6.621792861905348,6.662207937674111,7.573816120506336,5.749923782733859,6.15920220635347,7.232040203141921,7.330645274840251,7.9784002779773715,5.844358671473202,5.337071627757993,147.02990392202702,147.02990392202702,0.0,163.36655991336335,0.0,147.02990392202702,163.36655991336335,0,0
+2017/05/04 08:00:00,161.23242479106884,0,900.3689767419215,0,0,0,0.5808501276862529,0.0,11.435487997441953,0.0,83.2008179303116,0,39.380909295966944,0.00021333846600705544,25.490154367044656,0,0,0.1096617126650414,580.8461424163593,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2337.392691166767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04793631123104344,0.0015166714729849204,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.22857129439020127,-0.22857129439020127,-0.3274586822864081,-0.3274586822864081,-0.2471123308570623,-0.2471123308570623,1.0623034641007176,1.0623034641007176,0.24657553370411692,0.24657553370411692,-0.23699518855045407,-0.3178343297272118,-0.32043594788918817,-0.12384143783645946,-0.032360494349005925,-0.22237469807881516,-0.37322247481285675,-0.3426853423570075,-0.10629015964458555,-0.10633421415921708,6.083957262427205,6.083957262427205,7.229739456699349,7.229739456699349,6.2674131781360245,6.2674131781360245,28.815207437328993,28.815207437328993,6.2618988600528525,6.2618988600528525,6.165519319214695,7.100082348317301,7.134743541266701,5.317694238471944,5.021678615898722,6.0258604174737656,7.900094086815017,7.44289641874694,5.233983868858914,5.234177966779043,161.23242479106884,161.23242479106884,0.0,179.14713865674315,0.0,161.23242479106884,179.14713865674315,0,0
+2017/05/04 09:00:00,178.64333774438398,0,893.2346910103932,0,0,0,0.8787069241749043,0.0,11.323895916778682,0.0,106.27511244621549,0,39.380909295966944,4.853841284158327e-05,20.784664622835155,0,0,0.02496792507211595,520.5610217036076,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3610.3162823292173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047556476574283864,0.001504653769211644,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.20135968031095833,-0.20135968031095833,-0.3436589035443698,-0.3436589035443698,-0.24399014219502452,-0.24399014219502452,1.0710739406537306,1.0710739406537306,0.2705813695499588,0.2705813695499588,-0.11400146286921248,-0.2765978880203658,-0.2597777931096045,-0.08781231531513213,-0.09054212517297201,-0.1548744840470611,-0.32403680601208257,-0.26874209754280254,-0.04662429734586898,-0.16355980077471413,5.840810314216029,5.840810314216029,7.456860145089962,7.456860145089962,6.235509677420467,6.235509677420467,29.205986796676328,29.205986796676328,6.520349710575019,6.520349710575019,5.269186525231746,6.5889272509813,6.4010357476102655,5.159676667953946,5.169762351833469,5.497052147436605,7.183190826885706,6.499689739921791,5.045003655971371,5.554431250008008,178.64333774438398,178.64333774438398,0.0,198.49259749375997,0.0,178.64333774438398,198.49259749375997,0,0
+2017/05/04 10:00:00,209.78019560533116,0,1000.171168838984,0,0,0,1.10347761989838,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.976603921195304e-05,18.602193136476803,0,0,0.015314192980396622,538.7812719829298,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4611.404413233167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05324985386244008,0.0016847882579975643,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.08060854044593502,0.08060854044593502,-0.29011579279081173,-0.29011579279081173,-0.09404595873041341,-0.09404595873041341,1.087413958577801,1.087413958577801,0.4572292578138893,0.4572292578138893,-0.008097729781950027,-0.34369137080327106,-0.2692556176389001,-0.044592253995759605,-0.10925531516166058,-0.02598351958762663,-0.36692209891605737,-0.2591960978982203,0.011308415855799522,-0.167659698079588,5.134545521459913,5.134545521459913,6.748575528230205,6.748575528230205,5.183160906372066,5.183160906372066,29.941254516450797,29.941254516450797,9.363447705101692,9.363447705101692,5.001357402597222,7.457326514962375,6.505443611108319,5.0411659781249085,5.247227767030225,5.013976227439869,7.8025142301358414,6.394750947733783,5.00264720071992,5.582609486855802,209.78019560533116,209.78019560533116,0.0,233.08910622814574,0.0,209.78019560533116,233.08910622814574,0,0
+2017/05/04 11:00:00,225.75867091798597,0,1054.951332995002,0,0,0,1.132336948352665,0.0,16.693521233099577,0.0,147.76209134187457,0,39.380909295966944,1.3652426793822257e-05,20.789798446265337,0,0,0.007023994437066681,540.3341975686754,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4741.239641701035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05616639037813928,0.0017770654403606331,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.36010669067303336,0.36010669067303336,-0.14579223078256817,-0.14579223078256817,0.08706887122006948,0.08706887122006948,1.058407577179257,1.058407577179257,0.6476870884849641,0.6476870884849641,-0.033004320291383886,-0.2243481763531796,-0.323823453044668,-0.13074606169040678,0.025675493248755052,-0.012777935950520429,-0.23117038295770356,-0.29465085216486814,-0.08112747272731478,-0.014568733734581715,7.69886230630182,7.69886230630182,5.4404119708854495,5.4404119708854495,5.156983468189367,5.156983468189367,28.64249938714977,28.64249938714977,13.808843726248469,13.808843726248469,5.022549850246094,6.044188262553206,7.180304977594346,5.3541345016173665,5.013646814380124,5.003379912325258,6.108804632240876,6.803863223931273,5.136283930454098,5.004393681670493,225.75867091798597,225.75867091798597,0.0,250.84296768665106,0.0,225.75867091798597,250.84296768665106,0,0
+2017/05/04 12:00:00,205.09489115977752,0,997.607591800645,0,0,0,0.9667532569113656,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.802710250128772e-09,18.61644001787545,0,0,0.0,518.4878328812991,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3992.018875066501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05311336712206031,0.0016804699126710546,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4843869280641312,0.4843869280641312,-0.08865147602783911,-0.08865147602783911,0.16635830590888748,0.16635830590888748,1.0040949930462622,1.0040949930462622,0.7302996904097788,0.7302996904097788,0.06945090346629774,-0.24728080819717932,-0.21731132125061378,-0.12556146573955598,0.17717898030922757,0.12745907783556812,-0.23498994547438887,-0.17165360962828713,-0.08189565075774757,0.15051816859424627,9.90136776303342,9.90136776303342,5.162744158692533,5.162744158692533,5.573589204465989,5.573589204465989,26.292391024872074,26.292391024872074,16.225803354515335,16.225803354515335,5.099868949240019,6.269146380004699,5.979583072607539,5.326586581776482,5.650738327890494,5.336539711946159,6.145834051988757,5.610733322391013,5.138877809160405,5.469455917397653,205.09489115977752,205.09489115977752,0.0,227.88321239975278,0.0,205.09489115977752,227.88321239975278,0,0
+2017/05/04 13:00:00,202.70140752890174,0,954.1170316172467,0,0,0,0.9433982307978188,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,2.7481840296874637e-09,16.305781958540887,0,0,0.0,510.4876252104451,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3888.2667183423996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05079789748414831,0.0016072100673429975,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5795927667029662,0.5795927667029662,0.0698611068473532,0.0698611068473532,0.25773503979530543,0.25773503979530543,0.9961266710533483,0.9961266710533483,0.7959896441799728,0.7959896441799728,0.1576589493165836,-0.1592730820478432,-0.14382701505383702,-0.08157003295532654,0.24616141534142894,0.23522168735850335,-0.13932062214768076,-0.08204749567751442,-0.03475245158144579,0.23255421010766578,12.038919139095242,12.038919139095242,5.101052418952719,5.101052418952719,6.379028054402767,6.379028054402767,25.956844940832212,25.956844940832212,18.357088937355584,18.357088937355584,5.515105224817191,5.525718369874866,5.428608181916502,5.137775319066108,6.257653049464707,6.148100413310829,5.402148105026029,5.139393435385969,5.025002030334335,6.1221496721573345,202.70140752890174,202.70140752890174,0.0,225.22378614322415,0.0,202.70140752890174,225.22378614322415,0,0
+2017/05/04 14:00:00,186.48506467076808,0,906.6766456443835,0,0,0,0.863311596643266,0.0,16.630907673226492,0.0,115.5196477718057,0,39.380909295966944,2.6927288917717256e-09,14.090288330432939,0,0,0.0,498.53759175012607,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3534.6733689853763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048272136195542915,0.0015272967407723734,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5670209962718487,0.5670209962718487,0.2759733916011427,0.2759733916011427,0.29226398609287424,0.29226398609287424,0.983215798529109,0.983215798529109,0.8146952223096663,0.8146952223096663,0.1198244794351471,-0.06590975413261746,-0.1804676459132159,-0.10669620157788315,0.19287546769945826,0.20710891795261943,-0.015834473259456715,-0.11076710342987552,-0.05902915739969737,0.18034044282907602,11.734153995308148,11.734153995308148,6.581738141537201,6.581738141537201,6.774656236027226,6.774656236027226,25.41830390747677,25.41830390747677,18.997554424182596,18.997554424182596,5.29740598681019,5.089942460122515,5.675153899289555,5.235775883560038,5.77133798823624,5.889598760698718,5.005190306072507,5.254120729434945,5.072140949061023,5.674201130034248,186.48506467076808,186.48506467076808,0.0,207.20562741196454,0.0,186.48506467076808,207.20562741196454,0,0
+2017/05/04 15:00:00,179.60435495986775,0,900.7176721169957,0,0,0,0.8003338017050801,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.6927288917717256e-09,14.035812804418402,0,0,0.0,492.57861822273827,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3259.3217572721237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04795487603109337,0.0015172588503177672,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4760566903482611,0.4760566903482611,0.40589694074610544,0.40589694074610544,0.28784970000005405,0.28784970000005405,0.9780611412084741,0.9780611412084741,0.7924606637111936,0.7924606637111936,-0.002373691852209458,-0.04920000944245407,-0.2627517632760724,-0.19473407505877613,0.08047142477643104,0.07499639161619896,0.02127607918332608,-0.19344504028639325,-0.1515602924549996,0.06181131544862155,9.732987695533026,9.732987695533026,8.433338882532638,8.433338882532638,6.721274637365298,6.721274637365298,25.205078701285416,25.205078701285416,18.237918789913394,18.237918789913394,5.000116635196022,5.050113919548963,6.4333898802605916,5.786299634776,5.134088053049183,5.116458435214369,5.009370717850658,5.775907660056305,5.475985598318076,5.079102678116385,179.60435495986775,179.60435495986775,0.0,199.56039439985304,0.0,179.60435495986775,199.56039439985304,0,0
+2017/05/04 16:00:00,202.59151998819348,0,953.9428177383824,0,0,0,0.841957986203763,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.6927288917717256e-09,14.09687547326331,0,0,0.0,492.5682350753087,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3440.3202149253675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05078862220819619,0.001606916604077273,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4334028501696421,0.4334028501696421,0.5108598531463793,0.5108598531463793,0.32269473779098057,0.32269473779098057,0.9877312561043089,0.9877312561043089,0.8321019934157919,0.8321019934157919,-0.07518386821003187,-0.016634086904255583,-0.2837976053228525,-0.24085052100910373,0.04967543873597066,-0.014680874080531151,0.06276530124271995,-0.21952025204822984,-0.20874465558411678,0.023751052216957197,8.917659182392555,8.917659182392555,10.456358330690477,10.456358330690477,7.165069889853214,7.165069889853214,25.605928073922954,25.605928073922954,19.60679062200927,19.60679062200927,5.117041557531465,5.0057277514730885,6.672997159644709,6.203840989677175,5.051087227806832,5.0044615818808325,5.081563669887558,5.999639758238175,5.903732489706812,5.011677706283294,202.59151998819348,202.59151998819348,0.0,225.10168887577052,0.0,202.59151998819348,225.10168887577052,0,0
+2017/05/04 17:00:00,209.49632813008404,0,979.8465700985766,0,0,0,0.8471639973470941,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,2.802710250128772e-09,18.574669125400796,0,0,0.0,518.4719874355029,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3462.9665901093535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052167757170935004,0.001650551472961959,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.38774541787604166,0.38774541787604166,0.5585823976330869,0.5585823976330869,0.3607190415422995,0.3607190415422995,0.9765005312038884,0.9765005312038884,0.8591681922672794,0.8591681922672794,-0.09727967928112109,0.032371815932563976,-0.23990096926784443,-0.2607027758334842,0.09486008898033398,-0.05544321190910807,0.11129935805612493,-0.17991582389318403,-0.24476034673880884,0.06701980688970567,8.13147556485984,8.13147556485984,11.533430639012238,11.533430639012238,7.708094327737371,7.708094327737371,25.140725377689364,25.140725377689364,20.57927728165417,20.57927728165417,5.195978626225482,5.021693788147687,6.19434460146924,6.411058847183028,5.186347054400471,5.063641069346033,5.256570125555228,5.671025564532343,6.243341813127898,5.0929982095800455,209.49632813008404,209.49632813008404,0.0,232.7736979223156,0.0,209.49632813008404,232.7736979223156,0,0
+2017/05/04 18:00:00,194.817907682753,0,1006.7296960271032,0,0,0,0.7988592122683744,0.0,18.235772969517082,0.0,110.93442390708215,0,39.380909295966944,2.9608078419442724e-09,25.467942294957627,0,0,0.0,580.8454658765736,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3252.5874260157366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05359903470788035,0.001695836096548167,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3148741833285244,0.3148741833285244,0.3081907559111894,0.3081907559111894,0.30042900295138947,0.30042900295138947,0.962457792847605,0.962457792847605,0.8431728594547139,0.8431728594547139,-0.08726083682276187,-0.06222844185704972,-0.20716227455813174,-0.25745747221620163,0.1929574197493891,-0.06339079909802205,-0.017267259044333613,-0.16061933204135007,-0.25956813864754835,0.16258924711525322,7.060993258135426,7.060993258135426,6.97410242642367,6.97410242642367,6.87556460643647,6.87556460643647,24.56590827446405,24.56590827446405,20.000876203970492,20.000876203970492,5.157676686653545,5.08017409630726,5.890058026124464,6.376051216967667,5.771994653135195,5.083197736039594,5.006172107205742,5.534653192328193,6.398768940252808,5.547863304808686,194.817907682753,194.817907682753,0.0,216.46434186972556,0.0,194.817907682753,216.46434186972556,0,0
+2017/05/04 19:00:00,191.25937126928656,0,971.6921055192183,0,0,0,0.7011511055159498,0.0,22.400924749403732,0.0,101.68988858149199,0,39.380909295966944,6.90821237426172e-06,27.086490628695557,0,0,0.00355358440884839,581.2946742968239,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2832.0737567265264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05173360743666369,0.0016368152779969432,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.23725581194090817,0.23725581194090817,0.15918862193498023,0.15918862193498023,0.23596468004551105,0.23596468004551105,0.9486192823009687,0.9486192823009687,0.7936498858578293,0.7936498858578293,-0.12212996227007974,-0.13876748850008486,-0.23444896708712082,-0.13884901362519436,0.1997573552427197,-0.10799619999600525,-0.1182159202247153,-0.19382990578519177,-0.14231455254641534,0.16446813093146903,6.168090226492296,6.168090226492296,5.5251603410619765,5.5251603410619765,6.155381841577153,6.155381841577153,24.006988123095837,24.006988123095837,18.27801866307675,18.27801866307675,5.308968174097814,5.398958516234245,6.14055222874677,5.399427822635744,5.827459255251313,5.241559312072937,5.289469754903195,5.779003106338834,5.419633263000094,5.560613688841556,191.25937126928656,191.25937126928656,0.0,212.51041252142952,0.0,191.25937126928656,212.51041252142952,0,0
+2017/05/04 20:00:00,208.1250233906126,0,896.7392753493468,0,0,0,0.5539926426016752,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,2.7913977092513556e-05,23.099248870330804,0,0,0.014365120661113314,541.8213851032444,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2210.9972434823894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047743063240358735,0.001510557241264618,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.10043862766683993,0.10043862766683993,-0.0151814080376776,-0.0151814080376776,0.11750909328966197,0.11750909328966197,0.9282788663048849,0.9282788663048849,0.6792662775349101,0.6792662775349101,-0.08960144231054518,-0.07851422803109999,-0.18041070908979404,-0.11571460386293028,0.1289449960249576,-0.08347192384390834,-0.0675297274439074,-0.18912195745343935,-0.05773109704819493,0.08864131942395374,5.208919046381013,5.208919046381013,5.004771000238321,5.004771000238321,5.286016449915664,5.286016449915664,23.199198284945908,23.199198284945908,14.697909195051054,14.697909195051054,5.166251947652327,5.1276431188722995,5.6747273508456,5.277342465859277,5.344437993168597,5.1442769894163405,5.0944190374066665,5.741562693834808,5.069002584693052,5.162706857310056,208.1250233906126,208.1250233906126,0.0,231.25002598956954,0.0,208.1250233906126,231.25002598956954,0,0
+2017/05/04 21:00:00,194.3445585469966,0,881.4551979036391,0,0,0,0.38864267595546814,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.331605908347e-05,25.49193030681678,0,0,0.01200045158227172,562.0300248391599,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1530.50856685487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0469293276361312,0.0014848112139673653,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.032548346863479335,-0.032548346863479335,-0.16877317185587493,-0.16877317185587493,-0.0022477313881301845,-0.0022477313881301845,0.9054419513569539,0.9054419513569539,0.547444301101347,0.547444301101347,-0.14340396885670903,-0.08916594407231,-0.1633761219864291,-0.17446902511689935,-0.021978408004387138,-0.15028367697029393,-0.07716124159600177,-0.2147389840220942,-0.15199515150196907,-0.07189317116047177,5.021931046945909,5.021931046945909,5.590383324706963,5.590383324706963,5.000104585085225,5.000104585085225,22.311981808530575,22.311981808530575,11.27322345120055,11.27322345120055,5.42608824368655,5.16463920500847,5.553185243622821,5.630958427092025,5.009999602137668,5.467992886566321,5.123280677272533,5.9564843398082274,5.478723688546154,5.107017957437009,194.3445585469966,194.3445585469966,0.0,215.93839838555178,0.0,194.3445585469966,215.93839838555178,0,0
+2017/05/04 22:00:00,137.4620854687625,0,700.0777014006649,0,0,0,0.03406864712552573,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,7.721680253993592e-05,20.81698819889889,0,0,0.03975687166945223,540.3313582225469,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,130.42084513022817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03727265537479201,0.0011792808348744235,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2670855511305691,-0.2670855511305691,-0.40852280189318146,-0.40852280189318146,-0.23366391225434027,-0.23366391225434027,0.8357807070137064,0.8357807070137064,0.26094615627912826,0.26094615627912826,-0.15664662604715726,-0.19749558361468694,-0.2269791345846845,-0.2565326032886741,-0.08200281058611605,-0.17759485358822524,-0.20358494693600984,-0.24626968422958073,-0.25206980351149616,-0.13836791176401655,6.481204240652588,6.481204240652588,8.478174637248685,8.478174637248685,6.132909217376437,6.132909217376437,19.737172110836866,19.737172110836866,6.413702097820632,6.413702097820632,5.508504455438654,5.8087962353634595,6.068876106881987,6.3661556401162755,5.139241597027322,5.6538009027607785,5.859530045522376,6.258762396747741,6.3189118577074055,5.396662317816734,137.4620854687625,137.4620854687625,0.0,152.7356505208472,0.0,137.4620854687625,152.7356505208472,0,0
+2017/05/04 23:00:00,89.39303063353718,0,542.7853439493423,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,4.712525441630041e-05,11.822817327971915,0,0,0.02427207137155252,489.52554310915457,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.028898293756585817,0.0009143218706859581,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4816988906962171,-0.4816988906962171,-0.46877275940803304,-0.46877275940803304,-0.4464926426373572,-0.4464926426373572,0.6721271396439693,0.6721271396439693,-0.01764969119060426,-0.01764969119060426,-0.1861029251425841,-0.2947522166160065,-0.33422918341782,-0.33556743814070294,-0.14694525427635238,-0.21578918403347727,-0.3111206519998466,-0.35669702955552113,-0.3494876351305447,-0.17484359960322302,9.846706999887957,9.846706999887957,9.58820908668126,9.58820908668126,9.15954585269158,9.15954585269158,14.49313928231696,14.49313928231696,5.0064485360913125,5.0064485360913125,5.718040894144394,6.8051089020361815,7.323303959642956,7.3420281607560725,5.447412281328653,5.965881307491358,7.011961041503767,7.64774898106684,7.541303942540651,5.633674185663239,89.39303063353718,89.39303063353718,0.0,99.32558959281909,0.0,89.39303063353718,99.32558959281909,0,0
+2017/05/05 00:00:00,39.37534012610513,0,516.8909974755982,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5789948893816966e-09,9.578019127102948,0,0,0.0,463.6554687067819,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027519659570208615,0.0008707028460162836,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.19322228212537346,-0.19322228212537346,-0.2656126794582826,-0.2656126794582826,-0.20301149982483258,-0.20301149982483258,0.6935923939421202,0.6935923939421202,0.30150753141340375,0.30150753141340375,-0.10669378947402869,-0.134929890019536,-0.2603933165296617,-0.20415296836935742,0.10659696396142214,-0.1575933961378355,-0.1792658074891889,-0.29840797859580537,-0.24369013156451386,0.06780283353548566,5.7741188604014155,5.7741188604014155,6.464865441572172,6.464865441572172,5.8546861926894564,5.8546861926894564,15.115471565916508,15.115471565916508,6.889104425322316,6.889104425322316,5.23576521783022,5.37717993058034,6.407701542488553,5.864341631049157,5.235337278739877,5.514676497768107,5.666178916242387,6.850325137667497,6.232465642441085,5.095184444472949,39.37534012610513,39.37534012610513,0.0,43.75037791789459,0.0,39.37534012610513,43.75037791789459,0,0
+2017/05/05 01:00:00,23.723973571539386,0,44.65274900998481,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5268781478615918,0,0,0.0,9.16239649744068,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002377345431880468,7.521755231823323e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.09875513249091425,-0.09875513249091425,-0.1758325077713544,-0.1758325077713544,-0.13765335738616286,-0.13765335738616286,0.6394495035145684,0.6394495035145684,0.48693743058191236,0.48693743058191236,-0.13052615407824175,-0.14350709278658488,-0.29436621441259186,-0.22368823975029928,0.23060823500839706,-0.1786446385939247,-0.18284583723510722,-0.33496445752336856,-0.2647509733340649,0.14808619793956382,5.2019711694826185,5.2019711694826185,5.640872149056008,5.640872149056008,5.392572638608456,5.392572638608456,13.58403360894367,13.58403360894367,9.953520074185391,9.953520074185391,5.352943341645016,5.4267018302405035,6.800367602522229,6.038041211649784,6.103406463631444,5.661563841250469,5.693091272511708,7.333582141785612,6.455348756050995,5.454393736735554,23.723973571539386,23.723973571539386,0.0,26.359970635043762,0.0,23.723973571539386,26.359970635043762,0,0
+2017/05/05 02:00:00,28.344232613320564,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.52486952684767,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.05842929871806873,-0.05842929871806873,-0.13437269211720518,-0.13437269211720518,-0.10425855493172566,-0.10425855493172566,0.613859653568203,0.613859653568203,0.5594412036324102,0.5594412036324102,-0.1391730775646651,-0.14708158902034624,-0.3083488702755622,-0.23116061361569604,0.260575674410441,-0.1958040303504319,-0.19518526692515153,-0.35694028568330605,-0.2805328715055135,0.16327513099679744,5.070681972696661,5.070681972696661,5.374068738339616,5.374068738339616,5.225120458408114,5.225120458408114,12.90444194282162,12.90444194282162,11.55371733642663,11.55371733642663,5.4012960591778665,5.448243664862105,6.976136224883476,6.108710706458027,6.4096794440394405,5.7949781820057495,5.789953475630625,7.651379173912289,6.6346044657008605,5.5525007587607575,28.344232613320564,28.344232613320564,0.0,31.493591792578403,0.0,28.344232613320564,31.493591792578403,0,0
+2017/05/05 03:00:00,23.722033438065626,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249380143878304,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.05859369352498136,-0.05859369352498136,-0.13482011739500135,-0.13482011739500135,-0.10734853879980921,-0.10734853879980921,0.5610651899155256,0.5610651899155256,0.5906232672533783,0.5906232672533783,-0.16183343191452523,-0.16626715557737978,-0.3330179056195758,-0.25211002240750313,0.29089305043498787,-0.22118709510820284,-0.2170576666007687,-0.3847672870217225,-0.30492090451444354,0.172930662650898,5.071080330491299,5.071080330491299,5.37656597826242,5.37656597826242,5.238669226611762,5.238669226611762,11.59216652956863,11.59216652956863,12.311968889490615,12.311968889490615,5.542775736641815,5.572960064623743,7.306421904848619,6.319333880188793,6.757989528741291,6.014909734129375,5.977293019907535,8.083293651110807,6.932280020012797,5.619866308431554,23.722033438065626,23.722033438065626,0.0,26.357814931184027,0.0,23.722033438065626,26.357814931184027,0,0
+2017/05/05 04:00:00,40.7912944636903,0,88.72588128136032,0,0,0,0.22249947606059708,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.5356110314578676,0.0,0.5250504065377157,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,704.5835723735377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.00786389643000496,0.00786389643000496,-0.06675327116106258,-0.06675327116106258,-0.041753261300575197,-0.041753261300575197,0.5957796777099572,0.5957796777099572,0.6931296181816461,0.6931296181816461,-0.16430068130100917,-0.16829955347656303,-0.33546671241286297,-0.2543415957215071,0.23242952257492297,-0.22890031238983607,-0.22458624584887454,-0.3924790161108139,-0.31245627744158266,0.1924924779067145,5.0012801404251945,5.0012801404251945,5.0922598313686365,5.0922598313686365,5.03609072638703,5.03609072638703,12.441422116447768,12.441422116447768,15.10184441921541,15.10184441921541,5.559471377242815,5.587070387490712,7.3406162099593075,6.34285667895675,6.120943945151268,6.087087020785077,6.046410267832556,8.20883826229749,7.02933988941264,5.768272890969627,40.7912944636903,40.7912944636903,0.0,45.323660515211444,0.0,40.7912944636903,45.323660515211444,0,0
+2017/05/05 05:00:00,74.37787155238802,0,212.9421150752648,0,0,0,0.031941158929644796,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,1.034850428046205,0.0,0.5250369354562923,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,124.07054203601153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2795697130736719,0.2795697130736719,0.20699469408676782,0.20699469408676782,0.2311377881182906,0.2311377881182906,0.8133585456708438,0.8133585456708438,0.7937182963579559,0.7937182963579559,-0.07228614967716658,-0.07644543901217887,-0.24187158708613254,-0.16151730768029238,0.3993661896544013,-0.14837732053764624,-0.1449997425691377,-0.3097403239182083,-0.2317359678768721,0.35899440226517837,6.623363783601988,6.623363783601988,5.888615982648716,5.888615982648716,6.108491269954442,6.108491269954442,18.95129756093165,18.95129756093165,18.28032724880866,18.28032724880866,5.1081913801152865,5.121003414338631,6.214094836676523,5.540654893243527,8.323108226805644,5.45618380072689,5.435632658989576,6.994079884242794,6.114249184353994,7.682133889265245,74.37787155238802,74.37787155238802,0.0,82.64207950265335,0.0,74.37787155238802,82.64207950265335,0,0
+2017/05/05 06:00:00,86.86092095244473,0,680.9980988286043,0,0,0,0.09628728234699345,0.0,11.110595677687485,0.0,73.80580873715317,0,1.3231632756222245,2.5207176479963916e-09,0.5250659771141022,0,0,0.0,450.3108074970674,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,379.3619054718405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03625684320146669,0.0011471412457899049,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.45301077090354536,0.45301077090354536,0.37747371250129175,0.37747371250129175,0.4044264823969544,0.4044264823969544,0.9194607863917102,0.9194607863917102,0.8416956566099213,0.8416956566099213,-0.002826875281290698,-0.008640630695575063,-0.16933424933458607,-0.09409077601378464,0.5321475116222213,-0.07328233711724477,-0.07125658262452345,-0.2322510906065049,-0.15837568678422662,0.46893390903186394,9.282741794753548,9.282741794753548,7.966893497210023,7.966893497210023,8.408360210769928,8.408360210769928,22.854128314153527,22.854128314153527,19.947996785919685,19.947996785919685,5.000165422388832,5.001545514839705,5.594320140138848,5.183335586111312,10.924623563342493,5.1111946545561295,5.10513070821608,6.119219644733036,5.519804471027996,9.591387428986536,86.86092095244473,86.86092095244473,0.0,96.51213439160526,0.0,86.86092095244473,96.51213439160526,0,0
+2017/05/05 07:00:00,145.34011999468578,0,847.6337818724576,0,0,0,0.0010450936820222212,0.0,8.668398971615169,0.0,69.33401494192633,0,39.380909295966944,0.00038432699863369716,27.097373563883124,0,0,0.19818258481044645,581.2579554435663,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7851055617815048,0.0,0.0,0.0,0.0,1.527885715002609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.10239868513803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04512865039488277,0.0014278390412298418,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.052297740371840866,-0.052297740371840866,-0.08196298550356511,-0.08196298550356511,-0.06183068910489745,-0.06183068910489745,0.8020783720171122,0.8020783720171122,0.19718701086007367,0.19718701086007367,-0.19170328500513553,-0.2537439373998494,-0.284882302717215,-0.301874851583197,0.05133475581601696,-0.22873678904366748,-0.27095532248580106,-0.305723955823131,-0.322441986552299,0.017298151867675856,5.056623924302443,5.056623924302443,5.139106342601892,5.139106342601892,5.07915228101929,5.07915228101929,18.563939308223027,18.563939308223027,5.806266628158298,5.806266628158298,5.761976248983132,6.336536287827997,6.685852540402934,6.893726981552007,5.054557589698476,6.085530950045353,6.524567642254908,6.942509387614379,7.161665724353426,5.006194212271623,145.34011999468578,145.34011999468578,0.0,161.48902221631752,0.0,145.34011999468578,161.48902221631752,0,0
+2017/05/05 08:00:00,160.01365698607268,0,881.3915682762037,0,0,0,0.5152348740340467,0.0,11.36563784648343,0.0,83.2008179303116,0,39.380909295966944,3.926178487556985e-05,25.55101777749178,0,0,0.020267510634581227,561.9581281526719,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2060.4523522474483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04692593994763564,0.0014847040298647792,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2124533478517038,-0.2124533478517038,-0.28901285729539783,-0.28901285729539783,-0.20008821229837861,-0.20008821229837861,1.0053164989353316,1.0053164989353316,0.19108876709113187,0.19108876709113187,-0.0880122358529118,-0.20745519220060263,-0.2391870016878457,-0.1591310403527027,-0.0605592773225825,-0.121069524583941,-0.22970004077263428,-0.20074289587445027,-0.15458361354614777,-0.11287584380301088,5.936192608409144,5.936192608409144,6.73526076228903,6.73526076228903,5.830207259639096,5.830207259639096,26.344041173920687,26.344041173920687,5.757091290193145,5.757091290193145,5.160404811940637,5.892581428661231,6.187229207318197,5.524780069394339,5.075930036127659,5.303622554954686,6.094713306093155,5.835658367185289,5.495184922823569,5.2638940393241,160.01365698607268,160.01365698607268,0.0,177.7929522067474,0.0,160.01365698607268,177.7929522067474,0,0
+2017/05/05 09:00:00,178.61489789962647,0,912.8530408278112,0,0,0,0.9412380082761307,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,3.202306134231115e-05,20.81919448528196,0,0,0.016533811387622378,540.1878056347102,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3887.5720157937517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04860097205000569,0.001537700877990077,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.009106050872789208,0.009106050872789208,-0.23091769922647254,-0.23091769922647254,-0.06991718628632657,-0.06991718628632657,1.0786236798612074,1.0786236798612074,0.3928593673685499,0.3928593673685499,0.023827619846670568,-0.17905238153329614,-0.14712405263680892,-0.032595741267148905,0.007229586834719428,0.053696848554003085,-0.19095680880802524,-0.12958369660848448,0.0028183984838212705,-0.043328361901423446,5.001716495218147,5.001716495218147,6.106376532258295,6.106376532258295,5.101214754639614,5.101214754639614,29.54454986753973,29.54454986753973,8.215096028817442,8.215096028817442,5.011753121750999,5.664591417243258,5.44850277049315,5.021994965106785,5.001081954038156,5.059694537948886,5.7560443784601745,5.347861168744771,5.000164431789656,5.038865294756704,178.61489789962647,178.61489789962647,0.0,198.46099766625161,0.0,178.61489789962647,198.46099766625161,0,0
+2017/05/05 10:00:00,209.71969834812901,0,979.6951019868317,0,0,0,1.1794699491799225,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,8.489812871707914e-06,18.57050102658027,0,0,0.002517755285548015,518.3180015684724,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4962.300535122575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05215969289647226,0.0016502963249392206,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3034277181191875,0.3034277181191875,-0.07978994392792652,-0.07978994392792652,0.10719037424859253,0.10719037424859253,1.1024271102740546,1.1024271102740546,0.5953352148644417,0.5953352148644417,-0.043211195730616415,-0.17204893280918007,-0.19882842909539353,-0.07685679544444181,0.020580469215377376,-0.03126057625121426,-0.17006436208712902,-0.12067930731740371,-0.025248742353517595,-0.014180406627436762,6.913332144013495,6.913332144013495,5.131825949582208,5.131825949582208,5.2379660887919215,5.2379660887919215,30.624962107580302,30.624962107580302,12.430218298007077,12.430218298007077,5.038655366604317,5.613553249088682,5.819768329466939,5.122309512095953,5.008767981846205,5.020229905354967,5.599462655616534,5.301667250537548,5.013196925683118,5.004162575538075,209.71969834812901,209.71969834812901,0.0,233.0218870534767,0.0,209.71969834812901,233.0218870534767,0,0
+2017/05/05 11:00:00,226.01065954039734,0,1054.8309119899525,0,0,0,1.2023311150354472,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.8563409734294508e-09,20.867030351203578,0,0,0.0,540.2208005580625,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5066.370453313308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05615997907463379,0.0017768625911867664,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5535768922490069,0.5535768922490069,0.05075741398639731,0.05075741398639731,0.2741501434269768,0.2741501434269768,1.07396794822949,1.07396794822949,0.789879922688663,0.789879922688663,0.0981560597030019,-0.19572134867370136,-0.1860777810224562,-0.0298463506588302,0.1567261751812022,0.1326642020415596,-0.1895242078188904,-0.07936239603032201,0.012832500274259754,0.13512602285526876,11.415827087883159,11.415827087883159,5.05333717411834,5.05333717411834,6.560843251439508,6.560843251439508,29.335529884693386,29.335529884693386,18.15110403378995,18.15110403378995,5.19952714352209,5.79430583389771,5.717846590671101,5.018440839243681,5.509021603072355,5.3646096531529395,5.744725442283254,5.130416581775819,5.003408839964081,5.378278138792538,226.01065954039734,226.01065954039734,0.0,251.12295504488594,0.0,226.01065954039734,251.12295504488594,0,0
+2017/05/05 12:00:00,212.13217046924183,0,997.4062778187997,0,0,0,7.975904211369571,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.802734212530751e-09,18.539792172520755,0,0,0.0,518.2865188994539,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4601.404608176146,4769.982985283668,266.9563943135598,0.0,0.0,0.0,8596.379547128754,780.043543839797,0.0,0.0,0.0,7906.185123717371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05310264901655225,0.0016801307992839153,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7572670501713288,0.7572670501713288,0.1884624876388734,0.1884624876388734,0.42251009752180735,0.42251009752180735,1.0306263928925277,1.0306263928925277,0.8900296768737683,0.8900296768737683,0.3090705437606082,-0.03811686621906413,0.004334702438319441,0.07564219295561381,0.2973115856593253,0.35258915189462026,-0.018616429254777498,0.07805040002360943,0.12170325248287006,0.2965059654402547,17.078440125992884,17.078440125992884,5.736392148768033,5.736392148768033,8.721981052193627,8.721981052193627,27.426827520418072,27.426827520418072,21.725137438618532,21.725137438618532,6.985432424349341,5.030077624678341,5.000388955379407,5.118473255245533,6.836705124329129,7.586826088052547,5.007174313741956,5.126139044600691,5.306811529426,6.826729634946233,212.13217046924183,212.13217046924183,0.0,235.7024116324909,0.0,212.13217046924183,235.7024116324909,0,0
+2017/05/05 13:00:00,210.66711727191162,0,959.7203489641229,0,0,0,9.077856859718294,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.7482077603331155e-09,16.367036142816783,0,0,0.0,516.0909425573213,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4454.233805720169,7197.995170344955,397.7968694160073,0.0,0.0,0.0,9007.308243223368,1166.1093354083107,0.0,0.0,0.0,8331.888385757273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05109622225011051,0.0016166488549885258,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8306350646497775,0.8306350646497775,0.3458675064877192,0.3458675064877192,0.5193365298006781,0.5193365298006781,1.0325789660481874,1.0325789660481874,0.9244193289171073,0.9244193289171073,0.38032783224255684,0.08930696952740655,0.08393739948292708,0.13803076622984775,0.3409931145961785,0.42819969901296356,0.13591980193402917,0.1784216967770926,0.19482614018188266,0.34588440798992426,19.55495752478683,19.55495752478683,7.48868734704358,7.48868734704358,10.640470294752745,10.640470294752745,27.51134949458377,27.51134949458377,23.04778295590539,23.04778295590539,8.012172734156792,5.165160590793903,5.145891084564866,5.39473005256302,7.4187207473246986,8.823554176711085,5.382739096628768,5.659911386499402,5.78704450527573,7.488931706549451,210.66711727191162,210.66711727191162,0.0,234.07457474656846,0.0,210.66711727191162,234.07457474656846,0,0
+2017/05/05 14:00:00,186.4118525266107,0,900.5024426243345,0,0,0,0.8517254807236239,0.0,16.630907673226492,0.0,115.5196477718057,0,39.380909295966944,2.6927523729792567e-09,14.028662302195206,0,0,0.0,492.3633887300771,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3486.5238039406363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04794341705348217,0.0015168962962537151,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6904720840536164,0.6904720840536164,0.3997346869866122,0.3997346869866122,0.4091471716887269,0.4091471716887269,1.003019662935416,1.003019662935416,0.882108846601687,0.882108846601687,0.2131789679345045,0.010413777673196702,0.006312067520926016,0.040804354956689035,0.23670847933751932,0.291240746339522,0.08143511602035375,-0.008813479203832663,0.10913218975211368,0.22777303158187814,15.023768366593771,15.023768366593771,8.329279402182337,8.329279402182337,8.48887900496031,8.48887900496031,26.246968439469597,26.246968439469597,21.427309846703963,21.427309846703963,5.94261091529593,5.002244913204848,5.0008247548626485,5.034468812726786,6.162694383243945,6.7622090162876844,5.137319800272962,5.001607966954566,5.246670559963022,6.076382719233905,186.4118525266107,186.4118525266107,0.0,207.124280585123,0.0,186.4118525266107,207.124280585123,0,0
+2017/05/05 15:00:00,179.710838271837,0,900.4584768272031,0,0,0,0.737723653833739,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,2.6927523729792567e-09,14.100130063898183,0,0,0.0,492.3194229329456,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2991.043809189479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04794107628187714,0.0015168222358717843,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5445713964293173,0.5445713964293173,0.4779892073897315,0.4779892073897315,0.3577217233542567,0.3577217233542567,0.9851657530479021,0.9851657530479021,0.849241809390575,0.849241809390575,0.05507201948727382,-0.011107155690787424,-0.20637840698099835,-0.126179730353255,0.12504925938027456,0.11139920124303702,0.0588024601631462,-0.13907868749820956,-0.07972971460350124,0.10462704975921487,11.206979322684163,11.206979322684163,9.771783224218083,9.771783224218083,7.663057873112052,7.663057873112052,25.49923146681222,25.49923146681222,20.219080705223462,20.219080705223462,5.062791652433717,5.002553812224491,5.883322890853194,5.3298129875884115,5.323925675706519,5.257030907156803,5.071587823239014,5.400751447095885,5.131626951049711,5.2267153907123145,179.710838271837,179.710838271837,0.0,199.67870919093,0.0,179.710838271837,199.67870919093,0,0
+2017/05/05 16:00:00,202.67506607447754,0,961.0407044214863,0,0,0,0.7535766283844096,0.0,16.840460162178484,0.0,131.64086955684016,0,39.380909295966944,3.3773372483294817e-06,14.059247053770244,0,0,0.0,499.6661217584127,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3058.838464289677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051166518952656635,0.0016188729936562412,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.46750369165620986,0.46750369165620986,0.6663120397954493,0.6663120397954493,0.3540395766439689,0.3540395766439689,0.9876757844929297,0.9876757844929297,0.8802039572606728,0.8802039572606728,-0.045448567067444226,0.0526286945161854,-0.267585226790325,-0.12096496013929564,0.08781826717601271,-0.010099766043673856,0.1323232483187759,-0.2041809939695976,-0.09067602814395093,0.06120803873801996,9.56321846359046,9.56321846359046,14.327976776602128,14.327976776602128,7.608254960024766,7.608254960024766,25.603618397619442,25.603618397619442,21.356068304771142,21.356068304771142,5.042762341714436,5.057342943887946,6.486767976945444,5.303097981742198,5.15969832167788,5.002111569853753,5.362736489053205,5.864579379230747,5.170265030865508,5.077565875880936,202.67506607447754,202.67506607447754,0.0,225.1945178605306,0.0,202.67506607447754,225.1945178605306,0,0
+2017/05/05 17:00:00,209.387589173548,0,993.0829247826586,0,0,0,0.7464013138334834,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,2.8027342125307515e-09,18.566692852378313,0,0,0.0,531.7083421195848,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3028.0351746350775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05287247049857169,0.0016728481114226727,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.41768184467146263,0.41768184467146263,0.7387136485678801,0.7387136485678801,0.3947679811046983,0.3947679811046983,0.9877570058181478,0.9877570058181478,0.9056352071108629,0.9056352071108629,-0.06874027780325279,0.12296776705346377,-0.21921204000710026,-0.0689731039387299,0.13309827444928768,-0.04796454790089205,0.20960232379522817,-0.1565472803562212,-0.027665997249836063,0.10201217018552118,8.636874182099731,8.636874182099731,16.48848224512676,16.48848224512676,8.246591066548334,8.246591066548334,25.607000257067142,25.607000257067142,22.3194015547504,22.3194015547504,5.097835246074737,5.313224561275803,5.996828976999737,5.0984992535084785,5.367001397806135,5.0476284418673885,5.911187999199456,5.507858980955305,5.015844860582135,5.215519518667875,209.387589173548,209.387589173548,0.0,232.65287685949778,0.0,209.387589173548,232.65287685949778,0,0
+2017/05/05 18:00:00,193.7510107353661,0,987.8629813405399,0,0,0,0.6318996496213922,0.0,17.250223901202155,0.0,110.93442390708215,0,39.380909295966944,2.912603967635576e-05,25.553524855453787,0,0,0.015041451740919098,561.9637097382692,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2540.41359415549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05259455684326638,0.0016640551170906109,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.25347233539113834,0.25347233539113834,0.419779613497626,0.419779613497626,0.2918007126418896,0.2918007126418896,0.9807149982357405,0.9807149982357405,0.7973450416819604,0.7973450416819604,-0.001853793679053804,0.10409456800342626,-0.10965843583110432,-0.0673389579401375,0.13300426544832705,0.011848022481552886,0.03328500171736222,-0.19490923513511857,-0.028837911795716487,0.0984311460565347,6.333668990794024,6.333668990794024,8.673728425825658,8.673728425825658,6.769015258771773,6.769015258771773,25.31472905939495,25.31472905939495,18.402999617882884,18.402999617882884,5.000071138335045,5.224412497193228,5.249056504859595,5.093886220936483,5.36648274213195,5.0029058641930675,5.022935045489675,5.787717105109593,5.017215699461545,5.200647558463331,193.7510107353661,193.7510107353661,0.0,215.27890081707343,0.0,193.7510107353661,215.27890081707343,0,0
+2017/05/05 19:00:00,189.7190172372986,0,971.6732773456757,0,0,0,0.5446079598464794,0.0,21.007647839939434,0.0,101.68988858149199,0,39.380909295966944,4.442951412288719e-05,27.095919130539613,0,0,0.022950276089955576,581.2564494316005,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2174.87708113495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051732605010758125,0.0016367835619400394,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.13028164037822246,0.13028164037822246,0.13646640157334322,0.13646640157334322,0.17875796677570804,0.17875796677570804,0.9711445652268622,0.9711445652268622,0.6972316556975358,0.6972316556975358,0.03192443034074093,-0.0009993854194730437,-0.10187006044304846,-0.04926387062090143,0.10085176994708084,0.046633191606790914,0.022250325394055866,-0.13136442289022715,-0.040791978641114,0.060679020164666836,5.351621260624313,5.351621260624313,5.385826170796577,5.385826170796577,5.662404630167998,5.662404630167998,24.920583575324656,24.920583575324656,15.22295767155967,15.22295767155967,5.021098278579956,5.000020675064505,5.214919194521926,5.050244112984942,5.210642085858439,5.045020829482652,5.010248568914676,5.357494719015435,5.034447904956863,5.076230652862122,189.7190172372986,189.7190172372986,0.0,210.79890804144287,0.0,189.7190172372986,210.79890804144287,0,0
+2017/05/05 20:00:00,207.95642183457068,0,896.6220437410543,0,0,0,0.38710521949241605,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,4.5009287739096075e-05,23.09751764208746,0,0,0.023255894702285076,541.6952627209108,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1526.9423695381251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047736821742699005,0.0015103597646293468,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.0022788722228023086,-0.0022788722228023086,-0.05996105912295013,-0.05996105912295013,0.048262962162285185,0.048262962162285185,0.954317070322296,0.954317070322296,0.5920994430688084,0.5920994430688084,0.000450102382861122,0.02617747516926022,-0.11006774061136416,-0.10290588619983214,0.044775855144738974,0.008436673401995129,0.0571238456238261,-0.08991262387432945,-0.055724475039230746,-0.00232876768913918,5.0001075030748865,5.0001075030748865,5.0744370972081185,5.0744370972081185,5.048222993818641,5.048222993818641,24.236203728106133,24.236203728106133,12.34891083768538,12.34891083768538,5.00000419375894,5.014185665453752,5.250920202076131,5.219314122245123,5.041505694575122,5.001473413682788,5.067558384541599,5.167409139301924,5.064288498784833,5.000112262129193,207.95642183457068,207.95642183457068,0.0,231.06269092730074,0.0,207.95642183457068,231.06269092730074,0,0
+2017/05/05 21:00:00,194.92344764444752,0,881.4373409559909,0,0,0,0.16454236948038445,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.00012684938125616632,25.43682237680703,0,0,0.06557626226603522,561.9585920808277,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,637.8556753411876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046928376919011645,0.0014847811339404068,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.17565031275304366,-0.17565031275304366,-0.2718011287396292,-0.2718011287396292,-0.11500803365149273,-0.11500803365149273,0.9337463106802985,0.9337463106802985,0.42727259482504415,0.42727259482504415,-0.08147909634607699,-0.06862556159350362,-0.17011661362086328,-0.1606813888986221,0.03091493422511571,-0.086426576864167,-0.04148125797697707,-0.14496998738505304,-0.151119462984082,-0.022522651025270818,5.639542939955021,5.639542939955021,6.53412948979549,6.53412948979549,5.273963844686449,5.273963844686449,23.414713175497383,23.414713175497383,8.806908403075198,8.806908403075198,5.137468207700948,5.097508908052475,5.599831539423761,5.535066873863855,5.019785003291176,5.154675155154536,5.035621992872848,5.435453721654881,5.473217954173549,5.010500977934186,194.92344764444752,194.92344764444752,0.0,216.58160849383057,0.0,194.92344764444752,216.58160849383057,0,0
+2017/05/05 22:00:00,138.90103264298705,0,700.2528082767798,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.0006224394459464795,20.859469129916313,0,0,0.32240973198933376,540.2238122383418,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,133.44729162853028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03728197819457919,0.0011795758023939486,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42170086818279245,-0.42170086818279245,-0.33130628796380457,-0.33130628796380457,-0.36389990223928903,-0.36389990223928903,0.7926248114884437,0.7926248114884437,0.11950380004153843,0.11950380004153843,-0.10817011693560072,-0.15616212576803376,-0.22940674706413144,-0.2550441516602152,-0.06261860321651436,-0.12837529815788815,-0.16789297352591342,-0.21616184112373626,-0.2662513084186176,-0.09051039079801956,8.707647157853131,8.707647157853131,7.282672586125273,7.282672586125273,7.75630706357552,7.75630706357552,18.24345018941058,18.24345018941058,5.295815252966037,5.295815252966037,5.242338355795056,5.505360420089573,6.091913314554773,6.350305598344846,5.081182779749213,5.341398957173283,5.58423384318408,5.969226868943551,6.471938635674178,5.169643328312702,138.90103264298705,138.90103264298705,0.0,154.33448071443004,0.0,138.90103264298705,154.33448071443004,0,0
+2017/05/05 23:00:00,90.78395000470836,0,548.3182386033016,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.010919363721178636,11.830074379694606,0,0,5.780260578186598,489.30244925629876,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,206.32775082827862,0.0,0.0,0.0,871.7236330157349,0.0,0.0,0.0,0.0,0.0,262.62871644580275,0.0,0.0,0.0,940.0164239731866,0.0,422.3327986143073,0,0,0,0,0,0,0,0,0.02919286916621456,0.0009236420313106128,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47122099307160625,-0.47122099307160625,-0.47143909971793896,-0.47143909971793896,-0.4401480240577764,-0.4401480240577764,0.6048621611849567,0.6048621611849567,-0.19005543902300928,-0.19005543902300928,-0.1497859080845277,-0.23960971196798428,-0.303979318602676,-0.30813622676595437,-0.16563111828614313,-0.19447812562109063,-0.2606818813848617,-0.30707391014957097,-0.33294544454028585,-0.19816430656869216,9.636616080784464,9.636616080784464,9.640941064275424,9.640941064275424,9.041383957196729,9.041383957196729,12.672246961218235,12.672246961218235,5.748912679816101,5.748912679816101,5.464894816364236,6.1914393491674105,6.920320726299593,6.973401272551669,5.568579636669355,5.784230688563184,6.410832037736512,6.959766755358345,7.30541396049469,5.814291932702773,90.78395000470836,90.78395000470836,0.0,100.87105556078706,0.0,90.78395000470836,100.87105556078706,0,0
+2017/05/06 00:00:00,40.729020622225136,0,516.6272702464433,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.579017817373732e-09,9.54338655484606,0,0,0.0,463.39174147762714,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027505618537183897,0.000870258597518789,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.22921988810276342,-0.22921988810276342,-0.16027574031572805,-0.16027574031572805,-0.23093428182543116,-0.23093428182543116,0.6610761078189779,0.6610761078189779,0.18064846878236776,0.18064846878236776,-0.01936942097137523,-0.051808653564237216,-0.21765732039221233,-0.17659009212897525,0.12572340261250417,-0.0765097536100647,-0.09492810945601486,-0.24283082129895692,-0.22105948286622581,0.056305281236801445,6.090131306896623,6.090131306896623,5.532365656100822,5.532365656100822,6.106535796397694,6.106535796397694,14.180516910043977,14.180516910043977,5.676509451021914,5.676509451021914,5.007766429969962,5.055569659593999,5.982711178633991,5.646413983603523,5.327430111162116,5.121207156853501,5.186614501728911,6.22376764039295,6.013736560608834,5.065635808899387,40.729020622225136,40.729020622225136,0.0,45.25446735802793,0.0,40.729020622225136,45.25446735802793,0,0
+2017/05/06 01:00:00,23.722193155218648,0,43.625000804689535,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525097731540856,0,0,0.0,8.134648292145398,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0023226273561706,7.34863105444181e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.13544984061533105,-0.13544984061533105,-0.10500599739457392,-0.10500599739457392,-0.16097215468328463,-0.16097215468328463,0.6053774890306728,0.6053774890306728,0.41631028302737505,0.41631028302737505,-0.05670444959158107,-0.0659423829468046,-0.2619775668445448,-0.20776720062325885,0.25129066971578,-0.11058725916209058,-0.09389510648885666,-0.2839087640763655,-0.24657443611268792,0.15009846677518865,5.38009479630594,5.38009479630594,5.22836144550304,5.22836144550304,5.537007305787753,5.537007305787753,12.68545098313865,12.68545098313865,8.612880163113033,8.612880163113033,5.066569873727431,5.090031552027213,6.424931475393819,5.895273242472612,6.310749718639542,5.253295759200441,5.182573557484744,6.674312283459187,6.2618875973077195,5.466838949066201,23.722193155218648,23.722193155218648,0.0,26.357992394687386,0.0,23.722193155218648,26.357992394687386,0,0
+2017/05/06 02:00:00,28.34449792402595,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251348375530553,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.08666642390588412,-0.08666642390588412,-0.0707473410774985,-0.0707473410774985,-0.12097759175529002,-0.12097759175529002,0.5899727234935498,0.5899727234935498,0.5022017112686511,0.5022017112686511,-0.06441528219012685,-0.06067361306959381,-0.2706075763876677,-0.2106835753932737,0.28131614112240627,-0.13017379009562527,-0.1018814070242114,-0.3054894176065804,-0.26220470743237567,0.172845344958447,5.155535128599254,5.155535128599254,5.103633090911899,5.103633090911899,5.303161327213971,5.303161327213971,12.295718767568403,12.295718767568403,10.271512842653536,10.271512842653536,5.085909150652682,5.076217065434591,6.5206451136736945,5.920630946802177,6.643774579049079,5.351038906342225,5.214967095881661,6.939518990225977,6.427410461668373,5.619254028600807,28.34449792402595,28.34449792402595,0.0,31.493886582251058,0.0,28.34449792402595,31.493886582251058,0,0
+2017/05/06 03:00:00,23.722317010972347,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525221587294557,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.10150580358758997,-0.10150580358758997,-0.09233136904627115,-0.09233136904627115,-0.1399635226452137,-0.1399635226452137,0.5145360345172713,0.5145360345172713,0.5646759159977744,0.5646759159977744,-0.12019378237035333,-0.1100818399745116,-0.3261849078754073,-0.26226206039690086,0.3252568272037524,-0.1818604901846373,-0.14657151434547633,-0.35918226674843073,-0.3104065670195232,0.18236776367826185,5.2133842674194,5.2133842674194,5.176540717305542,5.176540717305542,5.405871323478891,5.405871323478891,10.535822659107254,10.535822659107254,11.678063248155368,11.678063248155368,5.299243213044747,5.25098452501463,7.21235397006032,6.428036748739615,7.199730118921536,5.685630697127721,5.445137144612218,7.6849556061535225,7.002700515108302,5.689466465744999,23.722317010972347,23.722317010972347,0.0,26.358130012191495,0.0,23.722317010972347,26.358130012191495,0,0
+2017/05/06 04:00:00,37.92695925424039,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,0.2855013445598575,0.0,0.5775594976174467,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.05488802902061662,-0.05488802902061662,-0.05058672565440889,-0.05058672565440889,-0.09487303882417919,-0.09487303882417919,0.5204080879975863,0.5204080879975863,0.6961514191769674,0.6961514191769674,-0.14844726972044203,-0.1356919333197708,-0.35503998254254465,-0.2889600501051323,0.279915668095832,-0.2226714872184019,-0.18444053793476786,-0.40005424857874,-0.3498297397994645,0.20071957629077153,5.062372734724278,5.062372734724278,5.052979009007302,5.052979009007302,5.186397956640334,5.186397956640334,10.66396568370699,10.66396568370699,15.190993036498455,15.190993036498455,5.456614432339592,5.381455815873082,7.62308732498812,6.734624556238813,6.627396799471384,6.028606291612391,5.705251484367068,8.33463576061932,7.546305067068232,5.835463892886111,37.92695925424039,37.92695925424039,0.0,42.141065838044874,0.0,37.92695925424039,42.141065838044874,0,0
+2017/05/06 05:00:00,73.00180387593632,0,212.9421150752648,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,0.6127379648291553,0.0,0.5250587219074142,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1716003938997222,0.1716003938997222,0.17228093885086768,0.17228093885086768,0.1325775167207155,0.1325775167207155,0.7175768928922592,0.7175768928922592,0.8550432271415764,0.8550432271415764,-0.12076849996078541,-0.10746552478801097,-0.3263773563350357,-0.2619799673296128,0.39214759979918057,-0.21028220191830035,-0.17153977359964043,-0.38572711597518833,-0.3379164959699313,0.29523534860852163,5.610354220833784,5.610354220833784,5.615211234769546,5.615211234769546,5.36413295469211,5.36413295469211,15.834386173673408,15.834386173673408,20.429098811604746,20.429098811604746,5.302113619955691,5.239189968982444,7.214976246821436,6.424957662657832,8.203390644478858,5.917119900247201,5.609922514059704,8.098780942791464,7.375078904462384,6.811052126197225,73.00180387593632,73.00180387593632,0.0,81.11311541770702,0.0,73.00180387593632,81.11311541770702,0,0
+2017/05/06 06:00:00,88.9935542420004,0,680.7467162491143,0,0,0,0.0,0.0,7.051016521147322,0.0,80.56906512710079,0,0.848359237077048,2.520740345403187e-09,0.5251133541544873,0,0,0.0,450.0594249175776,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03624345940673388,0.0011467177918538336,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.35325925248694323,0.35325925248694323,0.35302043477046097,0.35302043477046097,0.3165602686856409,0.3165602686856409,0.8694436433395352,0.8694436433395352,0.9190944557189665,0.9190944557189665,-0.07227207618631037,-0.05569999048899408,-0.2740253121782164,-0.06635198342382839,0.5004963470719713,-0.1648191209396667,-0.12210951678572303,-0.3364143785743504,-0.11841018308370153,0.38359507488048494,7.59671516727154,7.59671516727154,7.593188598892638,7.593188598892638,7.083212720527584,7.083212720527584,20.956440457631587,20.956440457631587,22.83986052547769,22.83986052547769,5.108149246532207,5.064232008428775,6.55941777882957,5.091153706684906,10.235486443181756,5.5630118734937355,5.3088646674419095,7.353917421859279,5.2904224910613635,8.064432823442928,88.9935542420004,88.9935542420004,0.0,98.881726935556,0.0,88.9935542420004,98.881726935556,0,0
+2017/05/06 07:00:00,118.64005232988283,0,726.9386925959385,0,0,0,0.10039832648954577,0.0,5.864357105269638,0.0,69.33401494192633,0,39.380909295966944,0.003374039285331848,0.5250234184907605,0,0,1.8353602045573214,458.9256885473002,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,393.90168290860447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,464.3772041768432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,442.8548957809404,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03870275444214363,0.0012245281725041474,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.22779073932430052,0.22779073932430052,0.21982472692692176,0.21982472692692176,0.15914345284344655,0.15914345284344655,1.0890199922352863,1.0890199922352863,0.7401393715663269,0.7401393715663269,-0.1169972493585229,-0.15206688412383257,-0.29457158473453426,-0.060688054415566156,0.3551956458904542,-0.1806092930479871,-0.19423983364370057,-0.3305068337680816,-0.06217816934960933,0.2526814167840174,6.0765504543390705,6.0765504543390705,6.002420366277789,6.002420366277789,5.5248620304256235,5.5248620304256235,30.014024384933563,30.014024384933563,16.533293697801298,16.533293697801298,5.283528722035626,5.479176109801315,6.8028894008511855,5.076253357631572,7.625399072863345,5.676215651459714,5.782306936473276,7.271622463643297,5.080044585708734,6.325336948170531,118.64005232988283,118.64005232988283,0.0,131.8222803665365,0.0,118.64005232988283,131.8222803665365,0,0
+2017/05/06 08:00:00,141.47445024683563,0,778.4921918531437,0,0,0,0.9463413272236529,0.0,11.435487997441953,0.0,87.89947186453183,0,39.380909295966944,0.0002388166797632988,0.5250102440711756,0,0,0.1309087531365489,458.94811048711006,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3933.473306933629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04144750092861783,0.0013113700380900652,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.04602507539477819,0.04602507539477819,-0.0699074860784064,-0.0699074860784064,-0.06834006755408678,-0.06834006755408678,1.1617950812657263,1.1617950812657263,0.39675704981733584,0.39675704981733584,-0.09231075965468405,-0.2083012002395858,-0.26778655726201606,-0.014855946778155594,0.08393970212914152,-0.1382458461306503,-0.20186797040531884,-0.29101425396637914,0.05235275941020942,0.030801826543586645,5.043854193969096,5.043854193969096,5.101186665684196,5.101186665684196,5.096699119329955,5.096699119329955,33.40196456597852,33.40196456597852,8.279579477152168,8.279579477152168,5.1764618845216575,5.899889711693476,6.489012702595659,5.004568628145691,5.145899091618219,5.395962182997081,5.84506797715153,6.759459822847276,5.056743142271543,5.0196404882043595,141.47445024683563,141.47445024683563,0.0,157.19383360759514,0.0,141.47445024683563,157.19383360759514,0,0
+2017/05/06 09:00:00,182.94907096447852,0,914.3770448048418,0,0,0,1.2238898684452983,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,0.0002671491956263767,23.154492962603396,0,0,0.14663473364158308,541.5817086894868,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5180.330169581568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04868211115058271,0.0015402680625737153,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.05740804889794611,-0.05740804889794611,-0.36393045209465197,-0.36393045209465197,-0.21653768600444068,-0.21653768600444068,1.1680975655385184,1.1680975655385184,0.24767593014973321,0.24767593014973321,0.028682952155137484,-0.2096443931631995,-0.2322681873643313,0.11100011936393094,0.014969084974687092,0.008512813071125199,-0.1712067192225836,-0.23803587486886077,0.17470491210713068,0.023194296570962055,5.068232390839654,5.068232390839654,7.756772201396302,7.756772201396302,5.972606941017162,5.972606941017162,33.70337157073297,33.70337157073297,6.273215855753378,6.273215855753378,5.017031173663753,5.911554490613241,6.119384803599502,5.255191603293042,5.004638480279709,5.001500128436092,5.607553405874896,6.17580216044351,5.632667984145087,5.011136628716102,182.94907096447852,182.94907096447852,0.0,203.27674551608723,0.0,182.94907096447852,203.27674551608723,0,0
+2017/05/06 10:00:00,209.1267745261552,0,1001.5255717267825,0,0,0,1.1713787447952448,0.0,14.932575465546352,0.0,131.64086955684016,0,39.380909295966944,0.00011737017131929684,20.85693235868364,0,0,0.0644866773343086,540.0865023863744,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4926.404688458985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053321963275401715,0.0016870697495592632,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.07083083354114746,0.07083083354114746,-0.3379132889148038,-0.3379132889148038,-0.13603951127079458,-0.13603951127079458,1.1091351289610496,1.1091351289610496,0.36560546011384476,0.36560546011384476,0.12894792167189356,-0.23224535483103897,-0.22642504797634377,0.10456912130781551,-0.010817275669379388,0.1312370295481756,-0.219846243058181,-0.2227254427202535,0.17828509889548633,-0.01812994082993728,5.103877895239705,5.103877895239705,7.3750336221408475,7.3750336221408475,5.383414125553159,5.383414125553159,30.932929835459802,30.932929835459802,7.782335947864894,7.782335947864894,5.344453634774197,6.119164238485126,6.063652657605019,5.226464289252661,5.002422249715181,5.356801154223078,6.002617008679991,6.0291058810772284,5.658899941853079,5.006804246227361,209.1267745261552,209.1267745261552,0.0,232.36308280683912,0.0,209.1267745261552,232.36308280683912,0,0
+2017/05/06 11:00:00,215.0397034091763,0,1056.2066813177585,0,0,0,1.1401048622024081,0.0,14.932575465546352,0.0,136.4899973586286,0,39.380909295966944,2.4989135253854114e-05,23.09609143769666,0,0,0.012514293776931891,541.5840555920917,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4779.886446875236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.056233226052687685,0.0017791800745150363,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.32785272835926044,0.32785272835926044,-0.20611237067710694,-0.20611237067710694,0.020671373668872742,0.020671373668872742,1.0885366521780024,1.0885366521780024,0.5456614686972908,0.5456614686972908,0.021619082907405593,-0.1325000311150485,-0.1776129629622534,0.07912972564267105,-0.009686375349623941,0.05773224265793239,-0.15480969759410282,-0.14577747134923694,-0.02129704789624704,-0.025926753993388757,7.2351316483241845,7.2351316483241845,5.881042902071883,5.881042902071883,5.008845611195596,5.008845611195596,29.99211472568723,29.99211472568723,11.232072359678554,11.232072359678554,5.009675301039181,5.363707111695675,5.653934427858488,5.1296527929295905,5.001942250555288,5.069005323688572,5.496635949842698,5.440322721246332,5.009389198015285,5.013915225223386,215.0397034091763,215.0397034091763,0.0,238.93300378797366,0.0,215.0397034091763,238.93300378797366,0,0
+2017/05/06 12:00:00,202.91992123220075,0,1040.0735912792113,0,0,0,0.857605871333288,0.0,14.783782912797726,0.0,124.80122689546741,0,39.380909295966944,2.4199703489819326e-05,23.096372056931838,0,0,0.01330119915198869,560.9405311607136,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3511.844903515969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05537428838914809,0.0017520038855695845,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.36594288469107916,0.36594288469107916,-0.25462917202532576,-0.25462917202532576,0.0027992028559324575,0.0027992028559324575,1.029636256723113,1.029636256723113,0.5361398480932156,0.5361398480932156,-0.08679979930741974,-0.13302322172292724,-0.13617357736811342,0.011226388906855832,-0.0692503177020707,-0.046113110406093144,-0.1417638418361707,-0.1224844077868057,-0.038762193027082434,-0.0863225226359274,7.787500142691272,7.787500142691272,6.345903225817551,6.345903225817551,5.000162199583087,5.000162199583087,27.384020712107286,27.384020712107286,11.014627689995677,11.014627689995677,5.156014379651253,5.366587295927275,5.384170818515813,5.002608936210748,5.099292782609709,5.044022135683136,5.416389003283967,5.310765340141074,5.031104756517351,5.154302810136812,202.91992123220075,202.91992123220075,0.0,225.46657914688973,0.0,202.91992123220075,225.46657914688973,0,0
+2017/05/06 13:00:00,198.18107118214056,0,965.5921162103301,0,0,0,0.7674524529538169,0.0,14.728125842506467,0.0,122.5097643007467,0,39.380909295966944,3.076702056297602e-05,20.794788522945996,0,0,0.016913785351211522,521.9457960181774,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3119.637890198899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05140883948755573,0.0016265398464691023,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.36478994268619136,0.36478994268619136,-0.19236862282062261,-0.19236862282062261,0.01027092757560614,0.01027092757560614,1.0134815414511864,1.0134815414511864,0.5227696527218582,0.5227696527218582,-0.08926926347827022,-0.11597527864949504,-0.07387338792432965,0.012581467158102317,-0.07486180437416332,-0.04940464308228777,-0.07824045865807823,-0.18225507025362797,0.02492061225644249,-0.09211569117193387,7.769874698876308,7.769874698876308,5.767282980814642,5.767282980814642,5.002183746527805,5.002183746527805,26.69073544894391,26.69073544894391,10.715921672193332,10.715921672193332,5.165021106790292,5.278594177578626,5.112995983599362,5.003276774086231,5.116040717187786,5.05053170173764,5.126754276742318,5.688613401625105,5.012856133237378,5.175716602844432,198.18107118214056,198.18107118214056,0.0,220.2011902023784,0.0,198.18107118214056,220.2011902023784,0,0
+2017/05/06 14:00:00,182.16077878518226,0,944.9370590514338,0,0,0,0.6384980560454259,0.0,14.78378283874635,0.0,108.75639138185811,0,39.380909295966944,2.247740733183982e-05,18.601174735158054,0,0,0.012357993281932473,536.7856471638944,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2567.7774432645433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05030914894507756,0.0015917464042526338,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2739906331416179,0.2739906331416179,-0.06287850288376319,-0.06287850288376319,-0.02104421083754089,-0.02104421083754089,0.9925716747856104,0.9925716747856104,0.48879180007206974,0.48879180007206974,0.02290116396061645,-0.06370738467616868,-0.16645188667606875,-0.03270898807188816,-0.14223289449843185,0.016601627502169845,0.005885454454985406,-0.18023972794972865,0.005286558866720376,-0.16355355933410837,6.55902188866132,6.55902188866132,5.0818581989127125,5.0818581989127125,5.009167581146926,5.009167581146926,25.807922462659533,25.807922462659533,9.991614242904149,9.991614242904149,5.010856908503541,5.084030972629563,5.574235480135144,5.022148071382745,5.419151414979723,5.005705418983325,5.00071703691988,5.673447240361185,5.000578532186552,5.554388887387063,182.16077878518226,182.16077878518226,0.0,202.40086531686916,0.0,182.16077878518226,202.40086531686916,0,0
+2017/05/06 15:00:00,180.19877274933737,0,926.3405900478178,0,0,0,0.5902538359467511,0.0,14.876918321203716,0.0,106.31215624428707,0,39.380909295966944,4.4280532301919403e-05,18.609493871093793,0,0,0.024350970284615702,518.1771851832757,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2364.189297790231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04931905916079648,0.0015604206536274908,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1613949616303534,0.1613949616303534,0.11524885017288101,0.11524885017288101,-0.03681044598001297,-0.03681044598001297,0.9784439827387786,0.9784439827387786,0.47283539942192526,0.47283539942192526,0.03651045916570221,-0.009980750082977677,-0.1783897835903401,-0.06102603450091078,-0.19071840124350442,0.050244936792389616,0.08124243935462433,-0.1854867364470199,-0.016960021557270916,-0.1330133872996391,5.539835204793306,5.539835204793306,5.275113031993357,5.275113031993357,5.028051068685286,5.028051068685286,25.220879927374668,25.220879927374668,9.66867781643738,9.66867781643738,5.027595699955356,5.002062097240994,5.659675014269382,5.0771051953122,5.754154779501235,5.052265442211791,5.1366705767587035,5.713286845792354,5.005954417013825,5.366533052059921,180.19877274933737,180.19877274933737,0.0,200.22085861037485,0.0,180.19877274933737,200.22085861037485,0,0
+2017/05/06 16:00:00,191.52367207434753,0,956.4479393827409,0,0,0,0.6889531337305679,0.0,14.970053882089037,0.0,120.17895923267236,0,39.380909295966944,2.905541006244006e-05,16.30476747447853,0,0,0.01598095430929472,495.0573757653579,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2781.112434355674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050921996740102136,0.0016111364812970593,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.15041418326771677,0.15041418326771677,0.34847723300361294,0.34847723300361294,0.028941728191385945,0.028941728191385945,0.9816013755149402,0.9816013755149402,0.5533520971844634,0.5533520971844634,0.0007848441876176629,-0.06211870569642372,-0.20208405592348,-0.057054338059418626,-0.17409695348145368,0.023665850448394865,0.02644786889380897,-0.13385152429910974,-0.016414245604966994,-0.16448144597779363,5.468806853697373,5.468806853697373,7.5265622382043205,7.5265622382043205,5.0173398801775875,5.0173398801775875,25.351412316772738,25.351412316772738,11.410571051777708,11.410571051777708,5.000012751102602,5.079891532360165,5.846881278837557,5.067394052273741,5.62826661067804,5.01159407195928,5.014480242833059,5.3711704141591525,5.0055773506121,5.560704571892472,191.52367207434753,191.52367207434753,0.0,212.80408008260835,0.0,191.52367207434753,212.80408008260835,0,0
+2017/05/06 17:00:00,213.82428721894175,0,999.9026630891964,0,0,0,0.6270506307923982,0.0,16.798297355077125,0.0,138.40412594678773,0,39.380909295966944,2.6353985015472508e-05,18.613877636332443,0,0,0.014496950402494652,538.51358347572,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2518.048703932339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05323555841743739,0.0016843359600824264,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.0937759005430707,0.0937759005430707,0.4179846767469915,0.4179846767469915,0.06567268477047081,0.06567268477047081,0.9714411262565897,0.9714411262565897,0.578186394779948,0.578186394779948,-0.0177383485060744,-0.07940084333459867,-0.2203545068800224,-0.09321214020137121,-0.20250619791984045,0.016729848723596175,0.003115042066371351,-0.08010335187372578,-0.05188713482165017,-0.21813554587692555,5.182110092608525,5.182110092608525,8.642182776653883,8.642182776653883,5.089296475089753,5.089296475089753,24.932743792633673,24.932743792633673,12.004485204917941,12.004485204917941,5.006513483844586,5.130543009172371,6.007267826494129,5.1799262183807,5.8504293576398965,5.005793891041392,5.000200867121777,5.13286388200811,5.055738164502586,5.987042972066476,213.82428721894175,213.82428721894175,0.0,237.5825413543797,0.0,213.82428721894175,237.5825413543797,0,0
+2017/05/06 18:00:00,203.20572295154852,0,987.7904396818988,0,0,0,0.5900289835203749,0.0,17.540027511967114,0.0,120.14191543460078,0,39.380909295966944,4.267240554770307e-05,25.552799053087746,0,0,0.02347855298162998,561.8827309783874,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2362.5137150344613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05259069467162823,0.0016639329206721354,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.019038847377863783,0.019038847377863783,0.43254957410333295,0.43254957410333295,0.12989023605417863,0.12989023605417863,0.9629942729155808,0.9629942729155808,0.5463063528983785,0.5463063528983785,0.034194606172291364,-0.018469307963258165,-0.09534530266333655,-0.10547473202959534,-0.12671250813615118,-0.016641520259997173,0.05537603223697875,-0.1097079418237686,-0.08099299883597692,-0.14486714434014303,5.007503591996581,5.007503591996581,8.902147023032981,8.902147023032981,5.349510120100291,5.349510120100291,24.587727177706157,24.587727177706157,11.246941585582917,11.246941585582917,5.024205766910285,5.007061366223141,5.188259049534679,5.230405761983661,5.332606029292705,5.005732871857219,5.0634869158493245,5.249281551777216,5.135832374505611,5.434835543168887,203.20572295154852,203.20572295154852,0.0,225.78413661283167,0.0,203.20572295154852,225.78413661283167,0,0
+2017/05/06 19:00:00,195.69932466677335,0,952.3072679412495,0,0,0,0.5523346633945606,0.0,19.371992964164374,0.0,110.89738010901058,0,39.380909295966944,4.7617848595942764e-05,25.496660016388223,0,0,0.02620606624934578,561.8871842370147,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2205.8646731380322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050701544325534205,0.001604161520568139,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.049710798131688834,-0.049710798131688834,0.05515762157116441,0.05515762157116441,0.12175893228042246,0.12175893228042246,0.9593450077797813,0.9593450077797813,0.5041991246134665,0.5041991246134665,-0.020168487412124278,-0.05798402411623276,-0.09854839957235738,-0.045847825478041074,-0.048804813764774094,-0.0043547638442376435,-0.006414353344466002,-0.03725089844055512,-0.028323180596253706,-0.07261560620948769,5.051159990383269,5.051159990383269,5.062987033188378,5.062987033188378,5.307092512766914,5.307092512766914,24.43953186636398,24.43953186636398,10.313868701020894,10.313868701020894,5.00842045244022,5.069608618008331,5.201126081753614,5.043517033619679,5.049311994137327,5.000392563956936,5.000851701473039,5.028726412482882,5.0166065923022245,5.109180061784073,195.69932466677335,195.69932466677335,0.0,217.4436940741926,0.0,195.69932466677335,217.4436940741926,0,0
+2017/05/06 20:00:00,197.36112177795982,0,896.5715433939713,0,0,0,0.35185267225484657,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,0.00014425887528832543,23.123069825881743,0,0,0.07943388536387513,541.5885843831663,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1383.4608012456245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04773413306681437,0.0015102746967985187,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.21044600486090745,-0.21044600486090745,-0.2020089954925285,-0.2020089954925285,-0.10016669155246855,-0.10016669155246855,0.9446784558316781,0.9446784558316781,0.3712123298897939,0.3712123298897939,-0.08187369276488486,-0.04833483521139609,-0.1746176704490238,-0.08289782760851144,-0.0173647460227622,0.0013889687709957486,-0.01780081520684146,-0.09088047467871989,-0.07487884441616051,-0.04906123228444958,5.918551965012696,5.918551965012696,5.846251180869757,5.846251180869757,5.207788784132958,5.207788784132958,23.849202142167286,23.849202142167286,7.868777236464297,7.868777236464297,5.138803324616248,5.048366742864957,5.632035442213208,5.142298616037706,5.006241997485631,5.000039936116977,5.006559440554241,5.171033969353346,5.116093562790411,5.049831577823085,197.36112177795982,197.36112177795982,0.0,219.29013530884424,0.0,197.36112177795982,219.29013530884424,0,0
+2017/05/06 21:00:00,193.13094102432854,0,881.394533413509,0,0,0,0.24892584588063948,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,0.00017611756515341354,25.52830387521526,0,0,0.09706180456091842,561.8842989960508,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,971.0604862972234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046926097813742074,0.001484709024638345,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.33131895411734213,-0.33131895411734213,-0.3717951502665645,-0.3717951502665645,-0.23649626919271924,-0.23649626919271924,0.9327000824808797,0.9327000824808797,0.2289300716785339,0.2289300716785339,-0.04894660619122227,-0.028348813762405493,-0.2016788406526701,-0.11870174695587883,-0.032942302106034674,-0.06382750537816326,-0.0036605419068900294,-0.134361725330245,-0.1257442291746509,-0.07171051685764959,7.282847877002254,7.282847877002254,7.877839490876809,7.877839490876809,6.160605706171495,6.160605706171495,23.373380838359836,23.373380838359836,6.087370327629856,6.087370327629856,5.0495989730371065,5.016636665727447,5.843482480142953,5.291855370082189,5.022465179217818,5.084348211073646,5.000277377904752,5.374007633351141,5.327538675872859,5.106474736385778,193.13094102432854,193.13094102432854,0.0,214.58993447147614,0.0,193.13094102432854,214.58993447147614,0,0
+2017/05/06 22:00:00,139.38873878929576,0,678.0462400149388,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,0.00031408951057918823,18.52106896243548,0,0,0.1733297537761178,518.166323954714,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.036099684051765626,0.0011421688398423275,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.36735964796825404,-0.36735964796825404,-0.3711512321256896,-0.3711512321256896,-0.44006747713574573,-0.44006747713574573,0.8367336036450398,0.8367336036450398,-0.06999221764796594,-0.06999221764796594,-0.1221306311512929,-0.11238230491620523,-0.21745753602244966,-0.17012820561423692,-0.09689060465284975,-0.16397375258829283,-0.11232758319735664,-0.21266595617281436,-0.20444766067269096,-0.14336370225732156,7.809236287468607,7.809236287468607,7.867828068155191,7.867828068155191,9.039894976960653,9.039894976960653,19.77103712161623,19.77103712161623,5.101432155219825,5.101432155219825,5.308971560647976,5.261590094301823,5.980904357961535,5.599913391664629,5.194413457298808,5.557244496853016,5.261335264754138,5.938070903211553,5.866843223570413,5.42584877790874,139.38873878929576,139.38873878929576,0.0,154.87637643255084,0.0,139.38873878929576,154.87637643255084,0,0
+2017/05/06 23:00:00,93.05063747420425,0,563.9340732549331,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.020050870296954133,14.087630342614728,0,0,11.03015945531761,499.6683850307993,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,490.7885046144491,0.0,514.8056588328457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,713.4905574254157,0.0,368.94074101700545,0,0,0,0,0,0,0,0,0.030024267769820256,0.0009499469035960644,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.53104896001321,-0.53104896001321,-0.438262473891285,-0.438262473891285,-0.5093647486917242,-0.5093647486917242,0.6416677383070942,0.6416677383070942,-0.3418943920825292,-0.3418943920825292,-0.1749813070752701,-0.19632817363457447,-0.2624327085150402,-0.26648407018461673,-0.19883795931021456,-0.1938266293846652,-0.22424953411018594,-0.27481744107714284,-0.3022680973236545,-0.2331468734566792,10.899978674261035,10.899978674261035,9.00660103618037,9.00660103618037,10.424207345421124,10.424207345421124,13.644281453801838,13.644281453801838,7.4315815222115305,7.4315815222115305,5.634674071044785,5.79924704141915,6.429901023357004,6.474520880834447,5.819847050459131,5.778976728350258,6.043268288166999,6.568474394948865,6.89868212295309,6.127889639270236,93.05063747420425,93.05063747420425,0.0,103.38959719356028,0.0,93.05063747420425,103.38959719356028,0,0
+2017/05/07 00:00:00,42.988535902705095,0,534.595481888893,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.6363821055982267e-09,11.802901835268658,0,0,0.0,481.35995312007674,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02846225943420207,0.0009005260486667314,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.33295904605683946,-0.33295904605683946,-0.20188946421258555,-0.20188946421258555,-0.33331181189376574,-0.33331181189376574,0.6664928590723217,0.6664928590723217,0.031545583203264026,0.031545583203264026,-0.07427355832935457,-0.021953321514558262,-0.21186531592606458,-0.14919555202724394,0.048459048944556174,-0.12166015182442724,-0.07191711455093422,-0.22931645597393868,-0.21867767921228753,-0.020033675316766673,7.305603142616263,7.305603142616263,5.845248256953795,5.845248256953795,7.310512469852043,7.310512469852043,14.33309041195811,14.33309041195811,5.020600481088437,5.020600481088437,5.114223794741719,5.009976787275178,5.931007478820376,5.461233867103019,5.048615679938251,5.306594114112727,5.107089268557644,6.091052057583596,5.991965234288628,5.008308257086057,42.988535902705095,42.988535902705095,0.0,47.76503989189455,0.0,42.988535902705095,47.76503989189455,0,0
+2017/05/07 01:00:00,23.72215290512346,0,45.89181422410146,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525057481445667,0,0,0.0,10.401461711557326,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002443314181663903,7.730475757736928e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2811054679414584,-0.2811054679414584,-0.18911351568541335,-0.18911351568541335,-0.3030824825109968,-0.3030824825109968,0.5937317348770169,0.5937317348770169,0.25378111813622356,0.25378111813622356,-0.12581008857036718,-0.05336837273817831,-0.27823372820568126,-0.1943164963377728,0.1520137457292713,-0.17973996536156778,-0.0927083272656409,-0.3003440810920788,-0.26792359579733976,0.04765672258597927,6.641305582699033,6.641305582699033,5.741496391706079,5.741496391706079,6.908964679057263,6.908964679057263,12.389869758994209,12.389869758994209,6.336929045529601,6.336929045529601,5.327882106428262,5.05896634880591,6.6078367499103905,5.782925582174798,5.47884094269655,5.66971258880578,5.177985725904264,6.874500588303206,6.490541584534199,5.0470190050348265,23.72215290512346,23.72215290512346,0.0,26.357947672359398,0.0,23.72215290512346,26.357947672359398,0,0
+2017/05/07 02:00:00,28.344551318664273,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251882321913762,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.26144271162043015,-0.26144271162043015,-0.18371759947210708,-0.18371759947210708,-0.2868672258244248,-0.2868672258244248,0.5500810351409696,0.5500810351409696,0.3429823166763442,0.3429823166763442,-0.15973176973267741,-0.07562339905205544,-0.3191821875210763,-0.2237019900561094,0.17731707820960582,-0.225168737385292,-0.12394398376917254,-0.35159280143209115,-0.3084741389503364,0.05469461884334198,6.419102704351445,6.419102704351445,5.699725638937892,5.699725638937892,6.709505593794049,6.709505593794049,11.334336719963503,11.334336719963503,7.447151633260589,7.447151633260589,5.528754115277437,5.118414376294879,7.118003968446629,6.0381691041233125,5.65175450822953,6.051856931775575,5.318220941431591,7.572157661464161,6.97774828590596,5.061933882013037,28.344551318664273,28.344551318664273,0.0,31.49394590962697,0.0,28.344551318664273,31.49394590962697,0,0
+2017/05/07 03:00:00,23.774899092318684,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5778036686408923,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.27261042708240435,-0.27261042708240435,-0.20399665052642701,-0.20399665052642701,-0.30179701850601304,-0.30179701850601304,0.4824044904344841,0.4824044904344841,0.4113295254983899,0.4113295254983899,-0.20813139940720404,-0.11812023519126372,-0.37208650950569727,-0.26961636871902317,0.2149723859555483,-0.2823817071745377,-0.17257839319133345,-0.4119681537497129,-0.3623759982162819,0.063170702342399,6.543306837044227,6.543306837044227,5.863016150472632,5.863016150472632,6.892747011511958,6.892747011511958,9.861025066631726,9.861025066631726,8.526425051907694,8.526425051907694,5.898420475807114,5.289001056909186,7.88237525626711,6.5094923848501764,5.958568778567795,6.65629122610396,5.617340218999232,8.537450841111962,7.733155268521941,5.082620900776888,23.774899092318684,23.774899092318684,0.0,26.41655454702076,0.0,23.774899092318684,26.41655454702076,0,0
+2017/05/07 04:00:00,37.74313021656638,0,112.54690476002905,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,0.10891161021745636,0.045511011075513336,0.5248091832103344,0,0,23.82102347866874,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.173472733747708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,189.59625818438764,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.005992080573666615,0.00018958525252610371,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.22966965243793824,-0.22966965243793824,-0.16885776661252158,-0.16885776661252158,-0.2598244488918724,-0.2598244488918724,0.4814749210588643,0.4814749210588643,0.5463271062038919,0.5463271062038919,-0.25216161366761447,-0.16137801686884515,-0.4129428156943866,-0.3128007246812793,0.23742584276835474,-0.33072492779823986,-0.2195692594154091,-0.43315129722366186,-0.4094047116832507,0.07703967004993507,6.094423029757465,6.094423029757465,5.590976045567544,5.590976045567544,6.401540446730195,6.401540446730195,9.842166687670698,9.842166687670698,11.247420398104396,11.247420398104396,6.319875334050053,5.5397217282466755,8.554311867207659,7.033834007292754,6.169769024596889,7.2746342874247745,6.000087054299172,8.913082817805758,8.493299205110873,5.122892410296643,37.74313021656638,37.74313021656638,0.0,41.93681135174042,0.0,37.74313021656638,41.93681135174042,0,0
+2017/05/07 05:00:00,73.45844458363807,0,238.32727269433434,0,0,0,0.43265298330040136,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,0.5823489984745822,0.05435539653940816,0.5250800161239157,0,0,25.38515761906952,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,1399.2109955008332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.26804680871707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,222.79779418684524,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.012688720528846094,0.00040146227276487297,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.043818976357725976,-0.043818976357725976,0.009132534450780607,0.009132534450780607,-0.07394505895850566,-0.07394505895850566,0.6296839170291635,0.6296839170291635,0.8026437909292976,0.8026437909292976,-0.2661193932782875,-0.1771062275689491,-0.4216950502808668,-0.3273112119944278,0.24859568624190084,-0.34820405905419255,-0.23833322669807339,-0.43876368045725195,-0.42674824664609023,0.14275234960750416,5.039750510792061,5.039750510792061,5.0017264941104,5.0017264941104,5.113215398069272,5.113215398069272,13.32133577508607,13.32133577508607,18.583227698604006,18.583227698604006,6.4704761899131285,5.650203303844506,8.70754420693406,7.227723142464626,6.282714103753307,7.522584102599879,6.178748593870566,9.015831934492908,8.797510277825467,5.422221349652958,73.45844458363807,73.45844458363807,0.0,81.62049398182008,0.0,73.45844458363807,81.62049398182008,0,0
+2017/05/07 06:00:00,89.42384572830663,0,680.3836880352316,0,0,0,0.1726833703398848,0.0,7.051016521147322,0.0,80.56906512710079,0,1.1060654465017046,2.5207631199001073e-09,0.5250152606961644,0,0,0.0,449.6963967036948,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,546.461211518296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03622413151572935,0.0011461062708551014,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.12625096422876708,0.12625096422876708,0.17347322355468164,0.17347322355468164,0.09759456681756042,0.09759456681756042,0.7586335999139484,0.7586335999139484,0.8999122602652141,0.8999122602652141,-0.22463019136109832,-0.13267844319345196,-0.38412224381935467,-0.15470961929918428,0.2648037315204732,-0.3104874185503253,-0.19793547087360977,-0.4218828224169852,-0.23305651798538082,0.21974037243896993,5.330185741608588,5.330185741608588,5.6237670866942295,5.6237670866942295,5.197249955611568,5.197249955611568,17.122476249387063,17.122476249387063,22.100319802994548,22.100319802994548,6.046820690034906,5.364687997746884,8.07290768141155,5.495993376000925,6.45593051911996,7.003747944977562,5.812409211236869,8.710867669019095,6.12701359089003,6.001649612324243,89.42384572830663,89.42384572830663,0.0,99.35982858700737,0.0,89.42384572830663,99.35982858700737,0,0
+2017/05/07 07:00:00,115.10435949207344,0,724.8638057608891,0,0,0,0.0,0.0,5.864357105269638,0.0,69.33401494192633,0,39.38090929596693,1.170685243071652e-05,0.5250664420581042,0,0,0.0051514181133005335,458.68101049869495,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.038592285930163096,0.001221033025787988,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1781340148556594,-0.1781340148556594,-0.1699382991749693,-0.1699382991749693,-0.22477846998627882,-0.22477846998627882,1.0026120054552101,1.0026120054552101,0.32210205303254813,0.32210205303254813,-0.5144523910296632,-0.5706777989028523,-0.6572315412670044,-0.4814117832139172,-0.4796876248575234,-0.6007269908480708,-0.6398538106296451,-0.6975327783897474,-0.49102236197012467,-0.381467313560508,5.657782140940597,5.657782140940597,5.598573149259295,5.598573149259295,6.0482061124151585,6.0482061124151585,26.229760176294292,26.229760176294292,7.157091619564511,7.157091619564511,10.534008122994635,11.82209514636287,14.072998337993042,9.840887148401222,9.806012163524088,12.5667106027784,13.594998793972763,15.231876995270568,10.037633187236906,8.030347172543003,115.10435949207344,115.10435949207344,0.0,127.8937327689705,0.0,115.10435949207344,127.8937327689705,0,0
+2017/05/07 08:00:00,147.14918429695695,0,778.0850577437673,0,0,0,0.8540056057832622,0.0,9.472049877576204,0.0,96.91714705112861,0,39.380909295966944,6.471282650152684e-06,0.5250659952193372,0,0,0.0028472853031860637,458.66903784556706,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3514.108760826232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04142582480706767,0.0013106842207137215,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2844099769863656,-0.2844099769863656,-0.34213744117986705,-0.34213744117986705,-0.3623485102472032,-0.3623485102472032,1.1261247093806104,1.1261247093806104,-0.08755155810433364,-0.08755155810433364,-0.6394634247161785,-0.7262176832633601,-0.740915603488899,-0.5029704401819235,-0.5080217163016607,-0.7484892746128101,-0.8437174087785215,-0.8061832609138495,-0.5554553753242196,-0.4575947115666759,6.6802486300732795,6.6802486300732795,7.435055618764437,7.435055618764437,7.73273856791694,7.73273856791694,31.719662977501415,31.719662977501415,5.15872943840219,5.15872943840219,13.584411047027004,16.09946152744503,16.557727875835795,10.2877936001602,10.395408956143527,16.797487551575585,20.02039239022126,18.704278306941873,11.459834405300938,9.370475429156883,147.14918429695695,147.14918429695695,0.0,163.4990936632855,0.0,147.14918429695695,163.4990936632855,0,0
+2017/05/07 09:00:00,149.11020016056878,0,810.1194210659011,0,0,0,0.7851826086127295,0.0,9.332689672910613,0.0,97.06762091869685,0,39.380909295966944,0.005082769688688539,0.5775862075762428,0,0,2.2606783799259786,435.2100413042617,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3199.944922435382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,158.64989686577576,0.0,195.3690043051054,0.0,0.0,0.0,0.0,0.0,63.921126308994324,0.0,294.3372384269318,0.0,280.15218943189024,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04313135803840456,0.001364646103298489,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.28272418334720273,-0.28272418334720273,-0.3785351932581516,-0.3785351932581516,-0.3436829169051437,-0.3436829169051437,1.0386194851590316,1.0386194851590316,0.06937199118357582,0.06937199118357582,-0.3471335858614936,-0.44617792848279586,-0.4558143483047724,-0.2494634182090449,-0.2822338616998331,-0.39561603507576726,-0.5068465309886023,-0.5108698914908936,-0.27358398886962354,-0.2973453505347202,6.660324286775278,6.660324286775278,7.98369277468889,7.98369277468889,7.457205076208993,7.457205076208993,27.773715436372726,27.773715436372726,5.099642080981084,5.099642080981084,7.507025759465009,9.153643838621079,9.33629302460588,6.29170769833371,6.654551700580271,8.26063522728866,10.370273657495389,10.456574523683685,6.554383486703671,6.837123812478637,149.11020016056878,149.11020016056878,0.0,165.67800017840975,0.0,149.11020016056878,165.67800017840975,0,0
+2017/05/07 10:00:00,203.12379585501958,0,1022.2811535083631,0,0,0,0.9913785488809697,0.0,12.984000736477544,0.0,124.87761316689259,0,39.380909295966944,0.0001416461945977051,23.173764859379695,0,0,0.06348405888097453,560.8430867864083,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4103.735576214044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05442700582325086,0.0017220325254950137,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.0837406391297372,-0.0837406391297372,-0.37042249351909895,-0.37042249351909895,-0.2373882989319401,-0.2373882989319401,1.0769338074752248,1.0769338074752248,0.19691967033057486,0.19691967033057486,-0.1434038724222006,-0.37597150976803007,-0.3269746882085149,-0.09450803999896272,-0.267343992633193,-0.09517553791174146,-0.40529082638124947,-0.3471839957777781,-0.12063431089024393,-0.2484729933354119,5.145207696832003,5.145207696832003,7.856519211177826,7.856519211177826,6.169398231404273,6.169398231404273,29.46859484817375,29.46859484817375,5.804078251796113,5.804078251796113,5.426087670109169,7.94320140074683,7.223125414306978,5.184965913938015,6.484080595163817,5.187588976591869,8.423031606110953,7.507757328056343,5.301442188949821,6.281445008798045,203.12379585501958,203.12379585501958,0.0,225.6931065055773,0.0,203.12379585501958,225.6931065055773,0,0
+2017/05/07 11:00:00,219.76400523459614,0,1056.0767319084446,0,0,0,1.0929358227095083,0.0,12.935301236479537,0.0,143.25325374857618,0,39.380909295966944,2.2265320413590027e-05,23.101582865543513,0,0,0.009983117819107391,541.4566373587355,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4475.204468167881,0.0,0.0,0.0,0.0,0.0,0.0,67.28247796693658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05622630744988143,0.00177896117474491,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.16248238899499784,0.16248238899499784,-0.23272093246783676,-0.23272093246783676,-0.05889728149953769,-0.05889728149953769,1.0573738751640747,1.0573738751640747,0.38123833128209006,0.38123833128209006,-0.22929952677830082,-0.26972686365439397,-0.2666153812513555,-0.09521507019717595,-0.27457282338165395,0.05906740292691002,-0.28576755992943115,-0.2470821358704572,-0.08031834865257147,-0.2640794854884435,5.547142572596073,5.547142572596073,6.12376289472131,6.12376289472131,5.07181892175025,5.07181892175025,28.596765612643708,28.596765612643708,8.026690513188996,8.026690513188996,6.090890613629682,6.5107335860376025,6.475978644637323,5.1877449063616154,6.565674794376378,5.072234475494611,6.696381037812586,6.267102674830483,5.1335782558161895,6.447954516221756,219.76400523459614,219.76400523459614,0.0,244.18222803844014,0.0,219.76400523459614,244.18222803844014,0,0
+2017/05/07 12:00:00,196.70896489150053,0,997.1382005962663,0,0,0,0.9247731179866062,0.0,13.016794053187484,0.0,124.80122689546741,0,39.380909295966944,4.327313003049326e-05,18.585218255762005,0,0,0.018020092485971535,518.0004215844344,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3805.465627418592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05308837638665798,0.0016796792232229045,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3459176631338617,0.3459176631338617,-0.17418665250886553,-0.17418665250886553,0.020536913402625548,0.020536913402625548,1.002261899979442,1.002261899979442,0.47692403566015723,0.47692403566015723,-0.12680997161444882,-0.20668505044941118,-0.1856860051789069,-0.08956011170899485,-0.17890188566724144,0.07825873494900405,-0.15257959852648695,-0.14449522488494262,-0.017694922447976148,-0.16741671078959672,7.4894125401252865,7.4894125401252865,5.628915025341669,5.628915025341669,5.008730907892243,5.008730907892243,26.21498634960055,26.21498634960055,9.750379842544405,9.750379842544405,5.333118250099432,5.885954566232286,5.714822518406351,5.166098553685586,5.663473146178347,5.126813517230602,5.482416065794482,5.432603650503893,5.0064816305223445,5.580919917494498,196.70896489150053,196.70896489150053,0.0,218.5655165461117,0.0,196.70896489150053,218.5655165461117,0,0
+2017/05/07 13:00:00,196.58323548000084,0,961.590095606808,0,0,0,0.8408692185348303,0.0,13.065493488391114,0.0,124.7641830973959,0,39.380909295966944,2.560900904105182e-05,18.531754770702964,0,0,0.010343227270371614,517.9503459727359,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3436.2842830230584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051195768946300874,0.0016197984430662174,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.39683394893377866,0.39683394893377866,-0.06811157463712889,-0.06811157463712889,0.06286885762949862,0.06286885762949862,0.9904865324991354,0.9904865324991354,0.5152327472458136,0.5152327472458136,-0.08616512108763218,-0.1440543494242745,-0.20567161393504674,-0.047972112725026064,-0.1376949109982557,0.040890699931914014,-0.09625284674670415,-0.16192661074722658,0.0019203343362387923,-0.12166394728802873,8.280858234592742,8.280858234592742,5.096053445430385,5.096053445430385,5.081833083107227,5.081833083107227,25.72079802741746,25.72079802741746,10.550948690223763,10.550948690223763,5.153740422010003,5.4299654104464565,5.877272039317532,5.047643468230362,5.392809884685661,5.034614855034917,5.191861475531908,5.543401658227268,5.000076336914532,5.306613256703983,196.58323548000084,196.58323548000084,0.0,218.42581720000092,0.0,196.58323548000084,218.42581720000092,0,0
+2017/05/07 14:00:00,178.26300729454582,0,904.05303963583,0,0,0,0.7533940894217445,0.0,13.01679398839311,0.0,111.01081017850728,0,39.380909295966944,1.2623187818260941e-05,14.101087119068916,0,0,0.004681869539013159,495.90930387203343,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3056.246415760334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04813245346832507,0.0015228772766500936,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.34226382836800434,0.34226382836800434,0.10239900826761733,0.10239900826761733,0.060732568291914445,0.060732568291914445,0.9682888191875189,0.9682888191875189,0.5011510980102133,0.5011510980102133,-0.14308017659163647,-0.035350697452810706,-0.21815375949188887,-0.12371786283816029,-0.1941356443656009,-0.03699808175113797,-0.17218594716277424,-0.1796233488279215,-0.1390262384845812,-0.17849534011846843,7.436863164648457,7.436863164648457,5.2171579132945,5.2171579132945,5.076365278755162,5.076365278755162,24.803661143238912,24.803661143238912,10.24930341615871,10.24930341615871,5.424164559169498,5.025870282686071,5.987208141427175,5.317060105455241,5.781466553033965,5.02833778743701,5.614532123814598,5.6688426311103655,5.400448986858152,5.660457004785215,178.26300729454582,178.26300729454582,0.0,198.0700081050509,0.0,178.26300729454582,198.0700081050509,0,0
+2017/05/07 15:00:00,175.9017935538008,0,907.5970818989607,0,0,0,0.6913367804492303,0.0,13.01679398839311,0.0,108.75639138185811,0,39.380909295966944,3.1995056701074115e-06,14.056358907627718,0,0,0.0,499.4580280047032,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2789.8409528171005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04832114090350988,0.001528847215573349,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2552724426159616,0.2552724426159616,0.32955819294576566,0.32955819294576566,0.05835417802819041,0.05835417802819041,0.9518660755832963,0.9518660755832963,0.5031157893544075,0.5031157893544075,-0.23581545465897572,-0.11818322168774945,-0.24512431924834577,-0.14316345354351348,-0.24981077329249962,-0.15048481531058633,-0.09236246027321289,-0.25101664004481494,-0.1847135320736356,-0.23869976796183154,6.352730544829399,6.352730544829399,7.2585454532143245,7.2585454532143245,5.0705003147289744,5.0705003147289744,24.137446295848477,24.137446295848477,10.29087479262867,10.29087479262867,6.153917553254743,5.289309543503123,6.247051685948605,5.424658899613817,6.295316725165478,5.469247681222598,5.176659677406448,6.307885074026217,5.70734381688888,6.182385727654122,175.9017935538008,175.9017935538008,0.0,195.44643728200086,0.0,175.9017935538008,195.44643728200086,0,0
+2017/05/07 16:00:00,190.2843044048863,0,960.8427805190155,0,0,0,0.744573531758702,0.0,11.226519865360757,0.0,124.87761316689259,0,39.380909295966944,1.837821203042009e-05,14.05467016669529,0,0,0.007457005469056769,499.4607408504727,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3017.7768764300877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051155981337485536,0.0016185395908575513,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2164339093128674,0.2164339093128674,0.5667603378606476,0.5667603378606476,0.10181933389143238,0.10181933389143238,0.9511376210763822,0.9511376210763822,0.5638613167041467,0.5638613167041467,-0.29489240749363893,-0.016389691372026855,-0.2422375619036704,-0.13451746378548324,-0.2549028198329458,-0.23166103879413977,0.04738879304135524,-0.25740879907490083,-0.1834769705648579,-0.2461507094181467,5.9716730585271875,5.9716730585271875,11.727907660132388,11.727907660132388,5.214705109843422,5.214705109843422,24.108140397970374,24.108140397970374,11.65863509241862,11.65863509241862,6.806832437459136,5.005560676463347,6.217780723557723,5.374875849292337,6.348805445537209,6.113527115110358,5.046491749647117,6.375529544682394,5.697891211457659,6.257543380936994,190.2843044048863,190.2843044048863,0.0,211.42700489431812,0.0,190.2843044048863,211.42700489431812,0,0
+2017/05/07 17:00:00,199.32044956359152,0,981.6996382914109,0,0,0,0.7407442783194447,0.0,11.198411588569618,0.0,129.38645076019097,0,39.380909295966944,9.608943289821181e-06,18.6139240316012,0,0,0.003100574050468895,520.3219550542867,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3001.3466870169614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05226641589410146,0.0016536729661921427,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.19843819735669768,0.19843819735669768,0.7208369386448363,0.7208369386448363,0.19020753609402072,0.19020753609402072,0.9451360310622519,0.9451360310622519,0.6106831196569589,0.6106831196569589,-0.3097627404473863,0.08806351212064802,-0.3558970246596512,-0.15300645776171998,-0.22032193910331613,-0.26187501295323456,0.17388561071181197,-0.19508326364953285,-0.19123399637991878,-0.21607013081033016,5.816548218965053,5.816548218965053,15.934017746453975,15.934017746453975,5.75011370117879,5.75011370117879,23.86749141179294,23.86749141179294,12.82206505216945,12.82206505216945,6.994369630020955,5.160591835852657,7.635828001806246,5.485121836565511,6.006969493674063,6.423812925612523,5.626740187309565,5.789126688489489,5.758244330621764,5.968402991998772,199.32044956359152,199.32044956359152,0.0,221.46716618176836,0.0,199.32044956359152,221.46716618176836,0,0
+2017/05/07 18:00:00,190.53347867015657,0,967.3494258614785,0,0,0,0.6590919703046585,0.0,11.692884133504386,0.0,115.6330778413024,0,39.380909295966944,3.546677476352672e-06,23.16751188240072,0,0,0.0,541.4651957109489,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2652.642601122723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051502399955033855,0.0016295000344430843,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1177781122857487,0.1177781122857487,0.6943284432801052,0.6943284432801052,0.24674160083810892,0.24674160083810892,0.9265936585472567,0.9265936585472567,0.5758504243363564,0.5758504243363564,-0.3475250558166501,0.11183001942224871,-0.32281102366921843,-0.18869399018768515,-0.19091811440445436,-0.31518964455020093,0.20342920434718323,-0.14269252636695476,-0.1550668668951586,-0.1918127454498046,5.287328334018881,5.287328334018881,15.137164735066989,15.137164735066989,6.2636035125708815,6.2636035125708815,23.133011778205955,23.133011778205955,11.947480418284883,11.947480418284883,7.512709764210214,5.259023903997615,7.166636989092808,5.738205165055348,5.755737528307321,7.065141292301405,5.858213142003677,5.421867227263377,5.498289073381471,5.762848033654251,190.53347867015657,190.53347867015657,0.0,211.70386518906284,0.0,190.53347867015657,211.70386518906284,0,0
+2017/05/07 19:00:00,180.1001855053714,0,931.8700685971544,0,0,0,0.5764115589968211,0.0,12.914153463151603,0.0,104.13412371906301,0,39.380909295966944,1.3429471869786849e-05,23.094574038721152,0,0,0.0060259441745899815,541.4701650149943,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2304.2401389270685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04961345269448478,0.0015697350598241678,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.028483749205698922,0.028483749205698922,0.2663111676238867,0.2663111676238867,0.23843108313375935,0.23843108313375935,0.9064927260053273,0.9064927260053273,0.5170185806731316,0.5170185806731316,-0.21886861677208208,0.04414177380344875,-0.3047585345506927,-0.22849245992793216,-0.1762490102521873,-0.19764081078192308,0.1189941730459195,-0.21689617399999014,-0.19064017375913833,-0.1827347345106277,5.016795423722641,5.016795423722641,6.472602492199513,6.472602492199513,6.1797190566123845,6.1797190566123845,22.352342872114107,22.352342872114107,10.58981604930446,10.58981604930446,5.993701770932617,5.040338372540589,6.930215046789144,6.083208029945027,5.643915958141278,5.809988151471131,5.293296034701186,5.975836431726663,5.753535272337103,5.6922480281048,180.1001855053714,180.1001855053714,0.0,200.11131722819044,0.0,180.1001855053714,200.11131722819044,0,0
+2017/05/07 20:00:00,197.3138019559787,0,881.7723615209653,0,0,0,0.4035977441157651,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,2.8262970047545997e-05,18.517972729474376,0,0,0.012685216724906148,526.8561511787991,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1590.947514269238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04694621366204286,0.0014853454760566788,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.14916053526751302,-0.14916053526751302,-0.022599592633593176,-0.022599592633593176,-0.019578357642376143,-0.019578357642376143,0.8789181878055561,0.8789181878055561,0.37769601887702325,0.37769601887702325,-0.21378225259811143,-0.06576107533805373,-0.29619586473711956,-0.25088574947108144,-0.2641005497435638,-0.19203417999201278,-0.015243345065380873,-0.23361662403235567,-0.26050407096326594,-0.2447873676852195,5.461017175149323,5.461017175149323,5.010572848760219,5.010572848760219,5.007934888494887,5.007934888494887,21.30806559306707,21.30806559306707,7.970407796801069,7.970407796801069,5.94796391799629,5.089537056224401,6.822897163409351,6.306517887479828,6.448186181594863,5.764613153704502,5.004810009460172,6.13244966211721,6.408902647336873,6.2436170390272,197.3138019559787,197.3138019559787,0.0,219.23755772886523,0.0,197.3138019559787,219.23755772886523,0,0
+2017/05/07 21:00:00,185.23517109314204,0,871.8997280652611,0,0,0,0.22388372013953112,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,0.00012382824377262777,23.165183236300088,0,0,0.054345423384904924,552.4322100289792,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,869.9122523122862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046420587344135754,0.0014687150257498656,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3225655843699427,-0.3225655843699427,-0.258879522529863,-0.258879522529863,-0.2052245020720691,-0.2052245020720691,0.8498608512808455,0.8498608512808455,0.2070572243545133,0.2070572243545133,-0.22657060481645735,-0.1758676172660661,-0.3107855707656976,-0.31935022470372804,-0.2776973138590307,-0.2143921073655733,-0.15699442395585653,-0.2626868352264406,-0.32237466882153176,-0.3041177831871763,7.163330056096385,7.163330056096385,6.391336560857866,6.391336560857866,5.873455111459563,5.873455111459563,20.2414240704464,20.2414240704464,5.889153923193675,5.889153923193675,6.065023594849222,5.641128450595787,7.007612892282594,7.120243650130021,6.601623633060768,5.953390709313155,5.510767427648915,6.432679546158283,7.160759516054583,6.922077044124691,185.23517109314204,185.23517109314204,0.0,205.8168567701578,0.0,185.23517109314204,205.8168567701578,0,0
+2017/05/07 22:00:00,130.8506807544483,0,680.5896248345525,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,0.00635608853206412,18.6124645890094,0,0,2.893709763704284,517.9893287643997,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,369.95362151716535,0.0,354.58928601574803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,433.2305150572285,0.0,368.09632403550756,0,0,0,0,0,0,0,0,0.03623509574346396,0.0011464531713779272,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5647173074449365,-0.5647173074449365,-0.3096745374683122,-0.3096745374683122,-0.4600375724475882,-0.4600375724475882,0.7160864219844034,0.7160864219844034,-0.07003491478937142,-0.07003491478937142,-0.3039728809420414,-0.25870178444067976,-0.41458818369820244,-0.4018812625107157,-0.34738092387044184,-0.29644136484700917,-0.24896296903600884,-0.3384173385258684,-0.42354407118556714,-0.37073024486133876,11.679051200615902,11.679051200615902,6.993229681553927,6.993229681553927,9.417599640102708,9.417599640102708,15.78898775939318,15.78898775939318,5.101555972790308,5.101555972790308,6.920239089204301,6.38942143578457,8.582868032001869,8.36534330664071,7.510616261672624,6.825930914246257,6.286516937727441,7.382155959589227,8.740336718758371,7.861292257522891,130.8506807544483,130.8506807544483,0.0,145.38964528272032,0.0,130.8506807544483,145.38964528272032,0,0
+2017/05/07 23:00:00,88.54862116206922,0,528.9345147853936,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.02805857173407123,9.57760632904259,0,0,12.890776251265887,462.80820976531163,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,950.1301278891028,0.0,57.000235341013074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1097.007901315697,0.0,30.504205098589907,0,0,0,0,0,0,0,0,0.028160865352495693,0.0008909901500105469,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.6045778869028677,-0.6045778869028677,-0.5046883563645493,-0.5046883563645493,-0.56344700637106,-0.56344700637106,0.5021215131008647,0.5021215131008647,-0.3745474724848621,-0.3745474724848621,-0.3681417638222416,-0.3500421373115834,-0.4653758083744565,-0.4451512037912889,-0.3860696807094955,-0.41207975532573937,-0.3658171896803871,-0.45016164012361914,-0.48076072922445784,-0.4061773129810001,12.664968057267217,12.664968057267217,10.324269325209954,10.324269325209954,11.648764851223163,11.648764851223163,10.269815812752412,10.269815812752412,7.920830986507909,7.920830986507909,7.82127224570354,7.549412546433146,9.52147167732258,9.134418695121624,8.10431791378113,8.539379413467145,7.785575846439457,9.22866694359476,9.827703045357993,8.43811207219224,88.54862116206922,88.54862116206922,0.0,98.38735684674359,0.0,88.54862116206922,98.38735684674359,0,0
+2017/05/08 00:00:00,39.34048064910368,0,516.0523075773186,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.579063919082801e-09,9.543159650101437,0,0,0.0,462.8167788085024,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027475007098801015,0.0008692900729462872,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.356372501427721,-0.356372501427721,-0.3271834756073474,-0.3271834756073474,-0.4065993915280255,-0.4065993915280255,0.5160275040924133,0.5160275040924133,-0.030210466955127278,-0.030210466955127278,-0.32509848301643013,-0.1612557493828221,-0.42568841332183177,-0.3630076312310469,-0.15385227866559045,-0.3617488716587443,-0.20096390548722307,-0.4225770910206862,-0.42973085023479646,-0.2112557037570032,7.642909860439559,7.642909860439559,7.225977389141065,7.225977389141065,8.445304084031775,8.445304084031775,10.568228954053197,10.568228954053197,5.0188935475137555,5.0188935475137555,7.197579952115106,5.538903275811663,8.778550436927844,7.742739300898563,5.490505736524284,7.7236564264265155,5.83750261209417,8.72316896813362,8.851126137994541,5.925647344222895,39.34048064910368,39.34048064910368,0.0,43.71164516567076,0.0,39.34048064910368,43.71164516567076,0,0
+2017/05/08 01:00:00,23.722149008155384,0,49.49648095091964,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250535844775921,0,0,0.0,14.006128438375509,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0026352293082003786,8.337681840510494e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3310561282406458,-0.3310561282406458,-0.2629900889147008,-0.2629900889147008,-0.36615962499883964,-0.36615962499883964,0.4499147617537136,0.4499147617537136,0.188539447313434,0.188539447313434,-0.37118522961728145,-0.17443568066509768,-0.4773356424932496,-0.4019576354994404,-0.073804626707998,-0.4144362776926544,-0.2095561443357201,-0.4866231237660203,-0.4848145738558266,-0.16073774136822455,7.279211942164395,7.279211942164395,6.435998761920587,6.435998761920587,7.790819855427003,7.790819855427003,9.223997776195958,9.223997776195958,5.736994611371173,5.736994611371173,7.86835620763739,5.630716955266877,9.75864479999565,8.36663005611615,5.112785677458746,8.580226768450885,5.910785787618295,9.947078005400513,9.910092612635012,5.535442668037163,23.722149008155384,23.722149008155384,0.0,26.35794334239487,0.0,23.722149008155384,26.35794334239487,0,0
+2017/05/08 02:00:00,28.344454272585363,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250911861124659,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3040261401668771,-0.3040261401668771,-0.22164750992277216,-0.22164750992277216,-0.33304153942672476,-0.33304153942672476,0.433889733248308,0.433889733248308,0.2741340494819175,0.2741340494819175,-0.3793841292905125,-0.16576866526682765,-0.48896732732632064,-0.408724061012383,-0.050605342077724366,-0.44809323157715797,-0.22575914021598523,-0.5234180234279439,-0.5186612701614349,-0.144600442575162,6.9209145314445095,6.9209145314445095,6.019148124050432,6.019148124050432,7.306750702806426,7.306750702806426,8.926524498356258,8.926524498356258,6.5606594346302956,6.5606594346302956,7.997162868801411,5.569525501723618,9.995227776347221,8.481623255600823,5.053018014271245,9.189628524403204,6.057392087801574,10.730228488560726,10.6256898181433,5.433234478927474,28.344454272585363,28.344454272585363,0.0,31.493838080650402,0.0,28.344454272585363,31.493838080650402,0,0
+2017/05/08 03:00:00,23.72227406476024,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525178641082446,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3103051709552181,-0.3103051709552181,-0.2238242770935992,-0.2238242770935992,-0.3379185889434428,-0.3379185889434428,0.38774766475323497,0.38774766475323497,0.33999847174445624,0.33999847174445624,-0.41478028618108786,-0.19322644863235383,-0.5257545050515855,-0.4425463577778714,-0.01822750757527345,-0.4995572391007071,-0.26952134198047645,-0.5769606109688821,-0.5707918565696988,-0.13216897160437552,7.00138732234835,7.00138732234835,6.039306852359502,6.039306852359502,7.375108456637562,7.375108456637562,8.131512059160087,8.131512059160087,7.4045677538627075,7.4045677538627075,8.586209627230332,5.7741522993849514,10.781935752330227,9.085847000972663,5.00687767883359,10.215701126286547,6.5084253509249095,11.974542828051938,11.824847407332953,5.361890497772833,23.72227406476024,23.72227406476024,0.0,26.358082294178043,0.0,23.72227406476024,26.358082294178043,0,0
+2017/05/08 04:00:00,40.412121268527486,0,144.8788311638758,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.1824106263844191,0.1437838026911602,0.5777932898177967,0,0,56.15294988251549,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,210.87424916721898,0.0,0.0,0.0,0.0,0.0,56.66197243108701,0.0,0.0,0.0,419.4274105146762,0.0,200.5512557596944,0.0,0.0,0,0,0,0,0,0,0,0,0.00771345628388085,0.00024404838009943198,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.25798419910157155,-0.25798419910157155,-0.17276282948177005,-0.17276282948177005,-0.28406025502399923,-0.28406025502399923,0.40562917538724536,0.40562917538724536,0.4767698571874116,0.4767698571874116,-0.448856634845329,-0.22778443069264273,-0.5305588442472531,-0.4767847829253411,0.014403931770720585,-0.5309294520082201,-0.30923522401395137,-0.5628350816822927,-0.567761323718763,-0.11839843656325177,6.38170298153652,6.38170298153652,5.618662147674897,5.618662147674897,6.676105418635132,6.676105418635132,8.428783460081647,8.428783460081647,9.74728586020457,9.74728586020457,9.204015305530106,6.076490694846797,10.889000283988366,9.747585338197624,5.004294840049624,10.897300785462988,6.987556833210192,11.634200400865666,11.7519110385185,5.290364837281331,40.412121268527486,40.412121268527486,0.0,44.90235696503054,0.0,40.412121268527486,44.90235696503054,0,0
+2017/05/08 05:00:00,74.19419154392757,0,212.9421150752648,0,0,0,0.5225498056980931,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.360619062874159,0.0,0.5249796453994422,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,1679.2919137634779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.035784789053676755,-0.035784789053676755,0.04470716088164207,0.04470716088164207,-0.060005543619636885,-0.060005543619636885,0.5944843050327415,0.5944843050327415,0.7254333023599672,0.7254333023599672,-0.39614204696610344,-0.1768623825063577,-0.4999253684435779,-0.4246159542339345,0.13366466815201164,-0.49563903062473924,-0.27082720247562353,-0.5607939448646867,-0.5592694910703437,0.039174464961611734,5.026509572578206,5.026509572578206,5.041378426376909,5.041378426376909,5.0745476042186795,5.0745476042186795,12.408792866573066,12.408792866573066,16.075266307444323,16.075266307444323,8.26936167740648,5.648411676930479,10.223452408511108,8.759413786666912,5.370134019264384,10.133562662743273,6.52312187320976,11.585736626925765,11.549658587803606,5.031769976926697,74.19419154392757,74.19419154392757,0.0,82.43799060436397,0.0,74.19419154392757,82.43799060436397,0,0
+2017/05/08 06:00:00,84.40395770658834,0,680.1091211140454,0,0,0,0.0,0.0,9.400244987969673,0.0,73.80580873715317,0,0.6728348953239067,2.5207859647514852e-09,0.5250690836207912,0,0,0.0,449.4218297825086,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03620951336947185,0.0011456437628972027,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.25189322408090875,0.25189322408090875,0.3300271117070628,0.3300271117070628,0.23048914051449484,0.23048914051449484,0.8424087142703007,0.8424087142703007,0.8830337011022593,0.8830337011022593,-0.3162643990589037,-0.09488513358003067,-0.41917441035780195,-0.18093385432327688,0.270692422882758,-0.4128777094129128,-0.18374173872875277,-0.48055654861831004,-0.29118934119658363,0.18084850122715698,6.317059789934106,6.317059789934106,7.2650047244989935,7.2650047244989935,6.102264530233782,6.102264530233782,19.973510740516218,19.973510740516218,21.46195242746994,21.46195242746994,7.079304999088961,5.186445504052145,8.663076667979297,5.6786516416902515,6.521601700649541,8.55318430175977,5.699909797307626,9.823572073403241,6.7615848640198095,5.678010598993708,84.40395770658834,84.40395770658834,0.0,93.7821752295426,0.0,84.40395770658834,93.7821752295426,0,0
+2017/05/08 07:00:00,147.20944706626872,0,863.6947893038832,0,0,0,0.0,0.0,7.9533070238995,0.0,69.33401494192633,0,39.380909295966944,0.04373484493259218,27.065505757089074,0,0,16.376413722566983,581.1407317372353,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,276.9137233654162,0.0,1566.3252458392062,0.0,1060.6260170532546,0.0,596.19164290249,0.0,1622.471183368037,0.0,291.2242228905973,0.0,1531.4779497564737,0.0,988.2954058373414,0.0,356.0656281190304,0.0,1990.4167036762874,0,0,0,0,0,0,0,0,0.045983750327027145,0.0014548938070290684,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.002423306234121413,-0.002423306234121413,0.06366005536968235,0.06366005536968235,-0.0688199756379788,-0.0688199756379788,1.0830547408972857,1.0830547408972857,0.5187186151355649,0.5187186151355649,-0.37503960899746025,-0.2643665803622389,-0.4528156866413034,-0.20813699215097056,-0.01711665733544342,-0.42593050786882547,-0.3162989959104735,-0.48341659941051274,-0.24384035767371662,-0.09470942853008844,5.000121561919542,5.000121561919542,5.083906140297216,5.083906140297216,5.098062287001142,5.098062287001142,29.744187378705362,29.744187378705362,10.626944251739687,10.626944251739687,7.928552250239775,6.4511136029380935,9.279028070283644,5.898468848929255,5.0060649114455344,8.782877129251332,7.079761748287368,9.881600341506996,6.233989427571657,5.185755361489996,147.20944706626872,147.20944706626872,0.0,163.56605229585412,0.0,147.20944706626872,163.56605229585412,0,0
+2017/05/08 08:00:00,163.6543276231966,0,882.8223411224752,0,0,0,0.7215224699124163,0.0,11.36563784648343,0.0,83.2008179303116,0,39.380909295966944,0.00391540512330429,25.54954947294461,0,0,1.6871457339752285,561.7220227756028,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2938.080830500789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174.30469730578582,0.0,88.82956467707085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,372.59162439456657,0.0,131.27687515376863,0.0,0.0,0.0,126.58904626701586,0,0,0,0,0,0,0,0,0.047002115353754134,0.0014871141666157302,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.24981278257032202,-0.24981278257032202,-0.2918358184182244,-0.2918358184182244,-0.35658189647515803,-0.35658189647515803,1.1195753964287964,1.1195753964287964,0.07957585864481274,0.07957585864481274,-0.34069081758778363,-0.35982156621335476,-0.4623825796571231,-0.16813537343218246,-0.21814183080885177,-0.34207196285021263,-0.3912475179032395,-0.47176058238353663,-0.16387702555879305,-0.2860220032443075,6.295337616359248,6.295337616359248,6.769442401369915,6.769442401369915,7.646031689638633,7.646031689638633,31.41525063207598,31.41525063207598,5.131119291800758,5.131119291800758,7.414414850544333,7.694569115973195,9.46307791798138,5.58592413970311,5.987099965122823,7.434119437230592,8.18861934027737,9.647319699143054,5.55658649327853,6.699413290092551,163.6543276231966,163.6543276231966,0.0,181.83814180355176,0.0,163.6543276231966,181.83814180355176,0,0
+2017/05/08 09:00:00,182.1659540645343,0,912.7016129581793,0,0,0,1.0027058469363244,0.0,11.287802377079139,0.0,106.27511244621549,0,39.380909295966944,0.00044756376614073624,20.787001332116034,0,0,0.19548352903974486,539.8574280474262,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4158.600002952762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048592909918062865,0.0015374457977551754,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.39147502741288387,-0.39147502741288387,-0.1941797699106011,-0.1941797699106011,-0.5357652772028704,-0.5357652772028704,1.133201279189888,1.133201279189888,-0.07497305303647377,-0.07497305303647377,-0.21129344222519145,-0.35863552251654474,-0.40906835378957745,-0.09638833385467745,-0.2276518012121129,-0.18772421694759328,-0.39093115778415566,-0.4039299478580205,-0.06435802126674595,-0.28988830886611994,8.192349743981367,8.192349743981367,5.7818224112064485,5.7818224112064485,11.006153933370271,11.006153933370271,32.05016365182948,32.05016365182948,5.116385945506039,5.116385945506039,5.92597871531467,7.676747707143292,8.48752680844379,5.192402213630459,6.07523472790696,5.730625323979709,8.183435757207022,8.399946483894908,5.085756455167868,6.745825111087626,182.1659540645343,182.1659540645343,0.0,202.40661562726032,0.0,182.1659540645343,202.40661562726032,0,0
+2017/05/08 10:00:00,213.08632245230194,0,979.2931067226882,0,0,0,0.9680393382151176,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.0002063132845167283,18.611606515431305,0,0,0.0903151300754752,517.828208929539,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3997.9473480767147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052138290370848696,0.001649619163947282,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.26667955141960664,-0.26667955141960664,-0.37139103242731913,-0.37139103242731913,-0.45269100833587456,-0.45269100833587456,1.074344631116109,1.074344631116109,0.033208552198689255,0.033208552198689255,-0.1642424196129884,-0.3689375987350929,-0.3891601594296216,-0.15143898298751748,-0.24752591558564327,-0.11054033884631659,-0.38904400688014334,-0.3634801461391324,-0.11161893199584365,-0.29712828619977766,6.476691300740654,6.476691300740654,7.87155433652957,7.87155433652957,9.276655487571148,9.276655487571148,29.35241284883017,29.35241284883017,5.022829806122331,5.022829806122331,5.559074200492589,7.833546089132,8.154496813654603,5.475223178197652,6.271670039562807,5.253080750264246,8.152603509897773,7.749920079568923,5.258046434605532,6.834433031759346,213.08632245230194,213.08632245230194,0.0,236.7625805025577,0.0,213.08632245230194,236.7625805025577,0,0
+2017/05/08 11:00:00,225.665673322256,0,1034.5501632325318,0,0,0,1.0272763685011468,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,4.4525818505526165e-05,20.864444033561398,0,0,0.01950637247754741,519.9205454281642,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4262.997183329824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05508021698870289,0.0017426996714441738,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.026681955186757242,0.026681955186757242,-0.38137605394585106,-0.38137605394585106,-0.25947116357497035,-0.25947116357497035,1.055310027144927,1.055310027144927,0.2416190037498196,0.2416190037498196,-0.08083924888299265,-0.2693954350415429,-0.32710131972072864,-0.08845522127083294,-0.29719295454890304,0.005433963086959222,-0.27475426686239324,-0.2796747846145735,-0.03306646382823895,-0.32327365968139277,5.014737710512975,5.014737710512975,8.028889563000604,8.028889563000604,6.397721060634581,6.397721060634581,28.50557002050276,28.50557002050276,6.211554244240347,6.211554244240347,5.13531700953682,6.507012156097602,7.2248549431191265,5.162024146471239,6.835234467619031,5.000611244239849,6.567751137112992,6.624588135064926,5.022634852180701,7.1728772713334905,225.665673322256,225.665673322256,0.0,250.7396370247289,0.0,225.665673322256,250.7396370247289,0,0
+2017/05/08 12:00:00,204.94809601081934,0,996.9129901125857,0,0,0,0.9173258976297687,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,3.1318422260205196e-05,18.51904091257936,0,0,0.01372366345240614,517.7795075297875,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3771.6851320361566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053076386013691926,0.0016792998561802378,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2335914744469817,0.2335914744469817,-0.3024259878752722,-0.3024259878752722,-0.13165881506641214,-0.13165881506641214,0.9988317649602856,0.9988317649602856,0.3736585092105693,0.3736585092105693,-0.03770638742406837,-0.19088353288592982,-0.22928083381398787,-0.2286008169979888,-0.15063414958928215,0.07926067490878183,-0.18033903316256697,-0.21959618954356436,-0.18838319007829374,-0.15823366745989617,6.1322052922463115,6.1322052922463115,6.900673482239526,6.900673482239526,5.359100053977713,5.359100053977713,26.070486397914635,26.070486397914635,7.906909984556236,7.906909984556236,5.0294332625660445,5.755463346651965,6.090712363598229,6.084237908537943,5.47018038782555,5.130082384878975,5.67419057521532,6.000332891622477,5.735771643344378,5.518871629272326,204.94809601081934,204.94809601081934,0.0,227.72010667868815,0.0,204.94809601081934,227.72010667868815,0,0
+2017/05/08 13:00:00,202.63600322572225,0,959.2378954310919,0,0,0,0.8422505848618635,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,3.095231527858436e-05,16.341494351730233,0,0,0.013566210260531232,515.5949228140298,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3441.3859970548992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0510705360666554,0.0016158361620487527,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3050115087157034,0.3050115087157034,-0.16505154800887875,-0.16505154800887875,-0.052532116585464805,-0.052532116585464805,0.9800485568814735,0.9800485568814735,0.4513136779948473,0.4513136779948473,-0.043436127626505644,-0.07721358574519532,-0.1422101471210948,-0.2415207376023476,-0.08570821019172893,0.05830159718827926,-0.0491810177193104,-0.2561168025984539,-0.22015097032229614,-0.0870414087924199,6.9334327822616615,6.9334327822616615,5.564602788301343,5.564602788301343,5.057132653084807,5.057132653084807,25.287167921323714,25.287167921323714,9.25048989805046,9.25048989805046,5.039058882040493,5.123448039219653,5.419017236619894,6.210566564816929,5.152113723276642,5.07037330208486,5.050075233820465,6.361718532126062,6.005404085836872,5.156884421969323,202.63600322572225,202.63600322572225,0.0,225.15111469524695,0.0,202.63600322572225,225.15111469524695,0,0
+2017/05/08 14:00:00,186.34892038458412,0,899.8558657012572,0,0,0,0.7887417911529359,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,1.3113227056334807e-05,14.09131413246442,0,0,0.00574768860442744,491.71106411839537,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3208.493117229293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047908992819173706,0.001515807137475866,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3033086433486628,0.3033086433486628,0.03767865983053621,0.03767865983053621,0.004867994095991151,0.004867994095991151,0.9758215764001611,0.9758215764001611,0.468336056816123,0.468336056816123,-0.08810761341197716,0.0376983263438498,-0.20420196893910267,-0.2744650338239662,-0.14814703488430928,0.01755743662250328,0.10415205213177953,-0.3164155389558423,-0.25323280744214877,-0.14496800274950905,6.911825197797654,6.911825197797654,5.029389987912737,5.029389987912737,5.000490547857879,5.000490547857879,25.11275738175742,25.11275738175742,9.579601658823535,9.579601658823535,5.1607527771681845,5.029420678297598,5.864757336647656,6.5644419650583785,5.454767521222607,5.006381298615338,5.224660539469255,7.081300727905159,6.331142873223627,5.4354417880576875,186.34892038458412,186.34892038458412,0.0,207.05435598287124,0.0,186.34892038458412,207.05435598287124,0,0
+2017/05/08 15:00:00,179.5343337311624,0,899.8396901929627,0,0,0,0.674173501522878,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,1.1344171433146557e-05,14.091940534416493,0,0,0.003948039454646763,491.6966882592508,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2716.746443737797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047908131623130804,0.0015157798898333718,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1888042700011451,0.1888042700011451,0.19990862338082693,0.19990862338082693,-0.024448563776229806,-0.024448563776229806,0.9504872831329462,0.9504872831329462,0.4492266232790531,0.4492266232790531,-0.08609312079985383,0.06608561069259107,-0.27553186548537123,-0.22476372686783788,-0.2621104655564829,-0.15818803313982935,-0.06494042838056152,-0.28003388618361297,-0.20516487736440464,-0.249547217703861,5.739069610699673,5.739069610699673,5.828715077219158,5.828715077219158,5.012373689041709,5.012373689041709,24.081994806690517,24.081994806690517,9.21099697197684,9.21099697197684,5.15348351104825,5.090423152682206,6.576665280595506,6.048068320703933,6.4263816530658175,5.518572062575345,5.087315875941272,6.628776099499618,5.872946736275878,6.292577912711494,179.5343337311624,179.5343337311624,0.0,199.4825930346249,0.0,179.5343337311624,199.4825930346249,0,0
+2017/05/08 16:00:00,202.43730907167253,0,953.0773410774708,0,0,0,0.7514488227498821,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,1.277692278229125e-05,14.033160945966184,0,0,0.005601217839204004,491.69715719655784,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3047.6929627022964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05074254358970493,0.001605458708707656,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1699176848439584,0.1699176848439584,0.39601765142843803,0.39601765142843803,0.0389926589472928,0.0389926589472928,0.9619157748258353,0.9619157748258353,0.5161189167233491,0.5161189167233491,-0.03615521695718453,-0.033927033869700016,-0.25722227323559055,-0.1647328124487515,-0.27101899699945603,-0.23290100101001424,0.003378130884159062,-0.21390319097911623,-0.1319572202308089,-0.27874595167963884,5.598427756543657,5.598427756543657,8.267296907846173,8.267296907846173,5.031475756553078,5.031475756553078,24.54387556045765,24.54387556045765,10.570218275668154,10.570218275668154,5.027061275688368,5.023828409994877,6.373531308262443,5.562421683349484,6.525286433987148,6.125506566389774,5.0002362294302,5.949038849791478,5.360730950439546,6.6137809970926185,202.43730907167253,202.43730907167253,0.0,224.93034341296948,0.0,202.43730907167253,224.93034341296948,0,0
+2017/05/08 17:00:00,209.3291876526917,0,979.1937430301165,0,0,0,0.7645560845811893,0.0,16.693521066485914,0.0,133.89528835348938,0,39.380909295966944,2.0314029626451082e-05,18.594892538138613,0,0,0.00890707357543656,517.8102532934672,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3104.1810927228207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05213300017425682,0.0016494517858146865,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1335854391652685,0.1335854391652685,0.2964792680564909,0.2964792680564909,0.07796490761437995,0.07796490761437995,0.9598876979361447,0.9598876979361447,0.5549174279293765,0.5549174279293765,0.006641776387685467,-0.09556173967924611,-0.18635930873415865,-0.1440539747664625,-0.20548883586322803,-0.2619086215153688,-0.051563337121724076,-0.18225413379323102,-0.1134210484554177,-0.21764523984372824,5.369695015295079,5.369695015295079,6.826399527539479,6.826399527539479,5.1258627885674315,5.1258627885674315,24.461537335538978,24.461537335538978,11.447216251978816,11.447216251978816,5.000913166973561,5.189115075565141,5.720023629063306,5.429963171899786,5.875710679116182,6.424179443626784,5.0550445930179535,5.688606315050052,5.266450933998371,5.982601876418755,209.3291876526917,209.3291876526917,0.0,232.58798628076855,0.0,209.3291876526917,232.58798628076855,0,0
+2017/05/08 18:00:00,193.84282917986155,0,987.6106208198566,0,0,0,0.7278672591854541,0.0,17.250223901202155,0.0,110.93442390708215,0,39.380909295966944,1.458599715278155e-05,25.549390230427715,0,0,0.00639588599673123,561.7199947833301,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2946.119060742467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05258112098222008,0.0016636300158126736,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.09013996980443804,0.09013996980443804,0.23775579665525118,0.23775579665525118,0.10632747997147608,0.10632747997147608,0.9450094849754189,0.9450094849754189,0.5680497335390478,0.5680497335390478,-0.1867057561592311,-0.0676116900519587,-0.25773145428624755,-0.07355034616517395,-0.08048122629473028,-0.24345875894408953,-0.035706824634053086,-0.19057752423019914,-0.05733900833497487,-0.09513743406808996,5.168257111034038,5.168257111034038,6.173030284590013,6.173030284590013,5.234148291688413,5.234148291688413,23.862432539661086,23.862432539661086,11.758835095644457,11.758835095644457,5.7227072317436125,5.094648421087896,6.378989580120006,5.1120096634440415,5.134120728650501,6.230120620180983,5.026394178853522,5.753039316122141,5.068068348939377,5.187438742502707,193.84282917986155,193.84282917986155,0.0,215.38092131095726,0.0,193.84282917986155,215.38092131095726,0,0
+2017/05/08 19:00:00,189.15702972466815,0,971.5442192887359,0,0,0,0.6109966165680731,0.0,20.37747803980995,0.0,101.68988858149199,0,39.380909295966944,1.4715520041223611e-05,27.097742475311204,0,0,0.006453349876428411,581.1438883008741,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2449.364153439605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05172573386421249,0.0016365661636529199,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.014051751725675441,-0.014051751725675441,-0.006985678455421685,-0.006985678455421685,0.0011693466228161994,0.0011693466228161994,0.9239266226502602,0.9239266226502602,0.5036104619568068,0.5036104619568068,-0.19761032025727357,-0.09966061334007634,-0.2935196302104983,-0.12629014418823226,-0.10282208847142404,-0.1812163139818279,-0.09008886259772533,-0.3258699098932241,-0.11581163352343325,-0.12211669267273337,5.004087385720851,5.004087385720851,5.001010180476655,5.001010180476655,5.0000283052759755,5.0000283052759755,23.028496300541207,23.028496300541207,10.301367979129708,10.301367979129708,5.809737834882455,5.205693517107392,6.789990976051158,5.3303908531950555,5.2189569189832525,5.6807752179535385,5.168066300725712,7.208065239462641,5.277808054339161,5.308900993879348,189.15702972466815,189.15702972466815,0.0,210.1744774718535,0.0,189.15702972466815,210.1744774718535,0,0
+2017/05/08 20:00:00,208.08384115353877,0,896.2663242831845,0,0,0,0.5124023522355426,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,5.486927251387922e-05,23.099629968327655,0,0,0.02407197384508695,541.3387271838982,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2037.6267757581963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04771788297527825,0.001509760555229564,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1033325218502842,-0.1033325218502842,-0.14757160584790505,-0.14757160584790505,-0.0834876660887709,-0.0834876660887709,0.9052751451287253,0.9052751451287253,0.4346149758093256,0.4346149758093256,-0.1732545431695961,-0.11659075722259697,-0.2798216330106324,-0.13746290653970192,-0.11754688339598726,-0.14655260907897988,-0.12962104409028477,-0.25816019123043904,-0.13459725786077434,-0.1443505121042665,5.221137255968017,5.221137255968017,5.451238228167156,5.451238228167156,5.1443314307952335,5.1443314307952335,22.30557876624019,22.30557876624019,8.939748812497015,8.939748812497015,5.6221933918034495,5.281560793521024,6.626300073602707,5.391486198279338,5.286200553645372,5.445022213586157,5.348061861033045,6.383593973744723,5.375321078863422,5.431736783642663,208.08384115353877,208.08384115353877,0.0,231.2042679483764,0.0,208.08384115353877,231.2042679483764,0,0
+2017/05/08 21:00:00,195.1464340362548,0,881.1980630903016,0,0,0,0.3306521783896944,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.00011742647634076681,25.493708382609963,0,0,0.051550026917117214,561.7333404504874,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1295.699931672376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046915637588207645,0.0014843780703938142,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.26898544303828187,-0.26898544303828187,-0.34621112653051805,-0.34621112653051805,-0.23723445152670444,-0.23723445152670444,0.8811441303041655,0.8811441303041655,0.2787696623868455,0.2787696623868455,-0.14857153173238455,-0.12559151559967502,-0.25381173513334937,-0.17170488925650754,-0.14309418061442067,-0.1435713390792351,-0.14028407185222447,-0.23627474103963192,-0.17887268493883285,-0.17751319122735337,6.502414983838804,6.502414983838804,7.493657742823402,7.493657742823402,6.167879410411771,6.167879410411771,21.391211521908758,21.391211521908758,6.614056422878079,6.614056422878079,5.457379935149746,5.326743029156518,6.337252510996521,5.611098743202078,5.424247668281865,5.427084318955437,5.40773414028547,6.158427333274659,5.663256277444319,5.653198955085131,195.1464340362548,195.1464340362548,0.0,216.8293711513942,0.0,195.1464340362548,216.8293711513942,0,0
+2017/05/08 22:00:00,138.3543385012718,0,699.6036607934697,0,0,0,0.023625295121163285,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.0001136094795113578,20.86165439012204,0,0,0.04991651324555846,539.8471579737756,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,90.34955902172452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0372474171017399,0.0011784823135075823,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4734717231696249,-0.4734717231696249,-0.3988139027405097,-0.3988139027405097,-0.44006769446137833,-0.44006769446137833,0.8123737118460735,0.8123737118460735,0.011442242005157012,0.011442242005157012,-0.19975064942142376,-0.20391386729024039,-0.32160769026100133,-0.2826612262484066,-0.22751408153987596,-0.20919881704548582,-0.23895236803031134,-0.3190282550745913,-0.2902318585629298,-0.26556690547677864,9.681345928996805,9.681345928996805,8.31387002942715,8.31387002942715,9.039898994039774,9.039898994039774,18.917264699617476,18.917264699617476,5.002710226876786,5.002710226876786,5.827403605945534,5.862314612859848,7.1504482746505005,6.659582521484012,6.073931338868874,5.907676573765897,6.1848955232511,7.115953331634117,6.749979674961821,6.4643591272215275,138.3543385012718,138.3543385012718,0.0,153.7270427791909,0.0,138.3543385012718,153.7270427791909,0,0
+2017/05/08 23:00:00,90.7663449603401,0,521.4965246982651,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.004118349939697097,11.819270349107844,0,0,1.8234018096679365,466.43759411978107,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.36878948195189,0.0,177.5510213677347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,191.58153362202037,0.0,371.2729746021349,0,0,0,0,0,0,0,0,0.02776486125088812,0.0008784608562733125,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5220743800683609,-0.5220743800683609,-0.566094853302502,-0.566094853302502,-0.5170721789144059,-0.5170721789144059,0.6320203146488607,0.6320203146488607,-0.2788363246479,-0.2788363246479,-0.24195062929666508,-0.31037532726365297,-0.4069917715778127,-0.3710655287641197,-0.31625018456278137,-0.2695760586263195,-0.34770463184442596,-0.4183509059882008,-0.389361781258447,-0.3491753258214831,10.700600143597796,10.700600143597796,11.711973566813953,11.711973566813953,10.590984708500372,10.590984708500372,13.383809236119049,13.383809236119049,6.61483090495129,6.61483090495129,6.214890427867218,7.002295878845189,8.451996889368743,7.866496914258022,7.0791173533635146,6.509039705404106,7.515319324393815,8.648607964890658,8.157784648161638,7.536742733316871,90.7663449603401,90.7663449603401,0.0,100.85149440037789,0.0,90.7663449603401,100.85149440037789,0,0
+2017/05/09 00:00:00,39.3443881142873,0,516.6853906782828,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.579087079155052e-09,9.547067115285028,0,0,0.0,463.4498619094667,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027508712912025224,0.0008703565013818114,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.30039707734706916,-0.30039707734706916,-0.33523711206591733,-0.33523711206591733,-0.3284139821740031,-0.3284139821740031,0.6960518564726781,0.6960518564726781,0.04542730560338336,0.04542730560338336,-0.11699607097294397,-0.1137094763033984,-0.30157191146478296,-0.1984726438450134,-0.07813342107371755,-0.173103629632633,-0.19193833694338006,-0.34216814939608564,-0.2626466881976493,-0.1294175275589407,6.875164562683651,6.875164562683651,7.337399333494517,7.337399333494517,7.242823309902477,7.242823309902477,15.188049472340339,15.188049472340339,5.042722337751528,5.042722337751528,5.283523007258324,5.267808593896007,6.88991420645236,5.816832207923895,5.126407604878523,5.621108532656109,5.763848908976001,7.435494734637672,6.432240413319647,5.346968937607841,39.3443881142873,39.3443881142873,0.0,43.715986793652554,0.0,39.3443881142873,43.715986793652554,0,0
+2017/05/09 01:00:00,23.72221130120213,0,53.27528153241424,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251158775243352,0,0,0.0,17.7849290198701,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002836415450141934,8.974220769782649e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.25352850136076005,-0.25352850136076005,-0.2765615473959157,-0.2765615473959157,-0.3023673341302487,-0.3023673341302487,0.6131180892338078,0.6131180892338078,0.2441508717281677,0.2441508717281677,-0.1935074560982856,-0.13788574761876857,-0.38579727012709386,-0.24471991407716498,0.01750675134545903,-0.2417591677021672,-0.21356602371593514,-0.412867398127672,-0.3122690640093254,-0.06216018782202031,6.334261679399631,6.334261679399631,6.588508452570238,6.588508452570238,6.89993360191859,6.89993360191859,12.88517181016492,12.88517181016492,6.237142062846544,6.237142062846544,5.7764092454628155,5.3939003693617025,8.099914456116068,6.2429300374842,5.006344507882588,6.2129637429997615,5.946043545990591,8.55300573889204,7.026899360529612,5.079998287642994,23.72221130120213,23.72221130120213,0.0,26.358012556891254,0.0,23.72221130120213,26.358012556891254,0,0
+2017/05/09 02:00:00,28.344552975808448,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251898893355526,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.22758408409014433,-0.22758408409014433,-0.24739247060661868,-0.24739247060661868,-0.2824150541226802,-0.2824150541226802,0.576605872983645,0.576605872983645,0.32635209796420606,0.32635209796420606,-0.2154785169270823,-0.16308835852712067,-0.40434560075734916,-0.2669339461917468,0.04254816262970337,-0.27218074347917903,-0.23853389945360096,-0.44474667033962834,-0.33658488672340947,-0.05534718318795301,6.074593748720886,6.074593748720886,6.270295758509434,6.270295758509434,6.65668370826819,6.65668370826819,11.965889761434525,11.965889761434525,7.214631990118875,7.214631990118875,5.9630967124634395,5.5512359945279,8.40698896017632,6.4795182450917395,5.0374781152289785,6.538430839042647,6.180739140680956,9.126856362130553,7.356314680476316,5.063420774918697,28.344552975808448,28.344552975808448,0.0,31.493947750898275,0.0,28.344552975808448,31.493947750898275,0,0
+2017/05/09 03:00:00,23.774875338205106,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5777799145273169,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.23024540713149796,-0.23024540713149796,-0.2474639197110086,-0.2474639197110086,-0.2886125499941921,-0.2886125499941921,0.5256862347794192,0.5256862347794192,0.3642158387174628,0.3642158387174628,-0.23736576140038812,-0.18184604361735157,-0.4249184692009736,-0.28624168766472136,0.06799655533945881,-0.3045356570284093,-0.2670427226045926,-0.47713755676858527,-0.364910137776476,-0.046056352920157535,6.099929356039297,6.099929356039297,6.271031482930553,6.271031482930553,6.730440910146029,6.730440910146029,10.78042155261683,10.78042155261683,7.76111928534786,7.76111928534786,6.169175673003053,5.685521616185696,8.764806779882989,6.702033511776136,5.09572924350131,6.927382372353662,6.480727847348533,9.754666378451844,7.77170952042151,5.043913824383964,23.774875338205106,23.774875338205106,0.0,26.416528153561227,0.0,23.774875338205106,26.416528153561227,0,0
+2017/05/09 04:00:00,40.03294462829209,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.0,0.0,0.524811078657968,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.12721731525406138,-0.12721731525406138,-0.14340913233225064,-0.14340913233225064,-0.18701988799078895,-0.18701988799078895,0.6048067650131763,0.6048067650131763,0.4846892841529426,0.4846892841529426,-0.19924952723179148,-0.14022081140203346,-0.38840701968852187,-0.24676806783268995,0.10557914041684424,-0.2895713954830943,-0.2496001855233185,-0.4625666400627809,-0.34979335068771356,-0.001587576591968887,5.335263325553214,5.335263325553214,5.426118955797492,5.426118955797492,5.725144849782254,5.725144849782254,12.670828255218424,12.670828255218424,9.907535628789446,9.907535628789446,5.82325028646332,5.407366174355914,8.142230773463979,6.263875299095361,5.230862366039958,6.741997080766126,6.293128108353969,9.466657546824067,7.545772869102393,5.000052173534428,40.03294462829209,40.03294462829209,0.0,44.48104958699121,0.0,40.03294462829209,44.48104958699121,0,0
+2017/05/09 05:00:00,74.453661886479,0,212.9421150752648,0,0,0,0.6806872788160082,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.4618497216732845,0.0,0.5250818560338218,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,148.24483241137642,2074.0725903971265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.14695696459940125,0.14695696459940125,0.12937023857148525,0.12937023857148525,0.09266969946567617,0.09266969946567617,0.8173927833825966,0.8173927833825966,0.7220648266286835,0.7220648266286835,-0.11699313910509954,-0.05944570417307374,-0.3037989913337823,-0.16523045993009386,0.22331783775670958,-0.21938795277388434,-0.17970250782562106,-0.3903681412103082,-0.2801885800926406,0.1286023548364144,5.44748366172314,5.44748366172314,5.346715233129558,5.346715233129558,5.17783738130548,5.17783738130548,19.091135062564916,19.091135062564916,15.971662355817742,15.971662355817742,5.283508788926838,5.073162846538736,6.918034627958463,5.565828937255901,6.034599061380646,5.9984327495917995,5.669433094227429,8.174221270342713,6.630581868586162,5.342608566646703,74.453661886479,74.453661886479,0.0,82.72629098497666,0.0,74.453661886479,82.72629098497666,0,0
+2017/05/09 06:00:00,85.65824459672194,0,678.8008053926268,0,0,0,0.04313754562832607,0.0,10.365700228685935,0.0,73.80580873715317,0,0.918606054587915,2.5208088731885805e-09,0.524992028145737,0,0,0.0,448.11351406109,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,169.29231252424603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03613985767138534,0.0011434399051637723,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2937058902670749,0.2937058902670749,0.2716413487190137,0.2716413487190137,0.23806078164490724,0.23806078164490724,0.9172833828492576,0.9172833828492576,0.7940289379722582,0.7940289379722582,-0.09148607709405403,-0.03736116792577736,-0.2730330973904699,-0.1225660617793208,0.328930190433042,-0.16665492451361286,-0.13003739910394613,-0.33330427272908303,-0.20695154607251584,0.23283745277398618,6.792271377224736,6.792271377224736,6.532320865773386,6.532320865773386,6.176048817079931,6.176048817079931,22.769402433409184,22.769402433409184,18.29081267912335,18.29081267912335,5.173321862081778,5.028896745756711,6.5481108403038775,5.3111800952460015,7.249909445034817,5.57563893002343,5.350303134741978,7.310407494516824,5.888244880766919,6.1248910494840345,85.65824459672194,85.65824459672194,0.0,95.17582732969105,0.0,85.65824459672194,95.17582732969105,0,0
+2017/05/09 07:00:00,146.33415809512306,0,847.8728156778432,0,0,0,0.0,0.0,8.25495517876198,0.0,69.33401494192633,0,39.380909295966944,0.0013238017844044803,27.07497140838053,0,0,0.5920655449007143,581.1031062888616,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,164.36821493490658,0.0,0.0,0.0,180.89788289175073,0.0,0.0,0.0,0.0,0.0,4.451004574702601,0.0,0.0,0.0,15.503445056137611,0.0,0.0,0,0,0,0,0,0,0,0,0.045141376731735426,0.0014282416936568713,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.11569921869780572,0.11569921869780572,0.10163266082339195,0.10163266082339195,0.05218343710412477,0.05218343710412477,0.8354157536774752,0.8354157536774752,0.5600590892280655,0.5600590892280655,-0.17332186033998512,-0.2075553186118867,-0.3223985079118834,-0.26040130314874776,0.13189936318640627,-0.20959991989932075,-0.27078610372059564,-0.3692145798670313,-0.31557564546508465,0.04665506643862454,5.277268677396549,5.277268677396549,5.213918200825049,5.213918200825049,5.0563766472712075,5.0563766472712075,19.724212083281174,19.724212083281174,11.56833280023288,11.56833280023288,5.622677615408392,5.893444812855861,7.161080407778044,6.407788138155681,5.3604144505166005,5.911167059662787,6.522658241212525,7.8378241915392834,7.070222594561599,5.045063080510573,146.33415809512306,146.33415809512306,0.0,162.59350899458119,0.0,146.33415809512306,162.59350899458119,0,0
+2017/05/09 08:00:00,160.8579793732393,0,881.1271842104843,0,0,0,0.041943935888490276,0.0,11.541431746919748,0.0,83.2008179303116,0,39.380909295966944,0.00015058733100871232,25.548734142670053,0,0,0.0673757473954213,561.6466358501918,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,161.8038174073445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04691186394414572,0.0014842586749261417,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.22701627550110207,-0.22701627550110207,-0.29104056233883446,-0.29104056233883446,-0.23445337679823075,-0.23445337679823075,0.8747239031836936,0.8747239031836936,0.22755817692027505,0.22755817692027505,-0.20602817397610748,-0.23493731460277184,-0.3190223952149332,-0.2892060386917285,-0.09606579971987982,-0.2503761958318986,-0.29750344277653995,-0.3296860237113109,-0.32864701534943885,-0.1461086065324153,6.0692266997153155,6.0692266997153155,6.7597790460321505,6.7597790460321505,6.140595233154642,6.140595233154642,21.15194900379319,21.15194900379319,6.074348574204862,6.074348574204862,5.880321935094344,6.1453196530113985,7.115875288372621,6.737589160183688,5.191116210271176,6.30120232508753,6.839084814535269,7.260305373980529,7.246020821776128,5.442327261736111,160.8579793732393,160.8579793732393,0.0,178.7310881924881,0.0,160.8579793732393,178.7310881924881,0,0
+2017/05/09 09:00:00,178.24106346324396,0,892.4148495289098,0,0,0,0.32576582601575754,0.0,11.471581537141494,0.0,106.27511244621549,0,39.380909295966944,4.097716013664858e-05,20.787653380744135,0,0,0.018418556464253895,519.7477295907321,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1282.645716130697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04751282760654764,0.0015032727462983102,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.24571747004653915,-0.24571747004653915,-0.3732017563000938,-0.3732017563000938,-0.22177558969341357,-0.22177558969341357,0.9409960584593263,0.9409960584593263,0.27084986937074024,0.27084986937074024,-0.08719200237590746,-0.2061043625382497,-0.2424594885195111,-0.2293511391312753,-0.14925094631566263,-0.11715476468210291,-0.2629346794474176,-0.3343906346258816,-0.2360621601777215,-0.20984759941569592,6.253109436998756,6.253109436998756,7.899770425947693,7.899770425947693,6.0203287533672665,6.0203287533672665,23.702318582878263,23.702318582878263,6.523377607216688,6.523377607216688,5.157427938661357,5.8809743165045205,6.220018580149286,6.0913828483502215,5.461576764277808,5.2842931381727425,6.435391997218488,7.3255588725001815,6.156338879365251,5.913325784966858,178.24106346324396,178.24106346324396,0.0,198.04562607027106,0.0,178.24106346324396,198.04562607027106,0,0
+2017/05/09 10:00:00,209.36969006482397,0,979.0361608350868,0,0,0,0.692522097627783,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,1.9148477917595876e-05,18.602653735801475,0,0,0.006854001078180664,517.6547241709347,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2801.8732392045004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052124610381471266,0.0016491863386191193,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.011838755019235153,0.011838755019235153,-0.15110200058694265,-0.15110200058694265,0.013630615732192718,0.013630615732192718,0.9789770180545603,0.9789770180545603,0.5153404935630735,0.5153404935630735,-0.23489308350690896,-0.19242070640121073,-0.23570052885127818,-0.1957687766049377,-0.09878900137598251,-0.10394956367281193,-0.19744915987922457,-0.26112219666440656,-0.1693744958184438,-0.15216860385787642,5.002901320038276,5.002901320038276,5.473108487272455,5.473108487272455,5.00384605428188,5.00384605428188,25.24288960603664,25.24288960603664,10.553289799069816,10.553289799069816,6.144887440925899,5.767699180038406,6.152790469915274,5.794691471821466,5.202109788637927,5.223787417439212,5.808415410025205,6.415615550702668,5.594603035373908,5.479818028713552,209.36969006482397,209.36969006482397,0.0,232.63298896091553,0.0,209.36969006482397,232.63298896091553,0,0
+2017/05/09 11:00:00,226.7053718049277,0,1054.3460465073458,0,0,0,1.0797868906970682,0.0,17.61111084770849,0.0,147.76209134187457,0,39.380909295966944,2.8564384960247094e-09,20.87147342582407,0,0,0.0,539.7359350754559,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3549.472444906884,683.2582961851307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05613416447719671,0.001776045835318116,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.20407416592044705,0.20407416592044705,0.024507561148482408,0.024507561148482408,0.20997600016854198,0.20997600016854198,0.971001566708948,0.971001566708948,0.756324291475383,0.756324291475383,-0.12911419243857922,-0.16473788698045633,-0.18380697598524462,-0.18330475958131173,0.10478862670896041,-0.10527926472220676,-0.19168905428599206,-0.18451676577544943,-0.19538855339407138,0.061424103105105085,5.863673306255691,5.863673306255691,5.012433481155625,5.012433481155625,5.914445911064433,5.914445911064433,24.914721270260728,24.914721270260728,17.048106933308944,17.048106933308944,5.3453431655483,5.562456375149736,5.7004076140292455,5.696579850462328,5.227416511849981,5.229552151395353,5.761862946895377,5.705835410779457,5.79160251047044,5.078114550056327,226.7053718049277,226.7053718049277,0.0,251.89485756103076,0.0,226.7053718049277,251.89485756103076,0,0
+2017/05/09 12:00:00,213.5167908322232,0,996.759273029905,0,0,0,9.296022187791985,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.802830870364563e-09,18.604294559079605,0,0,0.0,517.639514110559,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3986.70161014963,7236.956643114878,19.832402182336523,0.0,16.457396203619655,0.0,10148.445475192082,95.25826594879783,0.0,119.57246219307714,0.0,9433.262847964937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05306820200235074,0.001679040919766129,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4346488113490573,0.4346488113490573,0.2107662040804636,0.2107662040804636,0.40857073186611836,0.40857073186611836,0.9898109270278704,0.9898109270278704,0.8430857142004151,0.8430857142004151,0.12433913841911633,0.0362523870611951,0.03892844103117329,0.0032284990799914893,0.2276605910478603,0.15873783456546023,0.03210682892920105,0.07197231181638998,0.004084684470177165,0.21329682706472672,8.940366332496325,8.940366332496325,5.921354584983675,5.921354584983675,8.478995770296493,8.478995770296493,25.692604542534497,25.692604542534497,19.997754139679685,19.997754139679685,5.320254647602297,5.027206938526945,5.03137215857646,5.000215765683251,6.075317942557405,5.522187011904222,5.021340066341466,5.107253754326166,5.000345380798706,5.943655492753251,213.5167908322232,213.5167908322232,0.0,237.2408787024702,0.0,213.5167908322232,237.2408787024702,0,0
+2017/05/09 13:00:00,209.58016446345653,0,959.0589809633799,0,0,0,7.908698749292657,0.0,16.73568395689411,0.0,129.2730206906943,0,39.380909295966944,2.7483034833847783e-09,16.281851767860115,0,0,0.0,515.4295745565782,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3963.6607727541273,7218.108189615116,0.0,0.0,0.0,0.0,8014.965812158907,0.0,0.0,0.0,0.0,7240.449541311007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05106101052787128,0.0016155347806414712,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.47489725848848896,0.47489725848848896,0.2866239514639518,0.2866239514639518,0.48214014616993806,0.48214014616993806,0.9889411273682568,0.9889411273682568,0.8583224990849714,0.8583224990849714,0.15269447867785918,0.08604770956910045,0.0928298117049252,0.04488221661643706,0.258571237700478,0.20404638646254397,0.10230948760614096,0.1551641004784541,0.062158244948422266,0.25293408213753005,9.709789249912205,9.709789249912205,6.706597707704688,6.706597707704688,9.855658462632178,9.855658462632178,25.656332911273807,25.656332911273807,20.54843046106805,20.54843046106805,5.483143520451563,5.153321585577217,5.178452673270115,5.04170313353309,6.388015643449293,5.863437770178834,5.216778209476203,5.498914823502091,5.079993286017583,6.327995827262754,209.58016446345653,209.58016446345653,0.0,232.86684940384058,0.0,209.58016446345653,232.86684940384058,0,0
+2017/05/09 14:00:00,188.3564284388134,0,898.9575097107521,0,0,0,2.7185555869330096,0.0,16.693521149792748,0.0,115.5196477718057,0,39.380909295966944,2.692847089923185e-09,14.043794631622148,0,0,0.0,490.8184558164946,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3668.8223913018637,5210.409713028703,0.0,0.0,0.0,0.0,657.3093503622817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04786116368082093,0.0015142938568780439,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4732421614009268,0.4732421614009268,0.3074975872871104,0.3074975872871104,0.4922878581849207,0.4922878581849207,0.9820529440527762,0.9820529440527762,0.8574449398306013,0.8574449398306013,0.08823169747452628,0.04097568837506999,0.000702213379062319,-0.007597877748384802,0.24992723654581278,0.14213813664239136,0.06402502091066312,0.06504201598460588,0.014202400483433813,0.2405195988112297,9.676773735748199,9.676773735748199,6.965198800418307,6.965198800418307,10.06383728115243,10.06383728115243,25.37011238702206,25.37011238702206,20.51645265899134,20.51645265899134,5.161206036991757,5.0347589044925485,5.000010207491911,5.001194996311085,6.296527916215396,5.418592615456774,5.084871149181481,5.08758932123807,5.004175498004614,6.2005271658456,188.3564284388134,188.3564284388134,0.0,209.28492048757045,0.0,188.3564284388134,209.28492048757045,0,0
+2017/05/09 15:00:00,182.05950613288942,0,898.2588950528841,0,0,0,3.1368957325293723,0.0,16.693521149792748,0.0,108.75639138185811,0,39.380909295966944,2.692847089923185e-09,14.091788570049408,0,0,0.0,490.11984115862674,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3582.404556906527,7333.098673198754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04782396891896751,0.0015131170405398894,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.49681518665804825,0.49681518665804825,0.35167420910480285,0.35167420910480285,0.5255613887116894,0.5255613887116894,0.975014792814091,0.975014792814091,0.8636139195270415,0.8636139195270415,0.05541164851437733,0.024248537229652117,-0.030745500313280383,-0.0297851120425796,0.2248197749915825,0.10242159859335041,0.04590684712896411,0.029411388600143546,-0.01140204238095015,0.20471036606052223,10.158149075284811,10.158149075284811,7.5733545735982375,7.5733545735982375,10.777653052546825,10.777653052546825,25.079546955782362,25.079546955782362,20.741923116128035,20.741923116128035,5.06356861927101,5.012172040677228,5.0195687190808655,5.018365240195024,6.048592204601391,5.217253783221281,5.043629158594328,5.017907244525006,5.002691216729687,5.869076347964224,182.05950613288942,182.05950613288942,0.0,202.2883401476549,0.0,182.05950613288942,202.2883401476549,0,0
+2017/05/09 16:00:00,205.83181311932702,0,951.4930962845433,0,0,0,3.7112375390951833,0.0,17.028300508570425,0.0,131.64086955684016,0,39.380909295966944,2.692847089923185e-09,14.070496216161343,0,0,0.0,490.11851362146956,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3682.625025160647,9169.85016642937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050658197223468794,0.001602790048474212,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5126613090606964,0.5126613090606964,0.3699667422983179,0.3699667422983179,0.5576740891800113,0.5576740891800113,0.9740424340546578,0.9740424340546578,0.899735810530457,0.899735810530457,0.020722334864496168,-0.010022900080176098,-0.050676329890210446,-0.0638701821930588,0.2228689084229302,0.05844918405106192,0.004729462563701651,0.004190575569458767,-0.052833635108408224,0.19700001375035373,10.49522556228591,10.49522556228591,7.849458189565681,7.849458189565681,11.512009395894808,11.512009395894808,25.03955427928146,25.03955427928146,22.093586208617225,22.093586208617225,5.008889280019076,5.002079551103066,5.053166880208735,5.084461064401921,6.030434864753758,5.070730098847889,5.000463025443338,5.000363520185857,5.05779046591968,5.804735606948995,205.83181311932702,205.83181311932702,0.0,228.70201457703,0.0,205.83181311932702,228.70201457703,0,0
+2017/05/09 17:00:00,212.69045176424177,0,982.3324257433338,0,0,0,3.506392934142341,0.0,17.346139882338,0.0,133.89528835348938,0,39.380909295966944,2.802830870364563e-09,18.561721295502203,0,0,0.0,520.9578430802601,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3613.5267353495337,7927.820661452035,0.0,0.0,0.0,0.0,581.2460870246388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05230010596675173,0.0016547388966068792,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5001206596013633,0.5001206596013633,0.3504798370960254,0.3504798370960254,0.5616917967382468,0.5616917967382468,0.9729031423018251,0.9729031423018251,0.9327095631055139,0.9327095631055139,0.018294780760423523,-0.020058427738936627,-0.03142993458217046,-0.07452677567906485,0.2721920973692928,0.04808026000786498,-0.01217694237449808,0.01983078733690736,-0.07119702141616456,0.2500422205231493,10.227566810253606,10.227566810253606,7.555822359226852,7.555822359226852,11.607032532815964,11.607032532815964,24.992742322511447,24.992742322511447,23.373755184441194,23.373755184441194,5.006928540878405,5.008328800520616,5.020449705268675,5.115004151395581,6.538559581546991,5.047858545427388,5.003069447644961,5.008140825046823,5.104954990782545,6.297724282484694,212.69045176424177,212.69045176424177,0.0,236.32272418249084,0.0,212.69045176424177,236.32272418249084,0,0
+2017/05/09 18:00:00,200.1841455675739,0,970.3561294744528,0,0,0,6.614725871415688,0.0,17.724046137657638,0.0,110.93442390708215,0,39.380909295966944,2.9609314440347834e-09,25.53004035249052,0,0,0.0,544.4718993239231,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3570.2550823006673,6785.770543298717,0.0,0.0,0.0,0.0,6467.998449495145,0.0,0.0,0.0,0.0,5264.435451819567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05166247908247401,0.0016345648264509344,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.47741111331821456,0.47741111331821456,0.32932848130036163,0.32932848130036163,0.5544791857527838,0.5544791857527838,0.9728244372333043,0.9728244372333043,0.9506945549659332,0.9506945549659332,0.0754817180091783,0.02673435127009989,0.0509302334369404,-0.032532515460512015,0.3314672244614213,0.09955164100392652,0.029035321567534144,0.10064789668181642,-0.036809902686364526,0.31889000099480097,9.760161027097453,9.760161027097453,7.255384621177583,7.255384621177583,11.436946069267904,11.436946069267904,24.98951029555245,24.98951029555245,24.090325964671166,24.090325964671166,5.117970978668126,5.014795650892211,5.053701040809514,5.02190971675121,7.284900343165319,5.20524374049991,5.017452215110296,5.209790932249746,5.028050240617006,7.114112412652688,200.1841455675739,200.1841455675739,0.0,222.42682840841542,0.0,200.1841455675739,222.42682840841542,0,0
+2017/05/09 19:00:00,197.1740927854724,0,969.7039095520266,0,0,0,6.053570959385569,0.0,22.98373527314436,0.0,101.68988858149199,0,39.380909295966944,3.011835256709056e-09,27.065988672471676,0,0,0.0,579.3100319140412,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3302.796000453126,5162.427627116532,0.0,0.0,0.0,0.0,6619.97641105533,0.0,0.0,0.0,0.0,5094.587878829956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051627754410700395,0.0016334661620411102,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4390596603456132,0.4390596603456132,0.2828075892413709,0.2828075892413709,0.5154980383120069,0.5154980383120069,0.9622132045240912,0.9622132045240912,0.9416307411918506,0.9416307411918506,0.07485101262377282,0.012202294780410202,0.0565032320655704,-0.039579855797760216,0.34769926912872096,0.09637727296419393,0.009042252553496109,0.10558702506841705,-0.0480028767651701,0.33795883888762895,9.021288169521284,9.021288169521284,6.6613072388469305,6.6613072388469305,10.556713830815468,10.556713830815468,24.555964481350813,24.555964481350813,23.72759650537118,23.72759650537118,5.116007255389505,5.003082242221737,5.066098194001455,5.032430958844756,7.515241374701702,5.192358040317956,5.001692527354891,5.230896865980455,5.0477046007021755,7.375676810293413,197.1740927854724,197.1740927854724,0.0,219.08232531719153,0.0,197.1740927854724,219.08232531719153,0,0
+2017/05/09 20:00:00,213.0315875414081,0,896.112994587448,0,0,0,5.4635130111375965,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,2.9091356055273912e-09,23.096320563658335,0,0,0.0,541.2094694620068,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2986.9856017161446,3346.1056324875385,0.0,0.0,0.0,0.0,6713.25603108924,0.0,0.0,0.0,0.0,5136.833050337619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04770971958870491,0.001509502271368733,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3893858332428126,0.3893858332428126,0.23209592447275396,0.23209592447275396,0.4721154129765417,0.4721154129765417,0.9455463838024273,0.9455463838024273,0.9210389057960673,0.9210389057960673,0.059462833544134286,-0.004840272221839283,0.049780802125772766,-0.05746870695360221,0.3471144559400193,0.07640574720294269,-0.012513872633242029,0.09670683846551456,-0.07073479027140249,0.33699964105707053,8.158176978327887,8.158176978327887,6.117721262628322,6.117721262628322,9.65436517261061,9.65436517261061,23.883900242504467,23.883900242504467,22.915654307669868,22.915654307669868,5.073205023257955,5.000484976692846,5.051304197411298,5.068376678717996,7.506748166777584,5.120877760060253,5.0032416591746625,5.193676387475477,5.103596316269602,7.362151071026062,213.0315875414081,213.0315875414081,0.0,236.70176393489788,0.0,213.0315875414081,236.70176393489788,0,0
+2017/05/09 21:00:00,194.59635533241325,0,881.041131925167,0,0,0,0.5799756897154549,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9609314440347825e-09,25.552417391571602,0,0,0.0,561.6279593122697,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2321.626387699804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04690728245673591,0.0014841137198580556,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.31972973620844625,0.31972973620844625,0.166323595453849,0.166323595453849,0.40329808372128856,0.40329808372128856,0.923570066477066,0.923570066477066,0.8952321617883324,0.8952321617883324,-0.03401644650534034,-0.09085359909909996,-0.05304238953869864,-0.14158323158364772,0.31349934068232815,-0.02085698030613198,-0.10262993930573074,-0.007414288868741869,-0.15826522588983227,0.2821433632074217,7.125306367694478,7.125306367694478,5.5733495843485485,5.5733495843485485,8.389254869598929,8.389254869598929,23.014545217840237,23.014545217840237,21.9221486166781,21.9221486166781,5.023954178677542,5.170932789310839,5.058248105153126,5.415327769387972,7.042964510316281,5.009005175548268,5.218138948430763,5.001137944060375,5.5190788454822695,6.653487365221736,194.59635533241325,194.59635533241325,0.0,216.21817259157027,0.0,194.59635533241325,216.21817259157027,0,0
+2017/05/09 22:00:00,137.526540796382,0,699.4593571384934,0,0,0,0.06789167553936169,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.38090929596693,4.5107451095874535e-05,20.847652607456027,0,0,0.020283108659779156,539.732487723385,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,261.11106659076006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.037239734268262284,0.001178239234011727,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.023959708111121563,-0.023959708111121563,-0.0070062855499854965,-0.0070062855499854965,0.07536184206801137,0.07536184206801137,0.8758799383164414,0.8758799383164414,0.517329327545907,0.517329327545907,-0.07297707779392344,-0.13804207775702837,-0.12007321659391344,-0.1745831563058754,0.09953693750348823,-0.07912491740407733,-0.1643325870969686,-0.09045174513760632,-0.20095490210028177,0.07093086120979779,5.011883793012757,5.011883793012757,5.001016149155191,5.001016149155191,5.117596471194673,5.117596471194673,21.194905896182988,21.194905896182988,10.596593320956615,10.596593320956615,5.11026999619871,5.3947948050729195,5.298642793393412,5.631785286559904,5.205183090449609,5.129637032564872,5.55968894275955,5.1694234807981445,5.837427442184037,5.104171562176077,137.526540796382,137.526540796382,0.0,152.80726755153555,0.0,137.526540796382,152.80726755153555,0,0
+2017/05/09 23:00:00,88.5751027960624,0,519.4301570316437,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.38090929596693,8.954419569447067e-05,11.777041492108092,0,0,0.03945105747629349,466.15517720535127,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.419640862839502,0.0,0.0,0,0,0,0,0,0,0,0,0.027654846305744895,0.0008749800600957235,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.27246024062776225,-0.27246024062776225,-0.4286673823128943,-0.4286673823128943,-0.16922344227519345,-0.16922344227519345,0.7192858953298783,0.7192858953298783,0.19480701555885682,0.19480701555885682,-0.14496980914481364,-0.19945454315383881,-0.1923809387078396,-0.2246256366587743,0.017355237164090948,-0.1716231122747422,-0.23238629056910667,-0.1805832516857125,-0.25431234546413156,-0.05546731684966281,6.5416016546780185,6.5416016546780185,8.831965235419304,8.831965235419304,5.593541618933557,5.593541618933557,15.886558615492305,15.886558615492305,5.786889744696921,5.786889744696921,5.43545264989109,5.8249481967340415,5.76738138667686,6.046778148347812,5.006235163084085,5.610516048972471,6.120526044448823,5.676020388955408,6.342547000319385,5.063696427213756,88.5751027960624,88.5751027960624,0.0,98.41678088451377,0.0,88.5751027960624,98.41678088451377,0,0
+2017/05/10 00:00:00,39.358821557895304,0,517.0476430222435,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.579110302905873e-09,9.56150055889301,0,0,0.0,463.81211425342735,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027527999495140416,0.0008709667154277186,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.021293275264224486,0.021293275264224486,-0.11926120557376606,-0.11926120557376606,0.08645061234949838,0.08645061234949838,0.7692282989301807,0.7692282989301807,0.5218185367811246,0.5218185367811246,0.02898448363472641,-0.031967662397610716,-0.049148276112013445,-0.06632101809081752,0.30420933131809197,-0.017589450825196324,-0.1008341956011606,-0.057519441108893496,-0.13080738788348373,0.22159250335631772,5.009385871772793,5.009385871772793,5.294614699636796,5.294614699636796,5.154761226984604,5.154761226984604,17.46659056124743,17.46659056124743,10.694967462554203,10.694967462554203,5.017391152157529,5.0211554624622465,5.050008574961865,5.091068630072073,6.923238707795022,5.006404591455393,5.210568646495275,5.068497477612951,5.354467042042785,6.018641288861616,39.358821557895304,39.358821557895304,0.0,43.732023953217,0.0,39.358821557895304,43.732023953217,0,0
+2017/05/10 01:00:00,23.763471995379216,0,53.275229825046374,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5663765717014256,0,0,0.0,17.784877312502232,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002836412697203369,8.974212059676926e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1374386083768631,0.1374386083768631,0.010961994816927497,0.010961994816927497,0.18049149591637773,0.18049149591637773,0.7593755681083448,0.7593755681083448,0.6912136375638563,0.6912136375638563,0.0478065546863878,0.00013505963954258624,-0.038983673851688105,-0.03992961207819874,0.4155468755543878,-0.010281588227134403,-0.08164862147008227,-0.06246076152366476,-0.11759534057160857,0.32961199123399815,5.391347696241354,5.391347696241354,5.002487495849692,5.002487495849692,5.675332614417357,5.675332614417357,17.146419110634483,17.146419110634483,15.045523870177988,15.045523870177988,5.047315154374999,5.000000377600017,5.031461251290892,5.033006699360499,8.59956008750629,5.002188282116805,5.138041004689853,5.080773952037262,5.286436711437119,7.259286041162198,23.763471995379216,23.763471995379216,0.0,26.403857772643573,0.0,23.763471995379216,26.403857772643573,0,0
+2017/05/10 02:00:00,28.344223583497186,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248604970242909,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.16423321733055407,0.16423321733055407,0.04412058412367862,0.04412058412367862,0.1983097252985364,0.1983097252985364,0.7297206142774871,0.7297206142774871,0.7606921522154869,0.7606921522154869,0.018881512258314474,-0.023549558455266597,-0.06933036240460173,-0.06438770743747751,0.44282919256186504,-0.03708275160998628,-0.10481141056400374,-0.09274544686110019,-0.1413321876647042,0.34697722918267676,5.5590114803967765,5.5590114803967765,5.0402996506438456,5.0402996506438456,5.815489487766669,5.815489487766669,16.207836813431328,16.207836813431328,17.188962407644738,17.188962407644738,5.007380084595852,5.011480404502564,5.09952250465237,5.085835601164618,9.091106810935173,5.028467645525268,5.227515463666052,5.1781283367941455,5.413854934690903,7.504757336919397,28.344223583497186,28.344223583497186,0.0,31.493581759441316,0.0,28.344223583497186,31.493581759441316,0,0
+2017/05/10 03:00:00,23.722024518317134,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249290946393456,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1642429806320157,0.1642429806320157,0.04883471526392652,0.04883471526392652,0.19236709706692445,0.19236709706692445,0.687438856618226,0.687438856618226,0.7881349720687566,0.7881349720687566,4.8563975310261754e-05,-0.04011149573276013,-0.08999353663800554,-0.08153015942085781,0.4711576626158343,-0.06337516273709252,-0.12917813465637162,-0.12165301746646123,-0.1661144940729533,0.3602697623631116,5.559078024350214,5.559078024350214,5.0493724435774965,5.0493724435774965,5.767270790245618,5.767270790245618,14.935027754484437,14.935027754484437,18.09256496674176,18.09256496674176,5.000000048821292,5.033308104053987,5.167710687940684,5.137640615834215,9.635360642688894,5.083156689610007,5.34568555561188,5.306558133278159,5.571907136999087,7.7013192736705065,23.722024518317134,23.722024518317134,0.0,26.35780502035237,0.0,23.722024518317134,26.35780502035237,0,0
+2017/05/10 04:00:00,41.234996356977184,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,1.2017962027743423,0.0,0.525066604568722,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2421687887398863,0.2421687887398863,0.1302405788001505,0.1302405788001505,0.26940304567905476,0.26940304567905476,0.7395962262543058,0.7395962262543058,0.8376051027805327,0.8376051027805327,0.00909682390122188,-0.030270300149236335,-0.07944125944026455,-0.07126343720821246,0.3737390567370189,-0.06411833168879973,-0.12925408972852365,-0.12161627278763244,-0.16553384081166359,0.33139228103368173,6.217087650757463,6.217087650757463,5.351399485259165,5.351399485259165,6.507097559856575,6.507097559856575,16.516211980885714,16.516211980885714,19.802042578992783,19.802042578992783,5.001713018389935,5.0189684637535805,5.130675976727076,5.105150940040659,7.9081699553646985,5.085118759271097,5.346092491584443,5.306372851691265,5.567911167904043,7.28386280501897,41.234996356977184,41.234996356977184,0.0,45.81666261886354,0.0,41.234996356977184,45.81666261886354,0,0
+2017/05/10 05:00:00,74.54734597149393,0,212.9421150752648,0,0,0,0.042943112054321886,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,1.1933316057364671,0.0,0.5250282237472558,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,169.79634311734202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4779906952353604,0.4779906952353604,0.36764827842303915,0.36764827842303915,0.5037268649248643,0.5037268649248643,0.9187861323491036,0.9187861323491036,0.9307540830165998,0.9307540830165998,0.06472428616669668,0.024408462346585034,-0.022828058526345313,-0.016207116708801306,0.5459961385397111,-0.004466082260481043,-0.07001254840339804,-0.061714697864685135,-0.10590083028176471,0.48566997005555584,9.771813154961833,9.771813154961833,7.813674977805576,7.813674977805576,10.30383870111821,10.30383870111821,22.827856176980447,22.827856176980447,23.296618195015938,23.296618195015938,5.086735505018012,5.012333129690916,5.010787702350953,5.005437477576621,11.239786660469463,5.000412890281623,5.101491103014055,5.078855537693059,5.2322720423286455,9.927568128977285,74.54734597149393,74.54734597149393,0.0,82.83038441277102,0.0,74.54734597149393,82.83038441277102,0,0
+2017/05/10 06:00:00,86.9474183190001,0,677.8127313458671,0,0,0,0.17627666415274787,0.0,10.679537574073862,0.0,73.80580873715317,0,1.760737974120786,2.520831838439717e-09,0.525057366978714,0,0,0.0,447.12544001433025,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,710.7964287992038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.036087251877262826,0.0011417754945069992,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6689416532433845,0.6689416532433845,0.5574387321947735,0.5574387321947735,0.6939501969039229,0.6939501969039229,1.0048930680961554,1.0048930680961554,0.9601754724764981,0.9601754724764981,0.16670867119248745,0.12929985830200955,0.0785189040776479,0.08584388769303328,0.696463621218307,0.09122954351745972,0.029435050691934406,0.034954995297414304,-0.010398088795676186,0.6194048823475744,14.40248263418826,14.40248263418826,11.506464651158467,11.506464651158467,15.126013968589064,15.126013968589064,26.326130444740954,26.326130444740954,24.47321094411386,24.47321094411386,5.576010728674248,5.346337816570028,5.12765832750587,5.152595859681853,15.200226043326936,5.172350851442914,5.017936070759646,5.025294328533434,5.002238154118984,13.049295539241896,86.9474183190001,86.9474183190001,0.0,96.60824257666678,0.0,86.9474183190001,96.60824257666678,0,0
+2017/05/10 07:00:00,144.8334435385212,0,847.2570722136802,0,0,0,0.012333733736755722,0.0,9.009607790517718,0.0,69.33401494192633,0,39.38090929596693,2.41516002717172e-05,27.096553624773208,0,0,0.010868327676068544,581.0685600419233,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,47.97615042624008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3521656581603806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0451085940936181,0.001427204473838223,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3228391248960178,0.3228391248960178,0.1960592267762125,0.1960592267762125,0.35973316292535434,0.35973316292535434,0.9872685756259675,0.9872685756259675,0.5250326407432883,0.5250326407432883,0.02773334570532348,-0.04649848218248269,-0.044652568263936945,-0.08139141861262728,0.244521251332296,-0.032755118158361754,-0.11774479662211362,-0.07322481195347588,-0.14842442892659266,0.20027666628224775,7.167015774656576,7.167015774656576,5.797055182167469,5.797055182167469,7.69323870858878,7.69323870858878,25.586667016981167,25.586667016981167,10.765935383194048,10.765935383194048,5.015922100714846,5.04476107641959,5.0412774233564335,5.137172426974914,6.240907807595377,5.022210590108344,5.287165705431235,5.111020110159444,5.45647379402935,5.8317745511962755,144.8334435385212,144.8334435385212,0.0,160.92604837613467,0.0,144.8334435385212,160.92604837613467,0,0
+2017/05/10 08:00:00,160.26197658548602,0,880.9956592034017,0,0,0,0.3355890846424199,0.0,11.85165572991988,0.0,83.2008179303116,0,39.380909295966944,2.518608101397757e-05,25.492979358564167,0,0,0.010773702765297167,561.5717128877392,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1345.474117103579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04690486145534719,0.0014840371210616938,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.09238869525324228,0.09238869525324228,-0.05665213507245396,-0.05665213507245396,0.18694851698903514,0.18694851698903514,1.000603392825447,1.000603392825447,0.5423717810034242,0.5423717810034242,0.02127023928020691,-0.03060452151134632,-0.12100922792714774,-0.06428425684418095,0.20174077207109609,-0.031328318570322485,-0.06280615756315092,-0.04679217003621753,-0.09868123508315811,0.14662391895601826,5.176760087918581,5.176760087918581,5.066447080383924,5.066447080383924,5.724590659159119,5.724590659159119,26.14506337793442,26.14506337793442,11.156501822228805,11.156501822228805,5.009365574263327,5.01938966424224,5.303320006502631,5.085559950734023,5.844001493767749,5.020317681471582,5.081669908970838,5.045328346257662,5.201668886180002,5.445455806416277,160.26197658548602,160.26197658548602,0.0,178.06886287276225,0.0,160.26197658548602,178.06886287276225,0,0
+2017/05/10 09:00:00,179.78878298385754,0,892.243288308034,0,0,0,2.112851278683189,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.8564630444382043e-09,20.821498319310887,0,0,0.0,519.5945869263207,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4647.307063387875,0.0,0.0,0.0,0.0,0.0,2578.069266990906,0.0,0.0,0.0,0.0,652.7812885536594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047503693560071676,0.0015029837514347662,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.44708401434761835,0.44708401434761835,0.18616580601608113,0.18616580601608113,0.4318789657789583,0.4318789657789583,1.1427114175881885,1.1427114175881885,0.8335463219697402,0.8335463219697402,0.19357495753619455,0.051009263725221694,0.050855378375678946,0.170088373250218,0.39871390776314963,0.19015104732037472,0.01938516853282396,0.10769263207353585,0.17030224151737122,0.36995594717070873,9.170647704376321,9.170647704376321,5.71852692740498,5.71852692740498,8.88997761753403,8.88997761753403,32.49687763152552,32.49687763152552,19.657913192035153,19.657913192035153,5.776951883202997,5.05386784925399,5.0535432835924325,5.599632154762318,8.31219879147828,5.749667529632106,5.0077790637099895,5.240202519389982,5.6011429505815045,7.849291046404204,179.78878298385754,179.78878298385754,0.0,199.76531442650838,0.0,179.78878298385754,199.76531442650838,0,0
+2017/05/10 10:00:00,223.6751693689954,0,978.858373111005,0,0,0,15.127494500825817,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.8028552011155892e-09,18.57795598281076,0,0,0.0,517.4837904479313,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341.38818960350255,0.0,0.0,6941.988404789753,17528.793577927656,910.7184282480295,0.0,0.0,244.87473405525452,12662.062681265033,1308.4623527015065,0.0,0.0,500.35383095598337,11160.016898800443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052115144831352586,0.0016488868552113972,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8886420405143166,0.8886420405143166,0.5015651469625958,0.5015651469625958,0.7347098239672984,0.7347098239672984,1.1761750080762836,1.1761750080762836,1.001217541646845,1.001217541646845,0.40179553200561213,0.21045445955821515,0.2287639247968858,0.3891913605728646,0.4426098379954387,0.42848402697530596,0.2050729611546591,0.2870391573670955,0.4124996884826342,0.4409760928417198,21.67277612368909,21.67277612368909,10.258050503846206,10.258050503846206,16.36310592505933,16.36310592505933,34.09144154762161,34.09144154762161,26.17094385849994,26.17094385849994,8.363899196947216,5.918625911594248,6.08578909336903,8.155005495135526,9.087027227935309,8.828666559310605,5.872163327075924,6.711562217765234,8.546641005231308,9.056707698746763,223.6751693689954,223.6751693689954,0.0,248.52796596555044,0.0,223.6751693689954,248.52796596555044,0,0
+2017/05/10 11:00:00,269.5582444741205,0,1054.1996665383413,0,0,0,44.92436277124761,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.8564630444382047e-09,20.859973305641493,0,0,0.0,539.5895551064511,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4898.54849744111,538.8759318284762,2397.9519684204893,7451.325804461524,37862.15804402092,6000.417739619312,2307.6564136940415,3492.561374557838,2897.2265204151727,37174.66520271123,6816.675487556171,2440.8504590923676,3993.3390063128973,3311.6436885879034,36844.21084329151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0561263710992223,0.001775799258271438,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0478899122375087,1.0478899122375087,0.7622552878685879,0.7622552878685879,0.9026940833176235,0.9026940833176235,1.1530742610856586,1.1530742610856586,1.0618608923135373,1.0618608923135373,0.4981300051623272,0.33228090860135023,0.3365098666602063,0.4527963025907137,0.46918897440524304,0.5494360102538413,0.3515754575655228,0.3963219988615128,0.49722907164162017,0.475533160563631,28.17896287612379,28.17896287612379,17.239568811493015,17.239568811493015,22.206645585863768,22.206645585863768,32.98693709275871,32.98693709275871,28.795560558275696,28.795560558275696,10.185704837465664,7.2961805604847285,7.355259784119241,9.278659154955108,9.596420352328465,11.319358723725045,7.571902696323349,8.272349765852056,10.16681515793914,9.722505493125723,269.5582444741205,269.5582444741205,0.0,299.50916052680054,0.0,269.5582444741205,299.50916052680054,0,0
+2017/05/10 12:00:00,265.36668972986064,0,996.6146597165774,0,0,0,61.25572920744573,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.8028552011155892e-09,18.59926263742417,0,0,0.0,517.4949007972316,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7834.142577651333,1169.752001836087,3898.7827146495247,6854.364134697226,44148.95884154827,9737.711610896411,3857.3852614659845,5906.628008707272,4334.006713542825,52842.44031858702,10979.26244476324,4162.627895661079,6865.2349494297905,4840.603057457859,53161.62204468329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05306050268243313,0.0016787973186508046,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.088609433857041,1.088609433857041,0.8567807018400333,0.8567807018400333,0.9471678984159564,0.9471678984159564,1.1129129288738848,1.1129129288738848,1.0731033680267672,1.0731033680267672,0.5448468404209689,0.3881714939485262,0.3870628386350969,0.4551606157958788,0.4937253821711554,0.6044768019829249,0.420068039034058,0.44563636612759455,0.49834149741429906,0.5056735050766351,29.995413381256924,29.995413381256924,20.492269403359487,20.492269403359487,23.948805081677207,23.948805081677207,31.107036834590545,31.107036834590545,29.29679819031128,29.29679819031128,11.213315073561901,8.138399848724461,8.120398939523241,9.32377581530767,10.093687380599604,12.662380601545337,8.678810328055988,9.143497580677774,10.190144232302202,10.345244088241202,265.36668972986064,265.36668972986064,0.0,294.8518774776229,0.0,265.36668972986064,294.8518774776229,0,0
+2017/05/10 13:00:00,278.29535718926365,0,937.8203964108951,0,0,0,73.32002903849767,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.7483275788472094e-09,16.32112867893495,0,0,0.0,494.1909900040935,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10054.557526316354,3699.500643735872,6009.992559571346,6837.933344111526,52205.514492260234,11700.93912156763,5606.147816546509,7627.2078858189225,5601.389513895914,58839.341303032044,12941.08243460384,6049.403227740951,8628.018121539328,6132.419165372914,59651.645261666425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04993025255473581,0.0015797583865747916,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0941063513849238,1.0941063513849238,0.9337852640632622,0.9337852640632622,0.9619993389943923,0.9619993389943923,1.1075037519925082,1.1075037519925082,1.0697441152747151,1.0697441152747151,0.5625559067737764,0.4500972190622779,0.41545227944035445,0.47120792726918787,0.4996075923533777,0.6215476635063389,0.49446610430252336,0.47372848604145396,0.5164332795925253,0.5133656356407201,30.245075601161247,30.245075601161247,23.416252911829474,23.416252911829474,24.547271646155465,24.547271646155465,30.857892947398284,30.857892947398284,29.146559507541838,29.146559507541838,11.627561139381015,9.227448306529979,8.59791129621945,9.636357055291839,10.216761011942253,13.105627154205365,10.109103272825777,9.68646257976016,10.577062199505306,10.510459895066774,278.29535718926365,278.29535718926365,0.0,309.2170635436263,0.0,278.29535718926365,309.2170635436263,0,0
+2017/05/10 14:00:00,257.93594061578784,0,899.3530002947393,0,0,0,68.93887713810528,0.0,16.630907673226492,0.0,115.5196477718057,0,39.380909295966944,2.6928709321424005e-09,14.03362353153628,0,0,0.0,491.2139464004818,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9863.818844552618,5423.831868372421,6885.102116330226,6486.4048302107385,55196.283465040215,9857.986804226093,5698.056718374149,6418.330441748288,5033.678251292552,49462.812101814314,10912.689580365328,6264.198852080639,7342.485540788274,5531.162013234447,50247.56389218511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047882219892454926,0.0015149600607367532,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.064197982579133,1.064197982579133,1.027423965137687,1.027423965137687,0.9770668738361903,0.9770668738361903,1.0944666932941258,1.0944666932941258,1.0706568313806712,1.0706568313806712,0.5387293719555122,0.4970327055285487,0.41773374993522894,0.4668831598252553,0.48725488383628185,0.5854145266047007,0.547539619133895,0.4699040586419828,0.5079808491979597,0.4971895444987345,28.89938877636088,28.89938877636088,27.288506925332726,27.288506925332726,25.164068206257582,25.164068206257582,30.26147809906095,30.26147809906095,29.187340278686165,29.187340278686165,11.073375623320558,10.162702646269636,8.637783793335814,9.551024144753441,9.96003096115858,12.182373419632697,11.275427448303915,9.610545268859354,10.394533873271499,10.165987203822127,257.93594061578784,257.93594061578784,0.0,286.5954895730976,0.0,257.93594061578784,286.5954895730976,0,0
+2017/05/10 15:00:00,245.55320684471218,0,899.3597607968317,0,0,0,63.26190081587584,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.6928709321424005e-09,14.09112247263766,0,0,0.0,491.2207069025742,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9205.570129447851,6275.894781973936,7293.745654188129,6473.089680766316,55042.59333088064,8179.941956378894,5690.1523536734585,5458.940688893134,4563.59820623446,41954.32108086184,9079.406047438617,6375.044836680881,6370.258389871022,5056.709480119313,42556.6142422162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04788257982659388,0.0015149714488020148,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0529641317837923,1.0529641317837923,1.0804155237748103,1.0804155237748103,1.0083441797339114,1.0083441797339114,1.1035687946309745,1.1035687946309745,1.0807056020888006,1.0807056020888006,0.520405209637508,0.5304732544460304,0.42898448964599795,0.4751238774315521,0.47474040189168953,0.559956298914191,0.585509561598692,0.47875859915083374,0.5153247867526398,0.48231717929160306,28.40209741825001,28.40209741825001,29.6251973122163,29.6251973122163,26.472306319696344,26.472306319696344,30.67726985711903,30.67726985711903,29.63826372279496,29.63826372279496,10.663902505143227,10.887084174727875,8.837673598502874,9.714318988192332,9.706655242498101,11.565900250485527,12.184727381923565,9.78727369223543,10.55294849068072,9.85925217975479,245.55320684471218,245.55320684471218,0.0,272.83689649412463,0.0,245.55320684471218,272.83689649412463,0,0
+2017/05/10 16:00:00,263.22483039992255,0,952.6019826758735,0,0,0,57.981771510862714,0.0,16.693521066485914,0.0,131.64086955684016,0,39.380909295966944,2.6928709321424005e-09,14.09578376461967,0,0,0.0,491.22740001279965,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7334.052818181663,4872.4220371574565,6165.062024464173,6407.364551112935,50231.98045055956,7434.051878577653,5052.923066567978,5255.0719696066235,4054.432671436587,41087.11554044583,8150.435558548455,5684.571661415321,6105.515549153216,4514.318986501141,41348.08615543603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050717235156302755,0.0016046579675162446,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0332754021399195,1.0332754021399195,1.053333208092327,1.053333208092327,1.0023143310921654,1.0023143310921654,1.1008444617441644,1.1008444617441644,1.0943803273700503,1.0943803273700503,0.4955751959319064,0.5112491320136808,0.42302058597797965,0.4646919097807777,0.4736018649363364,0.5242541533504255,0.5548045552338717,0.4648036489920824,0.4976462574812743,0.4787559958139913,27.541530414822972,27.541530414822972,28.41836348455392,28.41836348455392,26.217198553698438,26.217198553698438,30.55252416625798,30.55252416625798,30.257546380199713,30.257546380199713,10.132229969400868,10.46474531205051,8.731037791460025,9.508095744325615,9.68393897820036,10.748705224022572,11.444570290079028,9.510279802658772,10.175557844358138,9.78722123517612,263.22483039992255,263.22483039992255,0.0,292.4720337776917,0.0,263.22483039992255,292.4720337776917,0,0
+2017/05/10 17:00:00,271.39781745088,0,978.8389897798422,0,0,0,62.23307750026455,0.0,17.346139882338,0.0,133.89528835348938,0,39.380909295966944,2.8028552011155896e-09,18.542402416018152,0,0,0.0,517.4644071167685,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6719.112699703877,3739.6972958847,5916.9900384131115,6257.22506939489,50870.44830827146,8164.501206480494,4944.683459164283,6104.370428040202,4416.347749103825,48954.59233181563,8768.140499853798,5395.309092420989,6888.160964933021,4803.916723479552,48989.314926790656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05211411284844413,0.001648854203991525,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.021271500085271,1.021271500085271,0.9948455248097822,0.9948455248097822,0.9932696021092108,0.9932696021092108,1.088020132721138,1.088020132721138,1.0982190809935355,1.0982190809935355,0.49168604650180203,0.47590049378369653,0.41865799336947157,0.45822019374849987,0.4875459769837035,0.5150539620599774,0.5052137595671212,0.4562745439301682,0.48536159486499986,0.4910180889003926,27.023832402416915,27.023832402416915,25.90312089529351,25.90312089529351,25.837121354250883,25.837121354250883,29.968709975108652,29.968709975108652,30.43254818086065,30.43254818086065,10.051367197952317,9.729859064243655,8.653999990452434,9.382516875401393,9.966005032188363,10.547065158943525,10.335450443532054,9.3451155578923,9.921264465883795,10.037544823738301,271.39781745088,271.39781745088,0.0,301.5531305009778,0.0,271.39781745088,301.5531305009778,0,0
+2017/05/10 18:00:00,201.904954993949,0,987.4553720998981,0,0,0,6.874801287543946,0.0,19.165343546314112,0.0,110.93442390708215,0,39.380909295966944,2.9609563762088047e-09,25.549476954080852,0,0,0.0,561.5711419493686,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4568.619965181765,6446.064941121229,0.0,0.0,0.0,0.0,6918.810614420883,0.0,0.0,0.0,0.0,5173.841282168038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05257285542537573,0.0016633684993556867,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8811859723551914,0.8811859723551914,0.747791734907477,0.747791734907477,0.8872480453398764,0.8872480453398764,1.0757269289641997,1.0757269289641997,1.1436431788222565,1.1436431788222565,0.4129548386711697,0.3187846661657606,0.3162759683058303,0.33849169875375085,0.5606390508079602,0.4510864076577217,0.3608638635394266,0.40028285333777874,0.29457937098710324,0.563028132938826,21.392776400606223,21.392776400606223,16.7753027325913,16.7753027325913,21.62025410515355,21.62025410515355,29.41441029572519,29.41441029572519,32.54080098703422,32.54080098703422,8.554520111117256,7.112710372791014,7.079457731167409,7.383207600140821,11.582066272429117,9.24618021482135,7.710280050959113,8.338470219106824,6.802985045435975,11.638793470022193,201.904954993949,201.904954993949,0.0,224.33883888216553,0.0,201.904954993949,224.33883888216553,0,0
+2017/05/10 19:00:00,197.34923756458153,0,971.4542231506977,0,0,0,6.341708177003364,0.0,22.83898903179616,0.0,101.68988858149199,0,39.380909295966944,3.011860355638119e-09,27.0977424753112,0,0,0.0,581.0603455127123,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4352.602660962439,3489.7511458497247,0.0,0.0,0.0,0.0,7543.451306812398,0.0,0.0,0.0,0.0,5940.1799218431315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05172094240316259,0.001636414565165225,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8268085588883196,0.8268085588883196,0.6622935215048531,0.6622935215048531,0.8477470111870025,0.8477470111870025,1.0688314116623194,1.0688314116623194,1.1532476129773743,1.1532476129773743,0.4086160536306929,0.29438125012109945,0.32740208162899004,0.2539776437804253,0.5828572078972151,0.430757059933574,0.31093778695642005,0.38971632822933966,0.2496189563453843,0.5832936396991516,19.420174549575094,19.420174549575094,14.214697048230562,14.214697048230562,20.16519399725783,20.16519399725783,29.105808739176595,29.105808739176595,32.99516379642766,32.99516379642766,8.479772310190953,6.80055216964243,7.228965464898195,6.339006004610084,12.119177272838414,8.86966177005931,7.00958752179983,8.163570436328442,6.293323115883027,12.12994223886487,197.34923756458153,197.34923756458153,0.0,219.2769306273128,0.0,197.34923756458153,219.2769306273128,0,0
+2017/05/10 20:00:00,209.15004242925488,0,896.0055576701254,0,0,0,1.510528303303972,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,2.9091603543057204e-09,23.167760159338723,0,0,0.0,541.102032544684,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3763.33312686129,0.0,0.0,0.0,0.0,0.0,1910.7865582694722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04770399956764741,0.0015093212938896577,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.729002475853001,0.729002475853001,0.554733090358598,0.554733090358598,0.7685694408263831,0.7685694408263831,1.0546913197042684,1.0546913197042684,1.1236500794053212,1.1236500794053212,0.35636680927539055,0.2362696756118944,0.28862650787817445,0.18324668781065628,0.5976877329450713,0.36888141111646944,0.24089901693621202,0.34636878190792864,0.17520841870864973,0.5960663699387412,16.18557572026826,16.18557572026826,11.442895295941923,11.442895295941923,17.445051201734643,17.445051201734643,28.47826089380702,28.47826089380702,31.604475919220988,31.604475919220988,7.6428250233259405,6.158377547033538,6.73060885453539,5.69613792179112,12.489616916841811,7.832678644224757,6.204327009694978,7.495939876400158,5.636324843152593,12.44865347323936,209.15004242925488,209.15004242925488,0.0,232.38893603250543,0.0,209.15004242925488,232.38893603250543,0,0
+2017/05/10 21:00:00,194.71719581901772,0,880.983651015543,0,0,0,0.7639075714231859,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9609563762088043e-09,25.489325996468292,0,0,0.0,561.5704784026459,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3134.3836875285515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04690422213053104,0.001484016893270157,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6490228888363677,0.6490228888363677,0.4720459992546115,0.4720459992546115,0.6951436664546038,0.6951436664546038,1.0396543244156171,1.0396543244156171,1.066119710209974,1.066119710209974,0.2699698172945422,0.15232338142993362,0.2016947165917201,0.10076136790338469,0.5313867349044743,0.26948206443810324,0.14331817269122346,0.24887813514199308,0.07909516526588956,0.5136698513623845,13.845576008039316,13.845576008039316,9.652986475100306,9.652986475100306,15.161218664869509,15.161218664869509,27.81879710822092,27.81879710822092,28.984909574191192,28.984909574191192,6.513464518589473,5.480795604507193,5.84361551248459,5.210264452066568,10.90755074669184,6.507984423330598,5.425578094523672,6.285638066819132,5.1295395328204165,10.517046608021928,194.71719581901772,194.71719581901772,0.0,216.35243979890856,0.0,194.71719581901772,216.35243979890856,0,0
+2017/05/10 22:00:00,136.96502537712212,0,679.2911484469784,0,0,0,0.3776240609318686,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,1.5049323809036206e-06,20.834442205935904,0,0,0.0,519.5845621405298,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1501.9343073340217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03616596389879939,0.0011442658880016113,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4561462887389898,0.4561462887389898,0.2859125350396428,0.2859125350396428,0.49705410415961293,0.49705410415961293,0.9826635653379879,0.9826635653379879,0.821988686137736,0.821988686137736,0.15156271136297558,0.036652517391875285,0.0853151653995038,0.04717978090432903,0.4043287778688211,0.13228877977616463,0.009483522847302969,0.11387375840181552,0.10005404899951009,0.3773190501796689,9.342655827142352,9.342655827142352,6.698108400509355,6.698108400509355,10.163150718688087,10.163150718688087,25.395411532289856,25.395411532289856,19.251275998027793,19.251275998027793,5.4760008071901325,5.027810874428525,5.150721330270272,5.046082501938969,8.40670378358081,5.362547391588933,5.001861752646775,5.268583431634298,5.207321501155377,7.964449783204444,136.96502537712212,136.96502537712212,0.0,152.18336153013567,0.0,136.96502537712212,152.18336153013567,0,0
+2017/05/10 23:00:00,87.33919298718911,0,541.3787170013724,0,0,0,0.04097135837601455,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6364760155104934e-09,11.787240567338344,0,0,0.0,488.1431882325562,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,158.62151681800734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.028823403895977942,0.0009119524076988641,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2626825236715973,0.2626825236715973,0.10175848237215376,0.10175848237215376,0.3002470013668733,0.3002470013668733,0.9287993274936464,0.9287993274936464,0.5724323248908302,0.5724323248908302,0.036385318050238244,-0.007392558058965153,-0.0297997210992155,-0.04517640243542186,0.27512083166350115,-0.003039054414714377,-0.04773049112153359,-0.021602519696132694,0.01602631217178593,0.24177948191652845,6.432632382621335,6.432632382621335,5.21444843501979,5.21444843501979,6.873284613169659,6.873284613169659,23.21966234194005,23.21966234194005,11.86449505036606,11.86449505036606,5.02740684212003,5.00113128333588,5.018383260965095,5.0422516716807735,6.571950143734313,5.000191186828189,5.047164695371137,5.009660481166918,5.0053168332785845,6.2131680926546125,87.33919298718911,87.33919298718911,0.0,97.04354776354344,0.0,87.33919298718911,97.04354776354344,0,0
+2017/05/11 00:00:00,39.90473782132532,0,515.1940525538511,0,0,0,0.27775681002114516,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.24542143827987556,2.5791335834608263e-09,9.58423857402198,0,0,0.0,461.9585237850349,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,224.0912379833474,708.6143318439766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027429312965636384,0.0008678443424243967,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.48793999024100265,0.48793999024100265,0.340040499128863,0.340040499128863,0.49532977203376516,0.49532977203376516,0.9157784077355792,0.9157784077355792,0.7990802089409467,0.7990802089409467,0.26354393613470295,0.1764630310468953,0.14515502320217846,0.14050972816102714,0.5241780143408504,0.20549920326359666,0.12231255175209248,0.14040441288638844,0.13617289888599912,0.47182271309733065,9.974097147005423,9.974097147005423,7.405164920430408,7.405164920430408,10.12710783064523,10.12710783064523,22.710953198399352,22.710953198399352,18.46188758765024,18.46188758765024,6.44207080183881,5.645482842482622,5.4365670607923136,5.409048067853817,10.74702145764823,5.875799204018392,5.309893316208658,5.408434585559448,5.384166987159233,9.64855296713938,39.90473782132532,39.90473782132532,0.0,44.338597579250354,0.0,39.90473782132532,44.338597579250354,0,0
+2017/05/11 01:00:00,23.740333321561238,0,38.475638302098986,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5432378978834447,0,0,0.0,2.985285789554847,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0020484714823655447,6.481220979963432e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5310762985507369,0.5310762985507369,0.39535552542962077,0.39535552542962077,0.5121249854883311,0.5121249854883311,0.8859143465812661,0.8859143465812661,0.9053466541431264,0.9053466541431264,0.2773601550460079,0.18855065369829796,0.14367104163859462,0.1520472812596081,0.6221793528089327,0.23818477150698225,0.14922482804991294,0.15399058939559487,0.15226601170066598,0.5549760694900385,10.900591352477107,10.900591352477107,8.25631779627524,8.25631779627524,10.483639464291926,10.483639464291926,21.570078289070835,21.570078289070835,22.308323581114607,22.308323581114607,6.597724639603513,5.737082358833405,5.4276782358757885,5.479052452269215,13.122271672823928,6.177277100280008,5.461415073213786,5.491388960176181,5.480433140677945,11.448591145567562,23.740333321561238,23.740333321561238,0.0,26.37814813506804,0.0,23.740333321561238,26.37814813506804,0,0
+2017/05/11 02:00:00,28.34420373983144,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248406533585447,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5569517873952082,0.5569517873952082,0.4267317125823686,0.4267317125823686,0.5296022680807708,0.5296022680807708,0.8701345200706679,0.8701345200706679,0.9731003463064161,0.9731003463064161,0.28195964074227065,0.18938087549475202,0.1382922737753719,0.15194532399089583,0.6567854405037492,0.24202650194873493,0.1482528089177582,0.14567111688335177,0.14524262988319384,0.5763634996079207,11.495000407067835,11.495000407067835,8.797214122338985,8.797214122338985,10.867603335902515,10.867603335902515,20.981955743866536,20.981955743866536,25.000841568010998,25.000841568010998,6.65132770340378,5.743597697036108,5.396228406108733,5.478409550065834,14.060563987313387,6.215654363024797,5.455417767779053,5.439679868629369,5.437094677232793,11.959980726261733,28.34420373983144,28.34420373983144,0.0,31.49355971092382,0.0,28.34420373983144,31.49355971092382,0,0
+2017/05/11 03:00:00,23.722027860017295,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249324363395028,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5616298654672939,0.5616298654672939,0.43482233297294515,0.43482233297294515,0.5312676319670901,0.5312676319670901,0.8423455832032011,0.8423455832032011,0.9900346327855428,0.9900346327855428,0.29108045410670447,0.19553857606118877,0.1413331267696173,0.1571015124494501,0.6817686511777662,0.24329024864819743,0.14603094949362366,0.1401438713316644,0.13877272645366065,0.5936161232905008,11.60556247919152,11.60556247919152,8.943533984523427,8.943533984523427,10.904880191336673,10.904880191336673,19.97125098853212,19.97125098853212,25.701938005831224,25.701938005831224,6.760263144556106,5.792820583793002,5.413860439382404,5.511465221510079,14.770206041226643,6.228414139389457,5.441856751903018,5.406918862871677,5.398988660651497,12.386964925033283,23.722027860017295,23.722027860017295,0.0,26.35780873335255,0.0,23.722027860017295,26.35780873335255,0,0
+2017/05/11 04:00:00,43.182918371598916,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,3.149726626379087,0.0,0.5250581955857085,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6220253263113281,0.6220253263113281,0.498140021906567,0.498140021906567,0.590581159349114,0.590581159349114,0.8834195450414599,0.8834195450414599,0.9618567380228362,0.9618567380228362,0.29244336125966136,0.1968374867133022,0.1429168864316444,0.15889511747193102,0.5038107108482144,0.24320135658776582,0.14583074168794152,0.13951113789276043,0.13747959916951158,0.4720591437246948,13.118211598898966,13.118211598898966,10.1859150534995,10.1859150534995,12.310916507963825,12.310916507963825,21.47641547584692,21.47641547584692,24.541476442554085,24.541476442554085,6.776842804410364,5.803406119712818,5.423196090102209,5.523223465634047,10.305618743395499,6.227514422184839,5.440644887326016,5.403249642327765,5.391581362227868,9.653247535033259,43.182918371598916,43.182918371598916,0.0,47.98102041288768,0.0,43.182918371598916,47.98102041288768,0,0
+2017/05/11 05:00:00,75.6075236938083,0,212.9421150752648,0,0,0,0.1944998596925322,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.1019494114375186,0.0,0.5250313927223644,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,781.4760813416506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8660831721691824,0.8660831721691824,0.746232172962523,0.746232172962523,0.8341917045754789,0.8341917045754789,0.9903212359387447,0.9903212359387447,0.9990436920305745,0.9990436920305745,0.3710178472030268,0.27464283225965425,0.223614263707352,0.23734735451963657,0.6951709700770259,0.3216851748948199,0.22389588758603,0.2183102265790179,0.21455546348615312,0.6449960398276761,20.832613264289847,20.832613264289847,16.725777254875922,16.725777254875922,19.68078498557105,19.68078498557105,25.71389847442785,25.71389847442785,26.079401233510666,26.079401233510666,7.86575645467498,6.566475774333568,6.037353291766081,6.168993920648376,15.16202478087068,7.151488843933265,6.039973401347012,5.988627628829008,5.954846978289069,13.735079292213413,75.6075236938083,75.6075236938083,0.0,84.008359659787,0.0,75.6075236938083,84.008359659787,0,0
+2017/05/11 06:00:00,88.21439879121918,0,679.2338919516652,0,0,0,0.28829207466147583,0.0,11.110595677687485,0.0,73.80580873715317,0,2.4845823112820073,2.5208548537011774e-09,0.5251199879141579,0,0,0.0,448.5466006201283,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.122737132300117,0.0,0.0,1149.7356323018273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03616291552057865,0.001144169439439602,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.09515319843129,1.09515319843129,0.9737242968027116,0.9737242968027116,1.0658588541280414,1.0658588541280414,1.066079796195798,1.066079796195798,1.015359544096068,1.015359544096068,0.4390087649581556,0.3417165527004421,0.2962219540672816,0.306033678154735,0.9127446788722076,0.4096584811151749,0.31077237281067627,0.309230191005017,0.302140729837067,0.8365597021839678,30.292739624426744,30.292739624426744,25.02647738831341,25.02647738831341,28.973293251120722,28.973293251120722,28.983131985140076,28.983131985140076,26.7708310246029,26.7708310246029,9.02034967159419,7.429041110837616,6.823219439574345,6.946461959478,22.593408607082637,8.497657469101043,7.007441727586567,6.987491889364804,6.897076497227317,19.764854002458534,88.21439879121918,88.21439879121918,0.0,98.0159986569102,0.0,88.21439879121918,98.0159986569102,0,0
+2017/05/11 07:00:00,145.18126012912916,0,847.2155729254249,0,0,0,0.13631739382983626,0.0,9.233200816199963,0.0,69.33401494192633,0,39.380909295966944,1.9481677550046358e-05,27.096798199528557,0,0,0.008335211697121073,581.0295938696468,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,544.4865225456815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04510638464077259,0.0014271345682903066,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7012212168031885,0.7012212168031885,0.5762844472735354,0.5762844472735354,0.6823586420600921,0.6823586420600921,1.0474196072736603,1.0474196072736603,0.6690574559050199,0.6690574559050199,0.24319015730553623,0.119188278000978,0.12939795526545755,0.09020827851260593,0.4264672002683588,0.20678333479728192,0.08080534590758157,0.13089406835194145,0.1114509116358527,0.3872911002718418,15.34144707081272,15.34144707081272,11.958053990615142,11.958053990615142,14.787291107858607,14.787291107858607,28.158328756297436,28.158328756297436,14.405770599268038,14.405770599268038,6.227401092669808,5.294254273230081,5.346863921363052,5.168512312893057,8.79247781536057,5.886798894844702,5.135203499764387,5.354937332440201,5.257269716122067,8.124100863761939,145.18126012912916,145.18126012912916,0.0,161.31251125458795,0.0,145.18126012912916,161.31251125458795,0,0
+2017/05/11 08:00:00,160.82694825359854,0,864.7403990458572,0,0,0,0.0,0.0,12.584868145049914,0.0,83.2008179303116,0,39.380909295966944,7.049240403034545e-05,25.48868362974337,0,0,0.03174428290475754,545.2954821500551,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04603941936417995,0.0014566551365600632,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.049399167406597305,0.049399167406597305,-0.13179610084851232,-0.13179610084851232,0.12954636492513216,0.12954636492513216,0.9761505516142914,0.9761505516142914,0.4086776359873741,0.4086776359873741,0.04980565008533045,-0.08057174344835112,-0.04599254187464142,-0.10647834939179285,0.06709189474554589,0.027296794264828665,-0.10811130158893234,-0.025022053076863483,-0.10577242824950234,0.049472486240611846,5.050520499951475,5.050520499951475,5.359849912439984,5.359849912439984,5.347660619317722,5.347660619317722,25.12630653968472,25.12630653968472,8.480827598882172,8.480827598882172,5.051355432603117,5.134422676566771,5.0437922120063945,5.234813569276824,5.093198418940034,5.015424768714382,5.242074757698305,5.012961012499929,5.231708856849167,5.0506705939557435,160.82694825359854,160.82694825359854,0.0,178.69660917066506,0.0,160.82694825359854,178.69660917066506,0,0
+2017/05/11 09:00:00,179.22798739429942,0,909.1674990585126,0,0,0,0.03208098235434391,0.0,11.815562190220337,0.0,106.27511244621549,0,39.380909295966944,0.0001322514214562461,20.866196427507337,0,0,0.05959680464154531,536.4592008721577,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,125.33725322358825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048404751076302883,0.0015314925831594218,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.08015639158447377,-0.08015639158447377,-0.27751022173016,-0.27751022173016,0.026349575800854813,0.026349575800854813,1.0069933936472892,1.0069933936472892,0.3583460495533054,0.3583460495533054,0.005659737521198007,-0.08151186440669285,-0.05065369602540301,-0.10326162415086426,0.0874762621601525,0.02275022348345512,-0.12119795134742549,-0.0411649709705484,-0.11451336554999111,0.02872679399682168,5.133039939918561,5.133039939918561,6.599459458386775,6.599459458386775,5.014372808295434,5.014372808295434,26.415038709692624,26.415038709692624,7.672407199531861,7.672407199531861,5.0006630923869295,5.137578832558134,5.053119392890139,5.220833766662778,5.158456442381549,5.010714262089678,5.304267461152406,5.035080800379475,5.2716108237653,5.017083279621417,179.22798739429942,179.22798739429942,0.0,199.14220821588825,0.0,179.22798739429942,199.14220821588825,0,0
+2017/05/11 10:00:00,210.4105938953745,0,978.7288819690973,0,0,0,0.26375050864345734,0.0,17.187220306683432,0.0,133.89528835348938,0,39.380909295966944,8.74855521967574e-05,18.5393462108876,0,0,0.03945285375875512,517.3148464522649,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1047.0297135916323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052108250627042475,0.001648668727392682,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.06339655460712419,-0.06339655460712419,-0.2706166979786867,-0.2706166979786867,0.06115307188060973,0.06115307188060973,1.03927835587825,1.03927835587825,0.4413639183024424,0.4413639183024424,0.04540139268329773,-0.1280169099726866,-0.041884623714943656,-0.15138587343752521,0.09926165258514467,0.03531243029757181,-0.171616528482491,-0.029697100737370252,-0.16133428517221332,0.034303972390147194,5.083212847163907,5.083212847163907,6.520747938905544,6.520747938905544,5.077426601662296,5.077426601662296,27.802413911575954,27.802413911575954,9.063894695453541,9.063894695453541,5.042673607279596,5.3394940614683435,5.036318195868844,5.474889581904975,5.204049232381337,5.0258143006706035,5.610469148911136,5.018256862252031,5.539428918880873,5.024360859595689,210.4105938953745,210.4105938953745,0.0,233.7895487726383,0.0,210.4105938953745,233.7895487726383,0,0
+2017/05/11 11:00:00,225.68465048103207,0,1039.303670022184,0,0,0,0.6334815068928721,0.0,17.070463315671784,0.0,147.76209134187457,0,39.380909295966944,4.098362385257059e-05,20.837664037001954,0,0,0.01848963893604677,524.675068951358,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2584.7283577258136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05533329721113815,0.001750706953270558,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.053709955324426434,0.053709955324426434,-0.16458738047452845,-0.16458738047452845,0.19174133023168122,0.19174133023168122,1.061511437579157,1.061511437579157,0.609635988408827,0.609635988408827,0.050895136678137574,-0.0594743781348363,0.019541457242469962,-0.07950923134906894,0.08244987067654261,0.08108120700144726,-0.09956656977028859,-0.015722739674468588,-0.09235023625302947,0.028972573584732188,5.059723686741904,5.059723686741904,5.561427900701261,5.561427900701261,5.762279198885736,5.762279198885736,28.780052316204234,28.780052316204234,12.79500582436036,12.79500582436036,5.053627045402749,5.073233455735064,5.007905005534141,5.130899754661968,5.140764421825764,5.136128488057949,5.205305328924652,5.005117314465934,5.176612901528145,5.017376862115967,225.68465048103207,225.68465048103207,0.0,250.76072275670228,0.0,225.68465048103207,250.76072275670228,0,0
+2017/05/11 12:00:00,205.17582928137102,0,991.061948529738,0,0,0,0.6609382856476356,0.0,17.070463315671784,0.0,129.49988082968767,0,39.380909295966944,4.6428796422989566e-05,18.563591125600563,0,0,0.020952704576907327,511.92123690581514,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2697.7170382168165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0527648722259156,0.0016694437770780172,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.09950302128222654,0.09950302128222654,-0.121758912034007,-0.121758912034007,0.24432411933953105,0.24432411933953105,1.0569933528994329,1.0569933528994329,0.6950502002683713,0.6950502002683713,0.10989778305650462,-0.003641636947269898,0.012769037642137214,-0.02568192956959321,0.2015309090601946,0.06370273899256595,-0.02657864114510987,0.06498122311840007,-0.025140061227901817,0.14948860288926477,5.205043224619189,5.205043224619189,5.307092410571698,5.307092410571698,6.238902798506189,6.238902798506189,28.57993992125438,28.57993992125438,15.15845939978287,15.15845939978287,5.250145485522481,5.000274520251196,5.003375206518243,5.013653657394613,5.842243394999485,5.084018715403516,5.014623797361011,5.08742563252143,5.013083556826473,5.463049336566755,205.17582928137102,205.17582928137102,0.0,227.9731436459678,0.0,205.17582928137102,227.9731436459678,0,0
+2017/05/11 13:00:00,202.87435498031445,0,958.7560317642577,0,0,0,0.4648186851312731,0.0,16.965687115311,0.0,129.2730206906943,0,39.380909295966944,0.00013034075195789393,16.360791952152145,0,0,0.05885854703417899,515.067766810422,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1862.8695461379446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05104488128811352,0.0016150244627385435,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.039751759279840246,-0.039751759279840246,-0.2721406581939785,-0.2721406581939785,0.11651082223196794,0.11651082223196794,1.0402648148207747,1.0402648148207747,0.5742247925477731,0.5742247925477731,0.058199561868806406,-0.03638047708810161,-0.06448205238419928,-0.05416837069230815,0.05672031340588731,-0.023250836698738394,-0.050811156585177916,-0.02249622237796961,-0.045123062393909966,0.12676141226763935,5.032713299304788,5.032713299304788,6.537976352812009,6.537976352812009,5.281174616335932,5.281174616335932,27.84541082426638,27.84541082426638,11.907949764066089,11.907949764066089,5.070127155610706,5.027399549368866,5.086087375764578,5.060747657241691,5.066607131894244,5.011190991147103,5.053450195145544,5.010476347608375,5.0421519478930605,5.332862996340026,202.87435498031445,202.87435498031445,0.0,225.41594997812717,0.0,202.87435498031445,225.41594997812717,0,0
+2017/05/11 14:00:00,187.69160509479474,0,899.242176283956,0,0,0,0.3340533266352261,0.0,17.133076708931206,0.0,115.5196477718057,0,39.380909295966944,0.00016128439693532996,14.036766006138317,0,0,0.07184916109654901,491.031273228602,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1323.762179219175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04787631954003274,0.0015147733776990002,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.12951452506198743,-0.12951452506198743,-0.362605968539018,-0.362605968539018,0.036150860907979,0.036150860907979,1.0243171157532993,1.0243171157532993,0.4713471685697743,0.4713471685697743,-0.0034774886730301875,-0.11322356347314372,-0.04197729843728279,-0.0994091512600305,0.046131454161581646,0.022735521368190154,-0.12793733676697336,-0.05796696866452195,-0.11714336922467135,0.10953604065660823,5.347489618274324,5.347489618274324,7.7366427372969895,7.7366427372969895,5.027054754911148,5.027054754911148,27.154677052481944,27.154677052481944,9.639117849666349,9.639117849666349,5.0002503297811245,5.265523344830115,5.036479103056777,5.204656366523707,5.044057169925395,5.010700418263269,5.3390718405322275,5.06956766844246,5.284237801838856,5.248500551429174,187.69160509479474,187.69160509479474,0.0,208.54622788310525,0.0,187.69160509479474,208.54622788310525,0,0
+2017/05/11 15:00:00,181.03062390278745,0,901.0704504845205,0,0,0,0.1906569313745818,0.0,17.133076708931206,0.0,108.75639138185811,0,39.380909295966944,0.00414516450724329,14.094597904811792,0,0,1.896225429669912,491.0351711605931,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,745.9426117510314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,309.8115298092915,0.0,0.0,0.0,331.9337259289613,0.0,0.0,0.0,0.0,0.0,289.9142108685943,0.0,0.0,0.0,195.91866157722598,0.0,0.0,0,0,0,0,0,0,0,0,0.047973658212685684,0.0015178531054510875,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.23449915932552895,-0.23449915932552895,-0.27534237424859487,-0.27534237424859487,-0.05920826430919533,-0.05920826430919533,1.0082506463886367,1.0082506463886367,0.39149486234958936,0.39149486234958936,-0.055575770120309446,-0.20322480101479973,-0.11140079132050633,-0.2067758850970082,-0.006659429918095853,-0.07599622425333244,-0.22470416475748126,-0.10040615164338894,-0.2184126097908599,-0.03308704478940633,6.141041761976183,6.141041761976183,6.574490664357398,6.574490664357398,5.0725794636912696,5.0725794636912696,26.468338687302264,26.468338687302264,8.19267507620313,8.19267507620313,5.063945791916041,5.856486320540057,5.257038248798324,5.886734882752421,5.000918027744561,5.119585127536467,6.047511735788078,5.208783903179338,5.989557016269302,5.022663038737377,181.03062390278745,181.03062390278745,0.0,201.14513766976384,0.0,181.03062390278745,201.14513766976384,0,0
+2017/05/11 16:00:00,204.47933558590708,0,951.7504669381212,0,0,0,0.32785475804862646,0.0,17.346139882338,0.0,131.64086955684016,0,39.380909295966944,0.0025384723523383126,14.065036019133723,0,0,1.182251511098804,489.19363276394864,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1295.6731618390336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,165.23396891119359,0.0,0.0,0.0,169.9396815074693,0.0,0.0,0.0,0.0,0.0,227.38064512775384,0.0,0.0,0.0,103.24069295184422,0.0,0.0,0,0,0,0,0,0,0,0,0.05067189982770145,0.00160322358932063,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2460402251695112,-0.2460402251695112,-0.23650036775642871,-0.23650036775642871,-0.06221373996383468,-0.06221373996383468,1.0147395635059069,1.0147395635059069,0.4089358559420983,0.4089358559420983,-0.052173044636003627,-0.2321774603931294,-0.1254874428070723,-0.2362261395504706,-0.0322318162126614,-0.10684074290159908,-0.2586356370652907,-0.1148223405744284,-0.2546700083622715,-0.07051386396840581,6.256411892049627,6.256411892049627,6.160646028358272,6.160646028358272,5.080136210872993,5.080136210872993,26.74437466087838,26.74437466087838,8.485254280576157,8.485254280576157,5.056354191656382,6.118508498985449,5.326201359289911,6.157949691377183,5.021506545136077,5.236415450758599,6.388709038272594,5.273079354157659,6.346336122808296,5.102950057648485,204.47933558590708,204.47933558590708,0.0,227.19926176211897,0.0,204.47933558590708,227.19926176211897,0,0
+2017/05/11 17:00:00,212.56993267199607,0,972.1731554837745,0,0,0,0.4261448457663452,0.0,18.022008499168074,0.0,133.89528835348938,0,39.380909295966944,0.0002591597773677419,18.557339049525027,0,0,0.1216768967184382,510.67689592398244,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1696.8971996309974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051759218893093574,0.0016376256066257268,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.25346259701124685,-0.25346259701124685,-0.41289363787288397,-0.41289363787288397,-0.06198168598491243,-0.06198168598491243,1.0191681520255524,1.0191681520255524,0.4369856310549649,0.4369856310549649,-0.06739085576678412,-0.19600125438960492,-0.10726826231103107,-0.20174655695294755,0.0800884280176397,-0.09152035410721351,-0.2342686939630548,-0.12394855408069409,-0.22099242491449506,0.03269976376737148,6.333566240518493,6.333566240518493,8.553460147471498,8.553460147471498,5.07953941554338,5.07953941554338,26.933670510494835,26.933670510494835,8.98313373957221,8.98313373957221,5.094031021444152,5.796583115809327,5.238312218870092,5.844049981917507,5.132814365384675,5.1734518115298584,6.1387948668369035,5.31824442593215,6.013120352438634,5.022135580531753,212.56993267199607,212.56993267199607,0.0,236.18881407999564,0.0,212.56993267199607,236.18881407999564,0,0
+2017/05/11 18:00:00,198.17735514236236,0,976.1689365865208,0,0,0,0.39618364031279213,0.0,20.138971170267897,0.0,110.93442390708215,0,39.380909295966944,0.000266357530117783,25.610613169975256,0,0,0.1252770492637409,550.1594293867274,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1574.0099297731485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051971957238705485,0.0016443564995900282,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.27203759003423006,-0.27203759003423006,-0.47018802253555414,-0.47018802253555414,-0.08197795960619987,-0.08197795960619987,1.0132859057603614,1.0132859057603614,0.4360093516566401,0.4360093516566401,-0.017651270413450982,-0.1258355576877487,-0.08107988464147106,-0.12684037716501723,0.14010825674993244,-0.05340281862844169,-0.20437713905383276,-0.12616398889443511,-0.13532100018037077,0.09023055013154971,6.536808078783736,6.536808078783736,9.616160464484594,9.616160464484594,5.13915719011284,5.13915719011284,26.682399312924474,26.682399312924474,8.96523779333657,8.96523779333657,5.006449690136847,5.328014966097271,5.136124046531847,5.333278127760138,5.406711891471602,5.0590425011492215,5.866244246902994,5.329730643834466,5.37937146308289,5.168595561683787,198.17735514236236,198.17735514236236,0.0,220.1970612692915,0.0,198.17735514236236,220.1970612692915,0,0
+2017/05/11 19:00:00,192.72198353253088,0,971.4930361002405,0,0,0,0.32627067328310366,0.0,23.798027217215836,0.0,101.68988858149199,0,39.38090929596693,0.00014838895498769093,27.0977424753112,0,0,0.06989010982716004,581.0292683524278,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1288.925116376965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05172300883334526,0.001636479945575784,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.32415470291813714,-0.32415470291813714,-0.29853551727851635,-0.29853551727851635,-0.1271766176303301,-0.1271766176303301,1.0009916944100479,1.0009916944100479,0.39239639744633775,0.39239639744633775,-0.06028684825232482,-0.1485536431411046,-0.1255229265299033,-0.15355027037497185,0.009059234719741295,-0.10119702224235488,-0.18810011367944934,-0.12580037141992564,-0.1612607887770268,0.06868265320302155,7.184786348808686,7.184786348808686,6.851912794296837,6.851912794296837,5.3350487012836965,5.3350487012836965,26.16142490261724,26.16142490261724,8.207479788105204,8.207479788105204,5.075248311439765,5.457269694782653,5.326385991583223,5.488579943896099,5.001698890786486,5.2120874200955996,5.733558706062766,5.327831424013269,5.538936996952785,5.097671250764876,192.72198353253088,192.72198353253088,0.0,214.13553725836763,0.0,192.72198353253088,214.13553725836763,0,0
+2017/05/11 20:00:00,208.23010718956704,0,895.9545236668181,0,0,0,0.23088573193424022,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,0.00015208769205916572,23.098318505930905,0,0,0.07170413387381289,540.9792944075027,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,905.3009788896495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04770128247951011,0.0015092353271149602,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3843320754563591,-0.3843320754563591,-0.20493535796779255,-0.20493535796779255,-0.1844705526812404,-0.1844705526812404,0.9865993571602264,0.9865993571602264,0.3366766568207899,0.3366766568207899,-0.08307360330791329,-0.16088304369028025,-0.14289578227943003,-0.16701470334182603,-0.035650792043600554,-0.13060558140269207,-0.1940682706931795,-0.11866887469957652,-0.17534132889941098,0.12958335811490682,8.076284272638091,8.076284272638091,5.870991184862348,5.870991184862348,5.705481376690187,5.705481376690187,25.558822451076693,25.558822451076693,7.357605432799147,7.357605432799147,5.142902898635043,5.536412247116559,5.423071002991662,5.578130035850521,5.026311401508593,5.353373338712473,5.780923363272734,5.291693644003232,5.637291905795649,5.347859350064056,208.23010718956704,208.23010718956704,0.0,231.3667857661856,0.0,208.23010718956704,231.3667857661856,0,0
+2017/05/11 21:00:00,195.34599391207482,0,880.9918755729981,0,0,0,0.09915249878090467,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.0001945426827383935,25.495693921525522,0,0,0.09182578997787724,561.4868771701231,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,384.7416319968663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04690466001206194,0.0014840307475365662,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.46711926596673764,-0.46711926596673764,-0.2904032643593099,-0.2904032643593099,-0.26671400710631404,-0.26671400710631404,0.9692106814012783,0.9692106814012783,0.24155172868034347,0.24155172868034347,-0.1003299013993269,-0.20225887107858062,-0.12899716497380986,-0.20426765468817862,0.004450879869242993,-0.10916071599945586,-0.24199277078547093,-0.13902924783682433,-0.217791071408277,0.06622705840058644,9.555662005387475,9.555662005387475,6.752054357607719,6.752054357607719,6.477074027604729,6.477074027604729,24.841370178281068,24.841370178281068,6.210878014370849,6.210878014370849,5.208466773410919,5.848349685682663,5.344716961343721,5.865314751711011,5.0004100841344865,5.246799600158525,6.215314705905783,5.40046633793834,5.983921737756546,5.090810721030849,195.34599391207482,195.34599391207482,0.0,217.05110434674978,0.0,195.34599391207482,217.05110434674978,0,0
+2017/05/11 22:00:00,137.99475784640546,0,681.8218417180643,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.005629822558133683,20.863380337543667,0,0,2.6935739786387463,519.4216814329769,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,319.8456363484444,0.0,0.0,0.0,303.42876620826627,0.0,0.0,0.0,0.0,0.0,496.5563157581165,0.0,0.0,0.0,351.601467683885,0.0,0.0,0,0,0,0,0,0,0,0,0.036300699883053386,0.001148528840624679,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4350753050254926,-0.4350753050254926,-0.3430875595354401,-0.3430875595354401,-0.4351655853670788,-0.4351655853670788,0.8366472582263044,0.8366472582263044,0.009701228082477935,0.009701228082477935,-0.13551378925645388,-0.26296702410029665,-0.1631669814766286,-0.26525622041052105,-0.054026426299671776,-0.14516797283300711,-0.3014853580227784,-0.18016634840803003,-0.2897471018586912,-0.05809365631011633,8.9481543277617,8.9481543277617,7.448660511349715,7.448660511349715,8.949803895402766,8.949803895402766,19.76796692605626,19.76796692605626,5.001948211498714,5.001948211498714,5.380454071840504,6.435746173581407,5.551768227101732,6.460924914791121,5.06042966292604,5.436645030590057,6.888825565945183,5.672898232878794,6.744118932851023,5.069872128987953,137.99475784640546,137.99475784640546,0.0,153.3275087182283,0.0,137.99475784640546,153.3275087182283,0,0
+2017/05/11 23:00:00,90.78879585745675,0,549.9549976571767,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.01747186557573672,11.828367730588456,0,0,8.795005443393125,487.92446344496733,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1042.843802152963,0.0,0.0,0.0,1019.900509520741,0.0,0.0,0.0,0.0,0.0,1260.731770036968,0.0,0.0,0.0,1120.8457446254556,0.0,0.0,0,0,0,0,0,0,0,0,0.029280011430601216,0.0009263991518126376,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4673064112377416,-0.4673064112377416,-0.5279633207244999,-0.5279633207244999,-0.480092636940526,-0.480092636940526,0.6488643692398365,0.6488643692398365,-0.2396019308971329,-0.2396019308971329,-0.1825036812908197,-0.29933802842748747,-0.25248295098987766,-0.30188901838829735,-0.121989873648588,-0.2578103703116882,-0.3401880993012497,-0.275138240224226,-0.3334321157969089,-0.14851643225502142,9.559339828379038,9.559339828379038,10.831035024680006,10.831035024680006,9.814192920591253,9.814192920591253,13.841212938118929,13.841212938118929,6.191361782886474,6.191361782886474,5.690496037251279,6.86191857483594,6.323250310950627,6.893905378576775,5.308259314236125,6.379836513098724,7.407262763883054,6.572149700010399,7.312187907906818,5.457040421383098,90.78879585745675,90.78879585745675,0.0,100.8764398416186,0.0,90.78879585745675,100.8764398416186,0,0
+2017/05/12 00:00:00,39.3420992478592,0,514.9232705270944,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.579156913928311e-09,9.544778248856861,0,0,0.0,461.6877417582782,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027414896329961802,0.0008673882101208769,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3265205908877934,-0.3265205908877934,-0.3903799294515906,-0.3903799294515906,-0.3109952467752676,-0.3109952467752676,0.6361038709389242,0.6361038709389242,0.09397421737284288,0.09397421737284288,-0.1477455593470695,-0.25433934676456005,-0.2099026178891641,-0.26062007056393555,0.1472162916602938,-0.22101951823722168,-0.3169546297745561,-0.2395289309436072,-0.30454850676021794,0.08955404671843975,7.216928961094723,7.216928961094723,8.174414061149562,8.174414061149562,7.0103331761869185,7.0103331761869185,13.493569018366045,13.493569018366045,5.182881460930517,5.182881460930517,5.452303687506401,6.3428328674987995,5.913805663596435,6.410161188237652,5.449065855689696,6.013369295404203,7.088427041005062,6.19063420031199,6.927545629664607,5.166076050105573,39.3420992478592,39.3420992478592,0.0,43.71344360873245,0.0,39.3420992478592,43.71344360873245,0,0
+2017/05/12 01:00:00,23.722144216486395,0,37.389364119120955,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250487928086031,0,0,0.0,1.8990116065768134,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0019906374402532652,6.298238102085464e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.29969808724089325,-0.29969808724089325,-0.35641647578478775,-0.35641647578478775,-0.2623560603495999,-0.2623560603495999,0.5735212931148452,0.5735212931148452,0.2911793091860835,0.2911793091860835,-0.1835615884977424,-0.28914023005308453,-0.24821802596317555,-0.2966845485735749,0.25133254803847266,-0.2624900627045723,-0.3640859272273169,-0.28314171139187994,-0.3508278342440968,0.16830286696732397,6.866416667844007,6.866416667844007,7.643565310589906,7.643565310589906,6.42906351569323,6.42906351569323,11.890878240681872,11.890878240681872,6.761463070115411,6.761463070115411,5.698536018171708,6.736795797652945,6.278809733925144,6.828938551588905,6.311187783318502,6.430527874262509,7.75914000918354,6.6652478659586905,7.560924353228501,5.587093532699797,23.722144216486395,23.722144216486395,0.0,26.357938018318215,0.0,23.722144216486395,26.357938018318215,0,0
+2017/05/12 02:00:00,28.34448681649431,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251237300214185,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2537492751790571,-0.2537492751790571,-0.30828939327023397,-0.30828939327023397,-0.20918922378975421,-0.20918922378975421,0.5720164143976215,0.5720164143976215,0.37770336210637856,0.37770336210637856,-0.1741924007034313,-0.2822801170101755,-0.242373377350311,-0.29125529126753535,0.28013728404329663,-0.2711276103354001,-0.3747638166959287,-0.2933515292328294,-0.36206324336044904,0.19611994780823636,6.336592669740114,6.336592669740114,6.975371058038945,6.975371058038945,5.9075931735906835,5.9075931735906835,11.854432074242183,11.854432074242183,7.970523917206464,7.970523917206464,5.628956589229972,6.6550958338226565,6.219150009453841,6.76238563851949,6.629982968963333,6.526512913249476,7.9242239971468535,6.787934156595682,7.728415998468606,5.797549781266923,28.34448681649431,28.34448681649431,0.0,31.493874240549232,0.0,28.34448681649431,31.493874240549232,0,0
+2017/05/12 03:00:00,23.72228452730976,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251891036319702,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2596567704981398,-0.2596567704981398,-0.31292214507348914,-0.31292214507348914,-0.2110929234787151,-0.2110929234787151,0.5254409166602299,0.5254409166602299,0.4198018804792442,0.4198018804792442,-0.19782138667167756,-0.3063505284775241,-0.2670491438722923,-0.31584060288075294,0.3081373243795547,-0.30219937567291144,-0.4069217008569605,-0.3249887689021789,-0.3942737733875386,0.21074217590653893,6.399727011984993,6.399727011984993,7.035419417126505,7.035419417126505,5.924218698731636,5.924218698731636,10.774982187317732,10.774982187317732,8.674120630958257,8.674120630958257,5.811471413456587,6.950509695995137,6.480799267926784,7.073714137157623,6.973415384791224,6.8978157157795295,8.450801213373765,7.196090760019999,8.238420943006616,5.921144123700628,23.72228452730976,23.72228452730976,0.0,26.358093919233067,0.0,23.72228452730976,26.358093919233067,0,0
+2017/05/12 04:00:00,40.378478593125934,0,110.81070848307293,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.2481995839424274,0.04459773597482331,0.5775477235745743,0,0,22.084827201712613,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115.62842584908165,0.0,0.0,0.0,86.34136705324597,0.0,0.0,0,0,0,0,0,0,0,0,0.0058996441978693154,0.00018666063002934622,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.20949961584829008,-0.20949961584829008,-0.26310401570084274,-0.26310401570084274,-0.1601545646513768,-0.1601545646513768,0.5410931318286594,0.5410931318286594,0.5426529564869849,0.5426529564869849,-0.22057121893043385,-0.3284962137637176,-0.28915594154002483,-0.33782631792136514,0.2989548052647856,-0.3280624988489653,-0.4024036927266142,-0.35036740816805934,-0.39634492244105757,0.23147202763710042,5.910293560102986,5.910293560102986,6.43724673010793,6.43724673010793,5.531560076512562,5.531560076512562,11.127255316706766,11.127255316706766,11.162942642825172,11.162942642825172,6.0092541205440995,7.243951368988419,6.736985192415574,7.373805793421965,6.857137118142319,7.238004868756462,8.374150315790203,7.554175137074367,8.272730509703592,6.1117067174049,40.378478593125934,40.378478593125934,0.0,44.86497621458437,0.0,40.378478593125934,44.86497621458437,0,0
+2017/05/12 05:00:00,73.95964879855859,0,212.9421150752648,0,0,0,0.38437918274830274,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.2642120684330508,0.0,0.5250145174213505,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,1244.9704640857183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.023614555002795596,0.023614555002795596,-0.03232210967973969,-0.03232210967973969,0.07176447167964131,0.07176447167964131,0.7285029667140334,0.7285029667140334,0.817584846658371,0.817584846658371,-0.1695445515280039,-0.27777281396563125,-0.23736547834082858,-0.286991414874617,0.5040702502538551,-0.27238498988214965,-0.3703880328464775,-0.2945181367397011,-0.359389674880587,0.3908452896752029,5.011543865148809,5.011543865148809,5.021627215449669,5.021627215449669,5.106635056198186,5.106635056198186,16.170104845540095,16.170104845540095,19.0978095797918,19.0978095797918,5.59579911417282,6.602497393083411,6.1691728779220085,6.710991002799773,10.311130670401567,6.540747632525907,7.855984997358874,6.802232926777904,7.688072613176573,8.18202954019145,73.95964879855859,73.95964879855859,0.0,82.17738755395399,0.0,73.95964879855859,82.17738755395399,0,0
+2017/05/12 06:00:00,86.14706935776587,0,678.8775349879843,0,0,0,0.0,0.0,11.110595677687485,0.0,73.80580873715317,0,0.7057400234501259,2.5208779121557424e-09,0.5249249169541927,0,0,0.0,448.1902436564473,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0361439428118763,0.0011435691561613285,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.19433378227565978,0.19433378227565978,0.13665945829665552,0.13665945829665552,0.24206919207181282,0.24206919207181282,0.8710656194321683,0.8710656194321683,0.9203974553460801,0.9203974553460801,-0.10664318388572708,-0.2147668255239263,-0.17307861722401605,-0.22382237254807605,0.598133157470969,-0.1995053028180913,-0.3009478957032273,-0.2203794047781836,-0.28907504775403403,0.495525979534329,5.783065108620065,5.783065108620065,5.386919482938708,5.386919482938708,6.216084301212192,6.216084301212192,21.01637400680808,21.01637400680808,22.890634070963642,22.890634070963642,5.235541508075457,5.956732863596542,5.620928819902005,6.039289127823707,12.500890464412208,5.825368851924637,6.882072633699835,6.007495930382717,6.736010166278348,10.131202586147197,86.14706935776587,86.14706935776587,0.0,95.7189659530732,0.0,86.14706935776587,95.7189659530732,0,0
+2017/05/12 07:00:00,147.56601476432238,0,853.8418432318141,0,0,0,0.0,0.0,9.480856419072367,0.0,69.33401494192633,0,39.380909295966944,0.013720881973439836,27.068529757080462,0,0,6.674733949441889,580.9894654382913,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,939.7213844452607,0.0,0.0,0.0,903.345158987342,0.0,0.0,0.0,0.0,0.0,907.4267732274805,0.0,0.0,0.0,817.7820312372011,0.0,0.0,0,0,0,0,0,0,0,0,0.04545917218000735,0.0014382965201184942,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.03596509335823539,0.03596509335823539,-0.011379177263310527,-0.011379177263310527,0.07278518724647563,0.07278518724647563,0.7838221621690353,0.7838221621690353,0.6765444221104495,0.6765444221104495,-0.16128642821888875,-0.26719368543635386,-0.22590944100086524,-0.27332803522859356,0.34352219296458864,-0.22465802925933956,-0.3270047555078995,-0.25439462186940154,-0.32021748697476593,0.26135413631609994,5.026777402004285,5.026777402004285,5.002680433811506,5.002680433811506,5.109690719823064,5.109690719823064,17.948434875418286,17.948434875418286,14.619578821226668,14.619578821226668,5.539108579847763,6.482407391608888,6.058803524509003,6.551467516654654,7.454896882976797,6.0470807195969485,7.223536010869239,6.343418169698609,7.131821969567042,6.418138586259644,147.56601476432238,147.56601476432238,0.0,163.96223862702485,0.0,147.56601476432238,163.96223862702485,0,0
+2017/05/12 08:00:00,161.4852053900837,0,864.790106915324,0,0,0,0.0,0.0,11.972452316828308,0.0,83.2008179303116,0,39.380909295966944,0.00606686579924015,25.552168900195905,0,0,3.0829092050598406,542.294025097367,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,285.304260617442,0.0,0.0,0.0,278.8625944115514,0.0,0.0,0.0,0.0,0.0,542.2446629715471,0.0,0.0,0.0,436.7267426769064,0.0,0.0,0,0,0,0,0,0,0,0,0.04604206584796932,0.0014567388694624076,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.25205233001778393,-0.25205233001778393,-0.263226837638904,-0.263226837638904,-0.22100413562404672,-0.22100413562404672,0.8126651777366604,0.8126651777366604,0.2638615613237525,0.2638615613237525,-0.1387605703087193,-0.3007797534255972,-0.20584163351968246,-0.30454467688728715,0.06514057100164805,-0.22350229785289066,-0.3389784792219317,-0.2547390148725098,-0.33383153466827903,0.005874859428495815,6.318728527095587,6.318728527095587,6.438592748951677,6.438592748951677,6.013227950776596,6.013227950776596,18.927332615060507,18.927332615060507,6.445558875426883,6.445558875426883,5.398918703799978,6.879962522380694,5.878725666615409,6.927496969960771,5.087855012443853,6.036312532431495,7.390097700418522,6.347067804983496,7.31775490599982,5.000714457612233,161.4852053900837,161.4852053900837,0.0,179.42800598898188,0.0,161.4852053900837,179.42800598898188,0,0
+2017/05/12 09:00:00,180.20862593405974,0,912.4098563066239,0,0,0,0.0040221528061656076,0.0,11.415947470965692,0.0,106.27511244621549,0,39.380909295966944,0.0008257158218377028,20.84382538398073,0,0,0.4264363613681645,539.3347185635421,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,15.642068197842816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,141.7948769292895,0.0,0.0,0.0,5.326191857746626,0.0,0.0,0,0,0,0,0,0,0,0,0.04857737657782796,0.0015369543336977742,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2277043019759857,-0.2277043019759857,-0.2626430549348135,-0.2626430549348135,-0.28751099171073713,-0.28751099171073713,0.91954252175155,0.91954252175155,0.2025210718093335,0.2025210718093335,-0.07977330828658424,-0.28701535962526875,-0.1487515015528451,-0.28428904623501716,0.09146219013843175,-0.1821132037699556,-0.32248048850697464,-0.20925483282193988,-0.3143137790876981,0.028008936693689177,6.07573180837602,6.07573180837602,6.432200675619001,6.432200675619001,6.717212653350543,6.717212653350543,22.85731246592789,22.85731246592789,5.850554507766375,5.850554507766375,5.131770970152232,6.711277477698829,5.458489759884131,6.67881536053946,5.173231331770253,5.6875402578918255,7.162184110871209,5.908163630882527,7.0536348352514295,5.016240125441769,180.20862593405974,180.20862593405974,0.0,200.2318065933997,0.0,180.20862593405974,200.2318065933997,0,0
+2017/05/12 10:00:00,210.5968015067026,0,980.0414490313491,0,0,0,0.25424838048453596,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.002900286960862995,18.549170155113277,0,0,1.5110430279018,517.1558233403734,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1007.0792255072101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,172.38044109533521,0.0,0.0,0.0,113.37503104337155,0.0,0.0,0.0,0.0,0.0,328.534754880474,0.0,0.0,0.0,176.69865895277863,0.0,0.0,0,0,0,0,0,0,0,0,0.05217813266966393,0.001650879746509423,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.28824493643949506,-0.28824493643949506,-0.24469609782346488,-0.24469609782346488,-0.20981609674076693,-0.20981609674076693,0.9935726769185057,0.9935726769185057,0.30600919487343275,0.30600919487343275,-0.09484683266441803,-0.29434995065665054,-0.16298153659556913,-0.2917875026778643,0.03464773586072569,-0.12769049137515617,-0.31942255442323975,-0.15931094286038067,-0.3109600784530865,-0.02650378192562928,6.726020662565006,6.726020662565006,6.242687519352387,6.242687519352387,5.913051071389603,5.913051071389603,25.849806754157896,25.849806754157896,6.946149364378584,6.946149364378584,5.186294954712508,6.800167971562942,5.550513283808343,6.768854542622918,5.0248515775245295,5.337763736924131,7.121208064330119,5.525968613142382,7.009876781306247,5.014541534399257,210.5968015067026,210.5968015067026,0.0,233.99644611855845,0.0,210.5968015067026,233.99644611855845,0,0
+2017/05/12 11:00:00,225.38455718130774,0,1033.8811036312682,0,0,0,0.5767878447227905,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,4.8071387652113915e-05,20.866423193895294,0,0,0.025222520101576138,519.2457696792766,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2338.75150021676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05504459575995472,0.0017415726405966261,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.21347134738287543,-0.21347134738287543,-0.3166192679858601,-0.3166192679858601,-0.0955817458790986,-0.0955817458790986,1.0298456992473268,1.0298456992473268,0.43266369448858577,0.43266369448858577,-0.06980841120456875,-0.1946999910550517,-0.11874923410093004,-0.18892492082855444,-0.023719927403136606,-0.05122240198155549,-0.2163141154111303,-0.11690978550005414,-0.1985380836868365,-0.07401462921810853,5.945203322851313,5.945203322851313,7.0839924018866185,7.0839924018866185,5.1891942998731935,5.1891942998731935,27.393072578063425,27.393072578063425,8.904219867180402,8.904219867180402,5.100899997303316,5.786023961486364,5.292089078291099,5.74001593318431,5.011647119221138,5.054319008024578,5.970595598716827,5.283104708262556,5.817371853650499,5.113428584910054,225.38455718130774,225.38455718130774,0.0,250.4272857570086,0.0,225.38455718130774,250.4272857570086,0,0
+2017/05/12 12:00:00,205.12696159762754,0,996.2709696227051,0,0,0,0.574130244202221,0.0,17.070463315671784,0.0,129.49988082968767,0,39.380909295966944,4.559263711179723e-05,18.601532319461768,0,0,0.023928142030786526,517.1272825613286,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2325.660880405502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05304220436726183,0.0016782183727137624,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2290235834863485,-0.2290235834863485,-0.3692320372648307,-0.3692320372648307,-0.083872531033281,-0.083872531033281,1.0287447793133921,1.0287447793133921,0.46191636624537785,0.46191636624537785,-0.025814487491550863,-0.13551185281459585,-0.07493198257851881,-0.15140720821402087,0.01698256861953267,-0.02913472809838684,-0.16844490341110985,-0.06547613860457863,-0.15270248815320306,-0.027709998303100995,6.088260796805557,6.088260796805557,7.838093938725535,7.838093938725535,5.1456656061349975,5.1456656061349975,27.345510193089694,27.345510193089694,9.454017472022514,9.454017472022514,5.013794972762227,5.3804431900469325,5.1162584353648555,5.4750235776289315,5.005970259634253,5.017571924488436,5.588086108163935,5.088762677062434,5.483194259286634,5.015895302936784,205.12696159762754,205.12696159762754,0.0,227.91884621958616,0.0,205.12696159762754,227.91884621958616,0,0
+2017/05/12 13:00:00,202.5032174984195,0,941.2781235417377,0,0,0,0.673319557318944,0.0,16.86091082671979,0.0,129.2730206906943,0,39.380909295966944,6.983367765775159e-05,16.314987294041813,0,0,0.03666274680125694,497.6120543881348,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2749.2520320507906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050114344508343414,0.0015855829276642593,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1517416995969515,-0.1517416995969515,-0.30022035813324194,-0.30022035813324194,-0.003480298484348582,-0.003480298484348582,1.0435529789124518,1.0435529789124518,0.5069528127251085,0.5069528127251085,0.07759521166689419,-0.0654670517552516,0.02732018307295345,-0.0925363455646445,0.07145882771513022,0.07328023118666749,-0.0939072097461522,-0.011568760221870554,-0.08615677831035219,0.030393466160154287,5.477126871004089,5.477126871004089,6.8729509621967395,6.8729509621967395,5.000250734477774,5.000250734477774,27.98898883923735,27.98898883923735,10.372544394796634,10.372544394796634,5.124671660128257,5.088738036891726,5.015451213842212,5.1773257303611615,5.105728469098111,5.1111882622656,5.1826206471288145,5.002770493186247,5.153710642350603,5.019123144747709,202.5032174984195,202.5032174984195,0.0,225.0035749982439,0.0,202.5032174984195,225.0035749982439,0,0
+2017/05/12 14:00:00,187.48716453404944,0,895.0293538503436,0,0,0,0.5212772622516995,0.0,16.86091082671979,0.0,115.5196477718057,0,39.380909295966944,0.00013595983196464445,14.060291683321939,0,0,0.07141946587121194,486.81888049021467,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2099.9264047216875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04765202575320155,0.0015076768786293276,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.20591606415302405,-0.20591606415302405,-0.3547184873722085,-0.3547184873722085,-0.05288514536982772,-0.05288514536982772,1.0297596632577928,1.0297596632577928,0.4527763176952293,0.4527763176952293,0.028565762768259062,-0.10407666223744876,-0.027611532976597578,-0.11711478180262122,0.058495666374458626,0.02646887388414052,-0.10911917036779328,0.011244386018870069,-0.09726979486004783,0.020086035372336795,5.879362411631831,5.879362411631831,7.618316081941302,7.618316081941302,5.057903220838682,5.057903220838682,27.38935400527255,27.38935400527255,9.278278821332961,9.278278821332961,5.0168922849963735,5.224335262378631,5.015782534336196,5.284099005082581,5.070842658509676,5.014503253209654,5.246611677227236,5.002617307775296,5.195938785407009,5.008351743582992,187.48716453404944,187.48716453404944,0.0,208.31907170449938,0.0,187.48716453404944,208.31907170449938,0,0
+2017/05/12 15:00:00,180.18304978899187,0,898.9236019430543,0,0,0,0.5589850547506298,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,5.3215861867566123e-05,14.064631926476222,0,0,0.026930110024755663,490.7576179387722,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2254.770607174554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047859358406153,0.0015142367392459307,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1304919763174468,-0.1304919763174468,0.021816186112301603,0.021816186112301603,-0.008546668213523791,-0.008546668213523791,1.019835978495185,1.019835978495185,0.48119524845552686,0.48119524845552686,0.011172008707162681,0.008826953768367101,-0.06175989083266049,-0.19637439914957355,0.009305426887352334,0.02102089368453181,0.023467615357157925,-0.04217921094273955,-0.18590263421547856,-0.021343173660134173,5.352758393651214,5.352758393651214,5.00985253030386,5.00985253030386,5.001512084112207,5.001512084112207,26.96227963543795,26.96227963543795,9.836500203526711,9.836500203526711,5.002583722110373,5.001612887438853,5.0789710897063856,5.7996240740041,5.001792483338306,5.009147276493252,5.011400647046813,5.036830907039871,5.716493860424293,5.00942991368575,180.18304978899187,180.18304978899187,0.0,200.2033886544354,0.0,180.18304978899187,200.2033886544354,0,0
+2017/05/12 16:00:00,202.4931708575795,0,952.1572153957903,0,0,0,0.7319046982633253,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,1.6394041757069356e-05,14.108563239240734,0,0,0.00785529511131044,490.7747774376052,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2989.707765591464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05069355541686904,0.0016039087570667017,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.006885415022186655,-0.006885415022186655,0.36417573069974696,0.36417573069974696,0.1328894904362309,0.1328894904362309,1.027720922758796,1.027720922758796,0.6483612035101893,0.6483612035101893,-0.002141209957604906,-0.00014407279436039655,-0.04205815608118424,-0.15463288327774222,0.002868079322784439,0.013178258323534147,0.07924042262856759,-0.048369296735007165,-0.13687547071866138,-0.025302366452931917,5.000981390853326,5.000981390853326,7.7605081399378975,7.7605081399378975,5.365850016959328,5.365850016959328,27.301317306277795,27.301317306277795,13.827371096011731,13.827371096011731,5.000094907259651,5.000000429679659,5.036619783347817,5.4955009587744,5.000170279871199,5.003595011273788,5.130015898795904,5.048435743229291,5.388144635142012,5.013253042942026,202.4931708575795,202.4931708575795,0.0,224.99241206397724,0.0,202.4931708575795,224.99241206397724,0,0
+2017/05/12 17:00:00,209.42601648292322,0,978.5164448428743,0,0,0,0.7816621911366072,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,3.00865106678356e-05,18.569829200742458,0,0,0.01581687430415158,517.1260453054964,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3203.8110368001903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052096940317088766,0.001648310877069683,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.03695019617593419,0.03695019617593419,0.4787002648813767,0.4787002648813767,0.23162374363893884,0.23162374363893884,1.022868612080989,1.022868612080989,0.737207370919013,0.737207370919013,0.10087933994731933,0.05659434823423393,-0.11336501088947182,-0.08460086431080696,0.10164886405613136,0.11323119671889297,0.11897029638147229,-0.10870887288667097,-0.05972602313003533,0.07214721003400094,5.028264476817029,5.028264476817029,9.78609833081022,9.78609833081022,6.113167800610739,6.113167800610739,27.09240398661774,27.09240398661774,16.441233690607973,16.441233690607973,5.210757320717619,5.066311574157822,5.266187560287463,5.148207266179867,5.213986447236607,5.265559168169943,5.293178270841011,5.24475963257197,5.073854589342304,5.107775778628081,209.42601648292322,209.42601648292322,0.0,232.69557386991468,0.0,209.42601648292322,232.69557386991468,0,0
+2017/05/12 18:00:00,194.12767930744008,0,987.3089215502623,0,0,0,0.8046434693612563,0.0,17.540027511967114,0.0,110.93442390708215,0,39.380909295966944,3.9152855053711815e-05,25.46763597020748,0,0,0.020587410328141948,561.4041039894046,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2978.305240502773,0.0,8.758059840609482,0.0,0.0,0.0,0.0,255.92515164475535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052565058289636216,0.0016631218034159404,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.03347941309834419,0.03347941309834419,0.592487478703401,0.592487478703401,0.3444134862445889,0.3444134862445889,1.015118811663842,1.015118811663842,0.7574300734278913,0.7574300734278913,0.1802026259139108,0.1743173103146142,-0.015883294098883376,-0.004127419230391189,0.21381561530346238,0.19382166270819695,0.24758345229846576,0.007122945001561431,0.025003397762725036,0.1842084813248637,5.02320375993375,5.02320375993375,12.358637296837443,12.358637296837443,7.467710786252056,7.467710786252056,26.76055656777922,26.76055656777922,17.083689242701467,17.083689242701467,5.67316962406116,5.6298601227214675,5.005222361273169,5.000352645490423,5.948260393222569,5.778936742966678,6.27226281140598,5.001050270113922,5.012941692869489,5.703475360159047,194.12767930744008,194.12767930744008,0.0,215.69742145271118,0.0,194.12767930744008,215.69742145271118,0,0
+2017/05/12 19:00:00,187.41563456224918,0,952.726645562574,0,0,0,0.580772857616291,0.0,18.666298842575106,0.0,101.68988858149199,0,39.380909295966944,2.2509287695264842e-05,27.097742475311204,0,0,0.011837197395034743,562.3209307271937,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2339.8115985668983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05072387230072932,0.0016048679621394298,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.06200131328792648,-0.06200131328792648,0.18162211313759802,0.18162211313759802,0.3131587601572846,0.3131587601572846,0.9963718270285628,0.9963718270285628,0.6820613278380387,0.6820613278380387,0.053458185129271404,0.0697661442149462,-0.056851857135890395,-0.06515230809624299,0.17795521153460594,0.075500573383323,0.13697434443353998,-0.021929652390748643,-0.03484287501873289,0.14115046021668334,5.079589806551766,5.079589806551766,5.683831910363082,5.683831910363082,7.038510740147132,7.038510740147132,25.967132520689276,25.967132520689276,14.778679545051418,14.778679545051418,5.059165007409263,5.100777823630509,5.066916480660026,5.087886680915801,5.6564604888802705,5.118029939452967,5.388706062350678,5.0099552853251765,5.025132313747136,5.412790405231078,187.41563456224918,187.41563456224918,0.0,208.23959395805463,0.0,187.41563456224918,208.23959395805463,0,0
+2017/05/12 20:00:00,208.07886064254225,0,895.7854656710889,0,0,0,0.44055777813766545,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,4.635340951432487e-05,23.166502547292023,0,0,0.02438264157515358,540.8575579040726,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1753.646823453302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0476922817065951,0.0015089505489339853,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1859834528624034,-0.1859834528624034,-0.042200083649220045,-0.042200083649220045,0.09811189894025568,0.09811189894025568,0.9727816174963313,0.9727816174963313,0.5689252812695818,0.5689252812695818,0.01462312208649839,0.019845344982372965,-0.08731090997256197,-0.10411678713529787,0.10894648405693554,0.00533531438549493,0.06640083798380472,-0.10014916541891483,-0.07237577999406286,0.06401501839234786,5.7171178965981255,5.7171178965981255,5.0368673710847105,5.0368673710847105,5.1993475712144175,5.1993475712144175,24.987752002127138,24.987752002127138,11.77987708787343,11.77987708787343,5.0044265484197865,5.008152781893401,5.157857760189813,5.224508355808851,5.245831335229269,5.000589252483934,5.0912880143974775,5.207716044647711,5.10845991037047,5.084844627848895,208.07886064254225,208.07886064254225,0.0,231.19873404726917,0.0,208.07886064254225,231.19873404726917,0,0
+2017/05/12 21:00:00,195.397114779729,0,880.9115007952747,0,0,0,0.23654783809098046,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.0001601470028787023,25.55245281231845,0,0,0.08429065198688569,561.4140375303908,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,926.5579242004791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04690038079936181,0.0014838953562295912,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.31888758932440164,-0.31888758932440164,-0.2292093988719839,-0.2292093988719839,-0.05633233707928238,-0.05633233707928238,0.9553157904430716,0.9553157904430716,0.4328613572849158,0.4328613572849158,-0.033591458102341126,0.00371335146245916,-0.06294188577794699,-0.14838485761314676,0.07553294256367277,-0.03261257964356381,0.045965225037925626,-0.13233215841637427,-0.12433848704907317,0.025634872196153582,7.114080307298835,7.114080307298835,6.090031318234466,6.090031318234466,5.065698911721057,5.065698911721057,24.27651267891622,24.27651267891622,8.907811470580114,8.907811470580114,5.023359338986339,5.000285438938349,5.082023341018683,5.4562301918038685,5.11813119230699,5.022017696471536,5.043740202587614,5.362785378672072,5.320251289914893,5.013603666169885,195.397114779729,195.397114779729,0.0,217.10790531081,0.0,195.397114779729,217.10790531081,0,0
+2017/05/12 22:00:00,137.91160635224355,0,686.0937121424298,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.001092412189025782,20.784766253750874,0,0,0.5766970541065918,525.8104287818746,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,172.37662888674726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.87827204567772,0.0,0.0,0,0,0,0,0,0,0,0,0.0365281374286495,0.0011557248060302932,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3809888180940089,-0.3809888180940089,-0.2884912921125749,-0.2884912921125749,-0.3010959163748813,-0.3010959163748813,0.8438092377937533,0.8438092377937533,0.14015360207893351,0.14015360207893351,-0.09313506951233372,-0.08753650223245531,-0.13160392362158213,-0.2555860555803427,-0.01464438242627467,-0.11097504482571875,-0.09722536565043674,-0.15944779133758333,-0.2569611261825138,-0.07955114160682406,8.022708540402618,8.022708540402618,6.728982254252443,6.728982254252443,6.883931217118231,6.883931217118231,20.023684682609158,20.023684682609158,5.406975421541304,5.406975421541304,5.179628689515539,5.158674832411151,5.358800454861239,6.356065370719378,5.004439429286492,5.255076259680763,5.195759756097459,5.526873619389221,6.370736119901153,5.131037827606804,137.91160635224355,137.91160635224355,0.0,153.2351181691595,0.0,137.91160635224355,153.2351181691595,0,0
+2017/05/12 23:00:00,90.37921750873828,0,537.288737197195,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.006830886766642865,11.85842726098585,0,0,3.659777675010289,480.39343075336865,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,852.3122882962168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,861.5046558966859,0.0,0.0,0,0,0,0,0,0,0,0,0.028605650341728232,0.0009050628370291515,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5094777748428729,-0.5094777748428729,-0.4538534850359487,-0.4538534850359487,-0.5258043239621977,-0.5258043239621977,0.6585885283298208,0.6585885283298208,-0.13549911039616613,-0.13549911039616613,-0.16743710826717204,-0.19186966440868355,-0.18904192142240853,-0.3156087710633447,-0.11463314372490165,-0.19578503628438537,-0.20585592623506255,-0.25768724452429725,-0.3318856116214035,-0.17160979256047795,10.426634501845115,10.426634501845115,9.298802951111284,9.298802951111284,10.783040837620646,10.783040837620646,14.110875210538836,14.110875210538836,5.380371588189874,5.380371588189874,5.581061653097038,5.763301555800126,5.740934205972522,7.070658952777819,5.272179647876499,5.794823701405676,5.878847921073486,6.378515231992694,7.290696993649206,5.610421167015176,90.37921750873828,90.37921750873828,0.0,100.42135278748697,0.0,90.37921750873828,100.42135278748697,0,0
+2017/05/13 00:00:00,40.74276274519414,0,514.6224823216547,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.5791802874015974e-09,9.557128677814903,0,0,0.0,461.38695355283846,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027398882143108375,0.0008668815324116434,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.3095714598222981,-0.3095714598222981,-0.27441350401102155,-0.27441350401102155,-0.2842204729730902,-0.2842204729730902,0.6629653986732991,0.6629653986732991,0.19075260843720765,0.19075260843720765,-0.12967365876756878,-0.0396584092957252,-0.13352071859728862,-0.26337159234657387,0.15884418290385516,-0.18128376259566314,-0.07405505101534106,-0.20897208752432356,-0.2954145533208312,0.05918666775859235,6.991897907933307,6.991897907933307,6.5638527724222655,6.5638527724222655,6.678002905410551,6.678002905410551,14.233588183472605,14.233588183472605,5.754425756994223,5.754425756994223,5.348344692298809,5.0325598260740065,5.3693365955301715,6.440179946673581,5.522887707120361,5.681282799939098,5.113552543159571,5.905706502535253,6.813259111629236,5.072526517507669,40.74276274519414,40.74276274519414,0.0,45.269736383549045,0.0,40.74276274519414,45.269736383549045,0,0
+2017/05/13 01:00:00,23.721963243078545,0,41.07864452668255,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248678194007521,0,0,0.0,5.588292014138415,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002187057461826438,6.919697358738052e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2934486166449149,-0.2934486166449149,-0.2103865061163098,-0.2103865061163098,-0.22199196865010098,-0.22199196865010098,0.6041223031904855,0.6041223031904855,0.3716531195720263,0.3716531195720263,-0.16670339331882617,-0.05174804271698848,-0.17437562797227077,-0.30380809897495253,0.25130509612168683,-0.22778529026396896,-0.08147695644123884,-0.25182378168845404,-0.34718395997025686,0.13171126632077215,6.7891219355165475,6.7891219355165475,5.918031660964232,5.918031660964232,6.0223248795943505,6.0223248795943505,12.653310053216927,12.653310053216927,7.875629725615653,7.875629725615653,5.575974213060491,5.055439698383495,5.630282186339514,6.918150057069866,6.310900616522346,6.076498837171343,5.137460984938812,6.316331796891134,7.50775680836513,5.359386451543315,23.721963243078545,23.721963243078545,0.0,26.357736936753938,0.0,23.721963243078545,26.357736936753938,0,0
+2017/05/13 02:00:00,28.344308352656412,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5249452661835166,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2753950226843231,-0.2753950226843231,-0.1790200075456364,-0.1790200075456364,-0.19001423511284682,-0.19001423511284682,0.5757411332642264,0.5757411332642264,0.4549355320982519,0.4549355320982519,-0.187484696788488,-0.059618668842136,-0.19934256131318123,-0.3275048234880031,0.2768520937826951,-0.26057826277789886,-0.09839890854899427,-0.2824362202257054,-0.3822952950807741,0.14566523171548626,6.575094710060057,6.575094710060057,5.6643507800344395,5.6643507800344395,5.7485874831021135,5.7485874831021135,11.944819181109878,11.944819181109878,9.319470327989393,9.319470327989393,5.728759261478629,5.07358928653241,5.824020562547489,7.230370520081337,6.591858338554417,6.409707528227187,5.200516093997734,6.656932850395378,8.043588039713171,5.439644309866495,28.344308352656412,28.344308352656412,0.0,31.493675947396014,0.0,28.344308352656412,31.493675947396014,0,0
+2017/05/13 03:00:00,23.722130513212065,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525035089534272,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2880257418778504,-0.2880257418778504,-0.18554766106024276,-0.18554766106024276,-0.19396677150177036,-0.19396677150177036,0.5170812890010067,0.5170812890010067,0.5145662012202983,0.5145662012202983,-0.22997367701444577,-0.09403913636809258,-0.24261479395394325,-0.36936935593800196,0.3139460566655632,-0.31108866990497924,-0.13887363198468758,-0.330360181826684,-0.4328235918115651,0.15904371577186815,6.7233877452902675,6.7233877452902675,5.713756187794573,5.713756187794573,5.78010540004415,5.78010540004415,10.591183357720965,10.591183357720965,10.536477160548145,10.536477160548145,6.097328886961236,5.183134322858621,6.221585874551579,7.840216204285795,7.0488136597981,7.011545823764038,5.3995695947070175,7.269598372008858,8.907125128835276,5.524203637131976,23.722130513212065,23.722130513212065,0.0,26.35792279245785,0.0,23.722130513212065,26.35792279245785,0,0
+2017/05/13 04:00:00,37.85294023899941,0,101.85678183557724,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,0.23900511039362254,0.024913266484232737,0.5251234500584862,0,0,13.130900554216907,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,122.96905426926455,0.0,0.0,0,0,0,0,0,0,0,0,0.0054229305109234835,0.0001715777412712312,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.20830364788361905,-0.20830364788361905,-0.10641337083462861,-0.10641337083462861,-0.11363015666478302,-0.11363015666478302,0.5594741170820757,0.5594741170820757,0.6477219486088305,0.6477219486088305,-0.23355490051068428,-0.09481062819588114,-0.24632517160927267,-0.3720809106490357,0.2973516333460514,-0.3244631211190994,-0.14958131106820377,-0.3425371151544384,-0.41429782062523185,0.18555956462390774,5.899910899249363,5.899910899249363,5.234526922319958,5.234526922319958,5.267434883583405,5.267434883583405,11.554495453598264,11.554495453598264,13.809801338425814,13.809801338425814,6.1318499632517245,5.186152701845373,6.259331123773535,7.882288061368328,6.837201725343675,7.188963020135503,5.463624414490539,7.440773938404277,8.577820209526905,5.7138479068073735,37.85294023899941,37.85294023899941,0.0,42.05882248777712,0.0,37.85294023899941,42.05882248777712,0,0
+2017/05/13 05:00:00,72.78885381711423,0,212.9421150752648,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,0.399796974331319,0.0,0.5250496535831567,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.017428210733385168,0.017428210733385168,0.11274572653249439,0.11274572653249439,0.10891187253393182,0.10891187253393182,0.7405450914314056,0.7405450914314056,0.8706316081274736,0.8706316081274736,-0.22232085112236016,-0.08512954074721671,-0.23502933004561588,-0.36075852530664715,0.42099463762179196,-0.31652335489541644,-0.14259342567099856,-0.3338164808631265,-0.4318891922383943,0.25840079033561564,5.006287708018476,5.006287708018476,5.263285641929045,5.263285641929045,5.245675080248233,5.245675080248233,16.546061696132,16.546061696132,21.000326250397237,21.000326250397237,6.025362624562916,5.1500659677823535,6.146219061489461,7.708690147134945,8.695160633264067,7.082724976270853,5.421280930577993,7.317544967108844,8.890163050225595,6.386181260641834,72.78885381711423,72.78885381711423,0.0,80.87650424123804,0.0,72.78885381711423,80.87650424123804,0,0
+2017/05/13 06:00:00,88.81066966221847,0,678.592087812236,0,0,0,0.0,0.0,6.888105148227396,0.0,80.56906512710079,0,0.775935228298727,2.5209010069876903e-09,0.5775641560706852,0,0,0.0,447.904796480699,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.036128745392806826,0.0011430883204154453,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2211235625451585,0.2211235625451585,0.3155436959347907,0.3155436959347907,0.3169683507707821,0.3169683507707821,0.9254506207731954,0.9254506207731954,0.9406850054266369,0.9406850054266369,-0.1476513671033037,-0.00876518856425047,-0.15836291366626928,-0.1186392442295412,0.502642747300385,-0.24865990395611845,-0.07758104573964099,-0.26611142450947123,-0.16768300989753615,0.3576056446854561,6.014325576952231,6.014325576952231,7.06980177253196,7.06980177253196,7.088608581334611,7.088608581334611,23.08818366928432,23.08818366928432,23.689935903769566,23.689935903769566,5.451726606771018,5.001590394486385,5.519720537501158,5.291547905457634,10.28085033434904,6.283378602850135,5.124626131479147,6.470387869528224,5.582771710920582,7.661321416710365,88.81066966221847,88.81066966221847,0.0,98.6785218469094,0.0,88.81066966221847,98.6785218469094,0,0
+2017/05/13 07:00:00,119.09789940274601,0,721.3163167359967,0,0,0,0.5919787720248287,0.0,5.834152620960616,0.0,69.33401494192633,0,39.380909295966944,3.244108391599932e-05,0.5248361283290831,0,0,0.01664486670553554,455.12202802521017,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2441.64748461014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.038403414986829046,0.0012150572807948065,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.15839458987624178,0.15839458987624178,0.23172251403122177,0.23172251403122177,0.21701791668089893,0.21701791668089893,1.1665608087892383,1.1665608087892383,0.7706998509094707,0.7706998509094707,-0.105749745284146,-0.08721131140722906,-0.14608662014631896,-0.004423685763395009,0.3924442047992546,-0.17471997976730474,-0.12725584852142355,-0.22108793733300106,0.01638123999241006,0.293771979468962,5.5199286977470905,5.5199286977470905,6.114119516302495,6.114119516302495,5.976934392748632,5.976934392748632,33.62976569060686,33.62976569060686,17.514765333413976,17.514765333413976,5.231609438013052,5.157497696138975,5.4421940247544995,5.0004050883523234,8.20826583465849,5.632777263736557,5.33546659927336,6.013998091020923,5.005554943123244,6.793080866449117,119.09789940274601,119.09789940274601,0.0,132.33099933638445,0.0,119.09789940274601,132.33099933638445,0,0
+2017/05/13 08:00:00,140.48602643564658,0,754.3582815805611,0,0,0,1.3148739083269594,0.0,11.36563784648343,0.0,87.89947186453183,0,39.380909295966944,2.7343510773833926e-05,0.5251061768266932,0,0,0.012954937219838343,434.9321540304441,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5671.644848583873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04016259366955729,0.0012707164680676323,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.0007996270292777381,0.0007996270292777381,-0.04457961052416607,-0.04457961052416607,0.020311084005193165,0.020311084005193165,1.2001992221945468,1.2001992221945468,0.5204781015121429,0.5204781015121429,-0.025126725834780532,-0.0999190841831476,-0.10640195116709836,0.11048916077644048,0.14656722931664842,-0.06744915661953987,-0.09942356570416282,-0.16070014572252497,0.17043558004209713,0.0684517766925503,5.000013235970172,5.000013235970172,5.041142635351349,5.041142635351349,5.00853994527688,5.00853994527688,35.25718646097539,35.25718646097539,10.665502555750322,10.665502555750322,5.013069679927639,5.206762310787013,5.234476563616241,5.252846334742301,5.445111093278058,5.094193820237848,5.20471574770751,5.53519194162152,5.602085838393236,5.097015574014094,140.48602643564658,140.48602643564658,0.0,156.0955849284962,0.0,140.48602643564658,156.0955849284962,0,0
+2017/05/13 09:00:00,181.51746113840508,0,913.3568457575776,0,0,0,1.5334850762451808,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,6.095586255801132e-06,23.12953658356663,0,0,0.0019760070371943037,540.706168368827,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6687.53087832377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048627794997638134,0.0015385495373560305,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.13098864806653923,0.13098864806653923,-0.09263358110150843,-0.09263358110150843,0.061561420729589214,0.061561420729589214,1.1961850325378398,1.1961850325378398,0.5586639579339338,0.5586639579339338,-0.0707296679440924,-0.042461433785066914,-0.1886307875824972,0.13147125361496056,0.15416692072195307,-0.0745035021661627,-0.04043499529469347,-0.21674861211145427,0.21987299762384463,0.09057357921895533,5.355450837179106,5.355450837179106,5.17769872985285,5.17769872985285,5.0784642601553,5.0784642601553,35.06122293406207,35.06122293406207,11.535355880295498,11.535355880295498,5.103581309408526,5.037325470174181,5.737709970544486,5.358076855523748,5.492516131059631,5.114932316926641,5.033847570404575,5.974506447304492,6.0028615537698045,5.1698803651800915,181.51746113840508,181.51746113840508,0.0,201.68606793156118,0.0,181.51746113840508,201.68606793156118,0,0
+2017/05/13 10:00:00,208.42599526049844,0,1000.5998306116812,0,0,0,1.6250941480728802,0.0,14.932575465546352,0.0,131.64086955684016,0,39.380909295966944,2.856536976132718e-09,20.84654679121548,0,0,0.0,539.2252479486075,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7117.9866414997605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053272676132731116,0.0016855103387211378,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4961436089883766,0.4961436089883766,0.12256076403008319,0.12256076403008319,0.3013441133288951,0.3013441133288951,1.179022708082074,1.179022708082074,0.7998816823204586,0.7998816823204586,0.10440041633597821,-0.07051671447435258,-0.10563831890011109,0.2491222084726719,0.22254038912211088,0.13544199683194852,-0.039961094143910164,-0.11615111418077964,0.34533400087887683,0.18243317818334676,10.144103069883514,10.144103069883514,5.311153177333878,5.311153177333878,6.88704971725565,6.88704971725565,34.228726916845744,34.228726916845744,18.489130958073474,18.489130958073474,5.225733800481294,5.102958383127842,5.231121369375728,6.288167459644612,6.027392925178404,5.380050740163682,5.033058771149086,5.279440101507717,7.480980240390025,5.689961882213993,208.42599526049844,208.42599526049844,0.0,231.5844391783316,0.0,208.42599526049844,231.5844391783316,0,0
+2017/05/13 11:00:00,223.55806502484933,0,1055.3357809124336,0,0,0,9.791651934866389,0.0,14.783782912797726,0.0,136.4899973586286,0,39.380909295966944,2.9092348893939437e-09,23.111723519680332,0,0,0.0,540.7256694805435,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6838.491973495816,10099.510762087855,309.6867202539309,0.0,0.0,43.74086291330728,8017.968201269148,860.6424677433068,0.0,0.0,446.66966273804,6959.378485006887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.056186858670026464,0.0017777130428483672,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8003087961745063,0.8003087961745063,0.35483483863970017,0.35483483863970017,0.5515347497111251,0.5515347497111251,1.1420025487950778,1.1420025487950778,0.9508161319428281,0.9508161319428281,0.33609379469682155,0.1019214217203037,0.1040944253186244,0.3694457702482335,0.3413656807156612,0.3853948695042979,0.14449339734582473,0.12833668864387832,0.45139931169207964,0.33104238956342186,18.503660348769557,18.503660348769557,7.620042319058825,7.620042319058825,11.368159266277317,11.368159266277317,32.46348005381199,32.46348005381199,24.095213460662237,24.095213460662237,7.349413516624935,5.215136066815077,5.224411881683324,7.841397538610508,7.424032893280199,8.093415536923843,5.4325926976384835,5.341193484187826,9.252114329587087,7.279021961834758,223.55806502484933,223.55806502484933,0.0,248.39785002761036,0.0,223.55806502484933,248.39785002761036,0,0
+2017/05/13 12:00:00,224.6955100156741,0,1019.8461945749644,0,0,0,22.628045200295215,0.0,14.783782912797726,0.0,124.80122689546741,0,39.380909295966944,2.9092348893939437e-09,23.101545708237573,0,0,0.0,540.7264356556188,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1885.7634898523313,0.0,0.0,6011.042421780569,20289.28607965132,2876.151294389826,342.66656998176455,877.4039752120593,1082.7411527475047,18988.116576546672,3807.6654708680094,584.0215860151307,1232.1904903186612,1679.5119683536589,18135.666401633764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0542973668060464,0.001717930837356514,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.92863220892825,0.92863220892825,0.5335225638788621,0.5335225638788621,0.7177397140414226,0.7177397140414226,1.0923997450001808,1.0923997450001808,0.9694479497143912,0.9694479497143912,0.4161442322540334,0.24656347948526247,0.23251641371808884,0.3820954792682068,0.37376444781250323,0.4763824034501414,0.2906852076055871,0.26488182146564565,0.44891335382424885,0.3739428581396242,23.213090212939562,23.213090212939562,10.955545113466357,10.955545113466357,15.839351358124148,15.839351358124148,30.167452670137834,30.167452670137834,24.851081053130173,24.851081053130173,8.609980752638393,6.261775170540105,6.121784112606775,8.040389957346648,7.908567194558316,9.739515142802006,6.755469675964022,6.456791829911609,9.205085208196707,7.911359170160722,224.6955100156741,224.6955100156741,0.0,249.66167779519344,0.0,224.6955100156741,249.66167779519344,0,0
+2017/05/13 13:00:00,230.45539497044635,0,962.7156596564386,0,0,0,32.969521914162975,0.0,14.728125842506467,0.0,122.5097643007467,0,39.380909295966944,2.856536976132718e-09,20.867073614206657,0,0,0.0,519.0862532496369,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3814.038546470632,140.82363688564308,869.7258457525595,6021.0047687863025,26010.83888264746,5191.007346109183,1611.8037646350224,2260.129369971877,2219.341780107962,26281.91450250888,6376.611969888186,2133.217665228359,2751.350819781508,2897.682071811966,25999.332925696686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051255694810015996,0.001621694455622391,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9745800327395897,0.9745800327395897,0.7611854082490201,0.7611854082490201,0.824996631970792,0.824996631970792,1.0949274208198554,1.0949274208198554,0.9822743182120883,0.9822743182120883,0.4609530132083881,0.3597527614434166,0.29926894546927835,0.41667118464991115,0.391192793125647,0.5273015513367713,0.4203756578467387,0.34513903499873794,0.48274675078826906,0.3970765067977146,25.061660945155182,25.061660945155182,17.204920260616277,17.204920260616277,19.356566376656943,19.356566376656943,30.282456560683272,30.282456560683272,25.3792826610145,25.3792826610145,9.435325211044926,7.693533623808889,6.861056171438889,8.61918593754065,8.187722364934103,10.816302538780945,8.68423433654057,7.478166750977351,9.867977968795444,8.28489339268502,230.45539497044635,230.45539497044635,0.0,256.0615499671626,0.0,230.45539497044635,256.0615499671626,0,0
+2017/05/13 14:00:00,210.4452544507098,0,925.0802935648143,0,0,0,28.969596126455126,0.0,14.728125842506467,0.0,108.75639138185811,0,39.380909295966944,2.8029284773204967e-09,18.610231801120204,0,0,0.0,516.9412396705568,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3292.273656899048,914.5990503786285,847.6207913503165,5512.299189730354,23995.94104968859,4314.923333325417,2126.0580731355994,1492.553127426522,1723.5018660644105,21553.013806920564,5499.257957059658,2845.0793586363598,2185.587641375015,2393.3358464431276,21434.80383030373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04925196004253136,0.0015582976842975261,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9596996599765589,0.9596996599765589,0.9248887597584974,0.9248887597584974,0.846669439353571,0.846669439353571,1.074791236012822,1.074791236012822,0.9797218833145362,0.9797218833145362,0.45399610735471646,0.43292501599108435,0.31268977744685855,0.4128723907451368,0.39142123391220285,0.5128102637261265,0.5028313973725741,0.35801374334658054,0.47306598587142995,0.39817624638775845,24.453911304435096,24.453911304435096,23.066167559991428,23.066167559991428,20.126405776376572,20.126405776376572,29.37243618707909,29.37243618707909,25.27366436626835,25.27366436626835,9.301524191118816,8.908968529094551,7.0323858933235925,8.553092196613406,8.191467508737546,10.498445609551354,10.284846948008976,7.66742882635954,9.673266379759639,8.303220071894941,210.4452544507098,210.4452544507098,0.0,233.82806050078867,0.0,210.4452544507098,233.82806050078867,0,0
+2017/05/13 15:00:00,214.9221699362601,0,925.0937301167388,0,0,0,35.8408451887217,0.0,14.78378283874635,0.0,106.31215624428707,0,39.380909295966944,2.8029284773204967e-09,18.60447636573508,0,0,0.0,516.9546762224815,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3473.12736525523,3022.0003534946723,1965.0704567567145,5422.568238567121,28782.68556851911,4663.366332252037,3610.6528531124027,2465.3049156011284,2427.156436696572,25756.88818076325,5617.073707206734,4457.1954042070265,3094.293023028102,3034.050449623312,25656.604815026196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04925267541450836,0.001558320318168223,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9146526286389279,0.9146526286389279,0.9985115562629903,0.9985115562629903,0.8488062270928847,0.8488062270928847,1.064185198037353,1.064185198037353,0.9792303452169646,0.9792303452169646,0.4188676166689208,0.4743143237895238,0.3075672586145203,0.3996358671561334,0.3829508764964715,0.4675395688201284,0.5493428256274924,0.350873257156188,0.45399333026518335,0.38809981999772375,22.6672905692013,22.6672905692013,26.057019867228348,26.057019867228348,20.203368587290797,20.203368587290797,28.89882027776467,28.89882027776467,25.253353637583587,25.253353637583587,8.65768300472331,9.698147522482344,6.966092796957028,8.327623909698474,8.054092691122932,9.56392400743735,11.317196392694413,7.561590679615605,9.301471195774312,8.137234512275,214.9221699362601,214.9221699362601,0.0,238.802411040289,0.0,214.9221699362601,238.802411040289,0,0
+2017/05/13 16:00:00,230.14018876692438,0,954.8887199106432,0,0,0,39.48261152604923,0.0,14.78378283874635,0.0,120.17895923267236,0,39.380909295966944,2.7484001464772406e-09,16.31392587074108,0,0,0.0,493.5141372475695,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3817.5103330169923,4368.227403087498,2982.0042535402845,5797.062302300238,33753.947737927876,4625.630882565986,4453.848069646393,2868.1157719282696,2597.538456818513,27256.40581459002,5492.992496180127,5419.371382726841,3540.4561228384687,3189.7452485664626,27099.828866862725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05083898274048341,0.0016085099762146538,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9276035183608052,0.9276035183608052,1.0676405348480145,1.0676405348480145,0.8911765916673915,0.8911765916673915,1.0813231214859453,1.0813231214859453,1.0112267144142038,1.0112267144142038,0.41791458055833397,0.5251712379381314,0.329249471308646,0.41239338674884796,0.3897546465320821,0.46241078293867655,0.6036322166168956,0.37352242491412424,0.464394191773653,0.3943579130481262,23.172660366245623,23.172660366245623,29.05268230358641,29.05268230358641,21.768474689240193,21.768474689240193,29.66608930295098,29.66608930295098,26.59474318892333,26.59474318892333,8.640953652758881,10.76900568769635,7.254297961186111,8.54480209423022,8.164196067448245,9.463626324125201,12.640779207388178,7.904781904282885,9.502279163919141,8.239811182113854,230.14018876692438,230.14018876692438,0.0,255.7113208521382,0.0,230.14018876692438,255.7113208521382,0,0
+2017/05/13 17:00:00,242.46205088755,0,978.3075117118703,0,0,0,29.48757534450098,0.0,16.630907673226492,0.0,138.40412594678773,0,39.380909295966944,2.802928477320497e-09,18.558532624264856,0,0,0.0,516.9329290487965,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2078.8924478119607,3950.639385704266,2412.5274110335577,5486.647012231626,30137.687471427576,2408.8132730085767,3680.538716506209,1486.1731736135187,1066.0763517322168,19772.514439535884,3233.368595915241,4742.227634802847,2270.227949195167,1606.395615895339,19267.863803545002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052085816562435945,0.0016479589292263644,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9482158266265308,0.9482158266265308,1.1181295483003104,1.1181295483003104,0.9456797216570177,0.9456797216570177,1.074535577227655,1.074535577227655,1.0456421808148442,1.0456421808148442,0.43215565349696533,0.5700756457154014,0.3720914780666792,0.4289420626782569,0.41926771290618725,0.4676366301616653,0.6387108958877962,0.4128852862198611,0.47180407042269795,0.4218900135775967,23.990806057729174,23.990806057729174,31.34823854120765,31.34823854120765,23.88923347460141,23.88923347460141,29.360972977670585,29.360972977670585,28.080418521186687,28.080418521186687,8.894996278618322,11.80757428306049,7.882452636251273,8.836909605310254,8.664717797053527,9.56583304924959,13.564020189460194,8.553315513949556,9.648182900577169,8.710994978615972,242.46205088755,242.46205088755,0.0,269.4022787639444,0.0,242.46205088755,269.4022787639444,0,0
+2017/05/13 18:00:00,239.41705000639337,0,987.1994549274789,0,0,0,37.09853088850704,0.0,17.250223901202155,0.0,120.14191543460078,0,39.380909295966944,2.9610314635842132e-09,25.54547048315536,0,0,0.0,561.3152247769494,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1497.1609445001973,2142.9635531363724,2221.69590637155,5360.027085349523,29987.970395635934,3599.206218866379,3744.2486413019265,3038.5059657614943,1704.7337138260427,31666.168174569975,4283.82042394133,4575.469093446084,3779.18908263639,2148.3623495624493,30936.585373294234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05255923020555658,0.0016629374068981703,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9521231671378848,0.9521231671378848,1.038951097952056,1.038951097952056,0.9564211660234029,0.9564211660234029,1.0639798214290328,1.0639798214290328,1.060164739820266,1.060164739820266,0.4478971829236152,0.5409357347971009,0.39970927179140914,0.44566572876743404,0.4601920903961416,0.4764450889312395,0.5909709894482262,0.4352974886486056,0.4813086735475734,0.46165988436168254,24.147794138118044,24.147794138118044,27.788157532805897,27.788157532805897,24.321171978873593,24.321171978873593,28.889688458562887,28.889688458562887,28.72032879216188,28.72032879216188,9.185937917767049,11.123660075734804,8.328853590804584,9.144047371132629,9.420589021402748,9.740771914975326,12.32066227559335,8.952214610736092,9.83879791776451,9.449036964491526,239.41705000639337,239.41705000639337,0.0,266.0189444515482,0.0,239.41705000639337,266.0189444515482,0,0
+2017/05/13 19:00:00,228.41734782340612,0,949.332352719327,0,0,0,32.824787345526225,0.0,19.878374054781197,0.0,110.89738010901058,0,39.380909295966944,2.9610314635842132e-09,25.43589701516006,0,0,0.0,558.9384750813416,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,677.5453401395231,4963.94297839204,23633.591517591038,2912.5533147261663,2541.3628984474376,2532.4282297515424,1045.9741581295877,32850.6756484406,3484.5506613049843,3093.9028098313597,3183.448688739167,1376.529831992841,31871.462921665796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05054315763557951,0.0015991502761026027,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9444457188939271,0.9444457188939271,0.9640694808725351,0.9640694808725351,0.9424282831285646,0.9424282831285646,1.0493610943721916,1.0493610943721916,1.0623238148637693,1.0623238148637693,0.45632913860332636,0.5154510432319862,0.40438266137418855,0.4525844020655241,0.48663347987452077,0.4792730514214827,0.5472548567155828,0.4321938102950953,0.48148814308135784,0.48659322912433,23.83990283078512,23.83990283078512,24.63149024164342,24.63149024164342,23.75938336635194,23.75938336635194,28.24356110375186,28.24356110375186,28.81611102703775,28.81611102703775,9.34616281180368,10.555692341042473,8.407617243453217,9.274627339550435,9.947290197461527,9.797645607199428,11.268844180735982,8.895688638213286,9.84243466438339,9.946465503446007,228.41734782340612,228.41734782340612,0.0,253.7970531371179,0.0,228.41734782340612,253.7970531371179,0,0
+2017/05/13 20:00:00,212.69878064670735,0,898.1004777450702,0,0,0,16.395010557670496,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,2.9092348893939437e-09,23.104110105670557,0,0,0.0,543.1969526196287,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4151.593385044462,13495.504343548955,0.0,227.071240957104,0.0,0.0,18589.957881272152,305.24212195732025,657.1081380604226,367.68096107223204,0.0,17055.666642669297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04781553466415874,0.0015128501865969005,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.832961630682313,0.832961630682313,0.8246699131544889,0.8246699131544889,0.8576626681789794,0.8576626681789794,1.0291835960974685,1.0291835960974685,1.0529057685236909,1.0529057685236909,0.44418970706060806,0.49554533700073455,0.38917881998825454,0.3883474090345045,0.48745822545347206,0.4675582349862128,0.5184149905315801,0.42272742058242846,0.42560485851422225,0.4834626493446909,19.63720729613432,19.63720729613432,19.345111490352025,19.345111490352025,20.52438358870093,20.52438358870093,27.364462768992425,27.364462768992425,28.399525660533442,28.399525660533442,9.116456023377168,10.131606657217262,8.154801037270133,8.141260957210733,9.96420373255252,9.564291109631455,10.620304016235906,8.725835283876108,8.777057736529997,9.882537547009562,212.69878064670735,212.69878064670735,0.0,236.3319784963415,0.0,212.69878064670735,236.3319784963415,0,0
+2017/05/13 21:00:00,198.44947967334568,0,861.581058899196,0,0,0,6.62810977327167,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,2.9610314635842132e-09,25.611826445596954,0,0,0.0,542.1678862862989,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3520.2483142546544,3437.5257244133445,0.0,0.0,0.0,0.0,8364.289050331907,0.0,0.0,0.0,0.0,6709.546943635434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045871213754627396,0.0014513332283228023,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7014855070946796,0.7014855070946796,0.6681136569841958,0.6681136569841958,0.7413364198014202,0.7413364198014202,1.011456370413201,1.011456370413201,1.0320249347753687,1.0320249347753687,0.34634413683838844,0.39745452087944655,0.29368621729794875,0.27712200620007915,0.48132314385304353,0.373645153247872,0.4307271685811301,0.33942836011779726,0.30352408683641824,0.4752236149405425,15.349320721973882,15.349320721973882,14.378990397146552,14.378990397146552,16.570985111630534,16.570985111630534,26.604511354147817,26.604511354147817,27.487352608923814,27.487352608923814,7.495583058086822,8.291186997575522,6.792030449800308,6.594973512077445,9.839091090593513,7.906701089640094,8.869121226454823,7.396474457351914,6.914552173694986,9.716313277993876,198.44947967334568,198.44947967334568,0.0,220.49942185927296,0.0,198.44947967334568,220.49942185927296,0,0
+2017/05/13 22:00:00,141.58470840784136,0,676.649005056889,0,0,0,4.973017907798251,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,2.8029284773204967e-09,18.604314095269082,0,0,0.0,516.9424187504404,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2149.986362145195,0.0,0.0,0.0,0.0,0.0,8011.693403530278,0.0,0.0,0.0,0.0,6233.098369206139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03602529422765781,0.001139815197661541,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5504392634375341,0.5504392634375341,0.5168577878877259,0.5168577878877259,0.5840567983927857,0.5840567983927857,0.9526559843452599,0.9526559843452599,0.8886171662384746,0.8886171662384746,0.3052442617337615,0.35282492335334614,0.2516648828027279,0.2379759674495243,0.44673185631627116,0.3212719318539424,0.3753113846304502,0.2875788830679688,0.24992879018587733,0.4375672143013254,11.342662858151016,11.342662858151016,10.586310859702166,10.586310859702166,12.14878606784653,12.14878606784653,24.169248120866257,24.169248120866257,21.67183823122825,21.67183823122825,6.936395703637174,7.590303331497282,6.314666757548622,6.175208992300824,9.16403481219848,7.145942193583068,7.932820640304826,6.7180264573401445,6.296544077568527,8.993814064488532,141.58470840784136,141.58470840784136,0.0,157.31634267537927,0.0,141.58470840784136,157.31634267537927,0,0
+2017/05/13 23:00:00,89.78890325338456,0,543.8094910783082,0,0,0,0.20528796881424033,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.69294273712291e-09,14.072634223039117,0,0,0.0,490.57396230949206,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,800.2245919921879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02895282010832457,0.0009160470464469698,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3557272296358028,0.3557272296358028,0.3265459246644046,0.3265459246644046,0.38168091972803997,0.38168091972803997,0.8863820635756814,0.8863820635756814,0.6674864368443667,0.6674864368443667,0.19194148979488895,0.24064812332965405,0.13028972164904545,0.13051264540462795,0.3918350747441057,0.19969154334165887,0.25387862149911955,0.15823829043776033,0.13404818065054547,0.36297067433244184,7.633301367884982,7.633301367884982,7.217274426606636,7.217274426606636,8.033760305986576,8.033760305986576,21.587666241974972,21.587666241974972,14.361214420953104,14.361214420953104,5.763874043452859,6.201813652111525,5.351664916176361,5.3528702356119595,8.198257850613174,5.826913186246998,6.3379592957929844,5.518901981671888,5.372262734327677,7.742178070315646,89.78890325338456,89.78890325338456,0.0,99.76544805931617,0.0,89.78890325338456,99.76544805931617,0,0
+2017/05/14 00:00:00,44.65139235942185,0,518.2776134410126,0,0,0,0.6450928706740789,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,1.0488140318695822,2.6365470027774647e-09,11.771851389441585,0,0,0.0,465.0420846721965,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,376.66915573578706,1772.7396044378283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027593484031282974,0.000873038600504782,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5123048350160746,0.5123048350160746,0.5108473735201385,0.5108473735201385,0.5050328559816094,0.5050328559816094,0.8655976852075067,0.8655976852075067,0.7745730165065124,0.7745730165065124,0.31812087965824476,0.3991992246477333,0.20875312617278322,0.2756136860338046,0.5537341969730311,0.31939382594973326,0.40893468524922183,0.23121748171775816,0.2769567046317366,0.49787595712591914,10.487523333622775,10.487523333622775,10.456089566578015,10.456089566578015,10.331599282945433,10.331599282945433,20.814762509313198,20.814762509313198,17.642003955758156,17.642003955758156,7.103885980434782,8.320313998585377,5.903805972008399,6.577604727518278,11.41950640440902,7.120824984351913,8.48523420486734,6.109257511951128,6.593065332111962,10.1803747168873,44.65139235942185,44.65139235942185,0.0,49.61265817713539,0.0,44.65139235942185,49.61265817713539,0,0
+2017/05/14 01:00:00,23.774742782907442,0,50.70827946544216,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5776473592296509,0,0,0.0,15.217926952898022,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0026997463587007955,8.541809291084417e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.48301808301227867,0.48301808301227867,0.49225499851057636,0.49225499851057636,0.4666191808143478,0.4666191808143478,0.8335076539486931,0.8335076539486931,0.8590103195456792,0.8590103195456792,0.2738656811736717,0.36550696334344734,0.15262540028754992,0.24013894211240808,0.5914358344757208,0.2919359755728608,0.3951722246746324,0.18111745026262646,0.26073862109547014,0.5150644808826575,9.87349358210976,9.87349358210976,10.06315599526819,10.06315599526819,9.545841618064145,9.545841618064145,19.65654338476655,19.65654338476655,20.573516594083642,20.573516594083642,6.557595877941651,7.7808293953666805,5.482706030024858,6.196720992716479,12.332292040280919,6.7706613298641685,8.253281688875617,5.680031566018741,6.41144799065512,10.547293608141942,23.774742782907442,23.774742782907442,0.0,26.416380869897157,0.0,23.774742782907442,26.416380869897157,0,0
+2017/05/14 02:00:00,28.344169830287537,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.524806743814643,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4869798907015962,0.4869798907015962,0.49823333443506784,0.49823333443506784,0.46306009748051963,0.46306009748051963,0.8114039607541749,0.8114039607541749,0.9280700436550104,0.9280700436550104,0.25970162247962003,0.3543632796790216,0.13012871507198817,0.22779400728136096,0.6056671197638237,0.27184490597628314,0.38144062156143166,0.15326003229252097,0.24523343848465312,0.5111045731110215,9.954390668634375,9.954390668634375,10.187873561726903,10.187873561726903,9.476261565505126,9.476261565505126,18.88379300424164,18.88379300424164,23.1909906137047,23.1909906137047,6.400211968355848,7.613049632815176,5.350795660107465,6.076581411225632,12.69287712512785,6.534625212356531,8.02992080793588,5.48673278555016,6.248164993104496,10.461630037358432,28.344169830287537,28.344169830287537,0.0,31.49352203365282,0.0,28.344169830287537,31.49352203365282,0,0
+2017/05/14 03:00:00,23.721994518980303,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248990953025128,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4809599161462162,0.4809599161462162,0.49349952258946084,0.49349952258946084,0.4522929861635179,0.4522929861635179,0.7711859821339089,0.7711859821339089,0.9306332182326879,0.9306332182326879,0.25854173538661107,0.35415373966532526,0.12427278872955606,0.22813686785342116,0.6171626795836471,0.2647925718281511,0.376616577991493,0.14244259367598697,0.24108682200969228,0.5144451540914343,9.83173471844951,9.83173471844951,10.088991510501302,10.088991510501302,9.2690857465022,9.2690857465022,17.530700294054498,17.530700294054498,23.291855500254613,23.291855500254613,6.387698047174538,7.609945427892882,5.319912718303897,6.0798317685083845,12.990563560580199,6.455807451726727,7.953363344361165,5.420389367186601,6.206210100120032,10.533851141305945,23.721994518980303,23.721994518980303,0.0,26.357771687755893,0.0,23.721994518980303,26.357771687755893,0,0
+2017/05/14 04:00:00,42.754273587088555,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,5.165349563653519,0.0,0.5250256113719509,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5336280740565953,0.5336280740565953,0.5453066192334303,0.5453066192334303,0.5041898959431652,0.5041898959431652,0.806219811854861,0.806219811854861,0.8710229917217336,0.8710229917217336,0.2589127839357832,0.31893779149521845,0.12457039959018097,0.22862418269174264,0.4193183524151103,0.2645330119577468,0.32045167591884266,0.14101910687246708,0.24104392864947935,0.38363346648806235,10.957921161104096,10.957921161104096,11.223898210757426,11.223898210757426,10.31367260726455,10.31367260726455,18.705531118049677,18.705531118049677,21.014797484863223,21.014797484863223,6.3916950996285635,7.114748674353976,5.3214478692504485,6.084460052062397,8.665608668221324,6.452946544191178,7.134953957016251,5.412021814709718,6.205779884970525,8.065049612834898,42.754273587088555,42.754273587088555,0.0,47.504748430098395,0.0,42.754273587088555,47.504748430098395,0,0
+2017/05/14 05:00:00,82.14671227077244,0,212.9421150752648,0,0,0,0.16279773797402997,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,9.594781683980397,0.0,0.5251256596182536,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,577.9523619628817,0.0,0.0,0.0,0.0,0.0,0.0,54.03858996873629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7425066809369526,0.7425066809369526,0.7500051847416227,0.7500051847416227,0.7139463630023679,0.7139463630023679,0.9015636886203424,0.9015636886203424,0.8867852622354784,0.8867852622354784,0.2842338988909522,0.3160860620872599,0.1515612349779068,0.2535234114997641,0.3749763156485077,0.2855044375537677,0.3118917545552487,0.17274348028860184,0.2710432614124345,0.35480021541239287,16.607892511154176,16.607892511154176,16.84577201476752,16.84577201476752,15.723970832605232,15.723970832605232,22.163402172448016,22.163402172448016,21.602835242229176,21.602835242229176,6.678161959891142,7.076951390591503,5.475991524397259,6.334207963427971,7.927558644733097,6.693248229336604,7.021985234140288,5.618523397634306,6.525560388523147,7.619528573855945,82.14671227077244,82.14671227077244,0.0,91.27412474530271,0.0,82.14671227077244,91.27412474530271,0,0
+2017/05/14 06:00:00,100.85254213864756,0,678.1774238072866,0,0,0,0.34877084618129894,0.0,7.888613612611623,0.0,80.56906512710079,0,11.520904453815573,2.520924131346744e-09,0.5251880964173934,0,0,0.0,447.49013247574965,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215.72783013652224,155.93997387064385,53.432983141606016,933.9334159091661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03610666837403893,0.0011423898189305806,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8781568359820731,0.8781568359820731,0.8806236578910082,0.8806236578910082,0.861353676359028,0.861353676359028,0.9484603771830176,0.9484603771830176,0.893186758366678,0.893186758366678,0.3059867859673818,0.3286566259339474,0.21030728215624553,0.29578967155729174,0.3816076400185515,0.30348771952949477,0.32414356560310087,0.2441964716386789,0.2982712855378133,0.3639580803990443,21.27967340509076,21.27967340509076,21.37175203135932,21.37175203135932,20.659130442156737,20.659130442156737,24.00061388545953,24.00061388545953,21.844560227641963,21.844560227641963,6.945863276500617,7.246152740694484,5.917339094086913,6.817883252060099,8.032589177285331,6.914091716794488,7.1846356001363745,6.237605377785002,6.84862428677242,7.7571928912858255,100.85254213864756,100.85254213864756,0.0,112.05838015405284,0.0,100.85254213864756,112.05838015405284,0,0
+2017/05/14 07:00:00,116.20570208706113,0,716.2506594512026,0,0,0,0.28045808502761915,0.0,6.632714226804623,0.0,69.33401494192633,0,39.380909295966944,2.5209267004349312e-09,0.5776055348146999,0,0,0.0,450.07301560712165,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1107.4903109534264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.038133715640820486,0.0012065241814830476,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3691492018961584,0.3691492018961584,0.2968726852304602,0.2968726852304602,0.44457493965040057,0.44457493965040057,0.9360659730988184,0.9360659730988184,0.729803923950489,0.729803923950489,0.07261383991213946,0.11344029572284046,0.06088957325984181,-0.007705843212348657,0.3865028429270677,0.06525997849189327,0.10793815700960963,0.11679746126617102,-0.016197770548115383,0.351179313326624,7.836814103508104,7.836814103508104,6.831267094788345,6.831267094788345,9.123648162490852,9.123648162490852,23.50650935793155,23.50650935793155,16.210420709565042,16.210420709565042,5.109174749220671,5.266541425274383,5.07676069153915,5.0012291993751745,8.111326413870913,5.088177458512632,5.241299593825147,5.282560640738538,5.005431208048776,7.566082624610431,116.20570208706113,116.20570208706113,0.0,129.11744676340126,0.0,116.20570208706113,129.11744676340126,0,0
+2017/05/14 08:00:00,146.9304892400042,0,758.7066472745909,0,0,0,0.45428640182712365,0.0,9.653335424497218,0.0,96.91714705112861,0,39.380909295966944,2.520926700751956e-09,0.5248110640633831,0,0,0.0,439.29347466169366,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1817.0114248251243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0403941038799709,0.0012780412897491903,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.373409940734149,0.373409940734149,0.29610746891784023,0.29610746891784023,0.4516091194511328,0.4516091194511328,0.9652772538507232,0.9652772538507232,0.7666079518314217,0.7666079518314217,0.11107637916643873,0.13186001271579895,0.08110456977527511,0.03557224627631304,0.41795557247244847,0.09356606275412496,0.11252672427310642,0.10902466779464125,0.011413746843040964,0.3834167092030022,7.903023477855498,7.903023477855498,6.8218054417407785,6.8218054417407785,9.256095618889148,9.256095618889148,24.680702764802973,24.680702764802973,17.38103594346933,17.38103594346933,5.255542561114694,5.3601992680991515,5.136206970608924,5.026195584177856,8.641672412930646,5.181295689713963,5.262263227517124,5.246184481687337,5.002696744791223,8.06156807320022,146.9304892400042,146.9304892400042,0.0,163.2560991555602,0.0,146.9304892400042,163.2560991555602,0,0
+2017/05/14 09:00:00,146.93864418114157,0,829.2566478212366,0,0,0,0.632521200589216,0.0,9.332689672910613,0.0,97.06762091869685,0,39.380909295966944,2.5209267007519958e-09,0.5249030904570444,0,0,0.0,456.60794643952306,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2565.0381790122874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044150238165930056,0.0013968827603153607,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.46917102808670696,0.46917102808670696,0.38340349244741456,0.38340349244741456,0.5419089843194045,0.5419089843194045,0.9964827786482865,0.9964827786482865,0.8620898374004635,0.8620898374004635,0.11314976737153935,0.12610372889130914,0.07205586193763239,0.04592343270180514,0.3743790729708642,0.10124665019446472,0.11009619943564768,0.09686127452698051,0.028039879945722365,0.34281183136076204,9.596066145747784,9.596066145747784,8.061355851534955,8.061355851534955,11.145908107073978,11.145908107073978,25.971789180228555,25.971789180228555,20.68607279904316,20.68607279904316,5.265177139536689,5.329415518260774,5.107502970835569,5.0436606926139405,7.918191293104783,5.212295585017202,5.251050043036955,5.194295722774783,5.01627602952685,7.444708365910955,146.93864418114157,146.93864418114157,0.0,163.2651602012684,0.0,146.93864418114157,163.2651602012684,0,0
+2017/05/14 10:00:00,206.82215963581442,0,1001.9883590665848,0,0,0,6.498254898040385,0.0,12.935301236479537,0.0,124.87761316689259,0,39.380909295966944,2.909259806155293e-09,23.130081035525652,0,0,0.0,540.6137764035111,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4786.948374144205,10837.935620531938,0.0,0.0,0.0,0.0,4018.1030478955668,0.0,0.0,0.0,0.0,2440.4867945796436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05334660241616247,0.001687849314798036,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7886331270174195,0.7886331270174195,0.6099079508552887,0.6099079508552887,0.7872544364332157,0.7872544364332157,1.1020208992232778,1.1020208992232778,0.9981790949046756,0.9981790949046756,0.3074299169288986,0.26290556866179665,0.21699412738001267,0.2543297488003152,0.43122039267510726,0.325647518238124,0.2638424568348297,0.2591899464871565,0.2673272537965203,0.4221178978465493,18.109263733800887,18.109263733800887,12.802029111490171,12.802029111490171,18.063074099830217,18.063074099830217,30.606361683884913,30.606361683884913,26.043042165077836,26.043042165077836,6.964330676207169,6.435073269599329,5.976719795312661,6.342731248770619,8.87804540470188,7.205039887833038,6.4453489550648015,6.394684562228434,6.483894213151032,8.715030504586565,206.82215963581442,206.82215963581442,0.0,229.80239959534936,0.0,206.82215963581442,229.80239959534936,0,0
+2017/05/14 11:00:00,239.09206191367167,0,1053.0300650137178,0,0,0,20.425977718820217,0.0,12.935301236479537,0.0,143.25325374857618,0,39.380909295966944,2.9092598061552915e-09,23.096619910919486,0,0,0.0,538.4199535818279,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1721.234221333471,0.0,1032.5396061202837,5918.639499983653,25482.491969636052,1324.2214084623924,73.96478754139565,140.48963880612985,111.5409908698295,16098.590818204651,1879.3480829756677,199.6958222936342,715.0007784185159,305.6094308405755,14819.981118093041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05606410064771969,0.001773829064591981,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9927549057862605,0.9927549057862605,0.7971964639734059,0.7971964639734059,0.9382715684585109,0.9382715684585109,1.1170890018667634,1.1170890018667634,1.06374508806432,1.06374508806432,0.445538891047161,0.391184671015748,0.3536989215952715,0.3951808526989004,0.46522622266960934,0.47613176082015113,0.4046382115602571,0.3911009078005583,0.4200334909608278,0.4660517810788586,25.815586421619216,25.815586421619216,18.397963124624,18.397963124624,23.59399009804099,23.59399009804099,31.300054284035667,31.300054284035667,28.879253165168407,28.879253165168407,9.141672708504387,8.187589249082578,7.603214009941539,8.253424567186244,9.518544305092533,9.734491738200902,8.411951149190756,8.186216591486868,8.678201421612314,9.534712393608572,239.09206191367167,239.09206191367167,0.0,265.6578465707463,0.0,239.09206191367167,265.6578465707463,0,0
+2017/05/14 12:00:00,244.13360107121892,0,977.5166244037861,0,0,0,48.40793368610443,0.0,12.935301236479537,0.0,124.80122689546741,0,39.380909295966944,2.802952973267942e-09,18.608229954397565,0,0,0.0,498.39686548444024,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6512.799544432522,1522.369841409226,3879.2245539970063,6058.451398622072,39976.784609479684,6892.686962187779,3021.6047200262688,4126.751987491171,2858.5840424913567,38974.493987693255,7766.599193214994,3276.004158139225,4840.411446846974,3191.8408483188473,38782.74441825833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052043709136338046,0.001646626679615924,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0961010170010446,1.0961010170010446,0.9063909044624577,0.9063909044624577,0.9833289967556269,0.9833289967556269,1.0936276525422768,1.0936276525422768,1.0749120469582838,1.0749120469582838,0.5290857457407233,0.45139603065389194,0.4130170868766092,0.4432520610523428,0.4859866856825584,0.5692374303755846,0.47426902731452225,0.4523853809731252,0.47203349768632297,0.49291455593863626,30.33592716082461,30.33592716082461,22.348429871688865,22.348429871688865,25.422997896020163,25.422997896020163,30.223292471741658,30.223292471741658,29.37785389824046,29.37785389824046,10.85606610119251,9.252052084001477,8.555598379893567,9.09897720751836,9.934046555732365,11.78738699174093,9.697243524841298,9.270842339565746,9.652738190633613,10.076839650033335,244.13360107121892,244.13360107121892,0.0,271.2595567457988,0.0,244.13360107121892,271.2595567457988,0,0
+2017/05/14 13:00:00,260.71262331430785,0,960.3756813475692,0,0,0,64.98131185547162,0.0,12.968094553189474,0.0,124.7641830973959,0,39.380909295966944,2.8029529732679424e-09,18.61812450948087,0,0,0.0,516.7462749407678,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9286.03916868217,3606.1206466721496,5930.526808098299,6211.3092673551055,48707.723964194534,10192.178140610516,5378.244037110591,6654.688838785315,4782.836300451763,50956.369682194054,11167.841054326716,5767.761622866881,7443.053586607248,5206.987929508885,51493.38989009351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05113111263161426,0.001617752762338702,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1150601909025164,1.1150601909025164,1.0033023914504482,1.0033023914504482,1.0088055284909367,1.0088055284909367,1.0932871871968577,1.0932871871968577,1.0847151789660927,1.0847151789660927,0.5631579813728913,0.5124157009047503,0.4482802524909212,0.4796827771390566,0.5025719941518296,0.6055979796094807,0.5426252912759715,0.4881533057507253,0.5102980396071173,0.5118726050936884,31.206210328542852,31.206210328542852,26.258906823932918,26.258906823932918,26.491881295382868,26.491881295382868,30.207804425763086,30.207804425763086,29.819173053247297,29.819173053247297,11.64188372890419,10.489918191054372,9.193150724835476,9.80591428829527,10.279351802306877,12.691104038364202,11.162308770401268,9.978480947121739,10.444265657845378,10.478191642301127,260.71262331430785,260.71262331430785,0.0,289.68069257145316,0.0,260.71262331430785,289.68069257145316,0,0
+2017/05/14 14:00:00,244.7907047867737,0,898.4508884998232,0,0,0,64.01529193538457,0.0,12.88660173648153,0.0,111.01081017850728,0,39.380909295966944,2.692966741270077e-09,14.065116435286138,0,0,0.0,490.3118346055658,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9644.75719741261,5599.8752841123105,6899.937940729034,6239.158642715449,50522.1376838313,9464.560887976051,6171.15388012142,6347.105530715335,4766.064596006234,45092.25812273231,10344.554878675659,6697.943627200885,7151.312734775241,5192.639328060913,45958.52579218443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04783419079229337,0.0015134404534866861,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1014377441834398,1.1014377441834398,1.0994883065535148,1.0994883065535148,1.0220002050745194,1.0220002050745194,1.098199084642549,1.098199084642549,1.077780266694142,1.077780266694142,0.5604288640447108,0.5722988585175125,0.4636998364388259,0.4951067508465946,0.49374099957338974,0.6000514934942248,0.616059264234488,0.5033759591789041,0.5274160149298199,0.5032576267434569,30.579668779416423,30.579668779416423,30.49052058461976,30.49052058461976,27.055107397243816,27.055107397243816,30.431635278757184,30.431635278757184,29.506628316577633,29.506628316577633,11.577087371183069,11.861265006797666,9.488728231705366,10.122455505772479,10.094012165074545,12.549541316129464,12.961740938873575,10.296392297039787,10.818849401573232,10.293882420641893,244.7907047867737,244.7907047867737,0.0,271.9896719853041,0.0,244.7907047867737,271.9896719853041,0,0
+2017/05/14 15:00:00,243.809958149193,0,898.4778060083239,0,0,0,65.25482155013616,0.0,12.935301171685163,0.0,108.75639138185811,0,39.380909295966944,2.692966741270077e-09,14.050559544399407,0,0,0.0,490.33875211406644,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9674.13373534813,8111.046842575285,7904.39885809191,6246.81083430621,55196.02631687552,8491.633957295615,7126.286194981041,6105.304252742507,4783.820372272184,42181.23056761892,9132.419747140442,7729.694259389061,6797.861126032576,5148.560367211311,43219.29428880622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04783562390038393,0.0015134857960277127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0685968738329357,1.0685968738329357,1.1846793215523213,1.1846793215523213,1.024446622611839,1.024446622611839,1.0883924981657005,1.0883924981657005,1.0825482424535378,1.0825482424535378,0.528082543107644,0.6132483587376473,0.45480007532997957,0.4849850929594566,0.48006564786844286,0.557126450181789,0.6609120374980003,0.49028448435513183,0.5147582712954152,0.48844561846173057,29.095341756311356,29.095341756311356,34.502149333087345,34.502149333087345,27.160248513586097,27.160248513586097,29.985581829964204,29.985581829964204,29.72133289987893,29.72133289987893,10.833691200676242,12.8885552377115,9.316880309877021,9.913573752371676,9.8136475537288,11.499111347363723,14.175915377126543,10.022386183446116,10.540645265741702,9.984491391576896,243.809958149193,243.809958149193,0.0,270.89995349910333,0.0,243.809958149193,270.89995349910333,0,0
+2017/05/14 16:00:00,255.67077701548044,0,951.7391410911924,0,0,0,62.80771863775666,0.0,11.08681950462398,0.0,124.87761316689259,0,39.380909295966944,2.692966741270077e-09,14.085741205093004,0,0,0.0,490.36455842811864,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8786.702989223608,6420.874038446705,7726.883759789004,6516.236185429324,53577.443246670875,8115.900214125483,6366.507612870389,6284.96684428717,4641.8153055147795,42317.08276344295,8687.55406747608,6919.050629947291,7017.20226991578,5033.102942459673,42942.01254129789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05067129683122182,0.0016032045109323377,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.068009603162577,1.068009603162577,1.106189436708375,1.106189436708375,1.0438379664302324,1.0438379664302324,1.106068768561029,1.106068768561029,1.0974665681380624,1.0974665681380624,0.5182978018115746,0.5727383091060192,0.4637275727186356,0.4929561736128683,0.4770753885733805,0.5423396299200287,0.6095664201500376,0.49709013303497784,0.5212381448156321,0.4832519812701801,29.069141511238968,29.069141511238968,30.797504856277996,30.797504856277996,28.001451393027423,28.001451393027423,30.791963506843658,30.791963506843658,30.398202790645385,30.398202790645385,10.61774217917393,11.87190314580485,9.489269130471271,10.07770371046415,9.753418120018267,11.155765563184517,12.793209776260426,10.16390518291621,10.682199975547192,9.878250791213816,255.67077701548044,255.67077701548044,0.0,284.0786411283116,0.0,255.67077701548044,284.0786411283116,0,0
+2017/05/14 17:00:00,202.25004555760316,0,957.4514034058631,0,0,0,3.3452760647930737,0.0,11.56363294302905,0.0,129.38645076019097,0,39.380909295966944,2.8029529732679424e-09,18.573776490820087,0,0,0.0,496.0768207427893,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4563.559656635685,7275.244204369915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050975421907965654,0.001612826816367847,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9671508830473133,0.9671508830473133,0.9182780954546766,0.9182780954546766,0.9830761457275382,0.9830761457275382,1.0789679654454787,1.0789679654454787,1.146264984386094,1.146264984386094,0.40958175592550705,0.43265288927999757,0.3451219435561513,0.3133756751708047,0.46873424110166034,0.43070572093167186,0.456592216315973,0.3883087072635558,0.3466835601968597,0.4626047340952426,24.75715914164016,24.75715914164016,22.808084464280142,22.808084464280142,25.412513606644694,25.412513606644694,29.560036791316634,29.560036791316634,32.66454191196604,32.66454191196604,8.496339491407127,8.90402358105294,7.477920186939386,7.0413467689754725,9.587449558645133,8.868733399129468,9.351211058135348,8.140631392548954,7.500499596932784,9.467398586376845,202.25004555760316,202.25004555760316,0.0,224.7222728417813,0.0,202.25004555760316,224.7222728417813,0,0
+2017/05/14 18:00:00,220.42675988206605,0,966.4525298608312,0,0,0,30.99400737708545,0.0,11.287802205890328,0.0,115.6330778413024,0,39.380909295966944,2.909259806155292e-09,23.13096315891169,0,0,0.0,540.5682997103017,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1162.4367133245635,2641.7159909725924,3178.6156221150695,5036.657655023873,27364.021291995297,2291.385518238442,3288.3427627894916,2681.4370573379847,218.87804032625075,25482.078362473607,2582.695475682087,3693.550193869104,3508.4952645528474,231.1383822820368,24803.45286894962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05145464854762254,0.001627989213198067,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0034003804617857,1.0034003804617857,1.123137779768373,1.123137779768373,1.060681146226505,1.060681146226505,1.0773537951065888,1.0773537951065888,1.11404162925294,1.11404162925294,0.4602801203333692,0.5672185966119002,0.4474602423141939,0.39085121982908244,0.49039326273008305,0.46888883799999537,0.5963758538559245,0.48061355219540036,0.39818284641826585,0.4879578458797062,26.26304517532212,26.26304517532212,31.580654984024818,31.580654984024818,28.7432227933855,28.7432227933855,29.487462775466525,29.487462775466525,31.159147823054994,31.159147823054994,9.422292552162503,11.738891190817668,9.17771847875666,8.182126645083656,10.024632428807635,9.590498383572921,12.45646371807112,9.824725185995447,8.303330214674489,9.974464018978225,220.42675988206605,220.42675988206605,0.0,244.9186220911845,0.0,220.42675988206605,244.9186220911845,0,0
+2017/05/14 19:00:00,179.77430258192513,0,930.998652430214,0,0,0,1.1260137986679273,0.0,11.96579543942186,0.0,104.13412371906301,0,39.380909295966944,2.9092598061552915e-09,23.16746032589614,0,0,0.0,540.6047747922286,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3742.430531970381,697.1497846568011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04956705785229311,0.0015682671593570962,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7835742591228658,0.7835742591228658,0.7769115633688812,0.7769115633688812,0.9201063770690648,0.9201063770690648,1.042507631647528,1.042507631647528,1.072826647074259,1.072826647074259,0.2854637896771367,0.4161826098706302,0.31642601545295984,0.29365810433553424,0.4788815432121799,0.30152723689166483,0.4531358493015377,0.385043363333696,0.31447914833940455,0.466200926265895,17.940174205986636,17.940174205986636,17.719137791505858,17.719137791505858,22.879285804520933,22.879285804520933,27.943300928135073,27.943300928135073,29.284407129529498,29.284407129529498,6.692764524937914,8.610650758715579,7.081439100814208,6.791686189341561,9.789751339555735,6.889352264922408,9.28512371309526,8.087744241198948,7.055804843237695,9.537636448163468,179.77430258192513,179.77430258192513,0.0,199.7492250910279,0.0,179.77430258192513,199.7492250910279,0,0
+2017/05/14 20:00:00,197.6388197211337,0,871.6572821489766,0,0,0,0.6547561413335039,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,2.802952973267942e-09,18.591860357578714,0,0,0.0,516.7537570235353,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2649.543669382315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04640767934397145,0.0014683066256222853,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5629029203368031,0.5629029203368031,0.5062322425128704,0.5062322425128704,0.680929313495724,0.680929313495724,1.010424195052696,1.010424195052696,0.9257001047059473,0.9257001047059473,0.12109461635049253,0.1859595969497482,0.14695757018493052,0.10836541146416095,0.36763710913676045,0.1146986053513344,0.19416247411463186,0.19232998946443963,0.10820606576744256,0.34754477601087347,11.635814231710299,11.635814231710299,10.35715879059994,10.35715879059994,14.745926288184052,14.745926288184052,26.560624466280927,26.560624466280927,23.097963566539818,23.097963566539818,5.303748501568336,5.716933666267764,5.4474873532312245,5.243214655550844,7.813503145402734,5.272490775694692,5.781682916537619,5.766974335396071,5.24249954168765,7.512996266810504,197.6388197211337,197.6388197211337,0.0,219.59868857903743,0.0,197.6388197211337,219.59868857903743,0,0
+2017/05/14 21:00:00,183.671631195259,0,860.0159427372627,0,0,0,0.4247569668442962,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,4.222810577884886e-06,23.11687729837261,0,0,0.002165950606185323,540.6006041737595,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1686.814424515865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0457878858108741,0.001448696790266816,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.364495637997628,0.364495637997628,0.27923432733650333,0.27923432733650333,0.48673639088037574,0.48673639088037574,0.9821498428789857,0.9821498428789857,0.744622025331954,0.744622025331954,0.11034669781937964,0.09603385202160471,0.10753283299565362,-0.0014936726278490177,0.15104366139490863,0.08184690048446494,0.07748257892530218,0.13219805018103337,-0.02694848880138944,0.12074673803956645,7.765384630053177,7.765384630053177,6.619458799470678,6.619458799470678,9.949399049805635,9.949399049805635,25.3741261228609,25.3741261228609,16.674754762089805,16.674754762089805,5.2521943717350865,5.190989063885738,5.239489837092464,5.000046184019084,5.472742867222905,5.138712468587016,5.124309893543696,5.36204987725128,5.015033629110391,5.302004680748169,183.671631195259,183.671631195259,0.0,204.07959021695444,0.0,183.671631195259,204.07959021695444,0,0
+2017/05/14 22:00:00,127.84002333577469,0,676.4947870125602,0,0,0,0.004403403703637065,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,2.7930302227331207e-05,18.606710227009497,0,0,0.014335529680422012,516.7738651764312,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,16.911108533205947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.036017083544747405,0.001139555417377574,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1090737704624669,0.1090737704624669,0.013940828841854418,0.013940828841854418,0.22784085937895332,0.22784085937895332,0.9219507999296666,0.9219507999296666,0.45341765160597225,0.45341765160597225,0.04322596989257799,0.0006306473568309514,-0.015612934465221143,-0.11443332568868532,-0.0006761039058853632,-0.005149705227528259,-0.04364169435915262,-0.0082868075233358,-0.1425810073766386,0.02415992287854632,5.246406402268548,5.246406402268548,5.004023109169424,5.004023109169424,6.077025283637624,6.077025283637624,22.951251832170982,22.951251832170982,9.290492654832889,9.290492654832889,5.0386818063319225,5.000008232922042,5.005046086195421,5.27123104831567,5.000009462540135,5.000548966817149,5.039429490284519,5.001421532125022,5.421207490642544,5.012083237395601,127.84002333577469,127.84002333577469,0.0,142.044470373083,0.0,127.84002333577469,142.044470373083,0,0
+2017/05/14 23:00:00,86.78125547797833,0,514.0461066869615,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,5.166465773877342e-05,9.554235153255192,0,0,0.026524465315972693,460.78405345282937,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02736819547739203,0.0008659106276987489,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.138229192046092,-0.138229192046092,-0.23830960038298465,-0.23830960038298465,-0.022274305089021458,-0.022274305089021458,0.7503438907683165,0.7503438907683165,0.16380905786649758,0.16380905786649758,0.0388038238424836,-0.08994555047745835,-0.09452568766856488,-0.1813869023047714,-0.023379621436054807,-0.012708802672383638,-0.1328939700317144,-0.10776296012559615,-0.21858652266804285,-0.024907510467001022,5.395866707822677,5.395866707822677,6.178514347012623,6.178514347012623,5.010270671554466,5.010270671554466,16.856573865070075,16.856573865070075,5.5561243637675375,5.5561243637675375,5.031171610280808,5.167531818589637,5.185035025914857,5.682059341198141,5.011315309749037,5.0033434378890576,5.365874701543888,5.2405165090549986,5.991136723540706,5.012842618419867,86.78125547797833,86.78125547797833,0.0,96.4236171977537,0.0,86.78125547797833,96.4236171977537,0,0
+2017/05/15 00:00:00,39.34151520383942,0,514.0478288932349,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5792271356752657e-09,9.544194204837014,0,0,0.0,460.81230012441864,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02736828716892967,0.0008659135287550855,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.17226086084670497,0.17226086084670497,0.10411251553222615,0.10411251553222615,0.2472843295030324,0.2472843295030324,0.7794372623553327,0.7794372623553327,0.48458488066535493,0.48458488066535493,0.1645125872628245,0.14547622672658367,0.08061224717663933,0.005243428362922403,0.30288053433972034,0.09324803481835052,0.06924602282436067,0.05499894692349322,-0.061212532493852626,0.25533359289050367,5.615067662493189,5.615067662493189,5.224489925506404,5.224489925506404,6.269182617981485,6.269182617981485,17.802706138708587,17.802706138708587,9.905405420220475,9.905405420220475,5.560917158404578,5.43850308987372,5.1345578993039425,5.000569130748403,6.90641223424646,5.1800648725027685,5.0992804641541625,5.062625109643051,5.077577267630446,6.353380465971782,39.34151520383942,39.34151520383942,0.0,43.71279467093269,0.0,39.34151520383942,43.71279467093269,0,0
+2017/05/15 01:00:00,23.722153840436295,0,40.750503014639825,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250584167585033,0,0,0.0,5.2601505020956925,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0021695869646686772,6.864421923525006e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.28505541573779813,0.28505541573779813,0.2370140840429507,0.2370140840429507,0.3320478689277467,0.3320478689277467,0.740299767483898,0.740299767483898,0.667866034447472,0.667866034447472,0.16871245081290792,0.188314999683505,0.07998494961171254,0.022243893434539686,0.41511894472694827,0.09949765702454477,0.11710436857610258,0.05181268423011137,-0.046176855578934584,0.3594428987173205,6.687908798147987,6.687908798147987,6.165705617049838,6.165705617049838,7.2929470275634145,7.2929470275634145,16.53834051075573,16.53834051075573,14.371970519235376,14.371970519235376,5.589958061195134,5.735238261856395,5.132471283161195,5.0102426444784385,8.592104395722941,5.205021107531792,5.284048455548728,5.055578307507361,5.04414394080797,7.688872776233197,23.722153840436295,23.722153840436295,0.0,26.35794871159588,0.0,23.722153840436295,26.35794871159588,0,0
+2017/05/15 02:00:00,28.344496309382748,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251332229098518,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3435418918872915,0.3435418918872915,0.3029145257502759,0.3029145257502759,0.3819196605527713,0.3819196605527713,0.7349264820097892,0.7349264820097892,0.7382727975614011,0.7382727975614011,0.18106040024244352,0.21357478416743572,0.09116441219971094,0.0415994818932797,0.446679989422931,0.11038196566138873,0.14284974334685083,0.06156399560931007,-0.028816380315793606,0.381272227108563,7.455179724675759,7.455179724675759,6.906841734642057,6.906841734642057,8.037577361986436,8.037577361986436,16.36987276692753,16.36987276692753,16.4746436551044,16.4746436551044,5.6796026220024345,5.946121311258395,5.172104756169347,5.03582534736384,9.163061296126145,5.252355691869042,5.422798188460462,5.078470825127482,5.01719000031116,8.027231660616565,28.344496309382748,28.344496309382748,0.0,31.493884788203054,0.0,28.344496309382748,31.493884788203054,0,0
+2017/05/15 03:00:00,23.72231541948818,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5252199958103884,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3274104063529951,0.3274104063529951,0.2903001339434841,0.2903001339434841,0.3590054394932737,0.3590054394932737,0.6636508362509939,0.6636508362509939,0.7867686786542637,0.7867686786542637,0.1378958638775627,0.17967499135410697,0.04818869715915237,0.002739876140197454,0.48995192102743546,0.0636170936997144,0.10584926363131955,0.014448058832672849,-0.07182898024855036,0.4012002480957822,7.22907929371236,7.22907929371236,6.750805926271468,6.750805926271468,7.682299626433206,7.682299626433206,14.252880746260061,14.252880746260061,18.046819209896924,18.046819209896924,5.393958218300412,5.669227813591348,5.048074685568125,5.000155397076028,10.015522005175598,5.083792908110425,5.232045783048619,5.00432119545799,5.106826893521102,8.353880456607428,23.72231541948818,23.72231541948818,0.0,26.358128243875754,0.0,23.72231541948818,26.358128243875754,0,0
+2017/05/15 04:00:00,41.47839767496438,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,1.3926025300335085,0.0,0.5776615952967445,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.38282125526403166,0.38282125526403166,0.34814369554167124,0.34814369554167124,0.4106001297961204,0.4106001297961204,0.6961415973567235,0.6961415973567235,0.8332065511286653,0.8332065511286653,0.13485616581330986,0.17801970935376787,0.04490144217411119,-4.316061335998415e-06,0.3710208282789769,0.04935464300152083,0.09381444463443621,-0.0006250081488988677,-0.08567776228690664,0.34193379952552116,8.052014261213017,8.052014261213017,7.521705478176685,7.521705478176685,8.513853553224635,8.513853553224635,15.19070263605876,15.19070263605876,19.64587901581926,19.64587901581926,5.376767539827895,5.65693708050415,5.041738871972356,5.0000000003856115,7.865802745751594,5.050429460893071,5.182259884990984,5.000008086343811,5.1520056301216215,7.432144634050616,41.47839767496438,41.47839767496438,0.0,46.087108527738195,0.0,41.47839767496438,46.087108527738195,0,0
+2017/05/15 05:00:00,74.49020855968834,0,212.9421150752648,0,0,0,0.015062872591419632,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,1.1640802023424346,0.0,0.5250224547986175,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,59.43996029819037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6210937461355632,0.6210937461355632,0.5849702484600606,0.5849702484600606,0.6453858466945285,0.6453858466945285,0.8986919390450908,0.8986919390450908,0.9232637600317449,0.9232637600317449,0.2035656354952851,0.24600957049152858,0.11448362332746607,0.06916697565624182,0.5466003587822138,0.117959703451209,0.16194940882278752,0.06864113136699414,-0.0158839112329273,0.4961739233994479,13.093677478523745,13.093677478523745,12.171374103659247,12.171374103659247,13.745744855192811,13.745744855192811,22.053776348045133,22.053776348045133,23.00256434184955,23.00256434184955,5.8593666997877705,6.256098042925487,5.271469670932817,5.099053879689706,11.253726520533903,5.288215572153291,5.543554857638014,5.09755316804592,5.005222767107881,10.144736674038043,74.49020855968834,74.49020855968834,0.0,82.76689839965371,0.0,74.49020855968834,82.76689839965371,0,0
+2017/05/15 06:00:00,85.68444310818337,0,677.9044262501001,0,0,0,0.09397812207936342,0.0,9.53579130453149,0.0,73.80580873715317,0,1.7239069051273832,2.5209472783975948e-09,0.5249580367710098,0,0,0.0,447.2171349185632,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,375.920280560351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.036092133781883216,0.0011419299545662202,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7870254310827225,0.7870254310827225,0.7533597142123934,0.7533597142123934,0.8135927406934319,0.8135927406934319,0.9948987329644551,0.9948987329644551,0.9496420809168303,0.9496420809168303,0.2650754596318386,0.31010700898317556,0.17955093418894508,0.17159743020910917,0.7059514271963957,0.19788013493332063,0.24543984248917033,0.14982146072274302,0.11246774813564404,0.6379736294437294,18.055409655919135,18.055409655919135,16.952969673860906,16.952969673860906,18.9593966447151,18.9593966447151,25.905350901126994,25.905350901126994,24.04803997639273,24.04803997639273,6.45892871380758,6.998822158885886,5.668302704638549,5.6103331113808395,15.482823792477973,5.811954269405163,6.250272232404896,5.465115750721111,5.2619882372871984,13.544066707975531,85.68444310818337,85.68444310818337,0.0,95.20493678687042,0.0,85.68444310818337,95.20493678687042,0,0
+2017/05/15 07:00:00,143.72497725855905,0,828.2772499768855,0,0,0,0.2462502373356015,0.0,7.694287831279835,0.0,69.33401494192633,0,39.380909295966944,2.4832197156299623e-05,27.06949011985321,0,0,0.012750634640083384,562.0868554981645,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,976.0221344549454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044098094299250296,0.0013952329647208867,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.33480134622769,0.33480134622769,0.26901701890449814,0.26901701890449814,0.3665517985355991,0.3665517985355991,1.0805201714573562,1.0805201714573562,0.4288290412474327,0.4288290412474327,0.04236141697796911,-0.0003182555479179808,-0.02863251463265442,0.03687074871194513,0.15948917378456892,0.03993757926746582,-0.018835273705190773,-0.029113095697809604,0.028190053349233135,0.12130493619682253,7.331300075616966,7.331300075616966,6.502768787104742,6.502768787104742,7.7968316872208305,7.7968316872208305,29.62991076826492,29.62991076826492,8.83487477671656,8.83487477671656,5.037149824780073,5.000002096683147,5.016971327207358,5.028143055881571,5.52714744344398,5.0330198733260545,5.007343982399604,5.017545839038561,5.01645084193369,5.304805218280691,143.72497725855905,143.72497725855905,0.0,159.69441917617672,0.0,143.72497725855905,159.69441917617672,0,0
+2017/05/15 08:00:00,160.63407227724232,0,880.5879523728455,0,0,0,1.0082825512971922,0.0,11.435487997441953,0.0,83.2008179303116,0,39.380909295966944,1.7808711016155633e-05,25.608556693513602,0,0,0.00914491955321965,561.1656348403952,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4215.333052625489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0468831548416972,0.001483350338936566,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.12051613179156496,0.12051613179156496,-0.06559539547266216,-0.06559539547266216,0.15307098183056456,0.15307098183056456,1.1592099511679272,1.1592099511679272,0.4154111735276302,0.4154111735276302,-0.09254832564051554,-0.007640088320676378,-0.15959548561317638,-0.0007498132558804097,0.09962711845958319,0.05685145226119846,-0.05667657583686382,-0.01785561785515015,-0.02840513457525073,0.05336493063339767,5.30085148550306,5.30085148550306,5.089086374734009,5.089086374734009,5.485531501374368,5.485531501374368,33.27868978244477,33.27868978244477,8.597194947942299,8.597194947942299,5.177371665230567,5.001208311009776,5.527851226753839,5.00001163823373,5.205555216579498,5.066915527424243,5.0665044339606595,5.006599891872327,5.016702838180052,5.058958741765423,160.63407227724232,160.63407227724232,0.0,178.48230253026924,0.0,160.63407227724232,178.48230253026924,0,0
+2017/05/15 09:00:00,178.71850455554483,0,891.4057451847841,0,0,0,1.0828446574924842,0.0,11.128561489866103,0.0,106.27511244621549,0,39.380909295966944,2.7727416999504192e-05,20.85104893858683,0,0,0.014241013741403498,518.7428027893292,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4535.273379894542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047459102143816066,0.0015015729101072201,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.22006769686750074,0.22006769686750074,-0.043788472698689046,-0.043788472698689046,0.2048978377812849,0.2048978377812849,1.120890977818683,1.120890977818683,0.5090116616486698,0.5090116616486698,-0.09691250536499077,0.007269057315413013,-0.18076589166235899,-0.035379013713484765,0.10381745971518426,0.11390576410475037,-0.03927444154415859,0.08755652204306466,-0.044947523913941835,0.059805411313731294,6.004642069070172,6.004642069070172,5.039695182335336,5.039695182335336,5.870671714943512,5.870671714943512,31.47628530217061,31.47628530217061,10.416628609898993,10.416628609898993,5.194501392578971,5.001093800337216,5.677390451174077,5.0259117463211,5.223218708134667,5.268734517263283,5.031932354473099,5.158747444123264,5.041824595770009,5.074051087180109,178.71850455554483,178.71850455554483,0.0,198.57611617282757,0.0,178.71850455554483,198.57611617282757,0,0
+2017/05/15 10:00:00,209.9898185332478,0,977.9879832464421,0,0,0,1.3589235229207155,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.663060711706673e-06,18.55639726434963,0,0,0.0,516.6134005833684,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5811.016818419516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05206880463025969,0.0016474206835506025,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5223975820728198,0.5223975820728198,0.09262165665675653,0.09262165665675653,0.35576234576523863,0.35576234576523863,1.159987924785423,1.159987924785423,0.6897192167857005,0.6897192167857005,0.030915134503000586,-0.11171573614568586,-0.15896949066246166,0.06170368838699826,0.11135321895846992,0.13759491247614922,-0.01828290236514856,-0.08428445691032631,0.06701110236386801,0.08467436321806934,10.70771985327201,10.70771985327201,5.177652966089198,5.177652966089198,7.633823812613585,7.633823812613585,33.31576647380891,33.31576647380891,15.001705253883486,15.001705253883486,5.019785259651499,5.2584944697816525,5.523713924738459,5.0788274008408365,5.256818645039246,5.392239074985241,5.00691954656844,5.147100398130931,5.09297404910501,5.148464977129748,209.9898185332478,209.9898185332478,0.0,233.32202059249755,0.0,209.9898185332478,233.32202059249755,0,0
+2017/05/15 11:00:00,226.02801584863695,0,1033.3349490146456,0,0,0,1.3993487214882048,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.8565864296512164e-09,20.85475872991726,0,0,0.0,518.7248375827559,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5760.694248721404,160.32210688388773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05501551808362537,0.001740652643186378,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7704781836167843,0.7704781836167843,0.24797362746932833,0.24797362746932833,0.5328581802259129,0.5328581802259129,1.116925925634792,1.116925925634792,0.9019079654976614,0.9019079654976614,0.22173379112103797,-0.02391383938432886,-0.01371496409491301,0.14412769230410438,0.2722766824710807,0.3048041023548078,0.012424069017231011,0.040131976327102616,0.15849113774719573,0.2567451634944966,17.50750261662388,17.50750261662388,6.2762862608293375,6.2762862608293375,10.940594531783134,10.940594531783134,31.292506025406155,31.292506025406155,22.176567042085154,22.176567042085154,6.019943381818436,5.0118383344731825,5.00389380192324,5.430403740073288,6.539518868548569,6.9307944520853795,5.0031952993984845,5.033342128873571,5.520563420117824,6.368426729886153,226.02801584863695,226.02801584863695,0.0,251.14223983181884,0.0,226.02801584863695,251.14223983181884,0,0
+2017/05/15 12:00:00,215.17131402148976,0,995.7110743456553,0,0,0,10.819012801296624,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,2.8029774924081953e-09,18.610600265015776,0,0,0.0,516.5913154263094,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.84218382926574,0.0,0.0,5102.987432582784,7222.133593720441,730.3249381435503,0.0,0.0,0.0,11207.081108931572,1509.5879933807005,0.0,0.0,0.0,10740.253411692218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05301239512799353,0.0016772752291620674,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9411706889316767,0.9411706889316767,0.36291505931870754,0.36291505931870754,0.6488505750070006,0.6488505750070006,1.0648674727247245,1.0648674727247245,0.9674774396348411,0.9674774396348411,0.3911867524427714,0.11880098671853043,0.1654754141396925,0.22300340341148742,0.37725816315207106,0.4539459416743087,0.12957173178589784,0.23215443252335996,0.23986474933022112,0.3810715010057235,23.709272111706255,23.709272111706255,7.7413336056739865,7.7413336056739865,13.840833319219115,13.840833319219115,28.92916755588253,28.92916755588253,24.770498789033965,24.770498789033965,8.187623361985715,5.292343885755415,5.567509862706572,6.0316815324029704,7.963488028754583,9.300566927971829,5.34779688624576,6.118286134648642,6.193983118532984,8.024027779853853,215.17131402148976,215.17131402148976,0.0,239.0792378016553,0.0,215.17131402148976,239.0792378016553,0,0
+2017/05/15 13:00:00,210.21313366141285,0,936.6786984621227,0,0,0,8.442664557059816,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,2.7484486876239494e-09,16.31824176478972,0,0,0.0,493.04929205532113,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4618.295446163269,6644.50958285992,81.31589578755278,0.0,0.0,0.0,8203.11818800673,1175.071448253026,0.0,0.0,0.0,7725.129855622546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04986946771027989,0.0015778351964667381,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9783019658071399,0.9783019658071399,0.4610846379447735,0.4610846379447735,0.6822542006607619,0.6822542006607619,1.0531754263062,1.0531754263062,0.9797141805184962,0.9797141805184962,0.4486255048183213,0.18154472152125775,0.18897162439549112,0.22363512467228366,0.40468498156654215,0.49879622728091655,0.21118830797372806,0.27109545811161956,0.25028181876407,0.4137153177781529,25.215017725282536,25.215017725282536,9.437876812565236,9.437876812565236,14.784265577564469,14.784265577564469,28.411409067527785,28.411409067527785,25.273346008991822,25.273346008991822,9.199656879377088,5.683248425479704,5.7403824150023155,6.0375472593530475,8.41274462986432,10.199695927577636,5.925055708746271,6.526149793373278,6.300219000305475,8.567704571392994,210.21313366141285,210.21313366141285,0.0,233.57014851268093,0.0,210.21313366141285,233.57014851268093,0,0
+2017/05/15 14:00:00,186.98381511186565,0,898.2564355719129,0,0,0,1.2749606181473128,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.692990768156589e-09,14.072613549665384,0,0,0.0,490.1173816776554,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3882.8415285941983,1061.957950160658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04782383797437885,0.00151311289754438,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8747559948769948,0.8747559948769948,0.5875436512516373,0.5875436512516373,0.6297559068735131,0.6297559068735131,1.0309883855920043,1.0309883855920043,0.9712396823102266,0.9712396823102266,0.3376961207511979,0.18537486473421697,0.07226130753668836,0.10803687745110237,0.35100968789207404,0.42125995355181645,0.23007166855109293,0.15686737923576585,0.1329197777601284,0.35154052522761864,21.15314075106602,21.15314075106602,12.235204585565057,12.235204585565057,13.323257191563513,13.323257191563513,27.44248666707975,27.44248666707975,24.924483393565097,24.924483393565097,7.371968311733866,5.712425428768938,5.108117012614244,5.241741410167279,7.563592562874746,8.699849048847,6.098266313167741,5.509940217731597,5.366016929982905,7.571389209047169,186.98381511186565,186.98381511186565,0.0,207.7597945687396,0.0,186.98381511186565,207.7597945687396,0,0
+2017/05/15 15:00:00,180.75343739063655,0,898.2501015499333,0,0,0,1.839387151401699,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,2.692990768156589e-09,14.041065685129489,0,0,0.0,490.11104765567586,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3714.357164459259,2988.7039286031877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047823500746357,0.001513102227884836,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7927767825983278,0.7927767825983278,0.818435711514102,0.818435711514102,0.637245700249818,0.637245700249818,1.0210428606353277,1.0210428606353277,0.9735689577091602,0.9735689577091602,0.2535480265274719,0.28191558146612195,0.024101965510730666,0.05730793212863116,0.2953074961236999,0.32721328172650094,0.34142552729222336,0.09710297205517048,0.07024090316224954,0.29242252827203513,18.248572282020532,18.248572282020532,19.12739721569949,19.12739721569949,13.524389061464447,13.524389061464447,27.01402358926741,27.01402358926741,25.020093668435436,25.020093668435436,6.334467748826384,6.650809997294758,5.012025332336165,5.067994575648996,6.811940491630409,7.226384682830499,7.424886751285385,5.195266989846374,5.102154380905475,6.776588782265506,180.75343739063655,180.75343739063655,0.0,200.83715265626282,0.0,180.75343739063655,200.83715265626282,0,0
+2017/05/15 16:00:00,204.62550123527632,0,951.482229279537,0,0,0,2.6057813137383414,0.0,16.90307355543791,0.0,131.64086955684016,0,39.380909295966944,2.692990768156589e-09,14.094867510599908,0,0,0.0,490.1076466164632,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,129.61633316567614,0.0,3852.1072561867277,5271.867413997331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050657618656072996,0.0016027717430051036,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.738473342774606,0.738473342774606,1.012136066425196,1.012136066425196,0.654719051456035,0.654719051456035,1.0244191247456906,1.0244191247456906,0.9951931379929536,0.9951931379929536,0.17739795628481933,0.3685338168679735,-0.008038178282599106,0.003266120405817094,0.27544951250182625,0.23777265849045345,0.4480481625737666,0.059369674291033125,0.007950298940864138,0.26856135499613115,16.480937860972503,16.480937860972503,26.63343307708446,26.63343307708446,14.003079167384271,14.003079167384271,27.159065487214775,27.159065487214775,25.91769165300603,25.91769165300603,5.65235001147758,7.827315349074141,5.001337511007776,5.000220823569464,6.575720005345531,6.173197069503786,9.188779956223641,5.072975789051284,5.001308425461374,6.497667205420555,204.62550123527632,204.62550123527632,0.0,227.3616680391959,0.0,204.62550123527632,227.3616680391959,0,0
+2017/05/15 17:00:00,211.79361323965168,0,957.2405130702319,0,0,0,2.894623855321638,0.0,17.03716072779536,0.0,133.89528835348938,0,39.380909295966944,2.8029774924081953e-09,18.585631004275346,0,0,0.0,495.8659304071581,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,516.6130889370427,0.0,3936.8686146766872,5523.879077467023,0.0,0.0,0.0,0.0,0.0,0.0,337.0915995046913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05096419395028878,0.0016124715716134828,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.690578117325486,0.690578117325486,1.0865596082390179,1.0865596082390179,0.7116466636147324,0.7116466636147324,1.0223365947728333,1.0223365947728333,1.0051085138464355,1.0051085138464355,0.16212335644632303,0.4670293485179662,0.05439186639812798,-0.010619727531913871,0.3261308683861631,0.2062737121862788,0.5389401756808746,0.12068490414849106,-0.017982956940456266,0.31671926408336265,15.026877687058317,15.026877687058317,29.902579994420208,29.902579994420208,15.654323878763506,15.654323878763506,27.06955143157812,27.06955143157812,26.335242752881967,26.335242752881967,5.544724471032509,9.55389546320336,5.061250040866099,5.002334585503647,7.2116179177159125,5.8824252803402715,11.07817086549278,5.301695250459659,5.006694364461751,7.0853141965631465,211.79361323965168,211.79361323965168,0.0,235.3262369329463,0.0,211.79361323965168,235.3262369329463,0,0
+2017/05/15 18:00:00,198.27114313150386,0,987.0312519672865,0,0,0,4.786622655657133,0.0,17.540027511967114,0.0,110.93442390708215,0,39.380909295966944,2.9610816900811573e-09,25.629159757869385,0,0,0.0,561.1470218167569,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,200.6064988116712,0.0,3749.561296407921,3732.7985173896354,0.0,373.26743860073805,0.0,0.0,4120.284678539677,0.0,966.2515406317348,0.0,0.0,3223.1820574628796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05255027495536688,0.0016626540690244925,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6405098102277792,0.6405098102277792,1.093595313521032,1.093595313521032,0.7845996256215363,0.7845996256215363,1.0121439325649684,1.0121439325649684,1.0073338571021555,1.0073338571021555,0.18689816503848367,0.5322840060193681,0.18110252940381402,0.01095726120114593,0.3916096714643731,0.22290311471759305,0.5890770009114492,0.25749353465790115,-0.004899360964590248,0.38797870620004893,13.61280519666694,13.61280519666694,30.221821172285985,30.221821172285985,17.974358592148263,17.974358592148263,26.633767890426924,26.633767890426924,26.42946643864066,26.42946643864066,5.724199807944586,10.927689326597005,5.679919366904713,5.002485347997776,8.194558503282934,6.030751859547337,12.273374306127266,6.376437793723795,5.00049688991146,8.135265839256505,198.27114313150386,198.27114313150386,0.0,220.3012701461154,0.0,198.27114313150386,220.3012701461154,0,0
+2017/05/15 19:00:00,187.84913882799617,0,952.48170880392,0,0,0,0.782402244231977,0.0,18.898196227982087,0.0,101.68988858149199,0,39.380909295966944,3.0119865075518606e-09,27.097742475311204,0,0,0.0,562.0878311659346,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3188.5126864989124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05071083168627229,0.0016044553661880674,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5332571630899892,0.5332571630899892,0.6824481293643267,0.6824481293643267,0.7677569030624376,0.7677569030624376,0.9978099458283278,0.9978099458283278,0.9698308115547133,0.9698308115547133,0.11168995019847035,0.47256716070818394,0.17467547904477865,-0.06707499199648546,0.3956708799489683,0.13496391705625474,0.544360402627518,0.25783134164600574,-0.006796609165738611,0.37917063365881504,10.949570523953597,10.949570523953597,14.789883812925183,14.789883812925183,17.418513257538322,17.418513257538322,26.027526917184517,26.027526917184517,24.866755368108258,24.866755368108258,5.258375087573214,9.66334287472884,5.63245454547959,5.093151455659552,8.261544542138012,5.3773703437189795,11.202128276185604,6.380061623170818,5.000956238731803,7.99377243209284,187.84913882799617,187.84913882799617,0.0,208.72126536444017,0.0,187.84913882799617,208.72126536444017,0,0
+2017/05/15 20:00:00,208.22065255321468,0,895.3960597626296,0,0,0,0.5819285523550131,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,7.045553341992016e-06,23.16696299160328,0,0,0.0036179357609387426,540.4889167014276,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2333.734299037975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04767154944759318,0.0015082945947107412,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.34854071543136633,0.34854071543136633,0.3970262685473574,0.3970262685473574,0.5019731760581617,0.5019731760581617,0.9785059749674535,0.9785059749674535,0.8273335833730915,0.8273335833730915,-0.031677572465254676,0.1985826803252236,-0.005228192549381791,-0.01174665867767877,0.2932947612504644,-0.027354520096500485,0.24026909440891112,0.05525489614768902,-0.04698429101391142,0.26618532136876577,7.52748716473954,7.52748716473954,8.284057429696531,8.284057429696531,10.266677665647293,10.266677665647293,25.22343909858151,25.22343909858151,19.43863141434599,19.43863141434599,5.020773237655945,5.817739719752865,5.000565828106659,5.002856355292849,6.787239834844314,5.0154900788769226,6.198021696457687,5.06320942413619,5.045701368808636,6.4712069943717125,208.22065255321468,208.22065255321468,0.0,231.35628061468296,0.0,208.22065255321468,231.35628061468296,0,0
+2017/05/15 21:00:00,194.37193538549838,0,880.5963284588073,0,0,0,0.41161948392115494,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,1.9418077768065085e-05,25.49633423533416,0,0,0.009974646469983086,561.1731811994403,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1628.3301993143982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04688360079071804,0.001483364448452733,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.19129914504744297,0.19129914504744297,0.18517393908807298,0.18517393908807298,0.3288309450596476,0.3288309450596476,0.9573650299839884,0.9573650299839884,0.6765990527971754,0.6765990527971754,-0.003269852847925865,0.12047633250529693,-0.015923967605212235,-0.04568547469608011,0.12449924375085002,-0.019919972165813423,0.13542591236987897,-0.009755899813427952,-0.05382909069738285,0.0872063741934872,5.758761861467306,5.758761861467306,5.710879605074965,5.710879605074965,7.248546198288665,7.248546198288665,24.359343851771,24.359343851771,14.621147847136072,14.621147847136072,5.0002213285615795,5.30065268439958,5.005249142384727,5.0432093559863915,5.321080494786685,5.008214214332455,5.379960406644557,5.001970231943474,5.059988964155636,5.157479858061507,194.37193538549838,194.37193538549838,0.0,215.9688170949982,0.0,194.37193538549838,215.9688170949982,0,0
+2017/05/15 22:00:00,137.0798717092936,0,678.4797135547936,0,0,0,0.03130156772740247,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,5.240846180554586e-05,20.866563227475645,0,0,0.02692936633288571,518.7461978820122,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,120.1472528798961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03612276250410425,0.001142899025987313,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.04863293025636216,-0.04863293025636216,-0.07921612528962857,-0.07921612528962857,0.07745964974426328,0.07745964974426328,0.8942742923123481,0.8942742923123481,0.38944577040123346,0.38944577040123346,-0.0022383985380879786,0.013367603769564003,-0.0471040350989199,-0.14006875658417672,-0.006133504346522566,-0.02641281384053665,-0.003661378781941578,-0.10262364977876598,-0.1401065482818168,0.019729029885001585,5.048965229587807,5.048965229587807,5.129936155659621,5.129936155659621,5.124236311452634,5.124236311452634,21.885792478832244,21.885792478832244,8.159154766349701,8.159154766349701,5.000103718388473,5.003699060632485,5.045934637708726,5.406482401034353,5.000778751550413,5.01444188169539,5.000277504747885,5.218112200099284,5.406701964167439,5.008057492127207,137.0798717092936,137.0798717092936,0.0,152.31096856588178,0.0,137.0798717092936,152.31096856588178,0,0
+2017/05/15 23:00:00,89.05605587359805,0,517.7536142855831,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,6.262059849932197e-05,11.829024592934175,0,0,0.03168542601882591,464.486400090748,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027565585928118235,0.0008721559239672317,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.27216737805532976,-0.27216737805532976,-0.3141848108541968,-0.3141848108541968,-0.15602642332999314,-0.15602642332999314,0.7365881086998632,0.7365881086998632,0.10571253399757395,0.10571253399757395,-0.07089739070782725,-0.013401760050951207,-0.12695937194015872,-0.21063987237330625,-0.05758160683005776,-0.11376942274805345,-0.035319207193892935,-0.13795792346359378,-0.2413559379815667,-0.0574505078623784,6.538279294586744,6.538279294586744,7.051943292406875,7.051943292406875,5.504481568596532,5.504481568596532,16.421837078460783,16.421837078460783,5.231446388202954,5.231446388202954,5.10407325139029,5.003717988272115,5.3339041925059405,5.920248323943923,5.068645640678042,5.268091201831936,5.025824210349171,5.394313193784782,6.208911063507912,5.068333372361536,89.05605587359805,89.05605587359805,0.0,98.95117319288673,0.0,89.05605587359805,98.95117319288673,0,0
+2017/05/16 00:00:00,39.343589463653586,0,513.7567828649471,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.579250596604949e-09,9.546268464651158,0,0,0.0,460.521254096131,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0273527916628039,0.0008654232617425248,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.02693880869922088,0.02693880869922088,0.019796398959374673,0.019796398959374673,0.10006100656032524,0.10006100656032524,0.7552485400974218,0.7552485400974218,0.4288746145687167,0.4288746145687167,0.08307057765533093,0.23615814762951493,-0.00014549057517395818,-0.07271508558251755,0.26063243331854,0.03060843166839941,0.16866720835673357,-0.05304294187078402,-0.13496603005073912,0.20644140748604056,5.015022830310542,5.015022830310542,5.008112615177623,5.008112615177623,5.207350348429529,5.207350348429529,17.01354115607471,17.01354115607471,8.835695209098517,8.835695209098517,5.142892486191471,6.1572816520911715,5.000000438177992,5.109479478672753,6.410295351681512,5.019394619370445,5.5896413028757195,5.058249318391006,5.3773821694903745,5.883863252571416,39.343589463653586,39.343589463653586,0.0,43.715099404059536,0.0,39.343589463653586,43.715099404059536,0,0
+2017/05/16 01:00:00,23.722161498098178,0,49.813792086338175,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250660744203848,0,0,0.0,14.323439573794042,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0026521231880845346,8.391132898863395e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.10258718902466084,0.10258718902466084,0.11599623149641311,0.11599623149641311,0.14546562069274047,0.14546562069274047,0.6742693891737901,0.6742693891737901,0.6088257931625638,0.6088257931625638,0.036176560193568554,0.21634282403249777,-0.053925072877653545,-0.11209836192055903,0.3695386467257704,-0.004555796066025688,0.1775127033940622,-0.08868076110700149,-0.16459920890581134,0.2944859554880774,5.217957170820043,5.217957170820043,5.278694911828055,5.278694911828055,5.438439094267068,5.438439094267068,14.55435319895767,14.55435319895767,12.77410198418832,12.77410198418832,5.027093236752279,5.970853757307623,5.0602031143569235,5.2602691728532704,7.8428337065212474,5.000429645028632,5.653195360016156,5.162851735723791,5.561508695167731,6.801837719323842,23.722161498098178,23.722161498098178,0.0,26.357957220109085,0.0,23.722161498098178,26.357957220109085,0,0
+2017/05/16 02:00:00,28.34450386105145,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251407745785551,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.16128412887704505,0.16128412887704505,0.1808748495659358,0.1808748495659358,0.1960284895196699,0.1960284895196699,0.6715243334760891,0.6715243334760891,0.6798091090133371,0.6798091090133371,0.051201806912089476,0.24479303212339668,-0.04310534450250653,-0.09119953870824721,0.3999675017543717,-0.00470443065615461,0.19808191452328122,-0.08904398584727768,-0.16277246508853419,0.32066821241685795,5.5390931911974235,5.5390931911974235,5.678208455204242,5.678208455204242,5.796804872665831,5.796804872665831,14.475950152945046,14.475950152945046,14.713569299181103,14.713569299181103,5.054275331424861,6.2436747389003955,5.038466200497069,5.172237457976564,8.333181314428984,5.000458137044802,5.8136138086061635,5.164188978091744,5.54910017350727,7.137851932953481,28.34450386105145,28.34450386105145,0.0,31.493893178946056,0.0,28.34450386105145,31.493893178946056,0,0
+2017/05/16 03:00:00,23.722301362170874,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5252059384930827,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1898885343742016,0.1898885343742016,0.21399073481961176,0.21399073481961176,0.21973422248351135,0.21973422248351135,0.6655728865566173,0.6655728865566173,0.7088392179972961,0.7088392179972961,0.06980818456175471,0.2731851721398224,-0.027404863264142976,-0.0706482008799674,0.4301827454761926,-0.014191849744291296,0.19928591928330575,-0.09926620303515916,-0.1726908289157976,0.35207055513574487,5.747595844030101,5.747595844030101,5.949817344390283,5.949817344390283,6.001593431332651,6.001593431332651,14.30708797704294,14.30708797704294,15.56960874452875,15.56960874452875,5.100899341989731,6.5498411394341645,5.015547149045744,5.103342781909362,8.859282801786946,5.004169296429751,5.82355155151177,5.2040679494461415,5.6181459219460095,7.579185955768253,23.722301362170874,23.722301362170874,0.0,26.358112624634305,0.0,23.722301362170874,26.358112624634305,0,0
+2017/05/16 04:00:00,40.99509195007332,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.9092884367951645,0.0,0.5776699636440402,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.23124421797250094,0.23124421797250094,0.2547203255189034,0.2547203255189034,0.2584411334757403,0.2584411334757403,0.6799933948891993,0.6799933948891993,0.7812660669009956,0.7812660669009956,0.03247734511712747,0.23232682794379658,-0.06374514867450383,-0.10676169089367435,0.3282469514807449,-0.052698170127850455,0.15987346701340788,-0.13646463422407218,-0.2099032851875963,0.29552553777015217,6.109514636715602,6.109514636715602,6.346869620326643,6.346869620326643,6.386615329782245,6.386615329782245,14.718888646839687,14.718888646839687,17.863385631445183,17.863385631445183,5.021835464957462,6.1199513791256095,5.0841306427942925,5.236065553532356,7.240532853461744,5.057494460528019,5.529693687022444,5.385816169167967,5.913811484642139,6.814626614726237,40.99509195007332,40.99509195007332,0.0,45.55010216674814,0.0,40.99509195007332,45.55010216674814,0,0
+2017/05/16 05:00:00,74.41501779903649,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,1.103944732441694,0.0,0.5250300366389291,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4486509899416638,0.4486509899416638,0.4682067588726781,0.4682067588726781,0.47150865752215915,0.47150865752215915,0.8603940685852832,0.8603940685852832,0.8690861378081105,0.8690861378081105,0.0769328502201025,0.2727945223647091,-0.01829243813774951,-0.061232978933962415,0.5034077833836103,0.00034930919975401705,0.20953885316645618,-0.08199987564828609,-0.15529975258186143,0.44175959776093493,9.200137340439866,9.200137340439866,9.577054767341608,9.577054767341608,9.642320804043138,9.642320804043138,20.62404396054788,20.62404396054788,20.94324488221001,20.94324488221001,5.122551762179398,6.545398309149832,5.006926766584215,5.077629110279716,10.297067403913132,5.0000025258111975,5.910635208814739,5.139231627110817,5.499788475408309,9.07123390061426,74.41501779903649,74.41501779903649,0.0,82.68335311004054,0.0,74.41501779903649,82.68335311004054,0,0
+2017/05/16 06:00:00,85.91571815663002,0,677.5387533841151,0,0,0,0.0687206949604391,0.0,9.930037121525576,0.0,73.80580873715317,0,1.586186028085121,2.520970441279514e-09,0.524965572384714,0,0,0.0,446.8514620525783,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,273.5536402743703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03607266508764184,0.0011413139786512225,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6227433185388261,0.6227433185388261,0.642783025060753,0.642783025060753,0.6447801753316914,0.6447801753316914,0.970319957719313,0.970319957719313,0.8943421621271409,0.8943421621271409,0.14736764027838903,0.3376868675245931,0.05152256977866943,0.01988247888353149,0.6581038726357878,0.08222429397962107,0.2911756931629682,0.0029390997354040954,-0.05577812150725079,0.5779781189337099,13.137146358554432,13.137146358554432,13.67465355529761,13.67465355529761,13.729175826586967,13.729175826586967,24.886789237439288,24.886789237439288,21.888367261309483,21.888367261309483,5.449990550626509,7.371837747705129,5.054957577649105,5.008183321369444,14.097338108986236,5.139995001803811,6.761419170727677,5.000178817348726,5.064412357880755,11.999393026867352,85.91571815663002,85.91571815663002,0.0,95.46190906292225,0.0,85.91571815663002,95.46190906292225,0,0
+2017/05/16 07:00:00,143.64752807098236,0,828.1981857413796,0,0,0,0.21470746602351415,0.0,7.6477210639741555,0.0,69.33401494192633,0,39.380909295966944,2.755551350455199e-05,27.07014774757794,0,0,0.013769131277396405,562.0067727660212,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,845.3860974958412,0.0,0.0,0.0,0.0,0.0,0.36347564879691574,0.0,0.0,0.0,0.0,0.22960838273761663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04409388486078855,0.0013950997810221776,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.20678008957466434,0.20678008957466434,0.17996151356123496,0.17996151356123496,0.23691950668278797,0.23691950668278797,1.0491207808656453,1.0491207808656453,0.37169249779973307,0.37169249779973307,-0.028255107612784134,0.011672629257536806,-0.08069445460582074,-0.06238532094129665,0.11005627702259799,-0.04890913891965838,0.013457539539510609,-0.12235465448106404,-0.05954018651171507,0.06948341929333476,5.886771009747449,5.886771009747449,5.671366899016078,5.671366899016078,6.164773293178797,6.164773293178797,28.233003811455447,28.233003811455447,7.8762423002362425,7.8762423002362425,5.016526859572707,5.002820466056335,5.134832560102041,5.080578917144493,5.250867909933277,5.049523060684422,5.0037490022222215,5.310106838393139,5.073395636698152,5.099962505464717,143.64752807098236,143.64752807098236,0.0,159.60836452331372,0.0,143.64752807098236,159.60836452331372,0,0
+2017/05/16 08:00:00,160.31443127679316,0,880.5205243494308,0,0,0,0.8561193806030198,0.0,11.323895916778682,0.0,83.2008179303116,0,39.380909295966944,3.613813926981091e-05,25.55265261499365,0,0,0.01858240848101174,561.0887693280526,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3526.7914772583135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04687956492378621,0.0014832367564362415,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.007076034149415385,0.007076034149415385,-0.14507797901448147,-0.14507797901448147,0.04223233017200529,0.04223233017200529,1.1205320038446198,1.1205320038446198,0.35415357450526413,0.35415357450526413,-0.010708650192046186,-0.036618646994200886,-0.09078444903419881,0.022441012272182533,0.04237068730858769,-0.032396549286644254,-0.04807894581988577,-0.13192945121765803,0.04025207265476522,-0.008115697968537105,5.001036481733848,5.001036481733848,5.436103321636054,5.436103321636054,5.036923740349266,5.036923740349266,31.459625494842882,31.459625494842882,7.609942981886249,7.609942981886249,5.002373845978028,5.027759495323167,5.17067259383596,5.010424987556945,5.037166087529897,5.021726952206208,5.0478559289365705,5.360579026056556,5.0335419969297845,5.001363433224526,160.31443127679316,160.31443127679316,0.0,178.1271458631035,0.0,160.31443127679316,178.1271458631035,0,0
+2017/05/16 09:00:00,179.02306659442092,0,891.2271296580861,0,0,0,1.2991127028409644,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.856611184176149e-09,20.86952050571634,0,0,0.0,518.5784282763727,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5527.860783920878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047449592520872955,0.0015012720322660539,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.24989082781017455,0.24989082781017455,-0.030514711409347885,-0.030514711409347885,0.1720280914488342,0.1720280914488342,1.1469969007281031,1.1469969007281031,0.5365969921109067,0.5365969921109067,-0.012905139453787963,-0.06885796831855384,-0.1350264260356352,0.06555983449947114,0.13682290648260353,-0.01619555201985918,-0.11149839431651498,-0.16075715275658342,0.09282815715076564,0.09584442578479467,6.296149212477303,6.296149212477303,5.019276027092133,5.019276027092133,5.613404420313444,5.613404420313444,32.69912511930559,32.69912511930559,11.024977697779605,11.024977697779605,5.003447541388056,5.098170612146831,5.377720265513659,5.088989790273899,5.387846329168639,5.005429720361903,5.2574890984837594,5.5355721461911,5.178446309579016,5.190236049982516,179.02306659442092,179.02306659442092,0.0,198.91451843824547,0.0,179.02306659442092,198.91451843824547,0,0
+2017/05/16 10:00:00,209.93464094784102,0,977.8211282617735,0,0,0,1.3658324467123248,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.8030020274810804e-09,18.599089615769703,0,0,0.0,516.4465455986998,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5836.054756361749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05205992114728534,0.0016471396163415925,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5027678771570339,0.5027678771570339,0.0908304718876777,0.0908304718876777,0.31030752702622816,0.31030752702622816,1.1344576557260706,1.1344576557260706,0.7075945163614574,0.7075945163614574,0.044699766348139096,-0.09479737512613685,-0.16221189513634485,0.07956325501184691,0.117189972309041,0.06105442195823258,-0.13290442546223616,-0.17061103059479027,0.11725238282599612,0.09377090638330975,10.283501079645134,10.283501079645134,5.170845744957177,5.170845744957177,7.001417831171892,7.001417831171892,32.10901128110487,32.10901128110487,15.532158408830611,15.532158408830611,5.041364738356933,5.186100642118149,5.545320284240944,5.131077748673746,5.2844641404745545,5.077176957948765,5.365932318912925,5.603327646410079,5.284767392904172,5.182090688513952,209.93464094784102,209.93464094784102,0.0,233.2607121642678,0.0,209.93464094784102,233.2607121642678,0,0
+2017/05/16 11:00:00,231.5017481374742,0,1033.1869327061397,0,0,0,6.858418401571833,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.8566111841761495e-09,20.86942133867085,0,0,0.0,518.5768212742497,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.01454314853012,0.0,0.0,6003.464978829519,7407.7857276862105,125.09461895182616,0.0,0.0,0.0,5177.034476916262,422.69377234421,0.0,0.0,0.0,4477.974664871332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05500763758572385,0.001740403309725934,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.836949410645587,0.836949410645587,0.32173732618419754,0.32173732618419754,0.5576554351521245,0.5576554351521245,1.1090886213740798,1.1090886213740798,0.899134195000083,0.899134195000083,0.30992177449507313,0.09807079944703316,0.050468869108243025,0.2365534171944402,0.28943975869175004,0.3422494354276515,0.07411882582862002,0.06138542866566074,0.27825637405262565,0.2860082978076271,19.778711962819955,19.778711962819955,7.152189345815231,7.152189345815231,11.511569840427043,11.511569840427043,30.930789430495608,30.930789430495608,22.07063714280197,22.07063714280197,6.996425841905946,5.199180519767282,5.052732408304891,6.161167999049468,6.74040827264443,7.436657287543582,5.113748253969831,5.078016197969106,6.608099316495469,6.699249890010421,231.5017481374742,231.5017481374742,0.0,257.2241645971936,0.0,231.5017481374742,257.2241645971936,0,0
+2017/05/16 12:00:00,223.95399991991366,0,995.5706623357675,0,0,0,19.914245080190675,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.80300202748108e-09,18.52805695473195,0,0,0.0,516.4509034164216,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1615.1929381925565,0.0,0.0,5417.146403964673,14651.467590172775,2643.9150684656747,307.55503685398236,903.1798794427498,455.3557997271216,18627.507434641397,3293.346539637181,369.4124326347563,1233.0978246929449,659.4560404014552,18141.91144931227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05300491948858299,0.0016770387051420685,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9475238547858299,0.9475238547858299,0.47094511739956124,0.47094511739956124,0.7076072552836271,0.7076072552836271,1.0645723759479897,1.0645723759479897,0.946070537559925,0.946070537559925,0.415343237795906,0.25646846514360194,0.21420861224801552,0.3145589884545159,0.36672123499900083,0.46545754320068977,0.257117989222962,0.24008325271758568,0.3529699092748391,0.37483573720619534,23.963066955113305,23.963066955113305,9.631148493474456,9.631148493474456,15.532541356575607,15.532541356575607,28.916039749569663,28.916039749569663,23.904869332887586,23.904869332887586,8.596011198063295,6.365470732326912,5.951756240196843,7.056852935551191,7.7994310943131495,9.523071624197684,6.372414759890091,6.196164666592594,7.592442811077348,7.92535239674163,223.95399991991366,223.95399991991366,0.0,248.83777768879295,0.0,223.95399991991366,248.83777768879295,0,0
+2017/05/16 13:00:00,230.5242569450643,0,936.4785062797067,0,0,0,28.97378990579669,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.748472985469451e-09,16.32824276989078,0,0,0.0,492.8490998729052,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3352.212544882904,0.0,878.6201141097886,5336.709081621786,20937.512577202164,4583.298839259418,1554.3518593501326,2029.4299326782193,1461.6724607557078,24895.480153972756,5392.826240939337,1706.1381091409585,2457.771551068874,1762.8654079059754,25012.256772341076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049858809330204375,0.0015774979727506526,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9513108780468483,0.9513108780468483,0.6824959223614332,0.6824959223614332,0.7886978246464449,0.7886978246464449,1.0566560875819477,1.0566560875819477,0.9409759853761679,0.9409759853761679,0.4309057137256475,0.34023421333475473,0.26664656611297477,0.3417169090611069,0.36605796320740686,0.48162288130580444,0.3630261141889719,0.30201842707558424,0.38054846297202544,0.376471319990277,24.115108673068804,24.115108673068804,14.791268655651606,14.791268655651606,18.111433250913365,18.111433250913365,28.56503127891922,28.56503127891922,23.70151937969254,23.70151937969254,8.872350537189547,7.4079183730677585,6.47632495340703,7.429046200057556,7.789262498730892,9.84516589500707,7.743020006482894,6.895535364303996,8.015687411481025,7.951073504890402,230.5242569450643,230.5242569450643,0.0,256.13806327229366,0.0,230.5242569450643,256.13806327229366,0,0
+2017/05/16 14:00:00,213.65057315403874,0,897.9997554134499,0,0,0,28.0932619442827,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.693014810668056e-09,14.088459859323336,0,0,0.0,489.8607015191924,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3329.140561256202,848.7032577364397,1510.9676838512705,5030.249560995257,22192.986525306227,4195.875960707299,2136.7291439735445,1901.6279346169904,1628.4253838829495,21421.04740352099,4912.912334829598,2420.038282484059,2364.9521928217982,1963.3412378810672,21486.254808910955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04781017213261757,0.0015126805198369306,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9155079301399064,0.9155079301399064,0.8151353899682042,0.8151353899682042,0.8079603800856093,0.8079603800856093,1.0428587028217786,1.0428587028217786,0.9261707304374931,0.9261707304374931,0.4052178128043146,0.38188667191697667,0.2683015896039677,0.3360284334034936,0.34513448095325516,0.44714225772943444,0.41500587575788644,0.3044972357010644,0.3723954862182767,0.35189572263383445,22.700458235988265,22.700458235988265,19.012803285368264,19.012803285368264,18.765255720933666,18.765255720933666,27.958640395604178,27.958640395604178,23.116419119751,23.116419119751,8.421791035266352,8.037049785436096,6.494762804232224,7.348495786809352,7.478101052334452,9.171741923906012,8.59013574469752,6.926894266662643,7.88718923847631,7.576612846553786,213.65057315403874,213.65057315403874,0.0,237.3895257267097,0.0,213.65057315403874,237.3895257267097,0,0
+2017/05/16 15:00:00,213.13077753604927,0,878.6033018859539,0,0,0,34.35073257699485,0.0,16.568294279967066,0.0,108.75639138185811,0,39.380909295966944,2.693014810668056e-09,14.074449998569234,0,0,0.0,470.4642479916965,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4162.468134754968,2723.3458081129857,2809.5401613089375,5108.66761223072,27339.017542778143,4769.881834052118,3563.925125339235,2649.139637904425,2497.366289265577,23127.331552009917,5405.325570553275,3982.883996805892,3090.8707454532396,2866.0896489721927,23281.908031552695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04677749057973125,0.0014800071953420296,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8951670804365249,0.8951670804365249,0.9229942185024701,0.9229942185024701,0.8241590501840724,0.8241590501840724,1.0400197957550508,1.0400197957550508,0.9244933020072962,0.9244933020072962,0.3836944100948246,0.4295365428294479,0.268580571769693,0.3335362444339332,0.32589550917556875,0.42066943014962543,0.47482793665003464,0.3055474181607319,0.36915960578889956,0.3322465747465594,21.91967725663865,21.91967725663865,22.99202460154936,22.99202460154936,19.32720942241751,19.32720942241751,27.834727829010205,27.834727829010205,23.050679422732642,23.050679422732642,8.066028845923114,8.847621603699636,6.497882178441472,7.313638573637206,7.2084136192905675,8.689417987996023,9.708404063183707,6.940258289391295,7.836974831202738,7.295704017649101,213.13077753604927,213.13077753604927,0.0,236.81197504005473,0.0,213.13077753604927,236.81197504005473,0,0
+2017/05/16 16:00:00,231.28683026617367,0,948.7069838200637,0,0,0,29.517871398478434,0.0,16.693521066485914,0.0,131.64086955684016,0,39.380909295966944,2.693014810668056e-09,14.053658945709188,0,0,0.0,487.33240115698993,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3397.5273558629865,2074.9344912746387,2738.5467446059442,5223.37527939573,26742.112526867015,3605.635713226987,2746.84207832733,2079.800952282007,1800.887651610417,19885.012058916152,4098.216780242693,3110.6401429688026,2517.845967281213,2095.4637520962265,19993.70367508953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05050986253216782,0.0015980968422392584,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8818528488269344,0.8818528488269344,0.8844427574583016,0.8844427574583016,0.8399823733241395,0.8399823733241395,1.0424706117876599,1.0424706117876599,0.9480096514712714,0.9480096514712714,0.35764998540100645,0.3952538780730603,0.26505551041625774,0.32142981583745805,0.322500060301598,0.38632922434942824,0.4279884579517769,0.2990349797413963,0.35199721062495554,0.327844563599068,21.41772705028103,21.41772705028103,21.514799303251138,21.514799303251138,19.88678044267361,19.88678044267361,27.94168366894337,27.94168366894337,23.982539129250227,23.982539129250227,7.66198465536543,8.25463397987248,6.458708492329464,7.148060497051404,7.1624476476730194,8.108516328771941,8.819758185639898,6.858136937628004,7.578106344622995,7.235019853575196,231.28683026617367,231.28683026617367,0.0,256.9853669624152,0.0,231.28683026617367,256.9853669624152,0,0
+2017/05/16 17:00:00,241.16467561586495,0,977.7916763502841,0,0,0,32.592795126005235,0.0,16.693521149792748,0.0,133.89528835348938,0,39.380909295966944,2.8030020274810804e-09,18.60216168780756,0,0,0.0,516.4170936872104,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3100.2604713389283,1816.483644336423,2855.771169439602,5226.410989645343,27550.58385571276,3891.482112210103,2871.4262523293332,2747.080506684775,1969.77025836744,24530.851358180716,4318.745870131866,3184.6145268345845,3218.394863325431,2231.041030618076,24513.380618776708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0520583531057024,0.0016470900045989236,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8832062979348344,0.8832062979348344,0.8917444372340284,0.8917444372340284,0.8596483520007177,0.8596483520007177,1.0403838432188444,1.0403838432188444,0.9621128402769685,0.9621128402769685,0.3615049344798266,0.4014749144822456,0.2867357005175446,0.32839571052805583,0.34240529324680236,0.38642747862052546,0.43062254345849654,0.32078510589737214,0.3559313344828473,0.34727737876232595,21.46842132614745,21.46842132614745,21.789951141400692,21.789951141400692,20.59680438883254,20.59680438883254,27.850601333152326,27.850601333152326,24.5518848268634,24.5518848268634,7.719966129864858,8.35850125952112,6.707933146638595,7.242572697049354,7.43888715148816,8.110106454718462,8.867229528474311,7.139417181021727,7.636338697964618,7.509112824219173,241.16467561586495,241.16467561586495,0.0,267.9607506842944,0.0,241.16467561586495,267.9607506842944,0,0
+2017/05/16 18:00:00,225.38431965991973,0,967.6793490507937,0,0,0,31.97118837796392,0.0,17.661432577784552,0.0,110.93442390708215,0,39.380909295966944,2.9611068315094297e-09,25.43636549816103,0,0,0.0,541.795118900264,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1983.7809897456075,782.8609957907604,2049.9286275945833,4921.85058094455,24053.67884948623,3754.5231626586583,2427.192533374514,2922.8880185902153,1711.21074104591,28014.42811067478,4055.2541703547604,2618.0087111788766,3342.3517194955807,1879.6172752590116,27875.263824032685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05151996531000929,0.0016300557900304448,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8633743097433477,0.8633743097433477,0.8487544552353615,0.8487544552353615,0.8459625016651535,0.8459625016651535,1.0215235145109534,1.0215235145109534,0.9632930689728202,0.9632930689728202,0.36144824581116386,0.3830086985198727,0.29481818750518546,0.3290150729912556,0.3731205264466913,0.3792829247704366,0.39966464482768127,0.3219998252926162,0.349349739086642,0.3767300175135013,20.733136198801134,20.733136198801134,20.201501622322013,20.201501622322013,20.100985150510738,20.100985150510738,27.03464627371355,27.03464627371355,24.599884231829463,24.599884231829463,7.719108903128998,8.055020077890063,6.805919858248899,7.251075733893941,7.898501644430624,7.995555438743537,8.32810596839056,7.155717013336016,7.539289489535008,7.955152225056608,225.38431965991973,225.38431965991973,0.0,250.42702184435524,0.0,225.38431965991973,250.42702184435524,0,0
+2017/05/16 19:00:00,216.21500436482626,0,971.2083481000988,0,0,0,27.538472302954787,0.0,20.507991706089406,0.0,101.68988858149199,0,39.380909295966944,3.0120118170940517e-09,27.0977424753112,0,0,0.0,580.8144704621134,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1136.8049401180851,24.642805993559644,1276.9721306450685,4506.383911141908,20173.293689347425,3009.1739680914634,1751.647632832912,2323.3228210430066,1169.5349372558421,25807.317699588377,3227.1508146791048,1836.044277250299,2682.058918298391,1272.217912702926,25493.421466660104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05170785183334742,0.0016360003886611528,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8513824569348722,0.8513824569348722,0.8221662051723005,0.8221662051723005,0.8315886398234938,0.8315886398234938,1.0054860050494765,1.0054860050494765,0.9537481716279812,0.9537481716279812,0.3581418249964037,0.36788684747938105,0.2953941964885068,0.3271301222717169,0.38401208673141785,0.3710434125276424,0.3770898857906377,0.3173677728863289,0.342469104065539,0.38520115327350535,20.296411816347884,20.296411816347884,19.257479335029274,19.257479335029274,19.588641311746272,19.588641311746272,26.35121302153796,26.35121302153796,24.213260153944645,24.213260153944645,7.669347096948599,7.817346481484336,6.813008339902581,7.225248422305043,8.071135796417849,7.866153453313828,7.960830789375507,7.093896767484395,7.439800393189685,8.090289414069204,216.21500436482626,216.21500436482626,0.0,240.23889373869582,0.0,216.21500436482626,240.23889373869582,0,0
+2017/05/16 20:00:00,228.66903597393704,0,889.1032023333737,0,0,0,21.09827753462734,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,2.909309703027863e-09,23.099004472697377,0,0,0.0,534.1996772079324,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,264.69003314588895,4104.475182504613,14580.114590177473,1954.127301169939,946.337731473235,1531.8056107587927,338.5102650206966,21802.491283711774,2055.8038532648534,937.2347620484786,1819.2161645147573,334.4870849454471,21435.96800828513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04733651305689814,0.0014976942768487793,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8448725750780427,0.8448725750780427,0.7516800316966996,0.7516800316966996,0.8346150245285153,0.8346150245285153,0.9898168189105941,0.9898168189105941,0.9567899725285818,0.9567899725285818,0.37182969426822027,0.37783053302139874,0.31397915057656783,0.3432748566418818,0.40605697720454864,0.38043975261655255,0.3822557491828405,0.33199906533697293,0.35453472971805433,0.4048634521161368,20.061833499607886,20.061833499607886,16.89923335190646,16.89923335190646,19.69579653870761,19.69579653870761,25.692850339428176,25.692850339428176,24.33608314092173,24.33608314092173,7.878377069081267,7.972535269109102,7.049247316591504,7.451346974140094,8.436063006722392,8.013955381157785,8.04295496632355,7.292270147115971,7.615590948265165,8.41577334811491,228.66903597393704,228.66903597393704,0.0,254.07670663770782,0.0,228.66903597393704,254.07670663770782,0,0
+2017/05/16 21:00:00,201.0525424441447,0,867.2272780147764,0,0,0,6.920448368663235,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.961106831509429e-09,25.66813182435506,0,0,0.0,547.8141054018793,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3291.758487140255,5838.666559142616,0.0,0.0,0.0,0.0,7374.7289248204215,0.0,0.0,0.0,0.0,6501.078425381458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046171822642533035,0.0014608442839944566,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7461587731176648,0.7461587731176648,0.6296636228455765,0.6296636228455765,0.7562187709802143,0.7562187709802143,0.9713804897808752,0.9713804897808752,0.9555512968649365,0.9555512968649365,0.3275902541343316,0.30942327680810394,0.2553691610555495,0.23683368977102415,0.4086727713255063,0.3339011380369995,0.306067638602662,0.28462232013116534,0.24248541271371873,0.4041383269783202,16.7234489366828,16.7234489366828,13.32079416182971,13.32079416182971,17.044714184860098,17.044714184860098,24.930257171032395,24.930257171032395,24.286023569936106,24.286023569936106,7.231539175210926,6.989984156325377,6.353758566097852,6.163927652903169,8.48074423106776,7.318725712818974,6.946895598147705,6.682766811207671,6.220280128657436,8.403476161660933,201.0525424441447,201.0525424441447,0.0,223.39171382682744,0.0,201.0525424441447,223.39171382682744,0,0
+2017/05/16 22:00:00,137.0081705672706,0,678.2564222650344,0,0,0,0.4348636466193286,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.856611184176149e-09,20.820349312472707,0,0,0.0,518.5498359585858,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1721.5827086219833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.036110874310444116,0.0011425228918266611,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5243843464675834,0.5243843464675834,0.4030486787067709,0.4030486787067709,0.539918984180266,0.539918984180266,0.9122786026787616,0.9122786026787616,0.7657768834708133,0.7657768834708133,0.19686230159080878,0.1731071045570313,0.12245108447063678,0.09707515741146727,0.342204439231148,0.18822998010649059,0.15134845441589675,0.13832145002851018,0.0814167342600968,0.3226246239983401,10.751584944423868,10.751584944423868,8.385039453539406,8.385039453539406,11.100461462480865,11.100461462480865,22.575382951154282,22.575382951154282,17.353962677600364,17.353962677600364,5.803609036426337,5.621133501858182,5.310596156574476,5.195155092604338,7.436013717203608,5.73457351552689,5.474654612856156,5.396395753032138,5.1372577965420305,7.16412529485855,137.0081705672706,137.0081705672706,0.0,152.23130063030067,0.0,137.0081705672706,152.23130063030067,0,0
+2017/05/16 23:00:00,87.42676793028087,0,533.0660742679214,0,0,0,0.11597936817189033,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6366182556036865e-09,11.799807500634088,0,0,0.0,479.83054549910526,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,447.4930616497612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02838083263961912,0.0008979497616452846,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2976745954766392,0.2976745954766392,0.17791690912173266,0.17791690912173266,0.3162734799446232,0.3162734799446232,0.8507501687399265,0.8507501687399265,0.5114721687188982,0.5114721687188982,0.05925648802851103,0.031034909826779228,-0.01071140441786834,-0.045995173462837706,0.21050042236765026,0.027290772415285724,-0.014946630629029154,-0.01599467709676897,-0.026267679018160746,0.1822478978030983,6.8412090114886865,6.8412090114886865,5.656177544287274,5.656177544287274,7.079424880445288,7.079424880445288,20.273550511885844,20.273550511885844,10.469553572723186,10.469553572723186,5.072697758904468,5.019938872385893,5.002375067230446,5.043797224005601,5.9190279644599855,5.015417963629872,5.004624574691491,5.005295863470778,5.0142836004899465,5.688559125721156,87.42676793028087,87.42676793028087,0.0,97.14085325586764,0.0,87.42676793028087,97.14085325586764,0,0
+2017/05/17 00:00:00,40.2948783021434,0,500.88229429988075,0,0,0,0.4406895472770056,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.4714120324409479,2.579274072803139e-09,9.585455723422998,0,0,0.0,447.64676553106455,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,447.41436272926614,1046.0089315653595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.026667344355380256,0.0008437361867318277,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5150165258236613,0.5150165258236613,0.4080116706849198,0.4080116706849198,0.505886430732025,0.505886430732025,0.8378864311348986,0.8378864311348986,0.7097019111461775,0.7097019111461775,0.28303842496873177,0.2728259446613115,0.16144725860432313,0.19151717001717516,0.43914341007207597,0.22362813117033759,0.19624626740470621,0.13197214685552464,0.13182589843169862,0.3943175911778385,10.546252152584472,10.546252152584472,8.46942409053652,8.46942409053652,10.349782993947102,10.349782993947102,19.812058217974027,19.812058217974027,15.59560448448012,15.59560448448012,6.664029205841572,6.545755434689639,5.540185505312934,5.76049510777834,9.022832735317323,6.037482230956442,5.798579202962614,5.36081262731642,5.360012771135018,8.239144906323006,40.2948783021434,40.2948783021434,0.0,44.77208700238156,0.0,40.2948783021434,44.77208700238156,0,0
+2017/05/17 01:00:00,23.732590445273825,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5354950215960343,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5457646487950512,0.5457646487950512,0.4520641880238154,0.4520641880238154,0.5044804167789778,0.5044804167789778,0.835801235405374,0.835801235405374,0.8152964959304839,0.8152964959304839,0.30325785872329875,0.30137945636281877,0.15027598599348943,0.2193535121472257,0.5295293101035683,0.25666039594305123,0.23744024052726034,0.1313037872121021,0.172005091581741,0.47138703598256065,11.234450192977022,11.234450192977022,9.264737459444959,9.264737459444959,10.319847453672722,10.319847453672722,19.737901269564873,19.737901269564873,19.01838656795546,19.01838656795546,6.911182677327119,6.887494000872422,5.467944940113753,5.998118657038219,10.865973018827944,6.367520807020028,6.169911236497157,5.357164517342781,5.613240198609887,9.639908471107447,23.732590445273825,23.732590445273825,0.0,26.369544939193137,0.0,23.732590445273825,26.369544939193137,0,0
+2017/05/17 02:00:00,28.344205635575157,0,71.02024409708369,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248425491022629,0,0,0.0,17.784715328267474,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0037811704008970074,0.00011963359579119238,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5752050309032474,0.5752050309032474,0.486558099990337,0.486558099990337,0.5258709999799808,0.5258709999799808,0.8390499635764164,0.8390499635764164,0.8815924356967024,0.8815924356967024,0.3052273569919631,0.30484960984747045,0.15222110052288162,0.22294455679351904,0.5613887635108251,0.26006402299482995,0.24333398992924823,0.12958318323119358,0.17871705379289807,0.4924965577758913,11.931772596498647,11.931772596498647,9.945745802914928,9.945745802914928,10.784520016136256,10.784520016136256,19.853516538936248,19.853516538936248,21.407981730702616,21.407981730702616,6.936180430877911,6.9313731781683,5.480149486048788,6.031135975100852,11.599841061163147,6.404133483457514,6.22885698675293,5.34785841043913,5.662101032338214,10.068165378033868,28.344205635575157,28.344205635575157,0.0,31.49356181730573,0.0,28.344205635575157,31.49356181730573,0,0
+2017/05/17 03:00:00,23.722029728035213,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249343043574216,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5688952489466279,0.5688952489466279,0.4824643083374517,0.4824643083374517,0.5189079512251057,0.5189079512251057,0.8020786394276928,0.8020786394276928,0.8938047194822557,0.8938047194822557,0.29774870689936317,0.2979493363470361,0.14497115249109796,0.21646415174220082,0.5839268913000715,0.25004127776232343,0.2342672590091783,0.11861594069815762,0.1690065445451811,0.5046333532115624,11.77915477190507,11.77915477190507,9.862239882398356,9.862239882398356,10.631087029739362,10.631087029739362,18.563948427325414,18.563948427325414,21.86798340052779,21.86798340052779,6.842129201486003,6.844621442694262,5.435460727504335,5.971945162417782,12.145576631587943,6.297714471143024,6.13878088390409,5.291433311820171,5.592019195728895,10.323099491764722,23.722029728035213,23.722029728035213,0.0,26.357810808928015,0.0,23.722029728035213,26.357810808928015,0,0
+2017/05/17 04:00:00,43.853584031391264,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,3.8203904659348105,0.0,0.5250600158223286,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6289593882937413,0.6289593882937413,0.544495018449598,0.544495018449598,0.5786207656948864,0.5786207656948864,0.8461591274888403,0.8461591274888403,0.8518358119544824,0.8518358119544824,0.28711021152243066,0.28690162568946315,0.14863592839467438,0.22144048017327667,0.39495691029410823,0.25369436191437233,0.23824456735634933,0.12144685264865587,0.17348022197799512,0.3686706184130925,13.302010546313838,13.302010546313838,11.205223061916996,11.205223061916996,12.015111282737365,12.015111282737365,20.10805348808144,20.10805348808144,20.312813759578532,20.312813759578532,6.7124125232389815,6.709916980894434,5.457776896826985,6.0172411938366395,8.24971715780653,6.336012688966306,6.177869687762836,5.30551929243255,5.623817482563425,7.8294255492139655,43.853584031391264,43.853584031391264,0.0,48.72620447932363,0.0,43.853584031391264,48.72620447932363,0,0
+2017/05/17 05:00:00,76.08075885440405,0,212.9421150752648,0,0,0,0.27201724178597103,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.4976653844196015,0.0,0.5250331982426077,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121.57943111023584,6.77292890160199,107.81329038048106,824.6370216093779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8255758874791934,0.8255758874791934,0.7821791194174367,0.7821791194174367,0.8060451288261402,0.8060451288261402,0.927043018107977,0.927043018107977,0.8867981982667271,0.8867981982667271,0.3690010992906294,0.3672732479836405,0.22440930618566948,0.29496762816238253,0.5869997724989976,0.3304176342602499,0.3137815426775363,0.19983940571155281,0.25040229891250115,0.5432213170831521,19.37688631078521,19.37688631078521,17.89373383625653,17.89373383625653,18.699544234898482,18.699544234898482,23.150649260030463,23.150649260030463,21.603322027230902,21.603322027230902,7.834526595810971,7.80790827972632,6.044758586918832,6.80775755810933,12.221690308923627,7.27039122237646,7.0466585857479345,5.828140316167932,6.301474361984262,11.175972406321009,76.08075885440405,76.08075885440405,0.0,84.5341765048934,0.0,76.08075885440405,84.5341765048934,0,0
+2017/05/17 06:00:00,90.07731455831424,0,673.5567264357245,0,0,0,0.3901106875696642,0.0,10.576478033044985,0.0,73.80580873715317,0,4.779795333077804,2.5209936131368523e-09,0.5251217649475916,0,0,0.0,442.86943510418763,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1582.3024883730634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03586065902339562,0.0011346062545588892,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9161723586926371,0.9161723586926371,0.9415339264617227,0.9415339264617227,0.9326290770081087,0.9326290770081087,1.0105165622615635,1.0105165622615635,0.8838765104642282,0.8838765104642282,0.5051661954317077,0.5034342906153026,0.362791585649593,0.4291991524762938,0.8052838171766001,0.47001150469594627,0.45253360383332414,0.3426580609306339,0.3907473559420019,0.7480299368109314,22.726244395580608,22.726244395580608,23.723739569799264,23.723739569799264,23.370577274097798,23.370577274097798,26.56455018135547,26.56455018135547,21.493552346322502,21.493552346322502,10.334437738774383,10.297629751908417,7.739459238519743,8.841540271024584,18.673466974404874,9.612669533827855,9.27366109248625,7.442505703131815,8.180426115418086,16.782876252647185,90.07731455831424,90.07731455831424,0.0,100.0859050647936,0.0,90.07731455831424,100.0859050647936,0,0
+2017/05/17 07:00:00,150.17576665534637,0,828.0994849241926,0,0,0,6.022092351234665,0.0,8.341787441130187,0.0,69.33401494192633,0,39.380909295966944,3.0120371352777685e-09,27.096962622076216,0,0,0.0,561.9218410801116,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1972.891587565394,0.0,0.3971575355418132,0.1646839863765069,0.18824934717366143,0.19693185762264453,9672.650001650698,0.4552755696398238,0.18609488038438607,0.20615150315057124,0.23333374185937508,8323.633346862522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04408862995617316,0.0013949335195031173,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5484652559356141,0.5484652559356141,0.4734519015140864,0.4734519015140864,0.5711496649019734,0.5711496649019734,0.9775731340051922,0.9775731340051922,0.8355937188582518,0.8355937188582518,0.30785423985765553,0.29088249251039927,0.2513442563573317,0.2407027848724459,0.5098559253994821,0.2917785370858948,0.2640628366140035,0.24844885882685713,0.21975949029177333,0.49398933031178094,11.296851022460572,11.296851022460572,9.680951050471577,9.680951050471577,11.833485139728296,11.833485139728296,25.184945121218874,25.184945121218874,19.73053119167787,19.73053119167787,6.969777398989308,6.757861482192283,6.311310270394017,6.202361005619963,10.434759032670385,6.768745468900477,6.447771424568714,6.281195443870587,6.001824267600725,10.0991779457201,150.17576665534637,150.17576665534637,0.0,166.86196295038485,0.0,150.17576665534637,166.86196295038485,0,0
+2017/05/17 08:00:00,166.86204997031604,0,880.4102927666481,0,0,0,6.919774562796864,0.0,11.809913855752498,0.0,83.2008179303116,0,39.380909295966944,2.9611319817995197e-09,25.55063432252701,0,0,0.0,560.997120153751,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2530.162207876765,743.8433242504955,0.0,0.0,0.0,0.0,10680.373786534634,0.0,0.0,0.0,0.0,8911.188418937942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0468736961126696,0.0014830510713434106,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5763413838811852,0.5763413838811852,0.4759385121350405,0.4759385121350405,0.611719459573089,0.611719459573089,0.9850963746091134,0.9850963746091134,0.8959742573554533,0.8959742573554533,0.29587547707564266,0.26747610784578146,0.245368821752917,0.2078406639838426,0.4542577131170146,0.2717629418073786,0.22884392907012133,0.2453953233116216,0.17744610597563523,0.4445249270740342,11.959441674267794,11.959441674267794,9.730620478378682,9.730620478378682,12.84889227244713,12.84889227244713,25.496349597022217,25.496349597022217,21.950340705096167,21.950340705096167,6.818941825538502,6.4855520732592,6.2495469587926635,5.895907631063196,9.30651791571836,6.533697136400519,6.086550356438423,6.249817571601483,5.652704666095531,9.122714087217403,166.86204997031604,166.86204997031604,0.0,185.40227774479558,0.0,166.86204997031604,185.40227774479558,0,0
+2017/05/17 09:00:00,190.08185667747085,0,891.06706513182,0,0,0,12.138728679594777,0.0,11.415947470965692,0.0,106.27511244621549,0,39.380909295966944,2.856635947439591e-09,20.87115878187132,0,0,0.0,518.4183637501064,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3266.1839572437757,8121.922979879069,0.0,0.0,0.0,0.0,15230.836451103643,0.0,0.0,0.0,0.0,13574.586431448866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04744107056693369,0.0015010024035837074,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6869010151634017,0.6869010151634017,0.5748465606149887,0.5748465606149887,0.7306755685709774,0.7306755685709774,1.004374039690157,1.004374039690157,0.9583969755114997,0.9583969755114997,0.35538210899099165,0.3222309287247407,0.30931525903714624,0.2660436300377415,0.4617790383290027,0.3385821259609809,0.28920817596464243,0.3191366238450791,0.24252130546288764,0.45346699712715116,14.919334085182356,14.919334085182356,11.92305582164883,11.92305582164883,16.237473146454633,16.237473146454633,26.304185264596313,26.304185264596313,24.401117910154454,24.401117910154454,7.628169583638211,7.158825178966552,6.988589715803371,6.46963659010801,9.451350409996323,7.384486784614339,6.737614929353825,7.117396879708693,6.220642296249366,9.291433145019099,190.08185667747085,190.08185667747085,0.0,211.20206297496762,0.0,190.08185667747085,211.20206297496762,0,0
+2017/05/17 10:00:00,217.8126298756813,0,972.8163604786565,0,0,0,9.21856793419307,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.803026571221356e-09,18.519566855768435,0,0,0.0,511.44177781558284,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3900.6330253457936,14246.559632120656,0.0,0.0,0.0,0.0,7149.522011563922,0.0,0.0,0.0,0.0,5452.91425012818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05179346360344732,0.001638709085390787,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7878514558464221,0.7878514558464221,0.6624351178959743,0.6624351178959743,0.8447741451370855,0.8447741451370855,1.03565878529779,1.03565878529779,1.036751933743655,1.036751933743655,0.3308822767306908,0.29510072297130047,0.28040801360030726,0.24377925933800673,0.4778257937098779,0.322740381462592,0.2707154743662064,0.3006684543042285,0.22858535593078994,0.47320894159224697,18.083065858384614,18.083065858384614,14.21867668025915,14.21867668025915,20.05830019877928,20.05830019877928,27.644952152727768,27.644952152727768,27.692456689619945,27.692456689619945,7.276808490020159,6.809395044423866,6.633145085733247,6.233369575811778,9.768496439447489,7.1656849276959775,6.5218616429672664,6.878566425071369,6.084090928873906,9.676112283331278,217.8126298756813,217.8126298756813,0.0,242.01403319520142,0.0,217.8126298756813,242.01403319520142,0,0
+2017/05/17 11:00:00,227.5132532338145,0,1037.716002370613,0,0,0,2.6211774480665344,0.0,16.86091082671979,0.0,147.76209134187457,0,39.380909295966944,2.856635947439592e-09,20.888164318329892,0,0,0.0,523.1058909387233,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4368.672227185917,5055.504470106816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05524876860937251,0.0017480325272319888,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7731336900602336,0.7731336900602336,0.6223009046682614,0.6223009046682614,0.8592343528902796,0.8592343528902796,1.0677127777982527,1.0677127777982527,1.1368300504334872,1.1368300504334872,0.28098081520340557,0.22530611648847518,0.25793902918372047,0.16475884581497002,0.5312860574303997,0.27183343120004955,0.19920546513323967,0.27975465686468154,0.14337070759587045,0.5166723636692324,17.594645521693863,17.594645521693863,13.125476455667894,13.125476455667894,20.58169175295521,20.58169175295521,29.055903716766935,29.055903716766935,32.22027165466841,32.22027165466841,6.639845589464258,6.053143586311037,6.381217852016789,5.562599670622362,10.905293291441467,6.534495267029129,5.822885600434745,6.6255191620293346,5.425890433861937,10.582270107839634,227.5132532338145,227.5132532338145,0.0,252.79250359312724,0.0,227.5132532338145,252.79250359312724,0,0
+2017/05/17 12:00:00,219.40763426337858,0,981.2074509957639,0,0,0,14.880462127852072,0.0,17.070463315671784,0.0,129.49988082968767,0,39.380909295966944,2.803026571221356e-09,18.575918691397003,0,0,0.0,502.0876920764181,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4690.843676709304,12345.107324898196,0.0,0.0,0.0,0.0,17084.71863574617,0.0,0.0,0.0,0.0,15663.765170976578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052240211477914814,0.0016528438767299818,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.804147704443475,0.804147704443475,0.6395390195107507,0.6395390195107507,0.9064304413194191,0.9064304413194191,1.078214410907527,1.078214410907527,1.160453581426559,1.160453581426559,0.36890621215460395,0.30209565066425204,0.36872057957658266,0.23823110372092984,0.5751130347477854,0.3543315111133514,0.2693234705876111,0.389380303885028,0.20579565746160497,0.5677194493184001,18.634597165996425,18.634597165996425,13.586460754950764,13.586460754950764,22.34994922267721,22.34994922267721,29.52614520419587,29.52614520419587,33.337967755561976,33.337967755561976,7.833061515087493,6.896508382503981,7.830196412288984,6.1777362476510405,11.929535031958707,7.612578881122488,6.506204718238067,8.158086782589521,5.878332462854345,11.750906030337632,219.40763426337858,219.40763426337858,0.0,243.78626029264285,0.0,219.40763426337858,243.78626029264285,0,0
+2017/05/17 13:00:00,217.27037169202399,0,950.800234162135,0,0,0,15.316925352674552,0.0,16.965687115311,0.0,129.2730206906943,0,39.380909295966944,2.7484972919047437e-09,16.333829234628595,0,0,0.0,507.1708277553334,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4610.293944596336,14490.778069040467,0.0,0.0,0.0,0.0,17130.154969110663,0.0,0.0,0.0,0.0,15077.612279178806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05062130873086418,0.0016016229222816025,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8336266984128392,0.8336266984128392,0.6682060943250833,0.6682060943250833,0.9374866227909245,0.9374866227909245,1.0844910748725287,1.0844910748725287,1.169356889234192,1.169356889234192,0.4071472081442709,0.3400025900148182,0.41302898768098817,0.2781574430674339,0.5992519016642278,0.397825430530318,0.3125002311331233,0.4422769305224682,0.2502696845804425,0.5970952205440417,19.66076071242985,19.66076071242985,14.38161159383786,14.38161159383786,23.562834558024463,23.562834558024463,29.80904688185997,29.80904688185997,33.763743241137206,33.763743241137206,8.454649985427423,7.404626266997639,8.555804545556427,6.606952423317736,12.529243484125075,8.297368260318692,7.029913088256791,9.080839725387918,6.300092600111611,12.47463396932335,217.27037169202399,217.27037169202399,0.0,241.41152410224888,0.0,217.27037169202399,241.41152410224888,0,0
+2017/05/17 14:00:00,189.5955024677455,0,875.805987110083,0,0,0,3.476256510473563,0.0,17.133076708931206,0.0,115.5196477718057,0,39.380909295966944,2.6930388616851083e-09,14.085612177874967,0,0,0.0,467.6669332158255,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4075.7822358716694,8069.080483703825,0.0,0.0,0.0,0.0,28.27872805856979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04662855946907418,0.0014752951188143877,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7917123484192861,0.7917123484192861,0.6303841069656909,0.6303841069656909,0.9000163914646466,0.9000163914646466,1.0789349152690277,1.0789349152690277,1.1634624411650796,1.1634624411650796,0.3240412866006487,0.2629151092669644,0.32307270902409424,0.2030086658078395,0.598617682042454,0.31207322876463467,0.23364517225082487,0.3511251135703216,0.17335788414101228,0.5813098593906296,18.21271677807823,18.21271677807823,13.340033459440733,13.340033459440733,22.104294203993675,22.104294203993675,29.558549922566158,29.558549922566158,33.48158438882855,33.48158438882855,7.183251452795531,6.4351777236668255,7.1701656266274085,5.854662288181373,12.513163399098033,7.0243480250362325,6.132727087500953,7.565286851799755,5.622936818261564,12.081077189551237,189.5955024677455,189.5955024677455,0.0,210.6616694086061,0.0,189.5955024677455,210.6616694086061,0,0
+2017/05/17 15:00:00,182.12932157313614,0,897.7846916215558,0,0,0,2.8122184169735593,0.0,17.133076708931206,0.0,108.75639138185811,0,39.380909295966944,2.6930388616851083e-09,14.046725766713243,0,0,0.0,489.6456377272984,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3780.709326759048,6130.322094196035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04779872197703795,0.0015123182448958082,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7566109441222135,0.7566109441222135,0.5979616362172426,0.5979616362172426,0.870243405173408,0.870243405173408,1.075716926469894,1.075716926469894,1.1667976040417323,1.1667976040417323,0.23937436161008457,0.18262186942535713,0.23830269982965296,0.12436654820669342,0.533305005794843,0.21622535256476136,0.14314536190196245,0.2557251599539091,0.08503773721667296,0.507352429406104,17.05732593900815,17.05732593900815,12.496548298661963,12.496548298661963,20.985978856694146,20.985978856694146,29.413961432800775,29.413961432800775,33.641102723015194,33.641102723015194,6.1890943631100725,5.691391935536927,6.178445934801289,5.320395955777286,10.950647313152786,5.969797628607225,5.42455148124894,6.357545871455812,5.149742376409634,10.381086680673562,182.12932157313614,182.12932157313614,0.0,202.36591285904015,0.0,182.12932157313614,202.36591285904015,0,0
+2017/05/17 16:00:00,207.4505769573858,0,951.0093059595829,0,0,0,4.995051755913957,0.0,17.346139882338,0.0,131.64086955684016,0,39.380909295966944,2.6930388616851083e-09,14.08760646363361,0,0,0.0,489.6347232965093,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4239.477430180326,13060.093555646712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050632439868221184,0.0016019751037085353,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7717391081332128,0.7717391081332128,0.6064125736504815,0.6064125736504815,0.8913043678906635,0.8913043678906635,1.0829392231057646,1.0829392231057646,1.1803175918291762,1.1803175918291762,0.2092635305176753,0.15130703382782362,0.2146053068901933,0.09553227023282479,0.5178047191119874,0.17588743908372734,0.10268590723562428,0.22213395144201847,0.04746005384395872,0.49031926322367475,17.548843540248185,17.548843540248185,12.712007332884113,12.712007332884113,21.773306158399635,21.773306158399635,29.738974140792706,29.738974140792706,34.29123291596211,34.29123291596211,5.9082392691180985,5.474394584369236,5.955291539249927,5.188998407170843,10.606969515759374,5.641273173841924,5.218377043231612,6.023635757040921,5.046631692650564,10.023104302542833,207.4505769573858,207.4505769573858,0.0,230.500641063762,0.0,207.4505769573858,230.500641063762,0,0
+2017/05/17 17:00:00,210.6819583801023,0,959.0993419386873,0,0,0,0.8801551160794453,0.0,17.959395105908648,0.0,133.89528835348938,0,39.380909295966944,3.7717474864246e-05,18.566172791182993,0,0,0.019398683547682108,497.7053605920658,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3649.585551697358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051063159376092286,0.0016156027687013134,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.582241087707317,0.582241087707317,0.399600207359762,0.399600207359762,0.7241408365044786,0.7241408365044786,1.0733202517330749,1.0733202517330749,1.114035773050219,1.114035773050219,0.20461616595247,0.15086005811176997,0.06344604593558932,0.13690269348514972,0.4068575205717581,0.16683537073738225,0.13599742803508677,0.06558531571358285,0.08835643965803118,0.3775950177529257,12.10399420826684,12.10399420826684,8.327026616748682,8.327026616748682,16.035456304774144,16.035456304774144,29.30651173263837,29.30651173263837,31.158877338091543,31.158877338091543,5.868275268863471,5.471593124236293,5.083342843610353,5.388299171562039,8.449706235325849,5.5768876635899005,5.3831767544628235,5.089058992542519,5.161662344687969,7.968810873098349,210.6819583801023,210.6819583801023,0.0,234.0910648667803,0.0,210.6819583801023,234.0910648667803,0,0
+2017/05/17 18:00:00,194.54884294364237,0,984.7974584947892,0,0,0,0.9543469534570553,0.0,17.644803712327896,0.0,110.93442390708215,0,39.380909295966944,1.2291109856227257e-05,25.63434678369841,0,0,0.006321364757850678,558.9069069795017,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3969.6503399354406,0.0,0.0,0.0,0.0,9.01230844076901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0524313461363054,0.001658891244089613,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5636103202776036,0.5636103202776036,0.4876306794010402,0.4876306794010402,0.7569309950599978,0.7569309950599978,1.0681525547867217,1.0681525547867217,1.1089928183817115,1.1089928183817115,0.1297099666443068,0.1313443253900377,0.18052522875396493,0.15218027181681562,0.4991151737136568,0.08112723508418077,0.18061483070179862,0.17610822540354568,0.10484493085575468,0.4755054521747749,11.652654639229539,11.652654639229539,9.967744057125344,9.967744057125344,17.067623216659413,17.067623216659413,29.075517970001272,29.075517970001272,30.926380546809966,30.926380546809966,5.348539933156317,5.357385257793183,5.675585425092635,5.479891688816679,10.206400794469204,5.136283131799985,5.676257177367589,5.642886289493674,5.2276610837320305,9.721951040371465,194.54884294364237,194.54884294364237,0.0,216.16538104849153,0.0,194.54884294364237,216.16538104849153,0,0
+2017/05/17 19:00:00,192.81976005762405,0,952.315642100059,0,0,0,6.755962166555812,0.0,17.895257535286092,0.0,101.68988858149199,0,39.380909295966944,3.0120371355505144e-09,27.097742475311204,0,0,0.0,561.9217644620736,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3902.681469808051,4221.298911770556,0.0,0.0,0.0,0.0,8085.118434022349,0.0,0.0,0.0,0.0,6338.114798032685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05070199017195201,0.0016041756268380177,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5787763044668892,0.5787763044668892,0.43544772574812,0.43544772574812,0.7949687246201848,0.7949687246201848,1.0563265040984,1.0563265040984,1.1083265207410995,1.1083265207410995,0.17264884730066765,0.1890519665994482,0.2718401230884748,0.12565748412445635,0.5393836776575562,0.12514103210534955,0.1690410567030292,0.2818108749283132,0.0817565764935902,0.5284847728731734,12.018918240531605,12.018918240531605,8.954961312299332,8.954961312299332,18.32255924242247,18.32255924242247,28.550466150656632,28.550466150656632,30.895725860131904,30.895725860131904,5.61784502427048,5.741013071656781,6.534571048192646,5.327086610104047,11.08826567981005,5.324401631926904,5.592261308171828,6.649580001201741,5.13840638782014,10.842657087387849,192.81976005762405,192.81976005762405,0.0,214.2441778418045,0.0,192.81976005762405,214.2441778418045,0,0
+2017/05/17 20:00:00,208.33903397940807,0,895.128998305452,0,0,0,0.7024155471185373,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,2.9093346683640984e-09,23.164864465677155,0,0,0.0,540.2254731800107,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2858.444965531298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04765733089779884,0.0015078447297063953,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3822317195192578,0.3822317195192578,0.22204140668415595,0.22204140668415595,0.5735065842453719,0.5735065842453719,1.011158978629408,1.011158978629408,0.962282245513379,0.962282245513379,-0.0043821194794499444,0.140326250526571,0.08451626212678282,0.04102244826915713,0.4447274968204051,-0.05216125509320453,0.11904830638392555,0.0885007145224093,-0.012649094988337892,0.42092108245733234,8.042570318314858,8.042570318314858,6.02278122778722,6.02278122778722,11.890521535919632,11.890521535919632,26.591862500048038,26.591862500048038,24.558771121436763,24.558771121436763,5.000397511446863,5.407979572762017,5.147910900961449,5.034838286821227,9.126498107727812,5.056328722717893,5.293563117479664,5.162190908162643,5.003312095609601,8.693861369483912,208.33903397940807,208.33903397940807,0.0,231.48781553267563,0.0,208.33903397940807,231.48781553267563,0,0
+2017/05/17 21:00:00,194.44229086282897,0,861.1017876232356,0,0,0,0.4820975180123321,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,1.7236896087820474e-05,25.49621385975525,0,0,0.008866281255191164,541.6797487290834,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1922.4218741510947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04584569699689584,0.0014505258958948232,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.20145870323733617,0.20145870323733617,0.029893479200515667,0.029893479200515667,0.39202366806206473,0.39202366806206473,0.9719815791500577,0.9719815791500577,0.7805394195079715,0.7805394195079715,-0.0372465646312932,-0.010333469953273439,-0.11831458314925006,-0.04824183029157399,0.23951430289480358,-0.051956602842356966,-0.048300803189719355,0.02026155078845639,-0.11160461970412669,0.20543520550567188,5.841638926518996,5.841638926518996,5.018499125157248,5.018499125157248,8.2013547367645,8.2013547367645,24.954913354138966,24.954913354138966,17.839258531789667,17.839258531789667,5.028719728332845,5.002210422440342,5.289953438021783,5.048180769920009,6.190488431056522,5.055887530251425,5.0482986507507235,5.008498342086767,5.257980226568208,5.875252813352404,194.44229086282897,194.44229086282897,0.0,216.04698984758772,0.0,194.44229086282897,216.04698984758772,0,0
+2017/05/17 22:00:00,136.6107661485223,0,693.4115383400496,0,0,0,0.07572982210083376,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,1.7293607223505753e-05,20.78206142749231,0,0,0.008896238924288431,533.6960557946767,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,291.93810286254444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03691774391577343,0.0011680516837047703,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.042224028776062274,-0.042224028776062274,-0.21041882480231638,-0.21041882480231638,0.13828151386414422,0.13828151386414422,0.8940753372675074,0.8940753372675074,0.4743214716329011,0.4743214716329011,-0.11170672220599986,-0.08531109836702856,-0.09947996549073325,-0.1490820542234293,0.052180964508183256,-0.07731310642837172,-0.13362811120048085,-0.1319554979456814,-0.20839510815894655,0.0073668880682962795,5.036909224789284,5.036909224789284,5.91831426271105,5.91831426271105,5.396166699171886,5.396166699171886,21.878245787490613,21.878245787490613,9.698290182581417,9.698290182581417,5.258452734452618,5.150706955976176,5.204948172969381,5.460531701429488,5.056371304182605,5.123766553860179,5.3699314265272164,5.360721526877782,5.900702787130072,5.001123440398771,136.6107661485223,136.6107661485223,0.0,151.78974016502477,0.0,136.6107661485223,151.78974016502477,0,0
+2017/05/17 23:00:00,88.23990332946791,0,522.7097622341621,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,4.436395168799965e-05,11.870884106064368,0,0,0.02282800687402641,469.4514054584719,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02782945491595241,0.000880504554810448,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.27822224732056583,-0.27822224732056583,-0.44178680640905793,-0.44178680640905793,-0.10506549134961016,-0.10506549134961016,0.7313950774361665,0.7313950774361665,0.17621110925285627,0.17621110925285627,-0.13177872148573017,-0.23056811455237244,-0.12130636490781595,-0.2481346461029081,-0.01919982764254515,-0.1610668739099768,-0.25689414766923,-0.20013837450143165,-0.3057776046547471,-0.07050806006046705,6.607703643397599,6.607703643397599,9.071738823685408,9.071738823685408,5.22862041406853,5.22862041406853,16.259828490122928,16.259828490122928,5.64363867741055,5.64363867741055,5.359754942580253,6.103021703581504,5.304812402885673,6.277948534732431,5.007631021669624,5.5376401775663595,6.370019677442556,5.830624292264986,6.943193745293144,5.102933107202176,88.23990332946791,88.23990332946791,0.0,98.04433703274212,0.0,88.23990332946791,98.04433703274212,0,0
+2017/05/18 00:00:00,39.34123213556477,0,513.1594570962595,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.579297557318177e-09,9.543911136562292,0,0,0.0,459.9239283274434,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027320989596435787,0.0008644170665305067,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.009571994538179718,-0.009571994538179718,-0.15023217320240292,-0.15023217320240292,0.13177196584869522,0.13177196584869522,0.7263831343675954,0.7263831343675954,0.48540993124463694,0.48540993124463694,-0.04111336117778134,-0.07001158303112989,-0.03817372045804165,-0.12018198788365395,0.3001939039147479,-0.0851292993994675,-0.15028130848435375,-0.09786062794538912,-0.21215496463738048,0.2231282281563325,5.001896651362927,5.001896651362927,5.467671853015446,5.467671853015446,5.35971802966327,5.35971802966327,16.104568455790897,16.104568455790897,9.922252264570702,9.922252264570702,5.034992885097168,5.101488303588127,5.030167423646986,5.299184449639114,6.872619707937602,5.150065116615465,5.467978120884339,5.198327360609198,5.933559724814728,6.032839242559859,39.34123213556477,39.34123213556477,0.0,43.71248015062753,0.0,39.34123213556477,43.71248015062753,0,0
+2017/05/18 01:00:00,23.722071331900114,0,36.300868581359694,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249759082223242,0,0,0.0,0.8105160688155627,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0019326851315669543,6.114881037011122e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.049280560645152016,0.049280560645152016,-0.07489258735138314,-0.07489258735138314,0.16681554259609255,0.16681554259609255,0.6425728233256515,0.6425728233256515,0.6578488494091148,0.6578488494091148,-0.08674835354757124,-0.10395933228283803,-0.08709040443822516,-0.16090168766328228,0.4259737337637823,-0.145435973023173,-0.18584901092503056,-0.15173260495054527,-0.26018246584393995,0.32506357608297287,5.0502781666941985,5.0502781666941985,5.116136191977745,5.116136191977745,5.576750381429932,5.576750381429932,13.668925100961971,13.668925100961971,14.090219045605437,14.090219045605437,5.155829434790675,5.223829500207032,5.157061151956981,5.536536719055093,8.783649923211556,5.4382602284289305,5.716079962066672,5.477069621925551,6.405416345068147,7.1971060914461304,23.722071331900114,23.722071331900114,0.0,26.35785703544457,0.0,23.722071331900114,26.35785703544457,0,0
+2017/05/18 02:00:00,28.34441493928661,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250518528137151,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.12216115315157221,0.12216115315157221,0.0028104692727607713,0.0028104692727607713,0.23214878677118658,0.23214878677118658,0.665425572170805,0.665425572170805,0.7246883408442719,0.7246883408442719,-0.04770335375393536,-0.05744097333774304,-0.05052625459709339,-0.1191610560877794,0.45797796646861477,-0.143524429648794,-0.17435719069683472,-0.14691398421770108,-0.25148970505657603,0.36605270764892434,5.309126113529061,5.309126113529061,5.000163507874319,5.000163507874319,6.118231620890029,6.118231620890029,14.30292763476703,14.30292763476703,16.05231153449847,16.05231153449847,5.047111073786283,5.068310689590646,5.052852408681602,5.2941197923352235,9.377851647951061,5.426805027895355,5.6301487345156715,5.447221702343185,6.312832368659883,7.789182000817661,28.34441493928661,28.34441493928661,0.0,31.49379437698512,0.0,28.34441493928661,31.49379437698512,0,0
+2017/05/18 03:00:00,23.722213522011348,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251180983335553,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.15540215421573453,0.15540215421573453,0.04088365615667522,0.04088365615667522,0.2597830559088466,0.2597830559088466,0.6660377584838347,0.6660377584838347,0.7502239757748312,0.7502239757748312,-0.03155341461532658,-0.03684426165063582,-0.03574308617039327,-0.10116642019277813,0.4898653981580608,-0.1470864505946038,-0.1722618440558475,-0.14906631343078955,-0.25033413893458645,0.3962920476912795,5.500448489242018,5.500448489242018,5.034602929754541,5.034602929754541,6.401092673379466,6.401092673379466,14.320222703614888,14.320222703614888,16.8527490316836,16.8527490316836,5.020610711242668,5.028102633351622,5.026447817582081,5.211959110467021,10.013736937421058,5.448273325540441,5.615074692759279,5.460434361775299,6.300764083517294,8.271852332733332,23.722213522011348,23.722213522011348,0.0,26.358015024457053,0.0,23.722213522011348,26.358015024457053,0,0
+2017/05/18 04:00:00,41.53048537751433,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,1.4972260920592022,0.0,0.5251257358210065,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.19078510090987105,0.19078510090987105,0.08029327222990824,0.08029327222990824,0.29125783810405137,0.29125783810405137,0.6679776079775132,0.6679776079775132,0.7748994343979083,0.7748994343979083,-0.07976348260348907,-0.08481955629872905,-0.08357437338467089,-0.14945696130206004,0.3352414853534911,-0.18355226480368497,-0.20691953841425847,-0.18412416857104535,-0.28500126878934035,0.2940106368825527,5.754683196343578,5.754683196343578,5.133494835162637,5.133494835162637,6.76241656622976,6.76241656622976,14.375133200581445,14.375133200581445,17.652756424926082,17.652756424926082,5.131738502466916,5.14897472960071,5.144631474717869,5.462853142622777,7.337460585689087,5.698464954974639,5.887969643759789,5.7028306007889,6.687265498108047,6.796005582310912,41.53048537751433,41.53048537751433,0.0,46.1449837527937,0.0,41.53048537751433,46.1449837527937,0,0
+2017/05/18 05:00:00,74.4614158602121,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,1.0977911929817028,0.0,0.5775816372745278,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4167359420166982,0.4167359420166982,0.30807036471784455,0.30807036471784455,0.5097945461393517,0.5097945461393517,0.848736019037978,0.848736019037978,0.8749078639473935,0.8749078639473935,-0.057968488847545845,-0.06518377801556209,-0.06251432850312036,-0.1291064797423178,0.5188520713277261,-0.15723672219941087,-0.18141667175470635,-0.15747374210883072,-0.2579007729304748,0.4424251235458797,8.620317987176236,8.620317987176236,6.972554564221866,6.972554564221866,10.43343988438123,10.43343988438123,20.200836814410565,20.200836814410565,21.158781089012905,21.158781089012905,5.06957131786146,5.087971619738411,5.080912580782652,5.345301878024458,10.629864185440738,5.5123469373777,5.682283558672793,5.513894405217428,6.380807043099381,9.083593490138398,74.4614158602121,74.4614158602121,0.0,82.73490651134678,0.0,74.4614158602121,82.73490651134678,0,0
+2017/05/18 06:00:00,86.25826766649668,0,676.9914261646352,0,0,0,0.013235411280858827,0.0,10.365700228685935,0.0,73.80580873715317,0,1.548491788847416,2.5210167871051636e-09,0.5250314980082573,0,0,0.0,446.3041348330983,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,54.34933616606597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03604352498106781,0.00114039200599155,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6756233480382432,0.6756233480382432,0.5630411841488897,0.5630411841488897,0.7662019658482475,0.7662019658482475,1.061113990252562,1.061113990252562,0.9121439978144251,0.9121439978144251,0.02023316006991195,0.011499778270171615,0.015811351961371893,-0.04576272947958776,0.7343790967733504,-0.06317444456600133,-0.08796147353404213,-0.06148206931572137,-0.1556451537938871,0.6248845261949877,14.593144469372604,14.593144469372604,11.639104042313164,11.639104042313164,17.36780667361647,17.36780667361647,28.76241953598189,28.76241953598189,22.570178693551753,22.570178693551753,5.008474542385031,5.00273755182171,5.005175159330037,5.043355628535622,16.35278026995394,5.08263069171511,5.1602197700383385,5.078262078687288,5.502016453668162,13.193746722163908,86.25826766649668,86.25826766649668,0.0,95.84251962944076,0.0,86.25826766649668,95.84251962944076,0,0
+2017/05/18 07:00:00,145.7553747060649,0,832.1532795782238,0,0,0,0.0,0.0,8.25495517876198,0.0,69.33401494192633,0,39.380909295966944,0.007915484191305753,27.061592203991225,0,0,4.141151977867916,561.834483756275,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,549.2163678078091,0.0,0.0,0.0,648.7779646463916,0.0,0.0,0.0,0.0,0.0,434.2135552086392,0.0,0.0,0.0,480.6145757740104,0.0,0.0,0,0,0,0,0,0,0,0,0.044304456986226516,0.0014017621362901556,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3937959584494055,0.3937959584494055,0.29722617836249693,0.29722617836249693,0.4650991686500148,0.4650991686500148,0.9142912239573437,0.9142912239573437,0.6905987309003649,0.6905987309003649,-0.10680623592372825,-0.1820476325852725,-0.13232549325755577,-0.2090867003521965,0.33790471905349717,-0.14859980138570195,-0.24580578562509942,-0.1638974844438549,-0.27898311801254555,0.26589891696473184,8.230531749588607,8.230531749588607,6.835646279586527,6.835646279586527,9.51605863202252,9.51605863202252,22.653284547134987,22.653284547134987,15.027482216093432,15.027482216093432,5.236262685267533,5.687044531072786,5.362748806699301,5.90670211376721,7.374912621307772,5.457554177095119,6.254012653758323,5.556725636116866,6.616537010817453,6.468033567727318,145.7553747060649,145.7553747060649,0.0,161.9504163400721,0.0,145.7553747060649,161.9504163400721,0,0
+2017/05/18 08:00:00,160.81941799813393,0,861.0293222539451,0,0,0,0.0,0.0,11.541431746919748,0.0,83.2008179303116,0,39.380909295966944,9.953935993879376e-05,25.552167751424268,0,0,0.05299424844759812,541.5631553926004,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04584183888695923,0.0014504038279857534,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.05935040307521655,-0.05935040307521655,-0.2026757710479154,-0.2026757710479154,0.06325637719228534,0.06325637719228534,0.9191889626799409,0.9191889626799409,0.28777053950582204,0.28777053950582204,-0.1478722285600322,-0.2166019195684621,-0.15667855638528627,-0.24305592142699228,0.026805052327191093,-0.19261327406953718,-0.296199728735347,-0.21257177689565981,-0.32129637706787323,-0.007210691242484569,5.072928413836621,5.072928413836621,5.851856708540623,5.851856708540623,5.082845200981936,5.082845200981936,22.843540851229037,22.843540851229037,6.720324865642965,6.720324865642965,5.453080324941894,5.97318520244302,5.508712002374537,6.2260431221596235,5.014874013380691,5.769238970269171,6.822944892775425,5.93723863995281,7.146270101874251,5.001076305722819,160.81941799813393,160.81941799813393,0.0,178.6882422201488,0.0,160.81941799813393,178.6882422201488,0,0
+2017/05/18 09:00:00,178.97900586763564,0,909.6852084805871,0,0,0,0.05394729523301925,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,0.0001927553737584465,20.783441733101508,0,0,0.10270605894710295,536.9338010399266,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,210.66969770420047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04843231430940495,0.0015323646646416126,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.27043736905037535,-0.27043736905037535,-0.46082325671239266,-0.46082325671239266,-0.0891932097184703,-0.0891932097184703,0.9833150144504346,0.9833150144504346,0.2325138666768011,0.2325138666768011,-0.11888418897046768,-0.2080942311218181,-0.11856981004249251,-0.22761497877802853,-0.011267533111049641,-0.20353314162255903,-0.2851341002977046,-0.1833904010804274,-0.3002060328880489,0.0061591808660005146,6.518727055347668,6.518727055347668,9.432810556410487,9.432810556410487,5.164739944596462,5.164739944596462,25.422418065381464,25.422418065381464,6.121759480259598,6.121759480259598,5.29275377089516,5.89809903072323,5.2912065337979755,6.074886159798012,5.002628094627795,5.859091885723899,6.688843841101928,5.69723184292792,6.872771580762773,5.000785285341195,178.97900586763564,178.97900586763564,0.0,198.8655620751507,0.0,178.97900586763564,198.8655620751507,0,0
+2017/05/18 10:00:00,210.15874127191177,0,958.3200932012837,0,0,0,0.319401460362052,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,0.000126372875110152,18.620726621606412,0,0,0.06739458520300161,496.87811595300695,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1267.6405414688113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.362797584710421,0.0,0.0,0,0,0,0,0,0,0,0,0.05102167159611818,0.0016142901242623007,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.24604454525831188,-0.24604454525831188,-0.4478952167933103,-0.4478952167933103,-0.0494939123926603,-0.0494939123926603,1.006513405370258,1.006513405370258,0.3194376800023104,0.3194376800023104,-0.10211980563677839,-0.24621333266357634,-0.09550244207319733,-0.27173001542086983,-0.037600463393787954,-0.1725089444732076,-0.3135591965316534,-0.16269881357094076,-0.3247168476854749,-0.039919836308142685,6.256456125213532,6.256456125213532,9.185900913828775,9.185900913828775,5.050714498363945,5.050714498363945,26.394705797118533,26.394705797118533,7.1214097704962995,7.1214097704962995,5.215974768645751,6.2581849445119815,5.188880355347564,6.533324392369124,5.029268117700482,5.6168428200523834,7.043747752485487,5.5486027983243815,7.192402068381327,5.032990538449155,210.15874127191177,210.15874127191177,0.0,233.5097125243464,0.0,210.15874127191177,233.5097125243464,0,0
+2017/05/18 11:00:00,225.39579655721505,0,1032.8586804811216,0,0,0,0.6001512115402929,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,4.573057692183092e-05,20.85430154379588,0,0,0.02337854306562171,518.225190506166,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2426.3195226649286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05499016119412527,0.0017398503688778046,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.15292780628356142,-0.15292780628356142,-0.3674849556967247,-0.3674849556967247,0.05347929322937681,0.05347929322937681,1.019625920577025,1.019625920577025,0.4544336738827445,0.4544336738827445,-0.07075419507526427,-0.18775453867161995,-0.16330609966767837,-0.2116222238721061,-0.07034686332845111,-0.12700321758759395,-0.24719513499545293,-0.12721464550267442,-0.24012553828188762,-0.10203746676625611,5.48462271103709,5.48462271103709,7.8111628905552095,7.8111628905552095,5.059211745524863,5.059211745524863,26.953279139084202,26.953279139084202,9.309878441866502,9.309878441866502,5.103653176308413,5.73086172648722,5.552710609379616,5.928868179027418,5.102462886445068,5.334135025128191,6.268264872340254,5.335249244157694,6.1965870791801905,5.215626468691681,225.39579655721505,225.39579655721505,0.0,250.43977395246117,0.0,225.39579655721505,250.43977395246117,0,0
+2017/05/18 12:00:00,204.94635950128003,0,995.2345135616116,0,0,0,0.8153433016279548,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,3.406713892979718e-05,18.61928425032516,0,0,0.018179620679013256,516.0965750215867,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3344.3515827096594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0529870226788593,0.0016764724625575162,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1657000710336006,0.1657000710336006,-0.2515313689752041,-0.2515313689752041,0.18632348530378084,0.18632348530378084,1.0346529619349114,1.0346529619349114,0.555931420929444,0.555931420929444,-0.0005099362963816948,-0.11339318942266462,-0.10297820190183091,-0.09060958485451581,0.06908071511876548,0.11261581619121065,-0.0910887688918074,-0.15718630161870167,-0.0814693761657748,0.0638255513117784,5.569053703283572,5.569053703283572,6.313268539041289,6.313268539041289,5.719746424611145,5.719746424611145,27.601281189389752,27.601281189389752,11.4710110477901,11.4710110477901,5.000005382855136,5.266319981655087,5.21962261560752,5.170015506157483,5.098806914046634,5.262678913707205,5.171819162811943,5.512018050824537,5.137435400970816,5.084343045604612,204.94635950128003,204.94635950128003,0.0,227.71817722364446,0.0,204.94635950128003,227.71817722364446,0,0
+2017/05/18 13:00:00,202.4935935336797,0,936.0142568333555,0,0,0,0.8390034818842407,0.0,16.67307048032785,0.0,129.2730206906943,0,39.380909295966944,2.2701753107884633e-05,16.327566883053215,0,0,0.012116024370818266,492.37273440218297,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3444.116587244267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04983409234580798,0.00157671594459351,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2168517352498837,0.2168517352498837,-0.13451260624348738,-0.13451260624348738,0.2679904520753459,0.2679904520753459,1.0290700735503755,1.0290700735503755,0.6086114783084384,0.6086114783084384,-0.08117064348166927,0.010816593720320122,-0.12052838282914957,-0.03399026345626533,0.1222653115003707,0.02462519788830974,-0.04320970608991815,-0.12420365556720515,-0.005386952459745034,0.12138505885257986,5.975435806539849,5.975435806539849,5.374848754061361,5.374848754061361,6.49128775930437,6.49128775930437,27.359559027932747,27.359559027932747,12.768577213280324,12.768577213280324,5.136429054510472,5.0024219443134115,5.300912693815761,5.023917315064921,5.309653827010905,5.012553132754576,5.038652701256439,5.319556639216728,5.000600713908639,5.305208264686954,202.4935935336797,202.4935935336797,0.0,224.99288170408855,0.0,202.4935935336797,224.99288170408855,0,0
+2017/05/18 14:00:00,186.4636884221658,0,897.5464745516138,0,0,0,0.7180488413429352,0.0,16.798297350153536,0.0,115.5196477718057,0,39.380909295966944,1.1954737426402053e-05,14.046773208159244,0,0,0.00638022660319856,489.4010404307531,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2914.376040502216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04778603912378527,0.0015119169682595716,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1746027355645683,0.1746027355645683,-0.09599532319097238,-0.09599532319097238,0.2536779385894776,0.2536779385894776,0.9970086256450965,0.9970086256450965,0.5956067139593539,0.5956067139593539,-0.06440932763475415,-0.0672283973065951,-0.11282926252236078,-0.0890117724118791,0.03661005153598045,-0.15536624068659682,-0.028204483701181872,-0.11935910542559446,-0.046670660833152945,0.031127528373268945,5.631927189305927,5.631927189305927,5.190835782064568,5.190835782064568,6.335839254369688,6.335839254369688,25.993865442185424,25.993865442185424,12.437061105400602,12.437061105400602,5.085893265539511,5.0935781171635455,5.263676155518553,5.164070160430811,5.027746464152358,5.500216964425718,5.016467689058757,5.295098892822665,5.045093213036651,5.020058063671229,186.4636884221658,186.4636884221658,0.0,207.18187602462865,0.0,186.4636884221658,207.18187602462865,0,0
+2017/05/18 15:00:00,179.46752363908786,0,888.469335862418,0,0,0,0.6531261673822979,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,1.5235568414960776e-05,14.046173885085572,0,0,0.007058270489626095,480.3232236976709,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2633.9183574690614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04730276553647534,0.0014966265288265642,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1541352577529786,0.1541352577529786,-0.03145578310500779,-0.03145578310500779,0.25580657527350525,0.25580657527350525,0.9884926581407034,0.9884926581407034,0.5919492192411588,0.5919492192411588,-0.06056868219922536,-0.05041936280460484,-0.10213293755945814,-0.16650538359932876,-0.05434724117563286,-0.04268948413104778,-0.004247199985218333,-0.11037986732382736,-0.10680435499248021,-0.06918206664236198,5.492313634992556,5.492313634992556,5.020483356978346,5.020483356978346,6.358412759837961,6.358412759837961,25.63764255113172,25.63764255113172,12.345147098118204,12.345147098118204,5.075953625751055,5.052628993927684,5.216030343744791,5.5746050978706165,5.0611495649339275,5.037727512269299,5.000373410571669,5.252346092328665,5.236254359637002,5.099097117186432,179.46752363908786,179.46752363908786,0.0,199.4083595989865,0.0,179.46752363908786,199.4083595989865,0,0
+2017/05/18 16:00:00,202.5417479050142,0,937.8870436284457,0,0,0,0.7642155576875589,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.25095401898161e-05,14.12482331175277,0,0,0.009411623104201808,476.5030493422677,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3108.4842959523635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04993380090196424,0.0015798706538076971,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.19158608306724836,0.19158608306724836,0.032457149261492325,0.032457149261492325,0.32011150928045917,0.32011150928045917,0.9944082310766618,0.9944082310766618,0.6794629520947157,0.6794629520947157,0.002138349828970041,-0.03140724073111459,-0.03232045895415506,-0.15689440544093813,-0.03472909228821582,0.023541136015704504,0.005119303084494161,-0.030595973832650735,-0.1361165755352578,-0.05389044742477163,5.761043363188719,5.761043363188719,5.021808315593901,5.021808315593901,7.130405412880407,7.130405412880407,25.884797572861928,25.884797572861928,14.703581571880846,14.703581571880846,5.000094653883522,5.02042018337734,5.021625006351314,5.510116133664894,5.024968428959966,5.011472193891933,5.000542504108651,5.019378834441369,5.3838489986300715,5.0601258159239535,202.5417479050142,202.5417479050142,0.0,225.0463865611269,0.0,202.5417479050142,225.0463865611269,0,0
+2017/05/18 17:00:00,209.614151150155,0,977.476085125426,0,0,0,0.7536963062395231,0.0,17.028300508570425,0.0,133.89528835348938,0,39.380909295966944,4.2396323914847065e-05,18.555914289564765,0,0,0.021038078752919125,516.0804643835994,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3062.810039004133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052041550795130447,0.0016465583912046037,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.17572384258324972,0.17572384258324972,-0.012732120279664156,-0.012732120279664156,0.3232834724096868,0.3232834724096868,0.9889795330919662,0.9889795330919662,0.7260143544342038,0.7260143544342038,0.04180749162703543,-0.053241893205437825,-0.06110720786853518,-0.12613935600629736,0.03259769780978766,-0.025227873876930033,0.02131203665359697,-0.0568112595655306,-0.11669251928568436,0.009896983675813974,5.640079212272198,5.640079212272198,5.003355718048212,5.003355718048212,7.173009728935639,7.173009728935639,25.657933862448175,25.657933862448175,16.093187051710288,16.093187051710288,5.036184545951414,5.058687151826561,5.077310487925544,5.329601809584219,5.021997605784918,5.013175119148343,5.009402419078228,5.066820931667266,5.28205280448887,5.0020276288152985,209.614151150155,209.614151150155,0.0,232.90461238906113,0.0,209.614151150155,232.90461238906113,0,0
+2017/05/18 18:00:00,194.1860917288366,0,967.4469140895565,0,0,0,0.6831673838443956,0.0,17.652962543626096,0.0,110.93442390708215,0,39.380909295966944,3.299080143784824e-05,25.53459560751557,0,0,0.017619385261965635,541.5450645537647,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2760.682488577068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051507590300506896,0.0016296642533558823,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.10189964301801473,0.10189964301801473,-0.08321742904533154,-0.08321742904533154,0.27769931899515354,0.27769931899515354,0.9795215979292253,0.9795215979292253,0.6998899331503289,0.6998899331503289,-0.016171907294471367,0.02577373602022341,-0.03233458335689044,-0.07048616997415719,0.10826265763992438,-0.02507826448682194,0.06202668726048445,-0.027738728008993758,-0.06547339959883369,0.0838224234461329,5.215044093168018,5.215044093168018,5.143398296780276,5.143398296780276,6.601646835322057,6.601646835322057,25.26538729649218,25.26538729649218,15.30183174265315,15.30183174265315,5.005413877488962,5.013751451583403,5.021643912108345,5.102869189268731,5.242753394742323,5.01301931272981,5.079654975183132,5.015928281639276,5.088755249532724,5.145491554967506,194.1860917288366,194.1860917288366,0.0,215.76232414315177,0.0,194.1860917288366,215.76232414315177,0,0
+2017/05/18 19:00:00,189.6504882961115,0,952.2484956938453,0,0,0,0.5363221183081005,0.0,20.945601462928522,0.0,101.68988858149199,0,39.380909295966944,2.4362104727291663e-05,27.097742475311204,0,0,0.013012652748747576,561.8416054031111,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2141.869833096269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05069841524754941,0.0016040625187218472,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.011989694378668874,-0.011989694378668874,-0.22436426535652246,-0.22436426535652246,0.1686383263026381,0.1686383263026381,0.9630556502233969,0.9630556502233969,0.6098135830416538,0.6098135830416538,0.041187840112588095,-0.05307705061083268,-0.09306872010449621,-0.08391983582032266,0.06920795133404219,-0.09532683750458808,-0.07676379461955021,-0.10437903555766569,-0.0938890059649782,0.0385412595958598,5.0029757734595535,5.0029757734595535,6.044338353297732,6.044338353297732,5.589439134118237,5.589439134118237,24.590224139131962,24.590224139131962,12.79959174866103,12.79959174866103,5.035119792351438,5.0583242652284355,5.179372747242056,5.1458300172069755,5.099171301936394,5.188186108333539,5.12201361133819,5.225641306561457,5.182549824732291,5.030751166995813,189.6504882961115,189.6504882961115,0.0,210.72276477345721,0.0,189.6504882961115,210.72276477345721,0,0
+2017/05/18 20:00:00,208.05330255377697,0,895.0023030297951,0,0,0,0.4170886086384742,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,3.372886845282549e-05,23.16442625256697,0,0,0.018019298096167275,540.0807586062577,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1649.9872666511983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047650585547478835,0.001507631311524167,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.11856951715173472,-0.11856951715173472,-0.33993348454108413,-0.33993348454108413,0.06758692443362195,0.06758692443362195,0.9455177922432061,0.9455177922432061,0.5185355846405881,0.5185355846405881,-0.01782926463730637,-0.09984087238803685,-0.12475894709788035,-0.1200231513104763,0.03140062624636587,-0.13368225002182843,-0.12288626580168599,-0.14294460815436943,-0.12552914638990198,-0.006879241059147549,5.291205094231302,5.291205094231302,7.40364449923527,7.40364449923527,5.094579081725271,5.094579081725271,23.882756732146476,23.882756732146476,10.62294091813554,10.62294091813554,5.006580424327723,5.206438607331592,5.32242234950472,5.298393644927671,5.020411582765433,5.370231474951495,5.312809220914289,5.423360428599963,5.3264183607442135,5.0009796316660555,208.05330255377697,208.05330255377697,0.0,231.1703361708633,0.0,208.05330255377697,231.1703361708633,0,0
+2017/05/18 21:00:00,195.2926358523002,0,868.4730759888931,0,0,0,0.24777121703678123,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.00015448684758979475,25.43675616609914,0,0,0.0825796523743679,548.9773237236217,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,967.1687127549505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046238149849445874,0.0014629428305873017,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.24325434291036058,-0.24325434291036058,-0.4685704925878675,-0.4685704925878675,-0.05329021699758185,-0.05329021699758185,0.9258583409813687,0.9258583409813687,0.39637663750147184,0.39637663750147184,-0.06309023134352935,-0.13190109824827329,-0.14245009758864804,-0.19504761679934907,0.022771519216233115,-0.15966393766067347,-0.15382234043513174,-0.1753885542264939,-0.16918336910283424,-0.020427241805362543,6.228050681034503,6.228050681034503,9.584221376778515,9.584221376778515,5.058793745839296,5.058793745839296,23.104167800833395,23.104167800833395,8.273257310660469,8.273257310660469,5.08241050152337,5.360423939936524,5.420433700206743,5.788837855647316,5.010734330478698,5.528304627944621,5.490314662103543,5.637635697645294,5.593260194236976,5.008637905231794,195.2926358523002,195.2926358523002,0.0,216.99181761366688,0.0,195.2926358523002,216.99181761366688,0,0
+2017/05/18 22:00:00,137.99086259465477,0,690.5214616290986,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.00011964808471076678,20.864995260266376,0,0,0.06400616650065663,530.7508691561492,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.036763874090983306,0.0011631833497045261,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.47115468729045534,-0.47115468729045534,-0.4577656405522975,-0.4577656405522975,-0.2832515894727851,-0.2832515894727851,0.8240161829405674,0.8240161829405674,0.10786754504367817,0.10786754504367817,-0.13960658921567992,-0.21429564979587298,-0.17933458802224372,-0.26501499861656197,-0.0560611543373151,-0.169063606284322,-0.25770094990636555,-0.2081935635821777,-0.2778537069050609,-0.11205410505012293,9.635301665258325,9.635301665258325,9.373764389578426,9.373764389578426,6.666544794134637,6.666544794134637,19.322204915333614,19.322204915333614,5.240983823252336,5.240983823252336,5.403802097404267,5.952531344882388,5.66669092281019,6.458261329901674,5.065067798996608,5.592419526625946,6.378662274935735,5.8989582238170755,6.603433830900968,5.26006358866627,137.99086259465477,137.99086259465477,0.0,153.32318066072753,0.0,137.99086259465477,153.32318066072753,0,0
+2017/05/18 23:00:00,90.7525111929172,0,526.0664871054514,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.016904819343378355,11.792650112281263,0,0,9.23689780499954,463.5940605316357,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,724.0359056180372,0.0,0.0,0.0,930.8134775929663,0.0,0.0,0.0,0.0,0.0,958.7734092005373,0.0,0.0,0.0,1049.9875770037534,0.0,246.54502868438243,0,0,0,0,0,0,0,0,0.028008169434448345,0.0008861589576013637,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.5117315142912856,-0.5117315142912856,-0.496754459101322,-0.496754459101322,-0.3801053193686446,-0.3801053193686446,0.6072510078473106,0.6072510078473106,-0.2149969854264403,-0.2149969854264403,-0.21681749050872992,-0.30166340183639057,-0.23183381065020955,-0.33007853314991065,-0.17499928840069068,-0.24476827962076164,-0.3419402192662856,-0.27682920520849685,-0.36277483616381545,-0.2256131796523128,10.475147290953032,10.475147290953032,10.156878160951663,10.156878160951663,8.00863017849727,8.00863017849727,12.733552465614807,12.733552465614807,5.958788601560769,5.958788601560769,5.975127139041547,6.8910652864204,6.115192420616722,7.265713613209115,5.634804690737369,6.243422611505068,7.432236375053279,6.5915943131120684,7.739205026348216,6.056022315563382,90.7525111929172,90.7525111929172,0.0,100.83612354768577,0.0,90.7525111929172,100.83612354768577,0,0
+2017/05/19 00:00:00,39.34300286917053,0,512.8709326050994,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.579321043195585e-09,9.545681870168027,0,0,0.0,459.6354038362833,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027305628338814412,0.0008639310470470462,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.24234630547476665,-0.24234630547476665,-0.36348384960696717,-0.36348384960696717,-0.19567112781133983,-0.19567112781133983,0.6373923957076845,0.6373923957076845,0.13232785305491235,0.13232785305491235,-0.10141663740339617,-0.18274201426179373,-0.16028003598094193,-0.2320833257156793,0.11137131388931351,-0.20810400104750706,-0.25755050721812295,-0.2376053894677528,-0.2935127077540062,0.030462694433724534,6.21887701006419,6.21887701006419,7.749976398496429,7.749976398496429,5.7938975890741915,5.7938975890741915,13.528352737244475,13.528352737244475,5.362761754783321,5.362761754783321,5.213009372889303,5.692303263980534,5.532394225048478,6.117599645419688,5.256902163865476,5.898183519053532,6.377048631131856,6.171543095031069,6.7899062519462206,5.019210362519459,39.34300286917053,39.34300286917053,0.0,43.714447632411705,0.0,39.34300286917053,43.714447632411705,0,0
+2017/05/19 01:00:00,23.774716790819447,0,38.25154812765282,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5776213671416525,0,0,0.0,2.7611956151086843,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0020365407554929446,6.44347299177879e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2146176161622155,-0.2146176161622155,-0.3331167264332163,-0.3331167264332163,-0.14763715841818362,-0.14763715841818362,0.5632390474102181,0.5632390474102181,0.3571531157392552,0.3571531157392552,-0.1542407274251824,-0.22926023546531493,-0.21855035473829457,-0.28281992764390423,0.22910549472343722,-0.2586647072545899,-0.30358258311523867,-0.29530942330855514,-0.34572725347179206,0.11798541240015879,5.955401343554627,5.955401343554627,7.307796876224444,7.307796876224444,5.451639587523644,5.451639587523644,11.643813387798247,11.643813387798247,7.6545573742065045,7.6545573742065045,5.4929883135927895,6.090515961414226,5.990808094096138,6.661452673855436,6.089041100515999,6.389022097263194,6.9152929292041705,6.8119642244228515,7.486660057448262,5.288341294498082,23.774716790819447,23.774716790819447,0.0,26.416351989799384,0.0,23.774716790819447,26.416351989799384,0,0
+2017/05/19 02:00:00,28.344161000293514,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5247979138206176,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.17745295366218944,-0.17745295366218944,-0.29380255777310976,-0.29380255777310976,-0.10519694472723991,-0.10519694472723991,0.5499883406559296,0.5499883406559296,0.4408771041090861,0.4408771041090861,-0.15875880053520908,-0.2273095420310193,-0.22540792938237622,-0.2848303206748227,0.2581170912742202,-0.2753606549397923,-0.3190064216723,-0.3164733134123338,-0.3653996766014779,0.14009820421099523,5.652755111737676,5.652755111737676,6.793455465226174,6.793455465226174,5.229193132692487,5.229193132692487,11.332183169905733,11.332183169905733,9.054874322202167,9.054874322202167,5.522325112679567,6.071997029894561,6.054097648121271,6.685235338215691,6.383130754806146,6.5747003890263755,7.115662555621412,7.082063867136455,7.779188866659766,5.406653481467316,28.344161000293514,28.344161000293514,0.0,31.493512222548347,0.0,28.344161000293514,31.493512222548347,0,0
+2017/05/19 03:00:00,23.72196271229573,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248672886179404,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.17144097245265325,-0.17144097245265325,-0.28801048554888925,-0.28801048554888925,-0.09857912787090999,-0.09857912787090999,0.5143292478326762,0.5143292478326762,0.47973407840095933,0.47973407840095933,-0.1719232664013401,-0.2368398984858669,-0.24026196855602702,-0.2961066516114075,0.28749952620122526,-0.29648571199349527,-0.3386593909212076,-0.339821215038328,-0.3872528985847708,0.15648063697714626,5.609219231352498,5.609219231352498,6.723204565097944,6.723204565097944,5.201251581376965,5.201251581376965,10.531337243082888,10.531337243082888,9.806950109983234,9.806950109983234,5.61265613629628,6.16398882323621,6.197950464374827,6.821795349239039,6.717075237132946,6.826479202676538,7.385580050919643,7.402049941172933,8.123481157563319,5.507426212246429,23.72196271229573,23.72196271229573,0.0,26.357736346995257,0.0,23.72196271229573,26.357736346995257,0,0
+2017/05/19 04:00:00,40.28646972359647,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.25335504651482205,0.0,0.5249811274475368,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.11699757722153868,-0.11699757722153868,-0.23335873546612998,-0.23335873546612998,-0.045257048599686496,-0.045257048599686496,0.5350774488785341,0.5350774488785341,0.5998828220100754,0.5998828220100754,-0.19117952623397125,-0.2556896283832417,-0.25890678870676087,-0.3140533468667769,0.26183024710124037,-0.3156795367722939,-0.3573823605796226,-0.3585089826394742,-0.40537942398903787,0.18028383886108265,5.28353031207223,5.28353031207223,6.129945106927266,6.129945106927266,5.042402670411121,5.042402670411121,10.990609314332616,10.990609314332616,12.545257240363341,12.545257240363341,5.757811764422598,6.357167628259404,6.391630471078571,7.050219740292235,6.4233248056663115,7.071591293859825,7.65798285414219,7.674849863766823,8.42453727109286,5.673777375408704,40.28646972359647,40.28646972359647,0.0,44.762744137329406,0.0,40.28646972359647,44.762744137329406,0,0
+2017/05/19 05:00:00,73.91706956841944,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.6060581214470724,0.0,0.524968417016491,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1322655912473819,0.1322655912473819,0.016681405330883775,0.016681405330883775,0.20089308110304543,0.20089308110304543,0.7444332202302617,0.7444332202302617,0.807650060276526,0.807650060276526,-0.12042761241037633,-0.18545005842352255,-0.18828690234572576,-0.2438637599082931,0.4332540794273999,-0.24836543887683757,-0.2909657931800063,-0.2916400359372414,-0.3393286639144253,0.3385722351406714,5.362420205078749,5.362420205078749,5.005760385313934,5.005760385313934,5.83691138590018,5.83691138590018,16.66877917135494,16.66877917135494,18.754598260752743,18.754598260752743,5.3004094126511205,5.713004365831907,5.735018542549966,6.234226888279764,8.914952349681926,6.280333021367909,6.758871880978731,6.7670609210377535,7.395060589745,7.384346852022844,73.91706956841944,73.91706956841944,0.0,82.13007729824382,0.0,73.91706956841944,82.13007729824382,0,0
+2017/05/19 06:00:00,85.85733271640967,0,676.6258137375459,0,0,0,0.0,0.0,10.576478033044985,0.0,73.80580873715317,0,0.9498864376553601,2.521039956319724e-09,0.5251595060350817,0,0,0.0,445.938522406009,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.036024059504638016,0.0011397761318858676,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.31013565192451975,0.31013565192451975,0.19344971856900278,0.19344971856900278,0.3773021495932761,0.3773021495932761,0.8988058078073905,0.8988058078073905,0.87830428025598,0.87830428025598,-0.0550111177452379,-0.12026385013401661,-0.12123107343634626,-0.17761621668392777,0.5493519156398159,-0.1707859352389957,-0.2145872603561807,-0.21328922203772385,-0.26180785248384153,0.44577125660777234,6.9991928327449955,6.9991928327449955,5.775945249985583,5.775945249985583,7.964182810410833,7.964182810410833,22.058116779497936,22.058116779497936,21.2851700100358,21.2851700100358,5.06265283332479,5.2995924292757195,5.304433897805893,5.6539584198403645,11.317407308085578,5.604566868624886,5.955130567430601,5.94358807235993,6.423080649865554,9.146023596204174,85.85733271640967,85.85733271640967,0.0,95.3970363515663,0.0,85.85733271640967,95.3970363515663,0,0
+2017/05/19 07:00:00,146.2069990661325,0,833.0340401005469,0,0,0,0.0,0.0,8.10446724815698,0.0,69.33401494192633,0,39.380909295966944,0.008889369125004229,27.090734742654387,0,0,5.093296134528569,561.7631001219374,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,680.279589591901,0.0,0.0,0.0,606.9039526750714,0.0,0.0,0.0,0.0,0.0,594.6462926789701,0.0,0.0,0.0,489.2521133339186,0.0,0.0,0,0,0,0,0,0,0,0,0.044351349328820185,0.0014032457773231598,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.14530161982859252,0.14530161982859252,0.04317669220184505,0.04317669220184505,0.19696983713931038,0.19696983713931038,0.8481489457548486,0.8481489457548486,0.6445370353583205,0.6445370353583205,-0.13589106320917882,-0.2213534826242394,-0.19244992889132112,-0.24031720896413308,0.32128662387547474,-0.21630906602337474,-0.2833191524945111,-0.2510728019729717,-0.2916395572625683,0.22328711368006215,5.437450127682666,5.437450127682666,5.038593654566043,5.038593654566043,5.804488675794232,5.804488675794232,20.179674391795288,20.179674391795288,13.722528850405865,13.722528850405865,5.382577130587393,6.016440404181779,5.767932746230372,6.198502719248921,7.146139269438294,5.970550196315983,6.667342516268604,6.308471920996382,6.7670551004663935,6.034313800466705,146.2069990661325,146.2069990661325,0.0,162.45222118459168,0.0,146.2069990661325,162.45222118459168,0,0
+2017/05/19 08:00:00,161.3890323499835,0,860.9547231372449,0,0,0,0.4458491676431714,0.0,11.435487997441953,0.0,83.2008179303116,0,39.380909295966944,0.00018929906829982945,25.5529885785698,0,0,0.11034697784283391,541.4312035465049,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1787.399101291303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04583786717473003,0.0014502781657793333,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.10678674499945831,-0.10678674499945831,-0.2589090020828814,-0.2589090020828814,-0.07320729741475085,-0.07320729741475085,1.067009075405329,1.067009075405329,0.2982163838227656,0.2982163838227656,-0.12960155639489848,-0.23763051736137666,-0.1816751089732743,-0.11063043785626037,0.06305324062309364,-0.12852863438366757,-0.2996226953139002,-0.2012163281623184,-0.1235019986308283,-0.005944393556152499,5.236176419047311,5.236176419047311,6.391654331090081,6.391654331090081,5.1109669943211316,5.1109669943211316,29.024532526873998,29.024532526873998,6.84794137540608,6.84794137540608,5.347957133745965,6.17179148743223,5.684231610413164,5.253493703220855,5.082313875726442,5.342215597276535,6.865474368349126,5.83961148679478,5.315953907354739,5.0007314701944665,161.3890323499835,161.3890323499835,0.0,179.3211470555372,0.0,161.3890323499835,179.3211470555372,0,0
+2017/05/19 09:00:00,178.98656372651362,0,890.6843170973764,0,0,0,1.1855007238650905,0.0,11.287802377079139,0.0,106.27511244621549,0,39.380909295966944,3.4207952536858566e-05,20.857204675434435,0,0,0.019950528858758795,518.0156651868043,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5015.624524106876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04742069277807588,0.0015003576645487371,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.0117538929705139,0.0117538929705139,-0.23858340058483482,-0.23858340058483482,-0.045784670861168095,-0.045784670861168095,1.156028070682793,1.156028070682793,0.3735051118742983,0.3735051118742983,0.003010220572346334,-0.16801440241326507,-0.13117063345148655,0.0212135197703323,0.05170587603192885,-0.012827670287642798,-0.21445989688753334,-0.13529644674188532,0.04779555606891651,-0.005694760031744157,5.002859874625884,5.002859874625884,6.1812304205588475,6.1812304205588475,5.043397216956649,5.043397216956649,33.127243990095934,33.127243990095934,7.904511220359154,7.904511220359154,5.0001875761644925,5.585080281543185,5.3564399429597955,5.009315691116456,5.055349374748758,5.003406274341771,5.953994896143783,5.379233694032294,5.047293383524362,5.00067132423392,178.98656372651362,178.98656372651362,0.0,198.87395969612624,0.0,178.98656372651362,198.87395969612624,0,0
+2017/05/19 10:00:00,209.9833928424973,0,977.2593218195623,0,0,0,1.3090123027267124,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,5.479669258628394e-06,18.599879977184568,0,0,0.002703215567197363,515.8820359409214,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5574.659398179967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05203001015616823,0.001646193253432328,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2856784801394156,0.2856784801394156,-0.15728477592972698,-0.15728477592972698,0.10148528430731729,0.10148528430731729,1.1268046471266013,1.1268046471266013,0.5788190097741629,0.5788190097741629,-0.07246647502707458,-0.22116803566668397,-0.15251489151010603,-0.06160346319859981,0.03757021744691857,-0.08551737709026284,-0.2797363501810713,-0.16258033373978997,-0.012604397191647526,-0.007623896400529554,6.695320101783722,6.695320101783722,5.512660483875237,5.512660483875237,5.213297965946936,5.213297965946936,31.751347383697578,31.751347383697578,12.0199636767789,12.0199636767789,5.108731969512476,6.014734472224816,5.482006564086987,5.07857148697849,5.029221046902435,5.151436881197199,6.625305747301894,5.547803168048162,5.003288729058482,5.001203194787735,209.9833928424973,209.9833928424973,0.0,233.3148809361081,0.0,209.9833928424973,233.3148809361081,0,0
+2017/05/19 11:00:00,225.96076641085435,0,1032.6555891564044,0,0,0,1.206776904997839,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,8.587958583330959e-06,20.81268284659596,0,0,0.005007976897553754,518.0404697476168,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5090.521806047797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05497934846156624,0.0017395082615567334,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5124848452914637,0.5124848452914637,-0.026613179154673833,-0.026613179154673833,0.26724964187859707,0.26724964187859707,1.0805606890142152,1.0805606890142152,0.7671046768664642,0.7671046768664642,0.060586303900607034,-0.11251939620253548,-0.11706410199612469,-0.02944225771160345,0.16692216806374954,0.07372111101702698,-0.15102971500974924,-0.10606771430427775,0.008754934685166813,0.1330389556933283,10.491412075165485,10.491412075165485,5.014661829484936,5.014661829484936,6.483030181527965,6.483030181527965,29.631735829820585,29.631735829820585,17.397231563131726,17.397231563131726,5.075997834955061,5.262229050788903,5.283853029533688,5.017944855284668,5.5774888066979,5.11253050840827,5.472655484227872,5.233005037188391,5.001586675631955,5.366674088376314,225.96076641085435,225.96076641085435,0.0,251.0675182342826,0.0,225.96076641085435,251.0675182342826,0,0
+2017/05/19 12:00:00,205.43590631118474,0,995.0307068563152,0,0,0,1.0944101313200738,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,1.471927900987156e-05,18.59978050821121,0,0,0.008585069484696915,515.9023628674846,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4122.928261578349,0.0,0.0,103.64542194522916,0.0,0.0,0.0,0.0,259.97462227078165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05297617185890833,0.001676129150177913,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5768467607270364,0.5768467607270364,-0.01256629493306566,-0.01256629493306566,0.2988744609146375,0.2988744609146375,1.0272331663606864,1.0272331663606864,0.8165407864188959,0.8165407864188959,0.14716390545996733,-0.05116403423418357,-0.08916256181877831,-0.05801824083717547,0.2791740629660149,0.18233968972809572,-0.06260895429888788,-0.06775051951869376,-0.02308530579501643,0.25245295158340286,11.971765102459429,11.971765102459429,5.003268875749896,5.003268875749896,6.856135452826919,6.856135452826919,27.28027782519419,27.28027782519419,19.06154547634536,19.06154547634536,5.448746013808645,5.054195271411203,5.16462671059719,5.0696908075533855,6.618757628399393,5.689253902600271,5.081157758338179,5.095037589827143,5.011032209342332,6.322935046144693,205.43590631118474,205.43590631118474,0.0,228.26211812353858,0.0,205.43590631118474,228.26211812353858,0,0
+2017/05/19 13:00:00,202.77470033891524,0,935.7927087878231,0,0,0,0.9933276656802457,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,1.536213111997337e-05,16.32912997428902,0,0,0.008960745552595097,492.1543416354688,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3700.9189620839306,0.0,0.0,108.03032724785075,0.0,0.0,0.0,0.0,233.54013109890246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049822296963761725,0.001576342746927626,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5665079753843971,0.5665079753843971,0.05297868622991442,0.05297868622991442,0.31579966243278357,0.31579966243278357,1.0081523437109297,1.0081523437109297,0.8367675449636687,0.8367675449636687,0.15409990347025013,0.00751353799428297,-0.08902465012703566,-0.07967716427871673,0.30073361184446923,0.19819821402848803,0.02374760593733058,-0.05852880013985752,-0.05114422806736267,0.275390549764357,11.721862933935782,11.721862933935782,5.0581082609666055,5.0581082609666055,7.073174439935343,7.073174439935343,26.464169097507963,26.464169097507963,19.772244062942605,19.772244062942605,5.492087580997421,5.001168613531576,5.164117654080016,5.131453446931772,6.879383674943099,5.814571089001944,5.011674317571078,5.070922948516014,5.054153315432941,6.575043386840733,202.77470033891524,202.77470033891524,0.0,225.3052225987947,0.0,202.77470033891524,225.3052225987947,0,0
+2017/05/19 14:00:00,186.50601928785653,0,880.7738003121266,0,0,0,0.7932075267480583,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.6930869607462285e-09,14.07657081705544,0,0,0.0,472.63474641786905,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3232.8395750164345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04689304952364334,0.0014836633997761797,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5342158140127345,0.5342158140127345,0.24115994395456017,0.24115994395456017,0.316991637974411,0.316991637974411,0.9930861868136935,0.9930861868136935,0.8258644056047251,0.8258644056047251,0.0996879478689354,-0.044671783319188495,-0.1511423096047581,-0.13764167135509353,0.22139489581964159,0.1447427030240523,0.0011194839689584494,-0.11583820640195717,-0.10916403033715534,0.19471360621402342,10.971165656810811,10.971165656810811,6.206943682403477,6.206943682403477,7.088916708894729,7.088916708894729,25.829446085487177,25.829446085487177,19.387012607125328,19.387012607125328,5.2058064160232504,5.04131295947964,5.473361192448621,5.3925059313582295,6.01682156224102,5.434088128493798,5.000025942786266,5.277935630242396,5.246814594955879,5.7861340758133935,186.50601928785653,186.50601928785653,0.0,207.2289103198406,0.0,186.50601928785653,207.2289103198406,0,0
+2017/05/19 15:00:00,179.67047889307116,0,891.7695831403478,0,0,0,0.7408692073141667,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,2.6930869607462285e-09,14.056625131651574,0,0,0.0,483.63052924609036,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3005.3525061861283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04747847314606748,0.0015021857951157524,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4502483448836992,0.4502483448836992,0.46549439229262707,0.46549439229262707,0.31576082946015643,0.31576082946015643,0.9805460280259848,0.9805460280259848,0.8200322619759698,0.8200322619759698,-0.004727750912444701,-0.0066396302566971545,-0.2211420273336281,-0.20986339196253773,0.13025617795150865,0.030000837329773884,0.04525727598585759,-0.19006639094513236,-0.18854758590317922,0.1017644783326903,9.230307397631066,9.230307397631066,9.523793033730925,9.523793033730925,7.072662590101714,7.072662590101714,25.307739560802787,25.307739560802787,19.182997218543605,19.182997218543605,5.00046269035434,5.000912576931654,6.014495336054296,5.913463516748152,5.351483728693836,5.018632243025422,5.042403096540994,5.748999128426874,5.737058337074004,5.214473719460926,179.67047889307116,179.67047889307116,0.0,199.63386543674574,0.0,179.67047889307116,199.63386543674574,0,0
+2017/05/19 16:00:00,202.69161477835473,0,950.5489593091044,0,0,0,0.7455532866104669,0.0,16.840460162178484,0.0,131.64086955684016,0,39.380909295966944,2.4318895187381124e-06,14.083820044869068,0,0,0.0014172666385055678,489.1729593793921,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3024.6785451251894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05060793067156787,0.0016011996498107438,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.38264723216099455,0.38264723216099455,0.6464793081680162,0.6464793081680162,0.31858880955659247,0.31858880955659247,0.9843440763736547,0.9843440763736547,0.8467523293777389,0.8467523293777389,-0.10651797025583258,0.04639893052629402,-0.20031636096888275,-0.15101732165534157,0.08101292389396303,-0.08604139416853233,0.11865182867043474,-0.25138590843498154,-0.12996544402365456,0.048241021159133944,8.049224991345113,8.049224991345113,13.775698377963806,13.775698377963806,7.110104709185961,7.110104709185961,25.465112198169777,25.465112198169777,20.129387764924573,20.129387764924573,5.234988439139087,5.044569599261223,5.832104864386821,5.472577838758312,5.135899234427512,5.153299073161179,5.2916097980312315,6.311746062096773,5.349915279290698,5.048179153548432,202.69161477835473,202.69161477835473,0.0,225.21290530928303,0.0,202.69161477835473,225.21290530928303,0,0
+2017/05/19 17:00:00,209.46179120933414,0,956.3521599403812,0,0,0,0.783770284087355,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,4.792505835246057e-06,18.603521128207493,0,0,0.0027945060379978575,494.97478277126953,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3190.43418908853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050916897371646445,0.001610975140833674,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.356934252723967,0.356934252723967,0.6994572401787499,0.6994572401787499,0.38785616821407715,0.38785616821407715,0.9917637280636405,0.9917637280636405,0.8760259921023237,0.8760259921023237,-0.10197901593619943,0.12907913736520857,-0.19218488665210634,-0.05733737226497594,0.13811175851446553,-0.09671364291710066,0.20593286190641263,-0.17084922683017104,-0.07344560613162568,0.10335667792377294,7.651289111575778,7.651289111575778,15.288972468303513,15.288972468303513,8.133274654217246,8.133274654217246,25.774143954490498,25.774143954490498,21.200336992443894,21.200336992443894,5.215379387864971,5.345155529029441,5.765815652847593,5.068064463996734,5.395193807961178,5.193703654537103,5.879506146431993,5.605015612230588,5.111690797086169,5.22124070769361,209.46179120933414,209.46179120933414,0.0,232.73532356592682,0.0,209.46179120933414,232.73532356592682,0,0
+2017/05/19 18:00:00,193.64788708959503,0,986.7170147925059,0,0,0,0.7409013255517676,0.0,17.03716081602578,0.0,110.93442390708215,0,39.380909295966944,1.4763051209268572e-05,25.55447698191717,0,0,0.00861202451028085,560.8241726174658,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2974.6735982056543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.06656335603989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05253354473542398,0.0016621247365274246,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.28554587674490045,0.28554587674490045,0.6338612367928117,0.6338612367928117,0.4216235019241305,0.4216235019241305,0.9859870013139185,0.9859870013139185,0.8483389056383677,0.8483389056383677,-0.10066703928544703,0.1590090159039817,-0.109082734401207,-0.04587115185841738,0.21433838275598768,-0.10535701822404238,0.23373693473728474,-0.07608944782615842,-0.010449981445198389,0.17897603656803557,6.6937414220575135,6.6937414220575135,13.433200876321493,13.433200876321493,8.706278238790148,8.706278238790148,25.53335885136731,25.53335885136731,20.186520368153126,20.186520368153126,5.209870777599065,5.523974670456468,5.24644692579443,5.043561330109,5.952912015356489,5.229891512847132,6.133619047041279,5.11987877034062,5.00226054941372,5.664024011976451,193.64788708959503,193.64788708959503,0.0,215.1643189884389,0.0,193.64788708959503,215.1643189884389,0,0
+2017/05/19 19:00:00,189.95788306112706,0,952.1635981400594,0,0,0,0.6478416061488124,0.0,21.14149381186518,0.0,101.68988858149199,0,39.380909295966944,7.290342957548532e-06,27.0977424753112,0,0,0.004252142937568198,561.7654683591365,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2609.878522739326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050693895238901665,0.0016039195087989386,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1962598887032768,0.1962598887032768,0.2922291015385353,0.2922291015385353,0.29677084570171064,0.29677084570171064,0.9757444939659066,0.9757444939659066,0.7859655808074053,0.7859655808074053,-0.14909759982288945,-0.019610659200569328,-0.18721293453995438,-0.026992329580601153,0.21241883140887835,-0.16740068604889416,0.015402377699300909,-0.1699127057983351,0.001929218264622373,0.17213726436685012,5.798690247440106,5.798690247440106,6.774231154062051,6.774231154062051,6.8300064543371946,6.8300064543371946,25.10958327355317,25.10958327355317,18.01996716535112,18.01996716535112,5.460627844152924,5.007961093464132,5.726644908282154,5.015082585005871,5.935887850409273,5.580808578823294,5.0049108989942965,5.598392642031314,5.000077044854251,5.614184228523698,189.95788306112706,189.95788306112706,0.0,211.0643145123634,0.0,189.95788306112706,211.0643145123634,0,0
+2017/05/19 20:00:00,208.0357889448838,0,875.0126320727031,0,0,0,0.4630168760544751,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,4.0206238157798496e-05,23.100977898888154,0,0,0.02346111882584904,520.0856458284361,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1839.564447108026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046586320659240704,0.0014739587123141357,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.04965741468269762,0.04965741468269762,0.05406789955410684,0.05406789955410684,0.1508621574206152,0.1508621574206152,0.9667783677577825,0.9667783677577825,0.665195446174922,0.665195446174922,-0.040950838111261795,0.05781610553309318,-0.11886471781991355,-0.0606434827332748,0.13104312424589257,-0.06759966739616571,0.0297218795878262,-0.10988497417924162,-0.046024738710696296,0.083717181641886,5.051050157834851,5.051050157834851,5.060522488050864,5.060522488050864,5.471606262393706,5.471606262393706,24.74194717809422,24.74194717809422,14.296430470107708,14.296430470107708,5.034716754086389,5.06920597601048,5.292657823005271,5.07614137344315,5.355746775328271,5.094614756597224,5.018287342718011,5.250087147505994,5.043853552303375,5.145126331458201,208.0357889448838,208.0357889448838,0.0,231.15087660542642,0.0,208.0357889448838,231.15087660542642,0,0
+2017/05/19 21:00:00,194.3695187718434,0,880.2649438280246,0,0,0,0.34528363650931126,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.8245243433538862e-05,25.56024464192537,0,0,0.016483983999241905,560.8352872311282,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1359.8361544377867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04686595762751635,0.001482806231067331,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.06046981439659643,-0.06046981439659643,-0.10484393482539235,-0.10484393482539235,0.04400113322029995,0.04400113322029995,0.9567392742089905,0.9567392742089905,0.5418587762804884,0.5418587762804884,-0.011333083937781138,0.052135496645889665,-0.08079095179820558,-0.1077818605784161,-0.005906105213617061,-0.036422191912087815,-0.005133615466254019,-0.0745575699621263,-0.10524368172365392,-0.01567638328442902,5.075705825526612,5.075705825526612,5.227656756068285,5.227656756068285,5.040081714705096,5.040081714705096,24.334033048159924,24.334033048159924,11.144759370642348,11.144759370642348,5.002658762545437,5.056273096803508,5.135155321593729,5.24060092785264,5.000722077603683,5.027462423239825,5.000545541783467,5.1150992334879675,5.229396930245869,5.005087183186177,194.3695187718434,194.3695187718434,0.0,215.96613196871488,0.0,194.3695187718434,215.96613196871488,0,0
+2017/05/19 22:00:00,137.78469712492395,0,677.8085337180455,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.00010520963552294143,20.887642575815057,0,0,0.061423216576619886,518.0405241950202,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.036087028392448386,0.0011417684236032523,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.26183364915296015,-0.26183364915296015,-0.3216717788234486,-0.3216717788234486,-0.1649321339846537,-0.1649321339846537,0.8867214435340457,0.8867214435340457,0.2937464771483606,0.2937464771483606,-0.021712225801266263,-0.061427824504679776,-0.14114173138035982,-0.15751565125661693,-0.038439768936616873,-0.055072323478470256,-0.08490897646533188,-0.14534248929993168,-0.17404738228363023,-0.05565834040320114,6.423361898151981,6.423361898151981,7.151308925031572,7.151308925031572,5.563785142884086,5.563785142884086,21.600433834103356,21.600433834103356,6.792768481095976,6.792768481095976,5.0097588518518705,5.078124017132197,5.412739307739045,5.51416826736984,5.030589415481174,5.062792345735119,5.149289106332432,5.437696476158251,5.627908415353161,5.064135971095581,137.78469712492395,137.78469712492395,0.0,153.09410791658217,0.0,137.78469712492395,153.09410791658217,0,0
+2017/05/19 23:00:00,90.41372508754515,0,516.9202871458193,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.0006341568675588097,11.813332189630446,0,0,0.3707907461778608,463.31396763082523,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.804838183844815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,144.24744663005336,0.0,0.0,0,0,0,0,0,0,0,0,0.027521218973946243,0.0008707521844635481,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.33253092241582866,-0.33253092241582866,-0.38612598123428676,-0.38612598123428676,-0.402011296911734,-0.402011296911734,0.7303417465859899,0.7303417465859899,-0.015026468406635915,-0.015026468406635915,-0.11136533912143314,-0.15298380351679275,-0.18746518342080296,-0.257256210429992,-0.06056259193036809,-0.1538743686840259,-0.1863736262615224,-0.19543237960670337,-0.27913319410151854,-0.13536921174249647,7.299652180202287,7.299652180202287,8.1052283947283,8.1052283947283,8.367534305088014,8.367534305088014,16.227108759986834,16.227108759986834,5.004674111689724,5.004674111689724,5.256874585267994,5.484978045371392,5.7286073415886705,6.373894765786574,5.075938349518495,5.490646745330409,5.720134434181318,5.791958249685848,6.618282209627964,5.379642050552022,90.41372508754515,90.41372508754515,0.0,100.45969454171683,0.0,90.41372508754515,100.45969454171683,0,0
+2017/05/20 00:00:00,40.763983502976124,0,512.5709316794619,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.57934452348012e-09,9.578349435596724,0,0,0.0,459.33540291064566,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027289656067320783,0.0008634256955105795,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1386159591392293,-0.1386159591392293,-0.1729736487529787,-0.1729736487529787,-0.1429565515665944,-0.1429565515665944,0.7592683536258985,0.7592683536258985,0.31145350629279517,0.31145350629279517,-0.016178948544916985,0.03175430209866349,-0.11055318374474743,-0.12649369515427175,0.19858519550861867,-0.062261411398509,-0.046006608138637,-0.16439812745020455,-0.18265873008842595,0.11072286772233703,5.398086959142006,5.398086959142006,5.620174911938747,5.620174911938747,5.423431240784041,5.423431240784041,17.142957909865316,17.142957909865316,7.016284998878788,7.016284998878788,5.005418592976596,5.020873998250977,5.253139601987698,5.331457492947848,5.817760469325805,5.080259088369274,5.043819005283169,5.560135995343202,5.691671468734,5.253917689619129,40.763983502976124,40.763983502976124,0.0,45.2933150033068,0.0,40.763983502976124,45.2933150033068,0,0
+2017/05/20 01:00:00,23.7301534366555,0,41.25876789945851,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5330580129777059,0,0,0.0,5.768415386914379,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002196647363611613,6.950039139515048e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.08182156606313255,-0.08182156606313255,-0.09907975208620137,-0.09907975208620137,-0.08845993994686674,-0.08845993994686674,0.6818251639310395,0.6818251639310395,0.5071845170650177,0.5071845170650177,-0.07457409598445723,0.009062380854943982,-0.1842758761946129,-0.17926109541673846,0.30467755487291476,-0.12803945461619096,-0.059242956221578415,-0.23761871072414045,-0.22914307408986972,0.18920935058636013,5.138626583729263,5.138626583729263,5.203301737005532,5.203301737005532,5.162041439427895,5.162041439427895,14.771841896153504,14.771841896153504,10.37749651194278,10.37749651194278,5.115150276339719,5.001700070993891,5.703990957999238,5.666143846509769,6.929185587974828,5.339613732769365,5.0726645549734,6.171674774031089,6.089399183652006,5.742249259457566,23.7301534366555,23.7301534366555,0.0,26.36683715183944,0.0,23.7301534366555,26.36683715183944,0,0
+2017/05/20 02:00:00,28.344231199829235,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248681133563415,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.05214589143977585,-0.05214589143977585,-0.06333317902390119,-0.06333317902390119,-0.0608112486114891,-0.0608112486114891,0.6493527439471295,0.6493527439471295,0.5828484202813942,0.5828484202813942,-0.08899406614709529,-0.002834873512889312,-0.20904268738522797,-0.19298133991755081,0.3325242821010501,-0.16125379781886195,-0.07577711866719329,-0.27446376237812276,-0.25727581956868234,0.2035507567595167,5.056295541273485,5.056295541273485,5.083046529856375,5.083046529856375,5.076563305325777,5.076563305325777,13.854658383208815,13.854658383208815,12.118960603617182,12.118960603617182,5.164004870085762,5.000166359790484,5.906319719765236,5.772186373438387,7.299559940412365,5.538890217192275,5.11889639063547,6.564427425981208,6.374104796070071,5.859240858709313,28.344231199829235,28.344231199829235,0.0,31.49359022203248,0.0,28.344231199829235,31.49359022203248,0,0
+2017/05/20 03:00:00,23.722054627010294,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249592033325026,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.0733056043280535,-0.0733056043280535,-0.08165952953449658,-0.08165952953449658,-0.08083128282733724,-0.08083128282733724,0.5764289953686479,0.5764289953686479,0.6377157732634037,0.6377157732634037,-0.14429944717547957,-0.05324419098825765,-0.2690467191490347,-0.2470269238300945,0.37170790029667045,-0.22501314544122583,-0.13037536763420296,-0.3407862858821535,-0.31763242365584493,0.21552047680295702,5.111265291520937,5.111265291520937,5.138077902026453,5.138077902026453,5.135290334284548,5.135290334284548,11.961577254100845,11.961577254100845,13.537093617273058,13.537093617273058,5.431431099634466,5.0586922181511795,6.50310161261865,6.266535013399107,7.876481922171081,6.050400656405969,5.352127748286819,7.4157742746065765,7.097404358604749,5.963472574285433,23.722054627010294,23.722054627010294,0.0,26.357838474455882,0.0,23.722054627010294,26.357838474455882,0,0
+2017/05/20 04:00:00,37.91925402348583,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,0.33030681577809573,0.0,0.5250487956446467,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.002524122642431818,-0.002524122642431818,-0.01064933774192023,-0.01064933774192023,-0.010726806080802932,-0.010726806080802932,0.6110748893544166,0.6110748893544166,0.76793586675078,0.76793586675078,-0.15567378561362424,-0.06312340817358829,-0.2817380220240761,-0.258045189578679,0.3087937429663859,-0.24788218010226243,-0.15000770254875145,-0.3641358322414486,-0.33950590762448646,0.2396636702575798,5.000131886962208,5.000131886962208,5.002347622427848,5.002347622427848,5.002381902276795,5.002381902276795,12.832201121354174,12.832201121354174,17.42435589408467,17.42435589408467,5.502201363630036,5.082497213057252,6.648724465158196,6.38235816168293,6.981864223589582,6.275342690199594,5.466273971286256,7.759900255684556,7.39757450938113,6.191977307007008,37.91925402348583,37.91925402348583,0.0,42.13250447053981,0.0,37.91925402348583,42.13250447053981,0,0
+2017/05/20 05:00:00,73.09535043944031,0,212.9421150752648,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,0.7063677619243408,0.0,0.5249754883162303,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.22748488517957777,0.22748488517957777,0.2170075629891246,0.2170075629891246,0.21709867643386627,0.21709867643386627,0.8068692851597689,0.8068692851597689,0.886681584116385,0.886681584116385,-0.13096614386206867,-0.040269526906422944,-0.25888663218015945,-0.23513152831429784,0.42272156174636577,-0.2372808047679229,-0.14031941226574937,-0.35433101981534165,-0.33031935986379046,0.3182554486134703,6.07365512456731,6.07365512456731,5.97684099172632,5.97684099172632,5.9776630834820565,5.9776630834820565,18.727801714920446,18.727801714920446,21.598934064716218,21.598934064716218,5.35532862063782,5.03357109456033,6.391413194875469,6.147218418897182,8.725731350654286,6.16833691689763,5.407939776741699,7.612571601327133,7.269035109210989,7.105673434364832,73.09535043944031,73.09535043944031,0.0,81.21705604382257,0.0,73.09535043944031,81.21705604382257,0,0
+2017/05/20 06:00:00,88.93751010025167,0,676.2836435126677,0,0,0,0.0,0.0,6.927995217274711,0.0,80.56906512710079,0,0.9153848173691356,2.5210631139270246e-09,0.5250649359859837,0,0,0.0,445.59635218113084,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.036005842108417736,0.0011391997461680306,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.515198764769133,0.515198764769133,0.5058901710746166,0.5058901710746166,0.5079315042899054,0.5079315042899054,1.0755312631050487,1.0755312631050487,0.9677626598483492,0.9677626598483492,-0.06079628261039855,0.03209381295758651,-0.18881275021798816,-0.09676854889635866,0.5568057478226416,-0.16663351170994378,-0.06607580190552582,-0.28376503335571385,-0.17920559621183638,0.42751572749992434,10.550210424134477,10.550210424134477,10.349862743811428,10.349862743811428,10.393477352326315,10.393477352326315,29.4056304084272,29.4056304084272,24.78215326595732,24.78215326595732,5.0765256183858725,5.021322766705168,5.739136105249557,5.193923746214736,11.491564170728523,5.5754908381182275,5.090396307240809,6.672611898128167,5.665730861852197,8.811270181745698,88.93751010025167,88.93751010025167,0.0,98.8194556669463,0.0,88.93751010025167,98.8194556669463,0,0
+2017/05/20 07:00:00,117.67804361392993,0,696.9136579182602,0,0,0,0.325923394931488,0.0,5.771406031709463,0.0,69.33401494192633,0,39.380909295966944,0.00013680728491320524,0.5776696738079574,0,0,0.08012023530029787,430.655893838879,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1340.535277501913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.853241005567696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03710419935616069,0.00117395100386846,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.351042517487644,0.351042517487644,0.33073007007535293,0.33073007007535293,0.32031345616305335,0.32031345616305335,1.222325059371508,1.222325059371508,0.7610251574345078,0.7610251574345078,-0.08312436146528238,-0.10628469168044252,-0.2005776134311427,-0.0659276817925573,0.34094766138348687,-0.1501045286265166,-0.14173504112176802,-0.2578341613327634,-0.07020562016338956,0.26999150877035144,7.56407439815051,7.56407439815051,7.27470532533502,7.27470532533502,7.133105157673356,7.133105157673356,36.34555622948768,36.34555622948768,17.199734674995867,17.199734674995867,5.143077633749243,5.233959783409517,5.834280480463079,5.089991405546627,7.418073067053285,5.466876694339987,5.416219684397603,6.380091891606497,5.102051756913511,6.51370846363308,117.67804361392993,117.67804361392993,0.0,130.75338179325547,0.0,117.67804361392993,130.75338179325547,0,0
+2017/05/20 08:00:00,140.16262920588025,0,774.2209959515063,0,0,0,1.069531266841347,0.0,11.287802377079139,0.0,87.89947186453183,0,39.380909295966944,5.032665218131508e-05,0.5248640748088311,0,0,0.02948487700011488,454.7783384616091,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4557.04746073165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.041220099295111376,0.0013041752089179353,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.02469745816009539,0.02469745816009539,-0.1045719827625809,-0.1045719827625809,-0.02093690406233298,-0.02093690406233298,1.2087108810377467,1.2087108810377467,0.3979167756209619,0.3979167756209619,-0.06110790193280334,-0.14231818724925419,-0.20005018196076063,-0.020119989351193003,0.0063262577598320775,-0.11288060668513225,-0.14355492822551133,-0.2130069255164997,0.005094791336943605,-0.06408104445346913,5.012626914784974,5.012626914784974,5.226476689480023,5.226476689480023,5.0090743246420715,5.0090743246420715,35.67423890529797,35.67423890529797,8.29889144241885,8.29889144241885,5.07731224443566,5.419654717115435,5.829891157625596,5.008380003989856,5.000828467321341,5.26391632277074,5.426986601005595,5.941087159316822,5.0005373214095385,5.085019770330007,140.16262920588025,140.16262920588025,0.0,155.73625467320028,0.0,140.16262920588025,155.73625467320028,0,0
+2017/05/20 09:00:00,181.51225565401438,0,892.5700698595695,0,0,0,1.4885743215018128,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.988412902727361e-05,23.16921806537651,0,0,0.017510537618991406,519.903857940237,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6410.552024462311,0.0,24.62433427292456,0.0,0.0,0.0,0.0,28.61668911966112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047521091651924696,0.0015035342149335256,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1157434797356461,0.1157434797356461,-0.175340721368851,-0.175340721368851,0.009080351641859443,0.009080351641859443,1.2068138565129956,1.2068138565129956,0.4589590396746663,0.4589590396746663,0.029351086237101694,-0.07930451317379657,-0.1183520470977721,-0.015057641345873925,0.039170120080770005,0.01354992446027334,-0.11212047845554918,-0.14689775238818084,0.0232227761990302,-0.022919336752686335,5.277480983367809,5.277480983367809,5.6372874836892635,5.6372874836892635,5.001706820217834,5.001706820217834,35.581109809062966,35.581109809062966,9.396762437806657,9.396762437806657,5.0178338862844925,5.130226359501023,5.290137206482314,5.004693525222848,5.031762929549956,5.0038006525220595,5.260371940155608,5.447122791633689,5.011163994878956,5.010874146341621,181.51225565401438,181.51225565401438,0.0,201.68028406001596,0.0,181.51225565401438,201.68028406001596,0,0
+2017/05/20 10:00:00,208.18044752899394,0,979.25172378287,0,0,0,1.499690894107933,0.0,14.839439983088985,0.0,131.64086955684016,0,39.380909295966944,1.4114477440739558e-05,20.819523684512404,0,0,0.00827029360539403,517.8688708261909,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6497.441231379974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052136087112480155,0.0016495494543882993,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.39819201719864145,0.39819201719864145,-0.028304291966362322,-0.028304291966362322,0.17560520499052526,0.17560520499052526,1.1711488369505514,1.1711488369505514,0.6571849812485963,0.6571849812485963,0.02893060413379985,-0.21699646998803707,-0.11570630780349907,0.037631296454989346,0.05552504661103123,0.05825207300297179,-0.12181019059840574,-0.10990196872549042,0.08660723915092265,0.011985251864145516,8.303483261793787,8.303483261793787,5.016584449135365,5.016584449135365,5.639214068883547,5.639214068883547,33.84973235949526,33.84973235949526,14.071700148325249,14.071700148325249,5.0173265527080275,5.9767409263515106,5.277302676083622,5.029316141204873,5.0638291035746335,5.070253777771683,5.307351297401979,5.250164550624163,5.155322699415791,5.002973568640556,208.18044752899394,208.18044752899394,0.0,231.3116083655488,0.0,208.18044752899394,231.3116083655488,0,0
+2017/05/20 11:00:00,215.21101846112884,0,1054.4609765304263,0,0,0,1.3893391279673624,0.0,14.783782912797726,0.0,136.4899973586286,0,39.380909295966944,2.9094095432606465e-09,23.166989762858737,0,0,0.0,539.8508650985364,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5953.146945706814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05614028343675495,0.0017762394349332721,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6345490218995221,0.6345490218995221,0.09030252461777936,0.09030252461777936,0.32284328431046916,0.32284328431046916,1.122563145566108,1.122563145566108,0.8252238184584098,0.8252238184584098,0.14380203413962384,-0.16187041848190903,-0.10513003841525928,0.07007750286217282,0.1622843566687155,0.19358427581119814,-0.11117124422013101,-0.06660007248497088,0.12648805483041187,0.13417068751258954,13.451691762193647,13.451691762193647,5.168864734889411,5.168864734889411,7.167071843599217,7.167071843599217,31.553945904874638,31.553945904874638,19.364534262977813,19.364534262977813,5.428459172389651,5.543024147725376,5.228901544315974,5.1016795493580815,5.545808150799985,5.777026806903081,5.255979479938645,5.091836761052363,5.331427913540139,5.3729440072004735,215.21101846112884,215.21101846112884,0.0,239.12335384569872,0.0,215.21101846112884,239.12335384569872,0,0
+2017/05/20 12:00:00,204.34662789085252,0,1018.9679214204996,0,0,0,2.283087338937988,0.0,14.783782912797726,0.0,124.80122689546741,0,39.380909295966944,2.909409543260647e-09,23.097621444773008,0,0,0.0,539.8481625011536,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4976.645107431279,3096.3340870895345,0.0,0.0,0.0,0.0,350.7300502891537,21.889393202293025,0.0,0.0,0.0,54.137264369368054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05425060689275992,0.0017164513862944779,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7843285475815461,0.7843285475815461,0.18555609261355976,0.18555609261355976,0.42369119781669795,0.42369119781669795,1.0610872991696256,1.0610872991696256,0.8844166678717019,0.8844166678717019,0.26558257522938206,-0.08497572733307533,-0.059496311744448034,0.07777945268199318,0.2530346097744204,0.34106827286167507,-0.052701464579433394,-0.014980605198820966,0.1318986802907716,0.23767786538442098,17.96531685760334,17.96531685760334,5.713821153756967,5.713821153756967,8.742952318191385,8.742952318191385,28.761235586138042,28.761235586138042,21.513820070235752,21.513820070235752,6.464532443278486,5.1495240002476805,5.073287489915842,5.12526456033288,6.329054458546565,7.419791898855465,5.057501650234812,5.004645622657975,5.360410715650417,6.172259600648502,204.34662789085252,204.34662789085252,0.0,227.0518087676139,0.0,204.34662789085252,227.0518087676139,0,0
+2017/05/20 13:00:00,202.00555956259134,0,961.5220835234938,0,0,0,4.521449748264586,0.0,14.728125842506467,0.0,122.5097643007467,0,39.380909295966944,2.8567102163275665e-09,20.865310372249844,0,0,0.0,517.8926771166923,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.71803504522015,0.0,0.0,4661.09026996625,5542.18945610288,227.55710583495437,0.0,0.0,0.0,2417.878140623559,832.1654023091971,0.0,0.0,0.0,1996.6656298385465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05119214793260823,0.0016196838767170369,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8522011339757819,0.8522011339757819,0.3257284517030078,0.3257284517030078,0.4886328257075655,0.4886328257075655,1.0430248342083455,1.0430248342083455,0.892056412955364,0.892056412955364,0.32884649331205956,0.02729960335357553,-0.003994782749531433,0.10429161517847424,0.280924736432312,0.39650523970699914,0.07840629486195624,0.058119382012407655,0.1630942494718543,0.27844950529443846,20.32603696946211,20.32603696946211,7.2061406404827295,7.2061406404827295,9.98834262731738,9.98834262731738,27.965900792965385,27.965900792965385,21.801755956616375,21.801755956616375,7.248759743406879,5.015427943682326,5.000330344802762,5.225263320710539,6.63918898150834,8.275393890114003,5.127292323049957,5.069934035208348,5.551275863936908,6.610339449506327,202.00555956259134,202.00555956259134,0.0,224.4506217362126,0.0,202.00555956259134,224.4506217362126,0,0
+2017/05/20 14:00:00,190.20948678430335,0,902.9038821602353,0,0,0,8.749755391428353,0.0,14.728125842506467,0.0,108.75639138185811,0,39.380909295966944,2.803100181763205e-09,18.594304869740373,0,0,0.0,494.76482826597777,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645.7241792671014,0.0,0.0,4398.239585580961,10284.114101031315,938.3807586392136,11.46679389578747,0.0,0.0,5987.566305024298,1724.0296705617118,175.83748743067346,0.0,0.0,5513.52279429016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0480712714731358,0.0015209415209696737,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.845770049805912,0.845770049805912,0.5916835129090042,0.5916835129090042,0.5723864968011437,0.5723864968011437,1.0231122306768652,1.0231122306768652,0.8759787681241716,0.8759787681241716,0.33149843080372304,0.2129234241735315,0.058623023153282806,0.16200248840521778,0.2726503305853714,0.38487708552545946,0.277582194859164,0.13039256531523738,0.22579803899023146,0.274314536159763,20.094068418905948,20.094068418905948,12.338492433569755,12.338492433569755,11.86338586945351,11.86338586945351,27.102872019541223,27.102872019541223,21.198580844970735,21.198580844970735,7.2853324429369195,5.94034804620091,5.071151519111851,5.543911627857398,6.543760052044874,8.085063308557068,6.600291827666453,5.352220721573474,6.057757285518065,6.562721486472114,190.20948678430335,190.20948678430335,0.0,211.34387420478149,0.0,190.20948678430335,211.34387420478149,0,0
+2017/05/20 15:00:00,187.10929900885225,0,923.8354359881505,0,0,0,8.066659976605468,0.0,14.728125842506467,0.0,106.31215624428707,0,39.380909295966944,2.8031001817632045e-09,18.621447646683198,0,0,0.0,515.696382093893,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101.34078179760425,176.2761515256356,0.0,4227.396267889182,10785.275184976876,368.3708377504519,290.8425604623974,0.0,0.0,5092.491069094218,1075.4086236523315,754.2179430514602,0.0,0.0,4502.920900036107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04918568290307548,0.001556200721804119,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8251703615755936,0.8251703615755936,0.8139695773929019,0.8139695773929019,0.621507535482894,0.621507535482894,1.014602857811951,1.014602857811951,0.8877061542433942,0.8877061542433942,0.31989039958361015,0.3300598012061934,0.07243218827698544,0.1725491490582184,0.2796319849783304,0.3635821369909973,0.406821918700552,0.15443738655268283,0.2422223998040746,0.28087263101200266,19.362659227826825,19.362659227826825,18.97243350670648,18.97243350670648,13.10457039711929,13.10457039711929,26.73854296949615,26.73854296949615,21.63750566130207,21.63750566130207,7.1274514703858785,7.265455364302198,5.108629078982986,5.617130744948753,6.624089353926379,7.751471276017554,8.44909890884962,5.49424755929293,6.2176279079500745,6.6385790151074815,187.10929900885225,187.10929900885225,0.0,207.89922112094695,0.0,187.10929900885225,207.89922112094695,0,0
+2017/05/20 16:00:00,204.62998925069462,0,953.2866326223211,0,0,0,13.95878002978708,0.0,14.78378283874635,0.0,120.17895923267236,0,39.380909295966944,2.7485701907688064e-09,16.32755785077324,0,0,0.0,491.9120499592473,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715.5372316807378,1642.9869220298328,126.0651717325519,4534.647170086019,17341.995562117234,786.6212145409961,1370.1933827464077,0.0,0.0,9169.988258079855,1407.71383027017,2052.5954779059475,190.46524635019176,112.14684093782293,8422.21127090613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050753686426576405,0.0016058112602990715,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8374027633745059,0.8374027633745059,0.9530012265564155,0.9530012265564155,0.7324364592088628,0.7324364592088628,1.0224054257871904,1.0224054257871904,0.9303530687854499,0.9303530687854499,0.32052111222082047,0.4064683182415564,0.1426808270219993,0.22554473592685648,0.2972238526028282,0.35610419696126494,0.47813429103857025,0.21560535195936859,0.2844671278189029,0.2969295469565862,19.794841089613143,19.794841089613143,24.18315532595267,24.18315532595267,16.292223921334497,16.292223921334497,27.07250744332825,27.07250744332825,23.280818412150722,23.280818412150722,7.135883028406042,8.443069842858236,5.421797990655634,6.0553803105626685,6.835617450081017,7.638912490055645,9.774702297202992,5.964233081558717,6.6809261956677375,6.8319711594297985,204.62998925069462,204.62998925069462,0.0,227.366654722994,0.0,204.62998925069462,227.366654722994,0,0
+2017/05/20 17:00:00,217.42593164351717,0,976.2186795711814,0,0,0,4.486369799545535,0.0,16.630907673226492,0.0,138.40412594678773,0,39.380909295966944,2.803100181763205e-09,18.523618925187264,0,0,0.0,514.8440969081076,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,493.41297346568524,0.0,4127.148116561966,10418.36147749166,0.0,0.0,0.0,0.0,0.0,0.0,632.7824968604832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05197460559205378,0.001644440291643914,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.770199057228953,0.770199057228953,0.9895052449439735,0.9895052449439735,0.7384198248207251,0.7384198248207251,1.014499928408107,1.014499928408107,0.9552844835976926,0.9552844835976926,0.22801411631030644,0.4320075348139284,0.06479199410160863,0.09975742423810444,0.3043338200817475,0.28282786271930005,0.5004139024711948,0.15794703755542036,0.1616094716666585,0.28886607454585306,17.498360288100358,17.498360288100358,25.6798539539662,25.6798539539662,16.479258005924052,16.479258005924052,26.73415259345711,26.73415259345711,24.275248520746658,24.275248520746658,6.078667503337158,8.892309239992372,5.086917101654507,5.206093511612906,6.92481892733808,6.66154620943496,10.233747957693183,5.5169914852034765,5.541272781311207,6.733492656562973,217.42593164351717,217.42593164351717,0.0,241.58436849279684,0.0,217.42593164351717,241.58436849279684,0,0
+2017/05/20 18:00:00,208.40089212998413,0,968.0113912400603,0,0,0,6.412769122242486,0.0,16.798297355077125,0.0,120.14191543460078,0,39.380909295966944,2.9612074113612e-09,25.66700091913553,0,0,0.0,542.1271610895307,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3980.4806746441277,7425.17235669677,0.0,0.0,0.0,0.0,5414.264977757935,0.0,359.3376916869506,0.0,0.0,4400.273747590792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051537643482111706,0.0016306151150730626,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7122956097154372,0.7122956097154372,0.890873255527323,0.890873255527323,0.7434067592053443,0.7434067592053443,1.0067426777059534,1.0067426777059534,0.9824742710805637,0.9824742710805637,0.2551482088193661,0.4365378541606274,0.1560839567976746,0.11191157397361765,0.3693463800006457,0.29727091556303903,0.5020551251727816,0.2396995819346019,0.14975890352147064,0.3586172942701261,15.673954283070685,15.673954283070685,21.75700762499548,21.75700762499548,16.636318918996565,16.636318918996565,26.404416980609682,26.404416980609682,25.387567193852107,25.387567193852107,6.351410639834157,8.974920564684126,5.50485407966643,5.259402049255414,7.839861054262869,6.836200874657024,10.268411224126353,6.1923354099872085,5.464727037388698,7.6764742781200255,208.40089212998413,208.40089212998413,0.0,231.55654681109348,0.0,208.40089212998413,231.55654681109348,0,0
+2017/05/20 19:00:00,204.48511531483518,0,931.6951689079312,0,0,0,10.229430335609635,0.0,18.423613399215846,0.0,110.89738010901058,0,39.380909295966944,2.961207411361199e-09,25.553782172070868,0,0,0.0,541.3012912699458,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3868.529854299596,7258.773837018162,0.0,0.0,0.0,0.0,12186.115751938736,0.0,236.52747247262724,0.0,0.0,10590.576675399963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04960414090548117,0.001569440441310946,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6693306484436099,0.6693306484436099,0.6863196862984773,0.6863196862984773,0.7240696389867861,0.7240696389867861,1.000571699273731,1.000571699273731,0.9937128096519278,0.9937128096519278,0.29795961557150846,0.42779851616288594,0.23009210429665988,0.14782775850732643,0.41484074861264353,0.3299777108129193,0.4785376665618165,0.307335501897821,0.17091541369425878,0.40870595589834263,14.413529608758253,14.413529608758253,14.90238556055293,14.90238556055293,16.033265396738926,16.033265396738926,26.143728186695824,26.143728186695824,25.8556732882126,25.8556732882126,6.844749178175093,8.816346576562296,6.098461860437183,5.452807592945973,8.587261689791262,7.264323796449517,9.782822955974126,6.963119775797992,5.605485062342439,8.481312949568107,204.48511531483518,204.48511531483518,0.0,227.2056836831502,0.0,204.48511531483518,227.2056836831502,0,0
+2017/05/20 20:00:00,201.38436300190688,0,894.7307283373457,0,0,0,5.0859946652126276,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,2.9094095432606465e-09,23.09870835332776,0,0,0.0,539.8272032119044,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3349.379959234154,3681.5378120084833,0.0,0.0,0.0,0.0,5889.361211026376,0.0,0.0,0.0,0.0,4121.001097722401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047636126709695636,0.0015071738439753483,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6012349935547723,0.6012349935547723,0.5673184685772563,0.5673184685772563,0.6307559243844771,0.6307559243844771,0.9809882729374102,0.9809882729374102,0.9768078095291676,0.9768078095291676,0.2401819924982998,0.31968521738605843,0.15151881845307089,0.09206543206959149,0.40869800147809027,0.2655845577194605,0.36586817916772746,0.2205097370039754,0.1065394405973323,0.4004005793168694,12.579635682640514,12.579635682640514,11.741286127715952,11.741286127715952,13.349971018506025,13.349971018506025,25.32603547017223,25.32603547017223,25.153388867088808,25.153388867088808,6.197151146870937,7.124712166619489,5.475724868643098,5.175524837950178,8.481176622107029,6.464554371442759,7.786356376053249,6.0086904023711725,5.235083227447376,8.340445745645624,201.38436300190688,201.38436300190688,0.0,223.76040333545208,0.0,201.38436300190688,223.76040333545208,0,0
+2017/05/20 21:00:00,202.57708149296622,0,860.7085857172285,0,0,0,10.813604812597216,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,2.961207411361199e-09,25.553933225891754,0,0,0.0,541.2954131043314,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3238.692441768205,8318.42576091057,0.0,77.02770596822677,0.0,0.0,12840.006815848621,39.7172534759805,227.9306212296407,0.0,0.0,11211.926413026722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04582476263617275,0.0014498635473139977,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6091971972692104,0.6091971972692104,0.5522675704240343,0.5522675704240343,0.6304204299700744,0.6304204299700744,0.9675286784062131,0.9675286784062131,0.9508489809250904,0.9508489809250904,0.28320054045821197,0.3370790950109179,0.19623803180270283,0.14254590968826097,0.39913589341424666,0.29860563921754923,0.36330553750457767,0.2548629098625694,0.148810416379463,0.3904062890677733,12.783681041689363,12.783681041689363,11.385244016352772,11.385244016352772,13.341003999536753,13.341003999536753,24.772592239976376,24.772592239976376,24.096534117104213,24.096534117104213,6.66594218198064,7.363269974562186,5.798512067890059,5.420999962868962,8.319254436248997,6.852785995428974,7.747265455453018,6.348381977189291,5.4588533645484745,8.174845181012003,202.57708149296622,202.57708149296622,0.0,225.0856461032958,0.0,202.57708149296622,225.0856461032958,0,0
+2017/05/20 22:00:00,141.00686796642188,0,675.4378182312289,0,0,0,4.404726731949029,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,2.8031001817632045e-09,18.594764829698626,0,0,0.0,515.7312319247802,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2000.616803988185,0.0,0.0,0.0,0.0,0.0,7071.157987331033,0.0,0.0,0.0,0.0,5492.8477167190595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03596080974392551,0.001137774953545644,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4871068739395952,0.4871068739395952,0.4282666419956689,0.4282666419956689,0.4964322412801364,0.4964322412801364,0.9125797367756002,0.9125797367756002,0.8345412913089332,0.8345412913089332,0.2512496588324968,0.3017454465716653,0.15777071141052937,0.11784377281091418,0.3908757471346458,0.2636135486895749,0.3256457687742563,0.21056304823668634,0.12068190539712738,0.37989333666956426,9.956994773862164,9.956994773862164,8.82475753830326,8.82475753830326,10.150137409024808,10.150137409024808,22.587028413020306,22.587028413020306,19.69318131019854,19.69318131019854,6.310320799196489,6.892097827771579,5.51583657757547,5.28764898729905,8.182528289977952,6.442834904589702,7.205016096948015,5.919575917319321,5.301680248093234,8.005257236064509,141.00686796642188,141.00686796642188,0.0,156.67429774046875,0.0,141.00686796642188,156.67429774046875,0,0
+2017/05/20 23:00:00,89.7005793272024,0,520.0587609344565,0,0,0,0.15000022218022865,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6931109945456173e-09,14.039598043490814,0,0,0.0,466.8232321656402,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,580.4397823171258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027688313643141747,0.0008760389433223013,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2720579376600004,0.2720579376600004,0.21104369223585445,0.21104369223585445,0.2759909362191713,0.2759909362191713,0.849454114010114,0.849454114010114,0.5900572241534473,0.5900572241534473,0.10723417750999475,0.1535292226210712,0.008349834094943363,-0.024506302858224336,0.30549721500260724,0.10651671491494838,0.16380820645607497,0.04888397154634516,-0.03400279061243265,0.2731731698758395,6.537038682953948,6.537038682953948,5.923786837899343,5.923786837899343,6.5819398880819335,6.5819398880819335,20.22674171799926,20.22674171799926,12.297828496258106,12.297828496258106,5.238160716970398,5.488445871952038,5.001443237779256,5.012432204411013,6.939618370795756,5.234982897591408,5.556118576034322,5.049472101779486,5.023934948743943,6.549704542828948,89.7005793272024,89.7005793272024,0.0,99.66731036355823,0.0,89.7005793272024,99.66731036355823,0,0
+2017/05/21 00:00:00,44.16041213300169,0,516.2007500548717,0,0,0,0.38784027475224336,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.7599117511809693,2.636713344294881e-09,11.827026039631711,0,0,0.0,462.9652212860555,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,360.57689673513624,943.3780278708329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027482910286258273,0.0008695401242884589,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.45883921089257024,0.45883921089257024,0.40510039140431847,0.40510039140431847,0.4231101602462007,0.4231101602462007,0.8402208132793135,0.8402208132793135,0.7315142570409933,0.7315142570409933,0.2650258705270882,0.34324862028213365,0.11198710735431273,0.13867454132487,0.4822451855412303,0.24241988294615355,0.33400752521612476,0.1354008182113882,0.11004168627605376,0.42723767650622446,9.394450442730559,9.394450442730559,8.419796411449013,8.419796411449013,8.732628110003418,8.732628110003418,19.895292664404778,19.895292664404778,16.263533582126527,16.263533582126527,6.458381325436278,7.450970567785561,5.259752522491198,5.398423795206568,9.857790565946559,6.21961905507473,7.3202099665312375,5.379819494382687,5.25080136088674,8.806282179852147,44.16041213300169,44.16041213300169,0.0,49.067124592224104,0.0,44.16041213300169,49.067124592224104,0,0
+2017/05/21 01:00:00,23.745565093707466,0,52.822024021395286,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.548469670029673,0,0,0.0,17.331671508851155,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002812283684524424,8.89786954549167e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.43673474850870375,0.43673474850870375,0.40457242597755905,0.40457242597755905,0.3842462062775111,0.3842462062775111,0.809094408300506,0.809094408300506,0.8290496534062679,0.8290496534062679,0.22254464522153117,0.3231719188238559,0.052985953521545386,0.0928959395102442,0.5394266626369195,0.21583122645233133,0.3377724216153039,0.08438612166957458,0.09183261708562819,0.46373342167606946,8.978530962302543,8.978530962302543,8.410835216552996,8.410835216552996,8.074902246496563,8.074902246496563,18.804236758241473,18.804236758241473,19.499039292228062,19.499039292228062,6.027432305803188,7.171504157873599,5.058124205934831,5.178707104830892,11.089244539672563,5.966258455854444,7.373045063796226,5.147455592757012,5.17463789372556,9.489383198083203,23.745565093707466,23.745565093707466,0.0,26.383961215230517,0.0,23.745565093707466,26.383961215230517,0,0
+2017/05/21 02:00:00,28.344202460314875,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248393738419826,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4556535691136516,0.4556535691136516,0.42892519330755374,0.42892519330755374,0.39831535555480724,0.39831535555480724,0.7994482035612696,0.7994482035612696,0.8949100961026348,0.8949100961026348,0.22720714296584957,0.324160486492819,0.04845979834858572,0.10336626941016477,0.560367256763648,0.20992217600564242,0.33001520098371995,0.06866500230970297,0.088128481516102,0.471093745766303,9.333212832390828,9.333212832390828,8.836605855730852,8.836605855730852,8.30554195089968,8.30554195089968,18.474392941663496,18.474392941663496,21.909920374197384,21.909920374197384,6.07102931154914,7.184864634221995,5.048617183760641,5.221281791280148,11.575628381798467,5.913976282685269,7.264840540960876,5.097621045179423,5.160828960434358,9.634093755441683,28.344202460314875,28.344202460314875,0.0,31.49355828923875,0.0,28.344202460314875,31.49355828923875,0,0
+2017/05/21 03:00:00,23.722049210856913,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249537871791217,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.41583237778487486,0.41583237778487486,0.3883540956197765,0.3883540956197765,0.35691208734635466,0.35691208734635466,0.7274804664975186,0.7274804664975186,0.8689420517902687,0.8689420517902687,0.2049545362248614,0.2987145856524279,0.024266239763204463,0.08454643411215262,0.572037442869819,0.1858047659374821,0.3028821900399396,0.042504632298975165,0.06607177976329548,0.471152790795861,8.604538659574516,8.604538659574516,8.141369734887064,8.141369734887064,7.65095823159939,7.65095823159939,16.138469269360655,16.138469269360655,20.937928139327894,20.937928139327894,5.871154503074237,6.854143075173724,5.012189819919641,5.1480165607093085,11.854940679107855,5.71573854179303,6.906433153808365,5.037401461753319,5.09038530028613,9.63526407280321,23.722049210856913,23.722049210856913,0.0,26.35783245650768,0.0,23.722049210856913,26.35783245650768,0,0
+2017/05/21 04:00:00,40.51414433378408,0,88.72588128136032,0,0,0,0.00322013203927344,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,2.9219690640965155,0.0,0.5250567255852185,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,12.30420023341265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4843550148825759,0.4843550148825759,0.45713534989170684,0.45713534989170684,0.4239817788814943,0.4239817788814943,0.7768990156378309,0.7768990156378309,0.8528849791326002,0.8528849791326002,0.22239360437421302,0.31049291493082,0.03880650365705851,0.10170189855163092,0.41961464110910424,0.18948497324723423,0.29665515832463274,0.04314491345461702,0.06922008502347994,0.38130819181933207,9.900716985258995,9.900716985258995,9.361642771802082,9.361642771802082,8.748120961196264,8.748120961196264,17.718723299932634,17.718723299932634,20.35080436072782,20.35080436072782,6.026035227205739,7.003819160515306,5.031175916179237,5.214209899499863,8.670823305023745,5.7444166575665605,6.828574927349237,5.038536859619882,5.099206086287836,8.027805891445283,40.51414433378408,40.51414433378408,0.0,45.01571592642676,0.0,40.51414433378408,45.01571592642676,0,0
+2017/05/21 05:00:00,77.36893178720396,0,212.9421150752648,0,0,0,0.05786980406613756,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,4.922084738429795,0.0,0.5249700555082584,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,226.933932069183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.673276369497313,0.673276369497313,0.6436707550436354,0.6436707550436354,0.6146727101273944,0.6146727101273944,0.9106912660745022,0.9106912660745022,0.9182319936490638,0.9182319936490638,0.22154208383223487,0.3109201126925382,0.04023444480833518,0.10179174906121871,0.39716968579562106,0.1921398415218858,0.298003514188895,0.04725695692480548,0.07288971357099247,0.37169836411893425,14.525953363779308,14.525953363779308,13.698867260789854,13.698867260789854,12.925597285139048,12.925597285139048,22.514057953519355,22.514057953519355,22.806290793993952,22.806290793993952,6.018176830460945,7.009358191502059,5.03351262271012,5.214588736569155,8.286444174200867,5.765456135101132,6.845294737587139,5.046233402559295,5.1100060730586705,7.876333563386112,77.36893178720396,77.36893178720396,0.0,85.96547976355996,0.0,77.36893178720396,85.96547976355996,0,0
+2017/05/21 06:00:00,93.50306688533034,0,675.8981179129166,0,0,0,0.1942511735801275,0.0,6.927995217274711,0.0,80.56906512710079,0,5.2865351421790665,2.521086253059503e-09,0.5252202226745505,0,0,0.0,445.21082658137965,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,772.4395912324147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03598531643992561,0.001138550328324511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8049585768369012,0.8049585768369012,0.7754692905916207,0.7754692905916207,0.7504226584928312,0.7504226584928312,0.9850693788837585,0.9850693788837585,0.9435851304038847,0.9435851304038847,0.24621854874378604,0.3301170632042208,0.06694525716837031,0.16603349517638277,0.4029006714782246,0.2243980713105967,0.31378046296663636,0.0813032427355892,0.15403508304982216,0.3806235812705093,18.66233395945234,18.66233395945234,17.67153882717338,17.67153882717338,16.859086591816634,16.859086591816634,25.49522828756352,25.49522828756352,23.805535499042875,23.805535499042875,6.2582383897240135,7.266244856593403,5.09279138945503,5.5713488709290715,8.382539110364391,6.0446537569033865,7.046644445709276,5.1368752873128045,5.491673256839007,8.016884530281175,93.50306688533034,93.50306688533034,0.0,103.89229653925594,0.0,93.50306688533034,103.89229653925594,0,0
+2017/05/21 07:00:00,115.50563307789044,0,696.4677871522106,0,0,0,0.37897032632147415,0.0,5.834152620960616,0.0,69.33401494192633,0,39.380909295966944,2.5210888231961793e-09,0.5775858901939984,0,0,0.0,430.29014330812976,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1510.6347624767213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03708046086631676,0.00117319993459689,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3988587826019338,0.3988587826019338,0.34700923669978373,0.34700923669978373,0.361620008574082,0.361620008574082,1.0759922552118253,1.0759922552118253,0.5123820140489711,0.5123820140489711,-0.04778384403908635,-0.0730762225083652,-0.1831501305047554,-0.11093287540185821,0.13923067489002428,-0.07686631433102395,-0.08037824636195057,-0.17390428181808346,-0.11458736992151888,0.0849438691714078,8.314620255443785,8.314620255443785,7.505221617338023,7.505221617338023,7.7217066620194,7.7217066620194,29.42631811921727,29.42631811921727,10.489190451880404,10.489190451880404,5.047270206042626,5.110569890966445,5.695403428276009,5.254882337982949,5.401628566527975,5.122339818573735,5.133777620484253,5.62687496434441,5.271962198651593,5.149411869461318,115.50563307789044,115.50563307789044,0.0,128.33959230876715,0.0,115.50563307789044,128.33959230876715,0,0
+2017/05/21 08:00:00,147.23245591974603,0,768.0379832051748,0,0,0,1.076686356006921,0.0,9.332689672910613,0.0,96.91714705112861,0,39.380909295966944,2.521088823513334e-09,0.5250235412118447,0,0,0.0,448.62481059227764,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4520.275438601933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.040890911116697924,0.0012937599244160227,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2290187729136105,0.2290187729136105,0.0798301771571203,0.0798301771571203,0.22064655991256604,0.22064655991256604,1.1524174334803314,1.1524174334803314,0.5569583129320221,0.5569583129320221,-0.06038674447195877,-0.09800466637017369,-0.15025836707445028,0.0031723173071642654,0.2268358185471264,-0.12724390685019993,-0.15457521658874493,-0.1706587291290451,-0.0392107760405773,0.17726667846625468,6.088214979024528,6.088214979024528,5.131958964547962,5.131958964547962,6.009945126225588,6.009945126225588,32.95577481836958,32.95577481836958,11.495153971190362,11.495153971190362,5.0754979339431685,5.1989118649374575,5.467835110988858,5.000208321585902,6.067523812949744,5.335403597029455,5.495131071434642,5.603665470199303,5.031828903901754,5.65138355424898,147.23245591974603,147.23245591974603,0.0,163.5916176886067,0.0,147.23245591974603,163.5916176886067,0,0
+2017/05/21 09:00:00,147.67665542217202,0,808.7328250735478,0,0,0,1.3704764156157845,0.0,9.332689672910613,0.0,97.06762091869685,0,39.380909295966944,2.521088823513373e-09,0.5249591164607451,0,0,0.0,436.08412369183435,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5875.878387030781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04305753464071077,0.0013623103824546108,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4145485119438509,0.4145485119438509,0.17217451340104933,0.17217451340104933,0.3335460820617206,0.3335460820617206,1.1708158539755984,1.1708158539755984,0.7029882426071223,0.7029882426071223,0.010245155697271673,-0.07280419691232556,-0.13828316486042488,0.1306005474409044,0.22152820239536108,-0.014871501453733157,-0.10686147564139324,-0.13174149525716305,0.1452536150353017,0.18109399935763223,8.582178144524136,8.582178144524136,5.61445040738333,5.61445040738333,7.313775650118913,7.313775650118913,33.83374629117826,33.83374629117826,15.394147037042586,15.394147037042586,5.002172801283308,5.109748037797161,5.396176167145612,5.353346078480314,6.018048975091105,5.004578200263708,5.2365072602396765,5.3595515614147615,5.437160858507141,5.679855228417097,147.67665542217202,147.67665542217202,0.0,164.08517269130223,0.0,147.67665542217202,164.08517269130223,0,0
+2017/05/21 10:00:00,201.7398776745273,0,1001.1010109476085,0,0,0,1.43423147577141,0.0,12.984000736477544,0.0,124.87761316689259,0,39.380909295966944,2.9094344698831055e-09,23.063122996509335,0,0,0.0,539.7264282845347,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6171.515161261443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0532993593450435,0.0016863545769589686,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6078959534743232,0.6078959534743232,0.2548659441359856,0.2548659441359856,0.44622835272179046,0.44622835272179046,1.1633102835231748,1.1633102835231748,0.8411098843734164,0.8411098843734164,0.07603381623178662,-0.0746632776898306,-0.12645788790367316,0.16382625024066477,0.20772320425701155,0.07801594334275685,-0.09788544370297084,-0.10472170415825555,0.19915689306353948,0.18047807366674526,12.750146309030782,12.750146309030782,6.3484141702685974,6.3484141702685974,9.15458918662,9.15458918662,33.47431498642672,33.47431498642672,19.927053110573056,19.927053110573056,5.119703494293418,5.115425921518508,5.331269732344239,5.556241240866683,5.894893422547554,5.126027666488454,5.198428000932665,5.227125987342589,5.822483681089295,5.67523203460938,201.7398776745273,201.7398776745273,0.0,224.15541963836364,0.0,201.7398776745273,224.15541963836364,0,0
+2017/05/21 11:00:00,221.21708646374367,0,1034.343819451137,0,0,0,2.47815114984457,0.0,12.935301236479537,0.0,143.25325374857618,0,39.380909295966944,2.909434469883105e-09,23.169471029966914,0,0,0.0,519.733708019247,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5951.314007041223,3477.3930420044017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05506923109294123,0.0017423520853600757,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8094693247936132,0.8094693247936132,0.3598928156596687,0.3598928156596687,0.5830591760800227,0.5830591760800227,1.1301728689383206,1.1301728689383206,0.9612966712026444,0.9612966712026444,0.19313951391635092,-0.019950993789136055,-0.05613224866001932,0.1885438815578292,0.269542615803591,0.21901617130725698,-0.033927143893453145,-0.020687308117626264,0.22787404357403396,0.24959523415831128,18.817136059408668,18.817136059408668,7.695641612273377,7.695641612273377,12.124157964469788,12.124157964469788,31.90852624793841,31.90852624793841,24.51872341188735,24.51872341188735,5.773454740964624,5.0082398189100985,5.065232959246757,5.737029331458686,6.508664196861545,5.995044794509255,5.023828564551906,5.0088592539244985,6.077339723305158,6.2930766717619235,221.21708646374367,221.21708646374367,0.0,245.79676273749297,0.0,221.21708646374367,245.79676273749297,0,0
+2017/05/21 12:00:00,205.46099014061113,0,994.6644768374194,0,0,0,9.74005564921904,0.0,12.935301236479537,0.0,124.80122689546741,0,39.380909295966944,2.803124687494501e-09,18.603497060674997,0,0,0.0,515.5447179180736,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,557.0754934771484,0.0,0.0,5245.328747724967,11561.568290004167,260.6558496350208,0.0,0.0,0.0,7729.4404497435335,726.0479019118645,0.0,0.0,0.0,6937.005239747683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0529566735014333,0.0016755122357388795,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9237878655737878,0.9237878655737878,0.4595116549627916,0.4595116549627916,0.6865963227005474,0.6865963227005474,1.0739183947231514,1.0739183947231514,0.9626775944776613,0.9626775944776613,0.3383844946581352,0.09968700281537313,0.08144334392165706,0.2386643742191481,0.33341304652323567,0.36968856417723667,0.10251445380733487,0.13620011360441986,0.2792652327287826,0.3310192434922608,23.023066504108314,23.023066504108314,9.4074326823674,9.4074326823674,14.910449016484733,14.910449016484733,29.33330926302878,29.33330926302878,24.574846353192996,24.574846353192996,7.381691539506946,5.205802512181634,5.137347558443494,6.182034274830997,7.311922294615371,7.845152686499404,5.2176480692317995,5.384320682416131,6.619818440624229,7.278701912873842,205.46099014061113,205.46099014061113,0.0,228.28998904512346,0.0,205.46099014061113,228.28998904512346,0,0
+2017/05/21 13:00:00,204.59109625728638,0,938.182869793671,0,0,0,8.950345900784868,0.0,12.88660173648153,0.0,124.7641830973959,0,39.380909295966944,2.803124687494501e-09,18.609056223853933,0,0,0.0,494.5534633868692,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581.5317314744585,0.0,0.0,4683.954875923392,10516.963304854864,153.9564690393152,0.0,0.0,0.0,7094.476259520866,789.5726813822906,0.0,0.0,0.0,6413.987391742701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04994955090612126,0.0015803689729605667,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9260841711904009,0.9260841711904009,0.526401892896689,0.526401892896689,0.7000095766390222,0.7000095766390222,1.048207129561037,1.048207129561037,0.9320586236589368,0.9320586236589368,0.36776974336001333,0.15407767080782767,0.10321863459378201,0.224472155656799,0.3323363436385469,0.4055484726955231,0.183491453892841,0.17990932935628565,0.27492035368262163,0.33711587939575033,23.113024039819834,23.113024039819834,10.796304511880635,10.796304511880635,15.305388873827155,15.305388873827155,28.19288496624877,28.19288496624877,23.34806091669701,23.34806091669701,7.815543982334177,5.491945452831246,5.220649844403354,6.045345118367436,7.296950086528383,8.427411088131294,5.698001556300056,5.670977052772855,6.569652962934711,7.363788078312396,204.59109625728638,204.59109625728638,0.0,227.32344028587374,0.0,204.59109625728638,227.32344028587374,0,0
+2017/05/21 14:00:00,186.8360508835158,0,896.8330740593926,0,0,0,9.505580479269293,0.0,12.88660173648153,0.0,111.01081017850728,0,39.380909295966944,2.693135008365455e-09,14.052149190597607,0,0,0.0,488.6940201651351,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,848.2233052733429,0.0,0.0,4274.460875249378,12486.70505088388,408.8448165724082,0.0,0.0,0.0,6781.420753115159,1046.2725181192088,104.1406171987783,0.0,0.0,6135.645383412581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04774805715315891,0.001510715245184571,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8906364492429607,0.8906364492429607,0.714607752946205,0.714607752946205,0.7340998435455348,0.7340998435455348,1.0246721357682518,1.0246721357682518,0.9129091282334972,0.9129091282334972,0.34754586367479884,0.2678537070834815,0.11245439003227857,0.23184561978743112,0.3126782696482053,0.3804346191024039,0.3127624921724426,0.19680116132252828,0.28413802723115594,0.31582163390057966,21.74805821038514,21.74805821038514,15.744043387933175,15.744043387933175,16.344065345476864,16.344065345476864,27.16995170670812,27.16995170670812,22.59977083423267,22.59977083423267,7.513012069293353,6.48976176638817,5.261925972030568,6.115306291716621,7.032235720188083,8.013873603794735,7.033334927164418,5.803109125427966,6.6770263520242565,7.073464069857849,186.8360508835158,186.8360508835158,0.0,207.59561209279534,0.0,186.8360508835158,207.59561209279534,0,0
+2017/05/21 15:00:00,182.32749121333973,0,874.6648209126985,0,0,0,7.247002541454592,0.0,12.88660173648153,0.0,108.75639138185811,0,39.380909295966944,2.6931350083654555e-09,14.056586254885392,0,0,0.0,466.52576701844094,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294.68244484538025,177.65802325792436,0.0,4012.4559338034196,11979.397028441283,0.0,8.191508399615044,0.0,0.0,4122.62756209476,240.94518475370614,374.61234963076674,0.0,0.0,3319.402103828895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04656780293545602,0.0014733728244415065,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8495240723525099,0.8495240723525099,0.8579326461216606,0.8579326461216606,0.7459539651583923,0.7459539651583923,1.0099442739605382,1.0099442739605382,0.9039514379684854,0.9039514379684854,0.29895807878512115,0.3364430227239591,0.08462327588221087,0.19997839090581146,0.2938629258184242,0.33984018316562326,0.38744443726788597,0.17319168623061998,0.2536146571710527,0.29465757492609634,20.229266575704372,20.229266575704372,20.534220481207797,20.534220481207797,16.716953439851125,16.716953439851125,26.540232416257,26.540232416257,22.25480677512421,22.25480677512421,6.857177935407009,7.354320057888955,5.148285824654323,5.829294606858696,6.794195118480175,7.40231930693561,8.126588917557484,5.621741422075701,6.335171092132839,6.803945827190347,182.32749121333973,182.32749121333973,0.0,202.58610134815524,0.0,182.32749121333973,202.58610134815524,0,0
+2017/05/21 16:00:00,197.22590297313755,0,950.0281756993431,0,0,0,7.771620028574305,0.0,11.08681950462398,0.0,124.87761316689259,0,39.380909295966944,2.6931350083654555e-09,14.108940974386513,0,0,0.0,488.6535930362694,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152.7960761777419,897.7562718923624,106.21499202374201,4167.879123661969,13482.43661162481,0.0,347.3798436791732,0.0,0.0,3684.0386094178075,0.0,853.9835796739966,0.0,0.0,2875.6720094733687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050580203766436294,0.0016003223898596278,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8476150813695836,0.8476150813695836,0.9513960570575746,0.9513960570575746,0.791145951775618,0.791145951775618,1.0104387860673458,1.0104387860673458,0.923528710958232,0.923528710958232,0.2646221745520708,0.3872363141371527,0.0880673564745105,0.1755271021582395,0.29059047729532955,0.3125252492382801,0.4384172947554204,0.17762864505449186,0.22415630666931027,0.29111880762543374,20.160442461163285,20.160442461163285,24.1185349472412,24.1185349472412,18.193657274940335,18.193657274940335,26.561244580252122,26.561244580252122,23.01292741763899,23.01292741763899,6.453928987729412,8.123212144742752,5.160605862058517,5.63864483858481,6.754321786267909,7.030239385185894,9.009451274654225,5.654050067038611,6.042399189188217,6.760728639337145,197.22590297313755,197.22590297313755,0.0,219.13989219237504,0.0,197.22590297313755,219.13989219237504,0,0
+2017/05/21 17:00:00,203.4343349992811,0,955.9225530238091,0,0,0,5.052397719832619,0.0,11.08681950462398,0.0,129.38645076019097,0,39.380909295966944,2.803124687494501e-09,18.527757715863366,0,0,0.0,494.54797036073546,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,164.68888617326365,0.0,4023.916151534193,11373.954450846504,0.0,0.0,0.0,0.0,1352.3995507715736,0.0,238.9938317485864,0.0,0.0,238.22185019639159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050894024781195445,0.0016102514680153153,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8254149941283666,0.8254149941283666,0.9686337192030895,0.9686337192030895,0.8391464811301415,0.8391464811301415,1.0073541575507485,1.0073541575507485,0.9573427469977105,0.9573427469977105,0.23387962622643485,0.4000363048170365,0.11175015044067414,0.14245364917294828,0.3269502732737315,0.27535554252584477,0.4583230434300778,0.20247244467052422,0.1826018067203824,0.326124555249143,19.371240856289134,19.371240856289134,24.817765506287415,24.817765506287415,19.856958137258545,19.856958137258545,26.43032684333477,26.43032684333477,24.3584422774927,24.3584422774927,6.1350067540582245,8.334334878979107,5.258653842017239,5.420454683738527,7.222792034178539,6.574641735595179,9.384498494522362,5.850145389360819,5.69123981366171,7.211531936838384,203.4343349992811,203.4343349992811,0.0,226.0381499992012,0.0,203.4343349992811,226.0381499992012,0,0
+2017/05/21 18:00:00,193.1646693962085,0,965.5762574410057,0,0,0,3.4297995868581572,0.0,11.493782792070531,0.0,115.6330778413024,0,39.380909295966944,2.909434469883105e-09,23.227099877101004,0,0,0.0,539.692027290476,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3845.8611283963837,6410.536561128436,0.0,0.0,0.0,0.0,1259.8461130338906,0.0,0.0,0.0,0.0,368.33178373959186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051407995154930206,0.001626513132373379,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7467497604382595,0.7467497604382595,0.759078019399591,0.759078019399591,0.7700384765555044,0.7700384765555044,0.9951208842365595,0.9951208842365595,0.9573201166992473,0.9573201166992473,0.20207053195717367,0.2928507416041536,0.09808859035790032,0.10031394686632171,0.35004370292123316,0.22522484367542686,0.33617238402300187,0.17208167481738385,0.11666331157050062,0.3478277562307327,16.742202215005108,16.742202215005108,17.136814568397526,17.136814568397526,17.49310223627768,17.49310223627768,25.914662643362874,25.914662643362874,24.357526670820988,24.357526670820988,5.846767733923514,6.781813785338372,5.199252823425269,5.208400447994919,7.549435459190718,6.05238231212013,7.350517219783569,5.613787097340008,5.281911543631196,7.517109333813366,193.1646693962085,193.1646693962085,0.0,214.62741044023164,0.0,193.1646693962085,214.62741044023164,0,0
+2017/05/21 19:00:00,180.69128402549575,0,930.1127766824709,0,0,0,0.877539703221877,0.0,13.198720354084154,0.0,104.13412371906301,0,39.380909295966944,2.909434469883105e-09,23.099990950250337,0,0,0.0,539.7188990444855,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3393.2998938438745,147.953800261551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04951989317130919,0.0015667749017272596,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6350706184966117,0.6350706184966117,0.5796802752427108,0.5796802752427108,0.6677540794051655,0.6677540794051655,0.9803222072401762,0.9803222072401762,0.9519185682940723,0.9519185682940723,0.13766648498424974,0.1908429180819791,0.048286483940712964,0.025120912223584903,0.35126693402404763,0.14501306889284718,0.21043666253470528,0.10834147270786168,0.02269266702563413,0.33669742719660617,13.465728404326597,13.465728404326597,12.041064554467454,12.041064554467454,14.368797565304789,14.368797565304789,25.298482847441477,25.298482847441477,24.139558897120338,24.139558897120338,5.392647581517323,5.755141393539006,5.04827001478273,5.013063632550001,7.567369355362231,5.435712810818231,5.918470258520273,5.243107155554242,5.010660116762878,7.357897619099532,180.69128402549575,180.69128402549575,0.0,200.76809336166193,0.0,180.69128402549575,200.76809336166193,0,0
+2017/05/21 20:00:00,183.77519204715176,0,849.444178230626,0,0,0,0.7056132138213431,0.0,16.665893516531224,0.0,108.41610117336799,0,39.380909295966944,2.803124687494501e-09,18.606674844661086,0,0,0.0,494.54065310518473,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2852.706874868054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045225037237964304,0.0014308886537577697,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5044028149234592,0.5044028149234592,0.41243000754136455,0.41243000754136455,0.5469347698587723,0.5469347698587723,0.9617245651592026,0.9617245651592026,0.8731245382238001,0.8731245382238001,0.06182786521499207,0.0854723926710173,-0.013612385441654589,-0.06478623881577625,0.31414994267727864,0.05215769633595789,0.0829998067418679,0.031100310959489126,-0.08779229224202509,0.2931172039078188,10.318197715596753,10.318197715596753,8.54543554172956,8.54543554172956,11.26144846218726,11.26144846218726,24.536105739788724,24.536105739788724,21.09260917266907,21.09260917266907,5.079145049968176,5.151277551604366,5.003835773252163,5.0869016582525575,7.051486083578567,5.056321035869388,5.142649044350961,5.020023000583507,5.1596038319292745,6.785069033057923,183.77519204715176,183.77519204715176,0.0,204.1946578301686,0.0,183.77519204715176,204.1946578301686,0,0
+2017/05/21 21:00:00,183.77544168881374,0,859.1368674513792,0,0,0,0.5412570821559969,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,3.750443431178418e-06,23.10418814898279,0,0,0.0,539.723694838482,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2159.4286801608696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04574108319151672,0.0014472159880144656,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.38552789232055057,0.38552789232055057,0.2759985959990385,0.2759985959990385,0.432421848567363,0.432421848567363,0.9381917599391137,0.9381917599391137,0.7684040177335925,0.7684040177335925,-0.07601946823077228,-0.06032603128302218,-0.1524189223404605,-0.07044725274175197,0.1742052105637552,-0.10474060407375224,-0.08558076610563226,-0.12513068421847148,-0.058441005232995835,0.1439760059636948,8.095563139460538,8.095563139460538,6.582027972388985,6.582027972388985,8.899827722693175,8.899827722693175,23.59082127345684,23.59082127345684,17.439646106012546,17.439646106012546,5.11965830948688,5.075346173421536,5.481399539357852,5.1027556019906655,5.629049219377762,5.227208016906047,5.151661540217162,5.324347947693383,5.070710302625031,5.429497442460473,183.77544168881374,183.77544168881374,0.0,204.19493520979304,0.0,183.77544168881374,204.19493520979304,0,0
+2017/05/21 22:00:00,127.57670167245429,0,654.2187217438386,0,0,0,0.17597954795465012,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,1.0021542496850938e-05,18.600827228504613,0,0,0.004427951991253273,494.50770748539884,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,681.6527510041846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034831089329810626,0.0011020313871231372,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.17375268595429672,0.17375268595429672,0.0638337324504916,0.0638337324504916,0.2160777152298735,0.2160777152298735,0.8671342962425987,0.8671342962425987,0.5280317205802816,0.5280317205802816,-0.07252170214781462,-0.0817837362610643,-0.13459544399654882,-0.08980161189635584,0.03757165752572028,-0.0734251429428858,-0.09775388271041546,-0.164943519079758,-0.17717687110374555,-0.0037180268394496722,5.625781092793872,5.625781092793872,5.0843646730589995,5.0843646730589995,5.96847111304902,5.96847111304902,20.871295153302356,20.871295153302356,10.832558841587627,10.832558841587627,5.1088978021253695,5.1384983885061075,5.375310955044881,5.166995857807095,5.029223287191883,5.111628552887424,5.197894746676212,5.563863072668127,5.6507228136726155,5.000286158167668,127.57670167245429,127.57670167245429,0.0,141.75189074717144,0.0,127.57670167245429,141.75189074717144,0,0
+2017/05/21 23:00:00,86.10293912707932,0,511.96458139789115,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,3.513634824564531e-05,9.562330371156527,0,0,0.0183311291942507,458.7107214998808,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027257373529202267,0.0008624042985072949,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.10993434993881102,-0.10993434993881102,-0.22621654796934942,-0.22621654796934942,-0.0623530174464694,-0.0623530174464694,0.7292049206825809,0.7292049206825809,0.20382808794242663,0.20382808794242663,-0.06458478808215416,-0.1716205452626148,-0.16644088574046456,-0.22664100893873987,-0.051136879367846444,-0.07620396583030482,-0.23343243039262324,-0.16782439616413405,-0.2772707998859639,-0.07510373228826096,5.2503120668397685,5.2503120668397685,6.06169043346118,6.06169043346118,5.080495475747114,5.080495475747114,16.191848928031362,16.191848928031362,5.8615879874908785,5.8615879874908785,5.086361962022551,5.6104977624838455,5.574159487923453,6.06568701976056,5.054137752603154,5.120239981218333,6.130660530517375,5.58375608604679,6.5966921164627195,5.116792126515492,86.10293912707932,86.10293912707932,0.0,95.66993236342147,0.0,86.10293912707932,95.66993236342147,0,0
+2017/05/22 00:00:00,39.341924259261106,0,511.96524066372933,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5793914394581685e-09,9.544603260258532,0,0,0.0,458.7297118949132,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027257408629003815,0.0008624054090405494,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.14669204856449944,0.14669204856449944,0.055238221858155405,0.055238221858155405,0.15510046245734546,0.15510046245734546,0.7416440289100346,0.7416440289100346,0.4838740955199788,0.4838740955199788,0.02911502515043701,0.02377343827047772,-0.08116092140764064,-0.05667205389758941,0.2040972894633883,0.01737162907293294,-0.058408649490906704,-0.09281657905084743,-0.13808352297062018,0.20049959932277045,5.445870259688789,5.445870259688789,5.063171275221777,5.063171275221777,5.498505234261117,5.498505234261117,16.58068071786299,16.58068071786299,9.890915336301433,9.890915336301433,5.017548164883635,5.01169973036788,5.1363963657618115,5.066493820749187,5.863869390449281,5.006246946948096,5.070632015123834,5.178401781455577,5.395032102486553,5.833630508227003,39.341924259261106,39.341924259261106,0.0,43.713249176956786,0.0,39.341924259261106,43.713249176956786,0,0
+2017/05/22 01:00:00,23.722154237660646,0,39.59062385866664,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250588139828529,0,0,0.0,4.100271346122502,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002107834139274441,6.669040288504656e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.21081003386413377,0.21081003386413377,0.1379686521934851,0.1379686521934851,0.19515888391023126,0.19515888391023126,0.6750860073430676,0.6750860073430676,0.6479871417094017,0.6479871417094017,0.008369452305735948,0.028736301335701753,-0.12312580315079293,-0.06941008482790836,0.34143130346355605,-0.018818102480105407,-0.044641294042573935,-0.1385621073802716,-0.14532098783964462,0.2825257034313926,5.921738549594764,5.921738549594764,5.394374577441496,5.394374577441496,5.78973958650873,5.78973958650873,14.577740024690996,14.577740024690996,13.81708795264133,13.81708795264133,5.001450027637333,5.01709458958004,5.314030719339826,5.099751565780863,7.424969170570137,5.007330597970025,5.041256580048241,5.39777744807013,5.437566863367749,6.657986348866132,23.722154237660646,23.722154237660646,0.0,26.357949152956273,0.0,23.722154237660646,26.357949152956273,0,0
+2017/05/22 02:00:00,28.344496697209753,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251336107368599,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2306849809144655,0.2306849809144655,0.16234421136494065,0.16234421136494065,0.2055580929933836,0.2055580929933836,0.6361645223626293,0.6361645223626293,0.7117907046184858,0.7117907046184858,-0.004489335264824845,0.021338863406998358,-0.14822687601985288,-0.08024944882458387,0.3743295247114606,-0.04967777025548206,-0.061033565875274344,-0.17435719090543794,-0.16693731316274357,0.2953359498630569,6.104142654322885,6.104142654322885,5.546211303541142,5.546211303541142,5.876302135519836,5.876302135519836,13.495204688051956,13.495204688051956,15.658679503907607,15.658679503907607,5.000417200969011,5.009426105251023,5.455258302014556,5.133349112341776,7.917414845326519,5.051092024013357,5.077124231144836,5.63014873602549,5.57759373119633,6.812290908156413,28.344496697209753,28.344496697209753,0.0,31.493885219121946,0.0,28.344496697209753,31.493885219121946,0,0
+2017/05/22 03:00:00,23.72231580230994,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5252203786321467,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.22489519399066885,0.22489519399066885,0.16123496185030803,0.16123496185030803,0.194352996697563,0.194352996697563,0.5807623937014114,0.5807623937014114,0.7550293066895001,0.7550293066895001,-0.028089760210907422,0.0034742186056207942,-0.17721534517520182,-0.10120429299388929,0.4191706912991604,-0.08706762157396594,-0.08767875106203205,-0.21410791064415588,-0.19740864168400024,0.3131471803691947,6.049297356634767,6.049297356634767,5.538764187082933,5.538764187082933,5.783220215816328,5.783220215816328,12.067621922519237,12.067621922519237,17.006502875917647,17.006502875917647,5.0163339900854,5.000249859205425,5.651005838116319,5.212117910940265,8.663011259974468,5.156978960525876,5.15919112856885,5.950859847428148,5.808083102934461,7.038359397642182,23.72231580230994,23.72231580230994,0.0,26.358128669233267,0.0,23.72231580230994,26.358128669233267,0,0
+2017/05/22 04:00:00,41.399251207243594,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,1.3134556428778503,0.0,0.5776620147316239,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2712092285070983,0.2712092285070983,0.20914341900916344,0.20914341900916344,0.23954785248328567,0.23954785248328567,0.6043658657771488,0.6043658657771488,0.7770856000851102,0.7770856000851102,-0.03805709839272235,-0.006405406425657609,-0.18832930799005893,-0.1114226474827836,0.30205738136314075,-0.10650075407096186,-0.10470380911709042,-0.2334157686722916,-0.21444998663807394,0.26525808769621656,6.527434885881192,6.527434885881192,5.907195017078237,5.907195017078237,6.19082276775147,6.19082276775147,12.65954149433773,12.65954149433773,17.72488747058466,17.72488747058466,5.029983368160416,5.000849327171778,5.735350164532903,5.257139172831359,6.8960261573028845,5.234912446117207,5.227048332812558,6.130498760126329,5.953906557175159,6.460945543023541,41.399251207243594,41.399251207243594,0.0,45.999168008048436,0.0,41.399251207243594,45.999168008048436,0,0
+2017/05/22 05:00:00,74.4185527345751,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,1.107486869005673,0.0,0.5250228356135492,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4796272450243993,0.4796272450243993,0.418478527359305,0.418478527359305,0.4487988127502276,0.4487988127502276,0.7879504476293061,0.7879504476293061,0.8674154370764096,0.8674154370764096,0.010257399921153374,0.04020641607406072,-0.13930756227943977,-0.06406211078782548,0.4774370751738904,-0.06175193137937883,-0.05961340308895647,-0.1861432987044031,-0.16843262686990393,0.41176083220791804,9.804793169592003,9.804793169592003,8.650848326975705,8.650848326975705,9.202924736968953,9.202924736968953,18.086382154444962,18.086382154444962,20.881649009282597,20.881649009282597,5.0021779979420415,5.033465943438799,5.402072649879585,5.0849695279087825,9.760682663835482,5.078950732371496,5.073576285654653,5.7183529397550075,5.588000284333049,8.533869560758632,74.4185527345751,74.4185527345751,0.0,82.68728081619456,0.0,74.4185527345751,82.68728081619456,0,0
+2017/05/22 06:00:00,84.98462827520369,0,675.6528494554533,0,0,0,0.30579659143826654,0.0,8.694777296744878,0.0,73.80580873715317,0,1.6531340777646801,2.521109366872412e-09,0.5251115695815383,0,0,0.0,444.96555812391637,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1234.4205714011034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03597225816557828,0.0011381371736265296,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7144072305249953,0.7144072305249953,0.6505996055288965,0.6505996055288965,0.6873828607166008,0.6873828607166008,1.0500916739612896,1.0500916739612896,0.9257864273091112,0.9257864273091112,0.06762257968824302,0.09961203952823107,-0.07389757916679926,0.1671715260449854,0.6708274360538466,0.01830342545153737,0.022978102253302397,-0.0997168177957879,0.12361046642976149,0.5759412386865941,15.737955732200263,15.737955732200263,13.889032629720532,13.889032629720532,14.933393267548482,14.933393267548482,28.2756692609112,28.2756692609112,23.101348036934283,23.101348036934283,5.094678918195811,5.205492970798943,5.113070019116336,5.579217564183622,14.456097599411976,5.0069350903035,5.0109299820809525,5.205925690221264,5.3165095094674655,11.949692141574644,84.98462827520369,84.98462827520369,0.0,94.42736475022632,0.0,84.98462827520369,94.42736475022632,0,0
+2017/05/22 07:00:00,144.85578805582807,0,827.7776066262609,0,0,0,0.5135678753095012,0.0,7.777944015249205,0.0,69.33401494192633,0,39.380909295966944,0.0001299432095234478,27.069227619972438,0,0,0.07548638057936692,561.5244764016006,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2057.989736546867,0.0,0.0,0.0,0.0,0.0,2.0025921802395796,0.0,0.0,0.0,0.0,1.527327454198165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044071492917173875,0.0013943913155346815,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.18109263510160992,0.18109263510160992,0.12465088395844302,0.12465088395844302,0.14951749004975748,0.14951749004975748,1.1415707327568316,1.1415707327568316,0.3593080744192667,0.3593080744192667,-0.05170958918585081,-0.12773149084035082,-0.1894589407320159,0.05165388957145973,0.14134293989955854,-0.10106192747393425,-0.15083250870639078,-0.18844677295086193,0.08317938528112388,0.12924831333709108,5.679844970686659,5.679844970686659,5.321863660174344,5.321863660174344,5.463228488069305,5.463228488069305,32.44314339857891,32.44314339857891,7.686846072354626,7.686846072354626,5.055357325595196,5.337980829241772,5.744211811435136,5.055238117945947,5.413917962577202,5.211521281779383,5.47142072810756,5.736269160063998,5.143267174116019,5.346061535631378,144.85578805582807,144.85578805582807,0.0,160.95087561758675,0.0,144.85578805582807,160.95087561758675,0,0
+2017/05/22 08:00:00,160.73900700848233,0,860.4898121571985,0,0,0,1.2384170775827776,0.0,11.36563784648343,0.0,83.2008179303116,0,39.380909295966944,3.419202381527069e-05,25.553190666113778,0,0,0.02005647288737916,541.0565830714139,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5255.645077518957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04581311496978971,0.0014494950232687316,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.046111590061078934,0.046111590061078934,-0.0920618091690313,-0.0920618091690313,-0.05040959480671215,-0.05040959480671215,1.1725789497453922,1.1725789497453922,0.3237785638136878,0.3237785638136878,-0.012593847506625828,-0.1331209721495597,-0.17359946423527292,0.04658830393838139,0.013265256400007752,-0.05553907972017155,-0.12664170006913597,-0.15529185211439925,0.06679276932382983,0.011458758178723704,5.044019232642853,5.044019232642853,5.175511018730219,5.175511018730219,5.052608601420346,5.052608601420346,33.91842857425445,33.91842857425445,7.179698043802574,7.179698043802574,5.003283226092719,5.367126678044158,5.624676463886075,5.0449341914533505,5.00364263424477,5.063861375773087,5.332234144098635,5.4997375723242925,5.092369066426301,5.002718056661834,160.73900700848233,160.73900700848233,0.0,178.59889667609147,0.0,160.73900700848233,178.59889667609147,0,0
+2017/05/22 09:00:00,179.08268749089274,0,890.180268719049,0,0,0,1.362618439386687,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.751220954843128e-05,20.865608156289476,0,0,0.016140208307464887,517.5154271290281,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5809.109577123602,0.0,0.0,0.0,0.0,0.0,0.0,13.860124621458215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04739385686906174,0.0014995085950937012,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1820003465764184,0.1820003465764184,-0.07941053754288598,-0.07941053754288598,0.07722874491870242,0.07722874491870242,1.1680401315858764,1.1680401315858764,0.46778165932202326,0.46778165932202326,0.06988270956660196,-0.08180613660221304,-0.14215140628458195,0.07553511107767277,0.06428631537480071,0.058047311551243055,-0.08328840555854757,-0.052040921511747426,0.09396439926851141,0.04098356250773176,5.686687154008752,5.686687154008752,5.130574896598432,5.130574896598432,5.123496529440459,5.123496529440459,33.70061935926937,33.70061935926937,9.568686298016303,9.568686298016303,5.101114937882912,5.138574290187705,5.418670845777342,5.1181379771093845,5.085565431489343,5.069760674361746,5.143643086819992,5.056069095546604,5.182843234270138,5.034772265739107,179.08268749089274,179.08268749089274,0.0,198.9807638787697,0.0,179.08268749089274,198.9807638787697,0,0
+2017/05/22 10:00:00,210.04608978939797,0,955.6867926847189,0,0,0,1.406491008297384,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,1.4190779827367025e-05,18.565089507404007,0,0,0.008325144289412181,494.3038848773557,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6031.774721395221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05088147272611302,0.0016098543297420117,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.38241838168425585,0.38241838168425585,-0.0027954663908950034,-0.0027954663908950034,0.19937786516311096,0.19937786516311096,1.162055451254839,1.162055451254839,0.6162632937889233,0.6162632937889233,0.06642006672753532,-0.07888631925330208,-0.056528709569706924,0.07031105945856635,0.027737831307426544,0.08520654520624231,-0.1421968343997499,0.024482213578322743,0.09555176081795154,0.017327420660094763,8.045558907908884,8.045558907908884,5.000161766853594,5.000161766853594,5.8243129556655475,5.8243129556655475,33.41439209180602,33.41439209180602,12.967066470327879,12.967066470327879,5.091340903915238,5.12885616371814,5.066157823779179,5.102358590562162,5.015927251802751,5.150337664624217,5.4189387197939425,5.01240777447434,5.189075565604782,5.006215191731201,210.04608978939797,210.04608978939797,0.0,233.3845442104422,0.0,210.04608978939797,233.3845442104422,0,0
+2017/05/22 11:00:00,226.1729284603305,0,1032.0970017525713,0,0,0,1.400672843284504,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.856759638192119e-09,20.83095754288726,0,0,0.0,517.4868903206816,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6003.358729403609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05494960885443674,0.0017385673211173724,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6427348606573363,0.6427348606573363,0.16166679903673808,0.16166679903673808,0.3970311933865081,0.3970311933865081,1.1275524135085615,1.1275524135085615,0.8300518336450567,0.8300518336450567,0.15508426472101108,-0.07932639371872752,-0.0593512854373648,0.15982602169636093,0.18885247603563346,0.18556770779599582,-0.11240202927965517,-0.0203231995745845,0.18357726226492635,0.1894310767897454,13.67334080135592,13.67334080135592,5.541657295482409,5.541657295482409,8.284139374101088,8.284139374101088,31.78621003075925,31.78621003075925,19.534374433405006,19.534374433405006,5.498401008764844,5.130298249898416,5.072930582647231,5.529378991617804,5.739447640868477,5.713910654763012,5.261681977737496,5.008550136665789,5.698655488445368,5.7439925854394716,226.1729284603305,226.1729284603305,0.0,251.30325384481165,0.0,226.1729284603305,251.30325384481165,0,0
+2017/05/22 12:00:00,207.18261497144454,0,994.4665875561398,0,0,0,3.0592518300915894,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.803149165566229e-09,18.611665256361857,0,0,0.0,515.3468286367939,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5202.473688921695,85.92935581667078,0.0,0.0,0.0,0.0,3020.14241915426,0.0,0.0,0.0,0.0,2734.473945229622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05294613772952006,0.0016751788912595833,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7570886192607311,0.7570886192607311,0.2502691060932053,0.2502691060932053,0.5046204561442188,0.5046204561442188,1.0850420370824663,1.0850420370824663,0.9344980805947237,0.9344980805947237,0.2949521802379405,0.0030563566996670262,0.054796424435338845,0.20809162423353078,0.33869862773300674,0.35420751667369466,-0.01553437586481811,0.11039816019996454,0.2375366128503301,0.34918853865711674,17.07269620767042,17.07269620767042,6.30008657424078,6.30008657424078,10.322825209676012,10.322825209676012,29.833945303480277,29.833945303480277,23.44443955943754,23.44443955943754,6.807567548349098,5.000193369998712,5.0621646883376314,5.8980764875587255,7.386135332183599,7.610741922590378,5.004995433263829,5.252429785303391,6.170863365047964,7.536935619862476,207.18261497144454,207.18261497144454,0.0,230.20290552382727,0.0,207.18261497144454,230.20290552382727,0,0
+2017/05/22 13:00:00,203.74028967190418,0,935.0873365641386,0,0,0,2.1959047976353103,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.748618701019997e-09,16.322160604891895,0,0,0.0,491.45793015733693,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4700.38823949078,821.9937920529028,0.0,0.0,0.0,0.0,1325.9572780665944,0.0,0.0,0.0,0.0,1266.1441811139798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04978474242409885,0.0015751545474703662,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8032965409787738,0.8032965409787738,0.3389664888518987,0.3389664888518987,0.5435545042191754,0.5435545042191754,1.064910561410971,1.064910561410971,0.9664127898207798,0.9664127898207798,0.3326054639792359,0.06460689678215124,0.07827106890201416,0.20194558889960942,0.3814676941100672,0.40338594325673494,0.06557853137294552,0.14734793145365152,0.23172297473759898,0.39539767412173554,18.605512065954386,18.605512065954386,7.3899278626603575,7.3899278626603575,11.183617286351378,11.183617286351378,28.931084677336813,28.931084677336813,24.7270237618565,24.7270237618565,7.300687756241118,5.086421110126167,5.12685350414435,5.845719095166999,8.030353251470714,8.39074049588477,5.0890405648982835,5.449870081571731,6.1141239564611425,8.257016130525969,203.74028967190418,203.74028967190418,0.0,226.37809963544908,0.0,203.74028967190418,226.37809963544908,0,0
+2017/05/22 14:00:00,186.97187822868827,0,874.3802350556846,0,0,0,1.2340237569107737,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.693158995093091e-09,14.101613527724416,0,0,0.0,466.24118116142705,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4215.980468952141,693.8532663658303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04655265137363396,0.0014728934395869663,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.758678801075602,0.758678801075602,0.5082257644467245,0.5082257644467245,0.5498384545340322,0.5498384545340322,1.04620772846554,1.04620772846554,0.9629334793426461,0.9629334793426461,0.2718487589193253,0.1254884584310122,0.025473506383905272,0.15061641187550456,0.33343045915372527,0.34008295742235445,0.1454698462981094,0.09604205677735798,0.17738493873956127,0.34561610711750457,17.123934190031818,17.123934190031818,10.399779297386715,10.399779297386715,11.328701687482393,11.328701687482393,28.105195835821434,28.105195835821434,24.585254108922257,24.585254108922257,6.534668845993735,5.326206643153668,5.013432936132446,5.470069553653019,7.312164832139445,7.405768285970183,5.4384645905299465,5.191021713370574,5.6522541451824395,7.485054084484531,186.97187822868827,186.97187822868827,0.0,207.7465313652092,0.0,186.97187822868827,207.7465313652092,0,0
+2017/05/22 15:00:00,180.68643019935882,0,896.6042357418153,0,0,0,1.7691370164563833,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,2.693158995093091e-09,14.044308628796946,0,0,0.0,488.4651818475578,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4029.3974838220965,2537.4210140672694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04773587363162902,0.0015103297670559803,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6993794768137774,0.6993794768137774,0.7247651136288625,0.7247651136288625,0.5678236408670448,0.5678236408670448,1.0345705286198128,1.0345705286198128,0.958596644265405,0.958596644265405,0.18725964308294266,0.21397519582289753,-0.024488368270204418,0.09948569151932225,0.2676576692107927,0.24289355055204592,0.2557727835838285,0.040819811494259915,0.11903744175874921,0.27854854969223625,15.286662262786706,15.286662262786706,16.054676059010205,16.054676059010205,11.75340682448946,11.75340682448946,27.597703736023504,27.597703736023504,24.409205495488536,24.409205495488536,5.727008088562769,5.949679138481358,5.0124140139170095,5.204971777493242,6.487575474041179,6.22440154105054,6.3580529211871095,5.03449493293958,5.2935095038813955,6.611488877571134,180.68643019935882,180.68643019935882,0.0,200.7627002215098,0.0,180.68643019935882,200.7627002215098,0,0
+2017/05/22 16:00:00,205.11664618710907,0,927.5997778870723,0,0,0,3.289604958827723,0.0,16.735683873587277,0.0,131.64086955684016,0,39.380909295966944,2.693158995093091e-09,14.069578499193684,0,0,0.0,466.22519522399864,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,1.992606006868329,0.0,4281.364322830963,7312.487827125986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04938609925404721,0.001562541755447144,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7054542939504049,0.7054542939504049,0.9605931105489094,0.9605931105489094,0.6422000139310508,0.6422000139310508,1.039246971508587,1.039246971508587,0.9857426524044971,0.9857426524044971,0.15883731976538543,0.3411696044615443,-0.007879964030883995,0.08735169214640713,0.2771317251571573,0.20286684902553767,0.40575605365318484,0.05506163431713355,0.09994097155848043,0.285926270099339,15.467920053369781,15.467920053369781,24.490158247335174,24.490158247335174,13.658769947171834,13.658769947171834,27.80104654057186,27.80104654057186,25.52320210414146,25.52320210414146,5.522842473867669,7.421236451234307,5.001285376978402,5.158005312739164,6.595085739972632,5.853466513990043,8.430941624406955,5.062767969663,5.206852943862927,6.698272098257917,205.11664618710907,205.11664618710907,0.0,227.9073846523434,0.0,205.11664618710907,227.9073846523434,0,0
+2017/05/22 17:00:00,215.66542698638386,0,976.7134978859506,0,0,0,6.972852029353183,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,2.80314916556623e-09,18.618079949694074,0,0,0.0,515.3389152228768,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,919.5761397638069,0.0,4430.338005450854,10191.966365760043,0.0,544.9193217778761,0.0,0.0,3457.1804670171746,0.0,930.0737646263146,0.0,0.0,3441.1330685963408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05200095008564731,0.0016452738130575861,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7079075124006396,0.7079075124006396,1.0504514485644876,1.0504514485644876,0.7532919631370042,0.7532919631370042,1.0355395344935656,1.0355395344935656,0.9903948141324902,0.9903948141324902,0.18785091508375912,0.44615875395996274,0.10758797907188296,0.11086603012310003,0.3323424833057791,0.2228462936517157,0.506291654517506,0.17762709591549136,0.1160079510813729,0.34114158406633016,15.541569483224706,15.541569483224706,28.291488041349965,28.291488041349965,16.950799847103767,16.950799847103767,27.63977256669837,27.63977256669837,25.716969532407703,25.716969532407703,5.731613377647506,9.153284385500967,5.239735661308373,5.2545750924267765,7.297035322848032,6.03022531725405,10.35842650572269,5.654038643286839,5.278751263610218,7.420836957390009,215.66542698638386,215.66542698638386,0.0,239.62825220709317,0.0,215.66542698638386,239.62825220709317,0,0
+2017/05/22 18:00:00,199.66050776886777,0,966.9254657827167,0,0,0,6.755429942690232,0.0,17.03716081602578,0.0,110.93442390708215,0,39.380909295966944,2.9612576055241953e-09,25.552583804141406,0,0,0.0,541.041235632187,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,217.6789323615116,0.0,4099.309344879412,5808.890077846782,0.0,448.8628683342182,0.0,0.0,5811.043164765656,0.0,977.415375575483,0.0,0.0,5512.983496196917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051479828006410516,0.001628785873722588,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6397608034086225,0.6397608034086225,1.056024009939766,1.056024009939766,0.8179272760816,0.8179272760816,1.0226864386651184,1.0226864386651184,0.99112763193234,0.99112763193234,0.19174154831108098,0.5019091882930241,0.2154799937688772,0.10548575562064634,0.3833182888074095,0.2214294889040299,0.5515464980631817,0.30212193394483194,0.10448805865894222,0.3910616434919321,13.59247572376519,13.59247572376519,28.537101599225522,28.537101599225522,19.109713421189696,19.109713421189696,27.08457762862716,27.08457762862716,25.747567688414676,25.747567688414676,5.762280935602078,10.265324264854925,5.963109940241139,5.230453949538557,8.0599879143017,6.01714000457585,11.368432980018781,6.896839609695405,5.226113142294949,8.18557325652516,199.66050776886777,199.66050776886777,0.0,221.8450086320753,0.0,199.66050776886777,221.8450086320753,0,0
+2017/05/22 19:00:00,189.83557695385085,0,951.9066854506169,0,0,0,3.239601394844497,0.0,18.427435203224093,0.0,101.68988858149199,0,39.380909295966944,3.0121635991510442e-09,27.0977424753112,0,0,0.0,561.5128078126315,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3707.875257420147,1620.328703356961,0.0,0.0,0.0,0.0,3182.634926189637,0.0,0.0,0.0,0.0,2660.0721847013097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0506802170170188,0.001603486739393072,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5662993039519667,0.5662993039519667,0.7093324334231089,0.7093324334231089,0.7963361563388374,0.7963361563388374,1.0070944220820117,1.0070944220820117,0.9880834394370286,0.9880834394370286,0.1557591816913283,0.4626727515051944,0.22659525574221223,0.062245115325564024,0.4064947069369377,0.17174575962280603,0.5200760665569901,0.31347312105820774,0.04637679942445172,0.40970532785390235,11.716866806319487,11.716866806319487,15.584466994549288,15.584466994549288,18.36881876111495,18.36881876111495,26.41931950885143,26.41931950885143,25.620594712474485,25.620594712474485,5.502753071254517,9.468721877941292,6.0652558592801995,5.080217073151189,8.443519598563398,5.6113900657259705,10.656680343745364,7.042621461886085,5.044527088188644,8.49846232169952,189.83557695385085,189.83557695385085,0.0,210.92841883761204,0.0,189.83557695385085,210.92841883761204,0,0
+2017/05/22 20:00:00,193.91943039051947,0,874.4705542942688,0,0,0,0.6995605325334538,0.0,24.514893985417,0.0,106.16168237671882,0,39.380909295966944,4.100483875915978e-06,23.16238009939937,0,0,0.0024044495070353164,519.5646247193206,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2830.3928670998566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046557460036796235,0.0014730455823375062,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3908211008120325,0.3908211008120325,0.44801253108378375,0.44801253108378375,0.5449814860099844,0.5449814860099844,0.9842024976374153,0.9842024976374153,0.8717267608131368,0.8717267608131368,0.015551380977626176,0.21331503098997928,0.05299707308916711,0.025397452338908753,0.3311448458462356,0.0176557112549991,0.250698847982245,0.12240545322340128,0.04273589459378229,0.32106759199422813,8.181633468744181,8.181633468744181,9.188109141261009,9.188109141261009,11.216413382058533,11.216413382058533,25.45923590814938,25.45923590814938,21.040834917161476,21.040834917161476,5.005006376133423,5.943816884765624,5.058148607313228,5.013352842441478,7.280438934346975,5.00645293591522,6.304566900676733,5.310364560113754,5.037809595553455,7.1432021678286475,193.91943039051947,193.91943039051947,0.0,215.46603376724386,0.0,193.91943039051947,215.46603376724386,0,0
+2017/05/22 21:00:00,194.49341510934096,0,880.0035991358161,0,0,0,0.47603440282765735,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,7.2278177961361015e-06,25.553411230530205,0,0,0.0030878195695721294,560.5873387033494,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1891.74128821885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046852043442523424,0.0014823659959531418,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.20611514952695867,0.20611514952695867,0.20758502123823075,0.20758502123823075,0.3486072796269786,0.3486072796269786,0.961104616829209,0.961104616829209,0.7016492128383057,0.7016492128383057,0.008444149805846787,0.14330138479457544,0.00818362056934419,-0.043572711039533675,0.13588925796536336,-0.0121893190236982,0.1515901255998942,0.058002042149569215,0.029414369684209993,0.11232187377476373,5.881066702110772,5.881066702110772,5.893701017564041,5.893701017564041,7.528457176079797,7.528457176079797,24.51092391873661,24.51092391873661,15.354199302810102,15.354199302810102,5.001476026265152,5.425478308521434,5.0013863507214324,5.039304927809226,5.382566957720144,5.003075690433263,5.4761731911019496,5.069651891793896,5.017910874940469,5.261308684130086,194.49341510934096,194.49341510934096,0.0,216.10379456593438,0.0,194.49341510934096,216.10379456593438,0,0
+2017/05/22 22:00:00,136.65017432628818,0,677.2684726474416,0,0,0,0.08700776817300206,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,1.9280364196944563e-05,20.810189672429004,0,0,0.011312996164268075,517.5505733448289,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,335.2626959893101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.036058275141022604,0.0011408586907708101,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.046896587187308866,-0.046896587187308866,-0.07182060029130811,-0.07182060029130811,0.08366480419130434,0.08366480419130434,0.8983862593425849,0.8983862593425849,0.3996014863330629,0.3996014863330629,-0.05165549675242352,0.017825743402851514,-0.07405050746628214,-0.0760739493951952,-0.008349873397344247,-0.09498412095344694,-0.0022364076198628548,-0.08641010848083926,-0.05992337298052267,-0.04137171246966839,5.045530893165889,5.045530893165889,5.106801963228108,5.106801963228108,5.144944735776875,5.144944735776875,22.042127104923523,22.042127104923523,8.32704803830103,8.32704803830103,5.055241555814533,5.006577825313144,5.113538606446497,5.1198299272119385,5.001443251365885,5.186834875531645,5.000103533968186,5.154616195190513,5.074343542623836,5.035434082671671,136.65017432628818,136.65017432628818,0.0,151.83352702920908,0.0,136.65017432628818,151.83352702920908,0,0
+2017/05/22 23:00:00,89.07077470006593,0,515.7190206946215,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,5.490281458374107e-05,11.84375113718596,0,0,0.031581108697589545,462.4519108171078,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027457262658298405,0.0008687286512176801,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.29487646091740627,-0.29487646091740627,-0.3338802113541882,-0.3338802113541882,-0.17261998404922213,-0.17261998404922213,0.7494013254913076,0.7494013254913076,0.09778860586033189,0.09778860586033189,-0.07105658520536197,-0.03202219704015443,-0.11642122881159413,-0.19884833252636822,-0.06272473150737383,-0.07240865255101096,-0.031354657722830435,-0.16129196416375882,-0.18927962701410225,-0.10765483736199374,6.806636345122172,6.806636345122172,7.3184338121313175,7.3184338121313175,5.617638193386469,5.617638193386469,16.826526215015463,16.826526215015463,5.198035419731639,5.198035419731639,5.104541258176241,5.021227706893015,5.280742093458429,5.8199327390846065,5.081458244469161,5.108558479231007,5.02035186135214,5.539145630797265,5.742801586703337,5.240033864337178,89.07077470006593,89.07077470006593,0.0,98.96752744451769,0.0,89.07077470006593,98.96752744451769,0,0
+2017/05/23 00:00:00,39.367225148831515,0,498.4870332038487,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5794148612559286e-09,9.569904149828917,0,0,0.0,445.2515044350325,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.026539818880441643,0.0008397013695973589,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.0007196377376650184,0.0007196377376650184,-0.0030609703725762365,-0.0030609703725762365,0.07949734139129995,0.07949734139129995,0.7731773409972575,0.7731773409972575,0.42041842518614303,0.42041842518614303,0.04226331716635919,0.18387235480295588,-0.022902628916118058,-0.0304046139829503,0.2525623087314061,0.00918439377471919,0.14854101028107977,-0.046377249200955824,-0.07977471293609,0.18892589481821617,5.000010720343596,5.000010720343596,5.000193954236579,5.000193954236579,5.130860596573498,5.130860596573498,17.59608047880407,17.59608047880407,8.68498874178374,8.68498874178374,5.0369779484469746,5.70090668929042,5.010858297583255,5.019137176011512,6.324084466669859,5.001746157736292,5.4571918514520235,5.044527951950954,5.131775611960009,5.740023575128404,39.367225148831515,39.367225148831515,0.0,43.74136127647946,0.0,39.367225148831515,43.74136127647946,0,0
+2017/05/23 01:00:00,23.721961257559865,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248658338820732,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.0732522223745302,0.0732522223745302,0.0904599076138047,0.0904599076138047,0.11976498418971789,0.11976498418971789,0.6933961646112813,0.6933961646112813,0.6104381489039419,0.6104381489039419,-0.006993523458514961,0.15706108250944767,-0.08188145292468814,-0.06634488790366333,0.36637235332851775,-0.04568272376826214,0.1329694497553017,-0.10183548211929597,-0.11009452928056065,0.2812333203488733,5.111103262483169,5.111103262483169,5.169454071275823,5.169454071275823,5.297110537069997,5.297110537069997,15.109692160500018,15.109692160500018,12.815730426392577,12.815730426392577,5.001012450645916,5.511201721898118,5.138829645865144,5.091134208379671,7.794080065098271,5.043204151997216,5.366290754260859,5.214773249705317,5.251042422167544,6.642803732931483,23.721961257559865,23.721961257559865,0.0,26.35773473062207,0.0,23.721961257559865,26.35773473062207,0,0
+2017/05/23 02:00:00,28.344306395010836,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5249433085379417,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.10787207469664875,0.10787207469664875,0.12964425182810885,0.12964425182810885,0.145927242473213,0.145927242473213,0.6657957686541046,0.6657957686541046,0.6821172336075819,0.6821172336075819,-0.01387264919725596,0.16230250349820208,-0.09255314240611967,-0.06947804252323785,0.39697392912701596,-0.07490390619452379,0.11725373911516382,-0.13058321428973696,-0.1320569589215173,0.3012829754237392,5.241004073251219,5.241004073251219,5.348186600508896,5.348186600508896,5.441228801502916,5.441228801502916,14.313384232628138,14.313384232628138,14.780298536798199,14.780298536798199,5.0039838538591255,5.545930363430401,5.177390135698644,5.09994703211828,8.283186618110278,5.116171307758904,5.284773984904135,5.353252222951838,5.361276885681903,6.886281300992863,28.344306395010836,28.344306395010836,0.0,31.49367377223426,0.0,28.344306395010836,31.49367377223426,0,0
+2017/05/23 03:00:00,23.722128588304027,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525033164626237,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.09922985880107892,0.09922985880107892,0.12356237483270041,0.12356237483270041,0.1299100960521593,0.1299100960521593,0.6024966146465416,0.6024966146465416,0.7329476437743515,0.7329476437743515,-0.05470111365876725,0.12626742969594196,-0.13579585838317382,-0.10756645850789917,0.44040429215969684,-0.126302152213312,0.07312208062616532,-0.18125607843691535,-0.17878734706201702,0.3186586387946089,5.2039184810965935,5.2039184810965935,5.316263110637806,5.316263110637806,5.34961708671382,5.34961708671382,12.611783475015542,12.611783475015542,16.308142965581865,16.308142965581865,5.061948593767539,5.330271932445214,5.382040819566328,5.239639714239516,9.046123151575017,5.330453729362475,5.110708741295852,5.681074440871882,5.66262269186916,7.111033526390756,23.722128588304027,23.722128588304027,0.0,26.35792065367114,0.0,23.722128588304027,26.35792065367114,0,0
+2017/05/23 04:00:00,40.956020918174694,0,106.51062206469264,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.9229274096061136,0.0,0.5249599589344488,0,0,0.0,17.78474078333232,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.00567070441185207,0.00017941713478395564,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.14747444212504862,0.14747444212504862,0.1700572179162826,0.1700572179162826,0.17375155866747946,0.17375155866747946,0.6225069232425139,0.6225069232425139,0.7926575073758118,0.7926575073758118,-0.06978495208551641,0.1105754865447685,-0.15158850229584736,-0.12260048492540068,0.32582088266596104,-0.15211338633226199,0.046837611406427906,-0.20699394867340168,-0.20406776208815708,0.28312423035241874,5.4506436520396875,5.4506436520396875,5.5994122282635175,5.5994122282635175,5.625772962212508,5.625772962212508,13.130909714961291,13.130909714961291,18.244552101463498,18.244552101463498,5.100832179053057,5.253241803444169,5.476162982705361,5.311355027981023,7.207398107048604,5.479469516070651,5.045416437274071,5.88860957093209,5.863619006669026,6.6650415783034305,40.956020918174694,40.956020918174694,0.0,45.50668990908299,0.0,40.956020918174694,45.50668990908299,0,0
+2017/05/23 05:00:00,74.17368901109572,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.8625367853934686,0.0,0.52510919574637,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.37322917733475475,0.37322917733475475,0.3922836182746313,0.3922836182746313,0.39689850879281224,0.39689850879281224,0.8183919510384814,0.8183919510384814,0.8859514790237332,0.8859514790237332,-0.012803618484444074,0.16461839906018877,-0.09394421845576355,-0.06603567399044549,0.49968613101942616,-0.10442362686472276,0.09159673020559445,-0.15846487888112554,-0.15689721208745636,0.4302851242990894,7.900198796321746,7.900198796321746,8.20562586462367,8.20562586462367,8.281931997483042,8.281931997483042,19.12587476326054,19.12587476326054,21.571474284172382,21.571474284172382,5.003393512735855,5.561639786520487,5.1827646731021275,5.0902865236118515,10.218414391091073,5.225834231445816,5.17374154044424,5.520390751342745,5.510134404116911,8.861131947222177,74.17368901109572,74.17368901109572,0.0,82.41521001232857,0.0,74.17368901109572,82.41521001232857,0,0
+2017/05/23 06:00:00,84.92784262467616,0,664.5524931567137,0,0,0,0.277072264509658,0.0,8.909232496958674,0.0,73.80580873715317,0,1.3581655441119769,2.52113244851106e-09,0.5775635794215003,0,0,0.0,433.86520182517677,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1134.974527393116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03538126697412547,0.0011194386242838054,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6663593092697327,0.6663593092697327,0.6839935356248452,0.6839935356248452,0.6949373806519056,0.6949373806519056,1.0683502920471857,1.0683502920471857,0.9433814795900323,0.9433814795900323,0.0804459130012138,0.2621556151380806,0.003949779482258672,0.14432185745498285,0.6883805240720146,-0.004365338918571696,0.1930518811167579,-0.05159927933110999,0.07784075106832902,0.5964252907181047,14.329313437947476,14.329313437947476,14.834713319901567,14.834713319901567,15.15512929440311,15.15512929440311,29.084339373764266,29.084339373764266,23.79740705710431,23.79740705710431,5.134003022397366,6.426874490046828,5.000322943716469,5.431565238303037,14.962534770731395,5.000394472872003,5.772751900855937,5.055121366552157,5.125462134808146,12.457711709136433,84.92784262467616,84.92784262467616,0.0,94.3642695829735,0.0,84.92784262467616,94.3642695829735,0,0
+2017/05/23 07:00:00,144.07655797671418,0,827.6361084023675,0,0,0,0.5555442381543915,0.0,7.753881655449512,0.0,69.33401494192633,0,39.380909295966944,3.4057015388778904e-05,27.052173788201646,0,0,0.019991974705733082,561.4384725835808,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2254.8347403174384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.022688369328722105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04406395944692512,0.001394152961787273,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.19173098309537445,0.19173098309537445,0.17334734719350844,0.17334734719350844,0.234499898689856,0.234499898689856,1.1287663924334737,1.1287663924334737,0.3853041437972654,0.3853041437972654,-0.03917957700912439,-0.034284801797776356,-0.1103179025844898,0.041067984345455916,0.11089754948503822,-0.09039250659371337,-0.047632763190179915,-0.13558209625075004,0.04923388749792174,0.06636625101318201,5.7621967998030925,5.7621967998030925,5.6228609959275815,5.6228609959275815,6.141048973909307,6.141048973909307,31.842847592188875,31.842847592188875,8.091951238558494,8.091951238558494,5.0317782696454145,5.024333637894827,5.2520626965378625,5.0349156785646585,5.254719943915703,5.169201555588387,5.046971734546915,5.3808380213353075,5.050182965515106,5.091192919967071,144.07655797671418,144.07655797671418,0.0,160.0850644185713,0.0,144.07655797671418,160.0850644185713,0,0
+2017/05/23 08:00:00,160.65782962200578,0,860.3444124391536,0,0,0,1.2015393528375338,0.0,11.323895916778682,0.0,83.2008179303116,0,39.380909295966944,2.961282652632071e-09,25.550667123149754,0,0,0.0,540.9312398262565,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5097.514382885477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04580537378110247,0.001449250097454721,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.06322802849469733,0.06322802849469733,-0.061654260700428544,-0.061654260700428544,0.11454673300916399,0.11454673300916399,1.1552184265853107,1.1552184265853107,0.44006021486388774,0.44006021486388774,-0.07085325245424376,-0.07594761915587704,-0.14193532211091964,0.09598712816509146,0.12806769863942255,-0.11160413247665797,-0.11430999412925653,-0.1618036827749031,0.11357879322295271,0.08070001882926578,5.082770949273865,5.082770949273865,5.0787011407172145,5.0787011407172145,5.271769225255682,5.271769225255682,33.08875841523417,33.08875841523417,9.039760741221059,9.039760741221059,5.103943677898499,5.119432170370757,5.417397847447816,5.1908031871912925,5.339763687296028,5.257977972824946,5.270646382174775,5.542575975318968,5.267193026847536,5.1348511606909,160.65782962200578,160.65782962200578,0.0,178.5086995800064,0.0,160.65782962200578,178.5086995800064,0,0
+2017/05/23 09:00:00,183.4222798854213,0,889.9926350023961,0,0,0,5.729535959981054,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.8567842999391446e-09,20.838310539576405,0,0,0.0,517.3439336206826,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5898.594676069511,745.1140662487259,0.0,0.0,0.0,141.48120772012302,7378.61010495749,0.0,0.0,0.0,248.10589078830736,5604.83320548371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047383867111005604,0.001499192526112241,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.40482542525747695,0.40482542525747695,0.21759812660082745,0.21759812660082745,0.3794052269958787,0.3794052269958787,1.1312890154262856,1.1312890154262856,0.7655701836765435,0.7655701836765435,0.13170240524841295,0.11654569097086656,0.039216249282802,0.3206839434414055,0.3104129187699224,0.10552507435793419,0.07769022231161725,0.02981411611581555,0.34032285137465407,0.28942257107665825,8.415127902457911,8.415127902457911,5.982175664305046,5.982175664305046,7.997498018441206,7.997498018441206,31.960693193752974,31.960693193752974,17.34723370836778,17.34723370836778,5.359338059738789,5.281343039473299,5.031837790819708,7.138062543619796,7.002782791884968,5.230625865098773,5.124977235111444,5.018401026354283,7.40917880525727,6.740200878395413,183.4222798854213,183.4222798854213,0.0,203.80253320602364,0.0,183.4222798854213,203.80253320602364,0,0
+2017/05/23 10:00:00,219.61195377855776,0,955.4492254509552,0,0,0,11.075292360934586,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.8031736087279163e-09,18.566942532264083,0,0,0.0,494.0746427878813,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134.77841730982638,0.0,0.0,6645.736087787613,11634.875491997658,231.51007799802633,0.0,0.0,861.9295960943774,9100.753242380299,334.23129710927157,0.0,0.0,1136.9987042355774,8014.576404817402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05086882447061981,0.0016094541477547676,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7268255474418445,0.7268255474418445,0.43552064386159534,0.43552064386159534,0.6017399860403243,0.6017399860403243,1.1525639284636828,1.1525639284636828,0.8848473422027909,0.8848473422027909,0.26591238661893074,0.19433964726285274,0.1176002839573774,0.3860787128505292,0.3112529141401465,0.28328211735240344,0.18834195182347757,0.14122994588947613,0.4312040625891588,0.30915603483295245,16.11823006773153,16.11823006773153,8.956294783174712,8.956294783174712,12.592495274746767,12.592495274746767,32.96272389318838,32.96272389318838,21.5299883452617,21.5299883452617,6.468182737185018,5.783112451719063,5.286460808690293,8.104463970660788,7.013678636701343,6.666905215458215,5.7354490567845176,5.413255850104093,8.877749768194391,6.9865351333588706,219.61195377855776,219.61195377855776,0.0,244.01328197617528,0.0,219.61195377855776,244.01328197617528,0,0
+2017/05/23 11:00:00,253.9882568175498,0,1031.9580120108355,0,0,0,29.185081026380683,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.856784299939145e-09,20.861877717010387,0,0,0.0,517.3479005789455,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2081.447734598629,189.02447752822474,1286.160709347541,6377.7547491045725,25044.440381964356,2996.875498170347,1475.6426782066846,2014.6458553322962,2455.944704566911,24002.82947189831,3347.047564919595,1553.947093749573,2225.9046864827337,2837.2582198266646,23384.700148061012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054942208937636114,0.0017383331929079681,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.837243311239321,0.837243311239321,0.650451960966313,0.650451960966313,0.7546644231686155,0.7546644231686155,1.0992908681153457,1.0992908681153457,0.9340743771128703,0.9340743771128703,0.3166654169027457,0.26683470158946554,0.20497341219612059,0.3763466356564231,0.33882573181894476,0.3466954145988682,0.27615022413783047,0.23677795868174964,0.4151544148878392,0.3385871931235866,19.789167212433554,19.789167212433554,13.884958755924558,13.884958755924558,16.99479319739909,16.99479319739909,30.48149889604015,30.48149889604015,23.427682765386564,23.427682765386564,7.084602366985919,6.478415072056322,5.871315262108169,7.9491087056373,7.387934564371818,7.50067139616587,6.583772142531956,6.16337864404295,8.592722081852287,7.384558475039697,253.9882568175498,253.9882568175498,0.0,282.209174241722,0.0,253.9882568175498,282.209174241722,0,0
+2017/05/23 12:00:00,244.63775156021944,0,994.2854331982227,0,0,0,40.52647018054353,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.803173608727916e-09,18.599583494684868,0,0,0.0,515.1656742788768,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3736.524756890392,744.1413553367018,2463.7592442858636,6153.972608568819,28620.575514821383,5356.416221556703,2763.961839357276,3815.726106668595,3551.298567417359,34172.30022127327,5939.6867908126915,2952.028199294354,4274.406621956162,3964.7096890986304,33866.69000600163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05293649293732232,0.0016748737367574217,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.901075911644273,0.901075911644273,0.7520222043380078,0.7520222043380078,0.8174727982365128,0.8174727982365128,1.0843740717963803,1.0843740717963803,0.9450296660161193,0.9450296660161193,0.3765939194473615,0.3207226200971494,0.27042321277707965,0.3873980556977736,0.36497405084192264,0.42190641183728983,0.3457398338868327,0.3141430703097799,0.42912795349494176,0.3701129435059546,22.144758213702573,22.144758213702573,16.91017032556917,16.91017032556917,19.0939155227191,19.0939155227191,29.803760776155258,29.803760776155258,23.863239264983534,23.863239264983534,7.953006097004916,7.138580400399292,6.518567583963488,8.125836221909779,7.772685427167971,8.711285295519644,7.486841867131943,7.051395975761565,8.840257560826586,7.851722341945759,244.63775156021944,244.63775156021944,0.0,271.81972395579936,0.0,244.63775156021944,271.81972395579936,0,0
+2017/05/23 13:00:00,245.54453108400008,0,933.6381055840031,0,0,0,43.9988708757687,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.7486429078862074e-09,16.323435938854356,0,0,0.0,490.0086991772016,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4625.356005752708,1497.1112563532085,3044.7573874851064,5811.844872197377,30461.37075617422,6145.993720805591,3321.588796485157,4264.374359941379,3728.665456054931,35641.2667615568,6827.3032188894085,3612.901389453914,4839.508233684083,4151.5077861191,35660.37922508769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04970758429326139,0.0015727133179943228,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.924607251842415,0.924607251842415,0.8090912745344397,0.8090912745344397,0.8333755369341957,0.8333755369341957,1.0651857068723842,1.0651857068723842,0.9500810664127134,0.9500810664127134,0.4009224306778692,0.3616895560838303,0.2921694915855005,0.3904269986484284,0.3763418102977258,0.4467146287113622,0.3938772728351194,0.3375712203680584,0.4293922466948543,0.38402702784211223,23.05514163532004,23.05514163532004,18.804128963515296,18.804128963515296,19.65186363692331,19.65186363692331,28.943328130542966,28.943328130542966,24.065672097238718,24.065672097238718,8.349209926667811,7.72275886357933,6.7735049023851985,8.17518391358469,7.949032680056078,9.16371144569878,8.231873640668553,7.370206260522011,8.845020122826568,8.071376094924375,245.54453108400008,245.54453108400008,0.0,272.82725676000007,0.0,245.54453108400008,272.82725676000007,0,0
+2017/05/23 14:00:00,229.45773379334713,0,875.4360544219761,0,0,0,43.83952785473608,0.0,16.630907673226492,0.0,115.5196477718057,0,39.380909295966944,2.6931829476235425e-09,14.08674119491874,0,0,0.0,467.2970005277185,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4762.653612129665,2464.1607435696974,3571.0230226552435,5570.212261238902,31540.37665867197,5886.900927127036,3812.875734159205,4112.228188684823,3865.371278465989,32384.565955476035,6510.828786787759,4174.546656420711,4655.867727994627,4283.266203475161,32469.84199517005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046608863978747764,0.0014746719672293492,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9003568447645072,0.9003568447645072,0.8663376564861923,0.8663376564861923,0.8430782061642729,0.8430782061642729,1.057112410320047,1.057112410320047,0.9409114565405574,0.9409114565405574,0.3860789012565362,0.39189735261288466,0.2959269166500013,0.3865448162861352,0.36160680655125427,0.4263176546757738,0.42896236419288564,0.3396524523692467,0.4222498209115365,0.36640113436428623,22.11729144338352,22.11729144338352,20.841974227342334,20.841974227342334,19.99748517173218,19.99748517173218,28.585203768434283,28.585203768434283,23.698950293635548,23.698950293635548,8.104467017372357,8.199280345814799,6.819576579213205,8.112005962498202,7.721506948599014,8.789801409040379,8.837275170204919,7.399654020866691,8.717367703737764,7.7945213026005575,229.45773379334713,229.45773379334713,0.0,254.95303754816348,0.0,229.45773379334713,254.95303754816348,0,0
+2017/05/23 15:00:00,218.8238453148672,0,893.101329743458,0,0,0,40.08606774994683,0.0,16.568294279967066,0.0,108.75639138185811,0,39.380909295966944,2.6931829476235425e-09,14.032182604434944,0,0,0.0,484.9622758492006,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4526.861209785281,3377.6422476655334,3726.1862606708637,5408.025154986074,31055.125574693415,5003.229720952433,4105.1048857205,3494.6799087272516,3415.183460589159,27224.12493630227,5573.702730125422,4586.544028879828,4080.0061658510417,3820.4791607666566,27352.43481407784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047549376321650655,0.0015044291221676135,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8948635908499915,0.8948635908499915,0.9752981510534635,0.9752981510534635,0.8589260244262099,0.8589260244262099,1.0538542913396167,1.0538542913396167,0.9437325612837555,0.9437325612837555,0.37330826987251475,0.4506665061822578,0.29862582121549486,0.3844126658807729,0.3470203278268146,0.4098198858304044,0.5013399646128732,0.342754774619964,0.41918975756670523,0.3524842000686946,21.90815500432359,21.90815500432359,25.09120823986612,25.09120823986612,20.570441135098577,20.570441135098577,28.44133720693064,28.44133720693064,23.811421024279625,23.811421024279625,7.901434556625247,9.238223550095213,6.853037352489551,8.077581626026372,7.505382508241496,8.500430886373422,10.253292442651386,7.443890947452715,8.66334658941382,7.585278980937673,218.8238453148672,218.8238453148672,0.0,243.137605905408,0.0,218.8238453148672,243.137605905408,0,0
+2017/05/23 16:00:00,243.96669593056237,0,930.611757045175,0,0,0,42.19531380484654,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.6931829476235425e-09,14.118695596989001,0,0,0.0,469.2371743821013,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4693.721209812581,3412.276983455356,4256.372216539044,5577.202021542654,34513.799237459854,4975.440965238891,4039.510099393651,3754.4576536072964,3499.195231179599,28771.917137445886,5456.823539229076,4466.2762563905135,4295.289864716063,3852.5021500153953,28830.578131671344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04954645925541763,0.0015676154341103625,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8918716138111235,0.8918716138111235,0.9287163031566221,0.9287163031566221,0.8749668794370454,0.8749668794370454,1.0529851679978215,1.0529851679978215,0.971034221000881,0.971034221000881,0.35616517366456424,0.4169142169281003,0.2970451755534597,0.37281106786440377,0.3471315472990498,0.3841221585712432,0.451994881601245,0.3360531172828413,0.4007567403466584,0.350670329880801,21.79476288250561,21.79476288250561,23.216397175266437,23.216397175266437,21.16097314949981,21.16097314949981,28.403024402134122,28.403024402134122,24.916059881467206,24.916059881467206,7.6398206906753074,8.623435411348481,6.833403299758942,7.8936705891938885,7.506996177315557,8.072906309988952,9.26342074188311,7.348842348782384,8.346425994342539,7.558614540134073,243.96669593056237,243.96669593056237,0.0,271.07410658951375,0.0,243.96669593056237,271.07410658951375,0,0
+2017/05/23 17:00:00,253.93697862613638,0,967.73344164343,0,0,0,45.44276975829544,0.0,16.693521066485914,0.0,133.89528835348938,0,39.380909295966944,2.8031736087279167e-09,18.524490149095463,0,0,0.0,506.3588589803562,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4451.953482401218,3687.71313660574,4584.996466767174,5626.246883094449,35336.40876381078,5295.311560100837,4516.016517174766,4554.248578348692,3572.2313274303865,33324.52219021729,5699.352145007204,4941.522611903282,5142.417767338233,3876.425455621554,33378.95409108594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051522845239707994,0.0016301469089986353,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8986611345773513,0.8986611345773513,0.9924861418520571,0.9924861418520571,0.9098284307984382,0.9098284307984382,1.0534049537647372,1.0534049537647372,0.9880321473565615,0.9880321473565615,0.3660393642280136,0.46315668750697137,0.33060867791709736,0.38170348185165426,0.37042027412916234,0.3916646296111841,0.5042500795927581,0.3713122242698482,0.4069290743495019,0.375554349632069,22.052602238822786,22.052602238822786,25.804345335913382,25.804345335913382,22.480765958476866,22.480765958476866,28.421526055587222,28.421526055587222,25.618458363430392,25.618458363430392,7.7889776286748145,9.478142696546996,7.273028654579377,8.034120931501704,7.856484804381623,8.195460283197917,10.314951475095825,7.870329462302266,8.450927023618476,7.936639210698175,253.93697862613638,253.93697862613638,0.0,282.1521984734849,0.0,253.93697862613638,282.1521984734849,0,0
+2017/05/23 18:00:00,243.02545428449497,0,974.9812685353955,0,0,0,50.30716298174674,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.9612826526320746e-09,25.604660741660762,0,0,0.0,549.097038384866,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4045.0410245030703,3890.5335182339613,4908.277525452555,5459.035470727879,34839.033814754825,6023.693736262631,5221.183854044973,5876.965010847436,3805.592750756501,40496.80944897728,6401.414688439201,5638.514301913967,6563.84294607763,4068.8866306369605,40583.17894965245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05190872491194994,0.0016423558728480504,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8994521720179077,0.8994521720179077,1.018707485616701,1.018707485616701,0.9475119389172865,0.9475119389172865,1.0429114550059653,1.0429114550059653,0.996404449021405,0.996404449021405,0.3857089701646173,0.5054089671142513,0.3811105245986678,0.40014006128504886,0.4086938861404848,0.4085563002042449,0.5441122837379753,0.42374528395282524,0.421981825750177,0.41473933090929854,22.082764776587098,22.082764776587098,26.913945637259175,26.913945637259175,23.96258944878096,23.96258944878096,27.9609457018922,27.9609457018922,25.968501623021652,25.968501623021652,8.098487786692317,10.339607700474048,8.024650518508224,8.336074861621128,8.481106092131341,8.47874851769194,11.19642613955223,8.743914088388067,8.712620581633587,8.585497083492768,243.02545428449497,243.02545428449497,0.0,270.02828253832774,0.0,243.02545428449497,270.02828253832774,0,0
+2017/05/23 19:00:00,233.27546974283266,0,932.729581911438,0,0,0,44.99320636401816,0.0,20.11372302303221,0.0,101.68988858149199,0,39.380909295966944,3.0121888136947275e-09,27.0977424753112,0,0,0.0,542.3357042734526,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3214.978311330416,2180.5182466695655,3634.7548545407653,5070.220425632969,30984.82253315311,5335.626720941427,4097.947321144886,4973.78921266152,3223.8670105647393,38592.964214306376,5621.895127637462,4338.5965698997925,5514.6227691623035,3404.7732350277943,38520.45204201396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049659213819984484,0.0015711829099368428,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8873479610412992,0.8873479610412992,0.909981449361067,0.909981449361067,0.8964910686381543,0.8964910686381543,1.0257160244445924,1.0257160244445924,0.9893640492785517,0.9893640492785517,0.3831959792855979,0.443625338804871,0.35855274686585226,0.39623299273574686,0.4217512355947832,0.3992728451610368,0.46121910918529335,0.3875759044215818,0.4108203982487008,0.42446901087481115,21.624016018681786,21.624016018681786,22.486667895925777,22.486667895925777,21.96998752720947,21.96998752720947,27.214891845763972,27.214891845763972,25.673965617881564,25.673965617881564,8.058024787154835,9.105931012388595,7.675506161930414,8.270871652371,8.708538497115029,8.321545921235469,9.440484365224847,8.128722909974229,8.517647587942605,8.756795615500039,233.27546974283266,233.27546974283266,0.0,259.19496638092517,0.0,233.27546974283266,259.19496638092517,0,0
+2017/05/23 20:00:00,231.16200415267144,0,894.3349024485494,0,0,0,37.45095555346885,0.0,24.999863057464953,0.0,106.16168237671882,0,39.380909295966944,2.909484231310372e-09,23.168593866142388,0,0,0.0,539.4313773231081,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1857.0517449190147,1015.0094631109791,2393.8567036563927,4567.692102418332,25327.972490226104,4206.464636494497,3113.3947451395466,4027.035501818574,2401.157796650188,34621.10036973307,4414.4440130445455,3242.9121965858444,4486.972455970428,2480.9077669848293,34255.37211086774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047615052646185256,0.0015065070752957137,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8767505572950541,0.8767505572950541,0.8886931343356756,0.8886931343356756,0.8815763476668491,0.8815763476668491,1.0064696888815938,1.0064696888815938,0.9825737106369412,0.9825737106369412,0.3861773834929579,0.4347076864745911,0.3615664889590388,0.39760273334472884,0.43355018276494917,0.3975623867806996,0.44564439623148316,0.3852240510352838,0.4074760714617476,0.43297577999958053,21.22729334602508,21.22729334602508,21.674702711751337,21.674702711751337,21.40737976705367,21.40737976705367,26.392854342806828,26.392854342806828,25.39168778897003,25.39168778897003,8.106059780121015,8.94144095798383,7.720897090722403,8.29365627378894,8.920340785192423,8.292983991570821,9.143647933859882,8.090658846385963,8.460266655916456,8.909891338723526,231.16200415267144,231.16200415267144,0.0,256.846671280746,0.0,231.16200415267144,256.846671280746,0,0
+2017/05/23 21:00:00,219.56049151065292,0,860.3410369281764,0,0,0,25.542929660231785,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9612826526320738e-09,25.553599599294536,0,0,0.0,540.9278643152792,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,666.4050776162518,112.44067112752498,1288.5145050643134,3952.825708859413,19586.866903340757,2228.50697216547,1776.7303453358254,2134.9637406285105,1163.3657761217826,23835.585679941705,2352.8643539763243,1826.9908788687726,2513.1771033022983,1178.1290133651942,23209.818467567267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04580519406639778,0.0014492444114067359,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.874130760515224,0.874130760515224,0.8810833568457689,0.8810833568457689,0.8762025008029611,0.8762025008029611,0.9894650752068632,0.9894650752068632,0.9739701538299881,0.9739701538299881,0.38400904867570207,0.42617911767858085,0.3582848521555408,0.3949062349921531,0.4293252211712171,0.3894777325059857,0.42959747832396367,0.3750524361722517,0.3990294617037447,0.4252693477037924,21.129929870090294,21.129929870090294,21.388938742828486,21.388938742828486,21.206901743325105,21.206901743325105,25.67817866262571,25.67817866262571,25.036582888406386,25.036582888406386,8.071086936407312,8.787322878982224,7.67149003085882,8.248878516001312,8.843812039499909,8.159676244601698,8.8487204637143,7.92875363742921,8.317474168435496,8.771066877220917,219.56049151065292,219.56049151065292,0.0,243.95610167850325,0.0,219.56049151065292,243.95610167850325,0,0
+2017/05/23 22:00:00,150.38615188762796,0,677.0496178791741,0,0,0,13.768716854229753,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8567842999391446e-09,20.864477425219498,0,0,0.0,517.3430315727255,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2591.963700431071,6369.173810074066,951.7486588509659,918.6705819927312,865.0513858181355,403.1409563181202,15725.597630162076,991.1520169515231,902.1703455028443,1140.9019207148544,366.8818440300714,14916.315345574392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.036046623151052865,0.0011404900299302745,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7635806856003722,0.7635806856003722,0.7514175388660539,0.7514175388660539,0.7884840579919727,0.7884840579919727,0.9332705523851141,0.9332705523851141,0.8907906292630143,0.8907906292630143,0.36876787595764265,0.407358825631203,0.34291769856511267,0.3793587928176035,0.4084796603290165,0.3688888549434774,0.40466796266948585,0.3537980174860708,0.3782120166873024,0.40097119363725114,17.282560252674998,17.282560252674998,16.89084660765333,16.89084660765333,18.104265651998844,18.104265651998844,23.39591243896686,23.39591243896686,21.753884742161816,21.753884742161816,7.830926257819783,8.458263678232782,7.446225429727178,7.996760408915904,8.477435623023254,7.832793557002034,8.41245588342585,7.604679903234256,7.9785730050893875,8.350029466626964,150.38615188762796,150.38615188762796,0.0,167.09572431958662,0.0,150.38615188762796,167.09572431958662,0,0
+2017/05/23 23:00:00,105.97232835814482,0,515.3813464056472,0,0,0,18.633654677913256,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6367844781494425e-09,11.827692618756519,0,0,0.0,462.14581763683094,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1785.4290099306743,5644.022839795394,2386.2835192916104,1928.7073170835758,1893.6539006598996,1543.0428008910385,19716.207320049296,2400.144972378992,1903.712035835628,2078.281126322386,1545.2675804860608,18985.280373631213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02743928462903581,0.0008681598389035317,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7074330626854312,0.7074330626854312,0.7006526383325801,0.7006526383325801,0.7254728643597753,0.7254728643597753,0.8789129996009417,0.8789129996009417,0.8118045854438007,0.8118045854438007,0.3475776636500827,0.38433187766067406,0.3212714455305516,0.3593683804338927,0.37968343492411966,0.3451459604893894,0.37860813752081673,0.3292352651711189,0.3556641022177403,0.37070418816849443,15.52730551827311,15.52730551827311,15.324518384544774,15.324518384544774,16.07648601351795,16.07648601351795,21.307872034960255,21.307872034960255,18.897616062934688,18.897616062934688,7.513474107920146,8.076281088842919,7.145935670294236,7.68775250788994,8.001919294399116,7.478266662810398,7.984848975683946,7.254102605870671,7.632362313585986,7.86088797672619,105.97232835814482,105.97232835814482,0.0,117.7470315090498,0.0,105.97232835814482,117.7470315090498,0,0
+2017/05/24 00:00:00,43.98092469980611,0,511.3507530534409,0,0,0,2.6750405310577037,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.9651774405783733,2.5794382496734334e-09,9.543385729167406,0,0,0.0,458.11522428462473,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,951.5820147490825,7547.39575818828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027224692853476982,0.0008613703047076571,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7496846105109813,0.7496846105109813,0.7529921247255154,0.7529921247255154,0.7493489930261699,0.7493489930261699,0.8627203691926711,0.8627203691926711,0.8058002965557414,0.8058002965557414,0.487390389015437,0.5627808484990527,0.4272740827120679,0.5111501879350738,0.553941844037921,0.4816103849064014,0.5506602680291312,0.44272924679585707,0.5039271924976249,0.5334070713297759,16.835552941393942,16.835552941393942,16.94119944473279,16.94119944473279,16.824859045062297,16.824859045062297,20.709167118562192,20.709167118562192,18.69115530737568,18.69115530737568,9.962811463256486,11.632910377565338,8.806935087922113,10.462612948796703,11.424364857881258,9.84491255198607,11.347802342385009,9.089247750887154,10.308092143837229,10.952944819480692,43.98092469980611,43.98092469980611,0.0,48.86769411089568,0.0,43.98092469980611,48.86769411089568,0,0
+2017/05/24 01:00:00,23.72220780500995,0,37.082859340096775,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251123813321588,0,0,0.0,1.5925068275526424,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0019743188987878845,6.246607374385172e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7670714107390734,0.7670714107390734,0.7807157230707905,0.7807157230707905,0.7574463826907593,0.7574463826907593,0.9215501983784063,0.9215501983784063,0.8815839183678242,0.8815839183678242,0.4852567477956679,0.577540658556483,0.4167242743715673,0.5151990125635852,0.5985589358579969,0.4895030462212864,0.5767690308174906,0.44127510716626395,0.5181154536055526,0.5715230663641891,17.396146598745702,17.396146598745702,17.845110330252794,17.845110330252794,17.084214440285677,17.084214440285677,22.93560947645169,22.93560947645169,21.407663037631366,21.407663037631366,9.919122165495352,11.988703598435393,8.62011400709234,10.550215807264692,12.511674824269221,10.006264705369176,11.969868966133234,9.062248319136557,10.61375708645268,11.842505222980236,23.72220780500995,23.72220780500995,0.0,26.35800867223328,0.0,23.72220780500995,26.35800867223328,0,0
+2017/05/24 02:00:00,28.34453808332985,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251749968569546,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7436064508043626,0.7436064508043626,0.7570465482109128,0.7570465482109128,0.7313795322542033,0.7313795322542033,0.8987751158347128,0.8987751158347128,0.9379233323370318,0.9379233323370318,0.43678469151122734,0.5318028680313637,0.36297927339938885,0.4685160062122342,0.6157534724619061,0.44301173028472923,0.5363323865150048,0.3922673041034746,0.47304413120673344,0.576807462536408,16.642630318829504,16.642630318829504,17.071342085369793,17.071342085369793,16.25934526175699,16.25934526175699,22.056946815844498,22.056946815844498,23.580165120566974,23.580165120566974,8.97944701821227,10.916886208615225,7.742308651278748,9.583147474050506,12.953762616762901,9.094503246455801,11.0189857689911,8.205357728688853,9.67283138374384,11.970806433216296,28.34453808332985,28.34453808332985,0.0,31.493931203699834,0.0,28.34453808332985,31.493931203699834,0,0
+2017/05/24 03:00:00,23.77488476757931,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5777893439015153,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6996043586317306,0.6996043586317306,0.7145704726546157,0.7145704726546157,0.6847452495049073,0.6847452495049073,0.8455190918771078,0.8455190918771078,0.9475574154564189,0.9475574154564189,0.4008574019996032,0.4988735168217534,0.32329474233516636,0.433017288015897,0.636514195264711,0.3973805815581536,0.4935560920787228,0.3440271527400775,0.4297202224952892,0.575498422387241,15.293343799171026,15.293343799171026,15.742911465273878,15.742911465273878,14.856556549175082,14.856556549175082,20.085051293497614,20.085051293497614,23.964411866875636,23.964411866875636,8.348117173449396,10.20132029874162,7.173161861623143,8.910645971239887,13.50463790605221,8.28995549154385,10.090167445846305,7.4621524193794215,8.850934413863882,11.938911025565403,23.77488476757931,23.77488476757931,0.0,26.416538630643675,0.0,23.77488476757931,26.416538630643675,0,0
+2017/05/24 04:00:00,48.08637424187318,0,88.72588128136032,0,0,0,0.05878385863276147,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,7.994647055865156,0.0,0.524809777741146,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,228.12225228487773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7680393057002938,0.7680393057002938,0.7820173776131303,0.7820173776131303,0.7523763676946992,0.7523763676946992,0.8762734045336046,0.8762734045336046,0.9018603711404504,0.9018603711404504,0.39497368170265057,0.45233984924457904,0.34486297340355915,0.41470384121065995,0.4988853340569421,0.3784642345691375,0.43552910742642115,0.3440784356645342,0.39849931025316915,0.4712596858796733,17.42773349390606,17.42773349390606,17.88835524902119,17.88835524902119,16.92149584189592,16.92149584189592,21.209539171322774,21.209539171322774,22.174746785719776,22.174746785719776,8.249994737402375,9.269976652844676,7.474185759168947,8.584879688451949,10.201568680787574,7.98256826385915,8.956449573188621,7.462889886467181,8.308613620242724,9.637383196901695,48.08637424187318,48.08637424187318,0.0,53.42930471319242,0.0,48.08637424187318,53.42930471319242,0,0
+2017/05/24 05:00:00,78.54764297668218,0,212.9421150752648,0,0,0,0.2899107445233532,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,4.946622218269135,0.0,0.5250669839338334,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1152.1166911528264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8901728613777462,0.8901728613777462,0.8940567432220916,0.8940567432220916,0.8859779090907124,0.8859779090907124,0.9490355629298993,0.9490355629298993,0.9503071207314041,0.9503071207314041,0.5133000498716023,0.5941917319731786,0.4430570401506843,0.5393657936641771,0.685315650985724,0.49416823317731606,0.5685461065260958,0.4492071545238222,0.5187732649144201,0.648685043196989,21.730544865026886,21.730544865026886,21.87754056726864,21.87754056726864,21.572467957577473,21.572467957577473,24.023691312037627,24.023691312037627,24.074754670117073,24.074754670117073,10.509040392284192,12.401433301125735,9.095346538119799,11.08785844663366,14.873147524947925,10.102901137034024,11.770760319250371,9.210629450610227,10.628139859777761,13.836278507914727,78.54764297668218,78.54764297668218,0.0,87.2751588629802,0.0,78.54764297668218,87.2751588629802,0,0
+2017/05/24 06:00:00,90.51435848764088,0,675.0003790261158,0,0,0,0.43369613476746965,0.0,10.365700228685935,0.0,73.80580873715317,0,5.383998381247714,2.5211554911413574e-09,0.5251550032654078,0,0,0.0,444.31308769457894,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1762.6214979953843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.035937520156631146,0.001137038087237832,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9655310349846153,0.9655310349846153,0.9668600090243675,0.9668600090243675,0.9658677649125349,0.9658677649125349,1.0187568236785856,1.0187568236785856,0.9819104818961987,0.9819104818961987,0.6463355843030064,0.7292426303667916,0.5745847239013834,0.6667705340906771,0.9131090223656811,0.6378712534322879,0.7186963105032987,0.589433353280834,0.658399516613096,0.8663455378658532,24.691050691305364,24.691050691305364,24.745280602912544,24.745280602912544,24.704784731059434,24.704784731059434,26.91605782235098,26.91605782235098,25.36421198671367,25.36421198671367,13.77175834715554,16.193017641979353,11.916692369084345,14.340945919878877,22.607505820015987,13.54129785355083,15.86854555337932,12.282259608553076,14.10559464211984,20.84226417908694,90.51435848764088,90.51435848764088,0.0,100.57150943071208,0.0,90.51435848764088,100.57150943071208,0,0
+2017/05/24 07:00:00,146.67934961896998,0,808.3843826455178,0,0,0,2.2227599645637683,0.0,8.668398971615169,0.0,69.33401494192633,0,39.380909295966944,3.012213984460106e-09,27.073266441885604,0,0,0.0,542.2067388014368,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1675.8044270346877,0.0,0.3419228925731122,0.41834526894080065,0.3045895322486243,0.43542632260843883,3330.617196163565,0.4742366097314355,0.5080613709290192,0.35623455787235186,0.5375161582982497,2744.4170918104223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04303898330774882,0.0013617234312110406,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6004727711197408,0.6004727711197408,0.5469166844301144,0.5469166844301144,0.6562116122463967,0.6562116122463967,1.0161942673646045,1.0161942673646045,0.8616050078824723,0.8616050078824723,0.33218846567905347,0.35214081997068564,0.3278799768729243,0.31366725657704053,0.5940503655162356,0.33741579296688445,0.3556862952470149,0.3479602189189917,0.31588857242587126,0.5719758185187456,12.5602467117331,12.5602467117331,11.261030724581218,11.261030724581218,14.044582116525959,14.044582116525959,26.806473790299933,26.806473790299933,20.66832626604078,20.66832626604078,7.294897596515298,7.580220449563512,7.235504764958506,7.045162153594404,12.39787861215953,7.368014469909724,7.632692427501766,7.51903582529188,7.074346585738354,11.853450256817183,146.67934961896998,146.67934961896998,0.0,162.97705513218887,0.0,146.67934961896998,162.97705513218887,0,0
+2017/05/24 08:00:00,161.208438042507,0,866.8500669923773,0,0,0,0.4863643964482527,0.0,12.6452663876437,0.0,83.2008179303116,0,39.380909295966944,2.9613076565284002e-09,25.49508002917521,0,0,0.0,547.4368943794801,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1969.6669950015523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046151739648297795,0.0014602088720558552,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5292010971343198,0.5292010971343198,0.4582412181790148,0.4582412181790148,0.6119173035780073,0.6119173035780073,1.0248523443155115,1.0248523443155115,0.8318990018651531,0.8318990018651531,0.21221508566728836,0.22083288053502734,0.23249820213617808,0.15965903192026717,0.5002873665372342,0.18588601288690074,0.18405388564394043,0.2365517414140483,0.11854277461264345,0.47124433677230376,10.858641630893175,10.858641630893175,9.382921918997468,9.382921918997468,12.854019061226964,12.854019061226964,27.177706926310577,27.177706926310577,19.59961265753786,19.59961265753786,5.934089922833849,6.011655026588414,6.1216079950201845,5.528272127628213,10.231080302334206,5.716365553688917,5.702293357665084,6.161151508693763,5.291073668888814,9.637078880750124,161.208438042507,161.208438042507,0.0,179.12048671389667,0.0,161.208438042507,179.12048671389667,0,0
+2017/05/24 09:00:00,179.02513678716028,0,882.7756117785302,0,0,0,0.6877404016300769,0.0,11.815562190220337,0.0,106.27511244621549,0,39.380909295966944,2.8568089191523743e-09,20.865812450270653,0,0,0.0,510.12691039681687,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2830.372280974064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04699962744886977,0.0014870354510394014,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5909575038083508,0.5909575038083508,0.508997663225481,0.508997663225481,0.6835333419716045,0.6835333419716045,1.0497052120134323,1.0497052120134323,0.9267610643936389,0.9267610643936389,0.23337532204083783,0.23898628252044246,0.25947899116101947,0.17590100762943162,0.5296576052941697,0.20084621843173792,0.19407302818233693,0.2593379488340834,0.1251471751851007,0.4978329641960186,12.320325023943411,12.320325023943411,10.416328255859455,10.416328255859455,14.821353115803817,14.821353115803817,28.258682286150375,28.258682286150375,23.13958155767054,23.13958155767054,6.130106108000092,6.185232696421167,6.397805628182297,5.641372250091905,10.868840053547288,5.836520302088232,5.780961713563698,6.39628223269041,5.32443350397206,10.17947296846441,179.02513678716028,179.02513678716028,0.0,198.9168186524003,0.0,179.02513678716028,198.9168186524003,0,0
+2017/05/24 10:00:00,209.77046800974728,0,976.3852063668528,0,0,0,0.6873218450313517,0.0,17.187220306683432,0.0,133.89528835348938,0,39.380909295966944,4.110248354886457e-05,18.61968710609256,0,0,0.024132342650988594,514.986491361128,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2815.914961427358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05198347160200284,0.0016447208060185832,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.43107196485657934,0.43107196485657934,0.3204017355048586,0.3204017355048586,0.5593790208324386,0.5593790208324386,1.0590790598312787,1.0590790598312787,0.8493580332157469,0.8493580332157469,0.19852389178868188,0.1710320987175925,0.2156989238897688,0.15064065207076996,0.2517672766411967,0.1599354297368082,0.15612988458567573,0.21331331553131538,0.09806184059086066,0.22231866610685708,8.875358718970318,8.875358718970318,7.134285870775301,7.134285870775301,11.552247381590675,11.552247381590675,28.672228098980185,28.672228098980185,20.22327440999682,20.22327440999682,5.817254805807892,5.606313130788962,5.965071864272446,5.470221021888207,6.315739580946911,5.530104814777317,5.505151546605333,5.943801675292775,5.199144115246213,6.02534242756127,209.77046800974728,209.77046800974728,0.0,233.07829778860807,0.0,209.77046800974728,233.07829778860807,0,0
+2017/05/24 11:00:00,225.9851871786509,0,1031.8049040204276,0,0,0,1.0198384627673853,0.0,16.965687115311,0.0,147.76209134187457,0,39.380909295966944,5.364612652386363e-05,20.856607316604414,0,0,0.03150440292061387,517.1632881856169,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3948.363675987133,0.0,0.0,0.0,0.0,0.0,0.0,264.8147300153131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054934057354818676,0.0017380752825097462,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.47198635814542106,0.47198635814542106,0.3342802778506059,0.3342802778506059,0.6138383831297914,0.6138383831297914,1.0844990481929182,1.0844990481929182,0.9070932082904375,0.9070932082904375,0.024951140339553143,0.23341996971068318,0.0814191345640023,0.13311326995502853,0.27939794268997703,0.26983042816293423,0.14510738928064124,0.07685985408873312,0.15819200214249973,0.25404529469855947,9.651802047428205,9.651802047428205,7.324017451799932,7.324017451799932,12.903888881287813,12.903888881287813,29.809407127419675,29.809407127419675,22.37542793452228,22.37542793452228,5.012887651281034,6.130539547350594,5.137265892239796,5.3670841632839625,6.621363223299994,6.511897403992691,5.436280316758555,5.122319249877222,5.518598113665519,6.339721341496173,225.9851871786509,225.9851871786509,0.0,251.0946524207232,0.0,225.9851871786509,251.0946524207232,0,0
+2017/05/24 12:00:00,205.46643958806686,0,973.0174573004132,0,0,0,0.9600254893425808,0.0,17.070463315671784,0.0,129.49988082968767,0,39.380909295966944,5.0472627241741356e-05,18.55511018477063,0,0,0.029647963771532396,493.8680504172957,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3857.5538559331308,0.0,0.0,0.0,0.0,0.0,0.0,109.80936308800284,8.875298098408791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05180417014719141,0.0016390478329717734,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4364910222355704,0.4364910222355704,0.28261769309473,0.28261769309473,0.5938361579198697,0.5938361579198697,1.0762445451441585,1.0762445451441585,0.9171290172582105,0.9171290172582105,0.009141242897897361,0.3063782618483313,0.08654398690441122,0.17132016522730265,0.3605454418377249,0.15468750454226327,0.19235228143458089,0.08022269215128618,0.17755027970725393,0.3372578937107404,8.974062065683228,8.974062065683228,6.659069708377686,6.659069708377686,12.39249397040075,12.39249397040075,29.437643164686833,29.437643164686833,22.763403087573934,22.763403087573934,5.001729788334515,6.950864189659981,5.1550958316014714,5.608359859142922,7.705475454537535,5.495851439817741,5.76715242037379,5.133260179458517,5.653472306317326,7.3657888724368945,205.46643958806686,205.46643958806686,0.0,228.29604398674095,0.0,205.46643958806686,228.29604398674095,0,0
+2017/05/24 13:00:00,202.78162595719309,0,934.6310258605918,0,0,0,0.8139064907072434,0.0,16.965687115311,0.0,129.2730206906943,0,39.380909295966944,3.0033578015849877e-05,16.34807233093554,0,0,0.017644741514709128,490.9839747122754,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3353.4788859306736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049760448104249635,0.0015743858921248748,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3681981638820798,0.3681981638820798,0.20352265797180372,0.20352265797180372,0.5310579188381364,0.5310579188381364,1.0689437590632123,1.0689437590632123,0.8511088128794135,0.8511088128794135,0.10891379556387305,0.17371130032978177,0.01818702770108484,0.14723985116068578,0.2993452979653922,0.15839076011126085,0.17996284047480876,0.015266222412556507,0.19686671105916054,0.27752580194397986,7.822141192442743,7.822141192442743,5.859003230596755,5.859003230596755,10.900179445037494,10.900179445037494,29.110823282207775,29.110823282207775,20.286515775351745,20.286515775351745,5.245683760531591,5.625482632810673,5.0068471642326955,5.4492097345385275,6.862009336506048,5.519903528220624,5.671376813311284,5.004824458255143,5.803645096313147,6.599639625044773,202.78162595719309,202.78162595719309,0.0,225.31291773021454,0.0,202.78162595719309,225.31291773021454,0,0
+2017/05/24 14:00:00,186.5945621095674,0,881.6940684658348,0,0,0,0.6808839045493833,0.0,16.965687115311,0.0,115.5196477718057,0,39.380909295966944,2.2140039660721e-05,14.0474118818947,0,0,0.013008504545465269,473.54200606703176,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2772.2309878340047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04694204528179552,0.001485213591411254,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.29087135444018036,0.29087135444018036,0.1245728658467728,0.1245728658467728,0.4569656526937837,0.4569656526937837,1.0503867264657667,1.0503867264657667,0.7702406161475318,0.7702406161475318,0.1585177042847054,0.07481177290515728,0.06947831117696328,0.07455016582345429,0.16587934818658565,0.17249617597503944,0.0994197634252877,0.05747084482403466,0.10666425790620651,0.1386265737971725,6.757726404737582,6.757726404737582,5.3214606061985705,5.3214606061985705,9.358382112827854,9.358382112827854,28.288641957274805,28.288641957274805,17.499721272013772,17.499721272013772,5.520738141269163,5.115885626156839,5.099947805225398,5.115076368478995,5.570287204313701,5.616751392637852,5.204700083149774,5.068381766871667,5.23563465608926,5.398147980747979,186.5945621095674,186.5945621095674,0.0,207.32729123285264,0.0,186.5945621095674,207.32729123285264,0,0
+2017/05/24 15:00:00,179.92211155709109,0,888.2858565088569,0,0,0,0.695117014598128,0.0,16.965687115311,0.0,108.75639138185811,0,39.380909295966944,2.6932068588616023e-09,14.124006746663692,0,0,0.0,480.1468026145994,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2830.8368937121922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047292996959787365,0.0014963174578694163,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.24841557827394625,0.24841557827394625,0.08060410907480918,0.08060410907480918,0.42259691023626533,0.42259691023626533,1.048270389691038,1.048270389691038,0.7175378086150679,0.7175378086150679,0.13859026366373717,0.059843211987332626,0.01395811458532614,0.03956610443513329,0.042035324104320364,0.1012426599942631,0.05904523837926356,0.0037138145707599594,0.028281066213538007,0.014256636036437318,6.28085134365277,6.28085134365277,5.134530724580102,5.134530724580102,8.723520435581449,8.723520435581449,28.195661773825464,28.195661773825464,15.833194479742403,15.833194479742403,5.397939260257274,5.074144741388025,5.004033092242452,5.032408425983192,5.036580031661288,5.212278844304251,5.072180266448669,5.00028551013952,5.016557241805657,5.0042074496333555,179.92211155709109,179.92211155709109,0.0,199.91345728565676,0.0,179.92211155709109,199.91345728565676,0,0
+2017/05/24 16:00:00,202.8863756772861,0,927.035981399194,0,0,0,0.8023957428408173,0.0,17.028300508570425,0.0,131.64086955684016,0,39.380909295966944,3.7031070145740004e-05,14.033863541997492,0,0,0.020576059493445233,465.6408226766268,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3294.235604187211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04935608231142476,0.0015615920403061047,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.26002740850889544,0.26002740850889544,0.08731235685021904,0.08731235685021904,0.4452010003191661,0.4452010003191661,1.0554499295225916,1.0554499295225916,0.758277284082609,0.758277284082609,0.21058297489753636,0.03965750906047302,0.1234538624968759,0.013721911365821434,0.014945738952142712,0.18644016327526047,0.021093955092124615,0.0996606233693774,0.02371733919680045,-0.011904212458865124,6.403737029222867,6.403737029222867,5.157862993906463,5.157862993906463,9.135350075873248,9.135350075873248,28.511747078291492,28.511747078291492,17.110986520840797,17.110986520840797,5.919750302559578,5.032558347787898,5.315707497417094,5.003897747741377,5.004624022922357,5.720649484729975,5.00921097385033,5.205693558525397,5.011644577538448,5.002933492207617,202.8863756772861,202.8863756772861,0.0,225.42930630809568,0.0,202.8863756772861,225.42930630809568,0,0
+2017/05/24 17:00:00,210.01627199727162,0,976.3894175126031,0,0,0,0.8068915473012191,0.0,17.346139882338,0.0,133.89528835348938,0,39.380909295966944,4.185557414597014e-05,18.587001062601857,0,0,0.0246018957426581,514.9902329537866,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3313.8496477090594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051983695806521804,0.0016447278996932799,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.25532320915396955,0.25532320915396955,0.07340142306616923,0.07340142306616923,0.44853480301974025,0.44853480301974025,1.0518632255324762,1.0518632255324762,0.7974477944272655,0.7974477944272655,0.07551962980226012,0.087069068117127,0.11287903898730368,0.05959162037701166,0.08339708999482652,0.13625577594188884,0.06369433673174256,0.0948027226295707,0.04891214169669166,0.05603975592118633,6.353270093812654,6.353270093812654,5.111556424336939,5.111556424336939,9.19794714046914,9.19794714046914,28.353607029865472,28.353607029865472,18.406483281474735,18.406483281474735,5.118089543883329,5.156984178432893,5.263908988092808,5.073522517450755,5.14401833221423,5.384635131701415,5.083996549052031,5.186121646907964,5.0495291424604005,5.065018129031316,210.01627199727162,210.01627199727162,0.0,233.3514133303018,0.0,210.01627199727162,233.3514133303018,0,0
+2017/05/24 18:00:00,195.56526103695901,0,966.7143276917996,0,0,0,0.8229660993781958,0.0,18.817882348905822,0.0,110.93442390708215,0,39.380909295966944,4.1146256338775194e-05,25.609038239369518,0,0,0.02418973847694883,540.8059078027928,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3383.9527990596134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0514685868580587,0.0016284302116244633,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2334167988267145,0.2334167988267145,0.0426077135032021,0.0426077135032021,0.42290410299633985,0.42290410299633985,1.044956263795216,1.044956263795216,0.7952624715085354,0.7952624715085354,0.10033040414612768,0.11602768335268238,0.05608208985311703,0.08791205214748611,0.19284658494133383,0.11350715428881093,0.08497854876073417,0.03833604590210921,0.09951768899614126,0.16931952167322153,6.130508761665851,6.130508761665851,5.037583106749054,5.037583106749054,8.728970245284629,8.728970245284629,28.050383264681827,28.050383264681827,18.332489868525116,18.332489868525116,5.208468863577437,5.278846156028038,5.065116412840439,5.160039718888427,5.771106623539694,5.266855881261421,5.1495339328218535,5.030424546894665,5.205103706393658,5.594216635303297,195.56526103695901,195.56526103695901,0.0,217.29473448551002,0.0,195.56526103695901,217.29473448551002,0,0
+2017/05/24 19:00:00,189.68967790779695,0,951.7719843058175,0,0,0,0.7455871434737039,0.0,20.775509173548034,0.0,101.68988858149199,0,39.380909295966944,4.1238005080064855e-05,27.0977424753112,0,0,0.024248480111273497,561.3538581877207,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3048.0042323365155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05067304542829565,0.0016032598353248812,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.19830440075516462,0.19830440075516462,0.004017125879040405,0.004017125879040405,0.3935691309140875,0.3935691309140875,1.03516705461702,1.03516705461702,0.7683206208585113,0.7683206208585113,0.15525882574685362,0.10864880753569801,-0.022569042814253645,0.12224247990793108,0.2235632302278983,0.14619377494993135,0.11686840269772314,-0.05718627833575287,0.05321254353902368,0.1996506803093816,5.815445623391028,5.815445623391028,5.000334050427625,5.000334050427625,8.226790021065469,8.226790021065469,27.623597490240982,27.623597490240982,17.436921608133233,17.436921608133233,5.4995248100382526,5.244489089842872,5.010544282963082,5.309538113209712,6.036878853663268,5.442843570310572,5.282904200422124,5.067706160857753,5.058622458713572,5.8265742196429215,189.68967790779695,189.68967790779695,0.0,210.76630878644104,0.0,189.68967790779695,210.76630878644104,0,0
+2017/05/24 20:00:00,194.3590977631089,0,874.1709513691271,0,0,0,0.6477351650310148,0.0,24.999863057464953,0.0,106.16168237671882,0,39.380909295966944,4.7746241647325766e-05,23.16886012168554,0,0,0.028081580473815333,519.2393446632121,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2628.2094799186157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046541508955143814,0.0014725409012328445,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.15916380847142897,0.15916380847142897,-0.03279116791390954,-0.03279116791390954,0.3550921790922876,0.3550921790922876,1.0216573815124463,1.0216573815124463,0.7400232562443653,0.7400232562443653,0.18090432945089574,0.13187566664549985,-0.03334904673807464,0.14930786480900174,0.2518924695937411,0.1744398541341412,0.09857927765168159,-0.07021337243527671,0.08779524809531339,0.22176473849898481,5.52499645475757,5.52499645475757,5.0222595086073625,5.0222595086073625,7.623862378179695,7.623862378179695,27.04039143147861,27.04039143147861,16.5296408503892,16.5296408503892,5.678429861327274,5.360284861659807,5.023023395312009,5.461929229561719,6.31705187924662,5.63074717590149,5.201252193203217,5.102074300717234,5.15961458310862,6.02022870124793,194.3590977631089,194.3590977631089,0.0,215.954553070121,0.0,194.3590977631089,215.954553070121,0,0
+2017/05/24 21:00:00,194.5173919656783,0,860.2300757363616,0,0,0,0.5021327203889846,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.6877562870783014e-05,25.55127011956119,0,0,0.015809890669646515,540.801093232795,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2013.7593474461237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04579928641035586,0.0014490574972875457,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.08166300172224267,0.08166300172224267,-0.10741588812748652,-0.10741588812748652,0.2767535521570645,0.2767535521570645,1.002065254347583,1.002065254347583,0.6616576904141966,0.6616576904141966,0.06729261314321433,0.036519384355609884,0.001159246722057692,0.05674931088221399,0.1417370265777624,0.09399462197512455,-0.016149787945045336,-0.0032300880322910703,-0.013071346647889186,0.10371208732989935,5.138089647994377,5.138089647994377,5.2389689507813415,5.2389689507813415,6.590721793357375,6.590721793357375,26.206690289408627,26.206690289408627,14.19683742824813,14.19683742824813,5.093757008342422,5.027609194264059,5.000027818429928,5.06667526307298,5.416231355750071,5.182960918777354,5.005399077632433,5.000215978119982,5.003536916713969,5.2227655980866245,194.5173919656783,194.5173919656783,0.0,216.13043551742035,0.0,194.5173919656783,216.13043551742035,0,0
+2017/05/24 22:00:00,137.1299929248538,0,676.894874202449,0,0,0,0.08033215204552949,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,5.6352234250805255e-05,20.8676499149453,0,0,0.03315559702450555,517.155132298976,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,311.5507676740176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03603838448308434,0.0011402293642185756,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.128234943986679,-0.128234943986679,-0.30998576861442767,-0.30998576861442767,0.06099618718498327,0.06099618718498327,0.9454369285223537,0.9454369285223537,0.3900898603605049,0.3900898603605049,0.024712417314151684,-0.02792390766722371,-0.015018871135597339,-0.02302375828215387,0.014974398954119878,0.02698193906648569,-0.102071585366037,-0.029697713163790385,-0.10912642396552842,0.03664971268722379,5.340652314058843,5.340652314058843,6.997253548347331,6.997253548347331,5.077029778213614,5.077029778213614,23.87952278821237,23.87952278821237,8.169671850625747,8.169671850625747,5.01264221598295,5.016141668702758,5.00466938644422,5.010973460625948,5.004641774190091,5.0150709749838995,5.2157707589244495,5.018257615291375,5.246644482186468,5.027806618076724,137.1299929248538,137.1299929248538,0.0,152.36665880539312,0.0,137.1299929248538,152.36665880539312,0,0
+2017/05/24 23:00:00,88.668138257147,0,515.119567378408,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,5.950017489305857e-05,11.784307617152125,0,0,0.03454406710278353,461.849494542489,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02742534731972413,0.000867718872152016,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.35537367086796834,-0.35537367086796834,-0.34294953895464575,-0.34294953895464575,-0.17169828425663833,-0.17169828425663833,0.7919744330612649,0.7919744330612649,0.10158126869062299,0.10158126869062299,-0.027682243580163145,-0.14317043327081758,-0.08458570959041131,-0.13229430578296208,-0.03675515810655498,-0.05358997615898073,-0.19224515582094157,-0.07524560021388561,-0.1962961541228087,-0.0461599680046502,7.6280441761391415,7.6280441761391415,7.446681791694772,7.446681791694772,5.611051669537446,5.611051669537446,18.221540649721376,18.221540649721376,5.2137018143596805,5.2137018143596805,5.0158634758719955,5.42470034509455,5.148154156691433,5.362577704423529,5.027966863611425,5.059457124796452,5.766296810521709,5.117233886089579,5.7989859306801605,5.044111655416316,88.668138257147,88.668138257147,0.0,98.52015361905222,0.0,88.668138257147,98.52015361905222,0,0
+2017/05/25 00:00:00,39.341245353250564,0,511.0546098772197,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.579461597782521e-09,9.543924354247919,0,0,0.0,457.8190811084035,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027208925971419745,0.0008608714515497896,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.06700473636485127,-0.06700473636485127,-0.06499554421596028,-0.06499554421596028,0.08747999235038777,0.08747999235038777,0.8170740661360124,0.8170740661360124,0.41100134960522927,0.41100134960522927,0.07068903940152306,0.01990297517359955,0.040890125428424434,0.01852803522548937,0.24304427639752701,0.025175755186742123,-0.07322020838085788,-0.01001230870633038,-0.08440343314344241,0.18496456716348308,5.092956381485266,5.092956381485266,5.087464179208752,5.087464179208752,5.158469961172784,5.158469961172784,19.08006253577304,19.08006253577304,8.520765956587567,8.520765956587567,5.103462318665379,5.0082002022792835,5.03461388230977,5.0071063446724935,6.225925353218955,5.013120736430736,5.111006147804915,5.002075158409369,5.147516118010088,5.7092705937505315,39.341245353250564,39.341245353250564,0.0,43.71249483694507,0.0,39.341245353250564,43.71249483694507,0,0
+2017/05/25 01:00:00,23.75949600205187,0,37.64628946865836,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5624005783740744,0,0,0.0,2.155936956114228,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0020043163361689554,6.341517175265008e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.053723615075294225,0.053723615075294225,0.005212962882571864,0.005212962882571864,0.1879064015319467,0.1879064015319467,0.803632230091277,0.803632230091277,0.5866001019556348,0.5866001019556348,0.08782938989152785,0.05632247217901172,0.051787666215388155,0.053617237428522056,0.35624914706252564,0.0290352090121947,-0.05648858787275786,-0.023354110109500212,-0.0708888024046442,0.2930382695437297,5.059754072909868,5.059754072909868,5.0005625364020005,5.0005625364020005,5.7320462990954155,5.7320462990954155,18.616979238859486,18.616979238859486,12.211767494432507,12.211767494432507,5.159738791652359,5.065675900125527,5.055524641490564,5.059517639757786,7.6410716682287045,5.017452079798517,5.066063931625521,5.011290628585257,5.104048032998605,6.784104415500153,23.75949600205187,23.75949600205187,0.0,26.399440002279853,0.0,23.75949600205187,26.399440002279853,0,0
+2017/05/25 02:00:00,28.35958800389169,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5402249174187967,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.08498417250836755,0.08498417250836755,0.02469490097318529,0.02469490097318529,0.20997059887963276,0.20997059887963276,0.7722734137806907,0.7722734137806907,0.6584378242389902,0.6584378242389902,0.05955156516205645,0.03466539297502842,0.022066934104117843,0.03036480468216093,0.38761666867045386,-7.684241544141916e-05,-0.08100632611698144,-0.05668328304910155,-0.09725944081354237,0.31325300380366916,5.1495537316884,5.1495537316884,5.012624300054895,5.012624300054895,5.914398778084077,5.914398778084077,17.566381839695325,17.566381839695325,14.106664747203851,14.106664747203851,5.073423696926241,5.024876914973547,5.010080320263938,5.019087093457841,8.12938475068249,5.0000001222314125,5.135877093303236,5.066520177674505,5.195897056033104,7.039742672413297,28.35958800389169,28.35958800389169,0.0,31.510653337657434,0.0,28.35958800389169,31.510653337657434,0,0
+2017/05/25 03:00:00,23.721938564427287,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248431407494949,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.09710870068417027,0.09710870068417027,0.03043600752570667,0.03043600752570667,0.21669025669060227,0.21669025669060227,0.7373671025488596,0.7373671025488596,0.6895899762731361,0.6895899762731361,0.04445490051312619,0.025008901884882497,0.007086151990603694,0.019392893585721053,0.417799832035534,-0.020294188575811466,-0.09703668081610968,-0.0792260389499116,-0.11457060666763934,0.32774107941402225,5.1952900398882775,5.1952900398882775,5.019176717306493,5.019176717306493,5.973980737975154,5.973980737975154,16.446239496911588,16.446239496911588,14.997920266254667,14.997920266254667,5.040912746595225,5.012947391494933,5.001039447937387,5.007785265014618,8.638942012965032,5.008525743307288,5.195000355673059,5.129968689038037,5.271882586307555,7.233603157004836,23.721938564427287,23.721938564427287,0.0,26.35770951603032,0.0,23.721938564427287,26.35770951603032,0,0
+2017/05/25 04:00:00,40.654740809683915,0,88.72588128136032,0,0,0,0.06884567964236406,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.5528041042480358,0.0,0.5249574761593958,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,220.0121513079055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.16534300701330037,0.16534300701330037,0.09645744643676978,0.09645744643676978,0.2800808789963051,0.2800808789963051,0.7753431815187117,0.7753431815187117,0.802353514386833,0.802353514386833,0.03986519992692524,0.021190534387429752,0.0025439704243645973,0.015220252722970257,0.3628165869744029,-0.032155516101856935,-0.10796510094413675,-0.09172090813898648,-0.12576059393493746,0.3296545190499225,5.566600947495132,5.566600947495132,5.19267833999902,5.19267833999902,6.629324548092612,6.629324548092612,17.667381093087954,17.667381093087954,18.573323675347254,18.573323675347254,5.032900288654389,5.009295514074637,5.000133969235122,5.004795446855212,7.739838713658372,5.021404839072915,5.241420139338004,5.174213119917795,5.327623994752628,7.259871566540525,40.654740809683915,40.654740809683915,0.0,45.171934232982125,0.0,40.654740809683915,45.171934232982125,0,0
+2017/05/25 05:00:00,74.33218266121655,0,212.9421150752648,0,0,0,0.08084299057076141,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.9403516160435618,0.0,0.5249450246463375,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,325.3108993817186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4392945656079099,0.4392945656079099,0.36973899028697105,0.36973899028697105,0.5482408719354884,0.5482408719354884,0.9691264480451255,0.9691264480451255,0.9174466951581448,0.9174466951581448,0.12740404535850683,0.10733485507122195,0.08938664744359857,0.10180294854167647,0.5300809021849109,0.04073191704384114,-0.03645178493673773,-0.01943634515648502,-0.053442173882844744,0.49615675176946933,9.025621204815621,9.025621204815621,7.845932912024253,7.845932912024253,11.291654314988861,11.291654314988861,24.837923217054524,24.837923217054524,22.77575053311716,22.77575053311716,5.3362489541598706,5.238608353048406,5.1654555331384415,5.214635980475549,10.878304597079321,5.034346530770762,5.0275070704585545,5.007820191903008,5.059129567194702,10.144377763425013,74.33218266121655,74.33218266121655,0.0,82.59131406801839,0.0,74.33218266121655,82.59131406801839,0,0
+2017/05/25 06:00:00,86.23005119658045,0,674.655305417343,0,0,0,0.184843275101316,0.0,10.413824884255693,0.0,73.80580873715317,0,1.3005991280619185,2.5211784879359535e-09,0.524975169487132,0,0,0.0,443.96801408580626,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,757.3288272732932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03591914818210177,0.0011364568107700452,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6200169304032503,0.6200169304032503,0.545815368225752,0.545815368225752,0.7285839863279323,0.7285839863279323,1.051856410999011,1.051856410999011,0.962320239400785,0.962320239400785,0.20050842184250559,0.1785538501725179,0.16519399618706282,0.1710074559692037,0.6616957728672465,0.12445470185691604,0.046712290380640016,0.06609089694980401,0.027210032873712656,0.6091476292667491,13.06536535440351,13.06536535440351,11.2356192149673,11.2356192149673,16.172613468686905,16.172613468686905,28.35330701378635,28.35330701378635,24.56031572058741,24.56031572058741,5.833704000023545,5.660890662994888,5.565578929581221,5.606138203434881,14.197906618858184,5.320850634064385,5.0451737017582445,5.0904376221704695,5.015326867695805,12.782402263910413,86.23005119658045,86.23005119658045,0.0,95.8111679962005,0.0,86.23005119658045,95.8111679962005,0,0
+2017/05/25 07:00:00,146.93434368170597,0,808.287673938946,0,0,0,0.0,0.0,8.842588676766443,0.0,69.33401494192633,0,39.380909295966944,6.111945088441219e-05,27.088786179292537,0,0,0.03597836841221852,542.0740517264529,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.270089311636337,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04303383446457816,0.0013615605254021607,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4497539665390378,0.4497539665390378,0.3820337660814748,0.3820337660814748,0.5469929935865026,0.5469929935865026,0.9941195567169411,0.9941195567169411,0.792337061661286,0.792337061661286,0.042455503168022914,-0.007876032149206362,0.007006430993186301,-0.03396310676072717,0.4151274518891335,0.025901964739193376,-0.11067567276954102,-0.03557443008988543,-0.11852502973695332,0.3803419871622754,9.220958094321432,9.220958094321432,8.039402572975945,8.039402572975945,11.26279341133828,11.26279341133828,25.87270563811117,25.87270563811117,18.233754441532838,18.233754441532838,5.037315043512734,5.001284094560518,5.001016191344121,5.023879110631555,8.59225253662811,5.013888627714678,5.253701156620906,5.026198800802177,5.290986478673901,8.012398161562842,146.93434368170597,146.93434368170597,0.0,163.26038186856218,0.0,146.93434368170597,163.26038186856218,0,0
+2017/05/25 08:00:00,159.80838650093784,0,860.1135662458952,0,0,0,0.39783876077168806,0.0,11.276247110228917,0.0,83.2008179303116,0,39.380909295966944,3.684785593408998e-05,25.55253655580278,0,0,0.020797256279223183,540.6795963767187,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1613.336420656014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04579308335878407,0.001448861237059698,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.14075017421742264,0.14075017421742264,0.01525552260115805,0.01525552260115805,0.26554821815910334,0.26554821815910334,1.071505885635341,1.071505885635341,0.5078590745153513,0.5078590745153513,-0.005848158539820681,-0.05822606629711725,-0.03068580850707014,-0.037185209498957976,0.11644408977254159,-0.00877769156988076,-0.09979474599934272,-0.06067952564895327,-0.03019211799869301,0.07301906348519689,5.410450443549266,5.410450443549266,5.004817697808264,5.004817697808264,6.464152448758,6.464152448758,29.225303003868547,29.225303003868547,10.391926753328875,10.391926753328875,5.000707978025275,5.070191052498359,5.01949280503986,5.028625182131364,5.280852425769254,5.001594934939135,5.206247818189809,5.076231923149763,5.0188706027656025,5.110396945545773,159.80838650093784,159.80838650093784,0.0,177.56487388993094,0.0,159.80838650093784,177.56487388993094,0,0
+2017/05/25 09:00:00,178.5361978955242,0,889.6805835188221,0,0,0,0.558870013051559,0.0,11.457689345133073,0.0,106.27511244621549,0,39.380909295966944,5.784072749018245e-05,20.863558954429667,0,0,0.03244061653791475,516.9994415205709,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2283.2886067144627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047367253258881505,0.0014986668754118446,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.06648903208386354,0.06648903208386354,-0.08030813621534331,-0.08030813621534331,0.22785033853201506,0.22785033853201506,1.0443912267642272,1.0443912267642272,0.5610686707572753,0.5610686707572753,0.07065746075762956,-0.026851757227189813,-0.14469034134140937,-0.03998976290318856,0.13547731996818244,0.06420620035166062,-0.034336389942064005,0.027707196526213052,0.009061998287342936,0.0892698275583364,5.091530722261837,5.091530722261837,5.133544279394101,5.133544279394101,6.07711509944825,6.07711509944825,28.025653997797363,28.025653997797363,11.592249064154288,11.592249064154288,5.103369880055027,5.014925892930378,5.433773828446803,5.033106225400729,5.380249159651299,5.085352258043031,5.0244069262354145,5.015892088618614,5.001699927459697,5.16502319302738,178.5361978955242,178.5361978955242,0.0,198.3735532172491,0.0,178.5361978955242,198.3735532172491,0,0
+2017/05/25 10:00:00,209.6900784310276,0,970.5501433993834,0,0,0,1.0936777229689087,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,1.989258781051587e-06,18.521903635883174,0,0,0.0,509.1755607363097,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4630.741458368056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051672808527544724,0.0016348916428927547,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.36702840366045086,0.36702840366045086,0.11948711013373688,0.11948711013373688,0.4364409115362089,0.4364409115362089,1.1331452307586094,1.1331452307586094,0.8044861897667865,0.8044861897667865,0.016301885796254512,-0.1023710661283676,-0.07422528286474082,0.0015281750878941033,0.2024642819282348,0.03448415802974449,-0.026552493001636042,-0.04768160460161284,-0.0009661586474593744,0.1704380036789658,7.804146637444063,7.804146637444063,5.29573257948303,5.29573257948303,8.973143566198075,8.973143566198075,32.04753958327191,32.04753958327191,18.646172055034484,18.646172055034484,5.005501254194769,5.217039360390515,5.1140753227846005,5.000048342278092,5.850076722836064,5.024617461947102,5.014595036737035,5.047068120969854,5.000019323141956,5.602102983720783,209.6900784310276,209.6900784310276,0.0,232.9889760344751,0.0,209.6900784310276,232.9889760344751,0,0
+2017/05/25 11:00:00,232.95181613769802,0,1016.4109283982065,0,0,0,8.257608663166783,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.8568334885388574e-09,20.920299077299507,0,0,0.0,501.8008169663167,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6143.783655046801,9442.075350118226,0.0,0.0,0.0,0.0,6677.426055449735,32.17713184750299,0.0,0.0,0.0,5927.797812046983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05411447069027125,0.0017121441317424974,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7502430075548434,0.7502430075548434,0.3543505237663176,0.3543505237663176,0.6722793643217098,0.6722793643217098,1.139581475307852,1.139581475307852,0.9788157181810357,0.9788157181810357,0.28765101084545425,0.07496467530844912,0.14239500447895923,0.20192254823654776,0.36492605560050834,0.3354401773503913,0.10776710026120906,0.16917354751888583,0.19736535610820347,0.36237295778969864,16.85335603214999,16.85335603214999,7.612860608498252,7.612860608498252,14.497482484840177,14.497482484840177,32.34953525845603,32.34953525845603,25.23622818029891,25.23622818029891,6.718891255866964,5.11635992976278,5.420108265380023,5.845525787729713,7.771952557921551,7.340244319054946,5.2405349996854085,5.593191229725292,5.807728175205213,7.733109175952961,232.95181613769802,232.95181613769802,0.0,258.8353512641089,0.0,232.95181613769802,258.8353512641089,0,0
+2017/05/25 12:00:00,220.75477521865687,0,993.9167088961443,0,0,0,16.578623459361797,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.8032223613713694e-09,18.559677673943117,0,0,0.0,514.7969499767985,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5627.67113275502,13411.682353409211,613.1432129446971,0.0,663.6485796512443,0.0,17121.203237365098,1170.9320066361308,0.0,1019.7011980642253,0.0,16397.06298334704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05291686178236312,0.0016742526206985563,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8069394240749325,0.8069394240749325,0.4569477144374527,0.4569477144374527,0.7848020908371781,0.7848020908371781,1.0984240727005081,1.0984240727005081,1.0086531915950292,1.0086531915950292,0.3783744714876641,0.20949016243346516,0.27578083050149244,0.2769205127729662,0.4209020438992813,0.4336413595446102,0.24663077130181374,0.314695138996413,0.2939141740355363,0.42623878534047555,18.73020786106285,18.73020786106285,9.358037509358738,9.358037509358738,17.981113801714102,17.981113801714102,30.44190754304536,30.44190754304536,26.485416772141292,26.485416772141292,7.9811460601112,5.910211256593598,6.579524723508044,6.592647700463175,8.693525113983924,8.922000762063348,6.262465736515196,7.058640859491916,6.7948231528071545,8.788390276929348,220.75477521865687,220.75477521865687,0.0,245.2830835762854,0.0,220.75477521865687,245.2830835762854,0,0
+2017/05/25 13:00:00,223.0729577472273,0,934.3979693587103,0,0,0,21.23508576093592,0.0,16.86091082671979,0.0,129.2730206906943,0,39.380909295966944,2.7486911892493965e-09,16.32303117016155,0,0,0.0,490.7685629519087,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,112.66029792402772,5285.086875545682,18285.262286573394,1162.5703000269245,94.60938812139855,1104.403703423131,158.1247562921476,21406.065322213664,1750.7433345932673,199.40065728161457,1565.3980265305456,189.69736345230962,20814.80859515356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04974804000346295,0.0015739933084651441,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8143531442303924,0.8143531442303924,0.5436662212034785,0.5436662212034785,0.8492425379236037,0.8492425379236037,1.0716921966855493,1.0716921966855493,1.005268596244221,1.005268596244221,0.3731167179330596,0.2783096132654383,0.3164712578353408,0.32236884416349987,0.4223002987432069,0.4094800685664622,0.30668379113780914,0.34657504746338735,0.33472045537466893,0.4240067854430403,18.985709345937337,18.985709345937337,11.186181676326555,11.186181676326555,20.21910699113357,20.21910699113357,29.233636705129157,29.233636705129157,26.342014595215886,26.342014595215886,7.89844216370399,6.608716682117532,7.082036712720949,7.160681115527311,8.718262185633193,8.494593104557453,6.954771682055764,7.498927260085111,7.330168762542002,8.748565928853992,223.0729577472273,223.0729577472273,0.0,247.85884194136366,0.0,223.0729577472273,247.85884194136366,0,0
+2017/05/25 14:00:00,195.48562764321898,0,873.5486080545734,0,0,0,9.786924933485581,0.0,16.693521149792748,0.0,115.5196477718057,0,39.380909295966944,2.693230721723943e-09,14.10462448947474,0,0,0.0,465.40955416031596,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4634.017592195703,12474.038754322817,0.0,0.0,0.0,0.0,8306.528747729986,0.0,0.0,0.0,0.0,7337.236393711676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046508374936103124,0.0014714925639667136,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7837455306154795,0.7837455306154795,0.5440934664081226,0.5440934664081226,0.8413080479533138,0.8413080479533138,1.0599824471167316,1.0599824471167316,0.9962893718873114,0.9962893718873114,0.3319900818150954,0.2188451373813314,0.281121224398183,0.25616535713950245,0.411414580053001,0.3909829324415912,0.26016029608739505,0.33638757444088224,0.2755087712556859,0.4101239515005677,17.945881066211115,17.945881066211115,11.19599379850014,11.19599379850014,19.934136640006557,19.934136640006557,28.71224943021336,28.71224943021336,25.96367216685684,25.96367216685684,7.29214556135075,5.993488148479969,6.641490176613374,6.362236294128351,8.527892493287652,8.184283795920066,6.405176178193216,7.35354068154102,6.576400168411396,8.505658677883162,195.48562764321898,195.48562764321898,0.0,217.20625293690998,0.0,195.48562764321898,217.20625293690998,0,0
+2017/05/25 15:00:00,180.9283899196952,0,883.8117044882563,0,0,0,1.8540644863745663,0.0,16.86091082671979,0.0,108.75639138185811,0,39.380909295966944,2.693230721723943e-09,14.076113926082552,0,0,0.0,475.6726505939989,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3885.574865855663,2910.9776915841567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04705478979217635,0.0014887807491302967,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6757973025253002,0.6757973025253002,0.45450018866474756,0.45450018866474756,0.7600718573726647,0.7600718573726647,1.0405345329054771,1.0405345329054771,1.0271492561969942,1.0271492561969942,0.17117100980579913,0.065361346553858,0.1218891379327267,0.09683402081411788,0.34636499626647155,0.22401810091347504,0.0936333405282238,0.1720664155125193,0.10254804089352378,0.3287794144579087,14.598134061542169,14.598134061542169,9.311149098584039,9.311149098584039,17.16890934703646,17.16890934703646,27.85717324768885,27.85717324768885,27.27665922862711,27.27665922862711,5.607299669543792,5.088451654996263,5.307750087448085,5.194186355215493,7.495885065129912,6.041111456984993,5.181556602943914,5.613678107569683,5.217790776393414,7.2478385323620245,180.9283899196952,180.9283899196952,0.0,201.03154435521688,0.0,180.9283899196952,201.03154435521688,0,0
+2017/05/25 16:00:00,203.01640917794117,0,938.8626041731201,0,0,0,0.9138187588817028,0.0,17.028300508570425,0.0,131.64086955684016,0,39.380909295966944,2.693230721723943e-09,14.0525110549886,0,0,0.0,477.48802151004634,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3773.3206164403523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049985740467966916,0.0015815139854711577,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.572941002421158,0.572941002421158,0.3515643105903273,0.3515643105903273,0.6831910047871222,0.6831910047871222,1.0385199897134147,1.0385199897134147,1.0350007145087325,1.0350007145087325,0.028226708210600148,-0.08301770802778688,0.0037059901521702848,-0.0606205333277312,0.2510216961284815,0.0598678356637751,-0.07483265131414639,0.037414415000893604,-0.0772538872889593,0.2256534256425237,11.876812731614905,11.876812731614905,7.571738835921579,7.571738835921579,14.811420425867183,14.811420425867183,27.769383086199255,27.769383086199255,27.61637575406344,27.61637575406344,5.016493652561778,5.142710602591592,5.000284308356882,5.076083746284084,6.307937900601559,5.074205780375735,5.115950333884001,5.028979176815952,5.123576974298501,6.056399916334058,203.01640917794117,203.01640917794117,0.0,225.57378797549018,0.0,203.01640917794117,225.57378797549018,0,0
+2017/05/25 17:00:00,210.11073790673524,0,954.9862607686177,0,0,0,0.8958777333865584,0.0,17.346139882338,0.0,133.89528835348938,0,39.380909295966944,8.713280448284556e-06,18.592513928273892,0,0,0.005130681406767057,493.6065474241372,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3694.307586110742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050844175888011135,0.0016086742837825086,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.48269494574107963,0.48269494574107963,0.2486298610515777,0.2486298610515777,0.6147016844898887,0.6147016844898887,1.0366363187557739,1.0366363187557739,1.00472883945527,1.00472883945527,-0.040711270525417516,-0.028731432810043492,-0.03801448451114622,0.000548001601040394,0.24377399185515658,-0.029749360549162503,-0.03418897511991393,-0.019109938587373258,0.0048751821959323515,0.21731592587565884,9.866925242330552,9.866925242330552,6.283067709372091,6.283067709372091,12.926351713580345,12.926351713580345,27.687430381572895,27.687430381572895,26.319185548773063,26.319185548773063,5.034311717322552,5.017088797499824,5.0299162545246645,5.000006216479363,6.233316143752575,5.018321176786898,5.024197794900601,5.00755973448446,5.000491997618937,5.979624669133685,210.11073790673524,210.11073790673524,0.0,233.45637545192804,0.0,210.11073790673524,233.45637545192804,0,0
+2017/05/25 18:00:00,195.64890335689117,0,966.5667474081584,0,0,0,1.0668997765565302,0.0,18.71310606031462,0.0,110.93442390708215,0,39.380909295966944,2.1827197600860414e-05,25.553542489773232,0,0,0.012855924523259827,540.6696613331056,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3666.844231275797,0.0,0.0,74.16410848030668,0.0,217.634800528959,0.0,0.0,159.64835676072587,0.0,218.21226606830308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05146072957444394,0.0016281816126478708,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4455366782338287,0.4455366782338287,0.21046536424406914,0.21046536424406914,0.5824056114297539,0.5824056114297539,1.0322992212217899,1.0322992212217899,0.9985497879452134,0.9985497879452134,0.005407001985201886,0.026626378150683888,0.02474917550144076,0.05252460869027871,0.3476035649515526,0.0022005290467414823,0.13126430239818618,0.03388116787846267,0.1453412455964301,0.3226457682287243,9.141631286233164,9.141631286233164,5.918721290715823,5.918721290715823,12.108046958282145,12.108046958282145,27.499231429642848,27.499231429642848,26.058627514328037,26.058627514328037,5.000605193791429,5.014676376832128,5.012679854012077,5.057116321425781,7.5138504733742195,5.000100238634346,5.356949578424903,5.023764022925619,5.437688978474142,7.164410134612353,195.64890335689117,195.64890335689117,0.0,217.38767039654573,0.0,195.64890335689117,217.38767039654573,0,0
+2017/05/25 19:00:00,190.50709012781667,0,951.6867667850564,0,0,0,0.8426960300621014,0.0,21.495827294399717,0.0,101.68988858149199,0,39.380909295966944,2.645058469417917e-05,27.097742475311204,0,0,0.015581114123036274,561.2773080329481,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3350.8082345894522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5994799567132136,0.0,96.9688868903485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05066850838436914,0.001603116286417627,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.38304075559948697,0.38304075559948697,0.14627125875490488,0.14627125875490488,0.5300121153556403,0.5300121153556403,1.0199189761267529,1.0199189761267529,0.9571104796411858,0.9571104796411858,-0.014657987447199003,0.021090194078428406,0.014003575592824806,0.05419850494931564,0.3646809871642332,-0.023982327017094185,0.16990392854747738,0.020182468394231944,0.19100686312261403,0.3398838064852378,8.055534291445113,8.055534291445113,5.443313555517179,5.443313555517179,10.876766056550792,10.876766056550792,26.9658363452194,26.9658363452194,24.34904585113,24.34904585113,5.004447681893609,5.00920768947789,5.004059406488878,5.060815273656729,7.768211985290108,5.011906241718563,5.598330743352506,5.008432130971286,5.7564414065584515,7.402938858280919,190.50709012781667,190.50709012781667,0.0,211.67454458646296,0.0,190.50709012781667,211.67454458646296,0,0
+2017/05/25 20:00:00,194.35831524289716,0,873.9565916329678,0,0,0,0.7168334054025403,0.0,24.999863057464953,0.0,106.16168237671882,0,39.380909295966944,2.779894343264652e-05,23.09899930840052,0,0,0.01637757200556994,519.036688935521,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2914.6681426260757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046530096284013014,0.001472179812273554,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2919479481553579,0.2919479481553579,0.053927638092549864,0.053927638092549864,0.44615510126443614,0.44615510126443614,1.0036991076117008,1.0036991076117008,0.8749966216496674,0.8749966216496674,-0.06618932305000318,0.027668012095768833,-0.021984614463778054,0.05885819573556986,0.33292798122593226,-0.08487747123063745,0.13568853092324507,-0.023780956514598765,0.15504307801331252,0.30676698397366337,6.770807066447674,6.770807066447674,5.060208842961444,5.060208842961444,9.153215912431662,9.153215912431662,26.275663503131128,26.275663503131128,21.162077943076838,21.162077943076838,5.090707244626785,5.01584716862925,5.010005250611783,5.071723616809578,7.305171076529874,5.149178304742179,5.381436671067419,5.011707131701286,5.498136039171371,6.955836340690695,194.35831524289716,194.35831524289716,0.0,215.95368360321908,0.0,194.35831524289716,215.95368360321908,0,0
+2017/05/25 21:00:00,194.656526321736,0,860.1039380869914,0,0,0,0.583714295005464,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,1.6340095745279614e-05,25.60883343846953,0,0,0.009626945708685348,540.6811385283855,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2348.8326393922234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04579257074847239,0.0014488450184267552,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2170730497577908,0.2170730497577908,-0.018032198216266497,-0.018032198216266497,0.3739895673587004,0.3739895673587004,0.9876469033412946,0.9876469033412946,0.7924664278304372,0.7924664278304372,-0.013215611420923104,0.009504659702465165,-0.11971576217156592,0.04492759382797576,0.22807630189987776,0.007866257476137336,-0.0037485243260156928,-0.03833005649442625,0.014710049381824691,0.19568806820845835,5.977431825823501,5.977431825823501,5.006731076464149,5.006731076464149,7.9120903554601085,7.9120903554601085,25.602415917277753,25.602415917277753,18.238113008010245,18.238113008010245,5.003615420066751,5.001870060869351,5.2968662147402625,5.041787509928255,6.0792572378502,5.001280909238162,5.0002908719060315,5.030415040291558,5.004479332677235,5.794035285586716,194.656526321736,194.656526321736,0.0,216.28502924637334,0.0,194.656526321736,216.28502924637334,0,0
+2017/05/25 22:00:00,136.7812105443613,0,676.6719822062937,0,0,0,0.1998708733539031,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,1.924185713111586e-05,20.828362823828353,0,0,0.011337860039574729,516.9540580398055,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,780.152246672869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.036026517548111446,0.0011398539026679692,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.031380792672963155,0.031380792672963155,-0.1907408842260799,-0.1907408842260799,0.18180544147857505,0.18180544147857505,0.929921075700181,0.929921075700181,0.5487409458532575,0.5487409458532575,-0.002133450562625893,-0.0577219092273233,-0.07755784567137658,-0.019142356029694114,0.10083617437378586,0.02109798766731872,-0.0753738867767208,-0.09949711948713112,-0.05306188894484892,0.059551321152913485,5.020385804639005,5.020385804639005,5.754332876363463,5.754332876363463,5.685215090394962,5.685215090394962,23.263805260190978,23.263805260190978,11.303238956837134,11.303238956837134,5.000094220649046,5.06898061984252,5.124551585483658,5.007585404808154,5.210576914714466,5.009214496019354,5.117634073448571,5.205018891305542,5.0582909446807065,5.07342309513318,136.7812105443613,136.7812105443613,0.0,151.9791228270681,0.0,136.7812105443613,151.9791228270681,0,0
+2017/05/25 23:00:00,87.32113424359811,0,514.8062786799238,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,9.10829305637633e-06,11.81014407646677,0,0,0.004634799080594552,461.566115112027,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027408667597361804,0.0008671911373631977,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1529418106311254,-0.1529418106311254,-0.3625134135404784,-0.3625134135404784,-0.010412078638860142,-0.010412078638860142,0.8463057030060686,0.8463057030060686,0.29196614500349116,0.29196614500349116,-0.05461203790279189,-0.17190812342586892,-0.06773782328738558,-0.1444744268610894,-0.031243677986320183,-0.0355654606087121,-0.16235516751490178,-0.10788393202667039,-0.1398868542459578,-0.057492359235356866,5.484711564349794,5.484711564349794,7.735238882418855,7.735238882418855,5.002244180734436,5.002244180734436,20.113323656669394,20.113323656669394,6.771028579666435,6.771028579666435,5.06174697589293,5.612548077443606,5.095001966379826,5.432479011339495,5.020208039291305,5.026185590563344,5.546285115121364,5.2410570859647265,5.40542641186353,5.068432981935601,87.32113424359811,87.32113424359811,0.0,97.02348249288679,0.0,87.32113424359811,97.02348249288679,0,0
+2017/05/26 00:00:00,39.38022387571067,0,510.7532477377606,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5794848986666206e-09,9.582902876708001,0,0,0.0,457.51771896894445,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027192881227893994,0.0008603638070487436,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.09402997498645681,0.09402997498645681,-0.10299403121748327,-0.10299403121748327,0.20870668107368004,0.20870668107368004,0.8486362896631828,0.8486362896631828,0.5761186616357099,0.5761186616357099,0.06719463213074162,-0.028691010637133037,0.00413141158820362,0.005709254422492539,0.25995335137164644,0.025612875708129427,-0.0818647624540092,-0.04774519305538883,-0.060119260973929334,0.19634709934486216,5.183098628333553,5.183098628333553,5.219690171245375,5.219690171245375,5.90340309798809,5.90340309798809,20.197240825732607,20.197240825732607,11.95401419228618,11.95401419228618,5.093484123386901,5.017040745186009,5.000353328032645,5.000674745917365,6.402935326003487,5.013580329731511,5.138773037488775,5.047193758129325,5.074830470120432,5.799401395788593,39.38022387571067,39.38022387571067,0.0,43.75580430634519,0.0,39.38022387571067,43.75580430634519,0,0
+2017/05/26 01:00:00,23.73186103063901,0,40.53408486106435,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5347656069612209,0,0,0.0,5.043732348520216,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0021580647018699496,6.827966287197803e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.16141715861116201,0.16141715861116201,-0.025604666015707815,-0.025604666015707815,0.2565862881111673,0.2565862881111673,0.8001432754149036,0.8001432754149036,0.7091881883784505,0.7091881883784505,0.044747813554637896,-0.03543080066483945,-0.02061236905107068,0.004430511630512386,0.3892755246988379,-0.00018882064379410567,-0.09538401570109645,-0.07262590582891913,-0.06983149385230403,0.31000340718675273,5.53998387277791,5.53998387277791,5.013571625067172,5.013571625067172,6.3667290537402295,6.3667290537402295,18.498028812748032,18.498028812748032,15.580120487709763,15.580120487709763,5.041453718989459,5.025987664100825,5.008795184266518,5.000406339442534,8.156377855256295,5.000000738039802,5.18841201998346,5.109211042938881,5.100966749475802,6.997481717906922,23.73186103063901,23.73186103063901,0.0,26.368734478487788,0.0,23.73186103063901,26.368734478487788,0,0
+2017/05/26 02:00:00,28.344229320187722,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248662337148252,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.22401354764542503,0.22401354764542503,0.042619915415097645,0.042619915415097645,0.31175795891285224,0.31175795891285224,0.8142480601517399,0.8142480601517399,0.7749367424088947,0.7749367424088947,0.0686706505815449,-0.003039749249727059,0.004482285104938736,0.03817763984569293,0.4219139821071582,0.00849247405424815,-0.08308616594993828,-0.06477630862970472,-0.05640797376465233,0.34609326051947675,6.0410690455323675,6.0410690455323675,5.037604637534628,5.037604637534628,7.020244110239233,7.020244110239233,18.98207160759307,18.98207160759307,17.653985670005753,17.653985670005753,5.097637109521742,5.0001912742623205,5.000415891631903,5.030173619093802,8.71141932444435,5.001492968690641,5.142946135618018,5.086875015392081,5.065875481429359,7.491952268767591,28.344229320187722,28.344229320187722,0.0,31.493588133541913,0.0,28.344229320187722,31.493588133541913,0,0
+2017/05/26 03:00:00,23.72203018744642,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.524934763768629,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.24425161887370422,0.24425161887370422,0.06829501656545593,0.06829501656545593,0.32664298088233273,0.32664298088233273,0.8016044674022735,0.8016044674022735,0.8001968769363809,0.8001968769363809,0.06900507223879546,0.0020097450777083136,0.005742283535028237,0.044000584744581864,0.4543309989479035,-0.0015336513684643513,-0.09102352001698173,-0.07476448213272482,-0.06436351824808273,0.37543309889808063,6.238165814398656,6.238165814398656,5.09657164323211,5.09657164323211,7.218598191238854,7.218598191238854,18.5477832008919,18.5477832008919,18.499852377914152,18.499852377914152,5.098590600808933,5.000083610892958,5.00068257557615,5.040080715384562,9.307917378037814,5.00004868937215,5.171573004639598,5.115739126343442,5.085771107858136,7.93473325328587,23.72203018744642,23.72203018744642,0.0,26.35781131938491,0.0,23.72203018744642,26.35781131938491,0,0
+2017/05/26 04:00:00,41.317877988356045,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,1.284672294345688,0.0,0.5250721443762358,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3227595937007007,0.3227595937007007,0.1520548752329007,0.1520548752329007,0.40130454909201557,0.40130454909201557,0.8547518977909592,0.8547518977909592,0.8425373031960102,0.8425373031960102,0.07379144150921568,0.007866978396892313,0.010648257927249589,0.04948436420535945,0.36451422629112223,-0.003328218196835837,-0.09194313121020493,-0.07589432040247476,-0.06526999522641608,0.33161917196289525,7.165943834539831,7.165943834539831,5.479100354185803,5.479100354185803,8.355634766387226,8.355634766387226,20.418519008236686,20.418519008236686,19.9781140452711,19.9781140452711,5.112745372934924,5.001281144033143,5.002347146364144,5.050694930788424,7.765668113764519,5.000229300305406,5.175058633737677,5.11926455517181,5.088204534408547,7.287004679135322,41.317877988356045,41.317877988356045,0.0,45.908753320395604,0.0,41.317877988356045,45.908753320395604,0,0
+2017/05/26 05:00:00,74.91086820622927,0,212.9421150752648,0,0,0,0.1784048069399524,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,1.4213866526891092,0.0,0.5250337166443276,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,719.1084041425255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.60018647237605,0.60018647237605,0.43012232031280795,0.43012232031280795,0.6711721482818653,0.6711721482818653,0.9868647249195622,0.9868647249195622,0.9153087933989154,0.9153087933989154,0.161726405214841,0.09584580093532395,0.09989615267117685,0.13658299004812846,0.535992302321173,0.07681431839938582,-0.01177772353974024,0.005684037703354882,0.014659782817872178,0.4961853030703201,12.552970525169684,12.552970525169684,8.85819162594612,8.85819162594612,14.465914806939693,14.465914806939693,25.569861708657854,25.569861708657854,22.69273329621062,22.69273329621062,5.542057239654582,5.190241511163521,5.206667375394389,5.386486245150081,11.01128909980163,5.122174318371108,5.002871483027235,5.0006687986164025,5.0044487715116475,10.144974531781102,74.91086820622927,74.91086820622927,0.0,83.2342980069214,0.0,74.91086820622927,83.2342980069214,0,0
+2017/05/26 06:00:00,86.3282861912486,0,674.3089617185179,0,0,0,0.28367422788597435,0.0,9.848037412074062,0.0,73.80580873715317,0,1.8657030175311171,2.5212014320845633e-09,0.5250627940830633,0,0,0.0,443.62167038698107,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1161.2693613774786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.035900708587037235,0.0011358733948356613,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.759107399393232,0.759107399393232,0.5934995277758767,0.5934995277758767,0.8324050028835952,0.8324050028835952,1.0430624503913923,1.0430624503913923,0.9397168010417402,0.9397168010417402,0.21950930557739987,0.15699276263693707,0.15985589776998324,0.202659824698053,0.6841657011929583,0.14870961568939883,0.06466082682704959,0.0809587102030197,0.09599034063722299,0.6243176432256979,17.137762753580304,17.137762753580304,12.384035956596534,12.384035956596534,19.6175085204831,19.6175085204831,27.96754486287881,27.96754486287881,23.65141731973307,23.65141731973307,5.999539862248554,5.510756606177509,5.5295771427676925,5.851722431806664,14.839713933022736,5.458231340785147,5.086565475862201,5.135717355153844,5.190815964136917,13.178742459747951,86.3282861912486,86.3282861912486,0.0,95.92031799027622,0.0,86.3282861912486,95.92031799027622,0,0
+2017/05/26 07:00:00,143.9809432488465,0,808.1576200624966,0,0,0,0.23981964423289248,0.0,7.929104171692784,0.0,69.33401494192633,0,39.380909295966944,3.1220894361068036e-05,27.09706397413321,0,0,0.017826387344973958,541.9621498310704,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,955.7663836765875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04302691029986421,0.0013613414496571523,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3260223363099223,0.3260223363099223,0.15036128647385968,0.15036128647385968,0.4115141775071022,0.4115141775071022,1.0424084427097704,1.0424084427097704,0.4675716673323886,0.4675716673323886,0.0333745353252171,-0.07725093751827328,-0.034557177178190235,-0.0032505883893577097,0.17788686745361193,-0.016933549265130843,-0.13611283222567427,-0.065747729550869,-0.030595289830868722,0.14001050013267288,7.210140015682981,7.210140015682981,5.4684768511730795,5.4684768511730795,8.529611236400541,8.529611236400541,27.93896784680986,27.93896784680986,9.564555289063094,9.564555289063094,5.023058603959484,5.123567534933514,5.024721831358718,5.00021872831195,5.6559556656707315,5.005935843207496,5.383827869452517,5.089500710951768,5.01937796795049,5.406144057695144,143.9809432488465,143.9809432488465,0.0,159.97882583205165,0.0,143.9809432488465,159.97882583205165,0,0
+2017/05/26 08:00:00,160.25554075288318,0,859.9841788007136,0,0,0,0.8284270846612094,0.0,11.234505180524165,0.0,83.2008179303116,0,39.380909295966944,4.729638838388119e-05,25.610833965030896,0,0,0.026704137553570907,540.5443020502629,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3426.728804828994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045786194675364454,0.0014486432839181096,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.06183204601675181,0.06183204601675181,-0.1816513414127149,-0.1816513414127149,0.16601848594654992,0.16601848594654992,1.132390683642783,1.132390683642783,0.4208591356222904,0.4208591356222904,0.04659455197149213,-0.09847559330507502,-0.061317622525590504,0.06228389517164071,0.07174514690165147,0.01642365782040046,-0.09882092328303507,-0.0491736920110148,0.041294390385289204,0.02964914514514322,5.079155755740771,5.079155755740771,5.684052338521653,5.684052338521653,5.5712454533432805,5.5712454533432805,32.01222322116787,32.01222322116787,8.692767332904495,8.692767332904495,5.044946245828996,5.200828884956451,5.077843911325999,5.080317075043126,5.106577621234251,5.005583748824208,5.202240482755428,5.050060315504936,5.035301746544974,5.0181979442950535,160.25554075288318,160.25554075288318,0.0,178.06171194764798,0.0,160.25554075288318,178.06171194764798,0,0
+2017/05/26 09:00:00,179.15775869344546,0,889.4541518731842,0,0,0,1.4379983185057674,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,9.971284331145496e-06,20.865317020648334,0,0,0.003617626906860237,516.801832864564,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6210.306988970044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047355197870348316,0.0014982854513219534,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2778941577511693,0.2778941577511693,-0.07166683165685211,-0.07166683165685211,0.2740160486315201,0.2740160486315201,1.1869384758137749,1.1869384758137749,0.605707885182876,0.605707885182876,0.00928290665123848,-0.05337167596089636,-0.10214467043254255,0.1444614631240206,0.17608298137843612,0.01307983034858516,-0.042602716212531,-0.10282476762606513,0.18231850359626275,0.1460872261125739,6.603902203962178,6.603902203962178,5.106345019849513,5.106345019849513,6.559312022744905,6.559312022744905,34.611615982231314,34.611615982231314,12.693922644159073,12.693922644159073,5.001783817758991,5.058973649379084,5.216080004036257,5.432401330887501,5.6427017478387995,5.003541509371743,5.037574290600034,5.2189683348622395,5.689093512662225,5.442197696626053,179.15775869344546,179.15775869344546,0.0,199.0641763260505,0.0,179.15775869344546,199.0641763260505,0,0
+2017/05/26 10:00:00,211.77845519613726,0,954.7655741566018,0,0,0,3.2129240271909647,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.803246656410725e-09,18.595812283587108,0,0,0.0,493.3909914935281,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6917.4787260452285,4929.405067370726,0.0,0.0,0.0,0.0,225.30605907930115,0.0,0.0,0.0,16.700507090682237,58.4975130750245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050832426369323364,0.0016083025372013175,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6578069801677199,0.6578069801677199,0.2272897130232987,0.2272897130232987,0.5564110152231289,0.5564110152231289,1.1669563451062082,1.1669563451062082,0.868174515680659,0.868174515680659,0.20810231542062269,-0.009623289523484794,0.030662191408277313,0.3221253692718759,0.30638904153896473,0.2410178190709022,0.0029992338594932613,0.04659550616785503,0.3704400134112836,0.29927637058955103,14.089050520273318,14.089050520273318,6.071809602305748,6.071809602305748,11.48228094259423,11.48228094259423,33.64870372415734,33.64870372415734,20.90962065767947,20.90962065767947,5.898168941809885,5.001917033695477,5.019462810343057,7.157405203627235,6.9510019866711446,6.205518046925917,5.000186209430467,5.044948086909301,7.85679082623372,6.861148853926892,211.77845519613726,211.77845519613726,0.0,235.30939466237473,0.0,211.77845519613726,235.30939466237473,0,0
+2017/05/26 11:00:00,240.94030861276124,0,1031.4256547080652,0,0,0,16.283302725174906,0.0,16.693521233099577,0.0,147.76209134187457,0,39.380909295966944,2.85685800082006e-09,20.820484013788278,0,0,0.0,516.8155432761753,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137.75292035988,0.0,52.08657079100747,6838.537996745203,15795.627120889985,1586.7963068378626,0.0,158.10212088233484,711.6951810342238,13003.360847291313,2075.385819752271,0.0,408.64313211931517,956.4872734775909,13155.654073646458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05491386584051601,0.0017374364370718563,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8895094104200435,0.8895094104200435,0.4208188027221962,0.4208188027221962,0.750212886125804,0.750212886125804,1.1390205500938366,1.1390205500938366,0.966780336382499,0.966780336382499,0.3522147016800076,0.12479860710142068,0.196224175548683,0.3845183571557716,0.36290109706979734,0.4040155658288308,0.1484497814025684,0.22293579724103751,0.4365772799588549,0.37132722868360907,21.705496394175896,21.705496394175896,8.692055106223393,8.692055106223393,16.852395345061495,16.852395345061495,32.32316287135684,32.32316287135684,24.74202755427396,24.74202755427396,7.581308420340164,5.322627514562583,5.798399120722337,8.07928347602909,7.74112162200214,8.401396518691271,5.456629898921605,6.031054779144142,8.97564337138148,7.870562647695834,240.94030861276124,240.94030861276124,0.0,267.71145401417914,0.0,240.94030861276124,267.71145401417914,0,0
+2017/05/26 12:00:00,234.98950599341768,0,978.3820467504207,0,0,0,30.79327354985277,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.8032466564107246e-09,18.579758358212928,0,0,0.0,499.26228783107496,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3056.6839657171604,0.0,900.416422794871,6106.342155762273,22672.8210023174,4275.617864188531,938.2203820728539,2123.506295857469,1675.8160291887425,27157.489999806538,5207.088459085218,1071.4215866876903,2479.161070114157,2035.7796121858087,27838.753075469373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052089784863096976,0.0016480844834931457,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9755289981449877,0.9755289981449877,0.5603639239672084,0.5603639239672084,0.8437114087591697,0.8437114087591697,1.0916423369284676,1.0916423369284676,0.9868395074789733,0.9868395074789733,0.4346660687527365,0.23417172816099288,0.283566233227506,0.4008085264578748,0.4025101904908351,0.49449270180435334,0.2739733227694478,0.32708543268973556,0.44671033086444256,0.419497873383934,25.10071078465225,25.10071078465225,11.575549458894727,11.575549458894727,20.020177287246057,20.020177287246057,30.133034943213275,30.133034943213275,25.56881255092337,25.56881255092337,8.940681309961889,6.137850176273659,6.6702614589021465,8.347295979447068,8.375947063910075,10.109657260167467,6.558824295270952,7.224637921288149,9.1636307760146,8.66876776108704,234.98950599341768,234.98950599341768,0.0,261.09945110379743,0.0,234.98950599341768,261.09945110379743,0,0
+2017/05/26 13:00:00,230.78520507471666,0,928.1271772637122,0,0,0,29.228309873715887,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.7487152494435007e-09,16.33467093162371,0,0,0.0,484.49777085691056,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2870.4904831749013,0.0,996.3064072967809,5641.2499710868615,22084.2032452185,4062.617359224257,771.085867428336,1806.6563433050887,1365.0492436334848,25404.72325295957,5158.551288182707,1102.4182546787304,2508.6607204324364,1753.352786617834,26055.408638062694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049414178387507744,0.001563430159657065,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9847393047281019,0.9847393047281019,0.6808510029172068,0.6808510029172068,0.8815873379874389,0.8815873379874389,1.0814448163556993,1.0814448163556993,0.9982678887127784,0.9982678887127784,0.458505981738121,0.3212577106133553,0.3247146288657785,0.4174240513520251,0.41843412640029437,0.515150610418455,0.36766593124574487,0.36797996061581223,0.4602645882960462,0.4333381082220924,25.48152040712688,25.48152040712688,14.743662530621606,14.743662530621606,21.40779098925192,21.40779098925192,29.67157447279412,29.67157447279412,26.046774920081162,26.046774920081162,9.38802431775018,7.145751441403675,7.192371982332602,8.632358207034258,8.650068799747842,10.549164360974544,7.813946566156929,7.818780121899522,9.421991956270745,8.916481108022296,230.78520507471666,230.78520507471666,0.0,256.42800563857406,0.0,230.78520507471666,256.42800563857406,0,0
+2017/05/26 14:00:00,217.90072668716078,0,895.6205934459327,0,0,0,32.33557451117062,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.6932545291412175e-09,14.096300825557176,0,0,0.0,487.48153955167527,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3672.452701770038,1219.9370110173631,2181.9166677574285,5429.625500667638,25953.764702742836,4461.831419559312,2041.12330361775,2241.8076938861277,1969.545094147124,24571.17360502688,5454.008713270997,2551.5124399172114,2906.6629303115587,2368.9204760142666,25299.88686690182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04768350378720583,0.0015086728216832234,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.960260079916806,0.960260079916806,0.8476058002043955,0.8476058002043955,0.8844833767686444,0.8844833767686444,1.070058265314886,1.070058265314886,0.9823615701743844,0.9823615701743844,0.4406314111366097,0.3895009200791242,0.32421713972513677,0.4071854304323624,0.39788828937412735,0.49213759857887845,0.4485329065142149,0.36866774256128787,0.4477613806624754,0.41223844967662904,24.476643671602247,24.476643671602247,20.160108221388867,20.160108221388867,21.51632394287269,21.51632394287269,29.160592621547437,29.160592621547437,25.382897532443792,25.382897532443792,9.050325646903161,8.160054589158918,7.1856315570421,8.45530254766652,8.298416395112227,10.060722301023318,9.197911394907322,7.829381180227969,9.183382415692478,8.542122708788085,217.90072668716078,217.90072668716078,0.0,242.11191854128975,0.0,217.90072668716078,242.11191854128975,0,0
+2017/05/26 15:00:00,204.8485848388913,0,873.2735578312048,0,0,0,26.01574972618388,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.693254529141218e-09,14.06462675896259,0,0,0.0,465.1345039369474,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2721.934998872487,2011.233346629582,2003.9054718865648,5064.8422902343345,24332.89694805003,2850.977058194571,2089.133089872669,1261.1130251390164,1300.4326780824783,17810.801615718432,3656.714473952772,2740.2772537299625,1882.2034909081483,1651.1492924617642,18323.30456109079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046493731058479454,0.0014710292418863254,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9125864374691176,0.9125864374691176,0.9585413454126389,0.9585413454126389,0.872229350861783,0.872229350861783,1.0545718199837588,1.0545718199837588,0.9712390068903715,0.9712390068903715,0.3942086449076583,0.4272318447155903,0.3018335619245158,0.379567631953272,0.3705482381813137,0.43568482468089326,0.49316670361755244,0.3427403892263568,0.4148268251107123,0.3818330945507483,22.587287583949845,22.587287583949845,24.406965458362137,24.406965458362137,21.05944179484949,21.05944179484949,28.472987881413474,28.472987881413474,24.92445569998634,24.92445569998634,8.237345033346074,8.80617759793644,6.893207085474657,8.000078554082464,7.858468950690906,8.959298032835235,10.082075851748186,7.443684878192414,8.587019403230542,8.036193039003294,204.8485848388913,204.8485848388913,0.0,227.60953870987922,0.0,204.8485848388913,227.60953870987922,0,0
+2017/05/26 16:00:00,230.635466256968,0,933.0930736583499,0,0,0,28.93453746118471,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.693254529141218e-09,14.048242267056299,0,0,0.0,471.7184909952763,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2795.8783905781906,3573.4514079100654,2667.505076121237,5226.361005109468,27622.15249326536,2748.9551806800546,3001.1185925025325,1638.0557903173178,1367.4064730190285,19325.713932563223,3390.7970555956686,3735.1571470316635,2213.0176114497867,1660.5872253604946,19792.408386393945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049678566389830835,0.0015717952117569273,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8998333961763185,0.8998333961763185,1.0470895332782595,1.0470895332782595,0.884616573707516,0.884616573707516,1.05312314900391,1.05312314900391,0.9870878500555323,0.9870878500555323,0.36686867522641,0.47243929837166754,0.295359394048855,0.359520229887693,0.3597893075799455,0.40270188393962664,0.5444317970004615,0.3356037921338089,0.39110810750043856,0.37089355425292714,22.097310071202173,22.097310071202173,28.14385190448904,28.14385190448904,21.52132394375974,21.52132394375974,28.409105081931756,28.409105081931756,25.579145769478473,25.579145769478473,7.801694041984945,9.660800940077749,6.812579656199361,7.690035582023526,7.694083607640721,8.379182391012307,11.203769518038527,7.34253786871669,8.186334563749611,7.86382673225053,230.635466256968,230.635466256968,0.0,256.2616291744089,0.0,230.635466256968,256.2616291744089,0,0
+2017/05/26 17:00:00,240.23445174715792,0,969.6932407326819,0,0,0,31.542347013058812,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,2.803246656410725e-09,18.617609726762378,0,0,0.0,508.31865806960815,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2381.1341302080004,4026.5887380610334,3204.7663683343467,5200.3213186849425,27072.109953261202,2906.165145348482,3687.2753823454595,2554.229842909849,1437.8134729999194,23007.781229064345,3446.431056106169,4459.079683199763,3210.868765335346,1687.3512121239858,23429.603218465065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05162718639485602,0.0016334481904157338,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8870111741528046,0.8870111741528046,1.0830489076495637,1.0830489076495637,0.9217034315170785,0.9217034315170785,1.046568752179677,1.046568752179677,0.9885332996179641,0.9885332996179641,0.35507978306473154,0.5084486573754559,0.32344151800912985,0.3477739745694506,0.36634687247832864,0.3870264149988466,0.5795248917075271,0.36700395489056714,0.37567486433155983,0.3773120346146431,21.61133732926271,21.61133732926271,29.743924117147913,29.743924117147913,22.941592035723048,22.941592035723048,28.121018783004928,28.121018783004928,25.63933600407981,25.63933600407981,7.62367830224494,10.404555317019984,7.175143677691679,7.516327364902466,7.793689451678745,8.119808430581415,12.037255301073685,7.803771161408619,7.9385342197708155,7.9643389592392,240.23445174715792,240.23445174715792,0.0,266.92716860795326,0.0,240.23445174715792,266.92716860795326,0,0
+2017/05/26 18:00:00,228.10936760827255,0,966.4407039885829,0,0,0,35.20373345976154,0.0,17.03716081602578,0.0,110.93442390708215,0,39.380909295966944,2.9613575050737433e-09,25.55314012647479,0,0,0.0,540.5564738380532,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795.399010225902,3695.971167316514,3609.4130892195303,4987.060219224921,25031.691837563285,3390.5003486927494,4255.582024777308,3889.535123291515,1689.8593087535824,28696.890738390364,3843.3386521487305,5000.27914350224,4643.746623877316,1886.9171225968,28981.98090778677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051454018929424535,0.0016279692925171623,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8660947883145593,0.8660947883145593,1.0719317764469198,1.0719317764469198,0.9587519915724069,0.9587519915724069,1.0323068903234116,1.0323068903234116,0.978917206117553,0.978917206117553,0.352144320204219,0.5273016858905759,0.3651839392080556,0.34322745321887965,0.38554710692522015,0.37936581069554376,0.5932050576419097,0.4117357892072928,0.36637101460181165,0.39481117819461015,20.83304049485909,20.83304049485909,29.24435491723476,29.24435491723476,24.415498920544763,24.415498920544763,27.4995636035446,27.4995636035446,25.24041935196516,25.24041935196516,7.580271988228219,10.81630553232634,7.775891496514461,7.450666910653766,8.095873414379056,7.996871882397372,12.376641268466003,8.533437091640735,7.794059542150251,8.247305686765827,228.10936760827255,228.10936760827255,0.0,253.45485289808062,0.0,228.10936760827255,253.45485289808062,0,0
+2017/05/26 19:00:00,212.1295712849923,0,932.3541533965332,0,0,0,26.036462421927123,0.0,17.924568507282753,0.0,101.68988858149199,0,39.380909295966944,3.0122641664724294e-09,27.0977424753112,0,0,0.0,541.9602757585478,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.7051843160688,339.0522648615462,2701.3087814163696,4418.323005697109,18183.489624554946,1887.2495552080823,2963.240804932351,2983.362928336338,631.8198167006543,23092.072261660418,2228.857445568523,3558.2869400633767,3733.3015439212672,732.6734466797376,23017.87446787635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04963922572776854,0.0015705505006319799,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8362148487240838,0.8362148487240838,0.8712648651752857,0.8712648651752857,0.9389735594667242,0.9389735594667242,1.0097084799054767,1.0097084799054767,0.9589289644803154,0.9589289644803154,0.3339464523301949,0.48794405736397733,0.3669822185982804,0.3236659396414824,0.38586650907689185,0.3528459893480259,0.5376190776796176,0.40784402803776687,0.3387121552463229,0.3901147424386725,19.75259637274283,19.75259637274283,21.023743804948765,21.023743804948765,23.621873791336498,23.621873791336498,26.5302165992712,26.5302165992712,24.422669593292625,24.422669593292625,7.319357853453411,9.974180711185966,7.803437364089149,7.178175662298685,8.101033388211732,7.590614135563911,11.04815105852829,8.466556491252149,7.386326789366294,8.17007849566285,212.1295712849923,212.1295712849923,0.0,235.69952364999142,0.0,212.1295712849923,235.69952364999142,0,0
+2017/05/26 20:00:00,207.60829261294012,0,893.9664339415573,0,0,0,14.501219569808576,0.0,24.398945138444315,0.0,106.16168237671882,0,39.380909295966944,2.909558533448676e-09,23.165536229091853,0,0,0.0,539.0629088161161,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,62.17437848437268,3738.277570224199,9594.81733666606,128.11500233293876,879.0455520787838,1069.7175994397421,0.0,15303.14101142085,328.07976327583526,1303.3472130077407,1600.5444352912177,0.0,14927.082889616948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04759543510994591,0.0015058863901236516,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7298696048765472,0.7298696048765472,0.7278215104200815,0.7278215104200815,0.8403389791978615,0.8403389791978615,0.9807498209508738,0.9807498209508738,0.9364450914067859,0.9364450914067859,0.3197663024808208,0.398926498910078,0.32071412823136713,0.2602470947044908,0.383019956021673,0.33245669722231136,0.43544396536630625,0.3468858529211595,0.26914240236344267,0.3823072002814875,16.212458050591778,16.212458050591778,16.149015977634164,16.149015977634164,19.899512025380403,19.899512025380403,25.31616964720176,25.31616964720176,23.521532597233687,23.521532597233687,7.1257944874151065,8.315752385835964,7.138466694075362,6.406116593098957,8.055200649540353,7.29862123368892,8.954892551495448,7.503432131416048,6.504174106147985,8.043778638062633,207.60829261294012,207.60829261294012,0.0,230.67588068104456,0.0,207.60829261294012,230.67588068104456,0,0
+2017/05/26 21:00:00,194.68229732568832,0,859.9627656854927,0,0,0,0.665753707837388,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9613575050737425e-09,25.5525813667243,0,0,0.0,540.5495930725957,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2686.407418063448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04578505462524926,0.0014486072135271454,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5729716243487855,0.5729716243487855,0.5338699688104335,0.5338699688104335,0.6957011514145,0.6957011514145,0.9665156410633717,0.9665156410633717,0.9087670428824782,0.9087670428824782,0.1390901144794285,0.2578617059289879,0.17570756223391534,0.17330250289595084,0.3528107154285522,0.15154155766924135,0.2933573212474645,0.21803541070758364,0.17416261367844674,0.3379617584734721,11.877554603116963,11.877554603116963,10.96337035546037,10.96337035546037,15.17768431272276,15.17768431272276,24.731221770913223,24.731221770913223,22.439854197523943,22.439854197523943,5.4008173588016035,6.3803875916331805,5.639960455971689,5.622538354726501,7.590093720876837,5.475867811697256,6.788005005621002,5.986135148969879,5.628741220961615,7.375718039294952,194.68229732568832,194.68229732568832,0.0,216.31366369520924,0.0,194.68229732568832,216.31366369520924,0,0
+2017/05/26 22:00:00,136.83320693889536,0,664.3359691070087,0,0,0,0.28900012416263254,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.720471206001039e-06,20.7912464889396,0,0,0.0016023108688654572,504.62778048969136,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1132.2311869931527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.035369739073338374,0.0011190738895385114,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3108902781889506,0.3108902781889506,0.2526076889789512,0.2526076889789512,0.4407682911207817,0.4407682911207817,0.9158303568764251,0.9158303568764251,0.6219549574096537,0.6219549574096537,0.10446604981158486,0.16918547928362557,0.01412462502209757,0.05607403806375892,0.18434481268751018,0.08475412719509366,0.1769227310077693,0.022278576366702267,0.018118323554523853,0.15923298424840363,7.008971107468582,7.008971107468582,6.3245615926147565,6.3245615926147565,9.052859475871273,9.052859475871273,22.71296924531481,22.71296924531481,13.116357046742948,13.116357046742948,5.226017851525839,5.593275011882028,5.004129890928326,5.065097713830141,5.704518546118507,5.148744908986103,5.648854850354894,5.010274610988162,5.006795528863918,5.52545340624647,136.83320693889536,136.83320693889536,0.0,152.0368965987726,0.0,136.83320693889536,152.0368965987726,0,0
+2017/05/26 23:00:00,87.3726135612413,0,512.1476580330316,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,6.798764944275787e-05,11.861564514753589,0,0,0.03962133469559713,458.8725079295199,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027267120664863222,0.0008627126910852936,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.011807809769875487,0.011807809769875487,-0.05556230090468913,-0.05556230090468913,0.1389596575922814,0.1389596575922814,0.8153105100707502,0.8153105100707502,0.29333391195036795,0.29333391195036795,0.06592731531274058,0.06030926623175149,-0.040610829582400636,-0.043286224988414904,-0.01959319368061167,0.022304457149834513,0.03900715594118815,-0.05942506599397454,-0.0309848004377513,-0.05692676428837245,5.00288617228108,5.00288617228108,5.063914795879569,5.063914795879569,5.4000651965242525,5.4000651965242525,19.01887229319101,19.01887229319101,6.787718667354653,6.787718667354653,5.089990404863798,5.075304293907479,5.03414260913857,5.038789732023915,5.007946919018096,5.010298497198221,5.031499167104158,5.073112046422594,5.019874534443218,5.067092958719641,87.3726135612413,87.3726135612413,0.0,97.08068173471254,0.0,87.3726135612413,97.08068173471254,0,0
+2017/05/27 00:00:00,40.807781753116565,0,503.1314015458291,0,0,0,0.05324917456829508,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.012924795952694322,2.5795081454227938e-09,9.555973715216002,0,0,0.0,449.89587277701287,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,205.5026678206523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02678708849108328,0.0008475248077169234,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.27869502623001474,0.27869502623001474,0.2400225802152684,0.2400225802152684,0.3721772368011727,0.3721772368011727,0.8248540447713396,0.8248540447713396,0.5853508498895291,0.5853508498895291,0.190693659056251,0.27044181181391386,0.11180191006602484,0.12030943910861457,0.288699679485108,0.1240556502722228,0.2217191923334882,0.06730563811149447,0.10469133096614361,0.23546604917397365,6.613189522468204,6.613189522468204,6.195558708432472,6.195558708432472,7.8837884020419295,7.8837884020419295,19.35156666394292,19.35156666394292,12.180796403202663,12.180796403202663,5.753958810971056,6.518777105122666,5.258893632930395,5.2998197533108,6.731489406302302,5.318794987215313,6.01980880219341,5.093793313886806,5.226994192442916,6.150492634939667,40.807781753116565,40.807781753116565,0.0,45.34197972568507,0.0,40.807781753116565,45.34197972568507,0,0
+2017/05/27 01:00:00,23.72220612134555,0,45.185854790483994,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251106976677541,0,0,0.0,9.695502277939859,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.00240572837850925,7.611556896502207e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3489509774785041,0.3489509774785041,0.327841626739373,0.327841626739373,0.41787318124524336,0.41787318124524336,0.8001685452018807,0.8001685452018807,0.7178582176311415,0.7178582176311415,0.19417397263363786,0.3208076994392463,0.12370897104596974,0.14778074253918314,0.4195510168972614,0.12084820695584335,0.26800252879498265,0.06897927370293806,0.09991581890509264,0.35655440250933323,7.533468734864158,7.533468734864158,7.234979641757732,7.234979641757732,8.640227822286988,8.640227822286988,18.498888495274286,18.498888495274286,15.842965809184648,15.842965809184648,5.781775653408914,7.139719783905363,5.317014501135148,5.452519336560442,8.66970321103365,5.302512797685623,6.491422566176098,5.0985168799020215,5.206748791354968,7.64562168112397,23.72220612134555,23.72220612134555,0.0,26.358006801495055,0.0,23.72220612134555,26.358006801495055,0,0
+2017/05/27 02:00:00,28.344383855533582,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250207690606871,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.37987788612487533,0.37987788612487533,0.3640027059841807,0.3640027059841807,0.44097700155516006,0.44097700155516006,0.7880030776101714,0.7880030776101714,0.7799638383537331,0.7799638383537331,0.1973663806824196,0.32226270386729594,0.1271924911707581,0.15174897921638805,0.4519725681385667,0.109613854034115,0.2645805207903252,0.06319070676480372,0.08490172734555622,0.38515110344665104,8.005011471194663,8.005011471194663,7.757872463575055,7.757872463575055,9.056724531036181,9.056724531036181,18.088145466135046,18.088145466135046,17.820163274064882,17.820163274064882,5.807736575477364,7.159252707536709,5.335132404294427,5.477172697313506,9.262996863704473,5.248853929713945,6.453469981528812,5.0826732459364905,5.149263608065141,8.08948198850453,28.344383855533582,28.344383855533582,0.0,31.493759839481758,0.0,28.344383855533582,31.493759839481758,0,0
+2017/05/27 03:00:00,23.72220478470787,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251093610300782,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.37635110591685283,0.37635110591685283,0.36298885576683015,0.36298885576683015,0.43146547245841976,0.43146547245841976,0.7541783176431164,0.7541783176431164,0.8192421519858174,0.8192421519858174,0.1717091694002891,0.3015440486453777,0.10321956742660979,0.12925494315777267,0.498643333878583,0.07040039870214582,0.23111341013432282,0.025955765657696122,0.044271384300987864,0.41812016462908186,7.94917913738054,7.94917913738054,7.742454167842936,7.742454167842936,8.882483653792505,8.882483653792505,16.979202167819523,16.979202167819523,19.15546817179188,19.15546817179188,5.61112924864878,6.889563722570557,5.220653834528434,5.346097065269518,10.196483372961652,5.1026189329450204,6.10825693251509,5.013946385462646,5.040575626814444,8.64455912902929,23.72220478470787,23.72220478470787,0.0,26.358005316342076,0.0,23.72220478470787,26.358005316342076,0,0
+2017/05/27 04:00:00,39.09566719133817,0,88.72588128136032,0,0,0,0.0057438245248296925,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,1.5009296992435284,0.0,0.5250952555067454,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,21.958554469901816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.42732129769421096,0.42732129769421096,0.4147039781549538,0.4147039781549538,0.4795395267520964,0.4795395267520964,0.7877694093658103,0.7877694093658103,0.8195439897359529,0.8195439897359529,0.16360578725868663,0.2784674007970096,0.09522327750759846,0.12055256193955673,0.3483659589392357,0.048037611954915564,0.20941077061381605,0.003958723406318293,0.019775998523067672,0.31339711246437363,8.807781925055963,8.807781925055963,8.584882070693808,8.584882070693808,9.803022526680436,9.803022526680436,18.080317557496727,18.080317557496727,19.165981716692116,19.165981716692116,5.554743424805068,6.61054709941439,5.187777287121264,5.301033515157016,7.5249414103354155,5.047773671531829,5.9095202015761,5.000324407928019,5.008095903196889,7.041627156430778,39.09566719133817,39.09566719133817,0.0,43.43963021259797,0.0,39.09566719133817,43.43963021259797,0,0
+2017/05/27 05:00:00,73.5714482972938,0,212.9421150752648,0,0,0,0.0056842686582236285,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,1.1241194135557224,0.0,0.5776374258801087,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,22.617544240747776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6064021583750818,0.6064021583750818,0.5902685636610597,0.5902685636610597,0.6562276587921245,0.6562276587921245,0.9393300845515029,0.9393300845515029,0.8890762734751408,0.8890762734751408,0.13721802457360163,0.26077434052884507,0.07119058253391805,0.0943815130005983,0.48968779713482774,0.03434366559219752,0.193050258870327,-0.008308566233571821,0.004863182731495611,0.4237543375633987,12.71173988478371,12.71173988478371,12.303106368213179,12.303106368213179,14.045028839968623,14.045028839968623,23.636042771158444,23.636042771158444,21.689153088984554,21.689153088984554,5.390091469492447,6.411835821897938,5.1049360036058005,5.184470786180796,10.010073833722146,5.024417271205749,5.772738893001545,5.001429006996133,5.000489578653472,8.744075093713775,73.5714482972938,73.5714482972938,0.0,81.74605366365978,0.0,73.5714482972938,81.74605366365978,0,0
+2017/05/27 06:00:00,90.10043688525028,0,673.9574359937094,0,0,0,0.6658483663317787,0.0,6.592971375129997,0.0,80.56906512710079,0,1.7474919726740203,2.521224316790964e-09,0.5250600414924778,0,0,0.0,443.27014466217247,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2767.0893035875933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03588199309707098,0.0011352812497789015,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7964450729009646,0.7964450729009646,0.7795623464277349,0.7795623464277349,0.8614118843662392,0.8614118843662392,1.1317911595399126,1.1317911595399126,0.9140812385562588,0.9140812385562588,0.19572126472389814,0.3215982037969966,0.1432217213516041,0.4403375994694524,0.6443566571501601,0.09725458640895843,0.25680206213469925,0.06793734924443189,0.4058888724178378,0.555998697602304,18.372506759074852,18.372506759074852,17.806851878317303,17.806851878317303,20.661259948648294,20.661259948648294,31.9841758585884,31.9841758585884,22.645149106968873,22.645149106968873,5.79430515138273,7.150320894966086,5.425004954883661,9.044889524611563,13.717599315674093,5.1958774931114675,6.369034983284038,5.095562574602042,8.43320157330939,11.472591368125293,90.10043688525028,90.10043688525028,0.0,100.11159653916697,0.0,90.10043688525028,100.11159653916697,0,0
+2017/05/27 07:00:00,116.0732189723367,0,694.2949324462936,0,0,0,0.9990742608632964,0.0,5.834152620960616,0.0,69.33401494192633,0,39.38090929596693,2.956353329602963e-05,0.5250382890862204,0,0,0.017435799227885827,428.09985280298486,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4164.482319487526,0.0,0.0,0.0,0.0,0.0,1.123489298160418,0.0,0.0,0.0,0.0,0.8521285104974788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03696477647232577,0.0011695397610096898,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.42813896206315355,0.42813896206315355,0.3880566645580313,0.3880566645580313,0.48947205251453146,0.48947205251453146,1.1507659154231569,1.1507659154231569,0.47047786550431203,0.47047786550431203,0.04656186864234823,0.06035632774755183,-0.005754307008460128,0.2790397137939239,0.20304212095663135,0.025471167841114733,0.03903762900698989,-0.04302383162125346,0.329347179223836,0.16169945109826717,8.82246254067077,8.82246254067077,8.136532960052364,8.136532960052364,10.005625832539252,10.005625832539252,32.87748088323475,32.87748088323475,9.621895498961948,9.621895498961948,5.044883207540352,5.0754218842852055,5.000685436993052,6.617195038009783,5.8549444987695125,5.0134304698077585,5.0315484050827735,5.038320845614578,7.255641820892194,5.541876365196643,116.0732189723367,116.0732189723367,0.0,128.97024330259634,0.0,116.0732189723367,128.97024330259634,0,0
+2017/05/27 08:00:00,140.63322083402613,0,747.506066410289,0,0,0,1.392338358004515,0.0,11.435487997441953,0.0,87.89947186453183,0,39.380909295966944,2.521226858467948e-09,0.525013315559716,0,0,0.0,428.092893797392,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5974.029665208552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03979777665841055,0.0012591739121333835,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2139585561782388,0.2139585561782388,0.06314416467950863,0.06314416467950863,0.27165325325363493,0.27165325325363493,1.1822271218274427,1.1822271218274427,0.4876215164329986,0.4876215164329986,-0.0026440545891448165,-0.059034764378666206,-0.044747570433112706,0.285826591354807,0.18481513644940556,-0.06528326896281056,-0.12518859301213847,-0.0780557988861346,0.30195792006905026,0.14474020615311606,5.949531154474641,5.949531154474641,5.082551485816538,5.082551485816538,6.532455581621804,6.532455581621804,34.3835005036191,34.3835005036191,9.96755591733168,9.96755591733168,5.000144717751638,5.072154656696,5.041453268501812,6.697084283770096,5.708123346837667,5.088240420602816,5.324648432385686,5.126156500398196,6.894773151455624,5.434073138479988,140.63322083402613,140.63322083402613,0.0,156.25913426002904,0.0,140.63322083402613,156.25913426002904,0,0
+2017/05/27 09:00:00,181.88778694015437,0,903.466007816285,0,0,0,1.8048548932992565,0.0,11.323895916778682,0.0,106.27511244621549,0,39.380909295966944,2.9095831807977788e-09,23.10301438498449,0,0,0.0,530.8173064345717,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7297.884083511202,0.0,0.0,0.0,0.0,186.72706413066317,0.0,0.0,0.0,0.0,359.2470354580479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04810119945943411,0.001521888421594625,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4747067108837369,0.4747067108837369,0.20829163279433766,0.20829163279433766,0.42745360269512495,0.42745360269512495,1.2129812588049758,1.2129812588049758,0.7117868264368208,0.7117868264368208,0.1265589869088723,0.04011571489729342,0.03283814410135416,0.465284458770306,0.31709383750624004,0.0928031140466938,-0.012514105947660384,0.00920193721491756,0.49487665088190413,0.2871749564853179,9.705982231855216,9.705982231855216,5.899806895364904,5.899806895364904,8.81015542695944,8.81015542695944,35.884253682409906,35.884253682409906,15.658562220684985,15.658562220684985,5.331799997118708,5.033315112015245,5.0223233347258684,9.519683863200996,7.090269246482805,5.178350003498309,5.003241780054623,5.0017528349298885,10.117657766098944,6.713187512147698,181.88778694015437,181.88778694015437,0.0,202.09754104461595,0.0,181.88778694015437,202.09754104461595,0,0
+2017/05/27 10:00:00,210.06677450552985,0,965.5346888948815,0,0,0,3.2088195710916017,0.0,14.932575465546352,0.0,131.64086955684016,0,39.380909295966944,2.8568824487340238e-09,20.903600613227802,0,0,0.0,504.1601062318077,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7434.677822398713,3683.849800857042,0.0,0.0,0.0,549.1893276020076,0.0,0.0,0.0,0.0,870.7494529246055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05140578201474446,0.0016264431101605879,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7621571681398195,0.7621571681398195,0.37577015738281216,0.37577015738281216,0.6049960477394171,0.6049960477394171,1.1940134970292726,1.1940134970292726,0.8935339010848888,0.8935339010848888,0.2469468252172799,0.08607595789514937,0.06887023129537607,0.5126423911796144,0.34131245389899173,0.2568421495312191,0.05713459120741339,0.06927385414890404,0.5559214689625765,0.33203647499169003,17.23638912124936,17.23638912124936,7.940033074791813,7.940033074791813,12.67567637009273,12.67567637009273,34.95540859359791,34.95540859359791,21.85771639458595,21.85771639458595,6.26571170892305,5.153422302223163,5.0982055892538085,10.494816671157992,7.423273610218743,6.369463604216676,5.067583807501393,5.099360302806176,11.470777294038811,7.292788990545489,210.06677450552985,210.06677450552985,0.0,233.4075272283665,0.0,210.06677450552985,233.4075272283665,0,0
+2017/05/27 11:00:00,235.47234765721527,0,1053.5437940204445,0,0,0,21.566012137946,0.0,14.932575465546352,0.0,136.4899973586286,0,39.380909295966944,2.909583180797778e-09,23.10285339621776,0,0,0.0,538.9336825885545,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2447.631166282784,0.0,566.4115082929792,7068.095216261197,19309.89108376667,2447.808780193222,212.2099361771266,574.2433345621072,2339.428914314612,16819.938435076336,2791.5942491452724,195.09782187155753,767.6405630662716,2710.7846100588104,16748.485577073312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05609145196056032,0.0017746944410648208,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9396610517872054,0.9396610517872054,0.59669739309411,0.59669739309411,0.7970100514765084,0.7970100514765084,1.147269334114835,1.147269334114835,0.9652757681887733,0.9652757681887733,0.37199744659366624,0.24846156857779347,0.22821239476172261,0.4932078601205089,0.36883759899621416,0.4004119264188435,0.2426679313673732,0.24055863653540016,0.5326206346881287,0.37393360148372057,23.64920055045033,23.64920055045033,12.464582598179348,12.464582598179348,18.3916454284537,18.3916454284537,32.712002003359544,32.712002003359544,24.680642194325856,24.680642194325856,7.880988375931281,6.281326867073915,6.080548434821196,10.082930785165047,7.832002350144791,8.340636189503215,6.222122353504375,6.200917846700705,10.935253699556341,7.911214277679221,235.47234765721527,235.47234765721527,0.0,261.6359418413503,0.0,235.47234765721527,261.6359418413503,0,0
+2017/05/27 12:00:00,228.33191151982203,0,997.8464645574783,0,0,0,25.987246018490602,0.0,14.988232461786234,0.0,124.80122689546741,0,39.380909295966944,2.909583180797778e-09,23.174296845201162,0,0,0.0,518.7267056381324,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3637.64314376072,0.0,1240.0736000081151,5957.872465324759,21805.056572498703,3540.6957277518613,684.6621501765305,1303.0412585906286,2298.9009447285125,20478.952848968547,4098.876997560274,750.1793548561445,1582.6983161715802,2633.136615237375,20751.522122957613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053126084884568756,0.0016808722938118099,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9740597871824521,0.9740597871824521,0.6905202627619963,0.6905202627619963,0.8366409595861697,0.8366409595861697,1.086071213606822,1.086071213606822,0.9558522735682408,0.9558522735682408,0.4098190879496083,0.2901477574808457,0.2649744728903215,0.44210275064537863,0.36556337301865854,0.4508438953110313,0.30452763972473584,0.2932674090516902,0.4776593975418173,0.3770235972967373,25.040267684688914,25.040267684688914,15.025181099173565,15.025181099173565,19.76774297666691,19.76774297666691,29.880482819926428,29.880482819926428,24.29818163844206,24.29818163844206,8.5004171736432,6.748962175613556,6.45781408289632,9.077604272290586,7.7816921561933725,9.241583950948083,6.9272805151326935,6.786905342285195,9.76515085053694,7.95978437069904,228.33191151982203,228.33191151982203,0.0,253.70212391091337,0.0,228.33191151982203,253.70212391091337,0,0
+2017/05/27 13:00:00,230.92296064475752,0,960.267257840719,0,0,0,33.240054227151916,0.0,14.932575391494975,0.0,122.5097643007467,0,39.380909295966944,2.8568824487340238e-09,20.859657426540046,0,0,0.0,516.6378514339173,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4534.202154142589,859.0269192599898,2290.282243755555,5682.110915552169,25343.306158555242,4897.1755766607375,1881.6400958001695,2473.967075139366,2995.622439623436,25507.17540930026,5549.585892408634,2079.566358971517,2898.117492388788,3341.1104799885143,26090.47365907383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05112534008379954,0.0016175701229496423,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9668216309018629,0.9668216309018629,0.7876063002934678,0.7876063002934678,0.8473109349750904,0.8473109349750904,1.072200275289802,1.072200275289802,0.9491644940902633,0.9491644940902633,0.4200591046644021,0.3349906163311989,0.2831737408253757,0.4318066977681502,0.36459597737363314,0.4625501181537074,0.3607315016746764,0.3168025848798932,0.4665453890408527,0.3785714542918731,24.743713586240773,24.743713586240773,18.074854761863477,18.074854761863477,20.149491196511107,20.149491196511107,29.256369302981597,29.256369302981597,24.02886603921867,24.02886603921867,8.67865285575003,7.333948230918139,6.665625867597839,8.88866733580457,7.76691504632619,9.466336167146508,7.708282346929636,7.086415892912129,9.54439344955324,7.984267500806325,230.92296064475752,230.92296064475752,0.0,256.5810673830639,0.0,230.92296064475752,256.5810673830639,0,0
+2017/05/27 14:00:00,210.63355415709262,0,901.3292518447731,0,0,0,29.00486069489392,0.0,14.876918321203716,0.0,108.75639138185811,0,39.380909295966944,2.8032708876594983e-09,18.61447446036668,0,0,0.0,493.1901979505155,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3493.449271965895,1495.051159123012,2085.871365769485,5169.043423215072,23129.38791853528,3927.4317260914645,2128.0036323087515,1903.1563631630816,2450.9712314717785,21226.536526075175,4538.149722721755,2434.9970931158196,2361.212066383324,2760.3955200857954,21777.89227315142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047987436988801424,0.0015182890563227903,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9260336305204859,0.9260336305204859,0.8925331065280379,0.8925331065280379,0.8440034404940869,0.8440034404940869,1.0507096463542884,1.0507096463542884,0.9381345760468102,0.9381345760468102,0.39903006793110957,0.38902872554371803,0.283162804555702,0.4156036267659904,0.3557804131195882,0.43510627226998433,0.42482071809276506,0.31555804473337007,0.4435163003456424,0.36802448195819,23.11104184132894,23.11104184132894,21.819801181992844,21.819801181992844,20.030648477250693,20.030648477250693,28.30284351474309,28.30284351474309,23.588550923050548,23.588550923050548,8.31748430734065,8.152354464761203,6.665496796200429,8.600549433794555,7.634092632447619,8.94872010988577,8.763063722485953,7.069990761841225,9.103899111676498,7.819465736816028,210.63355415709262,210.63355415709262,0.0,234.03728239676957,0.0,210.63355415709262,234.03728239676957,0,0
+2017/05/27 15:00:00,207.12774666059673,0,901.2942030645302,0,0,0,27.93425442220132,0.0,14.970053882089037,0.0,106.31215624428707,0,39.380909295966944,2.8032708876594983e-09,18.53037281324906,0,0,0.0,493.1551491702727,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2845.1472817102745,2714.188079597393,2159.9129585830538,4960.3297439700855,22860.274340773594,3267.395367567627,2789.8574030687687,1765.7541175713259,2237.705577837615,19685.203166925203,3768.481330794135,3232.6042083383004,2214.6148550644784,2504.5557996807534,20256.573612735556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047985570965780426,0.0015182300166551312,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8912481005178737,0.8912481005178737,0.9915919091706554,0.9915919091706554,0.8460348298189617,0.8460348298189617,1.0402684746949624,1.0402684746949624,0.9378958572617411,0.9378958572617411,0.3717954879985737,0.4463419859257431,0.281417596184188,0.40166824249973265,0.3481909646704548,0.4020109804112276,0.4947457384531512,0.3133769019903558,0.42658367407781006,0.36034126745512124,21.77117849675801,21.77117849675801,25.766963791631156,25.766963791631156,20.103585027679145,20.103585027679145,27.845570413846488,27.845570413846488,23.579074564883342,23.579074564883342,7.8778447464595445,9.156719970037102,6.6449642553602075,8.361755616054538,7.522393493418306,8.367528971373702,10.114929174217863,7.041362814543788,8.794563003206093,7.7023969832103205,207.12774666059673,207.12774666059673,0.0,230.14194073399636,0.0,207.12774666059673,230.14194073399636,0,0
+2017/05/27 16:00:00,221.0115252999051,0,951.6254013692536,0,0,0,30.129187147397445,0.0,14.970053882089037,0.0,120.17895923267236,0,39.380909295966944,2.748739246469705e-09,16.352415739030462,0,0,0.0,490.25081870617987,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3040.226399907694,3999.0990293546624,2818.8211712818875,5156.161958188099,26135.066343170725,3117.0872958781133,3602.3198118183095,2008.3240306811733,2217.5593635794808,20232.950579787783,3539.4939719879517,4162.301342677588,2469.6442971770302,2451.5771563754747,20768.58572336716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050665241244178025,0.0016030129163793645,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8920073687222525,0.8920073687222525,1.0690437580615948,1.0690437580615948,0.8719107070891637,0.8719107070891637,1.045718116267039,1.045718116267039,0.9615375638037884,0.9615375638037884,0.3579709841255578,0.4967381391255556,0.28832865221378706,0.3907971437145011,0.3450903810963388,0.3839846482113859,0.5500736338030194,0.3204273112942455,0.41242072280274855,0.356310438035431,21.799899914156043,21.799899914156043,29.115287039069287,29.115287039069287,21.047643764715644,21.047643764715644,28.08374466882664,28.08374466882664,24.528508306680465,24.528508306680465,7.6667885797652815,10.156536641501845,6.72702677348839,8.181241216903771,7.477464894199201,8.070694526384159,11.334164752666695,7.134628001971109,8.545274933693506,7.641984928191903,221.0115252999051,221.0115252999051,0.0,245.568361444339,0.0,221.0115252999051,245.568361444339,0,0
+2017/05/27 17:00:00,237.28977721116908,0,954.5198119838171,0,0,0,24.196607945824546,0.0,16.7356839618177,0.0,138.40412594678773,0,39.380909295966944,2.8032708876594983e-09,18.57245005796876,0,0,0.0,493.1452293207434,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2080.6529513571886,3815.250990416281,2796.068409457681,4953.268988973966,23181.910739723597,1822.207563340261,3243.9087273852297,1500.9671979548948,1251.444892531384,15399.991897810318,2185.5219563720552,3843.389724909115,2042.2440768213594,1416.1395811593798,15680.880872010495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05081934180920663,0.0016078885508399147,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8872159968738478,0.8872159968738478,1.0912376791094405,1.0912376791094405,0.9133593965861075,0.9133593965861075,1.0410778955299764,1.0410778955299764,0.9687065806395078,0.9687065806395078,0.3458272626700719,0.5203749341456276,0.3127757832687388,0.37757834718979033,0.3430602472236476,0.3667038560452126,0.5731422955377369,0.34686061070339225,0.3941828997552789,0.35152912345372,21.619047538870092,21.619047538870092,30.11465479126214,30.11465479126214,22.617196427437833,22.617196427437833,27.88087738956355,27.88087738956355,24.82074569848676,24.82074569848676,7.488105556554373,10.663237994960653,7.033508419669346,7.968547337514721,7.448268886599308,7.799164419032536,11.881690166129246,7.50306611285302,8.236919778512387,7.5712216201121265,237.28977721116908,237.28977721116908,0.0,263.6553080124101,0.0,237.28977721116908,263.6553080124101,0,0
+2017/05/27 18:00:00,225.02803624630485,0,966.2694739321772,0,0,0,22.96276917659928,0.0,16.932384527434575,0.0,120.14191543460078,0,39.380909295966944,2.961382334955254e-09,25.610057808741818,0,0,0.0,540.3852437816475,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516.73705290484,2832.9105370239376,2431.0860057831233,4641.329301250814,17379.67078621868,1422.114506931756,3164.1237041011896,2143.5815381946886,735.763649424412,17926.679947001394,1698.7701290459695,3704.6782123441735,2767.336508995221,797.1169657088669,18013.908142917127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05144490251439025,0.001627680855500143,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8623813297178929,0.8623813297178929,1.0795441906597099,1.0795441906597099,0.9479339994282782,0.9479339994282782,1.0242539364665977,1.0242539364665977,0.9617277435185333,0.9617277435185333,0.34193437189944303,0.5366306442374053,0.3525754844122175,0.36947986590147514,0.3660770353515959,0.3581797607509113,0.5852744546402259,0.3890000076528449,0.3809147377352627,0.3734895263977702,20.69674716579283,20.69674716579283,29.585966275900645,29.585966275900645,23.979506158206206,23.979506158206206,27.151959268254657,27.151959268254657,24.536234881002457,24.536234881002457,7.432152813462054,11.025739959313313,7.586624587559825,7.841924723929949,7.789554631292717,7.669915392351555,12.17890463195755,8.151886466522456,8.021526806050744,7.904267557277677,225.02803624630485,225.02803624630485,0.0,250.03115138478316,0.0,225.02803624630485,250.03115138478316,0,0
+2017/05/27 19:00:00,215.68256508368214,0,930.7862796238849,0,0,0,21.634616952457254,0.0,18.21406099849428,0.0,110.89738010901058,0,39.380909295966944,2.961382334955254e-09,25.555597724791607,0,0,0.0,540.3924019858995,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,85.62008726840052,1163.8642455231488,4319.631123072836,14242.161582556331,1412.1363912736422,2204.8228661495586,2026.7351612245418,618.1519245441264,20646.79387909797,1606.713672598655,2535.668921864474,2551.7229915922935,608.8588925670865,20487.572941475915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04955575096677819,0.0015679094173809533,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8262947580842309,0.8262947580842309,0.8891481725186308,0.8891481725186308,0.8776233455677658,0.8776233455677658,1.0068821902284,1.0068821902284,0.9476545384984995,0.9476545384984995,0.3386929290573755,0.4600751262575248,0.332998339897089,0.3614356871352401,0.3831249311888654,0.3494522569162637,0.4852981149646678,0.35886632861042445,0.3668145906156716,0.38736239990083315,19.402123441756757,19.402123441756757,21.69186548329425,21.69186548329425,21.25979277009094,21.25979277009094,26.41032721867181,26.41032721867181,23.96830423042654,23.96830423042654,7.386054680190838,9.41832608027309,7.3061497207851716,7.718919013628991,8.056884724039108,7.540787043121753,9.919967348497892,7.680211089589164,7.800863830930169,8.125257650180899,215.68256508368214,215.68256508368214,0.0,239.64729453742459,0.0,215.68256508368214,239.64729453742459,0,0
+2017/05/27 20:00:00,188.94437493856813,0,893.4765389351181,0,0,0,7.059834554437893,0.0,24.514893985417,0.0,94.88958839347283,0,39.380909295966944,2.909583180797778e-09,23.09914870636389,0,0,0.0,538.5730138096768,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3509.8346551135073,4701.921293999278,0.0,0.0,0.0,0.0,7921.2157213345345,0.0,66.64112397973139,0.0,0.0,7335.548717891011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047569352736934585,0.001505061162022487,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7012951213271369,0.7012951213271369,0.7267768276638673,0.7267768276638673,0.7880836248279484,0.7880836248279484,0.9789884783175484,0.9789884783175484,0.9394792513226657,0.9394792513226657,0.2726816538587721,0.41458599782150707,0.28665032959350406,0.26797829629781045,0.386424868493796,0.28149094095674804,0.43020209193872866,0.32210971011388556,0.259945671739917,0.3851701419153755,15.343648506904273,15.343648506904273,16.11672519992294,16.11672519992294,18.090844342961063,18.090844342961063,25.243362934695625,25.243362934695625,23.641972437599335,23.641972437599335,6.544115861742057,8.582830018089041,6.706912887733907,6.491152076149305,8.110064207658226,6.645824576892181,8.859632199171969,7.157194598410626,6.4028522035986555,8.089789112750509,188.94437493856813,188.94437493856813,0.0,209.9381943761868,0.0,188.94437493856813,209.9381943761868,0,0
+2017/05/27 21:00:00,192.59775024842136,0,842.3684023927045,0,0,0,0.8355820127701282,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,2.961382334955254e-09,25.552624781173837,0,0,0.0,522.9552297798074,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2868.557228698175,0.0,0.0,0.0,0.0,0.0,400.7909472135829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04484831769127904,0.0014189695098958336,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5819135245350561,0.5819135245350561,0.5772911868848767,0.5772911868848767,0.6815562863746498,0.6815562863746498,0.960299931356295,0.960299931356295,0.9104450220200271,0.9104450220200271,0.19145676994388822,0.317894576205596,0.207388097238633,0.17225822500818072,0.40307466343050957,0.18810044144029825,0.3248140142441855,0.23681617173213276,0.14546963567331572,0.3937785343908884,12.095928767879784,12.095928767879784,11.982611427908736,11.982611427908736,14.76406002632612,14.76406002632612,24.47826063747209,24.47826063747209,22.504553703284614,22.504553703284614,5.760014742730874,7.100881764594632,5.892003107507634,5.615048815586903,8.385478520242515,5.733561266382978,7.193719801452801,6.163755068054826,5.438463319654176,8.230244245746945,192.59775024842136,192.59775024842136,0.0,213.99750027602374,0.0,192.59775024842136,213.99750027602374,0,0
+2017/05/27 22:00:00,136.98996486127356,0,672.0873756606496,0,0,0,0.3650676587826994,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,2.803270887659498e-09,18.617520797716452,0,0,0.0,512.3807893542012,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1436.1357436801222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03578242969977272,0.0011321311332897976,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.38830100840572296,0.38830100840572296,0.37174208310579876,0.37174208310579876,0.48101828791508683,0.48101828791508683,0.898255768172281,0.898255768172281,0.6978995197311739,0.6978995197311739,0.10368853769832892,0.21844182018395897,0.11985396233143811,0.07996788015198618,0.34301304235406993,0.08286022180511246,0.20479351332794138,0.13376627277989167,0.033440278922569684,0.3208604103631682,8.140506162272374,8.140506162272374,7.877013752010683,7.877013752010683,9.832916525390289,9.832916525390289,22.03715533348786,22.03715533348786,15.242745246908456,15.242745246908456,5.22266439573373,5.989822255231033,5.297552451575257,5.132414732106625,7.447592101928919,5.142169501028448,5.869783742037228,5.370697387701668,5.023149543043218,7.140425843102307,136.98996486127356,136.98996486127356,0.0,152.21107206808173,0.0,136.98996486127356,152.21107206808173,0,0
+2017/05/27 23:00:00,89.63315572506372,0,518.0365203512807,0,0,0,0.053381876935034274,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6932782740601523e-09,14.068792786597125,0,0,0.0,464.8009915824645,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,204.8226019523664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027580648056606386,0.0008726324792134272,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.17573315079057078,0.17573315079057078,0.15244777325709125,0.15244777325709125,0.2639090725758508,0.2639090725758508,0.8370103063845584,0.8370103063845584,0.44052440903531453,0.44052440903531453,-0.02699342646202692,0.0799843640355956,-0.0100163852188345,-0.05283149439388582,0.20913533080437993,-0.06888871950190452,0.04345042095809151,-0.016773651031131882,-0.03601705079479409,0.17884185727019597,5.640147115555621,5.640147115555621,5.481581987009463,5.481581987009463,6.446080996281438,6.446080996281438,19.78087797748978,19.78087797748978,9.048345457666542,9.048345457666542,5.015083810886324,5.132469342949619,5.0020768485628935,5.057785782318206,5.907124719753668,5.098258334072042,5.03908459430788,5.005824270424398,5.026854831034797,5.663027364330375,89.63315572506372,89.63315572506372,0.0,99.5923952500708,0.0,89.63315572506372,99.5923952500708,0,0
+2017/05/28 00:00:00,43.399756414525655,0,514.2022148589043,0,0,0,0.1951906777110572,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.22522152048026298,2.636878719326346e-09,11.793710148897407,0,0,0.0,460.9666860900881,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,338.50462421963175,341.2453643710418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027376506792096633,0.0008661735919025383,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4073940223795986,0.4073940223795986,0.4124047162866986,0.4124047162866986,0.4660706561231648,0.4660706561231648,0.8257942208416139,0.8257942208416139,0.6694034686899338,0.6694034686899338,0.19803381854679994,0.35337814045788934,0.170449372710361,0.21089872641870008,0.44153720924641776,0.12586321113194943,0.2879074343071786,0.13721545314963066,0.12528133029810162,0.39251920864777334,8.458864902619297,8.458864902619297,8.544998060569142,8.544998060569142,9.535082393877502,9.535082393877502,19.384548968194395,19.384548968194395,14.415598340235505,14.415598340235505,5.813218088005385,7.598471664337467,5.602183413960091,5.922515774194508,9.067108130167625,5.328159250845047,6.721967503412856,5.390076837146978,5.3251299300871295,8.20949924175838,43.399756414525655,43.399756414525655,0.0,48.22195157169517,0.0,43.399756414525655,48.22195157169517,0,0
+2017/05/28 01:00:00,23.768301727714704,0,44.56663099199214,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5712063040369116,0,0,0.0,9.076278479448009,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002372760444814348,7.507248652346082e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4535086824600876,0.4535086824600876,0.4762264535612019,0.4762264535612019,0.48531004892828616,0.48531004892828616,0.8079290059701781,0.8079290059701781,0.7852846797007794,0.7852846797007794,0.19593927386648677,0.3943771153953996,0.1618302828239287,0.24087964381565316,0.5411381008407118,0.1487238332071937,0.351240745900032,0.14323446522034683,0.16564232869832743,0.4746163256457072,9.292227719163478,9.292227719163478,9.736389261152155,9.736389261152155,9.920211188027409,9.920211188027409,18.76417804009779,18.76417804009779,17.9972223022029,17.9972223022029,5.79607856679776,8.240128504804304,5.542754589191944,6.204132842896186,11.12828268973334,5.458319049018598,7.566984742324323,5.425080660156965,5.568656697436708,9.704176940617728,23.768301727714704,23.768301727714704,0.0,26.409224141905227,0.0,23.768301727714704,26.409224141905227,0,0
+2017/05/28 02:00:00,28.34419777861017,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248346921372725,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.48950001307384416,0.48950001307384416,0.5166772017482381,0.5166772017482381,0.5122481234651579,0.5122481234651579,0.8033123546458344,0.8033123546458344,0.8528900203752646,0.8528900203752646,0.21378322179505407,0.4021417440562043,0.16576489120802404,0.2554475838617801,0.5719058317737771,0.15846998089118694,0.36019917425252046,0.14064251966221833,0.18110632052793765,0.49716883496682085,10.00620218131398,10.00620218131398,10.582375520026162,10.582375520026162,10.486298490743465,10.486298490743465,18.606052155451124,18.606052155451124,20.35098701576412,20.35098701576412,5.947972530036225,8.369732985032783,5.569499538245196,6.354592411752776,11.851757784757382,5.5204242980605756,7.700255598237021,5.4098222625053864,5.679947873817824,10.165553439177032,28.34419777861017,28.34419777861017,0.0,31.493553087344633,0.0,28.34419777861017,31.493553087344633,0,0
+2017/05/28 03:00:00,23.722022003854885,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.524926580177091,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4946528923037429,0.4946528923037429,0.5231401467746514,0.5231401467746514,0.5140458138051914,0.5140458138051914,0.7730854043453306,0.7730854043453306,0.8686829506048311,0.8686829506048311,0.22480925348094083,0.406000854205193,0.16852536025802967,0.26363631417796796,0.5960383984952922,0.1631074056948984,0.3616679218687111,0.13865699096595135,0.18615363631492365,0.5102802734032369,10.112994441848514,10.112994441848514,10.724094690756857,10.724094690756857,10.525192272449516,10.525192272449516,17.593058298017297,17.593058298017297,20.928369516600867,20.928369516600867,6.04849384960896,8.435107561942104,5.5886487279364445,6.443084834419125,12.44794778089954,5.551364909349886,7.722431532088052,5.398322869106835,5.7184328496728085,10.44388347444901,23.722022003854885,23.722022003854885,0.0,26.357802226505427,0.0,23.722022003854885,26.357802226505427,0,0
+2017/05/28 04:00:00,42.19818075523397,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,4.609229874556279,0.0,0.525052468614599,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5632417676686597,0.5632417676686597,0.5910362850341587,0.5910362850341587,0.5802390312435505,0.5802390312435505,0.8225866637747088,0.8225866637747088,0.8314962657116659,0.8314962657116659,0.2380832588075552,0.32545323126476994,0.18181516269875728,0.26508090071943746,0.3960829013592742,0.17670464154383925,0.2984910331375211,0.15094079061438645,0.2004669595966349,0.36604344339569317,11.643878144529111,11.643878144529111,12.322295312630743,12.322295312630743,12.054771208487722,12.054771208487722,19.27217738776686,19.27217738776686,19.58537665176941,19.58537665176941,6.176271435140293,7.202398580668486,5.6852884744662475,6.458988781451438,8.26837987118006,5.647254013049519,6.851358958404219,5.472098506682613,5.833358646842456,7.789040105718868,42.19818075523397,42.19818075523397,0.0,46.88686750581552,0.0,42.19818075523397,46.88686750581552,0,0
+2017/05/28 05:00:00,81.39231350971491,0,212.9421150752648,0,0,0,0.2228938858422737,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,8.780386721220435,0.0,0.5250257134524687,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5897059438465675,44.62321477182083,41.19877075324694,769.3507659688477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.361368153342886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7831843208560142,0.7831843208560142,0.7942376712646492,0.7942376712646492,0.7917533716556755,0.7917533716556755,0.9092864840347521,0.9092864840347521,0.8719718438461802,0.8719718438461802,0.2607180513613396,0.32131075397058484,0.22379043623352127,0.27531444827790486,0.3634131208590489,0.21937083733427354,0.29531506624342635,0.19231966051429872,0.23600608315052235,0.3440772992609097,17.92718589987976,17.92718589987976,18.297860582688216,18.297860582688216,18.214097757009554,18.214097757009554,22.459870642399864,22.459870642399864,21.049907075754334,21.049907075754334,6.411224674815685,7.146462965588128,6.038991937129111,6.574170311713644,7.748900921821928,5.998276653532713,6.81203371663635,5.766891827035764,6.15578827912816,7.4628735433591515,81.39231350971491,81.39231350971491,0.0,90.43590389968323,0.0,81.39231350971491,90.43590389968323,0,0
+2017/05/28 06:00:00,100.88577884547485,0,673.615373021216,0,0,0,0.6082579348678215,0.0,7.356706181538291,0.0,80.56906512710079,0,11.826555571520172,2.5212471352626926e-09,0.5251940279265542,0,0,0.0,442.9280816896792,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1381.3214785785665,0.0,0.0,0.0,326.00363709422663,0.0,0.0,375.03309536140137,0.0,235.46197284489466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03586378141104711,0.0011347050447276985,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9066616200388101,0.9066616200388101,0.905281994770209,0.905281994770209,0.907821034927215,0.907821034927215,0.9913375229139911,0.9913375229139911,0.8954310068735197,0.8954310068735197,0.2965840743489954,0.34981426549907285,0.2765037750016881,0.3105294806127897,0.3848500281603838,0.2722909736949923,0.3269863576630963,0.2629513508411233,0.2813002523469924,0.36770321296187375,22.358834393010085,22.358834393010085,22.305841675139135,22.305841675139135,22.403428214163355,22.403428214163355,25.756335280849584,25.756335280849584,21.92970050897982,21.92970050897982,6.827695607774984,7.546078745478226,6.587842783724042,7.004292967528244,8.084627168582685,6.539680976336911,7.223284766864026,6.435574544723906,6.64358830436187,7.8145201883161945,100.88577884547485,100.88577884547485,0.0,112.09530982830537,0.0,100.88577884547485,112.09530982830537,0,0
+2017/05/28 07:00:00,115.99878996239006,0,693.9100437444932,0,0,0,0.449190880489981,0.0,6.257072288940384,0.0,69.33401494192633,0,39.38090929596693,2.5212496691926586e-09,0.577602552545194,0,0,0.0,427.7323999004123,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1805.4418201779895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03694428471275229,0.0011688914160207196,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.465086793105094,0.465086793105094,0.42505239232940023,0.42505239232940023,0.5412032334428438,0.5412032334428438,0.9758125124490937,0.9758125124490937,0.8029157177508027,0.8029157177508027,0.19742483216601123,0.2801390208873481,0.24043508883189948,0.18351242009851032,0.480421963870789,0.2017656107453323,0.2411363102452581,0.2341042294429823,0.11362014351763036,0.45528843705460265,9.515816555175476,9.515816555175476,8.767195507366111,8.767195507366111,11.129770880417468,11.129770880417468,25.11238413354694,25.11238413354694,18.592508874841656,18.592508874841656,5.808215879784541,6.630003245420127,6.199681628008534,5.698161308079605,9.820850144880097,5.844209698299366,6.206706557060528,6.137192802084186,5.267387725746275,9.326221800073654,115.99878996239006,115.99878996239006,0.0,128.88754440265564,0.0,115.99878996239006,128.88754440265564,0,0
+2017/05/28 08:00:00,147.25605014275777,0,747.1332655736818,0,0,0,0.5908536618245097,0.0,9.842300524895856,0.0,96.91714705112861,0,39.380909295966944,2.521249669505345e-09,0.5248396064206288,0,0,0.0,427.72009296078465,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2396.040898589226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03977792846573352,0.0012585459291524137,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4904283300271093,0.4904283300271093,0.44020809484285617,0.44020809484285617,0.5799955507312049,0.5799955507312049,0.984301744292038,0.984301744292038,0.8594526098444039,0.8594526098444039,0.23135659624606544,0.29951366679713237,0.2554185906626906,0.20595426511562873,0.5323663595917819,0.19353412500350128,0.2575291430775991,0.24639022330428076,0.13770856804253973,0.5071190456881245,10.025356668337167,10.025356668337167,9.042494599642694,9.042494599642694,12.048796805177503,12.048796805177503,25.46335510509374,25.46335510509374,20.589658126383995,20.589658126383995,6.11059571576196,6.864112080931662,6.35428410581622,5.879689306244359,10.929539437877295,5.776623611537758,6.376819557207654,6.259998046566764,5.392887873862364,10.37609698511018,147.25605014275777,147.25605014275777,0.0,163.61783349195306,0.0,147.25605014275777,163.61783349195306,0,0
+2017/05/28 09:00:00,147.15834618634787,0,800.3820341725011,0,0,0,0.6360988486407095,0.0,9.548760743261381,0.0,97.06762091869685,0,39.380909295966944,2.5212496695053834e-09,0.5249563772607617,0,0,0.0,427.7333327907877,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2580.20531975023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04261293234765255,0.001348243475815612,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5010050344935348,0.5010050344935348,0.4376270053119866,0.4376270053119866,0.5962837616593082,0.5962837616593082,0.9907955243259543,0.9907955243259543,0.8865628958598127,0.8865628958598127,0.12122879814782625,0.18907730947648033,0.13566192002019342,0.1023687629712037,0.40325189290475055,0.08647959927827042,0.15039549085709686,0.13281778357391927,0.044624346593635594,0.3761784775800522,10.24621948502714,10.24621948502714,8.994912903712972,8.994912903712972,12.454139212611182,12.454139212611182,25.733698287058616,25.733698287058616,21.594468628917042,21.594468628917042,5.3044224631492085,5.741212059840251,5.381286951879844,5.217029590001658,8.38847395664331,5.15486506196882,5.468690225704137,5.365454993531046,5.041225258220578,7.946459889439026,147.15834618634787,147.15834618634787,0.0,163.50927354038652,0.0,147.15834618634787,163.50927354038652,0,0
+2017/05/28 10:00:00,201.2502358569829,0,1000.1640355913987,0,0,0,0.7956765269842392,0.0,13.065493553185489,0.0,124.87761316689259,0,39.380909295966944,2.9096077559458925e-09,23.130543311043944,0,0,0.0,538.7894529283251,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3263.094376060104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053249474083055,0.0016847762420425484,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5404398973622537,0.5404398973622537,0.45530563099557175,0.45530563099557175,0.6509298179485642,0.6509298179485642,1.0167481513543781,1.0167481513543781,0.96174535903058,0.96174535903058,0.06743026467498907,0.11980957582423929,0.08972917896872735,0.03624682787898001,0.3406306612707521,0.0305560708565893,0.0772476860904456,0.08516797168930063,-0.02396264473868332,0.3138698068664743,11.112341243216335,11.112341243216335,9.326550876601473,9.326550876601473,13.89814741636296,13.89814741636296,26.830139067626277,26.830139067626277,24.536950631213912,24.536950631213912,5.0941410511058365,5.2973319625832005,5.166726476170027,5.0271985944890645,7.413558451458897,5.01932831790586,5.123557130673632,5.150201533931849,5.011886706346445,7.047814672365405,201.2502358569829,201.2502358569829,0.0,223.61137317442544,0.0,201.2502358569829,223.61137317442544,0,0
+2017/05/28 11:00:00,219.7561238459242,0,1033.1644301312463,0,0,0,0.8830534181898597,0.0,13.065493553185489,0.0,143.25325374857618,0,39.380909295966944,1.7535989542583921e-06,23.173412076406684,0,0,0.0,518.5543186993564,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3645.668567745696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05500643953196871,0.0017403654041402337,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5577548058074832,0.5577548058074832,0.4508247843156624,0.4508247843156624,0.6867633784409122,0.6867633784409122,1.0425710855486996,1.0425710855486996,1.0210989121403526,1.0210989121403526,0.015894139391396122,0.051354398276332924,0.054045590637657716,0.039997827521920624,0.30630925135260423,-0.02059109868819746,0.006075531980418625,0.05309089475700962,0.02244025063123283,0.27799890418622003,11.513911541588243,11.513911541588243,9.241221853523584,9.241221853523584,14.91531999451486,14.91531999451486,27.94607310781886,27.94607310781886,27.016428063173677,27.016428063173677,5.005229495563398,5.054599353875659,5.06047254754543,5.033119580576837,6.949982143531855,5.008777041393543,5.000764099962282,5.0583546986030115,5.010424279911305,6.605115364734928,219.7561238459242,219.7561238459242,0.0,244.17347093991577,0.0,219.7561238459242,244.17347093991577,0,0
+2017/05/28 12:00:00,196.80274424922007,0,972.0636022937365,0,0,0,0.901243602616246,0.0,13.11419298838912,0.0,124.80122689546741,0,39.380909295966944,2.8474516368498173e-06,18.605168619328637,0,0,0.0,492.94384337439055,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3726.417032823569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05175338620010917,0.0016374410642854226,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5344298106149852,0.5344298106149852,0.4055634827006183,0.4055634827006183,0.673691546466942,0.673691546466942,1.0514940969385942,1.0514940969385942,0.9940320411592671,0.9940320411592671,0.009626670131675511,0.026456438255664887,0.0651932783227668,-0.05235524413235464,0.31204813009597987,-0.03039132696522987,-0.025506197608733062,0.06313984206604135,0.12024319067464623,0.2867132812996753,10.975991704032936,10.975991704032936,8.427666316379387,8.427666316379387,14.537822012635843,14.537822012635843,28.33735821735435,28.33735821735435,25.86904043107856,25.86904043107856,5.00191838082425,5.01448962812178,5.087997269589934,5.056748529250058,7.024021157744855,5.0191204528276785,5.013467437370338,5.082540181856402,5.299489441762745,6.7076651871445705,196.80274424922007,196.80274424922007,0.0,218.66971583246675,0.0,196.80274424922007,218.66971583246675,0,0
+2017/05/28 13:00:00,196.6479764224692,0,936.5356827081381,0,0,0,0.8183275754863414,0.0,13.11419298838912,0.0,124.7641830973959,0,39.380909295966944,7.025916639837332e-06,18.57035643931424,0,0,0.004142852951886233,492.90213344838475,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3361.35918969716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04986185344560503,0.0015775942864400057,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.47417908598861247,0.47417908598861247,0.3355231064286373,0.3355231064286373,0.6229873395333219,0.6229873395333219,1.0499254833955811,1.0499254833955811,0.9402926676111505,0.9402926676111505,-0.04069184925930663,0.04283360185973242,0.025922946626743344,0.03859378325453513,0.2788528152718262,0.023878303217293884,0.07202468968811633,0.02553535851693232,0.13662870027185647,0.25117331571916096,9.695448796471894,9.695448796471894,7.341406675627724,7.341406675627724,13.143586728850224,13.143586728850224,28.26836367594568,28.26836367594568,23.674322840049513,23.674322840049513,5.034278985968228,5.037982695920945,5.013911138474043,5.030835044500051,6.615022521915947,5.011803175985065,5.107409955207558,5.013498250172077,5.386745191316564,6.309522539823021,196.6479764224692,196.6479764224692,0.0,218.49775158052134,0.0,196.6479764224692,218.49775158052134,0,0
+2017/05/28 14:00:00,178.3045419286922,0,895.1658170940638,0,0,0,0.7522005370962024,0.0,13.11419298838912,0.0,111.01081017850728,0,39.380909295966944,8.64457182406082e-06,14.04642028416076,0,0,0.0034913207595421995,487.0232718790468,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3072.2096682778533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047659291157376445,0.0015079067509530168,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.43549175383340777,0.43549175383340777,0.2983182652667741,0.2983182652667741,0.5884571577279784,0.5884571577279784,1.039102836373248,1.039102836373248,0.8949291725241435,0.8949291725241435,-0.016640520519542564,0.030081181726390172,-0.028024435523492073,0.052922180516451686,0.20842217735532534,0.05052861147939194,0.0961259947852754,-0.037187182838080854,0.08689583540907446,0.17826535427353005,8.955766437045057,8.955766437045057,6.84920875930699,6.84920875930699,12.257932244183777,12.257932244183777,27.79476724623082,27.79476724623082,21.91064455314701,21.91064455314701,5.005732183064012,5.018732177684868,5.016258104093282,5.057984357958517,5.9009372267241815,5.052857340139866,5.191355891453782,5.028628220554197,5.156359918279691,5.658753806409564,178.3045419286922,178.3045419286922,0.0,198.11615769854689,0.0,178.3045419286922,198.11615769854689,0,0
+2017/05/28 15:00:00,176.15002455899986,0,872.6857507390218,0,0,0,0.7762333187678973,0.0,13.11419298838912,0.0,108.75639138185811,0,39.380909295966944,1.27832703914987e-05,14.122284790747397,0,0,0.004766862953368553,464.54192998181105,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3175.938834911179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046462435773499004,0.001470039080884157,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.45455079765442985,0.45455079765442985,0.32367475305755455,0.32367475305755455,0.6095142280647541,0.6095142280647541,1.034726682095914,1.034726682095914,0.9219357403852122,0.9219357403852122,-0.09149380599784486,0.08694503638216171,-0.03300979406991702,0.047240474814104656,0.1960694562986248,0.16162906636226523,0.10689181285349285,-0.050920070913798535,0.05327021597706953,0.16422684103797774,9.312116028557384,9.312116028557384,7.178294777023439,7.178294777023439,12.791862467825112,12.791862467825112,27.604480719340273,27.604480719340273,22.950663683107138,22.950663683107138,5.173351159292153,5.15653709197673,5.022557331033852,5.04620115472072,5.797138495260484,5.541404194190932,5.2366416327671885,5.053679609649365,5.058749615276653,5.558968023501208,176.15002455899986,176.15002455899986,0.0,195.72224950999984,0.0,176.15002455899986,195.72224950999984,0,0
+2017/05/28 16:00:00,190.5118915847375,0,925.9112818623937,0,0,0,0.8470585632368419,0.0,11.351745598937642,0.0,124.87761316689259,0,39.380909295966944,1.2990370546263311e-05,14.054551969332902,0,0,0.007662425533579646,464.52903677378634,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3483.4993905345964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04929620247501306,0.0015596974840217277,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.47795379521804204,0.47795379521804204,0.3429307424278062,0.3429307424278062,0.6391562941878033,0.6391562941878033,1.039585004452133,1.039585004452133,0.9852829973901266,0.9852829973901266,-0.11468281183707761,0.06063129774766135,-0.04416946716340363,0.04396519152393652,0.19787094472990105,0.097280407296169,0.08163953986815856,-0.06540080542901591,0.044013696732268716,0.1650544513598929,9.771070871613091,9.771070871613091,7.446412379606272,7.446412379606272,13.576085934382135,13.576085934382135,27.815776034679885,27.815776034679885,25.50410203004668,25.50410203004668,5.2724156955511745,5.076110773588368,5.040389007262135,5.040016255426494,5.811878724977717,5.195981560772665,5.1380102892626525,5.088558504809882,5.040104608784858,5.564622675376739,190.5118915847375,190.5118915847375,0.0,211.67987953859722,0.0,190.5118915847375,211.67987953859722,0,0
+2017/05/28 17:00:00,199.9941962779197,0,974.6146849794718,0,0,0,1.1017808400867044,0.0,11.56363294302905,0.0,129.38645076019097,0,39.380909295966944,2.803295047938597e-09,18.561422435842683,0,0,0.0,513.2401023163981,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3698.8351558253385,653.955784594771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05188920773190168,0.00164173836287592,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5346597466506449,0.5346597466506449,0.39772501591370213,0.39772501591370213,0.7000443857054351,0.7000443857054351,1.042992687773581,1.042992687773581,1.0669068293251402,1.0669068293251402,-0.05615345584742251,0.014782243880885598,0.018244112126855564,-0.0385681102054894,0.27855332525587084,-0.0068230664393414565,-0.03020145193258857,-0.008173511674176853,-0.06449254814585302,0.24580847837607406,10.98117942760858,10.98117942760858,8.295694255402381,8.295694255402381,15.306423901316577,15.306423901316577,27.964495827167013,27.964495827167013,29.019975837335863,29.019975837335863,5.065282266525344,5.004523408656553,5.0068902153251145,5.030794031723573,6.611544309300982,5.000963697970363,5.018882272791316,5.0013829278207,5.086115408189315,6.2540401980776466,199.9941962779197,199.9941962779197,0.0,222.215773642133,0.0,199.9941962779197,222.215773642133,0,0
+2017/05/28 18:00:00,191.53690925720065,0,945.4275104498597,0,0,0,1.015161948021871,0.0,12.318019843199323,0.0,115.6330778413024,0,39.380909295966944,2.909607755945892e-09,23.18974032580044,0,0,0.0,519.54328029933,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3569.1059706128385,472.8054730055523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050335260940810374,0.0015925725695960576,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5311017958037452,0.5311017958037452,0.3920304374841518,0.3920304374841518,0.6930809689749861,0.6930809689749861,1.0362485189726356,1.0362485189726356,1.0882641281536105,1.0882641281536105,-0.013189447091809347,0.025443653957665898,0.06691311951387964,-0.03231612108423273,0.36653948595425306,-0.006157817631082676,-0.033667686905663914,0.043995217521230166,-0.07354780917244148,0.3339306710970764,10.90116279522158,10.90116279522158,8.201465925538812,8.201465925538812,15.100412405672031,15.100412405672031,27.670574543044694,27.670574543044694,29.979764851554634,29.979764851554634,5.003601118475089,5.013401469524965,5.0927023023860585,5.021619201695799,7.7966428416118845,5.000784937758695,5.023465482966586,5.040070936982957,5.112001934549951,7.319137693184729,191.53690925720065,191.53690925720065,0.0,212.81878806355627,0.0,191.53690925720065,212.81878806355627,0,0
+2017/05/28 19:00:00,181.7844470911608,0,908.9312649671035,0,0,0,1.7119421374805484,0.0,13.40862594273916,0.0,104.13412371906301,0,39.380909295966944,2.9096077559458912e-09,23.14884599300157,0,0,0.0,518.5373873291181,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3457.940357956817,2222.687468057242,0.0,0.0,0.0,0.0,541.0691723602761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04839217379829609,0.0015310946468503727,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5314816525993966,0.5314816525993966,0.3892450382962761,0.3892450382962761,0.6975926037155975,0.6975926037155975,1.0277423213668924,1.0277423213668924,1.081567740763129,1.081567740763129,0.03788786346683617,0.06590323359735918,0.12637198026229957,0.0029074659357890666,0.44512261486871874,0.033471138851655625,0.004551714348443145,0.1066513917182476,-0.0436627231704996,0.4172753633755948,10.909679454441743,10.909679454441743,8.155880716300913,8.155880716300913,15.233649501483328,15.233649501483328,27.302240541456527,27.302240541456527,29.677115585779234,29.677115585779234,5.029717279727635,5.089924661305773,5.330819480307767,5.000174988807217,9.1338840238422,5.023192291419775,5.000428875500901,5.235577784830994,5.039467500997233,8.629754814348843,181.7844470911608,181.7844470911608,0.0,201.98271899017868,0.0,181.7844470911608,201.98271899017868,0,0
+2017/05/28 20:00:00,184.20876777979655,0,847.8214941932592,0,0,0,1.1494912263661776,0.0,16.665893516531224,0.0,108.41610117336799,0,39.380909295966944,2.803295047938597e-09,18.596372564760888,0,0,0.0,492.91796906781804,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3120.034014255754,0.0,0.0,0.0,0.0,0.0,1223.8913197309112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04513864433788201,0.001428155242619985,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5011036050310639,0.5011036050310639,0.35935971921889387,0.35935971921889387,0.6647026378025437,0.6647026378025437,1.0132937808034126,1.0132937808034126,1.068796886841878,1.068796886841878,0.05695856160114047,0.07047151562844853,0.14833360819789046,0.011028748751279615,0.483142978822081,0.046638397835811675,0.011846177646131455,0.13136147607949938,-0.03774562764456454,0.45894446470463124,10.248300565790018,10.248300565790018,7.687622315115846,7.687622315115846,14.282524689184314,14.282524689184314,26.682734844794993,26.682734844794993,29.104267839094703,29.104267839094703,5.0671679421297995,5.102826410428676,5.455914795728205,5.0025178838648685,9.87603351886348,5.045030883466637,5.002904959323473,5.357478668132373,5.02949455947676,9.396481193054143,184.20876777979655,184.20876777979655,0.0,204.67640864421838,0.0,184.20876777979655,204.67640864421838,0,0
+2017/05/28 21:00:00,183.84327006001598,0,858.217594216175,0,0,0,0.5864908172428936,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,5.716105258040176e-06,23.126780819436352,0,0,0.003370804070013185,538.8010507992079,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2366.916082663063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04569214040356265,0.001445667472319536,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.42448100322392535,0.42448100322392535,0.2867975638781588,0.2867975638781588,0.5849177027371637,0.5849177027371637,0.993970461822004,0.993970461822004,0.9974729844646683,0.9974729844646683,-0.05011720763822565,-0.033602174221495675,0.032040429516764016,0.032416620881990155,0.3702262024585434,-0.0687591588983025,0.024957232470642386,0.006628509717281784,-0.019141913206051863,0.3313034744773465,8.75700925510759,8.75700925510759,6.7086726613728445,6.7086726613728445,12.170073757553595,12.170073757553595,25.866461624389203,25.866461624389203,26.013369031627676,26.013369031627676,5.052000019031141,5.0233742459945745,5.021251887725214,5.021753884102679,7.85347695884623,5.09788901020147,5.012893945585873,5.000909522584109,5.007585053857312,7.282633650326588,183.84327006001598,183.84327006001598,0.0,204.27030006668443,0.0,183.84327006001598,204.27030006668443,0,0
+2017/05/28 22:00:00,127.61949204608379,0,652.6372616856104,0,0,0,0.2290947244051017,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,2.286887277369197e-06,18.590510160338884,0,0,0.0,492.93067537916187,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,898.9244522723207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03474689122491255,0.001099367417775083,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.26803629261816897,0.26803629261816897,0.14022090057192826,0.14022090057192826,0.4158645430124575,0.4158645430124575,0.9428851881718892,0.9428851881718892,0.7803528754695322,0.7803528754695322,-0.03286910650133099,-0.08171236301327167,-0.05850581086565996,-0.046494148676163936,0.26577716301780274,-0.017267641627603053,-0.0613804384239337,-0.0994162373797632,-0.08947066199188068,0.21748358757193148,6.491799488815218,6.491799488815218,5.407366692911651,5.407366692911651,8.605099773993913,8.605099773993913,23.777605145735876,23.777605145735876,17.833068275203672,17.833068275203672,5.022365453025273,5.138256685022469,5.0708672358901055,5.044752732828613,6.4666855523554005,5.0061723807179135,5.078003511914019,5.204685557149361,5.165766813608769,5.981139869566292,127.61949204608379,127.61949204608379,0.0,141.79943560675977,0.0,127.61949204608379,141.79943560675977,0,0
+2017/05/28 23:00:00,85.07427724697983,0,492.9242977732976,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.0511963216735352e-06,9.563294136945242,0,0,0.0,439.6887690044814,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.026243654725763888,0.0008303309421868002,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.10828964198312076,0.10828964198312076,-0.009392679884539568,-0.009392679884539568,0.2469082055285878,0.2469082055285878,0.8778064845087892,0.8778064845087892,0.5562985944450215,0.5562985944450215,-0.0011030300282455538,-0.15062383145669403,-0.11525191862131905,-0.15250634729139903,0.20200109048239612,-0.06190738462743931,-0.1780367881399373,-0.08933099978935664,-0.19008673542071505,0.148443990421957,5.242874484712203,5.242874484712203,5.0018262557625235,5.0018262557625235,6.265314847539074,6.265314847539074,21.266616163992794,21.266616163992794,11.47963829330628,11.47963829330628,5.000025185787251,5.470115913340393,5.2751276903132975,5.481952504590467,5.846184835644266,5.079348799346008,5.657063309295523,5.165249515452814,5.749159730128852,5.456594239280392,85.07427724697983,85.07427724697983,0.0,94.52697471886648,0.0,85.07427724697983,94.52697471886648,0,0
+2017/05/29 00:00:00,40.185442271776516,0,502.93266622795977,0,0,0,0.3309654215197465,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.4539564658366614,2.579554449020075e-09,9.603199385417366,0,0,0.0,449.69713745914356,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,72.88016178123814,1008.3497757608412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02677650767555534,0.0008471900380890563,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.32985113104301905,0.32985113104301905,0.22657472474117352,0.22657472474117352,0.46007010099076967,0.46007010099076967,0.886530912033239,0.886530912033239,0.7772505795327738,0.7772505795327738,0.09516003873716926,0.06197575080933389,0.06731848177172639,0.04244746750928695,0.4368207497422424,0.014503573455512892,-0.00857098816433965,0.05487377280341015,-0.03052771527907133,0.3666313976574216,7.26257952901409,7.26257952901409,6.065062411576122,6.065062411576122,9.418228868091248,9.418228868091248,21.593265392574907,21.593265392574907,17.73033911390155,17.73033911390155,5.18752785988643,5.079524180756593,5.093829120942672,5.037300918286306,8.980108465871666,5.004354466734171,5.001520701798697,5.062340334084581,5.019292460270066,7.79805270364362,40.185442271776516,40.185442271776516,0.0,44.650491413085014,0.0,40.185442271776516,44.650491413085014,0,0
+2017/05/29 01:00:00,23.72448910105585,0,43.79353526230613,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5273936773780576,0,0,0.0,8.30318274976199,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0023316002555287037,7.377020682548172e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3841059034649501,0.3841059034649501,0.29328104210894623,0.29328104210894623,0.48667424171722184,0.48667424171722184,0.858598532143869,0.858598532143869,0.8717993193336366,0.8717993193336366,0.09350913936629023,0.09961872229374666,0.08897975841401734,0.07234432459003226,0.520186176778115,0.04136650003666014,0.03026881634976722,0.05870914556395641,0.0037713285566617406,0.43949209278739665,8.072644812857064,8.072644812857064,6.787072058248057,6.787072058248057,9.948125434473411,9.948125434473411,20.558495561517233,20.558495561517233,21.043520534334007,21.043520534334007,5.181075079028986,5.205520556069118,5.163952121039102,5.10836563280985,10.659095895147672,5.035425153850213,5.018966604117992,5.0713607606984255,5.000294421724604,9.029266603436739,23.72448910105585,23.72448910105585,0.0,26.36054344561761,0.0,23.72448910105585,26.36054344561761,0,0
+2017/05/29 02:00:00,28.34420761403798,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.524844527565085,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4248223102934213,0.4248223102934213,0.3395106825998007,0.3395106825998007,0.5192829342070598,0.5192829342070598,0.8490068019606618,0.8490068019606618,0.9374824008928031,0.9374824008928031,0.10178993268843181,0.11553378090850296,0.10188199925967503,0.0865008600199632,0.5523494675706028,0.04812958580894425,0.04232744543344831,0.06248337098906276,0.015119047282167598,0.45888250707059525,8.763092110666335,8.763092110666335,7.397642253257416,7.397642253257416,10.639296442299738,10.639296442299738,20.210602648146704,20.210602648146704,23.562667051463137,23.562667051463137,5.214581074870011,5.276475846183885,5.214969596242696,5.154941242895134,11.387154786743366,5.0479568026802895,5.03709025962371,5.080832449733265,5.00473188460974,9.395285734562478,28.34420761403798,28.34420761403798,0.0,31.493564015597755,0.0,28.34420761403798,31.493564015597755,0,0
+2017/05/29 03:00:00,23.722031677777586,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249362540997953,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4229094078337313,0.4229094078337313,0.3402202373857394,0.3402202373857394,0.5151583145452988,0.5151583145452988,0.81095769960249,0.81095769960249,0.9543809955507936,0.9543809955507936,0.09653184555702032,0.11636375312362585,0.1011585596074963,0.08609674426381068,0.5768117263055497,0.03646227502936917,0.03523762195955265,0.051369207176375435,0.0077004367554509,0.4743221004277355,8.729064392281316,8.729064392281316,7.407719665650774,7.407719665650774,10.549331711973409,10.549331711973409,18.868403284515153,18.868403284515153,24.23878261520852,24.23878261520852,5.192975809309232,5.280464798354927,5.211926158532563,5.153496435130009,11.970910443526222,5.027522905647331,5.02570503677363,5.054630851412568,5.0012274751511825,9.698302732476833,23.722031677777586,23.722031677777586,0.0,26.357812975308427,0.0,23.722031677777586,26.357812975308427,0,0
+2017/05/29 04:00:00,43.67095651069438,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,3.637876349269676,0.0,0.5249466117905709,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.486836551901014,0.486836551901014,0.40706712085018326,0.40706712085018326,0.574851230276855,0.574851230276855,0.851444953225737,0.851444953225737,0.937474326301006,0.937474326301006,0.10313064197895751,0.12505270999179027,0.10896245653053414,0.0940123521621807,0.46700423335036073,0.042102789158616996,0.04176333437421434,0.05552588253281278,0.013762553997897276,0.4274007750876885,9.951451988426527,9.951451988426527,8.453282872333332,8.453282872333332,11.923169336060255,11.923169336060255,20.298672363662334,20.298672363662334,23.562346688740874,23.562346688740874,5.220273624780347,5.323943565102866,5.245903460320605,5.183029976175803,9.553402106162409,5.03669755427282,5.036108143796781,5.063831025730735,5.003920871441196,8.80920762948233,43.67095651069438,43.67095651069438,0.0,48.52328501188264,0.0,43.67095651069438,48.52328501188264,0,0
+2017/05/29 05:00:00,76.30835398014635,0,212.9421150752648,0,0,0,0.16045433893511785,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.8368200210260497,0.0,0.5250365902293048,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,646.4535739718108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7633057198309402,0.7633057198309402,0.6838205275122057,0.6838205275122057,0.8431087846284623,0.8431087846284623,1.0006348740161488,1.0006348740161488,0.9951234985248586,0.9951234985248586,0.1847846389784618,0.20588351528713686,0.19157107344504568,0.17497542407959957,0.6457843701686556,0.1323039657220422,0.13109491321772365,0.14478412096560642,0.1034005714869437,0.5862951794681487,17.27363511962905,17.27363511962905,14.82968952596481,14.82968952596481,19.998580629590705,19.998580629590705,26.14638966048757,26.14638966048757,25.91477223564398,25.91477223564398,5.707889318600081,5.879083931520569,5.760923933391922,5.634631338799096,13.756655725773953,5.362630696937643,5.3560282298416695,5.43433681977865,5.221428749955052,12.204201697628434,76.30835398014635,76.30835398014635,0.0,84.78705997794039,0.0,76.30835398014635,84.78705997794039,0,0
+2017/05/29 06:00:00,87.49726193192484,0,673.2942561787202,0,0,0,0.4199827757721533,0.0,8.790698624030576,0.0,73.80580873715317,0,3.9557061582259965,2.521269880759084e-09,0.5250656342216569,0,0,0.0,442.60696484718335,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,11.38710780536898,1715.2792358032468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03584668491249924,0.0011341641234308866,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.91858281747057,0.91858281747057,0.8407937156013713,0.8407937156013713,0.9976788997935994,0.9976788997935994,1.0639384540198513,1.0639384540198513,1.008905334962892,1.008905334962892,0.27366455639016,0.29798273006598547,0.28499472304791895,0.3381145948220132,0.8091672080162661,0.22615874584098342,0.2289000956255878,0.2434744068409721,0.28239339017141346,0.7307689437051788,22.819942349728407,22.819942349728407,19.915754776412143,19.915754776412143,26.02202032878118,26.02202032878118,28.887849288995454,28.887849288995454,26.49611712670759,26.49611712670759,6.55530192927074,6.845036428322601,6.687187738937624,7.377876826956495,18.80674102651625,6.061146771870725,6.087084957337225,6.230279144824138,6.656428725638676,16.24037308177938,87.49726193192484,87.49726193192484,0.0,97.21917992436093,0.0,87.49726193192484,97.21917992436093,0,0
+2017/05/29 07:00:00,150.5869877213537,0,807.7699648741121,0,0,0,7.151064468538371,0.0,7.62365870417446,0.0,69.33401494192633,0,39.380909295966944,3.012338926631421e-09,27.097340307735234,0,0,0.0,541.5923210300313,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4298.213401914392,0.0,0.0,0.0,0.0,0.00191922782588531,11241.885312615506,0.0,0.0,0.0,0.06439920794728271,8667.469890401233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043006271250495845,0.0013606884445217411,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7797118222751009,0.7797118222751009,0.6867897431518419,0.6867897431518419,0.7255082918783372,0.7255082918783372,1.162912280397089,1.162912280397089,0.9763709418319315,0.9763709418319315,0.27562051554514244,0.2509096303405775,0.29741515233338095,0.40801632256166226,0.6066110346605822,0.252053960938655,0.20953741807268897,0.27982066153276464,0.407160204684081,0.5771075176670072,17.81180692291325,17.81180692291325,14.916088841739452,14.916088841739452,16.07757830967438,16.07757830967438,33.4553035857119,33.4553035857119,25.135385862267555,25.135385862267555,6.577683155342427,6.306767275739489,6.837989515186024,8.469503680041313,12.717104403043848,6.31874563805431,5.910622711974682,6.626288745257838,8.454871865991507,11.978127898237119,150.5869877213537,150.5869877213537,0.0,167.31887524594853,0.0,150.5869877213537,167.31887524594853,0,0
+2017/05/29 08:00:00,172.56338644120024,0,859.5693298441704,0,0,0,13.152211006760764,0.0,11.276247110228917,0.0,83.2008179303116,0,39.380909295966944,2.9614317691566873e-09,25.55320109497059,0,0,0.0,540.1561572312733,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3957.329913845946,7398.2237394027325,0.0,0.0,0.0,0.0,18067.756074830122,0.0,0.0,0.0,0.0,14506.978068866096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04576410780963671,0.0014479444708822994,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6754703370095486,0.6754703370095486,0.5663941585667304,0.5663941585667304,0.7416120715325996,0.7416120715325996,1.0813545121716928,1.0813545121716928,1.0025122134260642,1.0025122134260642,0.27670040090577885,0.25788618684134307,0.30987055230731547,0.3633581786928029,0.5302080297824052,0.2750434047787233,0.2342681774702844,0.31916223473174354,0.37086994001088325,0.5151967148761959,14.588756687646907,14.588756687646907,11.719137634180115,11.719137634180115,16.579673256552724,16.579673256552724,29.667504130304977,29.667504130304977,26.225548657957177,26.225548657957177,6.590108935089702,6.380650428829,6.995763453824395,7.748065637469381,10.881148572518768,6.571062745473256,6.138789833854233,7.117738107391062,7.863460181472945,10.55016589200207,172.56338644120024,172.56338644120024,0.0,191.73709604577803,0.0,172.56338644120024,191.73709604577803,0,0
+2017/05/29 09:00:00,178.46712357862043,0,872.9313385294824,0,0,0,0.8279138074409043,0.0,11.128561489866103,0.0,106.27511244621549,0,39.380909295966944,2.8569311225081808e-09,20.854626536274083,0,0,0.0,500.28263714776915,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3421.1428745012317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046475511049371636,0.0014704527734985481,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5359004611495926,0.5359004611495926,0.3972073815039774,0.3972073815039774,0.6390828077160184,0.6390828077160184,1.0674551190262775,1.0674551190262775,0.9695783378927296,0.9695783378927296,0.067459748896106,0.04383978332011388,0.21643192798653965,0.1485273917826846,0.4747800802279664,0.08190456927568111,0.030237404614206015,0.2467446067502611,0.16823913656448128,0.4291494340850705,11.009211440951034,11.009211440951034,8.2870716507704,8.2870716507704,13.574094608849109,13.574094608849109,29.044415201786407,29.044415201786407,24.856418488798028,24.856418488798028,5.094223413142998,5.039788273199605,5.971655233035875,5.457107942088456,9.707447918608338,5.138908067715434,5.018927257402538,6.263634378455464,5.5866484469674305,8.840644529005232,178.46712357862043,178.46712357862043,0.0,198.29680397624492,0.0,178.46712357862043,198.29680397624492,0,0
+2017/05/29 10:00:00,213.33159024604115,0,970.5147056238426,0,0,0,4.749589293197562,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.8033191300896145e-09,18.61228206748432,0,0,0.0,509.14012296076885,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5827.239880518617,10333.8994876238,0.0,0.0,0.0,0.0,662.174401077166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05167092179412593,0.0016348319479625457,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7818341131533736,0.7818341131533736,0.4867595880894846,0.4867595880894846,0.7566512655906364,0.7566512655906364,1.1821573366512692,1.1821573366512692,1.0273574717283864,1.0273574717283864,0.17840205120615682,0.060648761165197476,0.13882605801784909,0.27702963181802737,0.4604292806446813,0.20564701557784035,0.047630289750959016,0.16221704895320416,0.31126374471258245,0.42549358154539935,17.882262288388773,17.882262288388773,9.949874470152153,9.949874470152153,17.058622995508983,17.058622995508983,34.38012659692262,34.38012659692262,27.285638929547034,27.285638929547034,5.659765872108622,5.076154630949489,5.399295648733315,6.593907034467222,9.425179822561532,5.877061829334011,5.046966855950089,5.5453549764552434,7.013819318515829,8.775070246895481,213.33159024604115,213.33159024604115,0.0,237.03510027337904,0.0,213.33159024604115,237.03510027337904,0,0
+2017/05/29 11:00:00,243.26936534806794,0,1010.0678926231753,0,0,0,18.666559872619395,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.8569311225081816e-09,20.82889707821664,0,0,0.0,495.45778119128533,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440.97493961649104,0.0,20.393546780004932,6398.584233474782,23122.8717039705,37.262486402877386,0.0,0.0,0.0,17584.087538689677,416.7067091371465,0.0,0.0,11.555008616228266,15354.362445548893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053776762767279704,0.0017014592884608858,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9835572054794542,0.9835572054794542,0.6218033183277862,0.6218033183277862,0.9058709209367498,0.9058709209367498,1.1431697790757023,1.1431697790757023,1.0799904915624412,1.0799904915624412,0.3628264192071396,0.18856884763209275,0.2791932150652564,0.38068674957133525,0.4825353569752438,0.40423433752101257,0.19418433801565638,0.3233754333106294,0.4263511077201046,0.47160105027267046,25.432462520551383,25.432462520551383,13.112361372795263,13.112361372795263,22.328453458853303,22.328453458853303,32.518481388856515,32.518481388856515,29.606057284793764,29.606057284793764,7.739987956559688,5.737224830893183,6.618980444919515,8.017891395014331,9.863682978864873,8.405103083820478,5.781859256137196,7.174251266132401,8.790400032358207,9.64415381739957,243.26936534806794,243.26936534806794,0.0,270.2992948311866,0.0,243.26936534806794,270.2992948311866,0,0
+2017/05/29 12:00:00,227.34091902647884,0,986.4636049769542,0,0,0,23.026980717825225,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,2.803319130089614e-09,18.57223735347587,0,0,0.0,507.34384605760835,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5409.845797085768,22464.05401593449,0.0,0.0,429.2106285179498,0.0,25673.5589884248,290.42190193768994,0.0,878.9032017613854,0.0,23106.505760896696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05252005300914167,0.0016616978677123613,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.941515249787603,0.941515249787603,0.6537445344112306,0.6537445344112306,0.9519503259003835,0.9519503259003835,1.094080695430074,1.094080695430074,1.0868871457753888,1.0868871457753888,0.396806759826801,0.2590630071680937,0.3606383042347501,0.390682082493164,0.5038702797402748,0.44494025759044814,0.2781193180718406,0.40274061019549245,0.43548626481134034,0.4997229431659706,23.722995565354125,23.722995565354125,13.976033319798333,13.976033319798333,24.140837054086916,24.140837054086916,30.243907930840237,30.243907930840237,29.917403896966107,29.917403896966107,8.280406077312549,6.3933149993371075,7.706876189232943,8.179357650368274,10.306883570861359,9.13047439699497,6.6065105557102015,8.379836188561868,8.95566605685623,10.219189444243511,227.34091902647884,227.34091902647884,0.0,252.60102114053205,0.0,227.34091902647884,252.60102114053205,0,0
+2017/05/29 13:00:00,215.39527506261737,0,918.3996819131596,0,0,0,13.604468220092377,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,2.7487870225999026e-09,16.338579502961338,0,0,0.0,474.7702755063579,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4831.5415495016805,14041.026046400355,0.0,0.0,0.0,0.0,14772.317352581678,0.0,0.0,0.0,0.0,11842.266633771094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048896279329823676,0.0015470441944773637,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8957462579962446,0.8957462579962446,0.6176910105967724,0.6176910105967724,0.9171347582305863,0.9171347582305863,1.089455524350604,1.089455524350604,1.0883548520706272,1.0883548520706272,0.34633716672936027,0.21520863472699725,0.3182086346772531,0.31600232706345394,0.5104645813155333,0.41558213477976896,0.2464353180109059,0.3906153076454755,0.3625944966362872,0.5070314490951794,21.94167666019888,21.94167666019888,13.004382949490108,13.004382949490108,22.763626190586052,22.763626190586052,30.033773833211924,30.033773833211924,29.983875870030033,29.983875870030033,7.495482147553588,5.960680965079931,7.105051526693089,7.075846759417075,10.447848936945633,8.600174746844843,6.260460470740483,8.178264797245362,7.73646871406298,10.374224795896751,215.39527506261737,215.39527506261737,0.0,239.3280834029082,0.0,215.39527506261737,239.3280834029082,0,0
+2017/05/29 14:00:00,187.40267867635967,0,888.7018744127703,0,0,0,1.677805364631268,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.693325548282847e-09,14.088632367675151,0,0,0.0,480.5628205185128,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3927.291950638461,2317.0490679527056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04731514606113895,0.0014970182399969834,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7683277036575129,0.7683277036575129,0.5336112005513559,0.5336112005513559,0.8085085684371788,0.8085085684371788,1.0706964156894927,1.0706964156894927,1.0742002878618362,1.0742002878618362,0.19083517090997873,0.087481268763527,0.16382430921858385,0.15173033713041437,0.4518831351196205,0.25618326911610645,0.11998439964287444,0.23115797222288467,0.18837580711786167,0.4215405590279891,17.43715298501887,17.43715298501887,10.957541144025882,10.957541144025882,18.784092346446215,18.784092346446215,29.189109598022483,29.189109598022483,29.34594278032833,29.34594278032833,5.755079989618139,5.158474587225641,5.5562280448044845,5.477055346963482,9.261298162405026,6.362427323772238,5.298200869868936,6.10868531189513,5.735713884859493,8.70481093179228,187.40267867635967,187.40267867635967,0.0,208.22519852928852,0.0,187.40267867635967,208.22519852928852,0,0
+2017/05/29 15:00:00,180.04023626787472,0,878.5771470578752,0,0,0,1.1902433654466547,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.693325548282847e-09,14.081784548683196,0,0,0.0,470.4380931636178,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3752.971898311439,889.7481538467264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046776098077311284,0.0014799631375361161,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7114467299551727,0.7114467299551727,0.5851615110744451,0.5851615110744451,0.778814642700848,0.778814642700848,1.0682924494384742,1.0682924494384742,1.0734790246189285,1.0734790246189285,0.09874523343874295,0.06927175868326639,0.09079164880598711,0.06749934510425697,0.3673653212623348,0.148833755632469,0.10217577790819285,0.14839247025576627,0.08944248988774653,0.3318391563198151,15.648279609802813,15.648279609802813,12.176108280807995,12.176108280807995,17.78208017141776,17.78208017141776,29.081758770938777,29.081758770938777,29.313623722898654,29.313623722898654,5.201930663463628,5.099354290506582,5.170699675635191,5.094334078975436,7.809323499755038,5.4589974473971665,5.216211696492479,5.456277050401326,5.165662401124806,7.290053000328214,180.04023626787472,180.04023626787472,0.0,200.04470696430525,0.0,180.04023626787472,200.04470696430525,0,0
+2017/05/29 16:00:00,206.8135087172801,0,925.5992495607774,0,0,0,5.1097508870164265,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.693325548282847e-09,14.051071301536668,0,0,0.0,464.2246668977036,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4369.523897057736,13297.876429802702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0492795896441506,0.0015591718656333378,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7718111036983586,0.7718111036983586,0.8553886495165861,0.8553886495165861,0.8755168809571092,0.8755168809571092,1.0758324312984473,1.0758324312984473,1.0996556458590339,1.0996556458590339,0.13520974249813913,0.24014728742049768,0.1491633381133098,0.10984665149776733,0.4240261019251216,0.17059491792223058,0.2872241772839838,0.20105765166163114,0.12042058845811213,0.3890318475126644,17.551206047028685,17.551206047028685,20.441647600565005,20.441647600565005,21.181409194723685,21.181409194723685,29.41914493727809,29.41914493727809,30.498167972640587,30.498167972640587,5.378747398201455,6.196804371926305,5.461034517939112,5.249912647590506,8.748909665396525,5.603213550215116,6.71377679719842,5.838285506932522,5.300374348418288,8.152405343739815,206.8135087172801,206.8135087172801,0.0,229.79278746364454,0.0,206.8135087172801,229.79278746364454,0,0
+2017/05/29 17:00:00,211.18269675488094,0,954.093036267539,0,0,0,1.9589306536543545,0.0,17.346139882338,0.0,133.89528835348938,0,39.380909295966944,2.8033191300896145e-09,18.601428566628872,0,0,0.0,492.71845360446537,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3953.6050212774403,3199.0196246830697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05079661995395636,0.001607169647178236,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6651327236528192,0.6651327236528192,0.587388175957245,0.587388175957245,0.783094638865127,0.783094638865127,1.059053503342746,1.059053503342746,1.1130017365445815,1.1130017365445815,0.04284562610411542,0.05064056626798396,0.07669163340106075,0.0909801191015656,0.4146014858650624,0.06734296596022389,0.07412224637258989,0.11916885607408167,0.09755913893724667,0.37730663861392166,14.294660018161835,14.294660018161835,12.231340031618117,12.231340031618117,17.92419963065292,17.92419963065292,28.671096335062103,28.671096335062103,31.111135454279875,31.111135454279875,5.038004025666467,5.053091855533182,5.1217842630668855,5.171409367997072,8.583099370330288,5.093897399764643,5.1137587556283535,5.2941583224504285,5.197106713345818,7.964253720748786,211.18269675488094,211.18269675488094,0.0,234.64744083875658,0.0,211.18269675488094,234.64744083875658,0,0
+2017/05/29 18:00:00,195.4934422422515,0,966.0245768802847,0,0,0,0.8532420123838848,0.0,18.71310606031462,0.0,110.93442390708215,0,39.380909295966944,2.9614317691566906e-09,25.611760963542423,0,0,0.0,540.140346729755,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3508.920469200774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05143186401395062,0.0016272683264348176,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5573262727188454,0.5573262727188454,0.43221339992453256,0.43221339992453256,0.6817286452075173,0.6817286452075173,1.0477482085871166,1.0477482085871166,1.084454325546458,1.084454325546458,0.01703267725261868,-0.010325507604849932,0.06799740259425378,-0.03375643385669643,0.4542821781033854,0.02695536568710069,-0.009833342649870142,0.09993505512135682,-0.05235638464022574,0.41397272051859335,11.503816080959368,11.503816080959368,8.896044118631423,8.896044118631423,14.769048085887476,14.769048085887476,28.172744938817942,28.172744938817942,29.807386525398556,29.807386525398556,5.006005543673055,5.002207017300137,5.095731629631658,5.023589360877921,9.306985072093639,5.015041303092673,5.002001635835242,5.206828442623632,5.056751002003097,8.572172787496399,195.4934422422515,195.4934422422515,0.0,217.21493582472388,0.0,195.4934422422515,217.21493582472388,0,0
+2017/05/29 19:00:00,189.65299079999417,0,951.3503484110788,0,0,0,0.7630702548858803,0.0,20.72136573114024,0.0,101.68988858149199,0,39.380909295966944,1.4461197916974941e-05,27.097742475311204,0,0,0.008530921802944564,560.9479398512905,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3117.8571780059947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05065059722095124,0.0016025495896921952,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4711878743328861,0.4711878743328861,0.31780969935716125,0.31780969935716125,0.6083755934414832,0.6083755934414832,1.0393656633432438,1.0393656633432438,1.0252160812482578,1.0252160812482578,-0.026856296168313466,0.08529313291009985,0.033337343964566744,0.07018632716342345,0.44646080909774793,-0.02807686707780228,0.07895064137370178,0.05589601267758603,0.04648971662568367,0.4033641335772979,9.635959526343996,9.635959526343996,7.099755569869103,7.099755569869103,12.762498698695396,12.762498698695396,27.806217959269546,27.806217959269546,27.193363901290425,27.193363901290425,5.014930939577283,5.150643468070868,5.02300723870394,5.101995663194586,9.158948666554494,5.0163189984710215,5.129066440625863,5.064684964273042,5.0447442003086,8.39037168285482,189.65299079999417,189.65299079999417,0.0,210.72554533332686,0.0,189.65299079999417,210.72554533332686,0,0
+2017/05/29 20:00:00,194.35290706441842,0,873.2958355023218,0,0,0,0.6436948398792078,0.0,24.999863057464953,0.0,106.16168237671882,0,39.380909295966944,1.741651135745618e-05,23.166740077877183,0,0,0.010275522095261724,518.3820348547853,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2605.355197623633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046494917138190935,0.001471066768621631,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3646126325259612,0.3646126325259612,0.19562738229130558,0.19562738229130558,0.5121272593616799,0.5121272593616799,1.0235594105403572,1.0235594105403572,0.9384650737108071,0.9384650737108071,-0.08585658551994461,0.11603085788273361,-0.012499385807173514,0.11082831016603645,0.41046340938869014,-0.09812911719590912,0.12084519729800801,0.002158497949838612,0.10255115324468196,0.36420879050312543,7.767169118876765,7.767169118876765,5.793542068157436,5.793542068157436,10.48368856009246,10.48368856009246,27.12209260019263,27.12209260019263,23.601674340840333,23.601674340840333,5.152641021086396,5.278861423841676,5.003234157979676,5.254401799504265,8.511499645010574,5.199417576724883,5.302497720329896,5.000096445997116,5.217804002739797,7.761011883307958,194.35290706441842,194.35290706441842,0.0,215.94767451602047,0.0,194.35290706441842,215.94767451602047,0,0
+2017/05/29 21:00:00,194.5387516921201,0,859.6050894399983,0,0,0,0.5230534873816284,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.790352024398987e-05,25.551708053052913,0,0,0.01646552049295955,540.175451306608,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2097.5267634474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04576601167700597,0.0014480047079187576,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2762335354338029,0.2762335354338029,0.10067356421835938,0.10067356421835938,0.4271990393379621,0.4271990393379621,1.0072886111076294,1.0072886111076294,0.843016866590693,0.843016866590693,0.011974385405910672,0.05357555308315849,0.013580221642652037,0.0514281439944517,0.29480641337289837,-0.0112054583154721,0.049102645263797005,-0.017234162072176918,0.03605330514328871,0.24465990449814415,6.584730880387696,6.584730880387696,5.2098979970986505,5.2098979970986505,8.805589323965478,8.805589323965478,26.427548809504117,26.427548809504117,19.9952878304116,19.9952878304116,5.002968179063444,5.059425120698734,5.003817667930903,5.0547562961058645,6.805775109630545,5.002599216971305,5.049915748888139,5.006148468826595,5.026908924925863,6.242319012569084,194.5387516921201,194.5387516921201,0.0,216.1541685468001,0.0,194.5387516921201,216.1541685468001,0,0
+2017/05/29 22:00:00,136.67328557476992,0,655.1707241767222,0,0,0,0.12716455828372653,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.1912617256882464e-05,20.79314149854699,0,0,0.012931593440502823,495.45120627683303,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,494.44373883053277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034881774644491895,0.001103635035149074,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.08580926548098036,0.08580926548098036,-0.08425247802648007,-0.08425247802648007,0.23070085136571564,0.23070085136571564,0.9523250684275515,0.9523250684275515,0.5929295070848364,0.5929295070848364,0.022347511532592974,0.022682809290909142,0.003530328768381952,0.026620951449317143,0.16166773205294846,0.0014746480907946672,0.007221323363345128,-0.07961338322267335,-0.03931737247707536,0.10451908961055544,5.152472755448855,5.152472755448855,5.146988759481431,5.146988759481431,6.10429492361223,6.10429492361223,24.155922415973166,24.155922415973166,12.369725094173859,12.369725094173859,5.010338294924182,5.0106508570134025,5.000257995055179,5.01467039488962,5.541663554672368,5.000045015042417,5.001079482082915,5.131243016436727,5.032002208050173,5.226247529853779,136.67328557476992,136.67328557476992,0.0,151.8592061941888,0.0,136.67328557476992,151.8592061941888,0,0
+2017/05/29 23:00:00,88.23457813541222,0,513.6319743211656,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,4.268537880012669e-05,11.865560590581554,0,0,0.025195846304097623,460.37124970604526,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02734614676348645,0.0008652130217599977,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1428498354640295,-0.1428498354640295,-0.30780749740703717,-0.30780749740703717,-0.0025749533026389435,-0.0025749533026389435,0.8206616819422534,0.8206616819422534,0.3006662725924346,0.3006662725924346,-0.047529866263528196,-0.10378212257231825,-0.04268588668034291,-0.09706157905451365,0.08410219587647312,-0.07939556447461356,-0.13082085181041433,-0.065902704186059,-0.14670656664483775,0.02421314558221503,5.422798734234405,5.422798734234405,6.96917702695589,6.96917702695589,5.00013725231544,5.00013725231544,19.204946282695715,19.204946282695715,6.878539063674523,6.878539063674523,5.046768995293931,5.22306670409516,5.037721153408981,5.195100479060315,5.146464690847466,5.130525646911906,5.354540070937048,5.08992321627251,5.445958602595397,5.012136534574481,88.23457813541222,88.23457813541222,0.0,98.03842015045802,0.0,88.23457813541222,98.03842015045802,0,0
+2017/05/30 00:00:00,39.34184852216874,0,509.53060736651315,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5795774921418983e-09,9.544527523165979,0,0,0.0,456.29507859769706,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02712778694891091,0.0008583042694361742,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.12627960873061594,0.12627960873061594,-0.01746275761493664,-0.01746275761493664,0.23418460233944166,0.23418460233944166,0.8295344616932312,0.8295344616932312,0.6004964392464944,0.6004964392464944,0.03517122060115171,0.019678697878091157,0.04002202585105104,0.025304625418040454,0.3896806033215395,-0.011183806386142359,-0.029497579288226876,-0.004499889731220716,-0.03686504216944546,0.3014187671602535,5.330335692591447,5.330335692591447,5.006312660548275,5.006312660548275,6.137975580405268,6.137975580405268,19.516127537090256,19.516127537090256,12.560848388441073,12.560848388441073,5.025608246143989,5.00801643187404,5.03315966968043,5.013255409547426,8.162987204639265,5.0025891818608414,5.018012357523858,5.000419164963006,5.028134344536596,6.887988223755968,39.34184852216874,39.34184852216874,0.0,43.713165024631934,0.0,39.34184852216874,43.713165024631934,0,0
+2017/05/30 01:00:00,23.7220689230082,0,37.81236119540628,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249734993304108,0,0,0.0,2.3220086828621453,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0020131581179114503,6.369491956375234e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.20040130634337103,0.20040130634337103,0.07130869912592423,0.07130869912592423,0.2850421117055592,0.2850421117055592,0.7674146862942547,0.7674146862942547,0.7647941256765908,0.7647941256765908,0.0036425038060091826,-0.0007118906537681571,0.0018355378225373671,0.0053471180189233825,0.5089351385513007,-0.03938139590563274,-0.043923552807385406,-0.04231186396390651,-0.049330058467296614,0.3971768710737548,5.8328119455762675,5.8328119455762675,5.105284582926416,5.105284582926416,6.687750726353229,6.687750726353229,17.407344694902065,17.407344694902065,17.321985956564916,17.321985956564916,5.000274650960947,5.000010490771501,5.000069744116487,5.000591862648051,10.414986812600446,5.03210652335666,5.039940487280873,5.037062955317921,5.050379228085291,8.286563774472427,23.7220689230082,23.7220689230082,0.0,26.357854358898003,0.0,23.7220689230082,26.357854358898003,0,0
+2017/05/30 02:00:00,28.344412562939223,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250494764663266,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2266755801299721,0.2266755801299721,0.10305146073871498,0.10305146073871498,0.304035130164114,0.304035130164114,0.732823848156696,0.732823848156696,0.830293236620462,0.830293236620462,-0.01482612652471636,-0.013500547863908212,-0.021816363234045778,-0.007015876159064017,0.5395770062836583,-0.06193894292777772,-0.06292092671705475,-0.0697331317435015,-0.06763998921024457,0.4141091566856206,6.066012863556324,6.066012863556324,5.219935353697153,5.219935353697153,6.921028555901785,6.921028555901785,16.3042867564223,16.3042867564223,19.54289217535559,19.54289217535559,5.004550305212746,5.003773003232581,5.009852690289819,5.001018932992906,11.092668815497774,5.079429732542522,5.081968714429422,5.100682451859271,5.094727684862832,8.574542314001832,28.344412562939223,28.344412562939223,0.0,31.493791736599135,0.0,28.344412562939223,31.493791736599135,0,0
+2017/05/30 03:00:00,23.72221117293182,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251157492540274,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.238905591176237,0.238905591176237,0.1202976128655132,0.1202976128655132,0.3102184956827522,0.3102184956827522,0.6997506253411366,0.6997506253411366,0.8550202599932398,0.8550202599932398,-0.016883685423272104,-0.011990573100347294,-0.027178223233994197,-0.005886086560527072,0.5704870712157781,-0.07298066290483003,-0.07130076578615122,-0.08432086692702807,-0.07603892337262212,0.43384247224259936,6.184430553476517,6.184430553476517,5.299760774849958,5.299760774849958,7.000265125358041,7.000265125358041,15.29769074848754,15.29769074848754,20.428264617668518,20.428264617668518,5.0059009359429325,5.002976209665718,5.015291051986253,5.0007171909498,11.817494065426018,5.11028083340662,5.105261152362289,5.14722755755875,5.119719579790427,8.925663509399854,23.72221117293182,23.72221117293182,0.0,26.35801241436869,0.0,23.72221117293182,26.35801241436869,0,0
+2017/05/30 04:00:00,41.70805424151919,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,1.6747972682608556,0.0,0.5251234236242223,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2893339306141685,0.2893339306141685,0.17393958888750663,0.17393958888750663,0.3567151830679305,0.3567151830679305,0.7191716917704035,0.7191716917704035,0.8818623444072305,0.8818623444072305,-0.03497235421163107,-0.03025615376710583,-0.04503576590871723,-0.023578387121474597,0.4353040274550517,-0.08917765093720832,-0.0873037444426624,-0.10030841942597014,-0.09088222806796424,0.383522296425556,6.7391314968612335,6.7391314968612335,5.627129867530229,5.627129867530229,7.648019805055839,7.648019805055839,15.883068286554689,15.883068286554689,21.418082451523404,21.418082451523404,5.025319458858846,5.0189507378998,5.041988993898769,5.011508530345765,8.952334135929163,5.164682455101172,5.1578318419645655,5.208377472050714,5.171040571480233,8.063263756819012,41.70805424151919,41.70805424151919,0.0,46.34228249057688,0.0,41.70805424151919,46.34228249057688,0,0
+2017/05/30 05:00:00,74.8502358333949,0,212.9421150752648,0,0,0,0.04556417049796384,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,1.4410495191115507,0.0,0.5775791138295258,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,180.88391612844612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5647517527367774,0.5647517527367774,0.4534605887718773,0.4534605887718773,0.6288125515094444,0.6288125515094444,0.9364210889629335,0.9364210889629335,0.9796690559092041,0.9796690559092041,0.047613401629035476,0.05169430780919018,0.03600955388774368,0.057667915218623536,0.6144595030946315,-0.005425504182837535,-0.004906525749437833,-0.018889733910304664,-0.009017835052253495,0.5378279292917938,11.679873415298928,11.679873415298928,9.29131100045096,9.29131100045096,13.298096769936805,13.298096769936805,23.520581288051503,23.520581288051503,25.271481050662473,25.271481050662473,5.046933552691485,5.055324607780676,5.0268436519446595,5.068851609826183,12.920046965074846,5.000609342703598,5.000498344271051,5.007386513177337,5.00168339873575,11.052891840691231,74.8502358333949,74.8502358333949,0.0,83.16692870377211,0.0,74.8502358333949,83.16692870377211,0,0
+2017/05/30 06:00:00,87.03305914475595,0,671.3678574063296,0,0,0,0.19681659869273285,0.0,10.576478033044985,0.0,73.80580873715317,0,1.928926548747825,2.521292546526511e-09,0.5250292245959308,0,0,0.0,440.68056607479264,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,809.8085933102927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03574412201496075,0.001130919104845006,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8455123692095482,0.8455123692095482,0.7273740677679572,0.7273740677679572,0.9110710530387027,0.9110710530387027,1.0842394152816492,1.0842394152816492,1.017111893888926,1.017111893888926,0.1685942174518897,0.16737160071905785,0.15591180850484537,0.17248012730482587,0.8218732064591471,0.1094685812980168,0.1083889432275652,0.0959391988417106,0.10447373856088957,0.7200383781191421,20.084809778592557,20.084809778592557,16.13517993574314,16.13517993574314,22.528721344328105,22.528721344328105,29.79767769059066,29.79767769059066,26.845686586446305,26.845686586446305,5.589130447884102,5.580606523535863,5.503739884751013,5.616636487562317,19.247241314307317,5.2481943979450705,5.243320351090446,5.190612609053815,5.226051138890469,15.909570297136327,87.03305914475595,87.03305914475595,0.0,96.70339904972883,0.0,87.03305914475595,96.70339904972883,0,0
+2017/05/30 07:00:00,144.78680777617265,0,808.9377182740999,0,0,0,0.0,0.0,9.009607790517718,0.0,69.33401494192633,0,39.380909295966944,2.522161374555041e-05,27.062250526147913,0,0,0.014889170893292293,542.7451852591257,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04306844330647393,0.0013626555250353899,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4023480978328179,0.4023480978328179,0.27196496872567405,0.27196496872567405,0.4769337263101536,0.4769337263101536,1.0417547362598187,1.0417547362598187,0.5235933486303592,0.5235933486303592,0.03605757464155202,-0.05294301821981249,0.0033561436439836765,-0.04611623838502928,0.26567585661125864,-0.014670385388162272,-0.07523477486450295,-0.018948464724850136,-0.07021451855990744,0.2126849504300353,8.373212554453644,8.373212554453644,6.535985187590271,6.535985187590271,9.750574344272607,9.750574344272607,27.910419564104302,27.910419564104302,10.734100304205242,10.734100304205242,5.026915298883068,5.058030034474228,5.000233164343143,5.044028108739681,6.46556440049828,5.004455208977532,5.1172001478502125,5.0074325167198594,5.102077633888186,5.938238800667861,144.78680777617265,144.78680777617265,0.0,160.87423086241407,0.0,144.78680777617265,160.87423086241407,0,0
+2017/05/30 08:00:00,160.286943391296,0,859.4794083843623,0,0,0,0.17959066459862846,0.0,11.972452316828308,0.0,83.2008179303116,0,39.380909295966944,3.033851959727316e-05,25.553142845070912,0,0,0.01791249416115552,540.048323277304,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,717.8628454817808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045759320324511105,0.0014477929981900773,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.03239067624635172,0.03239067624635172,-0.13231070874523992,-0.13231070874523992,0.1737101536228357,0.1737101536228357,1.0444725457821726,1.0444725457821726,0.46692480779468637,0.46692480779468637,-0.023544970949050486,-0.04214077447576315,-0.022840382342895333,-0.03757040272480208,0.1479885797332667,-0.0311553734199539,-0.10943625516988335,-0.06034313703810912,-0.08966169173637886,0.07799030367216576,5.021719074965645,5.021719074965645,5.362667690128617,5.362667690128617,5.625474364141752,5.625474364141752,28.029212270403093,28.029212270403093,9.551842066225376,9.551842066225376,5.011475932010384,5.036763806800096,5.010799353334349,5.029221335129122,5.4537942888188695,5.0200939670595375,5.248047757980174,5.075388916027464,5.166475683708683,5.12594482051469,160.286943391296,160.286943391296,0.0,178.09660376810666,0.0,160.286943391296,178.09660376810666,0,0
+2017/05/30 09:00:00,178.4958284001666,0,867.90433906634,0,0,0,0.7775352896006369,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,3.51593212967372e-05,20.863824568237664,0,0,0.01934456205252466,495.23629312257395,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3239.273570103643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04620786987442191,0.0014619847932844272,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.18133992750179595,0.18133992750179595,-0.03137272989105677,-0.03137272989105677,0.28925672612086545,0.28925672612086545,1.1270734217680998,1.1270734217680998,0.6168894268095076,0.6168894268095076,0.1251857083405167,0.05857633691576578,-0.034746376797480154,0.0884994860341785,0.2273694476004918,0.04304489917452144,0.01977251776802186,0.0802323551857798,0.05628057691505463,0.16433066427499976,5.681705611742075,5.681705611742075,5.020375329923354,5.020375329923354,6.738200352145313,6.738200352145313,31.763876187884335,31.763876187884335,12.983420926039358,12.983420926039358,5.324633460726503,5.071038219468662,5.024993289835336,5.1621864038441885,6.072563368994196,5.038358387189248,5.008093053492914,5.133292293685287,5.065578217063518,5.559675829841154,178.4958284001666,178.4958284001666,0.0,198.32869822240733,0.0,178.4958284001666,198.32869822240733,0,0
+2017/05/30 10:00:00,209.7724737693346,0,959.4600033213051,0,0,0,1.140131599093325,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,4.290841273220928e-06,18.557842796483285,0,0,0.00187142380058352,498.0835492344308,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4855.268312301847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05108236125524714,0.0016162103027729591,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3991522030631844,0.3991522030631844,0.144528604161852,0.144528604161852,0.47369259602648806,0.47369259602648806,1.1324084320102414,1.1324084320102414,0.8255148991515063,0.8255148991515063,-0.005661907303529625,0.020603289787446,-0.051361290290890975,-0.01788850174875112,0.2511537248742359,0.024684559262142792,0.039076731368937676,-0.035347150886263626,-0.01627083568690457,0.20604970339348652,8.319527288204043,8.319527288204043,5.43280372470484,5.43280372470484,9.685747209395245,9.685747209395245,32.01305371600017,32.01305371600017,19.374746213630175,19.374746213630175,5.000663600906634,5.008787437681789,5.054614011597977,5.006624224058768,6.309317733406459,5.01261372839096,5.031611642504629,5.025865091771848,5.0054803174883205,5.880506260869325,209.7724737693346,209.7724737693346,0.0,233.08052641037176,0.0,209.7724737693346,233.08052641037176,0,0
+2017/05/30 11:00:00,238.93582378470893,0,1025.2710676684276,0,0,0,14.2480524550296,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.856955333946684e-09,20.913862932447472,0,0,0.0,510.6609562365376,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6348.5120597491195,15313.536079071993,13.798290393759055,0.0,0.0,0.0,14060.3129186929,111.99130606177984,0.0,0.0,0.0,12373.81074351372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05458619106778206,0.0017270690356707122,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8020476798757387,0.8020476798757387,0.43943856995629793,0.43943856995629793,0.7652010656824805,0.7652010656824805,1.1455802564497795,1.1455802564497795,1.0118577520541578,1.0118577520541578,0.30176362860837147,0.16575167932060397,0.21089691303875016,0.23995898898815882,0.4147141189322298,0.3351336424177247,0.20873707948336115,0.22413861295596813,0.2525321492027488,0.4025335338526256,18.562892680203205,18.562892680203205,9.028278664642102,9.028278664642102,17.335221863787552,17.335221863787552,32.632203791553096,32.632203791553096,26.621588435004114,26.621588435004114,6.892326689084953,5.569408652301334,5.922499880008019,6.194923765824697,8.585058478848168,7.335950376154585,5.903666769626341,6.04223428331008,6.323767418598251,8.376340959956181,238.93582378470893,238.93582378470893,0.0,265.4842486496766,0.0,238.93582378470893,265.4842486496766,0,0
+2017/05/30 12:00:00,224.43427681097177,0,971.613287838188,0,0,0,20.364929798562006,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.803343126976951e-09,18.557649127418514,0,0,0.0,492.493528918842,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5798.541848005847,16939.13328678226,459.8041842972963,0.0,383.13902757579126,0.0,22585.035123776215,1014.8964717240397,0.0,884.512470694915,0.0,20954.894015641363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05172941112494485,0.0016366825096192294,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9462918278265906,0.9462918278265906,0.5269567110845916,0.5269567110845916,0.8531166399859532,0.8531166399859532,1.1095749285977319,1.1095749285977319,1.066112345304032,1.066112345304032,0.4420460665197121,0.26545798339889065,0.34336529945602223,0.3110722486276014,0.491244672986509,0.4970590620155714,0.31698669444682,0.37472976554986864,0.3473484178782244,0.49298997755005863,23.913725444921155,23.913725444921155,10.808633127571852,10.808633127571852,20.359199020806557,20.359199020806557,30.9531741988755,30.9531741988755,28.984581570449848,28.984581570449848,9.076551625751193,6.4631546750351845,7.452644758331587,7.01133264612082,10.0422314801489,10.163254535558494,7.088851296067645,7.92368982735222,7.510144237352762,10.078405598213507,224.43427681097177,224.43427681097177,0.0,249.3714186788575,0.0,224.43427681097177,249.3714186788575,0,0
+2017/05/30 13:00:00,216.69154713394744,0,933.1838695780002,0,0,0,15.113790633669144,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.748810787547935e-09,16.355532230901144,0,0,0.0,489.55446317119856,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5208.172869372909,13146.791214098863,0.0,0.0,0.0,0.0,16431.37097670093,749.6907410988209,0.0,0.0,0.0,15177.433870944962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04968340043184615,0.0015719481574766867,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9913928685684203,0.9913928685684203,0.59160344976895,0.59160344976895,0.8713053754076049,0.8713053754076049,1.0965609022177494,1.0965609022177494,1.0794111442226646,1.0794111442226646,0.47990803784746955,0.2990186635217504,0.35447432040859356,0.2932922519036549,0.5085275469558973,0.5419075557227985,0.3664727074204509,0.4186467738918035,0.3382222721979136,0.5126527445557121,25.758647466910958,25.758647466910958,12.336487838037954,12.336487838037954,21.025242417205035,21.025242417205035,30.35689299607931,30.35689299607931,29.579978306092357,29.579978306092357,9.810463363279538,6.857933443440757,7.614695389523064,6.787209146494234,10.406246231620074,11.145875419942541,7.795618730834931,8.65380292093559,7.379398347414849,10.49504044713666,216.69154713394744,216.69154713394744,0.0,240.76838570438605,0.0,216.69154713394744,240.76838570438605,0,0
+2017/05/30 14:00:00,191.38603693917088,0,872.0624418320681,0,0,0,5.873552273599357,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.6933490635792465e-09,14.04363331513852,0,0,0.0,463.9233879378106,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4731.180340676797,8892.84453943401,0.0,0.0,0.0,0.0,3873.3445644358053,0.0,0.0,0.0,0.0,2484.5334483995057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04642925034560371,0.0014689891170777015,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9421592326026392,0.9421592326026392,0.7024587795539434,0.7024587795539434,0.8614393970855955,0.8614393970855955,1.0915298687727812,1.0915298687727812,1.0649094834278645,1.0649094834278645,0.4016512130924446,0.3187479338208253,0.27974697623829403,0.2261325345448646,0.492648297080684,0.4919458388804533,0.405673571092095,0.36070188457964975,0.2752051433109545,0.494171086746728,23.748657261200364,23.748657261200364,15.378342134761326,15.378342134761326,20.662266534484985,20.662266534484985,30.127925909024583,30.127925909024583,28.931036714416578,28.931036714416578,8.36146888999231,7.112221564229898,6.6254296214915485,6.0609002860273336,10.071313390308475,10.056748412876871,8.42953854039844,7.7078354457812,6.572916736458865,10.102960534565796,191.38603693917088,191.38603693917088,0.0,212.6511521546343,0.0,191.38603693917088,212.6511521546343,0,0
+2017/05/30 15:00:00,182.2994069406897,0,880.8889590904049,0,0,0,3.506393555087856,0.0,16.568294279967066,0.0,108.75639138185811,0,39.380909295966944,2.6933490635792465e-09,14.087418425116303,0,0,0.0,472.74990519614744,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4379.5662528288085,7933.590462229024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04689918066229774,0.0014838573847294487,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8663556097958929,0.8663556097958929,0.8504932327009715,0.8504932327009715,0.8429380727680723,0.8429380727680723,1.0746183490001875,1.0746183490001875,1.064473285147241,1.064473285147241,0.29544026761958064,0.3533575915096458,0.20368163562376168,0.15309960611989112,0.45023221101003275,0.3773057120781108,0.45204062937722533,0.27739393515649563,0.19359434389500066,0.4393998360886457,20.84263472374336,20.84263472374336,20.26426536303063,20.26426536303063,19.992465463234055,19.992465463234055,29.36468404074793,29.36468404074793,28.911632246593143,28.911632246593143,6.813575905937256,7.598168023204025,5.860348120969732,5.485713293181632,9.230002120256813,7.964239084753814,9.264289857485181,6.598115065648528,5.777107763528676,9.027563781281799,182.2994069406897,182.2994069406897,0.0,202.5548966007663,0.0,182.2994069406897,202.5548966007663,0,0
+2017/05/30 16:00:00,207.00067771387106,0,939.0796163401303,0,0,0,5.266893196104618,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.6933490635792465e-09,14.081097989039408,0,0,0.0,477.70503367705663,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4663.463454955206,13617.947864284668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04999729435648089,0.0015818795424500153,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8582705401690307,0.8582705401690307,1.0362310007614526,1.0362310007614526,0.894759439133152,0.894759439133152,1.0781581563765195,1.0781581563765195,1.0818062435742675,1.0818062435742675,0.256619042925064,0.4416331582932563,0.20589024705085943,0.12836631054128467,0.4568759795897864,0.3251940872087479,0.5524565985978169,0.2754855516766537,0.16128208506936012,0.44103212603312447,20.546536216134058,20.546536216134058,27.66981323866807,27.66981323866807,21.90420165653032,21.90420165653032,29.523615918243678,29.523615918243678,29.68786817490195,29.68786817490195,6.367078971141979,9.068887924258632,5.879141523203202,5.341351121136839,9.356659583134018,7.198878040961901,11.38965473639901,6.576133639936202,5.539079512928325,9.057745679662304,207.00067771387106,207.00067771387106,0.0,230.00075301541227,0.0,207.00067771387106,230.00075301541227,0,0
+2017/05/30 17:00:00,216.82111288241654,0,953.8553698269839,0,0,0,8.33206165909206,0.0,16.630907673226492,0.0,133.89528835348938,0,39.380909295966944,2.803343126976951e-09,18.58194589783832,0,0,0.0,492.4807871639102,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,20.1587555627128,0.0,4660.449467981415,14070.202504461015,0.0,0.0,0.0,0.0,5176.509735991363,0.0,476.4941328246196,0.0,0.0,3726.756538829586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0507839664166201,0.0016067692980771596,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8337263901277121,0.8337263901277121,1.109438001441242,1.109438001441242,0.9610805171468958,0.9610805171468958,1.0730938343433618,1.0730938343433618,1.0945899324559845,1.0945899324559845,0.2625372157523583,0.5161284428918017,0.2806125907470773,0.13321349872757007,0.4867530407964223,0.3221529852254863,0.6118520765747937,0.3556464939114814,0.1566404351016753,0.4789205057241652,19.664292896406835,19.664292896406835,30.946870624791302,30.946870624791302,24.50994531179441,24.50994531179441,29.296371244468588,29.296371244468588,30.26708887652711,30.26708887652711,6.431043335811054,10.570425604939302,6.635536594188196,5.367637601360883,9.949740282849802,7.157776645088305,12.852328627365495,7.632100410811148,5.508464219260446,9.79053667305682,216.82111288241654,216.82111288241654,0.0,240.91234764712948,0.0,216.82111288241654,240.91234764712948,0,0
+2017/05/30 18:00:00,205.4997490801097,0,965.9183336057424,0,0,0,12.84518885214438,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.9614563588298626e-09,25.540929666877624,0,0,0.0,540.0341034552127,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4400.90869737024,11637.006374642719,0.0,77.22092157327862,0.0,0.0,13724.064526587572,0.0,899.3116162861709,322.54096887006597,0.0,11832.67117214724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051426207543318884,0.0016270893596469146,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.776519934322043,0.776519934322043,1.055432154367751,1.055432154367751,0.9909307080368258,0.9909307080368258,1.0586018235788157,1.0586018235788157,1.0910525108540345,1.0910525108540345,0.2866993576673689,0.5481761019449997,0.37590617503465407,0.15010916156825632,0.5070478046395044,0.3367437285558479,0.6152446424465908,0.4449380232030311,0.16391326616707938,0.5035756062871156,17.70620419583834,17.70620419583834,28.510962219477932,28.510962219477932,25.739343289353087,25.739343289353087,28.65109764525569,28.65109764525569,30.10624605725988,30.10624605725988,6.7074987794646574,11.290154655383148,7.9421731541704474,5.466905543267316,10.374574335373879,7.358549027262114,12.940495878603514,9.130432628382579,5.556832981051116,10.300628260821924,205.4997490801097,205.4997490801097,0.0,228.3330545334552,0.0,205.4997490801097,228.3330545334552,0,0
+2017/05/30 19:00:00,190.61740593615843,0,931.8583404048672,0,0,0,4.604240803042878,0.0,17.844624777333102,0.0,101.68988858149199,0,39.380909295966944,3.0123636809040873e-09,27.0977424753112,0,0,0.0,541.4644627668819,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3681.339792325794,2365.911346955288,0.0,0.0,0.0,0.0,5954.063975039182,0.0,0.0,0.0,0.0,3526.4142545985396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049612828276840264,0.0015697153036851503,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6514217311427382,0.6514217311427382,0.7270670736413672,0.7270670736413672,0.8752057678469695,0.8752057678469695,1.0369712598467498,1.0369712598467498,1.0789971074817661,1.0789971074817661,0.19530353974324657,0.4142556306801165,0.3013361372960097,0.05468309400410358,0.5107190798132016,0.23477608000144704,0.49127958998383425,0.3785679093707691,0.05976494302993867,0.5052833556887408,13.911734362154547,13.911734362154547,16.1256918925763,16.1256918925763,21.1698478405535,21.1698478405535,27.701993136190055,27.701993136190055,29.561347871461308,29.561347871461308,5.7909126800249595,8.577087058226866,6.8869494609344315,5.061907780784409,10.453326994197539,6.143744516056103,10.042953899095977,7.984211312433601,5.07395088938334,10.336932415305512,190.61740593615843,190.61740593615843,0.0,211.7971177068427,0.0,190.61740593615843,211.7971177068427,0,0
+2017/05/30 20:00:00,194.4368774849424,0,873.0813099454169,0,0,0,0.7277668184013898,0.0,24.999863057464953,0.0,106.16168237671882,0,39.380909295966944,2.9096566605375248e-09,23.16665593348065,0,0,0.0,518.1777848199756,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2964.7341806368936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04648349563864082,0.0014707054003373072,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5119739795873671,0.5119739795873671,0.5160029914292531,0.5160029914292531,0.6937014494552404,0.6937014494552404,1.014967407357797,1.014967407357797,1.0027180032405978,1.0027180032405978,0.10058093410041602,0.2446155306692327,0.18605979583955967,-0.05156816184984909,0.49188013346173626,0.12437001310944998,0.29629879190949115,0.2440504455613403,0.038695067668049726,0.462184319433557,10.480379556501163,10.480379556501163,10.567695570960666,10.567695570960666,15.118684220921665,15.118684220921665,26.754095744865367,26.754095744865367,26.234234008584835,26.234234008584835,5.2095117455788085,6.241867290082922,5.717707624735468,5.05505489565806,10.055387146955184,5.32041382092963,6.82416876884453,6.236121997314058,5.030997112959341,9.459223761645902,194.4368774849424,194.4368774849424,0.0,216.04097498326934,0.0,194.4368774849424,216.04097498326934,0,0
+2017/05/30 21:00:00,194.5264341743732,0,859.4620594406396,0,0,0,0.5087592115385186,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,4.7096350789123385e-06,25.553708005034302,0,0,0.0027799181697666414,540.0461069095727,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2036.1350230875282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045758396653896825,0.001447763773895693,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.35082501171838093,0.35082501171838093,0.3150260043295349,0.3150260043295349,0.5246224827372966,0.5246224827372966,0.9918349126406394,0.9918349126406394,0.8617917879913897,0.8617917879913897,0.08022373463972983,0.17229557929482797,0.002492144145354526,-0.023413159770119332,0.32400732216624495,0.09258665237835555,0.20720141223729924,0.03963651213238952,-0.035229454485177406,0.28288134675219484,7.560882951395655,7.560882951395655,7.062989043005672,7.062989043005672,10.756854140231752,10.756854140231752,25.777119026701584,25.777119026701584,20.675161948985135,20.675161948985135,5.133263643888824,5.615315935153475,5.000128566337807,5.011347797715757,7.18279190834302,5.177518660371689,5.890394978306446,5.032523878025231,5.02569312152086,6.662176727692412,194.5264341743732,194.5264341743732,0.0,216.1404824159702,0.0,194.5264341743732,216.1404824159702,0,0
+2017/05/30 22:00:00,136.7280150002494,0,675.8348891406368,0,0,0,0.11871100908841595,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,1.3409969933293372e-05,20.85633297586911,0,0,0.006744482460343377,516.1215583517278,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,460.91156062449886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03598195009325546,0.0011384438194624045,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1487879156052481,0.1487879156052481,0.09859078160429133,0.09859078160429133,0.30947400251361024,0.30947400251361024,0.9366364553588279,0.9366364553588279,0.6080041845423146,0.6080041845423146,0.021566437791275726,0.06575737827018922,-0.009887991449035427,-0.03210563710692552,0.1893353272989666,0.01543569084229086,0.07679656986271671,0.0026555981392898317,-0.048767218072237294,0.1379085457983486,5.45871447945035,5.45871447945035,5.201299187466503,5.201299187466503,6.990639163232757,6.990639163232757,23.529117906369066,23.529117906369066,12.752932761412723,12.752932761412723,5.00962823634174,5.08952698706895,5.002023945936614,5.021338481988749,5.743239501483785,5.004932165340989,5.122117851415766,5.000145984142932,5.049236042532556,5.394030744767107,136.7280150002494,136.7280150002494,0.0,151.92001666694378,0.0,136.7280150002494,151.92001666694378,0,0
+2017/05/30 23:00:00,87.29433830657521,0,499.9057160964259,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,7.135043436333077e-06,11.78335011269353,0,0,0.0042130242284153865,446.6659743033813,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.026615350608470333,0.000842091140822229,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.04415715864313983,-0.04415715864313983,-0.09926392416404552,-0.09926392416404552,0.10475154230386013,0.10475154230386013,0.8199604024743403,0.8199604024743403,0.3580774055607632,0.3580774055607632,0.020673457089342245,0.021151388955610965,-0.05935265328983002,-0.13483215003708882,0.06648133437630152,0.006170756551935048,0.017618772734481813,-0.06616887846269422,-0.16522268414065172,0.007293414691873935,5.040366498360697,5.040366498360697,5.2040585758090145,5.2040585758090145,5.227255497875134,5.227255497875134,19.180492401355792,19.180492401355792,7.668382203929639,7.668382203929639,5.008847394377526,5.009261201762101,5.072933944837246,5.376633251713585,5.091509525529304,5.000788239881558,5.006425962673916,5.09065120692965,5.565775619180329,5.001101142914337,87.29433830657521,87.29433830657521,0.0,96.99370922952801,0.0,87.29433830657521,96.99370922952801,0,0
+2017/05/31 00:00:00,39.350079731058905,0,499.1106842429521,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.579600453701293e-09,9.552758732056116,0,0,0.0,445.8751554741359,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02657302252370599,0.0008407519097253942,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2026268469383789,0.2026268469383789,0.17579920487440825,0.17579920487440825,0.32007387666638437,0.32007387666638437,0.8153999656413016,0.8153999656413016,0.6430493873709885,0.6430493873709885,0.10677847432767645,0.19446322283253947,0.07867331295521159,-0.012042366474463464,0.36621765177081217,0.07967169668642413,0.17065659572870223,0.06862308193260862,-0.060154220756940296,0.28453721779661145,5.851444775304259,5.851444775304259,5.640629083332939,5.640629083332939,7.129902508988124,7.129902508988124,19.021972987116982,19.021972987116982,13.681915259791808,13.681915259791808,5.23613981808046,5.7841103074618445,5.128161044846252,5.003001976885912,7.7917089648148306,5.131435401294169,5.603650358412239,5.097501860080214,5.074917538430483,6.681757352622583,39.350079731058905,39.350079731058905,0.0,43.722310812287674,0.0,39.350079731058905,43.722310812287674,0,0
+2017/05/31 01:00:00,23.7746579046527,0,43.37266494277538,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5775624809749058,0,0,0.0,7.882312430231249,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0023091928079754355,7.306125080417568e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.25091665637701993,0.25091665637701993,0.24315332257964167,0.24315332257964167,0.3498535208476963,0.3498535208476963,0.7440000782850975,0.7440000782850975,0.7761135816127215,0.7761135816127215,0.07268703982433958,0.18951790050064657,0.04673019288622441,-0.03970385297584297,0.5032624432681487,0.05171172367249025,0.18681227080906312,0.03915463867666253,-0.08110734988290877,0.39571577893354637,6.306840653302572,6.306840653302572,6.227028386154828,6.227028386154828,7.546652900036506,7.546652900036506,16.655076212705865,16.655076212705865,17.69279125349324,17.69279125349324,5.109395023928073,5.744675797961449,5.045208337464018,5.032634493250427,10.293984569164465,5.0553618963552225,5.723533308306031,5.031737825140098,5.1362163113298465,8.262289052289901,23.7746579046527,23.7746579046527,0.0,26.41628656072522,0.0,23.7746579046527,26.41628656072522,0,0
+2017/05/31 02:00:00,28.344197686468643,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248345999957479,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.28103987927838553,0.28103987927838553,0.27572399203531567,0.27572399203531567,0.3682340750012301,0.3682340750012301,0.7156369935269346,0.7156369935269346,0.8429482188723171,0.8429482188723171,0.06381010310386306,0.19279028706456802,0.03573051567185753,-0.04442359268417566,0.5372116587221207,0.03514014984345481,0.1826938659155334,0.020358345983375964,-0.09539373098622682,0.42080161203823546,6.640537294805597,6.640537294805597,6.578871685343572,6.578871685343572,7.822694539984639,7.822694539984639,15.775317348083078,15.775317348083078,19.992828878616663,19.992828878616663,5.084302214671808,5.770655750851773,5.026429216903566,5.040855135331682,11.038908378044951,5.025563018244398,5.6919379744345235,5.008579735552459,5.1884504186617875,8.691751562253643,28.344197686468643,28.344197686468643,0.0,31.49355298496516,0.0,28.344197686468643,31.49355298496516,0,0
+2017/05/31 03:00:00,23.721998942095574,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249035184177828,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.27573474044281415,0.27573474044281415,0.27264563313105605,0.27264563313105605,0.3555632249992194,0.3555632249992194,0.6663726162561906,0.6663726162561906,0.8683965660325609,0.8683965660325609,0.04788424960094121,0.18304998254965368,0.01972916078730021,-0.05735516628322602,0.5708462978204641,0.014498149321936818,0.16925692706908063,-0.000763072928202283,-0.11350750777647406,0.4374908038109592,6.578995167331115,6.578995167331115,6.543706695931817,6.543706695931817,7.630862062761736,7.630862062761736,14.329689743370096,14.329689743370096,20.917807592566177,20.917807592566177,5.04746908774689,5.694642032662017,5.008057599052506,5.068106722877104,11.82616129729763,5.004351210293166,5.593776826323904,5.000012053493535,5.266857544313936,8.992410016007966,23.721998942095574,23.721998942095574,0.0,26.357776602328414,0.0,23.721998942095574,26.357776602328414,0,0
+2017/05/31 04:00:00,41.965710722695675,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,1.9325232031867694,0.0,0.5250539698747816,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3311444680819447,0.3311444680819447,0.3278940808505632,0.3278940808505632,0.40650685127171865,0.40650685127171865,0.6949799173235518,0.6949799173235518,0.8852580097051366,0.8852580097051366,0.040490744223544206,0.1759950932767927,0.012919934012601055,-0.0640210314314611,0.43331236002995643,0.0045415158801417705,0.16045130736213495,-0.010295703485110066,-0.12233549992276987,0.3838901454849433,7.280433709040835,7.280433709040835,7.235697904510658,7.235697904510658,8.443726590539626,8.443726590539626,15.156384788075698,15.156384788075698,21.545412602696985,21.545412602696985,5.033940974912568,5.6420594660190915,5.003455450558349,5.084860570717751,8.916012632055626,5.0004269557946515,5.533533916946112,5.0021942947124955,5.310009687737079,8.069174966657641,41.965710722695675,41.965710722695675,0.0,46.62856746966186,0.0,41.965710722695675,46.62856746966186,0,0
+2017/05/31 05:00:00,75.01595996494459,0,212.9421150752648,0,0,0,0.007248078329562183,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,1.697665445513679,0.0,0.5250034111454779,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,28.668089625164964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5866955899301209,0.5866955899301209,0.5810188384788396,0.5810188384788396,0.6576242938665935,0.6576242938665935,0.91430588032466,0.91430588032466,0.9613629695612846,0.9613629695612846,0.10773068441403992,0.2413086239403137,0.08082173649945609,0.0036876166504829044,0.6102801425099719,0.0761813328271364,0.23000465222338953,0.06152254951680027,-0.04984123242567711,0.5329221921214482,12.214137590467104,12.214137590467104,12.073923041627552,12.073923041627552,14.083952831612166,14.083952831612166,22.653852443448116,22.653852443448116,24.521416180129762,24.521416180129762,5.240372384014421,6.208435979119983,5.135258370775972,5.000281496264051,12.811645967798484,5.120168549441445,6.097625164652911,5.078365186606618,5.051428846067125,10.942034155065244,75.01595996494459,75.01595996494459,0.0,83.35106662771621,0.0,75.01595996494459,83.35106662771621,0,0
+2017/05/31 06:00:00,85.98769443486475,0,668.9571821763068,0,0,0,0.5962146681654297,0.0,8.583882674576978,0.0,73.80580873715317,0,2.4767295891329635,2.521315125851468e-09,0.5250587633148892,0,0,0.0,438.2698908447699,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2459.4999684970403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03561577588011113,0.0011268583226029998,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7646634993741602,0.7646634993741602,0.7579548269831985,0.7579548269831985,0.8414430415217651,0.8414430415217651,1.1222625627540324,1.1222625627540324,0.9691703440923926,0.9691703440923926,0.1852369891564173,0.3174040036624392,0.16981249223098693,0.36472644351448774,0.7855535654973256,0.16614434090291105,0.32102678127890655,0.16373907205425048,0.3690062326980413,0.6833382008464896,17.31773877634643,17.31773877634643,17.100593277587578,17.100593277587578,19.938963040902266,19.938963040902266,31.53997911103167,31.53997911103167,24.83971947782797,24.83971947782797,5.711364499942846,7.094376782542454,5.597686109859325,7.768905609533476,18.006201826831983,5.572112918312726,7.1426551424598586,5.555648713798533,7.834605867827776,14.81569060234213,85.98769443486475,85.98769443486475,0.0,95.54188270540527,0.0,85.98769443486475,95.54188270540527,0,0
+2017/05/31 07:00:00,145.03071110112543,0,810.4086889385485,0,0,0,1.2216626800871417,0.0,7.999873830418337,0.0,69.33401494192633,0,39.380909295966944,7.358360682362499e-06,27.094242994366013,0,0,0.0036196436352913452,544.2274254508322,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5206.113765135975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043146758874206936,0.0013651333750080083,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5499188189117579,0.5499188189117579,0.5266542187085946,0.5266542187085946,0.6187952655442647,0.6187952655442647,1.1879197198232607,1.1879197198232607,0.7080878382825643,0.7080878382825643,0.08760160184261538,0.1401220092279025,0.046015763468167104,0.33806911086100516,0.44940008060742154,0.08921134150180353,0.13464005725400416,0.05954733552760634,0.3730832953366002,0.3919225169356073,11.330568231330801,11.330568231330801,10.801909791917325,10.801909791917325,13.033305717912413,13.033305717912413,34.65920897560707,34.65920897560707,15.546993388000999,15.546993388000999,5.158911009112273,5.406791806682847,5.043836448665303,7.377234269987795,9.214272131853363,5.164806953973198,5.37555999714651,5.073413265844081,7.897920201737719,8.19969354762189,145.03071110112543,145.03071110112543,0.0,161.14523455680603,0.0,145.03071110112543,161.14523455680603,0,0
+2017/05/31 08:00:00,161.18934587496403,0,854.7568355419866,0,0,0,1.6211129198624272,0.0,11.435487997441953,0.0,83.2008179303116,0,39.380909295966944,2.9614808538279924e-09,25.551017728419637,0,0,0.0,535.3436629290894,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6978.681407501644,0.0,0.0,0.0,0.0,0.0,80.06436099241483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04550788704834183,0.0014398378245955327,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.40294361677976104,0.40294361677976104,0.2782335260776324,0.2782335260776324,0.4564670580451525,0.4564670580451525,1.2178351419097897,1.2178351419097897,0.7418506035698123,0.7418506035698123,0.053606670800644254,0.058347439096568025,0.0035083740209556047,0.35842133487477085,0.41068727356692086,0.05428320952353181,0.047401258263074356,0.00589424964538188,0.4098516876189749,0.3559712309152557,8.383264505351477,8.383264505351477,6.607834406440247,6.607834406440247,9.348809001687755,9.348809001687755,36.12358653695807,36.12358653695807,16.58719407321678,16.58719407321678,5.059494180149528,5.070484029974267,5.000254796142457,7.673535723395574,8.51535432085295,5.06100553858721,5.046516213850779,5.000719181596494,8.500977468098228,7.636932612898448,161.18934587496403,161.18934587496403,0.0,179.09927319440447,0.0,161.18934587496403,179.09927319440447,0,0
+2017/05/31 09:00:00,180.61677333884148,0,872.4309427541565,0,0,0,2.761958036145748,0.0,11.323895916778682,0.0,106.27511244621549,0,39.380909295966944,2.8569794521788434e-09,20.87489764087764,0,0,0.0,499.7822413724431,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7543.420726341377,0.0,0.0,0.0,0.0,0.0,2794.610089226819,0.0,0.0,0.0,205.66690761387173,371.85492688228675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0464488696076468,0.001469609856852991,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5528006549122281,0.5528006549122281,0.3240986435114461,0.3240986435114461,0.5221923731510565,0.5221923731510565,1.2207913351171624,1.2207913351171624,0.870213756928566,0.870213756928566,0.1409383083836204,0.08805433460187884,0.05649984817918955,0.4653987711447698,0.43799010700101715,0.15556587748270548,0.08307196208464088,0.07360909893157135,0.5313963355939645,0.407625791563676,11.397686806693699,11.397686806693699,7.184027612388093,7.184027612388093,10.70319885007953,10.70319885007953,36.26967028710344,36.26967028710344,20.98488335781792,20.98488335781792,5.411549393539474,5.160558353961562,5.066090276081411,9.521921141011973,9.001589285164016,5.5015046497512685,5.142897250502344,5.11218872713944,10.907766042467173,8.462825265928657,180.61677333884148,180.61677333884148,0.0,200.68530370982387,0.0,180.61677333884148,200.68530370982387,0,0
+2017/05/31 10:00:00,212.95678266493687,0,953.6261339665773,0,0,0,4.107272764770399,0.0,16.986528298665572,0.0,133.89528835348938,0,39.380909295966944,2.803367031489934e-09,18.58678394924115,0,0,0.0,492.2515513035035,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7440.285343023048,6922.08842213764,0.0,0.0,0.0,0.0,622.9119296987534,0.0,0.0,0.0,253.86188779784544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05077176172961551,0.0016063831502877034,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7810321716520786,0.7810321716520786,0.44459425777925315,0.44459425777925315,0.6532661286273516,0.6532661286273516,1.202359389355942,1.202359389355942,0.9864983199357875,0.9864983199357875,0.2196227901918578,0.09999831664782304,0.06875440315177231,0.4975439830071218,0.441413529049241,0.2589006701813569,0.10302660378519318,0.0979159344275691,0.5725634308174904,0.4155730770147002,17.855617083485086,17.855617083485086,9.124008992259775,9.124008992259775,13.962771149817598,13.962771149817598,35.36283344610196,35.36283344610196,25.5546200281547,25.5546200281547,6.000575751053205,5.207090497513448,5.097875466768343,10.173413850452121,9.06481452451807,6.391564514953345,5.219829215705332,5.1985516910860525,11.867668720749819,8.600016841526624,212.95678266493687,212.95678266493687,0.0,236.6186474054854,0.0,212.95678266493687,236.6186474054854,0,0
+2017/05/31 11:00:00,247.52025851422476,0,1030.5264518500626,0,0,0,22.73232413383389,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.856979452178844e-09,20.84663630623197,0,0,0.0,515.9163404181727,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1796.3958143813265,0.0,56.931286145875596,7141.592556797343,22700.832268090486,1552.749723342557,0.0,32.12692730873701,1596.881868491279,20038.643582317225,2180.851121117301,0.0,283.67545971862853,2159.6420367684514,18750.45473692323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05486599161431039,0.001735921729925799,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9776619787191069,0.9776619787191069,0.6247553660260899,0.6247553660260899,0.8477275438692174,0.8477275438692174,1.1597427716808433,1.1597427716808433,1.0455284754898944,1.0455284754898944,0.3855303607205156,0.25945598413949567,0.2519283213483093,0.5124456883987752,0.4627109461284368,0.4259904375275366,0.27692490726576596,0.28556806587722355,0.571948574804907,0.45383712112860686,25.188609878448204,25.188609878448204,13.190326883320708,13.190326883320708,20.164492823884927,20.164492823884927,33.30408092788518,33.30408092788518,28.075438357600362,28.075438357600362,8.095602997976982,6.397557072642741,6.317427806096887,10.490566053985887,9.469465048915154,8.783948575121116,6.592698407244214,6.694005538052338,11.85279140359755,9.29849078302938,247.52025851422476,247.52025851422476,0.0,275.02250946024975,0.0,247.52025851422476,275.02250946024975,0,0
+2017/05/31 12:00:00,240.77621793702576,0,971.3608698765917,0,0,0,36.45542251612871,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,2.803367031489934e-09,18.57909446571929,0,0,0.0,492.2411109572459,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3471.8514112268485,0.0,1047.5675023811687,6289.639259732172,27857.640996279595,4146.253219046371,1115.1633269455192,2186.5863647670626,2522.6607672344308,34165.11878576715,5070.806527428094,1305.4405683493565,2577.682321243929,3089.7032293781735,33268.07722937016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051715972205701795,0.0016362573115820788,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0341645247514222,1.0341645247514222,0.7328233471171958,0.7328233471171958,0.9112443553793751,0.9112443553793751,1.1080254240650227,1.1080254240650227,1.0484949643400006,1.0484949643400006,0.461841971583587,0.3436190237384111,0.32836541489462684,0.4963001015856863,0.47866273020619055,0.5118740727844714,0.37272268728849584,0.37410950669582405,0.5436011671887991,0.48208866298812847,27.580087560851496,27.580087560851496,16.304271150478314,16.304271150478314,22.53541439941347,22.53541439941347,30.881878056438197,30.881878056438197,28.205520662928947,28.205520662928947,9.452572543507927,7.4562873603787665,7.24215719507842,10.147374361823353,9.785342132393296,10.478223315554857,7.892291602000938,7.913968310017566,11.18468833838925,9.854613623913991,240.77621793702576,240.77621793702576,0.0,267.52913104113975,0.0,240.77621793702576,267.52913104113975,0,0
+2017/05/31 13:00:00,242.48564139590653,0,932.9671891060782,0,0,0,40.71935527051242,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,2.7488344610203475e-09,16.314058785830397,0,0,0.0,489.33778269927654,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4362.359421950416,484.3520781622789,2132.41541349609,5954.738531628587,30398.97726785657,5279.042359501673,2024.4218798600768,2997.4762413035864,3009.4074331538473,36133.82419780342,6274.105241913481,2361.08374890513,3686.724995630341,3537.0903873667658,35775.76006233644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049671864203024364,0.00157158315923818,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0201227467819016,1.0201227467819016,0.8432185722098979,0.8432185722098979,0.9163685284948722,0.9163685284948722,1.0942740217602014,1.0942740217602014,1.0340973764862602,1.0340973764862602,0.46777486819571196,0.38864906554200346,0.3453791482839991,0.48112051212886536,0.46775526510982984,0.5170749719940894,0.4237566016854513,0.3891558325189068,0.52517445857472,0.4733096072274487,26.974569647569254,26.974569647569254,20.00251403493938,20.00251403493938,22.733861052779474,22.733861052779474,30.252707279038006,30.252707279038006,27.57717463618151,27.57717463618151,9.568552671743177,8.14617021998697,7.48163197835494,9.834986532158212,9.56816696081944,10.591045612380796,8.744115358388456,8.154426274031792,10.76907704343455,9.678116821955896,242.48564139590653,242.48564139590653,0.0,269.4284904398961,0.0,242.48564139590653,269.4284904398961,0,0
+2017/05/31 14:00:00,221.2120313944661,0,871.8330905184376,0,0,0,35.46486580865226,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.693372488366744e-09,14.110924641760503,0,0,0.0,463.69403662418017,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3725.993751413983,1597.1333666977384,2287.5988858051614,5484.598997890037,28715.417297833967,4200.651489356521,2344.833330643263,2170.5122884134626,2506.453968495487,28524.281715890233,5105.486970087502,2804.605017760046,2847.567202670535,2985.748145426512,28344.75430540751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04641703951178399,0.0014686027748072989,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9785914419879086,0.9785914419879086,0.9614793615291496,0.9614793615291496,0.906569650752026,0.906569650752026,1.0765323518224141,1.0765323518224141,1.011107983797788,1.011107983797788,0.4422747033404237,0.4390406134543682,0.338050520758312,0.45827335455878676,0.4411266100435413,0.4860245069261016,0.4833058203096263,0.38006232348118923,0.4980972730008367,0.44620318719250807,25.226967602435025,25.226967602435025,24.526143961699248,24.526143961699248,22.355299367387786,22.355299367387786,29.450565247771834,29.450565247771834,26.589693889409972,26.589693889409972,9.080798346459886,9.020936936686098,7.376971670836312,9.383541075267772,9.05949624429239,9.934820479668332,9.879346146723279,8.00794589848475,10.185017935391969,9.15411737242249,221.2120313944661,221.2120313944661,0.0,245.79114599385122,0.0,221.2120313944661,245.79114599385122,0,0
+2017/05/31 15:00:00,208.28071107247922,0,871.7946864771246,0,0,0,29.220476466129757,0.0,16.840460162178484,0.0,108.75639138185811,0,39.380909295966944,2.693372488366744e-09,14.082473763652532,0,0,0.0,463.6556325828671,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2776.7618659751593,2967.0579768334005,2156.398077769601,5124.218593898333,26976.531917757184,2661.68172964664,2577.5560016160985,1191.7206217969072,1777.2474824017988,21294.531780701574,3425.476473392052,3164.041891832488,1849.1871565831502,2198.10444082901,21047.840189265185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04641499485217836,0.001468538083202622,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9368767324852219,0.9368767324852219,1.0507399129231503,1.0507399129231503,0.8991591840931602,0.8991591840931602,1.062780452732324,1.062780452732324,1.0015976201990298,1.0015976201990298,0.4040287192923858,0.4824137489949004,0.32218628182663694,0.43379792988265203,0.416005848901181,0.4402922845206786,0.5355855967310387,0.36114372942292783,0.46859727682220415,0.4194712873746783,23.538644104520714,23.538644104520714,28.30417478842425,28.30417478842425,22.07159007724809,22.07159007724809,28.836389985373245,28.836389985373245,26.186967681796702,26.186967681796702,8.40161931491268,9.861213084608252,7.158224535661148,8.924852135840425,8.607565345484915,9.044051434723485,11.002091255959343,7.714506452282194,9.584749329271872,8.668299830677782,208.28071107247922,208.28071107247922,0.0,231.42301230275467,0.0,208.28071107247922,231.42301230275467,0,0
+2017/05/31 16:00:00,239.54341931101317,0,924.9899052860101,0,0,0,37.59121496396067,0.0,16.90307355543791,0.0,131.64086955684016,0,39.380909295966944,2.693372488366744e-09,14.02735193611407,0,0,0.0,463.61532262293616,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3692.5892810431815,5236.291825785983,3494.56268111101,5514.173151097485,33883.11798003877,3474.5209778428784,4225.513165526931,2267.6438870224674,2376.100501694458,26373.940057990716,4137.6931158837215,4927.906174026994,2923.891723970991,2758.6391900903286,26295.71999119864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04924714770361662,0.0015581454252487407,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9476142438432946,0.9476142438432946,1.146834998621206,1.146834998621206,0.9319017869031057,0.9319017869031057,1.0707601333458798,1.0707601333458798,1.0309260610553859,1.0309260610553859,0.40230415730975255,0.5488458327597828,0.3380351253402862,0.4357747467082317,0.4203552401714634,0.4352649987692933,0.607029062882468,0.3767962425689356,0.46760602558649067,0.4249600135716229,23.96668931151224,23.96668931151224,32.69147374284587,32.69147374284587,23.34187268950602,23.34187268950602,29.191957733670563,29.191957733670563,27.43979027662678,27.43979027662678,8.372471469831325,11.30567012725939,7.3767542101137735,8.960943406912165,8.683874201481004,8.951620743786592,12.727846205974231,7.956196812653559,9.565231062238809,8.765547706082188,239.54341931101317,239.54341931101317,0.0,266.1593547900146,0.0,239.54341931101317,266.1593547900146,0,0
+2017/05/31 17:00:00,246.8606439334441,0,964.0412075446619,0,0,0,38.0544371207943,0.0,16.932384527434575,0.0,133.89528835348938,0,39.380909295966944,2.8033670314899345e-09,18.597624632955483,0,0,0.0,502.6666248815883,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2787.566113167362,5570.612785939981,3775.7256101334588,5480.331952219956,32272.952245501612,3172.926258939297,4785.274987477789,2875.8904993162982,2027.0997285984656,28845.223064894348,3801.3590788489537,5578.688672808064,3677.3626139275075,2359.1914804768307,28623.91077019318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05132626796142717,0.001623927340939496,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9519205482910159,0.9519205482910159,1.191036398440697,1.191036398440697,0.9854330741329885,0.9854330741329885,1.069585110819469,1.069585110819469,1.0472754739861492,1.0472754739861492,0.41001908730670966,0.5982428822741802,0.3839906474991454,0.4413141593078515,0.4419836999909616,0.43901270026061323,0.6566882336458943,0.42500467149327653,0.4687133649178488,0.44657113207533805,24.13963858543211,24.13963858543211,34.81056478107726,34.81056478107726,25.51033728670896,25.51033728670896,29.139458092007146,29.139458092007146,28.15200666918777,28.15200666918777,8.503855303738803,12.503668884781533,8.070791005004551,9.0629722239905,9.075393614309647,9.020422233594743,14.05785564475238,8.766344243719999,9.587037935723686,9.161018473438418,246.8606439334441,246.8606439334441,0.0,274.2896043704934,0.0,246.8606439334441,274.2896043704934,0,0
+2017/05/31 18:00:00,240.46076107930807,0,956.0856844016649,0,0,0,46.93763923968431,0.0,17.540027511967114,0.0,110.93442390708215,0,39.380909295966944,2.9614808538279965e-09,25.66776112164605,0,0,0.0,530.2014542511354,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2846.206438263261,5845.443314905625,5108.494894476328,5413.772156100226,32847.48898319987,4576.238358904321,6228.2715181486155,5271.514151167988,2815.678753021994,38834.192619843285,5114.594053456667,7019.422165761557,6197.926203535408,3084.1974244382236,38688.9226309644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05090271001658499,0.0016105262628089319,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9488540571579964,0.9488540571579964,1.1965691316008398,1.1965691316008398,1.0420269911706366,1.0420269911706366,1.058582716704783,1.058582716704783,1.0479087587051392,1.0479087587051392,0.4217377579576986,0.6366588231263514,0.44231729716623164,0.44991121993605226,0.468736465931061,0.44764086007422116,0.6933975365462479,0.48791072580648825,0.473402659599396,0.4732099114170534,24.016407583492864,24.016407583492864,35.07995355793719,35.07995355793719,27.922307427762775,27.922307427762775,28.650251825354417,28.650251825354417,28.179789911412342,28.179789911412342,8.708299976142612,13.508541120452492,9.081589736258294,9.223930809494718,9.587493427481746,9.181115145614314,15.109732561367693,9.97349589327493,9.679970147464388,9.67613159321266,240.46076107930807,240.46076107930807,0.0,267.1786234214534,0.0,240.46076107930807,267.1786234214534,0,0
+2017/05/31 19:00:00,220.75654137730902,0,945.1933446020128,0,0,0,34.34177142469832,0.0,18.24622959682816,0.0,101.68988858149199,0,39.380909295966944,3.0123883395949195e-09,27.0977424753112,0,0,0.0,554.7994669640274,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,573.5753477100254,1008.5855375564626,4214.0844700539365,4800.093999774795,23254.427066856115,2255.724249301465,4654.674577257119,4129.064818627756,1175.0902526407958,30531.406367046606,2699.827444661486,5351.180100469037,5170.020061251981,1333.8515184036785,29989.71488188784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05032279377762279,0.0015921781172431322,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.938710370962197,0.938710370962197,0.9951745911350744,0.9951745911350744,1.0531080067612537,1.0531080067612537,1.041965571169328,1.041965571169328,1.0426090779609585,1.0426090779609585,0.4204514822727209,0.6223332584784212,0.4696004950029465,0.44592927283718564,0.4812058014722965,0.43850612305188225,0.6659223438160597,0.51126181104557,0.4616082864892971,0.48188557714647295,23.61141742163187,23.61141742163187,25.91691411582822,25.91691411582822,28.408437745508706,28.408437745508706,27.919625320582682,27.919625320582682,27.947732993899535,27.947732993899535,8.685571914320903,13.126329590028718,9.60454634480692,9.148983669223185,9.83671395835124,9.01108706070687,14.316960845839148,10.465018590957996,9.448035350667084,9.850493161214388,220.75654137730902,220.75654137730902,0.0,245.2850459747878,0.0,220.75654137730902,245.2850459747878,0,0
+2017/05/31 20:00:00,215.18294200757725,0,879.1912514313801,0,0,0,23.176634806996997,0.0,23.295160711676427,0.0,106.16168237671882,0,39.380909295966944,2.9096809754904173e-09,23.16855481330836,0,0,0.0,524.2877263059388,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,721.7064424847724,4205.817443785201,15168.42610741271,715.1521232989426,2185.290812951658,2283.8599590041395,37.900069426735925,23931.938138041634,1037.5181788469185,2925.2983907109633,3107.0368723504234,81.76729316856037,22996.624197046112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04680879344902789,0.0014809975963066757,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.870693442876178,0.870693442876178,0.9163518645639729,0.9163518645639729,0.9449987398078125,0.9449987398078125,1.020328932049794,1.020328932049794,1.0284913683135255,1.0284913683135255,0.41720659311334196,0.5276779261300414,0.43587955004366247,0.43787584955903985,0.48368893839350835,0.4305384562770501,0.576419560561527,0.46431349890682316,0.44796619136776833,0.48020714587225716,21.002612142754856,21.002612142754856,22.73321398446565,22.73321398446565,23.862003014429533,23.862003014429533,26.98340801060462,26.98340801060462,27.33456856577996,27.33456856577996,8.628551029459913,10.824679169156042,8.962861514275431,8.999487813167576,9.887144297847883,8.865709511947358,11.961347259310756,9.500703307793515,9.187236809948445,9.81650714647293,215.18294200757725,215.18294200757725,0.0,239.09215778619694,0.0,215.18294200757725,239.09215778619694,0,0
+2017/05/31 21:00:00,203.30737952686823,0,839.4197788798567,0,0,0,9.267868801664003,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.961480853827996e-09,25.57554847407746,0,0,0.0,520.0066062669596,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3477.162445528541,7489.558172645905,0.0,230.46672632471683,0.0,0.0,10061.76636914314,0.0,589.3484153322715,130.4518959236682,0.0,8802.598782170186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04469133079138993,0.0014140025538122382,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7713308934763194,0.7713308934763194,0.7952931200566852,0.7952931200566852,0.8809996646948055,0.8809996646948055,0.9982156044246564,0.9982156044246564,1.0082598266669365,1.0082598266669365,0.3323650124949921,0.5003878529186756,0.38188468391375596,0.3303820762325039,0.468326028714681,0.3472421655097104,0.5167996058455583,0.41998622616270526,0.3324664105791195,0.4607039059243825,17.535452311947836,17.535452311947836,18.333526206818576,18.333526206818576,21.385809108559158,21.385809108559158,26.044576932841068,26.044576932841068,26.46872809501467,26.46872809501467,7.2973481067906505,10.233198719365319,8.037017993429814,7.269900500878009,9.579404101016152,7.508601644421802,10.58504280048021,8.677368467029027,7.298756133496568,9.430498202431167,203.30737952686823,203.30737952686823,0.0,225.89708836318692,0.0,203.30737952686823,225.89708836318692,0,0
+2017/05/31 22:00:00,137.10265713113765,0,675.6159404031245,0,0,0,0.49497824363068404,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.856979452178844e-09,20.85472127932805,0,0,0.0,515.9093540966758,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1974.2764030047297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03597029310029351,0.0011380750003306829,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5975913543279664,0.5975913543279664,0.6124168090620614,0.6124168090620614,0.7034579149767354,0.7034579149767354,0.9427422996996229,0.9427422996996229,0.8697815364613671,0.8697815364613671,0.24650351149983665,0.43035515050701717,0.2926501387735941,0.24317349832272497,0.46368665093683387,0.24611490480630924,0.44628240597443625,0.3262595144329604,0.22583379268836506,0.43910904504287557,12.487178739049071,12.487178739049071,12.866970449648733,12.866970449648733,15.40817726433285,15.40817726433285,23.771905737714818,23.771905737714818,20.968916982334875,20.968916982334875,6.26115992395016,8.862397005447065,6.779365091498477,6.2272325242524005,9.48847110639916,6.257176643347478,9.1556026923774,7.213370362524941,6.058093011920477,9.022198917101278,137.10265713113765,137.10265713113765,0.0,152.33628570126405,0.0,137.10265713113765,152.33628570126405,0,0
+2017/05/31 23:00:00,87.5233684863887,0,513.0247442521296,0,0,0,0.17489001160996656,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6369718611257823e-09,11.837497413303508,0,0,0.0,459.78921548331346,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,680.1517150459242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027313817384831615,0.0008641901427547947,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4154687678344559,0.4154687678344559,0.42881193378810906,0.42881193378810906,0.5140081547115098,0.5140081547115098,0.8900083356929548,0.8900083356929548,0.6636883725866027,0.6636883725866027,0.15324717283796116,0.33320182784344776,0.1946595967507173,0.14737772337308047,0.37928033927599414,0.13441517135780634,0.3317668505097058,0.21095397659253315,0.11075329399082201,0.3457102816527983,8.598198658022525,8.598198658022525,8.834566823193143,8.834566823193143,10.524376068760205,10.524376068760205,21.724331551145042,21.724331551145042,14.253937844675363,14.253937844675363,5.486651025473563,7.308981290968191,5.7856973130191705,5.450052189215029,7.995514379095951,5.374305472341106,7.289050832813487,5.923000105260684,5.254057336033597,7.486414794718755,87.5233684863887,87.5233684863887,0.0,97.24818720709855,0.0,87.5233684863887,97.24818720709855,0,0
+2017/06/01 00:00:00,40.91925901167401,0,484.91709450384593,0,0,0,0.4071479131256374,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.1342518186690516,2.579623326894121e-09,9.580538280876523,0,0,0.0,431.6815657350297,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,535.8255705471893,865.6735272426844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02581734529270944,0.0008168428088871452,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.621791115191262,0.621791115191262,0.6542361768971653,0.6542361768971653,0.6869194495971611,0.6869194495971611,0.8776912821210264,0.8776912821210264,0.8043162394234606,0.8043162394234606,0.34134967198737415,0.5806339611999752,0.3557136779072554,0.3664335098835571,0.585227320913699,0.3015658385052135,0.5628314667498585,0.3552925123219284,0.3086415974634044,0.5358170963991263,13.112039864804444,13.112039864804444,13.989672767488486,13.989672767488486,14.919871776336564,14.919871776336564,21.262323790600945,21.262323790600945,18.64035980530332,18.64035980530332,7.42380451535567,12.064467272709692,7.633099764336876,7.795017688748146,12.177737588480099,6.889837812446203,11.634114409928344,7.626838151456724,6.979904317946946,11.007325854604616,40.91925901167401,40.91925901167401,0.0,45.46584334630445,0.0,40.91925901167401,45.46584334630445,0,0
+2017/06/01 01:00:00,23.722115873309182,0,50.33305057686108,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250204496313895,0,0,0.0,14.842698064316949,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0026797688947382,8.478601987650875e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6284098887441518,0.6284098887441518,0.687393413773513,0.687393413773513,0.6832303088359705,0.6832303088359705,0.8821230588312191,0.8821230588312191,0.9099298019223994,0.9099298019223994,0.3463520751497808,0.6188763699712231,0.3468288885466175,0.387146085142908,0.6624819057648041,0.3170457303172174,0.6195188278151001,0.3575729352542565,0.34231152240709567,0.5988802492917478,13.287369027430785,13.287369027430785,14.933701294613527,14.933701294613527,14.812560549646818,14.812560549646818,21.427841933587914,21.427841933587914,22.484675744547673,22.484675744547673,7.495697988393729,13.035432100093516,7.502606171942929,8.121748765150414,14.219991865850133,7.0896325271810525,13.052286037875746,7.660832209887857,7.437545444706657,12.51981844493858,23.722115873309182,23.722115873309182,0.0,26.35790652589909,0.0,23.722115873309182,26.35790652589909,0,0
+2017/06/01 02:00:00,28.34423705145369,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248739649807936,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6619374896794152,0.6619374896794152,0.7254724607469656,0.7254724607469656,0.7096601163130397,0.7096601163130397,0.9015407161031276,0.9015407161031276,0.9844281948555809,0.9844281948555809,0.3568247159255985,0.6263039897649435,0.35275705766443355,0.3997180106707292,0.6904925361876769,0.32494423512334747,0.6305200727343674,0.35821641330946724,0.35468222120716525,0.6187555667223669,14.204694446681088,14.204694446681088,16.07647356969693,16.07647356969693,15.594344331033085,15.594344331033085,22.162523893196152,22.162523893196152,25.468603938886176,25.468603938886176,7.649654173561601,13.231378264684793,7.589302181170652,8.329000000658468,15.024368067306995,7.195486431459727,13.3436667190594,7.670464523070777,7.617778139389586,13.032265004956287,28.34423705145369,28.34423705145369,0.0,31.49359672383743,0.0,28.34423705145369,31.49359672383743,0,0
+2017/06/01 03:00:00,23.72206062292512,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249651992473301,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6658997969003407,0.6658997969003407,0.7280621665639072,0.7280621665639072,0.7086941483755481,0.7086941483755481,0.8771912812487609,0.8771912812487609,0.9912830759610536,0.9912830759610536,0.36052487347444767,0.6274291581878931,0.35362454136876925,0.4042252387481458,0.7132950593749809,0.3230010836733085,0.6273805215749563,0.3521268666722858,0.35459534407079785,0.6335772479422832,14.316323690616912,14.316323690616912,16.156461225980934,16.156461225980934,15.565240478823185,15.565240478823185,21.243700371422136,21.243700371422136,25.754060754208083,25.754060754208083,7.705165251399748,13.261269833756913,7.602114001949289,8.404948885961645,15.704222808745456,7.169199522083318,13.259976602707852,7.580015001490096,7.616489702825987,13.425571911390165,23.72206062292512,23.72206062292512,0.0,26.357845136583467,0.0,23.72206062292512,26.357845136583467,0,0
+2017/06/01 04:00:00,45.22194118863686,0,88.72588128136032,0,0,0,0.02922267454214231,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,5.159550569252521,0.0,0.5250343952080765,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,110.09998312569473,0.0,0.0,0.0,3.920785734885225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7326604174266719,0.7326604174266719,0.7928890928321464,0.7928890928321464,0.7735621179532968,0.7735621179532968,0.9196261345725767,0.9196261345725767,0.9386452608689111,0.9386452608689111,0.36620070953433287,0.48817155308970744,0.36271535538422117,0.386204918893517,0.5145911126516455,0.3333841593705241,0.48032076377234545,0.35439574348215247,0.3544299142827539,0.48318286851108394,16.299196929802918,16.299196929802918,18.25235825852873,18.25235825852873,17.608732939349835,17.608732939349835,22.86057003548126,22.86057003548126,23.608831049191025,23.608831049191025,7.791449354266476,9.97885603537405,7.7383023645683835,8.106505186929354,10.537017672480417,7.311519958837351,9.818803923673386,7.613530731014407,7.614037174554454,9.87684487514477,45.22194118863686,45.22194118863686,0.0,50.246601320707626,0.0,45.22194118863686,50.246601320707626,0,0
+2017/06/01 05:00:00,76.38948019551007,0,212.9421150752648,0,0,0,0.3448517334632658,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.7334069268708574,0.0,0.5251785052200902,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77.11664484476226,141.28174588621633,183.01437671658366,968.4568273882462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9160127293099986,0.9160127293099986,0.9375854734621667,0.9375854734621667,0.9321111060597759,0.9321111060597759,0.9849634880211778,0.9849634880211778,0.9828467536326235,0.9828467536326235,0.42974917799274026,0.6300559805617879,0.42205954556066205,0.462240113759797,0.7138198678537803,0.39839708088751363,0.613271010296016,0.4216020137807461,0.4247233922701956,0.6634906133495649,22.720047631631758,22.720047631631758,23.566756725357152,23.566756725357152,23.35013190687056,23.35013190687056,25.490830216011403,25.490830216011403,25.403004152846094,25.403004152846094,8.851456781637538,13.331268611607754,8.713996951416107,9.460308225872353,15.72013397257696,8.306906419059487,12.88914363097338,8.70589807299747,8.7613286558759,14.248369234583848,76.38948019551007,76.38948019551007,0.0,84.87720021723341,0.0,76.38948019551007,84.87720021723341,0,0
+2017/06/01 06:00:00,88.75253570161435,0,666.647207392398,0,0,0,0.3964132956329332,0.0,10.51688428816451,0.0,73.80580873715317,0,3.4557766031967105,2.521337612039907e-09,0.577652774945656,0,0,0.0,435.9599160608611,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1617.0649255758292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0354927911116021,0.0011229671702548292,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9926307779058657,0.9926307779058657,0.9956516589432423,0.9956516589432423,0.9976879001705387,0.9976879001705387,1.024905268877051,1.024905268877051,1.0081443732264241,1.0081443732264241,0.5372505837384285,0.7563291550576672,0.5292831578686272,0.5748235550668651,0.9155304388263268,0.5008270807118796,0.7477927803756811,0.5241108253490732,0.527761484731552,0.8508967994189631,25.810394414652066,25.810394414652066,25.93691832362441,25.93691832362441,26.022398506085892,26.022398506085892,27.179984747334572,27.179984747334572,26.463831038729424,26.463831038729424,11.039791117805564,17.048263321155034,10.860474207919609,11.922496595556026,22.701331496531054,10.242463480485284,16.77533596746015,10.74553582371557,10.826539688644402,20.278850678293153,88.75253570161435,88.75253570161435,0.0,98.61392855734927,0.0,88.75253570161435,98.61392855734927,0,0
+2017/06/01 07:00:00,145.65044516208133,0,811.8134198945339,0,0,0,2.1407587694909203,0.0,7.746178107191117,0.0,69.33401494192633,0,39.380909295966944,3.012412895400182e-09,27.04858404449361,0,0,0.0,545.6357760504529,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1953.3630297702994,0.0,0.3418506737901594,0.3605046701942495,0.16864968157035687,0.35678282243449627,3106.248645186554,0.37947720283095343,0.38818257983126,0.17487770174475872,0.38326718131699544,2476.0352642922335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04322154779079719,0.0013674996441967486,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4743815245931911,0.4743815245931911,0.4590611106827594,0.4590611106827594,0.59838278721435,0.59838278721435,1.035681495348549,1.035681495348549,0.8061675262924762,0.8061675262924762,0.25297806607719353,0.35441264745596157,0.2873591174105151,0.25729520312234966,0.552189081156011,0.24320396590334,0.3625958505800867,0.29631229437645384,0.23897545060120323,0.5260362301489528,9.699488835473119,9.699488835473119,9.398732299218807,9.398732299218807,12.507212275903584,12.507212275903584,27.645938609079323,27.645938609079323,18.703739008285112,18.703739008285112,6.3284589587893265,7.613781257662254,6.715392862336586,6.374312426047922,11.383413029209493,6.227540827532749,7.736489252445949,6.824335617198798,6.185125001729361,10.788186405110224,145.65044516208133,145.65044516208133,0.0,161.83382795786812,0.0,145.65044516208133,161.83382795786812,0,0
+2017/06/01 08:00:00,160.4042434319626,0,839.2613402579217,0,0,0,1.1288490809584693,0.0,11.198411640824625,0.0,83.2008179303116,0,39.380909295966944,2.961505246892698e-09,25.495255480939488,0,0,0.0,519.8481676450247,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2940.202427932713,0.0,0.0,0.0,0.0,0.0,1063.1033108894567,0.0,0.0,0.0,0.0,254.1604675718179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04468289540180155,0.0014137356639656136,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5120120938036976,0.5120120938036976,0.4678683447074527,0.4678683447074527,0.6384842224284649,0.6384842224284649,1.0569223045243723,1.0569223045243723,0.8317609938427816,0.8317609938427816,0.22497561504617228,0.33064007739973567,0.28110385003958743,0.21562280199954584,0.515868838909107,0.19905405260220327,0.3092905300759597,0.2860677700602788,0.173002090688165,0.4941725219787789,10.481202271238416,10.481202271238416,9.57039214621743,9.57039214621743,13.5578829575053,13.5578829575053,28.57679892464934,28.57679892464934,19.594733554684552,19.594733554684552,6.050049539578964,7.273462284868955,6.641286628850295,5.964389476632704,10.564776940719895,5.821633032624305,6.988270550156514,6.6999589924245555,5.6203791431257315,10.102990409297533,160.4042434319626,160.4042434319626,0.0,178.22693714662512,0.0,160.4042434319626,178.22693714662512,0,0
+2017/06/01 09:00:00,178.65548265105951,0,888.3637247058911,0,0,0,0.9598418607244206,0.0,11.128561489866103,0.0,106.27511244621549,0,39.380909295966944,2.857003470057766e-09,20.911057555429572,0,0,0.0,515.7150233241777,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4023.640507426535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04729714272027496,0.0014964486268414102,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6225661440532946,0.6225661440532946,0.5466444675189706,0.5466444675189706,0.7387713288639818,0.7387713288639818,1.0846210989711211,1.0846210989711211,0.9211543987833494,0.9211543987833494,0.2635737683095497,0.3555973302681025,0.3186280741748205,0.25086485429710903,0.5371507546954,0.2547746052567705,0.34349609702854,0.33906058018426427,0.2223064677041344,0.5160194414638108,13.132471866496942,13.132471866496942,11.25474476521103,11.25474476521103,16.490293483022526,16.490293483022526,29.81492182461031,29.81492182461031,22.92016095014627,22.92016095014627,6.44239822995776,7.6313692294937425,7.110626952856222,6.306299698547676,11.03752733096826,6.347445251282451,7.454522216870913,7.391260784665903,6.025229676358691,10.568053512483488,178.65548265105951,178.65548265105951,0.0,198.50609183451056,0.0,178.65548265105951,198.50609183451056,0,0
+2017/06/01 10:00:00,215.473804307821,0,953.4028944281993,0,0,0,6.828886043227745,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.803390836544928e-09,18.570423178873057,0,0,0.0,492.0283117651256,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4768.296346262909,10279.304648013811,0.0,0.0,0.0,0.0,4757.981032401483,0.0,0.0,0.0,0.0,3331.6464442345728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05075987629123725,0.0016060071033022491,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7745798157486741,0.7745798157486741,0.6872314515682006,0.6872314515682006,0.891307083851796,0.891307083851796,1.0927731173477608,1.0927731173477608,1.039619858187673,1.039619858187673,0.29756542660685215,0.3841337746847495,0.34392921870668886,0.2813624617319951,0.5261604136037836,0.29274973588040504,0.37370121086774444,0.37142103507828017,0.2562239512619407,0.5176461521758323,17.642227881999844,17.642227881999844,14.928974403671901,14.928974403671901,21.773408861440373,21.773408861440373,30.18442651203833,30.18442651203833,27.817294993603056,27.817294993603056,6.839853960385653,8.073093186203693,7.4607444029315815,6.644317687158576,10.790942762441759,6.780580628682557,7.9075779140120375,7.872020721739361,6.362861245390192,10.60350744744565,215.473804307821,215.473804307821,0.0,239.4153381198011,0.0,215.473804307821,239.4153381198011,0,0
+2017/06/01 11:00:00,254.55811705578913,0,1030.3719611627478,0,0,0,29.86263564682878,0.0,16.693521233099577,0.0,147.76209134187457,0,39.380909295966944,2.857003470057766e-09,20.8589595351622,0,0,0.0,515.7618497308579,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,574.1428016612417,0.0,2077.8775857383944,6041.050627161722,28803.65673440895,1404.1403245447036,1230.2658751811546,2121.0754827171986,448.28845530723777,28022.884930240514,1586.3321016977482,1279.4115541910692,2639.2017484851494,389.8114123574211,26858.85407718099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05485776641568547,0.0017356614903747429,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9840433386274013,0.9840433386274013,0.9041862131088634,0.9041862131088634,1.0294603477180355,1.0294603477180355,1.1223521765340412,1.1223521765340412,1.1156855213418237,1.1156855213418237,0.45145887262587914,0.5067013806683869,0.46491614330868525,0.4471469041525206,0.5517296773667139,0.45951023634939775,0.509486109973455,0.4897324274183452,0.4417341205446654,0.5511905051852307,25.452630860559182,25.452630860559182,22.26380660761002,22.26380660761002,27.376419377196854,27.376419377196854,31.544142767108653,31.544142767108653,31.235120777998603,31.235120777998603,9.253244358913534,10.36717327157129,9.512479163631014,9.17182922262856,11.37270147527731,9.407405274051811,10.426813514732828,10.010994225964225,9.070761137345059,11.360141694908876,254.55811705578913,254.55811705578913,0.0,282.8423522842101,0.0,254.55811705578913,282.8423522842101,0,0
+2017/06/01 12:00:00,255.22602166664223,0,971.1578203985986,0,0,0,50.87488715483921,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,2.803390836544928e-09,18.60943355662526,0,0,0.0,492.0380614792528,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4790.232048524065,789.5273753551156,3752.991204099527,6291.698834275616,37017.54153413515,6353.079227287701,3348.988737101433,5194.310127262186,2547.8269020323387,47015.77909461237,6945.2604990430755,3541.569920050805,5925.275925648392,2652.185668132701,47371.056553076174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05170516170109335,0.001635915274751811,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1071641781783268,1.1071641781783268,0.9661379327637026,0.9661379327637026,1.0315061505030163,1.0315061505030163,1.1098566846441837,1.1098566846441837,1.1073643531738029,1.1073643531738029,0.5404946578224051,0.5235306127584727,0.48331201172386967,0.48162303057033007,0.5517549506769301,0.5759615471615134,0.5401010571500557,0.5149373455288426,0.4954360348248924,0.5642700229381719,30.84228516356619,30.84228516356619,24.71580713115324,24.71580713115324,27.464892629895758,27.464892629895758,30.9661470925342,30.9661470925342,30.851485308752956,30.851485308752956,11.113590775800816,10.73271471600843,9.879472119094075,9.845168921129527,11.373290515196146,11.950186789972776,11.104612424397885,10.544532786195532,10.12932527720264,11.668379119847927,255.22602166664223,255.22602166664223,0.0,283.58446851849135,0.0,255.22602166664223,283.58446851849135,0,0
+2017/06/01 13:00:00,261.38355449981935,0,910.691655436963,0,0,0,59.60389229656705,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,2.7488580360018998e-09,16.327434863688513,0,0,0.0,467.0622490301614,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7011.759374810564,2583.0205786509473,5072.481718612778,6225.12948061646,41724.34229503344,8414.60591819864,4923.179789272957,6487.406076227828,3798.8779466059887,51139.14726203226,9318.176143822655,5264.724466991911,7312.789908430773,4060.1082095610163,52375.405717002715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04848589829084437,0.0015340600244632397,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0935798090193685,1.0935798090193685,1.0181804465741093,1.0181804465741093,1.0226552591312188,1.0226552591312188,1.102994218838121,1.102994218838121,1.0888529470857933,1.0888529470857933,0.5453749281772478,0.5448430371682689,0.4815784899240171,0.48448575735206767,0.5354657532441987,0.5850367958726552,0.5712700368675088,0.5170093596443149,0.5058161691173986,0.5513358397214316,30.221115790604884,30.221115790604884,26.891388518918333,26.891388518918333,27.08323824723533,27.08323824723533,30.650939398808973,30.650939398808973,30.006451366275115,30.006451366275115,11.225471320019395,11.213227568920942,9.844265966577908,9.903383381614148,10.999382304143182,12.173021120766819,11.836392247958784,10.58961500598214,10.348285020505273,11.363525958800281,261.38355449981935,261.38355449981935,0.0,290.42617166646596,0.0,261.38355449981935,290.42617166646596,0,0
+2017/06/01 14:00:00,242.61254324529702,0,886.2481762902977,0,0,0,56.940772670006375,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.6933958157037226e-09,14.035529631237315,0,0,0.0,478.1091223960402,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6679.558544070921,4212.024445962586,5415.217833279076,5894.475698287727,41480.56058890479,7636.251648779685,5617.3887148889,5904.806028737904,3783.6221671111266,44454.22001657161,8463.784471579358,6079.005576858686,6685.3035789037285,4085.412618377243,45745.17690259558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04718450935562795,0.0014928849856959106,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0511293390788468,1.0511293390788468,1.0875572531058229,1.0875572531058229,1.0064387430305395,1.0064387430305395,1.0907397376214047,1.0907397376214047,1.0649393296821652,1.0649393296821652,0.5178606835717271,0.5761132773054217,0.4648392789388497,0.4721108843916575,0.5084918753522124,0.5529049420636938,0.6125403916716746,0.49845196540683634,0.49405664047854836,0.52229117872416,28.321306630953003,28.321306630953003,29.947743611655454,29.947743611655454,26.39154378638905,26.39154378638905,30.092045295153,30.092045295153,28.932364685101064,28.932364685101064,10.608191674506429,11.953883009065734,9.510976339877672,9.654275219383024,10.405481615247567,11.400122426662847,12.870176422508749,10.19246381387002,10.100578591864206,10.705375430031808,242.61254324529702,242.61254324529702,0.0,269.56949249477447,0.0,242.61254324529702,269.56949249477447,0,0
+2017/06/01 15:00:00,238.99426689314345,0,879.4082750475861,0,0,0,56.6034240224214,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,2.6933958157037226e-09,14.085883114162003,0,0,0.0,471.26922115332866,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6532.492238361356,6095.909395918222,5885.081837162989,5806.797445477227,42395.843577888,7022.5094161788,6496.80633940659,5735.3324499752425,3900.1402564292566,40771.90704068764,7677.683569066448,7051.529629017739,6411.736626762244,4191.732045841553,41901.75644569301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04682034794710553,0.0014813631725717025,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.005858080504852,1.005858080504852,1.1434912246986237,1.1434912246986237,0.989280213794425,0.989280213794425,1.0829159916649196,1.0829159916649196,1.0449135961044198,1.0449135961044198,0.49179404951551026,0.614262498167418,0.4563989208750434,0.4641760028792751,0.48746188989676303,0.5206424404544876,0.6565656539288355,0.48686020746192116,0.4858874987090697,0.4984236675300721,26.366959433247487,26.366959433247487,32.53363595499691,32.53363595499691,25.67046975603988,25.67046975603988,29.737925778026806,29.737925778026806,28.048515476407815,28.048515476407815,10.053603966700408,12.914920180530657,9.347501586277488,9.498018785277907,9.964278946930605,10.669110805841711,14.054440956448119,9.95193690507108,9.932017217878425,10.191869571313447,238.99426689314345,238.99426689314345,0.0,265.54918543682606,0.0,238.99426689314345,265.54918543682606,0,0
+2017/06/01 16:00:00,267.19916425558955,0,924.7707792117867,0,0,0,62.001077018053486,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.6933958157037226e-09,14.113425506354703,0,0,0.0,463.39619654871296,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7342.356093209611,8076.7673122072,7070.794672926149,6208.577723503031,48266.152290775426,7209.044762038137,7720.7082327563685,6377.237694243649,4239.9619614046915,42840.999508882596,7773.796040079851,8388.695542671914,7031.094282670102,4524.146034167268,43965.357536303934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04923548126911683,0.001557776307393343,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0036871248122046,1.0036871248122046,1.2148712902390955,1.2148712902390955,1.0058340756894089,1.0058340756894089,1.088802959359587,1.088802959359587,1.0606119837268113,1.0606119837268113,0.4812515890939744,0.6598017791111878,0.46107005368288134,0.4616609509056905,0.4808225474166303,0.5078453581453141,0.7107192722711516,0.49198282328967946,0.4841868796860388,0.49255631295365654,26.2751572809958,26.2751572809958,35.977368134634645,35.977368134634645,26.365943380292038,26.365943380292038,30.00418535199904,30.00418535199904,28.740156038881736,28.740156038881736,9.837641457331785,14.14480760563248,9.43759405368995,9.449057669369054,9.828954102672071,10.391633134584652,15.62630210684135,10.057514727206623,9.89728907608972,10.069404951553523,267.19916425558955,267.19916425558955,0.0,296.8879602839884,0.0,267.19916425558955,296.8879602839884,0,0
+2017/06/01 17:00:00,284.23768273976253,0,953.404382458108,0,0,0,72.21194866395018,0.0,16.7356839618177,0.0,133.89528835348938,0,39.380909295966944,2.803390836544928e-09,18.581877259280674,0,0,0.0,492.02979979503436,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8128.047424109953,9313.075797629044,8643.413873412563,6430.743740614527,53286.82151895395,8567.596181038227,9087.716753254617,8524.566024809268,5111.122369314628,51477.18877536827,9041.134437101913,9762.579567919875,9196.970351955031,5367.483231993334,52579.75563971948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05075995551505179,0.0016060096098885173,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0074617006763584,1.0074617006763584,1.2486156165813633,1.2486156165813633,1.0525045388331398,1.0525045388331398,1.0862135655700673,1.0862135655700673,1.0723734232264734,1.0723734232264734,0.482161074326128,0.6906210382833676,0.49245610063243117,0.46716014591268884,0.4917842791137404,0.5062402969482034,0.7410086005357871,0.5264241125789301,0.4882099822407715,0.5027891735991405,26.434885159778858,26.434885159778858,37.65624187448501,37.65624187448501,28.38184892908525,28.38184892908525,29.886922611062403,29.886922611062403,29.264118416214743,29.264118416214743,9.856083227191391,15.028136439694123,10.067326214391414,9.556465258905305,10.053401598574993,10.357330644727881,16.56065696513086,10.796797999308225,9.979646023490432,10.28395228991134,284.23768273976253,284.23768273976253,0.0,315.81964748862504,0.0,284.23768273976253,315.81964748862504,0,0
+2017/06/01 18:00:00,276.35376492211753,0,965.664236445767,0,0,0,80.28758571537023,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.961505246892701e-09,25.520573443205258,0,0,0.0,539.7800062952375,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8041.580583609607,9104.267991458282,9606.446161000698,6346.134409604993,53738.30871395517,10060.849130328888,10046.00290970672,10823.595436960037,5945.723323359894,61570.38540451803,10477.857416547586,10671.71854314694,11579.266904289458,6181.395278809425,62503.322467558166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05141267922231033,0.0016266613330002217,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0015494277976955,1.0015494277976955,1.2301282868344758,1.2301282868344758,1.0907825507444098,1.0907825507444098,1.0778466005894027,1.0778466005894027,1.072026887403438,1.072026887403438,0.4908046611978834,0.7048920053458071,0.5320879244693355,0.47941291158202515,0.5145825646724291,0.512489284670166,0.7499853960961104,0.571204503186577,0.49831872063995014,0.5241768149799664,26.184935623808272,26.184935623808272,36.732643665761664,36.732643665761664,30.093988929240126,30.093988929240126,29.509609919828733,29.509609919828733,29.248610509797444,29.248610509797444,10.033132320958472,15.451075847649165,10.92328544562298,9.800467313220068,10.536832200996926,10.491507996267401,16.84514107669669,11.834809463417287,10.189666036380387,10.746994936543075,276.35376492211753,276.35376492211753,0.0,307.0597388023528,0.0,276.35376492211753,307.0597388023528,0,0
+2017/06/01 19:00:00,260.5114539756872,0,931.6155718203538,0,0,0,74.31005822780634,0.0,18.032855392098348,0.0,101.68988858149199,0,39.380909295966944,3.0124128956647138e-09,27.0977424753112,0,0,0.0,541.2216941823683,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6434.952156312807,5473.892434268729,8098.6815156982175,5815.325828309141,48574.00478308263,9456.138011901105,9166.097245355608,10212.562533640059,5536.254289004425,62301.51077283011,9830.014789580055,9641.141012596603,10958.650464519931,5736.509375223079,62919.449223591095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04959990309758046,0.0015693063600229634,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0057160415897857,1.0057160415897857,1.0773380769073857,1.0773380769073857,1.0662948469164888,1.0662948469164888,1.0648918426462983,1.0648918426462983,1.080768852744369,1.080768852744369,0.4969527726853771,0.6628493950730459,0.5302015056937539,0.4868805515500422,0.53317411390108,0.511097777519659,0.687136067751008,0.55680495369568,0.49831038596092625,0.5389789330347876,26.360947661708252,26.360947661708252,29.48675652469548,29.48675652469548,28.992710036681345,28.992710036681345,28.930251825425614,28.930251825425614,29.641113201994216,29.641113201994216,10.161029083207097,14.23032511965765,10.88100260489324,9.952353958971685,10.947701582639155,10.46148361317897,14.92619114341781,11.49154548785583,10.189491056294486,11.079052705053783,260.5114539756872,260.5114539756872,0.0,289.45717108409684,0.0,260.5114539756872,289.45717108409684,0,0
+2017/06/01 20:00:00,255.80153935858095,0,872.7475981688949,0,0,0,64.39919987198081,0.0,22.69424279044795,0.0,106.16168237671882,0,39.380909295966944,2.9097051892653715e-09,23.165505020556704,0,0,0.0,517.8440730434537,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4854.43486878715,3808.0367614278716,5767.826108465786,5255.895738166301,41398.95734743919,8022.317186218331,7264.561251862652,8698.653902231066,4514.672229657412,56811.858735794885,8297.768552389854,7744.57274275991,9284.987873736985,4626.350270560081,56979.53935886124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046465728576476246,0.001470143262875084,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0010120828404434,1.0010120828404434,1.0550614873278241,1.0550614873278241,1.0196752229033033,1.0196752229033033,1.0476006125850208,1.0476006125850208,1.0761161166300364,1.0761161166300364,0.49820116994278674,0.6145660086831419,0.5197735985960551,0.4867657034282088,0.5404928143820428,0.5081137015210411,0.6400129881481887,0.5383933667633679,0.4936219950271632,0.5428903049156459,26.1622841499929,26.1622841499929,28.49459806860706,28.49459806860706,26.955391482182904,26.955391482182904,28.166269219301398,28.166269219301398,29.431877856728207,29.431877856728207,10.18719842851202,12.922819329199157,10.650047629787451,9.949999806186526,11.113548709782464,10.397378889886951,13.599317781387114,11.065736349840435,10.091537574286676,11.168382193799744,255.80153935858095,255.80153935858095,0.0,284.2239326206455,0.0,255.80153935858095,284.2239326206455,0,0
+2017/06/01 21:00:00,244.15104541688083,0,859.1939406826452,0,0,0,50.19043192391344,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.961505246892701e-09,25.496651241840578,0,0,0.0,539.7807680697481,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3377.0494337861965,2598.1077736931293,4350.4701175588,4561.598768023277,34661.773194888716,5644.550362036001,5519.930131911838,6193.829033624489,3015.8479805888146,43850.46524527461,5817.263357728372,5715.719987603036,6616.045044001303,3052.6107532161222,43634.42638725179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04574412181262386,0.0014473121278682018,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9971063121346407,0.9971063121346407,1.040104493915193,1.040104493915193,1.0111869187325246,1.0111869187325246,1.0304800767877675,1.0304800767877675,1.0688448921897231,1.0688448921897231,0.4972015605294394,0.6012914002294,0.5051452885528052,0.48703058764396684,0.5369855933450918,0.5013099334134444,0.6057947230395198,0.5152396945611176,0.4886104730653705,0.5354760158875688,25.997967703051216,25.997967703051216,27.838420477561996,27.838420477561996,26.593050724711333,26.593050724711333,27.42049952237423,27.42049952237423,29.10641040895493,29.10641040895493,10.166238890109554,12.581071524871888,10.333992633993603,9.955430251302673,11.033782975145144,10.252658054598868,12.696150032870733,10.551099626141593,9.987882708233286,10.99961425740382,244.15104541688083,244.15104541688083,0.0,271.2789393520898,0.0,244.15104541688083,271.2789393520898,0,0
+2017/06/01 22:00:00,168.18246524410296,0,654.514001580747,0,0,0,31.564931911080663,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.857003470057766e-09,20.864575724843363,0,0,0.0,494.8074152742986,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270.4346907112526,450.99736191648657,1310.7556100014328,2983.886174280218,15995.60150277179,3390.1253523634305,3920.9194962429665,3965.0733136123254,1592.4352465121185,31481.619996434165,3431.7510176105166,3937.523217186392,4229.711891465441,1541.7104237556935,30876.682916511632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03484681024704337,0.001102528785985998,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9644631338783631,0.9644631338783631,1.0021364667562083,1.0021364667562083,0.9734299559792454,0.9734299559792454,0.9816925670298425,0.9816925670298425,1.0063330197887599,1.0063330197887599,0.49736061880812643,0.588280089194909,0.5018209674654217,0.48808621302468835,0.5317474597279308,0.4953813502620199,0.5845563405888251,0.5048337049100129,0.4840793177822024,0.5262150413261989,24.64752397300238,24.64752397300238,26.209694420116463,26.209694420116463,25.01438213153132,25.01438213153132,25.355188049347063,25.355188049347063,26.387066680846047,26.387066680846047,10.169571092839433,12.253524023745314,10.263458602394152,9.97710192751471,10.915642755104301,10.128184082175409,12.161134393692919,10.327361297199317,9.89509676382771,10.792155482604372,168.18246524410296,168.18246524410296,0.0,186.86940582678105,0.0,168.18246524410296,186.86940582678105,0,0
+2017/06/01 23:00:00,97.58615601952005,0,512.6797610728415,0,0,0,10.218898333980546,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6369949229254392e-09,11.856276624064215,0,0,0.0,459.4442323040254,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1451.407669050585,0.0,0.0,1571.814242525195,837.5921756179023,0.0,14466.597819275717,0.0,1444.1012803250278,975.1979995481913,0.0,13452.973625491104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027295450224834976,0.0008636090186154676,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8003958740204872,0.8003958740204872,0.8501487060803607,0.8501487060803607,0.848981318289612,0.848981318289612,0.9333436927830734,0.9333436927830734,0.9247435629853108,0.9247435629853108,0.5019088913066596,0.5847276823116307,0.5055343467574,0.4574058211094219,0.5348650041912549,0.4913850856942528,0.5743318940082,0.5025631364225555,0.4402890217771386,0.5266062012897388,18.506623475878172,18.506623475878172,20.251819176008723,20.251819176008723,20.209683445018925,20.209683445018925,23.398802171462094,23.398802171462094,23.06048018779198,23.06048018779198,10.265317983729418,12.165372332653263,10.342278729302564,9.366842322811024,10.98581229947284,10.045136883683469,11.910550633184243,10.279164213298685,9.043991094413684,10.800842898841509,97.58615601952005,97.58615601952005,0.0,108.42906224391116,0.0,97.58615601952005,108.42906224391116,0,0
+2017/06/02 00:00:00,43.44978727826101,0,492.677213026134,0,0,0,0.3067237641846188,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,3.808339127077668,2.5796461049420926e-09,9.537403387995907,0,0,0.0,439.4416842573178,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172.93026021339108,0.0,276.5580192814185,742.86879546185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.026230499750807573,0.0008299147279489563,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8796543271476046,0.8796543271476046,0.9174112438944131,0.9174112438944131,0.9000059084728446,0.9000059084728446,0.9152151246448057,0.9152151246448057,0.9325162407809366,0.9325162407809366,0.620109429390235,0.8090863295165913,0.6295525648309152,0.576773807026003,0.7265485729755968,0.6014785567003995,0.784812219641759,0.6230234874731024,0.5479160622544452,0.7036606651807481,21.335540196773124,21.335540196773124,22.774372418676165,22.774372418676165,22.103894077132622,22.103894077132622,22.689100237532713,22.689100237532713,23.366122487191447,23.366122487191447,13.067795403912683,18.803958866516325,13.31783055057376,11.969985468969156,16.10967617573847,12.585836616326091,17.98145179291207,13.144540989924607,11.284135626215317,15.414236835222681,43.44978727826101,43.44978727826101,0.0,48.277541420290014,0.0,43.44978727826101,48.277541420290014,0,0
+2017/06/02 01:00:00,23.722091500414795,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249960767370028,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.922052204361675,0.922052204361675,1.0001672018554053,1.0001672018554053,0.946426522301168,0.946426522301168,0.9644832140930761,0.9644832140930761,1.0227161620528433,1.0227161620528433,0.6304725899911183,0.8662032240692144,0.6423728813081132,0.588374528271505,0.780674484940738,0.6182790249550671,0.8520425310509934,0.6443934625153135,0.5655057067156527,0.7530297885762418,22.955212409509528,22.955212409509528,26.12669079646969,26.12669079646969,23.919116911222417,23.919116911222417,24.648342014701427,24.648342014701427,27.08585449187497,27.08585449187497,13.342397800220496,20.837028925694582,13.663478024344016,12.255874968199166,17.843741452003442,13.019777700349863,20.320295490688935,13.718605050579697,11.697883309345144,16.942405176679316,23.722091500414795,23.722091500414795,0.0,26.357879444905326,0.0,23.722091500414795,26.357879444905326,0,0
+2017/06/02 02:00:00,28.344423380222132,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250602937492342,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9386862529277283,0.9386862529277283,1.023972692102671,1.023972692102671,0.9625114336483691,0.9625114336483691,0.9793917556751681,0.9793917556751681,1.0804521761475532,1.0804521761475532,0.6312500482084431,0.8708461042770533,0.6424145095658306,0.5896186350439908,0.8039161986192177,0.617932326241131,0.8627331595965078,0.6442593138887948,0.5654023661604419,0.7706121166359609,23.610459359758067,23.610459359758067,27.13986277253271,27.13986277253271,24.568089365789675,24.568089365789675,25.260022212946836,25.260022212946836,29.626848135181234,29.626848135181234,13.363186740837989,21.008256368218497,13.66461197177891,12.286881608093069,18.626683350537235,13.01069899724331,20.70963575948238,13.71493961932542,11.695413328640058,17.51189055333053,28.344423380222132,28.344423380222132,0.0,31.493803755802368,0.0,28.344423380222132,31.493803755802368,0,0
+2017/06/02 03:00:00,23.72222185963686,0,53.27421547406909,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251264359590655,0,0,0.0,17.78386296152496,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028363586924060012,8.974041192262499e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9208416716467289,0.9208416716467289,1.0088237841444596,1.0088237841444596,0.9430752726555786,0.9430752726555786,0.9572186723009396,0.9572186723009396,1.076039708177484,1.076039708177484,0.6223727902151738,0.86750334181228,0.6337785427438122,0.5809485893028259,0.8237569670244335,0.6080928258127692,0.8605264727964274,0.6349917103788023,0.5558082945366091,0.7841618230453364,22.907959288322814,22.907959288322814,26.492656045473453,26.492656045473453,23.785188319617916,23.785188319617916,24.35342254543582,24.35342254543582,29.42844806540353,29.42844806540353,13.12737206006922,20.884887034980295,13.430979054820156,12.072196661373908,19.313127010605825,12.755215245271913,20.628882835580498,13.463604156964351,11.468119332996537,17.95975735692383,23.72222185963686,23.72222185963686,0.0,26.3580242884854,0.0,23.72222185963686,26.3580242884854,0,0
+2017/06/02 04:00:00,56.01741884397444,0,88.72588128136032,0,0,0,3.9144138773338524,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,12.04784857906412,0.0,0.5470228379423392,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,443.5147640911316,0.0,0.0,0.0,0.0,0.0,7328.3384398957005,0.0,0.0,0.0,0.0,5465.754487556548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9526657800638746,0.9526657800638746,0.97889892056015,0.97889892056015,0.957840099510986,0.957840099510986,0.9579822385030676,0.9579822385030676,0.9996216051005089,0.9996216051005089,0.5323069670985208,0.6581674588369771,0.5382067474525669,0.5123849403646338,0.5678009403457701,0.5194781598473026,0.6490325005306595,0.533206293392043,0.49410582625685506,0.5551787521886067,24.169642651856748,24.169642651856748,25.239664179556584,25.239664179556584,24.378569896525477,24.378569896525477,24.384323975623843,24.384323975623843,26.10372014544484,26.10372014544484,10.928205128382928,14.099113579160047,11.061495563882573,10.489253667307267,11.75286192894032,10.643572878914455,13.845840593920613,10.948425715373489,10.101602214340659,11.453344335489433,56.01741884397444,56.01741884397444,0.0,62.24157649330493,0.0,56.01741884397444,62.24157649330493,0,0
+2017/06/02 05:00:00,80.56214910753381,0,212.9421150752648,0,0,0,0.3760484377393398,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,6.844630501729971,0.0,0.5554271381086163,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1523.435462095524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9733823908837002,0.9733823908837002,0.9789055294051905,0.9789055294051905,0.9737521841416457,0.9737521841416457,1.0045150973057322,1.0045150973057322,0.9934096903536839,0.9934096903536839,0.6680354082156151,0.8499309082023667,0.6754106241965455,0.635924612110949,0.7840183442676857,0.6442979732834129,0.8187625250856028,0.6635543418049569,0.6072094988911578,0.7615507004717708,25.012427868826336,25.012427868826336,25.239937115737277,25.239937115737277,25.027623528241946,25.027623528241946,26.31014835272248,26.31014835272248,25.842984406497123,25.842984406497123,14.376771827448579,20.243953671343405,14.587044623255139,13.488735633732318,17.954973941765346,13.715995855382786,19.13876979787686,14.250163549435428,12.732485097610919,17.216744920858346,80.56214910753381,80.56214910753381,0.0,89.5134990083709,0.0,80.56214910753381,89.5134990083709,0,0
+2017/06/02 06:00:00,92.92658405930034,0,663.553323740357,0,0,0,6.463462627063488,0.0,8.790698624030576,0.0,73.80580873715317,0,3.3417373704202835,2.521359998432723e-09,0.5248766981114316,0,0,0.0,432.86603240882,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2428.7835941250846,19625.74847987016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.035328070454307185,0.001117755523477788,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9499225493175362,0.9499225493175362,0.9569928089168649,0.9569928089168649,0.9506640968903568,0.9506640968903568,1.058162464575295,1.058162464575295,1.0041612882800948,1.0041612882800948,0.8061717703656506,1.0091451441171764,0.8177270150822099,0.8166235059243799,1.0343403360816334,0.7976393141526763,1.0025876615133384,0.8233899165151947,0.8113624413188006,0.9948160917070671,24.059304284870763,24.059304284870763,24.344286263957926,24.344286263957926,24.08910161582135,24.08910161582135,28.63165147999193,28.63165147999193,26.29519280563322,26.29519280563322,18.703884471382253,26.506296266803602,19.102751168090492,19.064416959368174,27.587715127162596,18.412977637484076,26.228732755302175,19.300277497614303,18.882360814597206,25.90188737148371,92.92658405930034,92.92658405930034,0.0,103.25176006588926,0.0,92.92658405930034,103.25176006588926,0,0
+2017/06/02 07:00:00,176.96376426535514,0,807.2672540613343,0,0,0,33.561692038963265,0.0,7.62365870417446,0.0,69.33401494192633,0,39.380909295966944,3.0124373415733924e-09,27.063489281311696,0,0,0.0,541.0896102172533,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,579.0164002601996,4941.286816211263,13856.712035442877,3341.2788410528256,2201.548863568437,3856.36096432024,2737.930925945779,37034.55093133336,3439.191635734055,2419.8343001084927,4097.857732854634,2930.039501595352,36259.57272911469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.042979506554462296,0.001359841628195772,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9555618276575619,0.9555618276575619,0.9552956510977143,0.9552956510977143,0.9695829368918536,0.9695829368918536,1.1446729654089567,1.1446729654089567,1.0055216412756376,1.0055216412756376,0.5902420641058558,0.7046801780720492,0.5881999612231085,0.6695113798730375,0.6782468899740829,0.5957215788840605,0.7058526532984438,0.5998998094601553,0.6933832640751377,0.6705487505443609,24.286448905266354,24.286448905266354,24.275699455612497,24.275699455612497,24.85660676073678,24.85660676073678,32.58937752606798,32.58937752606798,26.35272093747534,26.35272093747534,12.302444477196175,15.444733778558444,12.251529640125213,14.418664383240596,14.6685354088942,12.439957100404186,15.479861765005907,12.545688647557327,15.109312268296819,14.44816455579813,176.96376426535514,176.96376426535514,0.0,196.6264047392835,0.0,176.96376426535514,196.6264047392835,0,0
+2017/06/02 08:00:00,210.3611343372733,0,839.0761140990902,0,0,0,51.027685645875096,0.0,11.198411640824625,0.0,83.2008179303116,0,39.380909295966944,2.9615295307954673e-09,25.55330982133353,0,0,0.0,519.6629414861931,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149.553909242559,1522.3839882092852,3009.904463564123,7772.542201210676,26629.74870640262,6575.846986549062,4963.129907409958,6198.251162067489,6096.589939872672,46238.977362703285,6774.6808114003725,4943.049897604094,6472.457144171097,6558.043001220494,45836.02714358057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04467303382390711,0.00141342365051512,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0138568401536001,1.0138568401536001,0.9889344199282653,0.9889344199282653,0.998747550699906,0.998747550699906,1.2241278921813619,1.2241278921813619,1.0263726403114106,1.0263726403114106,0.5597035446746211,0.6143094039031143,0.5385540907753653,0.6742345871480347,0.5718249734732611,0.5707035157381006,0.6135664879480762,0.5481911023875515,0.7100589687673008,0.5710054341847544,26.70673113161932,26.70673113161932,25.656053315930848,25.656053315930848,26.066944349412196,26.066944349412196,36.43483992167378,36.43483992167378,27.243180303256906,27.243180303256906,11.559920728173097,12.916140685555163,11.06938989350762,14.553357157828785,11.849802673138498,11.82271565547434,12.896820951023116,11.290501953717836,15.606373177103734,11.830002645610492,210.3611343372733,210.3611343372733,0.0,233.73459370808146,0.0,210.3611343372733,233.73459370808146,0,0
+2017/06/02 09:00:00,248.76058827174398,0,888.1816794672582,0,0,0,67.67654945002771,0.0,11.128561489866103,0.0,106.27511244621549,0,39.380909295966944,2.857027380465964e-09,20.867480384356423,0,0,0.0,515.5329780855449,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7478.186967747538,3786.3130342871214,6073.525647161795,8993.811166936952,41813.07417663358,9763.378422363141,6599.056269664208,8356.440611831886,8236.67103207481,54339.32830868009,10178.101001726143,6650.875244732211,8687.270165750597,8857.668660175957,54385.34649246186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04728745049692803,0.0014961419716507504,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0868599638822167,1.0868599638822167,1.0327283446800628,1.0327283446800628,1.035829928055519,1.035829928055519,1.2403946972446591,1.2403946972446591,1.0509875379314477,1.0509875379314477,0.5814702637472393,0.6031344348538407,0.5402132725416486,0.6911390443999188,0.551936124874105,0.6042316526598189,0.6100233998421695,0.5560497316977108,0.7338829494361859,0.5544428680605746,29.916173540185042,29.916173540185042,27.517821499497614,27.517821499497614,27.652386545659326,27.652386545659326,37.24442238945314,37.24442238945314,28.315067805656682,28.315067805656682,12.08502197030927,12.628062277230356,11.107171464707065,15.043334400428705,11.377513916202886,12.656107392572807,12.805011491420345,11.473790283314273,16.33729883350533,11.436095339646215,248.76058827174398,248.76058827174398,0.0,276.4006536352711,0.0,248.76058827174398,276.4006536352711,0,0
+2017/06/02 10:00:00,277.94542225675366,0,953.1844965302594,0,0,0,65.93501201108623,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.8034145350874363e-09,18.608716157853816,0,0,0.0,491.8099138671857,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9572.716676594531,4554.952173603707,7393.388115679226,8971.11033961634,49283.31155709323,9491.137389363561,5983.701036833163,7468.861246954103,7587.301965590383,47037.37964574873,10104.413391966234,6095.435736835532,7885.400370412579,8207.550015338578,47668.24478237835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05074824862538215,0.0016056392120597455,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1363640253014249,1.1363640253014249,1.0608389296721084,1.0608389296721084,1.0636739749317201,1.0636739749317201,1.2252078913987519,1.2252078913987519,1.0927694941506116,1.0927694941506116,0.5907422406083823,0.5904102303129933,0.5334472265610704,0.6724476789353915,0.5348943665559799,0.6193704094261016,0.598797376732547,0.5501512652219849,0.7103130542904839,0.5421673229330929,32.19840168528731,32.19840168528731,28.75021975445155,28.75021975445155,28.87609215073742,28.87609215073742,36.48836860646024,36.48836860646024,30.184261775225934,30.184261775225934,12.314942746152397,12.306645355283948,10.953848841786538,14.502285925524319,10.986475187158348,13.048390908481295,12.517717628736293,11.335968607582586,15.614039626469406,11.151820500542499,277.94542225675366,277.94542225675366,0.0,308.82824695194853,0.0,277.94542225675366,308.82824695194853,0,0
+2017/06/02 11:00:00,305.6044535395531,0,1011.2611719663628,0,0,0,77.59991694036201,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.857027380465964e-09,20.79865299950476,0,0,0.0,496.6510605344729,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11533.093386053335,5381.4145502590645,8854.902164861483,8736.915768641613,57496.2250140779,11807.027365598371,7045.55920952127,9468.717908473134,8115.019356773418,57976.99964205387,12541.953839977052,7210.5352878792,9961.935680857048,8656.427253338255,59029.8801718653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053840293843380974,0.0017034693674239168,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.168067953591706,1.168067953591706,1.0810346207735275,1.0810346207735275,1.087595057673342,1.087595057673342,1.198793244315937,1.198793244315937,1.1209722920133989,1.1209722920133989,0.6119077623678557,0.594275893814255,0.5431155408222607,0.6549944320206431,0.5420777412247045,0.6446463799680489,0.60734224263593,0.5644403650429659,0.6890644998822264,0.5533054884360286,33.701952565755306,33.701952565755306,29.653087732858708,29.653087732858708,29.949455710567065,29.949455710567065,35.18849677131371,35.18849677131371,31.48005964628274,31.48005964628274,12.85377177810878,12.403549980010496,11.173546407392053,14.010729284466791,11.149769986640365,13.725517803169666,12.735898754519312,11.672442410853705,14.98253839615461,11.409481545541524,305.6044535395531,305.6044535395531,0.0,339.56050393283675,0.0,305.6044535395531,339.56050393283675,0,0
+2017/06/02 12:00:00,295.0652769937519,0,976.1166141550242,0,0,0,87.53178750189066,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.8034145350874363e-09,18.589816404415647,0,0,0.0,496.99685523567837,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12516.205604436776,5922.863896881443,9820.753592781308,8302.080145276792,60739.506490391395,14127.981217924435,8315.55691763798,11780.251216076125,8806.164120366131,69310.5149733757,14995.368982504966,8558.520554228038,12418.828269060297,9299.459576928408,70707.8814693162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05196917155369704,0.0016442683624581435,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1855441223318226,1.1855441223318226,1.1047990055915997,1.1047990055915997,1.1112447603997968,1.1112447603997968,1.1772077975121245,1.1772077975121245,1.1289267157987308,1.1289267157987308,0.6399878727673586,0.6187447386867708,0.5725590534634886,0.6522437599391051,0.5589580446261988,0.6770797932589372,0.6371623559590581,0.5994510571911452,0.6834456713444153,0.5733814505902407,34.54403510659539,34.54403510659539,30.733682987115614,30.733682987115614,31.030097166348796,31.030097166348796,34.14120326614537,34.14120326614537,31.850330998456826,31.850330998456826,13.598636248988583,13.031981157599446,11.867562746468536,13.934462714078336,11.54230022930308,14.634960568486264,13.52213753469519,12.534296500381217,14.818808927014032,11.887487299503263,295.0652769937519,295.0652769937519,0.0,327.85030777083546,0.0,295.0652769937519,327.85030777083546,0,0
+2017/06/02 13:00:00,292.8011230043135,0,924.899983916259,0,0,0,87.74062683789384,0.0,16.630907756533322,0.0,129.2730206906943,0,39.380909295966944,2.7488815055061995e-09,16.34368321802182,0,0,0.0,481.2705775094574,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12028.183879533623,6653.520906676114,10551.526756617212,8100.189508171676,62381.94980506011,13484.336878957887,8540.133425949989,12017.951483124501,8757.711562954097,67683.78605777147,14187.126166544002,8791.144876759126,12661.551713466779,9183.031118006358,69049.47372447525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049242360223285715,0.00155799395270822,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.153550885779174,1.153550885779174,1.1249907304385438,1.1249907304385438,1.1229280619486972,1.1229280619486972,1.172925733010691,1.172925733010691,1.130844288694526,1.130844288694526,0.6218890110405734,0.6323812131313338,0.5857625609986657,0.6545687392200914,0.5616193716300494,0.6483707051369585,0.6498423934860712,0.6103375120468669,0.6807167546991177,0.5731824089706727,33.00955838620486,33.00955838620486,31.66685446590624,31.66685446590624,31.570906008560087,31.570906008560087,33.935095863859985,33.935095863859985,31.939902495465404,31.939902495465404,13.114619244203709,13.39348049753626,12.190995942475851,13.998904855486174,11.605313404974126,13.827632379419555,13.868149306117147,12.813128842612684,14.739782376833816,11.882662345050349,292.8011230043135,292.8011230043135,0.0,325.3345811159039,0.0,292.8011230043135,325.3345811159039,0,0
+2017/06/02 14:00:00,264.3418866900388,0,871.190250560564,0,0,0,75.11460487925041,0.0,16.798297350153536,0.0,115.5196477718057,0,39.380909295966944,2.693419038677106e-09,14.096452187714542,0,0,0.0,463.0511966663064,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10337.773521370558,5884.705409543509,9516.487536208095,7298.0654024507585,57466.2291382216,10796.238960974713,7178.219052244559,9632.892981021816,7332.463738142895,55754.41644527643,11288.562922653151,7362.0175048826295,10134.19753655605,7661.360665972656,56738.916051075124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046382814236270956,0.0014675199109470513,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1380557301347307,1.1380557301347307,1.1221349855362515,1.1221349855362515,1.1145633617466826,1.1145633617466826,1.148378878545549,1.148378878545549,1.130559029653389,1.130559029653389,0.594587131594389,0.6149483578375904,0.5673477427947783,0.6336995722839335,0.5514689097721855,0.6121072367131294,0.6258550702984063,0.5822752198551241,0.6496398152808355,0.5591450351706905,32.27782470567624,32.27782470567624,31.53405204612787,31.53405204612787,31.183250079309474,31.183250079309474,32.76447025668534,32.76447025668534,31.926570204357233,31.926570204357233,12.411380312387337,12.932776018483139,11.741988207548275,13.428857555522953,11.36662543454375,12.858942451587026,13.219467462798477,12.104834896612417,13.86256656998495,11.54671763826471,264.3418866900388,264.3418866900388,0.0,293.71320743337645,0.0,264.3418866900388,293.71320743337645,0,0
+2017/06/02 15:00:00,247.4015373688104,0,871.1600218774272,0,0,0,65.06135404286837,0.0,16.693521149792748,0.0,108.75639138185811,0,39.380909295966944,2.693419038677106e-09,14.077386293176504,0,0,0.0,463.0209679831698,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8933.558307843752,5279.641080733782,8329.003762326429,6953.571727865216,50187.895849500404,9126.488502244143,6237.32999103883,8095.814016458609,6274.489792893791,45824.87102505865,9496.405641205762,6391.8128621602755,8498.784359016898,6547.367934599701,46668.75111293318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046381204838790165,0.0014674689907326016,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1114406109665187,1.1114406109665187,1.1038616553892608,1.1038616553892608,1.0933927118834017,1.0933927118834017,1.1426278497731088,1.1426278497731088,1.1067106398689321,1.1067106398689321,0.5763143605790408,0.6028253295218812,0.5522883931745243,0.6148275003729472,0.5300949973407212,0.5895944427765171,0.6145775904190874,0.5660510689087396,0.6294799296433048,0.536331064491356,31.039125404810733,31.039125404810733,30.69069477095009,30.69069477095009,30.21260440417342,30.21260440417342,32.49293958930437,32.49293958930437,30.821445308540405,30.821445308540405,11.958783033111942,12.620170914003296,11.385729811514224,12.929628104042663,10.878619885754688,12.286278028360002,12.923120834035316,11.710925884481071,13.315892551629986,11.018955839704276,247.4015373688104,247.4015373688104,0.0,274.890597076456,0.0,247.4015373688104,274.890597076456,0,0
+2017/06/02 16:00:00,259.84214590880464,0,940.9258216726262,0,0,0,58.09766385196024,0.0,16.693521149792748,0.0,131.64086955684016,0,39.380909295966944,2.693419038677106e-09,14.02918205155091,0,0,0.0,479.55123900955243,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7604.520089728191,4365.882729788575,7419.291090724874,6785.653569503138,47624.6934465857,7722.977840233666,5131.355853080915,6942.692334945342,5101.862603220161,41298.82207383337,8040.128526763682,5237.288401128892,7326.505010130551,5305.064460416102,41936.153437528286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050095587695879566,0.00158498947519248,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0851518447062019,1.0851518447062019,1.0778193760193364,1.0778193760193364,1.0730743554381414,1.0730743554381414,1.1309648235901504,1.1309648235901504,1.1089335940333562,1.1089335940333562,0.5474067641561307,0.5685470729677539,0.5241036846411609,0.5772261436912366,0.5149936157769234,0.5568920925779582,0.5734547846563078,0.5352177085408036,0.5871045860523841,0.520392609771126,29.83890885661816,29.83890885661816,29.508386200000672,29.508386200000672,29.295498932854528,29.295498932854528,31.945536790564816,31.945536790564816,30.92365517812395,30.92365517812395,11.272355608934532,11.770783548168353,10.745377945082652,11.981023498064943,10.545754642790584,11.493595706849476,11.889265418926854,10.993777457995748,12.224293713191585,10.663625948599204,259.84214590880464,259.84214590880464,0.0,288.71349545422737,0.0,259.84214590880464,288.71349545422737,0,0
+2017/06/02 17:00:00,257.6735788942902,0,958.3888492235584,0,0,0,48.86992527950963,0.0,16.923524308209636,0.0,133.89528835348938,0,39.380909295966944,2.8034145350874363e-09,18.603931654311015,0,0,0.0,497.0142665604845,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5386.506766795498,2713.801318442824,5802.978798054845,6449.767100530258,40594.34138199491,5931.298946602493,3789.5247501573986,5820.882930024501,3618.2716293610265,38052.71054795318,6189.376591354517,3844.917574893353,6224.939518090031,3711.3406037662535,38477.944333096464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05102533221767213,0.0016144059437766041,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0852989992485804,1.0852989992485804,1.0834316989788035,1.0834316989788035,1.075750148311619,1.075750148311619,1.1240300562302348,1.1240300562302348,1.119066007622625,1.119066007622625,0.5509318468643047,0.5724985302063189,0.5308588862400134,0.5754833595055993,0.5307892479373301,0.558417829303412,0.5758554818334065,0.5410345064421862,0.5826473220007811,0.5367836877818056,29.84556123094535,29.84556123094535,29.761202464204644,29.761202464204644,29.41545227978095,29.41545227978095,31.62214968414294,31.62214968414294,31.391633598929303,31.391633598929303,11.35412083523893,11.866097583790264,10.895719865638341,11.93854444370821,10.89415993567873,11.529546860840071,11.947603580863685,11.125916078386965,12.114003199769428,11.029207200301613,257.6735788942902,257.6735788942902,0.0,286.3039765492113,0.0,257.6735788942902,286.3039765492113,0,0
+2017/06/02 18:00:00,250.3957088313051,0,946.2083774393097,0,0,0,56.68899186060952,0.0,17.724046137657638,0.0,110.93442390708215,0,39.380909295966944,2.961529530795471e-09,25.667337627027266,0,0,0.0,520.3241472887802,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4938.553939557056,2403.500619781035,5449.666845376563,6190.1516905213875,40960.67061095661,7283.751751727105,4505.100812694883,7212.408104850078,4362.728325300273,49871.00397486638,7459.614365386796,4496.228815016865,7535.824386255992,4397.875322265549,50160.97875141787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05037683487772208,0.0015938879399805192,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0713360616254037,1.0713360616254037,1.0653922005500627,1.0653922005500627,1.0642654327526166,1.0642654327526166,1.106304317975877,1.106304317975877,1.1194173930822033,1.1194173930822033,0.5528666894542483,0.5670732071942843,0.5343146059262714,0.5738038637519424,0.5527032588212275,0.5564671221768543,0.5648735807179104,0.5402944615908067,0.5764328653883317,0.558369998888347,29.21770783528396,29.21770783528396,28.95251847611432,28.95251847611432,28.902388223678173,28.902388223678173,30.802780916028183,30.802780916028183,31.40792412862642,31.40792412862642,11.399228984582606,11.735405515503757,10.973393363656527,11.8977326827834,11.395412552801687,11.483600040798606,11.682781881768918,11.109023298197982,11.961671595711877,11.528418293306359,250.3957088313051,250.3957088313051,0.0,278.21745425700567,0.0,250.3957088313051,278.21745425700567,0,0
+2017/06/02 19:00:00,224.88114563543957,0,931.460641165811,0,0,0,36.62777762383446,0.0,20.084827655822497,0.0,101.68988858149199,0,39.380909295966944,3.0124373418367406e-09,27.0977424753112,0,0,0.0,541.0667635278256,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1345.698916824786,0.0,2374.1881197304565,5259.623578954359,26147.482142537083,3406.1592314383697,1765.217532321032,4041.7367707176195,1622.0670922816926,35872.79819322031,3503.739262075784,1653.2103317643894,4356.1118442240195,1531.116578095527,35481.66955649469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049591654474774434,0.001569045379347145,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0572786150433586,1.0572786150433586,1.0332491276763331,1.0332491276763331,1.0481264420111036,1.0481264420111036,1.084447988959963,1.084447988959963,1.1117466869494945,1.1117466869494945,0.5431674299626439,0.5550558072843758,0.5275919182257729,0.5626400608949048,0.5593910533286423,0.5408339554415836,0.5457188755362331,0.5281836578499391,0.5601197495084776,0.5623652845567442,28.592552974081485,28.592552974081485,27.540391454608894,27.540391454608894,28.189343391196928,28.189343391196928,29.807100239383004,29.807100239383004,31.053237342872507,31.053237342872507,11.174736434244835,11.450460894733311,10.82276442909098,11.629562113840066,11.552531807708775,11.121335817400166,11.23339527001825,10.835944435724997,11.569768550763996,11.623029755768059,224.88114563543957,224.88114563543957,0.0,249.86793959493284,0.0,224.88114563543957,249.86793959493284,0,0
+2017/06/02 20:00:00,218.96490502450158,0,872.5298498826726,0,0,0,25.861683079119558,0.0,24.398945138444315,0.0,106.16168237671882,0,39.380909295966944,2.9097292946869257e-09,23.161685131342214,0,0,0.0,517.6263247572311,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,626.2733702287157,4691.423470965035,16905.36609488281,1581.469563278201,354.7775447878488,2603.105034416385,192.35370526599226,28822.89212233651,1526.8720412517705,172.8698070054827,2803.210317564608,0.0,28200.200602719127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046454135496430154,0.0014697764659034691,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.024924622278931,1.024924622278931,0.942216045059726,0.942216045059726,1.0449549988655844,1.0449549988655844,1.066510977369037,1.066510977369037,1.1098443449999749,1.1098443449999749,0.5518095393768513,0.5592071294041315,0.5351570809344823,0.5671770572759464,0.5715285393482396,0.5476012119508428,0.5505885315296063,0.5332886389495158,0.5594111726440991,0.5721324330389922,27.180817724628056,27.180817724628056,23.750921936632935,23.750921936632935,28.050327891136106,28.050327891136106,29.00233783152521,29.00233783152521,30.96557888246238,30.96557888246238,11.37456289745505,11.548184869296762,10.9924079150435,11.73789520195757,11.842637476255433,11.276851841463198,11.346133870715846,10.95027893565323,11.55300740541172,11.857238396632368,218.96490502450158,218.96490502450158,0.0,243.29433891611285,0.0,218.96490502450158,243.29433891611285,0,0
+2017/06/02 21:00:00,199.80894804935247,0,859.0483770782569,0,0,0,5.732039648277234,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.961529530795471e-09,25.61294614994843,0,0,0.0,539.6352044653596,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3866.4054623494003,3127.1398001749467,0.0,0.0,0.0,0.0,6517.055416567732,0.0,0.0,0.0,0.0,5689.761341145675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04573637189850629,0.0014470669259876575,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9091249978666438,0.9091249978666438,0.8017028261218051,0.8017028261218051,0.9684714453991138,0.9684714453991138,1.0463363805069854,1.0463363805069854,1.1031660111046566,1.1031660111046566,0.4634035839590698,0.4412964550088591,0.48898323195104193,0.43727493680021406,0.5706298255031125,0.44549543645136924,0.41013489053231017,0.48280278729902293,0.4077637023716627,0.5677114076225938,22.453646672706654,22.453646672706654,18.551135613605396,18.551135613605396,24.811128894663526,24.811128894663526,28.110833855168835,28.110833855168835,30.658810763197025,30.658810763197025,9.482952934268525,9.062644033406784,9.995555266397147,8.988444798767603,11.820937696022426,9.140859308308492,8.505846826107728,9.869116812889075,8.465182912789743,11.750713034009351,199.80894804935247,199.80894804935247,0.0,222.0099422770583,0.0,199.80894804935247,222.0099422770583,0,0
+2017/06/02 22:00:00,137.10548355729134,0,667.7406946971458,0,0,0,0.5645750260314578,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.857027380465964e-09,20.78795092308091,0,0,0.0,508.0341083906972,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2272.2290907816155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03555100918566021,0.001124809149536683,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7190936915889841,0.7190936915889841,0.6153878586138566,0.6153878586138566,0.7846830184885133,0.7846830184885133,0.987465973006228,0.987465973006228,0.9194302731603489,0.9194302731603489,0.3692257945136335,0.34323576787241483,0.39927408341754983,0.3370342640694538,0.5268253283970109,0.3326293002992728,0.28903027213275145,0.3795149637274278,0.28365722484525824,0.5117358356593957,15.88068474064022,15.88068474064022,12.944228821239804,12.944228821239804,17.97714076672783,17.97714076672783,25.594883525026233,25.594883525026233,22.852939683746072,22.852939683746072,7.83799747585978,7.450786188219624,8.321566643479088,7.362638613691857,10.805712468480635,7.301018954436174,6.7354705971271045,7.999241558296546,6.671337057416892,10.47524052140723,137.10548355729134,137.10548355729134,0.0,152.33942617476814,0.0,137.10548355729134,152.33942617476814,0,0
+2017/06/02 23:00:00,87.64503440951388,0,497.36097176079335,0,0,0,0.272925712487199,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6370178815550116e-09,11.8611276355514,0,0,0.0,444.12544299197714,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1071.5294424981541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02647986653513216,0.0008378045191819988,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5110500857820548,0.5110500857820548,0.41229590445131054,0.41229590445131054,0.5746711478231152,0.5746711478231152,0.9240003040790222,0.9240003040790222,0.667597015291285,0.667597015291285,0.2518206875899198,0.22373841250532783,0.2808582218016609,0.2169278516545825,0.4022775987196864,0.19560060486304048,0.1499326728760191,0.24148208662474105,0.14414825971427922,0.38227262211160984,10.460456058500313,10.460456058500313,8.543116175979407,8.543116175979407,11.918792412320528,11.918792412320528,23.031379891780887,23.031379891780887,14.364347075481845,14.364347075481845,6.316299364907081,6.03850790995476,6.638410355477973,5.976122063310967,8.372023582529849,5.7933244868122955,5.465807194999101,6.210178192460077,5.430526700252045,8.043225069667002,87.64503440951388,87.64503440951388,0.0,97.38337156612653,0.0,87.64503440951388,97.38337156612653,0,0
+2017/06/03 00:00:00,42.639675955086986,0,508.2922818259933,0,0,0,0.640465469798847,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,1.259264064744898,2.5796687810947702e-09,9.554312353163496,0,0,0.0,455.0567530571771,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83.92849494099987,0.0,112.035894578451,941.0833387917019,1126.9363768969133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02706185757989765,0.0008562183101571558,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7495738117718861,0.7495738117718861,0.6742913780287192,0.6742913780287192,0.7698863745599503,0.7698863745599503,0.9048001783816269,0.9048001783816269,0.8071463070420151,0.8071463070420151,0.48986854177442285,0.480201296300605,0.48831103559106825,0.48370879841148484,0.6286786910240367,0.4023250629806851,0.3707261883581208,0.419716230838062,0.37900861585356804,0.6005376094439917,16.832021989206623,16.832021989206623,14.554982551528227,14.554982551528227,17.488122824378692,17.488122824378692,22.287352815744697,22.287352815744697,18.737306281716783,18.737306281716783,10.01380178823635,9.81638891290099,9.98172368160445,9.887548709916857,13.294529677943245,8.372824046846901,7.861229317228194,8.672612135649985,7.99120079196787,12.561895050063285,42.639675955086986,42.639675955086986,0.0,47.37741772787443,0.0,42.639675955086986,47.37741772787443,0,0
+2017/06/03 01:00:00,23.72202804188114,0,37.35937284749715,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249326182033459,0,0,0.0,1.86902033495302,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0019890406827372787,6.293186072608063e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7526473190803037,0.7526473190803037,0.6901267261689282,0.6901267261689282,0.7717478295376334,0.7717478295376334,0.9272588460160799,0.9272588460160799,0.9203651962636206,0.9203651962636206,0.4955175832489666,0.4938927536081083,0.4783241199128854,0.5028629894038459,0.7108941627704964,0.42413944455032915,0.39979453910881574,0.423490752523366,0.4168063436832336,0.6663893847381499,16.930164012669366,16.930164012669366,15.013644457876055,15.013644457876055,17.549129718017014,17.549129718017014,23.15912343470241,23.15912343470241,22.88937621867329,22.88937621867329,10.131027325680947,10.09716863884043,9.778523012096755,10.285516385914363,15.631583707710448,8.75092691841823,8.330282286043726,8.739389055263814,8.621548911024917,14.330163946603605,23.72202804188114,23.72202804188114,0.0,26.357808935423485,0.0,23.72202804188114,26.357808935423485,0,0
+2017/06/03 02:00:00,28.344338378134637,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.524975291661741,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.748127508359982,0.748127508359982,0.6893377425688559,0.6893377425688559,0.7567848271148567,0.7567848271148567,0.9044175755064559,0.9044175755064559,1.0004400401680045,1.0004400401680045,0.4500931832527731,0.44945400308791517,0.4281983140070346,0.45964745903742343,0.7394644301751493,0.39420795025345406,0.3718177857802703,0.3862941147791498,0.39226816336548126,0.6674985627642626,16.785979197141216,16.785979197141216,14.990535331766011,14.990535331766011,17.062919884437818,17.062919884437818,22.27267780265082,22.27267780265082,26.13818203755754,26.13818203755754,9.227371968075744,9.215290540732127,8.823529281988328,9.41005688575062,16.512068952301718,8.237333558772903,7.878191741910314,8.107948223057463,8.205371851036162,14.361557918810576,28.344338378134637,28.344338378134637,0.0,31.493709309038486,0.0,28.344338378134637,31.493709309038486,0,0
+2017/06/03 03:00:00,23.722182344567294,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250869208895,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6895534352810417,0.6895534352810417,0.6327618244275511,0.6327618244275511,0.6932695294034396,0.6932695294034396,0.8197354077943944,0.8197354077943944,0.9716301605905139,0.9716301605905139,0.40994396431200164,0.40992687804994343,0.3857224350794448,0.41967936570007425,0.7578356063297865,0.34767583358334136,0.3264641253678709,0.33677779631792104,0.34607963870053343,0.6703410590874542,14.996850243537295,14.996850243537295,13.403686139479461,13.403686139479461,15.10596334535721,15.10596334535721,19.17265113316199,19.17265113316199,24.94049675633822,24.94049675633822,8.50256368554119,8.502269948684841,8.09870531885855,8.671962949109556,17.09675175509838,7.514900741950967,7.216159063706925,7.359028380573733,7.491755204564541,14.44225461095013,23.722182344567294,23.722182344567294,0.0,26.35798038285255,0.0,23.722182344567294,26.35798038285255,0,0
+2017/06/03 04:00:00,41.1197465625234,0,88.72588128136032,0,0,0,0.005391728214743091,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,3.5254170991314666,0.0,0.5250393231141096,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.418308016359255,0.0,0.0,11.491008276737723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7332303603295762,0.7332303603295762,0.677184676975036,0.677184676975036,0.735424150451494,0.735424150451494,0.8505998242737466,0.8505998242737466,0.9010111511724017,0.9010111511724017,0.35278966736917483,0.3516975441226975,0.3474624730674791,0.3542266073708648,0.4799479822811917,0.32867974209937906,0.3082419357652122,0.3175866500506063,0.3270727995381657,0.4524450754076297,16.316951999758373,16.316951999758373,14.63797543517363,14.63797543517363,16.38542399099859,16.38542399099859,20.26811703374831,20.26811703374831,22.14228364589674,22.14228364589674,7.58978321300421,7.573697713222046,7.511800647352516,7.611024705719757,9.811270258079091,7.246470058933909,6.974760628470449,7.096797478613212,7.224465356112503,9.2719774344488,41.1197465625234,41.1197465625234,0.0,45.68860729169267,0.0,41.1197465625234,45.68860729169267,0,0
+2017/06/03 05:00:00,74.4817168847038,0,212.9421150752648,0,0,0,0.26486347438364904,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,1.7751816416793504,0.0,0.5776645794410579,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179.44235234686138,55.963184002742466,177.23888821662345,615.3165667113644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8864484254653775,0.8864484254653775,0.8632621757852407,0.8632621757852407,0.888734232384975,0.888734232384975,0.9423299800012439,0.9423299800012439,0.9245162232333093,0.9245162232333093,0.39020351084629046,0.3882231119658486,0.37262095988774957,0.3958283680990097,0.6579202795056628,0.33563216481146696,0.3132477663389145,0.3231831017822549,0.333871256546094,0.6053030484264035,21.59016242871165,21.59016242871165,20.729024862538637,20.729024862538637,21.676252467966407,21.676252467966407,23.755464031331442,23.755464031331442,23.05157696347706,23.05157696347706,8.171529443442125,8.139239234588715,7.890704778930427,8.264156372884031,14.092212757836435,7.342935712136892,7.039674199553659,7.171655063685307,7.318308909593426,12.683542911601975,74.4817168847038,74.4817168847038,0.0,82.75746320522644,0.0,74.4817168847038,82.75746320522644,0,0
+2017/06/03 06:00:00,90.02716932183289,0,662.0543884310975,0,0,0,0.4536859005820543,0.0,6.2483786185391095,0.0,80.56906512710079,0,2.2312272788996284,2.5213822783922207e-09,0.5248123941899346,0,0,0.0,431.3670970995606,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1844.3070159806348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03524826602817084,0.0011152305670631079,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9515811006996509,0.9515811006996509,0.9529233501206138,0.9529233501206138,0.9543515750498139,0.9543515750498139,1.0273846497783203,1.0273846497783203,0.930762145201937,0.930762145201937,0.44816453370193776,0.44889533452709945,0.43587836275140995,0.5618548234731076,0.8493731358044178,0.3907318681845117,0.372015188370553,0.3864909804786597,0.5174673323217784,0.7723977970899245,24.125979200338904,24.125979200338904,24.18001786208437,24.18001786208437,24.237595706261047,24.237595706261047,27.2868111542777,27.2868111542777,23.296935907372713,23.296935907372713,9.190971193449002,9.204745291205384,8.96283978184772,11.610903070087161,20.22381939802274,8.18017257889818,7.8812646224411935,8.111134374486781,10.599604492584092,17.570466402094397,90.02716932183289,90.02716932183289,0.0,100.03018813536987,0.0,90.02716932183289,100.03018813536987,0,0
+2017/06/03 07:00:00,115.74563344819036,0,697.3214423443421,0,0,0,0.3136363421072483,0.0,6.191941755229098,0.0,69.33401494192633,0,39.380909295966944,3.589058682904684e-05,0.5250952223739146,0,0,0.02120130843810888,431.122597191823,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,482.93132596639447,0.0,0.0,0.0,0.0,0.0,612.3310153576899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03712591010105393,0.0011746379167032442,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.41240815046887547,0.41240815046887547,0.3415385606704563,0.3415385606704563,0.20856427722468496,0.20856427722468496,0.946436277096611,0.946436277096611,0.4392767606890402,0.4392767606890402,0.11613619098144728,0.06448221923691176,0.11659714460154424,0.11440930367522271,0.21561175491872273,0.09124381297671805,0.03240538691042785,0.0810300832417309,0.09850781064163584,0.16632378296125133,8.545057462499074,8.545057462499074,7.426499864419583,7.426499864419583,5.9021684215246495,5.9021684215246495,23.919507397921635,23.919507397921635,9.025292694296326,9.025292694296326,5.279368257876257,5.086087821364558,5.281591663302024,5.271117119897127,5.964290466266235,5.172404791353301,5.021738808399121,5.135956827011583,5.200960369699359,5.573350878651993,115.74563344819036,115.74563344819036,0.0,128.60625938687818,0.0,115.74563344819036,128.60625938687818,0,0
+2017/06/03 08:00:00,139.68316034276435,0,748.9955742227222,0,0,0,0.3363159979336735,0.0,11.541431746919748,0.0,87.89947186453183,0,39.380909295966944,3.835978722842848e-05,0.5249930776249413,0,0,0.02266382184166848,429.55973778798347,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1326.4194795787719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03987707915763286,0.0012616829879303756,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.07249612458207914,0.07249612458207914,-0.08882590319949178,-0.08882590319949178,0.16522981205916001,0.16522981205916001,0.963741107753317,0.963741107753317,0.3612549562541136,0.3612549562541136,0.07031236876025808,-0.00841752900974692,-0.06905777013947853,0.016249439223119663,0.10765164349557245,-0.02602059311701011,-0.07804477034848144,-0.12978324616224662,-0.013907845785233963,0.059680717044692376,5.108820983658234,5.108820983658234,5.163385431908509,5.163385431908509,5.565824494751354,5.565824494751354,24.61812002711777,24.61812002711777,7.716187073207962,7.716187073207962,5.102362403592949,5.001466734345172,5.098741274048223,5.005465913347379,5.240019614751688,5.014016139930291,5.126120843818853,5.348934151149521,5.00400409471662,5.073742566942855,139.68316034276435,139.68316034276435,0.0,155.2035114919604,0.0,139.68316034276435,155.2035114919604,0,0
+2017/06/03 09:00:00,180.6072588660277,0,890.1789986125714,0,0,0,0.6140991137733561,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,4.7404371484952915e-05,23.138678964875808,0,0,0.028013329909854643,517.5022839009482,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2301.5024173089364,0.0,0.0,0.0,0.0,0.0,0.0,144.17400503659374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04739378924765209,0.001499506455599436,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.159661736919965,0.159661736919965,-0.011919822697452944,-0.011919822697452944,0.2739679849311874,0.2739679849311874,0.9821226291907303,0.9821226291907303,0.46089195401626337,0.46089195401626337,-0.08918439111301177,0.05610493913083818,-0.0658030903653119,0.07732524638948082,0.12032045504316388,0.11919653320571809,-0.006518018654859026,-0.12819005873590283,-0.0452169836651961,0.07926132189110713,5.528290048009282,5.528290048009282,5.002941190798381,5.002941190798381,6.558763367785076,6.558763367785076,25.372998843028142,25.372998843028142,9.434141805943355,9.434141805943355,5.164707358730453,5.065169491310854,5.0896515261264454,5.123805435751862,5.299874695924032,5.294295061435037,5.000879453461621,5.340413710521062,5.0423276207164065,5.130084509133539,180.6072588660277,180.6072588660277,0.0,200.6747320733641,0.0,180.6072588660277,200.6747320733641,0,0
+2017/06/03 10:00:00,207.56459606831618,0,955.7406895050116,0,0,0,0.8359200891039696,0.0,14.839439983088985,0.0,131.64086955684016,0,39.380909295966944,1.0931668615495598e-05,20.86744621164739,0,0,0.006459638695875,494.35964720324176,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3422.6167587361006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05088434223274715,0.001609945118931704,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.33546931660610463,0.33546931660610463,0.14313455412799883,0.14313455412799883,0.4473852431583765,0.4473852431583765,1.0260728099589247,1.0260728099589247,0.6240465856261964,0.6240465856261964,-0.07144781171764514,0.09991282942155069,-0.036646408619626834,-0.018131443840319308,0.10488701284062549,-0.0491037417531175,0.04071937146871951,-0.08718573244446635,-0.04091968195734909,0.07973344623431755,7.340652709535149,7.340652709535149,5.424487317043372,5.424487317043372,9.176308469619869,9.176308469619869,27.23026097062052,27.23026097062052,13.171573033029375,13.171573033029375,5.105695866260973,5.206736414200037,5.027801604321809,5.0068053744635534,5.227843963866107,5.049917978446601,5.034325374749358,5.157405290691045,5.034663943922055,5.131639276038584,207.56459606831618,207.56459606831618,0.0,230.62732896479574,0.0,207.56459606831618,230.62732896479574,0,0
+2017/06/03 11:00:00,215.10321154860952,0,1032.1036327146605,0,0,0,1.2824357388611523,0.0,14.783782912797726,0.0,136.4899973586286,0,39.380909295966944,2.9097532846114107e-09,23.166086239445242,0,0,0.0,517.4935212827706,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5107.194892897623,229.76188451360596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05494996189176997,0.0017385784909725083,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7204402492371796,0.7204402492371796,0.325132787558851,0.325132787558851,0.648023502181931,0.648023502181931,1.0992991174350741,1.0992991174350741,0.8622107160184523,0.8622107160184523,0.20094150852851814,0.058632165529508395,0.11400887268187253,0.14518429034005786,0.27518906955796507,0.20353438170071547,0.01966578336485322,0.08608523153147091,0.09379769683540863,0.26939461317289237,15.921869907580174,15.921869907580174,7.198045685681194,7.198045685681194,13.818087253786004,13.818087253786004,30.48187581122363,30.48187581122363,20.69049891338328,20.69049891338328,5.837315624585699,5.071173716696066,5.269221539404725,5.4367432883292395,6.572732435447762,5.859102372764852,5.008005913277486,5.15345537368448,5.182194791105786,6.507002933537592,215.10321154860952,215.10321154860952,0.0,239.0035683873439,0.0,215.10321154860952,239.0035683873439,0,0
+2017/06/03 12:00:00,210.79579340319722,0,996.6056641368249,0,0,0,8.665389642094535,0.0,14.783782912797726,0.0,124.80122689546741,0,39.380909295966944,2.9097532846114103e-09,23.16448465396079,0,0,0.0,517.4859052174791,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194.23787466374273,0.0,0.0,4917.769129491122,8293.489332895522,377.2293861494903,0.0,0.0,0.0,7431.313002751869,566.8754434552122,0.0,9.084412815310348,0.0,7504.278175859421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053060023751104024,0.0016787821655973945,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9008030419793129,0.9008030419793129,0.4894129571090274,0.4894129571090274,0.8038813634029713,0.8038813634029713,1.055311898437984,1.055311898437984,0.9470165211938238,0.9470165211938238,0.36462690815958687,0.1844131773376351,0.2690506945012197,0.2455947120898347,0.3699967645616679,0.38875250897438457,0.15671819730362632,0.2656173861674212,0.20142487237590026,0.37627928757819934,22.134332721206547,22.134332721206547,10.004407814724146,10.004407814724146,18.625492736511802,18.625492736511802,28.505652638370975,28.505652638370975,23.942741464999813,23.942741464999813,7.7673869015328165,5.70504195378291,6.503146163847134,6.251854517186075,7.849923056511216,8.147854589556133,5.508969727124054,6.464917508342197,5.841355787689309,7.948047697809926,210.79579340319722,210.79579340319722,0.0,234.2175482257747,0.0,210.79579340319722,234.2175482257747,0,0
+2017/06/03 13:00:00,209.3314955983074,0,959.0218594299898,0,0,0,11.863057855395708,0.0,14.783782912797726,0.0,122.5097643007467,0,39.380909295966944,2.8570511763174714e-09,20.79398123054318,0,0,0.0,515.3924530231882,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751.3451991337533,0.0,19.969473936794053,4589.378178850997,11063.805934833219,894.0532401602431,0.0,45.40279695928331,0.0,10470.782969185424,1337.2810405994385,0.0,160.43076840013134,0.0,10646.315111856966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05105903414993741,0.0016154722494212928,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9567672160191393,0.9567672160191393,0.6120018299727443,0.6120018299727443,0.8605209119989319,0.8605209119989319,1.0408708382946508,1.0408708382946508,0.9592056993267274,0.9592056993267274,0.42002689707013807,0.278197212709252,0.3255310020902339,0.2867993694178905,0.39282125567073395,0.4467456132316807,0.27274881138139734,0.33557116356523436,0.25544083214605895,0.4023546455131739,24.335162921315913,24.335162921315913,12.856209936007545,12.856209936007545,20.62867959478052,20.62867959478052,27.87184326727703,27.87184326727703,24.43388492702809,24.43388492702809,8.67808521074403,6.607413417645361,7.203455673205994,6.708694247224599,8.214468713575357,9.164293042143527,6.544878861916317,7.342080391187125,6.354520612652664,8.373322992284102,209.3314955983074,209.3314955983074,0.0,232.590550664786,0.0,209.3314955983074,232.590550664786,0,0
+2017/06/03 14:00:00,188.6494135455902,0,899.7274681162075,0,0,0,7.176098478258498,0.0,14.728125842506467,0.0,108.75639138185811,0,39.380909295966944,2.8034381200941996e-09,18.607888544196655,0,0,0.0,491.5884142219501,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217.31587605771338,0.0,0.0,4250.011976993242,8241.298683982077,117.26057009329121,0.0,0.0,0.0,5396.95803980921,525.9117989757726,0.0,0.0,0.0,5448.898690415322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04790215683664071,0.0015155908517535948,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9039361075107396,0.9039361075107396,0.6876448095394717,0.6876448095394717,0.8518453953183033,0.8518453953183033,1.031723994985754,1.031723994985754,0.9213873887643839,0.9213873887643839,0.37945607836718204,0.29821528505642714,0.28814072622441705,0.24030273795570445,0.3543949386444198,0.40389907448969853,0.31600843287720176,0.3135389689082895,0.21692217248417653,0.36085241911859006,22.254219177549672,22.254219177549672,14.941040563367636,14.941040563367636,20.313160568545342,20.313160568545342,27.47432266957871,27.47432266957871,22.92925406323066,22.92925406323066,7.998305900897506,6.847927709373494,6.724768659244887,6.198358035864274,7.613518803157945,8.399423686308907,7.075927297181622,7.0434830474711845,5.976070852183511,7.7101072937541915,188.6494135455902,188.6494135455902,0.0,209.6104594951002,0.0,188.6494135455902,209.6104594951002,0,0
+2017/06/03 15:00:00,191.75161448428156,0,899.7268041142404,0,0,0,12.570937919246695,0.0,14.876918321203716,0.0,106.31215624428707,0,39.380909295966944,2.8034381200941996e-09,18.61069270077371,0,0,0.0,491.58775021998287,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,610.2406286642878,935.7481461211281,677.9677225702659,4084.6965594850417,12900.644341636864,619.0611387585179,1002.6660164387213,296.394636557676,0.0,9488.569050157406,949.8728058740335,1182.9371036646166,494.9125983334032,0.0,9470.011189789855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04790212148468415,0.0015155897332423318,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8663872139593954,0.8663872139593954,0.8961268138658914,0.8961268138658914,0.8398819562602051,0.8398819562602051,1.0075937862607884,1.0075937862607884,0.9169534416781298,0.9169534416781298,0.34889757117704595,0.38861850142956883,0.2861197293935643,0.2580376743747581,0.34316328520165074,0.36589959663345517,0.4177320343712437,0.3023430866011182,0.234244819372011,0.35000422455395686,20.843797462942987,20.843797462942987,21.95613908082217,21.95613908082217,19.883196299502984,19.883196299502984,26.44048432769678,26.44048432769678,22.756580591256025,22.756580591256025,7.532689672339856,8.145672631997641,6.700578638629139,6.382277422389393,7.449746489476695,7.7868373590228686,8.63775372717376,6.899627777002763,6.138562231713777,7.5488577235930165,191.75161448428156,191.75161448428156,0.0,213.0573494269795,0.0,191.75161448428156,213.0573494269795,0,0
+2017/06/03 16:00:00,208.4191125978443,0,927.8909189098093,0,0,0,17.737203077239098,0.0,14.78378283874635,0.0,120.17895923267236,0,39.380909295966944,2.748904862577783e-09,16.3382581504706,0,0,0.0,466.5163362467357,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1417.863076124617,1198.5407665566302,1724.3116794325342,4428.3226642046375,18494.72156634889,1202.8406551782302,1367.2275227934963,970.5259333784587,259.90214881706083,12799.71429853921,1456.616445706186,1607.7084953944557,1196.3600025756798,206.9160047006028,12620.040905691441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049401599817747825,0.0015630321824778473,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8726866809603556,0.8726866809603556,0.9089423941359885,0.9089423941359885,0.8655233351248198,0.8655233351248198,1.017787783453737,1.017787783453737,0.9388013432894046,0.9388013432894046,0.33931344101169875,0.39413385905612547,0.2998862081996617,0.2855948759741936,0.33716347427481186,0.352903940545644,0.42028881820970676,0.3131631741503601,0.2692964204606514,0.3401544350273531,21.076382101868745,21.076382101868745,22.44661006403426,22.44661006403426,20.812029608592965,20.812029608592965,26.874589388038615,26.874589388038615,23.615031403226155,23.615031403226155,7.394844739349679,8.236109809489918,6.8687689791765365,6.694324684851921,7.364458531877432,7.591469234989233,8.682702748228806,7.038568430501343,6.505901273474933,7.40678421158745,208.4191125978443,208.4191125978443,0.0,231.57679177538256,0.0,208.4191125978443,231.57679177538256,0,0
+2017/06/03 17:00:00,225.00875804659975,0,952.9525767156128,0,0,0,11.818390893646587,0.0,16.798297355077125,0.0,138.40412594678773,0,39.380909295966944,2.8034381200941996e-09,18.607034552317852,0,0,0.0,491.57799405253905,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472.6000727134674,728.6892747503639,1369.6068980876944,4228.764072543465,15709.162458030061,0.0,676.4699541034081,170.06260815818797,0.0,7966.384210488939,68.77789837734721,899.2326831173398,423.9902807015256,0.0,7522.005510031566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05073590104266582,0.001605248543149576,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8646106868752497,0.8646106868752497,0.944251223720802,0.944251223720802,0.8834516765462018,0.8834516765462018,1.0088789762154988,1.0088789762154988,0.9478876092776688,0.9478876092776688,0.3184341117310311,0.40779609917940585,0.3070014219375403,0.23136556946662398,0.3364441659837975,0.3316059683438126,0.43200941012761845,0.31814333180513166,0.20852679974996632,0.33726673771292065,20.778501827868965,20.778501827868965,23.832133163423165,23.832133163423165,21.47762017452635,21.47762017452635,26.49499841324767,26.49499841324767,23.97764643936,23.97764643936,7.108047768248298,8.465736868817828,6.958838131143111,6.110682060989561,7.354336128825551,7.286821782038913,8.89234325439324,7.1041841547205,5.90184362367124,7.365913501074971,225.00875804659975,225.00875804659975,0.0,250.0097311628886,0.0,225.00875804659975,250.0097311628886,0,0
+2017/06/03 18:00:00,216.27461767009532,0,965.3964975697764,0,0,0,14.336099715554214,0.0,16.86091083164338,0.0,120.14191543460078,0,39.380909295966944,2.961553698339823e-09,25.55478238936842,0,0,0.0,539.5122674192468,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,880.324736064216,4055.0724649280114,12658.314685264015,241.3235318673974,666.0597614212223,941.0283628507397,0.0,13576.692792675743,328.93570357228975,846.6433930902035,1228.5017948849563,0.0,13016.740368361725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05139842460623662,0.0016262103268839367,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.840143355163735,0.840143355163735,0.8997427341183312,0.8997427341183312,0.8922389398717746,0.8922389398717746,0.9989913633135898,0.9989913633135898,0.9530667824985729,0.9530667824985729,0.33598828097676753,0.41404154269744986,0.33819383841864503,0.23828429983731905,0.37065359447911517,0.3465065297129382,0.43217738103386105,0.3505707281809934,0.2076875446478459,0.3720177668650342,19.892527176879724,19.892527176879724,22.093850399574762,22.093850399574762,21.808664414035334,21.808664414035334,26.077199837048965,26.077199837048965,24.185796610189243,24.185796610189243,7.347932101506871,8.57336794254816,7.378996519931974,6.178263526714673,7.860103076547119,7.497934703713696,8.8953905196703,7.557154418481929,5.894585633154591,7.881304771741128,216.27461767009532,216.27461767009532,0.0,240.30513074455035,0.0,216.27461767009532,240.30513074455035,0,0
+2017/06/03 19:00:00,214.3074944790319,0,909.8869418873626,0,0,0,20.5514739658181,0.0,17.924568507282753,0.0,110.89738010901058,0,39.380909295966944,2.961553698339823e-09,25.55316259799193,0,0,0.0,519.4930642493771,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,1686.1819203585267,4048.027255224398,12879.192254456517,1014.9939988960325,1621.550098908482,2627.425017061293,0.0,20674.434757906045,997.9438132472401,1757.6907527632284,2907.847109292328,0.0,20293.33764557027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04844305474540696,0.0015327044845500147,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8295604755418481,0.8295604755418481,0.7903128326127095,0.7903128326127095,0.9571659665871076,0.9571659665871076,0.9904235833277768,0.9904235833277768,0.9704314332234337,0.9704314332234337,0.3657874393550755,0.47911406808479307,0.40890242813488736,0.29665308981739485,0.4185068480643785,0.3687626345880441,0.49790253714468696,0.4240035454452005,0.25484552835466073,0.4192110171753367,19.51704473682696,19.51704473682696,18.165647169987253,18.165647169987253,24.35129039522151,24.35129039522151,25.71817037744259,25.71817037744259,24.891356219726646,24.891356219726646,7.7851204898232,9.794439112085058,8.484681064571532,6.828549336584018,8.651345584724837,7.830845371876947,10.180932255242965,8.748508274702957,6.34819757007007,8.663720512786227,214.3074944790319,214.3074944790319,0.0,238.11943831003543,0.0,214.3074944790319,238.11943831003543,0,0
+2017/06/03 20:00:00,181.66331906328952,0,872.3601137543484,0,0,0,2.4409027885173447,0.0,21.839837399389175,0.0,94.88958839347283,0,39.380909295966944,2.9097532846114103e-09,23.112081183033478,0,0,0.0,517.4565886289072,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3129.2308447373116,0.0,0.0,0.0,0.0,0.0,3109.2405117377048,0.0,0.0,0.0,0.0,2224.9141591026137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0464450986192335,0.0014694905454081901,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6540493417648379,0.6540493417648379,0.5706663548514229,0.5706663548514229,0.7758636581614322,0.7758636581614322,0.9655680358218973,0.9655680358218973,0.9470836435340203,0.9470836435340203,0.221313244901152,0.2908483946835137,0.32571682989643586,0.10083128451734033,0.40887488808044675,0.21234710062300946,0.32925154161815046,0.33828167279216453,0.04808294927985781,0.40392513302974753,13.98448823842324,13.98448823842324,11.821819027590962,11.821819027590962,17.684545240662686,17.684545240662686,24.692559610295206,24.692559610295206,23.945430028241816,23.945430028241816,6.016070133760621,6.757447975772365,7.2059825585726855,5.2105564829479505,8.484208846994846,5.935254673243222,7.254326431705991,7.380237910152175,5.047863899873377,8.399864948784426,181.66331906328952,181.66331906328952,0.0,201.8481322925439,0.0,181.66331906328952,201.8481322925439,0,0
+2017/06/03 21:00:00,192.42819705915466,0,858.9278170519556,0,0,0,0.6142530621459894,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,2.961553698339823e-09,25.604400542531064,0,0,0.0,539.5146444390584,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2465.749201566696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04572995319340639,0.0014468638426325035,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.511281289545891,0.511281289545891,0.40700982361482635,0.40700982361482635,0.6421590758994826,0.6421590758994826,0.9455628685575737,0.9455628685575737,0.8569202602426325,0.8569202602426325,0.11698016804209622,0.1665928909087798,0.20747574303001654,-0.014078488232466034,0.36813964259458326,0.08661106505939749,0.16073062326758172,0.2051699692926145,-0.09278809182661912,0.3480521124138278,10.46543843650035,10.46543843650035,8.452304960606114,8.452304960606114,13.657655181581077,13.657655181581077,23.88455955975651,23.88455955975651,20.49734885994033,20.49734885994033,5.283445888987657,5.575209955382888,5.892758603041315,5.0041029549336855,7.821239566932434,5.1553364271841815,5.53539519270339,5.872990145521101,5.178292246344611,7.520372730785738,192.42819705915466,192.42819705915466,0.0,213.80910784350516,0.0,192.42819705915466,213.80910784350516,0,0
+2017/06/03 22:00:00,136.83115244239093,0,651.2888413575237,0,0,0,0.21558920464684964,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,4.612970812286592e-06,18.60818222280212,0,0,0.0027250133584441243,491.57953003771667,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,838.0649540122246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03467510032786128,0.0010970960038347638,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2250207405432113,0.2250207405432113,0.11143176415779603,0.11143176415779603,0.3563370055798418,0.3563370055798418,0.8803591459781436,0.8803591459781436,0.5419256499389838,0.5419256499389838,0.07875549477390323,0.08243839649631277,0.030262036518669017,-0.009249428460931904,0.2008964135807209,0.025615169343712704,0.04880598047349997,0.003350873416422216,-0.08057519013374186,0.1697663110767143,6.050471719813288,6.050471719813288,5.257181276278956,5.257181276278956,7.642380844884258,7.642380844884258,21.361866685183983,21.361866685183983,11.1462894327952,11.1462894327952,5.128429011796058,5.140725233574685,5.018958108162664,5.001770974468528,5.836939199978417,5.013582762151842,5.049314352083471,5.000232432631336,5.134434180765936,5.597360661492388,136.83115244239093,136.83115244239093,0.0,152.03461382487882,0.0,136.83115244239093,152.03461382487882,0,0
+2017/06/03 23:00:00,89.59780232075111,0,516.0084378852421,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,9.838816324691674e-06,14.086811423096533,0,0,0.0051760339243424386,462.76773308250165,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027472671443900285,0.000869216174453314,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.030539412844901827,-0.030539412844901827,-0.14751176044168282,-0.14751176044168282,0.10030164838345161,0.10030164838345161,0.770385808100957,0.770385808100957,0.24521504310806244,0.24521504310806244,-0.035350425294781544,-0.03561574913761553,0.016889572798812306,-0.05253164912657504,0.028210419312684046,-0.07060760222034931,-0.0576333183417109,-0.03938305158963993,-0.1396894094280403,-0.01445164049442873,5.019307248635755,5.019307248635755,5.450871968349745,5.450871968349745,5.208349328546419,5.208349328546419,17.50447663976962,17.50447663976962,6.247977276156433,6.247977276156433,5.025869884324891,5.026259698463292,5.005905052049968,5.057131636169828,5.016474621260244,5.103224015775609,5.068769009645493,5.0321092232646265,5.404281753079701,5.004323338185145,89.59780232075111,89.59780232075111,0.0,99.55311368972346,0.0,89.59780232075111,99.55311368972346,0,0
+2017/06/04 00:00:00,42.96300848228713,0,512.1278346404627,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.6370407302102846e-09,11.777374414850025,0,0,0.0,458.8923058716465,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027266065252759535,0.0008626792985820159,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.23518921628490957,0.23518921628490957,0.14659068245200912,0.14659068245200912,0.3300042825214971,0.3300042825214971,0.7750587935301446,0.7750587935301446,0.5379804032253239,0.5379804032253239,0.11223136817575836,0.2163634301259214,0.14702360742539267,0.09663802896541936,0.3303613629823746,0.09446436196427904,0.14744106891360764,0.06373467398285153,-0.016576086601025514,0.2634500026417373,6.147782720839714,6.147782720839714,5.445253688716974,5.445253688716974,7.264690040548402,7.264690040548402,17.658007492453123,17.658007492453123,11.056354083200048,11.056354083200048,5.260887509721144,5.971039076239677,5.447889992455231,5.193400759356379,7.269614670686792,5.184794917169896,5.450439521298534,5.084102991115756,5.005687877179568,6.441040063498235,42.96300848228713,42.96300848228713,0.0,47.73667609143014,0.0,42.96300848228713,47.73667609143014,0,0
+2017/06/04 01:00:00,23.747013858741944,0,38.6671159242386,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.549918435064151,0,0,0.0,3.1767634116944627,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002058665892797009,6.513475383959558e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2900158209145663,0.2900158209145663,0.22118266622152605,0.22118266622152605,0.3590525270858922,0.3590525270858922,0.6979059020071363,0.6979059020071363,0.6862148053433219,0.6862148053433219,0.09932545073265081,0.20274660485555074,0.12145943693647338,0.06290542623598118,0.4717868282553049,0.06064511310352535,0.13938973466302795,0.047942205774299036,-0.05332636028651642,0.3805900587887755,6.747366539111567,6.747366539111567,6.014869006755916,6.014869006755916,7.683006761165842,7.683006761165842,15.242934434844017,15.242934434844017,14.899329333421605,14.899329333421605,5.2043117275287045,5.852453295388571,5.305582652589521,5.081928326505391,9.647840648130867,5.076145468218584,5.402547530044359,5.047584076499675,5.058873534992301,8.016350271259071,23.747013858741944,23.747013858741944,0.0,26.385570954157714,0.0,23.747013858741944,26.385570954157714,0,0
+2017/06/04 02:00:00,28.371999004230876,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5526359177579832,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.31867809893195814,0.31867809893195814,0.25605751261875237,0.25605751261875237,0.37915422598671933,0.37915422598671933,0.6710113481962795,0.6710113481962795,0.7520308646067699,0.7520308646067699,0.10348754420235742,0.20393949767689626,0.12258205962237277,0.059819399035078644,0.505244943008906,0.0362241434818414,0.12348042610903452,0.031217044855084593,-0.07919079463854269,0.4075536055124887,7.111292407647582,7.111292407647582,6.361086427112497,6.361086427112497,7.993511949067937,7.993511949067937,14.461334672130377,14.461334672130377,16.910447201557574,16.910447201557574,5.2218015817777825,5.862531784166137,5.311261387512488,5.074085735982592,10.336114434248685,5.027164559678468,5.315843465227076,5.020173600484313,5.129853047290339,8.46159153784788,28.371999004230876,28.371999004230876,0.0,31.524443338034306,0.0,28.371999004230876,31.524443338034306,0,0
+2017/06/04 03:00:00,23.721935301943642,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248398782658475,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.31535810515762275,0.31535810515762275,0.2564095679481857,0.2564095679481857,0.37065770790002284,0.37065770790002284,0.6318394516854156,0.6318394516854156,0.7766275376260038,0.7766275376260038,0.09637108237701633,0.1956810123297033,0.11375594786188938,0.04961058073372112,0.5389855568788797,0.005202906252619549,0.09617040169443183,0.0042072584098746205,-0.11048702863423834,0.4294567239998361,7.067358125641135,7.067358125641135,6.364841943137847,6.364841943137847,7.860166887244333,7.860166887244333,13.378964643999197,13.378964643999197,17.709757157013982,17.709757157013982,5.192333319502822,5.793977931878487,5.268027663626924,5.050953897628233,11.079203422776772,5.000560368049534,5.191532804672619,5.000366420324795,5.252836571059902,8.846182458450912,23.721935301943642,23.721935301943642,0.0,26.35770589104849,0.0,23.721935301943642,26.35770589104849,0,0
+2017/06/04 04:00:00,39.44233425332598,0,88.72588128136032,0,0,0,0.33463088959676013,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,1.5188371953091924,0.0,0.5249677563569431,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1069.4554319125564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3850942865543166,0.3850942865543166,0.3286290340560884,0.3286290340560884,0.4364914593242787,0.4364914593242787,0.6826544689436511,0.6826544689436511,0.7916698561754371,0.7916698561754371,0.1088663156031076,0.20804648487969213,0.12443007288886435,0.059223879124785744,0.3623712671334922,-0.006773781434138787,0.0847945995045961,-0.007580256979772647,-0.12444090651698193,0.31588562375318435,8.088565523359264,8.088565523359264,7.24577401351695,7.24577401351695,8.974070077735291,8.974070077735291,14.795863385113734,14.795863385113734,18.211286422717464,18.211286422717464,5.245469487665602,5.897686188402091,5.32072357042432,5.072617757070404,7.733083545940943,5.000949826078838,5.148887047573737,5.001189459925428,5.3207794592343305,7.074307706513707,39.44233425332598,39.44233425332598,0.0,43.824815837028865,0.0,39.44233425332598,43.824815837028865,0,0
+2017/06/04 05:00:00,75.28350308034807,0,212.9421150752648,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,2.8944520761548245,0.0,0.5250438149934862,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5657572945079705,0.5657572945079705,0.5074702822105192,0.5074702822105192,0.6133456489585459,0.6133456489585459,0.8405780746364555,0.8405780746364555,0.8695615943769569,0.8695615943769569,0.08855771504778541,0.1832887359126445,0.10213151736559294,0.03534734279684522,0.332466333821854,-0.022345916571057875,0.06682067475409484,-0.0235500033826894,-0.14138964478711671,0.2986761308442253,11.703898538445713,11.703898538445713,10.383607244063072,10.383607244063072,12.891082590522444,12.891082590522444,19.908051210493028,19.908051210493028,20.96079520228743,20.96079520228743,5.1623999725177185,5.696457895587386,5.216024333052317,5.025865372647473,7.298755067470367,5.0103368192373665,5.09244627991707,5.0114808383215035,5.4141917950221625,6.85366400962981,75.28350308034807,75.28350308034807,0.0,83.6483367559423,0.0,75.28350308034807,83.6483367559423,0,0
+2017/06/04 06:00:00,92.1592196232,0,659.8300398729803,0,0,0,0.4126553453747319,0.0,6.438664869409888,0.0,80.56906512710079,0,4.2138038632891455,2.5214044453149046e-09,0.5250304155040391,0,0,0.0,429.1427485414434,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1570.7031060154848,0.0,0.0,11.219083346193008,0.0,83.32033810064556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03512984006334687,0.0011114836520857844,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7512067597954089,0.7512067597954089,0.6932807781406066,0.6932807781406066,0.8030655546608795,0.8030655546608795,1.034875163370574,1.034875163370574,0.8996511087705187,0.8996511087705187,0.14571212201522207,0.23892567940057083,0.1669171237818546,0.24360420264238256,0.3376483630184871,0.037003521811636436,0.12738879680650922,0.04597708054207262,0.14561773623176785,0.30981308546171454,16.884114273234815,16.884114273234815,15.106294540067424,15.106294540067424,18.59762431744629,18.59762431744629,27.610925563323846,27.610925563323846,22.09035430809641,22.09035430809641,5.439927665690405,6.18463022254042,5.577453862285239,6.231594467752615,7.371294484004068,5.0283461219275125,5.336168412461987,5.043762770873087,5.439357390257896,6.995020444117131,92.1592196232,92.1592196232,0.0,102.39913291466667,0.0,92.1592196232,102.39913291466667,0,0
+2017/06/04 07:00:00,115.46776113918801,0,695.065350359696,0,0,0,0.4564204706484409,0.0,5.771406031709463,0.0,69.33401494192633,0,39.380909295966944,1.3678562291202831e-06,0.5250090310806078,0,0,0.0008070815377900888,428.8868994340774,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1821.1850274502926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.037005794092689,0.0011708375299263425,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2688350409091414,0.2688350409091414,0.20008026657186168,0.20008026657186168,0.3284978489807036,0.3284978489807036,1.0645529237008442,1.0645529237008442,0.318688510176014,0.318688510176014,-0.2582265989253762,-0.2874874610518823,-0.2161693056086497,-0.18108883141515986,-0.023167691174653008,-0.3323283085087999,-0.3678611494962225,-0.30008790256267376,-0.1785865776543106,-0.08639777829080625,6.500730325017457,6.500730325017457,5.830141211047106,5.830141211047106,7.243973803925911,7.243973803925911,28.91517449703477,28.91517449703477,7.111430916647521,7.111430916647521,6.384307846758517,6.716930640115365,5.969293941432113,5.679816371486922,5.011111093850545,7.2968385381296486,7.816950880927351,6.871292677705796,5.6611332911659815,5.154572058115676,115.46776113918801,115.46776113918801,0.0,128.29751237687557,0.0,115.46776113918801,128.29751237687557,0,0
+2017/06/04 08:00:00,147.4577220486726,0,748.2924461673745,0,0,0,1.1447368610027888,0.0,9.43726435414645,0.0,96.91714705112861,0,39.380909295966944,2.52140690658845e-09,0.5776644839064173,0,0,0.0,428.8792735544773,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4812.874247676683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03983964409915451,0.001260498568774509,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.02136036857150674,0.02136036857150674,-0.04272728054824083,-0.04272728054824083,0.0954899717638463,0.0954899717638463,1.1563621738329544,1.1563621738329544,0.2983195009910211,0.2983195009910211,-0.3244670435106503,-0.3719299695805028,-0.2648282344556365,-0.13387199077045392,0.007311510436236389,-0.42375493731541497,-0.49826079888003305,-0.36950413488486417,-0.17902515571643762,-0.04392128576629507,5.00944511434632,5.00944511434632,5.037794353686621,5.037794353686621,5.1888310121668155,5.1888310121668155,33.143131210697504,33.143131210697504,6.849224134151754,6.849224134151754,7.189016164050798,7.879937854651615,6.456200752166922,5.371284019392604,5.0011066138134055,8.744085759557208,10.188450076249993,7.842299999953497,5.664389043678668,5.039936364107177,147.4577220486726,147.4577220486726,0.0,163.841913387414,0.0,147.4577220486726,163.841913387414,0,0
+2017/06/04 09:00:00,147.36102456012608,0,801.4685899969685,0,0,0,1.0547265213666408,0.0,9.332689672910613,0.0,97.06762091869685,0,39.380909295966944,8.822313183625324e-06,0.5250693288718653,0,0,0.0034961868903649164,428.81639242836485,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4391.45550068612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04267078138456634,0.001350073779019459,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.14963797109148613,0.14963797109148613,-0.04308898889511766,-0.04308898889511766,0.19305251215055835,0.19305251215055835,1.0766949465769111,1.0766949465769111,0.43849312404707647,0.43849312404707647,-0.09951891195872575,-0.18796223626449912,-0.2498757215433313,-0.09987950001213283,-0.0035336643054333524,-0.14187864456279303,-0.24604737333837642,-0.18602286146744676,-0.14251764236795436,-0.04369894559516545,5.463976058385796,5.463976058385796,5.0384370128834775,5.0384370128834775,5.772756960780143,5.772756960780143,29.457866789430412,29.457866789430412,9.010847660959598,9.010847660959598,5.205108749637873,5.7324820677884105,6.2959921017149725,5.206598447842339,5.000258482805279,5.417064269532901,6.256485082202531,5.717422286647874,5.42083285939151,5.039533017937174,147.36102456012608,147.36102456012608,0.0,163.7344717334734,0.0,147.36102456012608,163.7344717334734,0,0
+2017/06/04 10:00:00,201.6229950788526,0,972.8762552201797,0,0,0,1.1762871708577218,0.0,13.065493553185489,0.0,124.87761316689259,0,39.380909295966944,5.465952524098434e-06,23.1226864259973,0,0,0.0018257978070388232,511.49984675929886,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4945.414207446053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051796652443850455,0.0016388099780783373,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3655738589602488,0.3655738589602488,0.0941697986245536,0.0941697986245536,0.36225170727667677,0.36225170727667677,1.0901092701305835,1.0901092701305835,0.6302379552655389,0.6302379552655389,-0.11179274071002099,-0.0742925831770891,-0.1713600605555224,-0.014943558477497402,0.04741723028890924,-0.09660966421451819,-0.08981389839839557,-0.20432652442290397,-0.055907911651298076,0.02194975898950165,7.7818525489385735,7.7818525489385735,5.183643787510633,5.183643787510633,7.731271351012438,7.731271351012438,30.063430587641463,30.063430587641463,13.336128907100473,13.336128907100473,5.258851145218259,5.114282332506235,5.608643590538335,5.004622673784596,5.046547569904632,5.19328719673652,5.167041573508854,5.8658144788684154,5.064712510936062,5.009973549456291,201.6229950788526,201.6229950788526,0.0,224.025550087614,0.0,201.6229950788526,224.025550087614,0,0
+2017/06/04 11:00:00,220.6495142318604,0,1026.0460334966992,0,0,0,1.9114989088595034,0.0,12.935301236479537,0.0,143.25325374857618,0,39.380909295966944,2.9097771519290528e-09,23.16855103906835,0,0,0.0,511.43592206480935,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5654.234500779794,1865.4871744494576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05462745082250159,0.0017283744655496166,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6830496327833956,0.6830496327833956,0.26883247657837445,0.26883247657837445,0.5582858726673575,0.5582858726673575,1.1031233895670247,1.1031233895670247,0.8279241056624211,0.8279241056624211,0.08573237032789117,-0.06261821785659792,-0.042032911474400025,0.11601802796230468,0.16924189152355887,0.08521007006656547,-0.09467023539886568,-0.06846462862648478,0.0968734383137258,0.1608763128545531,14.807320088125664,14.807320088125664,6.500701610132481,6.500701610132481,11.526433560167249,11.526433560167249,30.656857790053934,30.656857790053934,19.459404624152455,19.459404624152455,5.152199521578652,5.081181780366393,5.036575832405617,5.278799721271113,5.593671206288221,5.150350107368183,5.185601591632349,5.097052014731943,5.194344545291116,5.53636731389274,220.6495142318604,220.6495142318604,0.0,245.16612692428933,0.0,220.6495142318604,245.16612692428933,0,0
+2017/06/04 12:00:00,201.1560973332029,0,966.6470869006819,0,0,0,5.431279151686549,0.0,12.935301236479537,0.0,124.80122689546741,0,39.380909295966944,2.803461584575276e-09,18.607380750798896,0,0,0.0,487.527327981336,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4868.444379293273,6173.712857871566,0.0,0.0,0.0,0.0,3967.42169916421,0.0,0.0,0.0,0.0,3591.5424550102252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05146500690853389,0.001628316944516929,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8155860044897698,0.8155860044897698,0.3682630590606041,0.3682630590606041,0.655811421076375,0.655811421076375,1.0458883658986977,1.0458883658986977,0.8993154122575735,0.8993154122575735,0.22649259742224612,0.030999959137613692,0.08541839711834387,0.16563465337751826,0.2816073737672021,0.25564648335632556,0.005286581090730258,0.08104529274442415,0.15446145511427595,0.28397292365982985,19.028422513608447,19.028422513608447,7.823141189878243,7.823141189878243,14.033444712712978,14.033444712712978,28.091202755435674,28.091202755435674,22.077548259804075,22.077548259804075,6.0642887662928615,5.0198939864835666,5.151086416471571,5.568603936446053,6.647190779753942,6.356708409149746,5.000578537050714,5.136007885464068,5.4944017855146825,6.6750715954736535,201.1560973332029,201.1560973332029,0.0,223.50677481466988,0.0,201.1560973332029,223.50677481466988,0,0
+2017/06/04 13:00:00,206.48747443330566,0,931.1563719670909,0,0,0,10.86139970792386,0.0,12.88660173648153,0.0,124.7641830973959,0,39.380909295966944,2.803461584575276e-09,18.594380592733856,0,0,0.0,487.5269655602892,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,828.397513408544,0.0,0.0,4652.308618527,11186.44948299796,656.2284595288618,0.0,0.0,0.0,9266.452642361885,1023.4503496223616,0.0,0.0,0.0,9014.728816073199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049575454957260345,0.0015685328379049946,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8870066101821067,0.8870066101821067,0.52473429538792,0.52473429538792,0.7474787134559169,0.7474787134559169,1.0353965309540092,1.0353965309540092,0.906456736778665,0.906456736778665,0.3168483027137533,0.17199186108357162,0.1919744299432313,0.2424590960137219,0.31443258014547393,0.35020489635331575,0.17224453871763865,0.2106375583691653,0.2432128741305322,0.32137869169484323,21.611165545744612,21.611165545744612,10.75932904428862,10.75932904428862,16.765354056343753,16.765354056343753,27.633561983022787,27.633561983022787,22.35095975868596,22.35095975868596,7.087020514854714,5.613145741325624,5.7641366665794465,6.220014620385726,7.055193649052029,7.5517950892020025,5.614950959837884,5.920228066912117,6.227630977786504,7.147374457160865,206.48747443330566,206.48747443330566,0.0,229.4305271481174,0.0,206.48747443330566,229.4305271481174,0,0
+2017/06/04 14:00:00,186.14163375258445,0,881.1883428889826,0,0,0,8.839128939242721,0.0,12.88660173648153,0.0,111.01081017850728,0,39.380909295966944,2.6934651440358064e-09,14.024183599692506,0,0,0.0,473.04928899472503,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,660.0359669661761,0.0,0.0,4360.757379721813,11374.371729148723,155.62751693031544,0.0,0.0,0.0,6440.088980280077,628.2128568780936,0.0,0.0,0.0,6178.405884786411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046915120077489596,0.00148436169671543,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8874689454405089,0.8874689454405089,0.717907131803901,0.717907131803901,0.7978874093795313,0.7978874093795313,1.0254211967238502,1.0254211967238502,0.9106854614432,0.9106854614432,0.3367395489888144,0.286685084925567,0.20602854525326283,0.26032526392694827,0.3198073243898784,0.3666680009000335,0.31602201253828605,0.23801461670785892,0.27092927196598393,0.32530447078776553,21.628571733609107,21.628571733609107,15.844457905601075,15.844457905601075,18.421392754897667,18.421392754897667,27.202195213452725,27.202195213452725,22.513833884718224,22.513833884718224,7.35849022170666,6.707328207911715,5.880325113648098,6.4069637846428975,7.126342152448117,7.798614272332173,7.076106423201608,6.175591657350296,6.524273619392716,7.200377282562997,186.14163375258445,186.14163375258445,0.0,206.82403750287162,0.0,186.14163375258445,206.82403750287162,0,0
+2017/06/04 15:00:00,190.13148860014536,0,881.1519057128822,0,0,0,14.950238715986211,0.0,12.935301171685163,0.0,108.75639138185811,0,39.380909295966944,2.693465144035807e-09,14.108648031955473,0,0,0.0,473.01285181862477,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1430.5377526369175,1326.2545198880591,1021.900627037411,4481.008370042502,16612.06592813814,924.3422971204459,1250.032754060222,322.8855862663327,321.88577419230023,9964.528758199453,1350.6941564479853,1494.7619765596903,552.7232243859344,379.40550029514657,9821.286916232679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04691318013524476,0.0014843003182950546,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.878443327350732,0.878443327350732,0.9057127846792213,0.9057127846792213,0.8343311125692173,0.8343311125692173,1.0245295337179228,1.0245295337179228,0.9241320593420339,0.9241320593420339,0.33554177926085876,0.3878075425698735,0.2516081698124158,0.3016504181467128,0.3242909123476212,0.3615661027589553,0.4288252164496625,0.27496169703975654,0.3125337830039538,0.32954852600939344,21.290354393023563,21.290354393023563,22.322380447230827,22.322380447230827,19.685727771699007,19.685727771699007,27.163815724674947,27.163815724674947,23.036536798995456,23.036536798995456,7.341668439410057,8.13248468799992,6.314072741339885,6.890901911449561,7.186630431448762,7.720891249260802,8.834805924961373,6.570126557917433,7.030350692303756,7.258412391054918,190.13148860014536,190.13148860014536,0.0,211.25720955571705,0.0,190.13148860014536,211.25720955571705,0,0
+2017/06/04 16:00:00,204.57716247370308,0,924.2661536064138,0,0,0,15.140266966099023,0.0,11.08681950462398,0.0,124.87761316689259,0,39.380909295966944,2.693465144035807e-09,14.091553537427023,0,0,0.0,462.89157094334,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1188.9083355659939,2236.7107546388747,1394.4334877558294,4661.9755493218445,18705.935086217334,384.6833055207434,1631.4970554792856,132.47270439478592,0.0,9385.935897321699,766.0909696170422,2046.3565117950786,452.55390945805715,0.0,9158.296803799529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049208614628107224,0.0015569262655993927,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8978084519397356,0.8978084519397356,1.0289905060023559,1.0289905060023559,0.8829825630242514,0.8829825630242514,1.0317345117792212,1.0317345117792212,0.9649796571976313,0.9649796571976313,0.3439968706446982,0.46281087903479023,0.29507636741866283,0.32721173648049,0.3428449419580737,0.36552229789754515,0.5089374987033912,0.3163086585453239,0.34172301732802257,0.3474438403010449,22.02011764282524,22.02011764282524,27.35612229696926,27.35612229696926,21.460036015830653,21.460036015830653,27.47477796416686,27.47477796416686,24.668571459544268,24.668571459544268,7.461717004331788,9.47140978832202,6.809095338287889,7.226363566476849,7.445182785450299,7.7810639171138405,10.415037445701756,7.079889323887187,7.429133433626774,7.511530008095377,204.57716247370308,204.57716247370308,0.0,227.30795830411452,0.0,204.57716247370308,227.30795830411452,0,0
+2017/06/04 17:00:00,213.25407290755768,0,952.7499171917933,0,0,0,14.774108746141462,0.0,11.156669714402236,0.0,129.38645076019097,0,39.380909295966944,2.803461584575276e-09,18.555934388052606,0,0,0.0,491.37533452871963,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,688.8399975028394,2440.1485794987934,1741.1837920783933,4595.206296928419,17668.786562532274,16.82612057697133,1821.559818677923,376.04208635354956,0.0,9322.0686029276,328.9263874879291,2272.9422029584857,765.1962864149242,0.0,8978.613425062676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05072511129950641,0.0016049071631970835,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8944987017188775,0.8944987017188775,1.0621076701522154,1.0621076701522154,0.922372287743095,0.922372287743095,1.0280161519630486,1.0280161519630486,0.9746326584783905,0.9746326584783905,0.33809509814222644,0.49161100059905666,0.3246254281333054,0.3039206333887161,0.35020887549095636,0.3555794237675592,0.5347812465843277,0.3478909733151885,0.31557681011314653,0.35329413681849137,21.894306631849545,21.894306631849545,28.806514788130713,28.806514788130713,22.967716690128768,22.967716690128768,27.31405635746141,27.31405635746141,25.063825576477015,25.063825576477015,7.377601384436744,10.049813275604095,7.1911626393723225,6.919576593728976,7.551853351784132,7.631102942430971,10.983921584541832,7.518028648137403,7.070237935496252,7.597230499595668,213.25407290755768,213.25407290755768,0.0,236.9489698972863,0.0,213.25407290755768,236.9489698972863,0,0
+2017/06/04 18:00:00,202.1549844297572,0,943.2317409957018,0,0,0,12.779984871684547,0.0,11.198411588569618,0.0,115.6330778413024,0,39.380909295966944,2.9097771519290536e-09,23.162600829323907,0,0,0.0,517.3475108451722,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,1560.2969930800857,1560.3359533556097,4309.358277606556,12696.378160836663,0.0,1622.379187902931,698.4730939470237,0.0,9317.370775484927,0.0,2042.0932711042656,1161.9019749723502,0.0,8889.73206723903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05021835654864994,0.0015888737961171847,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8556660504208217,0.8556660504208217,1.0425832155575525,1.0425832155575525,0.9489431128761618,0.9489431128761618,1.0159241014477203,1.0159241014477203,0.9659268276290632,0.9659268276290632,0.3142784737918904,0.5006827412798733,0.35635837904927686,0.2648152508320254,0.36160813830336597,0.33804715714406003,0.5399126328171612,0.38275326536976834,0.26860872272427533,0.3635463677615894,20.45172883432825,20.45172883432825,27.946603061422834,27.946603061422834,24.01998117895272,24.01998117895272,26.794934827371378,26.794934827371378,24.7071941489383,24.7071941489383,7.053171702205702,10.239417966706583,7.642699379880909,6.4560575578394435,7.721527094324301,7.376924158828842,11.100316687854516,8.050924354509647,6.498197123894073,7.750927205187878,202.1549844297572,202.1549844297572,0.0,224.6166493663969,0.0,202.1549844297572,224.6166493663969,0,0
+2017/06/04 19:00:00,189.2646332164113,0,907.7456071502411,0,0,0,10.400526792551394,0.0,12.21207625426212,0.0,104.13412371906301,0,39.380909295966944,2.9097771519290528e-09,23.136997151658125,0,0,0.0,517.3517295122556,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,141.04147539574888,3952.98470168744,9549.475609730573,0.0,499.2740504520327,161.16287574028667,0.0,10010.889468224932,0.0,706.9720694004218,508.04689985495634,0.0,9360.60421336667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04832904849790169,0.0015290974063478578,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7975415888626007,0.7975415888626007,0.8503052208416038,0.8503052208416038,0.893579108244458,0.893579108244458,0.9989771484384301,0.9989771484384301,0.9664354405672848,0.9664354405672848,0.30094573476436576,0.4381207913087001,0.34165246491998574,0.24139386277020067,0.38489054893953517,0.31650654391031274,0.4541617240860348,0.35527098093358367,0.23104768576288326,0.383853424443346,18.409663618565418,18.409663618565418,20.257472733892968,20.257472733892968,21.859430036928217,21.859430036928217,26.076601854942226,26.076601854942226,24.727948246549417,24.727948246549417,6.882045507288879,9.00399357475402,7.428125954999615,6.209291937478298,8.085280338125912,7.082502870785262,9.304685263920959,7.626518239770064,6.107625270243403,8.068584612336295,189.2646332164113,189.2646332164113,0.0,210.29403690712368,0.0,189.2646332164113,210.29403690712368,0,0
+2017/06/04 20:00:00,193.05356811404852,0,842.7492568655124,0,0,0,10.423204921741931,0.0,16.265305283785256,0.0,108.41610117336799,0,39.380909295966944,2.803461584575276e-09,18.56804743638287,0,0,0.0,487.845731740071,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3591.6604269522463,7821.205566488921,0.0,113.36665417264786,55.78545703308415,0.0,11790.47463470664,0.0,197.609749244773,287.750422767471,0.0,10884.777566281688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044868594665512775,0.001419611059226372,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7467312312453955,0.7467312312453955,0.7558116245085705,0.7558116245085705,0.8458969221661272,0.8458969221661272,0.9819933296986229,0.9819933296986229,0.9632427973147387,0.9632427973147387,0.3050521757892735,0.42220222990159356,0.3442996536764887,0.238270670768722,0.404063068756483,0.31167737704276105,0.42978332282490234,0.351398228401645,0.21618851355885005,0.40026205677441606,16.741614017180424,16.741614017180424,17.031627869902422,17.031627869902422,20.09862804599753,20.09862804599753,25.36764322534711,25.36764322534711,24.59783859519132,24.59783859519132,6.933950304594504,8.716524477252946,7.466072362883764,6.178128424282434,8.402201168513557,7.019195839224196,8.85207281315094,7.569298055792743,5.969466546123456,8.33812129945359,193.05356811404852,193.05356811404852,0.0,214.503964571165,0.0,193.05356811404852,214.503964571165,0,0
+2017/06/04 21:00:00,183.97304605805775,0,830.8854081665972,0,0,0,0.67871805944283,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9097771519290528e-09,23.164335288473623,0,0,0.0,511.47223555370016,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2740.8288596877906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0442369545731507,0.0013996264069935,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6133397705756801,0.6133397705756801,0.5940224641094579,0.5940224641094579,0.714684638832167,0.714684638832167,0.958027481726183,0.958027481726183,0.9260587588027915,0.9260587588027915,0.1372160196530963,0.25757086999387097,0.16870017154901182,0.07304105570056481,0.3367477544237116,0.13170159655720373,0.25411164506130196,0.17585795978835017,0.03752369580726935,0.31655753720154167,12.890929873407003,12.890929873407003,12.39717712796687,12.39717712796687,15.746378024357156,15.746378024357156,24.38615568062761,24.38615568062761,23.11202735650599,23.11202735650599,5.390080060735826,6.377266985939855,5.589872081317097,5.11046347111467,7.358605671006643,5.359333643502879,6.340423113342183,5.6410579452667236,5.029148720722034,7.083176627276984,183.97304605805775,183.97304605805775,0.0,204.41449562006414,0.0,183.97304605805775,204.41449562006414,0,0
+2017/06/04 22:00:00,127.77473694891087,0,647.2341022740266,0,0,0,0.36075530862885885,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,2.803461584575276e-09,18.614096763026023,0,0,0.0,487.52751596757787,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1420.1250939503523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034459223015683625,0.0010902657961563626,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.43592499020761943,0.43592499020761943,0.4084131409244148,0.4084131409244148,0.5305437137689769,0.5305437137689769,0.9043287919519061,0.9043287919519061,0.7234640446200936,0.7234640446200936,0.04116877601340443,0.15244992364581098,0.07091572988300726,-0.022364036508950916,0.24065579230024292,0.012957486009712724,0.12568140344427597,0.05698771804545544,-0.07979003499174686,0.21189767185113023,8.963693305354909,8.963693305354909,8.476296302999813,8.476296302999813,10.888661533054304,10.888661533054304,22.269273292672423,22.269273292672423,16.014638711805745,16.014638711805745,5.035087286489357,5.481595587042776,5.104127112136112,5.0103535903257495,6.201890437802476,5.0034755665469675,5.3272112327310595,5.067236734748917,5.13182625057226,5.931292409481713,127.77473694891087,127.77473694891087,0.0,141.9719299432343,0.0,127.77473694891087,141.9719299432343,0,0
+2017/06/04 23:00:00,85.14642856914588,0,498.5636194032603,0,0,0,0.08060675463841481,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.579713800863813e-09,9.554840753089497,0,0,0.0,445.3280906344441,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,310.2015816070588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.026543896386426225,0.0008398303790444549,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.23844200887036684,0.23844200887036684,0.2051838141215026,0.2051838141215026,0.32850127280069674,0.32850127280069674,0.8460540380171084,0.8460540380171084,0.48235919732034793,0.48235919732034793,-0.04989437634172248,0.051055085121800764,-0.01625939418210341,-0.1165247851051608,0.15753817033877004,-0.09618198496502195,0.004395631773587444,-0.04761535346937063,-0.1386482549113578,0.12363409857593817,6.179827434377273,6.179827434377273,5.873108179687563,5.873108179687563,7.244020778602021,7.244020778602021,20.10427551405114,20.10427551405114,9.860105331191235,9.860105331191235,5.051538590237342,5.053964682528388,5.005472612687143,5.281242053803695,5.514315452207484,5.19157896486179,5.000399966686842,5.046937401103165,5.3982726358282775,5.316630624749692,85.14642856914588,85.14642856914588,0.0,94.60714285460654,0.0,85.14642856914588,94.60714285460654,0,0
+2017/06/05 00:00:00,40.02715634539004,0,483.4915674485079,0,0,0,0.3161552741927768,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.3638898593702641,2.579713800863813e-09,9.54979021282411,0,0,0.0,430.2560386796917,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,305.84644087463596,757.969085753953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02574144917638585,0.0008144415086706239,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.45473292386624686,0.45473292386624686,0.442638416729771,0.442638416729771,0.5237944954834078,0.5237944954834078,0.8338701797535066,0.8338701797535066,0.6946122961343506,0.6946122961343506,0.1618253392984927,0.30366836660492386,0.1622292985867598,0.11746595234187468,0.38883676203756,0.09424694954171743,0.23583456623787388,0.11100119135327582,0.028400138294028515,0.3371733595114908,9.315596624665389,9.315596624665389,9.087558621548382,9.087558621548382,10.738543994293252,10.738543994293252,19.669388249073947,19.669388249073947,15.145536824001397,15.145536824001397,5.542721392201415,6.916379492395066,5.545437437633694,5.285806350793649,8.149226820157551,5.183944938999417,6.154105035257018,5.255196535057621,5.016696962639628,7.364597794052486,40.02715634539004,40.02715634539004,0.0,44.47461816154449,0.0,40.02715634539004,44.47461816154449,0,0
+2017/06/05 01:00:00,23.722064654355812,0,48.99153998000795,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249692306780188,0,0,0.0,13.501187467463813,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002608345876895897,8.252624537792856e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4698171841457462,0.4698171841457462,0.47450498711548084,0.47450498711548084,0.5079732945786044,0.5079732945786044,0.7975501709083753,0.7975501709083753,0.788911016241407,0.788911016241407,0.13998298280049165,0.317946824250682,0.13797390738215276,0.11977288341146727,0.47484422269195525,0.10565976833531474,0.2781552328501286,0.10219280113916512,0.05131894342807077,0.4039221754008432,9.608828078189703,9.608828078189703,9.701953627248301,9.701953627248301,10.394372114932438,10.394372114932438,18.40995463309315,18.40995463309315,18.118583500043087,18.118583500043087,5.4059842909249625,7.101575173405493,5.394404646373118,5.297149755651944,9.708729471723615,5.231215281889476,6.606926805288737,5.216283780778369,5.054523980708339,8.39981486429187,23.722064654355812,23.722064654355812,0.0,26.3578496159509,0.0,23.722064654355812,26.3578496159509,0,0
+2017/06/05 02:00:00,28.34458250489171,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5252194184188184,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.512327157325935,0.512327157325935,0.5201966817326451,0.5201966817326451,0.54378397906021,0.54378397906021,0.7991683932396484,0.7991683932396484,0.8407123993552024,0.8407123993552024,0.18221691291772094,0.34808532347337745,0.16816628559197677,0.15561442759317273,0.5024746594978486,0.1342477993661471,0.3040007702660733,0.12605608855138753,0.080630076815607,0.42624913791509195,10.488005483828118,10.488005483828118,10.659326375806785,10.659326375806785,11.188885316048356,11.188885316048356,18.46488378284829,18.46488378284829,19.912849603815687,19.912849603815687,5.688324679262692,7.520855987684044,5.586139871715659,5.50181805577175,10.2772906349104,5.373373154054008,6.920592771230417,5.329166493209399,5.134617445578741,8.788575490234052,28.34458250489171,28.34458250489171,0.0,31.49398056099079,0.0,28.34458250489171,31.49398056099079,0,0
+2017/06/05 03:00:00,23.774907422512957,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5778119988351667,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5043502425596418,0.5043502425596418,0.5132431562899709,0.5132431562899709,0.5321158024928827,0.5321158024928827,0.7593287519739956,0.7593287519739956,0.8520181003647804,0.8520181003647804,0.18700065254914017,0.34671604422282043,0.16563747688556407,0.15794884651516358,0.5286475984186555,0.13342242093337198,0.3004439897205082,0.12084464869083958,0.07843212277528071,0.44202974492461744,10.31708022746676,10.31708022746676,10.507809169190438,10.507809169190438,10.923911468765965,10.923911468765965,17.144907686834173,17.144907686834173,20.319411184608995,20.319411184608995,5.724995467035356,7.500970384038723,5.568623345262097,5.517003340309913,10.846288535543508,5.368792560494427,6.875752412994373,5.3024949720363,5.127376222914691,9.076248552909135,23.774907422512957,23.774907422512957,0.0,26.416563802792172,0.0,23.774907422512957,26.416563802792172,0,0
+2017/06/05 04:00:00,42.82231964555967,0,88.72588128136032,0,0,0,0.0039193425224505,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,2.785246514333623,0.0,0.5250202390694849,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.816423746719739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.56691789740987,0.56691789740987,0.5750201072824549,0.5750201072824549,0.5910708978233048,0.5910708978233048,0.8056351971652687,0.8056351971652687,0.8529763378837815,0.8529763378837815,0.19462485673014138,0.3361300797699501,0.1734545783765282,0.16689503962462365,0.41157508109992186,0.1317181591317018,0.29479786978096334,0.11831632369316936,0.07795735688360202,0.3756768657992029,11.731683014705283,11.731683014705283,11.927275188536427,11.927275188536427,12.323161050574797,12.323161050574797,18.68549977495256,18.68549977495256,20.354114648059593,20.354114648059593,5.785416442461056,7.349923069138896,5.623632832146853,5.577300886121293,8.53066245286999,5.359424096599668,6.805670080238926,5.289961974459885,5.125838404068119,7.938565696675425,42.82231964555967,42.82231964555967,0.0,47.58035516173297,0.0,42.82231964555967,47.58035516173297,0,0
+2017/06/05 05:00:00,75.54438627302707,0,212.9421150752648,0,0,0,0.19971328872878058,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.033520937981351,0.0,0.5251090163610532,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.96776746870831,12.709248853092937,76.11132971755217,691.4324708928312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8446001485363971,0.8446001485363971,0.8482868267332537,0.8482868267332537,0.8598933228059492,0.8598933228059492,0.952558996866756,0.952558996866756,0.959858598415697,0.959858598415697,0.28481639494938005,0.4414762600147631,0.2628012548054274,0.2563034998120057,0.6074282547752574,0.220685934449859,0.38664894783493997,0.2059530590531386,0.16658094700231185,0.5539905581066268,20.052055299086973,20.052055299086973,20.1846433437437,20.1846433437437,20.605750153995118,20.605750153995118,24.16534207052166,24.16534207052166,24.460357090488046,24.460357090488046,6.685070012247792,9.06597776599449,6.433931452971777,6.363709922825521,12.738111063164709,6.01030635272862,8.11369217707977,5.879678984750726,5.575127379330539,11.425504923352051,75.54438627302707,75.54438627302707,0.0,83.93820697003008,0.0,75.54438627302707,83.93820697003008,0,0
+2017/06/05 06:00:00,87.33000271149193,0,657.6275654470691,0,0,0,0.3165631159766565,0.0,10.012036830977095,0.0,73.80580873715317,0,2.6705375824399296,2.5214264926320063e-09,0.5250564424236132,0,0,0.0,426.9402741155321,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1291.1879969547376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03501257869352387,0.0011077735840825022,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0413416686002865,1.0413416686002865,1.0387218984884008,1.0387218984884008,1.0371253008307284,1.0371253008307284,1.0437107216335546,1.0437107216335546,1.0025731759873564,1.0025731759873564,0.4013860456530901,0.5548631507078073,0.37551927029299803,0.36716746254655624,0.8164206067315152,0.34237331793427267,0.5005314900471444,0.32242640593939814,0.28186957622340264,0.7482839702068486,27.892388347850414,27.892388347850414,27.77817521866477,27.77817521866477,27.70869199533452,27.70869199533452,27.995886590795564,27.995886590795564,26.22812141329024,26.22812141329024,8.357005836731787,11.445943816323563,7.936087729134826,7.806282741840107,19.05737413282631,7.43842959527619,10.2362275822356,7.161455966378938,6.65026951305542,16.790955806798465,87.33000271149193,87.33000271149193,0.0,97.03333634610215,0.0,87.33000271149193,97.03333634610215,0,0
+2017/06/05 07:00:00,144.2278060782798,0,813.5895385787102,0,0,0,0.6021185679023886,0.0,7.833010408772478,0.0,69.33401494192633,0,39.380909295966944,1.9487516896180397e-05,27.07773337619479,0,0,0.010293920770817566,547.4016008138584,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,897.1030827120055,0.0,0.0,0.0,0.0,0.0,979.2999019770712,0.0,0.0,0.0,0.0,235.64905495172857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04331610966512569,0.0013704915159854386,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.520687384146463,0.520687384146463,0.4808000340622797,0.4808000340622797,0.3451201098951586,0.3451201098951586,1.0270756829290901,1.0270756829290901,0.6638188754848654,0.6638188754848654,0.1956432793147598,0.21254075843806072,0.1570419666854688,0.09460162921379485,0.3650997297352153,0.16977649162738845,0.2044033590547153,0.12696892503038532,0.09037601829841727,0.32710310787957364,10.67009779970249,10.67009779970249,9.828498465332984,9.828498465332984,7.477893734973662,7.477893734973662,27.27348662140048,27.27348662140048,14.257613542696404,14.257613542696404,5.793671254404174,5.9369646108236935,5.511077159421646,5.185332576414254,7.774604961498525,5.597432398343983,5.866466922662752,5.3339544795103535,5.169139811431776,7.22487937060059,144.2278060782798,144.2278060782798,0.0,160.25311786475532,0.0,144.2278060782798,160.25311786475532,0,0
+2017/06/05 08:00:00,160.0498054406131,0,842.4793223990386,0,0,0,0.3157199484092562,0.0,11.541431746919748,0.0,83.2008179303116,0,39.380909295966944,3.42774401528261e-05,25.610892241565423,0,0,0.020265226870977527,523.0458845592705,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1259.7738154635015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04485422315457544,0.0014191563546380843,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.20451844833890964,0.20451844833890964,0.10616276077508076,0.10616276077508076,0.2825761710509364,0.2825761710509364,1.0169339221351879,1.0169339221351879,0.5734131971634461,0.5734131971634461,0.13768434719641495,0.09531172969666818,0.01378232555533286,0.023124254570283453,0.2249544326703171,0.1088905443241958,0.07374627145353785,-0.09773613715643226,0.04677317235205116,0.17886794476699433,5.867444669176535,5.867444669176535,5.233423021090147,5.233423021090147,6.6585806603047075,6.6585806603047075,26.838078887197142,26.838078887197142,11.888257024970073,11.888257024970073,5.3927495649344195,5.188126439888464,5.003932145232596,5.011069468008245,6.049851393246001,5.245578818043967,5.11260735172479,5.197822873866528,5.045291543382362,5.663221076369879,160.0498054406131,160.0498054406131,0.0,177.8331171562368,0.0,160.0498054406131,177.8331171562368,0,0
+2017/06/05 09:00:00,178.4202813164724,0,866.5562415386927,0,0,0,0.7598900927327549,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,5.55999575108161e-06,20.80595228073689,0,0,0.003286035997617473,493.90425412098165,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3127.0494630185344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.32511125937699176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04613609616350514,0.0014597139231014244,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.31344517227886987,0.31344517227886987,0.16384344788880467,0.16384344788880467,0.38416970941546874,0.38416970941546874,1.0939249966594278,1.0939249966594278,0.6604378044647524,0.6604378044647524,0.023273004769287522,-0.0010685708378112562,-0.01594594021962986,-0.037311853202084196,0.24432794378279882,0.004713650413783279,0.019100236777928895,-0.06976375041247732,0.13380099555582198,0.19805231531167794,7.042255821845046,7.042255821845046,5.556358166147362,5.556358166147362,8.073671328821135,8.073671328821135,30.236822152548143,30.236822152548143,14.16262154632895,14.16262154632895,5.011212341517009,5.000023636735392,5.005263638555093,5.028820507054689,6.238941680993477,5.000459934522979,5.007552060395213,5.100770906507222,5.370890013956668,5.813370262904755,178.4202813164724,178.4202813164724,0.0,198.24475701830266,0.0,178.4202813164724,198.24475701830266,0,0
+2017/06/05 10:00:00,209.46507691128716,0,952.4884910809859,0,0,0,0.8986883031184821,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.6462724607395275e-06,18.59666707934025,0,0,0.0,491.1139084179122,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3723.519340620791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050711192779726966,0.0016044667909332704,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4079418184325214,0.4079418184325214,0.26157449101067715,0.26157449101067715,0.5029158519309375,0.5029158519309375,1.0650355139673366,1.0650355139673366,0.8008631103789791,0.8008631103789791,-0.032032993948084336,-0.03872595589967628,-0.03887739860178756,-0.10058498868360782,0.2054921752183019,-0.05466756667027331,-0.06199952336241325,-0.07493003917323743,0.11344200880900619,0.16748565288707368,8.468229091585727,8.468229091585727,6.4205376982719,6.4205376982719,10.286636643964428,10.286636643964428,28.936644496543522,28.936644496543522,18.522528299845575,18.522528299845575,5.021242024635811,5.031046622761195,5.03128993746455,5.209528645032918,5.875739192627776,5.061872623487147,5.079585210447206,5.11625240346946,5.2665494801169075,5.5813990440471315,209.46507691128716,209.46507691128716,0.0,232.73897434587462,0.0,209.46507691128716,232.73897434587462,0,0
+2017/06/05 11:00:00,226.6075411066651,0,1029.640472809286,0,0,0,1.8031710833335992,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.8570983961767752e-09,20.86307194917246,0,0,0.0,515.0303613773958,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4743.584739477312,2154.0475408139628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05481882143392887,0.0017344292982988557,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6043098628361462,0.6043098628361462,0.38108501050144167,0.38108501050144167,0.6506805123154162,0.6506805123154162,1.0909278048073934,1.0909278048073934,0.9523645700569,0.9523645700569,0.10138278799359947,0.047484789919709204,0.07145239168446427,0.005477282533349416,0.322990559658988,0.09755106106386487,0.025381174418706003,0.05431698120587909,0.08625188335528285,0.2939811942752643,12.658108455904483,12.658108455904483,8.02424335708423,8.02424335708423,13.891265446201288,13.891265446201288,30.10058365701751,30.10058365701751,24.157512886772878,24.157512886772878,5.2128671412593235,5.0466803189017355,5.105709420474426,5.00062102875313,7.169057589298532,5.197074060122134,5.01333573102967,5.061081480035583,5.154050292278754,6.795644636834197,226.6075411066651,226.6075411066651,0.0,251.78615678518344,0.0,226.6075411066651,251.78615678518344,0,0
+2017/06/05 12:00:00,210.4641975476415,0,970.2299864941945,0,0,0,6.24170717682398,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.8034849215761235e-09,18.60601628546527,0,0,0.0,491.11022757484864,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4570.403918839798,4403.673603896855,0.0,0.0,0.0,0.0,6770.02668237087,0.0,0.0,0.0,0.0,5393.756920926725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051655763136770116,0.0016343523386102637,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6895169294743367,0.6895169294743367,0.41822330540480945,0.41822330540480945,0.7073687948425755,0.7073687948425755,1.0614622863880039,1.0614622863880039,0.9956515961786223,0.9956515961786223,0.2203520976847459,0.12641160144510302,0.18297351325576475,0.06911761659403773,0.40714927631904163,0.24117217412831157,0.11726950299789343,0.19185249677463143,0.11457841617637148,0.3984115925830698,14.995781308772337,14.995781308772337,8.646368665815615,8.646368665815615,15.52537410174098,15.52537410174098,28.777871414473935,28.777871414473935,25.936915691234688,25.936915691234688,6.007245755856388,5.331027101456542,5.694060940966082,5.0989125259553845,8.454685293401923,6.207066401261571,5.284850608032485,5.763164752281057,5.271919673913089,8.307148733002037,210.4641975476415,210.4641975476415,0.0,233.84910838626834,0.0,210.4641975476415,233.84910838626834,0,0
+2017/06/05 13:00:00,210.97725183113425,0,909.5511952696079,0,0,0,9.416650140345622,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.7489512117679657e-09,16.33837742141123,0,0,0.0,465.92178886280624,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4318.196889286369,8524.49714720168,0.0,0.0,0.0,0.0,9869.954142250019,51.61755292629965,0.0,0.0,0.0,8766.20213226944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048425179346787944,0.0015321389193978896,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8255838604629621,0.8255838604629621,0.5198016611299048,0.5198016611299048,0.7487813079948873,0.7487813079948873,1.0457088228189706,1.0457088228189706,0.9801019569841045,0.9801019569841045,0.3301511913157352,0.21586707309903874,0.23159885852602416,0.10957389042947276,0.4036666276337478,0.3779288918568472,0.2304558122365013,0.26390575999414445,0.15531007462498536,0.4075709786036015,19.377166096512298,19.377166096512298,10.650662836649317,10.650662836649317,16.806781683887436,16.806781683887436,28.08333758316178,28.08333758316178,25.28937568811456,25.28937568811456,7.266715459624876,5.966580082509552,6.112928081234884,5.248672409328293,8.395488831747485,7.974091398672471,6.1019450697544215,6.44604458986511,5.499854984736444,8.46188844006474,210.97725183113425,210.97725183113425,0.0,234.41916870126028,0.0,210.97725183113425,234.41916870126028,0,0
+2017/06/05 14:00:00,191.1853464934401,0,870.3033233945724,0,0,0,5.619478403750205,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.693488012756117e-09,14.097016739256713,0,0,0.0,462.16426950031484,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4066.1843518944816,7994.2788803809635,0.0,0.0,0.0,0.0,3758.6353944251314,0.0,0.0,0.0,0.0,3191.2567225823564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0463355935770007,0.0014660258822032553,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8250254164088588,0.8250254164088588,0.6833033309800568,0.6833033309800568,0.7718467258881917,0.7718467258881917,1.0328690620707393,1.0328690620707393,0.9656760099593301,0.9656760099593301,0.300614963824538,0.2928589649281042,0.2042244209031786,0.09494684375269816,0.3860343841563982,0.35852598328746554,0.3335979145867852,0.24379911424513398,0.14076451709873772,0.390547906964053,19.357575784831695,19.357575784831695,14.814678938371244,14.814678938371244,17.552375057203122,17.552375057203122,27.52391899687261,27.52391899687261,24.696963173240633,24.696963173240633,6.8778956455195015,6.781914201062207,5.864947845690011,5.1866881961795315,8.103747173956506,7.675104799614999,7.314497946969681,6.233570989616126,5.41053417289811,8.177161894821964,191.1853464934401,191.1853464934401,0.0,212.428162770489,0.0,191.1853464934401,212.428162770489,0,0
+2017/06/05 15:00:00,181.04282112599955,0,870.2894278948405,0,0,0,2.2426868212091526,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.693488012756117e-09,14.031925951045366,0,0,0.0,462.150374000583,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3655.548569540183,4347.170016469372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046334853770302484,0.0014660024752350114,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7398365933300852,0.7398365933300852,0.8255570263290339,0.8255570263290339,0.7388518883635866,0.7388518883635866,1.0185993805310956,1.0185993805310956,0.9616045676367544,0.9616045676367544,0.17901395911111367,0.3159407502090586,0.10677463426915806,0.003925008439987503,0.31618457737437655,0.2299900566662212,0.375804362553125,0.1451536895828186,0.044331280267196405,0.31280650115516595,16.52376987386458,16.52376987386458,19.37622445117536,19.37622445117536,16.492823397302715,16.492823397302715,26.90931792626536,26.90931792626536,24.531230360463,24.531230360463,5.664305826617181,7.075034627985104,5.23612282528083,5.000318905732527,7.078251383034896,6.097485553220167,7.9405711790336255,5.436559031459382,5.040685502512389,7.033909417700855,181.04282112599955,181.04282112599955,0.0,201.1586901399995,0.0,181.04282112599955,201.1586901399995,0,0
+2017/06/05 16:00:00,207.04398666384648,0,923.5108155271038,0,0,0,5.307856684387937,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.693488012756117e-09,14.083443450731343,0,0,0.0,462.1362328640299,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,671.1870457647835,0.0,4068.575796512164,11749.107656792561,0.0,162.56296118998682,0.0,0.0,909.8749086552305,0.0,532.7704575485486,0.0,0.0,288.2054683897901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04916839986928081,0.0015556538986621243,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.773418977988535,0.773418977988535,0.9850228012243643,0.9850228012243643,0.8244177631184163,0.8244177631184163,1.0246807803095674,1.0246807803095674,0.9959029535555798,0.9959029535555798,0.18226867088131357,0.4270631769485195,0.1473514372597816,0.025747659413900312,0.34777334408635624,0.21765351021978943,0.4756086482777212,0.17924082646128575,0.05479021176036991,0.3458343660510885,17.604025390459597,17.604025390459597,25.493293677804786,25.493293677804786,19.33627407799237,19.33627407799237,27.17032369439788,27.17032369439788,25.947458988270697,25.947458988270697,5.688716327210216,8.80315349840528,5.44989150942699,5.013723638739094,7.516318198600388,5.982676704349899,9.72401619174748,5.665993004803113,5.062150591103574,7.488208242591526,207.04398666384648,207.04398666384648,0.0,230.04887407094054,0.0,207.04398666384648,230.04887407094054,0,0
+2017/06/05 17:00:00,216.84728471580334,0,952.4717930122713,0,0,0,8.219252216380248,0.0,16.7356839618177,0.0,133.89528835348938,0,39.380909295966944,2.803484921576123e-09,18.616150885345522,0,0,0.0,491.0972103491975,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,1398.3881146043836,24.909215498097783,4114.798142446435,11942.742111777221,0.0,800.9170789186845,0.0,0.0,4641.472168062537,0.0,1340.8479292455424,0.0,0.0,3856.519050164202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05071030376218022,0.0016044386630377878,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7675958298655384,0.7675958298655384,1.1016819282984889,1.1016819282984889,0.9214857797907998,0.9214857797907998,1.0216985540217822,1.0216985540217822,1.0117026781607636,1.0117026781607636,0.19956413796661363,0.5226450980816906,0.24291860096831142,0.04295821752394749,0.39027909493319723,0.2300930747671451,0.571626561315892,0.28541897999732874,0.0654411555167438,0.3923986238660719,17.413255861344766,17.413255861344766,30.590844475828433,30.590844475828433,22.933094714296658,22.933094714296658,27.042158562279127,27.042158562279127,26.61498998384856,26.61498998384856,5.825856565049378,10.713175358188579,6.224654730296592,5.03820404159454,8.172765154749897,6.098471147191958,11.845006372357815,6.692231376436254,5.088667834656448,8.207516392639022,216.84728471580334,216.84728471580334,0.0,240.9414274620037,0.0,216.84728471580334,240.9414274620037,0,0
+2017/06/05 18:00:00,205.35127918048136,0,965.1674483172727,0,0,0,12.387959760302236,0.0,17.03716081602578,0.0,110.93442390708215,0,39.380909295966944,2.961601655740304e-09,25.610825398142644,0,0,0.0,539.2832181667432,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,1436.7485001993819,511.58922650698184,3912.0060160789008,9869.476241503458,0.0,1543.4473932670835,382.2931428831992,0.0,11205.12304091065,0.0,2101.7334092242827,837.0474147176515,0.0,10352.441529632397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05138622985437502,0.0016258244934354788,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7084510784652598,0.7084510784652598,1.1093425336631226,1.1093425336631226,0.9762723348875805,0.9762723348875805,1.009277024093201,1.009277024093201,1.0036761765506241,1.0036761765506241,0.21920075526679583,0.5540282242586367,0.3453667678837763,0.0566695577692154,0.4135782926187313,0.24275539674972832,0.5978330837364061,0.38037042771196705,0.0704544491564649,0.41583562953454306,15.557923310464602,15.557923310464602,30.942476046052107,30.942476046052107,25.131323361495163,25.131323361495163,26.51189507677357,26.51189507677357,26.274694768417504,26.274694768417504,5.996726139825853,11.426386502662154,7.481453249010883,5.066487962577412,8.565327129851681,6.223005668249883,12.493294750855782,8.012851123886108,5.102776601351707,8.604595383526345,205.35127918048136,205.35127918048136,0.0,228.1680879783126,0.0,205.35127918048136,228.1680879783126,0,0
+2017/06/05 19:00:00,194.0574776294727,0,931.1115433296742,0,0,0,7.964368766407325,0.0,17.924568507282753,0.0,101.68988858149199,0,39.380909295966944,3.012509948695553e-09,27.097742475311204,0,0,0.0,540.7176656916889,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,544.1370596135049,3532.997181429224,5043.954264466956,0.0,874.1203846031092,10.331308620060994,0.0,7995.345841467187,0.0,1299.999107074092,551.1033680542353,0.0,7044.743536983592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049573068247399404,0.0015684573240686683,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6208222825151752,0.6208222825151752,0.7884611163645157,0.7884611163645157,0.9791095473173048,0.9791095473173048,0.99204070240744,0.99204070240744,0.9865898350902065,0.9865898350902065,0.17029100133584008,0.535996804850588,0.38721502654596973,0.004119055616894526,0.4168463594291544,0.18275272922950056,0.5684560936209219,0.4179936875126173,0.007768416466718526,0.4153859642184164,13.086535291236487,13.086535291236487,18.103496534174937,18.103496534174937,25.24836360310347,25.24836360310347,25.785720846305267,25.785720846305267,25.558426384636178,25.558426384636178,5.601063500842429,11.01139096678321,8.12286686044456,5.000351217767957,8.622248653022055,5.692384568947702,11.768596990799068,8.642340794066229,5.0012492432552165,8.596755663872017,194.0574776294727,194.0574776294727,0.0,215.61941958830297,0.0,194.0574776294727,215.61941958830297,0,0
+2017/06/05 20:00:00,191.3043282940662,0,872.0531832464579,0,0,0,0.6869500079732955,0.0,21.930440126291984,0.0,106.16168237671882,0,39.380909295966944,2.9098008895661066e-09,23.144346484205357,0,0,0.0,517.1496581210166,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2776.240007609142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046428757411647946,0.0014689735209909443,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4607555599942576,0.4607555599942576,0.5450161875135403,0.5450161875135403,0.7183576060621117,0.7183576060621117,0.9710699171756477,0.9710699171756477,0.9058951705329203,0.9058951705329203,0.04064653134674671,0.31755882090403903,0.23160045989776465,-0.03671584193700615,0.38937591389410875,0.03764586981506374,0.3740726310022691,0.2651446103280008,-0.044005811511150725,0.3713631310080355,9.431498895515716,9.431498895515716,11.21721202024034,11.21721202024034,15.858204186966645,15.858204186966645,24.917523237228295,24.917523237228295,22.32938482175571,22.32938482175571,5.03420267082862,7.096428554948972,6.112943506536411,5.027907060939995,8.158015173309835,5.029338853394535,7.913390862172847,6.45969220529517,5.040090239038534,7.8711206489906544,191.3043282940662,191.3043282940662,0.0,212.56036477118468,0.0,191.3043282940662,212.56036477118468,0,0
+2017/06/05 21:00:00,194.5526538552866,0,838.5692870922742,0,0,0,0.517761762854431,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,4.825036410617078e-06,25.570925019230515,0,0,0.0028514757232783617,519.1532630036538,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2064.389104157882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04464604997865409,0.0014125699004606063,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.30888728555962297,0.30888728555962297,0.3466787018365275,0.3466787018365275,0.5500168798925031,0.5500168798925031,0.9500790091965392,0.9500790091965392,0.7719977945012532,0.7719977945012532,0.04388642885182322,0.12666085361299068,0.045933681811685514,-0.08210897096558284,0.22936078303496704,0.01795915114762979,0.13241372460147932,0.05330407024143054,-0.11526425049174613,0.20160178508014057,6.9830697054729995,6.9830697054729995,7.500429189153635,7.500429189153635,11.332846175867502,11.332846175867502,24.065589450176773,24.065589450176773,17.557333263340283,17.557333263340283,5.039872995007016,5.332334718275661,5.043680184862723,5.139602461577752,6.091474836089617,5.006676651971247,5.36323308500549,5.058824321567684,5.275186604976952,5.842836943172941,194.5526538552866,194.5526538552866,0.0,216.16961539476287,0.0,194.5526538552866,216.16961539476287,0,0
+2017/06/05 22:00:00,136.71183413169675,0,674.7268264212477,0,0,0,0.10465515255704283,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,1.3232968926887864e-05,20.85420814084884,0,0,0.007823791207489763,515.0124163235917,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,403.68281180539907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03592295601332573,0.0011365772878956938,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.035907940977039414,0.035907940977039414,0.04967561736972563,0.04967561736972563,0.2618776827318686,0.2618776827318686,0.8836324808146568,0.8836324808146568,0.45634365322758125,0.45634365322758125,-0.053307663200750505,0.07463985945537106,-0.00035452379224543465,-0.12693908849670638,0.028849250154141626,-0.058916214950814415,0.04724939797439259,-0.022143423999120667,-0.16456043524471198,-0.011490700485186155,5.026692360392332,5.026692360392332,5.0510875952692516,5.0510875952692516,6.4238420391323245,6.4238420391323245,21.48439981368547,21.48439981368547,9.346441257936547,9.346441257936547,5.0588322529474254,5.115353507891143,5.000002601786235,5.333797434022529,5.01722924020882,5.071865110973334,5.0462186118056,5.010150325091999,5.561243872252888,5.002733231521773,136.71183413169675,136.71183413169675,0.0,151.9020379241075,0.0,136.71183413169675,151.9020379241075,0,0
+2017/06/05 23:00:00,88.67203232579487,0,488.02382355511463,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,6.086125988212919e-05,11.788200324715005,0,0,0.03505504562876615,434.75323974066964,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02598274984857391,0.0008220760937382108,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2430671469555288,-0.2430671469555288,-0.24655698467432866,-0.24655698467432866,-0.026834577942771973,-0.026834577942771973,0.7238632044320481,0.7238632044320481,0.1254506933513391,0.1254506933513391,-0.06405339506340021,0.020613749264620024,-0.07042051949606337,-0.24591113289763147,-0.036653391721935,-0.10434908128290667,-0.024987193084505473,-0.12273708126936277,-0.285447462961285,-0.08327523568290351,6.226156653980098,6.226156653980098,6.261708529184233,6.261708529184233,5.014906799772476,5.014906799772476,16.026914173435344,16.026914173435344,5.326010196192485,5.326010196192485,5.084946404835222,5.008796362187454,5.102677612352991,6.255090484841119,5.027812201357236,5.225511755349473,5.012924922837783,5.312049673504276,6.692570258791264,5.143597649606278,88.67203232579487,88.67203232579487,0.0,98.5244803619943,0.0,88.67203232579487,98.5244803619943,0,0
+2017/06/06 00:00:00,39.34854642822217,0,507.4176795342917,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.579736131136601e-09,9.551225429219253,0,0,0.0,454.1821507654755,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02701529310606371,0.0008547450426631657,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.05168598490527864,0.05168598490527864,0.08875789031231449,0.08875789031231449,0.23198787902079143,0.23198787902079143,0.7448889826349469,0.7448889826349469,0.4448748418302335,0.4448748418302335,0.07051057258814691,0.2778839029443351,0.10240699981894652,-0.10150257482885533,0.29749250998285004,-0.008523388532164708,0.2039594573234167,0.03468839950843414,-0.17645690704984718,0.22885443313298415,5.055306792302233,5.055306792302233,5.16313523562232,5.16313523562232,6.116678504154933,6.116678504154933,16.683206440883353,16.683206440883353,9.129251633658441,9.129251633658441,5.102940444925508,6.603783458872115,5.217191825808243,5.21337068651367,6.838949168373134,5.001503857980197,5.86270092521147,5.0249099480566315,5.645437981043656,6.086650325475958,39.34854642822217,39.34854642822217,0.0,43.72060714246908,0.0,39.34854642822217,43.72060714246908,0,0
+2017/06/06 01:00:00,23.774695309317188,0,36.29877968395252,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5775998856393946,0,0,0.0,0.8084271714083777,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0019325739171217361,6.114529162258736e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.14138928970593015,0.14138928970593015,0.20350696505840535,0.20350696505840535,0.2934267769947468,0.2934267769947468,0.6833497786816166,0.6833497786816166,0.6358670367796921,0.6358670367796921,0.034566263880225455,0.2880663641088435,0.0714409343295289,-0.12461205421651865,0.4175299800442599,-0.04513345525416202,0.22111096823324577,0.005098784674169202,-0.20233709744889833,0.3309679634764589,5.414189712825859,5.414189712825859,5.85887053186606,5.85887053186606,6.788854711932771,6.788854711932771,14.81602651656631,14.81602651656631,13.487183516547532,13.487183516547532,5.024734834822041,6.723875537544757,5.105675514562037,5.321663027922298,8.634213501213935,5.042171368993095,6.014209797248881,5.000538164054049,5.849007183100156,7.277992926826784,23.774695309317188,23.774695309317188,0.0,26.416328121463543,0.0,23.774695309317188,26.416328121463543,0,0
+2017/06/06 02:00:00,28.34417926854556,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248161820726627,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.15973392392388924,0.15973392392388924,0.2271557032977601,0.2271557032977601,0.30117576943720464,0.30117576943720464,0.637239010999674,0.637239010999674,0.7062592368120267,0.7062592368120267,0.0027544030431103403,0.2678438415343735,0.04233239636200676,-0.149906617099623,0.44846715202777804,-0.08717523392171139,0.19954683406902607,-0.0345105673469318,-0.2391962019678349,0.3452556408084428,5.528768393106972,5.528768393106972,6.070543348909453,6.070543348909453,6.884934256212105,6.884934256212105,13.524208341795884,13.524208341795884,15.492057073583638,15.492057073583638,5.000157049284667,6.4896517031791205,5.0370989375260535,5.465645151059192,9.19667214218265,5.157367372040952,5.825713109609978,5.024655184431694,6.187320761093204,7.479849257419673,28.34417926854556,28.34417926854556,0.0,31.493532520606177,0.0,28.34417926854556,31.493532520606177,0,0
+2017/06/06 03:00:00,23.7220035507622,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249081270844069,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.16465587272008123,0.16465587272008123,0.23559893516469343,0.23559893516469343,0.29668334519316236,0.29668334519316236,0.5884108003493606,0.5884108003493606,0.7555247999998274,0.7555247999998274,-0.02195693042125536,0.2523908845370481,0.018972480482020396,-0.1712227345876001,0.4936366354491958,-0.12607807004156615,0.17238718784754747,-0.07149113862278195,-0.27506404712427107,0.36866580279180194,5.5618958200107755,5.5618958200107755,6.151794597007068,6.151794597007068,6.828923662318886,6.828923662318886,12.256778019763075,12.256778019763075,17.022413146135463,17.022413146135463,5.009980067784085,6.322282901532802,5.007451369278371,5.607667221705896,10.091841975489018,5.329281382884332,5.615971272047929,5.105824125159529,6.571299305018101,7.829351253431156,23.7220035507622,23.7220035507622,0.0,26.35778172306911,0.0,23.7220035507622,26.35778172306911,0,0
+2017/06/06 04:00:00,41.23390000143673,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,1.200730471407246,0.0,0.525035980395357,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.19633849237971746,0.19633849237971746,0.2652677245939507,0.2652677245939507,0.32287954787614914,0.32287954787614914,0.591683811125529,0.591683811125529,0.7944168496383966,0.7944168496383966,-0.05782337657299447,0.21430183022509094,-0.01656123591543767,-0.20557603237801833,0.34720551654726184,-0.16538554566585356,0.13224994995007383,-0.11019958525096595,-0.3124335900040511,0.30184822597690397,5.799331197217768,5.799331197217768,6.461052005856288,6.461052005856288,7.167560707848153,7.167560707848153,12.33849990074063,12.33849990074063,18.303912034036514,18.303912034036514,5.069223386603781,5.952586396176812,5.005677689964756,5.876455370724656,7.50806967886065,5.566892876464905,5.362334426926907,5.251522015082003,7.029044055190624,6.893391718690481,41.23390000143673,41.23390000143673,0.0,45.81544444604081,0.0,41.23390000143673,45.81544444604081,0,0
+2017/06/06 05:00:00,74.22694892778469,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.9159203465908834,0.0,0.5249855512379283,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.45424541695303955,0.45424541695303955,0.5169333944647035,0.5169333944647035,0.5724025347756186,0.5724025347756186,0.8151537605548813,0.8151537605548813,0.9168005108524007,0.9168005108524007,0.002424106033859863,0.2727866314758951,0.0432082617248057,-0.14555848970217886,0.5284055785082278,-0.11292432815659606,0.18242295487356616,-0.058067395078454674,-0.2597731876229145,0.45576900917592345,9.306283131469769,9.306283131469769,10.587958899969081,10.587958899969081,11.863774027466306,11.863774027466306,19.01343988055737,19.01343988055737,22.750639033338203,22.750639033338203,5.000121642174577,6.545308632938045,5.038650117005929,5.438999614369322,10.84089125470534,5.264120920482213,5.689884444242168,5.069808962358735,6.400985932706163,9.335424309318412,74.22694892778469,74.22694892778469,0.0,82.47438769753855,0.0,74.22694892778469,82.47438769753855,0,0
+2017/06/06 06:00:00,84.42681511773418,0,655.4481162056693,0,0,0,0.4139196665191892,0.0,8.302358887567685,0.0,73.80580873715317,0,1.3795386213997598,2.5214484138082775e-09,0.5251892025728954,0,0,0.0,424.7608248741324,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1693.941688284159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034896543201579165,0.0011041023020007816,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6389683444858133,0.6389683444858133,0.7027342660594126,0.7027342660594126,0.7689518357542509,0.7689518357542509,1.0663312574298207,1.0663312574298207,0.9514675493021068,0.9514675493021068,0.07597567933087483,0.3464854853519676,0.12755859590522334,0.16528639217160843,0.7046700810401952,-0.03581925359026652,0.2608757393648341,0.031706461891517074,0.09483353569290455,0.6076848093701768,13.570993367720718,13.570993367720718,15.386564121014914,15.386564121014914,17.45755018454949,17.45755018454949,28.99433187134457,28.99433187134457,24.121410900070813,24.121410900070813,5.11952046201354,7.497629892634265,5.337065824011134,5.56621253523312,15.444431523646088,5.026560663152438,6.412937073615183,5.020811146347114,5.186242702567185,12.744711782489162,84.42681511773418,84.42681511773418,0.0,93.80757235303797,0.0,84.42681511773418,93.80757235303797,0,0
+2017/06/06 07:00:00,145.2621568743303,0,803.126488773031,0,0,0,0.6757271608292111,0.0,7.777944015249205,0.0,69.33401494192633,0,39.380909295966944,0.00017214026640320252,27.092396552709697,0,0,0.10186785081608372,536.8469770781338,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2741.1681178634612,0.0,0.0,0.0,0.0,0.0,3.469714946558274,0.0,0.0,0.0,0.0,2.839122619281527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04275904914342058,0.001352866509381904,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.12706278207428334,0.12706278207428334,0.18024933569369445,0.18024933569369445,0.24470966567015168,0.24470966567015168,1.1484203726606113,1.1484203726606113,0.3083016532199333,0.3083016532199333,-0.08309061663948301,0.009686660711371201,-0.06966787269506083,0.05600502489757837,0.19256730381557216,-0.14499266673314665,-0.036544432026207586,-0.10461417899449388,0.07046827013868015,0.13415432737283411,5.334448740212906,5.334448740212906,5.673519139754973,5.673519139754973,6.242825676230794,6.242825676230794,32.76643319207028,32.76643319207028,6.975528769047713,6.975528769047713,5.142961455175438,5.001942364995315,5.1004940538839065,5.064937551829601,5.768871246722128,5.435590104031178,5.027647082339897,5.226659587990724,5.102816937427008,5.3728529907144775,145.2621568743303,145.2621568743303,0.0,161.40239652703366,0.0,145.2621568743303,161.40239652703366,0,0
+2017/06/06 08:00:00,160.87952187878486,0,854.5009723736539,0,0,0,1.3629401371273155,0.0,11.323895916778682,0.0,83.2008179303116,0,39.380909295966944,2.5600851377443712e-05,25.610932997748925,0,0,0.015155854766497449,535.0726439059903,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5845.093069249839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045494264703740246,0.0014394068231078961,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.032159108863779824,0.032159108863779824,-0.013575990203345423,-0.013575990203345423,0.0628824382482312,0.0628824382482312,1.1956697365818505,1.1956697365818505,0.3268067906129407,0.3268067906129407,-0.043151658149805885,0.037986234233705965,-0.030841784555055228,0.037503564187357806,0.12016127627829831,-0.021487499283553587,-0.02709026998233316,-0.07205502887113431,0.05733259408231466,0.0550521862323356,5.021409622722217,5.021409622722217,5.003815289199906,5.003815289199906,5.081868447531136,5.081868447531136,35.036101220614114,35.036101220614114,7.220833323439535,7.220833323439535,5.038548910235605,5.029871803934569,5.019691481116524,5.029117450318054,5.2990812726637415,5.009557880413709,5.015192240094919,5.107500484504413,5.0680531185611954,5.0627464277425105,160.87952187878486,160.87952187878486,0.0,178.75502430976096,0.0,160.87952187878486,178.75502430976096,0,0
+2017/06/06 09:00:00,179.33038494428104,0,866.3204548418067,0,0,0,1.530833951756854,0.0,11.287802377079139,0.0,106.27511244621549,0,39.380909295966944,2.8571218061891352e-09,20.85572687040553,0,0,0.0,493.67175346009327,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6640.364567733982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046123542705114165,0.001459316740428416,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.22533751503143848,0.22533751503143848,0.03835669906430536,0.03835669906430536,0.20354005503504846,0.20354005503504846,1.1935215090622273,1.1935215090622273,0.5376204392437267,0.5376204392437267,-0.030402621273186083,-0.05132735089700368,-0.09103992411432883,0.15663977694400893,0.1916953768745043,-0.06315079310206616,-0.10310974066252662,-0.1160364654879276,0.1849218732228712,0.13791392295035754,6.053437767438268,6.053437767438268,5.030457339730873,5.030457339730873,5.859150351601201,5.859150351601201,34.93145417048187,34.93145417048187,11.048181958940205,11.048181958940205,5.0191346674995,5.0545418493660605,5.1716348741814215,5.508459941857609,5.761913285012781,5.0825688211455144,5.22018430674008,5.278888394485321,5.708942717974637,5.394061498109778,179.33038494428104,179.33038494428104,0.0,199.25598327142336,0.0,179.33038494428104,199.25598327142336,0,0
+2017/06/06 10:00:00,210.23702737793909,0,952.2302876414531,0,0,0,1.57496648971505,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.8035081241796633e-09,18.587565802503804,0,0,0.0,490.85570497837926,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6851.706410565213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05069744583735322,0.0016040318472589745,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5193501531381352,0.5193501531381352,0.20112750521536407,0.20112750521536407,0.3977690919220973,0.3977690919220973,1.1755429980773564,1.1755429980773564,0.7613811283342239,0.7613811283342239,0.0543024919423253,-0.02246133429030925,-0.061247138099660654,0.24411415730421118,0.2212040988110668,0.04483617982345166,-0.07125650613023111,-0.08183098498157651,0.2953802781504354,0.1899030463815115,10.640768693350338,10.640768693350338,5.838869108256958,5.838869108256958,8.29642899029156,8.29642899029156,34.061006017315364,34.061006017315364,17.21125509155671,17.21125509155671,5.061048892641182,5.0104438777487985,5.077665021482517,6.2367690917985215,6.015066105251208,5.041617617846313,5.105130482448359,5.138658511188865,6.812836892771571,5.747710293923234,210.23702737793909,210.23702737793909,0.0,233.59669708659897,0.0,210.23702737793909,233.59669708659897,0,0
+2017/06/06 11:00:00,240.91136863467077,0,1018.5622029809039,0,0,0,16.151188945280033,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.8571218061891365e-09,20.818881615231707,0,0,0.0,503.9520915490139,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,854.1913531883574,0.0,0.0,6813.025184769117,14052.780661897243,1319.5125311449697,30.022998647228725,97.18872626386796,1013.0863531692323,14452.47391324236,1533.1926836515886,10.219378429960226,138.9543444145889,1300.2519183711354,13886.74979516547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054229006142517494,0.0017157679536137726,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8425843320855231,0.8425843320855231,0.4786500086503927,0.4786500086503927,0.6845166463308583,0.6845166463308583,1.1350740193447297,1.1350740193447297,0.9164156941092717,0.9164156941092717,0.29999096611600606,0.21041437570780944,0.18493491165519557,0.36324910395938836,0.33055652958788573,0.3231592731959794,0.18860538743313252,0.18982969329805024,0.40875604301811624,0.32719876588450464,19.979797786383614,19.979797786383614,9.785085849296038,9.785085849296038,14.849911234711172,14.849911234711172,32.13789994460144,32.13789994460144,22.735692576489924,22.735692576489924,6.870079546809393,5.91827535624806,5.709042840880386,7.746407758128427,7.272308572884356,7.171333520798626,5.737511006541794,5.747131880212095,8.482171433884218,7.226186322517037,240.91136863467077,240.91136863467077,0.0,267.6792984829675,0.0,240.91136863467077,267.6792984829675,0,0
+2017/06/06 12:00:00,239.8192300899835,0,959.4110546271943,0,0,0,35.5242306412313,0.0,16.798297433460366,0.0,129.49988082968767,0,39.380909295966944,2.8035081241796633e-09,18.615911886833654,0,0,0.0,480.29129570784846,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3172.7821636671365,71.85235634874746,1387.7811593401507,6178.537229102227,25001.93608594494,4642.524861766866,1913.1090742470062,3038.5701392060573,2621.943071832257,32107.451866118365,5139.154835890331,1948.046803929328,3288.574954075776,2997.167188213818,31922.852835837468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05107975519051606,0.0016161278487014446,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9352282879942728,0.9352282879942728,0.6883233733326439,0.6883233733326439,0.8093761689024189,0.8093761689024189,1.0851468458294666,1.0851468458294666,0.9567328123613925,0.9567328123613925,0.39980708350794286,0.3194465574058058,0.28675567203835106,0.3990046658604752,0.39594760906905724,0.44172776131629604,0.32493270136335206,0.3109358408530718,0.4432474119267322,0.4037468608414906,23.47333486887412,23.47333486887412,14.960864249848001,14.960864249848001,18.813930402841734,18.813930402841734,29.83868288698602,29.83868288698602,24.33377175706086,24.33377175706086,8.330492499778742,7.121528159042242,6.708171868579484,8.317059481552747,8.26613460644046,9.07064313784629,7.195329930705,7.009562269720661,9.09889063655217,8.396846756123324,239.8192300899835,239.8192300899835,0.0,266.4658112110928,0.0,239.8192300899835,266.4658112110928,0,0
+2017/06/06 13:00:00,235.2694510508027,0,931.5273782536296,0,0,0,33.48011867715321,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,2.7489741901488145e-09,16.33710503408563,0,0,0.0,487.89797184682806,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3084.4077388099145,137.16935430576078,1464.389907682643,5639.312091619238,23877.683326818187,4419.133415981009,1927.0566970302532,2710.00317105432,2246.00147835112,29739.764797412405,5061.135949373064,2062.8494566286076,3091.2185950940716,2620.870673097851,29639.72802844321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0495952076067625,0.0015691577979665102,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9362984231286081,0.9362984231286081,0.7943844775492076,0.7943844775492076,0.8377554074769703,0.8377554074769703,1.0704923141856848,1.0704923141856848,0.9596093909545038,0.9596093909545038,0.41174498764918444,0.3645632000412269,0.30952929615666336,0.39733291477070953,0.4010515172398396,0.4523312598899767,0.38189395644700425,0.3368559251510963,0.43777729266978493,0.40812429141966877,23.515719926970732,23.515719926970732,18.302818619891283,18.302818619891283,19.807393201470248,19.807393201470248,29.17998736546555,29.17998736546555,24.450250863220617,24.450250863220617,8.53359593697759,7.766415066175114,6.991353278703173,8.289161695093924,8.351379655781102,9.269813354961798,8.037166280564676,7.3601278850048,8.997675563037035,8.47135119224481,235.2694510508027,235.2694510508027,0.0,261.41050116755855,0.0,235.2694510508027,261.41050116755855,0,0
+2017/06/06 14:00:00,220.27055682208177,0,870.0761367504813,0,0,0,34.54952939503581,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.693510749786878e-09,14.084786482992564,0,0,0.0,461.9370828562237,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3517.278847138152,1708.4447021711853,2219.0597131848476,5343.804700998113,26194.069073157825,4406.7974468129405,2835.6507044658347,2688.9042678942214,2391.7910725053434,27113.589241478116,5034.186954865838,3095.0419937135257,3106.277647059675,2775.2480510969413,27137.321499793536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04632349799179063,0.0014656431863185268,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9239444496154264,0.9239444496154264,0.9137855658608254,0.9137855658608254,0.8525018436509422,0.8525018436509422,1.059184316216769,1.059184316216769,0.9552827724361629,0.9552827724361629,0.4057692782798536,0.42860532677303526,0.3163803713941931,0.3970196478004951,0.3904936649610287,0.44338654300795327,0.45952876833075545,0.34550514506260405,0.4356447317553215,0.3968360649513916,23.02919395544633,23.02919395544633,22.63369690778869,22.63369690778869,20.336925629570104,20.336925629570104,28.676889603009187,28.676889603009187,24.27517942582294,24.27517942582294,8.431166611320847,8.830848656280324,7.080836270980413,8.283947268716119,8.176274453737847,9.101481786541328,9.40776332796662,7.483451298318641,8.958564532982464,8.280893425480869,220.27055682208177,220.27055682208177,0.0,244.7450631356464,0.0,220.27055682208177,244.7450631356464,0,0
+2017/06/06 15:00:00,208.5197116516511,0,870.0685448614665,0,0,0,29.70972249322557,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.693510749786878e-09,14.041780804680526,0,0,0.0,461.92949096720906,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2938.2852212033254,3094.2642073809848,2292.314175352335,5147.377492489506,25063.97443747491,3179.3477029714186,3251.924134050416,1932.1879108492403,1861.1936847274553,20795.82223881444,3742.1547201637036,3665.965301672663,2364.4197765945105,2223.842538263953,20964.365235946676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046323093793996115,0.0014656303977820576,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8944802347819477,0.8944802347819477,1.020387979242754,1.020387979242754,0.8587838325079047,0.8587838325079047,1.053341166985502,1.053341166985502,0.9537766199162999,0.9537766199162999,0.37688388836512204,0.4873514314498134,0.30851304637975363,0.3841482386874934,0.3702008310010726,0.41082079621034395,0.5322033950622549,0.3387682536669565,0.42164681298804063,0.3776557160138888,21.89360591382271,21.89360591382271,26.985939426430804,26.985939426430804,20.565254011916082,20.565254011916082,28.418714305842883,28.418714305842883,24.214407165702738,24.214407165702738,7.957579563706005,9.962011991281756,6.978249114082317,8.073325886378612,7.853083854631549,8.51765444455124,10.92587864843307,7.387120842744864,8.706690677879564,7.969770518061367,208.5197116516511,208.5197116516511,0.0,231.68856850183457,0.0,208.5197116516511,231.68856850183457,0,0
+2017/06/06 16:00:00,242.62179725333127,0,923.2963958671806,0,0,0,40.86817011144957,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.693510749786878e-09,14.100940613154503,0,0,0.0,461.92181320410697,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4258.123032117814,4476.876148714598,3947.9539498966756,5597.827441115524,33685.08779370584,4516.644682979377,4571.785652056983,3449.8695184896856,2873.494316217188,28195.42087247796,5005.291424126473,5047.084183420449,3882.376602584234,3250.467596452807,28382.780852699587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04915698400776443,0.0015552927087612578,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9068488714310292,0.9068488714310292,1.0406693353904317,1.0406693353904317,0.894210339529434,0.894210339529434,1.0624134428279568,1.0624134428279568,0.9850937128800372,0.9850937128800372,0.3741718494153547,0.5075636410701582,0.32366821579624755,0.3879947379287666,0.3739381237064537,0.40385214701252925,0.5518112941177945,0.3538194605506014,0.4217167070308665,0.3797604380105942,22.36603283751002,22.36603283751002,27.863052988155957,27.863052988155957,21.88336646888814,21.88336646888814,28.820090754059265,28.820090754059265,25.496239036719672,25.496239036719672,7.914944685785116,10.38560437227406,7.17820642457815,8.135526394815358,7.911285062620792,8.398629112835735,11.374603800027018,7.604997158506151,8.707927442186076,8.003143609939414,242.62179725333127,242.62179725333127,0.0,269.57977472592364,0.0,242.62179725333127,269.57977472592364,0,0
+2017/06/06 17:00:00,258.85084034243374,0,952.2601510113859,0,0,0,50.23002651883831,0.0,16.7356839618177,0.0,133.89528835348938,0,39.380909295966944,2.8035081241796637e-09,18.60893220951788,0,0,0.0,490.8855683483122,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4721.821416359688,5986.110450175217,5279.8285918322235,5782.759673604617,37729.430413664195,5685.135286901574,6238.9281793644905,5274.1906450935285,3554.8337445441166,36623.98479693481,6153.140120689131,6816.248655691046,5819.38516441509,3896.5471394895826,36877.02423948401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05069903578528845,0.00160408215210336,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9267050270919845,0.9267050270919845,1.148525626431954,1.148525626431954,0.9606834938908836,0.9606834938908836,1.0648426034551959,1.0648426034551959,1.0117128138631521,1.0117128138631521,0.3954844179501029,0.5898608165211219,0.3822461490206561,0.41006323566444103,0.40596117077042226,0.42339832103465713,0.6424747497811356,0.4180720581005446,0.44170476499512773,0.4135001802456182,23.137382269977252,23.137382269977252,32.7714126092104,32.7714126092104,24.493826804359188,24.493826804359188,28.92806109105294,28.92806109105294,26.61542123414104,26.61542123414104,8.258453571611511,12.292925262172787,8.042801291499345,8.504614475999034,8.434432067697074,8.73774650577161,13.66625303917911,8.643715287722642,9.070216441089968,8.563972208845726,258.85084034243374,258.85084034243374,0.0,287.6120448249264,0.0,258.85084034243374,287.6120448249264,0,0
+2017/06/06 18:00:00,247.04649998782466,0,944.8751127783449,0,0,0,54.139893250777526,0.0,17.03716081602578,0.0,110.93442390708215,0,39.380909295966944,2.961625431382793e-09,25.554112715010543,0,0,0.0,518.9908826278154,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4170.781470039486,5497.483900705376,5558.342179456235,5645.104105267238,36342.549482644354,6304.53795350285,6708.988002799203,6634.854954455266,3840.302676611062,43337.38373464716,6715.466430316995,7262.357861344739,7275.295732864825,4130.610807679844,43512.02977996398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05030585087961429,0.0015916420557603173,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9194944031351575,0.9194944031351575,1.116310663965269,1.116310663965269,0.9938944025448498,0.9938944025448498,1.0558033540581957,1.0558033540581957,1.015092557486417,1.015092557486417,0.4056671361923349,0.5975966239367027,0.4249945374583604,0.4182622806394895,0.4365205157118548,0.4291571656914043,0.6418534128964547,0.461986786839673,0.44471088672148396,0.4428001588829265,22.855437883923912,22.855437883923912,31.26403556422926,31.26403556422926,25.86327662932989,25.86327662932989,28.527354832242693,28.527354832242693,26.75943617098747,26.75943617098747,8.429429090660008,12.487312038729598,8.766163481268507,8.647052579295988,8.974602714087666,8.84078381706587,13.649334103548952,9.455385433902805,9.126187763235322,9.090566720272207,247.04649998782466,247.04649998782466,0.0,274.49611109758297,0.0,247.04649998782466,274.49611109758297,0,0
+2017/06/06 19:00:00,231.8071274522382,0,930.9569256187738,0,0,0,45.7766319824322,0.0,17.86195511402333,0.0,101.68988858149199,0,39.380909295966944,3.0125338831863986e-09,27.0977424753112,0,0,0.0,540.5630479807884,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2677.0846177206686,2315.3976339228548,5102.934027138615,5111.384584231765,30153.370771416012,4928.434454207449,5759.737859288169,6105.143760425317,2874.7267504033084,38705.73659434146,5241.781370342176,6210.673808589982,6790.585658892853,3075.1284866140613,38517.04893377702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0495648362859447,0.001568196870546392,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9001399375790514,0.9001399375790514,0.9545594366528528,0.9545594366528528,1.007139142681126,1.007139142681126,1.0364856238336537,1.0364856238336537,1.0041864063668666,1.0041864063668666,0.3971515528660089,0.5871052427238524,0.44691369206865533,0.40758866573180985,0.4438965390892417,0.41349986909508807,0.6213935554428646,0.4815412672417032,0.4263093282119407,0.4458032709846183,22.109010190265295,22.109010190265295,24.24598217929085,24.24598217929085,26.421214542795923,26.421214542795923,27.680879724972343,27.680879724972343,26.29625439399223,26.29625439399223,8.286142358081293,12.224310025383687,9.16744869350677,8.462190722381465,9.110986969126301,8.563966812216023,13.101569154811244,9.843511431812075,8.78965241914041,9.146623225683896,231.8071274522382,231.8071274522382,0.0,257.5634749469313,0.0,231.8071274522382,257.5634749469313,0,0
+2017/06/06 20:00:00,223.2693401531368,0,871.8482008093159,0,0,0,32.350388916054264,0.0,22.209273718399995,0.0,106.16168237671882,0,39.380909295966944,2.9098244904869407e-09,23.1670858430869,0,0,0.0,516.9446756838746,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,656.7640410830361,516.9951424429701,1971.3836513234955,4472.194048957481,20940.089691988374,2899.736672473913,3342.8107069405237,3883.6665887158742,1428.5396382348217,30538.680968981982,3103.7392673873505,3719.7091343636666,4383.976999490205,1516.190906418026,29943.43799046311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046417843994862644,0.0014686282280911365,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8859268286487514,0.8859268286487514,0.9234863106633217,0.9234863106633217,0.9106503902420287,0.9106503902420287,1.0141384503045658,1.0141384503045658,0.9927441009841332,0.9927441009841332,0.39279919951028613,0.5008597185648482,0.4102732498622693,0.4005447727321082,0.44981436478698944,0.40322724234291946,0.531325463252705,0.4304146724291975,0.41274846007388055,0.44743645573403873,21.570547546413252,21.570547546413252,23.011268817690024,23.011268817690024,22.51248010468977,22.51248010468977,26.71873716052903,26.71873716052903,25.815134456212206,25.815134456212206,8.214105699450926,10.24315225307933,8.508227009493183,8.342866222713866,9.222099735815192,8.388057245737969,10.90617682192378,8.863472464039646,8.55094639093133,9.177271256924968,223.2693401531368,223.2693401531368,0.0,248.07704461459645,0.0,223.2693401531368,248.07704461459645,0,0
+2017/06/06 21:00:00,204.96295778920796,0,854.9697969020136,0,0,0,11.003596385453568,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.961625431382792e-09,25.495399152627513,0,0,0.0,535.5566242891165,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3521.2992739540823,8725.787124396316,0.0,567.3356135956809,201.30021077803121,0.0,11765.975509826376,0.0,700.3505216157655,566.3711377679556,0.0,10628.31702864302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045519225268891565,0.0014401965579903346,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7821731718389202,0.7821731718389202,0.8009217504091966,0.8009217504091966,0.8686290335339836,0.8686290335339836,0.9893505510796347,0.9893505510796347,0.9838120996977314,0.9838120996977314,0.3475312598801737,0.4810647929091138,0.3896438093815888,0.321759227296348,0.4436861252073423,0.355452320848744,0.4867327113893035,0.4001685891784074,0.3269388635740553,0.4371613533683982,17.89353603485023,17.89353603485023,18.524525071123463,18.524525071123463,20.9263807849497,20.9263807849497,25.67340273735374,25.67340273735374,25.443036254400766,25.443036254400766,7.51279989745926,9.83385818035525,8.162386577334516,7.152483558345807,9.107063971612448,7.629213190729914,9.949323641794152,8.336553351456487,7.222636246110923,8.98635921157124,204.96295778920796,204.96295778920796,0.0,227.73661976578663,0.0,204.96295778920796,227.73661976578663,0,0
+2017/06/06 22:00:00,137.0603043490471,0,657.1774309800703,0,0,0,0.4325183542279703,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8571218061891352e-09,20.87482838664009,0,0,0.0,497.4708446736217,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1713.4791973882188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034988613201083256,0.0011070153326070073,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5183006034859696,0.5183006034859696,0.5252712430747741,0.5252712430747741,0.6133355575956041,0.6133355575956041,0.9237653234917128,0.9237653234917128,0.779958295687907,0.779958295687907,0.17050153263431653,0.33195239201604354,0.2204164589481283,0.13704644660340115,0.37094967996239797,0.1636084135389047,0.3263767331860355,0.2348432514548139,0.12304983930392392,0.3454929076081902,10.617803419033876,10.617803419033876,10.771221589691791,10.771221589691791,12.890820423451771,12.890820423451771,23.022184467620264,23.022184467620264,17.819979461244685,17.819979461244685,5.602552488574304,7.29162290696317,6.007835452930365,5.389115731146944,7.86469803591001,5.55476125571542,7.214967753342421,6.144400596452769,5.313643090525929,7.4832745670294685,137.0603043490471,137.0603043490471,0.0,152.28922705449676,0.0,137.0603043490471,152.28922705449676,0,0
+2017/06/06 23:00:00,87.39198681878608,0,507.44220911283037,0,0,0,0.02734373742206133,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,1.4047241178371002e-06,11.853660617801626,0,0,0.0,454.20668034401416,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,104.85332806845078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02701659907899433,0.0008547863627363524,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2344826393797322,0.2344826393797322,0.23182144272978733,0.23182144272978733,0.3334110226345717,0.3334110226345717,0.858805043987291,0.858805043987291,0.47904601553676623,0.47904601553676623,0.0895134178666206,0.12753902702238049,0.032294000018777975,0.06481543239181306,0.18977239334192678,0.0602092586523714,0.0960311900623024,0.02401406546904331,0.03083155859765956,0.15295864145956814,6.140880628531448,6.140880628531448,6.115073167651786,6.115073167651786,7.311894105054407,7.311894105054407,20.566027747847016,20.566027747847016,9.79306691051002,9.79306691051002,5.165925339907403,5.336962338662019,5.021589612843556,5.086980008790391,5.74668020720496,5.0750547144718325,5.190978471653949,5.011937777067047,5.0196784248387445,5.484818361630005,87.39198681878608,87.39198681878608,0.0,97.10220757642898,0.0,87.39198681878608,97.10220757642898,0,0
+2017/06/07 00:00:00,39.60741346986699,0,486.70581083679787,0,0,0,0.13848034271108886,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.11729386653853258,2.579758332830899e-09,9.554318261614426,0,0,0.0,433.47028206798166,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,286.1061127909456,203.65626284715233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025912577875189916,0.0008198559014142416,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.44787073947559386,0.44787073947559386,0.474442608434221,0.474442608434221,0.5208887278435148,0.5208887278435148,0.8456862683960419,0.8456862683960419,0.7060619821747915,0.7060619821747915,0.21794066138946164,0.4086254195553311,0.22706630092103905,0.26838956183698653,0.43718413743863715,0.15792024810646926,0.3467176724172772,0.19112021422006145,0.22250105592722896,0.37997806268207174,9.185440247622509,9.185440247622509,9.700708224193917,9.700708224193917,10.67452051639394,10.67452051639394,20.091057791970997,20.091057791970997,15.48613960965524,15.48613960965524,5.985276540679735,8.479932796245777,6.069699007646889,6.495746091390984,8.98677752185803,5.516815935197542,7.500993982447028,5.757340888286663,6.027029020882949,8.006605115800824,39.60741346986699,39.60741346986699,0.0,44.0082371887411,0.0,39.60741346986699,44.0082371887411,0,0
+2017/06/07 01:00:00,23.722232317520024,0,41.91291120645224,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251368938422314,0,0,0.0,6.422558693908114,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0022314744378042674,7.060229574613278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4841572483984509,0.4841572483984509,0.5269406673021894,0.5269406673021894,0.5343998211818715,0.5343998211818715,0.8211236486109761,0.8211236486109761,0.819841083145653,0.819841083145653,0.21924618399588636,0.4542653666755074,0.2213896451190549,0.26251026183372284,0.5532871775359272,0.17196954273195794,0.4105798814585961,0.19566938049359967,0.22486933483861246,0.4774347193982651,9.896685085344572,9.896685085344572,10.808276431553196,10.808276431553196,10.975315263416093,10.975315263416093,19.221066532486844,19.221066532486844,19.17633374964936,19.17633374964936,5.997140161655409,9.3066640568548,6.016773231953906,6.430748673013497,11.409053543513593,5.61298641913659,8.513504888130882,5.793883387046051,6.049055552049765,9.760635329382126,23.722232317520024,23.722232317520024,0.0,26.358035908355582,0.0,23.722232317520024,26.358035908355582,0,0
+2017/06/07 02:00:00,28.34438774490267,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250246584297753,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5076300322589984,0.5076300322589984,0.5574164860784859,0.5574164860784859,0.5487092953399507,0.5487092953399507,0.8080179153759849,0.8080179153759849,0.8871744230551938,0.8871744230551938,0.22208098575445953,0.45380554565293457,0.2199779469519459,0.25524978965046413,0.589609040709215,0.16788221109331125,0.40908957401315954,0.1859018685317053,0.21057125698462842,0.5013070296420327,10.387024838653446,10.387024838653446,11.505940682028523,11.505940682028523,11.302505424205606,11.302505424205606,18.767232129399687,18.767232129399687,21.61748242302967,21.61748242302967,6.023146644570929,9.297888462171016,6.003821113021203,6.352489823099944,12.286642233278286,5.5841588516911855,8.487890835522151,5.716487949549062,5.919647752955569,10.252596716528217,28.34438774490267,28.34438774490267,0.0,31.493764161002964,0.0,28.34438774490267,31.493764161002964,0,0
+2017/06/07 03:00:00,23.722208844852037,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251134211742468,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5058413512155789,0.5058413512155789,0.5581748928428399,0.5581748928428399,0.5426069785400565,0.5426069785400565,0.773940408286948,0.773940408286948,0.9064376236848651,0.9064376236848651,0.2210001177325189,0.45341404446239897,0.21821546614840623,0.24979925695133,0.6142750794546634,0.15685445623899996,0.3997967342412471,0.1743490845299354,0.19540914020183578,0.5155114434142772,10.348821876802319,10.348821876802319,11.523815757543602,11.523815757543602,11.161889202532194,11.161889202532194,17.62117825342277,17.62117825342277,22.3502252386145,22.3502252386145,6.013191033625404,9.290423909377182,5.987767828817155,6.295196988843301,12.915247541023518,5.50985611157067,8.330319070658646,5.630090065326897,5.791769604456846,10.557005222976187,23.722208844852037,23.722208844852037,0.0,26.358009827613373,0.0,23.722208844852037,26.358009827613373,0,0
+2017/06/07 04:00:00,43.03354698665743,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,3.000178358960772,0.0,0.5252350780625417,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5570149086773447,0.5570149086773447,0.6079325408004619,0.6079325408004619,0.5913437019294467,0.5913437019294467,0.807945816991019,0.807945816991019,0.8759157614107587,0.8759157614107587,0.2138523395604552,0.3570789479054154,0.21062697083682042,0.24133845287474381,0.41848637587495113,0.14698709277657457,0.32682917092744196,0.1633592742860873,0.18386394631700387,0.38324728681170106,11.496485904732921,11.496485904732921,12.751088207577254,12.751088207577254,12.329986269237281,12.329986269237281,18.764755482764045,18.764755482764045,21.19623791790137,21.19623791790137,5.948586794524942,7.6534496038982525,5.92013538541714,6.208735483083174,8.650986128547729,5.447667334577346,7.221138784150469,5.553071025710722,5.700842492331759,8.058848220057513,43.03354698665743,43.03354698665743,0.0,47.81505220739714,0.0,43.03354698665743,47.81505220739714,0,0
+2017/06/07 05:00:00,75.60768840537554,0,212.9421150752648,0,0,0,0.13754331315655413,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.1065270860427323,0.0,0.5775749762203771,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,542.8233336483993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7764257506500017,0.7764257506500017,0.8210153377027228,0.8210153377027228,0.8082349040013128,0.8082349040013128,0.9250494982355302,0.9250494982355302,0.9053519024633104,0.9053519024633104,0.2747191164496829,0.46503541047479774,0.2716909231368479,0.2994745320697804,0.6140417810754675,0.2158645688871273,0.42508657830242197,0.23187544787530476,0.24960954430911877,0.5535130052625433,17.70309474309167,17.70309474309167,19.217286236288743,19.217286236288743,18.77468721464308,18.77468721464308,23.072464687308525,23.072464687308525,22.308525041741575,22.308525041741575,6.567348786095764,9.51481153503876,6.532881906449475,6.863623223653633,12.9091783198825,5.966557612235206,8.767805390695642,6.115593938881432,6.2932253336612405,11.414333094229804,75.60768840537554,75.60768840537554,0.0,84.00854267263949,0.0,75.60768840537554,84.00854267263949,0,0
+2017/06/07 06:00:00,87.643080583137,0,653.3275145894196,0,0,0,0.3200109315333311,0.0,10.413824884255693,0.0,73.80580873715317,0,2.5784105307319036,2.5214702023432695e-09,0.5250254969414,0,0,0.0,422.6402232578828,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163.98549395945057,0.0,0.0,1116.7876683867112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034783640800786275,0.0011005301487391598,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0045293690966135,1.0045293690966135,0.9954154555373474,0.9954154555373474,0.9992707362708664,0.9992707362708664,1.0212025769939803,1.0212025769939803,0.9276743191649205,0.9276743191649205,0.37163672606537046,0.5711667977499943,0.3689521701251786,0.38981071655090443,0.8366110398297382,0.32775675200144566,0.5409542784804648,0.34373946313326487,0.3563423578717426,0.7531438785839073,26.310751722155175,26.310751722155175,25.92701285808738,25.92701285808738,26.088953873206478,26.088953873206478,27.020875342527816,27.020875342527816,23.17544164074056,23.17544164074056,7.875374724842587,11.833898877471128,7.8337710695313945,8.165111647708088,19.766679196491054,7.233817685247246,11.124083592174557,7.458017410574541,7.642460609813554,16.946057907921826,87.643080583137,87.643080583137,0.0,97.38120064793,0.0,87.643080583137,97.38120064793,0,0
+2017/06/07 07:00:00,145.385238063594,0,800.2838816252458,0,0,0,1.4482938959195328,0.0,8.160123080380156,0.0,69.33401494192633,0,39.380909295966944,3.4659806607667267e-06,27.061893383420387,0,0,0.0005606733255819462,534.1056771078391,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1267.257390118101,0.0,0.22376081654086566,0.2462984010029814,0.15199685038714195,0.0,2240.9273575360467,0.2264797659280293,0.22494075116519557,0.14077893958126705,0.0,1494.3924396542777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.042607706633334436,0.0013480781378572102,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3697105558218368,0.3697105558218368,0.5334360180668573,0.5334360180668573,0.4342221266110745,0.4342221266110745,0.9971788261672831,0.9971788261672831,0.7157868573840087,0.7157868573840087,0.10697195483992157,0.1891584005822051,0.14688113374133246,0.17326182933734274,0.45655250164227285,0.10461369048814464,0.19482227355772622,0.15209674887315466,0.11831449232895158,0.41503483731892965,7.845492942180542,7.845492942180542,10.953596495813613,10.953596495813613,8.932582665593799,8.932582665593799,26.00101310267182,26.00101310267182,15.779874838634257,15.779874838634257,5.236996789278578,5.741848954422423,5.447021535168545,5.622245793295647,9.350448775084217,5.226657470149192,5.7870132144851,5.479364531465464,5.289952992600178,8.590639944086519,145.385238063594,145.385238063594,0.0,161.5391534039933,0.0,145.385238063594,161.5391534039933,0,0
+2017/06/07 08:00:00,161.1830620658409,0,858.4210407887659,0,0,0,1.4081690567389247,0.0,11.58317362108713,0.0,83.2008179303116,0,39.380909295966944,2.9616490622438026e-09,25.609992158774624,0,0,0.0,539.0078681758688,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2250.112833116443,0.0,0.0,0.0,0.0,0.0,2171.78652090319,0.0,0.0,0.0,0.0,542.9656171311817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04570297204978162,0.001446010178055624,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.41674363514905866,0.41674363514905866,0.379392621468211,0.379392621468211,0.5051090935956734,0.5051090935956734,1.0106217423634503,1.0106217423634503,0.7854009426941161,0.7854009426941161,0.1125950311030684,0.20799733442888235,0.173882644869353,0.12486418374383124,0.4560638325606147,0.07270297805216204,0.16701817250463386,0.1537844310849169,0.07706885541670486,0.4253581057284785,8.620452485870004,8.620452485870004,7.997297769827441,7.997297769827441,10.333222092652079,10.333222092652079,26.56902084983379,26.56902084983379,18.00110456399868,18.00110456399868,5.26258190489358,5.897261304125976,5.626718779769448,5.322966892357471,9.34107482259438,5.109443015027551,5.578154082581179,5.490072767268742,5.122985564641851,8.772651264928584,161.1830620658409,161.1830620658409,0.0,179.09229118426765,0.0,161.1830620658409,179.09229118426765,0,0
+2017/06/07 09:00:00,183.24915056061175,0,866.1101078582045,0,0,0,5.526864682220225,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.857145073658092e-09,20.867852492527362,0,0,0.0,493.4614064764912,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3355.0344688272667,511.794413040568,0.0,0.0,0.0,0.0,8452.412000426466,0.0,0.0,0.0,0.0,6158.946616498828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046112343675901765,0.0014589624109505029,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5814240433598042,0.5814240433598042,0.5174895170207032,0.5174895170207032,0.6759075463397768,0.6759075463397768,1.0381971745837673,1.0381971745837673,0.9505903597140638,0.9505903597140638,0.23024139877149288,0.31929170160140796,0.28641171562745765,0.22250947864819287,0.49468964783594915,0.20137370252401265,0.2839360390391817,0.27865363318561526,0.1848579476346723,0.4784331971027748,12.083885170376433,12.083885170376433,10.600088624710025,10.600088624710025,14.601296898052539,14.601296898052539,27.755329175509047,27.755329175509047,24.086137691963103,24.086137691963103,6.099890973351592,7.119463489834104,6.704062869007117,6.02710694106554,10.113760310810406,5.840927625532942,6.674635054337486,6.61270884272686,5.708451932278223,9.780719128577388,183.24915056061175,183.24915056061175,0.0,203.6101672895686,0.0,183.24915056061175,203.6101672895686,0,0
+2017/06/07 10:00:00,220.9961318671263,0,952.0315851869365,0,0,0,12.36189997295155,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.8035311855083355e-09,18.559736808454435,0,0,0.0,490.65700252386273,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4575.950059183471,16037.626972656853,0.0,0.0,0.0,0.0,11244.385438701367,0.0,0.0,0.0,0.0,9496.124368825831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050686866771494525,0.0016036971329894225,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7915051061460294,0.7915051061460294,0.7125565612603227,0.7125565612603227,0.8884306667491638,0.8884306667491638,1.0714819687671717,1.0714819687671717,1.0515981570824688,1.0515981570824688,0.3175258924384215,0.40094142178583414,0.3615682271622682,0.30881642913705054,0.5019815837091998,0.3040607205974058,0.3768990858258577,0.36833007225833414,0.28664585475999665,0.4960065931918839,18.20574140326157,18.20574140326157,15.681853097967576,15.681853097967576,21.664807014454,21.664807014454,29.224233290001237,29.224233290001237,28.341938383049452,28.341938383049452,7.095992073334912,8.349529090685039,7.720923381959011,6.982156545888344,10.266855508445218,6.921353150385926,7.957819361028626,7.824174013163088,6.706859417956252,10.14123978593966,220.9961318671263,220.9961318671263,0.0,245.55125763014033,0.0,220.9961318671263,245.55125763014033,0,0
+2017/06/07 11:00:00,262.15380457765326,0,1008.0485408056153,0,0,0,37.308028595897994,0.0,16.86091082671979,0.0,147.76209134187457,0,39.380909295966944,2.857145073658092e-09,20.841864514336685,0,0,0.0,493.4384293737253,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1307.519365643684,162.60246584255376,2503.206355090549,5701.445317573481,35803.09217881908,2426.744931560095,1929.0467059557222,2945.9733673786877,1270.493119727313,34863.76342142493,2436.9849838747195,1855.9792819098336,3140.1419601729913,1210.1430001796018,33518.921229015396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05366925098076546,0.001698057690477472,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9556426242117342,0.9556426242117342,0.9166903847550222,0.9166903847550222,1.0013896010657228,1.0013896010657228,1.088879078616984,1.088879078616984,1.1079122594255255,1.1079122594255255,0.42664319832457775,0.48518211571438963,0.4447414226671892,0.42561210978946196,0.5347480756828156,0.42451259804582386,0.4756776419730183,0.4544804732859094,0.41701936674077783,0.5316793721026175,24.289712396996535,24.289712396996535,22.746361076853447,22.746361076853447,26.17819707511032,26.17819707511032,30.00763597986051,30.00763597986051,30.87667426565666,30.87667426565666,8.795628868707283,9.917597525545602,9.126758308567545,8.777187268150755,10.983172880207292,8.757572135618943,9.725397143679004,9.310772448486745,8.625274764031317,10.914114938811906,262.15380457765326,262.15380457765326,0.0,291.2820050862814,0.0,262.15380457765326,291.2820050862814,0,0
+2017/06/07 12:00:00,256.052445924474,0,969.7369736649234,0,0,0,51.702278320993685,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,2.8035311855083355e-09,18.608466648302375,0,0,0.0,490.6172147455776,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1739.9884844919159,202.93155198166107,3322.1228398651915,5880.994007256667,42118.11829875778,4367.936321039854,3169.073704391845,5158.19923354226,2288.212733239368,52343.91602813806,4594.6130519448825,3196.450208977477,5629.077877587495,2329.8470332229626,50725.02717071141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051629514768561834,0.0016335218585367755,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0419613271645243,1.0419613271645243,1.0267247046336332,1.0267247046336332,1.058316932434067,1.058316932434067,1.1017912996562735,1.1017912996562735,1.139383644237605,1.139383644237605,0.509039858820288,0.5540265036742673,0.5135241012354074,0.5156557604134339,0.5758758265823276,0.5172433848554624,0.5550196045634574,0.5270483476009803,0.5206262056732224,0.575724099701888,27.91943999717651,27.91943999717651,27.258354583689112,27.258354583689112,28.638487487246422,28.638487487246422,30.595850786053177,30.595850786053177,32.3402329036151,32.3402329036151,10.417233641935368,11.426346230906248,10.513890406224007,10.56014279263502,11.948099037097805,10.594718525466263,11.449611953122016,10.810670665018307,10.66875430056021,11.944404460612802,256.052445924474,256.052445924474,0.0,284.50271769386,0.0,256.052445924474,284.50271769386,0,0
+2017/06/07 13:00:00,226.3076833599276,0,924.7899537011164,0,0,0,24.484584385799824,0.0,16.86091082671979,0.0,129.2730206906943,0,39.380909295966944,2.748997028625529e-09,16.308258157997702,0,0,0.0,481.16054729431477,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5279.302842393816,22543.076294725764,0.0,0.0,413.39778557995515,0.0,28128.192210508845,0.0,0.0,1042.8092112508712,0.0,26264.636260889474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04923650213313141,0.0015578086068191634,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9965895620839992,0.9965895620839992,0.9208321250211023,0.9208321250211023,1.0901436939243556,1.0901436939243556,1.1033623618630501,1.1033623618630501,1.1681540374620218,1.1681540374620218,0.5128188262124386,0.5602658003562213,0.5602796296199574,0.4721202030690893,0.6080774585167477,0.5295509690222232,0.561489879555024,0.5717148549699748,0.4767343398435093,0.6079348480414677,25.976271342567955,25.976271342567955,22.90758686979629,22.90758686979629,30.0649926092631,30.0649926092631,30.667808600152384,30.667808600152384,33.70607778073624,33.70607778073624,10.498630739404291,11.573226040397103,11.573553471141494,9.654460321239398,12.75481951796661,10.866456984410192,11.602240266734498,11.847140521209354,9.746573259842535,12.751147606785366,226.3076833599276,226.3076833599276,0.0,251.45298151103066,0.0,226.3076833599276,251.45298151103066,0,0
+2017/06/07 14:00:00,198.8695514160815,0,871.1507479110466,0,0,0,13.003449042048123,0.0,16.86091082671979,0.0,115.5196477718057,0,39.380909295966944,2.693533348388339e-09,14.104634476847389,0,0,0.0,463.01169401678897,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4937.0531248041225,17152.830113769247,0.0,0.0,0.0,0.0,11800.398577943499,0.0,0.0,0.0,0.0,9972.173824861133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046380711085950765,0.0014674533687369373,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9749065626772527,0.9749065626772527,0.88773753501426,0.88773753501426,1.087269808428542,1.087269808428542,1.1037755580419997,1.1037755580419997,1.1779368084215216,1.1779368084215216,0.46357371962846083,0.5164650606044774,0.5224468897216107,0.42060804297208765,0.6219441267663265,0.4779124394978943,0.5148691865850277,0.5519848237049894,0.4175426283425193,0.6207198681610115,25.07509368856985,25.07509368856985,21.63868771868168,21.63868771868168,29.934727391161744,29.934727391161744,30.686747715169858,30.686747715169858,34.17634773605859,34.17634773605859,9.48626918395776,10.577754334782938,10.708806432574221,8.6883344971978,13.116071627335472,9.770239026824726,10.54305296096247,11.378649390544311,8.634435062708349,13.083841608132374,198.8695514160815,198.8695514160815,0.0,220.96616824009055,0.0,198.8695514160815,220.96616824009055,0,0
+2017/06/07 15:00:00,188.97676478632664,0,871.1469071787822,0,0,0,9.833454564723107,0.0,16.965687115311,0.0,108.75639138185811,0,39.380909295966944,2.693533348388339e-09,14.040322425773947,0,0,0.0,463.0078532845247,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4942.232530087457,20132.276026843956,0.0,0.0,0.0,0.0,5175.613469811248,0.0,0.0,0.0,0.0,3466.0317456903936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046380506602520154,0.0014674468990237297,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9941347519664079,0.9941347519664079,0.9049657875251517,0.9049657875251517,1.1111102610882162,1.1111102610882162,1.1066946541195632,1.1066946541195632,1.1917481173542057,1.1917481173542057,0.43550561025603995,0.49353654272528574,0.49579413156786234,0.39607039325223764,0.6328356515010086,0.4425217302124762,0.48529989301534854,0.5247465675912587,0.38558701642275583,0.6309649515778886,25.873342054536877,25.873342054536877,22.29370671533985,22.29370671533985,31.023897817329797,31.023897817329797,30.820710898031976,30.820710898031976,34.845168188837846,34.845168188837846,8.956019841367748,10.089761049040291,10.13680147852969,8.268172258060659,13.405666452899311,9.085389170841026,9.920003677952622,10.759600714898482,8.09651791810687,13.355560319136046,188.97676478632664,188.97676478632664,0.0,209.97418309591848,0.0,188.97676478632664,209.97418309591848,0,0
+2017/06/07 16:00:00,216.99521533449652,0,924.3773182797762,0,0,0,14.863246846243856,0.0,17.028300508570425,0.0,131.64086955684016,0,39.380909295966944,2.693533348388339e-09,14.08188912418154,0,0,0.0,463.00273561670247,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,694.4291535178803,5353.378685405933,28289.424147038873,0.0,0.0,0.0,0.0,9390.941713669697,0.0,0.0,0.0,0.0,7485.084220767436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049214533117657444,0.0015571135224832341,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0330778583644615,1.0330778583644615,0.9392301148628279,0.9392301148628279,1.139846382868542,1.139846382868542,1.1182395644876355,1.1182395644876355,1.213461748558499,1.213461748558499,0.43412842373114063,0.4911356527036657,0.5001866248679716,0.39135038427226027,0.6380571092577101,0.4371293907049733,0.4795382753525336,0.5262726161644512,0.3761537882056316,0.6368707085736266,27.532967798297236,27.532967798297236,23.632069277877036,23.632069277877036,32.361993634491895,32.361993634491895,31.353335128114963,31.353335128114963,35.90791603833513,35.90791603833513,8.93087436629169,10.039976232151133,10.228956941413472,8.190305734606142,13.546324833645855,8.985772422011365,9.802997268874236,10.793433767744574,7.946071085423526,13.514261119795293,216.99521533449652,216.99521533449652,0.0,241.10579481610725,0.0,216.99521533449652,241.10579481610725,0,0
+2017/06/07 17:00:00,228.99926277931542,0,935.5259532577796,0,0,0,19.873019452779253,0.0,17.24136368197722,0.0,133.89528835348938,0,39.380909295966944,2.8035311855083368e-09,18.60868199229903,0,0,0.0,474.1513705947059,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,781.3086712753985,5607.456065637508,26737.663464218804,0.0,0.0,0.0,0.0,17780.390631366998,0.0,0.0,138.83186292097142,0.0,16769.642915093456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0498080947017546,0.001575893397257514,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0227971118914083,1.0227971118914083,0.9164044663785317,0.9164044663785317,1.125613924139018,1.125613924139018,1.113595533195076,1.113595533195076,1.200750283652024,1.200750283652024,0.4395319481323656,0.484281190143293,0.5196501267758914,0.38490156303093875,0.6226707431375388,0.4385621865683119,0.46764384832152334,0.5387444219978283,0.36454806365656495,0.6228215778925906,27.08933211768435,27.08933211768435,22.735256575847075,22.735256575847075,31.695870882416116,31.695870882416116,31.138546918735784,31.138546918735784,35.284124380717245,35.284124380717245,9.030002344058474,9.89921170995035,10.647341197391512,8.085457890491426,13.135231397055776,9.012119653054711,9.565975035160761,11.073717909230268,7.766184193650105,13.139211551911188,228.99926277931542,228.99926277931542,0.0,254.44362531035046,0.0,228.99926277931542,254.44362531035046,0,0
+2017/06/07 18:00:00,215.29761073492895,0,962.3730833016332,0,0,0,21.224383498406713,0.0,18.14477997699508,0.0,110.93442390708215,0,39.380909295966944,2.961649062243806e-09,25.613114053516362,0,0,0.0,536.4888531511035,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5139.532792405191,19286.360601803764,0.0,0.0,0.0,0.0,24669.490042951093,0.0,0.0,0.0,0.0,22941.721462481153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05123745579113758,0.0016211173857787228,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9533117291669031,0.9533117291669031,0.8316688790176686,0.8316688790176686,1.0822870316388058,1.0822870316388058,1.1037562988985665,1.1037562988985665,1.2067869854779532,1.2067869854779532,0.44246438210183914,0.4694216078942788,0.5379750584170501,0.37046562016988327,0.6389345339806206,0.44123575399468873,0.4475043485225705,0.5587139363911182,0.3458523768118394,0.6396693721672942,24.195667139233947,24.195667139233947,19.591477392909624,19.591477392909624,29.709549903017688,29.709549903017688,30.685864831342826,30.685864831342826,35.579791385479666,35.579791385479666,9.084323161903882,9.601013096807662,11.056232701013059,7.857187837444897,13.570077422180645,9.061518900429121,9.178547803138628,11.536535770674291,7.488468614650316,13.589995771922233,215.29761073492895,215.29761073492895,0.0,239.2195674832544,0.0,215.29761073492895,239.2195674832544,0,0
+2017/06/07 19:00:00,224.46016275767968,0,930.8551827228921,0,0,0,35.57025667075675,0.0,20.72136573114024,0.0,101.68988858149199,0,39.380909295966944,3.012557671922434e-09,27.0977424753112,0,0,0.0,540.4613050849066,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,589.2193933876623,5134.995120718295,30090.555235798944,598.0875446128625,232.31298608782382,2091.889830991192,0.0,42412.11444048914,623.0480480248,91.93108580057752,2449.504975558647,0.0,40563.539567669875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049559419418806316,0.0015680254846460013,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9984395874604581,0.9984395874604581,0.8780778015188563,0.8780778015188563,1.1142063092400676,1.1142063092400676,1.1002470253475631,1.1002470253475631,1.2050278830349617,1.2050278830349617,0.5284179554604117,0.549747970599186,0.5717815193595979,0.4719869381955365,0.6442920455662722,0.5251124358233342,0.5298843424867536,0.5821449801933797,0.44496155031088575,0.6442855548247506,26.05399372052105,26.05399372052105,21.276727430992224,21.276727430992224,31.166754493764145,31.166754493764145,30.52520158878562,30.52520158878562,35.49352602000667,35.49352602000667,10.841167211320027,11.326600441744489,11.848752092460572,9.651813566049825,13.715833896529787,10.767702959503836,10.873908731441716,12.10162731363235,9.130872444102607,13.715656556304594,224.46016275767968,224.46016275767968,0.0,249.4001808418663,0.0,224.46016275767968,249.4001808418663,0,0
+2017/06/07 20:00:00,226.30160490862215,0,871.7244997919803,0,0,0,33.84741761505712,0.0,23.798027217215836,0.0,106.16168237671882,0,39.380909295966944,2.909847947696136e-09,23.11356840075356,0,0,0.0,516.8209746665389,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4933.643406414858,25864.326047760023,37.50555925971162,0.0,2295.136905830854,0.0,42142.71075359558,0.0,0.0,2665.7477729003167,0.0,40547.42104938547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046411258061073525,0.0014684198537368233,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0020872361741202,1.0020872361741202,0.8819075305618682,0.8819075305618682,1.1273690407937675,1.1273690407937675,1.092266774451181,1.092266774451181,1.197624854653254,1.197624854653254,0.5738283531560376,0.5883771649283263,0.5907109027994868,0.50489897751009,0.6471893534753324,0.57365635521553,0.5741481126773057,0.597331722218478,0.4805351179970776,0.645985189512624,26.2076175831577,26.2076175831577,21.419773732736502,21.419773732736502,31.777659063690905,31.777659063690905,30.161408866828125,30.161408866828125,35.13145805494014,35.13145805494014,11.89832689631055,12.255940610075967,12.314159367036297,10.328750125953704,13.795176626865626,11.894154070191703,11.906087963435397,12.4806125945518,9.823138594424293,13.762156414978776,226.30160490862215,226.30160490862215,0.0,251.44622767624682,0.0,226.30160490862215,251.44622767624682,0,0
+2017/06/07 21:00:00,209.03234728238255,0,838.230031312523,0,0,0,14.912814132109219,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9616490622438055e-09,25.655570899146415,0,0,0.0,518.8168586996259,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4000.018459521583,12458.94895655819,0.0,0.0,0.0,0.0,17848.585323903426,0.0,0.0,0.0,0.0,15707.677624519943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04462798774965113,0.0014119984241253648,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9010194623256425,0.9010194623256425,0.7807915676991999,0.7807915676991999,1.033960012017283,1.033960012017283,1.0740181719849364,1.0740181719849364,1.1823785209297173,1.1823785209297173,0.45157040383445973,0.4678613728774336,0.5256900939191814,0.3834181040291303,0.6414753599805837,0.4481808604766553,0.4449349661591896,0.5380126036355423,0.3557510370874114,0.637565291346009,22.142601214541997,22.142601214541997,17.847628142063073,17.847628142063073,27.57121621423525,27.57121621423525,29.337780630088716,29.337780630088716,34.390820702189956,34.390820702189956,9.25536081305333,9.570254938294852,10.78050714098238,8.061590470381788,13.639047956370547,9.191278668839729,9.130375481756474,11.057085390288478,7.633655560576614,13.533025533915804,209.03234728238255,209.03234728238255,0.0,232.25816364709172,0.0,209.03234728238255,232.25816364709172,0,0
+2017/06/07 22:00:00,137.85430969238814,0,653.1480678243092,0,0,0,1.2356188725348518,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.857145073658092e-09,20.86573321167421,0,0,0.0,493.4414815178607,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2213.3396328727504,0.0,0.0,0.0,0.0,0.0,2205.816772108252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03477408692209438,0.0011002278706769512,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7245654891764632,0.7245654891764632,0.6133918203988077,0.6133918203988077,0.8507634572742083,0.8507634572742083,1.0259213957373234,1.0259213957373234,1.0458993946244644,1.0458993946244644,0.3587508051059831,0.3750149703574218,0.43549156409452355,0.2925422166747673,0.6353772879311542,0.33870910749797173,0.3347660353145762,0.4360971327266341,0.24955872421114153,0.6265458913235246,16.048528354327445,16.048528354327445,12.89228215099402,12.89228215099402,20.274030807294082,20.274030807294082,27.223737977265785,27.223737977265785,28.091685924583956,28.091685924583956,7.678477307322211,7.928165442233038,8.955762967184071,6.778048424598936,13.473986668811847,7.386283653390393,7.3308061945449765,8.966845212213869,6.292697424881936,13.237800060297559,137.85430969238814,137.85430969238814,0.0,153.1714552137646,0.0,137.85430969238814,153.1714552137646,0,0
+2017/06/07 23:00:00,87.49196577136811,0,510.91162621351583,0,0,0,0.19463489216278398,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.637130890175426e-09,11.786349817729944,0,0,0.0,457.6760974446997,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,769.9063604840834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027201313415255196,0.0008606305955791326,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5497627365443605,0.5497627365443605,0.4505399737289967,0.4505399737289967,0.6669474762386333,0.6669474762386333,0.982595592617271,0.982595592617271,0.8405790763859324,0.8405790763859324,0.2692940540268304,0.2870384705088646,0.34197228632054544,0.20698489474928256,0.5629671821309493,0.23181323886662228,0.23092489694175317,0.326284234143508,0.14986182764468875,0.5379904309592595,11.326943316828846,11.326943316828846,9.235827388408168,9.235827388408168,14.345953407059383,14.345953407059383,25.392594589681295,25.392594589681295,19.9080869925413,19.9080869925413,6.505874728598144,6.7115539991689985,7.432694653999576,5.888531694931245,11.637343155804658,6.114994068564286,6.106445659808017,7.213707180261963,5.465366666237969,11.056581819361824,87.49196577136811,87.49196577136811,0.0,97.21329530152012,0.0,87.49196577136811,97.21329530152012,0,0
+2017/06/08 00:00:00,41.45360473452817,0,482.4337523381939,0,0,0,0.7917651372503342,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.316760817874996,2.5797803993654554e-09,9.547757780399877,0,0,0.0,429.1982235693777,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,494.2144657121861,2224.5953571175223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025685130316382025,0.0008126596191975867,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7487578974450174,0.7487578974450174,0.669868580384213,0.669868580384213,0.839181684490357,0.839181684490357,0.9681127313772501,0.9681127313772501,0.9549735158987178,0.9549735158987178,0.43944464284536966,0.4816208759393714,0.4953911328683062,0.3941902872683931,0.7680370597170407,0.3846425164021509,0.4024245608110921,0.4632374708713992,0.316995995074038,0.7253994483796721,16.806036494799372,16.806036494799372,14.428816994052298,14.428816994052298,19.858213506537822,19.858213506537822,24.796461981722572,24.796461981722572,24.26269385694077,24.26269385694077,9.02839075346904,9.845125239195312,10.128388222837344,8.237041801523816,17.427660150796598,8.081283308269917,8.374502347777138,9.479716294837118,7.088974362957046,16.074222634461464,41.45360473452817,41.45360473452817,0.0,46.05956081614241,0.0,41.45360473452817,46.05956081614241,0,0
+2017/06/08 01:00:00,23.774732673233345,0,48.035183864988085,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.577637249555553,0,0,0.0,12.54483135244395,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002557428768952889,8.091526357476379e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.729698776810079,0.729698776810079,0.652766962861547,0.652766962861547,0.812213166037482,0.812213166037482,0.9447115032675771,0.9447115032675771,1.0623820318078498,1.0623820318078498,0.41034373784498673,0.46172474252835577,0.45062606729384674,0.3743858864090295,0.8402786604658212,0.37676758274959593,0.4032683591408804,0.44171551684342486,0.31836673107089064,0.7774771245960345,16.20715956151392,16.20715956151392,13.948944055165782,13.948944055165782,18.911720600440475,18.911720600440475,23.850522769812457,23.850522769812457,28.81869598616609,28.81869598616609,8.509439923336089,9.45029614874079,9.237457678668903,7.918298071522315,19.897358146208717,7.955744729787497,8.388752328282635,9.070415938813966,7.107152157743059,17.737827042883367,23.774732673233345,23.774732673233345,0.0,26.41636963692594,0.0,23.774732673233345,26.41636963692594,0,0
+2017/06/08 02:00:00,28.34416051521645,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5247974287435581,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7450110666714508,0.7450110666714508,0.674483805037605,0.674483805037605,0.8206023403616498,0.8206023403616498,0.9442728502949607,0.9442728502949607,1.1421948431335498,1.1421948431335498,0.403399304311528,0.45719669979908173,0.4447006332078266,0.3687135099781273,0.8666818686626223,0.36419396706071255,0.3944399461074976,0.42768601972119535,0.30902669337598376,0.7894937552212485,16.68707255307129,16.68707255307129,14.5604909814179,14.5604909814179,19.202876218409514,19.202876218409514,23.832997024970595,23.832997024970595,32.47253820158265,32.47253820158265,8.39096644833107,9.362821889079413,9.125996191640368,7.83008732725358,20.85464000003259,7.760786007759862,8.241166905272706,8.814326719778393,6.984866938945856,18.138137870652017,28.34416051521645,28.34416051521645,0.0,31.493511683573836,0.0,28.34416051521645,31.493511683573836,0,0
+2017/06/08 03:00:00,23.72198535567918,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248899320013873,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.748063594401735,0.748063594401735,0.682633279815268,0.682633279815268,0.8184076319470198,0.8184076319470198,0.9269293022565329,0.9269293022565329,1.1477566959172423,1.1477566959172423,0.40682413974781245,0.4617104588168937,0.44823238104738355,0.37248431126453785,0.8882383275763247,0.36051930884362915,0.3923608720678627,0.4227442711693172,0.3066990717994716,0.8020207638648208,16.783946576323757,16.783946576323757,14.795249254618383,14.795249254618383,19.126420301940513,19.126420301940513,23.146185119113696,23.146185119113696,32.73504360951334,32.73504360951334,8.449136795743001,9.45001882308867,9.192249009592103,7.888573922058157,21.657557125001006,7.705081331146559,8.206895744548632,8.726134214217879,6.954967214060588,18.561974854217596,23.72198535567918,23.72198535567918,0.0,26.3577615063102,0.0,23.72198535567918,26.3577615063102,0,0
+2017/06/08 04:00:00,45.642097626132426,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,5.608909637592651,0.0,0.5250544389056605,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8111609525780994,0.8111609525780994,0.7468802679419045,0.7468802679419045,0.8769103722646163,0.8769103722646163,0.9770041315163434,0.9770041315163434,1.0668342013089183,1.0668342013089183,0.41286323655773133,0.46735358989645887,0.4528742667344201,0.37879084369026417,0.6410499198352791,0.36656612299246505,0.39803461637171916,0.42708719575388593,0.31341631270267917,0.6130529922075059,18.875411605857522,18.875411605857522,16.746345512219236,16.746345512219236,21.23324192587316,21.23324192587316,25.161481558221297,25.161481558221297,29.016739328951672,29.016739328951672,8.552933673330756,9.560267232677091,9.280143059064159,7.987745951399148,13.627479899386273,7.7970513983282785,8.300856967624469,8.803584064872354,7.0418783010110815,12.883481352191751,45.642097626132426,45.642097626132426,0.0,50.713441806813805,0.0,45.642097626132426,50.713441806813805,0,0
+2017/06/08 05:00:00,77.10989258286133,0,212.9421150752648,0,0,0,0.3928798726725181,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,3.4058645108814933,0.0,0.5251051693514562,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97.35636101255355,40.77693171973877,335.92573265925523,1127.5938248310804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0117630378812683,1.0117630378812683,0.9851353805157858,0.9851353805157858,1.0341478883120614,1.0341478883120614,1.0512954105369645,1.0512954105369645,1.0833335592757098,1.0833335592757098,0.4992779404336179,0.5511216587237272,0.5383128691085933,0.4653499763488244,0.8465199496146475,0.4565941918159574,0.48582926275053867,0.5150254622213981,0.40365921687277834,0.8023452842642428,26.617558204853182,26.617558204853182,25.497969817481348,25.497969817481348,27.579365848517682,27.579365848517682,28.328614199859288,28.328614199859288,29.75677217110497,29.75677217110497,10.209824157572442,11.35853885397185,11.06390691507265,9.520966079177157,20.121028570428095,9.351248977634896,9.930825924227591,10.546446219688349,8.395363420611332,18.573042921527403,77.10989258286133,77.10989258286133,0.0,85.67765842540148,0.0,77.10989258286133,85.67765842540148,0,0
+2017/06/08 06:00:00,88.02305638448253,0,651.2180801736978,0,0,0,0.4728554806275625,0.0,8.961483134947963,0.0,73.80580873715317,0,4.2577167705242465,2.52149185178088e-09,0.5251922587080403,0,0,0.0,420.5307888421609,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1978.0943289628617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03467133295002111,0.00109697680662598,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1169196789128024,1.1169196789128024,1.1430683605110328,1.1430683605110328,1.1095760981626503,1.1095760981626503,1.095775498911495,1.095775498911495,1.0877663119554113,1.0877663119554113,0.613565074796824,0.6697674666866249,0.6540715392953917,0.594945689456131,1.0873628573737688,0.5769971773105226,0.6101281189142931,0.637759160670175,0.545816703730799,1.025482526011575,31.292216902920188,31.292216902920188,32.51370069203469,32.51370069203469,30.95322804364109,30.95322804364109,30.321091399059966,30.321091399059966,29.957212119247046,29.957212119247046,12.896784224459168,14.425942506984455,13.985104123371158,12.420406367143073,29.938940569360796,11.975435095349653,12.807717187055374,13.53826672193253,11.235649998261806,27.2048360682508,88.02305638448253,88.02305638448253,0.0,97.80339598275836,0.0,88.02305638448253,97.80339598275836,0,0
+2017/06/08 07:00:00,152.62930357514907,0,801.4992791915719,0,0,0,8.988674934535604,0.0,7.833010408772478,0.0,69.33401494192633,0,39.38090929596693,3.012581307597862e-09,27.092693990935164,0,0,0.0,535.3216353474908,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2579.64467235646,0.0,0.0,0.0,0.0,0.0,15409.370375335697,0.0,0.0,0.0,0.0,12830.313700644667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04267241530001871,0.0013501254749654391,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6846184096742057,0.6846184096742057,0.6384793405725413,0.6384793405725413,0.8166727371874993,0.8166727371874993,1.0821015897253612,1.0821015897253612,1.018208402227586,1.018208402227586,0.42375984684059476,0.4363439057513922,0.48093818688670326,0.39147141767537,0.7248313469294843,0.4077541676879455,0.4064244524887697,0.4778709805032048,0.36130353230576195,0.7110051545224364,14.852869135992307,14.852869135992307,13.557750804736202,13.557750804736202,19.066126085242928,19.066126085242928,29.701186218501107,29.701186218501107,26.89258475254502,26.89258475254502,8.744173069934632,8.971365814041064,9.831294820899416,8.192290538949848,16.056716181779535,8.465019886906205,8.442322282913423,9.769405178775287,7.716921215442866,15.63493628406529,152.62930357514907,152.62930357514907,0.0,169.58811508349896,0.0,152.62930357514907,169.58811508349896,0,0
+2017/06/08 08:00:00,179.6619182619665,0,858.3005675262066,0,0,0,20.250487613073677,0.0,11.276247110228917,0.0,83.2008179303116,0,39.380909295966944,2.961672541318848e-09,25.553456309423687,0,0,0.0,538.8873949133095,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3719.2891315872575,6559.371316766341,0.0,0.0,80.11978822183929,0.0,31161.280184403637,0.0,0.0,79.55368349358858,0.0,28053.774475686634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04569655796404761,0.0014458072408539868,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7928634433611143,0.7928634433611143,0.7160940046636338,0.7160940046636338,0.9252741698131476,0.9252741698131476,1.1041420786996996,1.1041420786996996,1.102983349263014,1.102983349263014,0.48618436936706655,0.4903406672137971,0.5542188788927117,0.4429751881336264,0.6561848538725233,0.4670412580532146,0.44919040759606665,0.5530380434160199,0.40978952699190296,0.6507815525567708,18.251493568071595,18.251493568071595,15.789218478854693,15.789218478854693,23.0812682066649,23.0812682066649,30.703552266452405,30.703552266452405,30.650441398479444,30.650441398479444,9.938092375352127,10.023546281180671,11.430849733290756,9.093823200774665,14.043837208877093,9.554129421094729,9.210313323576884,11.403231685406169,8.499909145243791,13.894054292036245,179.6619182619665,179.6619182619665,0.0,199.6243536244072,0.0,179.6619182619665,199.6243536244072,0,0
+2017/06/08 09:00:00,189.79111495410493,0,865.8739900246063,0,0,0,11.91896495263688,0.0,11.346097320007173,0.0,106.27511244621549,0,39.380909295966944,2.857168191686651e-09,20.87003093642128,0,0,0.0,493.22528864289296,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4150.792645280993,3661.1266132737933,0.0,0.0,0.0,0.0,17603.647139966484,0.0,0.0,0.0,0.0,14799.183325986078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046099772587546946,0.001458564670477728,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8152098702078225,0.8152098702078225,0.7138258812987456,0.7138258812987456,0.9432591156874299,0.9432591156874299,1.1060632800524706,1.1060632800524706,1.1526495738280254,1.1526495738280254,0.4290836354506363,0.4276884833595565,0.5073059841608666,0.37435440365422773,0.6493497232356272,0.4179391324438432,0.39284890889354235,0.5155894027808628,0.3474398498692558,0.6436979217028204,19.015384334074525,19.015384334074525,15.720316357215353,15.720316357215353,23.792523860093738,23.792523860093738,30.791711474023074,30.791711474023074,32.966786843828075,32.966786843828075,8.839459243439066,8.814370948219889,10.380093503257655,7.917804698602907,13.854575188214284,8.641384141629018,8.214923877043972,10.558700011503873,7.511472049351596,13.699608796952546,189.79111495410493,189.79111495410493,0.0,210.87901661567213,0.0,189.79111495410493,210.87901661567213,0,0
+2017/06/08 10:00:00,224.3338852597125,0,951.7962906727203,0,0,0,15.760097671931382,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.803554098726143e-09,18.60406870242158,0,0,0.0,490.4217080096465,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,33.19417800235602,5749.556658286811,21858.248478102585,0.0,0.0,0.0,0.0,14177.03080080672,0.0,0.0,0.0,0.0,11980.670519621119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05067433951727343,0.0016033007793980836,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9835583897530672,0.9835583897530672,0.8279499310344588,0.8279499310344588,1.0784973768851107,1.0784973768851107,1.1651756646979923,1.1651756646979923,1.1801113134215173,1.1801113134215173,0.46807718710087476,0.43737718893797756,0.5181421727522458,0.42578286195610354,0.6353975607016682,0.47515064910244653,0.4150770444828349,0.5408489773117904,0.41777668461703543,0.6349233798408364,25.432511641798,25.432511641798,19.460313434863693,19.460313434863693,29.538869447434223,29.538869447434223,33.56348377559428,33.56348377559428,34.28127217581779,34.28127217581779,9.574503204734015,8.990322797961227,10.6143409247871,8.780238115397708,13.474532735576844,9.714854255919292,8.591374804004857,11.121678832280551,8.638536287329316,13.461764881737551,224.3338852597125,224.3338852597125,0.0,249.25987251079167,0.0,224.3338852597125,249.25987251079167,0,0
+2017/06/08 11:00:00,258.7023834752041,0,1007.8227062214376,0,0,0,34.05957531977086,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.857168191686652e-09,20.86889975820111,0,0,0.0,493.21259478954767,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1402.3484726771271,0.0,2307.4099740352895,7150.136760413965,36129.41962744115,1488.7110890786128,0.0,1964.9394243237434,0.0,33015.10413979976,1977.2778134722394,0.0,2567.152338044658,40.09788402821482,31899.149725152478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05365722738022665,0.0016976772721375654,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1299539513118069,1.1299539513118069,0.9422446784371954,0.9422446784371954,1.1439315359184865,1.1439315359184865,1.1824181822976354,1.1824181822976354,1.2038607413209284,1.2038607413209284,0.569838543671523,0.5317403329042237,0.5732275646493138,0.5326089141483669,0.6388699563039176,0.5880822925618999,0.5261732421677514,0.594707856050188,0.5401230541026684,0.6434013915159703,31.898299143136967,31.898299143136967,23.752063377502324,23.752063377502324,32.55439980124622,32.55439980124622,34.392738456100204,34.392738456100204,35.436338813468424,35.436338813468424,11.801860907279092,10.915482827102238,11.883756810072953,10.9349902451915,13.568328114502705,12.248601374515275,10.791227541367988,12.414418712216673,11.105114015698504,13.691516495015193,258.7023834752041,258.7023834752041,0.0,287.4470927502268,0.0,258.7023834752041,287.4470927502268,0,0
+2017/06/08 12:00:00,252.40309610833003,0,969.5402444060147,0,0,0,48.17546032423254,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.803554098726144e-09,18.611161698745175,0,0,0.0,490.4204854866689,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2118.8305635406987,0.0,3288.1592695194263,6863.275842758528,39095.34627574499,3874.291447826964,1187.0283920179997,4553.5708523623325,842.7116574759502,50077.386554059776,4687.952450446966,1327.4603379997181,5462.151415868515,983.8714651301949,49479.191264881476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05161904075709886,0.0016331904681150752,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.166053636222403,1.166053636222403,0.9951127265888982,0.9951127265888982,1.1538233731743697,1.1538233731743697,1.1566309762272742,1.1566309762272742,1.2009731256677951,1.2009731256677951,0.6144650903088784,0.5859712296684917,0.6005078536072056,0.5800165858896197,0.6419012624894292,0.6360061916839511,0.5913558282372774,0.6196442009161973,0.5939562364465267,0.6485133671254092,33.605489618640405,33.605489618640405,25.914320672340992,25.914320672340992,33.02249423761553,33.02249423761553,33.155915794608944,33.155915794608944,35.295020206440384,35.295020206440384,12.920192389267442,12.196168211767272,12.561138566059341,12.04931285388119,13.650636447732964,13.490935104063809,12.330289729317258,13.055577105756825,12.39551219814311,13.831555884578123,252.40309610833003,252.40309610833003,0.0,280.44788456481115,0.0,252.40309610833003,280.44788456481115,0,0
+2017/06/08 13:00:00,252.25406672721775,0,908.6891759119019,0,0,0,50.70571168072866,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.7490197204280714e-09,16.326130777111732,0,0,0.0,465.05976950510035,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4158.55825728231,0.0,3865.6650940625013,6549.884680550548,40380.733389828034,5342.2768179273735,1885.2443453640144,4901.930579227335,967.120406006292,49980.19616068569,6499.2215116463385,2233.311220079407,6006.941820959777,1251.0341411946447,50078.65084492513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04837928479768018,0.0015306868478552598,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2116043502921168,1.2116043502921168,1.086472295684697,1.086472295684697,1.1604228625694475,1.1604228625694475,1.1525269050161513,1.1525269050161513,1.2005054267273718,1.2005054267273718,0.6564638641074513,0.6348588473687015,0.6162592116494852,0.6120469526995388,0.6433580899193,0.6849206362639664,0.6512930960986106,0.6366420079579677,0.630626328543116,0.6532068406587572,35.81648192840254,35.81648192840254,29.898628974361955,29.898628974361955,33.3365029538285,33.3365029538285,32.96096760060563,32.96096760060563,35.27215378910107,35.27215378910107,14.051605904597707,13.460028026242256,12.96695990157329,12.857379617677012,13.690335114501082,14.861656436202423,13.908180370074206,13.508087266347403,13.346506631289103,13.96112828379529,252.25406672721775,252.25406672721775,0.0,280.28229636357526,0.0,252.25406672721775,280.28229636357526,0,0
+2017/06/08 14:00:00,218.91884499579123,0,869.4245543489881,0,0,0,33.38046059098192,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.6935558018614648e-09,14.069533054376075,0,0,0.0,461.28550045473054,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2800.8098939158144,49.91652089716404,3069.5724644233846,6041.561394647247,31357.685397775454,2375.7038549155936,1047.5456907038088,2338.1098910247274,0.0,29677.754960800423,3510.2498659330363,1574.295887858632,3449.6354593321093,0.0,29877.155170976283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046288807262103694,0.0014645455958126657,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1769386732954625,1.1769386732954625,1.1548202455575232,1.1548202455575232,1.1489886174737256,1.1489886174737256,1.1465718495004766,1.1465718495004766,1.179350932050728,1.179350932050728,0.6384861961398132,0.65812819992187,0.6102253739773705,0.5912879147723769,0.6252128977765734,0.6630312855343837,0.6826372636865131,0.6298395377251804,0.623427494674825,0.6329201762124111,34.12823325929354,34.12823325929354,33.06983883581324,33.06983883581324,32.79332027239798,32.79332027239798,32.67903928283518,32.67903928283518,34.24456602229844,34.24456602229844,13.557936386540618,14.098017360998881,12.810230456429423,12.328590281402299,13.202444441433784,14.235441773722599,14.795364718802176,13.325489590068116,13.15521014044397,13.407934006604421,218.91884499579123,218.91884499579123,0.0,243.24316110643468,0.0,218.91884499579123,243.24316110643468,0,0
+2017/06/08 15:00:00,186.33868295150035,0,869.4892832635438,0,0,0,7.181673425641289,0.0,16.965687115311,0.0,108.75639138185811,0,39.380909295966944,2.6935558018614648e-09,14.05402173002943,0,0,0.0,461.3502293692864,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4950.64881655454,16275.275194196776,0.0,0.0,0.0,0.0,2270.841943406096,0.0,0.0,0.0,0.0,1273.408898960528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046292253477459785,0.0014646546316643223,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0774728412169379,1.0774728412169379,0.9552417900623064,0.9552417900623064,1.120554645314969,1.120554645314969,1.1143012110488435,1.1143012110488435,1.1800798105355599,1.1800798105355599,0.4840634635288278,0.4637646513422072,0.49577107754611055,0.3897938499239829,0.6227926687950608,0.5160933290455079,0.48449835552729265,0.5344834855340097,0.40941743667691466,0.6238358806925803,29.492812041144745,29.492812041144745,24.273524634529167,24.273524634529167,31.460676148525877,31.460676148525877,31.17113847832745,31.17113847832745,34.27975108160017,34.27975108160017,9.894773666786293,9.48999227061347,10.13631999901179,8.164836214541893,13.138448636097223,10.569661400206428,9.903640351083183,10.977202490901504,8.493517679859778,13.166002126239903,186.33868295150035,186.33868295150035,0.0,207.0429810572226,0.0,186.33868295150035,207.0429810572226,0,0
+2017/06/08 16:00:00,224.28833753132872,0,922.6664207849313,0,0,0,22.528002406137837,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.6935558018614648e-09,14.107648596463592,0,0,0.0,461.29183812185744,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1362.6578583267305,509.68949198394614,2903.1797529655314,5817.302113183874,31646.296602929357,35.67784761572218,488.72947161862675,695.8554901892403,0.0,16500.88583546987,173.43284830709698,691.2347006955887,1252.891859297668,0.0,16009.824083142004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049123443667758726,0.001554231515783023,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1201578571948045,1.1201578571948045,1.1061792964233321,1.1061792964233321,1.1423558929662203,1.1423558929662203,1.134528897757083,1.134528897757083,1.191827246138909,1.191827246138909,0.5381517085711077,0.5705485428781891,0.5504139846854931,0.4393136845244506,0.6142358929016414,0.5612941081826706,0.5905417046788268,0.5747709906069914,0.4466834673275065,0.6172523672882444,31.442266067900576,31.442266067900576,30.797039172941908,30.797039172941908,32.48012546775412,32.48012546775412,32.11234973158889,32.11234973158889,34.84901630782326,34.84901630782326,11.060245134064743,11.81897682457965,11.34207513313936,9.025973974479342,12.91422794386834,11.597595552424849,12.309930507198601,11.921218928318012,9.163126571065689,12.992908640154894,224.28833753132872,224.28833753132872,0.0,249.2092639236986,0.0,224.28833753132872,249.2092639236986,0,0
+2017/06/08 17:00:00,230.07837948661535,0,951.7703223772088,0,0,0,21.491781686791786,0.0,16.693521149792748,0.0,133.89528835348938,0,39.380909295966944,2.8035540987261443e-09,18.61687899777086,0,0,0.0,490.39573971413495,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,1741.288476591604,5689.152008453359,27272.243108239552,0.0,0.0,144.19060791631216,0.0,19291.409780499944,0.0,0.0,937.2535257385719,0.0,18470.121404855658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050672956945985524,0.001603257035806266,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1194270902038237,1.1194270902038237,1.052023232791754,1.052023232791754,1.1393663541196692,1.1393663541196692,1.127934040722208,1.127934040722208,1.1932765286655211,1.1932765286655211,0.5359887087108619,0.5511263137017703,0.5786377929804439,0.4293560260602589,0.6165788950428603,0.5633121268268456,0.5723877729961784,0.5935351088432516,0.43648224604930946,0.6200370750750688,31.408373753475246,31.408373753475246,28.360651977363204,28.360651977363204,32.339419952527166,32.339419952527166,31.804009456004948,31.804009456004948,34.91952894766112,34.91952894766112,11.01120779719048,11.358647221828647,12.015527990406198,8.84436724990043,12.975307778562595,11.645553181102827,11.863416756070492,12.384929717650706,8.973901195587771,13.065894545329314,230.07837948661535,230.07837948661535,0.0,255.64264387401704,0.0,230.07837948661535,255.64264387401704,0,0
+2017/06/08 18:00:00,228.75377299519724,0,944.5120460124429,0,0,0,35.699493190938945,0.0,17.24136368197722,0.0,110.93442390708215,0,39.380909295966944,2.9616725413188513e-09,25.497582916270254,0,0,0.0,518.6278158619131,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,2164.8498477946164,5528.252433770878,30094.951851362617,1657.5712083636067,853.5145517700523,3005.366615907081,0.0,37885.26651056234,1905.9791627907425,946.0853535996225,3680.7135219122356,0.0,37165.07683428917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0502865209360717,0.0015910304698207119,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1028386221740107,1.1028386221740107,1.0252084089358402,1.0252084089358402,1.1175452862137196,1.1175452862137196,1.10702235361917,1.10702235361917,1.1784541525545358,1.1784541525545358,0.5460438223824617,0.5669045636832786,0.5691551373534215,0.48037439341779103,0.6135726032958783,0.5598391399472729,0.57826642469139,0.5795944099050292,0.47857115461148825,0.6165717595234639,30.643810965546265,30.643810965546265,27.193033597686366,27.193033597686366,31.32117887197181,31.32117887197181,30.83576765176865,30.83576765176865,34.20129779245957,34.20129779245957,11.240886191047153,11.731363477633565,11.785406717772716,9.819888236342592,12.896979884558021,11.563128222926167,12.006442372875824,12.038959421827713,9.78349744482351,12.975121400697404,228.75377299519724,228.75377299519724,0.0,254.17085888355248,0.0,228.75377299519724,254.17085888355248,0,0
+2017/06/08 19:00:00,212.07873187143636,0,930.728273315578,0,0,0,23.40219980956418,0.0,20.507991706089406,0.0,101.68988858149199,0,39.380909295966944,3.0125813078524818e-09,27.0977424753112,0,0,0.0,540.3343956775926,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4857.648513692384,18272.72794149664,0.0,0.0,710.2842698333335,0.0,27758.90102287205,0.0,0.0,1219.8840797623725,0.0,26736.58809420117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049552662667958276,0.0015678117057590132,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0091272445582264,1.0091272445582264,0.8930495513492147,0.8930495513492147,1.0839565890561842,1.0839565890561842,1.088357182753477,1.088357182753477,1.1648540026106153,1.1648540026106153,0.5169750001645184,0.5005321799449073,0.5548096707475065,0.40493973241511405,0.6101784400741165,0.5292280885838535,0.5023462158771348,0.5587988155332081,0.3983788135319483,0.610911447857374,26.50553641241663,26.50553641241663,21.83936165083371,21.83936165083371,29.784903113789994,29.784903113789994,29.983981485181317,29.983981485181317,33.548100053456395,33.548100053456395,10.588865908954148,10.23624213219739,11.444690196007826,8.417068271917387,12.809017537304015,10.859244370681665,10.274571327903615,11.538539843875128,8.30660140652077,12.82797166820616,212.07873187143636,212.07873187143636,0.0,235.64303541270706,0.0,212.07873187143636,235.64303541270706,0,0
+2017/06/08 20:00:00,205.33248891027918,0,871.5196808363651,0,0,0,12.642509667912268,0.0,23.98253748512659,0.0,106.16168237671882,0,39.380909295966944,2.9098712542405646e-09,23.164850081644676,0,0,0.0,516.6161557109239,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4134.206170222929,5804.723611932022,0.0,0.0,0.0,0.0,16784.036206835528,0.0,0.0,0.0,0.0,15449.709437749989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0464003533481658,0.0014680748362216349,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8719332322432551,0.8719332322432551,0.7385527402501887,0.7385527402501887,0.9774161371776499,0.9774161371776499,1.0663125840137349,1.0663125840137349,1.1463594223075368,1.1463594223075368,0.4268955428032061,0.39204084063739925,0.5008429766691742,0.29714841569380746,0.6039419033286798,0.4250496225982065,0.38558698347889536,0.5162405888141784,0.27540522566194203,0.6020040451158452,21.048477638428324,21.048477638428324,16.48343026515633,16.48343026515633,25.178469901734644,25.178469901734644,28.99350009489598,28.99350009489598,32.66900316753612,32.66900316753612,8.80014914062592,8.20163680271115,10.24279893490619,6.834682477947595,12.648696262223694,8.767146097105993,8.096517386064079,10.57286666444574,6.575211784315684,12.59922392425969,205.33248891027918,205.33248891027918,0.0,228.1472099003102,0.0,205.33248891027918,228.1472099003102,0,0
+2017/06/08 21:00:00,195.2347853916372,0,838.043260875021,0,0,0,1.2178210831176348,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.961672541318851e-09,25.553002057392597,0,0,0.0,518.6300882621239,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3481.7600906383777,0.0,0.0,0.0,0.0,0.0,1188.610199104136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0446180439532164,0.0014116838093375678,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7837504900921693,0.7837504900921693,0.6451889316855846,0.6451889316855846,0.9000795735259195,0.9000795735259195,1.0487342301772922,1.0487342301772922,1.1250469386699724,1.1250469386699724,0.3353485425360414,0.3008764385763141,0.4099401738906623,0.20651861378070616,0.6004631960458453,0.32125056904394156,0.27518971538141085,0.4151384782361102,0.16949545850536968,0.5935122915312386,17.94604633727434,17.94604633727434,13.740356211196527,13.740356211196527,22.106705903969598,22.106705903969598,28.216026507796485,28.216026507796485,31.669471044347333,31.669471044347333,7.338960280080954,6.881175732260189,8.502498521792361,5.884525685285439,12.56000330694178,7.1456556534207465,6.572739840223633,8.59244455039827,5.595453696876362,12.384356563127653,195.2347853916372,195.2347853916372,0.0,216.9275393240413,0.0,195.2347853916372,216.9275393240413,0,0
+2017/06/08 22:00:00,136.98818078621716,0,674.2028140793984,0,0,0,0.3690643436710965,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.857168191686651e-09,20.866158834366964,0,0,0.0,514.4962277729499,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1466.0127217139134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.035895057208106255,0.0011356945891456212,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.507661389585471,0.507661389585471,0.37226276467841557,0.37226276467841557,0.6236569413528726,0.6236569413528726,0.9775353091032883,0.9775353091032883,0.8299390330595597,0.8299390330595597,0.1375483265526318,0.10107009894116184,0.2160312731079819,0.009031922930636985,0.43488710602105973,0.10600003449648908,0.05580355045771979,0.2050015975027443,-0.04623469799888211,0.411535243992473,10.387695807617419,10.387695807617419,7.885120884394581,7.885120884394581,13.1612725946013,13.1612725946013,25.183384973693578,25.183384973693578,19.53039517760834,19.53039517760834,5.391973296145892,5.211555504217856,5.968054021214641,5.001688662555267,8.944716753487924,5.232707631756313,5.064471109962895,5.871555332746951,5.044254612542389,8.529974833038409,136.98818078621716,136.98818078621716,0.0,152.2090897624635,0.0,136.98818078621716,152.2090897624635,0,0
+2017/06/08 23:00:00,87.29106827677569,0,486.9486825267452,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,3.4874717950555064e-06,11.780083730465599,0,0,0.0,433.713153757929,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025925508543859384,0.0008202650187575239,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.24178817555214163,0.24178817555214163,0.10809194997278733,0.10809194997278733,0.3556529452736286,0.3556529452736286,0.9009395065959229,0.9009395065959229,0.5174076048765454,0.5174076048765454,0.07498187656924203,0.0686899601588048,0.03200127705149372,-0.07697946508093843,0.24473514890896983,0.05837222136882508,-0.016324627131001017,-0.0026882248313509906,-0.07982544482999658,0.21205820138909698,6.213255551070887,6.213255551070887,5.2419880592072445,5.2419880592072445,7.6321963656777285,7.6321963656777285,22.139546227429605,22.139546227429605,10.59830117865745,10.59830117865745,5.1164133487737615,5.097692038194921,5.021199978706321,5.122700358644053,6.243085184495783,5.070543926064971,5.005516613721298,5.000149593303647,5.131943315530947,5.932706702581456,87.29106827677569,87.29106827677569,0.0,96.9900758630841,0.0,87.29106827677569,96.9900758630841,0,0
+2017/06/09 00:00:00,39.67056386264119,0,498.46504077424845,0,0,0,0.18972727375787043,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.1349233702445128,2.5798023241987685e-09,9.548592219635825,0,0,0.0,445.22951200543224,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,265.38690544756076,387.2793706364807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02653864798719979,0.0008396643233513665,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.49597373682305285,0.49597373682305285,0.38241571187865736,0.38241571187865736,0.5836384275084208,0.5836384275084208,0.8995980886810192,0.8995980886810192,0.7633543766095195,0.7633543766095195,0.23620464714615608,0.264684452528321,0.2634423503478027,0.1424693527589969,0.523639084780424,0.2503998637959419,0.19560537224437954,0.1952483911801888,0.07237874156040709,0.475064856894338,10.140553291400352,10.140553291400352,8.04551615199928,8.04551615199928,12.13845257106793,12.13845257106793,22.08833140931179,22.08833140931179,17.2752142382228,17.2752142382228,6.157738501631243,6.454615400000733,6.440956110741425,5.420547470229806,10.735110542901907,6.3014489828658355,5.793363222216726,5.790465346894763,5.108468788835779,9.713139051896817,39.67056386264119,39.67056386264119,0.0,44.07840429182354,0.0,39.67056386264119,44.07840429182354,0,0
+2017/06/09 01:00:00,23.774745860681655,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5776504370038633,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5453801976854427,0.5453801976854427,0.4473043728039386,0.4473043728039386,0.609459916623673,0.609459916623673,0.858970486816577,0.858970486816577,0.8943453406747119,0.8943453406747119,0.24984084557423028,0.2544743551625646,0.26731366495692305,0.15170637838732515,0.6526538219389938,0.23863589649836117,0.1979805443523104,0.20875591757947048,0.07761520353870337,0.5859331969461534,11.225592681668019,11.225592681668019,9.17478835103114,9.17478835103114,12.790460574970183,12.790460574970183,20.57206328316356,20.57206328316356,21.888487850719216,21.888487850719216,6.295629415375259,6.344262683414513,6.483742914105974,5.47690454996291,13.945811506982807,6.18175153491309,5.8127798753436934,5.903830188101182,5.124735927258186,12.195225354053022,23.774745860681655,23.774745860681655,0.0,26.41638428964628,0.0,23.774745860681655,26.41638428964628,0,0
+2017/06/09 02:00:00,28.344125289273858,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5247622028009653,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.575555122540445,0.575555122540445,0.48386303751838966,0.48386303751838966,0.6306798978780707,0.6306798978780707,0.841543197177378,0.841543197177378,0.9657368553755444,0.9657368553755444,0.24923514543660397,0.257297586837691,0.26584792592260514,0.15286632899688318,0.691363470780063,0.2245377877609858,0.19046111211820554,0.20781384272471567,0.07814751107656817,0.6124791104619934,11.940291012312898,11.940291012312898,9.890690079832964,9.890690079832964,13.347938571296595,13.347938571296595,19.94254437953775,19.94254437953775,24.69944486231921,24.69944486231921,6.2893387009460895,6.374337960680435,6.467468937500627,5.484232753053277,15.04992252377673,6.045957794999794,5.752118191460141,5.89567599145596,5.12645321223269,12.868586586089222,28.344125289273858,28.344125289273858,0.0,31.49347254363762,0.0,28.344125289273858,31.49347254363762,0,0
+2017/06/09 03:00:00,23.72195071746404,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.524855293786248,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5769455764953787,0.5769455764953787,0.48934256436896106,0.48934256436896106,0.628143120867114,0.628143120867114,0.8059142841342218,0.8059142841342218,0.9836374311972708,0.9836374311972708,0.24837584510318836,0.25912900128155225,0.26702201541527,0.15466267692418328,0.7199618412507235,0.21449966429467174,0.18419628238366925,0.205479363696848,0.07516943154681244,0.6278738848707162,11.974175983761953,11.974175983761953,10.002957143849486,10.002957143849486,13.280265670991838,13.280265670991838,18.695060660251556,18.695060660251556,25.435790241100236,25.435790241100236,6.280440588344604,6.394026932784925,6.480497543373616,5.495692116317102,15.907228608835425,5.9543494201868725,5.703382053630406,5.875629802347561,5.116996602319645,13.273099725398694,23.72195071746404,23.72195071746404,0.0,26.35772301940449,0.0,23.72195071746404,26.35772301940449,0,0
+2017/06/09 04:00:00,43.176364671251164,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,3.1432483071507384,0.0,0.524982814466306,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6216665176231722,0.6216665176231722,0.5358477581122475,0.5358477581122475,0.6698991830449399,0.6698991830449399,0.8319597663048865,0.8319597663048865,0.9439874271068561,0.9439874271068561,0.23574323714084466,0.24408589044126192,0.2535897581786127,0.14212074664401217,0.5073034684780433,0.19808920714447797,0.16794623780102155,0.1903129340660249,0.06065588403423495,0.47286371679277367,13.108757544665309,13.108757544665309,11.008019341836132,11.008019341836132,14.429687061884792,14.429687061884792,19.601761162022186,19.601761162022186,23.821597443357064,23.821597443357064,6.153209247592429,6.236481975623391,6.334908240170336,5.418490104937035,10.380039710976305,5.813673818753017,5.584605054134201,5.750946534142756,5.076172522843194,9.66924119550994,43.176364671251164,43.176364671251164,0.0,47.973738523612404,0.0,43.176364671251164,47.973738523612404,0,0
+2017/06/09 05:00:00,75.2001917138562,0,212.9421150752648,0,0,0,0.10429420957731608,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,1.7847825934847765,0.0,0.5250718808382461,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,419.9887635955335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8667155447119967,0.8667155447119967,0.7808979709328333,0.7808979709328333,0.9119003125391212,0.9119003125391212,0.9964074077090478,0.9964074077090478,0.9988973733544638,0.9988973733544638,0.29397143830602923,0.3000111077488722,0.3116401002911173,0.20035557967771025,0.7055464632633515,0.2588654694919852,0.22813797776212222,0.2525271558826471,0.12349009610053094,0.6495818211673879,20.855879420566723,20.855879420566723,17.851160819394295,17.851160819394295,22.560758896310645,22.560758896310645,25.96862579727113,25.96862579727113,26.07324607100186,26.07324607100186,6.79552504365104,6.870331580677686,7.018711007534165,5.832431281520726,15.470682425748919,6.391185091204321,6.079842298574846,6.323714930668885,5.315892969074639,13.860968671155717,75.2001917138562,75.2001917138562,0.0,83.55576857095133,0.0,75.2001917138562,83.55576857095133,0,0
+2017/06/09 06:00:00,87.36680925883627,0,652.7017541243156,0,0,0,0.3262981490718805,0.0,10.51688428816451,0.0,73.80580873715317,0,2.192658574298353,2.521513355700608e-09,0.525159507626831,0,0,0.0,422.0144627927787,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191.09145972939618,0.0,0.0,1146.0708894985814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03475032485011918,0.0010994760552831865,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.09193497230304,1.09193497230304,1.0475402499644029,1.0475402499644029,1.0913235797167526,1.0913235797167526,1.0927328124501268,1.0927328124501268,1.0159610277548283,1.0159610277548283,0.4012921461364824,0.40418292623888297,0.4194677916363904,0.30929290419503247,0.9479872648621218,0.36963520865745914,0.3385294820171497,0.3654980580323884,0.23556336771768668,0.8672182336761712,30.146330382250653,30.146330382250653,28.1636210592401,28.1636210592401,30.118556051656114,30.118556051656114,30.182593984561578,30.182593984561578,26.796511813089623,26.796511813089623,8.355426128210965,8.404231857981856,8.668238305749554,6.988301190726901,23.98164160269245,7.84432725327099,7.383742040446279,7.780693204997405,6.151446049208133,20.874386059804337,87.36680925883627,87.36680925883627,0.0,97.07423250981807,0.0,87.36680925883627,97.07423250981807,0,0
+2017/06/09 07:00:00,143.82476084015366,0,806.425141900603,0,0,0,0.0873613735849976,0.0,7.932869728004675,0.0,69.33401494192633,0,39.38090929596693,2.1775628106283443e-05,27.0895837250426,0,0,0.01289289477367986,540.2346051617485,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,348.4268097042793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.042934671879266875,0.0013584230903249353,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6352112008914019,0.6352112008914019,0.6029350057588286,0.6029350057588286,0.6283720323709093,0.6283720323709093,1.0651270292209614,1.0651270292209614,0.5911156224433383,0.5911156224433383,0.16515612738291147,0.11339201681394395,0.19098171224116495,0.07799947210172052,0.3709085866823461,0.15654532728991363,0.08806957142570417,0.16809924628356182,0.044474534425356815,0.3324128361022212,13.469513624388782,13.469513624388782,12.622970439653983,12.622970439653983,13.28636081959992,13.28636081959992,28.94071686021516,28.94071686021516,12.324279783465428,12.324279783465428,5.565319347016882,5.266314470474498,5.756241898049581,5.125974442080576,7.8640600846972575,5.5078462955031995,5.160613943632896,5.585672063452051,5.040948896755808,7.2980121371197555,143.82476084015366,143.82476084015366,0.0,159.80528982239295,0.0,143.82476084015366,159.80528982239295,0,0
+2017/06/09 08:00:00,160.0442502788109,0,846.1769560940158,0,0,0,0.6335703360883282,0.0,11.276247110228917,0.0,83.2008179303116,0,39.380909295966944,2.354037330662085e-05,25.55268206584181,0,0,0.013939321850845033,526.7498441592678,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2603.2329685537707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04505108791135797,0.0014253850183166283,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.28986314285647813,0.28986314285647813,0.1527048785379215,0.1527048785379215,0.3383568359354282,0.3383568359354282,1.132620744635829,1.132620744635829,0.5542931243140534,0.5542931243140534,-0.0452692135450748,0.0400059670184428,0.011913757992552204,0.08453677920877804,0.2708875602513062,0.08031606964346232,0.04383968172140222,-0.025719906885986046,0.09823078598222586,0.223250087108898,6.745520973175843,6.745520973175843,5.483209402536033,5.483209402536033,7.381300474142037,7.381300474142037,32.02298920023624,32.02298920023624,11.432588247144466,11.432588247144466,5.042425470964645,5.033133062483529,5.002938198634723,5.147982745943665,6.523802893794752,5.1335706732575375,5.039788088765263,5.013694069316529,5.199831189731256,6.033970075958166,160.0442502788109,160.0442502788109,0.0,177.82694475423432,0.0,160.0442502788109,177.82694475423432,0,0
+2017/06/09 09:00:00,179.15232294513615,0,878.2831283449605,0,0,0,1.4277755345689367,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.8571911534218085e-09,20.870114024702996,0,0,0.0,505.634426963247,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6196.846484644828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04676044430325409,0.0014794678630365272,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4816677551609464,0.4816677551609464,0.19935665485434784,0.19935665485434784,0.4420144563503643,0.4420144563503643,1.2358562998758558,1.2358562998758558,0.707837282211329,0.707837282211329,0.07135401064934066,-0.00756090295319587,0.05528572653915445,0.20966339395410258,0.3472708004528489,0.08808240813541932,-0.05430295626192486,0.021639037944023814,0.22489492084339519,0.3060615626835758,9.846075690834311,9.846075690834311,5.824137281652824,5.824137281652824,9.075964672435973,9.075964672435973,37.01783709410978,37.01783709410978,15.539457454542529,15.539457454542529,5.105418457351647,5.001183393769736,5.063279990975232,5.911720042148872,7.5090173249492835,5.160660784259392,5.061049936794404,5.009693170821521,6.049294802334003,6.946818011562627,179.15232294513615,179.15232294513615,0.0,199.05813660570684,0.0,179.15232294513615,199.05813660570684,0,0
+2017/06/09 10:00:00,210.23254864518216,0,943.7262437664834,0,0,0,1.5570208756771646,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.8035768570406878e-09,18.60103268378466,0,0,0.0,482.35166110340964,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6789.151421939496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050244684242447844,0.0015897067859970341,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7065350934983983,0.7065350934983983,0.3143557494900935,0.3143557494900935,0.5804324559755446,0.5804324559755446,1.1811304562174598,1.1811304562174598,0.8952405209285397,0.8952405209285397,0.1513643528130371,-0.030882267687584418,0.05961479284579217,0.22994341783337152,0.34846146697213276,0.17317181395397147,-0.07051189524906303,0.03806094052944115,0.2524819194302371,0.32495546907093154,15.500335344083311,15.500335344083311,7.054185469496133,7.054185469496133,12.059519201484946,12.059519201484946,34.33049679983705,34.33049679983705,21.922466054135086,21.922466054135086,5.474754438145169,5.019743211597103,5.073579716782234,6.097039496933647,7.526332556779437,5.621598565743454,5.1029443078019625,5.02998942293101,6.323239469626259,7.195638869504251,210.23254864518216,210.23254864518216,0.0,233.59172071686908,0.0,210.23254864518216,233.59172071686908,0,0
+2017/06/09 11:00:00,233.04738891555073,0,1015.2621833271593,0,0,0,8.23328738758298,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.857191153421809e-09,20.872803453808555,0,0,0.0,500.6520718952694,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6265.84045091575,8209.509323475835,0.0,0.0,0.0,0.0,7280.97858001926,0.0,0.0,0.0,0.0,6370.184213190049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05405331065180557,0.001710209070757507,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9152939169164451,0.9152939169164451,0.4394238246842818,0.4394238246842818,0.7256111620895429,0.7256111620895429,1.137000022239185,1.137000022239185,0.999112206166343,0.999112206166343,0.3084036258306462,0.059851942183260363,0.17370194176215267,0.2802181187299767,0.4154665047520811,0.35340719191153247,0.035537214071820145,0.17046663574042223,0.311242154228581,0.41085063653110643,22.692156269794225,22.692156269794225,9.028006514077163,9.028006514077163,16.080750295240463,16.080750295240463,32.22824996140632,32.22824996140632,26.08228368520018,26.08228368520018,6.976840783003766,5.07416637956743,5.625415151699528,6.630926793041297,8.598159216048828,7.598900973231537,5.026144010873139,5.602305551615416,7.013538877641096,8.518168592323278,233.04738891555073,233.04738891555073,0.0,258.9415432395008,0.0,233.04738891555073,258.9415432395008,0,0
+2017/06/09 12:00:00,224.95716893254647,0,965.8559080456647,0,0,0,20.85037626760995,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.8035768570406878e-09,18.59509477994494,0,0,0.0,486.7361491263188,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1029.8413671623046,0.0,0.0,5622.457227214654,15764.836031198862,1515.9927017669622,0.0,403.4600775643365,0.0,22151.041584671882,2246.985069364419,0.0,746.7620815451362,0.0,21360.880199016756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05142288396026132,0.0016269842037957018,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0388477221020662,1.0388477221020662,0.5659230691695588,0.5659230691695588,0.8608275086853253,0.8608275086853253,1.0966045194191634,1.0966045194191634,1.0445116808992263,1.0445116808992263,0.46366460104283463,0.23596029153171394,0.3525555605783937,0.38585963250219907,0.48729320190168685,0.5101676552723277,0.23416656264020805,0.36356039165709547,0.42103623842750415,0.493652135694751,27.783654971172,27.783654971172,11.707863556224652,11.707863556224652,20.63988726448966,20.63988726448966,30.358881848337035,30.358881848337035,28.030924789637155,28.030924789637155,9.488041136791693,6.155338765528015,7.586330863548753,8.10092225056053,9.960817149336862,10.441461170874462,6.1377998621912155,7.751140510317711,8.695895564332986,10.09216426408662,224.95716893254647,224.95716893254647,0.0,249.95240992505163,0.0,224.95716893254647,249.95240992505163,0,0
+2017/06/09 13:00:00,223.3421742382648,0,912.0101983979424,0,0,0,21.53520551586261,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,2.7490422588295684e-09,16.354741382838288,0,0,0.0,468.3807919911408,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266.6492919533482,0.0,0.0,5127.25579112543,17316.0519156628,1524.8426066583515,0.0,104.48591158526807,0.0,22622.407803027832,2556.7881918868297,0.0,633.7030149530699,0.0,21909.792753616002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04855609849474048,0.0015362811099809337,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0547849721435922,1.0547849721435922,0.6701670357161584,0.6701670357161584,0.9087520947665134,0.9087520947665134,1.0801738624168096,1.0801738624168096,1.055527439710533,1.055527439710533,0.4996249394015127,0.3159705770851564,0.4047267083772577,0.4041623714667543,0.5001142530862509,0.5372571403498677,0.3350732181632736,0.42162694874557377,0.44537225055788393,0.5069998905416518,28.482393734918162,28.482393734918162,14.43730414312654,14.43730414312654,22.439278339702426,22.439278339702426,29.614314057681653,29.614314057681653,28.51516965956904,28.51516965956904,10.217126175344845,7.075427991836335,8.413452628792072,8.40388356437299,10.227431811398318,11.039939814802409,7.335104423576382,8.706339221406708,9.138553907663805,10.37355038081968,223.3421742382648,223.3421742382648,0.0,248.15797137584977,0.0,223.3421742382648,248.15797137584977,0,0
+2017/06/09 14:00:00,190.59679604654957,0,869.204303064508,0,0,0,4.909340496968849,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.6935781035499303e-09,14.05121460552721,0,0,0.0,461.0652491702506,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4312.513318489864,6752.677761738705,0.0,0.0,0.0,0.0,3283.2167486343374,0.0,0.0,0.0,0.0,2351.972763275806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046277080920576384,0.0014641745825406758,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9684415237379455,0.9684415237379455,0.7373552446527576,0.7373552446527576,0.8401708087898007,0.8401708087898007,1.062055846341264,1.062055846341264,1.0449082545908939,1.0449082545908939,0.40352914496444386,0.28207440474363904,0.2734321657450984,0.26320839047111755,0.48693398272953836,0.46832744194935366,0.32092874411855027,0.3158315335272007,0.3028447481229322,0.4912487105171261,24.809905281924387,24.809905281924387,16.445867846388538,16.445867846388538,19.893507325184345,19.893507325184345,28.80421419907529,28.80421419907529,28.04828165504634,28.04828165504634,8.393162616965782,6.65267658994928,6.552653497806759,6.438390543925564,9.953449383473469,9.579431942070045,7.14134134433219,7.07359457433445,6.905960108277583,10.042315012378225,190.59679604654957,190.59679604654957,0.0,211.77421782949952,0.0,190.59679604654957,211.77421782949952,0,0
+2017/06/09 15:00:00,181.53807806240727,0,869.2115717346231,0,0,0,2.7015972600957348,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.6935781035499307e-09,14.06827244856646,0,0,0.0,461.0725178403657,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3987.2059348299513,5573.23354245874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046277467909957265,0.0014641868266149333,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8743504081455793,0.8743504081455793,0.8724954590952454,0.8724954590952454,0.8079108676591994,0.8079108676591994,1.053474052323967,1.053474052323967,1.0405025088336695,1.0405025088336695,0.2951809595405793,0.3120165224904962,0.1946344562994635,0.17519468046697964,0.4348556476409041,0.35233915357031653,0.36167136444216874,0.22983994524048454,0.2003681377077927,0.42841348558822834,21.138082123414904,21.138082123414904,21.0692978614304,21.0692978614304,18.76355501965108,18.76355501965108,28.424572116269715,28.424572116269715,27.855776536877556,27.855776536877556,6.810382569142675,7.023609560610268,5.785494049241862,5.6362249249047665,8.94414229459565,7.583141604920613,7.72248361781638,6.096050205299349,5.832535815544645,8.827397860404417,181.53807806240727,181.53807806240727,0.0,201.70897562489696,0.0,181.53807806240727,201.70897562489696,0,0
+2017/06/09 16:00:00,205.27859791993853,0,922.4530201340623,0,0,0,3.522636048571825,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.6935781035499307e-09,14.10327534263945,0,0,0.0,461.07843747098855,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4274.319794598515,8057.4147291999425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049112082059039185,0.0015538720424028312,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8487235565850783,0.8487235565850783,0.8652746932632307,0.8652746932632307,0.840040776034144,0.840040776034144,1.0632299283511764,1.0632299283511764,1.0648167025910498,1.0648167025910498,0.24177042514092023,0.291242145864263,0.17724688659079882,0.13146651928540662,0.4145222600428493,0.2848364911305203,0.3409229896294838,0.2067746270354974,0.1443693737114022,0.3997516152611002,20.200387427294146,20.200387427294146,20.802891889598868,20.802891889598868,19.88886517918074,19.88886517918074,28.856358129219032,28.856358129219032,28.926908752663948,28.926908752663948,6.213076984407451,6.762226010633242,5.65123791037486,5.358051047406661,8.581721663912816,6.685308596373957,7.41772154651359,5.886724072996472,5.431849720125726,8.329563037287826,205.27859791993853,205.27859791993853,0.0,228.08733102215393,0.0,205.27859791993853,228.08733102215393,0,0
+2017/06/09 17:00:00,215.82136471708534,0,949.2579510370433,0,0,0,7.2751204750433045,0.0,16.7356839618177,0.0,133.89528835348938,0,39.380909295966944,2.803576857040688e-09,18.534362627964363,0,0,0.0,487.8833683739696,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,160.3442720496938,0.0,4395.218250829468,11604.192488455674,0.0,0.0,0.0,0.0,4835.286969420921,0.0,84.36036585547586,0.0,0.0,3451.7258792935827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050539196434904905,0.0015990249464744425,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.841780174276912,0.841780174276912,1.0954228737658833,1.0954228737658833,0.9388662300142187,0.9388662300142187,1.059697222410407,1.059697222410407,1.0774875090977443,1.0774875090977443,0.26644136964796333,0.46770420422114095,0.28220008687778325,0.15361155828513393,0.4650781015854638,0.3007558317867884,0.5298035588353822,0.3195067103128113,0.15713090857944512,0.46031382280930006,19.951019808937517,19.951019808937517,30.305024302667093,30.305024302667093,23.61760930471685,23.61760930471685,28.699610420846042,28.699610420846042,29.493471167931546,29.493471167931546,6.474046992736362,9.567162362933885,6.654154440982225,5.488970446437364,9.51564654513777,6.879662413509706,10.872102569063813,7.122330442752826,5.511656851716538,9.42294484139397,215.82136471708534,215.82136471708534,0.0,239.80151635231704,0.0,215.82136471708534,239.80151635231704,0,0
+2017/06/09 18:00:00,203.46603799023086,0,946.5373068303707,0,0,0,10.69181008834922,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.9616958616481284e-09,25.660597340793693,0,0,0.0,520.6530766798411,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4216.445454409383,9102.744697573497,0.0,0.0,0.0,0.0,11968.767562226412,0.0,0.0,0.0,0.0,10291.18205677757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050394347322142354,0.001594442021514796,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8003226569942805,0.8003226569942805,1.014347735992217,1.014347735992217,0.9639448415865587,0.9639448415865587,1.0502701619652652,1.0502701619652652,1.0904570308937311,1.0904570308937311,0.3062726344762551,0.4954171247878147,0.3776822146343417,0.18418682101540806,0.5147032367814978,0.33283205084315487,0.5585093099094692,0.4224561610011275,0.17888359792994143,0.514511388399827,18.504131989986945,18.504131989986945,26.727661667666723,26.727661667666723,24.62641486663007,24.62641486663007,28.283516541498102,28.283516541498102,30.079212534500684,30.079212534500684,6.9495142128606915,10.128930634946755,7.970189512931427,5.703309690364392,10.539450800788075,7.303837084604538,11.53170563905337,8.72102479997963,5.663337322167024,10.535287962361139,203.46603799023086,203.46603799023086,0.0,226.07337554470095,0.0,203.46603799023086,226.07337554470095,0,0
+2017/06/09 19:00:00,196.27441840356823,0,930.6236570236573,0,0,0,10.181309540502731,0.0,17.924568507282753,0.0,101.68988858149199,0,39.380909295966944,3.0126047839703643e-09,27.097742475311204,0,0,0.0,540.2297793856718,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,139.67298323013006,3961.038540535141,6499.741095657144,0.0,0.0,4.5841112819655,0.0,12087.355029428956,0.0,266.5558736080824,487.9315832854263,0.0,10459.857804842057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04954709281908643,0.001567635479623213,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7408445135042304,0.7408445135042304,0.7699274914312773,0.7699274914312773,1.0568080060082798,1.0568080060082798,1.0392803465769656,1.0392803465769656,1.0808286803227147,1.0808286803227147,0.29096736225369374,0.5565189211169361,0.470525046421105,0.16457794995297115,0.5215006237342243,0.30685117211260127,0.6066868509470341,0.5071547172716345,0.14786643023851892,0.5199326449818078,16.555489034420646,16.555489034420646,17.48946878329265,17.48946878329265,28.571746250911772,28.571746250911772,27.802500644616472,27.802500644616472,29.64380859798183,29.64380859798183,6.758890915932412,11.484817976955952,9.62282939605845,5.561363489410724,10.687972192235591,6.956914034809614,12.71905204247193,10.37685948371913,5.453044759537789,10.65353480871967,196.27441840356823,196.27441840356823,0.0,218.0826871150758,0.0,196.27441840356823,218.0826871150758,0,0
+2017/06/09 20:00:00,195.9026060337777,0,850.5751723432239,0,0,0,5.7887730034583305,0.0,21.40573832700487,0.0,106.16168237671882,0,39.380909295966944,2.9098944032114484e-09,23.165503027718806,0,0,0.0,495.67164721778283,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3626.378003298004,614.7326691718874,0.0,0.0,0.0,0.0,8345.835718010861,0.0,0.0,0.0,0.0,6813.39561689163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0452852522022539,0.0014327938132546,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6718814601331716,0.6718814601331716,0.6356079428597451,0.6356079428597451,0.8546784356479682,0.8546784356479682,1.0242046814525085,1.0242046814525085,1.07052626995927,1.07052626995927,0.2603699758351229,0.39421461422964266,0.41657996994904767,0.12670359213385485,0.528547805409283,0.2634439375561968,0.47807022004537775,0.4550451032391971,0.09683641163448871,0.5234343720619822,14.486131786556228,14.486131786556228,13.480200635817539,13.480200635817539,20.415851741802598,20.415851741802598,27.14984056737042,27.14984056737042,29.181504902759087,29.181504902759087,6.407448484203286,8.237443637820462,8.61759168149004,5.3325591908228205,10.844062746517025,6.4409735236859404,9.77341308131173,9.321565974449186,5.194195948204566,10.73058946938113,195.9026060337777,195.9026060337777,0.0,217.66956225975298,0.0,195.9026060337777,217.66956225975298,0,0
+2017/06/09 21:00:00,194.78081085072816,0,858.170468914359,0,0,0,0.7061067644826201,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.961695861648127e-09,25.61074183511855,0,0,0.0,538.7572963014619,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2869.9445836963596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04568963141758793,0.0014455880897522035,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5735024791476622,0.5735024791476622,0.5120339418109581,0.5120339418109581,0.7372514211401863,0.7372514211401863,1.0017652422831373,1.0017652422831373,1.003909113279702,1.003909113279702,0.15255538575081404,0.2641653277161017,0.2680807909383358,0.021048306082554064,0.4774169589167697,0.1429605838188704,0.29984549425045026,0.291572595452201,-0.021434858459645247,0.4535940139247925,11.890421984879154,11.890421984879154,10.481673899912593,10.481673899912593,16.442614064684506,16.442614064684506,26.194036240300193,26.194036240300193,26.284536227438693,26.284536227438693,5.48226281356898,6.44889872893404,6.492296319418571,5.00917114962391,9.760278476834742,5.423455149244759,6.868259754952277,6.766240955980635,5.009511106355717,9.293854475906159,194.78081085072816,194.78081085072816,0.0,216.42312316747572,0.0,194.78081085072816,216.42312316747572,0,0
+2017/06/09 22:00:00,136.84060766415487,0,652.7318705390884,0,0,0,0.21767468528470285,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.9586598032172675e-06,20.869972414888416,0,0,0.00175059354813023,493.0235336390917,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,849.6996258734245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03475192827034912,0.0010995267863815855,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2695181756521429,0.2695181756521429,0.19359563187601797,0.19359563187601797,0.4205122969922157,0.4205122969922157,0.928236445027754,0.928236445027754,0.6613810685531383,0.6613810685531383,0.06336450774481318,0.11315725305662871,0.029521506487127574,-0.022683231520499142,0.25481233543955206,0.036957923827427276,0.12611117275294756,0.030106007461513356,-0.07847594106488591,0.2173795347561265,6.508389803483581,6.508389803483581,5.777118120382724,5.777118120382724,8.68664489213431,8.68664489213431,23.19753079646412,23.19753079646412,14.189072968173875,14.189072968173875,5.083128725391163,5.265212247393336,5.018041592256665,5.010651253547422,6.347845448937832,5.028276301070861,5.32945443725454,5.018763110705194,5.127518626323038,5.980199379762453,136.84060766415487,136.84060766415487,0.0,152.04511962683875,0.0,136.84060766415487,152.04511962683875,0,0
+2017/06/09 23:00:00,87.5747328522381,0,501.4253699233347,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.2199141364914202e-05,11.777731660720612,0,0,0.011906207789169706,448.17793494672935,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.026696258103832676,0.0008446509975783171,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.0477844246407157,-0.0477844246407157,-0.13806379179251677,-0.13806379179251677,0.10208034709080617,0.10208034709080617,0.792294597129925,0.792294597129925,0.2905630785972835,0.2905630785972835,-0.0299736996650727,-0.015163676344267928,0.008723257324286358,-0.15473993244010564,0.033998358552648184,-0.08914744806025607,-0.041692530130436126,-0.02479386285785537,-0.20303625784630658,0.03533239659392501,5.04727135488838,5.04727135488838,5.394919121359393,5.394919121359393,5.215807820744075,5.215807820744075,18.23232389389443,18.23232389389443,6.753989854599197,6.753989854599197,5.018598548815675,5.004759861695462,5.001575214452458,5.496187963877787,5.0239287092730365,5.164570884533433,5.035985804824676,5.0127256863561485,5.854895037174501,5.025843502317684,87.5747328522381,87.5747328522381,0.0,97.30525872470899,0.0,87.5747328522381,97.30525872470899,0,0
+2017/06/10 00:00:00,40.73562227673695,0,490.9637846612694,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.0,2.579824100831028e-09,9.549988209357064,0,0,0.0,437.7282558924532,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.026139275555514374,0.0008270284579983889,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.22053002276316272,0.22053002276316272,0.1573032898602696,0.1573032898602696,0.33491330986092227,0.33491330986092227,0.8144344344550629,0.8144344344550629,0.582936264740461,0.582936264740461,0.12810381642140467,0.22971076029779655,0.18443425107100178,0.0098840319044524,0.3341630666543439,0.0493979794343643,0.18342147218228996,0.13572563471113433,-0.0776214407348612,0.29996238415224763,6.008876381815696,6.008876381815696,5.512781311371185,5.512781311371185,7.332866420797089,7.332866420797089,18.988523721888683,18.988523721888683,12.12112666492564,12.12112666492564,5.339955493889647,6.0948157106954,5.705203336078355,5.002022325317327,7.322380857354787,5.050518069838034,5.697468464296634,5.3816454748619975,5.124755981133674,6.8697219278412405,40.73562227673695,40.73562227673695,0.0,45.261802529707715,0.0,40.73562227673695,45.261802529707715,0,0
+2017/06/10 01:00:00,23.774791778156008,0,38.8574691519778,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5776963544782188,0,0,0.0,3.36711663943366,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0020688004396377494,6.545540383727473e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.31892623957200994,0.31892623957200994,0.27467254142728303,0.27467254142728303,0.40696924877337276,0.40696924877337276,0.7851001949191116,0.7851001949191116,0.75270941502873,0.75270941502873,0.14596578900669796,0.26988953522847525,0.19352145527302816,0.038316748616507336,0.5006328199129624,0.050163464398771875,0.21004678526996678,0.12108656418415148,-0.07201963256310463,0.4364199542892274,7.114594868260582,7.114594868260582,6.566815742917612,6.566815742917612,8.451612540774065,8.451612540774065,17.991063152504807,17.991063152504807,16.93215100465794,16.93215100465794,5.441462150112173,6.512561828909071,5.776521767865418,5.030393922867631,10.238364852083222,5.05209606323757,5.915063712211875,5.303708081352283,5.107394868928068,8.972759464243254,23.774791778156008,23.774791778156008,0.0,26.41643530906223,0.0,23.774791778156008,26.41643530906223,0,0
+2017/06/10 02:00:00,28.344163740482852,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.524800654009957,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.33942774945430493,0.33942774945430493,0.30047488324491334,0.30047488324491334,0.4168758452871451,0.4168758452871451,0.7498208250854353,0.7498208250854353,0.8166405562759335,0.8166405562759335,0.12042199904976723,0.24837299095534254,0.16128029500471752,0.016170078766299795,0.5363529499318916,0.023207837349978774,0.19081863820069642,0.08752962067477818,-0.09798610072972913,0.45821807229131994,7.396465795783868,7.396465795783868,6.87613958487178,6.87613958487178,8.622764306303665,8.622764306303665,16.839894570192698,16.839894570192698,19.06500887244472,19.06500887244472,5.3003813900604655,6.280411085164658,5.5390675329882555,5.005412653269218,11.019451313831127,5.01114963590463,5.7549489601019985,5.158649876889896,5.198836477688019,9.382476005784383,28.344163740482852,28.344163740482852,0.0,31.49351526720317,0.0,28.344163740482852,31.49351526720317,0,0
+2017/06/10 03:00:00,23.72196541830796,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248699946301679,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3437124777094619,0.3437124777094619,0.30905621899131863,0.30905621899131863,0.41533564023600616,0.41533564023600616,0.7195875426665543,0.7195875426665543,0.8403293764390899,0.8403293764390899,0.11480647613176286,0.24743015375323837,0.15414100778596446,0.013303208798699343,0.5724429757574802,-0.0014844372189309414,0.170896300001442,0.0601317507689439,-0.12145230789127115,0.48259605542400247,7.457629725199936,7.457629725199936,6.985247686165707,6.985247686165707,8.595878826261853,8.595878826261853,15.895780367101267,15.895780367101267,19.899169117056545,19.899169117056545,5.273003855301013,6.270683761986632,5.492350405416744,5.003663507655432,11.864752847190132,5.000045614671137,5.605349473998842,5.07486157048649,5.305546758020029,9.864916021148233,23.72196541830796,23.72196541830796,0.0,26.35773935367551,0.0,23.72196541830796,26.35773935367551,0,0
+2017/06/10 04:00:00,39.01590227721368,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,1.4269282803275887,0.0,0.5250755848230094,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.36823140666431375,0.36823140666431375,0.33407390538194365,0.33407390538194365,0.43401115178299415,0.43401115178299415,0.7165437362254774,0.7165437362254774,0.8447953087137263,0.8447953087137263,0.06676707308843816,0.19663956163140442,0.10363080067148658,-0.035583322309741386,0.40074753764292287,-0.04557604122298589,0.12487470025826226,0.012806649513669435,-0.16589729829031946,0.36349084467942794,7.822653422202848,7.822653422202848,7.321136308446384,7.321136308446384,8.92873691003939,8.92873691003939,15.802906967033607,15.802906967033607,20.05905986528107,20.05905986528107,5.092297994257791,5.8017885643674845,5.222416373656927,5.026211900539636,8.346271404759065,5.0430025801440195,5.323021334947143,5.003395119645589,5.570410782265313,7.750082774709114,39.01590227721368,39.01590227721368,0.0,43.351002530237416,0.0,39.01590227721368,43.351002530237416,0,0
+2017/06/10 05:00:00,73.41130238374511,0,212.9421150752648,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,1.0223249787810604,0.0,0.524970215764306,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6031827728933773,0.6031827728933773,0.5672526861666524,0.5672526861666524,0.6646010517798286,0.6646010517798286,0.9228108873499051,0.9228108873499051,0.937392769794272,0.937392769794272,0.07396243339621829,0.20216449185405871,0.10955961234377412,-0.029096927305624732,0.5442993912859267,-0.04405920281592921,0.12444243786915028,0.012611402334075154,-0.16473113441207743,0.4783172372286602,12.629296707330923,12.629296707330923,11.73970861215254,11.73970861215254,14.279659501323763,14.279659501323763,22.984857565083388,22.984857565083388,23.55911104635848,23.55911104635848,5.113268620431427,5.847556763260812,5.248607572311812,5.0175263550227385,11.200725898566148,5.040187587772948,5.32078735960836,5.003292385652557,5.562410211765936,9.7783844560998,73.41130238374511,73.41130238374511,0.0,81.56811375971678,0.0,73.41130238374511,81.56811375971678,0,0
+2017/06/10 06:00:00,89.7528277919722,0,647.1619041077824,0,0,0,0.7086951466975292,0.0,6.403738790596938,0.0,80.56906512710079,0,1.546264518685919,2.5215347077286276e-09,0.5250642063694784,0,0,0.0,416.4746127762455,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2975.131052594692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034455379131835114,0.0010901441783508037,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8422217150650522,0.8422217150650522,0.8078526289345169,0.8078526289345169,0.9280209500022286,0.9280209500022286,1.1494719219682008,1.1494719219682008,0.9605758160796275,0.9605758160796275,0.17707094529260228,0.30781071474912186,0.23370841662028685,0.3907845893863402,0.7148026218325324,0.046080626655537096,0.21579057397198173,0.1256773611384257,0.30177281159547026,0.6329956876023477,19.966817659857114,19.966817659857114,18.761554711390488,18.761554711390488,23.18906126502918,23.18906126502918,32.81619636152611,32.81619636152611,24.489456320932774,24.489456320932774,5.649943917335179,6.969218348360556,6.133341804346102,8.181035673487571,15.749961068113976,5.043960130044368,5.965893774977616,5.327190170145343,6.892442282685636,13.409960021067732,89.7528277919722,89.7528277919722,0.0,99.72536421330244,0.0,89.7528277919722,99.72536421330244,0,0
+2017/06/10 07:00:00,116.8916561032825,0,686.1232206905505,0,0,0,0.9849274746459122,0.0,5.834152620960616,0.0,69.33401494192633,0,39.380909295966944,0.00013856753312415813,0.5775188380554349,0,0,0.08209916591488353,419.8634776805547,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4108.557583437427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03652970848560863,0.001155774513177363,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.33577800310850525,0.33577800310850525,0.274326008275318,0.274326008275318,0.4365479349995603,0.4365479349995603,1.1752993974768435,1.1752993974768435,0.37512390919563804,0.37512390919563804,-0.012471655451351042,0.00758224069971213,0.01078903648386921,0.23328725157963418,0.2041072178777407,-0.06670352010078147,-0.036488010200885,-0.03820345134795936,0.21967786871712336,0.18732220289504423,7.3449812050047285,7.3449812050047285,6.562852601266741,6.562852601266741,8.975105373812283,8.975105373812283,34.049278235452405,34.049278235452405,7.9298758954469974,7.9298758954469974,5.003219823596396,5.001190082561365,5.002409619283256,6.129251365648912,5.863953588786146,5.092122333198063,5.027561773160414,5.030214435693125,6.001078702950409,5.7274946624847445,116.8916561032825,116.8916561032825,0.0,129.87961789253612,0.0,116.8916561032825,129.87961789253612,0,0
+2017/06/10 08:00:00,140.71471414945088,0,742.3987143732671,0,0,0,1.4740237008289492,0.0,11.435487997441953,0.0,87.89947186453183,0,39.380909295966944,2.1225780478294228e-05,0.5248000649007643,0,0,0.012579897359378011,422.9729618630107,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6368.699159361763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0395258574529098,0.0012505705780146614,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.05347352890112861,0.05347352890112861,-0.11855056366891964,-0.11855056366891964,0.16242800044133812,0.16242800044133812,1.205863652085699,1.205863652085699,0.3609813490339794,0.3609813490339794,-0.012733945306953022,-0.03284054595544059,-0.11901309791306226,0.18868392526305272,0.12104904883471117,-0.01564924652341497,-0.053754398249604395,-0.18901105114541628,0.19882916719044388,0.12494529332542331,5.059198980163941,5.059198980163941,5.291111944886325,5.291111944886325,5.546775917724133,5.546775917724133,35.53450065123383,35.53450065123383,7.712053854736951,7.712053854736951,5.003356680144137,5.022326600558927,5.293389392266533,5.738126294864529,5.303519797551331,5.005069585797429,5.059822578540832,5.740691866742068,5.819774426106164,5.32338690483472,140.71471414945088,140.71471414945088,0.0,156.34968238827875,0.0,140.71471414945088,156.34968238827875,0,0
+2017/06/10 09:00:00,181.7288615955114,0,888.9226038042191,0,0,0,1.6383025504477766,0.0,11.287802377079139,0.0,106.27511244621549,0,39.380909295966944,3.685298866996956e-06,23.14673124050319,0,0,0.0021828323971656923,516.2717195901085,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7168.819437526574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047326897857435414,0.0014973900586401254,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2556741579734161,0.2556741579734161,-0.016548321282472408,-0.016548321282472408,0.2649317295854092,0.2649317295854092,1.2126414628865008,1.2126414628865008,0.5432855821118504,0.5432855821118504,-0.019824062478577816,-0.1279239300204033,-0.08722778270657132,0.2821345667255145,0.18925178539174917,-0.06575728071557146,0.025479941270384245,-0.1393106128892541,0.3061166106893877,0.17598320181331045,6.357002958149636,6.357002958149636,5.005668838259012,5.005668838259012,6.457342437346654,6.457342437346654,35.86752389463926,35.86752389463926,11.177446573901875,11.177446573901875,5.008135304582339,5.339000729322791,5.157557214005024,6.653383929915336,5.742582744887343,5.089526721381574,5.013439723800801,5.402090274553061,6.947521005334551,5.641972588560719,181.7288615955114,181.7288615955114,0.0,201.920957328346,0.0,181.7288615955114,201.920957328346,0,0
+2017/06/10 10:00:00,208.3698938109575,0,954.1688338617579,0,0,0,1.580517316855666,0.0,14.932575465546352,0.0,131.64086955684016,0,39.380909295966944,2.857213952056589e-09,20.83502217289112,0,0,0.0,492.79425119868415,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6878.258506717524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05080065547401636,0.0016072973282199449,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4704805253082343,0.4704805253082343,0.1044351586084592,0.1044351586084592,0.4001144339483473,0.4001144339483473,1.1773147858970119,1.1773147858970119,0.7151710246332611,0.7151710246332611,0.0098426468251164,-0.14700158542265498,-0.09368812730372225,0.2882249867069235,0.16551023905856085,-0.011583406441386085,-0.11008882915525943,-0.12968395517690912,0.3282550094026619,0.16740224601438264,9.621948144457718,9.621948144457718,5.225884137124851,5.225884137124851,8.335645051644974,8.335645051644974,34.146360005221936,34.146360005221936,15.761153009341896,15.761153009341896,5.002005425485024,5.447755700735087,5.181769212978722,6.725780946821033,5.567749041481022,5.002777512638801,5.251016413532923,5.348400054324472,7.240643322864656,5.5808194168735525,208.3698938109575,208.3698938109575,0.0,231.52210423439723,0.0,208.3698938109575,231.52210423439723,0,0
+2017/06/10 11:00:00,223.33009499457302,0,1030.8957812136775,0,0,0,9.358388461265978,0.0,14.932575465546352,0.0,136.4899973586286,0,39.380909295966944,2.9099173877464283e-09,23.168224410255082,0,0,0.0,516.2856697817876,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90.30026312068223,0.0,0.0,6880.248514674213,8705.555034268353,124.52133925244328,0.0,0.0,673.8354959927142,7180.945638440564,148.86086963384847,0.0,0.0,864.1160643219857,7720.808273924812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.054885654983193984,0.001736543865210777,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7979839898838553,0.7979839898838553,0.34746273129164645,0.34746273129164645,0.6421035497484542,0.6421035497484542,1.1479183099934538,1.1479183099934538,0.8881392590861791,0.8881392590861791,0.2649530510318059,0.04632958808073779,0.10751545199745094,0.3873517984742656,0.2991811991125733,0.27648240681694375,0.0655222671920927,0.09662870787446788,0.4261876171005404,0.31004483360256374,18.424669364211212,18.424669364211212,7.51180439813902,7.51180439813902,13.656143289446476,13.656143289446476,32.74268610198769,32.74268610198769,21.653823501231756,21.653823501231756,6.457577696513198,5.044436468922584,5.239412384132933,8.12508563573347,6.859961072674793,6.587596609482688,5.088887813496356,5.193363437259066,8.787474916258986,6.998017654732152,223.33009499457302,223.33009499457302,0.0,248.14454999397,0.0,223.33009499457302,248.14454999397,0,0
+2017/06/10 12:00:00,218.5459562728372,0,995.3996226679835,0,0,0,16.268373873831656,0.0,14.932575465546352,0.0,124.80122689546741,0,39.380909295966944,2.9099173877464283e-09,23.162870739114865,0,0,0.0,516.2798637486377,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1441.775464929968,0.0,113.02819892002134,5849.061051636694,14441.460719271076,1503.525509961366,0.0,336.6218498196218,986.8221951862497,13326.477912071998,1809.2298607275259,20.13385639193777,483.4406117632285,1245.3568203393952,14194.263515313163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05299581320997995,0.001676750588834668,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9097502609283228,0.9097502609283228,0.4927898132112562,0.4927898132112562,0.7687792071237626,0.7687792071237626,1.085525114693495,1.085525114693495,0.9246388677226072,0.9246388677226072,0.3579525696948552,0.17748435435803436,0.22110645398535422,0.391085547702814,0.3439882377899269,0.3964201948431542,0.21624099304165964,0.23412779046233004,0.42758716627355486,0.3622911030059584,22.477751305897016,22.477751305897016,10.074250206781059,10.074250206781059,17.451906862685007,17.451906862685007,29.85578463255962,29.85578463255962,23.056379787923063,23.056379787923063,7.666512878969542,5.6529864599279875,6.01416829931685,8.185964912638667,7.461592882845395,8.273980887169472,5.96993821115305,6.137422242587348,8.812552269220205,7.731868413449092,218.5459562728372,218.5459562728372,0.0,242.82884030315245,0.0,218.5459562728372,242.82884030315245,0,0
+2017/06/10 13:00:00,227.39724596547262,0,936.4154787123903,0,0,0,29.90710934896356,0.0,14.728125842506467,0.0,122.5097643007467,0,39.380909295966944,2.857213952056589e-09,20.871337174431698,0,0,0.0,492.7860723055887,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3447.591820604567,55.864442893763766,1614.3148308151356,5721.9202683170715,23458.511126436402,3949.344874569847,1272.2763589397505,2057.7267833834085,2350.670063666358,24225.12254530383,4580.96744438411,1560.9348034038865,2398.6668637296175,2691.431508395548,25139.72419980928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049855453695835515,0.001577391802818292,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9588739548609202,0.9588739548609202,0.7332327110328805,0.7332327110328805,0.8561615300929979,0.8561615300929979,1.0824277015334882,1.0824277015334882,0.9590644095593595,0.9590644095593595,0.4205218664224443,0.3185186828056588,0.30922209797442823,0.43898553078622937,0.38538325608988516,0.45932962060939037,0.36145641264857303,0.3328657920155829,0.47408779771938964,0.4019668522615464,24.420440555863507,24.420440555863507,16.3170252586296,16.3170252586296,20.469743376384372,20.469743376384372,29.715895106736795,29.715895106736795,24.42815845046735,24.42815845046735,8.686813743765029,7.109172142610063,6.9873874625259305,9.019921276408553,8.093228078656892,9.403916396023718,7.719232390823706,7.304306239198311,9.693627547268107,8.36678535909789,227.39724596547262,227.39724596547262,0.0,252.66360662830292,0.0,227.39724596547262,252.66360662830292,0,0
+2017/06/10 14:00:00,208.1250828440451,0,896.6520593432382,0,0,0,26.671552458532034,0.0,14.78378283874635,0.0,108.75639138185811,0,39.380909295966944,2.803599453705182e-09,18.53244686613808,0,0,0.0,488.5130054489806,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2788.179930465181,664.6511895641518,1568.5445970476187,5316.075883668792,22201.717502373875,3195.576959446718,1508.8320419187671,1538.1724342999053,1917.56625554517,20514.1340818223,3816.7775082929907,1977.605654799883,1939.9858473552622,2239.5459464835126,21381.20127714846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047738419795592034,0.0015104103259089474,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.952635382247974,0.952635382247974,0.9044200263515293,0.9044200263515293,0.8829325559813697,0.8829325559813697,1.0676264470081673,1.0676264470081673,0.9736222629038636,0.9736222629038636,0.4277839482944472,0.41165516953698966,0.3379461623330937,0.4488161625753715,0.40227326322796325,0.46113554104364457,0.4596582663698385,0.3621710377577022,0.47949761109469974,0.4169188135265982,24.16841836600291,24.16841836600291,22.272771787723997,22.272771787723997,21.458162093653982,21.458162093653982,29.052054128847743,29.052054128847743,25.022284160565732,25.022284160565732,8.816084982051493,8.532045048061491,7.375497802222597,9.203251952727086,8.37195047113471,9.438863790849382,9.410265754820372,7.730048969443843,9.802176552638215,8.62351580829771,208.1250828440451,208.1250828440451,0.0,231.250092048939,0.0,208.1250828440451,231.250092048939,0,0
+2017/06/10 15:00:00,208.76210329044977,0,877.7245675200581,0,0,0,29.677501595958798,0.0,14.78378283874635,0.0,106.31215624428707,0,39.380909295966944,2.803599453705182e-09,18.607753312687066,0,0,0.0,469.5855136258007,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2779.476537788986,2308.9557066574935,2190.85101724794,5241.565020885646,24353.87995948551,3213.9054385537383,2658.543434376337,2016.738046882509,2167.672484492273,21684.33214859887,3732.1675073661618,3262.834476767655,2436.114190143648,2468.0189945638513,22428.80146292607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04673070611120656,0.0014785269673693732,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9229883901946683,0.9229883901946683,0.997766816124087,0.997766816124087,0.8881151953444882,0.8881151953444882,1.063549385603106,1.063549385603106,0.972215377940267,0.972215377940267,0.40274992332937964,0.4654897254604846,0.3374321539815695,0.43692778461750825,0.3919425135294273,0.4311352661669437,0.5242690777125248,0.36314109404949435,0.46545870145782375,0.404901088007752,22.991796732485454,22.991796732485454,26.025714523770304,26.025714523770304,21.652916664379248,21.652916664379248,28.870554526510816,28.870554526510816,24.964507371883684,24.964507371883684,8.379993427487278,9.523701666040893,7.368245139721822,8.982072229142275,8.200021913875162,8.876504417669807,10.749035296330248,7.744766562962383,9.523094298974229,8.416412218674793,208.76210329044977,208.76210329044977,0.0,231.95789254494417,0.0,208.76210329044977,231.95789254494417,0,0
+2017/06/10 16:00:00,218.99308483705866,0,948.3530447773276,0,0,0,28.32722380130011,0.0,14.78378283874635,0.0,120.17895923267236,0,39.380909295966944,2.749064637148317e-09,16.32220966562379,0,0,0.0,486.97846211425383,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2415.1064287788763,3521.6794126557493,2490.9300123415946,5308.988587391489,26197.528171128488,2379.6047636513554,3051.1082287678796,1703.4550704548412,1640.798836100413,19692.936607981166,2822.5116396524077,3758.1742796502303,2155.5301534968125,1892.395811209449,20285.09356972058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05049101855536754,0.0015975006319486327,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9247682458587044,0.9247682458587044,1.0863687698562232,1.0863687698562232,0.913166889807677,0.913166889807677,1.063667233543598,1.063667233543598,0.999688316883546,0.999688316883546,0.39096498096183646,0.5156325691048143,0.34476658233721064,0.42800550167211565,0.3935892842790212,0.4139449753343038,0.5744540960206767,0.3694578257041364,0.4517133043207019,0.4051677188752625,23.06144695883671,23.06144695883671,29.893944622224993,29.893944622224993,22.6097453253809,22.6097453253809,28.875792501993047,28.875792501993047,26.106528231247594,26.106528231247594,8.183989748169523,10.55963853384705,7.472796498871176,8.820064389398652,8.227122380295853,8.571691026427303,11.91351881439246,7.841583933815343,9.258073323390462,8.420940023265402,218.99308483705866,218.99308483705866,0.0,243.32564981895405,0.0,218.99308483705866,243.32564981895405,0,0
+2017/06/10 17:00:00,242.48352259818375,0,929.4743154568362,0,0,0,29.297486643539145,0.0,16.798297355077125,0.0,138.40412594678773,0,39.380909295966944,2.803599453705183e-09,18.60270335400912,0,0,0.0,468.0997327937624,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2358.6894810547965,4624.286006274537,3408.0434910939457,5251.894340421763,27202.62310812044,2149.9738233773396,3739.5710044496723,2227.808975533431,1484.523489652386,19573.15391894097,2498.2359993030896,4475.063269078188,2711.9168348944254,1676.2807863542719,20075.302957069824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04948590102274391,0.0015656994138411363,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9167569733178691,0.9167569733178691,1.1423723563974177,1.1423723563974177,0.9576740576209355,0.9576740576209355,1.0576204636251099,1.0576204636251099,1.00533006481072,1.00533006481072,0.3750380195147338,0.5544935909725595,0.36723936688654585,0.41025378066777535,0.38970621772728653,0.3937948695375291,0.6150248158738619,0.3951119362398783,0.42927859898122117,0.3999880486959731,22.74894771666868,22.74894771666868,32.480901128084824,32.480901128084824,24.371849181934707,24.371849181934707,28.60767187619234,28.60767187619234,26.344615109695894,26.344615109695894,7.92852729578216,11.43728352249444,7.807387598428377,8.50789203308031,8.163405370461845,8.230513781732697,12.93476781039459,8.252283413601674,8.842971824226638,8.333525786945458,242.48352259818375,242.48352259818375,0.0,269.42613622020417,0.0,242.48352259818375,269.42613622020417,0,0
+2017/06/10 18:00:00,248.17153989195586,0,964.4970214991154,0,0,0,46.00138031189153,0.0,17.03716081602578,0.0,120.14191543460078,0,39.380909295966944,2.9617190163185936e-09,25.610174030509054,0,0,0.0,538.6127913485858,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3392.7176426310884,5007.054913987158,5097.8325868552465,5417.024444449844,32319.028931253895,4899.919057988761,5602.724155946402,5487.036372102142,3188.1757625857203,35892.793440928486,5179.183066522023,6279.755627644277,6025.4614173554055,3352.8780503108765,36401.43692802371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05135053583398671,0.0016246951595111775,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9040277874080423,0.9040277874080423,1.1051471919548244,1.1051471919548244,0.9891147999213143,0.9891147999213143,1.0497454883791228,1.0497454883791228,0.9992891742058533,0.9992891742058533,0.3801057665621541,0.5650603489330674,0.4074993157166186,0.41267437823504977,0.411535197733766,0.39717959615525245,0.6203430174556437,0.4404949199667702,0.42900893353867675,0.4212766207204503,22.257733297063837,22.257733297063837,30.749658880517444,30.749658880517444,25.663572940084563,25.663572940084563,28.26045238597827,28.26045238597827,26.089729715176162,26.089729715176162,8.008637296001424,11.687241952109517,8.46066382075199,8.549664010354405,8.529974034616231,8.286609134530963,13.073933670449378,9.047799817148103,8.838113800971016,8.700143676277534,248.17153989195586,248.17153989195586,0.0,275.7461554355065,0.0,248.17153989195586,275.7461554355065,0,0
+2017/06/10 19:00:00,244.23209200395758,0,908.7336366339657,0,0,0,50.605078545290745,0.0,17.736728077583987,0.0,110.89738010901058,0,39.380909295966944,2.961719016318593e-09,25.611995973143554,0,0,0.0,518.3397589959802,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3188.3897527352965,4562.793376829784,5871.397478948053,5240.016570844115,31713.639244581394,5643.328612269955,6139.418938080517,6999.130310406445,3583.702438606121,42081.414795410135,5867.504489647147,6744.111457747105,7620.301386338422,3705.307345247839,42454.569527581436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04838165191945521,0.0015307617419382017,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8895808688036898,0.8895808688036898,1.0839940264286205,1.0839940264286205,1.017866277017471,1.017866277017471,1.0362914439990893,1.0362914439990893,0.9926188768898031,0.9926188768898031,0.3852445426327842,0.5764433887813806,0.45032017622118153,0.41434272459198285,0.43342408627135026,0.39870366015509234,0.6246704763863878,0.48552360661593924,0.4260794228692863,0.4411231286856225,21.70819342851587,21.70819342851587,29.78659390981076,29.78659390981076,26.877947082956396,26.877947082956396,27.67244002139131,27.67244002139131,25.809896651186904,25.809896651186904,8.090989476653206,11.96192813357247,9.231666691450926,8.57860060724478,8.918045643506616,8.312027545124167,13.188079611795416,9.924575723493533,8.785539774141498,9.05943173617895,244.23209200395758,244.23209200395758,0.0,271.36899111550844,0.0,244.23209200395758,271.36899111550844,0,0
+2017/06/10 20:00:00,212.37114160438512,0,871.1989898096759,0,0,0,32.88170582414099,0.0,22.118670991497194,0.0,94.88958839347283,0,39.380909295966944,2.9099173877464283e-09,23.10026709639726,0,0,0.0,516.2954646842346,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1238.729497025142,1286.4461401356443,2528.041266582393,4523.519457404897,22068.12707562105,3047.924463636891,3352.4544343876914,4003.036640815868,1838.5665830945284,29221.76383413442,3174.0429406105814,3844.34575908473,4395.185110411276,1855.9452545660354,29229.082728021687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046383279520366895,0.0014675346322115172,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.873649005556441,0.873649005556441,0.9277338550164544,0.9277338550164544,0.90547889660667,0.90547889660667,1.0128602473764405,1.0128602473764405,0.9771279617936117,0.9771279617936117,0.37480144512934455,0.47792972483212254,0.3987074519515249,0.4003274308348312,0.4286660234214754,0.38190055535151046,0.5168658170239518,0.4154569497061334,0.40528370515131096,0.43064361308650206,21.112056419695577,21.112056419695577,23.177780548236612,23.177780548236612,22.313400145451382,22.313400145451382,26.664266749714983,26.664266749714983,25.16658679684589,25.16658679684589,7.9248143423697,9.770586701682632,8.31209090878383,8.339218191789882,8.831940782813575,8.037271813038572,10.586485863688807,8.597992689015214,8.422910599526531,8.867610444818027,212.37114160438512,212.37114160438512,0.0,235.96793511598347,0.0,212.37114160438512,235.96793511598347,0,0
+2017/06/10 21:00:00,213.25925515954248,0,837.7599746098872,0,0,0,21.437944101452704,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,2.9617190163185936e-09,25.611767603612016,0,0,0.0,518.34680199699,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,838.3540448243504,3847.4796595485727,14129.158421346076,1282.9830794691477,1843.8574784142868,2221.039074593231,603.4757830054855,21307.149023774662,1309.596700137241,2094.7507786889596,2481.277958165131,525.5922419090898,20940.18496597288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04460296158262866,0.0014112066136454512,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8332870987231631,0.8332870987231631,0.8720075907208304,0.8720075907208304,0.8781404197031881,0.8781404197031881,0.9885513041454191,0.9885513041454191,0.9604438229661262,0.9604438229661262,0.3649291725967331,0.4547060373074639,0.37631165376577047,0.38727263534799233,0.4258706278667845,0.36690541189867365,0.47138332012558243,0.38660755290260734,0.3867876604342239,0.4238135168930348,19.648731454456595,19.648731454456595,21.051230512939867,21.051230512939867,21.27906147455782,21.27906147455782,25.640086238663287,25.640086238663287,24.48409953416457,24.48409953416457,7.7720001502990215,9.315082708473952,7.948557573556812,8.1238013187413,8.781806725075313,7.802258029340294,9.639834778047899,8.113021808539685,8.115939086201834,8.745127598820773,213.25925515954248,213.25925515954248,0.0,236.9547279550472,0.0,213.25925515954248,236.9547279550472,0,0
+2017/06/10 22:00:00,142.9425691785524,0,644.2339259141326,0,0,0,6.332565561883096,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,2.803599453705182e-09,18.602627211894553,0,0,0.0,484.5273396076839,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2233.9055699868345,0.0,0.0,83.07888000406967,0.0,0.0,9567.335505184345,0.0,199.97455829771837,113.7545626196038,0.0,8773.486860471628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03429949140403224,0.0010852119993058306,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6280476478558465,0.6280476478558465,0.6543703203236273,0.6543703203236273,0.7109425916323635,0.7109425916323635,0.9267482299420436,0.9267482299420436,0.8536011477485592,0.8536011477485592,0.3111810748141535,0.44167146240884086,0.36736275783370276,0.31390108657158927,0.42221847461133855,0.3043630399829639,0.44830173166669046,0.37297886963446614,0.2972554461618446,0.4158805540585388,13.277724215505259,13.277724215505259,13.99339607591692,13.99339607591692,15.633046466929727,15.633046466929727,23.139077834752044,23.139077834752044,20.376763263180464,20.376763263180464,7.012745618128349,9.0695985518676,7.809284093471362,7.048224453921264,8.716812293162263,6.925189930171328,9.193555342541003,7.896289688515736,6.836009095073919,8.60537909925263,142.9425691785524,142.9425691785524,0.0,158.8250768650582,0.0,142.9425691785524,158.8250768650582,0,0
+2017/06/10 23:00:00,89.76403583782513,0,506.866327132669,0,0,0,0.18042011554252887,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.693600246842102e-09,14.07263466075072,0,0,0.0,453.6307983638529,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,700.3839909618093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.026985938695810917,0.0008538162895844791,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.39963823311580154,0.39963823311580154,0.4131605156852225,0.4131605156852225,0.48667495668935484,0.48667495668935484,0.8720459819534399,0.8720459819534399,0.617735600212247,0.617735600212247,0.1654198957757668,0.3009148868078496,0.2228906261178631,0.16387611588552226,0.36104799354903905,0.14285891274830056,0.30027366042028225,0.22086517199039776,0.1279585867179705,0.33996979815405126,8.327663540874156,8.327663540874156,8.558083498051758,8.558083498051758,9.948140085363477,9.948140085363477,21.052651909388914,21.052651909388914,13.005549820416661,13.005549820416661,5.567128665183773,6.881658292341598,6.030636120161574,5.5565803069086,7.713060319336449,5.422852516871316,6.873618492290888,6.011951519433509,5.339184568476625,7.4041603742418545,89.76403583782513,89.76403583782513,0.0,99.73781759758347,0.0,89.76403583782513,99.73781759758347,0,0
+2017/06/11 00:00:00,44.27481756029715,0,499.54782098238996,0,0,0,0.34377282895262706,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.9395560217566876,2.6371970272426432e-09,11.80585464215058,0,0,0.0,446.31229221357376,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,462.80520950388205,718.0211353054079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.026596296007503763,0.0008414882665297993,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.582765452799834,0.582765452799834,0.6204157278500886,0.6204157278500886,0.6474530854047107,0.6474530854047107,0.8562149549686306,0.8562149549686306,0.7584906540451104,0.7584906540451104,0.3290423702168909,0.5183870741835175,0.3596477198270421,0.36220835897671416,0.5584112734761499,0.279734909411946,0.4983748957058881,0.3362989387643393,0.30028790715064063,0.5163828267385929,12.11691510589199,12.11691510589199,13.075844849669437,13.075844849669437,13.802416994787492,13.802416994787492,20.471686394695723,20.471686394695723,17.11786617755297,17.11786617755297,7.251450863535865,10.619693689120226,7.691953166225403,7.730614461731847,11.52939216901062,6.625288951776682,10.190845466362944,7.352295097151128,6.873796931268558,10.575963513665855,44.27481756029715,44.27481756029715,0.0,49.1942417336635,0.0,44.27481756029715,49.1942417336635,0,0
+2017/06/11 01:00:00,23.766318295084176,0,45.192023986737894,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5692228714063863,0,0,0.0,9.701671474193756,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0024060568310873727,7.612596097564354e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5904156132209922,0.5904156132209922,0.6502431174424933,0.6502431174424933,0.6358944891853735,0.6358944891853735,0.8549960133318933,0.8549960133318933,0.8674488008467932,0.8674488008467932,0.3222932781874674,0.5474204943417876,0.33953972451998965,0.3657913027789332,0.6304653555625485,0.277421233756343,0.5405856916523859,0.31833694521379413,0.3142190877176725,0.5744238377878842,12.306779843357319,12.306779843357319,13.879197867134906,13.879197867134906,13.487923561234453,13.487923561234453,20.42738397406633,20.42738397406633,20.882877946984124,20.882877946984124,7.15966411967068,11.27267303938794,7.398054299753653,7.785179621015999,13.342204477460541,6.5984306144045775,11.115668287224182,7.106756311291491,7.052392797824538,11.9127838077342,23.766318295084176,23.766318295084176,0.0,26.407020327871304,0.0,23.766318295084176,26.407020327871304,0,0
+2017/06/11 02:00:00,28.34419738685551,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248343003826142,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6094492626171542,0.6094492626171542,0.673782279242362,0.673782279242362,0.6476899109227484,0.6476899109227484,0.8528804475088468,0.8528804475088468,0.938173488574757,0.938173488574757,0.32083265887271756,0.5376993566535627,0.33457603064212416,0.3706331510299077,0.6555567121110736,0.27632641293367793,0.5396846643067275,0.31252504126635067,0.32099251192820644,0.5816902925101052,12.790185587608832,12.790185587608832,14.540416780575882,14.540416780575882,13.808921257024593,13.808921257024593,20.350640171178952,20.350640171178952,23.590095838278046,23.590095838278046,7.140054099120107,11.049973110229942,7.328149576089771,7.859785952004373,14.026359723506175,6.585800050092871,11.095121471353139,7.030236672616965,7.142195851833236,12.090434893982419,28.34419738685551,28.34419738685551,0.0,31.493552652061677,0.0,28.34419738685551,31.493552652061677,0,0
+2017/06/11 03:00:00,23.72202161586295,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249261921851597,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6023414359292525,0.6023414359292525,0.666118243346918,0.666118243346918,0.6373242678250208,0.6373242678250208,0.8158952535324787,0.8158952535324787,0.9461533009540114,0.9461533009540114,0.31833151161288525,0.5319304268540351,0.32929719561821214,0.3709965103555051,0.6764453890317359,0.2738603845110437,0.5342932771996243,0.307114932555465,0.3217348704570282,0.5899119846621191,12.607825587869144,12.607825587869144,14.322497714116054,14.322497714116054,13.5265118222528,13.5265118222528,19.039146670973437,19.039146670973437,23.908181325627396,23.908181325627396,7.106684104173951,10.919749343866101,7.254954303431916,7.865425140517303,14.616734861390526,6.557535444471597,10.972912376059568,6.960292379311468,7.152156357630119,12.294202492072415,23.72202161586295,23.72202161586295,0.0,26.357801795403276,0.0,23.72202161586295,26.357801795403276,0,0
+2017/06/11 04:00:00,43.454245217895725,0,88.72588128136032,0,0,0,0.015251863324670024,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,5.850042851289696,0.0,0.5250520912182577,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,48.39102284815286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.794451900846493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6717295100268219,0.6717295100268219,0.7338478721038225,0.7338478721038225,0.7043726721815036,0.7043726721815036,0.8678404514730526,0.8678404514730526,0.8929571627036095,0.8929571627036095,0.3253394364473225,0.41801337987555715,0.33011745742656073,0.34692060931339674,0.4683306015215222,0.2853791281803133,0.4089132120266097,0.313707404225409,0.3175098628332153,0.43799258983143796,14.481799034372173,14.481799034372173,16.336204705073115,16.336204705073115,15.435530554649702,15.435530554649702,20.897307636587257,20.897307636587257,21.835861610269077,21.835861610269077,7.200852297653981,8.64268614156893,7.2662502923644325,7.503936152252209,9.579494186692713,6.691757288108505,8.484865980216725,7.045687773325923,7.095779610335839,9.00163495667482,43.454245217895725,43.454245217895725,0.0,48.282494686550805,0.0,43.454245217895725,48.282494686550805,0,0
+2017/06/11 05:00:00,83.33114115821547,0,212.9421150752648,0,0,0,0.35193817980299025,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,10.590230348762692,0.0,0.5249654404500272,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193.3952987843236,0.0,280.84207335467363,831.5459224840374,0.0,0.0,0.0,0.0,0.0,0.0,58.023698050456915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8583933730564156,0.8583933730564156,0.8733606599891106,0.8733606599891106,0.8753906847295614,0.8753906847295614,0.9396746901021067,0.9396746901021067,0.9169432035231704,0.9169432035231704,0.3288865102436197,0.39126820566759607,0.3321032652487835,0.34393819437489365,0.4189637272237266,0.3067817805686851,0.37572414336377197,0.31820636677814934,0.31945221047804906,0.40048598443098504,20.55101446485179,20.55101446485179,21.101363165368113,21.101363165368113,21.1767191043552,21.1767191043552,23.649742842224157,23.649742842224157,22.75618279645667,22.75618279645667,7.249309397058184,8.188958459773886,7.293715468240009,7.460873430873633,8.659372266313156,6.95602573048987,7.939309276448313,7.105021400761075,7.12160354983115,8.34187927596534,83.33114115821547,83.33114115821547,0.0,92.59015684246164,0.0,83.33114115821547,92.59015684246164,0,0
+2017/06/11 06:00:00,101.95753809186013,0,645.1514102848406,0,0,0,0.514600546991048,0.0,6.308787638026613,0.0,80.56906512710079,0,14.039890589085466,2.521555901526453e-09,0.525194188134655,0,0,0.0,414.4641189533038,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2104.371182181301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034348338951515525,0.0010867575016586524,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9419203303944285,0.9419203303944285,0.929099172022912,0.929099172022912,0.9460079367971294,0.9460079367971294,1.0396940936324301,1.0396940936324301,0.9136796795968712,0.9136796795968712,0.342052533973851,0.389354123277604,0.3457780264940964,0.385959144953492,0.4111999460950444,0.32980788455725235,0.3765233756777194,0.3378004349418045,0.3780530132247384,0.39620716616467194,23.73913546856123,23.73913546856123,23.231456869340292,23.231456869340292,23.902364380173765,23.902364380173765,27.82053039277737,27.82053039277737,22.629596505083157,22.629596505083157,7.433841686400143,8.157659738213852,7.487393860395798,8.10253074525555,8.524190021558155,7.261983748857432,7.95189400450073,7.373440447805592,7.976055704999268,8.270442817183323,101.95753809186013,101.95753809186013,0.0,113.28615343540014,0.0,101.95753809186013,113.28615343540014,0,0
+2017/06/11 07:00:00,115.94938159330329,0,687.2766904392686,0,0,0,0.9204044499187746,0.0,5.736479982307201,0.0,69.33401494192633,0,39.380909295966944,2.521558253845861e-09,0.5775729206624922,0,0,0.0,421.09904659518764,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3826.2700992306914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03659112006941312,0.001157717532881532,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5827083822051354,0.5827083822051354,0.5666707947078936,0.5666707947078936,0.6698633487870652,0.6698633487870652,1.100658836072815,1.100658836072815,0.8552354860445914,0.8552354860445914,0.2872609774110179,0.37170320219634584,0.3373820163506409,0.4478681431972568,0.5337859286443346,0.2643448439383217,0.3599378916108912,0.3336650164919817,0.45203580349956435,0.5135935682149019,12.115508248857651,12.115508248857651,11.72576255661393,11.72576255661393,14.428668257959188,14.428668257959188,30.544033641696288,30.544033641696288,20.43608274057452,20.43608274057452,6.71421744533977,7.876408831138534,7.367538297889823,9.185391386848266,10.961476884506126,6.4508743018757855,7.696320238529552,7.315433195138823,9.26419817128118,10.51539459086024,115.94938159330329,115.94938159330329,0.0,128.83264621478142,0.0,115.94938159330329,128.83264621478142,0,0
+2017/06/11 08:00:00,152.32715460860575,0,742.007892643559,0,0,0,6.171329827366917,0.0,9.332689672910613,0.0,96.91714705112861,0,39.380909295966944,2.5215582541361363e-09,0.5250787587111083,0,0,0.0,422.59472003066185,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143.9025029148725,0.0,564.640592221303,6174.366023211873,14801.219872882855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.039505049814535884,0.001249912238840631,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7757585814302892,0.7757585814302892,0.7204510490462404,0.7204510490462404,0.8005737616455456,0.8005737616455456,1.1526578906282845,1.1526578906282845,0.9011379362114166,0.9011379362114166,0.5126902302330083,0.566421441342412,0.5321510616302968,0.7619603252697209,0.7547288256862877,0.50693870889502,0.5658798920180526,0.5446624492678399,0.7971582765120612,0.7411461578383908,17.681079117155363,17.681079117155363,15.922200540944317,15.922200540944317,18.512677719245374,18.512677719245374,32.967181398775196,32.967181398775196,22.147128399293578,22.147128399293578,10.495850694495502,11.719790858508745,10.924703288881858,17.23001142678565,16.996859560100816,10.372243034647923,11.706830725258015,11.209073352380116,18.396668795512127,16.564990230638685,152.32715460860575,152.32715460860575,0.0,169.25239400956195,0.0,152.32715460860575,169.25239400956195,0,0
+2017/06/11 09:00:00,183.34411954641288,0,795.2549191201964,0,0,0,37.03779203454462,0.0,9.332689672910613,0.0,97.06762091869685,0,39.380909295966944,2.521558254136172e-09,0.5251076217722611,0,0,0.0,422.60621773848294,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2802.923833161801,1099.680087221717,2428.433777895805,7544.709209299488,26195.52627935365,3902.156513204817,2332.4097009360685,3500.0632569309646,4084.224413015186,29534.96239029593,4076.237339814434,2384.250181275308,3662.48890299593,4370.413366064617,29302.45018261776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04233996094457955,0.0013396068508991462,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9438302868871352,0.9438302868871352,0.8684536162315923,0.8684536162315923,0.9043432894332487,0.9043432894332487,1.195192063552177,1.195192063552177,0.9614971956437597,0.9614971956437597,0.4934195263756749,0.5167694341008081,0.455782901255051,0.6990794569459203,0.5461432797560021,0.5144169952362646,0.5346596788690662,0.4773054984856327,0.7615263750609159,0.5477983776062062,23.815322760584067,23.815322760584067,20.91991134612168,20.91991134612168,22.269829193843023,22.269829193843023,35.01282060284275,35.01282060284275,24.526868421017213,24.526868421017213,10.08732882923654,10.584385274504896,9.335690477539202,15.277751674991492,11.24317987247737,10.533240348663043,10.981177898010685,9.758039268255004,17.215957320041,11.28141259258085,183.34411954641288,183.34411954641288,0.0,203.7156883849032,0.0,183.34411954641288,203.7156883849032,0,0
+2017/06/11 10:00:00,258.59258102969534,0,977.4855744480183,0,0,0,54.70479651980599,0.0,13.065493553185489,0.0,124.87761316689259,0,39.380909295966944,2.90994020103159e-09,23.131793288480107,0,0,0.0,516.1109917849444,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6934.050194696689,3003.181587942672,5186.394308263065,8460.506393038442,40780.465428084375,7027.19840350738,4272.2507399999695,5363.311664300286,6698.673113030443,39244.904083986126,7412.118112792881,4444.077338537449,5679.731213700524,7272.092816928585,39510.92528399109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052042056013694056,0.0016465743759677897,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0401706678597376,1.0401706678597376,0.9408511206872471,0.9408511206872471,0.9622128816605916,0.9622128816605916,1.2113950319878461,1.2113950319878461,1.0246846426678742,1.0246846426678742,0.49881986410138013,0.4899040877185767,0.4394307223833697,0.6423406997939451,0.4800589666966135,0.5230747566466342,0.504824423748415,0.4578914184007217,0.6842390785641083,0.4851621481875639,27.84130569442422,27.84130569442422,23.696548292143575,23.696548292143575,24.55595135680788,24.55595135680788,35.806183905328396,35.806183905328396,27.170489898414203,27.170489898414203,10.200192668167062,10.014535108248197,9.028133822380013,13.662601456276576,9.813512552467884,10.722651766941084,10.327163833517545,9.376185369653967,14.84184559568827,9.917189654741463,258.59258102969534,258.59258102969534,0.0,287.3250900329948,0.0,258.59258102969534,287.3250900329948,0,0
+2017/06/11 11:00:00,286.6483211610543,0,1009.8658049385325,0,0,0,64.41626123816044,0.0,13.065493553185489,0.0,143.25325374857618,0,39.380909295966944,2.909940201031589e-09,23.100428119800867,0,0,0.0,495.2556935066426,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9916.452943161665,4391.2767119096625,7184.4295454903495,8219.900309560371,51664.16812437238,8671.816860910409,5037.92627239845,6517.250582175689,6941.117124327553,44542.94322082739,9192.534605899431,5226.878315534677,6879.07839200236,7404.217674706679,45140.44267526922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05376600346926163,0.0017011188717714432,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1057081094616292,1.1057081094616292,0.9914712407077152,0.9914712407077152,1.0106931885486274,1.0106931885486274,1.1780283662534619,1.1780283662534619,1.072165280809942,1.072165280809942,0.5281410138221447,0.4981497569977234,0.453085983707548,0.6176667379735208,0.48126970052078527,0.55976627363786,0.5165009883370127,0.47502502987278933,0.6528445393838163,0.48911782179988683,30.775404170226054,30.775404170226054,25.76192183504709,25.76192183504709,26.572057899019896,26.572057899019896,34.18076272676731,34.18076272676731,29.25480327817816,29.25480327817816,10.834994104707064,10.186119362785078,9.284174021801249,13.003747792606532,9.838008357213738,11.561404477408871,10.57853683105867,9.712342916500177,13.951092247582324,9.998327025619531,286.6483211610543,286.6483211610543,0.0,318.49813462339364,0.0,286.6483211610543,318.49813462339364,0,0
+2017/06/11 12:00:00,269.69467309381037,0,968.8160011364124,0,0,0,70.53067639340081,0.0,12.935301236479537,0.0,124.80122689546741,0,39.380909295966944,2.803621882020464e-09,18.614584067237665,0,0,0.0,489.6962422170666,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10496.179249196868,4718.884138190775,7752.000886997781,7376.917447532737,53595.72691696159,10209.69140403191,5816.976792007053,7923.7359466826965,7042.834138632807,51073.57545007616,10849.076543139952,6045.8192816307,8368.137541163613,7425.263257703141,52000.730030532875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051580481508973416,0.0016319704803823992,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1164787976459825,1.1164787976459825,1.0117208657027676,1.0117208657027676,1.0307999258162472,1.0307999258162472,1.1347288790841046,1.1347288790841046,1.0823751475117747,1.0823751475117747,0.5516711721377312,0.5162918541915857,0.47698287900528874,0.5965618137999272,0.49333528742103344,0.5873521251953322,0.5366026833610427,0.5013069118026109,0.6238383093305757,0.5042605956621699,31.271814488649184,31.271814488649184,26.615763823723157,26.615763823723157,27.434333636748832,27.434333636748832,32.12172187239564,32.12172187239564,29.713524469336832,29.713524469336832,11.371338012002994,10.573982729625556,9.75156095389535,12.46115866783768,10.085578263479178,12.230444089779795,11.025106608060284,10.252594227344517,13.166066326936644,10.31517495157209,269.69467309381037,269.69467309381037,0.0,299.6607478820115,0.0,269.69467309381037,299.6607478820115,0,0
+2017/06/11 13:00:00,273.56031271643457,0,933.3669311422043,0,0,0,74.44311191231564,0.0,12.935301236479537,0.0,124.7641830973959,0,39.380909295966944,2.803621882020464e-09,18.604831969018488,0,0,0.0,489.7375247354028,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11240.613604341195,5674.088023099196,8489.608657998491,7125.425637123438,56541.06344330889,10873.722489429505,6517.196569379967,8542.830150274041,7184.401462454639,53039.16852512348,11528.680392980918,6796.582832998445,9029.541239543261,7510.642704976208,54306.659847555726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0496931467651193,0.0015722565246676944,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1250169087512387,1.1250169087512387,1.0527911590518837,1.0527911590518837,1.0444291751317487,1.0444291751317487,1.1259365972333688,1.1259365972333688,1.0880971508804582,1.0880971508804582,0.5669580226032821,0.5479056639924144,0.49466151432692634,0.5963245588209861,0.5022986397049517,0.6017955408750807,0.5727547602518426,0.5199680347108597,0.6204540679659648,0.5150183455196178,31.668073093157147,31.668073093157147,28.394475789223776,28.394475789223776,28.027314472890694,28.027314472890694,31.71089982123516,31.71089982123516,29.972199269960086,29.972199269960086,11.732644644375625,11.283895002966275,10.11317409228488,12.45516893115915,10.27356426368371,12.593910649828757,11.872301554804679,10.654310896752833,13.076852704878476,10.54629166969545,273.56031271643457,273.56031271643457,0.0,303.95590301826064,0.0,273.56031271643457,303.95590301826064,0,0
+2017/06/11 14:00:00,249.64015759329416,0,868.6486586153965,0,0,0,68.82963154395716,0.0,12.88660173648153,0.0,111.01081017850728,0,39.380909295966944,2.693622225172998e-09,14.100229633233335,0,0,0.0,460.509604721139,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10436.014925549545,6520.001134004473,8270.701018648644,6785.596899267772,53769.2433728783,9623.999728481585,6770.142703577263,7581.1146323889525,6593.156909225255,46424.45064250003,10229.495631959344,7158.368873285891,8085.244978056976,6896.563947744464,47850.83878735094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046247497998536134,0.0014632385995083201,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1088958629227228,1.1088958629227228,1.1280651811704236,1.1280651811704236,1.049960284855819,1.049960284855819,1.1204545434627649,1.1204545434627649,1.0823764965514189,1.0823764965514189,0.558448288055246,0.5966386591289893,0.49987608894062163,0.5914534101197525,0.4967740915311817,0.5883867636858966,0.6290385137116753,0.5240099276472696,0.6147372090525026,0.5094444298340444,30.921918940452613,30.921918940452613,31.81012706091454,31.81012706091454,28.269893433622897,28.269893433622897,31.456031155324524,31.456031155324524,29.71358532139989,29.71358532139989,11.530265592451556,12.463099227982525,10.222414446411506,12.332731942005083,10.15728901361176,12.256179582086318,13.304119936989991,10.743305214443893,12.92727674449317,10.425918383987195,249.64015759329416,249.64015759329416,0.0,277.377952881438,0.0,249.64015759329416,277.377952881438,0,0
+2017/06/11 15:00:00,246.71457694432604,0,868.6665597177247,0,0,0,68.17042728105056,0.0,12.935301171685163,0.0,108.75639138185811,0,39.380909295966944,2.6936222251729994e-09,14.039572608617352,0,0,0.0,460.5275058234673,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10122.656607452984,8436.874780340131,8805.083350486671,6747.571315221213,56084.31447813028,8675.905801619081,7563.035679681762,7179.436471964814,6346.580706501639,43240.58554441106,9144.604543885494,8053.925545870682,7637.271356696203,6606.734687570982,44768.97928790171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046248451066483565,0.0014632687539138337,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0871665053494366,1.0871665053494366,1.2087474061550805,1.2087474061550805,1.0582833673233447,1.0582833673233447,1.1177335833787698,1.1177335833787698,1.0892921775423243,1.0892921775423243,0.536872701370521,0.6413720344484055,0.4967117137173739,0.5827575099688576,0.48860658907652404,0.5590917105884972,0.6810250572729221,0.5191623378027488,0.6037583121676288,0.5009325439414062,29.930050265310882,29.930050265310882,35.676033005452794,35.676033005452794,28.63700198361579,28.63700198361579,31.32989847874589,31.32989847874589,30.026366013206697,30.026366013206697,11.031224292791507,13.636237731009956,10.155983675442783,12.116719297334754,9.987802795021665,11.545457759668125,14.748694355136962,10.636655590386894,12.644002302773302,10.244689288612676,246.71457694432604,246.71457694432604,0.0,274.1273077159178,0.0,246.71457694432604,274.1273077159178,0,0
+2017/06/11 16:00:00,261.6384322509732,0,914.3194264499555,0,0,0,68.79305443795249,0.0,11.08681950462398,0.0,124.87761316689259,0,39.380909295966944,2.6936222251729994e-09,14.068060640389197,0,0,0.0,452.94484378688173,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9663.84215894817,9389.423691808894,8953.057944852175,6942.90595826315,55965.63337156406,8553.460169432621,8288.419474576938,7548.235228817555,6214.642611967808,44182.949080542385,8947.556855044855,8868.963866416358,8015.588759891888,6455.987919736323,45583.507329365195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04867904350669027,0.0015401710044592825,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0805316386900414,1.0805316386900414,1.2545073644934812,1.2545073644934812,1.0713154744780575,1.0713154744780575,1.1238876456406,1.1238876456406,1.1000355476193686,1.1000355476193686,0.5262289403801488,0.673986781080138,0.5017220734090915,0.5743541114649863,0.4858689472848997,0.544783479816053,0.7169018062458077,0.5239014457811838,0.5928597783665261,0.49748888716226564,29.630427289291006,29.630427289291006,37.95246055905381,37.95246055905381,29.216787169753502,29.216787169753502,31.615525219917316,31.615525219917316,30.515532981015767,30.515532981015767,10.792464058331888,14.546266412774017,10.26136762616926,11.911090227809211,9.931637708042743,11.211857364478718,15.813811781157199,10.740907428840345,12.36797546239832,10.172259055950349,261.6384322509732,261.6384322509732,0.0,290.709369167748,0.0,261.6384322509732,290.709369167748,0,0
+2017/06/11 17:00:00,274.39441960604256,0,936.3722556541227,0,0,0,72.41969018196833,0.0,11.156669714402236,0.0,129.38645076019097,0,39.380909295966944,2.803621882020464e-09,18.61872444825617,0,0,0.0,474.9976729910489,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9634.7761057079,10270.73294397115,9956.414821470844,6949.711058571464,57449.75306865547,8843.889221207282,9141.460291611662,8666.037615168158,6316.013277048674,47432.82143273915,9173.118610594418,9750.45296907879,9180.96737684817,6521.333738768759,48728.94390788904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049853152468197735,0.0015773189935799207,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0733814922001501,1.0733814922001501,1.2845465612503884,1.2845465612503884,1.1048258044926729,1.1048258044926729,1.1189303918648117,1.1189303918648117,1.1011755228100912,1.1011755228100912,0.5204644921832045,0.7019708059292529,0.5250320865799845,0.5664080230976909,0.48959751559457493,0.5357691428321617,0.7452647687236869,0.5494494266729915,0.5796229420043502,0.5008018114588854,29.30925480123534,29.30925480123534,39.47619268917307,39.47619268917307,30.734912459986916,30.734912459986916,31.385347431283847,31.385347431283847,30.567669818338572,30.567669818338572,10.66520379971466,15.363786439008535,10.765923108639953,11.719469584966845,10.00821225705532,11.006241352808246,16.695108739754204,11.319670080104089,12.039658898564639,10.241930242681406,274.39441960604256,274.39441960604256,0.0,304.8826884511584,0.0,274.39441960604256,304.8826884511584,0,0
+2017/06/11 18:00:00,267.5586289674533,0,941.9689881891788,0,0,0,74.74485767774954,0.0,11.198411588569618,0.0,115.6330778413024,0,39.380909295966944,2.909940201031589e-09,23.169397358500497,0,0,0.0,516.0847580386493,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8643.47518986674,9443.436577962466,10222.247857369479,6643.1486995947225,54008.4851338282,9487.1400458291,9516.552992024815,10121.28708820766,6511.0948987911315,53138.61897373766,9763.741934823554,10081.050336280978,10713.820763340113,6679.614596823786,54226.42855500037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05015112665390122,0.0015867466891104378,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0581450914368966,1.0581450914368966,1.2559405134522041,1.2559405134522041,1.1279885461965966,1.1279885461965966,1.1061317589525412,1.1061317589525412,1.0932887228170027,1.0932887228170027,0.5207326300126677,0.7035105671974615,0.5525049923328706,0.5626353013931475,0.5019065276008154,0.5328880821356051,0.740853238218876,0.5806742744012702,0.5721283725868002,0.5117116950588221,28.630882681595494,28.630882681595494,38.024649007265026,38.024649007265026,31.806552027736018,31.806552027736018,30.794856104256482,30.794856104256482,30.20787427344034,30.20787427344034,10.671091517810652,15.409750704389296,11.390784188639458,11.629448936601733,10.265267992570003,10.941267001661359,16.55576379074124,12.065457396961193,11.857140170331803,10.474719715405683,267.5586289674533,267.5586289674533,0.0,297.2873655193925,0.0,267.5586289674533,297.2873655193925,0,0
+2017/06/11 19:00:00,251.20120617724677,0,906.5134964569787,0,0,0,72.76329291675458,0.0,11.824016624992478,0.0,104.13412371906301,0,39.380909295966944,2.909940201031589e-09,23.098863617559836,0,0,0.0,516.1196188189933,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6970.283805873827,8074.29187885273,10021.317598013475,6104.61615151816,47869.595506254016,9437.355917356985,9611.828460559473,10947.875452901764,6249.907841285843,55916.971331708126,9677.24450369584,10137.287540267613,11655.669925113085,6368.181497198529,56728.66374356383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0482634500119598,0.001527021915978573,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0395856537453696,1.0395856537453696,1.2291679895833745,1.2291679895833745,1.1447711442564996,1.1447711442564996,1.0866201128174189,1.0866201128174189,1.0856863119352695,1.0856863119352695,0.5218204252568253,0.706571135343503,0.5799702276974933,0.5554101257429849,0.5172627390490785,0.5291799553480626,0.7359064844260944,0.6077995547879432,0.5587840151836863,0.5242491812891247,27.81580433109059,27.81580433109059,36.684917682051456,36.684917682051456,32.594010532237874,32.594010532237874,29.905318069455376,29.905318069455376,29.86307395738234,29.86307395738234,10.695009029117287,15.501417177659164,12.048175588891851,11.458772542836556,10.595140699343773,10.858169540607093,16.400506191948566,12.747664914137289,11.538190371768664,10.748595262351643,251.20120617724677,251.20120617724677,0.0,279.11245130805196,0.0,251.20120617724677,279.11245130805196,0,0
+2017/06/11 20:00:00,236.3455726786265,0,822.7394311851872,0,0,0,55.82751511951531,0.0,14.11304002692588,0.0,108.41610117336799,0,39.380909295966944,2.803621882020464e-09,18.608007060046656,0,0,0.0,467.83590605974587,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4335.511797014599,3713.629545595096,5454.099828621167,5344.3553327080635,35704.83584671125,7003.658279805469,6470.8965376681745,8353.621969587008,4454.769954999191,46313.514627524455,7117.604737177386,7195.353941226181,8887.009694830374,4439.599683958598,46632.013795231534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04380325672488097,0.001385904509386584,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0095539527118413,1.0095539527118413,1.0678610897378664,1.0678610897378664,1.025930674855742,1.025930674855742,1.0607775910405224,1.0607775910405224,1.0635631808290513,1.0635631808290513,0.5059884519265752,0.6101955071825773,0.5425234496057498,0.5330948921320089,0.5149702434094272,0.5086626437915089,0.6495197943995339,0.557672695287828,0.5309997514315571,0.5180193491135393,26.523653886304743,26.523653886304743,29.06251773096649,29.06251773096649,27.224137701473822,27.224137701473822,28.74749956614157,28.74749956614157,28.871167655972712,28.871167655972712,10.351958459660565,12.809458593804237,11.159975633634303,10.945919052066131,10.545247116732668,10.409142514193974,13.859259822867742,11.511976550298954,10.89887595264183,10.611657368820971,236.3455726786265,236.3455726786265,0.0,262.60619186514054,0.0,236.3455726786265,262.60619186514054,0,0
+2017/06/11 21:00:00,222.29749634723288,0,835.4892975167947,0,0,0,38.99601607894845,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,2.909940201031589e-09,23.171487558142964,0,0,0.0,516.0761249038976,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2706.0199756922416,2215.521429328745,3792.6691864309473,4513.6431574689295,28330.797105494294,4239.138888067584,4407.632747892394,5132.698243645992,2714.189145761398,31215.42459211347,4227.1957948925365,4673.378652905565,5429.909935831727,2601.1993362523517,31072.46076859436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04448206905228675,0.0014073816582544786,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9960426116621727,0.9960426116621727,1.0425790770713046,1.0425790770713046,1.0085745600772817,1.0085745600772817,1.0373439193389085,1.0373439193389085,1.0492054496861483,1.0492054496861483,0.4958009441771688,0.589155951572433,0.5071235536894781,0.5203950611938296,0.504809059401091,0.49189318398025494,0.5945609075563488,0.5111181681583443,0.5118611387079897,0.5030819925921877,25.9533180489274,25.9533180489274,27.946422252568155,27.946422252568155,26.482080330201327,26.482080330201327,27.718200662345225,27.718200662345225,28.236723187154098,28.236723187154098,10.13694376316846,12.27534238943963,10.376193342941605,10.663679754741892,10.32683695367605,10.055657508998351,12.410720387959785,10.461922974981832,10.477944197102971,10.290158268622505,222.29749634723288,222.29749634723288,0.0,246.9972181635921,0.0,222.29749634723288,246.9972181635921,0,0
+2017/06/11 22:00:00,142.00177237168984,0,649.4607342468677,0,0,0,14.60130765823332,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,2.803621882020464e-09,18.60057983620038,0,0,0.0,489.7541479404191,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,70.5425311880205,2814.2615782555968,6730.740003408966,944.1181108803589,2097.2076082317876,1979.2595850634125,516.5865343991875,14786.303391715584,774.6933971497461,2132.3250990943075,2100.528507173323,268.2021357199748,14191.800238432415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03457777055119883,0.0010940165575456149,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9216254695032089,0.9216254695032089,0.9740632396510075,0.9740632396510075,0.9697736530333249,0.9697736530333249,0.9857178138463819,0.9857178138463819,0.9936801765391573,0.9936801765391573,0.49460741644214484,0.5744310802596684,0.5013196700688203,0.5167201023823369,0.504754264975545,0.48512204728394165,0.5708265428885959,0.4982676509418724,0.5026567150482059,0.4991425969947627,22.93854810919295,22.93854810919295,25.040409620708047,25.040409620708047,24.86441494375066,24.86441494375066,25.522169778662956,25.522169778662956,25.854307064665917,25.854307064665917,10.112046949581156,11.91295973193995,10.252863730353951,10.583310284418843,10.325671273405902,9.91637057734404,11.825684515160589,10.188593915045047,10.281146192941904,10.206977489738208,142.00177237168984,142.00177237168984,0.0,157.77974707965538,0.0,142.00177237168984,157.77974707965538,0,0
+2017/06/11 23:00:00,90.44915595312918,0,481.01820734473,0,0,0,5.355788818199373,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.5798671837131964e-09,9.582386073511662,0,0,0.0,427.7826785759138,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1489.0185588031609,0.0,0.0,813.6491324841243,376.75964640925775,0.0,7488.385699801742,0.0,705.5375234930348,374.1125974692635,0.0,6526.182835858011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025609765652426394,0.0008102751337635348,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7719661943957769,0.7719661943957769,0.8247997720992473,0.8247997720992473,0.8302893665152875,0.8302893665152875,0.9395414510687015,0.9395414510687015,0.882438541366221,0.882438541366221,0.48417870455465367,0.5829999779845157,0.5158246363826674,0.49624003665751276,0.5217605223899839,0.4612637062339202,0.573487605178027,0.5080695818338941,0.4616609715595839,0.5145032631800396,17.55629603932634,17.55629603932634,19.349663857857948,19.349663857857948,19.54275560203179,19.54275560203179,23.644445258243508,23.644445258243508,21.439655310471622,21.439655310471622,9.897122434129585,12.122697910264776,10.563815438445403,10.146118650717156,10.693690603745338,9.441349325455008,11.890061288466995,10.396433987427855,9.44905807032471,10.535111691731458,90.44915595312918,90.44915595312918,0.0,100.49906217014353,0.0,90.44915595312918,100.49906217014353,0,0
+2017/06/12 00:00:00,46.71844339985477,0,481.0252500601803,0,0,0,0.9998997429481778,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,6.37797818881984,2.5798671837131968e-09,9.543244469083696,0,0,0.0,427.7897212913641,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229.93124651039528,0.0,334.06011928158546,1003.9813061928016,1915.6495055480164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02561014061181355,0.0008102869972171763,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8787884397456351,0.8787884397456351,0.9184904514969569,0.9184904514969569,0.8986744733019122,0.8986744733019122,0.923870790217227,0.923870790217227,0.9086333150096362,0.9086333150096362,0.6475400232467254,0.8264612418916396,0.675593526926245,0.6850765496843414,0.698491211352633,0.6145776109867608,0.8097680452509444,0.6632193990184545,0.6374145849279927,0.6804995525402415,21.303225370097266,21.303225370097266,22.816347646163507,22.816347646163507,22.053110638245627,22.053110638245627,23.02631139127608,23.02631139127608,22.434702816523128,22.434702816523128,13.804804404844063,19.40797122140542,14.592289232371954,14.866191195258182,15.260292065220398,12.923121369474302,18.827418020583664,14.240734991491365,13.528952365880485,14.733506270193544,46.71844339985477,46.71844339985477,0.0,51.90938155539419,0.0,46.71844339985477,51.90938155539419,0,0
+2017/06/12 01:00:00,23.722135051617844,0,47.92742672489775,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250396279400514,0,0,0.0,12.43707421235362,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0025516916989980474,8.073374668046025e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9374316419817019,0.9374316419817019,1.0185997104347764,1.0185997104347764,0.9594646296475674,0.9594646296475674,0.9953048950671406,0.9953048950671406,0.9999573762889739,0.9999573762889739,0.6721717762479181,0.8805660066596158,0.6976132904724855,0.7190962413275068,0.7471562494893539,0.6484788415527902,0.8803520709869015,0.6947760910130624,0.6822414565948831,0.724567878474263,23.56065321402555,23.56065321402555,26.90933204796191,26.90933204796191,24.444381406392466,24.444381406392466,25.922377105565843,25.922377105565843,26.117855408786852,26.117855408786852,14.494412728851188,21.3695972433368,15.234262445181315,15.88076265194313,16.755109662096643,13.830606277682406,21.361602317849673,15.15036945045486,14.78389643099382,16.048601925842988,23.722135051617844,23.722135051617844,0.0,26.357927835130937,0.0,23.722135051617844,26.357927835130937,0,0
+2017/06/12 02:00:00,28.34444433919394,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250812527210484,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9782772795464282,0.9782772795464282,1.075167466419305,1.075167466419305,1.0016273756193133,1.0016273756193133,1.0466282818491055,1.0466282818491055,1.0873154142919816,1.0873154142919816,0.6790849784951413,0.8930279667648433,0.7028080827670078,0.7281917448353308,0.7672071788190665,0.6605054279307453,0.9025131094728746,0.7048952334336597,0.6976307791614692,0.7420370012989741,25.213998800528515,25.213998800528515,29.389309754118614,29.389309754118614,26.188222378689403,26.188222378689403,28.123628303401645,28.123628303401645,29.936792348976738,29.936792348976738,14.692681752607115,21.838543911820324,15.388767761547825,16.160471057737652,17.400574929359678,14.164516590297183,22.199718918639064,15.451172510973635,15.234780645301086,16.593072815642486,28.34444433919394,28.34444433919394,0.0,31.493827043548823,0.0,28.34444433919394,31.493827043548823,0,0
+2017/06/12 03:00:00,23.722264523420193,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251690997424038,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9637525508778171,0.9637525508778171,1.0584795813255166,1.0584795813255166,0.983479182626804,0.983479182626804,1.0231882640389949,1.0231882640389949,1.0856934232111883,1.0856934232111883,0.6750606948580745,0.890819559705377,0.6974711688990914,0.7249966845108623,0.7851228029365934,0.6585752431133112,0.9052650611987423,0.7012734373383251,0.6972197226794042,0.7539834032930051,24.618585880678452,24.618585880678452,28.64568647132947,28.64568647132947,25.429226411055126,25.429226411055126,27.106139543871592,27.106139543871592,29.863395549391754,29.863395549391754,14.577014676359,21.754978144634308,15.230051789314388,16.06180974518462,17.991817858769195,14.110504000458292,22.305191719525325,15.34300256915769,15.22260429346565,16.972953453305237,23.722264523420193,23.722264523420193,0.0,26.3580716926891,0.0,23.722264523420193,26.3580716926891,0,0
+2017/06/12 04:00:00,59.32794387428007,0,88.72588128136032,0,0,0,11.541667744702462,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,7.7005321271278095,0.0,0.5776104528156992,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,741.1786074769643,3693.056501686963,1644.5530951739688,1878.823843561077,1810.5366554323994,1181.1812097519442,12151.556237192923,1454.0450498106798,1688.4997695781708,1696.7279194491373,999.9518325529277,10103.26407627576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9226127237768421,0.9226127237768421,0.9519760165796989,0.9519760165796989,0.9281772550419546,0.9281772550419546,0.9672444951700131,0.9672444951700131,0.9741873033087134,0.9741873033087134,0.49868090196071757,0.5811440351310934,0.5045423836847092,0.5216167353612047,0.524339042585737,0.48795337112445675,0.5916588084308948,0.5007780851071608,0.5067536426491696,0.5182030867893849,22.977112195185583,22.977112195185583,24.141871062852047,24.141871062852047,23.195204286606767,23.195204286606767,24.760982718098475,24.760982718098475,25.0455103650705,25.0455103650705,10.197272649696316,12.07700029227074,10.32116499522634,10.690526573166807,10.750582791989359,9.974372076853399,12.337873860998457,10.241429588665653,10.368289473571792,10.61567206893018,59.32794387428007,59.32794387428007,0.0,65.91993763808897,0.0,59.32794387428007,65.91993763808897,0,0
+2017/06/12 05:00:00,82.64094474985427,0,212.9421150752648,0,0,0,5.780532488079966,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,3.5493155299321004,0.0,0.5250537018863269,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1781.5150262897419,17570.81148331606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9364237944072209,0.9364237944072209,0.9535534960994195,0.9535534960994195,0.9385342934589826,0.9385342934589826,0.9971639388901671,0.9971639388901671,1.0060725541081434,1.0060725541081434,0.6636385431508794,0.8117496255053087,0.6766515846892067,0.6992173067050718,0.735436702759563,0.6407546495975227,0.7983830258274581,0.6636627871741579,0.666156553277696,0.7189062739071433,23.52068851407003,23.52068851407003,24.20541184949778,24.20541184949778,23.604423471621317,23.604423471621317,26.000387859680544,26.000387859680544,26.37603843247868,26.37603843247868,14.252534561198019,18.895719337805133,14.622656716209733,15.281845329212587,16.38581636509076,13.619455880544265,18.438211323298816,14.253217301577962,14.323580693238625,15.874958662807813,82.64094474985427,82.64094474985427,0.0,91.82327194428252,0.0,82.64094474985427,91.82327194428252,0,0
+2017/06/12 06:00:00,95.09132999842237,0,643.3015872459332,0,0,0,9.215979733096887,0.0,9.184715936653461,0.0,73.80580873715317,0,2.359907863762125,2.5215769308285765e-09,0.5249177252351386,0,0,0.0,412.61429591439634,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2699.1027644151145,2042.9401623102585,2826.781653418155,2457.258217541383,22016.704939038988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03424985300274783,0.001083641474890012,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9820552985648077,0.9820552985648077,0.9903006751913573,0.9903006751913573,0.9829964109858182,0.9829964109858182,1.032446471827431,1.032446471827431,1.020873856555286,1.020873856555286,0.813953405738903,0.9810060815118065,0.8262518992274913,0.8722261255734747,0.9414991058736313,0.7967796374030501,0.9799733674710229,0.8217925006657717,0.8499693334854757,0.9195945956570399,25.37020991115655,25.37020991115655,25.713040332615407,25.713040332615407,25.409207971849966,25.409207971849966,27.505609713734998,27.505609713734998,27.006774430958473,27.006774430958473,18.971873917027807,25.326772378298855,19.400618203408058,21.059322355120756,23.72235246714648,18.383838510961226,25.284059486661675,19.244421909759097,20.24534121023956,22.85934124103194,95.09132999842237,95.09132999842237,0.0,105.65703333158041,0.0,95.09132999842237,105.65703333158041,0,0
+2017/06/12 07:00:00,198.8514446727759,0,806.0333882019714,0,0,0,55.44576342805798,0.0,7.62365870417446,0.0,69.33401494192633,0,39.380909295966944,3.012674183860497e-09,27.067098299637497,0,0,0.0,539.8557443578906,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3012.6913712744295,2073.3940357476326,3305.1718626058982,5853.871902185343,27791.425201463673,7403.877075518882,4983.938011782358,7308.35166807212,5968.250281038982,51832.85169595873,7501.313672679805,5089.320315098813,7483.44119755911,6257.43003469431,51927.98957160881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04291381462217716,0.0013577631812493243,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.99266222438752,0.99266222438752,1.0046686267831508,1.0046686267831508,0.9959871850113905,0.9959871850113905,1.1777006376427726,1.1777006376427726,1.0137578207794435,1.0137578207794435,0.6184180200679782,0.7195936981731964,0.6175096637349559,0.7553636304414151,0.6576741114533792,0.6215547040658093,0.7295345750963602,0.6265720130790214,0.7789354844196068,0.6562172237566005,25.81170969892331,25.81170969892331,26.31663953226426,26.31663953226426,25.95099265211465,25.95099265211465,34.164960560655715,34.164960560655715,26.70251029415256,26.70251029415256,13.023418911479126,15.895968589740619,12.999638151036578,17.01723684535628,14.085342800900634,13.105812572015921,16.202067781226162,13.238493670202374,17.786082091387996,14.04473833536828,198.8514446727759,198.8514446727759,0.0,220.94604963641765,0.0,198.8514446727759,220.94604963641765,0,0
+2017/06/12 08:00:00,230.776125825294,0,837.3753066403176,0,0,0,67.86516694699186,0.0,11.287802377079139,0.0,83.2008179303116,0,39.380909295966944,2.9617648012770393e-09,25.609454069528432,0,0,0.0,517.9621340274205,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5934.749329336064,3730.67966184056,5492.831045683175,8595.386334284249,38825.80062390076,9576.424362808024,7094.841982454787,8993.08481948547,8976.009066433182,55646.21571787735,9635.545050804292,7119.994170011601,9113.876414488599,9349.256763587506,55840.05504614537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04458248157500265,0.0014105586404799075,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0246372643851729,1.0246372643851729,1.0170508084892913,1.0170508084892913,1.009852120663727,1.009852120663727,1.238056428916641,1.238056428916641,1.026999403500427,1.026999403500427,0.5766970971064156,0.6269049258146343,0.5607355516153999,0.726283378352172,0.5634505793487972,0.5838292422149439,0.6302918320898102,0.5672030740348397,0.754904073761428,0.5646226080725574,27.168451166478448,27.168451166478448,26.843075255878688,26.843075255878688,26.536317774592945,26.536317774592945,37.12761311220107,37.12761311220107,27.270197531261474,27.270197531261474,11.968114455296146,13.247336081527422,11.584352823988695,16.101489176599458,11.648849939535168,12.14316463177498,13.337568159046327,11.73851899715342,17.00248331475136,11.676790976512095,230.776125825294,230.776125825294,0.0,256.41791758365997,0.0,230.776125825294,256.41791758365997,0,0
+2017/06/12 09:00:00,259.1567701741464,0,864.960060918743,0,0,0,78.07246268064526,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.857259033039392e-09,20.797898905182578,0,0,0.0,492.3113595370297,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9689.70385980826,5528.656937062974,8120.781034993604,9902.474201185454,51302.4683673847,11117.568982138027,7689.627763941289,9839.277430852238,10096.528178366489,57146.64004571005,11294.159419044834,7696.104460477136,9956.917352219456,10527.399190624332,57850.37156020907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0460511143249974,0.0014570251569682672,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.090933679543827,1.090933679543827,1.0447726985382695,1.0447726985382695,1.042540264383554,1.042540264383554,1.266014017077238,1.266014017077238,1.052446287038854,1.052446287038854,0.5904853261485489,0.6082546756201186,0.5524705503973557,0.7394189541709272,0.5433965346510435,0.6090016452572851,0.6169891059141974,0.5647304603953638,0.7762259411379488,0.547581245503901,30.1008503931605,30.1008503931605,28.042348121950596,28.042348121950596,27.944726571694545,27.944726571694545,38.53351613387529,38.53351613387529,28.379283047617463,28.379283047617463,12.308521684162898,12.759383704902717,11.38998034439706,16.51063958060564,11.17999212174955,12.77863672180095,12.986026092019841,11.67936515759493,17.69649932775269,11.276390080153718,259.1567701741464,259.1567701741464,0.0,287.95196686016266,0.0,259.1567701741464,287.95196686016266,0,0
+2017/06/12 10:00:00,291.9038514171453,0,950.8537051946321,0,0,0,79.88793475645208,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.803644135336984e-09,18.614222572879378,0,0,0.0,489.4791225315583,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12405.005506620299,6591.6756486200975,9859.044383878922,10241.956361588887,61013.92559934071,11054.75933805199,7447.042965732605,9046.6657244975,9841.574059161545,51486.415944071225,11384.192240932334,7468.283794932252,9192.467439882264,10253.832974994615,52970.06775686131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05062415556824067,0.0016017129942317852,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1570664343676982,1.1570664343676982,1.0804254545606444,1.0804254545606444,1.078348785356777,1.078348785356777,1.2617435316528998,1.2617435316528998,1.101526019835794,1.101526019835794,0.6028638959570489,0.5951195113145263,0.5438929927011973,0.7254868443766515,0.5257205699184221,0.6296437433283648,0.6058886039564668,0.5585713474825109,0.7597888535872818,0.5348812040721662,33.17663153139593,33.17663153139593,29.62564459020618,29.62564459020618,29.532187324024846,29.532187324024846,38.31748075706588,38.31748075706588,30.583708701571496,30.583708701571496,12.621155276708706,12.42478403056053,11.19138873019756,16.076917036938,10.781183063216275,13.320263632556745,12.698558444065839,11.533169820989045,17.159765786997838,10.986178024988234,291.9038514171453,291.9038514171453,0.0,324.337612685717,0.0,291.9038514171453,324.337612685717,0,0
+2017/06/12 11:00:00,324.4503851739686,0,1006.946607432655,0,0,0,96.38164194973382,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.8572590330393934e-09,20.862859624548182,0,0,0.0,492.3364960007651,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15161.406384790242,7812.2221741402445,11906.917610756249,10082.427281160191,72011.58366011301,14314.761555822324,8916.550937523465,11885.629102577119,10660.439418634973,63866.70433380612,14747.990877274151,8958.187228607852,12073.004177968824,10974.050126286416,65980.5725331097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05361058323177966,0.0016962014837943562,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.203429647240579,1.203429647240579,1.1127349841269052,1.1127349841269052,1.1137850102755218,1.1137850102755218,1.2330015122926063,1.2330015122926063,1.1395917846323371,1.1395917846323371,0.6321121761571782,0.6049160950511633,0.558198365584615,0.7101546775753393,0.5354979488942629,0.6647982768607745,0.6229100362885437,0.578886701334762,0.7408331211706162,0.5490512526080069,35.41522607143459,35.41522607143459,31.098825186321847,31.098825186321847,31.147296238322497,31.147296238322497,36.875589258806826,36.875589258806826,32.35002005499251,32.35002005499251,13.386270380275278,12.673628345267403,11.524369390268916,15.609260644654967,11.000109996092533,14.28522255408545,13.141546208708661,12.021620944672634,16.55513027509197,11.310432929141783,324.4503851739686,324.4503851739686,0.0,360.5004279710762,0.0,324.4503851739686,360.5004279710762,0,0
+2017/06/12 12:00:00,315.8461716426559,0,968.6256291134039,0,0,0,108.29487448210635,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.803644135336984e-09,18.60762407310359,0,0,0.0,489.50587019405805,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16419.90440491905,8320.727013933678,12784.407723669141,9412.146543978863,75566.98192616698,17443.848164242776,10210.535440900501,14641.6215304802,11232.86896066971,75643.83895103344,18063.751769619994,10343.408831366864,14997.774317273197,11509.131861489002,78237.38914562606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05157034596145862,0.0016316497987240905,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2309032369159114,1.2309032369159114,1.129515053341292,1.129515053341292,1.1315598197228365,1.1315598197228365,1.1936507702303398,1.1936507702303398,1.147911991410582,1.147911991410582,0.6698433786068954,0.6276668986837296,0.5858748171959891,0.697660528534992,0.5547239883489355,0.7094684404502496,0.6496470857505229,0.6149236816884546,0.7251924293548095,0.5739251725222542,36.77117622518117,36.77117622518117,31.877799996737664,31.877799996737664,31.973356280837123,31.973356280837123,34.937747088054365,34.937747088054365,32.74238728991389,32.74238728991389,14.42810050981376,13.267592749945791,12.193778201453682,15.235662167042051,11.442681978886554,15.588566088649685,13.862766901894418,12.93213323956465,16.067841587121038,11.90067638657041,315.8461716426559,315.8461716426559,0.0,350.9401907140621,0.0,315.8461716426559,350.9401907140621,0,0
+2017/06/12 13:00:00,310.0831063738808,0,907.6035246123988,0,0,0,105.0993631593859,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.7491088870485187e-09,16.329543742663294,0,0,0.0,463.9741182055972,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15497.549105990163,8533.402249439367,12539.48005777162,8877.169976213681,72957.01906299827,16746.970478957737,10275.9230117669,14157.205358964231,10737.538897467055,72541.23571573447,17320.658002462333,10441.997316641624,14516.532252028277,10943.275443399567,75368.33153016414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04832148391834548,0.0015288580683236463,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2058171238085034,1.2058171238085034,1.1504661274440537,1.1504661274440537,1.128735063751494,1.128735063751494,1.1770881626481602,1.1770881626481602,1.1428366155021106,1.1428366155021106,0.6633005769938951,0.644626863461175,0.588533188017372,0.6850363006816462,0.5549444486806294,0.6985730184665091,0.6694565715163107,0.6168152313426487,0.7085329811335723,0.5724935017543967,35.53221902003122,35.53221902003122,32.86327798581996,32.86327798581996,31.841385362861757,31.841385362861757,34.13543738746438,34.13543738746438,32.502777864774316,32.502777864774316,14.243019685589317,13.724984278257466,12.259825478428638,14.865020447920799,11.447849754414221,15.262719272786697,14.417107069409212,12.98148206830301,15.560388553611716,11.865975860874315,310.0831063738808,310.0831063738808,0.0,344.53678485986757,0.0,310.0831063738808,344.53678485986757,0,0
+2017/06/12 14:00:00,287.27699405891633,0,868.3146227824187,0,0,0,98.27112431444897,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.6936440320262478e-09,14.105043191579798,0,0,0.0,460.17556888816137,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14116.695522429472,9321.26646583065,11943.159829197344,8386.445402522479,69367.39379738388,14230.70233317557,10284.621635976004,12031.13699903431,9801.013075697885,62976.58365727084,14722.440632192347,10560.06472893304,12402.749738696635,9991.45160387889,65614.05019928505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04622971368336582,0.0014626759161730219,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1715780346145008,1.1715780346145008,1.2111903199698537,1.2111903199698537,1.1171019526118795,1.1171019526118795,1.160756899348958,1.160756899348958,1.1279344499795512,1.1279344499795512,0.6383250286454746,0.6766041117072362,0.5750794161021879,0.6665761993068585,0.5390361695515046,0.6672155520016456,0.7076075519590141,0.5989622842169795,0.6866670655574243,0.5560503366083451,33.8703425525954,33.8703425525954,35.79611369607444,35.79611369607444,31.300653769026965,31.300653769026965,33.352432777742436,33.352432777742436,31.80402854668199,31.80402854668199,13.55357408423805,14.621293148583973,11.928717438427668,14.33544778100729,11.080355116916678,14.353542571230435,15.532550275087814,12.52189832072088,14.91251157534596,11.473804494815454,287.27699405891633,287.27699405891633,0.0,319.1966600654626,0.0,287.27699405891633,319.1966600654626,0,0
+2017/06/12 15:00:00,270.43481741082485,0,868.3385531671344,0,0,0,88.26386345571203,0.0,16.568294279967066,0.0,108.75639138185811,0,39.380909295966944,2.6936440320262478e-09,14.03338379217267,0,0,0.0,460.1994992728768,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12786.346458801947,9835.498850017004,11509.22453060607,8051.94193098996,66389.54754524826,11654.039847936567,9846.420508707262,10085.435628307789,8772.146539062249,53749.83186156836,12031.002880216243,10208.09896220879,10434.872131439402,8942.816447631372,56111.38096608749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04623098775477348,0.001462716226904259,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1432625645301573,1.1432625645301573,1.2362353594251685,1.2362353594251685,1.1164491783341661,1.1164491783341661,1.156738587267798,1.156738587267798,1.1233659387830295,1.1233659387830295,0.606936680861848,0.691422280143076,0.5628268476065865,0.6517050097099104,0.5214634812605847,0.6287117064347006,0.7247430910375273,0.5836366939477338,0.6687157896794831,0.536010512660576,32.52285542366424,32.52285542366424,37.03674118339096,37.03674118339096,31.27044404422621,31.27044404422621,33.16103454587943,33.16103454587943,31.59126286593944,31.59126286593944,12.725471671643788,15.051649255302564,11.634004531947113,13.919563450344981,10.68715520493653,13.295409394899224,16.05399775941936,12.13840976901453,14.39607139950715,11.011701103029125,270.43481741082485,270.43481741082485,0.0,300.48313045647205,0.0,270.43481741082485,300.48313045647205,0,0
+2017/06/12 16:00:00,291.8052105340619,0,921.5975124614629,0,0,0,86.63752920405292,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.6936440320262478e-09,14.083019598827534,0,0,0.0,460.2229297983892,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12669.848941455532,10977.229936741162,12022.331811256718,8142.213470929155,69929.3286043245,11169.67218318439,10304.315129675326,10132.661040427432,8380.750937181294,53620.43516742144,11460.706726934382,10745.027578556897,10486.865613948545,8527.42410745011,55738.87154422829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049066534196869745,0.001552430939793269,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1452810495040506,1.1452810495040506,1.2948503065518888,1.2948503065518888,1.1371863670220717,1.1371863670220717,1.1641728618666134,1.1641728618666134,1.1476641584972223,1.1476641584972223,0.5932859253459415,0.7257494051422121,0.5654223661000247,0.6447390644982002,0.5222425917974677,0.6093378311498316,0.760959620891143,0.5838515219635058,0.6575200347873893,0.5365438147387386,32.61807762356828,32.61807762356828,40.00381290154547,40.00381290154547,32.23699787075411,32.23699787075411,33.51553453454116,33.51553453454116,32.73066802379803,32.73066802379803,12.378671630819738,16.0850137133438,11.695891318421218,13.72805175591256,10.704305059765645,12.787309758698356,17.19761428210417,12.143714920511059,14.081044228669285,11.023773265725012,291.8052105340619,291.8052105340619,0.0,324.2280117045132,0.0,291.8052105340619,324.2280117045132,0,0
+2017/06/12 17:00:00,290.851360235854,0,929.8294591768333,0,0,0,82.34177057511799,0.0,16.630907673226492,0.0,133.89528835348938,0,39.380909295966944,2.8036441353369842e-09,18.60248433524961,0,0,0.0,468.4548765137597,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10344.007227556844,10055.171648384692,10826.281375134111,7472.386227481437,61319.02317037947,11945.854071465103,10714.27410639632,11392.200320517539,7963.262147605428,60404.9453714436,12385.777884687157,11339.533327979996,12001.417212779823,8180.613398948935,62177.860501819785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049504809137453885,0.0015662976534105166,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1467409483948747,1.1467409483948747,1.3000827752725685,1.3000827752725685,1.162987664362266,1.162987664362266,1.154511699512578,1.154511699512578,1.158422779548507,1.158422779548507,0.6141771144468463,0.7546296806059591,0.605259025337854,0.655058915071603,0.5577708840016288,0.6282139750087771,0.7858164549095144,0.6250914894262917,0.6635574594024658,0.5715323384861902,32.68702937960431,32.68702937960431,40.272678123662,40.272678123662,33.45890407279245,33.45890407279245,33.0551816832801,33.0551816832801,33.241193907815486,33.241193907815486,12.912698708854776,16.99367855170412,12.682414619073327,14.012521109056479,11.514290469600695,13.282152037130672,18.014984070021924,13.199228101119104,14.250251331872875,11.842729282227126,290.851360235854,290.851360235854,0.0,323.16817803983776,0.0,290.851360235854,323.16817803983776,0,0
+2017/06/12 18:00:00,281.49780547762225,0,963.4104541590544,0,0,0,88.76619618070595,0.0,16.86091083164338,0.0,110.93442390708215,0,39.380909295966944,2.961764801277043e-09,25.555365259262075,0,0,0.0,537.5262240085247,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9818.605464331467,8061.825771292815,10337.80830577025,7293.727767899639,60418.90324546321,13349.830863213245,10717.96558974826,12964.293444449393,8698.651683448883,72300.18170555451,13651.275472775897,11116.015153544637,13483.477673481948,8832.576633003018,73823.52940945864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0512926861839742,0.0016228648369093139,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1324246889602856,1.1324246889602856,1.2132462328492977,1.2132462328492977,1.1427574235317517,1.1427574235317517,1.1414213813474843,1.1414213813474843,1.1509307133792286,1.1509307133792286,0.6199005442367641,0.7170730872363469,0.612824395087956,0.6536187330996853,0.5798257375507825,0.628085711703207,0.7337697413433694,0.627281183157802,0.6577368064306796,0.5917078973954673,32.01381443230159,32.01381443230159,35.89730187962972,35.89730187962972,32.49904570681804,32.49904570681804,32.43611098790525,32.43611098790525,32.885289637993566,32.885289637993566,13.062308290070973,15.819029996832782,12.877546534459213,13.972544945864414,12.044631536736688,13.278737413334653,16.333767848671542,13.257335546768417,14.087092217367854,12.339103019881634,281.49780547762225,281.49780547762225,0.0,312.7753394195803,0.0,281.49780547762225,312.7753394195803,0,0
+2017/06/12 19:00:00,262.99243794775253,0,910.3442922343678,0,0,0,74.10253186082946,0.0,20.72136573114024,0.0,101.68988858149199,0,39.380909295966944,3.0126741841077828e-09,27.0977424753112,0,0,0.0,519.9504145963824,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6874.5224771396215,4747.427972304543,7552.319670382471,6490.159069719975,50379.74714103496,10698.070719923386,8132.760478448618,10457.8461963519,6733.68040536376,65192.6385287192,10851.534720922655,8246.106693884056,10803.692591071618,6679.949689025072,66184.3417561585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04846740441664397,0.0015334748911748327,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1345106157456022,1.1345106157456022,1.1694272006666504,1.1694272006666504,1.12340011086205,1.12340011086205,1.1212023067042869,1.1212023067042869,1.1607526924274854,1.1607526924274854,0.6282447452244475,0.6875812978473683,0.6056964537825019,0.6569345481758389,0.60427345798937,0.6285051672076021,0.6869869390233394,0.6074769720836607,0.653419890997203,0.6121639647059453,32.11149300829541,32.11149300829541,33.76711538461274,33.76711538461274,31.592851788791464,31.592851788791464,31.490737374081334,31.490737374081334,33.352232133027314,33.352232133027314,13.282971307508205,14.93918613986348,12.693629453421266,14.064719167497728,12.657176978820274,13.289906801180138,14.921840417122851,12.739364258056938,13.967032605722238,12.860413241417731,262.99243794775253,262.99243794775253,0.0,292.21381994194724,0.0,262.99243794775253,292.21381994194724,0,0
+2017/06/12 20:00:00,261.95273225965303,0,870.8229734484247,0,0,0,68.24315335741414,0.0,24.999863057464953,0.0,106.16168237671882,0,39.380909295966944,2.9099628363034953e-09,23.167124169178212,0,0,0.0,515.9194483229835,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5160.072116107598,3207.0509209779325,5957.392441774105,5907.4399547080075,44841.61724491528,9649.142927753697,7138.915828042849,9599.055411490466,5940.538770471473,63305.30671582499,9734.987623816738,7135.906127007323,9881.029867704498,5812.2756073558285,63598.86654230755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04636326013077605,0.0014669012326795287,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.139921700607625,1.139921700607625,1.1668785785687599,1.1668785785687599,1.1269887992746606,1.1269887992746606,1.1098061371481784,1.1098061371481784,1.1666017881864483,1.1666017881864483,0.6413447808300003,0.6928508358233086,0.620213721289259,0.6676272497156066,0.6219630656420281,0.6385307414671132,0.6881813914035009,0.6192694434296299,0.6613771942283977,0.6276730861524163,32.36553617505621,32.36553617505621,33.64497993098182,33.64497993098182,31.759931294606545,31.759931294606545,30.963819537893755,30.963819537893755,33.631727535509995,33.631727535509995,13.635496570189602,15.09363970805208,13.070535711425805,14.365203699914503,13.116570725921122,13.559142288591147,14.956714717263779,13.04574167790308,14.188964243837717,13.267757343823845,261.95273225965303,261.95273225965303,0.0,291.0585913996145,0.0,261.95273225965303,291.0585913996145,0,0
+2017/06/12 21:00:00,238.45055309922475,0,837.4040423516182,0,0,0,44.37643414293634,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9617648012770426e-09,25.610156705161376,0,0,0.0,517.990869738721,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2764.468530354633,1451.868147353088,3632.900655515912,5118.474705430924,30863.2448640755,5468.664326202236,4199.171759107418,5627.830222064385,3219.1113962179743,39283.30654859166,5349.5858576922865,4039.6865235496257,5704.774086860891,2960.7701454693006,39322.60991836523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04458401148555701,0.0014106070457834117,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1001921159009267,1.1001921159009267,1.120732775462223,1.120732775462223,1.089455068069073,1.089455068069073,1.0864253744402872,1.0864253744402872,1.1320723458657471,1.1320723458657471,0.6044896909756647,0.6477859896294258,0.585469660242747,0.6266959352467086,0.5939553971178918,0.5970696541277813,0.6374045132706623,0.580226385802051,0.615466168830573,0.5958465225875488,30.52269102258508,30.52269102258508,31.468942682634804,31.468942682634804,30.03375313944406,30.03375313944406,29.89650582889277,29.89650582889277,31.997329061719682,31.997329061719682,12.662710494514798,13.811560690967099,12.183739000490789,13.241784573832902,12.395491099068849,12.473987810536997,13.528680192600206,12.05446085762533,12.946270360706364,12.443107853573053,238.45055309922475,238.45055309922475,0.0,264.9450589991386,0.0,238.45055309922475,264.9450589991386,0,0
+2017/06/12 22:00:00,137.23955865171197,0,652.0455643090996,0,0,0,0.6222615104429284,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8572590330393926e-09,20.864339533089833,0,0,0.0,492.33897800265106,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2525.876857582797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03471538881831292,0.0010983707035892591,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8592180242909089,0.8592180242909089,0.8470882419810399,0.8470882419810399,0.8998451337660922,0.8998451337660922,1.027004236829303,1.027004236829303,0.9869202619911115,0.9869202619911115,0.5015153813145989,0.5576366204802001,0.5171124899162455,0.48847124811647324,0.5923309885396265,0.47738596287565477,0.5248447554434736,0.5051203703825293,0.44850156592947393,0.5824000696709104,20.58109583882988,20.58109583882988,20.14147523074095,20.14147523074095,22.097758003019123,22.097758003019123,27.270405933019916,27.270405933019916,25.572172383937414,25.572172383937414,10.256998776323584,11.511126514896347,10.591863733839602,9.985018556579647,12.354713945081471,9.759655721340621,10.761774540880978,10.333462154012366,9.197320706237434,12.107910427769454,137.23955865171197,137.23955865171197,0.0,152.4883985019022,0.0,137.23955865171197,152.4883985019022,0,0
+2017/06/12 23:00:00,87.48952110369211,0,507.18498994311904,0,0,0,0.20785391494125122,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.63724031412242e-09,11.77068612727534,0,0,0.0,453.9494611743028,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,816.6448043615297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02700290453987494,0.000854353077064496,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6050077101080887,0.6050077101080887,0.5808949856203374,0.5808949856203374,0.657311025795893,0.657311025795893,0.9761649059818629,0.9761649059818629,0.7198555356211626,0.7198555356211626,0.33903800069349266,0.390813393845524,0.3655830558830786,0.31519768705559187,0.4427440822972996,0.29062819890012886,0.33292492731646134,0.33393845166816477,0.24577694453554336,0.42576396128725486,12.675975130207902,12.675975130207902,12.070879489761523,12.070879489761523,14.075214748217888,14.075214748217888,25.126897833308405,25.126897833308405,15.903976547077491,15.903976547077491,7.390940883502296,8.181507279171058,7.781993228736255,7.065247099182514,9.089523674289453,6.754778830479722,7.305128603354163,7.319246236779392,6.253717655543511,8.779900353550929,87.48952110369211,87.48952110369211,0.0,97.21057900410234,0.0,87.48952110369211,97.21057900410234,0,0
+2017/06/13 00:00:00,40.763301583357205,0,483.0263313030374,0,0,0,0.697522996149193,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.7176283130201099,2.5798884771892867e-09,9.550829275184833,0,0,0.0,429.7908025342212,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,588.9536551592495,1827.2824206162243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025716679659397487,0.0008136578184188898,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8155257735317684,0.8155257735317684,0.8160639313734248,0.8160639313734248,0.8434926960329552,0.8434926960329552,0.9510383682691461,0.9510383682691461,0.8912843202613996,0.8912843202613996,0.5549650993605245,0.6410749421112945,0.5435960473462965,0.5635492244335065,0.6782368714572089,0.4866004938015795,0.5617451812690758,0.493802860844079,0.4731549982132459,0.6385922172938816,19.026334289312032,19.026334289312032,19.044997788864478,19.044997788864478,20.01233737744093,20.01233737744093,24.104149051607266,24.104149051607266,21.772548074211542,21.772548074211542,11.448333931650112,13.62816005777347,11.184570818376471,11.651199331450371,14.668246947115676,9.946614343595812,11.608299847193024,10.095298755279401,9.675038297270817,13.560806663428593,40.763301583357205,40.763301583357205,0.0,45.29255731484134,0.0,40.763301583357205,45.29255731484134,0,0
+2017/06/13 01:00:00,23.774655465606894,0,39.132640125202784,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5775600419291006,0,0,0.0,3.6422876126586576,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0020834507460732216,6.591892932078707e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7964530653493241,0.7964530653493241,0.8146143287352916,0.8146143287352916,0.7926523567891268,0.7926523567891268,0.9163819231833182,0.9163819231833182,1.0171028809161538,1.0171028809161538,0.5138929773800281,0.6124979077571587,0.4865495803392414,0.5341524006384902,0.7853287921936399,0.4757231017790768,0.5655639331363039,0.4640957008989266,0.47646404741513004,0.7121111822131114,18.372777409269133,18.372777409269133,18.994752891401077,18.994752891401077,18.24437851413022,18.24437851413022,22.73438118296913,22.73438118296913,26.84530128346337,26.84530128346337,10.521880155659261,12.869074232508964,9.945571266432282,10.969735940583107,17.998695241956867,9.726307162291363,11.699275204506392,9.496451316859023,9.741152044260957,15.668373565924952,23.774655465606894,23.774655465606894,0.0,26.416283850674326,0.0,23.774655465606894,26.416283850674326,0,0
+2017/06/13 02:00:00,28.344172349661225,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248092631883309,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7570344563961698,0.7570344563961698,0.7784869277283819,0.7784869277283819,0.7480200465749264,0.7480200465749264,0.8590889152511085,0.8590889152511085,1.0922524619710494,1.0922524619710494,0.45577356142659436,0.5555233326502018,0.4238470419482186,0.47789558224367507,0.8182095730210269,0.41889727740681104,0.5129584874193015,0.399542481963023,0.4245623026663309,0.7105685365633589,17.07095290547504,17.07095290547504,17.771230349830816,17.771230349830816,16.78256174875881,16.78256174875881,20.57638437846083,20.57638437846083,30.160758369428635,30.160758369428635,9.335511528210517,11.461429312442803,8.745723909001015,9.76989997472171,19.119530593426376,8.65820428653818,10.501650807528549,8.326059845647919,8.758457739624802,15.621751025978952,28.344172349661225,28.344172349661225,0.0,31.493524832956915,0.0,28.344172349661225,31.493524832956915,0,0
+2017/06/13 03:00:00,23.722019721579883,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249242979020925,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6785263846002566,0.6785263846002566,0.6988840040079356,0.6988840040079356,0.6682266175958227,0.6682266175958227,0.7570054980384613,0.7570054980384613,1.0678972707886063,1.0678972707886063,0.39777986351327654,0.4955193937039491,0.3627070642399371,0.4199189204568095,0.8368464412499017,0.36320124054248665,0.45657383792942186,0.3394598213403691,0.37038179642102986,0.6993418314248693,14.676584609706424,14.676584609706424,15.27194881475836,15.27194881475836,14.38219361154377,14.38219361154377,17.070020894570206,17.070020894570206,29.064131353710593,29.064131353710593,8.296608562376832,10.131065116085693,7.738176552713298,8.676182493866648,19.775049773146847,7.745680419023216,9.350858295127736,7.396920720490215,7.855888324892732,15.285543981805134,23.722019721579883,23.722019721579883,0.0,26.357799690644313,0.0,23.722019721579883,26.357799690644313,0,0
+2017/06/13 04:00:00,42.806880181356355,0,88.72588128136032,0,0,0,0.0157298840264204,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,2.757951206266282,0.0,0.5250655414295287,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,38.968039969649965,0.0,0.0,0.0,0.0,19.863606187047225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6855853716524012,0.6855853716524012,0.7037997544115897,0.7037997544115897,0.6737432546328115,0.6737432546328115,0.7528553472872934,0.7528553472872934,0.9987075318284007,0.9987075318284007,0.35759666780339144,0.4275751435118006,0.3210858953713232,0.3788775574076664,0.5596537334117285,0.32074626527874334,0.40933935340729033,0.29435929199856375,0.3279524140792377,0.5123956829713564,14.880997650733875,14.880997650733875,15.418394804119387,15.418394804119387,14.539300714550677,14.539300714550677,16.936821302588783,16.936821302588783,26.06526125161939,26.06526125161939,7.661187152673534,8.812336485459085,7.143447528569766,7.989121376306073,11.5587426471876,7.13889702615478,8.492177181583713,6.800282631352303,7.236496808049154,10.489485736516599,42.806880181356355,42.806880181356355,0.0,47.56320020150706,0.0,42.806880181356355,47.56320020150706,0,0
+2017/06/13 05:00:00,74.80067715116498,0,212.9421150752648,0,0,0,0.03297486841945846,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,1.4565431342927908,0.0,0.5251161184968575,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,129.91317778187044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8823193522892746,0.8823193522892746,0.8970123657319187,0.8970123657319187,0.8710809950251245,0.8710809950251245,0.9222920826934539,0.9222920826934539,1.015373296215456,1.015373296215456,0.40708488458739467,0.4912778450755564,0.3708003425392889,0.4265644308263017,0.7739003648570224,0.3644390867353187,0.45333433384579697,0.33777710290499396,0.3697812919049847,0.6928735086966238,21.435191745490087,21.435191745490087,21.9898158941904,21.9898158941904,21.016942668435007,21.016942668435007,22.964583037911595,22.964583037911595,26.77141803033072,26.77141803033072,8.453586080723895,10.042917796380038,7.8623799968354575,8.79421845819678,17.619860582357802,7.764522276597589,9.28890491598797,7.37311113385455,7.846587513747508,15.094306857178893,74.80067715116498,74.80067715116498,0.0,83.11186350129442,0.0,74.80067715116498,83.11186350129442,0,0
+2017/06/13 06:00:00,86.86799710738038,0,642.9702112513288,0,0,0,0.09472258996036177,0.0,10.679537574073862,0.0,73.80580873715317,0,1.762725171794338,2.521597789382496e-09,0.5252030318770263,0,0,0.0,412.2829199197919,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.688617075573955,23.331144168394417,0.0,334.51833497101546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03423221029934269,0.001083083272052252,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0616601376712882,1.0616601376712882,1.061995693579389,1.061995693579389,1.0529294661750424,1.0529294661750424,1.0552269591265864,1.0552269591265864,1.005621408528306,1.005621408528306,0.4258758652740234,0.511345816698868,0.38873540094837056,0.4437457138236495,1.0166538099081774,0.4061549543145407,0.49413221941403035,0.37795723928253433,0.4109362418694194,0.8838465458325938,28.786650855911816,28.786650855911816,28.801543987080223,28.801543987080223,28.400569874891076,28.400569874891076,28.501902681834153,28.501902681834153,26.35694275699447,26.35694275699447,8.781900341888033,10.466829391668838,8.14757598798765,9.1081747602355,26.82610741984638,8.437731304180204,10.102151534665197,7.974539958324314,8.519643781231252,21.49242836677999,86.86799710738038,86.86799710738038,0.0,96.5199967859782,0.0,86.86799710738038,96.5199967859782,0,0
+2017/06/13 07:00:00,145.2468663241388,0,806.040203772775,0,0,0,0.0,0.0,8.38205293619271,0.0,69.33401494192633,0,39.38090929596695,0.00018407955317143766,27.093712700513716,0,0,0.10915967865508117,539.753400250039,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.042914177488215084,0.0013577746620778257,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3724921089153443,0.3724921089153443,0.40024469925995365,0.40024469925995365,0.3649561007724723,0.3649561007724723,0.882787859586488,0.882787859586488,0.3120765570796812,0.3120765570796812,0.10965230866393975,0.07006050426318791,0.07101721193067002,0.0488945455636858,0.2858669041469476,0.07565046581103571,0.05062040494633337,0.05458508265455484,0.0013459223161060273,0.228941768318528,7.888695494818194,7.888695494818194,8.33783009348869,8.33783009348869,7.7724113248837625,7.7724113248837625,21.452740439117292,21.452740439117292,7.024391372657902,7.024391372657902,5.249028658743001,5.101630216003329,5.104425409149371,5.049493508856571,6.697564617711549,5.118499177709822,5.053049584610534,5.061686029027243,5.000037499101239,6.087481689188991,145.2468663241388,145.2468663241388,0.0,161.3854070268209,0.0,145.2468663241388,161.3854070268209,0,0
+2017/06/13 08:00:00,160.32707987317187,0,837.365472264454,0,0,0,0.0,0.0,11.276247110228917,0.0,83.2008179303116,0,39.380909295966944,0.0002500411490818312,25.610861694901754,0,0,0.1484224691168683,517.8038771824398,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04458195798554728,0.0014105420744745115,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.0464977905209002,0.0464977905209002,0.028189263454369996,0.028189263454369996,-0.03383776585675057,-0.03383776585675057,0.9358326877439018,0.9358326877439018,0.16561154449259335,0.16561154449259335,0.07961146022228212,-0.019325903764879398,-0.032722704709642746,-0.0021821874487975585,0.11424269638846019,0.028684966013873558,-0.05220240890665785,-0.031516840401476516,-0.03788302170069029,0.06643120633995131,5.044759744664887,5.044759744664887,5.016449919997385,5.016449919997385,5.0237031750248065,5.0237031750248065,23.497267851309076,23.497267851309076,5.56844509828656,5.56844509828656,5.131236674572094,5.00773157096846,5.022166651925204,5.000098574602731,5.270327616687879,5.017033565387479,5.0564176522971565,5.0205629562046,5.029709684462404,5.091371550927391,160.32707987317187,160.32707987317187,0.0,178.14119985907985,0.0,160.32707987317187,178.14119985907985,0,0
+2017/06/13 09:00:00,178.90948044295905,0,864.8871007119584,0,0,0,0.114499501262528,0.0,11.128561489866103,0.0,106.27511244621549,0,39.380909295966944,0.00018960128157205028,20.866216374214986,0,0,0.11265792725816552,492.12574140298676,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,446.73388497790654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04604722986954608,0.0014569022555054765,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.0810616299859722,-0.0810616299859722,-0.17262834091947457,-0.17262834091947457,-0.02605950124432986,-0.02605950124432986,1.0019616684110126,1.0019616684110126,0.20694688564238442,0.20694688564238442,0.13300749049580357,-0.010280496390743216,-0.010554536662904315,0.040135950920668226,0.06755120633035057,-0.030202239312308116,-0.01744221485157227,0.0361896726382165,-0.0419398342754741,0.037802553112680194,5.13606274043461,5.13606274043461,5.617698074224464,5.617698074224464,5.014058088713853,5.014058088713853,26.20232080814985,26.20232080814985,5.8882048026021465,5.8882048026021465,5.36650052890495,5.002187817377234,5.002306010893946,5.033348733958022,5.094479122112176,5.018883257401001,5.006297816960597,5.027112881728115,5.036414012784832,5.0295835957693384,178.90948044295905,178.90948044295905,0.0,198.78831160328784,0.0,178.90948044295905,198.78831160328784,0,0
+2017/06/13 10:00:00,210.18038228857532,0,950.7573922878119,0,0,0,0.4584262442160313,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,0.00012807445418913096,18.60811735319767,0,0,0.07615436212138738,489.3066552626167,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1830.8928520921877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05061902779774196,0.0016015507551475569,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.02144229221976078,-0.02144229221976078,-0.14730773144732487,-0.14730773144732487,0.06695782320505932,0.06695782320505932,1.0310796574630743,1.0310796574630743,0.309425482127202,0.309425482127202,0.17620035594850483,-0.05255104425436043,6.36125595228074e-06,0.042384693863924155,0.0896136556050244,-0.04849347379988109,-0.021664277908561274,0.07921784895307082,-0.09430985546752327,0.04467998002872839,5.009517704673442,5.009517704673442,5.449624411487477,5.449624411487477,5.092826234734048,5.092826234734048,27.44643568483788,27.44643568483788,6.990012630732252,6.990012630732252,5.643560017998553,5.057173836139427,5.000000000837659,5.037190665693274,5.166297289513011,5.048684784001409,5.009715796885715,5.129941811864441,5.184190669289322,5.041328123042575,210.18038228857532,210.18038228857532,0.0,233.53375809841702,0.0,210.18038228857532,233.53375809841702,0,0
+2017/06/13 11:00:00,225.4131207640857,0,1006.770760792746,0,0,0,0.7060482557079694,0.0,16.693521233099577,0.0,147.76209134187457,0,39.380909295966944,3.73112692432404e-05,20.87051332616731,0,0,0.022192750617548714,492.13845661023856,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2869.7047487012505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05360122102642013,0.001695905270142776,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.08109305858463649,0.08109305858463649,-0.07667679165096786,-0.07667679165096786,0.18946697838937232,0.18946697838937232,1.051325383646502,1.051325383646502,0.4538848173377732,0.4538848173377732,0.08179304897457718,0.018623191355785437,0.05744204015653668,0.012067502507813884,0.006891565453286488,0.022041732335530754,0.005967466322631558,0.022842358715447306,-0.03333073517279928,-0.027969784833379085,5.136168298244627,5.136168298244627,5.121737118660363,5.121737118660363,5.744275055587423,5.744275055587423,28.32993319937033,28.32993319937033,9.299400697757704,9.299400697757704,5.138529941329082,5.0071795266643875,5.068313227380713,5.003014522100656,5.000983144904623,5.010057308243276,5.000737159528953,5.010801222389659,5.022998117248008,5.016194753562942,225.4131207640857,225.4131207640857,0.0,250.45902307120633,0.0,225.4131207640857,250.45902307120633,0,0
+2017/06/13 12:00:00,204.78463336690862,0,968.444200493442,0,0,0,0.7489196256710067,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,5.988565153111445e-05,18.523955973398124,0,0,0.035629202096098635,489.28881237199994,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3051.8591993002947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05156068656734645,0.0016313441822275346,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.13282324063213982,0.13282324063213982,-0.05608794813746982,-0.05608794813746982,0.24474224957680946,0.24474224957680946,1.059260464760421,1.059260464760421,0.4998746452626767,0.4998746452626767,0.13217061454928425,0.06452103475966413,-0.05782666254991482,0.11977668537187869,0.0775915948556277,0.14552891674085316,0.051991496913224015,0.035035941859547934,0.016675045821870807,0.043759861203657296,5.365485048209862,5.365485048209862,5.065130019469777,5.065130019469777,6.243157498923992,6.243157498923992,28.680262251141798,28.680262251141798,10.222384040158687,10.222384040158687,5.361899501805212,5.086191514185558,5.069231255634136,5.297168632802453,5.124660035069439,5.438821084870199,5.055962632715804,5.025411620641563,5.00575599399366,5.03964332097307,204.78463336690862,204.78463336690862,0.0,227.53848151878736,0.0,204.78463336690862,227.53848151878736,0,0
+2017/06/13 13:00:00,202.42496657018626,0,907.3807628591933,0,0,0,0.7784363228904531,0.0,16.630907756533322,0.0,129.2730206906943,0,39.380909295966944,4.0109899462700195e-05,16.36165239420168,0,0,0.023868807175661883,463.727487645216,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3177.6662160479727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04830962391760371,0.0015284828261672792,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1586906381505939,0.1586906381505939,-0.03264448230964133,-0.03264448230964133,0.28074502867506573,0.28074502867506573,1.0502852739879145,1.0502852739879145,0.5149073370217895,0.5149073370217895,0.1134612347757669,0.0974626733358095,-0.06630384020020855,0.16789245764682983,0.08804100446686391,0.24055890196094928,0.1653670898679298,-0.06072360937557904,0.12187349561168836,0.05885194122865127,5.521876200803362,5.521876200803362,5.022060796428491,5.022060796428491,6.637085735962316,6.637085735962316,28.284180999124047,28.284180999124047,10.543881235112082,10.543881235112082,5.266639887979778,5.196716946960507,5.091021451311917,5.584230248482925,5.160509728508131,6.200920503239573,5.5667662110462715,5.076342746774785,5.307671052144158,5.071708371981458,202.42496657018626,202.42496657018626,0.0,224.91662952242916,0.0,202.42496657018626,224.91662952242916,0,0
+2017/06/13 14:00:00,186.2646012551783,0,868.1108311874439,0,0,0,0.6589903943157004,0.0,16.630907756533322,0.0,115.5196477718057,0,39.380909295966944,2.903892587175399e-05,14.07411699763075,0,0,0.017283000475758727,459.95449429271065,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2661.2637260445035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046218863667899575,0.0014623326292467543,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.12709119091274765,0.12709119091274765,-0.05294100162639909,-0.05294100162639909,0.2538712714444192,0.2538712714444192,1.029531954526848,1.029531954526848,0.47605245046807587,0.47605245046807587,0.05964696869882864,0.047505585487782144,-0.011231924197428458,0.043144411853024756,-0.02221488062182358,0.10838545552811447,0.09027952630917266,-0.014938318389012457,0.04459745559710793,-0.053688973257501924,5.334598416241988,5.334598416241988,5.058025613289075,5.058025613289075,6.337881618940571,6.337881618940571,27.379513494470885,27.379513494470885,9.732902756458486,9.732902756458486,5.073659177126771,5.046721218503492,5.00261150958714,5.038535963493359,5.0102159422548596,5.243304684247789,5.168778701482211,5.004619432359135,5.041175583406883,5.0596770271118885,186.2646012551783,186.2646012551783,0.0,206.9606680613092,0.0,186.2646012551783,206.9606680613092,0,0
+2017/06/13 15:00:00,180.01580693447798,0,861.1767470617895,0,0,0,0.5821085829002239,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,4.915379497802494e-05,14.093444979655478,0,0,0.02926102207958009,453.00843214545233,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2334.880344241532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0458496878929274,0.0014506521650633777,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.09330200306134363,0.09330200306134363,-0.04358501052795143,-0.04358501052795143,0.22386248215507742,0.22386248215507742,1.0116532394880025,1.0116532394880025,0.46631714957525805,0.46631714957525805,0.030197139744287706,0.03920188701631108,-0.031537149620463306,-0.03654005416472818,-0.07887451894331447,0.011048045453636088,0.022477403601305436,-0.036594345845709725,-0.06156851122729636,-0.026909171398835318,5.18027344225105,5.18027344225105,5.039327122430379,5.039327122430379,6.03966243753365,6.03966243753365,26.61288653990306,26.61288653990306,9.539915719763215,9.539915719763215,5.018876880902539,5.031814473413249,5.020589467160349,5.027640458343356,5.128817605681732,5.002526702567479,5.010458826973007,5.027722661395956,5.07848233891373,5.014989792050699,180.01580693447798,180.01580693447798,0.0,200.0175632605311,0.0,180.01580693447798,200.0175632605311,0,0
+2017/06/13 16:00:00,202.40332837213867,0,906.1978683331406,0,0,0,0.6463801155022001,0.0,16.693521066485914,0.0,131.64086955684016,0,39.380909295966944,2.848968599522031e-05,14.041619847657413,0,0,0.016962082907227293,444.8063235871597,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2604.1365368188854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0482466457368588,0.0015264902404279236,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.11799986492094665,0.11799986492094665,0.09771400658840271,0.09771400658840271,0.26493220074068,0.26493220074068,1.0021626284354284,1.0021626284354284,0.5580843218431818,0.5580843218431818,-0.015084785706476256,0.056636392905492966,-0.047888113744916486,-0.05037895547854165,-0.09511475647489309,0.05828048195230472,0.0666988698316991,-0.051898470513580194,-0.08208071180156105,-0.09739707888677283,5.288411982523542,5.288411982523542,5.197733259244714,5.197733259244714,6.457347635830132,6.457347635830132,26.21079811172389,26.21079811172389,11.521679755993532,11.521679755993532,5.004710462653577,5.066410152354507,5.04747675012608,5.052544661785717,5.187349358928941,5.070322329018154,5.092109486383563,5.055762524140263,5.139506356259943,5.196452135152896,202.40332837213867,202.40332837213867,0.0,224.89258708015407,0.0,202.40332837213867,224.89258708015407,0,0
+2017/06/13 17:00:00,209.40997850765135,0,949.5239733497233,0,0,0,0.7865043384207248,0.0,16.7356839618177,0.0,133.89528835348938,0,39.380909295966944,5.8781214736110826e-06,18.611586679835032,0,0,0.0034986259489900254,488.1458920607006,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3204.4322481142112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05055335965987649,0.0015994730610399616,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2083495639905209,0.2083495639905209,0.3436905042052754,0.3436905042052754,0.41334972635080225,0.41334972635080225,1.0044835939780692,1.0044835939780692,0.6807858008995037,0.6807858008995037,-0.08060560757280393,0.10292794671024791,-0.02558290850461071,-0.005279646173258836,0.053343302366002314,-0.09491249952260725,0.07102658568837492,-0.04056180896485687,-0.0479158664958486,0.0285940092878973,5.900308409597443,5.900308409597443,7.457314066295524,7.457314066295524,8.561363203571688,8.561363203571688,26.30881651172588,26.30881651172588,14.741777910243073,14.741777910243073,5.134535728153537,5.219408207714139,5.01354856926973,5.000577020198847,5.058910954597025,5.1865531086017285,5.104452983975435,5.034060226923785,5.047531800438179,5.016925709742679,209.40997850765135,209.40997850765135,0.0,232.67775389739037,0.0,209.40997850765135,232.67775389739037,0,0
+2017/06/13 18:00:00,193.42310073365638,0,943.7012911143811,0,0,0,0.7100136793586174,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,8.371014392128162e-06,25.599448125157135,0,0,0.004983162381487513,517.81207780147,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2874.2694776261906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05024335574476732,0.0015896647532564615,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.17618039699516877,0.17618039699516877,0.34324730032333434,0.34324730032333434,0.4465307542828589,0.4465307542828589,0.990695131973987,0.990695131973987,0.6924346576038972,0.6924346576038972,-0.08555457012639477,0.09966701161485254,0.03151525081346463,0.08438646451699508,0.15875579246516736,-0.14829649542128867,0.0780002608359177,0.03004622880367252,-0.038076230556891744,0.1357781188312604,5.6434140329188835,5.6434140329188835,7.450951631446543,7.450951631446543,9.16026087122654,9.16026087122654,25.72950655454254,25.72950655454254,15.081397612590607,15.081397612590607,5.151568678008218,5.205719940913397,5.020560881931871,5.147456791316898,5.522305297693293,5.455686466780307,5.125976990503389,5.018688669388808,5.0300135243336115,5.381940930203129,193.42310073365638,193.42310073365638,0.0,214.91455637072931,0.0,193.42310073365638,214.91455637072931,0,0
+2017/06/13 19:00:00,186.40461893989524,0,930.1271759908294,0,0,0,0.6334272996897903,0.0,17.602640988533366,0.0,101.68988858149199,0,39.380909295966944,1.0298902019559025e-05,27.097742475311204,0,0,0.006131451180808037,539.7271669016632,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2547.970770322317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04952065980115186,0.0015667991573610968,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.10928218158975682,0.10928218158975682,0.3196657035521751,0.3196657035521751,0.4778669355096205,0.4778669355096205,0.9697564876126952,0.9697564876126952,0.6447580474625042,0.6447580474625042,-0.13963322832187028,0.0816505229743514,0.05751547091599846,0.03987528418912706,0.15925361564910576,-0.1253065146029087,0.05628809613072409,0.05774558138799131,-0.06016382573866979,0.1345014371885833,5.2473494353923655,5.2473494353923655,7.124451738292564,7.124451738292564,9.769323827419086,9.769323827419086,24.863712109762005,24.863712109762005,13.7285707874494,13.7285707874494,5.403956347425719,5.138047436313869,5.068488020668781,5.032916936796639,5.525589728820449,5.325260750279057,5.065595743523133,5.069037218762858,5.0749414687734316,5.374786457114055,186.40461893989524,186.40461893989524,0.0,207.11624326655027,0.0,186.40461893989524,207.11624326655027,0,0
+2017/06/13 20:00:00,190.55612979170928,0,849.718769982627,0,0,0,0.48149939901967653,0.0,21.36576828601745,0.0,106.16168237671882,0,39.380909295966944,3.0380267641752355e-05,23.1662400537187,0,0,0.01809210563108082,494.79715275155456,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1912.98200276197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045239656706232784,0.0014313512035431745,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.023739083637062938,-0.023739083637062938,0.012446594403537585,0.012446594403537585,0.2461472041137092,0.2461472041137092,0.9502807985914756,0.9502807985914756,0.5293704237887277,0.5293704237887277,-0.03747120825043943,0.04952776488572563,-0.06909140542325858,-0.07140325621735073,0.08030266598110476,-0.1311629674487053,0.040748042980551895,-0.08631838890132845,-0.0660171790040076,0.046913189941729695,5.011665939740951,5.011665939740951,5.00320689642065,5.00320689642065,6.257507474610932,6.257507474610932,24.07369697665915,24.07369697665915,10.86242334684836,10.86242334684836,5.029067227076155,5.050783904396695,5.098837503857425,5.105564051567981,5.133526081894686,5.35639824980602,5.0343737340504475,5.154288027361602,5.090235946724476,5.045563140570678,190.55612979170928,190.55612979170928,0.0,211.7290331018992,0.0,190.55612979170928,211.7290331018992,0,0
+2017/06/13 21:00:00,195.17904459897062,0,846.7627941973242,0,0,0,0.30360345759623025,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,0.00011922026754723197,25.553365872328033,0,0,0.07102821323490108,527.2785933711922,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1189.23261018174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04508227836591229,0.0014263718625571863,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1733768653929432,-0.1733768653929432,-0.1919947433400936,-0.1919947433400936,0.08602595788529727,0.08602595788529727,0.9269903129376028,0.9269903129376028,0.38056120819319955,0.38056120819319955,-0.025803748151573665,-0.006078099223192839,-0.07906792637582732,-0.11386458075240266,0.003285420396731228,-0.08148689042681156,-0.04276349796625277,-0.12098951468891743,-0.12693612487946562,0.007886125696320002,5.62307341626412,5.62307341626412,5.764298642546038,5.764298642546038,5.153244054632324,5.153244054632324,23.14858014987817,23.14858014987817,8.01589050805886,8.01589050805886,5.013783496840929,5.000764745847377,5.129450301346566,5.268540115614584,5.000223441040035,5.1374945164535575,5.037858458225301,5.303221124844242,5.333781836955268,5.001287387947372,195.17904459897062,195.17904459897062,0.0,216.86560510996736,0.0,195.17904459897062,216.86560510996736,0,0
+2017/06/13 22:00:00,137.99439174483388,0,663.4420589174706,0,0,0,0.0,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,0.00011890296036051574,20.868525155569884,0,0,0.0708792548519889,503.6645933561701,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03532214663272212,0.001117568097892081,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4473766136331461,-0.4473766136331461,-0.2485011022255467,-0.2485011022255467,-0.2012043163089342,-0.2012043163089342,0.8022517242829442,0.8022517242829442,0.06520637739318436,0.06520637739318436,-0.1221240747165461,-0.11139833948573949,-0.15283833509085598,-0.18980456309428323,-0.06942985069384985,-0.1655811962490617,-0.17338536340507574,-0.19241852938596815,-0.23744462421413254,-0.10656126402162086,9.176146247185798,9.176146247185798,6.281735702014757,6.281735702014757,5.839511072922605,5.839511072922605,18.569851515245205,18.569851515245205,5.088032641866661,5.088032641866661,5.308938366176164,5.2570269283296795,5.484055236430677,5.746933771815165,5.099808398486289,5.568236534455721,5.62313457682157,5.7676817812672425,6.169954537494618,5.235179594179812,137.99439174483388,137.99439174483388,0.0,153.32710193870432,0.0,137.99439174483388,153.32710193870432,0,0
+2017/06/13 23:00:00,90.32834543524241,0,487.5027497487627,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,0.0037500910162821927,11.810635983240376,0,0,2.2488082671246326,432.0184127128219,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,365.94553286683697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,594.0015110866459,0.0,0.0,0,0,0,0,0,0,0,0,0.025955007493160886,0.0008211983449509596,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.4965968801528732,-0.4965968801528732,-0.4179353921703776,-0.4179353921703776,-0.4502677959461533,-0.4502677959461533,0.6010802427784598,0.6010802427784598,-0.2251466415386282,-0.2251466415386282,-0.2144161104432123,-0.21432187081982698,-0.17751473671765855,-0.28112023792435936,-0.1653243063097647,-0.27647091635896953,-0.27409310785805885,-0.23091058172631268,-0.3340398610799211,-0.21905738642323624,10.153581070934607,10.153581070934607,8.641318558598229,8.641318558598229,9.230675456138684,9.230675456138684,12.575697182402067,12.575697182402067,6.051650062079318,6.051650062079318,5.953604619236742,5.952764915928427,5.653210344583016,6.6414786193254685,5.566472634509182,6.587464240508282,6.5601918695552115,6.10630817723947,7.320661193409634,5.995420092515431,90.32834543524241,90.32834543524241,0.0,100.36482826138045,0.0,90.32834543524241,100.36482826138045,0,0
+2017/06/14 00:00:00,39.34575420043711,0,480.34434756427646,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5799095969204847e-09,9.54843320143402,0,0,0.0,427.10881879546025,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025573888858582618,0.000809140017014506,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.30435767772619676,-0.30435767772619676,-0.2471713439027394,-0.2471713439027394,-0.19344005473308667,-0.19344005473308667,0.5903657845758287,0.5903657845758287,0.12082950348850457,0.12082950348850457,-0.13653627370758353,-0.06087415945481315,-0.10523300957643354,-0.18062881321018154,0.1286387555393475,-0.2419341663879755,-0.1481904471079736,-0.17564105930552754,-0.26666984372216057,0.027340205685467047,6.925121843304865,6.925121843304865,6.268020136039496,6.268020136039496,5.775867602218526,5.775867602218526,12.305534958658328,12.305534958658328,5.302419105814963,5.302419105814963,5.38622168920017,5.076721827063423,5.229350386156042,5.676362035476245,5.342802685165381,6.214724700528507,5.455034341785918,5.639475468121148,6.476583478610337,5.015473870895363,39.34575420043711,39.34575420043711,0.0,43.71750466715235,0.0,39.34575420043711,43.71750466715235,0,0
+2017/06/14 01:00:00,23.74887416118273,0,51.134549545387394,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5517787375049367,0,0,0.0,15.644197032843262,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.00272244129349817,8.613614482815857e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.25685312424726153,-0.25685312424726153,-0.2017651818951808,-0.2017651818951808,-0.13366238928654578,-0.13366238928654578,0.5137295444827412,0.5137295444827412,0.33052479319793915,0.33052479319793915,-0.17614482805103068,-0.08069127966283769,-0.14984739677700618,-0.21830685982079429,0.24186854033892866,-0.2938477105203936,-0.17024999977745478,-0.22952698767826085,-0.3135058072684092,0.1083546261145246,6.369580959444448,6.369580959444448,5.844206103341676,5.844206103341676,5.370121388534415,5.370121388534415,10.518339520725377,10.518339520725377,7.271870402602801,7.271870402602801,5.643153913437146,5.134821947191142,5.465276958055256,5.988597074413519,6.214064175209984,6.7940086800971216,5.60077373141317,6.093060781071074,7.043049121351544,5.243166219635725,23.74887416118273,23.74887416118273,0.0,26.3876379568697,0.0,23.74887416118273,26.3876379568697,0,0
+2017/06/14 02:00:00,28.370090066556823,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.550726980083929,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.23715431617539653,-0.23715431617539653,-0.1859927282761506,-0.1859927282761506,-0.11537268681065589,-0.11537268681065589,0.46732787545509125,0.46732787545509125,0.41392226360348056,0.41392226360348056,-0.2042098141935443,-0.10222044079011189,-0.18286041712237183,-0.24660641145866963,0.2706411940308074,-0.3350039640650233,-0.20011541864950985,-0.2725531969632692,-0.3531163000796028,0.1203012658624489,6.167088687255898,6.167088687255898,5.717189533582456,5.717189533582456,5.275704924079605,5.275704924079605,9.559761744706364,9.559761744706364,8.571296689651845,8.571296689651845,5.864823902676491,5.216400845554375,5.693201968797524,6.262215727549645,6.521024093633201,7.334135041920291,5.830433431542332,6.542656947374368,7.594603929166482,5.299778992029985,28.370090066556823,28.370090066556823,0.0,31.52232229617425,0.0,28.370090066556823,31.52232229617425,0,0
+2017/06/14 03:00:00,23.721935803688943,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.524840380011151,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.2234607157244864,-0.2234607157244864,-0.17310519353898518,-0.17310519353898518,-0.10059423371850018,-0.10059423371850018,0.4340176011780206,0.4340176011780206,0.4523338338955864,0.4523338338955864,-0.20436505960344908,-0.0958329130261627,-0.18425184433273223,-0.24613024404466718,0.29984875952456536,-0.35772971669972004,-0.21376402982107118,-0.2949496881789101,-0.3747200810953748,0.1412899761086334,6.0359261467351075,6.0359261467351075,5.621119770102624,5.621119770102624,5.20956718077953,5.20956718077953,8.928854444540647,8.928854444540647,9.26986229074626,9.26986229074626,5.866141670742124,5.19019033206051,5.7038070828375,6.257333752693668,6.868300592342749,7.6631774691274614,5.94780200231223,6.807536896920794,7.923537913656006,5.413607543801589,23.721935803688943,23.721935803688943,0.0,26.35770644854327,0.0,23.721935803688943,26.35770644854327,0,0
+2017/06/14 04:00:00,40.29602733026922,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.26293900771674356,0.0,0.5249547729183563,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.1852458548716107,-0.1852458548716107,-0.13802209480022076,-0.13802209480022076,-0.06540741786362667,-0.06540741786362667,0.439657601943628,0.439657601943628,0.5723663349930735,0.5723663349930735,-0.237000566154825,-0.12977280365256266,-0.21760505428379545,-0.2793954950469586,0.2555434642333994,-0.39458588449036586,-0.2511900043133112,-0.33230005633359316,-0.41202178399218925,0.16153175864495736,5.711432696209485,5.711432696209485,5.3946804168200515,5.3946804168200515,5.088576416788513,5.088576416788513,9.032322394764961,9.032322394764961,11.862897920463283,11.862897920463283,6.165572337532296,5.34887796048254,5.982238330075404,6.621334725297473,6.355612229821531,8.243579473956729,6.309697018285533,7.296446346565787,8.538377551776634,5.5407517523520795,40.29602733026922,40.29602733026922,0.0,44.77336370029913,0.0,40.29602733026922,44.77336370029913,0,0
+2017/06/14 05:00:00,73.81524502014842,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.5041326165249131,0.0,0.5250693736676407,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.017932636654588257,0.017932636654588257,0.059173983618625976,0.059173983618625976,0.13346753823917282,0.13346753823917282,0.6047404699253851,0.6047404699253851,0.7877089747381512,0.7877089747381512,-0.20374597545069484,-0.09930068963143723,-0.18528091312257258,-0.2476273028272961,0.4224145457258672,-0.3587494200431786,-0.21838581659141326,-0.2976915268927491,-0.3775508820710901,0.2889592732601626,5.006656951717545,5.006656951717545,5.072495430032532,5.072495430032532,5.369042215359187,5.369042215359187,12.669130601075253,12.669130601075253,18.07829336900174,18.07829336900174,5.86089271195344,5.204209828820737,5.711702401120434,6.272714674792255,8.720287079060512,7.678456523680609,5.989313757570727,6.841419216648532,7.968113182718625,6.734615197909747,73.81524502014842,73.81524502014842,0.0,82.01693891127603,0.0,73.81524502014842,82.01693891127603,0,0
+2017/06/14 06:00:00,84.17616410541632,0,642.5174273567826,0,0,0,0.3471052995323463,0.0,8.583882674576978,0.0,73.80580873715317,0,0.9143702328885001,2.521618471008791e-09,0.5249971587436792,0,0,0.0,411.8301360252457,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1395.5235741789068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034208103749417,0.0010823205576162545,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1971358836171435,0.1971358836171435,0.23242952662189378,0.23242952662189378,0.32693233756663675,0.32693233756663675,1.0086527218822599,1.0086527218822599,0.8701478100368732,0.8701478100368732,-0.1512838337245696,-0.04665682378952836,-0.11733682990107236,0.10275122874029063,0.5527788701979319,-0.29404122054826487,-0.15400281073318303,-0.21605621160740532,0.04945163643830468,0.4041327243812716,5.805847883454177,5.805847883454177,6.120943984274845,6.120943984274845,7.222547142471683,7.222547142471683,26.485396840900506,26.485396840900506,20.982446758525384,20.982446758525384,5.474248970922147,5.045066475677189,5.2851779785277415,5.2186550938126715,11.397178085571426,6.796380555133723,5.491467041422581,5.968277980035552,5.050627888806289,8.40338123646572,84.17616410541632,84.17616410541632,0.0,93.52907122824035,0.0,84.17616410541632,93.52907122824035,0,0
+2017/06/14 07:00:00,146.82123051092924,0,806.1467203173945,0,0,0,0.7294144011138299,0.0,7.999873830418337,0.0,69.33401494192633,0,39.380909295966944,0.0006282787482756082,27.08840629445268,0,0,0.37976812242024904,539.5893083508932,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2966.66401346327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6999852239807227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,169.29348974300297,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04291984850794813,0.0013579540891891526,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.03717742206929569,0.03717742206929569,0.06912210887899145,0.06912210887899145,0.14159604706372686,0.14159604706372686,1.1350623239783626,1.1350623239783626,0.6249492797547541,0.6249492797547541,-0.17741675735648452,-0.18326001763252728,-0.16681107165681028,0.08845062613180127,0.3050548692636965,-0.2757081480518401,-0.2470022414873505,-0.25275551216185793,0.1185083233635881,0.19620216137061028,5.028613193113586,5.028613193113586,5.098925386715351,5.098925386715351,5.415403026134385,5.415403026134385,32.1373516739675,32.1373516739675,13.195461507199497,13.195461507199497,5.652488482407321,5.6962393498563415,5.576719428690595,5.162007307139561,6.933984583766886,6.578689672230254,6.266281283845771,6.326116399572115,5.290904403143642,5.798219691972065,146.82123051092924,146.82123051092924,0.0,163.13470056769916,0.0,146.82123051092924,163.13470056769916,0,0
+2017/06/14 08:00:00,161.98324845935065,0,837.2042027299156,0,0,0,1.1314052419379468,0.0,11.630822483174265,0.0,83.2008179303116,0,39.380909295966944,0.00022256984898843036,25.609478377374618,0,0,0.13476113073332746,517.6562689862851,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4740.342919607409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044573371876075026,0.0014102704159558211,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.24341066532594133,-0.24341066532594133,-0.2953196145298057,-0.2953196145298057,-0.142906218196708,-0.142906218196708,1.1494777124580065,1.1494777124580065,0.2395326711394905,0.2395326711394905,-0.16263325040090365,-0.2393419646382075,-0.23467029763039388,0.06011382625589643,-0.01695132797610069,-0.1961468100534764,-0.26220821207373074,-0.25968133987718167,0.1023953706275814,-0.07037847076459378,6.229633461031739,6.229633461031739,6.812089729335668,6.812089729335668,5.423132855741173,5.423132855741173,32.81647048564567,32.81647048564567,6.190671472997863,6.190671472997863,5.548160234702991,6.188771747973448,6.142711697074006,5.0748169393531555,5.005948314119664,5.797768635065367,6.427448727933893,6.399992654799803,5.217142477680682,5.102555002374032,161.98324845935065,161.98324845935065,0.0,179.98138717705626,0.0,161.98324845935065,179.98138717705626,0,0
+2017/06/14 09:00:00,179.6751774580418,0,864.6344423412814,0,0,0,1.19325240633656,0.0,11.393746067737203,0.0,106.27511244621549,0,39.380909295966944,0.00011994769151762986,20.860041427018334,0,0,0.07268184476347579,491.91305911480475,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4913.922728233896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.2408279595863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04603377815074549,0.001456476652499247,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.27832736633674526,-0.27832736633674526,-0.4684141912824931,-0.4684141912824931,-0.22387425755678192,-0.22387425755678192,1.1331945488757225,1.1331945488757225,0.20636892852089708,0.20636892852089708,-0.10411132347756748,-0.23852143613948595,-0.22279618481431607,0.13696397987409653,-0.158998480886633,-0.15762161462675636,-0.2562877115156148,-0.25325381718786827,0.0979910569767252,-0.11174897405395458,6.608922574543925,6.608922574543925,9.581141089028776,9.581141089028776,6.039772046820943,6.039772046820943,32.049848547421476,32.049848547421476,5.883241607514478,5.883241607514478,5.224484782390377,6.180615463246312,6.0297610872898275,5.388647190965983,5.52390516519641,5.514861028722336,6.363541461487657,6.331364350367863,5.198856601520575,5.25864839337072,179.6751774580418,179.6751774580418,0.0,199.63908606449087,0.0,179.6751774580418,199.63908606449087,0,0
+2017/06/14 10:00:00,210.68166456044167,0,950.4786858502488,0,0,0,1.2053261066504495,0.0,17.091304499026357,0.0,133.89528835348938,0,39.380909295966944,6.223913083200044e-05,18.53677819910193,0,0,0.036278495076958864,489.0678246920981,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5078.941503877109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05060418926056638,0.0016010812741746351,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.093301472472423,-0.093301472472423,-0.39611993455313205,-0.39611993455313205,-0.13062942202979763,-0.13062942202979763,1.116094496014042,1.116094496014042,0.33196479074401586,0.33196479074401586,-0.03248640350614731,-0.24639688715513516,-0.19233022841458797,-0.0013329341745863296,-0.20711291386489722,-0.04580841353639245,-0.3062703230085101,-0.24396136813392852,0.07935602969648006,-0.1450372587039875,5.180271391108732,5.180271391108732,8.268994597896977,8.268994597896977,5.353502456316633,5.353502456316633,31.25403565395152,31.25403565395152,7.291794836741346,7.291794836741346,5.021847647670498,6.2600663757192905,5.766976244198972,5.0000367788610305,5.889633151269777,5.04344224207496,6.949484676290098,6.2352175596742825,5.130395653089579,5.4358583205149245,210.68166456044167,210.68166456044167,0.0,234.09073840049075,0.0,210.68166456044167,234.09073840049075,0,0
+2017/06/14 11:00:00,226.1682926352964,0,1006.5362301612417,0,0,0,1.1493903080248369,0.0,16.986528298665572,0.0,147.76209134187457,0,39.380909295966944,2.4950588150258568e-05,20.88934844017624,0,0,0.015126481168068398,491.9109922481837,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4819.823582172427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053588734441880434,0.0016955102033118074,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.13331429181973103,0.13331429181973103,-0.2685227675779213,-0.2685227675779213,0.014791938378003444,0.014791938378003444,1.077112004167862,1.077112004167862,0.503899341752469,0.503899341752469,-0.013180855526725925,-0.2159007602499448,-0.17130445671451008,-0.04082272312675071,-0.08528030137053066,-0.1411144564791452,-0.19248664986775196,-0.18944718358087415,-0.013783181702653267,-0.07072495108521334,5.368194576850101,5.368194576850101,6.497235585041608,6.497235585041608,5.004529343747777,5.004529343747777,29.476599572545766,29.476599572545766,10.307500700809825,10.307500700809825,5.003596428451601,5.966882382590782,5.6082481600633685,5.034499854454452,5.150598131048582,5.4125796643878346,5.768226296070637,5.744119305379428,5.00393263377552,5.10356749140864,226.1682926352964,226.1682926352964,0.0,251.2981029281071,0.0,226.1682926352964,251.2981029281071,0,0
+2017/06/14 12:00:00,205.3452141878911,0,946.1111928723145,0,0,0,1.0181909295844536,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,4.2975480927972294e-06,18.585318008384156,0,0,0.002604197183119681,466.9888297557856,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4221.974277143698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05037166069939,0.0015937242325847923,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.29871847581876737,0.29871847581876737,-0.15550077165422332,-0.15550077165422332,0.13996862926766396,0.13996862926766396,1.0232831352480953,1.0232831352480953,0.6300953929521741,0.6300953929521741,0.039662795331643255,-0.256329571131131,-0.10301246660464236,0.005937709552143089,0.11546516369728281,-0.020709719234323475,-0.10786428574139924,-0.1291245157955043,0.02334021381122063,0.11503346094522104,6.854191541896739,6.854191541896739,5.50108452557788,5.50108452557788,5.40590096622374,5.40590096622374,27.110216923395157,27.110216923395157,13.332321140775775,13.332321140775775,5.032567028911515,6.363988127110147,5.2197688620703815,5.0007298261550375,5.276147344018341,5.008878459627169,5.240969252935301,5.345398432304336,5.011277195823396,5.274085071110534,205.3452141878911,205.3452141878911,0.0,228.16134909765677,0.0,205.3452141878911,228.16134909765677,0,0
+2017/06/14 13:00:00,202.67102899781443,0,925.5160208518606,0,0,0,0.89979291541581,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,2.7491524176536023e-09,16.31900874283461,0,0,0.0,481.886614445059,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3694.232331363176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049275158486039805,0.0015590316668794844,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3323920282638108,0.3323920282638108,-0.06739644284908633,-0.06739644284908633,0.1812191557749482,0.1812191557749482,1.0003841710483614,1.0003841710483614,0.6758841736918716,0.6758841736918716,0.030268996658742366,-0.22451437791050724,-0.1326946296526963,-0.008571299334699203,0.1508732041124733,0.024146649518590694,-0.1888704799735416,-0.12507402985712612,0.01153523847930982,0.1537500837016057,7.297723208553506,7.297723208553506,5.09404661666008,5.09404661666008,5.680796599927234,5.680796599927234,26.135828745541232,26.135828745541232,14.600626305259354,14.600626305259354,5.018966830093106,6.045739242991573,5.364777054267833,5.001520812219454,5.47167539920747,5.01206996373574,5.739588852070298,5.324054107074005,5.002754460740434,5.489853652592032,202.67102899781443,202.67102899781443,0.0,225.1900322197938,0.0,202.67102899781443,225.1900322197938,0,0
+2017/06/14 14:00:00,186.57680762283042,0,850.1182592064265,0,0,0,0.832271559519503,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.6936871054889827e-09,14.108295119257283,0,0,0.0,441.979205312169,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3398.26014876926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0452609258084122,0.0014320241431103437,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.35044408755564055,0.35044408755564055,0.16770734496344258,0.16770734496344258,0.24898072786140898,0.24898072786140898,0.9893676437117999,0.9893676437117999,0.7294105604390125,0.7294105604390125,0.014497191562706811,-0.1114873248996223,-0.14023992258363432,-0.0030180386011932395,0.14060953124384185,0.017852867948410248,-0.08748266294302091,-0.12678062285818417,0.013201620771639522,0.1398917184696791,7.55529852616894,7.55529852616894,5.58294107981834,5.58294107981834,6.286700955724314,6.286700955724314,25.674115508423583,25.674115508423583,16.198222941771604,16.198222941771604,5.004350635417936,5.257437946521037,5.407477320468288,5.000188551761312,5.409629866502101,5.006597859128405,5.158479640171606,5.3329639657030725,5.003607769161462,5.405454631997145,186.57680762283042,186.57680762283042,0.0,207.30756402536713,0.0,186.57680762283042,207.30756402536713,0,0
+2017/06/14 15:00:00,179.78635232960556,0,866.4084200549927,0,0,0,0.8463234797239845,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,2.6936871054889827e-09,14.067044295775533,0,0,0.0,458.2693661607353,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3459.5804738356246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0461282260382206,0.0014594649178233513,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.35485214817628535,0.35485214817628535,0.4099011959759233,0.4099011959759233,0.3226754042399143,0.3226754042399143,0.9845524660105827,0.9845524660105827,0.7919512053364005,0.7919512053364005,-0.020037243103314784,0.010430160707244826,-0.144670413173109,-0.003594280699128523,0.11658130880053136,-0.0206001023700224,0.04833856979593932,-0.13485945573474714,0.007047516479194411,0.11378431946435093,7.620299179967688,7.620299179967688,8.501828461263457,8.501828461263457,7.164809401383167,7.164809401383167,25.47376290622394,25.47376290622394,18.22075850050058,18.22075850050058,5.0083112166290675,5.002251982224493,5.433654239963829,5.000267426887149,5.281515133029046,5.008784718931594,5.04837421803596,5.376785937826568,5.001028144140392,5.268161453179289,179.78635232960556,179.78635232960556,0.0,199.76261369956174,0.0,179.78635232960556,199.76261369956174,0,0
+2017/06/14 16:00:00,203.3321204522059,0,921.0329142947809,0,0,0,1.6130136888890998,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.6936871054889827e-09,14.066420234589435,0,0,0.0,459.6583316317071,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3767.1059932164812,2223.765202181357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049036474572273975,0.0015514798742243456,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3967603065561988,0.3967603065561988,0.6739189103812654,0.6739189103812654,0.4239113924873225,0.4239113924873225,0.9948212746109037,0.9948212746109037,0.8701416595616311,0.8701416595616311,-0.02819218858585641,0.15588198072976084,-0.11102730387070439,-0.002035732839466031,0.13866503615143946,-0.030319853259366952,0.21824253475306457,-0.09642984482144133,0.0066492487423907625,0.1360795268730078,8.279633628420342,8.279633628420342,14.544324818166558,14.544324818166558,8.746868647177138,8.746868647177138,25.90210458150355,25.90210458150355,20.98221952051081,20.98221952051081,5.016453334232892,5.503546956025019,5.255316682326523,5.000085787197676,5.398369132620573,5.019030620688653,5.988013394916479,5.192568039141449,5.000915222857131,5.383639902463656,203.3321204522059,203.3321204522059,0.0,225.9245782802288,0.0,203.3321204522059,225.9245782802288,0,0
+2017/06/14 17:00:00,214.40314417072665,0,950.4397433068124,0,0,0,5.72607577841411,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,2.8036880906354693e-09,18.602573384975408,0,0,0.0,489.0651606437387,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,53.25035413352448,0.0,4025.0724703140254,8182.308232294723,0.0,155.86426945893805,0.0,0.0,3509.5759819602804,0.0,520.1283661619716,0.0,0.0,2992.422936661237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05060211593070882,0.001601015675463172,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4667241958904164,0.4667241958904164,0.8717892542908772,0.8717892542908772,0.5918339054562809,0.5918339054562809,0.997743854722478,0.997743854722478,0.9113396680005764,0.9113396680005764,0.06473952308177608,0.3302588921570229,0.05662822869095453,0.08292141499390923,0.24987400564008533,0.06166225077310511,0.3865771715864991,0.08259008250017894,0.08748356406340466,0.25194238802944224,9.54790295050536,9.54790295050536,21.043147982747712,21.043147982747712,12.342258666591675,12.342258666591675,26.024749670191,26.024749670191,22.539095955069556,22.539095955069556,5.086776354745723,7.268200903725273,5.066391004755687,5.142379630426106,6.295974256293263,5.078721544028085,8.112529846132489,5.14124373423499,5.158482906158824,6.317575318329816,214.40314417072665,214.40314417072665,0.0,238.22571574525182,0.0,214.40314417072665,238.22571574525182,0,0
+2017/06/14 18:00:00,204.9600686671652,0,943.5641703744806,0,0,0,11.675318469193686,0.0,17.358821905571183,0.0,110.93442390708215,0,39.380909295966944,2.9618098419028064e-09,25.610595086389303,0,0,0.0,517.6799402239509,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,518.8162071713667,0.0,3927.0322601967773,9410.77562711396,0.0,1063.0344807808551,439.1260463439269,0.0,11197.484039164367,0.0,1585.4597514203863,773.4053728053096,0.0,10490.402747327957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05023605533500877,0.0015894337733805065,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4851446424437023,0.4851446424437023,0.9610668497385173,0.9610668497385173,0.7461642209991677,0.7461642209991677,0.9901270402995905,0.9901270402995905,0.9214224401717278,0.9214224401717278,0.14609560704207777,0.4268458816713161,0.21820442109919627,0.15414666569042676,0.3154306202628591,0.1486854351708778,0.48129939703355457,0.24978179483750584,0.1609213791989017,0.3198117330240105,9.916832084210455,9.916832084210455,24.509390334460093,24.509390334460093,16.723621741124973,16.723621741124973,25.70579399559641,25.70579399559641,22.93062223515912,22.93062223515912,5.442248482699185,8.799259339835658,5.987667637064376,5.49238658804002,7.068312747883979,5.458082189874688,9.838609977496006,6.29501544448182,5.536668200521476,7.12640101438069,204.9600686671652,204.9600686671652,0.0,227.73340963018353,0.0,204.9600686671652,227.73340963018353,0,0
+2017/06/14 19:00:00,189.15124143724532,0,909.9949150066515,0,0,0,2.924311914333111,0.0,18.05838916712939,0.0,101.68988858149199,0,39.380909295966944,3.012719525571918e-09,27.097742475311204,0,0,0.0,519.6010373686661,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3351.3837551685747,973.652780765542,0.0,0.0,0.0,0.0,3221.64765770417,0.0,272.2047873359726,0.0,0.0,2270.570955444022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04844880331425431,0.0015328863652612618,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3717829888559505,0.3717829888559505,0.8497210572472792,0.8497210572472792,0.7535546618612431,0.7535546618612431,0.9715585571915744,0.9715585571915744,0.9106624958317241,0.9106624958317241,0.04285144073865494,0.41268723363812126,0.2221540638147804,0.045666782048544206,0.3277599249742074,0.04175711878577822,0.4697072203907232,0.2847930738777417,0.04623209789840802,0.3286514581429602,7.877650245548352,7.877650245548352,20.23637702634612,20.23637702634612,16.95921425199161,16.95921425199161,24.937559885632282,24.937559885632282,22.512947385766054,22.512947385766054,5.038014342365145,8.54988652467577,6.02382151586302,5.043174000876107,7.233861118544354,5.036097395890394,9.606654963860223,6.684793163223915,5.044249634712756,7.246081804938498,189.15124143724532,189.15124143724532,0.0,210.1680460413837,0.0,189.15124143724532,210.1680460413837,0,0
+2017/06/14 20:00:00,190.58099143396473,0,870.5089128068223,0,0,0,0.7003515452312546,0.0,21.170389358753855,0.0,106.16168237671882,0,39.380909295966944,2.910007546018245e-09,23.167658854383866,0,0,0.0,515.6053876813812,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2829.287693508568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04634653930959033,0.0014663721975525863,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.26058868761040227,0.26058868761040227,0.47555557887123245,0.47555557887123245,0.4940422969274626,0.4940422969274626,0.9516986148451865,0.9516986148451865,0.8441437285403263,0.8441437285403263,-0.027927599392201963,0.19789133384424976,0.13335212410981762,-0.042079506059363954,0.3174835380021179,-0.04319232502436437,0.3006664750404809,0.18415589113472086,-0.060568084963345065,0.30042593892070935,6.409820642128864,6.409820642128864,9.722954114076032,9.722954114076032,10.100280102872091,10.100280102872091,24.13070746099943,24.13070746099943,20.035679957751768,20.035679957751768,5.016145937204712,5.812046330390899,5.368403744476765,5.036656974331507,7.095430713784438,5.038621608881655,6.878541602617972,5.703073155826061,5.075952127635219,6.875526210733682,190.58099143396473,190.58099143396473,0.0,211.75665714884968,0.0,190.58099143396473,211.75665714884968,0,0
+2017/06/14 21:00:00,194.58444738344969,0,837.0828168838151,0,0,0,0.5096140516049624,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,5.4457569160535854e-06,25.610865637922522,0,0,0.0033004108388254103,517.6663438600792,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2027.0882107580828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044566909203717336,0.0014100659415072782,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.10023434091227194,0.10023434091227194,0.22820297582607973,0.22820297582607973,0.3158227651024415,0.3158227651024415,0.9266098895491187,0.9266098895491187,0.694377246239166,0.694377246239166,-0.046295024934286576,0.12723813295284075,-0.08586216554053024,-0.05383856990712455,0.1317492935954824,-0.07628341946413783,0.19200889302886065,-0.05716808555330801,-0.08510395568191188,0.10565871148029925,5.208069671851064,5.208069671851064,6.08045904654638,6.08045904654638,7.073478982018983,7.073478982018983,23.13364870867119,23.13364870867119,15.138603904622073,15.138603904622073,5.0443701856333405,5.335373137046943,5.152660869240719,5.06001009666376,5.359594161955997,5.120490912139786,5.76441148022225,5.067663082423792,5.149975749767833,5.231210654191457,194.58444738344969,194.58444738344969,0.0,216.20494153716632,0.0,194.58444738344969,216.20494153716632,0,0
+2017/06/14 22:00:00,137.00761797110198,0,651.6443077615202,0,0,0,0.10388461664143163,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,3.3982654794748216e-05,20.864743832945948,0,0,0.020606452063977196,491.9171150030076,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,400.02541598712236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03469402562250639,0.0010976947869653165,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.19301251626593016,-0.19301251626593016,-0.11335105554648844,-0.11335105554648844,0.01223607221055939,0.01223607221055939,0.8610929869905873,0.8610929869905873,0.34801815672188835,0.34801815672188835,-0.12004177871844732,-0.014997187289666447,-0.10161565759652996,-0.10664065392408292,-0.06661331103945387,-0.17923413966341503,0.01354155505760006,-0.1055459744224947,-0.1484986809619653,-0.05028010872665797,5.772436287968645,5.772436287968645,5.266121991173463,5.266121991173463,5.003099329994029,5.003099329994029,20.64959499207538,20.64959499207538,7.519878687168045,7.519878687168045,5.298486331527656,5.004655912969923,5.213846596637396,5.23553032678366,5.091873281971459,5.665943245369164,5.003795958823645,5.230717273774616,5.456931067807361,5.052338648726277,137.00761797110198,137.00761797110198,0.0,152.23068663455774,0.0,137.00761797110198,152.23068663455774,0,0
+2017/06/14 23:00:00,89.00724938715375,0,484.947845218261,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,5.85149306856613e-05,11.780222212157664,0,0,0.03549128746976911,431.67682516197505,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025818982483522157,0.0008168946084632434,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.42611213169203727,-0.42611213169203727,-0.3723734477329771,-0.3723734477329771,-0.23347211544184446,-0.23347211544184446,0.7216861744750331,0.7216861744750331,0.05671951376650417,0.05671951376650417,-0.14256926783595755,-0.11038941243700057,-0.11793572855507434,-0.23394113830282823,-0.11329840662621296,-0.21848506476952892,-0.11016316728630893,-0.13506394918530762,-0.27703048057289603,-0.13376249521641412,8.786124745157451,8.786124745157451,7.88684573512262,7.88684573512262,6.131045883740654,6.131045883740654,15.960046711075051,15.960046711075051,5.066605253590822,5.066605253590822,5.421138070656767,5.252389761087414,5.2880983544518045,6.135605236472529,5.26587469330282,5.990214994426935,5.251355710861077,5.3779303960930775,6.593916831845675,5.370676434512944,89.00724938715375,89.00724938715375,0.0,98.89694376350417,0.0,89.00724938715375,98.89694376350417,0,0
+2017/06/15 00:00:00,39.34475465066379,0,491.2582261574644,0,0,0,0.0,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.0,2.5799305366441813e-09,9.54743365166068,0,0,0.0,438.02269738864817,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.026154951838866573,0.0008275244446763817,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.15837960260375214,-0.15837960260375214,-0.06426090369253812,-0.06426090369253812,0.0003508256364761471,0.0003508256364761471,0.7394582712884321,0.7394582712884321,0.3717102289792872,0.3717102289792872,-0.043568781391409336,0.10990565825279366,-0.010637388691207438,-0.05811997140485568,0.19101321632130214,-0.13629891053673068,0.086375250858287,-0.04781224425682793,-0.13820653095610536,0.13113860251141132,5.519830203659339,5.519830203659339,5.085497786201358,5.085497786201358,5.000002547789137,5.000002547789137,16.511875365050273,16.511875365050273,7.876518151166664,7.876518151166664,5.039297838017944,5.250181356477455,5.0023423570742835,5.0699354538411825,5.756491807272127,5.384878897547381,5.154491435339821,5.047326418374254,5.395736813992286,5.356265752245136,39.34475465066379,39.34475465066379,0.0,43.7163940562931,0.0,39.34475465066379,43.7163940562931,0,0
+2017/06/15 01:00:00,23.774045348512765,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5769499248349735,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.0795861433913054,-0.0795861433913054,0.03748025064600781,0.03748025064600781,0.055904612720365496,0.055904612720365496,0.6866441720970301,0.6866441720970301,0.5435363446047013,0.5435363446047013,-0.07248309934649048,0.11348514228994833,-0.04074203021610451,-0.05957644765898698,0.2925967631642648,-0.1724300223476066,0.09911327395497624,-0.08368804121375331,-0.14089786798567494,0.21858119308926122,5.131153196473434,5.131153196473434,5.029081258416696,5.029081258416696,5.064704873173767,5.064704873173767,14.911844076366975,14.911844076366975,11.18320049543324,11.18320049543324,5.108781874696675,5.266752331691933,5.034363589695815,5.073485076900468,6.778713839021137,5.616277815834948,5.203439387336985,5.145025285848064,5.411313044355239,5.991088294419768,23.774045348512765,23.774045348512765,0.0,26.41560594279196,0.0,23.774045348512765,26.41560594279196,0,0
+2017/06/15 02:00:00,28.344221164326314,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248580778534225,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.045166940970816666,-0.045166940970816666,0.07572358374535634,0.07572358374535634,0.08023132820594348,0.08023132820594348,0.6590065065397294,0.6590065065397294,0.6144425319826966,0.6144425319826966,-0.08948423560777388,0.11425108457031297,-0.05807916882514932,-0.06363793912788014,0.32121157180028803,-0.19677835950293812,0.09321412191947819,-0.11005185947753231,-0.1551028097665593,0.23542435945558876,5.042233974061645,5.042233974061645,5.118728411468695,5.118728411468695,5.1332888804261785,5.1332888804261785,14.122558091788605,14.122558091788605,12.919605248733433,12.919605248733433,5.1658171323958015,5.270367338260584,5.069837278436637,5.083847839936212,7.145132631829824,5.802922727259443,5.179933871988837,5.250847760379699,5.498520339097382,6.1500843290261855,28.344221164326314,28.344221164326314,0.0,31.493579071473683,0.0,28.344221164326314,31.493579071473683,0,0
+2017/06/15 03:00:00,23.72204475529311,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.524949331615313,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.05333614232662182,-0.05333614232662182,0.06787379736827387,0.06787379736827387,0.062070289500839905,0.062070289500839905,0.5931979147723552,0.5931979147723552,0.6639402469293126,0.6639402469293126,-0.13329788128519088,0.07715970406789853,-0.10290070495451416,-0.10057891226170389,0.36224347154654746,-0.24459795270182164,0.053936446823677424,-0.15912214163001526,-0.19605246747391802,0.2502446440634609,5.058895138921855,5.058895138921855,5.095383833748798,5.095383833748798,5.079767022268442,5.079767022268442,12.376461944588101,12.376461944588101,14.261032709525395,14.261032709525395,5.368103864599334,5.123275762992876,5.219292027776362,5.209503318834322,7.731146542662259,6.241688370474876,5.06022851658075,5.524721314108604,5.7970001342577575,6.299831775907776,23.72204475529311,23.72204475529311,0.0,26.357827505881232,0.0,23.72204475529311,26.357827505881232,0,0
+2017/06/15 04:00:00,41.02581023787857,0,106.51097601992522,0,0,0,0.24699303865235303,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,0.7456196172942443,0.0,0.525064032297837,0,0,0.0,17.785094738564908,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,785.7584156839275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.005670723256690829,0.00017941773102151802,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.00758484015268506,-0.00758484015268506,0.1098550533035422,0.1098550533035422,0.10170288779394739,0.10170288779394739,0.6077703067152778,0.6077703067152778,0.7471897283640938,0.7471897283640938,-0.15254361484925336,0.05774492055740295,-0.1230639332630267,-0.11918548963385851,0.276388631615798,-0.2721718727709957,0.026179950039218608,-0.1882611488803,-0.22274874200939265,0.23848923359595908,5.001190898705843,5.001190898705843,5.249950899463201,5.249950899463201,5.214214068621587,5.214214068621587,12.746912120366787,12.746912120366787,16.756173048942273,16.756173048942273,5.4821883197025585,5.069035638435807,5.313714991149695,5.294240496805244,6.586516490818767,6.5383302572811886,5.014188347944469,5.734817181137828,6.029321653600661,6.180295937347012,41.02581023787857,41.02581023787857,0.0,45.58423359764285,0.0,41.02581023787857,45.58423359764285,0,0
+2017/06/15 05:00:00,74.2572951031668,0,212.9421150752648,0,0,0,0.0,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,0.9462862980705306,0.0,0.5249657751403813,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2646727064311099,0.2646727064311099,0.3762522232501083,0.3762522232501083,0.3695814144728625,0.3695814144728625,0.8380084036935682,0.8380084036935682,0.875981028928815,0.875981028928815,-0.08455594914444761,0.12410705737980289,-0.05568886933997645,-0.051322051748382704,0.44152362042967713,-0.20853480043817038,0.08620913330262232,-0.12621193064033687,-0.16050339299171767,0.3785145949951259,6.454485924960579,6.454485924960579,7.947621378400996,7.947621378400996,7.8434951565690625,7.8434951565690625,19.81640162040331,19.81640162040331,21.198664916830268,21.198664916830268,5.148049889381753,5.319059430797168,5.064206358098389,5.054530586577883,9.066856098204298,5.90191295655454,5.1538975720165325,5.329981459754364,5.533880753010294,7.9833663236113495,74.2572951031668,74.2572951031668,0.0,82.50810567018533,0.0,74.2572951031668,82.50810567018533,0,0
+2017/06/15 06:00:00,84.39854828243232,0,637.4843029235133,0,0,0,0.3704641322869511,0.0,8.302358887567685,0.0,73.80580873715317,0,1.394687634444746,2.5216442830298977e-09,0.5252288884580891,0,0,0.0,406.79701159197634,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1498.3196514431588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033940136476520916,0.00107384225989042,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.43576142573656285,0.43576142573656285,0.5419930143359613,0.5419930143359613,0.5521016871814501,0.5521016871814501,1.040180570849569,1.040180570849569,0.9158363575073458,0.9158363575073458,-0.027909120345575293,0.17976350773114486,0.015286946576072012,0.21132451854841078,0.5898371387859382,-0.13481202559644764,0.15918725575300718,-0.036352312402433834,0.15913857576404133,0.5067914258567817,8.960699640699474,8.960699640699474,11.147830918904091,11.147830918904091,11.381374628497127,11.381374628497127,27.8417374834562,27.8417374834562,22.71320212534043,22.71320212534043,5.0161245767403955,5.669888283422807,5.004837565856164,5.926251632714141,12.29233427053039,5.37652074111034,5.525151317127182,5.02735713944071,5.524829825772173,10.369096514078521,84.39854828243232,84.39854828243232,0.0,93.77616475825813,0.0,84.39854828243232,93.77616475825813,0,0
+2017/06/15 07:00:00,144.2056966651259,0,800.187361593728,0,0,0,0.6406874151443265,0.0,7.753881655449512,0.0,69.33401494192633,0,39.380909295966944,2.3638148131832436e-05,27.09617971849067,0,0,0.01433886438120244,533.9953788852661,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2585.856023510907,0.0,0.0,0.0,0.0,0.0,3.248982009188583,0.0,0.0,0.0,0.0,2.527109595394052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0426025678353634,0.001347915549871444,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.03121932750830419,0.03121932750830419,0.09831478899454427,0.09831478899454427,0.15494634810872862,0.15494634810872862,1.1077991929529079,1.1077991929529079,0.3838378971454382,0.3838378971454382,-0.1429492585347281,-0.046966017029306,-0.1115084603622763,0.09632744094048343,0.09970136080613452,-0.17489947008139742,-0.06929035036830603,-0.12100399547357188,0.12073030480788306,0.05837948374036646,5.020176550989845,5.020176550989845,5.20017325782581,5.20017325782581,5.497514017171838,5.497514017171838,30.87147541968703,30.87147541968703,8.068335001460781,8.068335001460781,5.4233879998797505,5.045665822194465,5.257535618270055,5.192159091683152,5.205861826385302,5.634079762332178,5.0994076400337605,5.3032937589262445,5.301922429766023,5.070561483258913,144.2056966651259,144.2056966651259,0.0,160.2285518501399,0.0,144.2056966651259,160.2285518501399,0,0
+2017/06/15 08:00:00,160.69316894932737,0,836.9208535628986,0,0,0,1.1766681800868475,0.0,11.323895916778682,0.0,83.2008179303116,0,39.380909295966944,2.9309987732373645e-05,25.61084831619556,0,0,0.017781936301732245,517.4898990136998,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4957.16911366266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044558286156544426,0.001409793114305487,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.117062287609384,-0.117062287609384,-0.17253193175727952,-0.17253193175727952,0.002315326308725332,0.002315326308725332,1.1411799498963655,1.1411799498963655,0.3682453034920152,0.3682453034920152,-0.045142581427121374,-0.03786275832116578,-0.22492649932697675,0.07788780369089661,0.03655833277877194,-0.08764961824278987,-0.09876566481746824,-0.11384820294745658,0.10389350298983265,-0.012864685081360945,5.283844225346712,5.283844225346712,5.6170074350947345,5.6170074350947345,5.00011096994055,5.00011096994055,32.424744377427345,32.424744377427345,7.822867568924394,7.822867568924394,5.0421884267287,5.029677907889379,6.049590125086809,5.125613898620955,5.027668120367679,5.159085321820086,5.202014271268752,5.268462825504457,5.223545986949333,5.003425960751883,160.69316894932737,160.69316894932737,0.0,178.54796549925263,0.0,160.69316894932737,178.54796549925263,0,0
+2017/06/15 09:00:00,179.1001340032658,0,864.3533843789614,0,0,0,1.3762637638936528,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,4.605740657099729e-06,20.869432250624467,0,0,0.0027930065263055723,491.70188999072167,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5854.599361071951,0.0,0.0,0.0,0.0,0.0,0.0,24.145087050615928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046018814416650074,0.0014560032103830512,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.07783344803592195,0.07783344803592195,-0.07270879734120554,-0.07270879734120554,0.11888575935456482,0.11888575935456482,1.153262642156129,1.153262642156129,0.5324651406864496,0.5324651406864496,-0.13170573628858187,-0.12592014364590431,-0.1745225036024251,0.17418710701351126,0.11667985893009657,0.028812809894852423,-0.1452850002179623,-0.1460812961722889,0.2005082979620423,0.0760172237576943,5.125438587793937,5.125438587793937,5.1094605399315185,5.1094605399315185,5.292761509955497,5.292761509955497,32.99587707573011,32.99587707573011,10.931758988517984,10.931758988517984,5.359356250725597,5.32845640231595,5.631345801209591,5.62891831171126,5.281991569305049,5.017185740649069,5.4373499697206995,5.4421617646239895,5.833702968073851,5.119651241951587,179.1001340032658,179.1001340032658,0.0,199.00014889251753,0.0,179.1001340032658,199.00014889251753,0,0
+2017/06/15 10:00:00,210.1464676056003,0,950.2605534623624,0,0,0,1.4924915801327254,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.8037166120003356e-09,18.579480939747114,0,0,0.0,488.8859707992886,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6446.259404783559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05059257573066319,0.0016007138301837964,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3794662391120222,0.3794662391120222,0.12336185686648293,0.12336185686648293,0.32910428466398556,0.32910428466398556,1.158164064561655,1.158164064561655,0.7689708559152055,0.7689708559152055,-0.014319922381150431,-0.07526875511004988,-0.11078077738345168,0.277775639130335,0.16910037342325895,0.0488638273269156,-0.09209003132566672,-0.09504584855040352,0.32110787123683326,0.14790520501331217,7.998467339223055,7.998467339223055,5.315236786535166,5.315236786535166,7.252301834361035,7.252301834361035,33.22887457878325,33.22887457878325,17.4581720414929,17.4581720414929,5.004244887296949,5.117306066855733,5.254183508683369,6.60253009327856,5.5926775476221735,5.049431332664852,5.175618683946823,5.187077889784803,7.143742138573188,5.45328262059499,210.1464676056003,210.1464676056003,0.0,233.49607511733365,0.0,210.1464676056003,233.49607511733365,0,0
+2017/06/15 11:00:00,230.86050303435132,0,1006.3160553324858,0,0,0,6.206692056587258,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.8573321574322227e-09,20.879902580531777,0,0,0.0,491.705943900596,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6347.263712344394,7067.1974502258745,0.0,0.0,0.0,0.0,4494.130642536452,0.0,0.0,0.0,58.67215836856807,3631.1647775346414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05357701217091251,0.001695139318829479,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6413580283193939,0.6413580283193939,0.32446887938909735,0.32446887938909735,0.5485284883519805,0.5485284883519805,1.1296838594094751,1.1296838594094751,0.9296692962971039,0.9296692962971039,0.19002190333148566,0.08050120088908642,0.07560028493484997,0.3796278517083281,0.3119107190321516,0.2510344657787799,0.08575888864394932,0.11517471462636915,0.42885608317504936,0.3088856633183478,13.635856830992736,13.635856830992736,7.189041038326238,7.189041038326238,11.298315872042082,11.298315872042082,31.885683500464296,31.885683500464296,23.253892888171706,23.253892888171706,5.748647998187366,5.134187330859106,5.118341982737434,8.001035702747629,7.0222320860439,6.308071324241453,5.152293722203879,5.274758997127321,8.83536158747232,6.983048796520535,230.86050303435132,230.86050303435132,0.0,256.5116700381681,0.0,230.86050303435132,256.5116700381681,0,0
+2017/06/15 12:00:00,221.14879231289393,0,945.8560032014782,0,0,0,17.05573321163205,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.8037166120003352e-09,18.581361216270174,0,0,0.0,466.73624428213236,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.30533832812934,0.0,0.0,5860.589352058949,13265.979519874743,1379.4196725660772,0.0,445.09564005447965,651.5791626367435,16507.48512968965,1968.5977977738837,5.821896031834653,911.8193947944966,923.1851125265944,16174.138309762046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05035807421229397,0.0015932943656036366,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8581225839191612,0.8581225839191612,0.45536104231029617,0.45536104231029617,0.6888947839700368,0.6888947839700368,1.0950236544353418,1.0950236544353418,0.9744791780066665,0.9744791780066665,0.36162596653223184,0.24455765540627158,0.2503554813944291,0.428431648061647,0.3894340517910448,0.4274479609303773,0.2745557474313111,0.2921064267054294,0.4732605487035137,0.40108004446948375,20.541142848684373,20.541142848684373,9.32761148578119,9.32761148578119,14.977572981280389,14.977572981280389,30.286839316713426,30.286839316713426,25.05751283156154,25.05751283156154,7.721796793381031,6.24127824824599,6.3009864670714535,8.827724495178856,8.158963582106566,8.810054200490711,6.565479457725047,6.772736721350867,9.677139872873326,8.351859246971514,221.14879231289393,221.14879231289393,0.0,245.72088034765991,0.0,221.14879231289393,245.72088034765991,0,0
+2017/06/15 13:00:00,216.27761472805545,0,907.1257260247601,0,0,0,14.738170918583807,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.7491806634574428e-09,16.31721954009418,0,0,0.0,463.4963196179586,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5349.135558599654,12460.559076803853,599.2629709739933,0.0,0.0,173.95244514781413,14469.297976989787,1555.4686285612745,0.0,487.2445336008498,516.4127851542314,14215.0583759283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048296045567631,0.0015280532166390332,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8790448546964033,0.8790448546964033,0.5373476616598833,0.5373476616598833,0.7404287472446104,0.7404287472446104,1.0834905062159321,1.0834905062159321,0.9851002117183604,0.9851002117183604,0.4035740750948159,0.30778472401087764,0.30523307299696545,0.44131200722585756,0.40518376740374806,0.455961367131038,0.3613496007172954,0.35896104341609064,0.4776844685503372,0.41476906706519956,21.31279154059426,21.31279154059426,11.041992932487915,11.041992932487915,16.542399623887746,16.542399623887746,29.76385734327306,29.76385734327306,25.496508979597067,25.496508979597067,8.393922748401152,6.968884553105951,6.936253219762563,9.062932329398834,8.421212649205543,9.339110570922784,7.717617551920043,7.681632997814702,9.765654855977957,8.586014428830154,216.27761472805545,216.27761472805545,0.0,240.30846080895049,0.0,216.27761472805545,240.30846080895049,0,0
+2017/06/15 14:00:00,195.50089887476472,0,867.0197973927253,0,0,0,9.951400660686588,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.693715054676223e-09,14.08064686364472,0,0,0.0,458.88074349846784,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4759.2943921081605,11906.392134802216,0.0,0.0,0.0,0.0,8181.558124381059,585.2780389263623,110.6329739626169,0.0,34.95390844704902,7863.574866459549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04616077622053276,0.0014604947829023592,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8400885838143215,0.8400885838143215,0.6819481748280715,0.6819481748280715,0.732770514340498,0.732770514340498,1.0568539188412391,1.0568539188412391,0.9662586243718381,0.9662586243718381,0.36656912611000647,0.35536073060556145,0.24542325752164593,0.3955645368813025,0.3810288605211908,0.42226855997705093,0.41941486488357455,0.3249207142344544,0.44258017226433377,0.38843385504357386,19.89057182627775,19.89057182627775,14.775403127194323,14.775403127194323,16.302625621489085,16.302625621489085,28.573775814699346,28.573775814699346,24.72073206769157,24.72073206769157,7.797097461796497,7.627851863670088,6.2501028454493195,8.259781516660894,8.023347397154112,8.717699752688048,8.667306859914092,7.1951672841981775,9.086475659815036,8.142667412149962,195.50089887476472,195.50089887476472,0.0,217.22322097196079,0.0,195.50089887476472,217.22322097196079,0,0
+2017/06/15 15:00:00,182.4531067435689,0,867.4768729924948,0,0,0,3.5732833177802763,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.693715054676223e-09,14.111615072043401,0,0,0.0,459.3378190982374,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4260.951149519418,8257.399224716923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04618511126402343,0.0014612647267154793,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7374668125758075,0.7374668125758075,0.7297122169178979,0.7297122169178979,0.69702812451665,0.69702812451665,1.0420343076959149,1.0420343076959149,0.9606839560427731,0.9606839560427731,0.23163678950332417,0.3169542310999003,0.1368086920858993,0.28919883711160116,0.34663271565558723,0.3023404191883701,0.3974779005323554,0.2149856685079844,0.3347562558685533,0.34280735152872766,16.449364850274293,16.449364850274293,16.20757638117726,16.20757638117726,15.216931248715113,15.216931248715113,27.922626937164054,27.922626937164054,24.493845563399915,24.493845563399915,6.113293482370523,7.088421766323009,5.3877656811494035,6.7375023319140155,7.499762803134374,6.89959413545246,8.291576449098102,5.958687469453778,7.330669422302407,7.444644180980646,182.4531067435689,182.4531067435689,0.0,202.725674159521,0.0,182.4531067435689,202.725674159521,0,0
+2017/06/15 16:00:00,210.71962614722494,0,920.7483544109783,0,0,0,9.019938681473457,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.693715054676223e-09,14.047000937024059,0,0,0.0,459.3737717479046,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,1038.16181004997,0.0,4599.710384019714,14560.16327009309,0.0,855.0008280522229,0.0,0.0,4468.538339931285,0.0,1299.7490405973253,0.0,0.0,4113.983820955856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049021324393284924,0.001551000533121678,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7508777468592357,0.7508777468592357,0.9299089789510782,0.9299089789510782,0.7715587678018274,0.7715587678018274,1.0434633304061032,1.0434633304061032,0.9665971800543406,0.9665971800543406,0.21729938990318415,0.40629583570001376,0.16141431620718763,0.27648689303964313,0.3300782933224088,0.28081725359815535,0.4773254742838463,0.23752508222127516,0.3128073317903506,0.330672303564992,16.873609323296577,16.873609323296577,23.263328962074056,23.263328962074056,17.542926711655454,17.542926711655454,27.98506910541724,27.98506910541724,24.734550185186365,24.734550185186365,5.979475293239815,8.440130871124339,5.539964834156265,6.587648291849106,7.26571030672082,6.637930871010937,9.758440536990875,6.170749425488367,7.033920261549653,7.273907375237414,210.71962614722494,210.71962614722494,0.0,234.13291794136103,0.0,210.71962614722494,234.13291794136103,0,0
+2017/06/15 17:00:00,217.49106142698372,0,928.1254839740932,0,0,0,8.842295904709232,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,2.8037166120003356e-09,18.574270514937336,0,0,0.0,466.75090131101956,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4522.827513874122,12794.050855604451,0.0,100.96010751172246,0.0,0.0,6196.224658778892,0.0,573.6898583850331,0.0,0.0,5667.170583968588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04941408823551421,0.0015634273073108305,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7262102773250406,0.7262102773250406,0.8757006919362444,0.8757006919362444,0.8011658056953275,0.8011658056953275,1.034315796961877,1.034315796961877,0.9743703274009242,0.9743703274009242,0.21000236224582902,0.4004159463970227,0.1983435967684953,0.25730844687199417,0.3483048621051959,0.26651977676928107,0.4482601158805276,0.2772189164324666,0.28566871251293297,0.3503653936634031,16.099232958157515,16.099232958157515,21.188241712679016,21.188241712679016,18.532837041842882,18.532837041842882,27.58665043042447,27.58665043042447,25.05303629298244,25.05303629298244,5.91467597058508,8.34070366004758,5.815768553702412,6.374454297640639,7.52405169235378,6.4749172094075504,9.192771415958973,6.596092743560277,6.695203790195791,7.554145627004985,217.49106142698372,217.49106142698372,0.0,241.6567349188708,0.0,217.49106142698372,241.6567349188708,0,0
+2017/06/15 18:00:00,205.0989759697629,0,943.3311674788504,0,0,0,12.376228503837595,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.9618390674722737e-09,25.609116904837194,0,0,0.0,517.4469373283208,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,8.564568735683773,4303.351752303219,10560.618992771773,0.0,850.7206470302762,612.6895718305104,0.0,11763.612740904922,0.0,1333.127774851505,1111.7454680700885,0.0,11220.81781449457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050223650088258624,0.001589041280020502,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6712365160935314,0.6712365160935314,0.9512982504417643,0.9512982504417643,0.8701848379194501,0.8701848379194501,1.0202828575199472,1.0202828575199472,0.9689293719426263,0.9689293719426263,0.23008122116149043,0.46093858321049636,0.28394609482567046,0.25853293052611326,0.37237173608267465,0.28033055937447365,0.5100171583495263,0.35058862806359387,0.27709766600297164,0.37557866437114895,14.467748535452415,14.467748535452415,24.114600759613822,24.114600759613822,20.98381483902655,20.98381483902655,26.981432836788372,26.981432836788372,24.829859631237397,24.829859631237397,6.0983577188036975,9.435045524774637,6.674754062054745,6.387603268793413,7.886819057312962,6.632240105933292,10.438224988482972,7.55741679260197,6.594692465540646,7.9370214930122955,205.0989759697629,205.0989759697629,0.0,227.88775107751434,0.0,205.0989759697629,227.88775107751434,0,0
+2017/06/15 19:00:00,197.95480279765732,0,929.8545740586153,0,0,0,11.986920887724226,0.0,17.799341554150242,0.0,101.68988858149199,0,39.380909295966944,3.0127489463350816e-09,27.0977424753112,0,0,0.0,539.4606964206299,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,159.43546534087494,3934.8520292609787,8839.481106423822,0.0,779.2809540928398,661.1578491031432,0.0,12096.07788901983,0.0,1220.287783569935,1362.7489709930423,0.0,11334.9568370959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04950614627236272,0.001566339959426972,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6139707802086707,0.6139707802086707,0.9099233068982108,0.9099233068982108,0.8947126196764907,0.8947126196764907,1.0014490580867046,1.0014490580867046,0.9566004895219534,0.9566004895219534,0.21647950110513578,0.4528393965855715,0.3250417783206892,0.23494279432307977,0.38121809805225165,0.2579077525686452,0.492163954839698,0.37763054791435674,0.2420742644097711,0.3813428565708808,12.907331712173772,12.907331712173772,22.48442522530361,22.48442522530361,21.902424646953975,21.902424646953975,26.18070376446188,26.18070376446188,24.32842151447997,24.32842151447997,5.972083281766359,9.279479337573704,7.196810213624232,6.145373204797252,8.026367512718522,6.380881988282823,10.061268613075939,7.96937258906604,6.216135390523348,8.028359418725174,197.95480279765732,197.95480279765732,0.0,219.9497808862859,0.0,197.95480279765732,219.9497808862859,0,0
+2017/06/15 20:00:00,196.26543053113832,0,849.312683522156,0,0,0,5.266063165250389,0.0,22.357324618480227,0.0,106.16168237671882,0,39.380909295966944,2.9100365568804265e-09,23.099451071811867,0,0,0.0,494.4091583967147,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3428.5942098501205,2074.548440607287,0.0,0.0,0.0,0.0,6541.722054992854,0.0,0.0,0.0,0.0,5617.536826863463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045218036362286364,0.0014306671509313324,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5169562726035086,0.5169562726035086,0.6280610976676996,0.6280610976676996,0.7028988142131855,0.7028988142131855,0.9798486175417721,0.9798486175417721,0.9434812212352981,0.9434812212352981,0.15011924482758832,0.328235033026762,0.2552800586271749,0.15827197517147815,0.3884256044666017,0.18012323572856176,0.3740085261836763,0.30980427195847604,0.15104685117119876,0.38510372099969126,10.588457636727085,10.588457636727085,13.278082220482517,13.278082220482517,15.391476677711083,15.391476677711083,25.27890263219531,25.27890263219531,23.80138790242883,23.80138790242883,5.466968333940443,7.240369463468937,6.35281148121787,5.519123167413667,8.142533163544556,5.672575779364337,7.912387163126311,6.994906503497205,5.472762854343358,8.088717692857088,196.26543053113832,196.26543053113832,0.0,218.0727005901537,0.0,196.26543053113832,218.0727005901537,0,0
+2017/06/15 21:00:00,194.7435129083551,0,836.8951621885257,0,0,0,0.6696631025772702,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.961839067472273e-09,25.60988755465068,0,0,0.0,517.4819895756285,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2700.150278753526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04455691832874304,0.0014097498371873057,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4048211043210525,0.4048211043210525,0.45940073630973915,0.45940073630973915,0.5765753433631889,0.5765753433631889,0.9532925422887528,0.9532925422887528,0.881277182678063,0.881277182678063,0.027096574824634123,0.1888348417887568,0.11109842125465423,0.03182398547711482,0.32423664124801044,0.04018966208683785,0.21000632251483778,0.1570731222559504,0.005560233977398344,0.3047832954051388,8.41505456532677,8.41505456532677,9.405289940353583,9.405289940353583,11.965145312476551,11.965145312476551,24.194893887225177,24.194893887225177,21.396187885049997,21.396187885049997,5.015199312669793,5.739309342411133,5.255644046755833,5.0209657170290285,7.18589558340021,5.033438056756722,5.914710534016521,5.5112801830738505,5.00063998172601,6.930529875952956,194.7435129083551,194.7435129083551,0.0,216.38168100928343,0.0,194.7435129083551,216.38168100928343,0,0
+2017/06/15 22:00:00,136.90831412374644,0,654.4617134478722,0,0,0,0.29288149592597307,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.7232244186509045e-06,20.862472299274128,0,0,0.001650732656076594,494.7534764087677,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1145.7684602740942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03484402638811894,0.0011024407066301388,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.18789431273454263,0.18789431273454263,0.21434493798614368,0.21434493798614368,0.3444962566696547,0.3444962566696547,0.8930477939312016,0.8930477939312016,0.6196174891092562,0.6196174891092562,-0.006272032159671851,0.032149058849241505,-0.03140987980159023,0.033044117735422866,0.18335588394326038,-0.015163982479176637,0.024111946638898065,-0.008602892179544247,-0.012490982796125793,0.15302809059702072,5.731951967814965,5.731951967814965,5.952970416920081,5.952970416920081,7.468902469495887,7.468902469495887,21.839295069769037,21.839295069769037,13.054875858533535,13.054875858533535,5.000814325727816,5.021396242788242,5.020423615385496,5.022604268059283,5.696969025613498,5.004760053890223,5.012035294541917,5.001532044003611,5.00322981093079,5.48525916461395,136.90831412374644,136.90831412374644,0.0,152.12034902638493,0.0,136.90831412374644,152.12034902638493,0,0
+2017/06/15 23:00:00,87.31959848699287,0,505.1343262609303,0,0,0,0.0,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,6.0266075485922555e-06,11.808611401547047,0,0,0.0036554497347732885,451.8951420423793,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.026893725686494955,0.0008508987342474919,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,-0.07041351561279485,-0.07041351561279485,-0.065142183148952,-0.065142183148952,0.08004616349646704,0.08004616349646704,0.8089910387777524,0.8089910387777524,0.3074421704290956,0.3074421704290956,-0.06217609400758024,0.0012967078439537715,-0.04442619071822242,-0.08059749946843114,0.01233995926584823,-0.09827348813687534,-0.03302234847682279,-0.04691921607021421,-0.1238671240760561,-0.02461256644603144,5.102657184628285,5.102657184628285,5.08785936192497,5.08785936192497,5.132674183893457,5.132674183893457,18.80068129046009,18.80068129046009,6.964487858587518,6.964487858587518,5.080039241523082,5.000034806883875,5.040859914572636,5.13450865582476,5.003152181810492,5.200005040282605,5.022574493311424,5.045574847899104,5.31782612874089,5.012540257502465,87.31959848699287,87.31959848699287,0.0,97.02177609665874,0.0,87.31959848699287,97.02177609665874,0,0
+2017/06/16 00:00:00,39.42083818955862,0,479.64238250236656,0,0,0,0.061992219259392765,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.015117545635092777,2.579957827889505e-09,9.546407425660997,0,0,0.0,426.40685373355035,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,239.08287434258992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025536515718736334,0.000807957556920997,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.1860545723093753,0.1860545723093753,0.22362451035940076,0.22362451035940076,0.3050938248298899,0.3050938248298899,0.8195725616975148,0.8195725616975148,0.582119924191277,0.582119924191277,0.12178221836908242,0.27153536368702424,0.13111472317174397,0.11813474445955074,0.28748658427712775,0.07876513360299975,0.22096351069127673,0.11807945194202649,0.03792916625136738,0.23130194530536383,5.717667266668045,5.717667266668045,6.0374485640041655,6.0374485640041655,6.934480395789251,6.934480395789251,19.166977127385806,19.166977127385806,12.101010311025902,12.101010311025902,5.3072100622368055,6.531121765588637,5.356135919340389,5.289072103792762,6.716920132485399,5.128460459089482,6.012854712333137,5.288801402252801,5.029782110760451,6.110069907508574,39.42083818955862,39.42083818955862,0.0,43.8009313217318,0.0,39.42083818955862,43.8009313217318,0,0
+2017/06/16 01:00:00,23.77475494719963,0,43.316271483219694,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5776595235218357,0,0,0.0,7.82591897067556,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0023061903784176796,7.296625602583434e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.24935810181598433,0.24935810181598433,0.30703486024018395,0.30703486024018395,0.34240000321764874,0.34240000321764874,0.7852615274548835,0.7852615274548835,0.7268954233683881,0.7268954233683881,0.09682051437733251,0.27929671612821094,0.1029393773445728,0.137884835139052,0.42996196453210733,0.05926218797368429,0.24239863372386106,0.09652780351085355,0.0562444323249917,0.35703005898176254,6.290614460701562,6.290614460701562,6.959266471340726,6.959266471340726,7.438811449910602,7.438811449910602,17.996449269401012,17.996449269401012,16.120388589779893,16.120388589779893,5.194132166097418,6.620184849375704,5.219456965965222,5.3938951516358316,8.855296632725683,5.072711747525702,6.219404728634288,5.192959642132124,5.065494000721543,7.652719527280738,23.77475494719963,23.77475494719963,0.0,26.416394385777366,0.0,23.77475494719963,26.416394385777366,0,0
+2017/06/16 02:00:00,28.344156963354806,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5247938768819082,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2932132707122775,0.2932132707122775,0.35406803319668073,0.35406803319668073,0.37877736021175484,0.37877736021175484,0.7800993158406913,0.7800993158406913,0.7909063204199578,0.7909063204199578,0.10448717904401437,0.29621040962957795,0.11115138397164805,0.15684050959553977,0.46354151708927877,0.05664313709822638,0.2525888084623511,0.09254378116971423,0.07286533856822383,0.3875972668958309,6.786243372728535,6.786243372728535,7.608676278272171,7.608676278272171,7.987532109657792,7.987532109657792,17.824656554445028,17.824656554445028,18.185597668203684,18.185597668203684,5.226109333477822,6.823076829946274,5.255887978897164,5.509765351062796,9.485641402985934,5.066425971647746,6.3243630731670635,5.177354239792365,5.109932493801807,8.129069738250905,28.344156963354806,28.344156963354806,0.0,31.493507737060895,0.0,28.344156963354806,31.493507737060895,0,0
+2017/06/16 03:00:00,23.721981613333543,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248861896557541,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2946220813616471,0.2946220813616471,0.3568368942410148,0.3568368942410148,0.3730964144291198,0.3730964144291198,0.7394238883610106,0.7394238883610106,0.8321471668895977,0.8321471668895977,0.08096052345947354,0.2767267129040169,0.08735097938167045,0.13936715475731656,0.5112987556646825,0.03414157523659273,0.23707171162860602,0.06999605295133336,0.05879489336885239,0.41542457362015006,6.803509735683846,6.803509735683846,7.649835920947126,7.649835920947126,7.898125077426982,7.898125077426982,16.510794664513114,16.510794664513114,19.60838823154512,19.60838823154512,5.135723436402756,6.590412309591315,5.158002733317716,5.402417011135299,10.465814920510141,5.02413074185165,6.166273881856014,5.101443274138347,5.071569397504533,8.597428461943792,23.721981613333543,23.721981613333543,0.0,26.357757348148382,0.0,23.721981613333543,26.357757348148382,0,0
+2017/06/16 04:00:00,42.24672961227247,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,2.213441280425609,0.0,0.5251547822127351,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3576255848040023,0.3576255848040023,0.4162322128276888,0.4162322128276888,0.4302285877652997,0.4302285877652997,0.7752436778222831,0.7752436778222831,0.828967130631752,0.828967130631752,0.08130658368335422,0.2764059164179234,0.08717887409991112,0.14083909137923853,0.3648144200383281,0.03131331540308662,0.23451640490326664,0.06642027371076867,0.05814671659699338,0.3313717615181253,7.661619666254623,7.661619666254623,8.61151683313338,8.61151683313338,8.860110740242021,8.860110740242021,17.6641009990702,17.6641009990702,19.496131558001053,19.496131558001053,5.136886539935077,6.586715552228696,5.157380519148404,5.410969652686859,7.770248304601822,5.020298224953962,6.141209985361058,5.091341473315239,5.069999843087061,7.283578768567594,42.24672961227247,42.24672961227247,0.0,46.94081068030274,0.0,42.24672961227247,46.94081068030274,0,0
+2017/06/16 05:00:00,74.84245847262754,0,212.9421150752648,0,0,0,0.053684037337552,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,1.477768676454794,0.0,0.5249627288793104,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,211.75592270999775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5821535350669462,0.5821535350669462,0.6338229779003136,0.6338229779003136,0.6495623544545222,0.6495623544545222,0.9328563276805854,0.9328563276805854,0.9133934197178034,0.9133934197178034,0.10892847469128913,0.29863540252328036,0.11464486648137868,0.16572096195623418,0.5399645495636342,0.06906091089492038,0.2679687554744617,0.10344550149857996,0.0948980616514186,0.4789383081282639,12.101837983138935,12.101837983138935,13.432172900545098,13.432172900545098,13.860432341857688,13.860432341857688,23.37955069679468,23.37955069679468,22.618513470666898,22.618513470666898,5.245750025083424,6.85315668908882,5.272235351029849,5.569197372497726,11.101500142952986,5.098750257695528,6.49104558555122,5.221621315261501,5.186496334141552,9.790895522443222,74.84245847262754,74.84245847262754,0.0,83.15828719180838,0.0,74.84245847262754,83.15828719180838,0,0
+2017/06/16 06:00:00,85.64413842379504,0,641.8222045587117,0,0,0,0.3265275890964865,0.0,8.842228394545016,0.0,73.80580873715317,0,2.1445212583940307,2.5216747474029067e-09,0.5250524420846184,0,0,0.0,411.1349132271749,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1333.2086707616575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03417108957269154,0.0010811494548656705,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8587002748790165,0.8587002748790165,0.9115596488112198,0.9115596488112198,0.925794826164398,0.925794826164398,1.0552918320742266,1.0552918320742266,0.937346918839324,0.937346918839324,0.21631534850708148,0.41091874926972327,0.225243015529081,0.3193576406125463,0.7464916193382302,0.18666358567871344,0.3863967201879772,0.22484037943883997,0.26890003381080985,0.6687448579909943,20.562206242775304,20.562206242775304,22.547594358066974,22.547594358066974,23.101677348735407,23.101677348735407,28.504766711970433,28.504766711970433,23.55729208880281,23.55729208880281,5.970606686464208,8.519342315527155,6.052552501991215,7.120342520554146,16.734009010208965,5.722380308666786,8.10960862253556,6.048784828243754,6.50145819556694,14.396896392220128,85.64413842379504,85.64413842379504,0.0,95.1601538042167,0.0,85.64413842379504,95.1601538042167,0,0
+2017/06/16 07:00:00,144.14127299718393,0,805.5661980134292,0,0,0,0.712283266259291,0.0,7.62365870417446,0.0,69.33401494192633,0,39.380909295966944,1.4938130640101415e-05,27.090391850726256,0,0,0.009063287254130706,539.3794908820942,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2927.675150220132,0.0,0.0,0.0,0.0,0.0,0.5875347347911464,0.0,0.0,0.0,0.0,0.31706004319926323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04288894107048828,0.0013569761994121838,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5155083585909631,0.5155083585909631,0.54926629491876,0.54926629491876,0.584077140641394,0.584077140641394,1.1452945702102464,1.1452945702102464,0.5829029319427981,0.5829029319427981,0.0889803240627554,0.13168970404121993,0.06936578265625425,0.22951939779188654,0.3076887289878253,0.053037996920429854,0.14552075812704285,0.06014152350002831,0.24565970702302714,0.2729157293224804,10.556938166228392,10.556938166228392,11.315420794059563,11.315420794059563,12.14928870218084,12.14928870218084,32.61871590207589,32.61871590207589,12.120304708171531,12.120304708171531,5.163954206283805,5.359268702007952,5.099624242777111,6.092988332201486,6.967651950808573,5.058238456895339,5.438771838407277,5.07488590970253,6.252518863102509,6.546776098508204,144.14127299718393,144.14127299718393,0.0,160.15696999687103,0.0,144.14127299718393,160.15696999687103,0,0
+2017/06/16 08:00:00,160.70737233525347,0,836.7356764816479,0,0,0,1.3873720815789656,0.0,11.128561489866103,0.0,83.2008179303116,0,39.380909295966944,2.961872095353962e-09,25.609711534568,0,0,0.0,517.3225038687508,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5445.304025873685,0.0,0.0,0.0,0.0,0.0,360.90248376364445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04454842719157674,0.001409481183526175,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3748869813926331,0.3748869813926331,0.31362814248434556,0.31362814248434556,0.45172007105754036,0.45172007105754036,1.160090354071439,1.160090354071439,0.666665459867959,0.666665459867959,0.07595750573474444,0.11146244257082588,0.09905515841255458,0.2934953542232433,0.33532998337028275,0.06934436117495617,0.09558492240874647,0.09251250109072663,0.30345761284983924,0.30255131462119933,7.926156528978524,7.926156528978524,7.04465013098806,7.04465013098806,9.25820179011113,9.25820179011113,33.32064945418803,33.32064945418803,14.337972946522243,14.337972946522243,5.11946327487253,5.257322983437575,5.203200778047588,6.789693870580621,7.338700261941355,5.0995627073167356,5.189206880420059,5.177234321885649,6.913710569813247,6.902254888327889,160.70737233525347,160.70737233525347,0.0,178.56374703917052,0.0,160.70737233525347,178.56374703917052,0,0
+2017/06/16 09:00:00,181.3339349980389,0,864.1295822108871,0,0,0,3.6846346168139505,0.0,11.128561489866103,0.0,106.27511244621549,0,39.380909295966944,2.857364677564789e-09,20.86471714631901,0,0,0.0,491.4808808291737,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5903.905845503353,0.0,0.0,0.0,0.0,0.0,4418.890128139425,0.0,0.0,0.0,20.002019675954607,2931.8819456236747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04600689902345004,0.0014556262156479162,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5231979319568573,0.5231979319568573,0.39371963921074193,0.39371963921074193,0.5563624755181232,0.5563624755181232,1.1433036937918082,1.1433036937918082,0.8513444009064591,0.8513444009064591,0.18044819254005842,0.18769926257314662,0.1780619174544263,0.4052738537140031,0.39731418974729077,0.19216474652634563,0.17779044829475643,0.19392573421697273,0.432005202449296,0.38165781732287274,10.725369954936951,10.725369954936951,8.229272548114267,8.229272548114267,11.481139863727478,11.481139863727478,32.52479440202049,32.52479440202049,20.295035374941108,20.295035374941108,5.675008146994799,5.730430796680636,5.657249061433248,8.422743203823245,8.28884989329923,5.76565489840614,5.655243797573789,5.779774810394969,8.892266935821652,8.033391067309026,181.3339349980389,181.3339349980389,0.0,201.48214999782098,0.0,181.3339349980389,201.48214999782098,0,0
+2017/06/16 10:00:00,214.42704129682537,0,927.8216508288338,0,0,0,5.791487561498777,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.8037488440902044e-09,18.56105864960611,0,0,0.0,466.4470681657599,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4823.711435512647,8987.338527953078,0.0,0.0,0.0,0.0,3655.366362047745,0.0,0.0,0.0,0.0,2297.990662755949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04939791193380935,0.0015629155004007014,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6106064079200503,0.6106064079200503,0.5110374221262396,0.5110374221262396,0.6911464206772211,0.6911464206772211,1.0542504582337184,1.0542504582337184,0.9494435137815462,0.9494435137815462,0.15749594741613288,0.1919911654890462,0.17540201287281443,0.3222732002849358,0.38898896199073274,0.17137546550786467,0.18444180578782435,0.1986477412257784,0.3383199133174836,0.3824105722229878,12.820081106108347,12.820081106108347,10.460183226952793,10.460183226952793,15.04355089931515,15.04355089931515,28.458810107070292,28.458810107070292,24.040066901587707,24.040066901587707,5.514039500299305,5.764270112049601,5.63773369119977,7.159393944267066,8.151706471377153,5.608753166714237,5.7052611944887985,5.818276539413716,7.380778477639723,8.045433843247793,214.42704129682537,214.42704129682537,0.0,238.25226810758375,0.0,214.42704129682537,238.25226810758375,0,0
+2017/06/16 11:00:00,250.3532544647154,0,1006.0952055543239,0,0,0,25.716644978258962,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.8573646775647897e-09,20.862701089224075,0,0,0.0,491.485094122434,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698.9136665887154,0.0,1137.3093822684177,6412.171458272093,23842.131682710162,2287.062387978904,786.7413247620309,1516.856402796168,1751.5192264772907,21370.664557324948,2688.1928606226306,860.8100940458355,1888.4291775983004,1929.8322822133605,20822.707402444772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05356525396513826,0.0016947672973949275,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8973397983514305,0.8973397983514305,0.7196946015297175,0.7196946015297175,0.861940991824523,0.861940991824523,1.1396014765247824,1.1396014765247824,1.0132587800829642,1.0132587800829642,0.35364427198102644,0.32957251105150726,0.3081847516642893,0.442104823162378,0.42433954968473087,0.38756120051662957,0.3378064690130948,0.3370629086277221,0.4718947469171723,0.4289341946977241,22.002275971456584,22.002275971456584,15.899054237887214,15.899054237887214,20.680623471941942,20.680623471941942,32.35047581986966,32.35047581986966,26.68124358728602,26.68124358728602,7.602405774721618,7.258742544455984,6.974025215656724,9.077642762364519,8.754489701382099,8.128484197549668,7.37352561789443,7.363042009456308,9.649983015839425,8.836767933077226,250.3532544647154,250.3532544647154,0.0,278.17028273857267,0.0,250.3532544647154,278.17028273857267,0,0
+2017/06/16 12:00:00,250.97125064902306,0,967.7766116226485,0,0,0,46.86431715849115,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.8037488440902056e-09,18.595235605540214,0,0,0.0,488.6568527033026,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4708.55149583214,1058.4471173684342,3157.52970746937,6481.932355525215,33508.569632740786,6238.457208827447,3022.1111428361774,4684.267125586346,3687.0443304825258,40191.76314642615,7031.786751849689,3240.233049692669,5279.568144712362,4006.9556901197025,40615.64944413723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051525143641377884,0.0016302196288253523,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9944902914348808,0.9944902914348808,0.8260251841147496,0.8260251841147496,0.9139692974493452,0.9139692974493452,1.1041808465893808,1.1041808465893808,1.0218123860023693,1.0218123860023693,0.44514157523509496,0.3937041652571816,0.3709547015786272,0.45976559686840807,0.4481183968726627,0.49704883218549656,0.4200569186610053,0.4124884722985727,0.49297077534068406,0.46238744229110273,25.888235480695812,25.888235480695812,19.392657064228843,19.392657064228843,22.64081291201677,22.64081291201677,30.70532999562937,30.70532999562937,27.0470445774814,27.0470445774814,9.134238617518292,8.229017271617352,7.864775998755263,9.41234036219764,9.190102379610366,10.163040325388494,8.678614326972678,8.546446953901068,10.078006887255441,9.463172468305729,250.97125064902306,250.97125064902306,0.0,278.8569451655812,0.0,250.97125064902306,278.8569451655812,0,0
+2017/06/16 13:00:00,245.87344473173195,0,906.5078751525613,0,0,0,44.07697750659654,0.0,16.798297433460366,0.0,129.2730206906943,0,39.380909295966944,2.749212584144967e-09,16.344239802264493,0,0,0.0,462.8784687457596,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3434.9823764505627,1045.6527958314653,3306.163763309926,6056.402620558013,32220.44084802526,5187.377381505624,2912.4558258084658,4516.93681264454,3368.798376066942,37916.423264602585,5926.196617006102,3186.8837044662228,5200.865583293706,3652.737244062811,38093.3645195325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04826315072954888,0.0015270124468917087,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9406968530290717,0.9406968530290717,0.8785181519579581,0.8785181519579581,0.9307187559160102,0.9307187559160102,1.0926154125581906,1.0926154125581906,1.0209327544385765,1.0209327544385765,0.4231736363872121,0.41809670877953403,0.39273401992143636,0.4656132117196237,0.45260279251027025,0.45940062983551877,0.44227433709377073,0.42905261003653045,0.49182166525605947,0.45919105582517417,23.690407473493153,23.690407473493153,21.29314456365684,21.29314456365684,23.295226065057392,23.295226065057392,30.177256526359187,30.177256526359187,27.00930064030564,27.00930064030564,8.733755285805842,8.644147675291961,8.21303305442082,9.526119607995895,9.274977176602334,9.405287883724228,9.08079154196517,8.838900421301176,10.054175976283702,9.401240750678951,245.87344473173195,245.87344473173195,0.0,273.19271636859105,0.0,245.87344473173195,273.19271636859105,0,0
+2017/06/16 14:00:00,239.2109592874589,0,867.2098433296811,0,0,0,53.662347577971815,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.6937466401660847e-09,14.079760359053624,0,0,0.0,459.0707894354237,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5842.353317460444,3361.8589957269064,5106.2106317963935,6150.636066882099,38992.93303138329,7001.739950175782,4737.295959714943,5730.098481057268,4579.839200780512,40508.38802903869,7770.535695542958,5149.987388146309,6429.922356376289,4925.3741160841555,40888.60892008697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046170894406984575,0.0014608149152687368,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9857904049741587,0.9857904049741587,0.9745390778250199,0.9745390778250199,0.9556146460257943,0.9556146460257943,1.0977858424401714,1.0977858424401714,1.017907796602655,1.017907796602655,0.4595130027759231,0.48710034050356865,0.41433412408494924,0.4840798730680806,0.44565853543156925,0.502298202903991,0.5268301726071477,0.45425520817907555,0.5133005184625586,0.4537304257427813,25.525186834753427,25.525186834753427,25.05997643890356,25.05997643890356,24.288582287878995,24.288582287878995,30.412772407486102,30.412772407486102,26.879723246408332,26.879723246408332,9.40745872286702,9.956860772619848,8.578451130106174,9.895108080307722,9.1439126786089,10.273555018193008,10.80582014281245,9.306470085642076,10.509050533552553,9.29645567794202,239.2109592874589,239.2109592874589,0.0,265.78995476384324,0.0,239.2109592874589,265.78995476384324,0,0
+2017/06/16 15:00:00,232.7946911083209,0,863.5594343257795,0,0,0,50.27265556011901,0.0,16.86091082671979,0.0,108.75639138185811,0,39.380909295966944,2.6937466401660847e-09,14.091848838509028,0,0,0.0,455.4203804315222,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5723.057880800547,3322.846206721572,5362.9866422601335,5858.652180457871,41040.38317412578,5862.68759302714,4035.1242580666835,4938.629877942969,4151.503463804331,35915.005779256484,6455.392575720736,4347.26222228626,5519.583284960848,4424.9407510210385,36103.408283846686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04597654392773457,0.001454665801578726,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.960374486542187,0.960374486542187,0.9418580001744284,0.9418580001744284,0.9550515791276752,0.9550515791276752,1.077364491599076,1.077364491599076,1.0286516340390517,1.0286516340390517,0.4315397117202441,0.4484664480209809,0.4049587767228255,0.4709354031215741,0.4410177011500545,0.4589649367068741,0.47028833562811945,0.43384180640165376,0.4898563244368232,0.44407201469864127,24.481285869276007,24.481285869276007,23.736651579652587,23.736651579652587,24.26584513779899,24.26584513779899,29.487943395653986,29.487943395653986,27.341488146895102,27.341488146895102,8.883828591542837,9.196658875009092,8.417391604306061,9.63095602573081,9.057478454547649,9.396876232019466,9.618144919348765,8.925651379964421,10.013549754689762,9.114260026143896,232.7946911083209,232.7946911083209,0.0,258.66076789813434,0.0,232.7946911083209,258.66076789813434,0,0
+2017/06/16 16:00:00,261.83271676547463,0,900.7736018567191,0,0,0,56.645341029975796,0.0,16.693521149792748,0.0,131.64086955684016,0,39.380909295966944,2.6937466401660847e-09,14.040100527750901,0,0,0.0,439.3990191936455,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7001.525347878691,4299.786132723151,6720.583853017042,6380.112250793499,48306.34355577037,6455.718566480802,4573.753164219187,5707.576521495207,4622.504121089656,39188.943258055486,6968.914694962502,4849.8456029940735,6255.72779104074,4867.512543384596,39392.79789299515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047957853771863776,0.0015173530639600863,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9939216933728682,0.9939216933728682,0.9855877932160366,0.9855877932160366,0.9926817241404988,0.9926817241404988,1.0994569210227012,1.0994569210227012,1.0606319830486446,1.0606319830486446,0.44532820612176455,0.4710992374173573,0.4245747881722725,0.4855007917022124,0.44692696172800267,0.4728594084147157,0.4956923253609959,0.45454938786462223,0.5053758070927101,0.45068609898762885,25.864419411986475,25.864419411986475,25.51676632445829,25.51676632445829,25.81252531686077,25.81252531686077,30.48908637549279,30.48908637549279,28.74104281706559,28.74104281706559,9.137729782734752,9.634202597801007,8.758680214755444,9.924109355102459,9.167697880828015,9.669155477341164,10.134675445516535,9.312089091770815,10.33890138863346,9.238594643205076,261.83271676547463,261.83271676547463,0.0,290.92524085052736,0.0,261.83271676547463,290.92524085052736,0,0
+2017/06/16 17:00:00,267.4503889098783,0,949.96870959661,0,0,0,58.531712785284746,0.0,17.028300508570425,0.0,133.89528835348938,0,39.380909295966944,2.8037488440902056e-09,18.614177963762998,0,0,0.0,488.59412693353613,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6063.700123116827,3564.490326885993,6075.9596601261255,6244.586246084458,46291.90005680599,7032.408308682307,4692.668743313585,6368.579821473811,4737.012418357521,45106.53638469748,7510.065192804903,4939.384993625134,6901.321381530663,4955.791098032241,45250.84875453369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05057703774707984,0.0016002222192140873,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9837336181577634,0.9837336181577634,0.9721321357379981,0.9721321357379981,0.9863810647532718,0.9863810647532718,1.08709879944757,1.08709879944757,1.069902166912767,1.069902166912767,0.4413537759569543,0.4608036830206861,0.4229213963717684,0.47718307934923415,0.462045530953785,0.46405363049182674,0.4788199091972515,0.44870498494474886,0.491844920926747,0.46618382054158064,25.43978035178486,25.43978035178486,24.961091254970967,24.961091254970967,25.54974354555347,25.54974354555347,29.926985029201887,29.926985029201887,29.15361925422438,29.15361925422438,9.063706660024096,9.432431285160163,8.729277161939436,9.755580519791181,9.456526736606648,9.495630227140225,9.788509169988131,9.201155379404057,10.054657700533483,9.537301034538743,267.4503889098783,267.4503889098783,0.0,297.16709878875366,0.0,267.4503889098783,297.16709878875366,0,0
+2017/06/16 18:00:00,262.8281983539031,0,943.2128145786901,0,0,0,68.65800794876907,0.0,18.253066861810673,0.0,110.93442390708215,0,39.380909295966944,2.961872095353967e-09,25.601790337312362,0,0,0.0,517.3285844281604,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6300.101685243339,3613.066333687177,6265.250831544123,6203.210453793138,49221.77128080768,8769.919876835265,5706.964135917823,8127.140684702555,5773.441659030882,58026.396387778615,9207.51572060639,5889.576475545592,8592.33968730555,5964.164258227891,58182.468158438525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05021734889218931,0.001588841914569165,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.993426828810526,0.993426828810526,0.9779825113757954,0.9779825113757954,0.9929240227789286,0.9929240227789286,1.0815134482523159,1.0815134482523159,1.0812274228475791,1.0812274228475791,0.46735254624096967,0.4823451274880464,0.45031989955112783,0.5007396110844634,0.5006056622688405,0.4874182435213232,0.4954561090331275,0.4719936041357024,0.5128146514517384,0.5053193278488328,25.843701746250446,25.843701746250446,25.201834070115595,25.201834070115595,25.822661174329184,25.822661174329184,29.674668155488376,29.674668155488376,29.661776227474775,29.661776227474775,9.560246716207288,9.859819643012827,9.231661455484371,10.240617793098664,10.237791994085399,9.963383122734214,10.129744231983281,9.651945939174624,10.498540476343038,10.337698484406673,262.8281983539031,262.8281983539031,0.0,292.0313315043367,0.0,262.8281983539031,292.0313315043367,0,0
+2017/06/16 19:00:00,251.2507894323098,0,909.6779956491059,0,0,0,61.470472935154476,0.0,21.61177614137241,0.0,101.68988858149199,0,39.380909295966944,3.012782194794541e-09,27.0977424753112,0,0,0.0,519.2841180111205,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4849.430273282852,2560.2361074770433,5129.967993718016,5708.874516599824,43421.758733737166,7601.713455149238,4827.33409715931,7186.120158319066,4905.256647439328,54561.06174577808,7995.527873233854,4974.855523122248,7649.29588821124,5031.569144240265,54524.54435029539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048431930292914295,0.0015323525146275299,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9947044253202679,0.9947044253202679,0.9818542881060726,0.9818542881060726,0.9967523822210421,0.9967523822210421,1.0681259431738817,1.0681259431738817,1.0837596544073471,1.0837596544073471,0.4797106717664649,0.4911524296825993,0.4635919695498249,0.5087109593859848,0.5203935426985394,0.49571568812168965,0.500735716939162,0.4819773676815832,0.5165027473864219,0.5233034718870672,25.897207799819554,25.897207799819554,25.361884805576082,25.361884805576082,25.983106442317492,25.983106442317492,29.07433088528191,29.07433088528191,29.77600969319299,29.77600969319299,9.806477493497596,10.04032325570114,9.486624981737535,10.41017852289275,10.66364642534127,10.13516329367799,10.240535630836476,9.852355303427103,10.578575144111994,10.72769949416221,251.2507894323098,251.2507894323098,0.0,279.1675438136775,0.0,251.2507894323098,279.1675438136775,0,0
+2017/06/16 20:00:00,247.07849489680237,0,870.1356003462712,0,0,0,53.36657688630762,0.0,24.999863057464953,0.0,106.16168237671882,0,39.380909295966944,2.9100693421317135e-09,23.169463277433948,0,0,0.0,515.23207522083,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3213.6587826672185,1358.054180818635,3786.063245847672,5194.691272703593,36732.71587760177,6292.510083710115,3879.1639021589094,6189.02449131038,3928.0662566988835,50175.36855131142,6658.847953183558,4003.9126227181077,6667.767493625884,3997.9309295839994,49809.73917777356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04632666387767557,0.0014657433527411222,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9960658436809929,0.9960658436809929,0.9839429736890503,0.9839429736890503,0.9966106505824636,0.9966106505824636,1.0560795258980489,1.0560795258980489,1.0826984233197139,1.0826984233197139,0.49155851145557017,0.5019921533256834,0.47687037084337697,0.5176260820520711,0.5350492129063863,0.5047984185927339,0.5094366720443504,0.49277557858703036,0.5229631564581955,0.5362431305227761,25.95429277117772,25.95429277117772,25.448466248522863,25.448466248522863,25.977156569285626,25.977156569285626,28.539554114146185,28.539554114146185,29.728108505815854,29.728108505815854,10.048726564624502,10.267079086541102,9.749302805488469,10.603069324325233,10.98997163160135,10.326610574137419,10.425751784485584,10.073954763320899,10.720189581544687,11.016965273013582,247.07849489680237,247.07849489680237,0.0,274.53166099644704,0.0,247.07849489680237,274.53166099644704,0,0
+2017/06/16 21:00:00,226.66065749098914,0,836.7507001101404,0,0,0,32.58733046755104,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.961872095353967e-09,25.609364772310954,0,0,0.0,517.3375274972432,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,878.6225848327404,0.0,1745.205001260814,4391.028765308616,25452.482423304813,2729.2749885970684,1540.7112475443641,2932.08144311484,1587.9641495358505,31543.96554405382,3000.676294173259,1597.7936114680313,3344.847429149408,1561.5044254155673,30843.490061558823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044549227060685787,0.0014095064908272305,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9868638559969511,0.9868638559969511,0.9617750408769872,0.9617750408769872,0.986447974733585,0.986447974733585,1.0374188905702775,1.0374188905702775,1.0694568152068211,1.0694568152068211,0.48372993105301665,0.4932237623186099,0.4692476975786796,0.5068737821469069,0.5270692475842288,0.4910732572047775,0.4950062395486725,0.47924699314648195,0.5068004124404655,0.5251436303385211,25.569825557205263,25.569825557205263,24.538156685921564,24.538156685921564,25.552526175473076,25.552526175473076,27.721461889360867,27.721461889360867,29.133728838328096,29.133728838328096,9.887979055272126,10.083261137016308,9.59757946891834,10.370855839116729,10.81113542694554,10.038685718627804,10.120359496025074,9.797119969668458,10.369288474496528,10.76839403802137,226.66065749098914,226.66065749098914,0.0,251.84517498998792,0.0,226.66065749098914,251.84517498998792,0,0
+2017/06/16 22:00:00,149.3794190474377,0,651.1864220514559,0,0,0,12.792605518202807,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.857364677564789e-09,20.83385592105556,0,0,0.0,491.47983574500745,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2746.9015695711505,4981.137315667536,96.63896456021521,0.0,492.88546191469396,0.0,17082.952742051544,224.3665866307049,0.0,781.16797209314,0.0,16073.055602134576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03466964744814356,0.001096923478521466,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8453875981584734,0.8453875981584734,0.7879655778425582,0.7879655778425582,0.8791654193268938,0.8791654193268938,0.9825656163983755,0.9825656163983755,0.9970118712701881,0.9970118712701881,0.47435281694985965,0.4736005268696189,0.4601688863384108,0.4878863079139829,0.51382513492701,0.47565038659563974,0.46784716663853765,0.46402753015706105,0.475320539294242,0.5079949958317894,20.08032766333794,20.08032766333794,18.08688906414814,18.08688906414814,21.317290424503184,21.317290424503184,25.391352364157996,25.391352364157996,25.99400173361738,25.99400173361738,9.698915813518624,9.683912313767905,9.420140038527904,9.972994242679732,10.520410266269252,9.724851585738989,9.569975361293032,9.495120864245749,9.718251728638279,10.394836785439935,149.3794190474377,149.3794190474377,0.0,165.97713227493077,0.0,149.3794190474377,165.97713227493077,0,0
+2017/06/16 23:00:00,94.57853456299617,0,484.2486726306898,0,0,0,7.257906404419322,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6373417545905638e-09,11.809647097101239,0,0,0.0,431.0131438618736,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1575.2115969112897,0.0,0.0,0.0,0.0,0.0,11652.674285910834,0.0,0.0,0.0,0.0,10568.226034517324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025781758017078066,0.000815716852292546,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7152597879353828,0.7152597879353828,0.6583711894989128,0.6583711894989128,0.7496757625225104,0.7496757625225104,0.9324051179444112,0.9324051179444112,0.8899109056812905,0.8899109056812905,0.4417704677134482,0.44003720030157956,0.4361702669527877,0.4558246720380555,0.4936593467347703,0.43977297245769514,0.42603584911712067,0.44241205746913376,0.4347179742676265,0.48541175681027415,15.763850479933097,15.763850479933097,14.104803378719069,14.104803378719069,16.835270952941826,16.835270952941826,23.36173584130195,23.36173584130195,21.72065262713012,21.72065262713012,9.071435615375563,9.039335355318954,8.968184675521528,9.336490843704922,10.092314203052695,9.034453173848533,8.784760563903177,9.08335065465387,8.941628752473918,9.92228957367145,94.57853456299617,94.57853456299617,0.0,105.0872606255513,0.0,94.57853456299617,105.0872606255513,0,0
+2017/06/17 00:00:00,45.898261994756176,0,479.30210054763666,0,0,0,0.29533987883812807,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,4.829397677525221,2.5799886698554175e-09,9.587890371012778,0,0,0.0,426.06657177882045,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83.88496999594645,36.95638363230951,106.20444403909792,922.6078155549885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025518398855417398,0.0008073843519940814,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8290059483830304,0.8290059483830304,0.8071852643910906,0.8071852643910906,0.8386606331243068,0.8386606331243068,0.9117537867328663,0.9117537867328663,0.8896854681455705,0.8896854681455705,0.5596663742088533,0.571462162782606,0.5325623723352557,0.5991382819886493,0.6776177940344946,0.5569236421406617,0.5528424361230247,0.5406741033589411,0.5741736973628622,0.6541106168055579,19.49749928672955,19.49749928672955,18.738643160666854,18.738643160666854,19.839637843388957,19.839637843388957,22.55509600932963,22.55509600932963,21.712141669183424,21.712141669183424,11.559041603174833,11.84103359102302,10.933944136747172,12.526361472808702,14.650430361384338,11.494338091707533,11.39866254767766,11.11768630204132,11.90670913570618,13.986188406241169,45.898261994756176,45.898261994756176,0.0,50.998068883062416,0.0,45.898261994756176,50.998068883062416,0,0
+2017/06/17 01:00:00,23.73013200370536,0,52.10163961358797,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5330365800275692,0,0,0.0,16.611287101043832,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0027739298850592295,8.776520797464153e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8244817432734064,0.8244817432734064,0.7888902327648936,0.7888902327648936,0.8290092835665899,0.8290092835665899,0.9483769798818067,0.9483769798818067,0.9782324204363242,0.9782324204363242,0.5277347218112757,0.5434423910387323,0.49075881872783494,0.5768389747033421,0.7246823240304262,0.5394824876269485,0.5390726280896595,0.5133832760559847,0.5670908563417025,0.6889933626914297,19.338516216410852,19.338516216410852,18.117886356569286,18.117886356569286,19.497616803602853,19.497616803602853,23.9972689279749,23.9972689279749,25.212147302179687,25.212147302179687,10.825943751382553,11.181044345663125,10.03218480918757,11.971575159093234,16.052126233402475,11.090515913512988,11.08118480171511,10.510841726389728,11.735828600550747,14.980456968542768,23.73013200370536,23.73013200370536,0.0,26.3668133374504,0.0,23.73013200370536,26.3668133374504,0,0
+2017/06/17 02:00:00,28.34422920411135,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248661176384571,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8282042965458002,0.8282042965458002,0.7954667050692069,0.7954667050692069,0.8292303716238044,0.8292303716238044,0.9524008514615193,0.9524008514615193,1.036461423276265,1.036461423276265,0.5193863026212274,0.5365862462978377,0.48169752150329187,0.570115581836277,0.7436338153110972,0.5231683135995006,0.52397780689679,0.4947910809345754,0.5534639075560767,0.6984505387742905,19.469266207915396,19.469266207915396,18.339396495172622,18.339396495172622,19.505407992688575,19.505407992688575,24.15897375440558,24.15897375440558,27.67982781260143,27.67982781260143,10.641560532018886,11.02473430239661,9.846679237035744,11.808536851581735,16.643495327420652,10.724716287819575,10.742595193179753,10.115874158267943,11.41318506732027,15.259085422091019,28.34422920411135,28.34422920411135,0.0,31.493588004568167,0.0,28.34422920411135,31.493588004568167,0,0
+2017/06/17 03:00:00,23.72203006989855,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249346462207626,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8205726334813856,0.8205726334813856,0.7919104824416148,0.7919104824416148,0.8189055586408449,0.8189055586408449,0.9397546144201454,0.9397546144201454,1.0320928644030078,1.0320928644030078,0.5206015422526956,0.5388009236747576,0.48131671804934734,0.5728234254387817,0.7613584107363495,0.5167611978867104,0.5184453689384079,0.48607162316362074,0.5486288184503396,0.7127257323939118,19.201839982917747,19.201839982917747,18.21938729011144,18.21938729011144,19.14374854721315,19.14374854721315,23.652920971227402,23.652920971227402,27.490294252996833,27.490294252996833,10.668212729645276,11.075003024942262,9.83896090072379,11.873964594836536,17.21051971185709,10.584205791406134,10.620968208949037,9.935784690439178,11.300640486521075,15.686975354183303,23.72203006989855,23.72203006989855,0.0,26.357811188776168,0.0,23.72203006989855,26.357811188776168,0,0
+2017/06/17 04:00:00,51.38654991198986,0,88.72588128136032,0,0,0,2.0507582806862055,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,11.746795199823218,0.0,0.5250980194173656,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.6248725734104,0.0,0.0,484.08447736914314,0.0,0.0,0.0,0.0,0.0,6433.960565620622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8963257903935823,0.8963257903935823,0.8668833564867504,0.8668833564867504,0.8951675715270763,0.8951675715270763,0.9399414031464434,0.9399414031464434,0.9647518791464198,0.9647518791464198,0.4731513490429895,0.4831632534891924,0.45275652094117924,0.5004830716119971,0.5285527850221148,0.4652179851276139,0.4663667876709913,0.4494236195791773,0.48184642995265714,0.5600901481775642,21.963703214898004,21.963703214898004,20.862056299217883,20.862056299217883,21.919695904369306,21.919695904369306,23.66034946979927,23.66034946979927,24.65928859102506,24.65928859102506,9.674965648621821,9.876445897015827,9.277902085183783,10.235206487551025,10.8441738018673,9.518383125501629,9.540889356769796,9.21471668611359,9.849699097949767,11.569067905538986,51.38654991198986,51.38654991198986,0.0,57.09616656887762,0.0,51.38654991198986,57.09616656887762,0,0
+2017/06/17 05:00:00,79.015959450732,0,212.9421150752648,0,0,0,0.3607546300431553,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,6.266164107285581,0.0,0.525033524203517,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1451.7198825072983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.958590786853525,0.958590786853525,0.9507981397695261,0.9507981397695261,0.9588263877978488,0.9588263877978488,0.9886825647203864,0.9886825647203864,0.9916155602153368,0.9916155602153368,0.5657813183441268,0.5801264224345087,0.5336507899526559,0.6069774087243676,0.6994267665125344,0.5536266756037512,0.5544352535858503,0.5302019064114462,0.5771517098004372,0.7010533229438237,24.408968218706733,24.408968218706733,24.094490123558742,24.094490123558742,24.418513192834695,24.418513192834695,25.64555613933078,25.64555613933078,25.767952081397695,25.767952081397695,11.704473069520986,12.052007749993507,10.958432777210575,12.726518471547152,15.288067121024667,11.416991391553537,11.435916980410084,10.881011570354403,11.979206533971805,15.336446797075595,79.015959450732,79.015959450732,0.0,87.79551050081334,0.0,79.015959450732,87.79551050081334,0,0
+2017/06/17 06:00:00,96.20658822213203,0,641.4073785953707,0,0,0,0.506749135807412,0.0,7.152684496737063,0.0,80.56906512710079,0,7.4529673748764855,2.521704919259038e-09,0.5251220850886146,0,0,0.0,410.72008726383376,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2077.111984889098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03414900393113891,0.0010804506805619076,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9954991973185485,0.9954991973185485,0.993647635162468,0.993647635162468,0.9959106868445532,0.9959106868445532,1.0397259080829537,1.0397259080829537,1.0116160933270542,1.0116160933270542,0.6670177196191069,0.6850484963413999,0.6346521382506953,0.7218165804941222,0.9011156438714525,0.6648502402571586,0.6696732534018971,0.640429044856265,0.7044989954617684,0.886405909090558,25.930524424390086,25.930524424390086,25.852944722193428,25.852944722193428,25.947783402649463,25.947783402649463,27.821917021796736,27.821917021796736,26.611306160037742,26.611306160037742,14.347941680369317,14.865375183132087,13.454465781700137,15.964046387720458,22.146276509456357,14.286688546238125,14.423264585063976,13.610611900165168,15.439310741096875,21.58856316461852,96.20658822213203,96.20658822213203,0.0,106.89620913570225,0.0,96.20658822213203,106.89620913570225,0,0
+2017/06/17 07:00:00,151.56471807187648,0,686.6597032079213,0,0,0,36.26426951755795,0.0,6.007946662624969,0.0,69.33401494192633,0,39.380909295966944,2.521708267230905e-09,0.5775776512785432,0,0,0.0,420.4820593638404,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,167.01462751506568,3642.1422589003528,16509.154884026684,3624.874053844147,1965.7537732210126,4063.4989834700555,1919.1138241155631,42226.03340475919,3858.298819490111,2072.2383572135345,4378.44620615931,2040.6800802001821,41617.42739466346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.036558271212209635,0.001156678217937156,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9998917097703386,0.9998917097703386,0.9517763376454583,0.9517763376454583,1.029696765412889,1.029696765412889,1.062322951140697,1.062322951140697,1.0565727987544646,1.0565727987544646,0.614285217282618,0.6309462869819176,0.5879405274338392,0.665712272520467,0.70452645820217,0.6197975366319889,0.6285529066770486,0.5969191451859721,0.6647360655764879,0.6998325919073058,26.11509064957309,26.11509064957309,24.13383498885537,24.13383498885537,27.386635662092033,27.386635662092033,28.816072676761507,28.816072676761507,28.561350166807756,28.561350166807756,12.915511328597105,13.355061158492958,12.245074249785702,14.311025276146495,15.440132646516531,13.059603124892803,13.291178506034356,12.470184462760287,14.283467602179897,15.300127144128808,151.56471807187648,151.56471807187648,0.0,168.405242302085,0.0,151.56471807187648,168.405242302085,0,0
+2017/06/17 08:00:00,190.87256021117935,0,739.8568624741042,0,0,0,51.56199238758583,0.0,11.505338207220207,0.0,87.89947186453183,0,39.380909295966944,2.5217082676440444e-09,0.5248484533529004,0,0,0.0,420.443689861207,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1781.971022572839,659.2449474921277,2373.2527021442584,4543.900702939302,29069.103450128954,6236.963976443972,3814.968798483552,6132.644710333264,4117.083129208966,54003.174464051,6449.997367889063,3814.458184504368,6483.005760924332,4121.611118355615,53139.22738763667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03939052737503172,0.001246288828683445,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0494780125234047,1.0494780125234047,1.0189369554075096,1.0189369554075096,1.06434313072738,1.06434313072738,1.083326347148417,1.083326347148417,1.0945744362133183,1.0945744362133183,0.5971778103223463,0.6095031441418858,0.576996132765483,0.634927071450158,0.6264012184924816,0.6041597698369605,0.6109623266136976,0.5857491286044789,0.6386729172860983,0.6256508530720128,28.24869822903412,28.24869822903412,26.92377011508904,26.92377011508904,28.905843581892228,28.905843581892228,29.756446609274533,29.756446609274533,30.266383341900422,30.266383341900422,12.47672151519545,12.791576357998991,11.975409606258552,13.46186424480608,13.233959104593083,12.654268453239126,12.829288157640889,12.190663058519178,13.562991755357231,13.214052032930326,190.87256021117935,190.87256021117935,0.0,212.08062245686594,0.0,190.87256021117935,212.08062245686594,0,0
+2017/06/17 09:00:00,257.7775262196566,0,866.6406271561078,0,0,0,74.4348132743927,0.0,11.128561489866103,0.0,106.27511244621549,0,39.380909295966944,2.910101811096706e-09,23.12615450785095,0,0,0.0,493.9919257743945,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7836.206864178093,4232.574385136799,7218.057638781859,7142.370317802608,52538.76228766558,10560.323633618189,6679.171137257783,9285.736943251655,7925.674576663549,63270.57095666187,10982.831446642003,6821.363609496367,9693.896947596822,8246.01391223213,63022.178630961775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04614058891628132,0.0014598560706675554,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1259083860397425,1.1259083860397425,1.0879652851378425,1.0879652851378425,1.106708074102039,1.106708074102039,1.1853420057509778,1.1853420057509778,1.1225318789589955,1.1225318789589955,0.6157583352180962,0.6139907459654214,0.5846046276165973,0.6795470276671688,0.5990797077272639,0.6346964386200947,0.6257589569601785,0.6005483972873621,0.7038275460847174,0.6009610337548152,31.709585710131066,31.709585710131066,29.966225239512937,29.966225239512937,30.82132743258677,30.82132743258677,34.534243799849136,34.534243799849136,31.552492940880356,31.552492940880356,12.95388945773415,12.907850964291555,12.162328588445021,14.70600694274519,12.52487593067184,13.45565768476331,13.21691850507591,12.5621693193917,15.419225715538659,12.572663949836127,257.7775262196566,257.7775262196566,0.0,286.4194735773962,0.0,257.7775262196566,286.4194735773962,0,0
+2017/06/17 10:00:00,288.15446692692626,0,952.6130770943504,0,0,0,77.90322973990861,0.0,14.932575465546352,0.0,131.64086955684016,0,39.380909295966944,2.8573968839797548e-09,20.8649076633525,0,0,0.0,491.23849443127665,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11600.594879921004,6699.406828402941,10557.28051874037,8142.903160725758,69290.04231111163,10016.767898758051,6717.991483309864,8716.201181477325,7727.39488657324,55984.79765156253,10524.250445668498,6916.296089331199,9167.141691342857,8093.492032625449,56594.7197732796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05071782583136017,0.0016046766560633265,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1541707978835332,1.1541707978835332,1.1251581341280594,1.1251581341280594,1.1359679622943606,1.1359679622943606,1.1802519820937063,1.1802519820937063,1.1611647083197494,1.1611647083197494,0.6066529992493074,0.6096040546100628,0.5781575185331168,0.6560349950991001,0.5778908600199011,0.6257098623706911,0.6234299725072925,0.5944400786441921,0.6755569733796881,0.5834659165423006,33.03899098634615,33.03899098634615,31.674647667455815,31.674647667455815,32.17982046475555,32.17982046475555,34.28806462474486,34.28806462474486,33.371885407236846,33.371885407236846,12.718182397683265,12.794181361395417,12.003779091366255,14.039665968832367,11.997260175591563,13.215616654882467,13.155275597683271,12.40768013003563,14.591240968982206,12.134193870737306,288.15446692692626,288.15446692692626,0.0,320.17162991880696,0.0,288.15446692692626,320.17162991880696,0,0
+2017/06/17 11:00:00,306.45949427585737,0,1029.695621514046,0,0,0,89.0631436394574,0.0,14.932575465546352,0.0,136.4899973586286,0,39.380909295966944,2.9101018110967043e-09,23.160893310893666,0,0,0.0,515.0855100821562,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13754.451611057902,7586.326280867878,12441.404671281542,8887.395896437103,79879.62555259433,12328.058801282172,7811.845820305487,10855.527628932705,8659.057148326201,66045.47133578386,12967.948074616092,8095.730229588209,11414.75699935853,9046.457965614478,67044.5517887522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0548217575918193,0.001734522196287838,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2009768338593423,1.2009768338593423,1.1644375402080467,1.1644375402080467,1.168427815483001,1.168427815483001,1.2013211610721197,1.2013211610721197,1.1953329353739277,1.1953329353739277,0.6249705150713462,0.6209298376153624,0.5898154086670533,0.6650468093735472,0.5825286196046503,0.6494558001452745,0.6387601781591857,0.6094516365014202,0.687122858016893,0.5919650098072415,35.29520152998737,35.29520152998737,33.52818717591357,33.52818717591357,33.71919897453242,33.71919897453242,35.31204020392663,35.31204020392663,35.01968566081709,35.01968566081709,13.196023894325563,13.089364675270971,12.29179191242092,14.292235215196385,12.111077813813367,13.857496944793368,13.565354812331677,12.790246858795868,14.92580571985772,12.345542672239105,306.45949427585737,306.45949427585737,0.0,340.51054919539706,0.0,306.45949427585737,340.51054919539706,0,0
+2017/06/17 12:00:00,302.8851384754519,0,973.1344397857739,0,0,0,97.21944177477639,0.0,14.876918395255093,0.0,124.80122689546741,0,39.380909295966944,2.9101018110967043e-09,23.17466690862165,0,0,0.0,494.0146808664281,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15287.57039972013,8739.292426451602,13611.825100793912,9113.9291022684,81684.42703680463,14105.117691730713,9062.14481218877,12515.546938818648,9577.502602388557,70467.55295711286,14742.259592868018,9340.545581615173,13056.691246329974,9898.98522002011,72145.17402571443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051810398381361714,0.0016392448899594846,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2098707109529814,1.2098707109529814,1.1707741542789676,1.1707741542789676,1.1743360335440585,1.1743360335440585,1.1971663748347172,1.1971663748347172,1.1864821279264337,1.1864821279264337,0.6416416466963655,0.6332141499861723,0.6041757775750171,0.6659675099089837,0.582078019311497,0.6708140415861507,0.6541613753459883,0.6264685583445958,0.6889672160034755,0.5939373784603827,35.73122776382388,35.73122776382388,33.83174458263679,33.83174458263679,34.00291613679282,34.00291613679282,35.10908668853875,35.10908668853875,34.58949158121729,34.58949158121729,13.643571558466903,13.415822886767145,12.654677951124015,14.31823726455292,12.099978466658115,14.455716236445099,13.987596901233871,13.23574681443894,14.979691988548836,12.39503815276369,302.8851384754519,302.8851384754519,0.0,336.5390427505021,0.0,302.8851384754519,336.5390427505021,0,0
+2017/06/17 13:00:00,293.803987097813,0,934.894228627197,0,0,0,92.6239045825852,0.0,14.988232461786234,0.0,122.5097643007467,0,39.380909295966944,2.8573968839797548e-09,20.869201251416204,0,0,0.0,491.2648222203954,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13449.699427117135,8214.501091705406,12629.08431383844,8455.63904022726,77326.63211682574,12972.69832690277,8621.720693159437,11953.427464113078,8977.378836389094,68708.21014766967,13463.486596587658,8890.305168481493,12460.216862273497,9237.716809820147,70120.0593746528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049774461214499736,0.0015748292571652446,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1659691884909753,1.1659691884909753,1.1571423838305634,1.1571423838305634,1.1545742067448626,1.1545742067448626,1.176600435220482,1.176600435220482,1.1757121767139656,1.1757121767139656,0.6169607140772674,0.6263002734060696,0.5970182014661435,0.6522867989184727,0.5815817213809844,0.6337956298865258,0.6425182455080112,0.6138743394162015,0.666702650708817,0.5911192034914585,33.60144825342658,33.60144825342658,33.18024522738848,33.18024522738848,33.05815078182144,33.05815078182144,34.1119355204292,34.1119355204292,34.069151922533905,34.069151922533905,12.985284012467943,13.231279625771961,12.472687495683559,13.935653509812695,12.087763675024348,13.431438127399232,13.66743805010043,12.904823807134264,14.339025170675143,12.324369362855762,293.803987097813,293.803987097813,0.0,326.4488745531255,0.0,293.803987097813,326.4488745531255,0,0
+2017/06/17 14:00:00,271.2349354630217,0,887.3512392377107,0,0,0,86.33356166536257,0.0,14.783782912797726,0.0,108.75639138185811,0,39.380909295966944,2.8037807652519795e-09,18.548315001778303,0,0,0.0,479.21218534345326,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13780.262054203331,8457.281057402251,12822.8118503068,8001.163261175178,77530.47929395857,11604.054474579343,8130.455779966308,10652.312514160574,8256.054290695287,61185.05169311797,12055.160086689295,8436.124992570903,11151.707494349423,8502.573248359397,62466.63619162747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0472432372439943,0.001494743095147107,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.193058683361161,1.193058683361161,1.192162489166487,1.192162489166487,1.1730377874519455,1.1730377874519455,1.176257490298685,1.176257490298685,1.1826058908264208,1.1826058908264208,0.6218836901560555,0.6444184430765855,0.6018147303135389,0.6578445049791578,0.5768598469518289,0.6381139053982486,0.6627747332758789,0.6175641738230002,0.6713818776306109,0.5860965179421727,34.90892608850632,34.90892608850632,34.865321578035775,34.865321578035775,33.94048226785719,33.94048226785719,34.09541451158475,34.09541451158475,34.40181540061195,34.40181540061195,13.114479037787788,13.719287697089896,12.594399571851739,14.09009779372282,11.972084352415635,13.54786133978557,14.2282252672249,13.001064214731315,14.471890296134035,12.199274639443885,271.2349354630217,271.2349354630217,0.0,301.37215051446856,0.0,271.2349354630217,301.37215051446856,0,0
+2017/06/17 15:00:00,266.8610360389267,0,883.5507627654139,0,0,0,84.26761757785756,0.0,14.83943990903761,0.0,106.31215624428707,0,39.380909295966944,2.8037807652519795e-09,18.628937806519577,0,0,0.0,475.4117088711564,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13595.717344338935,8484.989242636006,12804.026804218527,7871.413548346957,77763.83623265415,10937.685061137066,7889.877339218836,10164.83100182573,8004.526863218207,58808.85168290387,11290.43607150084,8158.901604450328,10590.297031228387,8210.85867647428,60045.6436650651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047040897061570955,0.0014883411928179738,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1941080913925637,1.1941080913925637,1.1957289525414452,1.1957289525414452,1.178626672451172,1.178626672451172,1.1721694677277168,1.1721694677277168,1.1931011713189807,1.1931011713189807,0.6107183313144637,0.6392275321224141,0.5967862607261645,0.6540568886767796,0.5751598579786619,0.6216612451730553,0.6531335022685404,0.6087072344395029,0.6641831363867325,0.5837185527812244,34.96001511294881,34.96001511294881,35.03898772477156,35.03898772477156,34.20961973367734,34.20961973367734,33.89875253076704,33.89875253076704,34.910993932453806,34.910993932453806,12.822975794024998,13.578016552966645,12.466827301304988,13.984697630016171,11.930673838025285,13.108618665404862,13.959096292231393,12.771045441117721,14.267877088300168,12.14043102670108,266.8610360389267,266.8610360389267,0.0,296.51226226547413,0.0,266.8610360389267,296.51226226547413,0,0
+2017/06/17 16:00:00,289.53728033071513,0,923.96257967324,0,0,0,95.361866828159,0.0,14.839439834986232,0.0,120.17895923267236,0,39.380909295966944,2.7492441969189053e-09,16.344129933727032,0,0,0.0,462.5879970101663,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14588.743230401153,10182.721230721385,13956.675457931235,8794.828864865836,83605.67223301066,11983.107211543282,9792.775616758743,11432.8966136372,9192.16056602285,64451.40348414236,12125.0163940856,10005.188390192623,11667.205881854072,9279.248131856972,66215.93069456753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049192452127045816,0.0015564148953320024,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.188718865326622,1.188718865326622,1.2380147263093981,1.2380147263093981,1.1813757234982214,1.1813757234982214,1.1839361609663102,1.1839361609663102,1.2007243356114594,1.2007243356114594,0.6079140762697243,0.6678439980485963,0.5982922220058193,0.652496507909409,0.573859239781341,0.6180812217710113,0.6902903036766961,0.6105196036276639,0.6623103682079705,0.583546204535035,34.697990722306756,34.697990722306756,37.12553115339172,37.12553115339172,34.34234785964074,34.34234785964074,34.46617284662571,34.46617284662571,35.28285574828668,35.28285574828668,12.750612852251209,14.37134593565223,12.504918421792496,13.94145685402701,11.899076369800909,13.01459735825685,15.018438967947489,12.817836450818064,14.215170487089267,12.13617574351099,289.53728033071513,289.53728033071513,0.0,321.70808925635015,0.0,289.53728033071513,321.70808925635015,0,0
+2017/06/17 17:00:00,315.08355076221056,0,949.7822317947627,0,0,0,98.6771929392619,0.0,16.630907673226492,0.0,138.40412594678773,0,39.380909295966944,2.8037807652519803e-09,18.55843970170931,0,0,0.0,488.40764913168897,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14368.359099535031,12778.22428828014,14992.573628624012,8890.780123363673,83626.97727674108,11920.950459224327,11587.62606439322,12262.159430151642,9193.782461581215,64931.70782812471,12090.48905513461,12041.169807057584,12622.614700669968,9309.264472107265,66952.46871813109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05056710953078413,0.0015999080973710285,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1770596010056107,1.1770596010056107,1.3447161028601642,1.3447161028601642,1.2078459601647893,1.2078459601647893,1.1825425746481888,1.1825425746481888,1.1951533710552023,1.1951533710552023,0.6021107177425695,0.738831941850697,0.6173431902790946,0.6461829919863138,0.5712616788667132,0.6138484726733028,0.7764553525343441,0.6365453735274714,0.6576621165942282,0.5838113319909181,34.134060904681476,34.134060904681476,42.58991252078766,42.58991252078766,35.63176536841411,35.63176536841411,34.3987535285213,34.3987535285213,35.01093511591171,35.01093511591171,12.601942972378609,16.49219696518263,12.99528375998743,13.767576177792193,11.836190373234956,12.904151221265664,17.704072001940233,13.505479267791415,14.085008120387329,12.142722281783648,315.08355076221056,315.08355076221056,0.0,350.092834180234,0.0,315.08355076221056,350.092834180234,0,0
+2017/06/17 18:00:00,313.54729714610346,0,943.075531913307,0,0,0,107.66401743792962,0.0,17.37545085433467,0.0,120.14191543460078,0,39.380909295966944,2.9619048045973046e-09,25.553028917855286,0,0,0.0,517.1913017627775,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13737.564227486218,10054.27377964664,13882.334220953087,8688.322072944959,83235.25426873319,14885.354635494767,11540.206780077015,15035.470456676976,10287.703446538186,80636.91351324719,15003.12557324519,11849.626314297286,15363.89039065543,10377.404503070302,82436.51093938616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050210039861398124,0.0015886106619297465,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1580371065232242,1.1580371065232242,1.2018076078532278,1.2018076078532278,1.168427619549269,1.168427619549269,1.1687750720832275,1.1687750720832275,1.1888288544303416,1.1888288544303416,0.6076954473277525,0.6766417069589656,0.612463497510945,0.6449531665191819,0.5902604525390319,0.6164699857643311,0.6946220804747347,0.6260273645704135,0.6527742925098744,0.6014845887210909,33.22282993339432,33.22282993339432,35.33583478178872,35.33583478178872,33.719189583313664,33.719189583313664,33.735845034813835,33.735845034813835,34.70332986134015,34.70332986134015,12.744985540972195,14.622372989886998,12.868181560766544,13.73390663150019,12.302903769923091,12.972463337739896,15.145825469969338,13.224037767525147,13.949147011277276,12.58599021968773,313.54729714610346,313.54729714610346,0.0,348.38588571789273,0.0,313.54729714610346,348.38588571789273,0,0
+2017/06/17 19:00:00,300.00351057532754,0,897.7939135192494,0,0,0,104.54997064250655,0.0,19.566948616249128,0.0,110.89738010901058,0,39.380909295966944,2.9619048045973037e-09,25.608301908632285,0,0,0.0,507.40003588126393,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10753.364046221946,7150.121476788781,11307.874595808064,7428.089202365864,75581.52789224681,15761.61453809641,11165.879648459582,15533.849939567854,10217.209533125668,98770.46106657515,16154.183449624123,11487.163808188638,16104.184169327442,10406.826027796902,99943.40631051341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04779921295770188,0.0015123337791817732,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1833811808231838,1.1833811808231838,1.2084438584765849,1.2084438584765849,1.1726908083881642,1.1726908083881642,1.1523849575236775,1.1523849575236775,1.209977316417334,1.209977316417334,0.6526517242208144,0.6932139018415002,0.6410625723123694,0.6780783091770882,0.6428251906262206,0.6583833098780546,0.7009606547118338,0.6480645510872957,0.6824066264370935,0.651150702230258,34.439316920836674,34.439316920836674,35.661124005268974,35.661124005268974,33.92380438696418,33.92380438696418,32.95423439395309,32.95423439395309,35.73646778966139,35.73646778966139,13.945753432411934,15.104325592601143,13.627823817081307,14.663682063458424,13.675802889370516,14.105141933921132,15.333687440446568,13.819215476821554,14.788681310464142,13.904247078907858,300.00351057532754,300.00351057532754,0.0,333.33723397258615,0.0,300.00351057532754,333.33723397258615,0,0
+2017/06/17 20:00:00,268.541352185393,0,858.9176488321931,0,0,0,87.29505551766901,0.0,23.798027217215836,0.0,94.88958839347283,0,39.380909295966944,2.9101018110967043e-09,23.177771758158215,0,0,0.0,504.014123706752,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8305.963629647234,5245.589777523626,8945.86886405362,6642.931977599692,62691.58200779823,12502.71900011515,8699.857489294398,12397.003159305814,7957.4885911791835,80853.30463064175,12761.664293300104,8946.20859451342,12817.007985094357,8036.207347144066,81363.03661055748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04572941182985457,0.0014468467142670853,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1746784088085942,1.1746784088085942,1.1936731003032068,1.1936731003032068,1.1651852999120746,1.1651852999120746,1.1344402584736581,1.1344402584736581,1.2017068252644036,1.2017068252644036,0.6537027398724138,0.6844214587095657,0.6427347345899133,0.6727273943825837,0.6487593396698783,0.6564098896946485,0.6906762569339326,0.6470497576356682,0.6736145667487667,0.6527954220072422,34.01938980121156,34.01938980121156,34.93883424906009,34.93883424906009,33.56394463586341,33.56394463586341,32.108196058893824,32.108196058893824,35.330904435594306,35.330904435594306,13.974874313187712,14.847144871794242,13.67333736543361,14.510271287362656,13.838322719792828,14.050102790492247,15.029755966637396,13.79134545123452,14.535620832818964,13.949732094756413,268.541352185393,268.541352185393,0.0,298.37928020599225,0.0,268.541352185393,298.37928020599225,0,0
+2017/06/17 21:00:00,276.6190333920824,0,836.5797506772889,0,0,0,84.7995590839673,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,2.961904804597304e-09,25.60993085363715,0,0,0.0,517.1665780643917,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7646.443871910735,4796.017377368115,8089.952776149904,6082.979287380135,58745.299224723945,12296.406815483553,8444.025016961205,11928.5161132617,7850.477663695754,78815.76316161695,12455.295698244261,8570.804833927219,12201.735858950196,7892.852998917039,78925.51606274428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04454012558625738,0.0014092185265205668,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1476531740000615,1.1476531740000615,1.1634852100104935,1.1634852100104935,1.139926894059821,1.139926894059821,1.1148207601142697,1.1148207601142697,1.1792470109241397,1.1792470109241397,0.6377765353769215,0.6648476820243543,0.625945949649808,0.6544851294992501,0.6399661057117241,0.6384254981373433,0.6658414226832152,0.6276817648121843,0.6529122797183271,0.6420626218418581,32.73014864537335,32.73014864537335,33.482672242593665,33.482672242593665,32.36578045377705,32.36578045377705,31.195144349198884,31.195144349198884,34.2395507499304,34.2395507499304,13.538736520529326,14.286616370597088,13.221877982126529,13.996583358873607,13.598045599062019,13.556293348336325,14.31467419090444,13.267988209086838,13.952968276804555,13.65502897077019,276.6190333920824,276.6190333920824,0.0,307.35448154675817,0.0,276.6190333920824,307.35448154675817,0,0
+2017/06/17 22:00:00,210.66538273024398,0,625.9162899591562,0,0,0,74.12690260004499,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,2.80378076525198e-09,18.531103725424096,0,0,0.0,466.2097036527075,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5235.8972027252175,3358.941973984662,5486.579071488393,4507.264513692306,40345.14124512178,11475.259510523076,7922.050720917547,10891.48266229808,7448.36538097209,71426.08955595027,11496.542613719825,7940.909056825416,10990.51072759509,7436.80372639089,71403.9910571981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033324246897794216,0.0010543559429299577,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0991131986323235,1.0991131986323235,1.1127741253086583,1.1127741253086583,1.0928113882645247,1.0928113882645247,1.0682943565906817,1.0682943565906817,1.1065586078363785,1.1065586078363785,0.6230148856460107,0.6477753394258362,0.6124638414142368,0.6387449844939554,0.6237035877309205,0.6201321224412613,0.6447459436953502,0.6108438465126846,0.6334615873592653,0.6228322009496907,30.473381658989908,30.473381658989908,31.100631350625576,31.100631350625576,30.186166612942444,30.186166612942444,29.081843855156976,29.081843855156976,30.814461066319822,30.814461066319822,13.14431390714634,13.81126809331677,12.868190482062872,13.564943338467259,13.162505367471667,13.068391631889995,13.728239844871865,12.82622265507132,13.42246585351846,13.139491905237648,210.66538273024398,210.66538273024398,0.0,234.07264747804885,0.0,210.66538273024398,234.07264747804885,0,0
+2017/06/17 23:00:00,145.3221593790512,0,511.97082342218215,0,0,0,55.6983507494737,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.693777920986054e-09,14.11282756804546,0,0,0.0,458.735294653366,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2211.932796146693,1444.2062073588772,2468.3775319634074,2898.115276253323,21618.939870239097,9002.646194976076,6329.216108226771,8418.86730711633,5929.4095536964205,56597.75713166062,8895.416053293911,6257.080001393353,8376.250362968056,5842.60825937692,56248.852262254375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.027257705859199025,0.0008624148131967393,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.059161705776251,1.059161705776251,1.0711321052882936,1.0711321052882936,1.054001429772812,1.054001429772812,1.0217920310233808,1.0217920310233808,1.0565683721280716,1.0565683721280716,0.6105769529029884,0.6330244857465156,0.6009062135827355,0.6241618616032867,0.6125242081929406,0.6034612653935505,0.6253509426765195,0.595098310518211,0.6144572108282862,0.6084453341886283,28.675888217890474,28.675888217890474,29.20858748543499,29.20858748543499,28.447826073216504,28.447826073216504,27.046170844429668,27.046170844429668,28.561154530389686,28.561154530389686,12.81931939790266,13.410732757164098,12.571269276462203,13.174621673115752,12.869756553929975,12.636410669864063,13.20610229293348,12.424250023179837,12.919987302284412,12.76429559581132,145.3221593790512,145.3221593790512,0.0,161.46906597672353,0.0,145.3221593790512,161.46906597672353,0,0
+2017/06/18 00:00:00,51.25433410395591,0,494.805507721082,0,0,0,6.611777032571011,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,1.6452749784944216,2.6373726794589535e-09,11.81164802545304,0,0,0.0,441.5699789522658,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2255.021201234245,1592.9776782303288,2243.529340717314,1349.288847839182,15394.68650918071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.026343811736808675,0.0008334998402010613,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0152371917931735,1.0152371917931735,1.0215065490807524,1.0215065490807524,1.0118047694744186,1.0118047694744186,0.9909333386384949,0.9909333386384949,1.0058822210160756,1.0058822210160756,0.7900087632132794,0.8363891146301903,0.7764282618452866,0.8104379986910265,0.803897846831617,0.7658510465462076,0.8087485061333443,0.7564596253791559,0.7799406350398136,0.7930063334098232,26.765608759083662,26.765608759083662,27.03391821749605,27.03391821749605,26.619333905257307,26.619333905257307,25.739453144963065,25.739453144963065,26.367981251732104,26.367981251732104,18.155431459325058,19.758789938676273,17.703177644737593,18.850491514448194,18.62605610831632,17.35637744998816,18.79234097896746,17.052458954780988,17.81939378544962,18.256311007426746,51.25433410395591,51.25433410395591,0.0,56.94926011550657,0.0,51.25433410395591,56.94926011550657,0,0
+2017/06/18 01:00:00,23.722083462513357,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249880388355684,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0835037109393297,1.0835037109393297,1.1022851406504766,1.1022851406504766,1.0796518445002594,1.0796518445002594,1.0687047894352544,1.0687047894352544,1.0972901632503271,1.0972901632503271,0.8007081130133988,0.8577583402361341,0.785953295710563,0.8219033525262964,0.8590972804360487,0.7825746580532469,0.8394036453260155,0.7727423148231991,0.7962565406710912,0.8448996230363093,29.76445349295679,29.76445349295679,30.61846067512269,30.61846067512269,29.59081186351314,29.59081186351314,29.100157585192548,29.100157585192548,30.390154304009585,30.390154304009585,18.517251133148577,20.527869141666827,18.01955661872914,19.248294517830246,20.57668962072607,17.906891826295677,19.866129931960643,17.581783293613597,18.366123231726135,20.062804500235032,23.722083462513357,23.722083462513357,0.0,26.35787051390373,0.0,23.722083462513357,26.35787051390373,0,0
+2017/06/18 02:00:00,28.344415455092296,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250523686194025,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1079254851284475,1.1079254851284475,1.1287398121431442,1.1287398121431442,1.1040011591680277,1.1040011591680277,1.096299786683128,1.096299786683128,1.16196129033959,1.16196129033959,0.7999426094282288,0.8584396033293192,0.7853194630088607,0.8204374226709757,0.8822870818648464,0.7830750865768612,0.8433295454007282,0.773367581588496,0.7960698102060512,0.8625079283649657,30.87728241739859,30.87728241739859,31.84160698638611,31.84160698638611,30.697090729578505,30.697090729578505,30.34498803965741,30.34498803965741,33.409897524918065,33.409897524918065,18.491203080368408,20.552700092861798,17.998383728588692,19.197124027760893,21.43398333614421,17.92354861560777,20.006490428420193,17.602335292437488,18.359802194653057,20.701384267691253,28.344415455092296,28.344415455092296,0.0,31.49379495010255,0.0,28.344415455092296,31.49379495010255,0,0
+2017/06/18 03:00:00,23.722214030200394,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251186065226022,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1075102684474598,1.1075102684474598,1.129107939544077,1.129107939544077,1.10405295405884,1.10405295405884,1.102143139060993,1.102143139060993,1.156534776507934,1.156534776507934,0.8181416133671372,0.8780459802765429,0.8043323088457112,0.8381941334945093,0.901388095632686,0.8003700627289206,0.8624519402390423,0.7918133978865519,0.8129726312021617,0.8825894691800331,30.858192500307595,30.858192500307595,31.858790981960098,31.858790981960098,30.699465585515668,30.699465585515668,30.61195846295969,30.61195846295969,33.151340153934626,33.151340153934626,19.117166918702353,21.275541380944958,18.640909322376103,19.82301659108228,22.15668949142274,18.505745123295597,20.69933343219921,18.21611856873652,18.93795665978132,21.445308309258976,23.722214030200394,23.722214030200394,0.0,26.35801558911155,0.0,23.722214030200394,26.35801558911155,0,0
+2017/06/18 04:00:00,61.319683934377586,0,106.50749985255945,0,0,0,17.30068022020776,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,6.430012701594725,0.0,0.5250926005120211,0,0,0.0,17.781618571199125,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,973.5641254265204,10175.01423335778,2629.42125105012,1999.959249824146,2532.6849872366283,1731.0164458455363,17724.774530513896,2340.3762965824562,1749.9508582918418,2320.548339719678,1489.8513388438996,14222.308353714428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.005670538182965456,0.00017941187541785426,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0644056400844828,1.0644056400844828,1.073549605816044,1.073549605816044,1.0631801819021807,1.0631801819021807,1.044344787872679,1.044344787872679,1.0524430363530874,1.0524430363530874,0.6094331475129474,0.6308428545789944,0.6033964431141519,0.6220928010363995,0.6077798889556644,0.5968378034191741,0.6197126423276854,0.5913466860720173,0.607525813361377,0.6149634509477002,28.9086236328708,28.9086236328708,29.316785585263432,29.316785585263432,28.854147768101924,28.854147768101924,28.023622081152666,28.023622081152666,28.379139864654633,28.379139864654633,12.789769654856983,13.352295265687374,12.634754514051608,13.119990077663616,12.747158746233353,12.468129372688281,13.057373993715856,12.33006094662278,12.740620745312953,12.9331691857614,61.319683934377586,61.319683934377586,0.0,68.13298214930843,0.0,61.319683934377586,68.13298214930843,0,0
+2017/06/18 05:00:00,109.27225053950244,0,212.9421150752648,0,0,0,29.4757981933152,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,7.354622600382028,0.0,0.5778225566054589,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3140.9225656380368,2065.266316205036,3132.4225546028515,2088.058074894224,23364.798672188877,3679.7144793936905,2756.8497810844524,3550.572162228832,2402.8116290282537,22986.967740072032,3335.27006468192,2511.813895905851,3296.500640244681,2114.616032292814,22288.547577075788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0626947206020882,1.0626947206020882,1.0647755353145232,1.0647755353145232,1.0624436063200688,1.0624436063200688,1.053386493235739,1.053386493235739,1.0521405170568117,1.0521405170568117,0.5376941591550073,0.5502253826454878,0.5331696099626184,0.5521243722936532,0.5121819082263559,0.5184744170635215,0.5303190472813464,0.5132883288172116,0.532160935967837,0.5245530802430407,28.83258211669059,28.83258211669059,28.92507725539197,28.92507725539197,28.821430160101727,28.821430160101727,28.42071229215236,28.42071229215236,28.36581646374846,28.36581646374846,11.049855136753465,11.337691054556899,10.94760023441873,11.381903710375,10.48486856544541,10.621603353762666,10.883632720847984,10.508786727742319,10.924925048117046,10.755318231030074,109.27225053950244,109.27225053950244,0.0,121.41361171055826,0.0,109.27225053950244,121.41361171055826,0,0
+2017/06/18 06:00:00,132.88406973333323,0,632.0780882193695,0,0,0,36.34611435350046,0.0,6.364585235931608,0.0,80.56906512710079,0,9.079477616493678,2.5217347896322183e-09,0.5248273977849905,0,0,0.0,401.39079688783266,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3952.1328419033216,2563.7962501935363,3992.361151475659,3119.147529266094,28439.259589987807,4388.4103270735295,3175.4938072074065,4323.553770300633,3279.9178266317444,28728.428087882,4050.6962419690044,2930.191661131333,4082.182738112943,3064.2498113873917,27941.788611347478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033652305601253034,0.0010647354916316146,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0616463319481646,1.0616463319481646,1.0621345390244077,1.0621345390244077,1.0631808434249552,1.0631808434249552,1.087464586387083,1.087464586387083,1.0482975280996136,1.0482975280996136,0.5234570239017647,0.5386774247496964,0.5199375660318106,0.5630743507335503,0.493898180190183,0.5035906073962384,0.5179435887414259,0.4998464340600295,0.5494022751089958,0.5043388176730241,28.78603819622161,28.78603819622161,28.807707602511087,28.807707602511087,28.85417716066128,28.85417716066128,29.943547116532272,29.943547116532272,28.196853060469763,28.196853060469763,10.731089645252482,11.072194253751064,10.653642722888847,11.639893322077995,10.097281529803709,10.300946612780066,10.610002416855139,10.221789883498758,11.318575862820879,10.31683739371364,132.88406973333323,132.88406973333323,0.0,147.64896637037026,0.0,132.88406973333323,147.64896637037026,0,0
+2017/06/18 07:00:00,128.02962438881528,0,683.6984575536881,0,0,0,12.944376990599165,0.0,5.845253604360314,0.0,69.33401494192633,0,39.38090929596693,2.521738104013937e-09,0.5250695534407871,0,0,0.0,417.5208137096072,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3535.1385939989113,1981.2173583556803,4048.2373309910513,4527.595611833906,32688.594536917437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03640061230016386,0.0011516899998573547,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1006121278849226,1.1006121278849226,1.1058212536077077,1.1058212536077077,1.097473867732722,1.097473867732722,1.0841898524658087,1.0841898524658087,1.0956454253317198,1.0956454253317198,0.9143210290323273,0.9280994958481916,0.9262724535226199,0.9294950372758277,1.0192044624258154,0.9092755133990781,0.9185907821289565,0.9263524337811537,0.9222486035529859,1.0171963040357617,30.54189739209005,30.54189739209005,30.780598608597657,30.780598608597657,30.398535858115054,30.398535858115054,29.795438857222223,29.795438857222223,30.315164199891726,30.315164199891726,22.654439425776616,23.19214811202025,23.120409348387867,23.247033919940336,26.935225590242638,22.459447780832818,22.82025233476746,23.123546975450083,22.962884393592674,26.849295252469915,128.02962438881528,128.02962438881528,0.0,142.25513820979475,0.0,128.02962438881528,142.25513820979475,0,0
+2017/06/18 08:00:00,166.51979400821077,0,739.5401811905707,0,0,0,20.422213107282776,0.0,9.274480239855507,0.0,96.91714705112861,0,39.380909295966944,2.5217381044229304e-09,0.5250443114552357,0,0,0.0,420.12700857767356,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7727.965763287827,4495.196946578439,7326.192663926655,7378.83036587922,50021.376132527585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03937366702892846,0.0012457553790853684,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1423803710257066,1.1423803710257066,1.1330444811677225,1.1330444811677225,1.1247709706104057,1.1247709706104057,1.2169672044701578,1.2169672044701578,1.1247629900262648,1.1247629900262648,1.1410322393048984,1.136061534685206,1.1321570516883763,1.275666745602798,1.2505492721455864,1.1683465018808303,1.1532352600332387,1.166544879113499,1.322293759806777,1.2639310190375208,32.48127873350833,32.48127873350833,32.042822957762596,32.042822957762596,31.656625309190034,31.656625309190034,36.08074243945247,36.08074243945247,31.65625386695821,31.65625386695821,32.41779107335272,32.18420993829214,32.00129189525504,39.02348047013737,37.753361749653195,33.71530166689554,32.99457753555464,33.62900308831374,41.42065172572064,38.42808479235057,166.51979400821077,166.51979400821077,0.0,185.0219933424564,0.0,166.51979400821077,185.0219933424564,0,0
+2017/06/18 09:00:00,229.12203116942194,0,792.775422380979,0,0,0,80.58605344915794,0.0,9.274480239855507,0.0,97.06762091869685,0,39.380909295966944,2.5217381044229813e-09,0.5249837949200181,0,0,0.0,420.1267209992657,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10084.016249488779,5640.11773896908,8845.431047915024,8336.44741133887,56100.84498326039,11566.086108534337,7278.858912632282,10541.803611077998,8254.903620026476,68046.83098273157,11916.816508704642,7405.047608202192,10964.481310034296,8308.894576764289,69730.58855520666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04220795070160385,0.001335430138830125,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1662936852955434,1.1662936852955434,1.1402127288958217,1.1402127288958217,1.133985616548271,1.133985616548271,1.214282663933102,1.214282663933102,1.1323346996854284,1.1323346996854284,0.758000155612119,0.7646571226237704,0.7212749125708305,0.8855172243666791,0.7385048973664663,0.7928890501339176,0.7923123785886652,0.7498222031898986,0.9526184706833056,0.7530455606862823,33.6169787033614,33.6169787033614,32.37922628980364,32.37922628980364,32.08689535649519,32.08689535649519,35.94835808818064,35.94835808818064,32.00960364521208,32.00960364521208,17.102054014097774,17.31753146150176,15.947437711825259,21.555151998671846,16.481928373876983,18.25235681907037,18.232922907419365,16.83993849920131,24.167737260788257,16.942910106897358,229.12203116942194,229.12203116942194,0.0,254.58003463269105,0.0,229.12203116942194,254.58003463269105,0,0
+2017/06/18 10:00:00,285.84264966157633,0,955.1468041016037,0,0,0,81.86734014418106,0.0,13.065493553185489,0.0,124.87761316689259,0,39.380909295966944,2.9101339541404035e-09,23.219318295985826,0,0,0.0,493.7722214385299,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11618.070184969605,6609.370216359722,10520.567635129708,8225.642000383112,65854.06622603798,11721.972371979138,7702.666283535664,10457.883738403183,9295.592067534148,61363.141408464944,12204.028653617905,7911.745897184943,10838.303328810336,9884.741113248681,62200.01801481891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05085272333397482,0.0016089447190147383,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1759906871563526,1.1759906871563526,1.155348443250708,1.155348443250708,1.1513497986697965,1.1513497986697965,1.1877196668625916,1.1877196668625916,1.1631918630089493,1.1631918630089493,0.6584397713091218,0.6683370313956534,0.6301084004354002,0.7341042926539748,0.6169761112211225,0.6713991834792984,0.6780165229370486,0.6380380263540901,0.758469377934852,0.6211594097711849,34.082564009166006,34.082564009166006,33.09493723590212,33.09493723590212,32.905151356129096,32.905151356129096,34.64950355412894,34.64950355412894,33.46865788624207,33.46865788624207,14.106719139368522,14.385325140198916,13.332668527430457,16.344204166828575,12.985686444419713,14.472383449567658,14.66190358060453,13.545808615206269,17.117180087640293,13.095405564111786,285.84264966157633,285.84264966157633,0.0,317.60294406841814,0.0,285.84264966157633,317.60294406841814,0,0
+2017/06/18 11:00:00,311.19134889587,0,1008.3704599741071,0,0,0,89.08636208612948,0.0,12.935301236479537,0.0,143.25325374857618,0,39.380909295966944,2.9101339541404023e-09,23.103547323353492,0,0,0.0,493.7603485422173,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15231.815881211818,8060.45621369465,12619.035493808278,9391.931252745457,76500.85821841563,13140.765167763,8155.210968237482,11059.248233183893,9608.054746164651,62900.4045478587,13563.803519614785,8298.975572374198,11293.231627785553,9990.68032164846,63994.57679519218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05368639019574363,0.001698599963292363,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2411951268350239,1.2411951268350239,1.1710820694823525,1.1710820694823525,1.169938499066763,1.169938499066763,1.2322111687383541,1.2322111687383541,1.1806185083598342,1.1806185083598342,0.670431292237178,0.6494019480182911,0.6136702508028602,0.7227973740083031,0.5923364567887363,0.6929275570225389,0.6629085052004466,0.6248478329822613,0.749327801704639,0.6000521011931294,37.28444140265739,37.28444140265739,33.84652667144336,33.84652667144336,33.79164185359063,33.79164185359063,36.83624678010065,36.83624678010065,34.305765814873666,34.305765814873666,14.444822002483548,13.856013593953989,12.899517893597235,15.994151712499288,12.354851021175676,15.095897318339652,14.231987754851161,13.19277510387947,16.82418398058853,12.549556753265747,311.19134889587,311.19134889587,0.0,345.7681654398556,0.0,311.19134889587,345.7681654398556,0,0
+2017/06/18 12:00:00,293.8433259651976,0,967.2763924694957,0,0,0,94.67329734134475,0.0,12.935301236479537,0.0,124.80122689546741,0,39.380909295966944,2.8038123660125784e-09,18.62061599068075,0,0,0.0,488.15663355014976,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888.401666112168,8373.904063136277,12837.249192099052,8851.60629289034,76674.5375828556,14715.751020424368,8810.25795916065,12351.423213406239,9627.312025739657,68474.45156519437,15220.36589463748,8988.01632862441,12632.318416529508,9930.746463734351,70249.8766025848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05149851160314837,0.0016293770096998323,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2278929531045746,1.2278929531045746,1.1618131926522597,1.1618131926522597,1.159752829847044,1.159752829847044,1.1891046370704446,1.1891046370704446,1.1712277010369014,1.1712277010369014,0.6676731808716748,0.6383170649388741,0.6072896655870039,0.6851480880478265,0.5828947800201026,0.691041455381648,0.6532863712554917,0.6205430227385009,0.7043390723562982,0.5959241470635404,36.6215880339286,36.6215880339286,33.40282895908982,33.40282895908982,33.30456032687319,33.30456032687319,34.716718591500154,34.716718591500154,33.85351901420188,33.85351901420188,14.366505131693117,13.553358560703956,12.734546584229406,14.86827224824647,12.12010369644095,15.04047031596248,13.963332106707753,13.079191324587555,15.43452520583449,12.44506568089946,293.8433259651976,293.8433259651976,0.0,326.4925844057751,0.0,293.8433259651976,326.4925844057751,0,0
+2017/06/18 13:00:00,291.1095288878328,0,909.5756511449501,0,0,0,92.0839946767068,0.0,12.88660173648153,0.0,124.7641830973959,0,39.380909295966944,2.8038123660125797e-09,18.561864876023467,0,0,0.0,465.9462447381484,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15021.676565338825,8345.155653597825,12158.319477787209,8228.239477514933,72656.87773658398,14442.607694073751,8849.578733085988,12033.102892103489,9079.919612297497,66276.89030026158,14943.716837571448,9082.173058803954,12348.187068505571,9327.961548633735,68377.953813248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04842648139570579,0.0015321801153180472,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2148454537926392,1.2148454537926392,1.1715721023761316,1.1715721023761316,1.1475487954215045,1.1475487954215045,1.1716512288856926,1.1716512288856926,1.1591927167882548,1.1591927167882548,0.663948634174361,0.6447054066509107,0.6014434907089434,0.667699971286817,0.5751957545194397,0.6873245456086816,0.6657987042745732,0.6160202353542844,0.6848827221229817,0.5895498033682748,35.976094599540275,35.976094599540275,33.87005764657948,33.87005764657948,32.725213518873716,32.725213518873716,33.87385792237026,33.87385792237026,33.277868639040776,33.277868639040776,14.261269010995747,13.727131522659164,12.584943704017178,14.367264264231821,11.931546956212742,14.931691228449722,14.313467176105789,12.960722422061323,14.860553858102733,12.285164373792895,291.1095288878328,291.1095288878328,0.0,323.45503209759204,0.0,291.1095288878328,323.45503209759204,0,0
+2017/06/18 14:00:00,263.8020670559196,0,866.6016179567389,0,0,0,83.01437989124426,0.0,12.88660173648153,0.0,111.01081017850728,0,39.380909295966944,2.693808887852472e-09,14.077390748571574,0,0,0.0,458.46256406248136,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14033.311315226374,8785.906847037782,11718.981616177314,7654.121550956148,69413.58968214197,12167.554368824323,8529.74229466491,10288.064776489273,8068.123485946161,56790.71825658156,12579.412379228088,8847.778005892826,10601.625745357318,8283.65345588763,58714.63648687449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046138512037612545,0.0014597903596741792,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1996864082065395,1.1996864082065395,1.2234938010833731,1.2234938010833731,1.152984967216608,1.152984967216608,1.1631345162819278,1.1631345162819278,1.157434287747282,1.157434287747282,0.6418986316300539,0.6730077855088012,0.5967842853987306,0.6594022590584294,0.564668375241065,0.6567017488354958,0.6943416728023635,0.6070848377619217,0.6733085932188795,0.5773178094979602,35.23212608626821,35.23212608626821,36.40342695081177,36.40342695081177,32.98269987178915,32.98269987178915,33.46591851518143,33.46591851518143,33.19413577161119,33.19413577161119,13.65056483985451,14.518279337618225,12.466777402882315,14.133626720881026,11.677883269477476,14.058232175602953,15.137554855460394,12.729279990721452,14.526874275065438,11.983261431129236,263.8020670559196,263.8020670559196,0.0,293.1134078399107,0.0,263.8020670559196,293.1134078399107,0,0
+2017/06/18 15:00:00,257.99056423601706,0,866.6577536083728,0,0,0,79.3849165038322,0.0,12.935301171685163,0.0,108.75639138185811,0,39.380909295966944,2.693808887852473e-09,14.101070677526671,0,0,0.0,458.5186997141153,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12519.696668440067,10486.177523082788,11217.803056576704,7470.065780315835,66844.03995556058,10709.404225827795,9221.293874392022,9367.276649317695,7539.334795498413,51789.73502539502,10938.40352466951,9617.643381905798,9588.216735218048,7696.334120734358,53791.74060130245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04614150074128559,0.0014598849201750961,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.164851085121608,1.164851085121608,1.2893587553209858,1.2893587553209858,1.1397535641895018,1.1397535641895018,1.1536903778352505,1.1536903778352505,1.1499594280665468,1.1499594280665468,0.6108002013318193,0.7094855241923365,0.5814771216545013,0.6425666169332422,0.5519776455819749,0.6219207800277751,0.7385578990756118,0.5898387555595647,0.6543500560712607,0.5649903882456794,33.54796053702594,33.54796053702594,39.72230397096293,39.72230397096293,32.357628194738595,32.357628194738595,33.01618023047939,33.01618023047939,32.839278810489006,32.839278810489006,12.8250935522058,15.589081029214057,12.085190649845984,13.668755992396427,11.378482017140172,13.115456389202578,16.48359221767838,12.292374624110153,13.992833567772706,11.685571096683262,257.99056423601706,257.99056423601706,0.0,286.6561824844634,0.0,257.99056423601706,286.6561824844634,0,0
+2017/06/18 16:00:00,251.34477257428998,0,907.5667299717011,0,0,0,61.95662311185753,0.0,11.08681950462398,0.0,124.87761316689259,0,39.380909295966944,2.693808887852473e-09,14.042807492255118,0,0,0.0,446.1921473086273,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8462.594973817671,6595.119696678346,8266.102468557798,6974.819858891152,51443.24174949969,8498.676337709785,6720.0354908764175,7613.581328952273,5314.247217412817,43210.28705694169,8873.984753209637,7188.654937103956,8065.955796238083,5513.617114722801,44360.34113497456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0483195249444207,0.0015287960877541837,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1486310713336376,1.1486310713336376,1.2092700421625617,1.2092700421625617,1.134037355539557,1.134037355539557,1.15093643666221,1.15093643666221,1.1522148567861457,1.1522148567861457,0.6077195006086648,0.671706151804558,0.5828733466985008,0.6293996474285689,0.5561275819877983,0.6148989042101503,0.690806582762756,0.5913953510368672,0.6368528771375375,0.564703419205512,32.776401420470236,32.776401420470236,35.701708830568776,35.701708830568776,32.08931907324801,32.08931907324801,32.88556084434005,32.88556084434005,32.946166588194586,32.946166588194586,12.745604549111349,14.481133079453159,12.119575203093575,13.313750786615856,11.475619393745035,12.931487847752848,15.03357886053746,12.331278829151287,13.513779672366582,11.67871970065353,251.34477257428998,251.34477257428998,0.0,279.27196952698887,0.0,251.34477257428998,279.27196952698887,0,0
+2017/06/18 17:00:00,269.45281952625027,0,939.0283057016499,0,0,0,70.8961356984959,0.0,11.156669714402236,0.0,129.38645076019097,0,39.380909295966944,2.8038123660125797e-09,18.632654054390297,0,0,0.0,477.65372303857623,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8924.563302768427,9217.23171019265,9845.803470044099,6996.753436612747,55467.81578439293,9580.872087377236,8992.391240200957,9551.935619815487,6015.178246623924,50698.165694321666,9853.002921787867,9543.197583759815,10018.064452233626,6169.02097015659,51886.88172206442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04999456254008206,0.0015817931096833895,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1366466371425201,1.1366466371425201,1.3235087185075374,1.3235087185075374,1.1611478278910055,1.1611478278910055,1.1404156676386228,1.1404156676386228,1.1494560545938217,1.1494560545938217,0.6031787692668549,0.739019222020361,0.6046802242241931,0.6188711049080927,0.5610230586835024,0.6097433631103321,0.7711614962940023,0.6182580775468427,0.6247309428580983,0.5701049431865277,32.21166346422149,32.21166346422149,41.48374900688878,41.48374900688878,33.37108010253628,33.37108010253628,32.38877423830732,32.38877423830732,32.81544519906858,32.81544519906858,12.6291944610808,16.49807928304483,12.667588022280299,13.03529405289278,11.591167593395625,12.797778336049973,17.529897428429834,13.019229020401127,13.189680300180527,11.808280424589896,269.45281952625027,269.45281952625027,0.0,299.39202169583365,0.0,269.45281952625027,299.39202169583365,0,0
+2017/06/18 18:00:00,261.8416807355554,0,919.6483153711215,0,0,0,72.49947904563501,0.0,11.198411588569618,0.0,115.6330778413024,0,39.380909295966944,2.9101339541404023e-09,23.12980296117133,0,0,0.0,493.7640852205919,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7809.7554117403615,8725.67383137334,10040.65046672379,6619.143508219084,52088.845465233615,9727.992926948828,9357.819477775642,10718.846282737937,5974.473047832773,55697.01886208019,9916.276125618731,9910.219475662672,11260.804339369244,6055.679293388145,56767.73917188923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04896275749999669,0.0015491475174425307,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.122032914965681,1.122032914965681,1.2789227389298428,1.2789227389298428,1.1735835158512375,1.1735835158512375,1.1243863887152732,1.1243863887152732,1.143793468958285,1.143793468958285,0.5997548019140997,0.7331370228749764,0.6217068538134153,0.613698261346742,0.5713245090686594,0.6034689003586328,0.7586349358497931,0.6380462548034367,0.6163347473463296,0.5794727362929577,31.529310372334663,31.529310372334663,39.189260410267714,39.189260410267714,33.96672062555881,33.96672062555881,31.638728003507993,31.638728003507993,32.547888283095986,32.547888283095986,12.542006490736128,16.31404336151033,13.10982006220415,12.900246007132964,11.837708014886488,12.636605748934244,17.122519338070333,13.546031203990637,12.968931961406213,12.035976937183278,261.8416807355554,261.8416807355554,0.0,290.9352008172838,0.0,261.8416807355554,290.9352008172838,0,0
+2017/06/18 19:00:00,236.7252759100153,0,905.2943797574823,0,0,0,57.455794731257384,0.0,12.583415379892347,0.0,104.13412371906301,0,39.380909295966944,2.9101339541404023e-09,23.171032780925565,0,0,0.0,514.9005021194968,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4958.199712686061,4012.7302646225157,6250.040436840518,5905.622219166909,40505.03792501269,7286.092448983653,6272.2371823440635,8041.440234938676,4134.222473460512,48685.5363047557,7336.4467599676955,6491.779795229801,8380.812288785253,4063.8303256096074,49217.687986914956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04819854333587073,0.0015249683139908004,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.11252833034552,1.11252833034552,1.1594590838757246,1.1594590838757246,1.1126140678788843,1.1126140678788843,1.106144819304726,1.106144819304726,1.139655700217667,1.139655700217667,0.5966280007703969,0.665211193049562,0.5911153493084137,0.6087015918482611,0.5820094843235696,0.5945552542667529,0.669293591447791,0.5927456907954021,0.6054750601963277,0.5870056414440206,31.089290026365305,31.089290026365305,33.29056090757271,33.29056090757271,31.093245846833156,31.093245846833156,30.795455868697573,30.795455868697573,32.35302576506102,32.35302576506102,12.462830059218163,14.296874979707553,12.324272951058433,12.770899985602739,12.098291060320634,12.41057812759,14.412476954330032,12.365113234134256,12.687952304532843,12.22183607171253,236.7252759100153,236.7252759100153,0.0,263.02808434446143,0.0,236.7252759100153,263.02808434446143,0,0
+2017/06/18 20:00:00,240.60402610437427,0,820.867014661677,0,0,0,57.9292543666795,0.0,16.265305283785256,0.0,108.41610117336799,0,39.380909295966944,2.8038123660125784e-09,18.6124559817707,0,0,0.0,465.9634895362358,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4237.935361149724,2890.550465934065,5371.654850574007,5461.749290237642,38591.97049266436,7585.560166583045,5928.189993475943,8086.029933059181,4291.565251638347,52411.13841658173,7552.810099086365,5982.3171851428115,8262.596751123447,4165.166382612501,52526.97136962146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04370356788225789,0.001382750423894845,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1076755885445801,1.1076755885445801,1.1412135349667938,1.1412135349667938,1.103817578828131,1.103817578828131,1.0901592898634747,1.0901592898634747,1.137779660204133,1.137779660204133,0.6037437110663377,0.6568957186858168,0.5946877783454383,0.6149069826196997,0.5945836980360946,0.5992634389132501,0.6556701928880687,0.5926316778905631,0.6091953716757036,0.5976247635775502,30.86579252744211,30.86579252744211,32.426325453123084,32.426325453123084,30.688674089118933,30.688674089118933,30.065700307467196,30.065700307467196,32.2648573314616,32.2648573314616,12.643629052515394,14.063637014182902,12.413913351574507,12.931698267343634,12.41129390565169,12.52953616268043,14.029515959585424,12.362253443427576,12.78363394230982,12.488023877658932,240.60402610437427,240.60402610437427,0.0,267.3378067826381,0.0,240.60402610437427,267.3378067826381,0,0
+2017/06/18 21:00:00,212.7442428342772,0,834.3246289448153,0,0,0,29.506258313106542,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9101339541404023e-09,23.107991811028985,0,0,0.0,514.9114563319182,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025.4728610185268,441.7644793369677,2466.7286588769834,4462.042274293046,23816.1681825109,2543.0917739544284,2485.2504528610125,3430.4837038248716,949.3815688710805,26335.92465036538,2328.2514980109704,2367.057264268134,3452.2242328490593,655.0340357506532,25924.764779982113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044420061234836786,0.0014054197741333759,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.097822551350923,1.097822551350923,1.1243877765683556,1.1243877765683556,1.0917739087970515,1.0917739087970515,1.0685114101633317,1.0685114101633317,1.1284147005219771,1.1284147005219771,0.5957793534905035,0.6419524871723871,0.585953205313502,0.605404470442331,0.5904043323048549,0.5854647540169865,0.6331264498721744,0.5780299178261943,0.5940159354358435,0.5893159852858005,30.414447788126992,30.414447788126992,31.63879258134672,31.63879258134672,30.139012344561735,30.139012344561735,29.09152815718923,29.09152815718923,31.82643462792609,31.82643462792609,12.441413940545587,13.652030763324476,12.195721367610204,12.686142633679324,12.306497999248904,12.183617474993568,13.413469033795181,12.000659292566255,12.39701299196902,12.27933254223268,212.7442428342772,212.7442428342772,0.0,236.3824920380858,0.0,212.7442428342772,236.3824920380858,0,0
+2017/06/18 22:00:00,133.45930558556444,0,625.6578494925918,0,0,0,6.042154132153778,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,2.8038123660125792e-09,18.617266576154318,0,0,0.0,465.9512631861432,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2763.2910803528353,0.0,0.0,190.8351113040214,356.9721371042018,0.0,8717.491877229273,0.0,0.0,168.89032778977727,0.0,7997.683122343924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03331048733592576,0.0010539205999836453,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9613015394124472,0.9613015394124472,0.9721851670135894,0.9721851670135894,1.0030306992868314,1.0030306992868314,1.019855912101189,1.019855912101189,1.0690107013927115,1.0690107013927115,0.5700001927001078,0.6334405800452374,0.5824190114044676,0.5462613160376115,0.5888476627978099,0.5427921177469843,0.6152886200374845,0.5707998975806965,0.5118309317443765,0.5842649682546713,24.5189211328167,24.5189211328167,24.963267536301473,24.963267536301473,26.24743439945061,26.24743439945061,26.96313382978954,26.96313382978954,29.11381141582146,29.11381141582146,11.805755850169277,13.421901765660436,12.108377094613829,11.245902576141646,12.267658896194291,11.166131644360206,12.941642063874099,11.825041461711322,10.477292356482863,12.153930561922579,133.45930558556444,133.45930558556444,0.0,148.28811731729382,0.0,133.45930558556444,148.28811731729382,0,0
+2017/06/18 23:00:00,85.43295454452675,0,478.61596390834757,0,0,0,0.3425513750592751,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.580049452286916e-09,9.57942210804914,0,0,0.0,425.38043513953136,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1362.9664747980294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025481868432515663,0.0008062285548772758,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.781273445656826,0.781273445656826,0.786287228474209,0.786287228474209,0.8332191393984133,0.8332191393984133,0.9721124603751047,0.9721124603751047,0.8895323970004412,0.8895323970004412,0.5039125143767355,0.5730622289515187,0.5346396715006566,0.46990973730771407,0.5895917390962899,0.46208333945504965,0.5350973756772137,0.5073915922747041,0.41689595099001936,0.5763064219211148,17.863630745761625,17.863630745761625,18.030718353652077,18.030718353652077,19.64632478735433,19.64632478735433,24.96028385117046,24.96028385117046,21.70636394766919,21.70636394766919,10.307780432657324,11.879749901510522,10.980726408979706,9.6106575266124,12.286210575054156,9.457261372972198,10.991059363022856,10.381924205432028,8.623115939339655,11.958589549573347,85.43295454452675,85.43295454452675,0.0,94.92550504947417,0.0,85.43295454452675,94.92550504947417,0,0
+2017/06/19 00:00:00,42.49293447091825,0,478.61590109380296,0,0,0,1.2586724202291486,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.8829080404872307,2.5800494522869164e-09,9.554033011198632,0,0,0.0,425.38037232498675,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197.2001870181353,212.33661527139876,256.909294215135,900.7046308295053,2896.4129882170982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025481865088222783,0.0008062284490661803,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9217801650904018,0.9217801650904018,0.9313957248374126,0.9313957248374126,0.9353459627983886,0.9353459627983886,0.9472895010420233,0.9472895010420233,0.9538079840446352,0.9538079840446352,0.6878625982809445,0.7940868858126474,0.6959767257320465,0.6732703126958848,0.7772797977323291,0.6225981167353576,0.7324702940637943,0.647191362629642,0.5961582547000205,0.7522382732506346,22.944588237598538,22.944588237598538,23.321911950087525,23.321911950087525,23.477993408461245,23.477993408461245,23.953676692680233,23.953676692680233,24.21567177862687,24.21567177862687,14.947400914465248,18.292769109421855,15.185828520850066,14.525780273433838,17.731304731936973,13.13331531865606,16.293277241811126,13.795231773810016,12.450971875470813,16.91707918762414,42.49293447091825,42.49293447091825,0.0,47.21437163435361,0.0,42.49293447091825,47.21437163435361,0,0
+2017/06/19 01:00:00,23.722049408735128,0,50.862896273642804,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249539850573381,0,0,0.0,15.372543761098663,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002707978272095099,8.567854491252294e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9606246831671199,0.9606246831671199,0.9973388282637174,0.9973388282637174,0.9717611664666287,0.9717611664666287,0.983927015728787,0.983927015728787,1.0532533313219428,1.0532533313219428,0.6906634732423665,0.8148811658310638,0.688873861512856,0.6843024507134543,0.8314727305551172,0.6362314030407168,0.7686765185442741,0.6503335905224267,0.6187803952838224,0.7957733059348893,24.491439707665222,24.491439707665222,26.00773347922248,26.00773347922248,24.945870582216457,24.945870582216457,25.447804113577675,25.447804113577675,28.414842710299226,28.414842710299226,15.029381017594673,19.003995126194184,14.97696093465835,14.843686787210316,19.58454493598957,13.497008535527982,17.448550521393486,13.881693309008043,13.032915882899871,18.34976822526049,23.722049408735128,23.722049408735128,0.0,26.357832676372364,0.0,23.722049408735128,26.357832676372364,0,0
+2017/06/19 02:00:00,28.344359535870165,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5249964493972695,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9800963617662366,0.9800963617662366,1.0259484095370621,1.0259484095370621,0.9892474852333564,0.9892474852333564,1.005677109793053,1.005677109793053,1.136322488601897,1.136322488601897,0.6765891400317191,0.8004670647493594,0.6727324048530939,0.6714828088711348,0.8538322663801848,0.6224832299077114,0.757465166636991,0.6325905755267666,0.6079163615193749,0.8074602033855043,25.289144355009597,25.289144355009597,27.224901681784104,27.224901681784104,25.669105078433773,25.669105078433773,26.359300013347948,26.359300013347948,32.19645276102909,32.19645276102909,14.620863137008442,18.50904622683457,14.51041435796185,14.474766650274432,20.385145146808384,13.13028476480126,17.084819342736623,13.399093524972642,12.750671683466223,18.748079920170454,28.344359535870165,28.344359535870165,0.0,31.493732817633514,0.0,28.344359535870165,31.493732817633514,0,0
+2017/06/19 03:00:00,23.72218109746648,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250856737886852,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9882707270494029,0.9882707270494029,1.0349107266473327,1.0349107266473327,0.9947209607166507,0.9947209607166507,1.004912931818681,1.004912931818681,1.1385711978060438,1.1385711978060438,0.6877593032445698,0.8128123275910153,0.6828588775721381,0.684603974361985,0.8730562128426914,0.6270324065664666,0.7634633367679244,0.6358386548728713,0.614827974382722,0.8212698018262785,25.628396221120425,25.628396221120425,27.612469310912772,27.612469310912772,25.897900714031593,25.897900714031593,26.326970510310346,26.326970510310346,32.30204348452506,32.30204348452506,14.944384007510578,18.93241687646416,14.80178881534134,14.852449525151428,21.090076501594282,13.250723338942208,17.278750823742314,13.486418449322969,12.929640449101967,19.22616839264046,23.72218109746648,23.72218109746648,0.0,26.357978997184976,0.0,23.72218109746648,26.357978997184976,0,0
+2017/06/19 04:00:00,47.57710752731071,0,88.72588128136032,0,0,0,0.11361487691981303,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,7.430299002427216,0.0,0.5250600983295504,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,453.6520014140705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0053194300519994,1.0053194300519994,1.011923053403391,1.011923053403391,1.0071180830695405,1.0071180830695405,0.9970916817205127,0.9970916817205127,1.0465391043347507,1.0465391043347507,0.5441496223484606,0.5964861356323116,0.5419854608207283,0.5427637382157019,0.6171055749525005,0.5149444205555712,0.5688579233077945,0.5184446079984001,0.5098790974173534,0.6001890301577283,26.344165181011064,26.344165181011064,26.624367301462968,26.624367301462968,26.420322133044095,26.420322133044095,25.997353288178942,25.997353288178942,28.119719199074936,28.119719199074936,11.197284065154207,12.459247832274016,11.147658063528283,11.165481234555969,12.989070618023703,10.544686406354458,11.778257096845735,10.620951571288515,10.435257082463806,12.55303551458411,47.57710752731071,47.57710752731071,0.0,52.86345280812301,0.0,47.57710752731071,52.86345280812301,0,0
+2017/06/19 05:00:00,77.4012649639138,0,212.9421150752648,0,0,0,0.3835848359269926,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,3.6540329463274985,0.0,0.5776041517034259,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1568.7504760543713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0401342871301693,1.0401342871301693,1.0354686393826786,1.0354686393826786,1.0404029392248089,1.0404029392248089,1.0373246256491413,1.0373246256491413,1.0542513819754615,1.0542513819754615,0.6902655050471955,0.7725499543660637,0.6848893841656426,0.686578953365129,0.8238139930419213,0.6365602726741886,0.7186656778161106,0.6399950438678284,0.6293197298616735,0.7950992883850647,27.839719456749094,27.839719456749094,27.636693528021013,27.636693528021013,27.851434106851542,27.851434106851542,27.71736142568571,27.71736142568571,28.45885085520321,28.45885085520321,15.017712037667934,17.575463916936997,14.86074759193086,14.909942634103459,19.315123855561183,13.505881343952879,15.867610069136873,13.598830841587144,13.311619027388772,18.32697272689326,77.4012649639138,77.4012649639138,0.0,86.00140551545978,0.0,77.4012649639138,86.00140551545978,0,0
+2017/06/19 06:00:00,89.87481258583007,0,640.6840209814263,0,0,0,0.5153718115699998,0.0,10.628007803559424,0.0,73.80580873715317,0,4.400790329520101,2.5217643496851043e-09,0.5248339015055983,0,0,0.0,409.9967296498895,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2139.628094755436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034110491835976704,0.00107923218471612,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0540711688371684,1.0540711688371684,1.0468459800373018,1.0468459800373018,1.05392901407315,1.05392901407315,1.0655052952353117,1.0655052952353117,1.0533058656879766,1.0533058656879766,0.8307694558860226,0.9295691583637515,0.8256936214561459,0.8244906174523031,1.0675511633947108,0.7771957506311954,0.8753077352238103,0.7821496940222897,0.7647057078718215,1.0251176830227509,28.450901867161903,28.450901867161903,28.13317233439045,28.13317233439045,28.444632413294357,28.444632413294357,28.95755258575639,28.95755258575639,28.41715827184177,28.41715827184177,19.55970241223649,23.249951234350164,19.381018069920884,19.33882721918735,29.048697362630577,17.728527198356332,21.1736366378029,17.892755236786925,17.319111062668043,27.18912788775988,89.87481258583007,89.87481258583007,0.0,99.86090287314452,0.0,89.87481258583007,99.86090287314452,0,0
+2017/06/19 07:00:00,147.05338082250154,0,805.2071409509974,0,0,0,2.6105829286958073,0.0,8.668398971615169,0.0,69.33401494192633,0,39.38090929596693,3.0128799761733553e-09,27.059474681284417,0,0,0.0,539.0294971069164,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2003.0573496386396,0.0,0.0,0.0,0.0,0.0,3834.077256935589,0.0,0.0,0.0,0.0,3335.541701954354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04286982460652845,0.0013563713678177696,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6887312305320769,0.6887312305320769,0.6484997526999116,0.6484997526999116,0.7618555161648717,0.7618555161648717,1.0510758569806145,1.0510758569806145,0.8871434061317602,0.8871434061317602,0.4339219273205476,0.47110787674631455,0.4660899578873215,0.40757092316281107,0.6594017961289843,0.408477104254392,0.4481478527460762,0.44632859183886536,0.37616337236547903,0.6432065561083404,14.972789041212309,14.972789041212309,13.831181421117549,13.831181421117549,17.226616294945188,17.226616294945188,28.318953493745653,28.318953493745653,21.616314785187527,21.616314785187527,8.92711105668377,9.634373828526819,9.53546077484603,8.461887492573553,14.13361376944556,8.477391840011563,9.19065705975143,9.156468783083497,7.94622201203363,13.686201516994288,147.05338082250154,147.05338082250154,0.0,163.39264535833505,0.0,147.05338082250154,163.39264535833505,0,0
+2017/06/19 08:00:00,163.19896915229924,0,826.4500908252652,0,0,0,3.3516259983947045,0.0,11.713422073459173,0.0,83.2008179303116,0,39.380909295966944,2.9619692284419076e-09,25.5521938512049,0,0,0.0,507.036918212368,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2932.89192400678,0.0,0.0,0.0,0.0,0.0,5025.376805579287,0.0,0.0,0.0,0.0,3476.088167640622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04400081499262907,0.0013921551152686613,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7051942684264279,0.7051942684264279,0.6505707652701201,0.6505707652701201,0.7970909913595333,0.7970909913595333,1.0682831837953617,1.0682831837953617,0.9344217395268705,0.9344217395268705,0.40680255501149853,0.43185606010642014,0.46965131933709137,0.3459773021234841,0.6053302834770273,0.35063510063174036,0.3718951382390283,0.428940729436454,0.2748361023114919,0.595095769502475,15.460128900034547,15.460128900034547,13.888236782333479,13.888236782333479,18.39438837701735,18.39438837701735,29.08134540251328,29.08134540251328,23.441419864407237,23.441419864407237,8.448768609642343,8.889562293547357,9.605550441652682,7.490274973457829,12.684240976167132,7.558098045002367,7.87939565610364,8.836885598538288,6.568688072592991,12.424186021178087,163.19896915229924,163.19896915229924,0.0,181.33218794699914,0.0,163.19896915229924,181.33218794699914,0,0
+2017/06/19 09:00:00,185.33886177615307,0,852.0858164744745,0,0,0,7.3503562762425325,0.0,11.457689345133073,0.0,106.27511244621549,0,39.380909295966944,2.857460317522572e-09,20.874794409737543,0,0,0.0,479.43711509276125,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4002.0431762790668,35.892760581734315,0.0,0.0,0.0,0.0,11002.990197860263,0.0,0.0,0.0,0.0,9722.608745100066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045365680014745856,0.0014353384931790356,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.80275216855084,0.80275216855084,0.734364208897018,0.734364208897018,0.9023041783459892,0.9023041783459892,1.0861278596543884,1.0861278596543884,1.0556762323534707,1.0556762323534707,0.45901193462968026,0.4807088878214945,0.5252316873584697,0.39527096935649925,0.6108811220091479,0.407929665789217,0.4217092873335903,0.4915200454157388,0.3277959707049151,0.6054223325426293,18.58692637718613,18.58692637718613,16.352315565119127,16.352315565119127,22.191723855714457,22.191723855714457,29.883045318770087,29.883045318770087,28.521740431777502,28.521740431777502,9.397783197934245,9.82665402229648,10.770345067052602,8.254917070783264,12.827187039359274,8.46802121130952,8.707796141847268,10.047930257044044,7.234354561186507,12.686600534121382,185.33886177615307,185.33886177615307,0.0,205.93206864017006,0.0,185.33886177615307,205.93206864017006,0,0
+2017/06/19 10:00:00,213.6547075706302,0,949.3822721660827,0,0,0,5.069884200548281,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.8038436369934175e-09,18.615104484722107,0,0,0.0,488.00768950300886,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4946.071460151351,9150.577698535955,0.0,0.0,0.0,0.0,2293.006227214545,0.0,0.0,0.0,0.0,1183.2190517112413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050545815383900454,0.0015992343654068738,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9081942572728128,0.9081942572728128,0.8142448633127357,0.8142448633127357,1.0078959271130736,1.0078959271130736,1.125006165356805,1.125006165356805,1.1203208355558356,1.1203208355558356,0.43696757928985924,0.44921504462478146,0.4929774865783446,0.3790338345094608,0.5878079843904547,0.40573003340989444,0.4058266677620219,0.47872958779913133,0.3300608487082335,0.5880362811642716,22.417794796076876,22.417794796076876,18.981960948607266,18.981960948607266,26.45329468693278,26.45329468693278,31.667572974424957,31.667572974424957,31.44982726860492,31.44982726860492,8.982802465420605,9.210778394001935,10.078146236284823,7.991601003412569,12.241777359968978,8.430498971066797,8.432143049445898,9.786689132006032,7.265469805350037,12.247456512636134,213.6547075706302,213.6547075706302,0.0,237.39411952292244,0.0,213.6547075706302,237.39411952292244,0,0
+2017/06/19 11:00:00,263.79783353189345,0,1005.4515934072314,0,0,0,39.10278614555589,0.0,16.693521233099577,0.0,147.76209134187457,0,39.380909295966944,2.857460317522573e-09,20.858525512538918,0,0,0.0,490.8414819753414,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4262.608914558381,19.35529324627683,3179.784203393955,7339.55297523572,33727.9332761361,4917.149176252381,1629.3889725421457,3725.7536110948395,1952.8333909170374,32774.20341428038,5036.669724087729,1426.0250942310718,3822.4530743286955,1807.0462856132172,33235.36428267605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053530987577699245,0.0016936831327819992,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.134383537170697,1.134383537170697,1.0008447942220753,1.0008447942220753,1.0894100782626057,1.0894100782626057,1.1946890866227593,1.1946890866227593,1.1580635388444305,1.1580635388444305,0.5835696875332901,0.5445702160126752,0.548918947062119,0.5457530978773205,0.5968962025295661,0.5879320638496847,0.5282536812679517,0.5504452527155977,0.53444135533086,0.6082245849831488,32.10553820925192,32.10553820925192,26.15523442571491,26.15523442571491,30.031712748913762,30.031712748913762,34.98831391974598,34.98831391974598,33.22408837082823,33.22408837082823,12.136755463569955,11.206952177866455,11.30736512350488,11.234183973776013,12.46960479019775,12.24486370290279,10.837505092930513,11.342802111509656,10.976252116629254,12.75860863119425,263.79783353189345,263.79783353189345,0.0,293.10870392432605,0.0,263.79783353189345,293.10870392432605,0,0
+2017/06/19 12:00:00,279.52987317787495,0,944.8309630987746,0,0,0,75.43283131146768,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.8038436369934175e-09,18.585343981415463,0,0,0.0,465.71120417942876,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9844.392058401825,3300.167404080201,7126.374888145676,7359.241086331203,52807.18838933794,12104.1256084019,6106.434060987389,9685.77679808545,5872.6657013770755,66187.27831282021,12671.432020645143,6140.149632198458,10042.23454429476,5984.047032236263,68012.90416594854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050303500317972004,0.001591567685628432,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1875221355569514,1.1875221355569514,1.071588149022499,1.071588149022499,1.107445242136895,1.107445242136895,1.146336342339096,1.146336342339096,1.1515559043892794,1.1515559043892794,0.6417617441665496,0.593132350702637,0.5772879284280649,0.5841332129998626,0.5964716048118746,0.6702554009429686,0.6015687862372735,0.593799746159113,0.5943721430924276,0.6148427175481074,34.639921629692,34.639921629692,29.228982497760683,29.228982497760683,30.85520338997604,30.85520338997604,32.6679128416458,32.6679128416458,32.91492136122389,32.91492136122389,13.64683939126175,12.374816042437644,11.982531873314286,12.15067428075001,12.458880964831678,14.439817717565433,12.588134445751393,12.39157886807503,12.405971035978453,12.930024423374448,279.52987317787495,279.52987317787495,0.0,310.5887479754166,0.0,279.52987317787495,310.5887479754166,0,0
+2017/06/19 13:00:00,278.1985705225118,0,905.6570103711114,0,0,0,76.63698777473492,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.749306461292104e-09,16.3393584783992,0,0,0.0,462.0276039643098,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10047.931792604082,4140.398747674078,7516.1845503912045,6980.850173350786,53201.58430093496,12430.79339046795,6773.112429353697,9874.006169404613,6050.396440296136,65273.92634798429,13188.318934686415,6991.149327005934,10385.30528741025,6267.956126750323,67311.96607765034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04821785005834327,0.0015255791652319358,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1728303935716922,1.1728303935716922,1.1023459403039069,1.1023459403039069,1.1020255063524023,1.1020255063524023,1.1355183755636387,1.1355183755636387,1.141324101938432,1.141324101938432,0.644229933408708,0.6140290820085128,0.5774494649644802,0.5871243119606163,0.5887710912137908,0.6704546386987528,0.6289024762320055,0.594557002274057,0.5998313774969426,0.6058967643008041,33.93051324253939,33.93051324253939,30.621244883068726,30.621244883068726,30.606572613153475,30.606572613153475,32.1587343338967,32.1587343338967,32.43153084141046,32.43153084141046,13.714136941291116,12.908848023413285,11.986476311355801,12.224783727117199,12.265751139043928,14.445486333579609,13.300493505567417,12.41062211460391,12.543950850341417,12.69876780675338,278.1985705225118,278.1985705225118,0.0,309.1095228027909,0.0,278.1985705225118,309.1095228027909,0,0
+2017/06/19 14:00:00,248.30996979279428,0,866.3501512444692,0,0,0,62.72058645608393,0.0,16.630907673226492,0.0,115.5196477718057,0,39.380909295966944,2.693839531574257e-09,14.05791859301737,0,0,0.0,458.21109735021184,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8121.658005242003,4766.640039654003,6479.435967730277,6352.131459818929,45699.951327153,9497.165856699394,6191.022271885814,7451.86189956553,4555.825188569542,48970.69898889647,10122.307527663448,6521.537958445403,7929.41782812059,4757.176613266619,50891.516001967175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04612512376358824,0.001459366764016447,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1321589373730265,1.1321589373730265,1.1583894785296966,1.1583894785296966,1.0806658937973914,1.0806658937973914,1.1204669571552697,1.1204669571552697,1.117742037739484,1.117742037739484,0.6112523678590733,0.6392515910936448,0.5568381203366459,0.5672348737329312,0.5638031071377313,0.6342030948448102,0.6623357087136278,0.5725685098460407,0.5798534712875761,0.5795720620497781,32.001380116808164,32.001380116808164,33.23960808364599,33.23960808364599,29.636474912245006,29.636474912245006,31.45660716579428,31.45660716579428,31.33029000828853,31.33029000828853,12.836795129786879,13.578668624636038,11.49232579962667,11.739281487837957,11.65724789869229,13.44238905734251,14.215882648399443,11.867791683379863,12.045311719166122,12.038411579173612,248.30996979279428,248.30996979279428,0.0,275.8999664364381,0.0,248.30996979279428,275.8999664364381,0,0
+2017/06/19 15:00:00,238.1450934671477,0,866.4101878272979,0,0,0,59.183130203172134,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,2.693839531574258e-09,14.088978709869364,0,0,0.0,458.2711339330405,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7398.021131763637,6645.898641209346,6647.14834393478,6108.849643874724,46156.03485499775,8094.780034225721,6818.5555468327875,6601.402037520761,4209.621779539284,42788.333188320896,8557.874486298388,7273.234239946194,7002.525216061751,4400.837839393137,44552.218265337135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04612832015572753,0.0014594678956356651,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0975311743870424,1.0975311743870424,1.2173558844880812,1.2173558844880812,1.0724371880824084,1.0724371880824084,1.110886854411068,1.110886854411068,1.1102624366892182,1.1102624366892182,0.579076958083332,0.6690481858330399,0.540567457989533,0.5521446756009872,0.5449392883323501,0.5941815097135029,0.6985164792524727,0.5537498759603826,0.5631805301401405,0.5587237765992756,30.401150721638103,30.401150721638103,36.09992630588087,36.09992630588087,29.26697243333504,29.26697243333504,31.01360188594832,31.01360188594832,30.984833817982945,30.984833817982945,12.02627999625554,14.405507374326575,11.115252142361825,11.382377260650728,11.215442293398382,12.401176231189098,15.261041730031451,11.41987319063196,11.642420440838706,11.536768090866275,238.1450934671477,238.1450934671477,0.0,264.60565940794186,0.0,238.1450934671477,264.60565940794186,0,0
+2017/06/19 16:00:00,259.75311830041846,0,896.1480488590423,0,0,0,58.022004229669285,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.693839531574258e-09,14.078427542021755,0,0,0.0,434.7734661959687,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6961.166860210535,8286.365289425306,6935.226357511034,6294.067446807488,47438.54022139721,7156.959923043677,7567.0281852943845,6376.632392368377,3723.7024495263477,40744.15896541813,7512.9728002733855,8155.037667323706,6782.73602782682,3878.0052188682107,42458.294741317084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047711585904089526,0.0015095613202865733,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0919263110965163,1.0919263110965163,1.2869777533804652,1.2869777533804652,1.084517757931941,1.084517757931941,1.1137371834636813,1.1137371834636813,1.1254382896175452,1.1254382896175452,0.5606618357496628,0.709869275605362,0.5369764805768211,0.5394201678320668,0.5367176685195926,0.5735600288626053,0.7478373442954425,0.5514419115291739,0.5502392226063282,0.5511998910108523,30.145936831321194,30.145936831321194,39.60046442697107,39.60046442697107,29.81025246777766,29.81025246777766,31.145087667765083,31.145087667765083,31.687691902130254,31.687691902130254,11.58260611692269,15.600651434689809,11.033576414919267,11.08909663394931,11.02771139244551,11.891817666125334,16.77675267391919,11.365996527748734,11.338012713797696,11.36036022583842,259.75311830041846,259.75311830041846,0.0,288.61457588935383,0.0,259.75311830041846,288.61457588935383,0,0
+2017/06/19 17:00:00,271.19147514367495,0,949.3244481980302,0,0,0,62.529005872718024,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,2.8038436369934175e-09,18.587974263619593,0,0,0.0,487.9498655349563,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6546.777250542822,8710.765485826823,7643.691758932078,6314.063831275317,46640.47599046212,7632.000363337071,8427.241364675696,7864.988022425902,4090.5242138302615,46365.756414656986,7892.026974651969,9025.485238954834,8305.883918361054,4208.8169063420655,47855.66595432081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05054273679301074,0.001599136960937078,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0620957223327885,1.0620957223327885,1.2922741109864335,1.2922741109864335,1.1017229899588123,1.1017229899588123,1.1044357469160666,1.1044357469160666,1.1110122020833022,1.1110122020833022,0.5308434673474198,0.7179551937044379,0.540635257816192,0.510057965163351,0.5231711919524181,0.5413599421627472,0.7576368814515153,0.5590696045554647,0.5190003746366737,0.537015835369541,28.805984385940576,28.805984385940576,39.8716654711996,39.8716654711996,30.59272396425517,30.59272396425517,30.71701989822573,30.71701989822573,31.019378459016338,31.019378459016338,10.895374457262832,15.845924104351838,11.116799603077382,10.439102373379626,10.724779810428117,11.133352213011989,17.090349802110453,11.54493550541217,10.633109868330209,11.034468500566717,271.19147514367495,271.19147514367495,0.0,301.32386127074994,0.0,271.19147514367495,301.32386127074994,0,0
+2017/06/19 18:00:00,260.219247390108,0,942.7444737303554,0,0,0,67.21846597389457,0.0,17.14544770084137,0.0,110.93442390708215,0,39.380909295966944,2.961969228441912e-09,25.540000509360993,0,0,0.0,516.8602435798259,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5919.541788089575,8328.125345822158,8460.039029994923,6090.257824899826,44051.37411405843,8388.489096945304,9151.620286762472,9749.779692140939,4593.171947648806,53524.971266564986,8564.50729448747,9701.750483944581,10272.470372513826,4674.690469061773,54741.48330914991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05019241407852077,0.0015880529944456913,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0235957115087133,1.0235957115087133,1.2715271748119328,1.2715271748119328,1.1213031922613799,1.1213031922613799,1.0871318435830566,1.0871318435830566,1.0842795266069785,1.0842795266069785,0.507696006459344,0.7213168978811386,0.5590689360803027,0.4878116990261903,0.518326934207368,0.5155087700032068,0.759550530162094,0.5844553868784066,0.4945997175563998,0.5306646343867403,27.123653205754394,27.123653205754394,38.813081348450766,38.813081348450766,31.49542122884756,31.49542122884756,29.92848101009281,29.92848101009281,29.799489647158026,29.799489647158026,10.388436572177753,15.948724618059487,11.544919713039974,9.97146160840046,10.618378980629473,10.556947109331745,17.152068458793437,12.158638017093821,10.111886551682232,10.891369059022495,260.219247390108,260.219247390108,0.0,289.13249710012,0.0,260.219247390108,289.13249710012,0,0
+2017/06/19 19:00:00,245.59417487523564,0,909.2311849562316,0,0,0,59.88560700748555,0.0,17.540027511967114,0.0,101.68988858149199,0,39.380909295966944,3.012879976520847e-09,27.0977424753112,0,0,0.0,518.8373073182461,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4578.612748491677,6143.2102703121955,7722.31811371008,5459.040928283835,37967.80909635591,7188.3441507899115,7925.396694200266,9181.10657662527,3809.5933994131497,49170.0997481147,7269.1459751200955,8325.673594899452,9707.972101236255,3825.009877313966,49919.888361297795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048408141760670015,0.0015315998620492957,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9933720766946914,0.9933720766946914,1.181125390810877,1.181125390810877,1.1003983390244179,1.1003983390244179,1.0628886567407736,1.0628886567407736,1.060784733857352,1.060784733857352,0.4882165940094702,0.6796406756970574,0.5560082555110128,0.46776651853376017,0.5111109720868686,0.49047803641416815,0.7045556511773023,0.5781502502775925,0.46891848768297606,0.5188741850639038,25.841410104911645,25.841410104911645,34.330252063636905,34.330252063636905,30.53212047386907,30.53212047386907,28.841196336328338,28.841196336328338,28.74781632219502,28.74781632219502,9.979781948057436,14.708708815173296,11.472815898083965,9.568388381512094,10.461767917514024,10.026383337727367,15.441006370115119,12.003601365736657,9.591083226420338,10.630348093871945,245.59417487523564,245.59417487523564,0.0,272.8824165280396,0.0,245.59417487523564,272.8824165280396,0,0
+2017/06/19 20:00:00,235.01046361455124,0,848.4657497127351,0,0,0,45.13457764378041,0.0,21.170389358753855,0.0,106.16168237671882,0,39.380909295966944,2.910165761723945e-09,23.162904936421,0,0,0.0,493.5622245872939,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2426.1107081644827,2378.2914554308504,3867.617259107525,4782.943226868383,28012.7158824453,5047.29362389612,5135.045652754473,6841.097518207591,2294.103212457258,40411.12321246724,5013.564446544423,5658.439736652863,7189.607179020843,2201.2864252505965,40658.02492422599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04517294497894327,0.001429240490993644,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9736825071008024,0.9736825071008024,1.0386253477278693,1.0386253477278693,0.9952184581210742,0.9952184581210742,1.0404046637219482,1.0404046637219482,1.0455917017641148,1.0455917017641148,0.4785977021947449,0.5905355401870521,0.5228646119812296,0.45806623414075637,0.5121356505443614,0.47606835191914776,0.6227423497106499,0.5314599520317193,0.45454908981577663,0.5154631341872491,25.024759932484102,25.024759932484102,27.773970722680247,27.773970722680247,25.918753166139155,25.918753166139155,27.851509312545318,27.851509312545318,28.078207538380255,28.078207538380255,9.784032178859633,12.309776458189901,10.718015886665285,9.37955136530276,10.483869738271082,9.733221320057282,13.13712079372307,10.909192744013183,9.312083396976703,10.5559551421304,235.01046361455124,235.01046361455124,0.0,261.1227373495014,0.0,235.01046361455124,261.1227373495014,0,0
+2017/06/19 21:00:00,216.40639158181943,0,836.2187634502801,0,0,0,22.330590439039515,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9619692284419114e-09,25.611838891652692,0,0,0.0,516.805590837383,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,1283.472653761517,3825.7564241632367,15809.81322208121,981.8966640470283,2306.5627927842065,2929.424833305274,0.0,21519.84118061751,789.3187322064417,2432.4018420338944,3087.6930368763738,0.0,21223.457316324315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04452090635890579,0.001408610443564069,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9670638259554316,0.9670638259554316,1.0325051886693428,1.0325051886693428,1.0034512734125525,1.0034512734125525,1.0192446296744027,1.0192446296744027,1.0562552389163182,1.0562552389163182,0.4954846737959597,0.5932244031945142,0.5138069083703978,0.45307893459252463,0.5273178162835936,0.4865621758684421,0.5934600838815648,0.5118385024995681,0.43264852493297673,0.5259939510327927,24.75360361089244,24.75360361089244,27.50815330576752,27.50815330576752,26.265194670952724,26.265194670952724,26.93694590599908,26.93694590599908,28.54731727447117,28.54731727447117,10.130340417206043,12.377126955473571,10.520015399644834,9.284039779887905,10.816664406072334,9.945829303854055,12.38304522938411,10.477455723244205,8.90394430026808,10.787248136527609,216.40639158181943,216.40639158181943,0.0,240.45154620202158,0.0,216.40639158181943,240.45154620202158,0,0
+2017/06/19 22:00:00,144.8098460156352,0,650.554139005933,0,0,0,8.189597815506175,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.857460317522572e-09,20.867290591949644,0,0,0.0,490.84755269948454,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2274.8975444949156,0.0,0.0,939.9349615625918,935.607239746314,0.0,11084.79684389885,0.0,842.3546830279713,896.153704650048,0.0,10361.039416222058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03463598423046367,0.0010958583977792725,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8164621466035792,0.8164621466035792,0.8775712593989771,0.8775712593989771,0.8967493225586856,0.8967493225586856,0.9657029172706248,0.9657029172706248,0.9818417473298,0.9818417473298,0.4635101303263928,0.5764209022564661,0.505991007635847,0.3852690463563006,0.5203605099554618,0.43716832342478124,0.568118716618105,0.4973046519077454,0.34962022228134265,0.5145041873084044,19.05881588072721,19.05881588072721,21.2578523944116,21.2578523944116,21.979809244785443,21.979809244785443,24.698060618237946,24.698060618237946,25.36136546481849,25.36136546481849,9.485029568366315,11.961379965927804,10.352012962524427,8.091384865793842,10.662921415500534,8.986487177835002,11.760491755583658,10.168398485646819,7.543241603220892,10.535131739868433,144.8098460156352,144.8098460156352,0.0,160.89982890626132,0.0,144.8098460156352,160.89982890626132,0,0
+2017/06/19 23:00:00,87.50158346983007,0,484.96422913864933,0,0,0,0.21671517438180365,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6374335889955026e-09,11.773887233972559,0,0,0.0,431.7287003698331,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,848.4829093783878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02581985477557931,0.000816922207175894,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6233622587836132,0.6233622587836132,0.6786869410671871,0.6786869410671871,0.7103975150524262,0.7103975150524262,0.9138576570628498,0.9138576570628498,0.7856427612262331,0.7856427612262331,0.36001124853562816,0.5172374642769169,0.4375836261731589,0.2770899535290479,0.49565849338327617,0.3180754843165381,0.48990363783719554,0.41546612474079375,0.22415719725765992,0.4788693586365259,13.15348689081992,13.15348689081992,14.68121002395712,14.68121002395712,15.616588653136432,15.616588653136432,22.63648886909462,22.63648886909462,18.009181224368007,18.009181224368007,7.697424824714531,10.594589382862921,8.994115666584875,6.5946034178955415,10.133969026786204,7.103283175779353,10.014525826763531,8.598152593070083,6.042407489842219,9.789505759091767,87.50158346983007,87.50158346983007,0.0,97.22398163314452,0.0,87.50158346983007,97.22398163314452,0,0
+2017/06/20 00:00:00,41.652400009371384,0,481.5537167849921,0,0,0,0.7533370576761848,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.5544362135534717,2.5800793747114648e-09,9.547305739138464,0,0,0.0,428.3181880161759,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69.56922971367709,120.30681585304919,57.28761357784022,526.4249354474374,1820.4424134486899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025638276571681357,0.0008111771993750118,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8044288163982851,0.8044288163982851,0.8459205013104025,0.8459205013104025,0.8386995462882623,0.8386995462882623,0.8996106259871982,0.8996106259871982,0.8704939989606527,0.8704939989606527,0.5390973603172524,0.7594690377988523,0.604296630320362,0.462995128843711,0.6973148188107818,0.46870601190023836,0.7075994628906089,0.5583866387918901,0.38142932723384,0.6665157221436567,18.64420976691271,18.64420976691271,20.09947552357032,20.09947552357032,19.841024719428532,19.841024719428532,22.088809740352986,22.088809740352986,20.995239712994504,20.995239712994504,11.081747664339261,17.149436989804258,12.657769873859763,9.474996500255344,15.225420590813954,9.586892958210171,15.5323071067793,11.528810903670674,8.029740407168845,14.333737088822389,41.652400009371384,41.652400009371384,0.0,46.28044445485709,0.0,41.652400009371384,46.28044445485709,0,0
+2017/06/20 01:00:00,23.77474942998273,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.577654006304941,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7948816530015804,0.7948816530015804,0.8931769430082522,0.8931769430082522,0.843165927680054,0.843165927680054,0.8857454783298406,0.8857454783298406,0.9777642915307314,0.9777642915307314,0.5222758150803596,0.7773887624931974,0.5818136139627441,0.44802465399870406,0.7627572384118306,0.4556585429276642,0.7408587102941812,0.5423232029838948,0.370060256908349,0.7174545131530738,18.319616336985078,18.319616336985078,21.844188312315495,21.844188312315495,20.000627854744195,20.000627854744195,21.56373039481919,21.56373039481919,25.192830559231723,25.192830559231723,10.70503695782746,17.73490617573171,12.093469641506573,9.1883373667537,17.255841569148004,9.333308103562317,16.555936117502526,11.155389404026806,7.850906303267308,15.83065499011515,23.77474942998273,23.77474942998273,0.0,26.416388255536365,0.0,23.77474942998273,26.416388255536365,0,0
+2017/06/20 02:00:00,28.34417595708434,0,71.01951681603872,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248128706114444,0,0,0.0,17.783988047222508,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0037811316799154704,0.0001196323706863273,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8061210914610134,0.8061210914610134,0.9166023822518509,0.9166023822518509,0.8520678846033202,0.8520678846033202,0.885319201933664,0.885319201933664,1.0590965024025902,1.0590965024025902,0.5116901446411607,0.7629253694115723,0.5677597907374914,0.4388177947725665,0.7878265526773189,0.44123713932353814,0.7286113469437152,0.5227716621970331,0.35795866612941746,0.7264771436671903,18.702147531607324,18.702147531607324,22.74294288407988,22.74294288407988,20.32121322754618,20.32121322754618,21.547711512207997,21.547711512207997,28.673000553135395,28.673000553135395,10.474254810947187,17.2612946222132,11.751874244800362,9.016829222519107,18.082231649775466,9.061544576639164,16.173460703522736,10.715965984756323,7.6666041531692315,16.10747073651372,28.34417595708434,28.34417595708434,0.0,31.49352884120482,0.0,28.34417595708434,31.49352884120482,0,0
+2017/06/20 03:00:00,23.722023253816452,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249278301386623,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7655495914805962,0.7655495914805962,0.871844180605404,0.871844180605404,0.8045304395101476,0.8045304395101476,0.8246283792946433,0.8246283792946433,1.0256472067168305,1.0256472067168305,0.4919516867272251,0.7428075487499898,0.545945549000267,0.41920688650574295,0.8037404030658751,0.4156055069200465,0.702518439205585,0.49429059368373923,0.33309004179466317,0.7319270842596061,17.34656344354123,17.34656344354123,21.045181098455245,21.045181098455245,18.64768558299029,18.64768558299029,19.34365561845371,19.34365561845371,27.211927951019064,27.211927951019064,10.056869575914831,16.617390697556544,11.238620235842248,8.663647859230906,18.62067545304356,8.600582212962536,15.380122419033626,10.105448407536443,7.307425551097822,16.276372400399012,23.722023253816452,23.722023253816452,0.0,26.357803615351614,0.0,23.722023253816452,26.357803615351614,0,0
+2017/06/20 04:00:00,44.78329309300732,0,88.72588128136032,0,0,0,0.0387032831803159,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,4.711387260196185,0.0,0.5250689999967095,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,6.771151378581223,0.0,0.0,0.0,0.0,0.0,0.0,9.383315038734448,0.0,7.0419591926611576,0.0,116.18987350166054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8074299117049044,0.8074299117049044,0.9053853299675957,0.9053853299675957,0.8436925118093248,0.8436925118093248,0.8576247628928269,0.8576247628928269,0.9526604054494917,0.9526604054494917,0.4224016523675308,0.5192042344092306,0.4416428723143955,0.3964647256010007,0.5424902335701426,0.3868852824228801,0.49149538456919617,0.4133469266619953,0.315786100407528,0.51870656233356,18.747040059238657,18.747040059238657,22.309808207246988,22.309808207246988,20.01949983421666,20.01949983421666,20.523002716950657,20.523002716950657,24.169426184173417,24.169426184173417,8.720058531420577,10.637572982003164,9.069068135259599,8.274720717987393,11.159214769683075,8.117520889816504,10.047419772309226,8.561314663652738,7.072995674268867,10.626680582302896,44.78329309300732,44.78329309300732,0.0,49.759214547785916,0.0,44.78329309300732,49.759214547785916,0,0
+2017/06/20 05:00:00,75.7176465031197,0,212.9421150752648,0,0,0,0.19763108080930958,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.208852861880206,0.0,0.5251195304743334,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219.27695601919018,0.0,0.0,551.5927124286916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.952899700207585,0.952899700207585,0.966746495408165,0.966746495408165,0.9599259301498156,0.9599259301498156,0.9768650735143919,0.9768650735143919,0.9889258056810273,0.9889258056810273,0.5024296535718481,0.675578381414096,0.5388604971019656,0.44833287355879675,0.7554057376728271,0.4408710531127998,0.6202364807262576,0.48970244131711665,0.36145533578848016,0.7104096404428939,24.17906510828996,24.17906510828996,24.740645895870273,24.740645895870273,24.463088043126945,24.463088043126945,25.155749221828728,25.155749221828728,25.65569423907455,25.65569423907455,10.276337723803508,14.591854890321628,11.076358156590004,9.194142018583761,17.018589100776524,9.05476226497683,13.071133786637148,10.010375825276682,7.719216107862323,15.616954622792122,75.7176465031197,75.7176465031197,0.0,84.13071833679966,0.0,75.7176465031197,84.13071833679966,0,0
+2017/06/20 06:00:00,86.40253549654967,0,634.9701852398271,0,0,0,0.7757092430737583,0.0,8.302358887567685,0.0,73.80580873715317,0,2.9936419228454407,2.5217935906137836e-09,0.5250167033877886,0,0,0.0,404.2828939082902,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3245.1932832961534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033806282988817736,0.0010696072288430688,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0163540897377399,1.0163540897377399,1.0034072867615904,1.0034072867615904,1.0133353217635246,1.0133353217635246,1.132733421700787,1.132733421700787,1.0075193994954963,1.0075193994954963,0.6122500395721715,0.8132151683832858,0.6740063095614107,0.8370440374420397,0.9732405016767804,0.5428051464544617,0.7567943017308137,0.6210425979306887,0.8004705996285557,0.9130243881459229,26.813301192812645,26.813301192812645,26.26333686147352,26.26333686147352,26.68450481848383,26.68450481848383,32.02826268554875,32.02826268554875,26.437330958074284,26.437330958074284,12.86264517599885,18.946340335513327,14.546825106016328,19.78207783201006,25.006598720285936,11.16643025150465,17.06322472704764,13.092331528628918,18.509166530839067,22.604230667255194,86.40253549654967,86.40253549654967,0.0,96.00281721838853,0.0,86.40253549654967,96.00281721838853,0,0
+2017/06/20 07:00:00,146.54873725152473,0,805.0889141554212,0,0,0,2.961606366164762,0.0,7.777944015249205,0.0,69.33401494192633,0,39.380909295966944,3.0129118832950034e-09,27.09426262920455,0,0,0.0,538.9112703113402,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5412.269847232335,0.0,0.3341678722060326,0.37579941682769535,0.012075665122264805,0.0,3122.118714806334,0.31069158547131126,0.3282978656640656,0.0,0.0,2551.899326523709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0428635301243606,0.0013561722147895946,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5286222080770852,0.5286222080770852,0.5306495852839622,0.5306495852839622,0.6333680439284748,0.6333680439284748,1.185823763827462,1.185823763827462,0.7982801505001134,0.7982801505001134,0.26837571611587685,0.36432083240774105,0.33921660607140797,0.5506466129263906,0.5688843263559477,0.24767224245317968,0.35497698206080297,0.322557392957799,0.572039792299025,0.5468211503303468,10.8457221870068,10.8457221870068,10.891032061009852,10.891032061009852,13.419954174886499,13.419954174886499,34.55758401869983,34.55758401869983,18.43471943025581,18.43471943025581,6.4955913127647875,7.762719449895954,7.393471916288533,11.347484730216195,11.778892079262377,6.273177844763936,7.62215200140561,7.1632197329206235,11.854997504737767,11.25882431118437,146.54873725152473,146.54873725152473,0.0,162.83193027947192,0.0,146.54873725152473,162.83193027947192,0,0
+2017/06/20 08:00:00,173.9762351839036,0,822.3931152972204,0,0,0,14.406161747690888,0.0,11.435487997441953,0.0,83.2008179303116,0,39.380909295966944,2.962000923924694e-09,25.55285820953026,0,0,0.0,502.97994268432325,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7885.0803656904845,189.99252336405982,0.0,96.49611493487208,439.36177289524306,3104.8874818830013,18456.932017789026,0.0,0.0,55.82079332259704,3199.9835459244305,17198.085839467898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043784818610487136,0.001385321140299589,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6940757424689781,0.6940757424689781,0.6369703899579333,0.6369703899579333,0.756323737038236,0.756323737038236,1.2424078609481686,1.2424078609481686,0.9314166643088176,0.9314166643088176,0.3933132525331287,0.45367994383828275,0.4380026700519052,0.6283071423152337,0.5235609319627121,0.3476480357347376,0.41141191775814606,0.41770284707843053,0.6508048997219027,0.5158016357312403,15.129714387609212,15.129714387609212,13.516952763695713,13.516952763695713,17.04808910551995,17.04808910551995,37.3451065047541,37.3451065047541,23.32273766853578,23.32273766853578,8.222571712339857,9.295492958094925,9.001820384422246,13.284632783306577,10.733384326485535,7.514496733940291,8.52784655616803,8.637242223833738,13.894698767972898,10.563315157069155,173.9762351839036,173.9762351839036,0.0,193.30692798211513,0.0,173.9762351839036,193.30692798211513,0,0
+2017/06/20 09:00:00,216.2103719200038,0,855.8961115679333,0,0,0,38.36087574371282,0.0,11.323895916778682,0.0,106.27511244621549,0,39.380909295966944,2.857491525824476e-09,20.86957851447251,0,0,0.0,483.24741018621995,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2196.808973797888,379.6541973777243,1623.9923829657291,8921.859321902393,21035.61164515563,4238.005146475156,2669.371921446191,3751.569843105637,5925.208544780601,34697.10169707847,4195.707800752813,2554.2526495437273,3616.966524268304,6334.2302458911045,34114.42466695073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04556854294783259,0.0014417569349747708,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.932585786379577,0.932585786379577,0.8517891289158025,0.8517891289158025,0.9093743022396811,0.9093743022396811,1.2496644989798027,1.2496644989798027,1.0074667848531689,1.0074667848531689,0.48835460532388664,0.5071746381370822,0.4735001529782274,0.6781687672451762,0.5218143283394749,0.4818624381666912,0.4900974554538448,0.47308045464501014,0.7165050745073082,0.5221686930847935,23.368868095206807,23.368868095206807,20.31112441816981,20.31112441816981,22.463255757778697,22.463255757778697,37.708911124538226,37.708911124538226,26.435100668179004,26.435100668179004,9.982619611852058,10.377285326495723,9.681912325028506,14.666286147003703,10.694874832605734,9.850023801220601,10.018525279280269,9.673554378067337,15.801729877262758,10.70267726658706,216.2103719200038,216.2103719200038,0.0,240.233746577782,0.0,216.2103719200038,240.233746577782,0,0
+2017/06/20 10:00:00,260.8092699353596,0,949.1129487431349,0,0,0,52.126363583473015,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.8038745689132067e-09,18.608411266165945,0,0,0.0,487.73836608006127,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6360.480377893188,2400.2729587725566,4540.604286910977,9144.271281745716,37965.95491977189,6913.022867240715,3943.4973143908664,5177.750909534815,7090.349625649731,38544.753311737084,7159.286613913965,3907.572842456427,5265.307919567806,7645.035380598214,39102.83258179602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050531476405373046,0.0015987806901213593,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.068111754301319,1.068111754301319,0.9633378577735884,0.9633378577735884,0.985503343782334,0.985503343782334,1.2437185638868533,1.2437185638868533,1.046592664438382,1.046592664438382,0.5297254301990721,0.5114404356223922,0.4738667308866104,0.6774435619179767,0.5034048297213213,0.5473737844663791,0.5113057857682078,0.4819622970669816,0.7174372717186096,0.5129263240761652,29.07369796156081,29.07369796156081,24.601706845095094,24.601706845095094,25.513257085587654,25.513257085587654,37.410715756452205,37.410715756452205,28.12206697641797,28.12206697641797,10.870356036361372,10.46886933432394,9.68921863574424,14.6454190814856,10.29700474417416,11.271593179367017,10.465966458847717,9.852049542957118,15.83012937523148,10.500955224751223,260.8092699353596,260.8092699353596,0.0,289.7880777059551,0.0,260.8092699353596,289.7880777059551,0,0
+2017/06/20 11:00:00,299.73437483204816,0,1005.2855345757839,0,0,0,71.60288928359385,0.0,16.693521233099577,0.0,147.76209134187457,0,39.380909295966944,2.857491525824476e-09,20.862988472201327,0,0,0.0,490.675423143894,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10044.509500155955,4312.206037759526,7144.292664235991,8717.432579568813,51672.46998754835,10514.658971908184,5901.696072601174,8157.156668858095,8142.835952778181,53952.89397206959,11034.339868082767,5976.985106962053,8415.380569959589,8661.246280537085,55120.02754339019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053522146482512106,0.00169340340669303,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1205048192919311,1.1205048192919311,1.0058689383549495,1.0058689383549495,1.0243837925145156,1.0243837925145156,1.200164056775616,1.200164056775616,1.0848149651492422,1.0848149651492422,0.5678440051991664,0.5303520731348109,0.49480455862683514,0.6581915960795335,0.5163460071591387,0.5993018529227815,0.5396675521331166,0.5111778675061598,0.6945518382558508,0.5301701861412389,31.45836404659265,31.45836404659265,26.367419021122245,26.367419021122245,27.157545448207884,27.157545448207884,35.255467742574794,35.255467742574794,29.82368246534928,29.82368246534928,11.753895661973559,10.884371816520755,10.116155064387627,14.099787591294884,10.57516178213865,12.530510696314991,11.094731589716204,10.463209434010807,15.14375335932803,10.880301898090991,299.73437483204816,299.73437483204816,0.0,333.03819425783126,0.0,299.73437483204816,333.03819425783126,0,0
+2017/06/20 12:00:00,294.2331391689708,0,944.5954359424172,0,0,0,86.66397795364068,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.8038745689132067e-09,18.625488127884054,0,0,0.0,465.4756770230714,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12317.254081951223,5740.699575438312,9036.648273795381,8137.901943574276,60105.73213825927,13509.497166282852,7556.485677709827,10915.889020136203,8943.552685440492,66759.25054881792,14223.646801586434,7716.272875868694,11313.469381924278,9384.685783975745,68397.07262576683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05029096067771101,0.0015911709401514242,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1502098752324423,1.1502098752324423,1.0367988758151754,1.0367988758151754,1.0539361870185149,1.0539361870185149,1.1616997017095219,1.1616997017095219,1.0983201771958986,1.0983201771958986,0.609309960630455,0.5606147287772423,0.5291677220522957,0.6475898196587238,0.5390030013256886,0.6465812683130006,0.5773328760419896,0.5519495986003305,0.6791478778813655,0.556434488312372,32.85113990983368,32.85113990983368,27.694497614241797,27.694497614241797,28.44494874440099,28.44494874440099,33.39741260121157,33.39741260121157,30.43716377855256,30.43716377855256,12.78659055918277,11.581490034469823,10.857896383308443,13.806172017431479,11.079600359586749,13.778494045637387,11.983629301288232,11.3778280627471,14.694495185901715,11.482832788240074,294.2331391689708,294.2331391689708,0.0,326.9257101877453,0.0,294.2331391689708,326.9257101877453,0,0
+2017/06/20 13:00:00,292.21187279986157,0,905.4225478213732,0,0,0,87.22104864871696,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.749337094411113e-09,16.336624679312617,0,0,0.0,461.79314141457166,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12655.56151239429,6605.509993048811,9682.324634957538,7705.193693227101,61405.270789079485,13306.124031280517,7814.929916047598,10701.858980509916,8490.695603730612,63887.809829776845,14090.259984284441,8085.3115810493055,11187.670932604302,8904.556742738563,65815.06705454104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048205367098527234,0.0015251842130846972,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1503306729767762,1.1503306729767762,1.0791751548965995,1.0791751548965995,1.0668032093540836,1.0668032093540836,1.1460375946255195,1.1460375946255195,1.1006106103778572,1.1006106103778572,0.6098849231814958,0.5802074778385415,0.5297307678362334,0.6317463995930518,0.534592206076156,0.649146167876621,0.6078547286836223,0.5562972081008944,0.6626039988124983,0.5537363009390498,32.85686156177971,32.85686156177971,29.56935874680292,29.56935874680292,29.015358297347504,29.015358297347504,32.65380116379481,32.65380116379481,30.541827988503798,30.541827988503798,12.801434309532752,12.053996821703578,10.870475348576448,13.37647270518697,10.979655367030233,13.848969875139048,12.749085093914061,11.479605708255278,14.223424292170392,11.419555622896468,292.21187279986157,292.21187279986157,0.0,324.67985866651287,0.0,292.21187279986157,324.67985866651287,0,0
+2017/06/20 14:00:00,264.41184545386454,0,866.114802436756,0,0,0,75.47074616847667,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.693869843055658e-09,14.040272732500096,0,0,0.0,457.9757485424985,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11054.859612725519,7166.256566724998,8851.056313542864,6919.693357915833,55814.47542280558,10731.65444373693,7227.064894393141,8568.256266558978,7029.99052187691,51182.235121588776,11372.733016486163,7569.0041971995615,9000.201235833054,7377.720418914589,53037.09776569449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046112593618741156,0.001458970318967717,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1067855657779029,1.1067855657779029,1.13999986248288,1.13999986248288,1.0469402855432546,1.0469402855432546,1.1156568312234179,1.1156568312234179,1.0806631538282607,1.0806631538282607,0.5684477435991612,0.5933201358533859,0.4999352909501847,0.5904627666572999,0.5041446948771214,0.6007586150711174,0.6262052896499319,0.5242157744884349,0.6174831925796805,0.5196631993732725,30.824887637704606,30.824887637704606,32.3692126811554,32.3692126811554,28.13730728293781,28.13730728293781,31.23379408333612,31.23379408333612,29.63635148197504,29.63635148197504,11.768396328059168,12.379530646612707,10.223661416528827,12.307957991703773,10.312712213640012,12.56751488890761,13.228758787794746,10.747856468230836,12.998945673380419,10.64762771009967,264.41184545386454,264.41184545386454,0.0,293.79093939318284,0.0,264.41184545386454,293.79093939318284,0,0
+2017/06/20 15:00:00,251.18749119915572,0,844.6136728822944,0,0,0,68.81646434782554,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,2.693869843055658e-09,14.066067094769732,0,0,0.0,436.4746189880369,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9859.928707352832,8516.999636968818,8604.482997017918,6556.212056930901,54797.3296437945,8702.461107476529,7334.985936823084,7196.057435607012,6183.9137825435,43671.25875765597,9159.829245122131,7749.458096993502,7563.752409509968,6462.40104807543,45309.72943123519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04496785755523161,0.0014227516678651342,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.06890583977856,1.06890583977856,1.209278276985743,1.209278276985743,1.040435056799247,1.040435056799247,1.1004535851535089,1.1004535851535089,1.0779162854137354,1.0779162854137354,0.526493362363746,0.6230565410074432,0.48095667951850896,0.5641873061711655,0.4819811681957228,0.5512815587542078,0.6602525339790898,0.5013212261543326,0.5857819222164421,0.49504256803967545,29.109130733093778,29.109130733093778,35.702113449126685,35.702113449126685,27.85283477904639,27.85283477904639,30.53464682177173,30.53464682177173,29.512742307925762,29.512742307925762,10.798336137627018,13.14541361213486,9.831669193314937,11.666406472086877,9.85243241178253,11.362261863621669,14.157430639948103,10.252896601267764,12.191475769358519,10.121117020914497,251.18749119915572,251.18749119915572,0.0,279.09721244350635,0.0,251.18749119915572,279.09721244350635,0,0
+2017/06/20 16:00:00,280.819476932437,0,917.2606073593498,0,0,0,75.61327574263838,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.693869843055658e-09,14.121539458616725,0,0,0.0,455.88602469627625,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10586.438648972337,9954.449850351823,9908.322796645229,7083.849029985638,60827.62095401391,9031.92649695284,8512.454100566265,8039.39721705993,6588.4352041820775,46716.08858614269,9414.360205775993,9012.790948207456,8417.494683582347,6837.309015972505,48287.04648791115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04883563415685872,0.001545125423477925,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.085241617171694,1.085241617171694,1.259620903104259,1.259620903104259,1.0778189025367304,1.0778189025367304,1.1192980789192344,1.1192980789192344,1.1056019224049642,1.1056019224049642,0.523957595977288,0.6672977670139015,0.49588971321217973,0.5677467225580081,0.4801634884203632,0.5473770434594208,0.7106923695295321,0.5183101024442949,0.588257577317886,0.49392912855516646,29.842967086059446,29.842967086059446,38.21027043234616,38.21027043234616,29.50836491761487,29.50836491761487,31.402392163410113,31.402392163410113,30.77052952457683,30.77052952457683,10.7421484586813,14.355870683185941,10.138797930631995,11.751560594152977,9.8156247625096,11.271668519173105,15.6254897752506,10.618011052712049,12.25296367543119,10.09792538308156,280.819476932437,280.819476932437,0.0,312.0216410360411,0.0,280.819476932437,312.0216410360411,0,0
+2017/06/20 17:00:00,293.049919114283,0,938.0440373613213,0,0,0,81.07938292889366,0.0,16.7356839618177,0.0,133.89528835348938,0,39.380909295966944,2.803874568913207e-09,18.526679368857128,0,0,0.0,476.6694546982474,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10711.311714896508,10465.493345509693,10925.528990421511,7110.657125900903,63978.562761269066,10038.90899597292,9454.638325825012,9805.73716003878,6953.458476600148,53811.38629020823,10366.866760906274,9983.092897082137,10250.477039201991,7168.331049227485,55285.407003764056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049942159364588845,0.0015801351097388106,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.088001977790395,1.088001977790395,1.2779105417260772,1.2779105417260772,1.117059229637967,1.117059229637967,1.1171997149784691,1.1171997149784691,1.1223845372561514,1.1223845372561514,0.5262627341360607,0.6960399035820948,0.527674472544137,0.5712371839512822,0.4983833575451165,0.5431855765283802,0.7361774687340736,0.5509582158299171,0.5865434822448646,0.5119908478293218,29.967887498866517,29.967887498866517,39.137696898219716,39.137696898219716,31.29867616020225,31.29867616020225,31.305179331132123,31.305179331132123,31.54564638354499,31.54564638354499,10.793214355275836,15.18769611477822,10.824602277965852,11.835598753478152,10.191023139685797,11.17515263557631,16.408984039850566,11.354734500020456,12.210362329971645,10.480743658329857,293.049919114283,293.049919114283,0.0,325.61102123809223,0.0,293.049919114283,325.61102123809223,0,0
+2017/06/20 18:00:00,284.00209485091,0,932.1144421276906,0,0,0,87.79041019642885,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.962000923924698e-09,25.66607889093864,0,0,0.0,506.2302119771609,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10574.66967494015,9852.42189835874,11608.776036175488,7017.757852680801,64524.71258494369,11532.385983882055,10177.905972130313,11942.152988600903,7641.979179153341,63804.25737741384,11806.520841548918,10643.233519841047,12448.27395977105,7817.586124514461,65131.24190179485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04962646332225963,0.0015701467070178086,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0860194030046824,1.0860194030046824,1.243536790154344,1.243536790154344,1.1409487489420211,1.1409487489420211,1.1133605961213306,1.1133605961213306,1.124967529593763,1.124967529593763,0.5412510065219642,0.7030518815778781,0.565697797933011,0.5834123633887014,0.5254750473514587,0.5555270149246354,0.7363725316454522,0.5925023485598601,0.5953909107559447,0.5379456602998465,29.878139159627167,29.878139159627167,37.40161410419792,37.40161410419792,32.41386117126396,32.41386117126396,31.127700097948946,31.127700097948946,31.66577446166005,31.66577446166005,11.13086254664718,15.396047526455746,11.702475783061828,12.132872090885968,10.775738800915633,11.461515738362849,16.41508860974602,12.359010153052864,12.431621784988863,11.055565083143165,284.00209485091,284.00209485091,0.0,315.55788316767774,0.0,284.00209485091,315.55788316767774,0,0
+2017/06/20 19:00:00,270.8421942499166,0,929.271597072962,0,0,0,81.8524119078757,0.0,17.389266783803556,0.0,101.68988858149199,0,39.380909295966944,3.0129118836387264e-09,27.0977424753112,0,0,0.0,538.8777194349766,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8421.463610447237,7901.887749048318,10080.262601167864,6482.657140421961,53984.82316815704,10972.135161788729,9667.042157490114,11881.997200841417,7250.827114259452,64179.642612145406,11171.113289810699,10031.90946457883,12392.517202746076,7370.637007682539,65159.69875313864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04947510814583159,0.001565357934738886,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0488125740343734,1.0488125740343734,1.1877373924689323,1.1877373924689323,1.120408584707189,1.120408584707189,1.0939774862624203,1.0939774862624203,1.0965446247720076,1.0965446247720076,0.5368675968620722,0.686798596728513,0.5772442611538022,0.5738224210403917,0.5372415067619182,0.544434950512466,0.7094299607710778,0.5996356342029744,0.5785687096036288,0.5461247282767954,28.219466932662968,28.219466932662968,34.6503634510524,34.6503634510524,31.4538986574008,31.4538986574008,30.23921083692693,30.23921083692693,30.356150795601053,30.356150795601053,11.031108612797368,14.916347036322648,11.981465789690759,11.898182956432407,11.039585264674315,11.203842017303359,15.587406274826463,12.53898116447698,12.013837395368952,11.242752006582649,270.8421942499166,270.8421942499166,0.0,300.9357713887962,0.0,270.8421942499166,300.9357713887962,0,0
+2017/06/20 20:00:00,264.6201535415267,0,848.3028045839395,0,0,0,73.83126955478264,0.0,22.075186367640185,0.0,106.16168237671882,0,39.380909295966944,2.9101972244074613e-09,23.17110594350793,0,0,0.0,493.3992794584982,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6756.207139469148,5136.571840854685,7259.417378945381,5927.692892615082,46208.52257880671,10256.43154120281,8231.071341364328,10529.170171509855,6685.808944823935,61970.78953785444,10358.278897295419,8549.076728132843,10842.260736069504,6732.718527844311,62639.873029033464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04516426965959164,0.0014289660099365549,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0242772665872193,1.0242772665872193,1.0728515370758085,1.0728515370758085,1.035731328821433,1.035731328821433,1.0744627722817832,1.0744627722817832,1.0735141387832694,1.0735141387832694,0.5299911463077482,0.620641273135532,0.5443203823025398,0.5616469445172637,0.5394630655855555,0.5325694440885743,0.6373378648456964,0.5529455872371657,0.5608169933145685,0.5444610305223765,27.152962843123944,27.152962843123944,29.285521548151777,29.285521548151777,27.648103291673337,27.648103291673337,29.357708975189126,29.357708975189126,29.315196728353897,29.315196728353897,10.876297087019381,13.08177472521119,11.201208369867445,11.605967865520824,11.09007357522816,10.934103080696033,13.526879217549848,11.401071819863944,11.586282869680176,11.204441613448111,264.6201535415267,264.6201535415267,0.0,294.02239282391855,0.0,264.6201535415267,294.02239282391855,0,0
+2017/06/20 21:00:00,246.964442967518,0,836.0982511030134,0,0,0,52.89206879046065,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9620009239246977e-09,25.608411925930085,0,0,0.0,516.6850784901162,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4403.439663772339,3207.2678021512024,4972.507736992263,5023.501092976321,34567.353268673265,6819.909090883244,5684.834746467095,7041.979005335343,4434.159607841173,43598.72780903741,6785.745379060601,5733.6497836716335,7160.067964550638,4367.21593831463,43799.35005828321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04451449019227301,0.0014084074405242449,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.986984137507658,0.986984137507658,1.0265605878754636,1.0265605878754636,0.9964598529986082,0.9964598529986082,1.0458155323360399,1.0458155323360399,1.04134427853715,1.04134427853715,0.49872703636593435,0.5809576982902759,0.5031600921628763,0.5262699357049867,0.512211277023068,0.494853929962998,0.5788914093308684,0.503848149579597,0.5187660481528045,0.5124479176242229,25.574830134779333,25.574830134779333,27.251280436902334,27.251280436902334,25.9708269481809,25.9708269481809,28.088012023466774,28.088012023466774,27.89250225719927,27.89250225719927,10.198241981763175,12.072420503533209,10.291814129737233,10.793374252599065,10.48550276440973,10.117184143652182,12.021736216226287,10.30641366281516,10.62798196667903,10.49061421670018,246.964442967518,246.964442967518,0.0,274.40493663057555,0.0,246.964442967518,274.40493663057555,0,0
+2017/06/20 22:00:00,166.49882566516,0,650.3785879295131,0,0,0,29.947240419526796,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8574915258244764e-09,20.798627637453773,0,0,0.0,490.67200162306455,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917.9044193560724,763.2046496651054,1637.199598812882,3328.488497120664,14131.555370713922,3838.157901211384,3562.627214215356,4216.858686627826,2464.7309881250594,27671.513285189914,3666.0908985153396,3453.3856773189787,4187.818461756655,2284.2327541277655,27501.172572085812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034626637761123215,0.001095562682004367,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9261043235939583,0.9261043235939583,0.9595423719475933,0.9595423719475933,0.9311982585655499,0.9311982585655499,0.9877719797088044,0.9877719797088044,0.9536993928614081,0.9536993928614081,0.472699776028285,0.5444308428424512,0.474242255688748,0.4973801234112101,0.48415483804660997,0.46277364008398175,0.5343250157319995,0.46828001479068454,0.48391070362200367,0.4801162259775797,23.113814442978267,23.113814442978267,24.447533424822097,24.447533424822097,23.314126007314655,23.314126007314655,25.607623761239054,25.607623761239054,24.211293507955844,24.211293507955844,9.665980044436893,11.203747582023567,9.696709275708557,10.169979781141038,9.896635955490822,9.470685051275368,10.973628124040019,9.578497662962363,9.891661097463796,9.814669608846103,166.49882566516,166.49882566516,0.0,184.99869518351113,0.0,166.49882566516,184.99869518351113,0,0
+2017/06/20 23:00:00,94.22916828811158,0,482.9153005922248,0,0,0,6.843029722441655,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.637463555584303e-09,11.875157504194219,0,0,0.0,429.6797718234086,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1694.1862066648873,0.0,11.554061910306077,968.4543322987702,819.8467654964293,0.0,9197.722079048553,0.0,718.6873659038686,673.9069619861807,0.0,8647.685847359295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025710768302112635,0.000813470787194953,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7660874547107007,0.7660874547107007,0.8017599465050577,0.8017599465050577,0.8049657338613944,0.8049657338613944,0.9309531672217916,0.9309531672217916,0.8462636396215975,0.8462636396215975,0.4802219877703803,0.5439061448970988,0.4786474009706881,0.4950506366567047,0.4901104559341385,0.4540771804294512,0.527737900501142,0.4671950247278484,0.4591187637342416,0.48351536550422763,17.364076539202472,17.364076539202472,18.553082665911006,18.553082665911006,18.662578897146076,18.662578897146076,23.30446440897005,23.30446440897005,20.111811162964045,20.111811162964045,9.816807142691758,11.191690795041438,9.785033316942716,10.121285276162894,10.018793603979148,9.303071459105169,10.82601453051592,9.55715065262362,9.399845139755968,9.883610535467554,94.22916828811158,94.22916828811158,0.0,104.69907587567953,0.0,94.22916828811158,104.69907587567953,0,0
+2017/06/21 00:00:00,42.807511283096396,0,477.94420967236204,0,0,0,0.40133743971997965,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,3.060487851865183,2.5801089727345113e-09,9.548364992507935,0,0,0.0,424.7086809035458,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258.2970259661547,0.0,307.0380926211244,990.0718618297616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025446103739418954,0.0008050969849177435,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8449784150265683,0.8449784150265683,0.878007955388904,0.878007955388904,0.8585919920306744,0.8585919920306744,0.9041993339624603,0.9041993339624603,0.8806016708925237,0.8806016708925237,0.6265286409417553,0.7683947189339748,0.6250164555666552,0.6691241907752699,0.6845993805105608,0.5844171597766504,0.7298875790724132,0.5969522080663173,0.615518815837651,0.6660415631500816,20.065633245060212,20.065633245060212,21.274124161488132,21.274124161488132,20.558257050311212,20.558257050311212,22.26430964623637,22.26430964623637,21.370930223267237,21.370930223267237,13.237342027847859,17.439342308230607,13.197240629889649,14.407665654698903,14.852315991318093,12.157692855318047,16.21301562021931,12.471019874585863,12.947643012485045,14.320330241192508,42.807511283096396,42.807511283096396,0.0,47.563901425662664,0.0,42.807511283096396,47.563901425662664,0,0
+2017/06/21 01:00:00,23.722086024888984,0,44.352547189065554,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249906012111961,0,0,0.0,8.862194676521414,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0023613624645732367,7.471186237367969e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8831669743446081,0.8831669743446081,0.9522876373366819,0.9522876373366819,0.8927925713293111,0.8927925713293111,0.9552601231232027,0.9552601231232027,0.9749458704713455,0.9749458704713455,0.610796041785842,0.7969028442012643,0.6104097957680833,0.6693901110669802,0.7434150522393808,0.577308156387986,0.7664453318325114,0.5890967212328342,0.6246648574759471,0.7137166544178849,21.46694737756863,21.46694737756863,24.15441536880455,24.15441536880455,21.8296271125204,21.8296271125204,24.27426488094568,24.27426488094568,25.07671100552608,25.07671100552608,12.824985948872254,18.388012738878103,12.814997419259782,14.415218849796858,16.636580992398876,11.983025742500203,17.375736039401062,12.273865869262266,13.187930874200873,15.71700380600069,23.722086024888984,23.722086024888984,0.0,26.35787336098776,0.0,23.722086024888984,26.35787336098776,0,0
+2017/06/21 02:00:00,28.344417981633708,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250548951608102,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8960489696790165,0.8960489696790165,0.9714656102102835,0.9714656102102835,0.902969267851191,0.902969267851191,0.966401008460404,0.966401008460404,1.031490870472039,1.031490870472039,0.616690356671062,0.7980486054067475,0.614488809956401,0.6732915042304601,0.7674595504594324,0.5750344133236929,0.7669154904842305,0.5851019852701901,0.6240398713530882,0.7280677785367061,21.95318025654508,21.95318025654508,24.933747887609925,24.933747887609925,22.217180658169966,22.217180658169966,24.72654291640906,24.72654291640906,27.464231254378348,27.464231254378348,12.978219413424853,18.426861743738215,12.920809780102331,14.526385888811177,17.40880859403174,11.927623063577599,17.39106193765403,12.174634713975777,13.171395482128005,16.156634874913465,28.344417981633708,28.344417981633708,0.0,31.493797757370785,0.0,28.344417981633708,31.493797757370785,0,0
+2017/06/21 03:00:00,23.722216524100595,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251211004228035,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.872119536631191,0.872119536631191,0.9490073425916185,0.9490073425916185,0.8766803742801709,0.8766803742801709,0.9358210335786105,0.9358210335786105,1.0280137960974358,1.0280137960974358,0.604438543704275,0.7880570617767337,0.6018417587202208,0.6609825427306458,0.7878071806191265,0.5587163276973341,0.7537811698523134,0.5678396787390102,0.6086640205999422,0.7350446988066272,21.055375366342773,21.055375366342773,24.022558759794705,24.022558759794705,21.224681348874242,21.224681348874242,23.496806232970883,23.496806232970883,27.313954689817677,27.313954689817677,12.661401425741147,18.089954270562515,12.595088247734424,14.177892631158556,18.081582741028313,11.536592227296964,16.966471816484344,11.753791805557768,12.769931503882972,16.37356586119664,23.722216524100595,23.722216524100595,0.0,26.35801836011177,0.0,23.722216524100595,26.35801836011177,0,0
+2017/06/21 04:00:00,51.150294116640644,0,88.72588128136032,0,0,0,0.1352780387043144,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,10.981787464779678,0.0,0.525095063522553,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,531.8249991157021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9058837775854724,0.9058837775854724,0.9331514801018101,0.9331514801018101,0.9077703106949755,0.9077703106949755,0.9312721606025425,0.9312721606025425,0.9596571743764951,0.9596571743764951,0.5025716544890991,0.5954673674749322,0.5011783261549035,0.5313660069533793,0.5791800521552352,0.47042997435534695,0.5681598897299274,0.4748683844066984,0.4955854788784437,0.556659503076324,22.32894724578702,22.32894724578702,23.3912084217892,23.3912084217892,22.401476103062052,22.401476103062052,23.31703972543042,23.31703972543042,24.452188458375446,24.452188458375446,10.279344608866367,12.433548645635241,10.249878403098677,10.907085935323295,12.028805244019466,9.620947641682122,11.76148064491096,9.709212263766986,10.132444637234002,11.48812403345643,51.150294116640644,51.150294116640644,0.0,56.833660129600716,0.0,51.150294116640644,56.833660129600716,0,0
+2017/06/21 05:00:00,78.53827380555272,0,212.9421150752648,0,0,0,0.355710225762257,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,4.819101536233819,0.0,0.5774190136007594,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1429.59134952728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9646655354596049,0.9646655354596049,0.9738622382460245,0.9738622382460245,0.9655009301087367,0.9655009301087367,0.9832491354452202,0.9832491354452202,0.993979001344687,0.993979001344687,0.6461872687508755,0.7825258853535647,0.6443840850567357,0.6881142817578229,0.7822812356777697,0.595566608775743,0.7289614607765705,0.6018445570417835,0.6280815530576425,0.7486115999959806,24.655770268699754,24.655770268699754,25.03214692881005,25.03214692881005,24.68982303363154,24.68982303363154,25.419686237501224,25.419686237501224,25.866819232112377,25.866819232112377,13.767693379337757,17.905268993886224,13.718348798736443,14.954753688815018,17.897130199204938,12.436050101215102,16.184304990663506,12.595159549959149,13.278626713881465,16.801380183350815,78.53827380555272,78.53827380555272,0.0,87.26474867283635,0.0,78.53827380555272,87.26474867283635,0,0
+2017/06/21 06:00:00,89.19393062919438,0,639.9734978591551,0,0,0,0.7876664157138691,0.0,8.250829117053247,0.0,73.80580873715317,0,5.824530422108752,2.5218225037444583e-09,0.5250959346435048,0,0,0.0,409.2862065276184,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3270.615922840083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034072663058657776,0.001078035308570582,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9907914354472741,0.9907914354472741,0.9960259314907712,0.9960259314907712,0.9947611204398931,0.9947611204398931,1.0934650840366475,1.0934650840366475,1.010491092201597,1.010491092201597,0.7588973039164633,0.9169355776360871,0.7719528805875254,0.9935430963071409,1.000783157541211,0.71533596858402,0.8738048012989192,0.7399282399383187,0.9752461050752057,0.9522126281212566,25.733527554518588,25.733527554518588,25.952618228561406,25.952618228561406,25.899583646784166,25.899583646784166,30.215896601544756,30.215896601544756,26.563467641820566,26.563467641820566,17.130983120654065,22.755886501844515,17.555859047149866,25.848568483510405,26.152637256335126,15.766165840921204,21.1178355069559,16.526652182916536,25.08906611421976,24.151395520578305,89.19393062919438,89.19393062919438,0.0,99.10436736577154,0.0,89.19393062919438,99.10436736577154,0,0
+2017/06/21 07:00:00,157.2561862622828,0,799.7347018040626,0,0,0,13.795680380515293,0.0,7.683252528344136,0.0,69.33401494192633,0,39.380909295966944,3.0129434311536336e-09,27.06232911251712,0,0,0.0,533.5570579599818,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5705.944571825485,0.0,0.01594946980587293,0.10781259914889318,449.2706554027624,936.4997231071245,19922.22175298121,0.17292952839305126,0.15612982957975896,578.7190844760796,1108.8425275097686,18760.819136185364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.042578467892873485,0.0013471530444901089,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.840995818234249,0.840995818234249,0.8293763583905359,0.8293763583905359,0.896189444095379,0.896189444095379,1.1797487990315136,1.1797487990315136,1.0106754088804601,1.0106754088804601,0.5727703956623293,0.6525470891961694,0.5977037116900145,0.8107469207422129,0.6822850390787091,0.5597180739503307,0.6432064946890453,0.589422828654015,0.834331401486647,0.6733850297137735,19.92297646045506,19.92297646045506,19.510553719853107,19.510553719853107,21.95851980818594,21.95851980818594,34.263770228711465,34.263770228711465,26.57130209929126,26.57130209929126,11.872680219448924,13.94285689154674,12.49002118468779,18.861137305081414,14.785158876982422,11.5602643788271,13.68619984177704,12.281997108162955,19.685738016267777,14.5290589086094,157.2561862622828,157.2561862622828,0.0,174.72909584698087,0.0,157.2561862622828,174.72909584698087,0,0
+2017/06/21 08:00:00,195.60276211846275,0,820.5009378754505,0,0,0,35.833144872301155,0.0,11.577525286619291,0.0,83.2008179303116,0,39.380909295966944,2.962032262537865e-09,25.610364730301757,0,0,0.0,501.0877652625534,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,605.3071665758001,161.92205590964303,1268.2416076494774,5259.029198166718,17390.640394740756,3947.6791617010736,3204.4241257448225,4250.609842033895,4194.979024344635,36492.84796652055,3628.8344672224594,2841.408650039374,4112.482530006352,4197.3898405771415,35498.13105491856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04368407768300368,0.0013821337675762315,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9412758804644474,0.9412758804644474,0.9273339033605051,0.9273339033605051,0.9699092333481094,0.9699092333481094,1.0969647820458417,1.0969647820458417,1.0404627081328182,1.0404627081328182,0.5487491313337904,0.5964231157177313,0.5562073275093876,0.6711669766692947,0.5884635029598067,0.5395930065462157,0.5858966164216185,0.5498392939626202,0.6753871556073366,0.5846199345355102,23.71346126757402,23.71346126757402,23.162070890883896,23.162070890883896,24.86996664928752,24.86996664928752,30.375311550157647,30.375311550157647,27.854040705196823,27.854040705196823,11.303428670687396,12.457656800892053,11.477493305528455,14.465767484355425,12.258090237541666,11.0930333003395,12.19431855655688,11.32872118261244,14.586371782510469,12.162707167598413,195.60276211846275,195.60276211846275,0.0,217.3364023538475,0.0,195.60276211846275,217.3364023538475,0,0
+2017/06/21 09:00:00,198.24148198351324,0,863.09233767487,0,0,0,19.898932390653922,0.0,11.815562190220337,0.0,106.27511244621549,0,39.380909295966944,2.8575223827625005e-09,20.870965657599072,0,0,0.0,490.44363629315666,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4496.182772486123,11149.448943116338,0.0,51.84856114625366,1163.6039041713816,689.858384168255,25533.84316100773,0.0,0.0,1097.4544140732112,384.10030541283476,23406.033671270226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04595167535605855,0.0014538789773057212,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9836454584031421,0.9836454584031421,0.9526757620311563,0.9526757620311563,1.0490192754354994,1.0490192754354994,1.0750858753463588,1.0750858753463588,1.1387153706258906,1.1387153706258906,0.6106849905893418,0.6685039491665278,0.6203592731272582,0.701816784278946,0.645480368433043,0.5917311760107397,0.6431881017298199,0.6129362177470883,0.6986250712937065,0.641559772525398,25.43612321899323,25.43612321899323,24.170044688056308,24.170044688056308,28.228545170254122,28.228545170254122,29.38565005180004,29.38565005180004,32.308818844261395,32.308818844261395,12.82211344207461,14.390060222619951,13.074360927848176,15.359194282953666,13.748332070888722,12.339685939310826,13.685698179385653,12.880449380862473,15.264263824548067,13.641344134047273,198.24148198351324,198.24148198351324,0.0,220.2683133150147,0.0,198.24148198351324,220.2683133150147,0,0
+2017/06/21 10:00:00,232.77542693658754,0,937.7599199277081,0,0,0,24.061641953231373,0.0,16.86091082671979,0.0,133.89528835348938,0,39.380909295966944,2.8039051525907307e-09,18.576676504376138,0,0,0.0,476.3853372646343,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146.71896771459905,0.0,1947.3860867228482,5523.808855040211,29239.13745514086,0.0,202.47256278742225,1153.8316964106898,715.4998396213166,22248.231356706576,0.0,0.0,1068.9450636766178,361.9581361779252,20916.09969498874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04992703274197561,0.0015796565139434536,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1067235068056234,1.1067235068056234,1.057699925443175,1.057699925443175,1.1369785958040928,1.1369785958040928,1.1185146191069657,1.1185146191069657,1.1998023469524048,1.1998023469524048,0.6431693594875068,0.6922954563840982,0.647890610341041,0.7157516717250408,0.6584319039381455,0.6250765796323194,0.6702919932890798,0.6445214464554108,0.7144920538969096,0.6580066275165763,30.82203644214239,30.82203644214239,28.611186825812496,28.611186825812496,32.22724417458623,32.22724417458623,31.366079008448565,31.366079008448565,35.237791157801595,35.237791157801595,13.685187005494683,15.07730460754614,13.814435242461784,15.778804725149953,14.106499362296304,13.198833156143664,14.440858696418118,13.72210276742446,15.740530671624839,14.09462314474311,232.77542693658754,232.77542693658754,0.0,258.639363262875,0.0,232.77542693658754,258.639363262875,0,0
+2017/06/21 11:00:00,271.67717891842574,0,994.079272822196,0,0,0,46.782285838735646,0.0,16.86091082671979,0.0,147.76209134187457,0,39.380909295966944,2.857522382762501e-09,20.890981612271162,0,0,0.0,479.4691613903061,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2353.285861353375,358.42118521659785,4522.478212082931,6782.267109987753,44430.57027152285,3506.2285363283445,2439.845028104595,4847.107614691327,2816.865054942538,42511.365237635866,3392.1783705949047,2154.2881447279415,4925.5357886957045,2533.0351190510273,42048.56824989997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05292551680619829,0.0016745264596196518,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.178865164461897,1.178865164461897,1.1590674333488344,1.1590674333488344,1.1767909411718882,1.1767909411718882,1.152234139568801,1.152234139568801,1.2216135944868733,1.2216135944868733,0.6619853544901014,0.699421746854598,0.6533105346569943,0.7186014795402197,0.6620173229940907,0.6581121160552624,0.6914803496112922,0.6561534602268562,0.7225507961849288,0.665158331792122,34.22112548346338,34.22112548346338,33.271899704731695,33.271899704731695,34.12111447706495,34.12111447706495,32.94708111659597,32.94708111659597,36.31034615342744,36.31034615342744,14.206038873909222,15.287917995008073,13.96400173800177,15.865649664566746,14.206936860813329,14.097568273969259,15.053354409041603,14.042963302696904,15.98657914341716,14.295382831715685,271.67717891842574,271.67717891842574,0.0,301.8635321315841,0.0,271.67717891842574,301.8635321315841,0,0
+2017/06/21 12:00:00,263.83698963184315,0,966.6463978747366,0,0,0,59.511183493054155,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,2.8039051525907307e-09,18.58410518361073,0,0,0.0,487.52663895539087,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2978.9693389309555,562.4791035139277,4988.8745135246445,6954.8627797623385,45410.99629699969,6130.606589819579,3996.6001715673633,7430.337032224855,4204.8180199902445,58013.58397638887,6163.797061334628,3817.2130117304664,7698.353295838998,4028.0678290846645,57913.605161429565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05146497022428219,0.0016283157838527763,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1786194835657648,1.1786194835657648,1.179028364627179,1.179028364627179,1.169565507588643,1.169565507588643,1.1539100908563433,1.1539100908563433,1.2113988436131187,1.2113988436131187,0.6559872476416445,0.6881648735944084,0.6431490126867669,0.704427376582542,0.6549606562892011,0.6586776771960287,0.6860248377508865,0.6477645434114155,0.7091504166426295,0.6602164959602729,34.209272941414696,34.209272941414696,34.228999857356996,34.228999857356996,33.773749039839544,33.773749039839544,33.02661149364333,33.02661149364333,35.80637141829045,35.80637141829045,14.03833714793987,14.956232027997657,13.684632086295409,15.437167482996713,14.009790812296359,14.113366369499545,14.89379489565897,13.810971494761546,15.57898246784012,14.15642109991208,263.83698963184315,263.83698963184315,0.0,293.15221070204797,0.0,263.83698963184315,293.15221070204797,0,0
+2017/06/21 13:00:00,256.21718365977813,0,905.2172258467443,0,0,0,54.58863227151918,0.0,16.630907756533322,0.0,129.2730206906943,0,39.380909295966944,2.749367382661557e-09,16.343713642314917,0,0,0.0,461.5878194399427,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3156.163186331876,572.9615376235586,4926.554613735624,6851.891035708365,41324.59056878706,5677.65581969495,3667.7246663025917,6896.151492378798,3758.9866101104762,51357.54218550978,5999.867905223706,3671.748754257029,7437.068466925612,3739.355620984821,51182.16390260936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04819443560451464,0.0015248383482340186,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1946259089923383,1.1946259089923383,1.1977608602254421,1.1977608602254421,1.1801639735307776,1.1801639735307776,1.1679137936954747,1.1679137936954747,1.2041730883506743,1.2041730883506743,0.6702355071834579,0.6998664849217305,0.6546274875654932,0.7131141907559385,0.6488773971546478,0.6789101489566286,0.7036582379162964,0.6631249656114954,0.7216382124128842,0.6548534469230239,34.98523622009439,34.98523622009439,35.13809557276102,35.13809557276102,34.28381489782154,34.28381489782154,33.694565655227564,33.694565655227564,35.45163926765136,35.45163926765136,14.439251804334248,15.301134673712511,14.000536235620885,15.698741977210645,13.84157147543175,14.687642193793849,15.414164281371953,14.238077592246157,15.958575853128764,14.006812284827049,256.21718365977813,256.21718365977813,0.0,284.6857596219757,0.0,256.21718365977813,284.6857596219757,0,0
+2017/06/21 14:00:00,241.72067230606547,0,842.3826229376904,0,0,0,56.21945035333593,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.6938998132989706e-09,14.032370602295924,0,0,0.0,434.2435690434329,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5763.215810955462,3169.5753299957523,6299.781538706306,6748.09157078012,44635.98521182573,6945.5195097103315,5136.175113753703,7030.4503978243865,4620.3066579297065,46022.4103456393,7408.968906281235,5333.73002471177,7574.0677746370475,4746.469113843246,46292.39523265171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04484907480362733,0.0014189934644027824,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.182966358584902,1.182966358584902,1.206962091351727,1.206962091351727,1.160352883044896,1.160352883044896,1.1620573707658384,1.1620573707658384,1.1785517801092342,1.1785517801092342,0.659352973035912,0.7044723517151421,0.6382706346639232,0.6912996864242917,0.6256524347097824,0.6711954302784982,0.7155251169908173,0.6476828311896887,0.6999852646181562,0.6321896476046676,34.41924934140167,34.41924934140167,35.58838329996303,35.58838329996303,33.3331661510863,33.3331661510863,33.41448371835335,33.41448371835335,34.20600699886184,34.20600699886184,14.132247891743347,15.438513377638515,13.552102062784854,15.04804988791372,13.21409396782785,14.46657805037134,15.771915715866143,13.808726781398661,15.304666000950746,13.388346271945835,241.72067230606547,241.72067230606547,0.0,268.5785247845172,0.0,241.72067230606547,268.5785247845172,0,0
+2017/06/21 15:00:00,232.62868741277694,0,865.6644732520919,0,0,0,53.74513357153731,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.6938998132989706e-09,14.115345487494155,0,0,0.0,457.52541935783427,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6070.411284867651,5134.603585088166,6604.040823945759,6558.301186410524,46285.9581129106,6165.261242399383,5977.8716586513565,6193.276857924739,4282.335330676334,39747.872430412135,6534.663109669097,6312.7380391978395,6635.385057985795,4378.791209375651,40482.6585456723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04608861775938781,0.0014582117394903295,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1556577961385346,1.1556577961385346,1.2469458012065624,1.2469458012065624,1.1430201560545248,1.1430201560545248,1.1489375005729814,1.1489375005729814,1.171220873398832,1.171220873398832,0.6347736338664562,0.7227879776720776,0.6202154001434347,0.6701212040806043,0.6121218606444931,0.6431661017002984,0.7403346613537731,0.6278099052341108,0.6763613349028292,0.6192282601649106,33.109640834305026,33.109640834305026,37.57245141503859,37.57245141503859,32.51142853208428,32.51142853208428,32.790901205705126,32.790901205705126,33.85319117804465,33.85319117804465,13.457734829119758,15.993863096801476,13.070579827789004,14.436000582136572,12.859321593709197,13.685098154512502,16.539438582882084,13.27139731531176,14.614321389095167,13.044661203851845,232.62868741277694,232.62868741277694,0.0,258.4763193475299,0.0,232.62868741277694,258.4763193475299,0,0
+2017/06/21 16:00:00,260.87252325333316,0,919.0914432425134,0,0,0,59.13887192891143,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.6938998132989706e-09,14.080964795694134,0,0,0.0,457.71686057943964,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6558.618223873264,8026.7732686290765,7651.688355827173,6834.048228134009,52651.54756226155,6285.891928462393,7655.754216979655,6783.4318907438355,4371.356839600939,42840.90367577962,6625.221641835712,8195.017255006012,7272.10096246565,4465.7286886297325,43696.90961495828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0489331092153907,0.0015482094663841562,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1601091864766075,1.1601091864766075,1.3263847669500026,1.3263847669500026,1.1610406003045322,1.1610406003045322,1.1548766685690262,1.1548766685690262,1.1904049893486865,1.1904049893486865,0.6284832278907336,0.7659883040786973,0.6248736521303646,0.664779034052203,0.6120381737406575,0.6360457481616313,0.7919387401950038,0.6340956600093959,0.6706068490315388,0.6204712892508059,33.32154726285003,33.32154726285003,41.6332339202751,41.6332339202751,33.36596486548727,33.36596486548727,33.07251947404764,33.07251947404764,34.77987844969978,34.77987844969978,13.289322405230521,17.360847216581618,13.193458776172434,14.284679705341716,12.857152040568536,13.492001691862924,18.220338770133708,13.439500965472789,14.44981810614297,13.077305425409179,260.87252325333316,260.87252325333316,0.0,289.8583591703702,0.0,260.87252325333316,289.8583591703702,0,0
+2017/06/21 17:00:00,277.5247713962625,0,926.5913646384922,0,0,0,69.01157299031155,0.0,16.630907673226492,0.0,133.89528835348938,0,39.380909295966944,2.8039051525907307e-09,18.60609308046416,0,0,0.0,465.2167819754184,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6713.765973527345,9474.879880089524,9031.948207924095,6951.269789400908,54945.94602851803,7771.959179637317,9496.198780336648,9259.093468387862,5178.31954378588,53737.74472217434,8054.702138318757,10118.13446554205,9824.890173305166,5240.602213530587,54684.393101776295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049332410585754397,0.0015608430834064483,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.150377272901137,1.150377272901137,1.3425230494315255,1.3425230494315255,1.1860158790747757,1.1860158790747757,1.149360040282269,1.149360040282269,1.1897788694478935,1.1897788694478935,0.6183763505694666,0.784626780754644,0.6384157788767393,0.6524836248107442,0.6115665171304988,0.6251159308806529,0.8129466397697734,0.6514197431363798,0.6569513984299951,0.6206413681001471,32.85906891619183,32.85906891619183,42.47511521774218,42.47511521774218,34.566893540474666,34.566893540474666,32.81090004572776,32.81090004572776,34.74946074929342,34.74946074929342,13.022327220773633,17.97526451633361,13.556030271876807,13.941100280946998,12.844930195008445,13.199875550757042,18.937058372487144,13.911679431083073,14.06518879374623,13.081777222417955,277.5247713962625,277.5247713962625,0.0,308.36085710695835,0.0,277.5247713962625,308.36085710695835,0,0
+2017/06/21 18:00:00,262.1102720060024,0,942.4030015631465,0,0,0,69.41899821929597,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.9620322625378692e-09,25.577643225618107,0,0,0.0,516.5187714126168,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4688.200280126068,7723.58980256157,8711.547123420047,6485.882061557261,48448.68641595412,7600.083298914067,9432.631281059406,10503.946855160139,4750.2833205079405,60140.56633901242,7826.485748165636,9999.401837077705,11213.396408605216,4719.5392843941145,60688.64323842234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05017423384740787,0.0015874777846059457,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1402098344110863,1.1402098344110863,1.310475456750508,1.310475456750508,1.1998593616465376,1.1998593616465376,1.1341707641505843,1.1341707641505843,1.1861140852263343,1.1861140852263343,0.616936546342566,0.7799604941999069,0.6552992385331907,0.6489279122507473,0.6222856304306528,0.6204434417087566,0.8016489748449712,0.6703219177184182,0.6499471696179839,0.6301221110510427,32.379090118416286,32.379090118416286,40.80849963844544,40.80849963844544,35.24057718777891,35.24057718777891,32.09556900957307,32.09556900957307,34.57165283756264,34.57165283756264,12.984652366152446,17.82005237089443,14.019200691317536,13.84296175572959,13.125073706618977,13.076573363686634,18.549300121120922,14.44171002950091,13.871037469242395,13.333034700361978,262.1102720060024,262.1102720060024,0.0,291.2336355622249,0.0,262.1102720060024,291.2336355622249,0,0
+2017/06/21 19:00:00,240.26038992330723,0,908.9063909321604,0,0,0,54.363981709165095,0.0,17.72786785835905,0.0,101.68988858149199,0,39.380909295966944,3.0129434314934857e-09,27.0977424753112,0,0,0.0,518.512513294175,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1922.7728081883286,3063.0753936321194,5211.659465350526,5796.2978399434305,37185.92115405874,4902.76413621716,6258.403349937738,7772.26303513642,2733.1261297093342,51024.037453229364,4943.447929613097,6459.955109403925,8266.490212025954,2515.089734763643,50962.18548807356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048390849486251365,0.0015310527465403991,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.135067490172336,1.135067490172336,1.2122392824328865,1.2122392824328865,1.1550696512827618,1.1550696512827618,1.1160174260022968,1.1160174260022968,1.183689006729176,1.183689006729176,0.6157023044166657,0.724858796477269,0.6346640903424717,0.6449421380360888,0.6300073616975762,0.613190497284533,0.7276708166126017,0.6369049102025001,0.6398554458164815,0.6341411767332883,32.13759386099876,32.13759386099876,35.84772680946246,35.84772680946246,33.08168877219691,33.08168877219691,31.25047077820055,31.25047077820055,34.45421172538222,34.45421172538222,12.952428002855342,16.05756173999407,13.454787344781892,13.733604995896457,13.329970311428283,12.887052338937679,16.14435518800539,13.515184599789649,13.595043156155356,13.440724497043007,240.26038992330723,240.26038992330723,0.0,266.9559888036747,0.0,240.26038992330723,266.9559888036747,0,0
+2017/06/21 20:00:00,244.0174039781064,0,848.0471832620952,0,0,0,51.51512146276809,0.0,23.798027217215836,0.0,106.16168237671882,0,39.380909295966944,2.9102283328528773e-09,23.161663622526504,0,0,0.0,493.1436581366541,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1441.8149934162684,1457.1662317852388,4095.1118678198254,5508.45036806722,33327.2001524876,4954.472270420918,5333.472646258307,7293.348340125917,2699.6149656252805,50784.50203027009,4792.860871889944,5256.422227176961,7445.757270510659,2341.869082552256,50628.59590011736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04515066019107624,0.0014285354158393097,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1294416420718798,1.1294416420718798,1.1750945407059246,1.1750945407059246,1.12996603650088,1.12996603650088,1.1020491257039877,1.1020491257039877,1.1762896884728984,1.1762896884728984,0.6156618131871481,0.6985691949459409,0.6219418818409015,0.6423510459565659,0.63412831265103,0.6118899418569335,0.6958889755171073,0.6198069001933614,0.6355464069194906,0.6357367841665132,31.87437186745497,31.87437186745497,34.039417106393884,34.039417106393884,31.898863682285707,31.898863682285707,30.60765399475794,30.60765399475794,34.096965473499154,34.096965473499154,12.951371952403193,15.26260582293844,13.116012467563735,13.662883262722545,13.44037868952195,12.853309927831475,15.183234831773376,13.05984900984923,13.478542598997777,13.483672694035775,244.0174039781064,244.0174039781064,0.0,271.13044886456265,0.0,244.0174039781064,271.13044886456265,0,0
+2017/06/21 21:00:00,226.86096372294648,0,835.8987351483769,0,0,0,32.78430036671827,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.962032262537869e-09,25.612701105100868,0,0,0.0,516.4855625354797,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,2034.6496896393646,4598.029152341458,24674.2572788874,1851.0778809876438,2952.065097851181,3906.993048109531,752.7066284595513,32946.52649160942,1676.1850469404862,2765.257982518859,3973.9556368240596,394.7216131895879,32056.51429090365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04450386781506537,0.0014080713559138029,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0985739252636426,1.0985739252636426,1.143731516268432,1.143731516268432,1.1077105800130354,1.1077105800130354,1.0811908189699735,1.0811908189699735,1.1543920400282492,1.1543920400282492,0.5988915215454493,0.671398195695822,0.6035603331139661,0.6228352153900337,0.6195102146071847,0.5911677930892462,0.6612022997354939,0.5968060862485891,0.6117685527562311,0.6180483403842468,30.448750309171913,30.448750309171913,32.5449666662889,32.5449666662889,30.867401258819513,30.867401258819513,29.66012659889968,29.66012659889968,33.04949819016004,33.04949819016004,12.520104219167422,14.472355301000107,12.63894212080723,13.139571460288948,13.052059964560968,12.325584879481568,14.184056894805096,12.467328119958054,12.850164279799245,13.013736379819335,226.86096372294648,226.86096372294648,0.0,252.06773746994054,0.0,226.86096372294648,252.06773746994054,0,0
+2017/06/21 22:00:00,137.2253103201492,0,650.1350196556182,0,0,0,0.6033346160062072,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8575223827625013e-09,20.869018095963483,0,0,0.0,490.42843334916955,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2451.8522290127767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03461367000580841,0.0010951523912654778,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8206907384772435,0.8206907384772435,0.8587131211432067,0.8587131211432067,0.9098739155764075,0.9098739155764075,1.0225367531460037,1.0225367531460037,0.9936310015937903,0.9936310015937903,0.44578140529517996,0.5809160543883547,0.5301536259906268,0.4399101868295037,0.6065397658979369,0.4166443374024938,0.5440499647022519,0.5102121184701923,0.39592244256162096,0.5935823075214881,19.205959941226993,19.205959941226993,20.562674792151427,20.562674792151427,22.48252021094511,22.48252021094511,27.078147906980348,27.078147906980348,25.85224837459242,25.85224837459242,9.14621367641243,12.071397185275487,10.879931417940526,9.036988131985055,12.71527381212357,8.618716662693032,11.194994375728044,10.442417464352033,8.265717038002649,12.386115386328129,137.2253103201492,137.2253103201492,0.0,152.47256702238798,0.0,137.2253103201492,152.47256702238798,0,0
+2017/06/21 23:00:00,87.50831584171146,0,482.60573462909,0,0,0,0.21043118171854705,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6374931848269614e-09,11.786903598517169,0,0,0.0,429.3702058602738,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,828.293156624264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025694286780937763,0.000812949323353548,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5756698671282577,0.5756698671282577,0.6058188043314456,0.6058188043314456,0.6770024791743221,0.6770024791743221,0.967948759861064,0.967948759861064,0.7373736985005189,0.7373736985005189,0.29584850548490826,0.43181417927133786,0.3913504757355574,0.28285193908456757,0.473498395988042,0.24246820742054667,0.3719988187750947,0.35337603627228437,0.2102612186216453,0.45288284675604806,11.943084130120482,11.943084130120482,12.696767775331779,12.696767775331779,14.632738491484787,14.632738491484787,24.789759266749826,24.789759266749826,16.446446230032535,16.446446230032535,6.818609046388744,8.888802971542475,8.190307234259407,6.661830028514672,9.681877320185421,6.220106541760302,7.881009740861984,7.598440571054198,5.916936532690926,9.280306379973538,87.50831584171146,87.50831584171146,0.0,97.23146204634607,0.0,87.50831584171146,97.23146204634607,0,0
+2017/06/22 00:00:00,40.87689523534581,0,477.6110908693145,0,0,0,0.44146002216292446,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.0878595730493035,2.5801382375695214e-09,9.550254641130266,0,0,0.0,424.3755621004983,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,63.25344230891747,117.43653169930889,786.5906100770409,636.3324073170861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025428368247601387,0.0008045358463192933,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.814345753171051,0.814345753171051,0.8538238115288415,0.8538238115288415,0.8629223435703421,0.8629223435703421,0.940944442033777,0.940944442033777,0.8862302829287383,0.8862302829287383,0.5253224580868986,0.7161539100298256,0.6008946185583421,0.5449514957575243,0.7037632334610854,0.43257976067079873,0.6155080926361279,0.5253237162670659,0.4317628975889513,0.6712861561916248,18.98545347141618,18.98545347141618,20.38483847913018,20.38483847913018,20.71656825837003,20.71656825837003,23.70026352420261,23.70026352420261,21.58195772634319,21.58195772634319,10.772356573503671,15.791041316632189,12.570974305559034,11.215723213062105,15.417302956703622,8.90269526725713,12.947363419474357,10.772384457658092,8.887873309693589,14.469162819175693,40.87689523534581,40.87689523534581,0.0,45.41877248371757,0.0,40.87689523534581,45.41877248371757,0,0
+2017/06/22 01:00:00,23.774713310704595,0,50.268708282086386,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.577617887026806,0,0,0.0,14.778355769542253,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0026763432633056285,8.467763528584426e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.791290714627418,0.791290714627418,0.8827920378609837,0.8827920378609837,0.8536314557274184,0.8536314557274184,0.9327721740438955,0.9327721740438955,1.0052030255530875,1.0052030255530875,0.5182679013364201,0.736036025501542,0.5845744612435311,0.552122741003986,0.7973428169536759,0.43454437887821756,0.6515441549681619,0.5184021321379315,0.4507196567857403,0.7445277893145681,18.198527315799538,18.198527315799538,21.45289698358276,21.45289698358276,20.377862303717222,20.377862303717222,23.376227491211182,23.376227491211182,26.339240691802203,26.339240691802203,10.617088626552928,16.404558540696925,12.1615825268468,11.381865663276955,18.402924197058013,8.938460532171874,13.91511741379341,10.620022892672452,9.239230275473858,16.67177204636303,23.774713310704595,23.774713310704595,0.0,26.416348123005104,0.0,23.774713310704595,26.416348123005104,0,0
+2017/06/22 02:00:00,28.3441426742922,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.524779587819307,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7988586981111647,0.7988586981111647,0.8968170837646531,0.8968170837646531,0.8563290039604794,0.8563290039604794,0.9283487546758998,0.9283487546758998,1.0853413460131698,1.0853413460131698,0.4929409882819557,0.7113701530306893,0.5556601270844757,0.5286126381439087,0.8294099610931145,0.4097012445481307,0.6314948042085196,0.4887906403193732,0.43052949244760197,0.757761841499084,18.454362873334105,18.454362873334105,21.98238673725909,21.98238673725909,20.475834657886907,20.475834657886907,23.201945602267656,23.201945602267656,29.847475728499276,29.847475728499276,10.077388426044294,15.6459650406494,11.464640381746861,10.845508730494785,19.511738271077945,8.498392164533215,13.369736851478322,9.991590371803468,8.865547493632107,17.094375212457635,28.3441426742922,28.3441426742922,0.0,31.493491860324667,0.0,28.3441426742922,31.493491860324667,0,0
+2017/06/22 03:00:00,23.72199065707008,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248952333922899,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7670270231243,0.7670270231243,0.8611022264142737,0.8611022264142737,0.8176499023552426,0.8176499023552426,0.869022750460574,0.869022750460574,1.0587425935030277,1.0587425935030277,0.4765073510343282,0.6963070946208388,0.5379021120244837,0.5136453136666266,0.8483228887313159,0.3863689170363598,0.6094413093946927,0.46344760158611364,0.40874379072494105,0.7657258323821905,17.39469898406503,17.39469898406503,20.64993290200995,20.64993290200995,19.100070725089765,19.100070725089765,20.940905797287556,20.940905797287556,28.65732962752189,28.65732962752189,9.742020366649058,15.195596427789312,11.05457619042555,10.516515182790954,20.1859430758428,8.109158657017048,12.789980312584703,9.483810797299128,8.481961421834285,17.35230057500776,23.72199065707008,23.72199065707008,0.0,26.35776739674453,0.0,23.72199065707008,26.35776739674453,0,0
+2017/06/22 04:00:00,44.0588891198275,0,88.72588128136032,0,0,0,0.42274006646549733,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,3.6029784097130397,0.0,0.5250370940148213,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,53.049780351809304,0.0,0.0,0.0,0.0,0.0,0.0,7.259333087768142,0.0,1313.5642594952963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8124092457058407,0.8124092457058407,0.9044917459035063,0.9044917459035063,0.8603373235384358,0.8603373235384358,0.9029013442974169,0.9029013442974169,0.9910511395519374,0.9910511395519374,0.4398698009543612,0.5082139836186739,0.457898460777892,0.4484463960030088,0.5727819878226784,0.3676444092679682,0.4696185227593444,0.43147206487832085,0.3899946635781703,0.5463180907525149,18.9184919307897,18.9184919307897,22.275522198856024,22.275522198856024,20.62197036512906,20.62197036512906,22.214580010068843,22.214580010068843,25.744372857625834,25.744372857625834,9.036241941698577,10.399526924445482,9.376320941913974,9.196280998967907,11.872960969885582,7.81361545270083,9.604902492429844,8.88260307421065,8.16811630444326,11.247212394680886,44.0588891198275,44.0588891198275,0.0,48.954321244252775,0.0,44.0588891198275,48.954321244252775,0,0
+2017/06/22 05:00:00,75.61269927153862,0,212.9421150752648,0,0,0,0.2780993296306641,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.0234688480612824,0.0,0.525088063890811,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126.67317492260196,0.0,289.8230946405238,695.2349568570901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9837538474747739,0.9837538474747739,0.9984516435880724,0.9984516435880724,0.9981094565219865,0.9981094565219865,1.0102968915608852,1.0102968915608852,1.0159281922320957,1.0159281922320957,0.5050299695500129,0.646403055396059,0.5435373732323443,0.5261362465460877,0.7880795303062511,0.4200792039199642,0.5723239204816105,0.4889346326987193,0.4405767905389158,0.7393550209407489,25.44061956707752,25.44061956707752,26.05450064327796,26.05450064327796,26.04011488421888,26.04011488421888,26.555214443515666,26.555214443515666,26.795109527099427,26.795109527099427,10.33153784669851,13.773607881015849,11.183224103628618,10.790406301736311,18.090707142132914,8.679007119030885,11.861871476941161,9.994554599840114,9.049314772382914,16.508630223693885,75.61269927153862,75.61269927153862,0.0,84.01411030170958,0.0,75.61269927153862,84.01411030170958,0,0
+2017/06/22 06:00:00,87.27974853486222,0,639.6003211016929,0,0,0,0.4739284148546764,0.0,9.583915960101246,0.0,73.80580873715317,0,2.8909199930017015,2.521851080495042e-09,0.525175427229564,0,0,0.0,408.913029770156,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1983.647625438714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03405279485167598,0.0010774066923509606,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0954404306119572,1.0954404306119572,1.054671333982314,1.054671333982314,1.0756571081556225,1.0756571081556225,1.0877595500809487,1.0877595500809487,1.0163377871098243,1.0163377871098243,0.688096601079907,0.862278790191258,0.7339172597767982,0.7125485578802989,1.038333966030435,0.5883820840817702,0.7606006403777843,0.6570967939240702,0.6098550262647647,0.9766625238783143,30.30582416629396,30.30582416629396,28.477378973481876,28.477378973481876,29.4112771533064,29.4112771533064,29.95690584278583,29.95690584278583,26.812604722167876,26.812604722167876,14.954237069518214,20.692991796293867,16.338369089150504,15.681610797803145,27.76128399096359,12.256063077508301,17.18600295391694,14.069241560681618,12.800662110218255,25.14740093062929,87.27974853486222,87.27974853486222,0.0,96.97749837206914,0.0,87.27974853486222,96.97749837206914,0,0
+2017/06/22 07:00:00,145.32382415068093,0,789.7809631298803,0,0,0,1.799477755136349,0.0,7.718350191079528,0.0,69.33401494192633,0,39.380909295966944,1.0533969404119583e-05,27.091061432602398,0,0,0.006391013047294474,523.5969282727522,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1819.6447680445121,0.0,0.0,0.0,0.0,0.0,2535.749713546563,0.0,0.0,0.0,0.0,1984.2103935885636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.042048523473059436,0.001330385972448925,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3717662242116614,0.3717662242116614,0.6092400872711932,0.6092400872711932,0.5013647468704996,0.5013647468704996,1.0822751835437863,1.0822751835437863,0.6740498185255053,0.6740498185255053,0.18557081204492776,0.2549292054930245,0.24800054849653,0.28483370655585655,0.45243314111978067,0.2130358646440967,0.27144033519208066,0.21657237110118305,0.289657000288046,0.42800719276105453,7.87738937902752,7.87738937902752,12.784787623440295,12.784787623440295,10.253815979836745,10.253815979836745,29.70901550188141,29.70901550188141,14.548069919833537,14.548069919833537,5.713934575565574,6.349085449754426,6.2765641038651125,6.6852755365727035,9.271750490661432,5.941343382472439,6.530047028626072,5.972919171467993,6.743030692210439,8.820094771813189,145.32382415068093,145.32382415068093,0.0,161.47091572297882,0.0,145.32382415068093,161.47091572297882,0,0
+2017/06/22 08:00:00,160.80127575606852,0,830.4243438756513,0,0,0,1.2434190144635957,0.0,11.36563784648343,0.0,83.2008179303116,0,39.380909295966944,2.9620632349799864e-09,25.610491665880936,0,0,0.0,511.01117126275415,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5331.8189383556555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044212407168787354,0.0013988497442303958,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.37925703012386414,0.37925703012386414,0.33162959437197076,0.33162959437197076,0.4746993181489344,0.4746993181489344,1.2453094877775355,1.2453094877775355,0.6488862620142628,0.6488862620142628,0.09461415659755544,0.13762255479394042,0.17273716601239167,0.3417834409582529,0.37119297521146427,0.059369888795076334,0.11722562272352857,0.10939917030286846,0.3190832226726634,0.34274780115670583,7.995144224647191,7.995144224647191,7.287149056016574,7.287149056016574,9.705834561337255,9.705834561337255,37.49041228944642,37.49041228944642,13.84181544676548,13.84181544676548,5.18538168360169,5.39239682073989,5.618478122326593,7.429996442836369,7.868476539704773,5.072976316461919,5.284637345862848,5.24787958455687,7.116685476426142,7.443791052222011,160.80127575606852,160.80127575606852,0.0,178.66808417340945,0.0,160.80127575606852,178.66808417340945,0,0
+2017/06/22 09:00:00,180.90375769174167,0,862.884592284131,0,0,0,3.0529402603537887,0.0,11.323895916778682,0.0,106.27511244621549,0,39.380909295966944,2.8575528791774734e-09,20.870899769569196,0,0,0.0,490.2358909024177,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7667.741531066917,0.0,0.0,0.0,0.0,121.81785478313563,2670.2498537073957,0.0,0.0,0.0,139.0092898145085,1328.7052517756674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0459406148375772,0.0014535290302107886,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5916495858807643,0.5916495858807643,0.41710902612981077,0.41710902612981077,0.5896601069441493,0.5896601069441493,1.2337013174534686,1.2337013174534686,0.8001343528681046,0.8001343528681046,0.22012772123682367,0.20191987775470244,0.23394444542032697,0.4898858797422861,0.42552551532694927,0.18734647698158804,0.1434585049947526,0.18607102555835273,0.48619289895353884,0.412808287776751,12.337642945421578,12.337642945421578,8.626843521944934,8.626843521944934,12.287916361366868,12.287916361366868,36.91043883213566,36.91043883213566,18.49772527261632,18.49772527261632,6.005191309414613,5.845503384254897,6.1356374176059205,10.014159467202433,8.775640553689456,5.727683504031447,5.426412678122233,5.717794391708807,9.938266980920673,8.551982199432459,180.90375769174167,180.90375769174167,0.0,201.0041752130463,0.0,180.90375769174167,201.0041752130463,0,0
+2017/06/22 10:00:00,214.72854265108705,0,926.3009213927526,0,0,0,5.931776614537373,0.0,16.932384784220176,0.0,133.89528835348938,0,39.380909295966944,2.8039353789475874e-09,18.588183600069215,0,0,0.0,464.92633872967883,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7190.431707628698,6502.745916948486,0.0,0.0,0.0,369.1369081302736,3713.99138900338,0.0,0.0,0.0,409.3643941011796,2888.8669861887574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04931694717221797,0.0015603538317810442,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8251733806968642,0.8251733806968642,0.5593811310555399,0.5593811310555399,0.7388271413448566,0.7388271413448566,1.185373988102151,1.185373988102151,0.9383735765764221,0.9383735765764221,0.30242739624225873,0.2242338846270971,0.24740147888429945,0.5190998699837198,0.420071829185726,0.2955117522862123,0.17701068574597337,0.21639215840229414,0.5357767249026619,0.42156743056799867,19.362765122285225,19.362765122285225,11.552297262936364,11.552297262936364,16.492046204986508,16.492046204986508,34.535793067515726,34.535793067515726,23.598040733687583,23.598040733687583,6.90069124969709,6.043122372736164,6.270388506563762,10.635287901002755,8.678877132227313,6.8144567275574985,5.649501024296285,5.971297470932143,11.006412819743758,8.705286272306196,214.72854265108705,214.72854265108705,0.0,238.58726961231895,0.0,214.72854265108705,238.58726961231895,0,0
+2017/06/22 11:00:00,248.53654445385106,0,1004.8577950797235,0,0,0,23.70578769100834,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.857552879177474e-09,20.889458688683206,0,0,0.0,490.24768364783364,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2204.989066273733,0.0,1080.4103768555883,6833.088280026498,19656.413407291708,2347.3406474411377,575.5053898607438,1509.2758714205884,1997.087866673981,19847.663028756077,2525.6747684470915,441.4873494649336,1468.3515327351734,2106.513165123104,19767.957940113705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05349937331491235,0.001692682879544381,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9632393122141351,0.9632393122141351,0.7245442664547631,0.7245442664547631,0.8657911284439901,0.8657911284439901,1.1425257685152805,1.1425257685152805,0.9911558329644764,0.9911558329644764,0.4012890258911909,0.32835228264571165,0.3312464565132276,0.5062464423089165,0.4279527609926319,0.41497548905113296,0.30527326775031904,0.32231389841420327,0.525573262250288,0.4350251808909819,24.59769678436072,24.59769678436072,16.047874872772354,16.047874872772354,20.821874010838442,20.821874010838442,32.48812942438751,32.48812942438751,25.748745607578584,25.748745607578584,8.355373641573209,7.241977099525883,7.28184465192345,10.357461767613017,8.819116902264255,8.589606773217042,6.936765107764003,7.1599416105685805,10.777916322894882,8.947238630006552,248.53654445385106,248.53654445385106,0.0,276.1517160598345,0.0,248.53654445385106,276.1517160598345,0,0
+2017/06/22 12:00:00,235.3694412717741,0,955.6519078895084,0,0,0,31.331198438695182,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.8039353789475874e-09,18.526544948087075,0,0,0.0,476.5321489701626,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2870.3176893863606,0.0,1292.7243784691964,5956.016821871815,21705.285736762824,3715.723981846059,898.8399713050751,2607.1222468671826,2131.28665272172,29032.86099549658,4165.349781930703,837.6305383427508,2768.093088036385,2247.845425645742,29196.397331214368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05087961543377661,0.0016097955663071269,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0371295694207283,1.0371295694207283,0.8090957694500814,0.8090957694500814,0.9404100777691213,0.9404100777691213,1.0988262091292502,1.0988262091292502,1.0254289075004175,1.0254289075004175,0.491489830687928,0.42538317969259687,0.41495887814900845,0.5202779029949135,0.4753309335730693,0.5179868471523151,0.42407999475121333,0.42269520376859804,0.5392293582173855,0.48636327129932194,27.70887763806992,27.70887763806992,18.804283578950873,18.804283578950873,23.67899453113651,23.67899453113651,30.460272158771247,30.460272158771247,27.202527233801774,27.202527233801774,10.047304809416403,8.773098912510449,8.589317627530718,10.66110854662817,9.718459634358481,10.610947347374378,8.749868772149043,8.725263789721808,11.084752155851163,9.941755259169312,235.3694412717741,235.3694412717741,0.0,261.5216014130823,0.0,235.3694412717741,261.5216014130823,0,0
+2017/06/22 13:00:00,246.84953157777468,0,902.9128317989304,0,0,0,45.124458220744906,0.0,16.73568395689411,0.0,129.2730206906943,0,39.380909295966944,2.749397317052395e-09,16.335459410724923,0,0,0.0,459.2834253921287,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5065.26892313004,1074.3362695634908,3095.654211715602,5823.322169829519,31287.213120763452,6322.404380082972,2759.0022234372777,4560.770401113401,3543.00114506225,39457.742302873885,6933.611582906274,2826.6243328869227,4855.488045554383,3705.8933504649112,40044.44447716157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04807174795852899,0.0015209565966353765,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0792454210972668,1.0792454210972668,0.9313807804012673,0.9313807804012673,0.9914618637161491,0.9914618637161491,1.0913388155296604,1.0913388155296604,1.061143444641396,1.061143444641396,0.544466084265889,0.5020156621135126,0.4694890129479821,0.5555552003355483,0.5144291237713667,0.5723241821487284,0.5090974821573804,0.4804542179308544,0.5707903371046544,0.5266941795211868,29.572520534159125,29.572520534159125,23.321322648077057,23.321322648077057,25.761530054355816,25.761530054355816,30.11924802757632,30.11924802757632,28.763726088698476,28.763726088698476,11.204557805660087,10.267576383013946,9.602344270452718,11.462177291925599,10.53350342404569,11.86187780912232,10.41847018367875,9.821502400548297,11.824810738273413,10.802797752357819,246.84953157777468,246.84953157777468,0.0,274.2772573086385,0.0,246.84953157777468,274.2772573086385,0,0
+2017/06/22 14:00:00,220.04349994534903,0,855.3378076038579,0,0,0,34.30105664812748,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.693929433407228e-09,14.106202353167703,0,0,0.0,447.1987537096004,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3648.7424312284925,1547.8370444192778,2562.9218652924037,5322.918208456116,26666.847240629824,4191.133606779389,2467.770797344664,2868.732876696551,2342.143439060839,27587.393145273432,4721.843284790789,2639.293926705122,3178.2779309406133,2469.985480263594,28127.745293279906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045538818431245735,0.00144081647198966,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0473236333895948,1.0473236333895948,1.030807961267574,1.030807961267574,0.9900684597251767,0.9900684597251767,1.079554417360656,1.079554417360656,1.0528645100097065,1.0528645100097065,0.5240496720377625,0.5426438441310752,0.46464776107496875,0.5398490027144042,0.5016450983074571,0.5443918955189092,0.5586185067884287,0.4748935618632368,0.5516584681267844,0.5115224635957892,28.154118990895995,28.154118990895995,27.43468123475877,27.43468123475877,25.703349501775946,25.703349501775946,29.586426570690605,29.586426570690605,28.3977076918208,28.3977076918208,10.744183816205208,11.162733854522173,9.507232960493212,11.098866383166012,10.259740388045614,11.202852219899711,11.534282964637015,9.709715378836137,11.371041964872077,10.47063813492484,220.04349994534903,220.04349994534903,0.0,244.49277771705448,0.0,220.04349994534903,244.49277771705448,0,0
+2017/06/22 15:00:00,206.10163006989893,0,865.5737614166244,0,0,0,27.231248168277684,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.693929433407228e-09,14.102173547875793,0,0,0.0,457.4347075223671,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2617.869845839258,2752.5643738308345,2324.829850518406,5047.908231896898,24982.51923256774,2447.4644067306385,2625.9865492053527,1702.247950830491,1499.1965047404526,19544.304193672746,2868.1847074380566,2927.764055702309,2011.5948697281217,1601.3548737207677,19814.988269981546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04608378819407665,0.0014580589354103693,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0106800884890488,1.0106800884890488,1.1090588077781933,1.1090588077781933,0.9810898593005826,0.9810898593005826,1.0735972419710464,1.0735972419710464,1.0436542876757824,1.0436542876757824,0.48867726767283287,0.5761301542377039,0.44710401913262804,0.5164869258246398,0.47764335434924776,0.5030205898975999,0.60017600934679,0.4559743134432228,0.5253343290479643,0.48505332234695603,26.571501024625164,26.571501024625164,30.92941736641069,30.92941736641069,25.330239216890703,25.330239216890703,29.318919665798134,29.318919665798134,27.993418750610502,27.993418750610502,9.989257111611863,11.954294200962366,9.17102351820769,10.578230546699828,9.764828346568876,10.288856598507408,12.552704678170883,9.339358725445024,10.772619663918604,9.91496700371944,206.10163006989893,206.10163006989893,0.0,229.00181118877657,0.0,206.10163006989893,229.00181118877657,0,0
+2017/06/22 16:00:00,232.20351150459047,0,895.1904519106291,0,0,0,30.517377237174628,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.693929433407228e-09,14.033447738688151,0,0,0.0,433.8158692475554,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2849.067867584209,4013.918123164555,3117.5718058322846,5292.532806870741,29092.50256386691,2440.260176080732,3438.9226290382735,2161.170205895093,1533.906851873139,21258.88052306483,2741.389429478673,3804.7339634798877,2445.3468027424965,1587.5030865993858,21414.686173417493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047660602733257555,0.0015079482482996515,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0027865933233056,1.0027865933233056,1.1541471627978497,1.1541471627978497,0.9936160529111051,0.9936160529111051,1.0763419148964648,1.0763419148964648,1.0597067691218587,1.0597067691218587,0.4681811169329831,0.5974155929140965,0.4417767742312725,0.4981703930649853,0.4682421449682106,0.478460233131063,0.6248927626353307,0.45036379335419796,0.5037534459297875,0.4745016825076044,26.237129206250856,26.237129206250856,33.03786860269885,33.03786860269885,25.8516225720481,25.8516225720481,29.442014593657888,29.442014593657888,28.70003341210267,28.70003341210267,9.576549761864541,12.482733380203541,9.071552648365326,10.186552463194218,9.577751725737997,9.7812635405121,13.193964827094945,9.232492184630757,10.304402980840123,9.701887645871551,232.20351150459047,232.20351150459047,0.0,258.00390167176715,0.0,232.20351150459047,258.00390167176715,0,0
+2017/06/22 17:00:00,243.04718549994791,0,948.6848374256231,0,0,0,34.37577119513885,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,2.8039353789475874e-09,18.596919297471683,0,0,0.0,487.3102547625494,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2294.1261554235907,4973.4689097858045,3725.639737951763,5269.9197467652075,28746.778873280826,2616.131979922465,4441.5884203720225,3300.3877488051194,1512.2337231593622,25904.46142703714,2849.1667791572104,4865.116735946836,3649.3476581212585,1513.3825555529154,25999.006504445322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050508683441723816,0.0015980595366395039,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9919899081852941,0.9919899081852941,1.2175983944196496,1.2175983944196496,1.0307247045691366,1.0307247045691366,1.0698204124296689,1.0698204124296689,1.0645889358840437,1.0645889358840437,0.4589902020320571,0.6398582019575012,0.4665004940371887,0.48676992895486165,0.47612924073118046,0.4668013302782852,0.6719366284018753,0.4791276178438946,0.4896826275934597,0.4830675429304918,25.78359754505273,25.78359754505273,36.11189786486585,36.11189786486585,27.43107982719505,27.43107982719505,29.149967388481627,29.149967388481627,28.916776360244484,28.916776360244484,9.39736379044497,13.59511792978833,9.543512496880453,9.950086410795805,9.734441244082689,9.549417317851237,14.48770511889937,9.79471235128291,10.00996722992393,9.874499340513097,243.04718549994791,243.04718549994791,0.0,270.05242833327543,0.0,243.04718549994791,270.05242833327543,0,0
+2017/06/22 18:00:00,234.28434561707985,0,922.7388900890088,0,0,0,41.6181586106307,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.9620632349799918e-09,25.552556445360853,0,0,0.0,496.8546599384792,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2130.40595777982,4711.770159298903,4692.496944295955,5183.174004482279,28056.22090171126,3876.6266406851473,5416.8426530448805,5431.790023185191,2221.135589876509,34737.67069793708,4065.2311468229177,5836.783058668982,5889.681272843857,2199.5134954346177,34804.08588234823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04912730198718632,0.0015543535903202413,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9733689172720438,0.9733689172720438,1.1832270042083979,1.1832270042083979,1.0589385713556614,1.0589385713556614,1.0617129770787512,1.0617129770787512,1.0509006208570104,1.0509006208570104,0.45605544097207923,0.6467398887385528,0.498937335823578,0.4809407265097099,0.485930989761192,0.46340613253087504,0.6777583618843095,0.518477836837091,0.4829732154227975,0.492289040420181,25.011874307051144,25.011874307051144,34.431857822202645,34.431857822202645,28.666006884174664,28.666006884174664,28.78899578503551,28.78899578503551,28.31124407381425,28.31124407381425,9.340913939722185,13.782844190090003,10.202661758163643,9.83134623319421,9.932906980418792,9.48300260131083,14.65447434393235,10.62167813040368,9.872581299183224,10.063861793530151,234.28434561707985,234.28434561707985,0.0,260.31593957453316,0.0,234.28434561707985,260.31593957453316,0,0
+2017/06/22 19:00:00,217.93527084816887,0,927.7909941121522,0,0,0,32.226702980418665,0.0,17.540027511967114,0.0,101.68988858149199,0,39.380909295966944,3.012974610721953e-09,27.0977424753112,0,0,0.0,537.3971164741669,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,317.8303740370653,2955.2535542686383,4117.493491929103,4503.730817026742,20404.056165611324,2085.0519948817036,4206.82775341383,4693.597047573978,963.305797964304,28490.941149294445,2219.6208876586998,4552.993068764026,5251.069389219305,879.6815621484719,28057.14898668728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04939627974750559,0.0015628638591637782,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9446512234550594,0.9446512234550594,1.1395700662130641,1.1395700662130641,1.0650426502930113,1.0650426502930113,1.0361587331884272,1.0361587331884272,1.0330808542203076,1.0330808542203076,0.4380110565185276,0.6280698381560983,0.510953710671018,0.4591789940423669,0.4846793287793057,0.43914849332617517,0.6496035171319133,0.5291242014186163,0.45476005799325814,0.4871784581245874,23.848113925930022,23.848113925930022,32.34899874914447,32.34899874914447,28.93696204725869,28.93696204725869,27.666672761857328,27.666672761857328,27.533097644189112,27.533097644189112,9.00197465854302,13.278314877636078,10.458379883823952,9.401007880302345,9.907332482889103,9.02292649362822,13.861566438140727,10.856924663476477,9.316115304477151,9.958463091329335,217.93527084816887,217.93527084816887,0.0,242.15030094240984,0.0,217.93527084816887,242.15030094240984,0,0
+2017/06/22 20:00:00,210.8776364673891,0,847.8643384741488,0,0,0,17.996119550285922,0.0,24.16704775303734,0.0,106.16168237671882,0,39.380909295966944,2.9102590778267193e-09,23.17187748846983,0,0,0.0,492.9608133487075,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,266.31595661838264,3878.7403019762924,10247.004157910436,0.0,1507.22384458331,1932.4008496213169,0.0,20073.410138176187,0.0,1634.387186009245,2297.407958935157,0.0,19104.15553237379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04514092539913163,0.001428227413807892,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8680171206252985,0.8680171206252985,0.9638421568896861,0.9638421568896861,0.9840958852067258,0.9840958852067258,1.0212836894234052,1.0212836894234052,1.0443679095720446,1.0443679095720446,0.4502450327609391,0.5684016491125925,0.4822774888945488,0.4310501940803936,0.51115590605826,0.448879913628728,0.5707588208686807,0.483445488938528,0.41068705178435244,0.5103806450703698,20.903818778010134,20.903818778010134,24.622233949175452,24.622233949175452,25.454811419006106,25.454811419006106,27.024355389268067,27.024355389268067,28.024633752816797,28.024633752816797,9.230244726328621,11.76728866729573,9.858446359479359,8.874964726599359,10.462736169664552,9.204454401638387,11.82405018348254,9.88218828875469,8.515350500957666,10.446042831052864,210.8776364673891,210.8776364673891,0.0,234.30848496376566,0.0,210.8776364673891,234.30848496376566,0,0
+2017/06/22 21:00:00,198.26729297636834,0,835.7825195141885,0,0,0,4.250397679976136,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9620632349799905e-09,25.55293304526484,0,0,0.0,516.3693469012914,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3165.1420885676494,2030.9899512736524,0.0,0.0,0.0,0.0,5194.560558901854,0.0,0.0,0.0,0.0,3850.413994741338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04449768040861948,0.0014078755906868328,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7617467833602353,0.7617467833602353,0.8218379912242658,0.8218379912242658,0.8970353678619507,0.8970353678619507,1.0010949848788342,1.0010949848788342,1.0383001375958232,1.0383001375958232,0.3409730202044239,0.5149546629989853,0.43292957535906607,0.32058647611999885,0.5089968705805982,0.3271124714362323,0.5019538499460827,0.4324612470282802,0.28227519174460963,0.5040612873702427,17.223094556857774,17.223094556857774,19.246011059254627,19.246011059254627,21.990691071700866,21.990691071700866,26.16577812502227,26.16577812502227,27.759811305312198,27.759811305312198,7.41843440380039,10.54490880451469,8.909051406692257,7.136757796953418,10.416311248905089,7.225007285448399,10.266268881736934,8.900543063761873,6.6550378902195035,10.31094027404282,198.26729297636834,198.26729297636834,0.0,220.2969921959648,0.0,198.26729297636834,220.2969921959648,0,0
+2017/06/22 22:00:00,137.00571777671848,0,635.0896508028891,0,0,0,0.38968716191819774,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8575528791774734e-09,20.863073006620823,0,0,0.0,475.3830644964405,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1542.8166801721568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0338126434238841,0.0010698084685749796,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5582911313846013,0.5582911313846013,0.6017040960679296,0.6017040960679296,0.6881368965249879,0.6881368965249879,0.9473606043461804,0.9473606043461804,0.8305843686422378,0.8305843686422378,0.2245785743400509,0.39366964607333194,0.32054243715867414,0.1980545255957729,0.4401774427797865,0.18774508443343066,0.3594562326147223,0.3010771341618167,0.13563708178258893,0.41745556146904267,11.52655761654104,11.52655761654104,12.591580974196916,12.591580974196916,14.955414499073129,14.955414499073129,23.956525484276852,23.956525484276852,19.553167821526316,19.553167821526316,6.046338629282474,8.228447839540493,7.136168401285772,5.813388448109649,9.041927857487892,5.730788012652155,7.689073255912277,6.883695331782349,5.381147232705317,8.632910042532558,137.00571777671848,137.00571777671848,0.0,152.22857530746498,0.0,137.00571777671848,152.22857530746498,0,0
+2017/06/22 23:00:00,87.4306598468348,0,498.81846658564115,0,0,0,0.07699066981777757,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6375224679274215e-09,11.842688115541232,0,0,0.0,445.5829378168249,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,297.5030873698948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.026557464639183192,0.0008402596691038329,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.37170353850021026,0.37170353850021026,0.4058533141411035,0.4058533141411035,0.49139615871149434,0.49139615871149434,0.8973314754454095,0.8973314754454095,0.599544487252127,0.599544487252127,0.12528925360268525,0.2882559844015209,0.22056289848530053,0.09806805771980528,0.3436694513119907,0.06496091968172657,0.22843810004925175,0.17957176897221314,0.011878158805120567,0.31154640874063505,7.8764140631787285,7.8764140631787285,8.432596465128938,8.432596465128938,10.04536604149321,10.04536604149321,22.001959198663045,22.001959198663045,12.536667620912738,12.536667620912738,5.325171084950853,6.7261534219715315,6.009177822415168,5.199169378340983,7.457011651613726,5.087370998330172,6.082691552557378,5.668458027193353,5.002920665649171,7.0174926891870655,87.4306598468348,87.4306598468348,0.0,97.14517760759422,0.0,87.4306598468348,97.14517760759422,0,0
+2017/06/23 00:00:00,40.49409690266329,0,477.2799472782882,0,0,0,0.50841023407221,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.6426520650387212,2.5801671605283107e-09,9.545713604549006,0,0,0.0,424.044418509472,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,261.5439821415522,1440.8308473316765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025410737917534877,0.0008039780349653427,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5844697238966118,0.5844697238966118,0.6498167223268988,0.6498167223268988,0.6857648978760542,0.6857648978760542,0.882143970590906,0.882143970590906,0.7958607086113914,0.7958607086113914,0.3372299487602554,0.5562900661131748,0.4064366499153898,0.34251536322295234,0.5918748617012864,0.2513879122701862,0.47233208789454567,0.3422261496013864,0.2298110701028999,0.5389656278575369,12.158992514976902,12.158992514976902,13.867441750982849,13.867441750982849,14.886224442328455,14.886224442328455,21.428624856987597,21.428624856987597,18.352725622772155,18.352725622772155,7.365395097311634,11.479437842139689,8.442530143129346,7.440462548848103,12.343284490946033,6.311767029390609,9.658670112688071,7.4363242249388435,6.095774213001334,11.078749967255987,40.49409690266329,40.49409690266329,0.0,44.99344100295921,0.0,40.49409690266329,44.99344100295921,0,0
+2017/06/23 01:00:00,23.722182197149085,0,37.330493298427456,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250867734712908,0,0,0.0,1.840140785883326,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0019875031141535337,6.288321312786465e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6147856328515401,0.6147856328515401,0.7009759958045869,0.7009759958045869,0.6868472014192386,0.6868472014192386,0.8571029429470794,0.8571029429470794,0.9108360067137128,0.9108360067137128,0.3472783180772738,0.5905606891596181,0.4046174798017681,0.3644666513193985,0.6900959846032526,0.2790676086044704,0.5333944679127931,0.35600760329657966,0.2731132968412584,0.6189129873942513,12.928537749311559,12.928537749311559,15.334144222371776,15.334144222371776,14.917764542805884,14.917764542805884,20.50399911677026,20.50399911677026,22.5196456324568,22.5196456324568,7.509126460683007,12.310404934680676,8.411599452662244,7.764942593506888,15.01274354164768,6.617519414776993,10.952661090772963,7.637474126372268,6.549023224299148,13.036392223044643,23.722182197149085,23.722182197149085,0.0,26.35798021905454,0.0,23.722182197149085,26.35798021905454,0,0
+2017/06/23 02:00:00,28.344491024821558,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251279383486617,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6353671920860408,0.6353671920860408,0.7259570001969912,0.7259570001969912,0.696841397009934,0.696841397009934,0.8430523207811793,0.8430523207811793,0.9835512992833271,0.9835512992833271,0.3455391073857311,0.5899256377701587,0.39799235101694985,0.36778867940298093,0.7238608788356968,0.2776242199500115,0.5363140109662871,0.34824453765961666,0.2785038961723027,0.6381726554401407,13.47371473406723,13.47371473406723,16.091417492583346,16.091417492583346,15.211403944962058,15.211403944962058,19.996557871583207,19.996557871583207,25.432217544424233,25.432217544424233,7.483941809911059,12.294543312358172,8.300151934181855,7.815835411555028,16.026842633932276,6.600777948873102,11.01856977182183,7.5231733779509256,6.610970614222865,13.54945085204102,28.344491024821558,28.344491024821558,0.0,31.493878916468397,0.0,28.344491024821558,31.493878916468397,0,0
+2017/06/23 03:00:00,23.743780613627393,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5466851899496005,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6276962946345047,0.6276962946345047,0.7187781609969058,0.7187781609969058,0.6858336280891313,0.6858336280891313,0.8049662764684828,0.8049662764684828,0.9957651276586307,0.9957651276586307,0.34371204992262505,0.5876525714296286,0.39238019065361174,0.3682042978814828,0.7509078545399313,0.27276904490443704,0.5314526218526441,0.3387022416853105,0.27655051608411796,0.6490401692879858,13.268374731295324,13.268374731295324,15.87104536409241,15.87104536409241,14.888225847546494,14.888225847546494,18.662597467092382,18.662597467092382,25.94167752188362,25.94167752188362,7.45762357966089,12.2379125724311,8.207213338851403,7.822235706169451,16.874570429208987,6.545108779329382,10.909028343953963,7.386186480300623,6.588381336000836,13.846051698483862,23.743780613627393,23.743780613627393,0.0,26.38197845958599,0.0,23.743780613627393,26.38197845958599,0,0
+2017/06/23 04:00:00,44.704794185295704,0,88.72588128136032,0,0,0,0.0034770940618238477,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,4.637097115875362,0.0,0.5560864257243848,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.308093371701029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6806377820465334,0.6806377820465334,0.7690546664139676,0.7690546664139676,0.7363467353913064,0.7363467353913064,0.843275770144823,0.843275770144823,0.9450624217970375,0.9450624217970375,0.34396684993184806,0.4589402096402475,0.3706776624441395,0.35957845571199903,0.5209462849454096,0.26576071921466254,0.4217487391799206,0.3298213004354634,0.269802369847336,0.4827604854529622,14.737500207658897,14.737500207658897,17.460912377765823,17.460912377765823,16.414281212157434,16.414281212157434,20.00456348829772,20.00456348829772,23.86454869249677,23.86454869249677,7.4612853860766535,9.396399087266772,7.86047644843822,7.690911274450201,10.675785138430939,6.466503540401803,8.708494316134363,7.262168562645712,6.511582050849739,9.868257089303555,44.704794185295704,44.704794185295704,0.0,49.671993539217446,0.0,44.704794185295704,49.671993539217446,0,0
+2017/06/23 05:00:00,75.5778916088245,0,212.9421150752648,0,0,0,0.20778920537929457,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.0591846675098715,0.0,0.524874705979462,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.59686649210115,113.56819057318462,80.739954027322,582.185283637488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8839734636588589,0.8839734636588589,0.9187202079541527,0.9187202079541527,0.9078655909612094,0.9078655909612094,0.9534545487455311,0.9534545487455311,0.9800443958721653,0.9800443958721653,0.39557352377059696,0.5852652406395428,0.43431745748398587,0.414611891936406,0.7269243383519418,0.3157866888869449,0.5208304411798409,0.3780704067721488,0.3182718652588392,0.66512047990221,21.49718933279955,21.49718933279955,22.825289954085477,22.825289954085477,22.405143029372127,22.405143029372127,24.20142337819334,24.20142337819334,25.286995893721695,25.286995893721695,8.259930488529278,12.17867648329397,8.934321031826983,8.583280347872773,16.121281857677516,7.073003431054474,10.673240010814794,7.976331022412737,7.105891546063461,14.294314436947303,75.5778916088245,75.5778916088245,0.0,83.97543512091612,0.0,75.5778916088245,83.97543512091612,0,0
+2017/06/23 06:00:00,86.5795126721224,0,639.2383695545345,0,0,0,0.7753929224818624,0.0,8.583882674576978,0.0,73.80580873715317,0,2.8894135902007885,2.5218793123834014e-09,0.5250147451877276,0,0,0.0,408.55107822299766,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3224.382896135118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03403352428320534,0.001076796984997244,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9817110691919402,0.9817110691919402,0.9793665558574953,0.9793665558574953,0.9865078220161471,0.9865078220161471,1.129685805881171,1.129685805881171,0.9822756537886757,0.9822756537886757,0.4716998498412834,0.679163398869465,0.5319735654701647,0.7923519559779916,0.936407241844133,0.40339847169930804,0.6243041227010001,0.48371916918953345,0.761787747514593,0.8511043848612017,25.35595415987426,25.35595415987426,25.258981031526005,25.258981031526005,25.555015229776117,25.555015229776117,31.88577440911844,31.88577440911844,25.379337992090754,25.379337992090754,9.646114345077507,14.694942693172422,10.920717775750333,18.234256220267824,23.520032483889537,8.390952367575224,13.178384768658248,9.887759898152225,17.22442128225829,20.286355666459855,86.5795126721224,86.5795126721224,0.0,96.19945852458045,0.0,86.5795126721224,96.19945852458045,0,0
+2017/06/23 07:00:00,145.48574188291357,0,784.3987393960824,0,0,0,1.7398266203045294,0.0,7.959608335355814,0.0,69.33401494192633,0,39.380909295966944,1.3754418891710492e-05,27.07136893494109,0,0,0.008028219909277485,518.2130673320922,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5053.253556784926,0.0,0.21963290824090165,0.0,0.0661285330800127,0.0,1276.1751169474953,0.0,0.004804488752496288,0.0587633213097974,0.0,489.85363455757107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.041761969894823024,0.0013213196169778463,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5066092790939936,0.5066092790939936,0.5390916473852221,0.5390916473852221,0.3847427976412697,0.3847427976412697,1.1797270032062306,1.1797270032062306,0.6163870339066777,0.6163870339066777,0.19784745157532457,0.26107224221988706,0.2107681811636705,0.3867974506145834,0.38698429005850243,0.1509170035352544,0.2633272515296215,0.1818324536320049,0.41360021348730325,0.34428424875063257,10.365206470098641,10.365206470098641,11.081617645556548,11.081617645556548,8.082899018192634,8.082899018192634,34.26271806681832,34.26271806681832,12.970297185850441,12.970297185850441,5.811685624857958,6.415072443453653,5.921371903208936,8.116097701591173,8.119125561371277,5.471949572250352,6.439693667427306,5.685419010946461,8.565707411666196,7.465850677869952,145.48574188291357,145.48574188291357,0.0,161.6508243143484,0.0,145.48574188291357,161.6508243143484,0,0
+2017/06/23 08:00:00,161.26290456389228,0,835.5974403818431,0,0,0,1.5644174825507238,0.0,11.505338207220207,0.0,83.2008179303116,0,39.380909295966944,2.962093832057783e-09,25.611421644880735,0,0,0.0,516.1842677689459,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6807.745989014796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04448782665852407,0.0014075638249024447,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.29566299169106586,0.29566299169106586,0.23672839711044574,0.23672839711044574,0.38284329575750703,0.38284329575750703,1.218552921436726,1.218552921436726,0.6010964099422488,0.6010964099422488,0.09943297340724094,0.11824810673268148,0.0816399052445251,0.42698465738713487,0.3186580126145566,-0.011518124461603042,0.07516926981195486,0.07553075044366771,0.4273152894502017,0.2789542700101658,6.8163209848524104,6.8163209848524104,6.162890520841998,6.162890520841998,8.05236762198922,8.05236762198922,36.1590341885015,36.1590341885015,12.576108597813942,12.576108597813942,5.204754507966896,5.289627500931175,5.13801152495779,8.80174611196827,7.111025196485841,5.002746293557465,5.1169960987325,5.11812433384479,8.807674157251668,6.6162016531654615,161.26290456389228,161.26290456389228,0.0,179.1810050709914,0.0,161.26290456389228,179.1810050709914,0,0
+2017/06/23 09:00:00,179.52389494816558,0,862.6569625167256,0,0,0,1.6810761921136848,0.0,11.323895916778682,0.0,106.27511244621549,0,39.380909295966944,2.8575830060167018e-09,20.86290109423323,0,0,0.0,490.0082611350123,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7383.765110732909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045928495660153654,0.001453145587884871,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4609439494571947,0.4609439494571947,0.2876026636342531,0.2876026636342531,0.4735272362327471,0.4735272362327471,1.2245835863324492,1.2245835863324492,0.7153765153286723,0.7153765153286723,0.12232546634053681,0.11208164169888303,0.10360597799481713,0.5199708721508299,0.35863873424988,0.06498350240866858,0.054084177446736825,0.08972342166706576,0.5424914433925618,0.3244116614057934,9.435149533827442,9.435149533827442,6.718311557602362,6.718311557602362,9.682451926596286,9.682451926596286,36.45742188569429,36.45742188569429,15.767398281437963,15.767398281437963,5.309958804156224,5.260191493696183,5.222309784942269,10.654373123458711,7.676795885547747,5.087431766893673,5.060558940582325,5.166705073819301,11.159242481671683,7.188265860349034,179.52389494816558,179.52389494816558,0.0,199.47099438685063,0.0,179.52389494816558,199.47099438685063,0,0
+2017/06/23 10:00:00,210.92503879688317,0,926.0468781452372,0,0,0,2.052759178177948,0.0,16.986528298665572,0.0,133.89528835348938,0,39.380909295966944,2.803965239010902e-09,18.609553667779302,0,0,0.0,464.67229548216346,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7391.402294781187,642.9769559875384,0.0,0.0,0.0,248.94599659849843,0.0,0.0,0.0,0.0,398.367628914889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04930342172154872,0.0015599258959498859,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7030784555375477,0.7030784555375477,0.42325841432533007,0.42325841432533007,0.6246509036298558,0.6246509036298558,1.205723358095655,1.205723358095655,0.9017831179625422,0.9017831179625422,0.20947847957799487,0.13579565805362437,0.1247570431606718,0.556243530717199,0.36770514142854205,0.1813873273204155,0.08060178185849834,0.11671554703869842,0.5801001215905337,0.3480517398128262,15.396841172554602,15.396841172554602,8.735260997238171,8.735260997238171,13.18756150931597,13.18756150931597,35.52762116979072,35.52762116979072,22.171792417168717,22.171792417168717,5.910109548251754,5.382039691460747,5.322412501897119,11.478344122896587,7.814549861609308,5.6820625420696445,5.134522954051803,5.2821642014265535,12.051362397595284,7.5203673093035235,210.92503879688317,210.92503879688317,0.0,234.36115421875908,0.0,210.92503879688317,234.36115421875908,0,0
+2017/06/23 11:00:00,237.31652682727199,0,1004.6350551541985,0,0,0,12.502842346261493,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.857583006016702e-09,20.87238640685089,0,0,0.0,490.0249437223087,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115.44713772378114,0.0,0.0,6860.387318668541,11534.444291242331,161.55658300514838,0.0,0.0,1208.1203407988062,11103.44797605514,234.13840952499638,0.0,0.0,1399.0494577979034,10304.724299238882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05348751447629246,0.0016923076741567399,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9210628729401974,0.9210628729401974,0.5726624632280995,0.5726624632280995,0.7951429618871275,0.7951429618871275,1.1565874827551188,1.1565874827551188,1.0038090841411467,1.0038090841411467,0.37672343867603447,0.25245351642437197,0.2667449963358176,0.5586954278071371,0.4256455702431418,0.3781720046060371,0.2137791761415588,0.27436950623452466,0.5822846102194176,0.4222269368011268,22.916589483614544,22.916589483614544,11.870066484540516,11.870066484540516,18.32844919606437,18.32844919606437,33.15384703651718,33.15384703651718,26.28030979563613,26.28030979563613,7.955048465304529,6.32294098172855,6.477418292462886,11.536098807779652,8.77778501110815,7.977939442983839,5.947936581638842,6.563349789782748,12.105066193878585,8.71696222663114,237.31652682727199,237.31652682727199,0.0,263.68502980808,0.0,237.31652682727199,263.68502980808,0,0
+2017/06/23 12:00:00,225.7673408761288,0,943.7688251167891,0,0,0,21.51205211808541,0.0,16.798297433460366,0.0,129.49988082968767,0,39.380909295966944,2.803965239010903e-09,18.576201196124394,0,0,0.0,464.64906619744323,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1192.6855234359716,0.0,9.072184764190194,6017.867291048393,14938.735661166811,2015.0841707374157,38.17897283563047,999.5852887368098,1619.4660282427835,20961.29831089119,2325.870576016945,6.375781820254454,1262.1691965276116,1750.7842539308167,20846.724962241933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05024695130507841,0.0015897785142783922,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0075572591630897,1.0075572591630897,0.6432183364905868,0.6432183364905868,0.8816059806332167,0.8816059806332167,1.1059298809920872,1.1059298809920872,1.0156098248835437,1.0156098248835437,0.4650714969946054,0.35733193604445745,0.35743075524195733,0.5401708831822662,0.4611176845508699,0.48951534858500984,0.34229539315394497,0.3763498354278905,0.5607336849982375,0.4704206600426979,26.43893586168035,26.43893586168035,13.686522831090045,13.686522831090045,21.40848854800109,21.40848854800109,30.78558608959311,30.78558608959311,26.781515303736782,26.781515303736782,9.515517358542624,7.6572291960481635,7.658706275022325,11.106204723220173,9.438517552255874,10.006518305313193,7.437314699232516,7.949159119947225,11.58430859134323,9.620763305133153,225.7673408761288,225.7673408761288,0.0,250.85260097347643,0.0,225.7673408761288,250.85260097347643,0,0
+2017/06/23 13:00:00,228.16418956177418,0,904.6014913925068,0,0,0,26.3672725947501,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,2.7494268886970835e-09,16.344689627459786,0,0,0.0,460.9720849857051,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2060.091124059821,0.0,692.9096174477131,5572.263878945223,18806.349252574557,2994.655803036334,674.2192748973193,1577.4138409376878,1964.3492487282274,24218.608161778997,3496.763956373553,708.6246022135522,2018.4687771910685,2106.578801907825,24390.083643456182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04816165344609241,0.0015238011435925887,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.005456028520952,1.005456028520952,0.7536858492020583,0.7536858492020583,0.9120481044740226,0.9120481044740226,1.0883293367178264,1.0883293367178264,1.014568014450279,1.014568014450279,0.47607893363194204,0.41484254502663354,0.38477796712265044,0.5257969341759154,0.46292709874545757,0.5004575250848683,0.41555632961239314,0.40458297208155664,0.5432453716226774,0.47298687078731055,26.349944627906325,26.349944627906325,16.963417370676197,16.963417370676197,22.566471594209176,22.566471594209176,29.982719651269647,29.982719651269647,26.73705670779364,26.73705670779364,9.73343331609317,8.587292950274033,8.08346576309323,10.782876910266182,9.473672017270019,10.234667778560237,8.599724890920001,8.41101409953815,11.176524169484935,9.671691767990154,228.16418956177418,228.16418956177418,0.0,253.51576617974908,0.0,228.16418956177418,253.51576617974908,0,0
+2017/06/23 14:00:00,205.6907298235044,0,865.3041543119131,0,0,0,20.177769728192583,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.69395869458686e-09,14.044108744878141,0,0,0.0,457.1651004176556,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1548.1008978171758,45.98109822731857,768.1269961020375,5101.474853233469,17348.533232636255,1904.8935756948674,884.3829241880399,720.0972677519325,1358.0072406776183,16656.22222649553,2361.614671744116,1019.0531935741308,1163.424723051979,1472.6787907803136,16783.071725961585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04606943411212205,0.001457604782262946,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9762070055063052,0.9762070055063052,0.9067849353814192,0.9067849353814192,0.9136337577885099,0.9136337577885099,1.0733464164336763,1.0733464164336763,0.9975843413162898,0.9975843413162898,0.45775749808870186,0.4656142836712653,0.3818788049472774,0.5036840079469551,0.44159270230419256,0.4796729900338506,0.4809599519071376,0.4010708432232072,0.5196140845683406,0.44919942356290943,25.128632067848798,25.128632067848798,22.363574805113416,22.363574805113416,22.627818342207192,22.627818342207192,29.307683679602917,29.307683679602917,26.01804736235735,26.01804736235735,9.373607686389391,9.526140600388317,8.036923978402797,10.302928968242469,9.068137443022636,9.805716690148458,9.831735442427544,8.351704554586803,10.646551296998709,9.210483513941853,205.6907298235044,205.6907298235044,0.0,228.54525535944933,0.0,205.6907298235044,228.54525535944933,0,0
+2017/06/23 15:00:00,190.507330978957,0,845.8720493810649,0,0,0,11.652357164901774,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.69395869458686e-09,14.086765460309667,0,0,0.0,437.73299548680745,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,474.6813665864347,1069.2919931573567,431.58519316722754,4873.218263381089,14576.506132226488,0.0,1012.1379621852019,0.0,266.6319300995527,7330.416811383295,356.01863251559166,1304.8206333322669,0.0,327.89368571907477,7661.719768595775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04503485445211402,0.001424871402981804,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9657235213667968,0.9657235213667968,1.0625413818875296,1.0625413818875296,0.9336739497340864,0.9336739497340864,1.0690353813463196,1.0690353813463196,1.0099142371381202,1.0099142371381202,0.4471495769413128,0.5436915481412127,0.36494681497160225,0.5029883681715824,0.4396145412444068,0.4657843988817104,0.5740527468949712,0.4028878223425258,0.5156392818178731,0.4485252552000834,24.698900998586765,24.698900998586765,28.82577209471623,28.82577209471623,23.411853076607926,23.411853076607926,29.11491310554551,29.11491310554551,26.538956426870982,26.538956426870982,9.17187944039766,11.18676311474519,7.772269533648668,10.288173598273175,9.031527252890356,9.52947265153459,11.903772821517038,8.38232208918923,10.559784488916591,9.197767183599069,190.507330978957,190.507330978957,0.0,211.6748121988411,0.0,190.507330978957,211.6748121988411,0,0
+2017/06/23 16:00:00,221.88978965758028,0,914.2655357401597,0,0,0,20.128943086139977,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.69395869458686e-09,14.108160042712685,0,0,0.0,452.89095307708595,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1315.2586682215274,3165.1660017891436,1790.0030250754978,5220.798637132699,22009.762856829286,728.839393030086,2505.9603111334836,598.8851126725727,789.3132845328522,12774.470157154517,1029.9626438280336,2926.547243899553,949.7353949453582,831.6240418907632,13170.898070426605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04867617432538353,0.0015400802255627216,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9791368687563969,0.9791368687563969,1.1433830866324093,1.1433830866324093,0.969945227762375,0.969945227762375,1.0758585937009761,1.0758585937009761,1.0445236653529588,1.0445236653529588,0.446681861494347,0.5904831860378449,0.3925911829136689,0.502713940035782,0.4492160490619463,0.46155513835537476,0.625288661593902,0.42288685343483123,0.5123224606245842,0.4578838576343388,25.249492173814318,25.249492173814318,32.52853741322757,32.52853741322757,24.871440658682246,24.871440658682246,29.420319091156415,29.420319091156415,28.03144923021192,28.03144923021192,9.16309643197333,12.308468208415405,8.210683054728648,10.282358395096395,9.210797355203425,9.447003763161163,13.20445189452333,8.72866411900253,10.487904035747889,9.376039820299738,221.88978965758028,221.88978965758028,0.0,246.54421073064475,0.0,221.88978965758028,246.54421073064475,0,0
+2017/06/23 17:00:00,247.0872361984881,0,926.0264141598662,0,0,0,38.53006748083584,0.0,16.7356839618177,0.0,133.89528835348938,0,39.380909295966944,2.803965239010903e-09,18.545287103574214,0,0,0.0,464.65183149679257,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2977.403964801374,4714.367007136277,4122.973758050116,5614.252932193049,31365.10297683338,3513.277737198195,4839.288023647688,3779.2572384823434,2567.200867879275,28747.799213167902,3760.9020167384992,5302.044783058911,4216.597766626914,2602.569763166295,29200.72406684629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04930233220380976,0.0015598914243680816,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.990483246038983,0.990483246038983,1.1664425701550687,1.1664425701550687,1.020045086743742,1.020045086743742,1.0798136430562055,1.0798136430562055,1.0622875466868276,1.0622875466868276,0.45909566910194666,0.6246239865134703,0.443276645999308,0.5122625706345959,0.4707614516307092,0.47180977051505024,0.6601943400318604,0.4717988924114899,0.5194238169657805,0.47884632424588824,25.72066083890951,25.72066083890951,33.624105431505825,33.624105431505825,26.971241073297932,26.971241073297932,29.59809531056152,29.59809531056152,28.81450070206175,28.81450070206175,9.399399341434815,13.1868490244224,9.099435017138475,10.486610504142618,9.62751023570307,9.648296048716006,14.155800469507184,9.648080117082657,10.642382327172228,9.789041517798836,247.0872361984881,247.0872361984881,0.0,274.5413735538757,0.0,247.0872361984881,274.5413735538757,0,0
+2017/06/23 18:00:00,235.9705700304169,0,942.0564834551681,0,0,0,43.05621669488402,0.0,16.932384527434575,0.0,110.93442390708215,0,39.380909295966944,2.9620938320577867e-09,25.666635602087077,0,0,0.0,516.1722533046385,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2111.7286504459285,4450.482170086573,4561.19328749516,5445.222438770854,29222.74475474574,4038.07477946456,5538.364874680949,5329.390319400893,2720.5948316837917,35983.79177320399,4244.928746666584,6002.077454302023,5966.8114972537505,2704.4395020438583,36178.185130797974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05015578496667082,0.0015868940748793561,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9823426912624414,0.9823426912624414,1.179341310585701,1.179341310585701,1.0626445945724854,1.0626445945724854,1.0721911746971031,1.0721911746971031,1.0645596620818671,1.0645596620818671,0.4678313332416739,0.6520302872763111,0.49277759201041016,0.5166708255632746,0.4969279900133684,0.4769691269943867,0.6849737535477619,0.5220112702971654,0.519937910735093,0.5035841142365142,25.382115349385614,25.382115349385614,34.24410167317883,34.24410167317883,28.830355845915236,28.830355845915236,29.255962041628607,29.255962041628607,28.915474224443557,28.915474224443557,9.569663772273884,13.928557572674137,10.073996551934187,10.582236595760648,10.16051026162937,9.751284908355146,14.863201240220704,10.699210446975172,10.653650281958889,10.300808814434262,235.9705700304169,235.9705700304169,0.0,262.1895222560188,0.0,235.9705700304169,262.1895222560188,0,0
+2017/06/23 19:00:00,215.07195288624854,0,908.5783640956113,0,0,0,29.30077154193204,0.0,17.602640988533366,0.0,101.68988858149199,0,39.380909295966944,3.0130054120698434e-09,27.0977424753112,0,0,0.0,518.1844864576259,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,1538.2011624363256,2742.5490769945677,4834.071387557347,18949.868009141803,1605.8215417325987,3472.0392628152613,3596.654629366758,942.1133782585463,27072.95366986529,1675.6788956235544,3757.752881221091,4223.997697687029,773.1672343308916,26921.874482866315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04837338509450182,0.0015305001853591288,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9686944228481724,0.9686944228481724,1.102330845128932,1.102330845128932,1.0458420436878955,1.0458420436878955,1.0543181741708922,1.0543181741708922,1.0645764282459322,1.0645764282459322,0.4726540902342024,0.6204944521882236,0.5022998402478258,0.5159889908133484,0.5128663797468627,0.4756503164962247,0.6380618654676965,0.5230968587639833,0.5129150356706687,0.5155729166026812,24.82024840386252,24.82024840386252,30.62055361567836,30.62055361567836,28.089173424769797,28.089173424769797,28.46179727656086,28.46179727656086,28.91622000092991,28.91622000092991,9.66507145752091,13.077914362950253,10.27358967486073,10.567390936337532,10.499658953949691,9.724850182633602,13.546453498039398,10.72313946009217,10.500711105872298,10.558341590241099,215.07195288624854,215.07195288624854,0.0,238.96883654027616,0.0,215.07195288624854,238.96883654027616,0,0
+2017/06/23 20:00:00,204.67279330318988,0,854.4711291587354,0,0,0,14.243413910800573,0.0,21.723888552416483,0.0,106.16168237671882,0,39.380909295966944,2.9102894502028674e-09,23.162899164376782,0,0,0.0,499.56760403329406,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4179.3776096371075,7298.516374641674,0.0,620.2995534583392,1034.2235536726776,0.0,16528.658347436787,0.0,892.8193425144847,1464.3211695683908,0.0,15858.878542826804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04549267582887291,0.0014393565522146307,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8459365827715746,0.8459365827715746,0.9029325093365473,0.9029325093365473,0.952762909737495,0.952762909737495,1.03593877227876,1.03593877227876,1.0552569547284516,1.0552569547284516,0.4305969375030328,0.5546940565529814,0.4813916240524701,0.4525781777381984,0.5185081353634717,0.42618415097843027,0.5756460741599597,0.4907310270976984,0.4278739905671915,0.5169963753031547,20.100053533983285,20.100053533983285,22.21577322975463,22.21577322975463,24.173554837295086,24.173554837295086,27.657115266755298,27.657115266755298,28.50322691776782,28.50322691776782,8.866766625834785,11.44198051489326,9.840478642985047,9.27450893894975,10.62234065895096,8.787412914048687,11.94250491369462,10.031610431949247,8.81770201262556,10.589331918527918,204.67279330318988,204.67279330318988,0.0,227.41421478132207,0.0,204.67279330318988,227.41421478132207,0,0
+2017/06/23 21:00:00,195.02166004249523,0,828.9995640617299,0,0,0,0.9453134117012313,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9620938320577863e-09,25.61238437966662,0,0,0.0,509.58639144883267,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3380.944910459173,0.0,0.0,0.0,0.0,0.0,379.84374286560404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04413655083615026,0.0013964497027419839,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7140628465713543,0.7140628465713543,0.742773863511361,0.742773863511361,0.8388635272284133,0.8388635272284133,1.0118947795599587,1.0118947795599587,1.0219178001482505,1.0219178001482505,0.29916151776773114,0.44906337385041856,0.36992816706451165,0.3177836188279473,0.5040259945566241,0.27930718754179457,0.4435880211819242,0.37987232208554383,0.27231442324335975,0.492380226191411,15.727504630503617,15.727504630503617,16.61632708511341,16.61632708511341,19.846869740872364,19.846869740872364,26.623164102464514,26.623164102464514,27.051569703277906,27.051569703277906,6.859715488745451,9.20791573618618,7.848860944199686,7.099409579744261,10.310190591134784,6.62030672659732,9.105235551559105,8.00492296901723,6.539946987207941,10.065752614372087,195.02166004249523,195.02166004249523,0.0,216.69073338055026,0.0,195.02166004249523,216.69073338055026,0,0
+2017/06/23 22:00:00,137.0643234493477,0,649.7335166013985,0,0,0,0.44020904607681033,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.857583006016702e-09,20.871156795091373,0,0,0.0,490.02693029494986,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1748.9322796280576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03459229368580576,0.0010944760594011182,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.49873152280175714,0.49873152280175714,0.5126020844311919,0.5126020844311919,0.6193626020414592,0.6193626020414592,0.9527532457394637,0.9527532457394637,0.7831813440470009,0.7831813440470009,0.1695527326016196,0.3141649325830251,0.2439149258035855,0.18419338219707404,0.39265606971550876,0.1247700298230145,0.28166703985921016,0.2332566233449842,0.11227327708931154,0.3684263764719378,10.198336251374641,10.198336251374641,10.493945532623101,10.493945532623101,13.048186035987271,13.048186035987271,24.173165574507948,24.173165574507948,17.92708677133588,17.92708677133588,5.595856685776596,7.051682632347479,6.23474614489659,5.703359871771752,8.211750484839058,5.322479674937313,6.647891113192344,6.128954188465258,5.261082493608313,7.825658611727803,137.0643234493477,137.0643234493477,0.0,152.29369272149745,0.0,137.0643234493477,152.29369272149745,0,0
+2017/06/23 23:00:00,87.37866097721381,0,481.97012440487777,0,0,0,0.06642998648091542,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.1316081341732743e-06,11.801247800286468,0,0,0.0,428.73459563606156,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,256.12718612379757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025660446421799977,0.0008118786379791047,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.2443986904088593,0.2443986904088593,0.24600122514818676,0.24600122514818676,0.36254951345943,0.36254951345943,0.8940551238460309,0.8940551238460309,0.486200438280174,0.486200438280174,0.12424059518651795,0.13081119966732405,0.07350986141333576,0.08155882728379024,0.21613846148511948,0.09075680536651172,0.15187370069536593,0.03752050089639968,0.058629270985875094,0.18271977829079927,6.239661061151736,6.239661061151736,6.256012608360194,6.256012608360194,7.735786395041501,7.735786395041501,21.877479149523566,21.877479149523566,9.938421317912088,9.938421317912088,5.319746876675495,5.3544877165503095,5.1118863593618045,5.13773745671412,5.969016805178313,5.170568632709049,5.477958180803952,5.029143756952962,5.071166688402741,5.69213455316104,87.37866097721381,87.37866097721381,0.0,97.08740108579312,0.0,87.37866097721381,97.08740108579312,0,0
+2017/06/24 00:00:00,41.0711647396441,0,476.96563123085997,0,0,0,0.2523439282369321,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.08306978284462527,2.5801957330236475e-09,9.550116961182285,0,0,0.0,423.73010246204376,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,555.1769720019412,349.6997315235928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02539400349835381,0.0008034485696073062,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4967010024908915,0.4967010024908915,0.5308177229431614,0.5308177229431614,0.5866153007061744,0.5866153007061744,0.8808118515368241,0.8808118515368241,0.7384024405001887,0.7384024405001887,0.2890517300319596,0.4538043922040213,0.3101175251528322,0.3254770152960137,0.4939018159263445,0.2843031558078787,0.35901846135478555,0.23723532497311858,0.29907351732593407,0.44495814558910435,10.155759545786594,10.155759545786594,10.894797763507512,10.894797763507512,12.212144714393972,12.212144714393972,21.37878695717491,21.37878695717491,16.478712362440632,16.478712362440632,6.735729165230964,9.29786646026362,6.998958246642616,7.202721835622739,10.097357165924734,6.678982555193301,7.682495171912848,6.167888030493998,6.858617619037702,9.130808794765798,41.0711647396441,41.0711647396441,0.0,45.63462748849344,0.0,41.0711647396441,45.63462748849344,0,0
+2017/06/24 01:00:00,23.722209773601804,0,47.45449577474211,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251143499240128,0,0,0.0,11.964143262197972,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0025265125049086534,7.993709453081792e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5447098936216295,0.5447098936216295,0.6002650090525489,0.6002650090525489,0.6074308498214475,0.6074308498214475,0.8695300973527654,0.8695300973527654,0.8580959869994272,0.8580959869994272,0.30991101627775725,0.5126173992873674,0.32311606039245466,0.3756068509147076,0.6200762046084589,0.2690708814749378,0.4312036193344013,0.25910174507608563,0.30708492213049193,0.5530954484970328,11.210164618190205,11.210164618190205,12.554966154377851,12.554966154377851,12.738177815048232,12.738177815048232,20.95963227803979,20.95963227803979,20.540173422078254,20.540173422078254,6.9962867110498905,10.49427652006979,7.170750468738888,7.937464680355248,13.06692250984321,6.503372406775725,8.877741743761291,6.3937328751889595,6.959907845916163,11.404572909961189,23.722209773601804,23.722209773601804,0.0,26.35801085955756,0.0,23.722209773601804,26.35801085955756,0,0
+2017/06/24 02:00:00,28.396917383392033,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5775542969191373,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5613299348982094,0.5613299348982094,0.6208927972977156,0.6208927972977156,0.6179333512508616,0.6179333512508616,0.8502349977653839,0.8502349977653839,0.916210023362104,0.916210023362104,0.3032140450442952,0.5050922130657994,0.3141712401777184,0.3730394281020785,0.6511970991871702,0.2484489139342389,0.42303345947528764,0.24442876843396152,0.2980323701927117,0.5749728720110069,11.598445424043632,11.598445424043632,13.088390222377356,13.088390222377356,13.010725830609573,13.010725830609573,20.254936040588447,20.254936040588447,22.7277066761839,22.7277066761839,6.9106284400095035,10.33286274852631,7.051765340846842,7.897235197759201,13.905528587703685,6.281196013685246,8.73126632879557,6.239966970314029,6.845653396085012,11.926126647888665,28.396917383392033,28.396917383392033,0.0,31.552130425991148,0.0,28.396917383392033,31.552130425991148,0,0
+2017/06/24 03:00:00,23.72191322621112,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248178025333311,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5521681789630072,0.5521681789630072,0.6128302555073252,0.6128302555073252,0.6021901130139683,0.6021901130139683,0.8125667366405783,0.8125667366405783,0.9334595047735662,0.9334595047735662,0.29262516329135513,0.4975294473246705,0.3020489531755749,0.3659912756826044,0.6807328481397255,0.22512403682176468,0.40786600968535053,0.2243312747021175,0.279750113536748,0.5926597262012825,11.382925470678458,11.382925470678458,12.877698653811365,12.877698653811365,12.603967050789407,12.603967050789407,18.923931828229755,18.923931828229755,23.40337826858226,23.40337826858226,6.779060342859708,10.173109173613355,6.895919963412169,7.788241151929654,14.74024748172883,6.051438449329169,8.466932428195008,6.044030602486245,6.625466195732741,12.362956928117626,23.72191322621112,23.72191322621112,0.0,26.357681362456802,0.0,23.72191322621112,26.357681362456802,0,0
+2017/06/24 04:00:00,40.06631890392988,0,88.72588128136032,0,0,0,0.009959429733604919,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,2.46751487428627,0.0,0.5249461878469215,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.225572256938925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5883994968483163,0.5883994968483163,0.647195667349695,0.647195667349695,0.6344084509305413,0.6344084509305413,0.8320831163623741,0.8320831163623741,0.9066751007707973,0.9066751007707973,0.26977273626432674,0.40153831483072777,0.2784528983935389,0.3435540555503089,0.4776172778684102,0.1980838920149636,0.355024592250371,0.19971341219091782,0.2530428621397165,0.4422492403401645,12.256496594848088,12.256496594848088,13.79534992966299,13.79534992966299,13.44791088756115,13.44791088756115,19.606123039588994,19.606123039588994,22.359352580996543,22.359352580996543,6.511249028967015,8.359568322993766,6.610378820188743,7.4553543816046215,9.76430417480448,5.813630080939589,7.622858820616813,5.827094621186319,6.329141381006039,9.08032528324074,40.06631890392988,40.06631890392988,0.0,44.51813211547765,0.0,40.06631890392988,44.51813211547765,0,0
+2017/06/24 05:00:00,73.98793541288188,0,212.9421150752648,0,0,0,0.1080017738344648,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,1.4908732487811238,0.0,0.525053201066542,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,429.8560783604723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7939277461201281,0.7939277461201281,0.8481811147300935,0.8481811147300935,0.8368793512255153,0.8368793512255153,0.9602026284065807,0.9602026284065807,0.9609472302537461,0.9609472302537461,0.28877957975996943,0.46566314942873827,0.2964805865953346,0.3615185326735178,0.640638296246825,0.20846686371390605,0.38517268842888625,0.21064141928503285,0.2624487222851486,0.5778827261573882,18.287396589298396,18.287396589298396,20.18083362591608,20.18083362591608,19.77622019480407,19.77622019480407,24.474312695027166,24.474312695027166,24.504533390163957,24.504533390163957,6.732451189479136,9.527097607648884,6.826415830281547,7.720171777470483,13.61629499703696,5.901324311294701,8.089830193700891,5.920261865894346,6.430076031446617,11.997061378133978,73.98793541288188,73.98793541288188,0.0,82.20881712542432,0.0,73.98793541288188,82.20881712542432,0,0
+2017/06/24 06:00:00,90.40968511021093,0,638.9212033619549,0,0,0,0.5227971750152139,0.0,6.6115755724691265,0.0,80.56906512710079,0,2.181237908428086,2.521907191020308e-09,0.5250093246758194,0,0,0.0,408.233912030418,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2173.996916595525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034016638120185294,0.0010762627185699164,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0595700374603525,1.0595700374603525,1.0557854715845045,1.0557854715845045,1.0605635434076968,1.0605635434076968,1.088491608720978,1.088491608720978,0.9988400411793419,0.9988400411793419,0.4106236778608787,0.6059706348674697,0.426213753190056,0.575324369063163,0.8384921989931524,0.31863449966141627,0.5011840759451253,0.3306867882666344,0.4815297436495906,0.7628051517035197,28.69397548006441,28.69397548006441,28.52656500781552,28.52656500781552,28.738008234349067,28.738008234349067,29.99007333037636,29.99007333037636,26.070834509895676,26.070834509895676,8.514259059871407,12.700663169596254,8.787942456870866,11.934675730491122,19.833635533353146,7.110712422015638,10.24999982767163,7.27410744445865,9.843277851122068,17.25739543510491,90.40968511021093,90.40968511021093,0.0,100.45520567801213,0.0,90.40968511021093,100.45520567801213,0,0
+2017/06/24 07:00:00,115.8304587236709,0,684.2651584788587,0,0,0,0.8539850865664993,0.0,5.736479982307201,0.0,69.33401494192633,0,39.38090929596693,2.175975519049685e-05,0.5250476571487472,0,0,0.01320581268846981,418.07430882208917,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3557.542789914674,0.0,0.11493837374939816,0.06765733826532352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03643078387717909,0.0011526446075227927,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.651790914136879,0.651790914136879,0.6287183868316386,0.6287183868316386,0.6512061606019921,0.6512061606019921,1.1725584351589426,1.1725584351589426,0.5977579925326438,0.5977579925326438,0.23711407781586194,0.30327457559983606,0.22292282668795146,0.4172412089430441,0.3724457448484804,0.18354871410556184,0.24090682396343985,0.1736283380003625,0.406793638618976,0.3409169829345614,13.921938314269354,13.921938314269354,13.295587404146104,13.295587404146104,13.905778879725375,13.905778879725375,33.91744270535884,33.91744270535884,12.491394591786317,12.491394591786317,6.166691743145748,6.911394165030146,6.03093455556818,8.629156934813594,7.887972673238522,5.698437893269286,6.204405259959273,5.62488455004582,8.448616522256245,7.417635967674556,115.8304587236709,115.8304587236709,0.0,128.70050969296767,0.0,115.8304587236709,128.70050969296767,0,0
+2017/06/24 08:00:00,140.67424215550946,0,723.5028026226199,0,0,0,1.492412670712145,0.0,11.323895916778682,0.0,87.89947186453183,0,39.380909295966944,2.521910283885087e-09,0.5775524049979976,0,0,0.0,404.08963000972267,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6498.640272871192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.038519825114977535,0.0012187404161048715,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4180309080595654,0.4180309080595654,0.3051807074775138,0.3051807074775138,0.4460416564326313,0.4460416564326313,1.2153885984421418,1.2153885984421418,0.6323239680363376,0.6323239680363376,0.14786386750454103,0.18168029631354365,0.17828487220314776,0.45111591929909584,0.37344702649606176,0.1063691082831511,0.10924329290035541,0.1370303390067279,0.4457727203514125,0.34478227672276024,8.6429935495716,8.6429935495716,6.935586437209167,6.935586437209167,9.151089572428361,9.151089572428361,36.00287131811827,36.00287131811827,13.391946081676721,13.391946081676721,5.453029040836668,5.684270740168358,5.658898263947648,9.246739712801798,7.903603167163382,5.234331762519432,5.247173332253908,5.3890241925348334,9.146051011170371,7.473022671203822,140.67424215550946,140.67424215550946,0.0,156.30471350612163,0.0,140.67424215550946,156.30471350612163,0,0
+2017/06/24 09:00:00,184.52681449502856,0,876.7417036796389,0,0,0,4.494089281883503,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.9103194409652854e-09,23.17829182722772,0,0,0.0,504.0930022979256,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7534.4608673625535,0.0,0.0,0.0,0.0,1038.266206021814,4094.2583174075753,0.0,0.0,0.0,1132.3937928046166,3013.4815673610756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04667837771232884,0.001476871333304785,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6168837295883721,0.6168837295883721,0.41591119880652166,0.41591119880652166,0.5836995873874494,0.5836995873874494,1.2177758750452754,1.2177758750452754,0.8248017265957961,0.8248017265957961,0.2693175534375817,0.2453698434420079,0.24588084338032887,0.5518294652376425,0.43332181681733195,0.2522464465788461,0.18683805908763115,0.22081620703444804,0.5723461857303906,0.4227218363666848,12.98327203918656,12.98327203918656,8.60591375155984,8.60591375155984,12.139962707463866,12.139962707463866,36.12066027339285,36.12066027339285,19.349732380583802,19.349732380583802,6.5061383377940984,6.249557390920984,6.2547805383742485,11.375027372128386,8.916184690443728,6.320765904658572,5.723733381090639,6.011501951381462,11.862410292710607,8.725736222267273,184.52681449502856,184.52681449502856,0.0,205.02979388336507,0.0,184.52681449502856,205.02979388336507,0,0
+2017/06/24 10:00:00,215.5410274082756,0,929.4829854718394,0,0,0,8.814928622673882,0.0,14.839439983088985,0.0,131.64086955684016,0,39.380909295966944,2.857612754336677e-09,20.86487994684787,0,0,0.0,468.1084028087656,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74.1980348884515,0.0,0.0,7711.500041246224,8847.73433328921,0.0,0.0,0.0,1557.8538520215673,5786.635161108476,0.0,0.0,0.0,1783.6773324824094,5301.421593472733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04948636262076462,0.001565714018480751,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8759081001560505,0.8759081001560505,0.5822266006400926,0.5822266006400926,0.7655550645583838,0.7655550645583838,1.2065760809999038,1.2065760809999038,0.9569669641263064,0.9569669641263064,0.377220928729088,0.2912945580489968,0.2823343723079658,0.5766307196573457,0.4322429589108993,0.3950666038641877,0.2529673746817606,0.2785646880233444,0.6074743752871126,0.4357040539231276,21.19595304254983,21.19595304254983,12.103637401333842,12.103637401333842,17.34674158749293,17.34674158749293,35.56944410024184,35.56944410024184,24.343240957454427,24.343240957454427,7.962899962175044,6.762862508227542,6.655734191491604,11.966495664532502,8.896580537752499,8.25153288792464,6.328346375617144,6.611676205003903,12.739297455951245,8.959649856214284,215.5410274082756,215.5410274082756,0.0,239.49003045363955,0.0,215.5410274082756,239.49003045363955,0,0
+2017/06/24 11:00:00,241.51593641375985,0,1028.3524367276198,0,0,0,27.752135777911924,0.0,14.783782912797726,0.0,136.4899973586286,0,39.380909295966944,2.9103194409652837e-09,23.10911106554424,0,0,0.0,513.74232529573,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3187.6177697594226,0.0,1528.1170768945085,7604.519335005531,22704.205410562703,3254.9253765329127,1012.3343872755003,1858.5688996576187,3108.223345502465,21322.236732055506,3700.2359501375504,943.6858865748354,2032.2769189082767,3407.62515278364,21627.65308850234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05475024543888404,0.001732259601617049,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0107725405466939,1.0107725405466939,0.7721841652228157,0.7721841652228157,0.8945685640706117,0.8945685640706117,1.1775297817143053,1.1775297817143053,1.0078498649003358,1.0078498649003358,0.454259875604018,0.3741869503467144,0.3552417846516594,0.564350521933333,0.4378010164492187,0.49088331910225286,0.3640121717514455,0.36768476410475653,0.5973170351355943,0.44767424029036873,26.575431234912955,26.575431234912955,17.563451456504836,17.563451456504836,21.89695764708206,21.89695764708206,34.156723643856196,34.156723643856196,26.45134148990202,26.45134148990202,9.306559207145483,7.915181212816066,7.626084475208472,11.670299162618633,8.998111754400028,10.034758301895806,7.758016622129404,7.8142363239881405,12.4802412429149,9.181743041878335,241.51593641375985,241.51593641375985,0.0,268.35104045973316,0.0,241.51593641375985,268.35104045973316,0,0
+2017/06/24 12:00:00,239.1611577891528,0,971.7007939829846,0,0,0,37.0088001234388,0.0,14.783782912797726,0.0,124.80122689546741,0,39.380909295966944,2.9103194409652837e-09,23.186438558571602,0,0,0.0,492.5810350636388,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5238.902819758725,612.6523370510467,2788.3802522557853,6647.553174497152,28124.25710671614,5346.2478017977655,2007.8824511345974,3210.908134144396,3562.3443946675416,28762.986215387326,6073.43699863868,2039.0529653576787,3551.41578722349,3841.6220046623184,29544.56738670441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0517340700169102,0.0016368299137134977,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0425701911050138,1.0425701911050138,0.8553171173748075,0.8553171173748075,0.9276705631198527,0.9276705631198527,1.1206065192954375,1.1206065192954375,1.0093544074225125,1.0093544074225125,0.4892076181952729,0.41033508676976294,0.3863597586955901,0.5312614560185517,0.4395607714831147,0.5330277706757249,0.41745729996651987,0.40867703612836837,0.5579959771442129,0.45367932127976385,27.946034030264414,27.946034030264414,20.439048515375433,20.439048515375433,23.17529408664126,23.17529408664126,31.463083370110184,31.463083370110184,26.51518060000049,26.51518060000049,10.000176738120771,8.509291049498813,8.109010445886113,10.904741729452127,9.030534473565083,10.944408997463484,8.63294049001263,8.480817318784176,11.51959660159936,9.295481086219425,239.1611577891528,239.1611577891528,0.0,265.7346197657253,0.0,239.1611577891528,265.7346197657253,0,0
+2017/06/24 13:00:00,246.62425237511542,0,922.4030075317017,0,0,0,49.16665144920383,0.0,14.728125842506467,0.0,122.5097643007467,0,39.380909295966944,2.857612754336677e-09,20.838801483833794,0,0,0.0,478.7736011249001,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6773.34273395372,2265.1900938784647,4346.365334757524,6430.035575773169,34371.1763225939,7511.297956188158,3777.971752096553,5066.982550282263,4664.475708776907,37138.20508033757,8339.973672659393,3949.06143433363,5514.874159269434,4962.411511273495,38339.626629654216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049109419351044827,0.0015537877961779504,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0424208451028867,1.0424208451028867,0.9210145839663791,0.9210145839663791,0.9412602596880336,0.9412602596880336,1.1075766145396735,1.1075766145396735,1.0066358758189942,1.0066358758189942,0.5033922808757122,0.45218440219449435,0.40408900619530247,0.5259993208813672,0.4411003616412489,0.550096304044376,0.4725835101604783,0.4320760073093309,0.55280082083353,0.45839436098342284,27.93950962732127,27.93950962732127,22.91470531580046,22.91470531580046,23.712839156807718,23.712839156807718,30.861242424808964,30.861242424808964,26.399892975313534,26.399892975313534,10.296738533993121,9.267021837604858,8.402640562317131,10.787367301242739,9.059009885162851,11.334691494679689,9.663667956677116,8.893551290589897,11.39769068140096,9.385872847117085,246.62425237511542,246.62425237511542,0.0,274.02694708346155,0.0,246.62425237511542,274.02694708346155,0,0
+2017/06/24 14:00:00,225.01137062787242,0,883.919063576338,0,0,0,43.52536057850352,0.0,14.728125842506467,0.0,108.75639138185811,0,39.380909295966944,2.8039947239160135e-09,18.620583526233386,0,0,0.0,475.78000968208056,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5667.093098545099,2970.6117338765475,4033.4268986697602,5947.577160475787,30870.51908687795,6321.776228658654,3993.984280200126,4340.434090872921,3994.954187016121,31203.90456757012,7085.506360537447,4300.56218254814,4828.710166777495,4268.4881283969535,32442.681274371193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04706050566954742,0.0014889615955060221,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0026899086571974,1.0026899086571974,0.9953367531324975,0.9953367531324975,0.9310874799329341,0.9310874799329341,1.0917458105440792,1.0917458105440792,0.9862864433443522,0.9862864433443522,0.4769637385208197,0.4934580828057351,0.3946859817107176,0.5023109930697749,0.4213825591772605,0.5183532843028898,0.528455294724346,0.42322549397778664,0.5283925413639549,0.4379671076127682,26.233048183399063,26.233048183399063,25.92371285268075,25.92371285268075,23.309758772611005,23.309758772611005,30.137735771401438,30.137735771401438,25.54580875516146,25.54580875516146,9.751176747190755,10.0881301708352,8.245234749622526,10.27382574298727,8.702016640907772,10.618954995754336,10.841999768003816,8.734676273796907,10.840600585615789,9.001166225440642,225.01137062787242,225.01137062787242,0.0,250.01263403096937,0.0,225.01137062787242,250.01263403096937,0,0
+2017/06/24 15:00:00,228.19662908679442,0,872.5780440440121,0,0,0,49.1621100161366,0.0,14.728125842506467,0.0,106.31215624428707,0,39.380909295966944,2.8039947239160135e-09,18.613327685093367,0,0,0.0,464.43899014975466,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5869.559906411651,4665.397045562274,4838.456654171788,5913.225322929931,34568.14261421376,6697.436603065805,5284.13416332663,5114.269683176431,4511.163661021359,34298.88878882278,7311.818298092548,5698.124439217892,5576.964811585423,4773.297110622644,35454.81424690187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04645670138927761,0.0014698576489645878,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9702065245798325,0.9702065245798325,1.0585517038432546,1.0585517038432546,0.9301457498084104,0.9301457498084104,1.084102334235863,1.084102334235863,0.9818442941891562,0.9818442941891562,0.4500251580659587,0.5347932516971116,0.38976048041511524,0.48946125009991887,0.40907383391200847,0.482749433327261,0.5751578672175942,0.417530403418249,0.5127618293477411,0.42385729823059864,24.882142549331718,24.882142549331718,28.648878981014647,28.648878981014647,23.27265265408721,23.27265265408721,29.79148572415228,29.79148572415228,25.361470935300858,25.361470935300858,9.226085358263703,10.984192565105133,8.164291324007024,10.005403172269268,8.487620816584382,9.868032483621832,11.93062541801254,8.63422091738714,10.497398467654364,8.745906347134152,228.19662908679442,228.19662908679442,0.0,253.55181009643823,0.0,228.19662908679442,253.55181009643823,0,0
+2017/06/24 16:00:00,235.86670660464054,0,922.1202467530311,0,0,0,45.19058666435664,0.0,14.78378283874635,0.0,120.17895923267236,0,39.380909295966944,2.749456088816245e-09,16.332468570148706,0,0,0.0,460.74566408995736,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5216.489816590396,5356.7759800122685,4881.154383969493,5932.351788884061,35188.16233631574,5499.597960808115,5335.645073157421,4517.06655353995,3755.450146162337,30787.058947135047,6021.177587497225,5820.617574959769,5001.093469901327,3956.4282910297998,31772.561565017146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04909436495774562,0.0015533114856677412,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9788466689635182,0.9788466689635182,1.1346038542313193,1.1346038542313193,0.9627190136603905,0.9627190136603905,1.0862077622267297,1.0862077622267297,1.0171857264269506,1.0171857264269506,0.4464842889907534,0.5802753338343972,0.40532953559701546,0.4885536293203152,0.41901732048856294,0.4720359357247259,0.6225081681505636,0.4307442415565323,0.5046443460706479,0.4315851724366511,25.237506320062536,25.237506320062536,32.115862420940644,32.115862420940644,24.5765308464877,24.5765308464877,29.886660062710533,29.886660062710533,26.848843028537743,26.848843028537743,9.159389136968088,12.055662203703562,8.423689405457097,9.986713211094866,8.66031440606335,9.652786610195022,13.130942552105196,8.869429962811452,10.323333282709129,8.88465228650277,235.86670660464054,235.86670660464054,0.0,262.0741184496006,0.0,235.86670660464054,262.0741184496006,0,0
+2017/06/24 17:00:00,263.7571015412152,0,925.7719677348696,0,0,0,50.73946263484181,0.0,16.630907673226492,0.0,138.40412594678773,0,39.380909295966944,2.8039947239160135e-09,18.60169598758811,0,0,0.0,464.3973850717959,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5706.748535743894,6791.359774034957,6275.531104980687,6003.258249280695,39376.8844998223,5958.584584717682,6474.90355822394,5646.550650783792,4083.4318576723263,34059.73370295372,6387.212325606621,7006.269262096289,6162.235679216016,4248.248975107659,34987.211718364444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049288785287672776,0.0015594628093844871,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.986686836983011,0.986686836983011,1.1954321615307195,1.1954321615307195,1.0182956713019982,1.0182956713019982,1.084677425382621,1.084677425382621,1.0368725737036217,1.0368725737036217,0.44891695256242836,0.6275151679653773,0.44233137956052215,0.48960245503704314,0.4302837761887142,0.46977920867705797,0.6720564950377952,0.470073261999194,0.5016002956925438,0.4416723361280761,25.562461299718137,25.562461299718137,35.02452156188984,35.02452156188984,26.896319218832545,26.896319218832545,29.817467030752013,29.817467030752013,27.697701978176966,27.697701978176966,9.20515309666051,13.263557055817785,9.081851403144697,10.00831409768925,8.861107595003958,9.608077544404765,14.49112402459454,9.613890733361984,10.25879338769559,9.069614762062713,263.7571015412152,263.7571015412152,0.0,293.0634461569058,0.0,263.7571015412152,293.0634461569058,0,0
+2017/06/24 18:00:00,262.7989844643304,0,941.9019960094602,0,0,0,60.864422637220656,0.0,16.798297355077125,0.0,120.14191543460078,0,39.380909295966944,2.962124044688883e-09,25.613439738502613,0,0,0.0,516.0177658589306,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5676.112865354279,6776.763156578505,7282.723278308411,5958.182761838005,40793.75089469241,7564.780307038905,7705.659073234837,8086.931977403756,4982.5012454275775,46276.59016690842,7919.93303883458,8217.355674811526,8679.667186012304,5102.936351745382,47145.51630538172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050147559940631456,0.0015866338407887865,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9789955901968069,0.9789955901968069,1.1781961132385195,1.1781961132385195,1.0549046560799755,1.0549046560799755,1.0739159357681372,1.0739159357681372,1.0403329377873851,1.0403329377873851,0.45955204679387046,0.6461719843186137,0.48793853608876575,0.4970481830575918,0.4612644278714404,0.4771445709601356,0.6865834985343946,0.5186519301721413,0.5056498908199736,0.4724472085782641,25.243656670143196,25.243656670143196,34.188852273138636,34.188852273138636,28.487675793545222,28.487675793545222,29.333199073100232,29.333199073100232,27.848381420649943,27.848381420649943,9.408213108968994,13.767274524509745,9.974067269783617,10.163026732959551,9.44136332232651,9.754807224977242,14.910075141864738,10.625485517351166,10.34474082724779,9.660958176475447,262.7989844643304,262.7989844643304,0.0,291.99887162703374,0.0,262.7989844643304,291.99887162703374,0,0
+2017/06/24 19:00:00,251.11504129759038,0,906.4491692341351,0,0,0,57.68004680187975,0.0,17.602640988533366,0.0,110.89738010901058,0,39.380909295966944,2.962124044688883e-09,25.55406409923762,0,0,0.0,516.0552915961497,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4339.906168808605,4862.919275914153,6394.997014426014,5527.803023186154,35953.917768305946,7124.933721780428,7000.122970179812,8207.25343694595,4540.786174924997,48158.64542763814,7382.758735853517,7378.886491809488,8795.425451276038,4572.753228545739,48724.59773297626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04826002518296799,0.0015269135567765751,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9648170535366776,0.9648170535366776,1.1077445914413608,1.1077445914413608,1.0426965036390556,1.0426965036390556,1.0563156885583949,1.0563156885583949,1.0363486517912859,1.0363486517912859,0.4624128597266723,0.6217630448895234,0.502690044689026,0.4955338827198933,0.48435084386268346,0.4737721025871045,0.6480321704137356,0.5281682719240335,0.4978278930686648,0.4920145142558783,24.661944501965934,24.661944501965934,30.868964972416777,30.868964972416777,27.951552815901692,27.951552815901692,28.5499882506291,28.5499882506291,27.674926319325806,27.674926319325806,9.4636667081311,13.11130033960309,10.281852200566306,10.131367556641493,9.900631932523126,9.687332032369682,13.818325492758532,10.835601548091063,10.179366610169254,10.058171408764522,251.11504129759038,251.11504129759038,0.0,279.0167125528782,0.0,251.11504129759038,279.0167125528782,0,0
+2017/06/24 20:00:00,215.58759536604444,0,847.5008151242948,0,0,0,35.2820704878978,0.0,22.86433515186604,0.0,94.88958839347283,0,39.380909295966944,2.9103194409652837e-09,23.170692033930468,0,0,0.0,492.5972899988536,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1556.0764494141279,1408.3343176970388,2834.5789369674835,4770.135907579176,22909.26192512417,3565.7013382281802,3769.8119568082197,4481.48292364794,2098.2534282492784,31229.604234459355,3622.186809709054,3830.0877035584804,4777.498070973508,1941.9317448379102,31409.319916109427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045121571146721225,0.0014276150587526535,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9506343876884443,0.9506343876884443,1.0005517117015257,1.0005517117015257,0.9656802997046328,0.9656802997046328,1.0341373651658194,1.0341373651658194,1.0267028341392863,1.0267028341392863,0.45309867291159617,0.5507306335625313,0.45966051146049935,0.4819739250648525,0.4849699965587634,0.4561861501229422,0.5568407501691799,0.46827570324137036,0.47634133719356786,0.4862345329765871,24.087907405289727,24.087907405289727,26.142886166495572,26.142886166495572,24.69713813344336,24.69713813344336,27.57890934475938,27.57890934475938,27.257411812595706,27.257411812595706,9.284415677811907,11.349439144382444,9.410309145436841,9.852285456964168,9.913265509408575,9.343420229310794,11.492387673754166,9.57841273351255,9.738691903214956,9.93911929852537,215.58759536604444,215.58759536604444,0.0,239.54177262893825,0.0,215.58759536604444,239.54177262893825,0,0
+2017/06/24 21:00:00,199.71409916292248,0,829.1024153915063,0,0,0,7.952171302560057,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,2.962124044688883e-09,25.552384405884283,0,0,0.0,509.6892427786091,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3800.718076342937,2833.1626309419476,0.0,15.422504513520254,156.64670989435487,0.0,9885.41478332133,0.0,0.0,283.85980822407487,0.0,9525.79806715533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044142026717130224,0.001396622955799186,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8375560195505956,0.8375560195505956,0.864190657796528,0.864190657796528,0.9243504162198031,0.9243504162198031,1.0156206587236312,1.0156206587236312,1.0439120743340102,1.0439120743340102,0.41985423964613244,0.5574702564164034,0.47736333905474915,0.4168044033451203,0.5151303372634983,0.4115367255733598,0.5453458689889297,0.47907607393078344,0.3849725784430771,0.5122216791072935,19.80029549388054,19.80029549388054,20.763082869649836,20.763082869649836,23.045084829505427,23.045084829505427,26.781977844285223,26.781977844285223,28.004692628604474,28.004692628604474,8.675042956204976,11.507207186902704,9.75920120207222,8.62151498272452,10.54872399462458,8.530000405073508,11.224802081645194,9.793672978917499,8.08660281693588,10.48572739921002,199.71409916292248,199.71409916292248,0.0,221.90455462546942,0.0,199.71409916292248,221.90455462546942,0,0
+2017/06/24 22:00:00,137.1191307469708,0,630.9923820607779,0,0,0,0.49393349844040224,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,2.8039947239160135e-09,18.61782084375526,0,0,0.0,471.28579575432946,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1970.7405377347825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03359450180117982,0.0010629066196898708,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5894342549499356,0.5894342549499356,0.6013936698330004,0.6013936698330004,0.6860812877735127,0.6860812877735127,0.9591039389176192,0.9591039389176192,0.8153386420546082,0.8153386420546082,0.2825036774629034,0.4145917918819941,0.34989721858285516,0.26724521271877233,0.4676250037827525,0.25701913857858666,0.38522142332027565,0.34524878894167865,0.21129054578201037,0.45161106175100413,12.28228209779168,12.28228209779168,12.58367516851223,12.58367516851223,14.895439324486233,14.895439324486233,24.429760497222276,24.429760497222276,19.019847362951083,19.019847362951083,6.657727002671777,8.582930781270193,7.5472921066829315,6.482980880591256,9.56560435551549,6.371356807898664,8.090616449714304,7.4797503757799575,5.9259532803325214,9.25613248460823,137.1191307469708,137.1191307469708,0.0,152.35458971885643,0.0,137.1191307469708,152.35458971885643,0,0
+2017/06/24 23:00:00,89.75109726882158,0,491.97827155200326,0,0,0,0.2108741588354251,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.693987588150322e-09,14.029242048453904,0,0,0.0,438.74274278318705,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,822.6455159457514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.026193287589014246,0.0008287373610888319,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4184931098842256,0.4184931098842256,0.42666978558566443,0.42666978558566443,0.508842691512738,0.508842691512738,0.9042052486619293,0.9042052486619293,0.6098327536831573,0.6098327536831573,0.20819074199863685,0.33638555037185686,0.2726606909296421,0.19378176372125774,0.39868435523055434,0.16057634634048806,0.28243392427646613,0.24721192654949806,0.11519122162382159,0.3737255858645897,8.651104364100405,8.651104364100405,8.796105000196505,8.796105000196505,10.413003706062256,10.413003706062256,22.264536411379254,22.264536411379254,12.800086862992359,12.800086862992359,5.898933812349156,7.353512233868798,6.543877733475014,5.778615564307472,8.311704955415237,5.53436673645146,6.656905824304587,6.268437619490726,5.274837806658198,7.907959216948626,89.75109726882158,89.75109726882158,0.0,99.72344140980175,0.0,89.75109726882158,99.72344140980175,0,0
+2017/06/25 00:00:00,44.182179126238616,0,500.40829862232954,0,0,0,0.3057559542562846,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.8567301913832771,2.637579961031195e-09,11.834058913161417,0,0,0.0,447.17276985351333,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,576.6365767477417,502.9171107258418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.026642108474415668,0.0008429377410489683,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6412136932637638,0.6412136932637638,0.6744995138719263,0.6744995138719263,0.6949123391445172,0.6949123391445172,0.8837256659833211,0.8837256659833211,0.7859315540200671,0.7859315540200671,0.403220298427453,0.5859481920312566,0.4360772744714703,0.42768468868484905,0.6172031507508093,0.3341733505511674,0.5102487368664096,0.39134943692940505,0.32536193251656814,0.5737548583867739,13.631932100319844,13.631932100319844,14.56094073443316,14.56094073443316,15.154390216844561,15.154390216844561,21.487894512098592,21.487894512098592,18.018830064867984,18.018830064867984,8.387939865469264,12.195597085176132,8.96648154522822,8.814302824470914,12.991621723809871,7.322524425830096,10.443205099735067,8.190290201775738,7.20115793841245,11.896543689474967,44.182179126238616,44.182179126238616,0.0,49.09131014026513,0.0,44.182179126238616,49.09131014026513,0,0
+2017/06/25 01:00:00,23.74588835508203,0,36.232863748601815,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5487929314042379,0,0,0.0,0.7425112360576801,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0019290645038992915,6.103425623449203e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.61871087604384,0.61871087604384,0.6794705500471211,0.6794705500471211,0.6588172935228435,0.6588172935228435,0.8593183646334395,0.8593183646334395,0.8901787384956295,0.8901787384956295,0.35664029176379347,0.5754402710390629,0.3778169739466348,0.39944193120655863,0.6887358178949883,0.3052031570427276,0.5158272163073526,0.3452974836615352,0.3098570850593877,0.6246279818322428,13.031093511262199,13.031093511262199,14.70380074131505,14.70380074131505,14.117268473535276,14.117268473535276,20.58475794587882,20.58475794587882,21.730766834884264,21.730766834884264,7.64690262620951,11.937495864046355,7.972320784133302,8.324376186114364,14.972923205873883,6.935872278631123,10.56387155516498,7.480453149290611,6.995589318346958,13.186954776864411,23.74588835508203,23.74588835508203,0.0,26.38432039453559,0.0,23.74588835508203,26.38432039453559,0,0
+2017/06/25 02:00:00,28.344202377497545,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248392910246523,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6236661269890678,0.6236661269890678,0.6903674131694537,0.6903674131694537,0.6564089382989069,0.6564089382989069,0.8438425126838649,0.8438425126838649,0.9641027007450607,0.9641027007450607,0.3452013310300782,0.5575275801371076,0.3591007177976515,0.3909012728298996,0.7147453461945955,0.2830783014341351,0.4952459657727324,0.3159961445860878,0.2971069995716077,0.6309480205331784,13.161515345599966,13.161515345599966,15.020699473347676,15.020699473347676,14.050076296545,14.050076296545,20.0248777547109,20.0248777547109,24.63284307405435,24.63284307405435,7.479065549156616,11.50855752611217,7.683730559662564,8.182946311222963,15.74822158060843,6.664499648584581,10.125359341393747,7.0757652120422705,6.834169264908368,13.355107519457874,28.344202377497545,28.344202377497545,0.0,31.493558197219492,0.0,28.344202377497545,31.493558197219492,0,0
+2017/06/25 03:00:00,23.722049133185,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249537095072069,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5886500316082307,0.5886500316082307,0.6534931059525781,0.6534931059525781,0.6166534144495851,0.6166534144495851,0.7812066449098743,0.7812066449098743,0.9390722714824272,0.9390722714824272,0.3303915926991482,0.5401698199291074,0.3406918447276015,0.376883095902307,0.7317767720283629,0.25735189501836003,0.46878966120846743,0.2867999955453288,0.27448929138506767,0.636958706458754,12.262735495846513,12.262735495846513,13.969062085886435,13.969062085886435,12.977254337642393,12.977254337642393,17.8614117813556,17.8614117813556,23.625796287928978,23.625796287928978,7.270031828404171,11.10618047542475,7.414429474476577,7.957567059883402,16.271696881513066,6.37491978091316,9.588542387127887,6.708701732826739,6.5647193651136035,13.516637258025497,23.722049133185,23.722049133185,0.0,26.357832370205553,0.0,23.722049133185,26.357832370205553,0,0
+2017/06/25 04:00:00,41.15059001356999,0,88.72588128136032,0,0,0,0.3871815218908658,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,3.174415754350063,0.0,0.5250943252659719,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1243.4396113812522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6447991551157938,0.6447991551157938,0.7069439552625806,0.7069439552625806,0.669225656134113,0.669225656134113,0.8210446735982566,0.8210446735982566,0.8991464195656336,0.8991464195656336,0.33131338332300836,0.4109283571681482,0.33940988710887343,0.3510303487710834,0.4865211715667727,0.2497894996875342,0.373327636719962,0.27640877400678077,0.26755541022703466,0.45401488317289945,13.72969480500349,13.72969480500349,15.512611043953953,15.512611043953953,14.41054731364946,14.41054731364946,19.21831007684115,19.21831007684115,22.071103311394452,22.071103311394452,7.282770780191129,8.51950789545991,7.396212445710205,7.563895794291952,9.944989297256129,6.295095546152282,7.901737189441192,6.586748463027192,6.486435683566214,9.301882499744409,41.15059001356999,41.15059001356999,0.0,45.72287779285554,0.0,41.15059001356999,45.72287779285554,0,0
+2017/06/25 05:00:00,77.90968717122502,0,212.9421150752648,0,0,0,0.12650120016329292,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,5.394208808243071,0.0,0.5249699736189117,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,66.81522062036521,13.62068519896252,398.66862379484616,0.0,17.137679107093078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8398796260091207,0.8398796260091207,0.8787637184146676,0.8787637184146676,0.8616479649561652,0.8616479649561652,0.9419819008964425,0.9419819008964425,0.9441871145345301,0.9441871145345301,0.33632657936314325,0.38167396273335524,0.3412485841619523,0.3449941617473634,0.4316723312993413,0.25539477880405237,0.35011029995558757,0.2811503116439435,0.27240639067174055,0.41020501624141453,19.88311313184957,19.88311313184957,21.302303224670126,21.302303224670126,20.669898259212616,20.669898259212616,23.741589233518454,23.741589233518454,23.82957246617616,23.82957246617616,7.352683490709623,8.033649112070194,7.422362664270679,7.476077178417071,8.886231751190024,6.3540309233142125,7.550410205888923,6.641830974175804,6.540990486213701,8.507053090039022,77.90968717122502,77.90968717122502,0.0,86.5663190791389,0.0,77.90968717122502,86.5663190791389,0,0
+2017/06/25 06:00:00,95.68369374415018,0,638.5812223981483,0,0,0,0.8623751193640002,0.0,6.542716896959073,0.0,80.56906512710079,0,7.184337976562692,2.5219347081262414e-09,0.5251986216417063,0,0,0.0,407.8939310666114,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,718.8592116981433,0.0,0.0,2002.2066325887145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,127.66315438444224,562.3152371036936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03399853728184605,0.0010756900206621877,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0098451944062374,1.0098451944062374,0.998795421716612,0.998795421716612,1.0057949148591245,1.0057949148591245,1.0652628637126655,1.0652628637126655,0.9661294923545635,0.9661294923545635,0.355591457763193,0.38684076898861147,0.361006283070287,0.39649635079951034,0.4286279181100206,0.32304482949023555,0.3609318658104507,0.3435727209411518,0.3759967779523879,0.40970774044575425,26.53602356235905,26.53602356235905,26.06895776947873,26.06895776947873,26.364285864650924,26.364285864650924,28.946761947144466,28.946761947144466,24.715462733418832,24.715462733418832,7.631281898135612,8.116799572401845,7.712430386083383,8.275246188266976,8.831255128101816,7.169789553132603,7.711306682099334,7.455622408478305,7.943599123571772,8.498503773892338,95.68369374415018,95.68369374415018,0.0,106.31521527127796,0.0,95.68369374415018,106.31521527127796,0,0
+2017/06/25 07:00:00,115.829423201444,0,683.9309984900126,0,0,0,0.8184837498512255,0.0,5.718430007561346,0.0,69.33401494192633,0,39.380909295966944,2.5219377603554346e-09,0.5775852036162284,0,0,0.0,417.7533546459317,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3383.0742551569947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.036412992951858396,0.0011520817150469439,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.600072075282528,0.600072075282528,0.606139933054021,0.606139933054021,0.43319120540961803,0.43319120540961803,1.130996229053374,1.130996229053374,0.6765592157209047,0.6765592157209047,0.0452208955844445,0.13996057354428063,0.12199191122616594,0.2424917718264693,0.3549873271181429,0.09887427679939242,0.0603220343132944,0.1575082670079331,0.28459749464449113,0.32395561778507453,12.550064156124378,12.550064156124378,12.70500789714552,12.70500789714552,8.913808664166723,8.913808664166723,31.94700488836689,31.94700488836689,14.620003689792213,14.620003689792213,5.042334945600103,5.405854205134389,5.308269618699299,6.2203442898888,7.622305575562535,5.2024590162220505,5.075336187834537,5.514120008482635,6.682472307092453,7.1820924333574965,115.829423201444,115.829423201444,0.0,128.69935911271554,0.0,115.829423201444,128.69935911271554,0,0
+2017/06/25 08:00:00,147.28147679154858,0,719.4038588976831,0,0,0,1.0610061569652907,0.0,9.39755635098607,0.0,96.91714705112861,0,39.380909295966944,2.521937760732078e-09,0.5248579339797496,0,0,0.0,399.990686284786,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4456.296251439344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03830159431494696,0.0012118357457113202,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5313045317295536,0.5313045317295536,0.48740329815175165,0.48740329815175165,0.5881404797334672,0.5881404797334672,1.0888978761726382,1.0888978761726382,0.8167846681004688,0.8167846681004688,0.2593514219377638,0.32727925433522903,0.3168057201462105,0.4235253536054245,0.5298990488712854,0.19080395823923457,0.24193223527128832,0.2683813384543645,0.369625985800211,0.5037997382966548,10.905707501209264,10.905707501209264,9.963076393970582,9.963076393970582,12.250049327222513,12.250049327222513,30.008488138912625,30.008488138912625,19.070012288855537,19.070012288855537,6.396427719264452,7.227286317196757,7.086457354227548,8.740004026464334,10.874237567463922,5.754832624059162,6.21470526128148,6.495654162820614,7.844184583937604,10.305385779718648,147.28147679154858,147.28147679154858,0.0,163.64608532394286,0.0,147.28147679154858,163.64608532394286,0,0
+2017/06/25 09:00:00,159.96129336293492,0,782.2176260885592,0,0,0,13.713169047666863,0.0,9.274480239855507,0.0,97.06762091869685,0,39.380909295966944,2.521937760732125e-09,0.5251138582267741,0,0,0.0,409.5689247068458,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,12.591496437448798,6281.614391480268,10318.297343843995,644.8177900059313,391.95375699798745,484.98089465706266,1855.666156730041,12557.840440263777,400.3213097587833,122.12849273619746,333.5966309654582,1770.2529105621552,11773.170141385668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.041645845806765315,0.0013176455317768668,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8234491745849141,0.8234491745849141,0.691637908267921,0.691637908267921,0.814142768978977,0.814142768978977,1.1743514595730327,1.1743514595730327,0.9461723885927669,0.9461723885927669,0.40518894200133077,0.42308038312748003,0.39488803802725736,0.546285229985235,0.48651577277625446,0.390470342331185,0.39157040885516736,0.3848509156947041,0.5528228733741034,0.48055790047949776,19.302351590210264,19.302351590210264,15.057981700545085,15.057981700545085,18.978427166800856,18.978427166800856,34.003658296309084,34.003658296309084,23.90894520561571,23.90894520561571,8.421300555536405,8.73209940320315,8.24857739539354,11.246454264779857,9.944878704031112,8.175892916146267,8.19391434241551,8.084641474328095,11.398205677970836,9.823599418277581,159.96129336293492,159.96129336293492,0.0,177.73477040326102,0.0,159.96129336293492,177.73477040326102,0,0
+2017/06/25 10:00:00,238.5069917960211,0,953.755650168479,0,0,0,38.131350376855465,0.0,12.984000736477544,0.0,124.87761316689259,0,39.380909295966944,2.910349041210707e-09,23.133118216918152,0,0,0.0,492.38106750540516,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4174.28475848314,1651.5115305270135,3131.596630782288,7654.4909375198295,29272.986415906176,4566.0974212310275,2654.563996090169,3461.60051769674,4307.520275762523,28120.452827177483,4646.428635997824,2532.356480474583,3497.5281237105864,4491.52843825331,28185.272755100843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05077865726813827,0.0016066013203199767,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9572580423431238,0.9572580423431238,0.8271776267584563,0.8271776267584563,0.9055928606600709,0.9055928606600709,1.1821209599005433,1.1821209599005433,0.9875374385654475,0.9875374385654475,0.4426723147376095,0.4312470461228373,0.3975659009333352,0.5499196965229126,0.43768244618563873,0.4559500870188839,0.4244609426634041,0.4052033027436854,0.5702147094640947,0.4424630592097203,24.355015287180876,24.355015287180876,19.43314766248548,19.43314766248548,22.31777560092057,22.31777560092057,34.3783679463901,34.3783679463901,25.597858589995056,25.597858589995056,9.088188967365639,8.878527957814143,8.293042544032616,11.33058861628163,8.995931933346327,9.338894359953684,8.756651886538549,8.421544522573598,11.81092639450155,9.084298573139819,238.5069917960211,238.5069917960211,0.0,265.00776866224567,0.0,238.5069917960211,265.00776866224567,0,0
+2017/06/25 11:00:00,270.15207442935025,0,1007.253494287724,0,0,0,51.41901268819358,0.0,12.935301236479537,0.0,143.25325374857618,0,39.380909295966944,2.9103490412107056e-09,23.16359745722357,0,0,0.0,492.6433828558341,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7181.0208579117025,2889.2664184049563,5185.545672096701,7798.835443621893,39168.47228632211,7133.683576082912,3902.12849653565,5236.695754864961,5257.59039355799,36261.338420748216,7514.344356240034,3920.9523985064,5444.719654499582,5515.96940322993,36809.00461965201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05362692211525667,0.0016967184346784274,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0329848917800923,1.0329848917800923,0.8945777873853191,0.8945777873853191,0.943287998006341,0.943287998006341,1.1688432092960879,1.1688432092960879,1.0106641859051464,1.0106641859051464,0.47085078744947306,0.43054338096284245,0.3966191283847158,0.5363349234300364,0.42315189124546243,0.4988579532927952,0.4355686436155696,0.41390790299101815,0.5607004223731857,0.43268211025816655,27.52893861992824,27.52893861992824,21.89730765227725,21.89730765227725,23.793676418237766,23.793676418237766,33.73911168727237,33.73911168727237,26.5708250255403,26.5708250255403,9.62927971829356,8.865798525516766,8.277286611557102,11.01904320240996,8.733369127596049,10.200993183954438,8.957172690731582,8.571047362174454,11.583520402614795,8.904554417402153,270.15207442935025,270.15207442935025,0.0,300.1689715881669,0.0,270.15207442935025,300.1689715881669,0,0
+2017/06/25 12:00:00,262.47901237736545,0,965.4738400258585,0,0,0,63.34463283045012,0.0,12.935301236479537,0.0,124.80122689546741,0,39.380909295966944,2.8040238249091193e-09,18.584966913743123,0,0,0.0,486.3540811065126,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9447.536698518446,4052.8263300880953,6738.371952400526,7216.460521873873,46316.987467191626,9290.50043871037,5076.059250166869,7035.124642764372,5912.365240981694,45150.91649431099,9853.414167298008,5167.561614787143,7378.792782550388,6156.379102177896,46184.50729337098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051402542375886505,0.001626340610245337,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0734332572518017,1.0734332572518017,0.937187558278638,0.937187558278638,0.9743942315785508,0.9743942315785508,1.1253008668591145,1.1253008668591145,1.025696909996441,1.025696909996441,0.5132075396115807,0.46044027048098235,0.4292621925697875,0.5280570517475717,0.44342913668459627,0.5506513528484802,0.4734598779906577,0.45315106373247704,0.5515267176213748,0.4577828052864325,29.311573552194318,29.311573552194318,23.550970730973418,23.550970730973418,25.054019325578764,25.054019325578764,31.681293080631278,31.681293080631278,27.21406859243514,27.21406859243514,10.507038466738976,9.425392588819193,8.842676173533334,10.833123222553482,9.102275209192499,11.34759497797171,9.681109952382059,9.28541349355767,11.367972137659677,9.374094737350816,262.47901237736545,262.47901237736545,0.0,291.6433470859616,0.0,262.47901237736545,291.6433470859616,0,0
+2017/06/25 13:00:00,269.4032652919174,0,907.8445973059327,0,0,0,70.28678283806644,0.0,12.935301236479537,0.0,124.7641830973959,0,39.380909295966944,2.8040238249091193e-09,18.604113618750283,0,0,0.0,464.21519089913113,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10767.166288650456,5313.692529416198,8031.65262821458,6944.512557726218,53287.06609981336,10146.686509864245,5944.2605977058065,7821.735596676874,6267.476290699537,48328.97156229571,10755.490238077758,6101.457930706449,8228.587253710748,6482.645583049992,49742.54898595402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04833431880711338,0.0015292641552576071,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0945182951108767,1.0945182951108767,1.0016791647014742,1.0016791647014742,1.0071385567617355,1.0071385567617355,1.1115503892079905,1.1115503892079905,1.0527183248697063,1.0527183248697063,0.5356014656130681,0.5039750580306562,0.4550057405251028,0.5370085756799424,0.46275624010478955,0.5722470668581654,0.523426338275284,0.4803275312260453,0.5583975948091058,0.4789639429757225,30.263827340140892,30.263827340140892,26.190406249036656,26.190406249036656,26.42118971399333,26.42118971399333,31.044186478986987,31.044186478986987,28.391266847985193,28.391266847985193,11.00245000408654,10.30910870253399,9.320813067727627,11.03430393449851,9.470346436818218,11.860011795711728,10.730412080460383,9.818940744807719,11.529069412079423,9.791412277189394,269.4032652919174,269.4032652919174,0.0,299.3369614354638,0.0,269.4032652919174,299.3369614354638,0,0
+2017/06/25 14:00:00,247.49043086768305,0,854.5556794554457,0,0,0,66.72522942316209,0.0,12.88660173648153,0.0,111.01081017850728,0,39.380909295966944,2.6940161055187e-09,14.054905028416854,0,0,0.0,446.4166255611882,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10321.75113063993,6308.967487228329,8332.660270075052,6746.810723949708,52743.375011290234,9197.336149301549,6386.832650476313,7241.673302479246,5997.336461108663,43307.95297021498,9782.04530932866,6667.063131324724,7696.429154201362,6214.05219846287,44805.217365746445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045497177349296744,0.0014394989771830222,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.08967031152912,1.08967031152912,1.0939290457319946,1.0939290457319946,1.0370414616873058,1.0370414616873058,1.1150816545633468,1.1150816545633468,1.0623960147406268,1.0623960147406268,0.53660881576201,0.5677738453437978,0.47516855687393306,0.5514859342744981,0.46458640067019297,0.5693009109305367,0.5974938202069696,0.5009836238738722,0.5725229766519992,0.4791226924207329,30.043515888554367,30.043515888554367,30.237006413415656,30.237006413415656,27.705045931777917,27.705045931777917,31.207202426434762,31.207202426434762,28.819316876834108,28.819316876834108,11.025245512246286,11.752211579041528,9.71521231776741,11.367022025675809,9.506033953456992,11.788914768993962,12.484711739843192,10.245767506590383,11.866689370545458,9.794613026189566,247.49043086768305,247.49043086768305,0.0,274.9893676307589,0.0,247.49043086768305,274.9893676307589,0,0
+2017/06/25 15:00:00,244.97217412673393,0,851.2455413865534,0,0,0,66.39262363112158,0.0,12.88660173648153,0.0,108.75639138185811,0,39.380909295966944,2.6940161055187e-09,14.123672876157503,0,0,0.0,443.10648749229597,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10018.228614235544,7113.254482849394,8839.826334345364,6793.71794974809,54239.46594760395,8506.95048369563,6788.871504584674,7101.311613561741,6001.810074178507,41178.98588961148,8934.486680300697,7109.053487496554,7500.245163771344,6176.704946263922,42555.91065778792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04532094314666758,0.0014339230498572083,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.076424426119659,1.076424426119659,1.1251854221413073,1.1251854221413073,1.0524098668590134,1.0524098668590134,1.11539701627094,1.11539701627094,1.0733516726491221,1.0733516726491221,0.5217189299153049,0.5886873944675369,0.4808224119918402,0.5538531066220082,0.4621094194679135,0.5444490792274653,0.6183908029788217,0.5032515632693058,0.5715463861362848,0.473123995584863,29.445719207101064,29.445719207101064,31.675918103010872,31.675918103010872,28.377678869649912,28.377678869649912,31.221780912734317,31.221780912734317,29.307919114430817,29.307919114430817,10.692775270227244,12.263666151761754,9.828951361807185,11.422288382098287,9.457768155356405,11.204166841858779,13.022705847968084,10.293753828327098,11.843068748401606,9.67442110700513,244.97217412673393,244.97217412673393,0.0,272.1913045852599,0.0,244.97217412673393,272.1913045852599,0,0
+2017/06/25 16:00:00,266.8065918050045,0,916.960013138968,0,0,0,73.99270959150952,0.0,11.08681950462398,0.0,124.87761316689259,0,39.380909295966944,2.6940161055187e-09,14.036565040863072,0,0,0.0,455.5854304758942,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10826.859338041559,8713.566473615441,10182.870500621459,7333.703047582684,60811.4388405844,9010.08424935026,8002.094958095273,8056.645358100801,6545.933283360414,45075.84741018715,9327.869025868547,8358.228308006988,8430.908765394875,6689.339298938384,46482.79983734387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048819630297913454,0.0015446190725365069,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0901946576455332,1.0901946576455332,1.2026326769794502,1.2026326769794502,1.083811127590416,1.083811127590416,1.1287553631772123,1.1287553631772123,1.1018276594189782,1.1018276594189782,0.5202990133740757,0.6303585120781219,0.49424353340180643,0.5580224331525973,0.4657280507444564,0.540074199491156,0.6648622142286805,0.517158877095874,0.5746239876018175,0.4771778745984272,30.067305225274595,30.067305225274595,35.37620864522022,35.37620864522022,29.778334053324542,29.778334053324542,31.842332810986505,31.842332810986505,30.59751518974042,30.59751518974042,10.661571800918225,13.339349605878411,10.104468641798817,11.520220394703543,9.528368820983076,11.104000023987155,14.287026372689652,10.592875343858381,11.917646410458602,9.755475998391077,266.8065918050045,266.8065918050045,0.0,296.45176867222716,0.0,266.8065918050045,296.45176867222716,0,0
+2017/06/25 17:00:00,278.7951090294736,0,926.610534386417,0,0,0,76.89266811505473,0.0,11.08681950462398,0.0,129.38645076019097,0,39.380909295966944,2.80402382490912e-09,18.616286148378645,0,0,0.0,465.2359517233432,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10862.598708510435,9971.376698103852,11166.634695980094,7310.443468605312,62962.52143547889,9326.552554642263,8879.871569757946,9081.818265683381,6607.387339710386,47909.84415135234,9614.193378085518,9324.99847469741,9521.229312675476,6743.735556899604,49284.25228710155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04933343119733307,0.0015608753748453726,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.092702658665186,1.092702658665186,1.2585999290107166,1.2585999290107166,1.1231894712209165,1.1231894712209165,1.12663811501513,1.12663811501513,1.1143245092808143,1.1143245092808143,0.5202854706497368,0.6730692555018177,0.5211635482641305,0.5577287204448224,0.47494612031682165,0.5372804129160738,0.7115027591235883,0.5460966061398038,0.5700302608309119,0.4867131232588821,30.181223030373545,30.181223030373545,38.1587430745256,38.1587430745256,31.583058143666662,31.583058143666662,31.743585755201465,31.743585755201465,31.17221478500832,31.17221478500832,10.661274611942446,14.520035392893945,10.680560054716622,11.513296790258138,9.710765729880308,11.040467626968947,15.649973274687639,11.242103434276189,11.806480468589129,9.94892220970965,278.7951090294736,278.7951090294736,0.0,309.77234336608177,0.0,278.7951090294736,309.77234336608177,0,0
+2017/06/25 18:00:00,274.0166787687403,0,918.2649939026659,0,0,0,81.22162248160788,0.0,11.198411588569618,0.0,115.6330778413024,0,39.380909295966944,2.910349041210706e-09,23.15068235592872,0,0,0.0,492.3807637521363,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10409.70666514334,9992.228325926335,11830.807702189264,6966.54756931115,62995.22308111409,10095.534179932733,9562.581215949545,10705.509244167986,6874.589160718492,54451.668477818996,10317.66018322266,10001.651927325714,11216.638447994057,6973.765842238028,55631.3608003838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048889108440380684,0.0015468173125339096,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0794294186251945,1.0794294186251945,1.2502683819381424,1.2502683819381424,1.1476901122369643,1.1476901122369643,1.1088566289474324,1.1088566289474324,1.1142495704399749,1.1142495704399749,0.520656589547038,0.6858814287387774,0.5514657283342996,0.5552998046709735,0.49331080539689925,0.5322604068157564,0.7185649514897242,0.5783116893076107,0.5621611457182903,0.503727302174218,29.580800738457043,29.580800738457043,37.73924776165391,37.73924776165391,32.731895206011245,32.731895206011245,30.920113597620002,30.920113597620002,31.168752905561362,31.168752905561362,10.669421520051998,14.889617909954694,11.366551323341639,11.456184033361183,10.08506956116284,10.927159213661554,15.864534297057347,12.007549462733365,11.618178808706702,10.303847983099004,274.0166787687403,274.0166787687403,0.0,304.4629764097114,0.0,274.0166787687403,304.4629764097114,0,0
+2017/06/25 19:00:00,259.2248695659135,0,882.7562350210284,0,0,0,77.37849332156598,0.0,11.734626063209134,0.0,104.13412371906301,0,39.380909295966944,2.9103490412107056e-09,23.16474196074376,0,0,0.0,492.36235738304293,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8755.589310380012,8055.405447363389,10368.460861759382,6394.067226913327,54223.6731349407,10032.229125027288,9012.568236660547,10943.435340432263,6644.372512774255,56716.40047565579,10168.371936254513,9328.497045010732,11424.124673975566,6692.050793454245,57564.43527012128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046998595815947876,0.0014870028108928603,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0462924752890674,1.0462924752890674,1.1753898072464075,1.1753898072464075,1.1178956977891374,1.1178956977891374,1.0892303977132307,1.0892303977132307,1.0854253030095815,1.0854253030095815,0.5181743156193331,0.6597708090267801,0.5583193107045724,0.5482483839222818,0.505598063196581,0.5244739725396517,0.6807875208066843,0.5809857331515387,0.5497611818556379,0.5126322056097548,28.108909694858966,28.108909694858966,34.05363066735178,34.05363066735178,31.337406566021855,31.337406566021855,30.023564521979225,30.023564521979225,29.851271608857047,29.851271608857047,10.615043317414035,14.14394063605286,11.52722240445813,11.29182825642738,10.34363637471732,10.753567795344537,14.741827620639555,12.073109448348234,11.326907215475785,10.494596526636812,259.2248695659135,259.2248695659135,0.0,288.02763285101497,0.0,259.2248695659135,288.02763285101497,0,0
+2017/06/25 20:00:00,256.9735004020357,0,824.1830374490183,0,0,0,71.34201049448951,0.0,15.804318806973692,0.0,108.41610117336799,0,39.380909295966944,2.8040238249091193e-09,18.598185425979178,0,0,0.0,469.279512323577,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7028.73524871448,5314.290478454526,7572.380621279722,5785.328508184334,47074.69202120895,9698.908887071331,7745.048883139834,9902.546506420504,6308.317815279941,57595.59413801835,9760.2417875668,7919.170083419334,10150.109436178165,6307.632197153918,58010.35320010955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04388011539165613,0.0013883362640284395,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0238483355640917,1.0238483355640917,1.0693950681564632,1.0693950681564632,1.0388197876690572,1.0388197876690572,1.0675876681237098,1.0675876681237098,1.0673431744912676,1.0673431744912676,0.5151287566443435,0.5981269942760866,0.5249541827648608,0.5412740779194474,0.5156393524176738,0.5164394384514832,0.6058451488887517,0.5319058370246861,0.5377049559242908,0.5190824485469281,27.13451505592883,27.13451505592883,29.130971628684392,29.130971628684392,27.782438346841815,27.782438346841815,29.050325020327193,29.050325020327193,29.03942454084823,29.03942454084823,10.548689661717717,12.50073441723751,10.764197694350557,11.13138978829852,10.559786023984188,10.577196325349888,12.697443604765468,10.91919735538643,11.050100204491187,10.63490650089139,256.9735004020357,256.9735004020357,0.0,285.52611155781744,0.0,256.9735004020357,285.52611155781744,0,0
+2017/06/25 21:00:00,232.54308194884004,0,828.3206569888251,0,0,0,49.28948709179342,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,2.910349041210706e-09,23.123602146904727,0,0,0.0,508.9074843759279,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4318.780766274489,3116.9828465247074,5034.845424241426,4809.004447262486,35043.59966240621,6197.055904635919,5288.060144822737,6380.789866548918,3948.500680553135,39230.53455728304,6157.4275315378745,5284.03270960596,6508.328593222078,3842.8946329409328,39222.36959387528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04410040532071782,0.0013953060838292044,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0152774531652249,1.0152774531652249,1.0498828080034661,1.0498828080034661,1.0230831312802493,1.0230831312802493,1.0442106251882508,1.0442106251882508,1.0595087980997064,1.0595087980997064,0.5145837871044212,0.5853359735601555,0.5155274940010388,0.5348932530039738,0.5142710880772067,0.5096975166036755,0.5805838361681495,0.5153427044568216,0.5251666651842632,0.5132785613590437,26.76732714121161,26.76732714121161,28.266487865879753,28.266487865879753,27.10162153337879,27.10162153337879,28.017752282629417,28.017752282629417,28.691262470933992,28.691262470933992,10.536858724765139,12.18042800164126,10.557354131335686,10.986450046815548,10.530076031402558,10.431354881275254,12.06323626045625,10.55333784256311,10.768904375507063,10.50857534704953,232.54308194884004,232.54308194884004,0.0,258.38120216537783,0.0,232.54308194884004,258.38120216537783,0,0
+2017/06/25 22:00:00,158.24927041028437,0,623.9330131163587,0,0,0,30.831428309056303,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,2.8040238249091193e-09,18.61795722397147,0,0,0.0,464.2264268099101,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1200.1206945189458,946.5954382626243,1988.8036707695835,3279.3682617723834,16931.178333981214,3932.910093934002,3729.168948614803,4178.194783163638,2486.6555588832402,27259.310530869658,3756.575171490933,3585.670377600998,4164.997784908839,2275.0630739660046,26898.53622161546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0332186557696573,0.0010510151132387935,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9919223442611635,0.9919223442611635,1.02094147752992,1.02094147752992,0.9942640545099557,0.9942640545099557,0.9984508851274063,0.9984508851274063,1.0109764039697164,1.0109764039697164,0.5238520172375714,0.5860052942446508,0.5208739806954825,0.5409875134411737,0.5213475703403548,0.5144322068602165,0.5751466577980588,0.5154002716034489,0.526973760453086,0.5171739068084596,25.78077338900748,25.78077338900748,27.009674796389376,27.009674796389376,25.878757936216758,25.878757936216758,26.054468752197693,26.054468752197693,26.584098765325635,26.584098765325635,10.739815073690167,12.197012749658953,10.67419652092157,11.124842677803485,10.68460600769717,10.5335702991526,11.930352781654733,10.554588871198675,10.809012192661186,10.593203131282337,158.24927041028437,158.24927041028437,0.0,175.83252267809374,0.0,158.24927041028437,175.83252267809374,0,0
+2017/06/25 23:00:00,102.99184630565559,0,476.28937663142176,0,0,0,17.93164829136669,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.580251792795157e-09,9.549216952870385,0,0,0.0,423.05384786260555,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2009.5943375038992,757.6575917926793,2499.9941849254355,2648.778668194559,2850.27399725541,1504.9159330026591,20571.125752413107,2236.0541562245426,2420.9295034576407,2747.6279840465795,1222.9527789760355,20004.307903284367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02535799920257343,0.0008023094187858793,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9031558414109587,0.9031558414109587,0.9352009384181581,0.9352009384181581,0.9329850053725532,0.9329850053725532,0.9539212604415421,0.9539212604415421,0.9649547218243371,0.9649547218243371,0.5248423276460901,0.5803394873135393,0.5206741702927192,0.5398533189677709,0.5224518397988511,0.5127858654078999,0.565782368546523,0.5121724232204453,0.5233512188555137,0.5171785027856204,22.224325125208125,22.224325125208125,23.47225222595074,23.47225222595074,23.38463269180562,23.38463269180562,24.220239445719173,24.220239445719173,24.66755514450186,24.66755514450186,10.76172078572722,12.057236898992542,10.66980760546872,11.098964756881244,10.708915521897822,10.497918109945843,11.704498185727559,10.484663751236283,10.72875355163994,10.593303368251753,102.99184630565559,102.99184630565559,0.0,114.43538478406175,0.0,102.99184630565559,114.43538478406175,0,0
+2017/06/26 00:00:00,45.274688394320854,0,476.3200030175976,0,0,0,0.2823419921681735,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,5.612359064767818,2.5802517927951574e-09,9.582666338381422,0,0,0.0,423.0844742487814,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1113.9946932602286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0253596297740586,0.000802361008931068,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9206131388397331,0.9206131388397331,0.9408034161640153,0.9408034161640153,0.9277780160388927,0.9277780160388927,0.928272775080635,0.928272775080635,0.938025020397607,0.938025020397607,0.677936978329437,0.8026897636754877,0.6729004320611218,0.7056221233046153,0.6986403112592003,0.6516612693775936,0.7699995592449439,0.6545699118881699,0.6700224416476593,0.6831790106506855,22.89904511687361,22.89904511687361,23.694649252633027,23.694649252633027,23.17951553640573,23.17951553640573,23.19895884769609,23.19895884769609,23.584201639515896,23.584201639515896,14.659614176137623,18.584796581884532,14.515212890600012,15.472950278754567,15.264716058735033,13.918354353410379,17.49182809384503,13.998937417789676,14.433191852204516,14.811072515724277,45.274688394320854,45.274688394320854,0.0,50.30520932702317,0.0,45.274688394320854,50.30520932702317,0,0
+2017/06/26 01:00:00,23.75416579075599,0,38.19925341330771,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5570703670781956,0,0,0.0,2.7089009007635676,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0020337565461661673,6.434663947544266e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9720844080172536,0.9720844080172536,1.0235014065408397,1.0235014065408397,0.9794901136720021,0.9794901136720021,0.9967288176188291,0.9967288176188291,1.0168249819073534,1.0168249819073534,0.6816122684686455,0.8362607446620022,0.676213128458734,0.7137473176303752,0.74559991149248,0.6625026087322248,0.8150613550889197,0.6670626673324829,0.6840440796697823,0.7233841515055097,24.959132712587106,24.959132712587106,27.119599066749572,27.119599066749572,25.264086306867213,25.264086306867213,25.98211715087993,25.98211715087993,26.83342263935623,26.83342263935623,14.765680005585168,19.754227432196473,14.610066636247325,15.71793368508672,16.705728847426016,14.220573847058105,19.010237901796117,14.349214059532514,14.836181257619884,16.012182562339206,23.75416579075599,23.75416579075599,0.0,26.393517545284432,0.0,23.75416579075599,26.393517545284432,0,0
+2017/06/26 02:00:00,28.3442233524807,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248602660078009,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.997310513763387,0.997310513763387,1.05481747510259,1.05481747510259,1.0036790596468173,1.0036790596468173,1.0256164510163768,1.0256164510163768,1.0755340382879819,1.0755340382879819,0.687067115440327,0.8443924932041115,0.6807695475627541,0.7200236443129038,0.7651841963783331,0.6669611605934078,0.8252524873346093,0.6710713911916034,0.6893695746737173,0.7416114087324845,26.006544148281336,26.006544148281336,28.483828149964594,28.483828149964594,26.274816565237188,26.274816565237188,27.210603397621384,27.210603397621384,29.40575492659903,29.40575492659903,14.924179388497834,20.044604007820197,14.74130814713233,15.909119488489964,17.334673041581908,14.346340732669319,19.36553989199004,14.463044770447667,14.991467165074042,16.579652362139456,28.3442233524807,28.3442233524807,0.0,31.49358150275633,0.0,28.3442233524807,31.49358150275633,0,0
+2017/06/26 03:00:00,23.722024285850207,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249288621724163,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9831033044393732,0.9831033044393732,1.0429397376206926,1.0429397376206926,0.9878377142425605,0.9878377142425605,1.012328109486414,1.012328109486414,1.0682035677623363,1.0682035677623363,0.6831482686128141,0.844145062554279,0.6766231988535066,0.7162806837534339,0.7825850067071811,0.6630540471883214,0.8265815260292207,0.6673064548311599,0.6856116349178913,0.7522211732293631,25.413639605584365,25.413639605584365,27.962181713094736,27.962181713094736,25.610361010961128,25.610361010961128,26.641607836281466,26.641607836281466,29.077793615224564,29.077793615224564,14.810180819510336,20.035727806572893,14.621841377432006,15.794899376177185,17.907236173963327,14.236082169372551,19.412196951346303,14.356116716319349,14.881762201954132,16.916532336972082,23.722024285850207,23.722024285850207,0.0,26.357804762055785,0.0,23.722024285850207,26.357804762055785,0,0
+2017/06/26 04:00:00,59.3448825816388,0,88.72588128136032,0,0,0,3.6333406582452117,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,15.6783159872436,0.0,0.5250923865158819,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,654.0895429185309,0.0,0.0,0.0,0.0,0.0,6321.78452567611,0.0,0.0,0.0,0.0,5225.255395607645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9419586533607098,0.9419586533607098,0.9554180476836588,0.9554180476836588,0.9424751041993996,0.9424751041993996,0.9581917948704712,0.9581917948704712,0.9632870396427399,0.9632870396427399,0.5211861392099386,0.6028138454311448,0.518390639136355,0.5371440837643086,0.5349026136945593,0.5058117384782014,0.5876943782783199,0.5084577432514347,0.5158857884214959,0.524119396710608,23.740662733430923,23.740662733430923,24.280642054479785,24.280642054479785,23.761250251972058,23.761250251972058,24.39280869337493,24.39280869337493,24.59963888324104,24.59963888324104,10.681056665692253,12.619877808624793,10.619771626784129,11.037376072082324,10.986661382101786,10.348190566694456,12.238952116177174,10.404750049436657,10.565145652353607,10.7457253365301,59.3448825816388,59.3448825816388,0.0,65.93875842404312,0.0,59.3448825816388,65.93875842404312,0,0
+2017/06/26 05:00:00,81.86545896594995,0,212.9421150752648,0,0,0,0.4426189067268022,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,8.111654431133513,0.0,0.5251425981337411,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1790.414143970388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9524491662394833,0.9524491662394833,0.9585163997036549,0.9585163997036549,0.9523414324293138,0.9523414324293138,0.994000282409666,0.994000282409666,0.9662405588354769,0.9662405588354769,0.6787540593203182,0.7963184377959797,0.6747963982943876,0.7007177863329057,0.7450170767039567,0.6503506117966223,0.7594734252531954,0.6542278017652172,0.6629679749340641,0.7247770101710163,24.160919225202548,24.160919225202548,24.405955000770845,24.405955000770845,24.15658127924283,24.15658127924283,25.867710426710957,25.867710426710957,24.719994850075253,24.719994850075253,14.683143940447664,18.368218845247412,14.569442715478147,15.326457373868962,16.687262893065125,13.882162831969154,17.149578657812327,13.989440331725916,14.233660657695893,16.05504248322984,81.86545896594995,81.86545896594995,0.0,90.96162107327773,0.0,81.86545896594995,90.96162107327773,0,0
+2017/06/26 06:00:00,95.08452109537193,0,638.2564788422779,0,0,0,0.5611955591350166,0.0,10.576478033044985,0.0,73.80580873715317,0,9.615809677281883,2.5219618555515602e-09,0.5252290862349017,0,0,0.0,407.56918751074113,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2303.545728644177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0339812476943918,0.001075142990166972,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9757899588350849,0.9757899588350849,0.9837305893219547,0.9837305893219547,0.9758782316293333,0.9758782316293333,1.0307269640607386,1.0307269640607386,0.9909080007460882,0.9909080007460882,0.8371139509855963,0.9645046223605535,0.8324903478877972,0.8580925143916748,0.982116504392923,0.8152941728574296,0.9406164021925474,0.8198553818095878,0.8273861862513785,0.9541001504020337,25.11145540268886,25.11145540268886,25.43965470157451,25.43965470157451,25.115090483016658,25.115090483016658,27.4311775619054,27.4311775619054,25.73839502934794,25.73839502934794,19.784564892772522,24.649214176860866,19.620527994938485,20.540046851752763,25.372745137832638,19.01830605184925,23.687205400997144,19.1768320712236,19.44048126866035,24.227453889130118,95.08452109537193,95.08452109537193,0.0,105.64946788374658,0.0,95.08452109537193,105.64946788374658,0,0
+2017/06/26 07:00:00,162.88385812676862,0,783.9351925662893,0,0,0,17.675553801364153,0.0,9.397200235102993,0.0,69.33401494192633,0,39.380909295966944,3.0130954576593364e-09,27.096179849395106,0,0,0.0,517.7575487222084,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2915.360481749993,2490.9287285542378,636.9634658921469,238.57738366083385,1702.3544942976432,0.11931091344790692,25287.80950075968,546.5876091194175,191.7960204416426,1802.8692992024344,0.19952383696522494,24654.298780696376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.041737290318252615,0.0013205387723782423,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9049784187235844,0.9049784187235844,0.8883184514756661,0.8883184514756661,0.9556800909679838,0.9556800909679838,1.0338370650890953,1.0338370650890953,1.0426532222883456,1.0426532222883456,0.6409484986709958,0.7142739215794961,0.6354423058027976,0.6429333729350184,0.6933700365944097,0.6350552648746569,0.7053519096923909,0.6339558408393483,0.6242625949957951,0.6888665357884907,22.294191380133697,22.294191380133697,21.660577071787245,21.660577071787245,24.29122582141038,24.29122582141038,27.56588376611279,27.56588376611279,27.949661722791745,27.949661722791745,13.62472333570362,15.733909567693601,13.47573805143523,13.678752037156173,15.108922755765576,13.465315055714782,15.464851962321475,13.435743059127802,13.177286185586695,14.976746639021684,162.88385812676862,162.88385812676862,0.0,180.98206458529845,0.0,162.88385812676862,180.98206458529845,0,0
+2017/06/26 08:00:00,203.2406306852283,0,835.1592631277786,0,0,0,43.814268880081706,0.0,11.234505180524165,0.0,83.2008179303116,0,39.380909295966944,2.962183280852261e-09,25.610129395381737,0,0,0.0,515.7460905148814,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2021.3313191347638,851.6120827823039,2428.8932164878834,5332.288975524047,22720.49104293461,5614.808302007788,4159.156423845191,5776.8399364881225,4280.519745695464,42507.580940649204,5544.641634743508,3965.4816827764716,5847.286073375754,4252.095484716076,41921.803392821894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04446449777695685,0.0014068257153512296,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0093675287623503,1.0093675287623503,0.9891856261099761,0.9891856261099761,1.0280419021001108,1.0280419021001108,1.1449852560939011,1.1449852560939011,1.0733675666094484,1.0733675666094484,0.610526775644044,0.6513550934453686,0.595161647698508,0.6605382670458578,0.6040914688151364,0.6112694895278374,0.6451209137905032,0.5962808263258345,0.6623424479455261,0.6037368194152681,26.515737725101715,26.515737725101715,25.66652586037077,25.66652586037077,27.315167620878498,27.315167620878498,32.60411541860853,32.60411541860853,29.30863103785694,29.30863103785694,12.818021898199333,13.909893173630962,12.425845423138128,14.165436927621897,12.652521352959695,12.837238394298495,13.73849526980662,12.454065127710393,14.216072050258418,12.643452883365185,203.2406306852283,203.2406306852283,0.0,225.82292298358698,0.0,203.2406306852283,225.82292298358698,0,0
+2017/06/26 09:00:00,241.55674409291734,0,848.1775730243744,0,0,0,63.908262661023926,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.8576710802067703e-09,20.79404804602876,0,0,0.0,475.52887164266104,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5222.262390998094,3095.8530952694186,5542.984136928435,5629.57396343768,41145.323566413346,8933.374037152238,6389.94283305173,8616.408461593666,6131.830125687881,56600.9038784288,8961.997487656303,6281.1370150352195,8717.468456371427,6171.224003298418,56201.08050298625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04515760223860055,0.0014287550573839724,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0652165185915283,1.0652165185915283,1.0627191951407082,1.0627191951407082,1.0725070700865063,1.0725070700865063,1.0976748811654786,1.0976748811654786,1.097046220425767,1.097046220425767,0.5994293661029132,0.6371825328689718,0.5888285131635893,0.6262949534662509,0.5929235124217718,0.6017403307366499,0.6341405061823636,0.5920012020758187,0.6262367020018439,0.5930364693396091,28.94469936133622,28.94469936133622,28.833669148341954,28.833669148341954,29.27010040915738,29.27010040915738,30.4077084570483,30.4077084570483,30.379026145163337,30.379026145163337,12.533746065957146,13.522682581616095,12.267181765166086,13.231138425951954,12.369574667902825,12.59250405619035,13.440706471362674,12.346449376241978,13.229592418069188,12.372409399301048,241.55674409291734,241.55674409291734,0.0,268.3963823254637,0.0,241.55674409291734,268.3963823254637,0,0
+2017/06/26 10:00:00,271.19699509856855,0,939.5686754361458,0,0,0,62.50875260893459,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.804052533349901e-09,18.613747403913187,0,0,0.0,478.19409277307204,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6904.6113030489905,4074.801211501013,7262.178831622236,6429.474337778834,51118.876656824636,8069.795903200422,5776.903312923447,7700.1487004569535,5498.492678143442,49020.61493621083,8192.860822194156,5727.025441922929,7888.085705200811,5563.8509414711025,49019.98462347748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0500233322250021,0.0015827033624601348,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1102254294868794,1.1102254294868794,1.1079535468175572,1.1079535468175572,1.1106600598600762,1.1106600598600762,1.1300774895318768,1.1300774895318768,1.140253556548355,1.140253556548355,0.6042674234779698,0.6365341357589647,0.5919858549689933,0.6315566344599672,0.5858316137100034,0.6095955364430359,0.635828359077836,0.5974389920903974,0.6353774627686323,0.5890415626108567,30.983129239084306,30.983129239084306,30.878572785344076,30.878572785344076,31.003151532922388,31.003151532922388,31.904070246522906,31.904070246522906,32.38114706035583,32.38114706035583,12.657022581610576,13.505176005866446,12.346064887096006,13.371391951373298,12.192707342506893,12.793961447863907,13.486140922860272,12.48332511496045,13.473991378152931,12.272490987576944,271.19699509856855,271.19699509856855,0.0,301.32999455396504,0.0,271.19699509856855,301.32999455396504,0,0
+2017/06/26 11:00:00,305.68859951420274,0,982.0381618353302,0,0,0,80.8859291929385,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.8576710802067707e-09,20.86137224710462,0,0,0.0,467.4280504034403,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9386.554115899578,5537.96413296456,9717.9378455557,7518.288650298151,64880.373452397216,11203.126197876714,7653.910244107475,10779.676813777562,7326.136439775229,66832.41864416763,11474.725910379095,7685.949751345384,11109.279589420268,7468.401922392439,67265.81556609842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05228443913832638,0.0016542432090761814,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1514488362666417,1.1514488362666417,1.151175527881437,1.151175527881437,1.1472790300038826,1.1472790300038826,1.155558209464461,1.155558209464461,1.1778288159093044,1.1778288159093044,0.6269345653626858,0.6560901275987584,0.6134047686477941,0.6515772132029903,0.6046228423496356,0.6371897405652212,0.6602146177260647,0.6233287287086221,0.6599719989588513,0.6111853988583885,32.90984585644688,32.90984585644688,32.896891463887556,32.896891463887556,32.7124603343796,32.7124603343796,33.10490713461088,33.10490713461088,34.17114057658404,34.17114057658404,13.248123563223956,14.041200439767067,12.892618570532221,13.916031054200715,12.666118917650678,13.522877290272433,14.156368486114317,13.152601243350688,14.149573443661112,12.835061485159343,305.68859951420274,305.68859951420274,0.0,339.65399946022524,0.0,305.68859951420274,339.65399946022524,0,0
+2017/06/26 12:00:00,305.13692046453787,0,965.602284383078,0,0,0,97.58321187129032,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.804052533349901e-09,18.610035505801232,0,0,0.0,486.48252546373214,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12055.607143740295,7268.9577553140625,11861.354813005082,8289.091567281233,73059.71815170998,14879.41102595949,9873.277492118064,14184.242984690756,9562.859050890842,81341.82588966488,15314.635830886646,10025.144590190106,14630.216763867014,9820.537603541581,82435.44204061857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05140938084860446,0.0016265569747553243,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1770579604506894,1.1770579604506894,1.172241049086282,1.172241049086282,1.1672637214433141,1.1672637214433141,1.1768643311914533,1.1768643311914533,1.1809162730819847,1.1809162730819847,0.6446130091324896,0.6684075110829751,0.630056571525937,0.6661743147467059,0.6042028106926878,0.662994720513533,0.6819913278345768,0.6470612904210541,0.6818465592299028,0.615268724555372,34.13398184150229,34.13398184150229,33.902191722761955,33.902191722761955,33.663424030617946,33.663424030617946,34.12465084678122,34.12465084678122,34.32014916637161,34.32014916637161,13.72460555096194,14.387324343542403,13.331284393126808,14.324082811772897,12.655369517206296,14.234413069440635,14.776652584803927,13.791661933852737,14.7724612544434,12.941123518740056,305.13692046453787,305.13692046453787,0.0,339.0410227383754,0.0,305.13692046453787,339.0410227383754,0,0
+2017/06/26 13:00:00,306.8548200652641,0,895.643529314253,0,0,0,101.8757422834584,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.749513339911977e-09,16.32487830997362,0,0,0.0,452.0141229074515,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14672.880149626428,8808.682940948776,12999.059675696928,8444.679587163038,77488.14102298934,15973.638965491173,10450.567743861735,14492.659684257573,9842.409352978037,78906.42819584833,16575.579574711326,10685.867521893106,14992.61198572251,10126.33721027917,80752.0942830618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04768472490982395,0.0015087114571516681,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2042736094555613,1.2042736094555613,1.1813488784182287,1.1813488784182287,1.1618458289143798,1.1618458289143798,1.1740576770258413,1.1740576770258413,1.1729955646236714,1.1729955646236714,0.6636330991692205,0.678998485915943,0.6271142973468228,0.662474483281796,0.5947538078446843,0.6912914065114937,0.6966770837482985,0.6460836619130808,0.6820325616715712,0.609932193378003,35.4565639311367,35.4565639311367,34.34105064557589,34.34105064557589,33.40438659935559,33.40438659935559,33.98952540491733,33.98952540491733,33.93845259167635,33.93845259167635,14.252381255733766,14.690188390565936,13.252899609217693,14.219783216919353,12.41557539574275,15.047806812019047,15.206541368704265,13.764854334269472,14.777846549785735,12.802655317711839,306.8548200652641,306.8548200652641,0.0,340.94980007251564,0.0,306.8548200652641,340.94980007251564,0,0
+2017/06/26 14:00:00,280.99800963716757,0,849.2465494755735,0,0,0,91.98299763273702,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.6940442382242676e-09,14.114185451542552,0,0,0.0,441.1074955813161,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13802.08215240263,9182.897603480418,12319.01912290967,8142.411008447827,70732.74296533878,13585.967972248793,9955.28054542804,12221.979233434298,8796.940319285257,64128.67119678666,14090.417481876697,10238.232137840434,12616.697886711043,9035.527746790814,66270.72313273021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04521451533666038,0.0014305557481348837,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1821237030728688,1.1821237030728688,1.2155521606385171,1.2155521606385171,1.1521377421684784,1.1521377421684784,1.16869099982674,1.16869099982674,1.1514981853926431,1.1514981853926431,0.6456089966918084,0.6937034516382286,0.6131374955761114,0.6501518784240184,0.5707511499221967,0.6692876024287422,0.718601075369817,0.6321475171987891,0.6706641992204847,0.5841028944380044,34.378500564923584,34.378500564923584,36.01093645537554,36.01093645537554,32.942509374819366,32.942509374819366,33.731814616119166,33.731814616119166,32.912185179396715,32.912185179396715,13.751853460522597,15.11874320782485,12.885675795130624,13.87668165838761,11.823865073508998,14.412306833669618,15.865637323091818,13.38721733136775,14.451450502374882,12.149925075604102,280.99800963716757,280.99800963716757,0.0,312.220010707964,0.0,280.99800963716757,312.220010707964,0,0
+2017/06/26 15:00:00,266.6000378332511,0,861.0651398482963,0,0,0,84.37876589174786,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.694044238224269e-09,14.02108838530343,0,0,0.0,452.92608595403885,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12621.374743435656,8662.482796273565,11890.406510196666,7923.657758102613,68565.1102541491,11270.4229113191,8971.621797990263,10452.657678579772,8023.386283641441,55161.89875281418,11477.121880293129,9118.10585161848,10642.691395347485,8142.437950960758,57061.28500827052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04584374584221281,0.0014504641627207191,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1474309157675033,1.1474309157675033,1.1788463695174227,1.1788463695174227,1.1377464235614552,1.1377464235614552,1.1565541823513281,1.1565541823513281,1.1444564894585196,1.1444564894585196,0.6068299189770362,0.6604813935830371,0.5901548465313973,0.6298935346651338,0.5510480701117504,0.6192532144302715,0.6748390994026652,0.6016577184040971,0.6418712643129053,0.5598426666237591,32.71964046340398,32.71964046340398,34.22021868272361,34.22021868272361,32.263296327527755,32.263296327527755,33.15226314961181,33.15226314961181,32.57916323023841,32.57916323023841,12.722727986928959,14.163843041853,12.300266220786455,13.326931117538109,11.356825836389532,13.045315889061655,14.570665875552251,12.590399581480526,13.649819962076222,11.563211656799538,266.6000378332511,266.6000378332511,0.0,296.2222642591679,0.0,266.6000378332511,296.2222642591679,0,0
+2017/06/26 16:00:00,294.3658512499928,0,897.44477204748,0,0,0,89.23236521953245,0.0,16.568294279967066,0.0,131.64086955684016,0,39.380909295966944,2.694044238224269e-09,14.11143769253779,0,0,0.0,436.0701893844064,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13067.627348440932,10810.99106944877,12803.396276633179,8285.383035141207,73219.8546990452,11336.21175286923,10415.88073652258,10928.214882457136,8183.316678625883,57105.28526219832,11496.999840078579,10705.533790700962,11144.346795519814,8307.819957452653,59018.28849774039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04778062440713346,0.0015117456503990771,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1547342222980461,1.1547342222980461,1.3005659500035065,1.3005659500035065,1.1586412782031101,1.1586412782031101,1.1657484909118008,1.1657484909118008,1.1622480863408349,1.1622480863408349,0.5975584138128285,0.7259939328062922,0.5914608059942303,0.6255383154473313,0.5443850788191921,0.6109018207099117,0.7572577918589524,0.6064686598130187,0.6393450414474738,0.556423114657342,33.065752091924324,33.065752091924324,40.297536583537955,40.297536583537955,33.251599865665526,33.251599865665526,33.5908874957654,33.5908874957654,33.42358796509575,33.42358796509575,12.486345505229949,16.092556963852644,12.332917057746172,13.211068534957462,11.202695517181255,12.827722578100264,17.078142055628163,12.7134476193918,13.581201653043692,11.482565393864732,294.3658512499928,294.3658512499928,0.0,327.0731680555475,0.0,294.3658512499928,327.0731680555475,0,0
+2017/06/26 17:00:00,304.73525692611076,0,925.2704765051357,0,0,0,92.7937745227983,0.0,16.630907673226492,0.0,133.89528835348938,0,39.380909295966944,2.804052533349902e-09,18.602401875371285,0,0,0.0,463.8958938420619,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12860.773603951817,11064.78704698025,13309.647746345683,8181.956135097026,74964.06323186717,12310.039155270137,10930.640963193078,12516.338331181238,8350.514575638808,64200.56697063659,12531.4324565025,11335.621007445796,12887.921729046258,8519.137916697995,65960.15546235094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049262085523143845,0.001558618047446063,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1523402630200612,1.1523402630200612,1.2775063318364168,1.2775063318364168,1.1786426115561215,1.1786426115561215,1.164118760068285,1.164118760068285,1.170735648310657,1.170735648310657,0.5978490275399057,0.7284481818487609,0.6095950543050351,0.6258132320955413,0.5554825839718123,0.6094938129479669,0.7556445900797661,0.6283521365448403,0.6376809796470206,0.5688447801850349,32.95211446437189,32.95211446437189,39.11711240990975,39.11711240990975,34.21038864259786,34.21038864259786,33.51294852687889,33.51294852687889,33.82989622958951,33.82989622958951,12.493698235238142,16.168408693029406,12.793949000600549,13.218357850467726,11.460472947685602,12.791335495582132,17.026261177566667,13.285830970005236,13.536152929710198,11.77794102143811,304.73525692611076,304.73525692611076,0.0,338.59472991790085,0.0,304.73525692611076,338.59472991790085,0,0
+2017/06/26 18:00:00,290.4315217150727,0,941.5975993346193,0,0,0,94.14712091907126,0.0,16.923524308209636,0.0,110.93442390708215,0,39.380909295966944,2.9621832808522656e-09,25.61356807932619,0,0,0.0,515.7133691840895,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11686.376965736505,9007.679236309252,12144.224157545023,7596.414418003004,72082.33004990371,13289.67398864431,10322.742823983886,13503.454159313673,8559.141128762663,73823.07394997231,13448.394312696782,10536.11333320232,13824.915518290452,8679.652539121927,75215.68082774992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05013135363619427,0.0015861210846131201,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1455798720569044,1.1455798720569044,1.2075993300400616,1.2075993300400616,1.1577186279852092,1.1577186279852092,1.1438198445331542,1.1438198445331542,1.1744278780036725,1.1744278780036725,0.5985058439910471,0.6835341804186812,0.6069951256577931,0.6208251448212894,0.5749576914996106,0.6043665513301569,0.6939196629605134,0.6167374295948187,0.6261861912137988,0.5862951133326529,32.63218564175541,32.63218564175541,35.61965803049502,35.61965803049502,33.20766894834364,33.20766894834364,32.549132161728124,32.549132161728124,34.00733495906799,34.00733495906799,12.510329653549192,14.821377449020076,12.72697386002595,13.08661058161232,11.925757549480139,12.659559037542081,15.125114092424838,12.979449228717385,13.22825196878324,12.204200057099143,290.4315217150727,290.4315217150727,0.0,322.7016907945252,0.0,290.4315217150727,322.7016907945252,0,0
+2017/06/26 19:00:00,282.2179948050666,0,908.1417551357802,0,0,0,91.5097306181254,0.0,19.10774862870365,0.0,101.68988858149199,0,39.380909295966944,3.013095457978349e-09,27.0977424753112,0,0,0.0,517.7478774977947,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10713.959577455942,7565.461883836274,10688.875933062327,7094.299483627643,67778.61660171598,12997.744614526215,9505.619126484406,12927.886987881624,8356.00509020493,74405.55467130861,13004.11994922898,9498.90029933593,13027.945649236875,8381.915759691958,75462.8388692588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048350139710081244,0.0015297647175994313,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1293052049611216,1.1293052049611216,1.16623278637285,1.16623278637285,1.1289159306894612,1.1289159306894612,1.1256148773772587,1.1256148773772587,1.1623714812227568,1.1623714812227568,0.5909821193565594,0.6520253438933706,0.5933149175808182,0.6111487160231256,0.5800743987581605,0.5909656451019605,0.6505224083705309,0.5949606040296445,0.6109060512005281,0.5878365281186094,31.8680010507278,31.8680010507278,33.61406382789512,33.61406382789512,31.84982755606309,31.84982755606309,31.69591527575136,31.69591527575136,33.42947910381197,33.42947910381197,12.320940620570283,13.928420850812373,12.379399614038391,12.834111949193357,12.050731257089225,12.32052862214087,13.886902453853324,12.420781935807511,12.827832036129266,12.24248729529927,282.2179948050666,282.2179948050666,0.0,313.5755497834073,0.0,282.2179948050666,313.5755497834073,0,0
+2017/06/26 20:00:00,277.4826678314483,0,847.0680091281805,0,0,0,84.9763559708455,0.0,23.798027217215836,0.0,106.16168237671882,0,39.380909295966944,2.9103782421513144e-09,23.165692967790786,0,0,0.0,492.1644840027392,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8084.711712852147,5419.849521568138,8528.162272506663,6323.072083208432,57538.31447912595,12357.320293208011,8949.213357634051,12334.373080919631,7656.245412048042,76363.09559038356,12384.761123709788,8926.784481428625,12458.876252997354,7652.323655628677,76965.14619162286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045098528234905816,0.0014268859970850486,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.120162588105513,1.120162588105513,1.1469235718880788,1.1469235718880788,1.1180421677348498,1.1180421677348498,1.106832147603402,1.106832147603402,1.1569364826567632,1.1569364826567632,0.608299670903559,0.6584361420001762,0.605069807242358,0.6218705716099567,0.6055535430263957,0.6068150479687245,0.6550545266088301,0.6048641406506942,0.6190666430896686,0.6103141111887013,31.442485540879062,31.442485540879062,32.695659548197014,32.695659548197014,31.344190853669218,31.344190853669218,30.82702784701503,30.82702784701503,33.17044881180496,33.17044881180496,12.760542765355126,14.106617753337744,12.6775659996689,13.114133366612606,12.68996457974363,12.722345854601059,14.012399158809203,12.672297658159167,13.040421768998641,12.81252396527411,277.4826678314483,277.4826678314483,0.0,308.31407536827584,0.0,277.4826678314483,308.31407536827584,0,0
+2017/06/26 21:00:00,256.5319189495122,0,835.1526967946527,0,0,0,62.51319128115921,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.962183280852265e-09,25.554765417225543,0,0,0.0,515.7395241817554,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5120.822156228194,3222.3996506561184,5902.712229522939,5323.202985364046,44441.57222841718,8219.135437003782,6146.195876660548,8460.51207211571,4900.435742380579,55418.51424008019,8155.347934780607,6015.178172402354,8504.270921233032,4793.605596275533,55396.14355837463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04446414818051751,0.0014068146543635778,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1107243351666563,1.1107243351666563,1.1334436108150714,1.1334436108150714,1.106721058203359,1.106721058203359,1.0868030022096011,1.0868030022096011,1.1471892046581487,1.1471892046581487,0.6092239050467814,0.653469678398878,0.6027383305740721,0.6194298938073449,0.6088030007641029,0.603253227755968,0.6436853873331028,0.5974746209245997,0.6121145972500747,0.6100403501501025,31.006113067533065,31.006113067533065,32.06151027754875,32.06151027754875,30.821923947875362,30.821923947875362,29.913595319288802,29.913595319288802,32.70821434578011,32.70821434578011,12.784370105239148,13.968412661107465,12.617950605678217,13.049951916704387,12.773514329720797,12.631096126243051,13.699266657111579,12.48422616750905,12.859133280753454,12.805449415406457,256.5319189495122,256.5319189495122,0.0,285.035465499458,0.0,256.5319189495122,285.035465499458,0,0
+2017/06/26 22:00:00,178.17615372832273,0,630.8572642525822,0,0,0,41.56560216098041,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8576710802067703e-09,20.85759395916273,0,0,0.0,471.1506779461336,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1191.2815899365637,586.1814660711582,2202.726256304601,3589.0155715628075,21468.69494176132,5566.88037501243,4400.430745191844,5975.332969241343,3164.5200819845213,41491.84724003628,5292.69357829852,4101.6084702887165,5818.50904967619,2899.9739115860884,41034.87644373054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03358730802898882,0.0010626790137522203,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0909783866192355,1.0909783866192355,1.1120666120394849,1.1120666120394849,1.0845568583163718,1.0845568583163718,1.0407789312250995,1.0407789312250995,1.099809779528732,1.099809779528732,0.6187175553954709,0.6580921063720148,0.6105536645016123,0.6280671419790748,0.6157504489676868,0.6077453871086123,0.6430846748148658,0.6002043013858495,0.6159094494799698,0.612808751862981,30.102880309185636,30.102880309185636,31.067991161971037,31.067991161971037,29.812019134171805,29.812019134171805,27.86783376761238,27.86783376761238,30.505212708185027,30.505212708185027,13.03126859412906,14.097009587568493,12.81871718533965,13.278243109568521,12.953683751935557,12.746270762963945,13.682877514795607,12.553423539603642,12.957831659657927,12.877140489375918,178.17615372832273,178.17615372832273,0.0,197.9735041425808,0.0,178.17615372832273,197.9735041425808,0,0
+2017/06/26 23:00:00,111.62847889892923,0,499.07762899517206,0,0,0,24.290650400284747,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6376359666180456e-09,11.826847437168595,0,0,0.0,445.84210022635585,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2099.0319043624895,2663.705540508967,3418.3003972045985,2978.4423763469986,3818.1147098585425,1844.6437755351003,29222.215059602997,3013.1927250125327,2584.7963556273926,3522.6012975384688,1500.9786670794579,28377.665147307725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.026571262637829943,0.0008406962281630177,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.007129981305936,1.007129981305936,1.0220570524171593,1.0220570524171593,1.0303475266923965,1.0303475266923965,0.9998788668103732,0.9998788668103732,1.062399331239457,1.062399331239457,0.617786627982201,0.6531232281614497,0.6098760705508984,0.6255964822316045,0.614265619943292,0.6033279433237317,0.6344428577371585,0.5961449948394654,0.6098505029855594,0.6088470744567726,26.420826323678625,26.420826323678625,27.057548035638575,27.057548035638575,27.41476756938593,27.41476756938593,26.114549941203663,26.114549941203663,28.819464141896873,28.819464141896873,13.006885278039235,13.95881164549266,12.801205653306965,13.212610532684891,12.9150014073564,12.633004599046217,13.448836232860018,12.450637284961502,12.800545283050937,12.77465069833741,111.62847889892923,111.62847889892923,0.0,124.03164322103248,0.0,111.62847889892923,124.03164322103248,0,0
+2017/06/27 00:00:00,45.64827285740838,0,468.37690195773644,0,0,0,0.2615209822124993,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,6.041355359822476,2.5802792634245804e-09,9.54807551636995,0,0,0.0,415.1413731889202,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1038.771643046448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024936733190123683,0.0007889808557986031,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0074995603284496,1.0074995603284496,1.0186399696027677,1.0186399696027677,1.012101241393766,1.012101241393766,0.9692108154263968,0.9692108154263968,1.025393694636813,1.025393694636813,0.7656474353384087,0.8476135694065495,0.7581219629326699,0.772550915198218,0.805986738571032,0.7342262318888482,0.8061884949963429,0.7288039009310339,0.7385450591163465,0.7889131254151308,26.43648998042329,26.43648998042329,26.91105539280335,26.91105539280335,26.63195081690172,26.63195081690172,24.84137566301922,24.84137566301922,27.201011011822075,27.201011011822075,17.349748369474725,20.160388011054664,17.10597974791972,17.575495478030618,18.69754332255968,16.34800925327214,18.70445770561065,16.17942414219857,16.48318913118186,18.118654249419123,45.64827285740838,45.64827285740838,0.0,50.7203031748982,0.0,45.64827285740838,50.7203031748982,0,0
+2017/06/27 01:00:00,23.722062121548703,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.524966697870909,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0559658295607717,1.0559658295607717,1.0909139792339324,1.0909139792339324,1.0598285987825424,1.0598285987825424,1.0194008527594227,1.0194008527594227,1.116190165811678,1.116190165811678,0.7583469371971255,0.8618495405841086,0.7512807975868058,0.7631637406252775,0.8627366656733977,0.7315096068730562,0.824640296959593,0.7271842994434417,0.7336619952538538,0.8358676545278404,28.534531497584936,28.534531497584936,30.09995592628843,30.09995592628843,28.70543167024489,28.70543167024489,26.94363732776472,26.94363732776472,31.25846113845249,31.25846113845249,17.113232122074976,20.677275841089767,16.886478841404426,17.269027870991792,20.709764223465,16.263389004838928,19.344073356795718,16.129314426420436,16.330407736287754,19.74026056601805,23.722062121548703,23.722062121548703,0.0,26.35784680172078,0.0,23.722062121548703,26.35784680172078,0,0
+2017/06/27 02:00:00,28.34458003858083,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5252169521079335,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0782264676547424,1.0782264676547424,1.1191419561344351,1.1191419561344351,1.0815930526638402,1.0815930526638402,1.0427883357185088,1.0427883357185088,1.179178654820919,1.179178654820919,0.7687523659428803,0.8734458928528652,0.7618483775206619,0.7741617463081402,0.8863422778191654,0.7359563236131093,0.8330084596707844,0.7317963063479692,0.7376817666847487,0.851946010063594,29.526687307586272,29.526687307586272,31.395154290069826,31.395154290069826,29.678256645895132,29.678256645895132,27.955565463115178,27.955565463115178,34.23625203573306,34.23625203573306,17.45102952439143,21.1045236576212,17.226385066476254,17.628462845724755,21.586169796582794,16.402065193348108,19.638865141830607,16.27230444902969,16.45610391498468,20.31680191039827,28.34458003858083,28.34458003858083,0.0,31.493977820645366,0.0,28.34458003858083,31.493977820645366,0,0
+2017/06/27 03:00:00,23.77490473890902,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5778093152312269,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0487711658801486,1.0487711658801486,1.0919794777019418,1.0919794777019418,1.0511507047402202,1.0511507047402202,1.0158176380670128,1.0158176380670128,1.1739070195168284,1.1739070195168284,0.7509749070795961,0.8573169294170132,0.7447007920814626,0.7551172613626502,0.9063273529185963,0.7160211781998997,0.8154504270552249,0.712492013979472,0.7165764348208513,0.8626423488963681,28.21764849000914,28.21764849000914,30.14835267481702,30.14835267481702,28.322246718906186,28.322246718906186,26.7903884563609,26.7903884563609,33.982278793475004,33.982278793475004,16.87671103887662,20.511790694529154,16.67724814370436,17.009326330055302,22.345987799550798,15.787002678090431,19.02372222082674,15.679899025161376,15.803902554581356,20.706308598265252,23.77490473890902,23.77490473890902,0.0,26.41656082101002,0.0,23.77490473890902,26.41656082101002,0,0
+2017/06/27 04:00:00,59.72590203206781,0,88.72588128136032,0,0,0,5.029798902160568,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,14.662892372343846,0.0,0.525077207929259,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,506.9555265713775,0.0,0.0,0.0,0.0,0.0,10615.538814146437,0.0,0.0,0.0,0.0,6021.487946418253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0271274919048787,1.0271274919048787,1.035485525229593,1.035485525229593,1.0269884394649222,1.0269884394649222,1.0019368132537356,1.0019368132537356,1.057884919428138,1.057884919428138,0.6078170542388697,0.6621731511994092,0.6056676047724853,0.6091097322716509,0.6144943419362828,0.5837550172709508,0.6323664329752563,0.5830507181873421,0.5829889235290596,0.6128800077732534,27.275720693654463,27.275720693654463,27.63742687886912,27.63742687886912,27.26972479107542,27.26972479107542,26.20127242371339,26.20127242371339,28.619370809068457,28.619370809068457,12.74811533687155,14.21131466814542,12.692889563820131,12.781424651994868,12.920953773682456,12.141331501214381,13.393084311885133,12.123949350782539,12.122425281448528,12.878990137209271,59.72590203206781,59.72590203206781,0.0,66.36211336896423,0.0,59.72590203206781,66.36211336896423,0,0
+2017/06/27 05:00:00,83.56514631244045,0,230.72711671416172,0,0,0,5.782068551971594,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,4.472093535331851,0.0,0.5249411951811069,0,0,0.0,17.78500163889691,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1786.3597678928634,18265.050809388307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.012284082594975501,0.00038865981059311424,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0572787598235958,1.0572787598235958,1.062576507271563,1.062576507271563,1.0571819478966997,1.0571819478966997,1.0379426519214021,1.0379426519214021,1.063621980669425,1.063621980669425,0.771678484169527,0.8501661372995994,0.7689108144198339,0.7718581405424074,0.833790705390791,0.7300489816922975,0.7957701870468038,0.729494524305199,0.727173781189146,0.8240995072209683,28.592559376375434,28.592559376375434,28.82733199622109,28.82733199622109,28.588278445926022,28.588278445926022,27.744251098109928,27.744251098109928,28.873781093604265,28.873781093604265,17.54685435957498,20.252448768490027,17.456209060125474,17.552749662320224,19.66657187562042,16.218023042233526,18.349662699096854,16.200826010051586,16.128989365206735,19.325123583451713,83.56514631244045,83.56514631244045,0.0,92.85016256937827,0.0,83.56514631244045,92.85016256937827,0,0
+2017/06/27 06:00:00,95.81188840941819,0,622.099201176077,0,0,0,8.48253110444043,0.0,8.636272701479072,0.0,73.80580873715317,0,4.362244925071088,2.521988625208056e-09,0.5250309387523976,0,0,0.0,391.41190984454016,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2741.779413592634,26911.82090036197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03312102226363998,0.001047926057164573,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0805790498665984,1.0805790498665984,1.088414102122128,1.088414102122128,1.0828542491803976,1.0828542491803976,1.08205695271981,1.08205695271981,1.0498013113265785,1.0498013113265785,0.939981262135459,1.030171587742545,0.9430348665691229,0.9925572744980825,1.084667030747603,0.9052777721407844,0.9851577993993257,0.9121782175730933,0.9651277747314543,1.0644708370356968,29.632562889805783,29.632562889805783,29.986560850936797,29.986560850936797,29.735139622744924,29.735139622744924,29.699173207177495,29.699173207177495,28.262905837105052,28.262905837105052,23.661934822042937,27.40716032374037,23.783576251454804,25.807320199606735,29.816997322936786,22.305679598277933,25.498901075544595,22.57150167031776,24.674608928458724,28.9115233603911,95.81188840941819,95.81188840941819,0.0,106.45765378824242,0.0,95.81188840941819,106.45765378824242,0,0
+2017/06/27 07:00:00,205.9246439517285,0,783.7899487970404,0,0,0,62.41401985726164,0.0,7.718350191079528,0.0,69.33401494192633,0,39.380909295966944,3.0131246572203573e-09,27.07734966248096,0,0,0.0,517.6123049529593,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3124.9916240242233,1879.5014302132763,3703.895046580601,4700.469068944127,32135.423955254948,8570.949325630385,5573.652126588073,8601.59157126714,5800.383140654168,64637.59615851546,8614.407420685504,5615.093089896614,8658.370009339898,5917.691147342866,64376.006605150826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04172955743239477,0.0013202941092599662,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.100737862216845,1.100737862216845,1.1102878401618248,1.1102878401618248,1.0993430087500493,1.0993430087500493,1.1059310730424974,1.1059310730424974,1.0944113132267674,1.0944113132267674,0.7216068618854943,0.7796057941652661,0.7100307160852882,0.774945293349014,0.7574244575179753,0.713674328609712,0.7647829771411764,0.7036119701558525,0.7767530059262917,0.7555103667899149,30.54764815700773,30.54764815700773,30.986003947182525,30.986003947182525,30.48388126441958,30.48388126441958,30.78564082320284,30.78564082320284,30.258956949679103,30.258956949679103,15.957614476499884,17.808292049630168,15.605520889021136,17.65426741948535,17.08350839949587,15.715720318737027,17.321623444934104,15.412781331033017,17.713900626389645,17.02194954780647,205.9246439517285,205.9246439517285,0.0,228.805159946365,0.0,205.9246439517285,228.805159946365,0,0
+2017/06/27 08:00:00,246.37121291754832,0,834.9926209595438,0,0,0,83.45787364192289,0.0,11.287802377079139,0.0,83.2008179303116,0,39.380909295966944,2.9622122867985884e-09,25.61183446685125,0,0,0.0,515.5794483466467,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8617.998396914958,5281.26281030545,7936.75664173429,8451.186795704458,55192.33005820164,12476.46538441664,8759.98270353334,11493.556627012607,10755.20575392127,71692.12365203127,12339.833604761272,8511.359093339475,11314.707110570464,11024.531705725403,72104.00814950612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04445562562448708,0.0014065450066314863,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.147595422927658,1.147595422927658,1.1396081576899972,1.1396081576899972,1.127376483396243,1.127376483396243,1.2713724442005692,1.2713724442005692,1.1313299723691832,1.1313299723691832,0.6633425148524553,0.6922439655628171,0.640901412169042,0.7772085673409443,0.6401859681905679,0.6632731533182533,0.6840209419530586,0.6378748740241913,0.799541437319918,0.6430065972295387,32.72741807257228,32.72741807257228,32.35079000592768,32.35079000592768,31.778006102875466,31.778006102875466,38.80522501583681,38.80522501583681,31.962608229255963,31.962608229255963,14.244200107436654,15.075790808573984,13.623443705722877,17.728950737155813,13.604012520702383,14.24224783458746,14.835509261143685,13.541395768071268,18.477562161990164,13.680748485807214,246.37121291754832,246.37121291754832,0.0,273.74579213060923,0.0,246.37121291754832,273.74579213060923,0,0
+2017/06/27 09:00:00,273.0595812026787,0,859.4881991005489,0,0,0,91.98704695969239,0.0,11.128561489866103,0.0,106.27511244621549,0,39.380909295966944,2.857699640439701e-09,20.855975805625892,0,0,0.0,486.83949771883556,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12726.04044441421,7432.659235308513,10815.70420981425,10359.957457553355,67135.46522894542,13648.632220978165,9334.656099397926,12118.850612028908,11557.955280110005,70356.85741118365,13700.031559593637,9182.006331827335,12030.065441185641,11951.168253874237,71247.68526499707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045759788348752224,0.0014478078061508266,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.183199191785992,1.183199191785992,1.152188093581736,1.152188093581736,1.1415192001011645,1.1415192001011645,1.2626750730070468,1.2626750730070468,1.1404079645662986,1.1404079645662986,0.659229962268995,0.6697798468480538,0.6234220249865922,0.763122639269254,0.6088881852678037,0.6705700870810101,0.6708180355058729,0.6277864517839089,0.7909484903590833,0.6143797429291417,34.430512326521935,34.430512326521935,32.94489730373664,32.94489730373664,32.44071683385856,32.44071683385856,38.364566899558305,38.364566899558305,32.38841179673467,32.38841179673467,14.128806993262984,14.426294429722674,13.155065647884697,17.26769428592459,12.77571074985562,14.448771801404448,14.455829949227379,13.270773295761998,18.187015808158833,12.917971112629232,273.0595812026787,273.0595812026787,0.0,303.399534669643,0.0,273.0595812026787,303.399534669643,0,0
+2017/06/27 10:00:00,302.35522828352106,0,927.5686700726891,0,0,0,90.33120891374224,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.8040808407141035e-09,18.62232528196457,0,0,0.0,466.19408740961535,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14984.357212212995,8313.54280872592,12335.048054147615,10696.418701488035,75705.4911395982,12777.184690193435,8702.061845509616,10614.711557712675,10901.748393472695,61803.24675615654,13025.321369167923,8627.861809492802,10629.682263728897,11286.462519219425,63455.63054805983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049384443050967675,0.0015624893543361763,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2195745615651765,1.2195745615651765,1.1662206132130397,1.1662206132130397,1.1555065908624522,1.1555065908624522,1.2697902241915888,1.2697902241915888,1.169069622712813,1.169069622712813,0.6601073751463837,0.6565392705677309,0.6096977353641642,0.7509186755258684,0.590192601003017,0.6776457093662411,0.6599066543259116,0.6154680083805858,0.7767574162736013,0.6003799084355864,36.209512689748365,36.209512689748365,33.61348118356574,33.61348118356574,33.102453645820376,33.102453645820376,38.72492245674048,38.72492245674048,33.74996748039334,33.74996748039334,14.153364620444378,14.053706083515294,12.796600125330968,16.874915869271092,12.301209097105627,14.651233386764659,14.147743767443572,12.946318320789302,17.714046286043157,12.557886247946954,302.35522828352106,302.35522828352106,0.0,335.95025364835675,0.0,302.35522828352106,335.95025364835675,0,0
+2017/06/27 11:00:00,336.2725151810135,0,987.850457391937,0,0,0,108.08400263832293,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.857699640439701e-09,20.81523926607655,0,0,0.0,473.24034596004697,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18036.031181659426,9460.583534863357,14268.256805048279,11031.420956327556,86364.16546724724,16785.70471086814,10493.587720574908,13939.618467439437,12189.195591750875,76504.10788846396,17153.810700257913,10474.731403667842,14020.390781952958,12487.47859356882,79023.56669265922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05259389005896618,0.0016640340205001396,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2614814256675533,1.2614814256675533,1.1816291886315025,1.1816291886315025,1.173329413115965,1.173329413115965,1.260757073938387,1.260757073938387,1.192478740984309,1.192478740984309,0.6893267495514737,0.6604604456503981,0.6183613066918657,0.7437067872780696,0.5967283770528556,0.7134755468995974,0.6697136155199503,0.6298396586703415,0.7685734676866418,0.6125007849673312,38.304236127371006,38.304236127371006,34.354596922216146,34.354596922216146,33.954502363731834,33.954502363731834,38.26764242794314,38.26764242794314,34.88070618892701,34.88070618892701,14.990213539162326,14.163256008785964,13.021933107800649,16.64580217238459,12.46536518154305,15.709693497429555,14.424411792360232,13.325492818735142,17.445182791421928,12.869148875518206,336.2725151810135,336.2725151810135,0.0,373.63612797890386,0.0,336.2725151810135,373.63612797890386,0,0
+2017/06/27 12:00:00,330.87814128027577,0,959.2093395663726,0,0,0,123.34263744994419,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.8040808407141035e-09,18.59183074288529,0,0,0.0,480.08958064702676,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18370.382816983274,9990.707144706526,15201.479689629088,10475.98172413259,88454.8029464667,20473.638532981666,12388.78963005266,17821.099089908883,13170.336845359861,90325.46295061722,20925.794610293364,12433.855808090813,18002.53887452531,13392.265656062165,93436.55901322069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05106901573126623,0.0016157880596968006,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2513900310871908,1.2513900310871908,1.187210015073938,1.187210015073938,1.1824787719949255,1.1824787719949255,1.2230681097984,1.2230681097984,1.1901059746852352,1.1901059746852352,0.7088945165035849,0.6752837241683834,0.6417855340094477,0.73010081549878,0.606386744221172,0.738715555363753,0.6930321397294058,0.6603795963109232,0.7535209125119564,0.6247920138211929,37.79561978232967,37.79561978232967,34.62478352171543,34.62478352171543,34.395668252319126,34.395668252319126,36.382344328223205,36.382344328223205,34.765350498312046,34.765350498312046,15.571274105084228,14.583406703511656,13.64748678327473,16.219631393377668,12.711344081884832,16.488542118766887,15.098975195413999,14.160990510714143,16.958133073798066,13.191297151893608,330.87814128027577,330.87814128027577,0.0,367.6423792003064,0.0,330.87814128027577,367.6423792003064,0,0
+2017/06/27 13:00:00,328.508128792762,0,896.6529638109085,0,0,0,123.52075528178601,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.749541373889052e-09,16.33317403914376,0,0,0.0,453.02355740410695,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18175.64236724966,10304.253480398185,15166.552933712988,10151.407337568226,86895.35179868704,20636.34724022263,12935.553072773597,17920.221317147738,13124.37415416159,88597.74469636359,21083.178184858,13032.964179588727,18143.012751281996,13282.551209658934,92084.54650382677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04773846795012076,0.0015104118494846698,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2552366708141816,1.2552366708141816,1.2076220838562135,1.2076220838562135,1.1819768881905992,1.1819768881905992,1.2143841143370058,1.2143841143370058,1.1855147621534317,1.1855147621534317,0.7205991722709713,0.7001345145185649,0.6511193154304394,0.7276123451729628,0.6070810166380602,0.7496755072435445,0.7203664317888312,0.6720289159783562,0.7484873434637141,0.6266092771986441,37.98918956781439,37.98918956781439,35.62077496745199,35.62077496745199,34.3714031225489,34.3714031225489,35.95335731050329,35.95335731050329,34.54261271101666,34.54261271101666,15.926735801929794,15.309104072586209,13.903380211603633,16.142546995252545,12.729181758157907,16.835262817162686,15.919610139929375,14.49033734358008,16.797426103793327,13.239483194088791,328.508128792762,328.508128792762,0.0,365.0090319919578,0.0,328.508128792762,365.0090319919578,0,0
+2017/06/27 14:00:00,288.2566087619847,0,847.6612346008837,0,0,0,99.25377247744326,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.6940719779130325e-09,14.102009731653409,0,0,0.0,439.5221807066262,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15370.796189745493,10116.635175450983,13203.607296084288,8931.283343039908,76723.75044201795,15609.347430205877,11188.250616065896,13280.940704666427,10558.92265622438,69865.91213594636,16132.635688453565,11514.068610096652,13668.086522592565,10802.895068181968,72687.93084297953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0451301119984786,0.001427885285348792,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2173206441135849,1.2173206441135849,1.2529921431724333,1.2529921431724333,1.171918832256204,1.171918832256204,1.2015748285173777,1.2015748285173777,1.1727385187808235,1.1727385187808235,0.6932358777953082,0.7290369658612982,0.6395672234921582,0.7147034845420995,0.5959178036187455,0.7137112050250153,0.7531411036363816,0.6541041692844529,0.73091283962731,0.6132850689884898,36.098186792749544,36.098186792749544,37.876194978804044,37.876194978804044,33.88671174861625,33.88671174861625,35.32444751534577,35.32444751534577,33.926097415682094,33.926097415682094,15.104972579257051,16.18664434611516,13.587225552628567,15.746950312349213,12.444905678128876,15.71683855435127,16.945969057968853,13.986009502446706,16.244842766207057,12.88950882852248,288.2566087619847,288.2566087619847,0.0,320.28512084664965,0.0,288.2566087619847,320.28512084664965,0,0
+2017/06/27 15:00:00,271.26040666665483,0,858.1053539759705,0,0,0,89.03113950889157,0.0,16.568294279967066,0.0,108.75639138185811,0,39.380909295966944,2.6940719779130325e-09,14.091696994822746,0,0,0.0,449.96630008171314,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16049.785340472003,12855.741981890407,14068.581640804534,8317.226758569062,82604.78224616812,12238.386244782216,10641.230478789334,10596.031055480718,8960.996422642886,58052.58264868199,12585.61433587808,11078.069953989685,10920.165922106387,9171.343926917652,60426.025725024476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04568616465003707,0.0014454784036434306,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.229981826001747,1.229981826001747,1.3321013855612025,1.3321013855612025,1.19547195670581,1.19547195670581,1.1941291325611285,1.1941291325611285,1.2001131720713831,1.2001131720713831,0.6599240347139272,0.7573318169557525,0.6254054408882643,0.7046831071797331,0.5888865259722706,0.6694978804429136,0.7819737385146642,0.632990829179569,0.7143771502492257,0.6040345285876718,36.725363070427264,36.725363070427264,41.93085939743857,41.93085939743857,35.026461106149654,35.026461106149654,34.96103980307589,34.96103980307589,35.25298080343222,35.25298080343222,14.148230407296168,17.08052538813351,13.207546589622297,15.444821462296588,12.268627257417094,14.418280801024963,17.886904258184174,13.40982965931633,15.737042675224089,12.651065009923684,271.26040666665483,271.26040666665483,0.0,301.4004518518387,0.0,271.26040666665483,301.4004518518387,0,0
+2017/06/27 16:00:00,297.5510377214954,0,899.8364161941705,0,0,0,92.40758664368886,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.6940719779130325e-09,14.058789346624511,0,0,0.0,438.46183353109683,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14989.046650426128,13130.380851238078,14082.484923226857,8798.919793729987,82614.55729166136,12269.571515523068,11751.99995891299,11284.012355046312,9234.461955216313,61323.74405663543,12399.893874954918,12172.064961245482,11482.833466334903,9352.094277073162,63663.198460066924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04790795731301002,0.0015157743747826545,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.218536491096575,1.218536491096575,1.3526917450560225,1.3526917450560225,1.2031862024417495,1.2031862024417495,1.2027206030921462,1.2027206030921462,1.210845686173734,1.210845686173734,0.6450343471052076,0.7792841570668846,0.6264889796183915,0.6985342597060757,0.5884577339128595,0.6520554300381938,0.805813190633112,0.6330578046717448,0.7056711720722462,0.6032106934313685,36.15822261369524,36.15822261369524,43.00816984455664,43.00816984455664,35.403305765778256,35.403305765778256,35.380512366753294,35.380512366753294,35.77916311286164,35.77916311286164,13.736127131337412,17.797632580615456,13.236288988639174,15.261569268846017,12.257946590850523,13.929252976267293,18.691597046594936,13.411626843563752,15.47442061072752,12.630009772782074,297.5510377214954,297.5510377214954,0.0,330.61226413499486,0.0,297.5510377214954,330.61226413499486,0,0
+2017/06/27 17:00:00,315.9715281381016,0,925.0393300325661,0,0,0,104.04708852446106,0.0,16.630907673226492,0.0,133.89528835348938,0,39.380909295966944,2.8040808407141043e-09,18.585359085699398,0,0,0.0,463.6647473694924,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15027.292373492284,14027.291660717758,15468.063431714214,9071.819644035755,85971.67107834251,14327.497135493264,13755.991567327861,14463.60617481756,10359.849249256777,73520.84477282516,14295.690559012792,14143.443565410758,14629.77619840254,10384.999902298217,75968.33263715246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0492497791137325,0.0015582286812305629,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2011807458882207,1.2011807458882207,1.3767113381271396,1.3767113381271396,1.2244807775088942,1.2244807775088942,1.1995597680847925,1.1995597680847925,1.2066314526288733,1.2066314526288733,0.6479342217443617,0.8095629938189542,0.6541133488920976,0.695568064562191,0.5974741698224535,0.6527544517782128,0.8381698789040238,0.6658469427977695,0.700406585434291,0.6125529599491347,35.305173051673094,35.305173051673094,44.27471134318854,44.27471134318854,36.452326688533596,36.452326688533596,35.22593856088996,35.22593856088996,35.5721605915991,35.5721605915991,13.815633646524972,18.820359743012958,13.986264215865504,15.173752294073935,12.48421475879988,13.948597631806862,19.822152655404736,14.314830168303658,15.317196804888738,12.870502505162719,315.9715281381016,315.9715281381016,0.0,351.07947570900177,0.0,315.9715281381016,351.07947570900177,0,0
+2017/06/27 18:00:00,306.3477673102064,0,941.458033536317,0,0,0,110.1910763690151,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.9622122867985917e-09,25.611085177648555,0,0,0.0,515.5738033857873,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15161.927703682772,14442.402803717268,16774.207333266942,8594.152298996874,89008.37994716325,16022.524263983518,13980.10818894992,16989.682081300958,10775.64567997191,84204.77555044445,15943.379818381,14288.037782748437,17255.646328628576,10767.098388259912,86315.36591807987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05012392304971534,0.0015858859860364727,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2044543977795692,1.2044543977795692,1.35111277868172,1.35111277868172,1.2411474474563966,1.2411474474563966,1.1846040312198487,1.1846040312198487,1.2127036995737568,1.2127036995737568,0.6534146519679118,0.7950913977655569,0.6776817743525293,0.6876360060513218,0.6097842018877224,0.6539453537450046,0.8157498294634067,0.6888114208933733,0.6909133111370824,0.6234640991927624,35.465421720415605,35.465421720415605,42.92527175445657,42.92527175445657,37.282057107776765,37.282057107776765,34.49850377177955,34.49850377177955,35.870587863496254,35.870587863496254,13.9668873914854,18.3267059775051,14.652270898807231,14.940783507446895,12.798832961484194,13.981603307417572,19.034103144520017,14.975134465793658,15.03671010857741,13.156177154105052,306.3477673102064,306.3477673102064,0.0,340.38640812245154,0.0,306.3477673102064,340.38640812245154,0,0
+2017/06/27 19:00:00,291.35415924422176,0,908.0078879639088,0,0,0,102.0257758276252,0.0,17.72786785835905,0.0,101.68988858149199,0,39.380909295966944,3.013124657534912e-09,27.0977424753112,0,0,0.0,517.6140103259235,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12750.789176755725,10749.239060431364,14039.072313379282,7848.523412810415,79707.59792904189,15081.528817979295,12199.401245052328,15751.652221705575,9928.003972193004,82512.84654546654,14963.180011200031,12309.828645004704,15948.736617603363,9878.231636579783,84026.90928886793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04834301252269451,0.0015295392183585744,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1976825502128479,1.1976825502128479,1.2791902343824395,1.2791902343824395,1.2104087314531378,1.2104087314531378,1.1652342882206679,1.1652342882206679,1.2111140613248712,1.2111140613248712,0.6460310804448347,0.744448392434169,0.6591170414168879,0.6735284118630978,0.6126769746210288,0.6418488785543335,0.7497336696646694,0.6627355934661068,0.6693618382733183,0.6225669842965882,35.13427372191825,35.13427372191825,39.2028912874428,39.2028912874428,35.757676604304535,35.757676604304535,33.56628783147184,33.56628783147184,35.79236267696268,35.79236267696268,13.763413669593405,16.66925930783742,14.125648910429547,14.53315759983829,12.873720420506956,13.649210695442903,16.837116534431942,14.227124562111072,14.414415644425375,13.132494031884022,291.35415924422176,291.35415924422176,0.0,323.7268436046908,0.0,291.35415924422176,323.7268436046908,0,0
+2017/06/27 20:00:00,300.4301252145642,0,846.8974333744409,0,0,0,108.9720659541715,0.0,22.74838630489335,0.0,106.16168237671882,0,39.380909295966944,2.910407035117359e-09,23.16708127990315,0,0,0.0,491.9939082489997,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11750.786945172153,8584.220729916913,12011.726802912217,7301.001506496861,76608.08107022886,17562.695399173455,13382.088405215698,17329.176501177608,11381.32322200678,100600.8651479016,17511.6481589029,13612.225738659063,17494.84607834644,11364.459765388476,101757.08444786783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045089446655430125,0.0014265986622408208,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1966148203901374,1.1966148203901374,1.2378432164099566,1.2378432164099566,1.181693533677117,1.181693533677117,1.149334685209859,1.149334685209859,1.2103779589608907,1.2103779589608907,0.6780982920861747,0.7429285443698062,0.6690286513735934,0.7011560321762025,0.6517420460884787,0.6745681732715837,0.747808980056163,0.6681027652415079,0.6973980716034,0.6575852214598236,35.08218186099809,35.08218186099809,37.1169691872445,37.1169691872445,34.35770679374802,34.35770679374802,32.80969982863999,32.80969982863999,35.75616362225679,35.75616362225679,14.664257295827682,16.621211539343165,14.404952702903216,15.339505574922896,13.92058729734245,14.562906618122597,16.77585095252796,14.378681570137346,15.227886465113741,14.082862740738733,300.4301252145642,300.4301252145642,0.0,333.8112502384047,0.0,300.4301252145642,333.8112502384047,0,0
+2017/06/27 21:00:00,270.44182365863975,0,829.3510201567129,0,0,0,76.426090141196,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9622122867985917e-09,25.55177126631628,0,0,0.0,509.9378475438158,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6942.552595669559,4829.563653602772,7821.716233795746,6103.051021387124,54456.21539647715,11065.180792041056,8831.91676812831,11179.043756529734,6924.050742053954,68423.9676108853,10882.516429175632,8789.106450004549,11207.776363431132,6736.245837238067,68737.62314565024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04415526261897303,0.001397041730507308,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1851815072848113,1.1851815072848113,1.220143055782633,1.220143055782633,1.1714737503806671,1.1714737503806671,1.1277653121248827,1.1277653121248827,1.2004498970859099,1.2004498970859099,0.6815132579908092,0.738169069547299,0.6658128941770577,0.7002382417657393,0.6612885631040223,0.6742123499032667,0.7318681316902719,0.6602224952344339,0.6925794545484446,0.6629505100935729,34.526469499228,34.526469499228,36.237614095498486,36.237614095498486,33.86533427798376,33.86533427798376,31.79613921956029,31.79613921956029,35.26943929039487,35.26943929039487,14.762814986591593,16.47138878001134,14.31386810508144,15.312189056138166,14.186477185383652,14.552720750762418,16.274538542670925,14.156589154843104,15.085656039980123,14.233169350194103,270.44182365863975,270.44182365863975,0.0,300.49091517626636,0.0,270.44182365863975,300.49091517626636,0,0
+2017/06/27 22:00:00,183.4756774238622,0,632.8438385531391,0,0,0,46.8431477530524,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.857699640439701e-09,20.879572062630135,0,0,0.0,473.13725224669065,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1851.9643681096318,1317.7640690493597,2877.511033853912,4100.840041892793,23222.234373458457,6877.371547109672,5813.100714339904,7153.724226179805,4133.527511731804,45437.553561983674,6449.139947105849,5538.917841377321,6931.126105853259,3767.224515471059,45211.24456244124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03369307471621931,0.0010660253980107302,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.133440004433324,1.133440004433324,1.1628770970192406,1.1628770970192406,1.1210042625662537,1.1210042625662537,1.0734792214498385,1.0734792214498385,1.129912497102029,1.129912497102029,0.6593814813587703,0.7074923635858078,0.6452155453024847,0.6747386324120568,0.6446603577663195,0.6472506390372178,0.6953835449411238,0.6350455075410257,0.6618177947840937,0.6412842832215166,32.061341402977106,32.061341402977106,33.453623218249675,33.453623218249675,31.481543676671663,31.481543676671663,29.31363254019091,29.31363254019091,31.896362716106808,31.896362716106808,14.133045429701696,15.529087823235216,13.741084403315213,14.56778815518443,13.725899925941192,13.796858861865658,15.168301972418206,13.465052375108783,14.201332889814623,13.633851455798947,183.4756774238622,183.4756774238622,0.0,203.86186380429135,0.0,183.4756774238622,203.86186380429135,0,0
+2017/06/27 23:00:00,103.4932608745947,0,480.73603343304563,0,0,0,16.17839808897874,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.63766339073453e-09,11.803881724140037,0,0,0.0,427.5005046642294,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2197.4715529578702,0.0,1863.7645367388152,2372.4030256476453,2669.705761823261,656.8556554025052,20877.49224729411,1204.2812939292671,1902.3592003051344,2267.7781957772904,71.16069264404129,20046.447023728404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02559474250436022,0.0008097998118307191,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9998676399339534,0.9998676399339534,1.0266882262960368,1.0266882262960368,1.0243376243696105,1.0243376243696105,1.026128461356117,1.026128461356117,1.0544331775425306,1.0544331775425306,0.6583077158008733,0.7006870995262966,0.6445406641970287,0.6715098255643109,0.6453625401477001,0.64255665287551,0.6841358184253127,0.6307806153820129,0.6548145946458497,0.6392507008669827,26.114077277562316,26.114077277562316,27.25678212236197,27.25678212236197,27.155559303739906,27.155559303739906,27.232658671432986,27.232658671432986,28.466870825975548,28.466870825975548,14.103030489401903,15.325544024616946,13.722628036987189,14.475536651006948,13.74510697614896,13.668484500406194,14.838845884963575,13.350631146829755,14.00573300047651,13.578644496324756,103.4932608745947,103.4932608745947,0.0,114.992512082883,0.0,103.4932608745947,114.992512082883,0,0
+2017/06/28 00:00:00,45.76227706663475,0,475.60497560778634,0,0,0,0.33301844849793516,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,6.082122382492204,2.5803063503020332e-09,9.54981523664112,0,0,0.0,422.36944683897013,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1331.5952541574934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025321561185134678,0.0008011565453135105,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.99201482175787,0.99201482175787,1.002289014756755,1.002289014756755,0.9924780138954392,0.9924780138954392,0.9824504592043563,0.9824504592043563,0.9952889359437034,0.9952889359437034,0.8356126010911165,0.9394925530998245,0.8174225026202242,0.854303347327991,0.8414155605629371,0.7966972651513118,0.8983774913460247,0.7839384897635414,0.8130292136907497,0.8241878508740336,25.78463897048131,25.78463897048131,26.216130379113054,26.216130379113054,25.804005426042934,25.804005426042934,25.38658052929729,25.38658052929729,25.92170798489039,25.92170798489039,19.731201731320184,23.642501251755164,19.092167753810713,20.4022365121737,19.937980457451246,18.38104810999448,22.041793018665913,17.95231206469748,18.939912299970658,19.32821838769452,45.76227706663475,45.76227706663475,0.0,50.84697451848306,0.0,45.76227706663475,50.84697451848306,0,0
+2017/06/28 01:00:00,23.722135336596843,0,50.12843887778988,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250399129190507,0,0,0.0,14.63808636524574,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0026688752163224,8.444135148495307e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.053226613938926,1.053226613938926,1.099345044951013,1.099345044951013,1.0503426705042684,1.0503426705042684,1.038530089192241,1.038530089192241,1.099674421100007,1.099674421100007,0.8250467126261033,0.9576726433430927,0.8055655502732695,0.844741209857387,0.9007386781643515,0.7920006389788427,0.9275574962589174,0.7792520338249104,0.8092718028989712,0.8723009084683929,28.413665124150057,28.413665124150057,30.48397430277234,30.48397430277234,28.28670473071915,28.28670473071915,27.769822833323786,27.769822833323786,30.49902605860511,30.49902605860511,19.358322619635487,24.371791942241373,18.683114343723688,20.057118024170222,22.131874022846418,18.222423111358424,23.170852583302533,17.796568216654094,18.81033942170083,21.062091845262614,23.722135336596843,23.722135336596843,0.0,26.357928151774267,0.0,23.722135336596843,26.357928151774267,0,0
+2017/06/28 02:00:00,28.39690170743812,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5775386209652238,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0625692406106857,1.0625692406106857,1.1164827260233023,1.1164827260233023,1.0580147814532603,1.0580147814532603,1.0435489959814932,1.0435489959814932,1.1659297922462732,1.1659297922462732,0.8027645135267937,0.9366441680461774,0.7831450163003408,0.8212111186175962,0.9251424652012746,0.7714850753748445,0.9129545394572048,0.7582320766733691,0.7881947661092599,0.8815561523015913,28.82700928367963,28.82700928367963,31.27199625140466,31.27199625140466,28.625116531786546,28.625116531786546,27.98881468590986,27.98881468590986,33.59956296566072,33.59956296566072,18.58734771428594,23.529423653402148,17.92587707791371,19.224119793909622,23.07610725481659,17.540509318441963,22.60152789873362,17.109529154836707,18.094568780191366,21.406624134814876,28.39690170743812,28.39690170743812,0.0,31.552113008264577,0.0,28.39690170743812,31.552113008264577,0,0
+2017/06/28 03:00:00,23.72189888362255,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.524803459944759,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0156229989166399,1.0156229989166399,1.0730059220469326,1.0730059220469326,1.0097088501978826,1.0097088501978826,0.9956471922199904,0.9956471922199904,1.1640800415756696,1.1640800415756696,0.7559119209672879,0.8926772350222557,0.7373450036301752,0.7720344238418062,0.9459062206405279,0.7312777609705442,0.8765521655277377,0.7189020141102634,0.7463859913936404,0.8801852557139404,26.782077757187295,26.782077757187295,29.292434429061075,29.292434429061075,26.53023232653166,26.53023232653166,25.936730986667598,25.936730986667598,33.51109788011655,33.51109788011655,17.034850894307368,21.825258988222487,16.445546876820572,17.558535617395478,23.89829456578805,16.25618191617717,21.2199103340742,15.87482853296413,16.730657281988513,21.355369617855445,23.72189888362255,23.72189888362255,0.0,26.357665426247276,0.0,23.72189888362255,26.357665426247276,0,0
+2017/06/28 04:00:00,50.0308481149101,0,88.72588128136032,0,0,0,0.12218668023908917,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,9.875464792696162,0.0,0.5250630923407187,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,485.4070386976829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9954671055527525,0.9954671055527525,0.9996558970495051,0.9996558970495051,0.9929755184959289,0.9929755184959289,0.9820159665117724,0.9820159665117724,1.0368747369428428,1.0368747369428428,0.5560106921053483,0.6135210535022292,0.5484563182917991,0.5619276217325517,0.6293198983405011,0.5418746481720381,0.595560611214101,0.5361986751584086,0.5469864574945839,0.6123962966026932,25.929178680316056,25.929178680316056,26.105163568538785,26.105163568538785,25.824815636232827,25.824815636232827,25.368580801402018,25.368580801402018,27.697796038230024,27.697796038230024,11.472873138061644,12.895640192950594,11.296643985933585,11.612631799214483,13.311623521181772,11.145122500285666,12.435898915788727,11.015959061645859,11.262642422422331,12.866438380761522,50.0308481149101,50.0308481149101,0.0,55.589831238788996,0.0,50.0308481149101,55.589831238788996,0,0
+2017/06/28 05:00:00,77.80809930262488,0,212.9421150752648,0,0,0,0.354390872244902,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,4.142644316153297,0.0,0.5250210842708123,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1438.0120231221586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0085932233128518,1.0085932233128518,0.9999992627477883,0.9999992627477883,1.007508078956055,1.007508078956055,1.0191794630340518,1.0191794630340518,1.0223759025048955,1.0223759025048955,0.696974870045553,0.7905104991905817,0.6856911211404113,0.7043461642330168,0.8444016780044725,0.6619898830193737,0.7467453095614198,0.655258891489289,0.667451407170135,0.8089304451114814,26.48287221553454,26.48287221553454,26.11961904093107,26.11961904093107,26.436851081238387,26.436851081238387,26.934154926220117,26.934154926220117,27.07123951702394,27.07123951702394,15.215354714533134,18.172290207283183,14.884076311023804,15.434737399604671,20.04493354779885,14.206166076418867,16.742060923316046,14.018079105375207,14.360222151132604,18.798597338125063,77.80809930262488,77.80809930262488,0.0,86.4534436695832,0.0,77.80809930262488,86.4534436695832,0,0
+2017/06/28 06:00:00,88.48302986590912,0,637.5098369546747,0,0,0,0.6951978345641223,0.0,8.481347027936758,0.0,73.80580873715317,0,4.975566733936328,2.522015009154145e-09,0.5251095297966911,0,0,0.0,406.82254562313784,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2897.3867778924014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03394149592725318,0.0010738852719639734,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.007641141100191,1.007641141100191,1.000308236651662,1.000308236651662,1.0092178733154722,1.0092178733154722,1.0911398665857581,1.0911398665857581,1.009821261563572,1.009821261563572,0.8275648076596759,0.9416444132405469,0.8239788185169834,0.9621338213090764,1.0995670232480454,0.7978552732112437,0.907146612545194,0.8005504820738193,0.9492336562071803,1.0396008985293572,26.442491880918908,26.442491880918908,26.132630463367178,26.132630463367178,26.50938381884201,26.50938381884201,30.110212848821305,30.110212848821305,26.535006961554103,26.535006961554103,19.44676360829122,23.72814120667401,19.320896215615633,24.552737641463736,30.4941178101907,18.420302584460018,22.377481725281797,18.511885344076134,24.031642171229066,27.816468708167704,88.48302986590912,88.48302986590912,0.0,98.3144776287879,0.0,88.48302986590912,98.3144776287879,0,0
+2017/06/28 07:00:00,149.30168138338328,0,783.639149510829,0,0,0,5.8784036454951645,0.0,7.62365870417446,0.0,69.33401494192633,0,39.380909295966944,3.013153434358393e-09,27.084694792807216,0,0,0.0,517.4615056667482,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4522.054526278996,0.0,0.0,0.0,0.0,0.0,8716.804915780027,0.0,0.0,0.0,0.0,7013.155816906031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04172152876669884,0.0013200400878737885,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7494700435691724,0.7494700435691724,0.7213753580358933,0.7213753580358933,0.8113033390868006,0.8113033390868006,1.1675702539534674,1.1675702539534674,0.9248163109022693,0.9248163109022693,0.49880047641458614,0.5558852276556859,0.523557416480612,0.6854497973393168,0.6890548188205964,0.4854719642377809,0.546093917791147,0.5175917760929918,0.6996293714441842,0.6772190628278374,16.82871556418104,16.82871556418104,15.950516626823045,15.950516626823045,18.88032224163223,18.88032224163223,33.67810681432208,33.67810681432208,23.06332962543486,23.06332962543486,10.199785223644355,11.469926087401404,10.733306683765889,14.877051414534463,14.982255121774188,9.923520113985234,11.242041435502273,10.602320478723342,15.294087097852596,14.638963954963273,149.30168138338328,149.30168138338328,0.0,165.8907570926481,0.0,149.30168138338328,165.8907570926481,0,0
+2017/06/28 08:00:00,174.78565270377882,0,834.8763606492043,0,0,0,15.374140989280098,0.0,11.276247110228917,0.0,83.2008179303116,0,39.380909295966944,2.962240873131559e-09,25.553537375028995,0,0,0.0,515.4631880363072,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4992.4120671943465,3274.6910578219167,741.2079378884805,630.7761448732864,1500.820696153148,1431.2951255097146,19270.08045432585,316.4309220832877,220.67262456829593,1201.6027826963364,1258.4240735064486,17742.73981781832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04444943583944981,0.0014063491661475435,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8256218600740486,0.8256218600740486,0.7668052652520679,0.7668052652520679,0.8890653160086953,0.8890653160086953,1.1199721093719919,1.1199721093719919,0.9913229228518454,0.9913229228518454,0.5065272265161583,0.5313678730182889,0.5186608355333366,0.6146295135293347,0.5875571724994745,0.489657745447999,0.51186628904864,0.509628811790492,0.6150950598952101,0.5827827619023747,19.378499604948047,19.378499604948047,17.387468047046,17.387468047046,21.688739736671124,21.688739736671124,31.43364957518982,31.43364957518982,25.755725350750097,25.755725350750097,10.363454570822938,10.907127779902325,10.625680311103821,12.92447260872602,12.235540724503437,10.009454138417652,10.478055341017921,10.429878775472119,12.93659794594376,12.11734182348546,174.78565270377882,174.78565270377882,0.0,194.20628078197646,0.0,174.78565270377882,194.20628078197646,0,0
+2017/06/28 09:00:00,212.37670918892846,0,839.5918000001942,0,0,0,34.722954750539685,0.0,11.128561489866103,0.0,106.27511244621549,0,39.380909295966944,2.8577277875241828e-09,20.869171203482527,0,0,0.0,466.94309861848086,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1204.813886327953,10.090088592011028,1656.0915407315545,6140.305498912769,19623.544736016087,3898.8254119603853,2435.6087218245198,4058.6321128005548,3801.8948435293096,33546.19815949931,3752.9272015444903,2213.278863840452,3985.8980991176013,3839.791462682899,32522.60453694179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04470048932325388,0.00141429232337639,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.012164179237777,1.012164179237777,0.95734302551123,0.95734302551123,1.01857690570254,1.01857690570254,1.154545795549596,1.154545795549596,1.0633036854567257,1.0633036854567257,0.5768415830311874,0.5908114566597487,0.5601849428410529,0.6630296587308679,0.5813626725673533,0.5761361587352112,0.5818140088578874,0.5597211052194648,0.6754789374269462,0.5794474865420922,26.634629677833132,26.634629677833132,24.358453546087674,24.358453546087674,26.90835588924071,26.90835588924071,33.05680123257403,33.05680123257403,28.859635507011376,28.859635507011376,11.971638790069633,12.316673152452296,11.571311770689363,14.235396004713962,12.082375886374734,11.954440498345008,12.093479360316621,11.560336076440265,14.589003288447756,12.0353580914027,212.37670918892846,212.37670918892846,0.0,235.97412132103162,0.0,212.37670918892846,235.97412132103162,0,0
+2017/06/28 10:00:00,265.6600666629011,0,930.96365338958,0,0,0,57.09529170174063,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.8041087385960904e-09,18.595056075800418,0,0,0.0,469.5890707265062,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7176.677682689604,3100.9892927578476,5963.71640126171,8176.880584384215,43462.2157249311,8131.22174707441,4707.700973583669,6562.640909047015,6688.288932234123,43204.92738328939,8338.060993769544,4626.711812726044,6641.582047197488,6994.555718468521,43376.9599226676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04956519447744573,0.0015682082034758045,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1366644257350689,1.1366644257350689,1.055968969929885,1.055968969929885,1.082396154115086,1.082396154115086,1.2183240302113099,1.2183240302113099,1.112879154981069,1.112879154981069,0.6163525639097907,0.6022406863832397,0.5680057121967267,0.6964828740566358,0.5690865880502548,0.6297184178837603,0.6014607662559391,0.5729910860062953,0.7184858385573368,0.5746630535647187,32.212498293954624,32.212498293954624,28.534670219391572,28.534670219391572,29.71447203589041,29.71447203589041,36.14772880689815,36.14772880689815,31.10547818325479,31.10547818325479,12.9693971461691,12.60525649520936,11.757778011029231,15.20079556109414,11.783757392700096,13.322256578447394,12.58538359788706,11.878026118062266,15.862118816422509,11.91859571352586,265.6600666629011,265.6600666629011,0.0,295.1778518476679,0.0,265.6600666629011,295.1778518476679,0,0
+2017/06/28 11:00:00,292.17098954262286,0,997.5875320857361,0,0,0,67.51881011291584,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.8577277875241836e-09,20.878271032474437,0,0,0.0,482.9774206538463,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9615.341476025662,3553.5269289649,7269.155720916279,8635.680737404547,50958.47724886957,10415.92457954482,5448.489421152561,8204.101803303598,7223.366990797281,53073.76914760973,10961.902467022808,5497.7499754063,8525.57939537311,7593.231930085832,53888.407069461035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0531122991279802,0.001680436122082813,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1922999272176344,1.1922999272176344,1.0959181411276115,1.0959181411276115,1.1120264625214744,1.1120264625214744,1.2102559465155867,1.2102559465155867,1.1466217997662906,1.1466217997662906,0.6498196925987709,0.6146104809901538,0.5816793099043097,0.6949596480927369,0.5807883645080931,0.6720843211204087,0.6209014767127043,0.5931851142849965,0.7172169091334507,0.5917974643079026,34.872007127212584,34.872007127212584,30.327591992170298,30.327591992170298,31.06613941944049,31.06613941944049,35.75016493558806,35.75016493558806,32.68139938971497,32.68139938971497,13.867523616923535,12.923977098924283,12.090164661281591,15.155786520635104,12.068259922814875,14.491917785209736,13.088618554199542,12.376140590061638,15.823412624761119,12.341345992324591,292.17098954262286,292.17098954262286,0.0,324.6344328251365,0.0,292.17098954262286,324.6344328251365,0,0
+2017/06/28 12:00:00,281.7987026620511,0,942.5486319217774,0,0,0,77.68396767580217,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.8041087385960904e-09,18.603037101256813,0,0,0.0,463.42887300243154,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10192.147020651164,3818.528407610964,7781.562747830813,7804.995772219103,53427.188129156784,12702.339021687618,6708.652719472089,10367.198482236314,7748.063840845793,66266.06495783308,13401.94342115357,6842.32070963003,10826.537890472064,8059.671607876351,67393.95618615813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05018198731557075,0.0015877230989340058,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1907285840540303,1.1907285840540303,1.1079204146331654,1.1079204146331654,1.1181541440977467,1.1181541440977467,1.1682974928993899,1.1682974928993899,1.150557122309445,1.150557122309445,0.663414606136495,0.6258458578657142,0.595539851718215,0.6770189313660451,0.59491162629718,0.6865000718723635,0.6345054294350317,0.6088708122133164,0.6933433724499976,0.6077564119341309,34.79560361151317,34.79560361151317,30.877049262324377,30.877049262324377,31.349377926112,31.349377926112,33.71295279638808,33.71295279638808,32.867588701706524,32.867588701706524,14.246229433593072,13.219223128648707,12.435375626303468,14.633211320751556,12.419548648003527,14.907643101823098,13.450519183433087,12.775262772785098,15.108137593823287,12.746554506231561,281.7987026620511,281.7987026620511,0.0,313.1096696245012,0.0,281.7987026620511,313.1096696245012,0,0
+2017/06/28 13:00:00,286.3026961690066,0,903.3547851678695,0,0,0,84.74787741608613,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.7495690023466946e-09,16.332594483542557,0,0,0.0,459.7253787610679,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11758.848006207145,5310.303169524691,8860.445400888926,7542.125310558185,57722.31145609696,14469.839053321582,8125.370902579488,11507.780695051313,8487.46543021277,70360.67620267461,15220.40901041523,8357.360504959892,12003.281865539355,8794.384448138539,72080.80950121213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04809527788324911,0.0015217010670518106,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2034883017062512,1.2034883017062512,1.1415547442562244,1.1415547442562244,1.1231842395298277,1.1231842395298277,1.1590725338405645,1.1590725338405645,1.1493663085132038,1.1493663085132038,0.6795115960772529,0.6521310474839279,0.6044324685481021,0.6758798633481179,0.597025886165427,0.7048468714859236,0.6694434334581489,0.6201979285437655,0.6919619880062592,0.6122602138308111,35.418098348718175,35.418098348718175,32.442390524499004,32.442390524499004,31.582814915912735,31.582814915912735,33.27214270017265,33.27214270017265,32.81119676416252,32.81119676416252,14.70498479234179,13.931344584005984,12.661245945083564,14.60050263826517,12.472881696581283,15.449724385997257,14.416733786542792,13.070120720978593,15.06750287055661,12.862909017347263,286.3026961690066,286.3026961690066,0.0,318.1141068544518,0.0,286.3026961690066,318.1141068544518,0,0
+2017/06/28 14:00:00,264.148767200419,0,859.1465734633398,0,0,0,78.59148003163378,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.6940993163472233e-09,14.088435818351455,0,0,0.0,451.00751956908243,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10947.90469006953,6467.41002573136,8855.634502228348,7177.911523795838,55617.89781407994,12916.153534263025,8366.818593590013,10325.578978576037,7837.661083126607,60465.633461760735,13575.635553823964,8723.491755664341,10803.706041079813,8133.619256740303,62271.588950056794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04574159994678282,0.0014472323377908768,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.174069501278808,1.174069501278808,1.1925883330586908,1.1925883330586908,1.1205580821471892,1.1205580821471892,1.1518337437802104,1.1518337437802104,1.1378676897786124,1.1378676897786124,0.6613110301984173,0.6842654826503279,0.6012537650641526,0.6681569567771207,0.5849734314720769,0.6812955806810964,0.7060947058926238,0.6158812705534669,0.682166110210531,0.5981876009777133,33.99009417946171,33.99009417946171,34.886038166485676,34.886038166485676,31.460835632602567,31.460835632602567,32.92809386873279,32.92809386873279,32.2689919316844,32.2689919316844,14.187107597370158,14.842612709361262,12.580113499518205,14.380218180364139,12.171452877330807,14.756517652921218,15.487121175999562,12.957096465136871,14.781714079579913,12.502269002147742,264.148767200419,264.148767200419,0.0,293.4986302226878,0.0,264.148767200419,293.4986302226878,0,0
+2017/06/28 15:00:00,256.61968363125015,0,845.0181727274557,0,0,0,74.3989680396486,0.0,16.568294279967066,0.0,108.75639138185811,0,39.380909295966944,2.694099316347223e-09,14.083145428660975,0,0,0.0,436.8791188331983,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10980.407237759959,8419.390131689397,9576.863708238761,7203.079397301682,57832.61231987977,10844.721775059688,8595.712119187503,9085.584123315099,7182.228503912367,51115.91090923313,11271.683357719457,9032.575192209386,9460.17168918101,7422.346818452572,52818.07293949038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04498939342660374,0.0014234330478236077,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1500098558372505,1.1500098558372505,1.2347292058708077,1.2347292058708077,1.1172263697238225,1.1172263697238225,1.1510480957763705,1.1510480957763705,1.129565759041379,1.129565759041379,0.6272468689389046,0.7032286706230475,0.5846736714511322,0.6498827493554268,0.5602312775539332,0.6425061544311427,0.7319575506233033,0.5983440272984006,0.662923333183978,0.5724664997787671,32.84166689451192,32.84166689451192,36.961650409580415,36.961650409580415,31.30641327317035,31.30641327317035,32.89085218573118,32.89085218573118,31.88016793340084,31.88016793340084,13.256423352969563,15.401328002709334,12.164036299108531,13.86926166279082,11.572408692016566,13.667108628861016,16.27732018652729,12.506230513256824,14.232404856487733,11.865322247212646,256.61968363125015,256.61968363125015,0.0,285.1329818125002,0.0,256.61968363125015,285.1329818125002,0,0
+2017/06/28 16:00:00,283.8110962258437,0,909.5458201709876,0,0,0,78.68463757491327,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.694099316347223e-09,14.041796919748425,0,0,0.0,448.1712375079139,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11721.997142478895,10226.827228799051,10846.634447815206,7443.034439839676,64939.809462977835,10479.1502093221,9064.960414428622,9317.71416054864,7049.002264312667,51510.04420161289,10721.347857539395,9487.456115364132,9583.050980983147,7217.297801816136,53129.767980359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04842489317255602,0.0015321298650446714,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1326806691947404,1.1326806691947404,1.2719464782339744,1.2719464782339744,1.1194637913194023,1.1194637913194023,1.144868260177455,1.144868260177455,1.1398709152391129,1.1398709152391129,0.5896991268097562,0.700968057532104,0.5619968036260301,0.6144242687824423,0.5365831152917317,0.603309857535509,0.7325203793459497,0.5752311895860499,0.6257012356606189,0.5475318075717274,32.0257937239019,32.0257937239019,38.83437409790298,38.83437409790298,31.4100754962962,31.4100754962962,32.59859368180247,32.59859368180247,32.36314748498623,32.36314748498623,12.288890002793892,15.333907858580545,11.614274864042684,12.919129916471363,11.024663385257682,12.63254260837158,16.294836548298065,11.932408904710755,13.215387909639261,11.275246810161164,283.8110962258437,283.8110962258437,0.0,315.3456624731597,0.0,283.8110962258437,315.3456624731597,0,0
+2017/06/28 17:00:00,296.41375680388865,0,932.154706761015,0,0,0,84.45869555371449,0.0,16.630907673226492,0.0,133.89528835348938,0,39.380909295966944,2.8041087385960916e-09,18.615980722232894,0,0,0.0,470.78012409794115,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11471.660428683179,10871.071803354103,11600.444688654103,7356.85056233747,66647.25941969773,11161.621891429622,9849.442148630345,10829.48964394831,7300.486081936373,58136.99167948082,11311.839724604466,10264.038577454854,11112.862266610746,7423.095670165647,59558.54875485349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0496286070411621,0.001570214532789587,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1165162650853926,1.1165162650853926,1.2932407448777705,1.2932407448777705,1.1408013034172595,1.1408013034172595,1.1307198726318404,1.1307198726318404,1.140821936660372,1.140821936660372,0.5695198737516178,0.7112855956817539,0.5673076163936347,0.5914148291619791,0.5325166848358727,0.579060038387155,0.7437609920085718,0.5856035208019681,0.6022023038262709,0.5429048802374035,31.27354809685376,31.27354809685376,39.921231765152044,39.921231765152044,32.40692143759169,32.40692143759169,31.934087275143924,31.934087275143924,32.40789252860479,32.40789252860479,11.794185856629426,15.643409553547997,11.741025870621854,12.33176631475743,10.932917321736923,12.025865599166778,16.647515881103715,12.18705508279615,12.604277863804214,11.168716310558565,296.41375680388865,296.41375680388865,0.0,329.3486186709874,0.0,296.41375680388865,329.3486186709874,0,0
+2017/06/28 18:00:00,265.4192205878255,0,920.3310400667813,0,0,0,72.6953167399899,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.9622408731315625e-09,25.610273286747134,0,0,0.0,494.4468099162516,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6810.777873632675,7155.088185396196,8746.19047480467,6447.283546032115,50263.2180457172,9825.218989950834,9033.127274470611,10661.107034500925,5908.741858498853,60703.76966827258,10032.127133129403,9493.407732626081,11216.243952501532,5952.992635963805,61654.693859022285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048999106268492354,0.0015502975671405517,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1220636881039938,1.1220636881039938,1.2483438177287005,1.2483438177287005,1.1556071791306441,1.1556071791306441,1.1173674533110243,1.1173674533110243,1.1541484355872222,1.1541484355872222,0.6030272267665208,0.7259242968334675,0.6115843245737194,0.6223487171670014,0.5814267929753528,0.6065496302613594,0.7453418451721837,0.6240209356071703,0.6245453407306116,0.590680628128791,31.530739897876316,31.530739897876316,37.64259823070132,37.64259823070132,33.107234793714284,33.107234793714284,31.312944922573593,31.312944922573593,33.0379290445114,33.0379290445114,12.625324818308826,16.090408554009898,12.845391456652706,13.126737234666919,12.083952795142949,12.715527172455097,16.697550735707694,13.170894759570487,13.184767483325246,12.313402604607973,265.4192205878255,265.4192205878255,0.0,294.9102450975839,0.0,265.4192205878255,294.9102450975839,0,0
+2017/06/28 19:00:00,258.43997143415083,0,907.8279791216246,0,0,0,72.60617661326796,0.0,17.665254465099625,0.0,101.68988858149199,0,39.380909295966944,3.0131534346683967e-09,27.0977424753112,0,0,0.0,517.4341014836393,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6222.367567083414,5515.575492301763,7948.194738858736,6107.331758557367,48796.19945024747,9886.347333826116,8540.360444477084,10787.1913634329,5937.656723281757,63680.69538085536,9913.62447403217,8752.462704999949,11167.10594426985,5863.9613508051925,64317.725714832595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04833343404267161,0.0015292361619274014,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.123560984462266,1.123560984462266,1.2023628865708957,1.2023628865708957,1.145471567307257,1.145471567307257,1.1061615308851307,1.1061615308851307,1.1579969795184832,1.1579969795184832,0.6161375484854765,0.7115260338449604,0.6232033625106793,0.6328165222908816,0.6053879345645254,0.6137392834776441,0.7175533568161752,0.6283079605954969,0.6286232492784258,0.6114943246647826,31.60033255691691,31.60033255691691,35.36300459269228,35.36300459269228,32.62707202653225,32.62707202653225,30.79622331518081,30.79622331518081,33.22091953651582,33.22091953651582,12.963784082384606,15.650676869055133,13.14929031235711,13.405153314489482,12.685718743702651,12.90131240877615,15.833668542209864,13.284654573150561,13.293052503186772,12.843060353036563,258.43997143415083,258.43997143415083,0.0,287.15552381572314,0.0,258.43997143415083,287.15552381572314,0,0
+2017/06/28 20:00:00,248.5697918496152,0,846.665993125304,0,0,0,56.99698545314286,0.0,22.86433515186604,0.0,106.16168237671882,0,39.380909295966944,2.9104354115597485e-09,23.16587956901013,0,0,0.0,491.7624679998626,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3042.297452781872,2083.9595284263733,4549.137787116871,5431.724675283912,36598.7571970172,6994.110193319574,5861.799498116806,8028.356618384095,3757.347127774698,54355.07292047358,6878.901620179147,5814.829700460889,8229.686044831418,3504.897125169808,54265.48633805494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04507712460513674,0.0014262088011587157,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.126874746816149,1.126874746816149,1.1618860103977284,1.1618860103977284,1.1182054995821435,1.1182054995821435,1.0920463417815764,1.0920463417815764,1.1637365378688032,1.1637365378688032,0.6256437508181971,0.6880375276067301,0.6161345018341936,0.6410975781533974,0.6237961456705853,0.619083921182535,0.6842800962116117,0.6124374321245324,0.6327962374522152,0.6266931565523209,31.754614819730378,31.754614819730378,33.40630439789773,33.40630439789773,31.351757001482397,31.351757001482397,30.151391057440563,30.151391057440563,33.494681291888796,33.494681291888796,13.21386372801281,14.952511074413792,12.96370456274822,13.628775376668642,13.164951772986868,13.04087494267172,14.843037287768453,12.867505405858125,13.404609193846198,13.241710774926702,248.5697918496152,248.5697918496152,0.0,276.18865761068355,0.0,248.5697918496152,276.18865761068355,0,0
+2017/06/28 21:00:00,229.57957763028608,0,834.8454080566017,0,0,0,35.50471016945087,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.962240873131562e-09,25.610905209707685,0,0,0.0,515.4322354437047,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525.8751943488177,44.678683204826314,2282.843437158554,4652.1828851454375,25865.291148339747,3167.236401037531,3134.1688778494563,4376.679386324564,1203.3140044330785,34765.54729619266,2837.8243988059426,2891.8244072542443,4362.673145846594,765.4288393246014,34133.44868243618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04444778790049286,0.0014062970265076536,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1308974500626416,1.1308974500626416,1.1595641905933545,1.1595641905933545,1.1212648587142402,1.1212648587142402,1.0762985669877947,1.0762985669877947,1.164852027343486,1.164852027343486,0.6325266600575197,0.6842687538214879,0.6193624666676157,0.647100560175686,0.6309822055617901,0.6214083666535415,0.6730061902731853,0.6107404006201959,0.6345942560496171,0.6300048280353935,31.942387417383642,31.942387417383642,33.295569801539784,33.295569801539784,31.493641462054313,31.493641462054313,29.440068442026316,29.440068442026316,33.54800559472764,33.54800559472764,13.397379742997629,14.84270774827003,13.048182483684428,13.792739617441228,13.356021768214731,13.10195912133264,14.518233767610127,12.823546639245293,13.45290858724097,13.329902656261268,229.57957763028608,229.57957763028608,0.0,255.08841958920675,0.0,229.57957763028608,255.08841958920675,0,0
+2017/06/28 22:00:00,147.26753928290813,0,627.7224631118145,0,0,0,10.680940820023979,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8577277875241828e-09,20.833640854704484,0,0,0.0,468.01587680536585,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2911.586580969254,0.0,0.0,623.8270803417174,1031.623221336698,0.0,15815.04038892966,0.0,154.54587150025438,749.2075141366349,0.0,14721.62260742427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03342040889428625,0.0010573984414685245,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9774458559194749,0.9774458559194749,0.9893136643125954,0.9893136643125954,1.020731326001429,1.020731326001429,1.0300153359452213,1.0300153359452213,1.1047043955091729,1.1047043955091729,0.6237996607919025,0.6807098424947264,0.6214474109891561,0.6006059704348922,0.6330429698942225,0.5916040754076165,0.6642336402145675,0.6086478970556489,0.5591088213980826,0.6276480155134487,25.17969555646745,25.17969555646745,25.671864579336898,25.671864579336898,27.000661638262997,27.000661638262997,27.400405268126548,27.400405268126548,30.729342685093187,30.729342685093187,13.165044688736415,14.739582615650036,13.102987170950584,12.563633140225988,13.41122875836426,12.336503501502222,14.269300555891448,12.769515902785074,11.54586201649424,13.267090445879731,147.26753928290813,147.26753928290813,0.0,163.63059920323124,0.0,147.26753928290813,163.63059920323124,0,0
+2017/06/28 23:00:00,91.62078497192867,0,495.0549384228337,0,0,0,4.305479998103522,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6376904181688984e-09,11.804323912349195,0,0,0.0,441.8194096540175,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1475.8949362310505,0.0,0.0,0.0,0.0,0.0,7162.480115859458,0.0,0.0,0.0,0.0,5559.902478667561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.026357091612124923,0.0008339200061992307,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8281795972283444,0.8281795972283444,0.8377623233795434,0.8377623233795434,0.8768915725397407,0.8768915725397407,0.9880237426200279,0.9880237426200279,0.9562251192071718,0.9562251192071718,0.5733014743766236,0.6525479631822444,0.5952894933320366,0.547449529886072,0.622567660496787,0.5295825564168448,0.6119507809659547,0.5675142373771046,0.4907616153832893,0.6150986152631507,19.468396759708455,19.468396759708455,19.807639419981072,19.807639419981072,21.232542114255466,21.232542114255466,25.618108310210744,25.618108310210744,24.313247811358735,24.313247811358735,11.885548394953702,13.942881083548812,12.429066256635338,11.2733443438906,13.132511869881611,10.867162836846347,12.854886738483998,11.74598193283218,10.032242610279312,12.936690583083092,91.62078497192867,91.62078497192867,0.0,101.80087219103186,0.0,91.62078497192867,101.80087219103186,0,0
+2017/06/29 00:00:00,42.82180606506542,0,464.97874993365497,0,0,0,0.4047515317733212,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,3.028024025105008,2.5803330453829488e-09,9.59170950918357,0,0,0.0,411.74322116483876,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194.07294023863497,225.49970734398056,251.81050441129844,921.3320511818615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024755813059327725,0.0007832566689719531,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9533685781046912,0.9533685781046912,0.9641869874413092,0.9641869874413092,0.9650097515944547,0.9650097515944547,0.9626130056683064,0.9626130056683064,0.9944036285708875,0.9944036285708875,0.7391637228273398,0.8613900823205272,0.7405174074272987,0.7347344933003075,0.8203114316103309,0.67989339212875,0.8038750912244119,0.6989544088568789,0.6622480842400583,0.7975124712916071,24.197958298111118,24.197958298111118,24.63627572403024,24.63627572403024,24.66979807817586,24.66979807817586,24.572219698839547,24.572219698839547,25.884604759092184,25.884604759092184,16.502618964805905,20.660462316908237,16.54519025637481,16.363876316202706,19.192730335817075,14.716001919660513,18.625278368560203,15.274038895138972,14.213420196968755,18.40867627394718,42.82180606506542,42.82180606506542,0.0,47.57978451673935,0.0,42.82180606506542,47.57978451673935,0,0
+2017/06/29 01:00:00,23.72802252543194,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5309271017541454,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9847964610946714,0.9847964610946714,1.025869551573352,1.025869551573352,0.9924544940971386,0.9924544940971386,0.998834537923228,0.998834537923228,1.0949659198748245,1.0949659198748245,0.723259998655787,0.8731365860740584,0.7214809959301067,0.7274352507944799,0.8794227268656827,0.6770354471731033,0.8292328037718156,0.6851941448238043,0.6699985189759833,0.8431845650314557,25.483893794277492,25.483893794277492,27.221504702302582,27.221504702302582,25.803021845974143,25.803021845974143,26.07060303320658,26.07060303320658,30.28420988045724,30.28420988045724,16.008366283441674,21.093055779823672,15.953755171859115,16.137071359235236,21.3268938828583,14.633685990077382,19.505493713484313,14.869612158235412,14.432511572799328,20.001295591876442,23.72802252543194,23.72802252543194,0.0,26.364469472702154,0.0,23.72802252543194,26.364469472702154,0,0
+2017/06/29 02:00:00,28.344229717303833,0,71.01996303884,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248666308309375,0,0,0.0,17.784434270023795,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0037811554371479316,0.00011963312234860222,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9978357555064062,0.9978357555064062,1.0444258287821984,1.0444258287821984,1.001897395035554,1.001897395035554,1.0071439059470977,1.0071439059470977,1.152730952767793,1.152730952767793,0.7302636044919211,0.8730177784698713,0.7221117147570508,0.7355234592726355,0.9038897511007612,0.6785019153009268,0.8288219439009247,0.6836823595909578,0.6733378753480017,0.8547401823528638,26.028611523476215,26.028611523476215,28.027168047357435,28.027168047357435,26.199609820904456,26.199609820904456,26.421416390479664,26.421416390479664,32.97064761244039,32.97064761244039,16.22468332388101,21.088651908705984,15.973101139235709,16.388528482277593,22.25244245138994,14.675879780289748,19.491016518642894,14.825678347988045,14.527711158513156,20.41809362862658,28.344229717303833,28.344229717303833,0.0,31.493588574782034,0.0,28.344229717303833,31.493588574782034,0,0
+2017/06/29 03:00:00,23.722030575090685,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249351514128947,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9734769206100037,0.9734769206100037,1.0225479145107934,1.0225479145107934,0.9746958578162105,0.9746958578162105,0.978339628095013,0.978339628095013,1.151686274061875,1.151686274061875,0.7147345465861594,0.8567756126536602,0.7038356844443764,0.7204733027173966,0.9248408305896052,0.6616891104922958,0.8122212721779629,0.6650655116843593,0.6575260984505132,0.8611593899890516,25.016311809527465,25.016311809527465,27.07862731320253,27.07862731320253,25.066425268701266,25.066425268701266,25.216572280543176,25.216572280543176,32.92110195100294,32.92110195100294,15.747893607364716,20.492084189353292,15.41946904134619,15.922881847171169,23.064290076242884,14.197719563643972,18.91200050226682,14.29276303292815,14.081213378862657,20.652023602296836,23.722030575090685,23.722030575090685,0.0,26.35781175010076,0.0,23.722030575090685,26.35781175010076,0,0
+2017/06/29 04:00:00,54.29376937920548,0,88.72588128136032,0,0,0,2.4921275458163277,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,11.768409770605638,0.0,0.5250985131493902,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,403.35992708732283,0.0,0.0,0.0,0.0,0.0,8123.564287669782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.000119891204895,1.000119891204895,1.005760434894705,1.005760434894705,1.0004333132362495,1.0004333132362495,0.9822296836480113,0.9822296836480113,1.043413846774987,1.043413846774987,0.5734817359791832,0.6402825740784502,0.5684002868765253,0.5766302918166242,0.619770452022429,0.5434725488530135,0.6095002606588285,0.5445244931059617,0.5418103377973447,0.6343501286598383,26.124698481915814,26.124698481915814,26.36282651856844,26.36282651856844,26.137898682727524,26.137898682727524,25.377433552731148,25.377433552731148,27.98290564011684,27.98290564011684,11.889918961990858,13.606635003304135,11.767255933862216,11.96648523111783,13.058891910728263,11.181736398670282,12.791501927388197,11.205900782051884,11.143651224338981,13.446342471065677,54.29376937920548,54.29376937920548,0.0,60.32641042133942,0.0,54.29376937920548,60.32641042133942,0,0
+2017/06/29 05:00:00,81.72518605243013,0,212.9421150752648,0,0,0,0.40645982090567434,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,8.007534557716426,0.0,0.5251486438521427,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1656.597317081175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0081707632384993,1.0081707632384993,1.0077472607386289,1.0077472607386289,1.0080595401747747,1.0080595401747747,1.0255384384285302,1.0255384384285302,1.0228457166382467,1.0228457166382467,0.735864680229721,0.8370144892266279,0.7276420127965089,0.739907580769378,0.8432040358652616,0.6882593107284962,0.7828984943554402,0.6891462112784543,0.6853332666502833,0.8310996876955973,26.464950349379563,26.464950349379563,26.44699100608011,26.44699100608011,26.460233092291247,26.460233092291247,27.20724379265647,27.20724379265647,27.091420307028187,27.091420307028187,16.39919861241941,19.781026763659213,16.143464429607292,16.52600241534985,20.001993206402943,14.958991862406918,17.9176695187207,14.984929488000887,14.873660126702461,19.571364963625044,81.72518605243013,81.72518605243013,0.0,90.80576228047792,0.0,81.72518605243013,90.80576228047792,0,0
+2017/06/29 06:00:00,94.4418389924159,0,631.0253555942339,0,0,0,7.203605105560632,0.0,9.61632236247044,0.0,73.80580873715317,0,3.290867750685321,2.522040999553289e-09,0.5252350340243054,0,0,0.0,400.338064262697,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2322.758688194279,22490.532468393485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033596257336524736,0.0010629621636044748,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.02070714025097,1.02070714025097,1.0259470007272875,1.0259470007272875,1.0207825772059949,1.0207825772059949,1.0585330740400964,1.0585330740400964,1.0226904598689395,1.0226904598689395,0.8766610130059127,0.9918726172412585,0.8668999620122544,0.8887752523575877,1.1004556213231047,0.8375373577840528,0.9527769081615115,0.8380074240312657,0.8435787951629712,1.0636467820739175,26.99962444462767,26.99962444462767,27.224840992197258,27.224840992197258,27.002859592117105,27.002859592117105,28.648054313275466,28.648054313275466,27.084750370387013,27.084750370387013,21.223960817100263,25.778694922702655,20.862667584848666,21.677799348840892,30.534739935668924,19.79963126705796,24.17411869590731,19.816366732476666,20.01542342260906,28.874883462137475,94.4418389924159,94.4418389924159,0.0,104.93537665823987,0.0,94.4418389924159,104.93537665823987,0,0
+2017/06/29 07:00:00,181.23799296922854,0,783.5054412410808,0,0,0,37.778592237804936,0.0,7.6477210639741555,0.0,69.33401494192633,0,39.380909295966944,3.0131817805293743e-09,27.096755426542966,0,0,0.0,517.3277973969998,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,678.1448681018114,4785.817623494069,15758.071715469136,3938.4760476078527,2361.422502262509,4465.184747063147,2903.966912400451,43340.56663479443,3930.163427814175,2447.5664074447113,4553.06289350025,3029.291127161273,42244.14112043105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04171441003937884,0.0013198148563035462,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0273097827236195,1.0273097827236195,1.0141472127941165,1.0141472127941165,1.035169104524013,1.035169104524013,1.1404857628324765,1.1404857628324765,1.0488655824736073,1.0488655824736073,0.6662716366912877,0.7366683849663442,0.6518394135724066,0.7440876713846974,0.7303376142338944,0.6508935100086432,0.7192183284450265,0.6419486620754559,0.7384084538840677,0.7231248602404162,27.283582106616763,27.283582106616763,26.719110783855996,26.719110783855996,27.62368649427816,27.62368649427816,32.39207241407941,32.39207241407941,28.221794893378274,28.221794893378274,14.326834355564003,16.424350573238016,13.923279242789988,16.657846675235277,16.226980490201555,13.897144984350476,15.884493544994527,13.651926641768881,16.47890110368057,16.0042130781236,181.23799296922854,181.23799296922854,0.0,201.37554774358728,0.0,181.23799296922854,201.37554774358728,0,0
+2017/06/29 08:00:00,215.3014259870312,0,834.7279296994293,0,0,0,55.967931246196436,0.0,11.198411640824625,0.0,83.2008179303116,0,39.380909295966944,2.962269031363365e-09,25.553355870769337,0,0,0.0,515.3147570865322,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3424.8206581521563,1742.0290399781684,3477.709459804848,7199.430944217003,29499.90638993094,7797.448725467846,5370.774982235868,7379.527339047141,6789.047588637425,52177.88220352189,7555.978443874012,5129.508180207164,7227.071987000503,6878.659828991284,51623.20818706313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04444153326574,0.0014060991342239133,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0586791009148664,1.0586791009148664,1.0359085713900744,1.0359085713900744,1.0486205234577015,1.0486205234577015,1.20515056161112,1.20515056161112,1.0641750512794952,1.0641750512794952,0.611753461656624,0.6449764572022243,0.5892432725144039,0.7107971424383176,0.6106850104524937,0.6083857183496566,0.6352367108034741,0.5863145405885847,0.7242999838968767,0.6095122872270134,28.65451867875042,28.65451867875042,27.655803150084807,27.655803150084807,28.211033538534053,28.211033538534053,35.49953924353568,35.49953924353568,28.898369079373154,28.898369079373154,12.849773257358493,13.734543662930704,12.277519442291833,15.628653581979975,12.822113955817159,12.76275955774183,13.470200577759726,12.204681969598013,16.04035441729779,12.791812368503471,215.3014259870312,215.3014259870312,0.0,239.22380665225688,0.0,215.3014259870312,239.22380665225688,0,0
+2017/06/29 09:00:00,253.05052929672433,0,839.3949865095065,0,0,0,71.96382092227067,0.0,11.128561489866103,0.0,106.27511244621549,0,39.380909295966944,2.857755513102079e-09,20.870149937093178,0,0,0.0,466.7462851277931,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7935.746613592179,4056.5908962340263,6527.772583210382,9221.226253538009,44785.75882339734,10882.029611876293,6918.336382995171,9229.439875808002,9121.484458891071,58896.711261442644,10975.468859222867,6832.929602766044,9248.80127595301,9501.769759900317,58971.60492009127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0446900108272286,0.0014139607910662645,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1074839933233218,1.1074839933233218,1.0566851010869178,1.0566851010869178,1.0596551264909415,1.0596551264909415,1.2535901313140114,1.2535901313140114,1.0755674216451299,1.0755674216451299,0.6154494805657335,0.6182984370913782,0.5704746603252999,0.7268585840479698,0.5792215000788001,0.6271273494226535,0.6188181485545041,0.5763184660908084,0.7558430286431246,0.582717745947077,30.85698467597028,30.85698467597028,28.566313645785527,28.566313645785527,28.697745293264987,28.697745293264987,37.90628649497131,37.90628649497131,29.407252807459372,29.407252807459372,12.945835277007461,13.020286183592376,11.817194721986354,16.119250568172973,12.029820624185362,13.253246498648394,13.03390563190601,11.95888309504528,17.032636994767202,12.115739066376719,253.05052929672433,253.05052929672433,0.0,281.16725477413814,0.0,253.05052929672433,281.16725477413814,0,0
+2017/06/29 10:00:00,281.120893367732,0,925.6571617208963,0,0,0,72.54961116481725,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.8041362187113584e-09,18.601563317554618,0,0,0.0,464.2825790578225,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10342.249068598534,4719.709446524858,7966.67824888107,9650.394641932415,54071.38942037723,11255.728020289784,6506.049285783971,8685.349599938054,9228.076432644355,54551.169791835426,11664.825043521598,6516.148596266005,8885.00534249227,9767.966975322424,55334.33750566113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04928267293045126,0.0015592694186626628,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1825717972595489,1.1825717972595489,1.1079044351242222,1.1079044351242222,1.1054224146594094,1.1054224146594094,1.2546965926826903,1.2546965926826903,1.1320121781453645,1.1320121781453645,0.6508160094553392,0.6325642275834438,0.5878262512518141,0.7412327119198933,0.5861387588230004,0.6702761599326347,0.636011885242227,0.5961198343729204,0.7694573200183403,0.5942695069138437,34.40016667377209,34.40016667377209,30.876314486987923,30.876314486987923,30.762289870008857,30.762289870008857,37.96198908666324,37.96198908666324,31.9945143478335,31.9945143478335,13.89500544972789,13.398387029297055,12.242231686534637,16.567717232778733,12.200322123577692,14.440408262069496,13.491088619107089,12.450002423446335,17.474082045524938,12.403389338034643,281.120893367732,281.120893367732,0.0,312.35654818636885,0.0,281.120893367732,312.35654818636885,0,0
+2017/06/29 11:00:00,317.72612854022884,0,1002.3172975746405,0,0,0,89.64140355015944,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.85775551310208e-09,20.878841390382465,0,0,0.0,487.70718614275063,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14710.794279240268,6804.168614768329,10807.98725062563,9836.2896912954,68932.00587434052,14453.373685081693,8182.7791494718995,11261.025173686294,10118.877092534907,66849.73324732,15072.355765055461,8292.308137495877,11583.290058164821,10586.831348405469,68407.90060982673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053364115345978284,0.001688403411689889,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2347908617174037,1.2347908617174037,1.13527035029522,1.13527035029522,1.1358173397361513,1.1358173397361513,1.241518742815347,1.241518742815347,1.1630215452807664,1.1630215452807664,0.6780223895318832,0.636243386629538,0.5956077207570124,0.7272759323010508,0.5869367513258531,0.7061705436038821,0.6472987797934763,0.6110448289377372,0.7554769267374988,0.6009450497417835,36.96472313333531,36.96472313333531,32.14710446384113,32.14710446384113,32.17275536681815,32.17275536681815,37.300625995636366,37.300625995636366,33.46052234963015,33.46052234963015,14.662072440205279,13.497331766959334,12.437086486475508,16.132146493818425,12.220125191334418,15.489396148433173,13.798180397661838,12.831423146686461,17.020875479168012,12.572257289021067,317.72612854022884,317.72612854022884,0.0,353.02903171136535,0.0,317.72612854022884,353.02903171136535,0,0
+2017/06/29 12:00:00,307.2144456961837,0,942.3261676293799,0,0,0,99.66151084389276,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.8041362187113584e-09,18.609261764844632,0,0,0.0,463.2064087100341,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14973.585560963336,7418.057496324416,11581.876621997502,8863.407833628167,72236.9200835829,16397.311619629483,9428.674247453966,13596.643132792095,10402.450464817783,78455.4148454266,17031.913520451995,9579.582600933065,13978.02261191057,10738.08912914724,80287.50405936033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050170143151862724,0.0015873483578503472,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2098886369293733,1.2098886369293733,1.1296773238249582,1.1296773238249582,1.132679391957294,1.132679391957294,1.187516570153893,1.187516570153893,1.1585344838152114,1.1585344838152114,0.6725600215212113,0.6359883672288351,0.6001258469202441,0.6923104684410287,0.5900854956905263,0.6993232266258875,0.6488885281887129,0.6171365263419751,0.7125658006955499,0.6051027550522108,35.73210886485214,35.73210886485214,31.885378261280508,31.885378261280508,32.02573394681505,32.02573394681505,34.63965167769423,34.63965167769423,33.24651361689192,33.24651361689192,14.505492692876928,13.490454513525847,12.551430205958425,15.077745974499223,12.298534421145007,15.284991336633254,13.84187781509101,12.989879793086857,15.682132822802103,12.678410159145884,307.2144456961837,307.2144456961837,0.0,341.3493841068708,0.0,307.2144456961837,341.3493841068708,0,0
+2017/06/29 13:00:00,302.6334230058892,0,903.131707350623,0,0,0,97.64546667300955,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.7495962170800543e-09,16.33375686104739,0,0,0.0,459.5023009438214,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14922.624423321013,7978.6338485544575,11657.388863736041,8273.529094170975,72037.63265184309,15962.683540879998,9456.757350370675,13065.681184019786,9779.718908175995,74123.47871689613,16532.67206371788,9642.680375739996,13438.128667211184,10028.07562493947,76198.68880012694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04808340105502368,0.0015213252924855902,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2119043257343443,1.2119043257343443,1.1510115901114024,1.1510115901114024,1.128736654531912,1.128736654531912,1.1702000979429192,1.1702000979429192,1.152886819950939,1.152886819950939,0.6747943526545167,0.6491466604887577,0.5968363433375057,0.6760996365695982,0.5831290882681948,0.7010922999267256,0.6662162491305237,0.6142400245950073,0.6934640548554782,0.5992661016233232,35.83124224458567,35.83124224458567,32.88912219914326,32.88912219914326,31.841459609890848,31.841459609890848,33.80419357705355,33.80419357705355,32.978042823995935,32.978042823995935,14.569384120735876,13.848983438053324,12.468092486521954,14.606809121368073,12.125882465519325,15.33760751478954,14.325268355272016,12.914335443490529,15.111691496233703,12.52960371150445,302.6334230058892,302.6334230058892,0.0,336.25935889543246,0.0,302.6334230058892,336.25935889543246,0,0
+2017/06/29 14:00:00,275.4629624897995,0,846.3887593469867,0,0,0,86.48900200954336,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.694126245407768e-09,14.073133927368092,0,0,0.0,438.2497054527292,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13380.900966940615,8657.783628444682,10997.111116907574,7748.950530766906,66493.32752611797,13264.749292389288,9143.54683655586,10834.324531356782,8510.781871160894,60757.900247620535,13768.27738657699,9454.219889700418,11216.805027513787,8741.475423686612,62843.81107479171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045062364473430205,0.0014257418008801815,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1794415941224792,1.1794415941224792,1.2161321938954335,1.2161321938954335,1.1253218184058849,1.1253218184058849,1.1614956471952462,1.1614956471952462,1.1389894062671648,1.1389894062671648,0.6507916046213206,0.6834398893457224,0.5880101430046148,0.6631641986695097,0.5647824886863743,0.6723218741763356,0.7088756813057416,0.6045828525478139,0.6788318130417312,0.579861321637701,34.24894167263871,34.24894167263871,36.03954350972684,36.03954350972684,31.682268608278974,31.682268608278974,33.387675099025785,33.387675099025785,32.321698913770334,32.321698913770334,13.894331766669708,14.818641145940617,12.246806180298279,14.239181581530332,11.68060713082933,14.498695535082192,15.57070685261192,12.66509517357315,14.685384546420408,12.045504258611516,275.4629624897995,275.4629624897995,0.0,306.0699583219994,0.0,275.4629624897995,306.0699583219994,0,0
+2017/06/29 15:00:00,258.10935865795994,0,857.1791765587305,0,0,0,75.9153235343801,0.0,16.568294279967066,0.0,108.75639138185811,0,39.380909295966944,2.694126245407769e-09,14.056464960639335,0,0,0.0,449.0401226644731,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11674.345874078772,9285.542902478994,10069.838463328544,7332.7703822985195,60753.14304129129,10702.245371533862,8765.830697956311,8981.655984805679,7327.011044069,50363.141391143465,11029.034228204308,9155.187511100628,9296.13194731446,7511.698547806407,52173.736789601106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04563685427831742,0.0014439182578543854,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1486626707269876,1.1486626707269876,1.250183398852951,1.250183398852951,1.1149736052799109,1.1149736052799109,1.151612378634676,1.151612378634676,1.1297615696166314,1.1297615696166314,0.6134416484636722,0.7000933480282239,0.5705724559838387,0.6437363932264735,0.5462328046689935,0.6260434149628044,0.7274700587880628,0.5826685395393708,0.6548837575706635,0.5583243018978737,32.77789652019041,32.77789652019041,37.734977987201276,37.734977987201276,31.202208305458313,31.202208305458313,32.9175986370104,32.9175986370104,31.88931299960305,31.88931299960305,12.89357681646689,15.307879856244881,11.819553677349134,13.700658963380093,11.245244858570075,13.224463588320233,16.138147491887793,12.114526164235627,14.007654335151955,11.527340156985588,258.10935865795994,258.10935865795994,0.0,286.78817628662216,0.0,258.10935865795994,286.78817628662216,0,0
+2017/06/29 16:00:00,288.86918299728154,0,893.1081113672516,0,0,0,83.69850005730494,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.694126245407769e-09,14.086021208794518,0,0,0.0,431.73352870417784,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12482.314132796591,11190.146298151361,11672.99785632741,7890.406386073117,69620.72955763232,10941.173759034122,10183.256633851846,9845.284141850829,7840.440170554928,54348.02924649384,11077.873159470339,10577.976728614181,10060.949014632966,7938.996092629442,56192.83892533658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047549737380324614,0.0015044405458123791,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1507525467393576,1.1507525467393576,1.3053117802336889,1.3053117802336889,1.1379224237066543,1.1379224237066543,1.1616207069178963,1.1616207069178963,1.1538680294343842,1.1538680294343842,0.5991290709249615,0.734505932217135,0.573794484762372,0.639416873935542,0.5443088686188815,0.609057767236803,0.7649034464162449,0.584847256191338,0.6475470369408246,0.5565247302071653,32.8768474616799,32.8768474616799,40.541976415515926,40.541976415515926,32.27156281763229,32.27156281763229,33.393642808589405,33.393642808589405,33.02461443609792,33.02461443609792,12.526127854819137,16.356739652112125,11.897505116865233,13.583148973582311,11.200943729441988,12.780084234452858,17.32554096830627,12.168330608765004,13.804997022987294,11.48495457196779,288.86918299728154,288.86918299728154,0.0,320.96575888586835,0.0,288.86918299728154,320.96575888586835,0,0
+2017/06/29 17:00:00,297.3126352944386,0,943.3734139773892,0,0,0,85.36475752414184,0.0,16.630907673226492,0.0,133.89528835348938,0,39.380909295966944,2.8041362187113584e-09,18.608797242355575,0,0,0.0,481.9988313143155,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11938.58664318567,9903.47875454084,11664.903830374089,7734.976584584795,69625.24773836588,11664.569979050339,9795.697229674333,11024.70469358462,7923.455679911691,61109.45479510314,11758.877142886935,10101.985353031068,11275.021609758298,8005.30956993676,62548.5327636068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05022589932313309,0.001589112444244084,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1586100373008617,1.1586100373008617,1.249738287718672,1.249738287718672,1.1570709191838788,1.1570709191838788,1.1588502194429842,1.1588502194429842,1.170361001530667,1.170361001530667,0.5994203626188531,0.7031668309912346,0.5866827049063507,0.6382722979431116,0.5565118146271815,0.6032612110062296,0.72048231897279,0.5959425739197161,0.6421055677518716,0.5674247157904432,33.25011193234599,33.25011193234599,37.71261746828533,37.71261746828533,33.17684491515699,33.17684491515699,33.261552044775854,33.261552044775854,33.811914898024355,33.811914898024355,12.533517598974512,15.399480773869982,12.213817749679663,13.552147072896602,11.48465087686715,12.631300032238613,15.923157889984878,12.445530477388985,13.656198234250525,11.74383441847327,297.3126352944386,297.3126352944386,0.0,330.34737254937625,0.0,297.3126352944386,330.34737254937625,0,0
+2017/06/29 18:00:00,288.4969720102606,0,923.7059601763345,0,0,0,92.28247066159632,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.9622690313633686e-09,25.668895585121504,0,0,0.0,497.8217300258049,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11234.86720657126,9505.011847708061,11930.360896573842,7511.553430211554,69012.08916172059,13248.607414308352,10725.499975743905,13340.076030989618,8662.701950470891,72794.5186535011,13278.000514649446,10959.032739752784,13633.47440632935,8695.635576710316,74049.18058458468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049178789514950805,0.0015559826198089425,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1562277494516218,1.1562277494516218,1.2641473537343626,1.2641473537343626,1.1782798007030761,1.1782798007030761,1.1476008892557994,1.1476008892557994,1.1753247996937992,1.1753247996937992,0.6087081910491512,0.7191362989752571,0.6161284555049583,0.6388585289752965,0.577464195414695,0.6100001165721061,0.7347705739576638,0.6268634038215468,0.6393138554534122,0.5880378019604561,33.13673866370564,33.13673866370564,38.43902960811552,38.43902960811552,34.192888391846466,34.192888391846466,32.727676525695856,32.727676525695856,34.05050110286409,34.05050110286409,12.771070100873516,15.881986713624528,12.963546750703742,13.568018584981274,11.986836059364535,12.804409970910555,16.365003115220333,13.246232963843056,13.580356295688276,12.247494351826333,288.4969720102606,288.4969720102606,0.0,320.5521911225118,0.0,288.4969720102606,320.5521911225118,0,0
+2017/06/29 19:00:00,278.2404392612618,0,907.7078537842642,0,0,0,92.40664444037887,0.0,17.665254465099625,0.0,101.68988858149199,0,39.380909295966944,3.0131817808347346e-09,27.0977424753112,0,0,0.0,517.3139761462788,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9442.65188082454,8241.846980536895,11202.088968720349,6885.896836636517,63369.07910799411,13673.589206983092,11282.066778733451,14276.797883836269,8684.887506848112,80026.69936917903,13694.362930617748,11527.663785873037,14686.448215244,8671.489756299054,81113.47110734099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0483270384807329,0.001529033810805735,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.153469893442644,1.153469893442644,1.2506518434398455,1.2506518434398455,1.1868379318754567,1.1868379318754567,1.1308198777614071,1.1308198777614071,1.1784052376812468,1.1784052376812468,0.6364950137346499,0.7380554802288487,0.6484551037305532,0.6593965266264511,0.6152019642914167,0.6344293728227933,0.7469439264764395,0.6564996320101889,0.6561132181185146,0.6225865399625659,33.005713869781005,33.005713869781005,37.7585161912174,37.7585161912174,34.60674093794566,34.60674093794566,31.938761486023466,31.938761486023466,34.19893842056334,34.19893842056334,13.504120303374123,16.467824997488236,13.829953411911063,14.13346634456309,12.939383640696718,13.448473560066887,16.74836678142003,14.052602061670882,14.041843143968379,13.13300991362992,278.2404392612618,278.2404392612618,0.0,309.15604362362427,0.0,278.2404392612618,309.15604362362427,0,0
+2017/06/29 20:00:00,273.44748695703606,0,846.5130536470141,0,0,0,81.38526206830797,0.0,23.35282201635732,0.0,106.16168237671882,0,39.380909295966944,2.9104633630526153e-09,23.166811196774553,0,0,0.0,491.6095285215729,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7201.21023209556,5039.505219740455,8065.980395907021,6308.999147165074,53907.172713647255,11967.87106075935,9152.31282285579,12190.936253413714,7385.225909832448,74597.76336408315,11865.987271955264,9126.746143283406,12205.334086640743,7244.1938094770885,75116.55714653604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04506898199402929,0.0014259511746191442,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1475150956286142,1.1475150956286142,1.1800084425997615,1.1800084425997615,1.1383923004544836,1.1383923004544836,1.1157116264055666,1.1157116264055666,1.1753469139105808,1.1753469139105808,0.6453514007585294,0.7032711015399652,0.6329072581642806,0.6641969833111883,0.6335880661467003,0.6406410435838791,0.7000560097841994,0.628683276380243,0.6579628743004292,0.6373583786741485,32.72362023185835,32.72362023185835,34.27630524218711,34.27630524218711,32.2936371858906,32.2936371858906,31.236327957828507,31.236327957828507,34.051565701236925,34.051565701236925,13.744802109491445,15.402595563889818,13.407587432645826,14.268267357590105,13.425862463285242,13.616369625097477,15.30676954823663,13.294651854895022,14.093401742365515,13.527433522100907,273.44748695703606,273.44748695703606,0.0,303.8305410633734,0.0,273.44748695703606,303.8305410633734,0,0
+2017/06/29 21:00:00,248.38536745841216,0,821.539717494556,0,0,0,54.369547087879276,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.962269031363368e-09,25.551858119405363,0,0,0.0,502.12654488165884,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3813.6168122250456,2368.4364976828283,4894.58326338986,5307.439223956707,38001.800829395164,7005.471683408069,5562.522153728975,7378.361830256543,4061.314860235334,49004.09351687948,6740.106975266706,5370.256765258756,7317.041054818379,3766.69484441833,48855.886104212106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04373938307935584,0.0013838835917657723,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1275134275762564,1.1275134275762564,1.1540498544689108,1.1540498544689108,1.117740378150815,1.117740378150815,1.0930790454978425,1.0930790454978425,1.1583519843999937,1.1583519843999937,0.6307160004402693,0.6796399288235722,0.6156069729873472,0.6467913081751185,0.6241393655757109,0.6211074526009612,0.6698516475418531,0.6089761028422832,0.6355786533674116,0.6237240393078295,31.784391961353023,31.784391961353023,33.033247806644965,33.033247806644965,31.33021315096039,31.33021315096039,30.198337850617378,30.198337850617378,33.237822621172526,33.237822621172526,13.348903684363222,14.708687265361405,12.949941780361542,13.784254595556334,13.17402668781854,13.094038179397018,14.428335591851976,12.777977970473216,13.479411433327712,13.163045892567155,248.38536745841216,248.38536745841216,0.0,275.983741620458,0.0,248.38536745841216,275.983741620458,0,0
+2017/06/29 22:00:00,160.05807125512038,0,640.2690501080024,0,0,0,23.426590619941802,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8577555131020794e-09,20.8785230269989,0,0,0.0,480.5624638015538,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3349.13401793503,7926.9252567029525,2518.620856524259,2492.0519641820565,3336.911568092803,965.5810647253318,26955.799613650597,1962.69754501507,2070.451956899352,3061.946784840513,413.41894695193605,26201.071605715755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03408839847930392,0.001078533166311333,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0539405219729379,1.0539405219729379,1.0642798225193648,1.0642798225193648,1.086457090889644,1.086457090889644,1.0420604786015444,1.0420604786015444,1.1107477878987484,1.1107477878987484,0.6359462094605608,0.6781660550423804,0.6195468120345576,0.6506951734531279,0.6291202669213682,0.6212138069324813,0.6623978543975704,0.6073537380986794,0.6346083115227377,0.6240200969748313,28.44513991933657,28.44513991933657,28.90302814434584,28.90302814434584,29.89794096226825,29.89794096226825,27.923769824929906,27.923769824929906,31.0071937048653,31.0071937048653,13.489317892695723,14.666208063660392,13.053020569854581,13.891670085767103,13.306299666822682,13.096837288905888,14.21762928820256,12.736194409446213,13.453286705748951,13.170872583770361,160.05807125512038,160.05807125512038,0.0,177.8423013945782,0.0,160.05807125512038,177.8423013945782,0,0
+2017/06/29 23:00:00,91.83193747208234,0,480.13288556589765,0,0,0,4.50938532986392,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6377170408941e-09,11.811571080742429,0,0,0.0,426.89735679708144,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1682.0473080965448,0.0,0.0,0.0,0.0,0.0,7228.7149559131685,0.0,0.0,0.0,0.0,5997.565865300336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025562630465157613,0.0008087838092942865,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8636533567040531,0.8636533567040531,0.868561599221817,0.868561599221817,0.905771451513436,0.905771451513436,0.994097631712532,0.994097631712532,0.9566116971043449,0.9566116971043449,0.5901714726043189,0.6571808025982014,0.6049675997438984,0.5742560027204555,0.6224508732747439,0.549505477617289,0.6128288005257643,0.573865459894952,0.5260766114690122,0.6140192059949088,20.743369575164877,20.743369575164877,20.92389363855584,20.92389363855584,22.324633350405833,22.324633350405833,25.87178737761957,25.87178737761957,24.328874646842067,24.328874646842067,12.30068143101144,14.0715836434984,12.674947629827727,11.908707625546995,13.129431345439997,11.320970945189202,12.877660886605014,11.899227307783079,10.789082629583405,12.908591158007496,91.83193747208234,91.83193747208234,0.0,102.03548608009149,0.0,91.83193747208234,102.03548608009149,0,0
+2017/06/30 00:00:00,42.75122153226096,0,475.0648566267298,0,0,0,0.5320047173071017,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,2.8716523117942705,2.580359340738652e-09,9.550243504156056,0,0,0.0,421.8293278579136,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344.7926733197305,316.8029434945201,373.51903410438126,1067.9790513403689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0252928048505135,0.0008002467149309153,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9669377482418646,0.9669377482418646,0.9771559595381495,0.9771559595381495,0.9764465503467781,0.9764465503467781,0.9620977659487269,0.9620977659487269,1.0022932763643535,1.0022932763643535,0.7668058162422775,0.8727357083728831,0.7591431702375486,0.7693120143981496,0.8199011345805748,0.7007598111672321,0.8036551112442302,0.7074219988086651,0.6927260894430762,0.7973189147450657,24.74845494777881,24.74845494777881,25.16774116184594,25.16774116184594,25.138501106980456,25.138501106980456,24.551272112278696,24.551272112278696,26.216310187835973,26.216310187835973,17.38748601077677,21.078198674265963,17.13891724151634,17.469328709509597,19.178426655096587,15.327708249377963,18.617761034688897,15.526973007185504,15.089969444020923,18.402113898162256,42.75122153226096,42.75122153226096,0.0,47.501357258067735,0.0,42.75122153226096,47.501357258067735,0,0
+2017/06/30 01:00:00,23.722125856107766,0,45.386742175714126,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250304324299759,0,0,0.0,9.896389663169993,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002416423771697528,7.645396375019514e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0156444711719441,1.0156444711719441,1.0519401185650665,1.0519401185650665,1.0178308626604442,1.0178308626604442,1.010914805048218,1.010914805048218,1.1032343817039614,1.1032343817039614,0.7719571755219908,0.8982903839125841,0.7533623820844335,0.7832229220078591,0.8797181351927531,0.7053493447467271,0.8324172834795827,0.7005649588257782,0.7073904505227474,0.8475319291271844,26.78299450965565,26.78299450965565,28.35699243213749,28.35699243213749,26.876432145479527,26.876432145479527,26.581479638897093,26.581479638897093,30.661943719740762,30.661943719740762,17.556000016715586,22.0384741410533,16.953055120365192,17.928471362772854,21.33792272408357,15.464775105854699,19.617942984609883,15.32190908287562,15.526024891589955,20.15744805264751,23.722125856107766,23.722125856107766,0.0,26.357917617897517,0.0,23.722125856107766,26.357917617897517,0,0
+2017/06/30 02:00:00,28.397054947281546,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.577691860808651,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.017644592331099,1.017644592331099,1.0583362739216202,1.0583362739216202,1.0169277842113258,1.0169277842113258,1.0099976757282714,1.0099976757282714,1.1601099807878468,1.1601099807878468,0.7534471795596371,0.8776199773185127,0.7335944132340757,0.7648112241317575,0.9042487857013545,0.6882634031188631,0.8158386774325608,0.6804053817430192,0.6917387111490807,0.8574479915577472,26.868464738061576,26.868464738061576,28.63934350900101,28.63934350900101,26.837816532516598,26.837816532516598,26.542501051855737,26.542501051855737,33.32158513077326,33.32158513077326,16.95577116941415,21.25966728870712,16.328300413803134,17.32254194922193,22.26620563246827,14.959111467293837,19.03718442050598,14.730785817418464,15.060942711892153,20.51656380701877,28.397054947281546,28.397054947281546,0.0,31.552283274757272,0.0,28.397054947281546,31.552283274757272,0,0
+2017/06/30 03:00:00,23.721887545295175,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5247921216173822,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9940082446287427,0.9940082446287427,1.0375650923065056,1.0375650923065056,0.9907173667780876,0.9907173667780876,0.9830312586468736,0.9830312586468736,1.1588520759433982,1.1588520759433982,0.7351900236204822,0.8608314198673971,0.7136984838394183,0.74705986742801,0.9252560091299208,0.6676587406967384,0.7969902459597119,0.6575929459888074,0.6721338393596092,0.8651187694334577,25.868043867781125,25.868043867781125,27.727822214868823,27.727822214868823,25.730434902320937,25.730434902320937,25.410652652546176,25.410652652546176,33.261640478721276,33.261640478721276,16.37810663277962,20.64003026324754,15.716452792155167,16.75204855452631,23.080556524293698,14.366095968145217,18.390974287207754,14.083078244063287,14.493330414333116,20.797162910309538,23.721887545295175,23.721887545295175,0.0,26.35765282810575,0.0,23.721887545295175,26.35765282810575,0,0
+2017/06/30 04:00:00,47.19104883294143,0,88.72588128136032,0,0,0,0.07838159235333521,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,7.079481580468397,0.0,0.5250521104855848,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,311.2880455737935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0161568428981205,1.0161568428981205,1.0193851175676858,1.0193851175676858,1.0165584626785253,1.0165584626785253,0.9862748704391174,0.9862748704391174,1.0553538283602755,1.0553538283602755,0.5670981894105627,0.6174621142736477,0.5584693894842565,0.5714578611560397,0.6412532580078992,0.5359599061674746,0.5827046914317586,0.532202474944487,0.5371898938399792,0.6268425954995066,26.804875204058348,26.804875204058348,26.942963309324114,26.942963309324114,26.82203312816631,26.82203312816631,25.545327524473393,25.545327524473393,28.507503883701958,28.507503883701958,11.736004392719764,12.998394292825836,11.530763543997594,11.840929655582428,13.63300784723819,11.010556182474318,12.115417271834673,10.925857982430998,11.03841482364146,13.245680175838487,47.19104883294143,47.19104883294143,0.0,52.43449870326826,0.0,47.19104883294143,52.43449870326826,0,0
+2017/06/30 05:00:00,77.08877649948118,0,212.9421150752648,0,0,0,0.3394781172122171,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,3.4382451654656143,0.0,0.5250101868474654,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1381.965810749747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0472898767901373,1.0472898767901373,1.0389922015862778,1.0389922015862778,1.0464563149287596,1.0464563149287596,1.0309545447866233,1.0309545447866233,1.0553604431906565,1.0553604431906565,0.7035126141108833,0.785865476529084,0.6881747380389764,0.7095346003841199,0.85536747304796,0.6470480647469272,0.7210273563600245,0.6402552039771866,0.647809066131588,0.823523600806611,28.152638382395267,28.152638382395267,27.789947920685506,27.789947920685506,28.116090376249957,28.116090376249957,27.441022570649224,27.441022570649224,28.507795940425794,28.507795940425794,15.409811876030659,18.016622040776383,14.956520288871246,15.590560360711777,20.440878141866534,13.79129899547857,15.939851323766476,13.605891968011392,13.812194698565193,19.304956792477427,77.08877649948118,77.08877649948118,0.0,85.65419611053464,0.0,77.08877649948118,85.65419611053464,0,0
+2017/06/30 06:00:00,88.25482159776841,0,636.8657251648525,0,0,0,0.8287301826800827,0.0,8.537315868058142,0.0,73.80580873715317,0,4.557923784325848,2.5220665886860845e-09,0.5250430230290624,0,0,0.0,406.17843383331564,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3485.190489509724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03390720293846515,0.0010728002657029053,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0507199656433623,1.0507199656433623,1.042237136244693,1.042237136244693,1.0534240833687438,1.0534240833687438,1.1237605992086117,1.1237605992086117,1.0505506448804365,1.0505506448804365,0.8166622790019962,0.9142971821800853,0.813193875226975,1.0272219685178723,1.074106959556576,0.7601342383620574,0.8541948171333175,0.7671498971250317,0.9965167858094732,1.0264682784512793,28.303297404496206,28.303297404496206,27.931485146201155,27.931485146201155,28.422369325638826,28.422369325638826,31.609616008362877,31.609616008362877,28.295850385383716,28.295850385383716,19.06576300750497,22.65351541180594,18.945604205099144,27.279794907065607,29.341759805207133,17.170925272863116,20.39829809346243,17.398706483519334,25.97321656069809,27.24730193690182,88.25482159776841,88.25482159776841,0.0,98.06091288640934,0.0,88.25482159776841,98.06091288640934,0,0
+2017/06/30 07:00:00,152.07580821728186,0,783.3647472076428,0,0,0,8.49915576758635,0.0,7.777944015249205,0.0,69.33401494192633,0,39.380909295966944,3.013209687316757e-09,27.08378419353982,0,0,0.0,517.1871033635618,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5468.904058128859,0.0,0.0,0.0,20.509030288170763,63.26681398887542,12782.324374026464,0.0,0.0,0.0,26.779771395274214,10960.93959974529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04170691938482559,0.0013195778572148982,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7478449337491336,0.7478449337491336,0.7136875638709514,0.7136875638709514,0.8083344941127395,0.8083344941127395,1.1841458727338665,1.1841458727338665,0.9419207153134147,0.9419207153134147,0.48904265446902445,0.5330892190927307,0.5195924346806793,0.75229109874501,0.6772133475769212,0.4654402040748096,0.51085449265529,0.5013827560172159,0.7639717685819898,0.6651062605826575,16.776993954445118,16.776993954445118,15.716121656332831,15.716121656332831,18.778109500755647,18.778109500755647,34.47632335206471,34.47632335206471,23.73915080824426,23.73915080824426,9.996778924324161,10.945791416191923,10.64607684546202,16.91876860120817,14.638799650167115,9.522732189376839,10.456242885091385,10.254196448428033,17.29526000513401,14.293913103229599,152.07580821728186,152.07580821728186,0.0,168.97312024142428,0.0,152.07580821728186,168.97312024142428,0,0
+2017/06/30 08:00:00,174.55842671657595,0,817.1721912012222,0,0,0,15.058237410528013,0.0,11.36563784648343,0.0,83.2008179303116,0,39.380909295966944,2.9622967531328752e-09,25.55282423032369,0,0,0.0,497.759018588325,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,8112.205729153207,2556.2186273524885,733.5468333048331,275.9130886667384,925.6983420965058,3326.999417601043,16952.063364770984,270.2108074955916,6.438166489929809,610.0909351547941,3389.51410298654,15798.59063375638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04350685274444291,0.0013765264940561414,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.799845954810712,0.799845954810712,0.699352340569879,0.699352340569879,0.8246362515258581,0.8246362515258581,1.2582221086197762,1.2582221086197762,0.9609870894871584,0.9609870894871584,0.4697164440970559,0.4732184807445205,0.46954274815843816,0.7033383660847314,0.5459297621980785,0.45172298373488123,0.4429612523121817,0.45632690652054064,0.7255273514719536,0.5422852786678024,18.487915943598296,18.487915943598296,15.285856156698046,15.285856156698046,19.343931555465034,19.343931555465034,38.139681580267656,38.139681580267656,24.506151743889916,24.506151743889916,9.606837223610668,9.67630221620017,9.603405620411266,15.404605152349092,11.238256267987467,9.258257087992376,9.093563871686968,9.346119992703947,16.07816597466109,11.154521022662081,174.55842671657595,174.55842671657595,0.0,193.95380746286216,0.0,174.55842671657595,193.95380746286216,0,0
+2017/06/30 09:00:00,203.45075260270283,0,857.4556205769685,0,0,0,25.63061943425169,0.0,11.287802377079139,0.0,106.27511244621549,0,39.380909295966944,2.8577828089399713e-09,20.87630904633182,0,0,0.0,484.80691919525515,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,890.8286387871133,0.0,384.29117946307525,8839.193673331894,12796.819020800738,2728.8844879846765,1031.331373578912,2142.86862308501,4836.34609221175,23427.847389916416,2583.82092674498,813.9021820771214,2027.1427656769865,5095.639038466437,22848.245626112468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04565157236261233,0.0014443839277821253,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9624599467589696,0.9624599467589696,0.7998532308028882,0.7998532308028882,0.9183295397281576,0.9183295397281576,1.2601080916183092,1.2601080916183092,0.9942236165390974,0.9942236165390974,0.5126472707198445,0.48937336893251193,0.46812903437884407,0.7012288409295779,0.5141689538777469,0.5148587692802636,0.4722260231713695,0.46562966883228873,0.7310377428927218,0.5144261318226898,24.56599585259694,24.56599585259694,18.488163379800483,18.488163379800483,22.81008609340985,22.81008609340985,38.234867498978566,38.234867498978566,25.877064109363786,25.877064109363786,10.494922136071068,10.00359194553532,9.575524108621693,15.341674164096148,10.52786157484735,10.542826804527834,9.656562544943768,9.526441898666718,16.2487232236808,10.533438526248275,203.45075260270283,203.45075260270283,0.0,226.05639178078093,0.0,203.45075260270283,226.05639178078093,0,0
+2017/06/30 10:00:00,237.16763902606317,0,924.3423356389343,0,0,0,28.481846381687376,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.804163272899018e-09,18.611297558654915,0,0,0.0,462.9677529758606,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3586.7655768924847,283.65300656898137,2023.1018161714178,8758.319487259763,22556.81376834152,3594.244728702849,1119.5976374955244,2027.1824160153456,4609.330845649856,20221.84387238814,3756.2658863119605,973.9747620490914,2062.7642966727103,4909.168967486934,20386.057638615057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04921267061594715,0.001557054594227391,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.050844159430123,1.050844159430123,0.8856411189858298,0.8856411189858298,0.9550198510793683,0.9550198510793683,1.244587508060552,1.244587508060552,1.0204045040722243,1.0204045040722243,0.5181742308522155,0.464560855678796,0.4410737070000939,0.6666795719621899,0.47458583159066875,0.5328961283451457,0.45836669003013464,0.4443197506301979,0.6956841634956342,0.48156610565122204,28.308760319546508,28.308760319546508,21.559808026143955,21.559808026143955,24.26456430114054,24.26456430114054,37.45423688572332,37.45423688572332,26.98664788665674,26.98664788665674,10.615041465006527,9.505534841847009,9.058516029095856,14.338372206764248,9.703567953256595,10.941447961048624,9.385339577273228,9.118883171715098,15.177182366203112,9.844014920420207,237.16763902606317,237.16763902606317,0.0,263.519598917848,0.0,237.16763902606317,263.519598917848,0,0
+2017/06/30 11:00:00,267.0641704111006,0,1003.2493123884924,0,0,0,42.259604244474495,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.857782808939972e-09,20.863268092466342,0,0,0.0,488.63920095660245,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6429.255895875097,1368.8053029620003,3808.949106173402,8133.162179530411,31291.175180973125,6410.975301738112,2507.0462568020093,4174.362926211336,5159.149024379585,31574.667695323984,6821.17498566342,2470.4065460613006,4349.8063030153935,5438.758817610446,32423.001819041932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05341373650501736,0.001689973390573084,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0896555490852449,1.0896555490852449,0.9280865438999888,0.9280865438999888,0.9691167392631641,0.9691167392631641,1.1955739282290372,1.1955739282290372,1.0341583821198275,1.0341583821198275,0.536441074442543,0.454498156597666,0.43234644784898435,0.6256564118600981,0.4624434207558233,0.5642685173234219,0.4581949265432761,0.44461687382677717,0.6533046479383994,0.4764984804038607,30.04284626066108,30.04284626066108,23.19163908425557,23.19163908425557,24.837525936179418,24.837525936179418,35.03143122267825,35.03143122267825,27.57982108359718,27.57982108359718,11.021446613407292,9.311110276428295,8.898458889805624,13.21419941684583,9.464261001526523,11.66834321096266,9.382030118325304,9.124431441923178,13.963838599242933,9.741842486546275,267.0641704111006,267.0641704111006,0.0,296.73796712344506,0.0,267.0641704111006,296.73796712344506,0,0
+2017/06/30 12:00:00,256.1529648060155,0,942.1419463803164,0,0,0,51.91977779138959,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.804163272899018e-09,18.616712929272968,0,0,0.0,463.0221874609706,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7238.259820785385,1935.78282334509,4462.420995764732,6935.075864093134,34167.57401068281,8448.025782180497,3688.674796099826,5978.1045669104415,5385.371536264168,42037.04159310038,9001.818195643411,3745.9153856012445,6279.252459608763,5603.428792187223,43162.66583277158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05016033507610868,0.001587038037170282,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0846576901342984,1.0846576901342984,0.9271076506138028,0.9271076506138028,0.9618896065492211,0.9618896065492211,1.1252506568599008,1.1252506568599008,1.0235905263676364,1.0235905263676364,0.5474265710049957,0.4548384245114835,0.43674803761402653,0.5773357192763675,0.46754630837021016,0.5789944942085747,0.4639536999846441,0.4538561473325526,0.5970062158715427,0.4846129919826816,29.816575246952283,29.816575246952283,23.153186767620497,23.153186767620497,24.542812125952523,24.542812125952523,31.678955305126692,31.678955305126692,27.12343028969802,27.12343028969802,11.272813529386937,9.31761349007337,8.978774700971456,11.983698723826322,9.564056550525493,12.024260408832731,9.49368018529377,9.298853739828289,12.472384611493837,9.90597894643949,256.1529648060155,256.1529648060155,0.0,284.61440534001724,0.0,256.1529648060155,284.61440534001724,0,0
+2017/06/30 13:00:00,254.56468667196373,0,902.9489754762286,0,0,0,52.78721953296088,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,2.749623010006694e-09,16.325239799438325,0,0,0.0,459.319569069427,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7135.269618458368,2646.2757377039543,4725.507293913393,6376.163861508398,33989.23575381259,8577.450149646827,4176.856853118856,6138.446835376953,5446.858372228882,41086.126547179236,9098.414993752958,4309.071202812971,6442.423134890258,5667.225225715476,42342.00320730493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0480736722746802,0.0015210174806570419,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0462982893588022,1.0462982893588022,0.9275166585682246,0.9275166585682246,0.9356957702854929,0.9356957702854929,1.099881148336184,1.099881148336184,0.9932256470648667,0.9932256470648667,0.5243117051158483,0.4479135391368959,0.41590086014670646,0.5313982528682718,0.44251109767071223,0.5554583658581799,0.4620141040680182,0.4351747526488576,0.547552918843167,0.45989044800908463,28.10916449431943,28.10916449431943,23.169248518885567,23.169248518885567,23.49184492899755,23.49184492899755,30.508474919506597,30.508474919506597,25.835281877217696,25.835281877217696,10.749978111688847,9.186245759508367,8.6057333706934,10.907809037884263,9.08519151835337,11.459904586663697,9.455916144784723,8.949971416023601,11.275735002959536,9.414754252784306,254.56468667196373,254.56468667196373,0.0,282.84965185773746,0.0,254.56468667196373,282.84965185773746,0,0
+2017/06/30 14:00:00,232.66612374531536,0,839.5897277584878,0,0,0,46.9546361600711,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.694152757096724e-09,14.07524664119018,0,0,0.0,431.4506738642303,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6132.3866835814615,3374.2206216326763,4468.212020793022,5791.884040602413,31550.034644867654,7286.902919878219,4367.067912911254,5131.1856412696125,4873.690599733352,33708.45862194799,7747.8898731487225,4564.063598741843,5403.294416333172,5059.449714376143,34894.45531304425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044700378995570514,0.0014142888326853934,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9884066367278601,0.9884066367278601,0.9819478371310383,0.9819478371310383,0.9092981514351021,0.9092981514351021,1.075151842746346,1.075151842746346,0.9610090446813122,0.9610090446813122,0.4779090429043964,0.46597899217589955,0.3855123478552686,0.4889591426923371,0.4051560183940384,0.501833619744357,0.4863630782186629,0.40270302525525914,0.5006904154251746,0.4203043099850345,25.634058411333896,25.634058411333896,25.365759064742207,25.365759064742207,22.460320365999564,22.460320365999564,29.38860894866521,29.38860894866521,24.507043189238615,24.507043189238615,9.770170709720745,9.533285684333293,8.095312141010595,9.995059251874011,8.42074126715086,10.263726147596756,9.941751305241965,8.379201658400817,10.239579865947064,8.682975952549882,232.66612374531536,232.66612374531536,0.0,258.5179152725726,0.0,232.66612374531536,258.5179152725726,0,0
+2017/06/30 15:00:00,231.04743772560937,0,856.4615002207929,0,0,0,48.69851642674712,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,2.6941527570967244e-09,14.043961542301503,0,0,0.0,448.3224463265355,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6155.887566796194,5199.9213143878105,5019.659952339476,5598.486730398785,33928.5875846357,6853.010986149967,5281.417684006686,5136.421573064968,4900.077926027934,32598.517568136587,7159.762795335374,5572.245930223549,5369.199456742927,5053.4767778472515,33763.56578103503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04559864465849797,0.0014427093321176003,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9422363322034825,0.9422363322034825,1.051680808359522,1.051680808359522,0.898009363409498,0.898009363409498,1.0602303383768135,1.0602303383768135,0.9472259594743052,0.9472259594743052,0.4527545540427639,0.5144724397701852,0.3833019915948049,0.47312908912958496,0.39564896256374465,0.4723892364924868,0.5439930968695406,0.3991272713514067,0.48199225291891595,0.4084963082352085,23.751730659913193,23.751730659913193,28.345576524377776,28.345576524377776,22.027769091309466,22.027769091309466,28.723236464497603,28.723236464497603,23.951131034998312,23.951131034998312,9.277864655638453,10.534443026633298,8.059726299248709,9.674522504795917,8.261181141715284,9.65980588961709,11.193687998749468,8.31911019821412,9.852657312486045,8.477720791915559,231.04743772560937,231.04743772560937,0.0,256.71937525067705,0.0,231.04743772560937,256.71937525067705,0,0
+2017/06/30 16:00:00,256.971970110128,0,899.8508077686836,0,0,0,51.55613051773564,0.0,16.840460162178484,0.0,131.64086955684016,0,39.380909295966944,2.6941527570967244e-09,14.121625372258283,0,0,0.0,438.4762251056097,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6297.044969511599,6545.549085848086,5591.831924730639,5722.804906063687,37353.50305058399,6796.102383788608,6146.992475908172,5466.483799026193,4908.902124634598,34214.532931847425,7022.116554097459,6519.322902498387,5686.1099257401565,5025.066873166817,35271.09349398229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04790872353109704,0.0015157986173888296,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9364347118872334,0.9364347118872334,1.1231276134414987,1.1231276134414987,0.9154760613736541,0.9154760613736541,1.0592737481838344,1.0592737481838344,0.9692441354539401,0.9692441354539401,0.4430051690269793,0.5602981026216173,0.3909800209319444,0.4630963714146636,0.4010532188855412,0.45678153708358044,0.5953339011976451,0.4064641201008264,0.4692310919032052,0.4123878585774348,23.521121214133984,23.521121214133984,31.580182357127555,31.580182357127555,22.699221871061027,22.699221871061027,28.6808506002958,28.6808506002958,24.84273924719413,24.84273924719413,9.094381137894715,11.573990863017855,8.184236104048878,9.47696796838035,8.3514082623594,9.354845812287337,12.430185196396124,8.442998294599477,9.597251680112095,8.544706475776067,256.971970110128,256.971970110128,0.0,285.5244112334755,0.0,256.971970110128,285.5244112334755,0,0
+2017/06/30 17:00:00,263.5044465027954,0,924.3472276125383,0,0,0,54.81798820166648,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,2.8041632728990185e-09,18.61196329379132,0,0,0.0,462.9726449494646,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5929.941790624976,6935.05381353698,6041.961172668319,5699.855962695385,37562.46427256134,7271.152711341284,7044.005380161442,6480.409167774409,5140.557835042485,38540.00991490514,7461.325676657739,7468.699181849672,6717.523255627205,5227.389990085348,39529.82222472304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04921293106824535,0.0015570628347565559,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9288023516921765,0.9288023516921765,1.1498779823089529,1.1498779823089529,0.954021203970284,0.954021203970284,1.0528291341345737,1.0528291341345737,0.9791434198566888,0.9791434198566888,0.41823792737700866,0.5808351745589369,0.40189918958617177,0.4421346488721139,0.3958908256702537,0.42766367381682147,0.6167613499314769,0.4194988203015198,0.44439673418810294,0.4071802583365278,23.219781282293567,23.219781282293567,32.83542199214236,32.83542199214236,24.2242699077337,24.2242699077337,28.396148977917406,28.396148977917406,25.249762785360474,25.249762785360474,8.646625235570227,12.069409935067696,8.365645323665177,9.07819669564853,8.265192481708098,8.813925567063663,12.980074202227257,8.668784427988385,9.120320344398209,8.455214241746432,263.5044465027954,263.5044465027954,0.0,292.78271833643936,0.0,263.5044465027954,292.78271833643936,0,0
+2017/06/30 18:00:00,249.50913481963227,0,941.0390744629067,0,0,0,56.857583205747154,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.9622967531328794e-09,25.537921052796595,0,0,0.0,515.1548443123771,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5260.418900360537,6328.328002005925,6337.015404881799,5519.808995368337,35411.88132767041,7626.0958622225335,7448.401990782685,7632.244007834094,5247.99566423442,43400.73359153806,7775.990501271326,7874.887205578018,7948.972756677186,5295.017009802552,44247.93490740339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0501016173583212,0.0015851802495091118,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9224084434559233,0.9224084434559233,1.1320720508053852,1.1320720508053852,0.9955341294575395,0.9955341294575395,1.0431402178216325,1.0431402178216325,0.9812061221901934,0.9812061221901934,0.4217207621843695,0.5979685741612614,0.44169060878691174,0.44526194962985705,0.41607210017409846,0.4283188158198075,0.6311637726508527,0.46484241079123734,0.4447502558092304,0.4266691796446703,22.969129396678298,22.969129396678298,31.99731525817559,31.99731525817559,25.93198932194842,25.93198932194842,27.97094396469393,27.97094396469393,25.335050781025984,25.335050781025984,8.707999203932218,12.496723912191442,9.06995378393826,9.136490200354629,8.608721623484342,8.825695544069717,13.360878471305625,9.511037567724316,9.126923357859866,8.796094148512026,249.50913481963227,249.50913481963227,0.0,277.2323720218136,0.0,249.50913481963227,277.2323720218136,0,0
+2017/06/30 19:00:00,234.63438415694392,0,902.770862374098,0,0,0,48.96007711656294,0.0,17.540027511967114,0.0,101.68988858149199,0,39.380909295966944,3.013209687617385e-09,27.06348164794174,0,0,0.0,512.3769847361126,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3872.032795362722,4689.602240447277,5749.965153178649,4981.201569917359,30301.218003282414,6158.4786900878635,6283.988198492901,6988.062228175828,4145.066109267505,39078.173876194705,6213.947147527758,6594.356468869812,7320.404764523083,4106.843424060516,39565.74791129857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04806418940119321,0.0015207174491500216,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9048788815566224,0.9048788815566224,1.0808030773735777,1.0808030773735777,1.0008213833611461,1.0008213833611461,1.0202901268524556,1.0202901268524556,0.974061963525533,0.974061963525533,0.4148664021269976,0.5819451788567499,0.45825577447284854,0.43425927990948826,0.42745025552867827,0.414269375424447,0.6030034406795536,0.47750401669066395,0.42667288416678917,0.4338233713025785,22.29037226931483,22.29037226931483,29.642655099836148,29.642655099836148,26.154247951174796,26.154247951174796,26.981744461308324,26.981744461308324,25.040357157274258,25.040357157274258,8.587708115173328,12.09670797475465,9.383202362645534,8.93326011260362,8.810095370791814,8.577325897687857,12.624717530289587,9.762027815609457,8.796160492355384,8.925315560560122,234.63438415694392,234.63438415694392,0.0,260.70487128549325,0.0,234.63438415694392,260.70487128549325,0,0
+2017/06/30 20:00:00,224.18785675473438,0,844.4401573645695,0,0,0,33.63896452584559,0.0,21.839837399389175,0.0,106.16168237671882,0,39.380909295966944,2.9104908812958336e-09,23.16646315390336,0,0,0.0,489.5366322391282,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1658.2047826896849,1467.3376277862803,2680.9048757753667,4336.58126906427,20287.7412579297,3853.064475973549,3618.8588784473686,4656.9136752745,2254.5652193772685,29866.359480363808,3769.372175234199,3829.931803926109,4844.5260333547685,2087.185013849498,29934.121428899245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044958619460543844,0.0014224593809886964,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8855038031838024,0.8855038031838024,0.9403799937536814,0.9403799937536814,0.9064466220459657,0.9064466220459657,0.998677467687976,0.998677467687976,0.9613386389942041,0.9613386389942041,0.4061554483561133,0.5001674039183424,0.4234652385847987,0.42440105219818236,0.432764211692083,0.4000966001676714,0.5179955401420002,0.4280139388193203,0.4112250844581857,0.4345329023336713,21.554647661006854,21.554647661006854,23.677797451191793,23.677797451191793,22.350571045614103,22.350571045614103,26.063996865949733,26.063996865949733,24.520427952014373,24.520427952014373,8.437739717475225,10.228551865789683,8.738935624380872,8.755585071410508,8.906046090919162,8.335345968208017,10.611137245563569,8.82021597395665,8.524623560502405,8.938251123938528,224.18785675473438,224.18785675473438,0.0,249.09761861637153,0.0,224.18785675473438,249.09761861637153,0,0
+2017/06/30 21:00:00,207.58696900191586,0,820.3022759089869,0,0,0,13.454439598810787,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.962296753132879e-09,25.668567151977488,0,0,0.0,500.8891032960897,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,466.98950252702764,3471.6965583166802,9417.059349912824,505.79460112458094,1177.8047845218407,1419.6457485773205,0.0,13209.684066448002,297.8613356384018,1152.9648234998724,1458.5389908989384,0.0,12848.983058099097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04367350077275891,0.0013817991215088015,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8347092265305953,0.8347092265305953,0.8744339959480257,0.8744339959480257,0.881218735340004,0.881218735340004,0.972625133831289,0.972625133831289,0.9459304553398444,0.9459304553398444,0.3898433704495581,0.47188383456886057,0.39214091211311175,0.406523399303743,0.42043906567661155,0.3769434137513093,0.4663138930569369,0.387484494860999,0.36982972391316266,0.4172244870358155,19.69913810120771,19.69913810120771,21.141185018270974,21.141185018270974,21.39400177540142,21.39400177540142,24.98132696714204,24.98132696714204,23.899264194964744,23.899264194964744,8.165644922646763,9.649766364479163,8.20328076472758,8.444008650722509,8.685352862969083,7.9585188577094925,9.539851847801359,8.127239059550334,7.847337074637252,8.628864233029475,207.58696900191586,207.58696900191586,0.0,230.6521877799065,0.0,207.58696900191586,230.6521877799065,0,0
+2017/06/30 22:00:00,138.57852071320067,0,639.6224972602184,0,0,0,2.0302088897567017,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8577828089399713e-09,20.795354215264272,0,0,0.0,479.91591095376975,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2022.309119877011,0.0,0.0,0.0,0.0,0.0,2806.1049329277025,0.0,0.0,0.0,0.0,2049.1355301011063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034053975526781896,0.0010774440480883136,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6604212600746968,0.6604212600746968,0.690153704375396,0.690153704375396,0.7291764086878313,0.7291764086878313,0.9135136018911632,0.9135136018911632,0.8249289890329836,0.8249289890329836,0.32441606988444766,0.4439276365944666,0.36175706632790383,0.32285417635602653,0.41711632381416913,0.2904272170062878,0.4189560260973374,0.34487963576199704,0.26790802806302905,0.40915607653562475,14.16215794532485,14.16215794532485,15.014435118269816,15.014435118269816,16.19096531322367,16.19096531322367,22.623166123888495,22.623166123888495,19.35419442159862,19.35419442159862,7.188325580614645,9.11156691851923,7.7237804398816365,7.167218671942109,8.626971223682531,6.752344377417089,8.659236894919061,7.474425949601624,6.490367861972587,8.489031792861368,138.57852071320067,138.57852071320067,0.0,153.97613412577851,0.0,138.57852071320067,153.97613412577851,0,0
+2017/06/30 23:00:00,87.58401870095538,0,489.5418255733515,0,0,0,0.20597914855570645,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.63774325100283e-09,11.867058490923664,0,0,0.0,436.3062968045353,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,800.2406471633464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02606356940041905,0.0008246331680227163,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4848478871909861,0.4848478871909861,0.5109644377591912,0.5109644377591912,0.5552023816297955,0.5552023816297955,0.8589941758640673,0.8589941758640673,0.6332034521183588,0.6332034521183588,0.24437673531629422,0.36552562168013913,0.28187257935426935,0.23703308236511256,0.3647953329979419,0.1898990428604666,0.32201122554261036,0.24892693541743793,0.16015497646762156,0.3444570583091478,9.910772604224888,9.910772604224888,10.458610953795755,10.458610953795755,11.453898594530372,11.453898594530372,20.572927578344505,20.572927578344505,13.415535740333667,13.415535740333667,6.239437790435517,7.781114751298972,6.650304792068937,6.165892943832034,7.769956970752446,5.747678719014203,7.155870284954972,6.286143595981073,5.531562813243411,7.468338076675408,87.58401870095538,87.58401870095538,0.0,97.31557633439486,0.0,87.58401870095538,97.31557633439486,0,0
+2017/07/01 00:00:00,42.63206611364805,0,463.22179760401286,0,0,0,0.568760186684927,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,1.3245391314795114,2.580385228558738e-09,9.553132728103156,0,0,0.0,409.98626883519665,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.60529222486337,88.57939573222298,82.78607031004297,631.3088092262014,1140.2624614807921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024662271615911276,0.0007802970829060215,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6991244845629996,0.6991244845629996,0.7326626792118117,0.7326626792118117,0.7259694649252616,0.7259694649252616,0.848100775005522,0.848100775005522,0.7667740254412138,0.7667740254412138,0.4562886131932991,0.6262354512052192,0.46591692046239563,0.48135222130136573,0.5837755785104438,0.3736677656469585,0.557052716549915,0.40753369077107726,0.37463322826763745,0.5482651109902809,15.279088747021206,15.279088747021206,16.29926736217672,16.29926736217672,16.091802056732675,16.091802056732675,20.177938601797933,20.177938601797933,17.386449568198003,17.386449568198003,9.34538542709521,13.229559223240415,9.53206921918401,9.839680235934338,12.141839277407726,7.9070547649935605,11.497375758779967,8.461251215297935,7.92217568904681,11.292215583556043,42.63206611364805,42.63206611364805,0.0,47.36896234849783,0.0,42.63206611364805,47.36896234849783,0,0
+2017/07/01 01:00:00,23.72220016143786,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251047377600702,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7136010197523637,0.7136010197523637,0.7867047516979012,0.7867047516979012,0.7349875986720098,0.7349875986720098,0.8675345629502643,0.8675345629502643,0.8774202104389239,0.8774202104389239,0.4689467207111901,0.671650838164239,0.4609034359285128,0.5123347421831707,0.6631762011748334,0.3903410662281529,0.6133963580673405,0.4095985042556148,0.4119002883841477,0.6162097734212251,15.713497484545044,15.713497484545044,18.04468077132445,18.04468077132445,16.371781977302376,16.371781977302376,20.886037161814343,20.886037161814343,21.252225969996715,21.252225969996715,9.591640160829357,14.479556153335963,9.434364327806009,10.488169317678597,14.239519336486836,8.173778494996526,12.892400047215418,8.49662717104816,8.536278329428427,12.965669319484434,23.72220016143786,23.72220016143786,0.0,26.358000179375402,0.0,23.72220016143786,26.358000179375402,0,0
+2017/07/01 02:00:00,28.344321550748212,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5249584642753162,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7561599447440576,0.7561599447440576,0.8352403959812663,0.8352403959812663,0.7725852412852853,0.7725852412852853,0.898103261968297,0.898103261968297,0.9557975994715844,0.9557975994715844,0.49823984667763316,0.6964071047564179,0.488822961604635,0.5432039130770177,0.6923574494111686,0.41067477384040363,0.6338639626840767,0.4244085264893068,0.4363182397670863,0.640249670007168,17.042822980689223,17.042822980689223,19.71798685596164,19.71798685596164,17.576623035685245,17.576623035685245,22.031345657142282,22.031345657142282,24.295972793137935,24.295972793137935,10.188010259245033,15.19855432363859,9.992255660076623,11.17557320876287,15.079127316996292,8.515139033791755,13.433274120545676,8.755718200841372,8.970895520446533,13.605741737403207,28.344321550748212,28.344321550748212,0.0,31.49369061194246,0.0,28.344321550748212,31.49369061194246,0,0
+2017/07/01 03:00:00,23.722165863826994,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250704401492041,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7261773349009324,0.7261773349009324,0.8046398125656956,0.8046398125656956,0.7377152460303865,0.7377152460303865,0.844320284741612,0.844320284741612,0.9266495647339189,0.9266495647339189,0.49100194724429064,0.6877510438499438,0.48049228223089985,0.5362111741674154,0.7104581373850453,0.3980148276656953,0.6198656309660098,0.4092744387309719,0.4243554538029591,0.6508480480517048,16.09821628554029,16.09821628554029,18.65142695805757,18.65142695805757,16.457153710480853,16.457153710480853,20.04201337446915,20.04201337446915,23.13520567074353,23.13520567074353,10.037211034941137,14.944142797778554,9.822272211158293,11.016241957997153,15.618418425358854,8.300526860337953,13.061391353131953,8.491062954545427,8.75477294082637,13.89588989811702,23.722165863826994,23.722165863826994,0.0,26.35796207091888,0.0,23.722165863826994,26.35796207091888,0,0
+2017/07/01 04:00:00,43.132560437336245,0,88.72588128136032,0,0,0,0.040840343991302305,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,5.502798692950315,0.0,0.5250229883315467,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69.27598318569403,0.0,75.49672952743717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.774141156095923,0.774141156095923,0.8510973446317749,0.8510973446317749,0.7834314323654239,0.7834314323654239,0.8804707862062179,0.8804707862062179,0.8906050496941053,0.8906050496941053,0.4213394972278138,0.5160943496343671,0.41594473786853353,0.44391730054761747,0.512398543165312,0.356886064118096,0.46960154614062116,0.3621613851967605,0.3724570461713345,0.4860346518558685,17.62778510047586,17.62778510047586,20.286101106553573,20.286101106553573,17.935416093433076,17.935416093433076,21.366038556562458,21.366038556562458,21.746871726377506,21.746871726377506,8.701255258674635,10.569683611171342,8.606498946471035,9.111374152974506,10.489547525243069,7.650569789150126,9.604567110189109,7.729902723192112,7.888148853820809,9.935028082602983,43.132560437336245,43.132560437336245,0.0,47.92506715259583,0.0,43.132560437336245,47.92506715259583,0,0
+2017/07/01 05:00:00,75.15232781195385,0,230.7269925628424,0,0,0,0.20200396509461166,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,2.5086697297964586,0.0,0.5776469278630311,0,0,0.0,17.78487748757761,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,801.5182513052672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.012284075985067302,0.0003886596014602263,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9075297185417154,0.9075297185417154,0.9272600691547821,0.9272600691547821,0.9108104648442367,0.9108104648442367,0.9554048494059407,0.9554048494059407,0.9522878968914189,0.9522878968914189,0.49468205305662194,0.6462802603707274,0.4845382721550291,0.5300779733947224,0.680009819112507,0.4005035319913885,0.5680730818418566,0.4071607541066749,0.42250784230133875,0.6351032963082973,22.392218384075818,22.392218384075818,23.159171464807628,23.159171464807628,22.518659532997333,22.518659532997333,24.28010905549303,24.28010905549303,24.154425818783864,24.154425818783864,10.113602054863406,13.770241941471312,9.904454589993861,10.87823908526974,14.71936279763132,8.342173851539613,11.759395792619856,8.454881246047094,8.721941066403758,13.466608187013193,75.15232781195385,75.15232781195385,0.0,83.50258645772651,0.0,75.15232781195385,83.50258645772651,0,0
+2017/07/01 06:00:00,92.00920487000579,0,622.1603714985754,0,0,0,0.8467807852909418,0.0,6.438664869409888,0.0,80.56906512710079,0,3.6296072868499176,2.5220917689502323e-09,0.5250867988321903,0,0,0.0,391.47308016703846,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3528.400574559583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03312427901691906,0.0010480290985681788,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9711848995992476,0.9711848995992476,0.9747823657709935,0.9747823657709935,0.9751370589277002,0.9751370589277002,1.129617131373136,1.129617131373136,0.9858136742810236,0.9858136742810236,0.5821423391560553,0.7498431653983605,0.58963207245518,0.9207994399004418,0.8759095324482981,0.48815956721343473,0.6795179678779972,0.5170289274780696,0.8655144580665078,0.8104200161085041,24.922237249259922,24.922237249259922,25.069984006971552,25.069984006971552,25.084578296615717,25.084578296615717,31.882567087092795,31.882567087092795,25.526154004068346,25.526154004068346,12.101562276956187,16.840606708965325,12.287216872842592,22.906311834998533,21.19600630058231,9.97860965474031,14.705168605622703,10.590041641965314,20.811703328064965,18.849871939033264,92.00920487000579,92.00920487000579,0.0,102.23244985556198,0.0,92.00920487000579,102.23244985556198,0,0
+2017/07/01 07:00:00,121.84016845397848,0,682.0234074610597,0,0,0,6.59952008059337,0.0,6.000613665654577,0.0,69.33401494192633,0,39.380909295966944,2.5220945609993276e-09,0.5251104673151915,0,0,0.0,415.8457636169789,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6483.381229162062,0.0,0.30797184473873224,0.40565526698918825,0.07625959881720723,4.425688721542195,9324.893339651355,0.4342024952754138,0.46250500185103977,0.21847743044820125,105.60442931530173,7174.819617313544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03631143139251155,0.0011488683781034565,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6629050763102579,0.6629050763102579,0.6556413960045853,0.6556413960045853,0.7398320074504865,0.7398320074504865,1.210260943475412,1.210260943475412,0.8992533942102606,0.8992533942102606,0.40221234907979675,0.4833043799217483,0.4368842285972552,0.7830045034685437,0.6393460079129611,0.3740183902606449,0.46833568327490943,0.42317918091648854,0.8009005479443104,0.6221328875425216,14.231891303732127,14.231891303732127,14.028714980233985,14.028714980233985,16.523625656258673,16.523625656258673,35.750410600599466,35.750410600599466,22.075182915495105,22.075182915495105,8.370923332823665,9.879316840396768,8.981273049725445,17.9211986082487,13.581227851654589,7.912541595092549,9.57959429982715,8.733853750837255,18.523803082111712,13.121046759437775,121.84016845397848,121.84016845397848,0.0,135.37796494886499,0.0,121.84016845397848,135.37796494886499,0,0
+2017/07/01 08:00:00,158.14287233985652,0,711.0761056541099,0,0,0,18.971867248351636,0.0,11.36563784648343,0.0,87.89947186453183,0,39.380909295966944,2.5220945613438657e-09,0.5249860820006529,0,0,0.0,391.66293304121285,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7458.968563860441,2652.7052981711076,681.7918169774182,645.0502616616828,1227.2915490280193,3998.7001609994736,23317.725120312884,135.50937166516354,167.12285414530376,898.5194650649073,4045.5180978918656,21375.78232436073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03785821856383678,0.001197807646004587,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7723310024972927,0.7723310024972927,0.7040637431003675,0.7040637431003675,0.8190311993187095,0.8190311993187095,1.2140758193979058,1.2140758193979058,0.9801045480863835,0.9801045480863835,0.46880793528581804,0.4961195711034419,0.4731549107090321,0.7226241015094552,0.5625527969755519,0.4506449442353379,0.4808950798656934,0.46422460469494903,0.7415885326295925,0.5580334957441992,17.568272885291265,17.568272885291265,15.4262888449759,15.4262888449759,19.148122590746155,19.148122590746155,35.93816619949638,35.93816619949638,25.28948281710177,25.28948281710177,9.588902762477773,10.143600680169257,9.675036555207015,15.988830125394742,11.627487202044094,9.237815179990974,9.830422201982586,9.498967611773793,16.578931216984216,11.52048124306451,158.14287233985652,158.14287233985652,0.0,175.71430259984058,0.0,158.14287233985652,175.71430259984058,0,0
+2017/07/01 09:00:00,196.93515083599348,0,862.1835330527017,0,0,0,16.917630497852425,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.9105179581175044e-09,23.163086952223438,0,0,0.0,489.5348316709884,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7535.065289048092,7016.56039562594,188.88336858039438,0.0,414.4145117316443,3708.5796884668935,18692.662382228966,10.922251299346614,0.0,395.05572503542817,3882.459549757389,17110.910028660728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045903289924816654,0.0014523480959886554,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9198322824880001,0.9198322824880001,0.7684326375783979,0.7684326375783979,0.9066612960759961,0.9066612960759961,1.2133722842200738,1.2133722842200738,1.0426852573750158,1.0426852573750158,0.5396097677016009,0.5352836810143555,0.5087782344232559,0.72151193643811,0.5554474051924952,0.5375014299699539,0.5150704937918699,0.5069720889186327,0.7432785305611431,0.5525558794343204,22.868602793137967,22.868602793137967,17.440581157954995,17.440581157954995,22.35882194024282,22.35882194024282,35.90350975728484,35.90350975728484,27.95106142605286,27.95106142605286,11.093415130160764,10.995267919323467,10.411621238179606,15.954703807169935,11.459647365444596,11.045481371693427,10.547424199458803,10.372956288068352,16.63226706008446,11.391971942595717,196.93515083599348,196.93515083599348,0.0,218.81683426221497,0.0,196.93515083599348,218.81683426221497,0,0
+2017/07/01 10:00:00,233.10134391457711,0,949.8580469735448,0,0,0,26.236520907341422,0.0,14.932575465546352,0.0,131.64086955684016,0,39.380909295966944,2.857809666931633e-09,20.910468686024274,0,0,0.0,488.4834643104711,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2734.3707725595973,0.0,1503.644749215603,8425.088361618606,22914.1267237058,2512.927958607473,675.284377012629,1254.1268779286813,4615.250241123431,19472.42425278589,2638.3387483606434,580.9849791749325,1369.184034558961,4893.939623226122,18903.65912139114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05057114598705931,0.0016000358080339333,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.075027729761136,1.075027729761136,0.9071768293115038,0.9071768293115038,1.000430195416837,1.000430195416837,1.2409020764815317,1.2409020764815317,1.081179955222907,1.081179955222907,0.5709065737300077,0.5406147571136539,0.5076674006494437,0.720771755174144,0.5387979693813992,0.581870651602021,0.5305025073802123,0.5110432060078166,0.745251747918873,0.5421088995382396,29.38304212077017,29.38304212077017,22.37864383580188,22.37864383580188,26.137767353124715,26.137767353124715,37.26978782858671,37.26978782858671,29.659637010918246,29.659637010918246,11.827616151415569,11.116331674800904,10.387824434324088,15.932021164746061,11.074935826893764,12.094873471541646,10.88773902803193,10.460307836661727,16.694696229642602,11.150483157032554,233.10134391457711,233.10134391457711,0.0,259.001493238419,0.0,233.10134391457711,259.001493238419,0,0
+2017/07/01 11:00:00,262.7655297791647,0,1005.8660949231972,0,0,0,48.92884663416172,0.0,14.839439983088985,0.0,136.4899973586286,0,39.380909295966944,2.910517958117503e-09,23.126336504407917,0,0,0.0,491.2559834913073,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6532.575675907359,1559.1597348129742,4294.580340262149,8141.593356698125,38928.98314653168,6692.675312227517,3016.2221092717023,4687.883502804622,6110.624006203212,38168.56304520346,7097.1454267643485,3000.4543512295313,4951.850329823174,6390.133862242633,38138.51477135146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0535530559454333,0.0016943813605541837,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1377429625216664,1.1377429625216664,1.000037907781868,1.000037907781868,1.0512696068887268,1.0512696068887268,1.198589945070981,1.198589945070981,1.112640189590883,1.112640189590883,0.5942432514385406,0.5558537594792254,0.5199165119301183,0.6950741519496805,0.5445831246220018,0.6146934311236077,0.5567998326786389,0.5289130554091775,0.7139046309251688,0.5511015215867525,32.263133777154124,32.263133777154124,26.121246251686998,26.121246251686998,28.327478708028323,28.327478708028323,35.17856922173419,35.17856922173419,31.0944511181967,31.0944511181967,12.402728984439648,11.469187034399681,10.653181032858328,15.15916645417039,11.207249027052441,12.926136810429924,11.49142500990645,10.852211402560798,15.722704935993022,11.358070072382532,262.7655297791647,262.7655297791647,0.0,291.96169975462743,0.0,262.7655297791647,291.96169975462743,0,0
+2017/07/01 12:00:00,260.6133771073969,0,970.3816739967484,0,0,0,58.40391433469236,0.0,14.876918395255093,0.0,124.80122689546741,0,39.380909295966944,2.9105179581175028e-09,23.150408183104535,0,0,0.0,491.2619150774026,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7038.86244335416,2566.964763702481,5994.139360183273,7423.633436096294,44749.43313657157,8197.640440573221,4411.873552752267,6677.593042973973,6688.47908319945,46556.577947600315,8625.744810249318,4457.47719369516,7035.384653207311,6879.59883977669,46780.31403740572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05166383909176203,0.0016346078561968026,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1250906877559048,1.1250906877559048,1.0590045169706306,1.0590045169706306,1.0883106623954926,1.0883106623954926,1.161873315808093,1.161873315808093,1.1257530048229227,1.1257530048229227,0.6026549681238352,0.5913493219986006,0.555087064929823,0.689065786489327,0.5617894024174424,0.6173708577323934,0.5961433425713678,0.5667466335709012,0.7009262422605522,0.5675367598630717,31.671507702519747,31.671507702519747,28.668927048824628,28.668927048824628,29.981873445528535,29.981873445528535,33.4056984998399,33.4056984998399,31.702348335573873,31.702348335573873,12.6158234129378,12.330126910315926,11.451193921702142,14.982576043449455,11.609349722365124,12.99600736506909,12.450595593261014,11.727579336440655,15.332662844668945,11.746522274702258,260.6133771073969,260.6133771073969,0.0,289.5704190082188,0.0,260.6133771073969,289.5704190082188,0,0
+2017/07/01 13:00:00,260.0011787188822,0,909.8997162212156,0,0,0,62.520149178239684,0.0,14.728125842506467,0.0,122.5097643007467,0,39.380909295966944,2.8578096669316335e-09,20.86223009856455,0,0,0.0,466.27030981441396,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8741.999093822626,3663.5817667404654,6467.575403259332,7138.487153475007,43938.6772803048,10019.73279906592,5453.232297580842,7453.448423554892,6689.784436295307,47744.63515895002,10615.913878401636,5624.475134449854,7872.306623351727,6886.781037059872,48766.75940947802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04844373486040333,0.0015327260029144203,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1576471892583737,1.1576471892583737,1.0654305793446945,1.0654305793446945,1.0644715508515055,1.0644715508515055,1.1488924596065453,1.1488924596065453,1.0987112784638984,1.0987112784638984,0.6196156352194582,0.5855438334423885,0.5339550901214666,0.653046042872488,0.5373684149475589,0.6494488723440931,0.6020978302281172,0.5528047724263954,0.6681493697350118,0.5506466752125577,33.20426858399324,33.20426858399324,28.954226755328804,28.954226755328804,28.911555109205267,28.911555109205267,32.78876974634575,32.78876974634575,30.45502298546269,30.45502298546269,13.054827190752178,12.185576371989,10.965288497021973,13.956673353812675,11.042463688707642,13.857306112235008,12.601614447893056,11.397782962041973,14.380003040836783,11.347486178948913,260.0011787188822,260.0011787188822,0.0,288.8901985765358,0.0,260.0011787188822,288.8901985765358,0,0
+2017/07/01 14:00:00,247.87864812323932,0,878.2865585604711,0,0,0,66.4084590046006,0.0,14.728125842506467,0.0,108.75639138185811,0,39.380909295966944,2.804189893124236e-09,18.604762595502972,0,0,0.0,470.14750466621354,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8931.865750981317,5079.968766995681,7052.390191392827,6767.732667009835,47038.418966845114,10278.949831382304,6599.329098895063,7901.592067184267,7051.241129736291,49165.08900231573,10841.219823219531,6872.758350410776,8302.423951694807,7242.572271092836,50426.53935068219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046760626930468646,0.001479473641234294,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1067278050088563,1.1067278050088563,1.1070484313580875,1.1070484313580875,1.0502765004389916,1.0502765004389916,1.1303905226625937,1.1303905226625937,1.083825965034331,1.083825965034331,0.5886632600732079,0.6094735140397891,0.5244306135034396,0.6371000197654908,0.5256936962435061,0.6112739497684154,0.6296252643263209,0.5401924404308066,0.6474714722822651,0.536880356912394,30.822233911705652,30.822233911705652,30.83696599679466,30.83696599679466,28.28379523562937,28.28379523562937,31.918695856840102,31.918695856840102,29.7790040807257,29.7790040807257,12.263064991248555,12.790811540948155,10.75260849416965,13.52045373376859,10.780587034252719,12.837353867980028,13.319770494532364,11.106696353063825,13.802921891618254,11.031397787232308,247.87864812323932,247.87864812323932,0.0,275.4207201369326,0.0,247.87864812323932,275.4207201369326,0,0
+2017/07/01 15:00:00,248.5287600007156,0,884.4324210579487,0,0,0,66.03188634191602,0.0,14.78378283874635,0.0,106.31215624428707,0,39.380909295966944,2.804189893124236e-09,18.588050074540778,0,0,0.0,476.2933671636911,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8581.466064077298,6264.4856602853,7428.057628696966,6712.461001993197,48530.402299023845,9412.095506439458,7111.532594529468,7736.240386315729,6783.017796879899,47179.37821597025,9780.017750615048,7443.871326602286,8071.159654230669,6921.6992376126045,48295.27256122618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04708783720211568,0.001489826346144832,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0875596988565563,1.0875596988565563,1.149835009940028,1.149835009940028,1.0544105629543818,1.0544105629543818,1.1276544806747428,1.1276544806747428,1.0860012773495396,1.0860012773495396,0.5670099413288595,0.6345018822490278,0.5219597112426829,0.6258304313219999,0.5182782353512793,0.581908692008919,0.6593885521062164,0.5361967850882529,0.6336471477028488,0.5279466427658376,29.947854373685104,29.947854373685104,32.83338714413975,32.83338714413975,28.465873111301434,28.465873111301434,31.790970065191132,31.790970065191132,29.877319264884534,29.877319264884534,11.733889018330018,13.450423772519372,10.698075228634238,13.218813990736763,10.617314498940033,12.095809813617223,14.133243243683225,11.015916283327343,13.427449346513868,10.83066350263364,248.5287600007156,248.5287600007156,0.0,276.14306666746177,0.0,248.5287600007156,276.14306666746177,0,0
+2017/07/01 16:00:00,251.57055690643992,0,898.8989971126928,0,0,0,60.87650127194058,0.0,14.78378283874635,0.0,120.17895923267236,0,39.380909295966944,2.749649373169013e-09,16.35040426436395,0,0,0.0,437.52441444961903,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7546.787138632143,5835.140685882413,7096.529246163846,6705.903447134803,47895.551551018725,8185.378296409325,6501.0037627818465,6986.083167939824,5897.0987857210375,43580.690565170225,8454.790398855617,6824.108989132163,7314.015959644874,5963.38417357837,44493.06152579644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04785804842675958,0.001514195292411054,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.08351531803915,1.08351531803915,1.1533493028720816,1.1533493028720816,1.0659578045972913,1.0659578045972913,1.1271348201252,1.1271348201252,1.1092758429213163,1.1092758429213163,0.5548582924461244,0.6299937380598257,0.5204604247289778,0.6125798647700614,0.5196548003935438,0.563949726674317,0.6496272562947989,0.5317729136294841,0.6153760921521361,0.5274225495367109,29.764977520214487,29.764977520214487,32.99999010000391,32.99999010000391,28.977699383534954,28.977699383534954,31.76673857570904,31.76673857570904,30.939406315374725,30.939406315374725,11.445829929002684,13.32960652923596,10.665114511305717,12.871200570994105,10.647443628431716,11.660742273871634,13.862220522684666,10.916213966033794,12.943922093765693,10.818994816423782,251.57055690643992,251.57055690643992,0.0,279.5228410071555,0.0,251.57055690643992,279.5228410071555,0,0
+2017/07/01 17:00:00,280.5643698200954,0,936.4089206912423,0,0,0,67.59753698458877,0.0,16.630907673226492,0.0,138.40412594678773,0,39.380909295966944,2.804189893124236e-09,18.5508899167212,0,0,0.0,475.0343380281687,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8239.990172336034,7902.810983777512,8608.76117467305,6846.720903187778,52814.95290671976,8875.917239479455,8074.908579429029,8292.047154797085,6348.20933340864,47691.91656303256,9087.7656033999,8484.681772446216,8661.421101179667,6402.227802394313,48655.82229151797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04985510454193203,0.001577380755832166,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0878040584314936,1.0878040584314936,1.2454179850932467,1.2454179850932467,1.104429081048327,1.104429081048327,1.1298114198017928,1.1298114198017928,1.1190872100825568,1.1190872100825568,0.5559520936830102,0.687138559358848,0.5458909750527964,0.6104293205897202,0.5237529334740426,0.5641912240314227,0.7164140979774991,0.5616128234320036,0.6122226627015855,0.5323198930950997,29.95892186017737,29.95892186017737,37.49584981412856,37.49584981412856,30.71671416899477,30.71671416899477,31.891641384424986,31.891641384424986,31.39261644704459,31.39261644704459,11.47149662720868,14.926263842499111,11.2373620685306,12.815502186264865,10.737625672382478,11.666499899390246,15.798960271396354,11.605157984047253,12.861935254643555,10.928495510324808,280.5643698200954,280.5643698200954,0.0,311.7381886889949,0.0,280.5643698200954,311.7381886889949,0,0
+2017/07/01 18:00:00,269.1952608154402,0,929.4619967776251,0,0,0,67.14410998628304,0.0,16.86091083164338,0.0,120.14191543460078,0,39.380909295966944,2.9623240302081423e-09,25.667415263983614,0,0,0.0,503.57776662709546,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6706.030809929783,5663.5627915879195,7442.10701052232,6582.207349063155,46868.100696584675,9007.401425463895,7432.621246284256,8911.43367100848,6133.945066575661,53756.401182135756,9158.395242871713,7730.718600267649,9288.611561873093,6114.439062442681,54565.5816200367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04948524516713819,0.0015656786630269402,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0648160704490979,1.0648160704490979,1.1412369670290499,1.1412369670290499,1.0817145326741733,1.0817145326741733,1.1152880713706241,1.1152880713706241,1.1073995560352476,1.1073995560352476,0.5481661126239946,0.6398480452490479,0.542813197004645,0.595642903968717,0.5354933312832322,0.5542704298090648,0.6563838565559188,0.5565172337345798,0.5946564194712733,0.5437684363059218,28.92688062874835,28.92688062874835,32.427428579689746,32.427428579689746,29.68373327368522,29.68373327368522,31.21674425200959,31.21674425200959,30.853103389900383,30.853103389900383,11.289923382646535,13.594842381660655,11.166614767099006,12.437973472596624,11.000005625248676,11.43205681243046,14.049377848059066,11.484778300102803,12.413124076195515,11.188528430635117,269.1952608154402,269.1952608154402,0.0,299.10584535048906,0.0,269.1952608154402,299.10584535048906,0,0
+2017/07/01 19:00:00,261.12142794106927,0,884.28015142052,0,0,0,67.83707613082034,0.0,17.451880260369812,0.0,110.89738010901058,0,39.380909295966944,2.9623240302081423e-09,25.554182141939226,0,0,0.0,493.8862737825346,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5652.144954481801,4315.56639615165,6579.722912707994,6198.40242878834,43873.41460043469,9231.271363855207,7163.804006516399,9409.572882707003,6114.767650423264,59249.13711188241,9305.054393604316,7322.588079414545,9743.951329328867,6022.779359076832,59836.30105781051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04707973025383185,0.001489569847952141,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0503132200252412,1.0503132200252412,1.1075850215044556,1.1075850215044556,1.067192258014203,1.067192258014203,1.0988199760077455,1.0988199760077455,1.1016611160211867,1.1016611160211867,0.5500686945038697,0.6277725180179787,0.549191599012758,0.5932363171843731,0.5524896015837871,0.5523852376183849,0.6364843184222034,0.5594373481190044,0.5883299466704486,0.5591019086291852,28.285409774815918,28.285409774815918,30.86162890288756,30.86162890288756,29.03269715337332,29.03269715337332,30.459987464845128,30.459987464845128,30.589891870985554,30.589891870985554,11.334049991234252,13.27040257515533,11.31368800972858,12.377426074684237,11.390424975844041,11.387989441217485,13.503831703381593,11.553626190100417,12.254765115939762,11.545698695164887,261.12142794106927,261.12142794106927,0.0,290.1349199345214,0.0,261.12142794106927,290.1349199345214,0,0
+2017/07/01 20:00:00,235.24551841304086,0,846.1017112992157,0,0,0,55.87681950166959,0.0,21.930440126291984,0.0,94.88958839347283,0,39.380909295966944,2.9105179581175028e-09,23.16776109272894,0,0,0.0,491.1981861737744,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328.533481888077,2730.9514345009015,4932.785227103507,5586.094642396529,37024.98674331191,7245.136271032461,5363.444161822895,7385.230059824233,4796.539739481731,49079.76943653791,7194.646918753216,5472.514260542144,7513.423321885645,4608.678168678745,49279.83069937841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04504708182274848,0.0014252582684654979,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0370702017014524,1.0370702017014524,1.057242072527425,1.057242072527425,1.0327227128642702,1.0327227128642702,1.0785133168389556,1.0785133168389556,1.089484281369179,1.089484281369179,0.5400289184801166,0.5876304805377341,0.534419635626535,0.5791681286547246,0.5496671408918438,0.5370871029398875,0.5940971639405467,0.5355246471313508,0.5689093893209841,0.551685271719627,27.70629577143977,27.70629577143977,28.590937059822537,28.590937059822537,27.51757747956198,27.51757747956198,29.53958630899436,29.53958630899436,30.035078066759922,30.035078066759922,11.1029676105004,12.237363304338572,10.975762192979005,12.028513159093379,11.324723689556606,11.036084148682548,12.399055272237646,11.000713468565209,11.779494861209386,11.371666588926331,235.24551841304086,235.24551841304086,0.0,261.3839093478232,0.0,235.24551841304086,261.3839093478232,0,0
+2017/07/01 21:00:00,235.68761132290612,0,834.4150596650712,0,0,0,43.86823546394485,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,2.9623240302081423e-09,25.609832404482944,0,0,0.0,515.0018870521741,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2182.2651138781857,1081.0623718780532,3043.191866838602,4845.177210813465,28285.848653010013,5188.880117987346,3844.287783844023,5542.79349796275,3333.8918507687135,40996.50761380252,5023.303058087312,3771.071642919535,5593.439060423272,3027.506906321153,40688.064675203255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04442487583336585,0.0014055721046747835,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0282391580829138,1.0282391580829138,1.0456257220659861,1.0456257220659861,1.0248257868000545,1.0248257868000545,1.0559223179226824,1.0559223179226824,1.084336401535816,1.084336401535816,0.5399560622308319,0.5831268083375478,0.5276475996003599,0.5754223788333754,0.5571449082153453,0.5329571745029417,0.5769410169169757,0.5250354601010357,0.56131933043854,0.5560785962183008,27.32368114021466,27.32368114021466,28.079697617696667,28.079697617696667,27.17656395612164,27.17656395612164,28.5326094628212,28.5326094628212,29.80205896498228,29.80205896498228,11.101306664114148,12.125826223871158,10.824003992079582,11.937060471825575,11.499545861054557,10.94282098149263,11.974064731035824,10.76599783134435,11.598193862130898,11.474468431196243,235.68761132290612,235.68761132290612,0.0,261.8751236921179,0.0,235.68761132290612,261.8751236921179,0,0
+2017/07/01 22:00:00,162.0509128461998,0,622.4953328882932,0,0,0,25.450627413627544,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,2.8041898931242353e-09,18.592909027796956,0,0,0.0,462.7887465818446,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3143.140090944338,7833.411015151561,2782.0790325707185,2195.209125703229,3305.7231558826634,1724.2116012886875,29371.95285468304,2475.268990104391,1982.8169605616267,3233.029926030181,1298.9317604697853,28569.80276142835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03314211260941577,0.0010485933410037352,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9411557556926033,0.9411557556926033,0.9374638698410697,0.9374638698410697,0.972362112832656,0.972362112832656,1.002473904641282,1.002473904641282,1.0238877850941583,1.0238877850941583,0.539594706670849,0.5775538372218907,0.5265904971231179,0.5716370481549797,0.5560968937087962,0.5269903224515229,0.5647261557383231,0.517948314141206,0.5522915959652328,0.550906339627707,23.708677444784243,23.708677444784243,23.56193182827984,23.56193182827984,24.970529774177464,24.970529774177464,26.22393201420971,26.22393201420971,27.136211445846058,27.136211445846058,11.093072029709461,11.989025500355964,10.800493991571486,11.84525983239584,11.47489833421092,10.809380433916715,11.679262405897347,10.610105633870617,11.385804534349731,11.353527253497873,162.0509128461998,162.0509128461998,0.0,180.05656982911088,0.0,162.0509128461998,180.05656982911088,0,0
+2017/07/01 23:00:00,95.17367421183492,0,484.3444049778012,0,0,0,5.618613217781836,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.694178843539666e-09,14.044079932520628,0,0,0.0,431.108876208985,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1541.2745572019046,0.0,0.0,0.0,0.0,0.0,9089.251643967953,0.0,0.0,0.0,0.0,7780.839617976582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02578685487814787,0.0008158781134239892,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7515640495142892,0.7515640495142892,0.7409019130372123,0.7409019130372123,0.7910314213169621,0.7910314213169621,0.9555414385533294,0.9555414385533294,0.8759163713013324,0.8759163713013324,0.5116967211587458,0.561423932340735,0.5271011975266511,0.5336161594007846,0.5694596649535787,0.4768893299584648,0.5246489627058766,0.5040192257242333,0.48119952451099957,0.5606242091154785,16.89552731392456,16.89552731392456,16.5572967047099,16.5572967047099,18.189804927316573,18.189804927316573,24.285625399844463,24.285625399844463,21.196260596117,21.196260596117,10.47439668320709,11.600675470461397,10.811845948124443,10.957652823600199,11.7927362441161,9.74968329515194,10.75744020909849,10.31004681510025,9.836586815857288,11.581714639751283,95.17367421183492,95.17367421183492,0.0,105.7485269020388,0.0,95.17367421183492,105.7485269020388,0,0
+2017/07/02 00:00:00,45.72578789889577,0,480.8485593085177,0,0,0,0.3288129701314438,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,2.3571654244037687,2.637769040709899e-09,11.854175436922722,0,0,0.0,427.61303053970147,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110.26848290864763,122.2098284998595,135.81158900552333,915.0810846403823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02560073346531902,0.0008099893616594114,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.883030680797963,0.883030680797963,0.8876608257699815,0.8876608257699815,0.8923692198392273,0.8923692198392273,0.9313642720824975,0.9313642720824975,0.9359036158529198,0.9359036158529198,0.6630183074293411,0.7490757834238301,0.6506717794513583,0.7222276329576554,0.7623545920230836,0.6084172403991711,0.6929789921069589,0.6126630719614663,0.6457303779239919,0.735883126389412,21.461839237869697,21.461839237869697,21.635798290063292,21.635798290063292,21.813596209079222,21.813596209079222,23.320671688045195,23.320671688045195,23.500077411072425,23.500077411072425,14.235076646769457,16.816157235581542,13.89102442824823,15.976658547776353,17.242787303310934,12.763571723153945,15.097410997761656,12.873359643024017,13.755177109950665,16.399775574450175,45.72578789889577,45.72578789889577,0.0,50.806430998773074,0.0,45.72578789889577,50.806430998773074,0,0
+2017/07/02 01:00:00,23.725359801106688,0,53.27533473603183,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5282643774288955,0,0,0.0,17.784982223487695,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028364182827419425,8.974229731931628e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9187683985934315,0.9187683985934315,0.9410911773345075,0.9410911773345075,0.9194501808255549,0.9194501808255549,0.9813368303639893,0.9813368303639893,1.0354575780051896,1.0354575780051896,0.660827123611935,0.7630827183458242,0.6402199027714383,0.7354148297085417,0.8204398465715714,0.6126763232725625,0.7201822046336777,0.6069734220804063,0.6713426433697315,0.7816187998970875,22.827165842203883,22.827165842203883,23.706105926777468,23.706105926777468,22.853715174432764,22.853715174432764,25.340460788035543,25.340460788035543,27.636213139039356,27.636213139039356,14.173534331610895,17.266399070556304,13.604933669450233,16.385132637163167,19.19720856309948,12.87370351766451,15.913971432095337,12.72641600243358,14.470772311118878,17.875105631950376,23.725359801106688,23.725359801106688,0.0,26.36151089011854,0.0,23.725359801106688,26.36151089011854,0,0
+2017/07/02 02:00:00,28.34420740390562,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248443174327228,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9646419887504902,0.9646419887504902,0.992487534208392,0.992487534208392,0.9613931157719119,0.9613931157719119,1.0380098164090923,1.0380098164090923,1.1205425055124836,1.1205425055124836,0.6830395741689576,0.7874490219186546,0.6576342352108856,0.7620324369103632,0.8450688651782907,0.6369365257675625,0.7467233701197865,0.6249843319860849,0.7000605374800972,0.8006826066775679,24.6548108406553,24.6548108406553,25.804403564289828,25.804403564289828,24.522640652788724,24.522640652788724,27.747174196526643,27.747174196526643,31.4601128116163,31.4601128116163,14.807028382137219,18.069588315875194,14.084230198226322,17.23234764646854,20.068880853472237,13.516038298466853,16.741364475031574,13.196389826147879,15.306904182776066,18.5163828210287,28.34420740390562,28.34420740390562,0.0,31.493563782117356,0.0,28.34420740390562,31.493563782117356,0,0
+2017/07/02 03:00:00,23.722031469148014,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249360454702208,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.957044714831913,0.957044714831913,0.9851973061144486,0.9851973061144486,0.9506757131011443,0.9506757131011443,1.0203739995135601,1.0203739995135601,1.1200444687405056,1.1200444687405056,0.6842101400270777,0.7878665349570498,0.6559347834362,0.7643033238053831,0.8650850760600527,0.6423356522750432,0.7510638015833961,0.6270414302352739,0.7063367536391818,0.8110032431300858,24.346385705861323,24.346385705861323,25.500542192061232,25.500542192061232,24.08956855809265,24.08956855809265,26.985340088874665,26.985340088874665,31.437006054622273,31.437006054622273,14.841004883650399,18.083570992594474,14.03687717296792,17.306031811558384,20.795925074789537,13.662463974778959,16.879549236191366,13.250963131187163,15.494382968950134,18.869973509456713,23.722031469148014,23.722031469148014,0.0,26.357812743497792,0.0,23.722031469148014,26.357812743497792,0,0
+2017/07/02 04:00:00,56.972159567538476,0,88.72588128136032,0,0,0,6.393772818409575,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,12.98938895767348,0.0,0.5250993793923491,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,757.9688697717254,0.0,0.0,0.0,541.3455559783565,0.0,13575.695612743031,0.0,0.0,0.0,0.0,6578.933199806516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9547515697096356,0.9547515697096356,0.9605124753393629,0.9605124753393629,0.9547128726485368,0.9547128726485368,0.9803533012829043,0.9803533012829043,0.9958199310210735,0.9958199310210735,0.5498992398635117,0.6040885365488332,0.5192624439899587,0.5919245374738369,0.5633424478855761,0.5228073995512795,0.5777854278988219,0.5146492481037122,0.555189211778897,0.560483695072137,24.253735571597545,24.253735571597545,24.48688562569245,24.48688562569245,24.2521738626847,24.2521738626847,25.29976871009977,25.29976871009977,25.94397630513538,25.94397630513538,11.33011346236485,12.652446351831586,10.638847697735017,12.344528809573035,11.646275099063743,10.716754087263226,11.99468356117157,10.538279161891268,11.45358967569338,11.578386023128417,56.972159567538476,56.972159567538476,0.0,63.302399519487196,0.0,56.972159567538476,63.302399519487196,0,0
+2017/07/02 05:00:00,100.80012723453477,0,212.9421150752648,0,0,0,11.840208968153386,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,16.570796466545158,0.0,0.5251146106364755,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1712.1520629665463,0.0,0.0,2082.6944858518154,2116.8077108364528,1882.571575292873,16626.03675324506,0.0,0.0,0.0,0.0,15695.943083787419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9725755094246625,0.9725755094246625,0.9718642646026119,0.9718642646026119,0.9730539618045924,0.9730539618045924,1.008973280912298,1.008973280912298,0.9859298236860551,0.9859298236860551,0.515876301060223,0.5080632053010699,0.4675334636072294,0.5068609905708686,0.466186176192171,0.490454098435375,0.5226216154232384,0.4850529227449976,0.5098663363920406,0.4799979565044609,24.979289645761767,24.979289645761767,24.95010010837305,24.95010010837305,24.998936402800794,24.998936402800794,26.499000997658996,26.499000997658996,25.530981967865458,25.530981967865458,10.56493926727596,10.396297429468845,9.563803941205194,10.370582561579283,9.537347224018063,10.025888893180564,10.712657662632964,9.914958843220063,10.43498279937728,9.812279855879638,100.80012723453477,100.80012723453477,0.0,112.0001413717053,0.0,100.80012723453477,112.0001413717053,0,0
+2017/07/02 06:00:00,121.30866892207291,0,634.784619919258,0,0,0,12.432978596715538,0.0,7.93331016764836,0.0,80.56906512710079,0,19.84811311207061,2.522116532856785e-09,0.5252019160154943,0,0,0.0,404.09732858772117,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2232.4091345172487,0.0,0.0,0.0,0.0,0.0,20187.367697321875,0.0,0.0,0.0,0.0,19110.335654277977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03379640335370117,0.0010692946440746544,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9740194331480785,0.9740194331480785,0.9747759926669465,0.9747759926669465,0.9733485843656127,0.9733485843656127,1.031295648415414,1.031295648415414,0.9872473365841832,0.9872473365841832,0.5083820497919942,0.5189840302608592,0.4808969164294285,0.5153108938528699,0.44030161925786704,0.4858411955225253,0.5128492553261474,0.48108828684263705,0.5022517075123878,0.4481747553366397,25.03860870570189,25.03860870570189,25.069721822244517,25.069721822244517,25.011038945264616,25.011038945264616,27.455782088069256,27.455782088069256,25.58578304785695,25.58578304785695,10.403127863532987,10.63275211784243,9.830459378055991,10.552646607395616,9.04422407139279,9.931070012956908,10.499288674126092,9.834333932032678,10.272570926690065,9.191163691922753,121.30866892207291,121.30866892207291,0.0,134.78740991341434,0.0,121.30866892207291,134.78740991341434,0,0
+2017/07/02 07:00:00,116.51544412819946,0,676.8652003026098,0,0,0,0.7208807087533798,0.0,6.502062519248582,0.0,69.33401494192633,0,39.380909295966944,2.5221192785725337e-09,0.5775766597821136,0,0,0.0,410.6875564585287,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2988.007528897153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03603680462267724,0.0011401793785365487,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.893373387572648,0.893373387572648,0.8604673827297876,0.8604673827297876,0.9416883145841802,0.9416883145841802,1.0434024568354905,1.0434024568354905,1.0576059392739485,1.0576059392739485,0.6017216007478549,0.6236464743367752,0.6233691407948986,0.6005314716996752,0.7382927716628938,0.5674600533767111,0.5858936296110021,0.6050591719943222,0.5522408821478062,0.7301280348198694,21.851632572404384,21.851632572404384,20.626723226593853,20.626723226593853,23.729890308400684,23.729890308400684,27.98240767515246,27.98240767515246,28.607029424003827,28.607029424003827,12.592026900642665,13.16099598473329,13.153668675030119,12.561739006762139,16.475270474263425,11.744682082809831,12.194244518838147,12.677293522862414,11.384621405849614,16.220476027922118,116.51544412819946,116.51544412819946,0.0,129.46160458688828,0.0,116.51544412819946,129.46160458688828,0,0
+2017/07/02 08:00:00,151.33467075309616,0,713.523267316767,0,0,0,4.6694663323380805,0.0,9.842300524895856,0.0,96.91714705112861,0,39.380909295966944,2.5221192789113535e-09,0.5248475462446023,0,0,0.0,394.11009470386983,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,5.858531541033268,3856.6895744106373,12425.815452478746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0379885072633856,0.0012019298896395964,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9734827935783101,0.9734827935783101,0.9277089587950395,0.9277089587950395,1.0344328224540593,1.0344328224540593,1.0687100042795672,1.0687100042795672,1.1065758120648685,1.1065758120648685,0.6833252157820596,0.7033849756102521,0.7160501577985238,0.6802955232186333,0.8736784480028141,0.6547948079851541,0.6667578226833328,0.7054720132923473,0.632236787420487,0.8662499574464508,25.0165531234679,25.0165531234679,23.17680246555082,23.17680246555082,27.591728099823115,27.591728099823115,29.100390312656344,29.100390312656344,30.815251377076606,30.815251377076606,14.815313866281627,15.405997768146307,15.787884377135171,14.727612654586451,21.113148481227043,14.005183368435794,14.340586237498457,15.468451084755714,13.389609537644091,20.838747999663312,151.33467075309616,151.33467075309616,0.0,168.14963417010685,0.0,151.33467075309616,168.14963417010685,0,0
+2017/07/02 09:00:00,154.90562829769877,0,788.2031951333827,0,0,0,8.383373170017206,0.0,9.548760743261381,0.0,97.06762091869685,0,39.380909295966944,2.522119278911396e-09,0.5249641672342972,0,0,0.0,415.5544937516694,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4186.772241710933,11661.321707099627,0.0,0.0,0.0,0.0,6732.297411006382,0.0,0.0,0.0,0.0,5807.602692675273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.041964521936262614,0.001327728222378575,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0021255204541433,1.0021255204541433,0.9421004938763182,0.9421004938763182,1.0763595741007332,1.0763595741007332,1.0870796091362525,1.0870796091362525,1.1406496531059227,1.1406496531059227,0.6042301790701936,0.627717484904719,0.6334959789109915,0.6075866682733696,0.7340506663395435,0.5809704940017694,0.5936443025026845,0.6270024593064883,0.5633978074386788,0.7326334942320155,26.20923263245841,26.20923263245841,23.746315934717074,23.746315934717074,29.442807441782875,29.442807441782875,29.926116258831158,29.926116258831158,32.39978452723034,32.39978452723034,12.656069692275807,13.268938451101974,13.423389375909707,12.742186439337488,16.342530971954886,12.072734948480928,12.387672896907063,13.249927554834343,11.647593264593567,16.29835855382565,154.90562829769877,154.90562829769877,0.0,172.11736477522086,0.0,154.90562829769877,172.11736477522086,0,0
+2017/07/02 10:00:00,222.05314112476282,0,952.4561096146235,0,0,0,21.67700121144097,0.0,12.984000736477544,0.0,124.87761316689259,0,39.380909295966944,2.9105445854764004e-09,23.13361671107415,0,0,0.0,491.0815269515498,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,865.714080086342,0.0,2286.893525631453,5732.536020114396,25229.726220642366,706.6695590590489,217.15579173585493,1482.7647467411969,125.37626246715361,18253.060090462885,633.3315350221111,74.68717064165308,1638.6023053102876,0.0,17659.628100450405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050709468766472664,0.0016044122443556407,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.111226751508348,1.111226751508348,1.0458360576073322,1.0458360576073322,1.135430828723745,1.135430828723745,1.1442438497033185,1.1442438497033185,1.1728398575182708,1.1728398575182708,0.6262065223999014,0.6420021735740624,0.6265469940162164,0.6401076698148049,0.6524002718525115,0.6200137719784528,0.6253356984428902,0.6284734756373861,0.6150344152559949,0.6541687323245224,31.029267064458224,31.029267064458224,28.088911186128684,28.088911186128684,32.15462904758317,32.15462904758317,32.56913139831856,32.56913139831856,33.930968127804135,33.930968127804135,13.228791502070465,13.653383316227405,13.237829339452972,13.601887314427842,13.938793446067805,13.065282385686658,13.205698317492562,13.289062641889018,12.93501789976618,13.987801058753632,222.05314112476282,222.05314112476282,0.0,246.72571236084758,0.0,222.05314112476282,246.72571236084758,0,0
+2017/07/02 11:00:00,238.02833898183744,0,997.1810626863786,0,0,0,19.245806528067348,0.0,12.984000736477544,0.0,143.25325374857618,0,39.380909295966944,2.9105445854763996e-09,23.164368669838726,0,0,0.0,482.57095125448876,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,734.7039573359366,0.0,2679.6702857724813,6456.747097579907,27028.618747944747,0.0,0.0,706.9903017626665,0.0,14245.44172272226,0.0,0.0,1140.1474197662646,0.0,13562.574311794982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0530906583960838,0.0016797514244104453,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1706620700992014,1.1706620700992014,1.0827286760826047,1.0827286760826047,1.1642100720935933,1.1642100720935933,1.1624122694370298,1.1624122694370298,1.1924895595902156,1.1924895595902156,0.6317438956571738,0.6240184509122438,0.6303774880694767,0.6204698726527775,0.6340552262769282,0.6409135255807578,0.6173106227618091,0.6369128702457686,0.6038622019331652,0.6373914178351531,33.82636447403925,33.82636447403925,29.729473493712632,29.729473493712632,33.517313195727255,33.517313195727255,33.4314265251044,33.4314265251044,34.881232530355746,34.881232530355746,13.3764056548725,13.170829057329968,13.339856610627564,13.07726818478615,13.438414144784574,13.62377289246642,12.994432042879268,13.515399536618531,12.646658320390287,13.528326312274956,238.02833898183744,238.02833898183744,0.0,264.4759322020416,0.0,238.02833898183744,264.4759322020416,0,0
+2017/07/02 12:00:00,235.48835103296338,0,950.6434481310306,0,0,0,39.62326710105682,0.0,13.065493553185489,0.0,124.80122689546741,0,39.380909295966944,2.804216071480645e-09,18.617454184482497,0,0,0.0,471.52368921168465,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3541.9903355555316,486.35677830743293,4273.857891751116,6569.594179827039,35300.36923535111,4003.7681602270227,1887.0724332490695,4048.9781793266766,1780.0806548009157,33455.78590809994,4333.810907713191,1905.8507879119707,4525.916005861742,1708.1723028725964,33193.963563764686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050612961326435724,0.001601358816224107,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1757268455426049,1.1757268455426049,1.0981896163167428,1.0981896163167428,1.147000673316205,1.147000673316205,1.1524443518788323,1.1524443518788323,1.177486650253827,1.177486650253827,0.6347109144548443,0.6173901103106737,0.6137955025112791,0.6165032882899235,0.6180123195080535,0.6467184933353278,0.6129245163843827,0.6205637494932827,0.6048204402776227,0.6237943836659667,34.069858263405095,34.069858263405095,30.431203021922613,30.431203021922613,32.69930341901835,32.69930341901835,32.957051657606044,32.957051657606044,34.15464442719096,34.15464442719096,13.456047176082166,12.996510909997312,12.90277398414652,12.973333062655016,13.012793249678381,13.782257360302197,12.880145595371218,13.079736280002422,12.67117846883832,13.164905197845954,235.48835103296338,235.48835103296338,0.0,261.6537233699593,0.0,235.48835103296338,261.6537233699593,0,0
+2017/07/02 13:00:00,258.3424180210462,0,906.210097659675,0,0,0,62.703009714054566,0.0,12.88660173648153,0.0,124.7641830973959,0,39.380909295966944,2.804216071480645e-09,18.607714174343055,0,0,0.0,462.58069125287335,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8436.44629897766,3590.958930240791,7242.148415708317,7016.337372575428,47087.98983064254,9623.685023772301,5460.283529034715,7991.862070178317,4960.162247844925,50165.86637157414,10244.211640100993,5633.524132251157,8496.594475400563,5026.734459573496,51471.59476978997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048247296835261834,0.0015265108407275425,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1952058455857202,1.1952058455857202,1.128975269207854,1.128975269207854,1.137609959939389,1.137609959939389,1.1534826501430389,1.1534826501430389,1.1562542938363292,1.1562542938363292,0.6524765500637669,0.6356152369326289,0.6059607699288728,0.6188531756821656,0.5969463453734138,0.6801365563333548,0.647861305010982,0.6224536356469715,0.6212982448774779,0.6100325188789214,35.01349221242546,35.01349221242546,31.852597489367184,31.852597489367184,32.25688750198724,32.25688750198724,33.00631938677708,33.00631938677708,33.13800093624876,33.13800093624876,13.94090447208437,13.48039717968139,12.700410042388981,13.034823966992263,12.47087173633102,14.723021966048904,13.81363000337791,13.129504202357879,13.099059936791079,12.805247087060962,258.3424180210462,258.3424180210462,0.0,287.0471311344958,0.0,258.3424180210462,287.0471311344958,0,0
+2017/07/02 14:00:00,257.50908701198034,0,839.0107612810325,0,0,0,76.70535058681419,0.0,12.935301171685163,0.0,111.01081017850728,0,39.380909295966944,2.694204496988056e-09,14.044740573858252,0,0,0.0,430.8717073867749,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11351.000544482924,7360.573762112056,9460.941140508292,7011.445360895041,59128.18385997111,11406.303541524392,8089.994261462096,9430.48164269652,6720.693905703398,55790.46106788384,11983.808824638245,8409.469210937395,9847.45834910848,6865.92913072391,57653.22297327931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04466955439146646,0.0014133135636980622,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1572365542220546,1.1572365542220546,1.1825750627111478,1.1825750627111478,1.1101167310259823,1.1101167310259823,1.1363608597205168,1.1363608597205168,1.1309383113333484,1.1309383113333484,0.6218905138469525,0.6585609513776463,0.5792383207185509,0.6021663681750064,0.5681329126222279,0.6447344754852666,0.6799297671259943,0.5944023363040356,0.6078250254324409,0.5823472570746021,33.1847261303061,33.1847261303061,34.400324585864084,34.400324585864084,30.978122774029643,30.978122774029643,32.1982531525683,32.1982531525683,31.9442974584058,31.9442974584058,13.11465884368748,14.110104675170192,12.030232712990838,12.603361678557931,11.76083270467305,13.727926285628925,14.71705188754575,12.406730599377028,12.74832051381793,12.10660936785257,257.50908701198034,257.50908701198034,0.0,286.12120779108926,0.0,257.50908701198034,286.12120779108926,0,0
+2017/07/02 15:00:00,247.97774838746696,0,856.5261701910997,0,0,0,69.30915657686275,0.0,13.01679398839311,0.0,108.75639138185811,0,39.380909295966944,2.694204496988056e-09,14.08252193923759,0,0,0.0,448.3871162968421,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9410.147942052143,8467.983462575454,8503.703493308007,6591.906337276307,53892.2782373431,9373.288085929817,8203.085791958702,8101.679480281514,5851.777335079871,48167.17580331803,9760.868587359975,8617.289312616818,8436.218954534543,5976.400548100898,49894.27654868053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045602087735618586,0.0014428182686776737,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1044220448638666,1.1044220448638666,1.2408045827928131,1.2408045827928131,1.0840433577812436,1.0840433577812436,1.1208768225611196,1.1208768225611196,1.1098802914400663,1.1098802914400663,0.5804872644149188,0.6831878056755296,0.553177267951137,0.5794717733729758,0.5425569532992219,0.5950465968649968,0.7121805063062188,0.5659067101343619,0.5857750287597228,0.5549870427510534,30.716391456862453,30.716391456862453,37.264913294283275,37.264913294283275,29.788821951820523,29.788821951820523,31.475628282855766,31.475628282855766,30.967234141300693,30.967234141300693,12.060864878315172,14.811327629635088,11.406484804057001,12.035953336483942,11.160743135257732,12.422947537303642,15.670471118807228,11.707472225894719,12.191304927731096,11.44884843812845,247.97774838746696,247.97774838746696,0.0,275.53083154162994,0.0,247.97774838746696,275.53083154162994,0,0
+2017/07/02 16:00:00,262.3374531431586,0,898.7391388382548,0,0,0,69.3057583972969,0.0,11.226519865360757,0.0,124.87761316689259,0,39.380909295966944,2.694204496988056e-09,14.11467721249286,0,0,0.0,437.3645561751809,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8880.644465210871,9646.88021917951,8517.699039390067,6711.4925739030805,53486.801552949335,8919.677725684942,8911.511907927626,8120.727863083655,5629.041048982466,47560.910237341544,9195.780607074383,9418.803557778278,8411.800401970972,5743.316020295777,49065.88377149964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04784953745382041,0.001513926011159896,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0750887534902092,1.0750887534902092,1.2842613951873287,1.2842613951873287,1.0722161777214885,1.0722161777214885,1.1165329264811348,1.1165329264811348,1.1016789675561636,1.1016789675561636,0.5524481460888658,0.7089643972865525,0.5358519576156869,0.5557093839028829,0.521985904171044,0.5644626721397192,0.7458290403609991,0.5486117090229561,0.5626955062626485,0.5333159600574678,29.38577914466201,29.38577914466201,39.461625325400874,39.461625325400874,29.257080960982734,29.257080960982734,31.27431903009466,31.27431903009466,30.590708957926438,30.590708957926438,11.389457475304411,15.5733788116506,11.00811432671911,11.465796819399841,10.698651925621448,11.672974611043202,16.71299232521791,11.300244036011861,11.630880633810307,10.950893873187141,262.3374531431586,262.3374531431586,0.0,291.486059047954,0.0,262.3374531431586,291.486059047954,0,0
+2017/07/02 17:00:00,273.070340101987,0,923.8977721183254,0,0,0,71.10101955013737,0.0,11.198411588569618,0.0,129.38645076019097,0,39.380909295966944,2.804216071480645e-09,18.571573701863517,0,0,0.0,462.5231894552516,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8580.43840510408,10278.333405510954,9221.980725797,6642.661275340807,53176.57549442949,8945.510888421184,9547.578421799073,8980.820721713122,5611.459835653809,49208.96499722631,9156.812145999065,10094.463082878123,9302.631159890121,5709.334806802063,50500.20928306865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04918900172481877,0.0015563057270106674,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0558104703798945,1.0558104703798945,1.3048622707668425,1.3048622707668425,1.096130071356776,1.096130071356776,1.1075414970693205,1.1075414970693205,1.091813865122897,1.091813865122897,0.5347577397444475,0.727409166174588,0.545513418432993,0.538165705602369,0.5118013131585468,0.5446212971953339,0.7665199952324794,0.561381795802898,0.5442007066504824,0.5218989866322595,28.527669145683177,28.527669145683177,40.518802546447,40.518802546447,30.33725151386355,30.33725151386355,30.85962805905845,30.85962805905845,30.140827706090803,30.140827706090803,10.983391003963703,16.13626495474449,11.228661278509946,11.060563120548608,10.476653250873099,11.20812689409621,17.378169233768062,11.599675752951143,11.198457922038074,10.696738352214666,273.070340101987,273.070340101987,0.0,303.41148900220776,0.0,273.070340101987,303.41148900220776,0,0
+2017/07/02 18:00:00,259.2638879394735,0,916.9359737335262,0,0,0,69.74134820825896,0.0,11.357652415668584,0.0,115.6330778413024,0,39.380909295966944,2.910544585476399e-09,23.15090017536611,0,0,0.0,491.0517435829966,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7149.002324372833,9518.73085130089,9490.578113932304,6196.219662309305,47676.929798764875,8803.52406496358,9868.47719310993,9975.381085209765,5314.412641903722,51476.88788412516,8988.728137852828,10455.201430767374,10449.527753548246,5374.399759436408,52597.93112547344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04881835042216159,0.0015445785781598646,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0382425179657158,1.0382425179657158,1.2925484434401424,1.2925484434401424,1.131601161752541,1.131601161752541,1.0906085529989438,1.0906085529989438,1.081868069472766,1.081868069472766,0.5160500162384094,0.7375419454396559,0.5657028119242768,0.5168391462796482,0.5081684962117923,0.523303957722351,0.7756746805656985,0.5884539209098721,0.5189039897818719,0.5179377096242439,27.757302991140392,27.757302991140392,39.885730304011815,39.885730304011815,31.97528968662182,31.97528968662182,30.086090156811807,30.086090156811807,29.690655838608066,29.690655838608066,10.56871882980802,16.45172012861528,11.702595677872523,10.585904555800425,10.398552533922413,10.727710218918247,17.678311851014925,12.257851649572743,10.631000335290196,10.609874000512832,259.2638879394735,259.2638879394735,0.0,288.070986599415,0.0,259.2638879394735,288.070986599415,0,0
+2017/07/02 19:00:00,242.37570703147958,0,881.4557782370658,0,0,0,64.00161135299979,0.0,11.692884133504386,0.0,104.13412371906301,0,39.380909295966944,2.9105445854763996e-09,23.16617852703494,0,0,0.0,491.06190059908045,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5585.191585265539,7749.707798138168,9318.516663627563,5594.048086810144,41707.22675826486,7745.698783135417,9173.066725513789,10093.50206894555,4510.167353091717,49522.372559122974,7822.523628282115,9656.84339700847,10639.055896793101,4472.905105910487,50342.31751506107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0469293585335127,0.0014848121915389783,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0257381241066685,1.0257381241066685,1.2404867852050236,1.2404867852050236,1.1434054216250165,1.1434054216250165,1.0685378079085475,1.0685378079085475,1.0769401252098254,1.0769401252098254,0.5105005398206767,0.7245195404875666,0.5876930990415837,0.509985439725995,0.5166111343907013,0.5124341201016963,0.7524116711983845,0.607895395680576,0.50654232504144,0.5234527872836825,27.215843688197324,27.215843688197324,37.249025643863455,37.249025643863455,32.52959044280604,32.52959044280604,29.092706061907364,29.092706061907364,29.468878626357025,29.468878626357025,10.44862277061388,16.04711354512503,12.238920306327344,10.437543057968355,10.58093613029176,10.490316122830194,16.92262507969869,12.750131949723198,10.363776916606497,10.730996094688493,242.37570703147958,242.37570703147958,0.0,269.3063411460884,0.0,242.37570703147958,269.3063411460884,0,0
+2017/07/02 20:00:00,226.49803873876115,0,817.4326126551011,0,0,0,45.977297791575936,0.0,14.11304002692588,0.0,108.41610117336799,0,39.380909295966944,2.804216071480645e-09,18.610690448120163,0,0,0.0,462.5290875296599,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2621.001200150488,2866.2368858815776,4530.815777409057,4849.886816201095,29133.00995958934,5006.46420004178,5793.051016405859,7404.104260298839,2475.8550934167115,39493.606032995995,4908.189039268435,6478.936418846126,7772.016724627933,2259.188977984981,39845.49758322699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04352071777554333,0.0013769651739754347,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0201708411924306,1.0201708411924306,1.0917410562380017,1.0917410562380017,1.0420601038348725,1.0420601038348725,1.0478586614777927,1.0478586614777927,1.076668646171816,1.076668646171816,0.5149495728394734,0.637765319602983,0.563426272432908,0.5132052545576132,0.5332954048497778,0.5110510006391595,0.6737153521279661,0.5713067213228041,0.5042856400575293,0.5354371680268099,26.976631126907463,26.976631126907463,30.137519774198935,30.137519774198935,27.923753458631367,27.923753458631367,28.177591534435606,28.177591534435606,29.456685670637967,29.456685670637967,10.544798279332852,13.53843325320149,11.64827109590756,10.506989022768806,10.950431218047811,10.460475768865535,14.538502770358406,11.837278340700152,10.315707188039724,10.998736253479123,226.49803873876115,226.49803873876115,0.0,251.6644874875124,0.0,226.49803873876115,251.6644874875124,0,0
+2017/07/02 21:00:00,199.11060863469203,0,810.4746286280481,0,0,0,15.812906079406787,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9105445854763996e-09,23.167709845143168,0,0,0.0,491.061456015151,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,1344.5756807802481,3831.7732911107178,13110.053750585244,0.0,2071.667237016228,2223.597607018921,0.0,13421.370560169677,0.0,2148.4551155589047,2246.4825531641877,0.0,13241.991822678632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04315026955211787,0.0013652444504099659,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9788197324579652,0.9788197324579652,1.0614570865892707,1.0614570865892707,1.025800467774282,1.025800467774282,1.0235381416239735,1.0235381416239735,1.066594008810086,1.066594008810086,0.5029062034429851,0.6126407998673122,0.5267745790614061,0.456247592525145,0.5265517986831447,0.4791529963305226,0.6113891201817919,0.5222596700712151,0.419342837269588,0.5221783804263228,25.23639395130607,25.23639395130607,28.777640697741532,28.777640697741532,27.218528955645,27.218528955645,27.1211782564244,27.1211782564244,29.006037009096573,29.006037009096573,10.286432165041347,12.872781694109278,10.804584502350721,9.344598614014743,10.799634254680171,9.795224145329513,12.840335878687114,10.704681282586861,8.666039455332992,10.702890639637204,199.11060863469203,199.11060863469203,0.0,221.23400959410225,0.0,199.11060863469203,221.23400959410225,0,0
+2017/07/02 22:00:00,127.84697784829943,0,622.2338659777016,0,0,0,0.4645393278392964,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,2.8042160714806447e-09,18.58255364320338,0,0,0.0,462.5272796712529,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1856.8826760072257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03312819191742559,0.0010481529000126888,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7197839995359303,0.7197839995359303,0.7932436421732189,0.7932436421732189,0.8272100032930375,0.8272100032930375,0.9707494758786727,0.9707494758786727,0.8811389997992483,0.8811389997992483,0.31593648529581125,0.513202437871148,0.42450190787544634,0.2541865268356494,0.4400362833654078,0.2738414968053183,0.49117433028130975,0.40254437078353805,0.2639241679135046,0.42317868514356505,15.901788416000045,15.901788416000045,18.26431362130026,18.26431362130026,19.434286003392728,19.434286003392728,24.904388597785797,24.904388597785797,21.39101964768581,21.39101964768581,7.074978384386299,10.506928075651857,8.757381679092873,6.341215342262743,9.039318407750528,6.557319950548347,10.040776277091922,8.37652383032821,6.446246905102001,8.733844946375825,127.84697784829943,127.84697784829943,0.0,142.0521976092216,0.0,127.84697784829943,142.0521976092216,0,0
+2017/07/02 23:00:00,85.08876930297217,0,474.1871023996569,0,0,0,0.030349988082587747,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6152847331330877e-06,9.547435640766592,0,0,0.0011629171069096709,420.95041071373385,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,117.22347736754841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02524607256530573,0.0007987681380020314,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.42752312343760884,0.42752312343760884,0.48512640333653706,0.48512640333653706,0.5491078476880482,0.5491078476880482,0.9182586472384117,0.9182586472384117,0.5808221313561535,0.5808221313561535,0.1345212593886821,0.3249950481910892,0.25950142210445887,0.12371710946451821,0.2878472314929714,0.18024266597963468,0.2776124021652061,0.2188371670527686,0.14628970925619766,0.262927014760007,8.811402903970958,8.811402903970958,9.916459548144246,9.916459548144246,11.311745446762075,11.311745446762075,22.807327787448344,22.807327787448344,12.069089484864477,12.069089484864477,5.374897021742072,7.196175977465884,6.398047981527341,5.317056241416907,6.7212450160929365,5.673469226650582,6.60064124025466,5.993415637320879,5.44342550558973,6.435308074774028,85.08876930297217,85.08876930297217,0.0,94.5430770033024,0.0,85.08876930297217,94.5430770033024,0,0
+2017/07/03 00:00:00,39.91578828163714,0,474.17901782411815,0,0,0,0.363849911053708,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.2065078773173607,2.5804357509557916e-09,9.548109494262459,0,0,0.0,420.94348905530194,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,564.4216070835295,708.7289247548654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02524564213651575,0.00079875451953515,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6866439991988955,0.6866439991988955,0.782203358179599,0.782203358179599,0.7845825022822207,0.7845825022822207,0.9076623300833887,0.9076623300833887,0.8085888121324458,0.8085888121324458,0.41400990149582106,0.6697514689326795,0.5174015153196682,0.36540777269744,0.5521313895874644,0.32129409952936744,0.5799538963291148,0.4356916248855618,0.34176554094461054,0.5158897587311049,14.911839035304908,14.911839035304908,17.894539971686683,17.894539971686683,17.97378735540687,17.97378735540687,22.397320839285058,22.397320839285058,18.78685071197411,18.78685071197411,8.572818441248941,14.425487759141646,10.598168306970194,7.779312647492588,11.382067378310225,7.146239549884939,12.047774967924283,8.959422449390587,7.429740767140345,10.565232022377728,39.91578828163714,39.91578828163714,0.0,44.35087586848571,0.0,39.91578828163714,44.35087586848571,0,0
+2017/07/03 01:00:00,23.774751681500838,0,36.486833076451205,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5776562578230465,0,0,0.0,0.996480563907067,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0019425860190307677,6.14620675479784e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7070057253915495,0.7070057253915495,0.8284510275455248,0.8284510275455248,0.7804630361428307,0.7804630361428307,0.876173613750897,0.876173613750897,0.9328471503867718,0.9328471503867718,0.42738614328911595,0.7164536943683277,0.5206874881607381,0.38692450462636646,0.670094955174051,0.33389362160522795,0.6466842304741631,0.44853446829304366,0.3186766480558419,0.615408561619482,15.5144662624527,15.5144662624527,19.47795286519292,19.47795286519292,17.836723655731618,17.836723655731618,21.205827281980334,21.205827281980334,23.379188274094517,23.379188274094517,8.80894513675176,15.800165663709762,10.670100084027695,8.118156535694112,14.43525404160765,7.318620865988166,13.781317645223695,9.19794083148929,7.11127310586167,12.944768520633176,23.774751681500838,23.774751681500838,0.0,26.41639075722315,0.0,23.774751681500838,26.41639075722315,0,0
+2017/07/03 02:00:00,28.34413067310258,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5247675866296858,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7316196579367108,0.7316196579367108,0.8586110849662449,0.8586110849662449,0.7978059069810685,0.7978059069810685,0.8725798419552625,0.8725798419552625,1.0019593368169972,1.0019593368169972,0.41751738751518486,0.7068018440456861,0.5060557121786554,0.380495947138953,0.7081501616331596,0.3269691060879932,0.6448947281448316,0.43507722582199365,0.3047788103256388,0.6380973783803886,16.266810826069246,16.266810826069246,20.55895335501326,20.55895335501326,18.418627995663172,18.418627995663172,21.07242382700221,21.07242382700221,26.202222461092077,26.202222461092077,8.633992923446485,15.508343467299767,10.353392940812128,8.014850638736874,15.548868297577599,7.223049189549329,13.732308367103684,8.948189420171104,6.930472847167593,13.547414219894648,28.34413067310258,28.34413067310258,0.0,31.49347852566953,0.0,28.34413067310258,31.49347852566953,0,0
+2017/07/03 03:00:00,23.72195600983203,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248605861542365,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7239723550607206,0.7239723550607206,0.8504801777271198,0.8504801777271198,0.7859961980692682,0.7859961980692682,0.836765534276289,0.836765534276289,1.0183264624434858,1.0183264624434858,0.40610185766696233,0.6946618074634627,0.49075757887536275,0.3683140022451167,0.7336253888813883,0.30637480374935955,0.6272052698140056,0.4127077157434026,0.2831749563703817,0.6508317808906838,16.030272103777023,16.030272103777023,20.263793655955766,20.263793655955766,18.020990369022186,18.020990369022186,19.772172562266192,19.772172562266192,26.89763691812577,26.89763691812577,8.436827154219841,15.146997490803116,10.032159184105936,7.8239263208636345,16.329266262887444,6.950819985749959,13.25531756900682,8.550241064302057,6.665640213943092,13.895440825930663,23.72195600983203,23.72195600983203,0.0,26.357728899813367,0.0,23.72195600983203,26.357728899813367,0,0
+2017/07/03 04:00:00,42.948662254065624,0,88.72588128136032,0,0,0,0.01280124175427204,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,2.9027394744791173,0.0,0.5249879881981137,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,10.492837177795456,0.0,0.0,0.0,0.0,0.0,0.0,34.937599264724454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7668748462735036,0.7668748462735036,0.8882736323327975,0.8882736323327975,0.8236627679938741,0.8236627679938741,0.8665992278510695,0.8665992278510695,0.9716745185904083,0.9716745185904083,0.39263043722662655,0.4929034189187371,0.4204286493052314,0.3555263177245232,0.5110631743431399,0.28733386052870286,0.4568890328343019,0.3879243552602442,0.26131317864601933,0.4833534496678762,17.38973667395011,17.38973667395011,21.658887762867707,21.658887762867707,19.309828800269358,19.309828800269358,20.851598668391134,20.851598668391134,24.94231623501193,24.94231623501193,8.211328792213124,10.076608437443895,8.685169104321005,7.630313284217905,10.46073805168811,6.7150903232958115,9.356910301242351,8.134382582703509,6.417692884812794,9.880315270511673,42.948662254065624,42.948662254065624,0.0,47.72073583785069,0.0,42.948662254065624,47.72073583785069,0,0
+2017/07/03 05:00:00,75.33533738516621,0,212.9421150752648,0,0,0,0.22792432795119927,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,1.7962930548391023,0.0,0.5250769724200278,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66.52599770148349,0.0,252.87690435829674,599.7013263224021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9881001379200242,0.9881001379200242,1.0076920007302594,1.0076920007302594,1.0062929580775892,1.0062929580775892,1.0293107756175548,1.0293107756175548,1.00893898725067,1.00893898725067,0.4529815628890875,0.6261929858063556,0.4996090556413323,0.4133731276019314,0.6911991316306323,0.34512875032897156,0.5592274876884382,0.44691845334155844,0.3164454693468023,0.6483309179909603,25.621290237071932,25.621290237071932,26.44464810974705,26.44464810974705,26.38537028124705,26.38537028124705,27.369957004295756,27.369957004295756,26.49754542936141,26.49754542936141,9.28218567171568,13.228432276428379,10.21679181432971,8.56176893852556,15.045098071015275,7.478018381106111,11.548665953686552,9.167538103283704,7.081696058941731,13.826538306461273,75.33533738516621,75.33533738516621,0.0,83.70593042796246,0.0,75.33533738516621,83.70593042796246,0,0
+2017/07/03 06:00:00,86.15282398109342,0,635.9529443576532,0,0,0,0.7322189983606547,0.0,8.583882674576978,0.0,73.80580873715317,0,2.505897333757513,2.5221408730739625e-09,0.5250162347229421,0,0,0.0,405.26565302611635,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3089.749044477181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03385860581218703,0.001071262686502457,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.061094226209301,1.061094226209301,1.033291932031688,1.033291932031688,1.0550023622137268,1.0550023622137268,1.1465424746950452,1.1465424746950452,1.010947523887566,1.010947523887566,0.5395826206723098,0.7435531444772259,0.611992354550394,0.7516533466335646,0.8944515865949725,0.43687008991597537,0.6757644346312003,0.5530785667974774,0.6973239359467409,0.8315214838179525,28.761542849891114,28.761542849891114,27.542246974869812,27.542246974869812,28.49198827884686,28.49198827884686,32.67765138570637,32.67765138570637,26.582870794482645,26.582870794482645,11.092796709608336,16.640945365832593,12.855964323163107,16.898380619421403,21.892518901219702,8.981013646321372,14.597191200888034,11.404178467503726,15.22569061774712,19.586267867549736,86.15282398109342,86.15282398109342,0.0,95.72535997899269,0.0,86.15282398109342,95.72535997899269,0,0
+2017/07/03 07:00:00,145.99142676149768,0,782.9685216438701,0,0,0,2.4084233312647,0.0,7.777944015249205,0.0,69.33401494192633,0,39.380909295966944,3.013290689177404e-09,27.090135174077222,0,0,0.0,516.7908777997891,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5150.149455978185,0.0,0.21169196820554959,0.4049225881684061,0.060143321272064836,0.0,2316.4918268361903,0.19916152304048795,0.33496914716685167,0.0,0.0,1655.6024617960543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04168582404232341,0.001318910415282796,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.44058568363321166,0.44058568363321166,0.45527409061112617,0.45527409061112617,0.5737395566446533,0.5737395566446533,1.1978634345461048,1.1978634345461048,0.7442846723345902,0.7442846723345902,0.18643612321456432,0.2875167559763977,0.26157210347492094,0.46283261833623646,0.48452747677406083,0.16438424655724138,0.27169562480665577,0.2527001164341991,0.4686264862115857,0.45522161597024635,9.049479349951412,9.049479349951412,9.325947231817793,9.325947231817793,11.896172452103428,11.896172452103428,35.143101890562505,35.143101890562505,16.664078776251543,16.664078776251543,5.720618206104334,6.717281741219594,6.420511693021453,9.471832901889755,9.904234373745297,5.560041298435976,6.532935121286187,6.325533638642355,9.585325120002253,9.32494302557447,145.99142676149768,145.99142676149768,0.0,162.2126964016641,0.0,145.99142676149768,162.2126964016641,0,0
+2017/07/03 08:00:00,171.07556857514194,0,812.9490628287018,0,0,0,11.447794973418844,0.0,11.435487997441953,0.0,83.2008179303116,0,39.380909295966944,2.9623772180087594e-09,25.61055837504023,0,0,0.0,493.53589021580467,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7957.913228656502,0.0,0.0,0.0,21.36711759922042,2649.0312700080913,14347.334653964941,0.0,0.0,0.0,2615.6151752159844,12790.229717807595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043282010261790585,0.0013694126346331607,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6268856814375028,0.6268856814375028,0.5808727524150172,0.5808727524150172,0.7052876823933159,0.7052876823933159,1.2456934424842105,1.2456934424842105,0.8835065324255367,0.8835065324255367,0.3220008047820496,0.40436839532369545,0.392252149962612,0.5911065109926797,0.4825987173230855,0.26457448936190736,0.3452139192128704,0.3533345932773041,0.6048919094361047,0.4715048498469149,13.246824805518088,13.246824805518088,12.070333202927216,12.070333202927216,15.46292753007178,15.46292753007178,37.50965620054563,37.50965620054563,21.47967697041078,21.47967697041078,7.155730181947675,8.407375386202915,8.205108668934955,12.324051864381076,9.864970099218624,6.45340352388564,7.4792471896816295,7.597828211577934,12.673008874287632,9.6422452700849,171.07556857514194,171.07556857514194,0.0,190.08396508349105,0.0,171.07556857514194,190.08396508349105,0,0
+2017/07/03 09:00:00,198.90958469741963,0,860.7323338609654,0,0,0,21.066905716380884,0.0,11.323895916778682,0.0,106.27511244621549,0,39.380909295966944,2.85786203760181e-09,20.862761319219793,0,0,0.0,488.083632479252,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127.6083328426786,0.0,4.9999219939429596,8902.904047983828,10129.526493888736,1298.590949217706,660.2502377014304,1192.5386500041093,4019.662421287954,20777.703044806163,1169.531026288449,478.07578292550795,1111.8344699749596,4311.473849533995,19776.381682855514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0458260270049357,0.0014499035510603198,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9003346940201997,0.9003346940201997,0.7462554752570703,0.7462554752570703,0.8726872365418613,0.8726872365418613,1.2584231549809168,1.2584231549809168,0.9944115927838474,0.9944115927838474,0.46026498091132606,0.4868026432448635,0.45502270211787466,0.6693607331843153,0.5064073893260226,0.44635049695754675,0.4612595697093533,0.44379182613657997,0.7076877582479199,0.5060067992800142,22.116445667215814,22.116445667215814,16.726516475801063,16.726516475801063,21.07640268681881,21.07640268681881,38.14982416358121,38.14982416358121,25.884938406098186,25.884938406098186,9.42199955453684,9.950756935145108,9.32113749086922,14.414384250514914,10.360896457715,9.156879586281079,9.441269093913547,9.109034442479512,15.534961537048943,10.352349740203792,198.90958469741963,198.90958469741963,0.0,221.0106496637996,0.0,198.90958469741963,221.0106496637996,0,0
+2017/07/03 10:00:00,246.11032874667544,0,923.7220563220765,0,0,0,37.41936826469382,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.804241800192711e-09,18.616465396260637,0,0,0.0,462.3474736590028,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4438.751143384972,1122.0328276978198,2816.28958004633,9144.093273590533,29725.22316754388,4357.375138169376,2218.3469250941243,2994.7889138181217,5608.841298528781,27349.571807309876,4474.2613296917425,2103.4918474337774,3006.3455196091836,6115.515659006683,27549.024431940416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049179646485672614,0.0015560097337652225,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0542464988038274,1.0542464988038274,0.8997136201269883,0.8997136201269883,0.9713952983742121,0.9713952983742121,1.2488913364026266,1.2488913364026266,1.0490809439202584,1.0490809439202584,0.5176680565632652,0.5045082634478885,0.4680869724724974,0.6725528055885278,0.49822511022320104,0.5294819563406952,0.49810339231440687,0.47103667069379107,0.7106264020979254,0.5063935672378902,28.458635448887406,28.458635448887406,22.092739478112676,22.092739478112676,24.930864438671435,24.930864438671435,37.670084292862484,37.670084292862484,28.231253923237077,28.231253923237077,10.603985631730211,10.320439509552997,9.574695875681002,14.505286700984627,10.18770093113308,10.864914976209079,10.185146348971742,9.63296262696268,15.623498012603761,10.360601443461462,246.11032874667544,246.11032874667544,0.0,273.45592082963935,0.0,246.11032874667544,273.45592082963935,0,0
+2017/07/03 11:00:00,283.17695188604216,0,980.451904835851,0,0,0,58.36091718848396,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.8578620376018097e-09,20.874736623398352,0,0,0.0,465.841793403961,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8411.102304818492,2796.1842872842153,5427.714440162559,8703.761043319126,42839.245712783166,8488.436962184915,4363.700684978149,6177.416177448492,6873.694780520832,44069.26687004509,8973.409764989818,4393.310555777891,6384.10986260267,7375.117641252378,45057.44595617186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05219998564072297,0.0016515711592809536,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.117306872475148,1.117306872475148,0.9718674016328102,0.9718674016328102,1.0087835229752773,1.0087835229752773,1.208520102032009,1.208520102032009,1.0763910783338364,1.0763910783338364,0.5517125454714003,0.5083098581256638,0.47324022442318536,0.6472256118732138,0.49915521159461146,0.5830688282853141,0.514918660083477,0.4877670164079706,0.6847985941756147,0.5139954806959454,31.310140172412105,31.310140172412105,24.950228809224456,24.950228809224456,26.49094742189061,26.49094742189061,35.664868526145,35.664868526145,29.444221919545924,29.444221919545924,11.372302201412026,10.401580955335646,9.676735166531515,13.796171868460576,10.207242778171377,12.124396039636935,10.544127079257919,9.970543842021584,14.858107561973313,10.524101392508811,283.17695188604216,283.17695188604216,0.0,314.64105765115795,0.0,283.17695188604216,314.64105765115795,0,0
+2017/07/03 12:00:00,282.57428618062426,0,941.3731326506405,0,0,0,78.34469969356134,0.0,16.798297433460366,0.0,129.49988082968767,0,39.380909295966944,2.804241800192711e-09,18.550498925143696,0,0,0.0,462.2533737312947,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10996.856956683141,4218.560075108089,7299.480079299362,7776.815836449308,52286.93273995735,12691.210283820568,6694.903562413878,9577.883504572386,8340.30770049705,63413.353334379164,13480.37554818189,6858.516340973162,9987.197465499372,8845.95222643467,65128.16208042676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05011940286367528,0.001585742970500995,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.148620626871717,1.148620626871717,1.0093344799033737,1.0093344799033737,1.0334909447212677,1.0334909447212677,1.1506879647361605,1.1506879647361605,1.0898290286946792,1.0898290286946792,0.5995807491983808,0.5399996477008396,0.5062259934524558,0.63398710996273,0.5269888297697377,0.6376560538125341,0.5547372477372183,0.5279282172485097,0.6667615704920595,0.5474612699230738,32.775907256164075,32.775907256164075,26.5143345005374,26.5143345005374,27.550874833984324,27.550874833984324,32.87378758151007,32.87378758151007,30.05071581105237,30.05071581105237,12.537587998994738,11.102300279845153,10.357025458935851,13.436583402719123,10.809347244982362,13.535479061865828,11.442992730538762,10.830253065569877,14.340692284884184,11.273615785019317,282.57428618062426,282.57428618062426,0.0,313.9714290895825,0.0,282.57428618062426,313.9714290895825,0,0
+2017/07/03 13:00:00,281.4241690861196,0,902.1702205555583,0,0,0,76.17423032097122,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,2.7497007790087414e-09,16.365736223129524,0,0,0.0,458.54081414875674,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10334.094725561934,4586.189858128943,7146.049975142242,7204.230726679642,49579.04535299584,12322.595932974204,6829.419163039689,9325.76451157368,7730.580823722803,60440.81895537551,13124.562528290917,7061.962203884975,9790.872003282127,8172.353119439406,62321.4376684652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04803221078587476,0.0015197056680522794,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1261945502213262,1.1261945502213262,1.0284058876031297,1.0284058876031297,1.0245151553835479,1.0245151553835479,1.1329914872360034,1.1329914872360034,1.0759731938147148,1.0759731938147148,0.6003917298610794,0.5594813923869424,0.510796548377057,0.6178429642514015,0.5282442233258944,0.6374796372088196,0.579392533952236,0.5338529938240091,0.6473058244023784,0.5481640126698565,31.722916790767314,31.722916790767314,27.33087826631592,27.33087826631592,27.163197085372005,27.163197085372005,32.040342161546235,32.040342161546235,29.425462562686732,29.425462562686732,12.558186714344615,11.554667457698656,10.454995054131615,13.008359796662845,10.837294285258338,13.530710424115767,12.034011354786188,10.962987875069402,13.798373791145252,11.289874765063388,281.4241690861196,281.4241690861196,0.0,312.6935212067996,0.0,281.4241690861196,312.6935212067996,0,0
+2017/07/03 14:00:00,260.67752090728425,0,842.0918687956453,0,0,0,71.56758618126182,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.6942297098215567e-09,14.041718579513992,0,0,0.0,433.95281490138785,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9977.803201100603,6100.6797610173035,7575.899736160514,6877.956923053342,50057.06912185216,10663.963993862311,7118.988177338492,8162.538728051678,6949.577137080897,51157.15254599012,11388.894393702114,7483.863414399815,8634.11230354154,7344.706020990538,53046.94889242724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04483359483774132,0.0014185036890725755,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0870087099452976,1.0870087099452976,1.099148821479875,1.099148821479875,1.0151912111762715,1.0151912111762715,1.1220345683167268,1.1220345683167268,1.0547797365426532,1.0547797365426532,0.5780621466030742,0.6035315859144165,0.5045417203626834,0.6002266727426133,0.5102885193514304,0.6108170395440692,0.6348985043653749,0.5272371139975847,0.6269482135658188,0.5288318652692421,29.922906670711697,29.922906670711697,30.475009084120245,30.475009084120245,26.76364634996436,26.76364634996436,31.52938717578168,31.52938717578168,28.482162681821507,28.482162681821507,12.00144720975814,12.638207507443227,10.321150890781666,12.553991989315065,10.44406085811248,12.825529147747389,13.461095350793329,10.814869030591368,13.248486189874995,10.850399567139476,260.67752090728425,260.67752090728425,0.0,289.6416898969825,0.0,260.67752090728425,289.6416898969825,0,0
+2017/07/03 15:00:00,252.09447960919326,0,859.3652867027891,0,0,0,69.67497022076653,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,2.6942297098215567e-09,14.114549631865875,0,0,0.0,451.2262328085316,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9709.082226041828,8149.493581846056,8307.226146137085,6769.815444043094,54060.60244201322,8956.337727905537,7737.095530504336,7195.695978926659,6465.608050790047,45111.87547547019,9504.781560421827,8212.647965228383,7613.497984417511,6795.514768432883,46967.61871502713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04575324440165346,0.0014476007602261293,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0642848153820743,1.0642848153820743,1.1921831605129223,1.1921831605129223,1.0300967214014152,1.0300967214014152,1.1142688013958506,1.1142688013958506,1.0687702663285763,1.0687702663285763,0.5421936316295372,0.64323157282903,0.49382443034831114,0.5832626541255134,0.4938810695344874,0.5686877712969627,0.6814012321041311,0.513905490594942,0.6059186780868632,0.5109085278356256,28.903250181357393,28.903250181357393,34.86632708154265,34.86632708154265,27.403923600288152,27.403923600288152,31.169641282140674,31.169641282140674,29.103079750168078,29.103079750168078,11.152422769310448,13.686883864086099,10.0957473965139,12.129177680446645,10.096925575549449,11.774165736547005,14.759573858207574,10.522151291450669,12.699330043548727,10.45740666440237,252.09447960919326,252.09447960919326,0.0,280.10497734354806,0.0,252.09447960919326,280.10497734354806,0,0
+2017/07/03 16:00:00,276.9851745103096,0,891.9629180268228,0,0,0,71.61531921756243,0.0,16.840460162178484,0.0,131.64086955684016,0,39.380909295966944,2.6942297098215567e-09,14.075641072613035,0,0,0.0,430.58833536374914,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9966.256985337724,9968.24745967211,9124.967561929425,6924.001449623495,59154.174891206414,8707.16615815788,8622.63163547846,7475.80391017418,6301.890201734142,45877.93394349326,9107.698497491312,9180.993191464313,7833.240326853401,6564.4585464499405,47582.80564959801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047488766438627844,0.0015025114677173453,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0737915963964217,1.0737915963964217,1.2724147940831607,1.2724147940831607,1.0615659563267992,1.0615659563267992,1.118947197703883,1.118947197703883,1.1054572209238984,1.1054572209238984,0.5263837013470792,0.6873791805819913,0.49393842774495833,0.5711469088790005,0.4916563400730988,0.5455210807507018,0.730530769262604,0.5118038325598493,0.5909661853771337,0.5067153792191401,29.327627493064142,29.327627493064142,38.858160810541975,38.858160810541975,28.78247148417441,28.78247148417441,31.386126395577577,31.386126395577577,30.763887440756918,30.763887440756918,10.795900503067656,14.933285851363365,10.098118852557775,11.833418586266049,10.050752058896038,11.228837795160274,16.232976880684916,10.476707612677771,12.320542133492424,10.367472238525991,276.9851745103096,276.9851745103096,0.0,307.76130501145514,0.0,276.9851745103096,307.76130501145514,0,0
+2017/07/03 17:00:00,285.64244312386865,0,923.6340068092005,0,0,0,73.63217084572148,0.0,16.7356839618177,0.0,133.89528835348938,0,39.380909295966944,2.8042418001927116e-09,18.566415461614636,0,0,0.0,462.25942414612683,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8712.86136240537,9693.53730286686,8923.490300769417,6859.156437374881,54013.636189556964,9439.37407399958,9431.250196212415,9030.055381390908,6464.034694606231,51997.34468311029,9777.48701196974,10019.838509923715,9438.759940693542,6693.963734775853,53419.62785941749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049174958664388244,0.001555861414367466,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0576922243720255,1.0576922243720255,1.2794106692034268,1.2794106692034268,1.08492727872552,1.08492727872552,1.115723882020396,1.115723882020396,1.0983101765229117,1.0983101765229117,0.523811054809075,0.7128967377570439,0.5214266093901209,0.5660512662330095,0.501149274152296,0.5401229805786084,0.7558578360505747,0.5424927315387799,0.582822211313456,0.5148610158084923,28.61084616328283,28.61084616328283,39.21412535683966,39.21412535683966,29.828758413103415,29.828758413103415,31.23689470363594,31.23689470363594,30.436707177285356,30.436707177285356,10.738909897134107,15.692154401814648,10.686344228888771,11.710930605911841,10.249264902212161,11.105112339111855,17.033112823282565,11.159271987801745,12.118314409938634,10.542875575557403,285.64244312386865,285.64244312386865,0.0,317.38049235985403,0.0,285.64244312386865,317.38049235985403,0,0
+2017/07/03 18:00:00,274.91661900266865,0,940.6056871697663,0,0,0,78.76221354505572,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.9623772180087636e-09,25.60879969407004,0,0,0.0,514.7214570192367,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7794.866650505453,9259.183134725408,9515.379986903188,6656.051226641833,50682.1164135732,10489.83048995092,10430.714675382173,11183.21727618861,6955.907387570012,61188.20461258349,10797.522033508909,11048.532097866188,11742.236343418788,7160.675349960074,62430.298608251265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050078543497821544,0.00158445020864671,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0346163665509822,1.0346163665509822,1.2706546809690276,1.2706546809690276,1.115967817127774,1.115967817127774,1.1046633570375664,1.1046633570375664,1.0817844550211473,1.0817844550211473,0.5270439065893464,0.7370864766090914,0.5636027481889891,0.5660208646025161,0.5203595349124078,0.5414799646832715,0.7803283341723067,0.5926926206934253,0.5783375178286335,0.5338533226052263,27.599692986633045,27.599692986633045,38.768788743671216,38.768788743671216,31.248176222810343,31.248176222810343,30.727460111372892,30.727460111372892,29.68688578405572,29.68688578405572,10.810571910766342,16.43744572974184,11.652474262698448,11.710203197851428,10.662900015760655,11.136095859475162,17.832254009720515,12.363782004250297,12.00818122102973,10.96299528304921,274.91661900266865,274.91661900266865,0.0,305.46291000296515,0.0,274.91661900266865,305.46291000296515,0,0
+2017/07/03 19:00:00,270.66677306446377,0,891.4337483710632,0,0,0,81.39214282190154,0.0,17.67411468432456,0.0,101.68988858149199,0,39.380909295966944,3.013290689463302e-09,27.0977424753112,0,0,0.0,501.0398707330778,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7955.343816993985,8646.878511952056,10299.71716571269,6394.281209402369,52381.94794790035,10726.695237484273,10280.77078881269,12000.768055274813,7078.182615134129,63655.563034723964,10900.014940661978,10711.198323521747,12527.561968322736,7189.521288216655,64646.04458684239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04746059305419572,0.001501620081472382,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0247970451845652,1.0247970451845652,1.2177097174408738,1.2177097174408738,1.1222598812435416,1.1222598812435416,1.0891404346907834,1.0891404346907834,1.0777811965663533,1.0777811965663533,0.5248108552147294,0.7131652378894245,0.578275108151894,0.5605350298307806,0.5311872017567181,0.5325998004954808,0.7408021012984931,0.6030708481252659,0.565627812223236,0.5397964584724001,27.175327017100216,27.175327017100216,36.11739389925991,36.11739389925991,31.539854526157,31.539854526157,30.019485260726455,30.019485260726455,29.50667011179229,29.50667011179229,10.761023960968956,15.700288707161988,12.006654747572071,11.579601985454133,10.903077112860629,10.934785392557401,16.554153447400438,12.626438588991249,11.700802395090776,11.09766888790567,270.66677306446377,270.66677306446377,0.0,300.7408589605153,0.0,270.66677306446377,300.7408589605153,0,0
+2017/07/03 20:00:00,242.806300455004,0,840.5544396891397,0,0,0,52.728425038596114,0.0,21.36576828601745,0.0,106.16168237671882,0,39.380909295966944,2.910570755464379e-09,23.169515454794038,0,0,0.0,485.65091456369845,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3399.271379827663,3085.470360509686,4649.1123275975615,5309.995005157819,32760.365165745447,6451.482045515494,6212.389252330016,7717.893229419698,3984.0978272914617,46358.1523885704,6549.144493613222,6703.455811478842,8091.712969655632,3945.4714936281393,46714.251686957294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04475174097332697,0.0014159138898593559,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0117415789308124,1.0117415789308124,1.0749454732167119,1.0749454732167119,1.0250417748402965,1.0250417748402965,1.063016576300725,1.063016576300725,1.0725580804938581,1.0725580804938581,0.5178493945797885,0.6265747526669907,0.5416495666775542,0.5465791819155669,0.5357401943209514,0.5196023264744296,0.6517801226630823,0.5494008914934968,0.5449816403839668,0.5399429184349503,26.616645141100705,26.616645141100705,29.37935297395468,29.37935297395468,27.185860308923196,27.185860308923196,28.846878977170732,28.846878977170732,29.27238378546342,29.27238378546342,10.607945133202932,13.238566416084979,11.139973928643315,11.253237685172792,11.005586711196543,10.64629361897778,13.921639961880771,11.318543755564207,11.216416934784888,11.101007041824005,242.806300455004,242.806300455004,0.0,269.78477828333774,0.0,242.806300455004,269.78477828333774,0,0
+2017/07/03 21:00:00,226.25717178524573,0,834.1279608786499,0,0,0,32.18270655662391,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9623772180087636e-09,25.610502977494125,0,0,0.0,514.7147882657526,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1030.722751797011,1000.1429110262643,2436.9756596851744,4440.780941262285,22002.46078427102,2971.0896533420773,3626.855857601216,4158.425022595946,1678.636529648931,28343.831782905672,2904.991246353148,3734.939203392456,4337.414642005507,1496.3004776023647,28230.89969075451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044409590481320795,0.001405088486790847,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0015284134011215,1.0015284134011215,1.050290592207048,1.050290592207048,1.0110679118944792,1.0110679118944792,1.0400804605835874,1.0400804605835874,1.0622151637557287,1.0622151637557287,0.5096160373021679,0.6066925542711312,0.5166048035230444,0.5341854535972076,0.5280467773056582,0.5049770767411473,0.6066638950628502,0.5167114142784148,0.5261409124752444,0.5278170672528156,26.184049568248852,26.184049568248852,28.28441483684395,28.28441483684395,26.587989856693667,26.587989856693667,27.837372651945188,27.837372651945188,28.811287004347378,28.811287004347378,10.429604341275905,12.719198564866218,10.580798211488727,10.970481129968562,10.832894303600952,10.330412113592715,12.718462303991117,10.583120972391086,10.790509874131473,10.827777458919428,226.25717178524573,226.25717178524573,0.0,251.3968575391619,0.0,226.25717178524573,251.3968575391619,0,0
+2017/07/03 22:00:00,148.1823449460484,0,625.5344920784906,0,0,0,11.555310554372843,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8578620376018097e-09,20.874076783495767,0,0,0.0,465.82790577204213,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2780.830106698836,1731.0746195037777,270.7404903658355,1690.2135883695446,1522.304970149545,0.0,14165.002987059699,30.41160967833698,1578.0287346853652,1515.707535627302,0.0,13620.028942863624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033303919695827355,0.0010537128044289547,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8719499282452199,0.8719499282452199,0.9250947093538276,0.9250947093538276,0.9285429030919987,0.9285429030919987,0.9852640929827579,0.9852640929827579,0.9973023115028816,0.9973023115028816,0.5050548212808919,0.5882332709487619,0.5079704521522271,0.5223046289089803,0.5213678641949757,0.4941544691675737,0.5794807264001114,0.5010182900465029,0.4927586202617065,0.5164727753499101,21.049095732357628,21.049095732357628,23.074236074908995,23.074236074908995,23.209578616289562,23.209578616289562,25.50331666766293,25.50331666766293,26.006199623712703,26.006199623712703,10.332066815107737,12.252358684693533,10.394311253978174,10.70567175573504,10.685052282915606,10.102614641773826,12.036172772366527,10.24649931983744,10.073602800132974,10.577922355138995,148.1823449460484,148.1823449460484,0.0,164.6470499400538,0.0,148.1823449460484,164.6470499400538,0,0
+2017/07/03 23:00:00,87.837886079334,0,478.97883007551087,0,0,0,0.5003568772267386,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6378193284028172e-09,11.826548140631173,0,0,0.0,425.74330130669466,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1275.0588383280456,0.0,0.0,0.0,0.0,0.0,559.2296665016609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025501187696032827,0.0008068398029083213,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6757683526226133,0.6757683526226133,0.7270446757407487,0.7270446757407487,0.7403104535928007,0.7403104535928007,0.9302451827223711,0.9302451827223711,0.8151532208753351,0.8151532208753351,0.4096167888607288,0.5565596582017956,0.4544713944310961,0.4171145851866819,0.5111065473183574,0.3806033128429771,0.5288011050738984,0.43625947185504016,0.37271823787744446,0.4996921380676734,14.597303591394976,14.597303591394976,16.124999815677043,16.124999815677043,16.53867678542784,16.53867678542784,23.276568845111285,23.276568845111285,19.013421178861464,19.013421178861464,8.496941252413137,11.485775900066528,9.310599008215775,8.626940799338044,10.461672575854038,8.016561499827645,10.849713198588105,8.969818786470057,7.892222187399469,10.218540861154509,87.837886079334,87.837886079334,0.0,97.59765119926,0.0,87.837886079334,97.59765119926,0,0
+2017/07/04 00:00:00,42.27516890044197,0,473.87713557922615,0,0,0,1.0694706935337093,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.8585679676444855,2.5804603705241812e-09,9.549809240260132,0,0,0.0,420.64160681040994,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.146315004604432,204.6615913152214,128.61858289419777,806.5156382563057,2552.7355697158428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025229569702191507,0.0007982459989165419,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8265907802940389,0.8265907802940389,0.8623730621844543,0.8623730621844543,0.8465841892353181,0.8465841892353181,0.9090721343119438,0.9090721343119438,0.8806260271877535,0.8806260271877535,0.5750464070139413,0.7895299328832812,0.6044928473829231,0.6110318690083482,0.7019359400340802,0.523870930817546,0.7446457959486713,0.5698210580879793,0.5448854155737266,0.6746520920037,19.41252209021951,19.41252209021951,20.6964443625979,20.6964443625979,20.123339181346978,20.123339181346978,22.451609444526383,22.451609444526383,21.371840589753077,21.371840589753077,11.927914716824631,18.13935232229049,12.662791283661775,12.831087751033849,15.362746822565512,10.74023304532328,16.67550719901884,11.801439659049137,11.214202640041577,14.565309690268293,42.27516890044197,42.27516890044197,0.0,46.97240988937997,0.0,42.27516890044197,46.97240988937997,0,0
+2017/07/04 01:00:00,23.722067982926852,0,45.14309609669291,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249725592490608,0,0,0.0,9.652743584148768,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002403451873980163,7.60435419485763e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8244793542422304,0.8244793542422304,0.9128323959420822,0.9128323959420822,0.85087313473905,0.85087313473905,0.9250834965831645,0.9250834965831645,0.9810508466370899,0.9810508466370899,0.5428826322698618,0.7964710351583696,0.5560791233943851,0.5965258391691708,0.7547918781685735,0.5082214602568607,0.772954936550779,0.5447575272174587,0.5464850900952023,0.7127477103932405,19.338432491446028,19.338432491446028,22.59680207477578,22.59680207477578,20.277995225585073,20.277995225585073,23.073796746954713,23.073796746954713,25.3286247862915,25.3286247862915,11.168206313933865,18.373385935100416,11.474480817095383,12.460250295560073,16.99888277869951,10.399687090858706,17.588770123418584,11.211260334881146,11.251065955397735,15.687640906615428,23.722067982926852,23.722067982926852,0.0,26.35785331436317,0.0,23.722067982926852,26.35785331436317,0,0
+2017/07/04 02:00:00,28.344564240965564,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5252011544926657,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.831851823532739,0.831851823532739,0.9336694133933469,0.9336694133933469,0.8556762929185835,0.8556762929185835,0.9338428525548588,0.9338428525548588,1.0642796067735032,1.0642796067735032,0.5362806960948208,0.7846240824954274,0.5512129556951937,0.5889326359027565,0.7787301850729746,0.4903188570225203,0.7573689817140108,0.5235597149746251,0.5313428582916814,0.7202980144795916,19.59794463624621,19.59794463624621,23.411673782652727,23.411673782652727,20.452101125727125,20.452101125727125,23.41852936127394,23.41852936127394,28.90301854995694,28.90301854995694,11.017815606213645,17.975174498127885,11.360664418287456,12.26977627247696,17.779283553785262,10.023095914941365,17.08172204334622,10.733357448101586,10.906566863021837,15.917515895787673,28.344564240965564,28.344564240965564,0.0,31.493960267739514,0.0,28.344564240965564,31.493960267739514,0,0
+2017/07/04 03:00:00,23.774911193957625,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5778157702798336,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8220975086333574,0.8220975086333574,0.9217773986322034,0.9217773986322034,0.8407362837226391,0.8407362837226391,0.9095887982742257,0.9095887982742257,1.0649445944679226,1.0649445944679226,0.5364152267015769,0.782102110365509,0.5522441237870073,0.5881889322075063,0.7977011661684339,0.4797220905002735,0.7462125931278911,0.5108228275431951,0.5214134092091885,0.7290273232511192,19.255078602813043,19.255078602813043,22.944480212102107,22.944480212102107,19.913702888184616,19.913702888184616,22.471525215395687,22.471525215395687,28.932598938254756,28.932598938254756,11.020861338566377,17.891172826473337,11.384697028367498,12.251255149961892,18.41507534599144,9.806708052604108,16.725156139898928,10.455560958402117,10.686053912637561,16.186345577845003,23.774911193957625,23.774911193957625,0.0,26.41656799328625,0.0,23.774911193957625,26.41656799328625,0,0
+2017/07/04 04:00:00,46.11297192687853,0,88.72588128136032,0,0,0,0.023685642229214043,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,6.056069672450018,0.0,0.525083062565184,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,92.9863321313164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.871217484924325,0.871217484924325,0.9331844229870951,0.9331844229870951,0.8878625876095201,0.8878625876095201,0.9392022814431993,0.9392022814431993,0.9807262559143503,0.9807262559143503,0.45252506897063777,0.5591064761346004,0.4586849421905847,0.4742300237880314,0.5546520763350924,0.4204484003591209,0.5322888162081653,0.4326256997568126,0.4365035880550325,0.5312917087654698,21.021991132980446,21.021991132980446,23.39250979236249,23.39250979236249,21.643398625698467,21.643398625698467,23.630963054099325,23.630963054099325,25.315194775421958,25.315194775421958,9.273498759423845,11.545806606981657,9.391474868759616,9.696465188664476,11.440996756601393,8.685517543139525,10.927797381647338,8.903529681604084,8.97429240663844,10.90541999769323,46.11297192687853,46.11297192687853,0.0,51.23663547430947,0.0,46.11297192687853,51.23663547430947,0,0
+2017/07/04 05:00:00,76.64298650594465,0,212.9421150752648,0,0,0,0.2668415841784032,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,3.0651548529265877,0.0,0.5249470388837758,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1073.7472808804644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9749913594962052,0.9749913594962052,0.9847696253917898,0.9847696253917898,0.9787172610960894,0.9787172610960894,1.0008328572433955,1.0008328572433955,1.0088313648895186,1.0088313648895186,0.561051153663699,0.7365481643112759,0.5715122532212588,0.5972502152637275,0.7622092461267929,0.5127177739664602,0.6832039946054546,0.5317503123271293,0.5382698152524019,0.7221614345302725,25.07858272352972,25.07858272352972,25.482779440629415,25.482779440629415,25.232162554315707,25.232162554315707,26.15473142899259,26.15473142899259,26.49297776773848,26.49297776773848,11.591833719933973,16.42058650042837,11.842243929936288,12.478551871841347,17.23807672111633,10.496446086946833,14.811797224459255,10.91570676887848,11.062928564254989,15.974626916328248,76.64298650594465,76.64298650594465,0.0,85.15887389549405,0.0,76.64298650594465,85.15887389549405,0,0
+2017/07/04 06:00:00,87.79846468089897,0,635.5940911946814,0,0,0,0.8063725043600174,0.0,8.583882674576978,0.0,73.80580873715317,0,4.077326344748159,2.522164782345846e-09,0.5250744175384789,0,0,0.0,404.9067998631446,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3372.4866435148238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03383950020398548,0.0010706581983766675,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0158485585650803,1.0158485585650803,1.0118545936994463,1.0118545936994463,1.01982871461416,1.01982871461416,1.1200694123016355,1.1200694123016355,1.0255964687392845,1.0255964687392845,0.6730333404967833,0.8697834968399945,0.699671915829508,0.949580206821273,0.9756530938897955,0.6194151743341453,0.8256058255074032,0.6589873866383084,0.9189507904445818,0.9217458169923552,26.79170882967412,26.79170882967412,26.6214540368465,26.6214540368465,26.961968367482314,26.961968367482314,31.438163132945903,31.438163132945903,27.209742841203976,27.209742841203976,14.519009364550783,20.968989382016858,15.29535143937423,24.04555537640141,25.10581988992881,13.049565629267718,19.377936901537808,14.122023507475106,22.83426654589823,22.943247024446947,87.79846468089897,87.79846468089897,0.0,97.55384964544331,0.0,87.79846468089897,97.55384964544331,0,0
+2017/07/04 07:00:00,149.6875578885953,0,782.8205442950604,0,0,0,6.116803944147239,0.0,7.777944015249205,0.0,69.33401494192633,0,39.380909295966944,3.0133167569028333e-09,27.077885688292273,0,0,0.0,516.6429004509794,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5726.7442727425705,0.0,0.4159720855247893,0.7220852522435309,0.0,11.882922208930932,8768.671201408755,0.445626136105284,0.6717803853340607,0.0,0.0,6966.758113388643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04167794561866498,0.0013186611474499575,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7151483114613038,0.7151483114613038,0.7163329826415368,0.7163329826415368,0.7904066203883924,0.7904066203883924,1.1932294376486334,1.1932294376486334,0.9413982446202943,0.9413982446202943,0.4503452947177858,0.5582268924083578,0.4946900792538858,0.76303498035539,0.6821150890749992,0.4295060890871712,0.5490140988638295,0.48216091790255017,0.7811616618169726,0.6703950934771508,15.760462822403525,15.760462822403525,15.796491171321321,15.796491171321321,18.168798915937728,18.168798915937728,34.917236839330386,34.917236839330386,23.71833485934394,23.71833485934394,9.23214207142857,11.525042261731201,10.113769300541264,17.264850323545076,14.780236430150367,8.847072485978288,11.309571358283833,9.856080052298267,17.859917655269115,14.443792001747937,149.6875578885953,149.6875578885953,0.0,166.3195087651059,0.0,149.6875578885953,166.3195087651059,0,0
+2017/07/04 08:00:00,197.5512456105145,0,812.7768711056957,0,0,0,37.99262743963489,0.0,11.36563784648343,0.0,83.2008179303116,0,39.380909295966944,2.962403112938095e-09,25.611253095155284,0,0,0.0,493.3636984927986,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.928495040827176,0.0,322.98501915329985,8378.019980515228,17176.90452903403,3949.296783884975,3303.286352373574,4053.6632441750635,6776.312300913367,38553.71562678465,3516.8313938865526,2909.5239574550205,3810.120664134697,7060.248652890702,37161.675483827996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04327284264691418,0.001369122577688826,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9268108632732696,0.9268108632732696,0.8764278542615391,0.8764278542615391,0.9490293007358591,0.9490293007358591,1.2539834319683647,1.2539834319683647,1.0160866646406461,1.0160866646406461,0.5095869754667252,0.5530547667860574,0.5150822093821066,0.7386771613667816,0.5848095442342125,0.4955388405809854,0.5388743777801281,0.5056968386884455,0.761521711344305,0.5823621113238527,23.14153611238902,23.14153611238902,21.21528500116834,21.21528500116834,24.023439991930573,24.023439991930573,37.926082856577295,37.926082856577295,26.801877680641994,26.801877680641994,10.42898003246323,11.403622399042987,10.547678648896749,16.487336572300023,12.167397542181888,10.131471048033944,11.076673925933363,10.345741391881532,17.215806322519484,12.10697529612672,197.5512456105145,197.5512456105145,0.0,219.50138401168277,0.0,197.5512456105145,219.50138401168277,0,0
+2017/07/04 09:00:00,217.43076397061878,0,856.4224876167408,0,0,0,39.58981405827352,0.0,11.323895916778682,0.0,106.27511244621549,0,39.380909295966944,2.8578875347254594e-09,20.861032250526314,0,0,0.0,483.7737862350274,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2045.686898449458,46.190701513048964,1343.181533678484,9495.22417617787,22024.378776111742,4506.756675728878,2835.519195442265,3868.626157575093,7068.813173897952,35867.15057868339,4426.068619229947,2636.8172169055406,3853.5994309383295,7504.522554423131,35334.49931096705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045596567598561344,0.0014426436153890355,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0576305418396295,1.0576305418396295,0.9755307013356699,0.9755307013356699,1.0127915853127438,1.0127915853127438,1.2788828796446625,1.2788828796446625,1.0591736345635545,1.0591736345635545,0.5632867980380122,0.5725949384509054,0.5256714826587034,0.7538582180341333,0.5651782164749858,0.5729417851096859,0.5686820820188467,0.5290096792593098,0.7874797832690018,0.5670307260686352,28.60811766791376,28.60811766791376,25.10078090212538,25.10078090212538,26.661342460116302,26.661342460116302,39.1872294299908,39.1872294299908,28.676416525091952,28.676416525091952,11.644950155299725,11.868431534577837,10.780094384635163,16.96894102527375,11.690057436323755,11.876831693151487,11.774028957706946,10.854368027900236,18.070618273073265,11.734387214117092,217.43076397061878,217.43076397061878,0.0,241.58973774513197,0.0,217.43076397061878,241.58973774513197,0,0
+2017/07/04 10:00:00,258.13572137147224,0,927.7219099771103,0,0,0,49.312531623134205,0.0,16.932384784220176,0.0,133.89528835348938,0,39.380909295966944,2.8042670716180603e-09,18.6146073118572,0,0,0.0,466.34732731403653,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6568.941254675492,2025.2519633018505,4278.2460215307965,9534.847762714397,37569.74121244144,6590.925503081398,3518.3330359283764,4518.824565279978,7554.294523754311,36214.62237546704,6956.957036714945,3476.7077700679,4696.384072141601,8081.9574418787515,36695.099056826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04939260165698488,0.0015627474869435432,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1311656737876437,1.1311656737876437,1.0305044907342193,1.0305044907342193,1.041782494765853,1.041782494765853,1.2631355301503202,1.2631355301503202,1.0938365859609251,1.0938365859609251,0.5875115997262014,0.5673021581653099,0.5210566101481244,0.7406099408095012,0.5474620853277182,0.6067527612754992,0.5683912945294817,0.5293261130676122,0.773392478434408,0.5559914409300293,31.954926403343265,31.954926403343265,27.42155534174519,27.42155534174519,27.911631500588996,27.911631500588996,38.387849382677224,38.387849382677224,30.232798993189604,30.232798993189604,12.234407814636981,11.740894973307633,10.678209561227135,16.548103159870053,11.273634638193442,12.720745411129272,11.767039857038,10.861433597959362,17.60315397599274,11.472420900390887,258.13572137147224,258.13572137147224,0.0,286.8174681905247,0.0,258.13572137147224,286.8174681905247,0,0
+2017/07/04 11:00:00,299.0592583618197,0,980.2582449333188,0,0,0,74.2386525425097,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.8578875347254602e-09,20.879307745150097,0,0,0.0,465.64813350142896,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10465.636522607747,4423.236657328663,7428.345472318613,8901.162018650519,53972.118510633,11208.77602861567,6268.165152172545,8472.764952612735,9065.340304012923,57152.19206329338,11771.007811021474,6324.2322986891695,8744.41985441207,9527.141701232391,58186.78141765642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05218967504406698,0.0016512449391898366,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1510345858952598,1.1510345858952598,1.0467157606254525,1.0467157606254525,1.0586942638832,1.0586942638832,1.2093196797443766,1.2093196797443766,1.1157751927909088,1.1157751927909088,0.5993002146455254,0.5651518434992199,0.521671774198271,0.704492870223607,0.5455001545832037,0.6280647276763712,0.5717783885511031,0.5357565285603887,0.7317586036148727,0.5569988383684698,32.89021195380842,32.89021195380842,28.12746322363428,28.12746322363428,28.655189961741073,28.655189961741073,35.70414780537594,35.70414780537594,31.239267561317334,31.239267561317334,12.530469133183942,11.689427416696319,10.691737595933745,15.439127429290465,11.228355725498474,13.278178844827607,11.848676402746463,11.005956089213,16.27113181190434,11.496107689331893,299.0592583618197,299.0592583618197,0.0,332.2880648464663,0.0,299.0592583618197,332.2880648464663,0,0
+2017/07/04 12:00:00,290.77878117884507,0,941.1811566710923,0,0,0,82.99303460686434,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,2.8042670716180603e-09,18.612070414347766,0,0,0.0,462.0613977517464,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11139.301587292739,4780.132267453037,7809.718473635694,7900.65349418769,54536.38490076928,13375.986717016824,7366.359910558874,10365.147914346868,9091.992809002026,67739.13923923046,14032.422629011682,7494.008408552506,10736.723243065417,9441.532357827658,69187.70126452656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050109181920326235,0.0015854195869780163,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1521953448473854,1.1521953448473854,1.0338207279982101,1.0338207279982101,1.0443598896352866,1.0443598896352866,1.1562748405519734,1.1562748405519734,1.099903000301094,1.099903000301094,0.6164791067829469,0.5667264789908547,0.5265161144477074,0.6662617618280211,0.5523910592199852,0.6483653656208056,0.5789974641542142,0.5460495758560349,0.688177167696176,0.5678894445034612,32.945241203481075,32.945241203481075,27.565175236420743,27.565175236420743,28.024282844626953,28.024282844626953,33.13897801509374,33.13897801509374,30.50947379008423,30.50947379008423,12.972701536423585,11.727096493226796,10.798841539772951,14.326555148869033,11.388125287095704,13.827485548609658,12.024333139376836,11.24101886571087,14.95659128947048,11.754986478784062,290.77878117884507,290.77878117884507,0.0,323.0875346431612,0.0,290.77878117884507,323.0875346431612,0,0
+2017/07/04 13:00:00,287.75786834949434,0,901.9780407331623,0,0,0,82.54149624655344,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,2.749725806416401e-09,16.332169560922104,0,0,0.0,458.34863432636064,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11514.787427748603,5470.847925698872,8177.325756393364,7444.726841023352,55127.91425183408,13277.023238566055,7523.054333673182,10198.393004717575,8575.653201326382,64861.47558143091,14012.466069890606,7735.711739579754,10667.380649346664,8895.431404544952,66703.42527060857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04802197898978152,0.0015193819411560396,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1452870219223366,1.1452870219223366,1.0579304244049883,1.0579304244049883,1.0431541530703379,1.0431541530703379,1.1413809743330556,1.1413809743330556,1.090972788588982,1.090972788588982,0.6212464517927706,0.5839071261741622,0.5300611621889333,0.6504643594823379,0.5486434725037629,0.6552245612513564,0.6044583738388456,0.5528819600847382,0.6716964392472992,0.5668257889860434,32.618359565684855,32.618359565684855,28.62138410009507,28.62138410009507,27.971553077504183,27.971553077504183,32.434208492505476,32.434208492505476,30.10262612794554,30.10262612794554,13.097696558184552,12.145088385933406,10.877863055783536,13.885300824893903,11.300980052504414,14.017124832964015,12.661908946864855,11.399585643463467,14.480856176407428,11.729475832969015,287.75786834949434,287.75786834949434,0.0,319.73096483277146,0.0,287.75786834949434,319.73096483277146,0,0
+2017/07/04 14:00:00,271.6071940076531,0,838.4476504508144,0,0,0,82.46651667770382,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.694254474550324e-09,14.072461183440783,0,0,0.0,430.308596556557,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11719.499949310437,7403.026306502525,9251.110892431818,7334.367812538013,58748.024658328744,11922.451258913978,8180.281295248818,9343.096337241795,8118.557300450547,56423.6069500442,12556.020218826692,8485.35997011952,9782.396468985122,8386.645918161239,58517.049040663915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0446395739537657,0.0014123650035472992,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1223559853031262,1.1223559853031262,1.1474224460388254,1.1474224460388254,1.0535134992954056,1.0535134992954056,1.1318818786345393,1.1318818786345393,1.086640451467588,1.086640451467588,0.5995185537137967,0.6251712436172127,0.522389933884882,0.6325076347309397,0.526652485283034,0.6305752739740009,0.6549655434826943,0.5459573758354324,0.6527423743737709,0.544279040796927,31.544319736884745,31.544319736884745,32.7192400527812,32.7192400527812,28.426311127850283,28.426311127850283,31.98841919318184,31.98841919318184,29.9062385034846,29.9062385034846,12.53600942703477,13.201340870698644,10.707551321652446,13.396869646232915,10.801871275413077,13.34514202832925,14.009926601857586,11.238892912948856,13.948263223156374,11.20025816780111,271.6071940076531,271.6071940076531,0.0,301.78577111961454,0.0,271.6071940076531,301.78577111961454,0,0
+2017/07/04 15:00:00,254.3871063745643,0,856.5759262563715,0,0,0,72.14778742686127,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.6942544745503236e-09,14.03913539150296,0,0,0.0,448.4368723621141,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10576.45399339069,7707.046220545504,9121.266809526189,7040.313097543122,56838.5663039119,9642.85074236163,7435.081567007265,7790.1083715411505,7052.568460062685,46591.76360323672,10166.720109733187,7814.090875907129,8225.002817808701,7292.901949819758,48297.421580503236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0456047367853883,0.0014429020827658476,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0984615423285082,1.0984615423285082,1.1564938788972718,1.1564938788972718,1.0656965415585737,1.0656965415585737,1.1309485039282317,1.1309485039282317,1.0916547792976952,1.0916547792976952,0.5667204037980647,0.6254898131764651,0.5150555149054473,0.6179528098078739,0.506285226103649,0.5919035230901417,0.6550135970480068,0.5356837204989939,0.6344667390676285,0.5191437091900936,30.44361845899813,30.44361845899813,33.14939498882117,33.14939498882117,28.966066441751366,28.966066441751366,31.944773914970455,31.944773914970455,30.133600183186175,30.133600183186175,11.726950953307252,13.209782855105317,10.547098883548074,13.011235237922008,10.358289330838218,12.344002411351767,14.011261814382607,11.004309716706317,13.449478533551655,10.63624771222014,254.3871063745643,254.3871063745643,0.0,282.65234041618254,0.0,254.3871063745643,282.65234041618254,0,0
+2017/07/04 16:00:00,285.119197575754,0,897.6713977207978,0,0,0,79.91453246103552,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.6942544745503236e-09,14.12000338353634,0,0,0.0,436.296815057724,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11172.320601452793,9692.420600835527,10303.984040792595,7473.81734741283,63487.567274070985,9848.271088328676,8863.637433765542,8541.659448905613,7400.852476359378,49957.2958461372,10210.23338056252,9290.905463165715,8905.286354602345,7574.121527445556,51615.271104024345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04779269012584404,0.00151212740132858,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1002560117729514,1.1002560117729514,1.2558096167298785,1.2558096167298785,1.0863764581326627,1.0863764581326627,1.1342347909957942,1.1342347909957942,1.1181310071868504,1.1181310071868504,0.5493961851848227,0.6738749276272356,0.5125828627790374,0.6045415195150281,0.5001086696853935,0.5703407873064303,0.711559959114652,0.5324826567649541,0.6180086891525635,0.5134444728213307,30.525612475320173,30.525612475320173,38.01805350657807,38.01805350657807,29.894292489743094,29.894292489743094,32.09856874876448,32.09856874876448,31.348306122652247,31.348306122652247,11.31843454473129,14.543066698630795,10.493530125150002,12.664037115552901,10.227314158751781,11.813966207619956,15.651702471113225,10.932152608173709,13.012698199653556,10.512166450447339,285.119197575754,285.119197575754,0.0,316.79910841750444,0.0,285.119197575754,316.79910841750444,0,0
+2017/07/04 17:00:00,295.24952133076573,0,923.4607268036654,0,0,0,83.23236320717497,0.0,16.693521066485914,0.0,133.89528835348938,0,39.380909295966944,2.8042670716180615e-09,18.615464202389884,0,0,0.0,462.08614414059156,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11232.481049572749,8552.807096772769,10701.489649412932,7508.204686231687,65649.55454119362,10811.824035901542,8542.430925255909,9826.004360300893,7628.910066485521,56151.947485692865,11124.66491349434,8882.268504127935,10201.044001620525,7779.109186598752,57548.45127656782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0491657331085439,0.0015555695242112939,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1044522610066874,1.1044522610066874,1.1666450616333208,1.1666450616333208,1.1011368356263331,1.1011368356263331,1.1365315088982235,1.1365315088982235,1.1293489154957188,1.1293489154957188,0.5503825710929108,0.630382203456294,0.5235634575775928,0.6038735677609994,0.5100941866560185,0.5686112029212728,0.6539663234756327,0.5429102412603981,0.6144640054483689,0.5218660531061172,30.717777321503533,30.717777321503533,33.633799261615394,33.633799261615394,30.56589973322758,30.56589973322758,32.20626067105189,32.20626067105189,31.87004201139669,31.87004201139669,11.341344813133759,13.339982599802582,10.733440107389384,12.646948924494751,10.439881229882985,11.772325034840065,13.982185031188521,11.168839206053278,12.920164152377126,10.696013374301359,295.24952133076573,295.24952133076573,0.0,328.0550237008508,0.0,295.24952133076573,328.0550237008508,0,0
+2017/07/04 18:00:00,283.6885822091057,0,919.2421789079103,0,0,0,87.0112747323428,0.0,17.37545085433467,0.0,110.93442390708215,0,39.380909295966944,2.9624031129380984e-09,25.5545482139624,0,0,0.0,493.3579487573807,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10724.851477415465,7790.515298385501,10420.840814876632,7157.238072971346,65278.523753713685,11811.314436998891,8695.294851243947,11088.96704869656,7965.990336006416,65097.36666374939,12037.156584522463,8913.37249864722,11421.197987677655,8060.019264802667,66198.9598251361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04894113449386734,0.0015484633806010766,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0887445316697002,1.0887445316697002,1.1417810740499497,1.1417810740499497,1.0942044104986333,1.0942044104986333,1.1177308137647282,1.1177308137647282,1.1288245994304165,1.1288245994304165,0.5484825301084325,0.621135515468287,0.5315343283623704,0.5986872882735366,0.5319369580402395,0.5588780855153689,0.6362558152821782,0.5465492771928707,0.6030762771617697,0.5420631558676823,30.00153685162168,30.00153685162168,32.45304881153264,32.45304881153264,30.24953873867554,30.24953873867554,31.329770215783,31.329770215783,31.845564420364084,31.845564420364084,11.297251180771127,13.094776710378468,10.910860975792389,12.514927351496297,10.91989595927015,11.540411761865215,13.497667009606602,11.252547413795241,12.626577212682633,11.14943616259066,283.6885822091057,283.6885822091057,0.0,315.20953578789516,0.0,283.6885822091057,315.20953578789516,0,0
+2017/07/04 19:00:00,270.2876029112054,0,906.994156955201,0,0,0,80.12938651476165,0.0,18.55770083820608,0.0,101.68988858149199,0,39.380909295966944,3.013316757183649e-09,27.0977424753112,0,0,0.0,516.6002793172155,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8576.405313647276,5956.973325792797,8229.328875576193,6616.975113245768,54224.74654908796,11189.663399114186,7954.162451247974,10414.583355131135,7499.3856525436095,64937.59831676313,11336.650841370143,8058.2413394907335,10656.046586436993,7532.036834826345,65733.07591690267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04828904073291358,0.0015278315885513469,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.054641842423298,1.054641842423298,1.085087020675896,1.085087020675896,1.051176440503067,1.051176440503067,1.1009253875613965,1.1009253875613965,1.098521953832786,1.098521953832786,0.5440763554004758,0.5964051895310611,0.5253771521621705,0.5874217224809052,0.5410820863174078,0.5494333098127817,0.6012987682226401,0.5340551753705015,0.5860837147658803,0.5482791324684047,28.47607761038347,28.47607761038347,29.83597861313406,29.83597861313406,28.323379112965384,28.323379112965384,30.556226082611502,30.556226082611502,30.446377034147915,30.446377034147915,11.19560067469071,12.457204259162197,10.773568782748484,12.232173788210517,11.127002981664077,11.319296055222694,12.581259088685954,10.967544240530472,12.198957163154361,11.29254027017484,270.2876029112054,270.2876029112054,0.0,300.3195587902282,0.0,270.2876029112054,300.3195587902282,0,0
+2017/07/04 20:00:00,273.8564340655933,0,845.6011113572868,0,0,0,76.71429118144088,0.0,24.999863057464953,0.0,106.16168237671882,0,39.380909295966944,2.9105964603087524e-09,23.167712948636893,0,0,0.0,490.69758623184543,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7501.641140996574,4950.8127209245695,7242.364988886972,6134.701237169596,49204.73531226003,10966.347613864917,7571.222687910168,10158.880909351887,7294.687587099678,64931.09604028821,11057.424562715007,7601.85098395944,10328.846308652746,7284.466497591929,65462.44157614524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04502042951104247,0.0014244150079013136,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0347284839582507,1.0347284839582507,1.0492800983197896,1.0492800983197896,1.0271477397322417,1.0271477397322417,1.0826800127828324,1.0826800127828324,1.0785233168958326,1.0785233168958326,0.5444311140829697,0.5822603855913698,0.5240568389700699,0.5841434762248557,0.5476583537871031,0.5474251685052159,0.5827339085880453,0.5297588596110864,0.5802192865737421,0.5524065393239879,27.60455892449619,27.60455892449619,28.240002605981545,28.240002605981545,27.276593834009233,27.276593834009233,29.727277848182965,29.727277848182965,29.54003604233486,29.54003604233486,11.203753817816988,12.104469516598272,10.744342257898893,12.150927905410654,11.278173448442217,11.272781104016431,12.116137486637783,10.87110330441213,12.054286627791427,11.3884865192923,273.8564340655933,273.8564340655933,0.0,304.2849267395481,0.0,273.8564340655933,304.2849267395481,0,0
+2017/07/04 21:00:00,254.62464629499277,0,812.774274989931,0,0,0,60.60681653840899,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9624031129380984e-09,25.553867505456033,0,0,0.0,493.36110237703383,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5532.583394998627,3474.975153577233,5515.158301495115,5297.636215460603,40346.96748730294,8374.81870203778,5867.842011625289,7630.4674981814715,5595.8684934684425,50763.73085991452,8363.847506412214,5802.148395309117,7709.192588985027,5491.3988465984,51076.648727400774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04327270442778791,0.0013691182045320177,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.023856197287622,1.023856197287622,1.0362793397267596,1.0362793397267596,1.015061923512733,1.015061923512733,1.0600662583826634,1.0600662583826634,1.068221829102877,1.068221829102877,0.5366826080484405,0.5712713282694531,0.5143982570720997,0.5715869010322591,0.5399016003200859,0.5337915770723085,0.5646433521314218,0.514167438962931,0.5617798954050197,0.5409236062353987,27.13485311741458,27.13485311741458,27.671913975088586,27.671913975088586,26.758128899033807,26.758128899033807,28.715963866677498,28.715963866677498,29.078608260409325,29.078608260409325,11.026917099098199,11.836423440067549,10.532833918872186,11.844047852396415,11.10006521439469,10.96160413709218,11.67728604918355,10.527828732114855,11.609124004736088,11.123383081368303,254.62464629499277,254.62464629499277,0.0,282.91627366110305,0.0,254.62464629499277,282.91627366110305,0,0
+2017/07/04 22:00:00,180.7473099320064,0,647.5968760151286,0,0,0,44.1295574844322,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8578875347254594e-09,20.86479483939439,0,0,0.0,487.89028970868003,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2611.0627964673613,1553.7050844479545,2732.9661210026075,3708.3794324937253,23053.579063751793,6381.4848445914695,4563.57420811383,5731.598403290397,4333.911277215478,39971.47120720578,6216.956901379761,4384.096238437158,5666.76790820051,4116.697855578925,39883.50388685424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034478537358368824,0.0010908768884957149,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9929227369141438,0.9929227369141438,1.0054382852157508,1.0054382852157508,0.9822188730554564,0.9822188730554564,1.0074288000929768,1.0074288000929768,1.0106357451502082,1.0106357451502082,0.538432942990566,0.570279098825453,0.5153012156479139,0.5702370388125194,0.5380804503470653,0.5294505944484316,0.5572510885198952,0.5089241714979723,0.5546832649025893,0.5345709610980982,25.822607378010233,25.822607378010233,26.349193873319123,26.349193873319123,25.376985706050306,25.376985706050306,26.433490591365896,26.433490591365896,26.56961606807303,26.56961606807303,11.066635884269303,11.812478774837032,10.552436311503314,11.811464718364633,11.058626411507547,10.864214299309523,11.502045698959776,10.414751536040754,11.441727617638605,10.97917601258547,180.7473099320064,180.7473099320064,0.0,200.830344368896,0.0,180.7473099320064,200.830344368896,0,0
+2017/07/04 23:00:00,99.02210915571837,0,478.69088695009276,0,0,0,11.655193652873066,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.637843811449674e-09,11.855934441369206,0,0,0.0,425.45535818127655,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1901.5199782679542,0.0,1200.4593341545676,1051.187712299129,1190.77352458156,781.0679641583558,15464.76223585824,843.153860458005,715.4433565915538,1005.5227868557063,348.62474119600563,14805.527350336934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025485857390754173,0.000806354762735409,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8640941724428014,0.8640941724428014,0.8595858026997212,0.8595858026997212,0.8711123142884928,0.8711123142884928,0.9557038365195133,0.9557038365195133,0.9385040370175423,0.9385040370175423,0.5455577339482913,0.5737197315760214,0.522981848462659,0.5728242109536794,0.546596617073737,0.530977172988731,0.5550325302754316,0.5109728754947225,0.5523175303470703,0.5398526639246607,20.759541993487062,20.759541993487062,20.594520631942203,20.594520631942203,21.018101031998683,21.018101031998683,24.29218502284965,24.29218502284965,23.603221783701926,23.603221783701926,11.22968220929134,11.895691488879777,10.720601937355568,11.873983620838445,11.253640147541034,10.898370024422107,11.449915050191677,10.458792712795812,11.38640961385191,11.098949827440563,99.02210915571837,99.02210915571837,0.0,110.02456572857596,0.0,99.02210915571837,110.02456572857596,0,0
+2017/07/05 00:00:00,44.587616772484104,0,469.53099497090466,0,0,0,0.30900096472595756,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,4.937910035267883,2.5804845525442963e-09,9.543384773486595,0,0,0.0,416.29546620208845,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1221.0593729411662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024998177956989148,0.0007909249253916907,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9347782794653786,0.9347782794653786,0.9399247217440999,0.9399247217440999,0.9293757519861036,0.9293757519861036,0.9316284729792401,0.9316284729792401,0.9556720345336444,0.9556720345336444,0.7224738073345157,0.7841561163500348,0.6737109727837322,0.7792799831108332,0.7405399312047963,0.6883036336162379,0.7389133754041195,0.6457351584201875,0.7319945798340025,0.7245195801911873,23.45552490332247,23.45552490332247,23.659686002075958,23.659686002075958,23.242339459189708,23.242339459189708,23.33109102745084,23.33109102745084,24.290900386813988,24.290900386813988,15.984215300644095,17.959567085648445,14.538377534758624,17.797494279253,16.545899259526323,14.960287289092776,16.494754541900974,13.755308022121184,16.27847219169378,16.047114767602693,44.587616772484104,44.587616772484104,0.0,49.541796413871225,0.0,44.587616772484104,49.541796413871225,0,0
+2017/07/05 01:00:00,23.722142564209307,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250471405315168,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9984785060426369,0.9984785060426369,1.016854698182039,1.016854698182039,0.9769973821618927,0.9769973821618927,1.0122845271602146,1.0122845271602146,1.0467984991083898,1.0467984991083898,0.7373445740807117,0.8123660876392773,0.6775492794461028,0.8055777801631971,0.7991858166131843,0.7092093772117474,0.7752237915665781,0.6552082633206515,0.7634155823676224,0.7786753083136891,26.055630145991728,26.055630145991728,26.834692707833966,26.834692707833966,25.161203314831184,25.161203314831184,26.639752531913345,26.639752531913345,28.131090592863913,28.131090592863913,16.445533414171024,18.91700138969688,14.648459581891913,18.683533207042615,18.465475807311265,15.580758910333941,17.663445508277334,14.016671819738804,17.277200767973156,17.77746660042743,23.722142564209307,23.722142564209307,0.0,26.357936182454786,0.0,23.722142564209307,26.357936182454786,0,0
+2017/07/05 02:00:00,28.344473740368578,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251106538956819,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9985896504728271,0.9985896504728271,1.0174527591727416,1.0174527591727416,0.9732766630995195,0.9732766630995195,1.0166224686095877,1.0166224686095877,1.1045752722718032,1.1045752722718032,0.7156968134946542,0.7909619294446274,0.6551323928010141,0.7847498105013551,0.8231429254459579,0.6884386469870671,0.7580088999124658,0.632298786168374,0.7454294344781413,0.7915926235745488,26.060303797790795,26.060303797790795,26.860260743601174,26.860260743601174,25.00808424407012,25.00808424407012,26.824768134310276,26.824768134310276,30.723419557117083,30.723419557117083,15.777136409425438,18.18746776927287,14.014563093189523,17.97936931241847,19.291634148075914,14.964233853195338,17.102335813422982,13.391271143846481,16.700326117353868,18.20868684872626,28.344473740368578,28.344473740368578,0.0,31.493859711520642,0.0,28.344473740368578,31.493859711520642,0,0
+2017/07/05 03:00:00,23.722271611771237,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251761880934458,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9807860856365996,0.9807860856365996,1.0013578642041432,1.0013578642041432,0.9528385500913102,0.9528385500913102,1.0008537242005384,1.0008537242005384,1.1000445176495008,1.1000445176495008,0.7085586407359162,0.7860826733217743,0.6464098409821268,0.7791569554255182,0.843763786304678,0.6778775179912286,0.7490729216551677,0.61991570092787,0.7358904156795787,0.8028496825495183,25.317669937846873,25.317669937846873,26.176859113799935,26.176859113799935,24.176601733774845,24.176601733774845,26.15561071792152,26.15561071792152,30.51594305335375,30.51594305335375,15.561160958642063,18.023880515796762,13.773793900059772,17.79341816860864,20.022055092807747,14.657903003693036,16.816066104296596,13.062706370930655,16.400003574100623,18.590254729789038,23.722271611771237,23.722271611771237,0.0,26.358079568634707,0.0,23.722271611771237,26.358079568634707,0,0
+2017/07/05 04:00:00,50.27744622451155,0,88.72588128136032,0,0,0,0.14912663163693832,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,10.042628168187967,0.0,0.5775578750525189,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,589.9755101109625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9703087677625359,0.9703087677625359,0.974865154421887,0.974865154421887,0.9630438885787603,0.9630438885787603,0.9635351815497257,0.9635351815497257,1.0065429896791662,1.0065429896791662,0.551895850492644,0.5886321142747698,0.5234160915979037,0.5851052748222619,0.6079563967569922,0.5301744274462611,0.5626865109043424,0.5041679942750843,0.5563901394795093,0.5926061344384127,24.88633082854635,24.88633082854635,25.073390012946263,25.073390012946263,24.58974563863285,24.58974563863285,24.609737573792017,24.609737573792017,26.395958774781803,26.395958774781803,11.376574946139172,12.262289221934921,10.730185834165468,12.174716143130041,12.751702382976006,10.880396785570667,11.630666710403972,10.313207248308672,11.481790179875674,12.361612813247646,50.27744622451155,50.27744622451155,0.0,55.86382913834616,0.0,50.27744622451155,55.86382913834616,0,0
+2017/07/05 05:00:00,79.83845981807573,0,212.9421150752648,0,0,0,0.42861847579091095,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,6.0989628036189085,0.0,0.5248355087100257,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1735.2841643913264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9864149292010209,0.9864149292010209,0.9869896289733099,0.9869896289733099,0.9856952193263826,0.9856952193263826,1.0013695511612484,1.0013695511612484,1.0035362384559898,1.0035362384559898,0.713834906676885,0.7689866721904114,0.6702925415575537,0.7634356042707083,0.8131025894643544,0.6757528104851509,0.7210174108490882,0.6372801850670736,0.7121939747800488,0.7877590148812611,25.551151867434882,25.551151867434882,25.5750586325627,25.5750586325627,25.52123073913853,25.52123073913853,26.177351807620568,26.177351807620568,26.268783440981792,26.268783440981792,15.720590095135023,17.45868916036015,14.440874293997325,17.27785064525989,18.942448561379848,14.596857757494831,15.939546597582947,13.525320748962557,15.670878661132534,18.079969395123342,79.83845981807573,79.83845981807573,0.0,88.70939979786192,0.0,79.83845981807573,88.70939979786192,0,0
+2017/07/05 06:00:00,91.66059341747362,0,639.5122304999494,0,0,0,0.5445544745937605,0.0,10.27086821016069,0.0,73.80580873715317,0,6.514435007103072,2.522188253575892e-09,0.5249269859407079,0,0,0.0,408.82493916841247,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2236.779854196523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034048104842789854,0.0010772583037390096,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0034600425153157,1.0034600425153157,1.003684027953305,1.003684027953305,1.0019931426899167,1.0019931426899167,1.0374079783455568,1.0374079783455568,1.017504018447416,1.017504018447416,0.8594138140866096,0.9193695352850628,0.8094262102736078,0.9110620904552682,1.0668395270625406,0.8316334370034429,0.8831946848525772,0.7872527009608112,0.8701971911677516,1.0230826648498408,26.265565049388343,26.265565049388343,26.275026452807623,26.275026452807623,26.20364841907606,26.20364841907606,27.720987197923577,27.720987197923577,26.86245277862659,26.86245277862659,20.58824193796285,22.850573776117272,18.815652368117497,22.528375236203445,29.01697665313492,19.590224649810963,21.467986031575123,18.06301600796128,20.984271270845653,27.101601489756334,91.66059341747362,91.66059341747362,0.0,101.8451037971929,0.0,91.66059341747362,101.8451037971929,0,0
+2017/07/05 07:00:00,157.23698462122482,0,782.6762309185158,0,0,0,13.416744351418814,0.0,8.037463145743322,0.0,69.33401494192633,0,39.380909295966944,3.0133423451616392e-09,27.067852883156093,0,0,0.0,516.4985870744349,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2934.2051145766745,0.0,0.0,0.0,526.5945923957551,0.0,21313.311713195362,0.0,0.0,586.9649183008946,0.0,20138.86802720596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04167026226760386,0.0013184180515781211,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.86152204423597,0.86152204423597,0.8265592889002346,0.8265592889002346,0.8991770395064234,0.8991770395064234,1.0453650162777934,1.0453650162777934,1.022421157723597,1.022421157723597,0.6177107778451416,0.6366735218587396,0.6059610671091092,0.6342153705998417,0.7083256619946543,0.6079234795606618,0.6215733655203551,0.6006861737547058,0.6168878601858111,0.7002288847124701,20.66529046803319,20.66529046803319,19.41141568786935,19.41141568786935,22.07227099139122,22.07227099139122,28.068279853023114,28.068279853023114,27.073183090648072,27.073183090648072,13.004900230306305,13.508937860396458,12.700417667757733,13.442719089333892,15.554148876951785,12.750854930988666,13.10630404422443,12.565672582246009,12.983379984944378,15.31191074611624,157.23698462122482,157.23698462122482,0.0,174.70776069024978,0.0,157.23698462122482,174.70776069024978,0,0
+2017/07/05 08:00:00,184.77472046168342,0,812.6082254538871,0,0,0,25.24933861161423,0.0,11.276247110228917,0.0,83.2008179303116,0,39.380909295966944,2.9624285315858677e-09,25.66740751059931,0,0,0.0,493.19505284098994,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,72.33855722085109,4275.183499899076,10228.254493032502,2484.7944010977844,1556.209295139031,2630.044621114521,1880.0830910644643,28785.71081852183,2229.580082735105,1220.3141757115113,2574.9418432788093,1554.8877768571738,27849.89376906273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04326386382749493,0.0013688384941011543,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9427778088281642,0.9427778088281642,0.8820646513329149,0.8820646513329149,0.9816759496005373,0.9816759496005373,1.094642368201074,1.094642368201074,1.051735665043974,1.051735665043974,0.5820045901117298,0.5911423653920105,0.5660131602920592,0.6121609057319704,0.6014161661395366,0.5764421967922448,0.5781050562646909,0.5638395650747511,0.6035520929991874,0.5985235347019264,23.773322018668992,23.773322018668992,21.425655287814422,21.425655287814422,25.354499990320946,25.354499990320946,30.26947630557713,30.26947630557713,28.347991340250914,28.347991340250914,12.098170567271069,12.324948767821397,11.710018866160283,12.860333927666531,12.584247954486926,11.961899075180327,12.00249631920775,11.658116711562641,12.638731547118368,12.510777863531573,184.77472046168342,184.77472046168342,0.0,205.305244957426,0.0,184.77472046168342,205.305244957426,0,0
+2017/07/05 09:00:00,236.7112056271497,0,839.0410219572153,0,0,0,59.05979215263539,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.857912562897806e-09,20.79698008864939,0,0,0.0,466.3923205755019,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4644.442658029209,2507.404368769289,4608.150555477065,5818.695362025966,37111.604791734695,8317.719620813692,5356.785470579267,7544.667625495857,5878.928753631819,53255.750709087486,8286.710045835645,5200.603193294786,7600.796118312984,5825.139314306107,52652.84658723244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044671165492280715,0.0014133645378047956,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0486414991576753,1.0486414991576753,1.008412304300815,1.008412304300815,1.0571297888397533,1.0571297888397533,1.120062973154701,1.120062973154701,1.087715103090548,1.087715103090548,0.6036955973035668,0.6134785520450843,0.5793440978552812,0.6427370342996495,0.5976061298667532,0.606070545793571,0.6090909486135541,0.5825689940653015,0.6439780446248953,0.596434851315461,28.21195456610006,28.21195456610006,26.475196333182964,26.475196333182964,28.58597216181056,28.58597216181056,31.437864432752548,31.437864432752548,29.954892673080295,29.954892673080295,12.642399178281025,12.894535738984956,12.032824428105116,13.673400043304596,12.487552503167038,12.703227049887161,12.78094012143076,12.11207276201469,13.707256847365244,12.457953070433746,236.7112056271497,236.7112056271497,0.0,263.012450696833,0.0,236.7112056271497,263.012450696833,0,0
+2017/07/05 10:00:00,279.9840519817801,0,927.2567452128602,0,0,0,71.3084906042044,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.8042918782497757e-09,18.601066291854647,0,0,0.0,465.88216254978647,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8333.357667253122,4444.1792463891,8095.795742789495,6993.148114243672,58207.25305793665,10012.81981472602,6386.664073531518,8705.962908716921,7162.733447685682,58108.79105533019,10167.510744678222,6321.56154912981,8895.459575085795,7233.606723813189,58029.587704382255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04936783594038556,0.0015619639169334692,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1543268122757937,1.1543268122757937,1.130739243920319,1.130739243920319,1.138558363823969,1.138558363823969,1.1587715557587723,1.1587715557587723,1.1661999497386248,1.1661999497386248,0.6542693728749983,0.6609360152378512,0.6235146315710708,0.6922210936106272,0.6246314905700341,0.659370471279478,0.65923586571599,0.6276302351672893,0.6961465236703379,0.6278465566750492,33.04640024232849,33.04640024232849,31.934992658126887,31.934992658126887,32.30144038770395,32.30144038770395,33.257805017969076,33.257805017969076,33.612492177475644,33.612492177475644,13.990594088242318,14.176587786495034,13.157512207804444,15.075118423770817,13.187047650523098,14.132737411752416,14.128972111487741,13.266617491762815,15.190848291190804,13.272372537989725,279.9840519817801,279.9840519817801,0.0,311.09339109086676,0.0,279.9840519817801,311.09339109086676,0,0
+2017/07/05 11:00:00,312.56429321306365,0,997.3132131789905,0,0,0,87.71615291603419,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.857912562897809e-09,20.90684222286951,0,0,0.0,482.70310174710073,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10280.377251869972,5624.101645715291,10433.383900355882,7786.52942766692,72310.50425138234,12635.53299263565,8026.852645275736,11622.161697035313,8523.652172073465,76159.87193685347,12890.145373707128,8032.522807229871,11955.275577307044,8596.733249412042,76446.6553603043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05309769418619521,0.0016799740319052203,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1969041741219077,1.1969041741219077,1.1911842760001705,1.1911842760001705,1.1838895376747227,1.1838895376747227,1.1689009444898908,1.1689009444898908,1.2148825039773445,1.2148825039773445,0.6790769423329492,0.6914437123047404,0.653363180962433,0.7100599049657598,0.6533743566080469,0.6850857088331229,0.6931302612771981,0.6596496889965987,0.713767509380624,0.6589602446063917,35.096295435539574,35.096295435539574,34.817753288171815,34.817753288171815,34.46391635586802,34.46391635586802,33.741879754583564,33.741879754583564,35.97792089019025,35.97792089019025,14.6924500767619,15.052278573024395,13.965460792976657,15.606401419641301,13.96577053351703,14.86645762279953,15.10186334973693,14.140550428222255,15.718546033343259,14.121264655006712,312.56429321306365,312.56429321306365,0.0,347.2936591256263,0.0,312.56429321306365,347.2936591256263,0,0
+2017/07/05 12:00:00,306.64822091420024,0,941.0004928003123,0,0,0,102.49516509550685,0.0,16.693521233099577,0.0,129.49988082968767,0,39.380909295966944,2.8042918782497757e-09,18.57874445713492,0,0,0.0,461.88073388096643,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11655.86287013872,6440.921909202031,11668.737488272822,8252.32470834637,76340.23735485478,16214.286346712774,10202.126258680488,15136.683112538247,10540.446432634804,94883.19613274798,16669.23277546755,10344.579591677479,15673.36024721396,10711.392248599908,95784.27117792805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050099563242026975,0.0015851152587013997,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.219497504972997,1.219497504972997,1.2150686706926452,1.2150686706926452,1.1985799110858883,1.1985799110858883,1.1851647022277945,1.1851647022277945,1.2187654220579025,1.2187654220579025,0.6983833519158438,0.7088745451909161,0.6693448625535614,0.7256470660966474,0.6610746329635848,0.7108698750660186,0.7170177724184733,0.6811704500217044,0.7352170080495523,0.6701327122900268,36.205704370850654,36.205704370850654,35.98709806603084,35.98709806603084,35.178079271123764,35.178079271123764,34.52565553217829,34.52565553217829,36.169531307607414,36.169531307607414,15.257092329908275,15.57067263716408,14.413933395684424,16.081857496399465,14.180475540905022,15.63085015299501,15.817344647443832,14.75289859141418,16.378949879275268,14.436327894500408,306.64822091420024,306.64822091420024,0.0,340.7202454602225,0.0,306.64822091420024,340.7202454602225,0,0
+2017/07/05 13:00:00,292.42835791810455,0,898.7085313186453,0,0,0,90.48924730061881,0.0,16.965687115311,0.0,129.2730206906943,0,39.380909295966944,2.7497503735248194e-09,16.319493512763742,0,0,0.0,455.0791249118437,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9207.989102436137,4865.616991905458,9631.910896093008,7437.9571346875055,68825.63482667276,13297.509723971094,8350.2164142554,12656.185214209061,8589.107346727118,84277.50514828865,13617.477548062874,8428.809152983997,13108.9201519418,8645.910014550263,84739.40729596472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047847907886805215,0.0015138744527954373,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.198295800816946,1.198295800816946,1.2020076336362204,1.2020076336362204,1.181183907078376,1.181183907078376,1.1609408157137047,1.1609408157137047,1.2165092361223746,1.2165092361223746,0.6816658314785407,0.6953971254615442,0.6567038992082365,0.709302578713203,0.6604383293644254,0.6845968071579029,0.6956923242226618,0.6599170463834299,0.7103521830290629,0.6664044629141471,35.16420762749651,35.16420762749651,35.34562103085068,35.34562103085068,34.3330793364003,34.3330793364003,33.361205013221365,33.361205013221365,36.058144144963045,36.058144144963045,14.767230109605094,15.16870306230416,14.058292085346409,15.583567314967326,14.162636255074673,14.852241189636175,15.177423491801491,14.148034736896662,15.615220493966149,14.330590359333499,292.42835791810455,292.42835791810455,0.0,324.92039768678285,0.0,292.42835791810455,324.92039768678285,0,0
+2017/07/05 14:00:00,260.83757705682086,0,841.3761216795693,0,0,0,74.96965317022334,0.0,16.86091082671979,0.0,115.5196477718057,0,39.380909295966944,2.694278783817243e-09,14.106455989410975,0,0,0.0,433.23706778531187,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7925.214419509404,4202.2250299560565,8534.051121315975,6881.342295848586,61500.977536473954,10259.519655168435,6522.975739593642,9733.532573745048,6703.029519864756,65208.52329647123,10440.500501471375,6535.547659808753,10068.974778203663,6678.793833998825,65312.073793674484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04479548793112278,0.00141729801310987,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2003918959531223,1.2003918959531223,1.20741428368106,1.20741428368106,1.1847018785565098,1.1847018785565098,1.158724370269232,1.158724370269232,1.2093810476619795,1.2093810476619795,0.6859468352854186,0.7000103336038354,0.6630661223797798,0.7112775122190559,0.6581873197849889,0.6872156020946459,0.6992335475128302,0.6648606970589354,0.7107509202305713,0.661753692839933,35.26660407076612,35.26660407076612,35.61057504029333,35.61057504029333,34.50324157706605,34.50324157706605,33.25555750031988,33.25555750031988,35.7071632542485,35.7071632542485,14.89152285574302,15.305411381182381,14.23642191214708,15.643165271766733,14.099668177537382,14.928511895354958,15.282327678247299,14.28698356782877,15.627257760810252,14.199532881682856,260.83757705682086,260.83757705682086,0.0,289.81953006313427,0.0,260.83757705682086,289.81953006313427,0,0
+2017/07/05 15:00:00,249.77290904689335,0,838.1548149348207,0,0,0,70.96832556033999,0.0,16.568294279967066,0.0,108.75639138185811,0,39.380909295966944,2.694278783817243e-09,14.09898852606696,0,0,0.0,430.0157610405632,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8962.199908300272,6905.969162721777,9066.863847082457,7060.562285902167,59555.102653603935,9742.556466227288,7814.427545054045,8894.444381904716,6337.047399870269,54482.725479158704,10057.048505565623,8121.144703956333,9315.558661975561,6424.579775416054,55366.11998852986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04462398317398897,0.0014118717221428335,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2031136435893819,1.2031136435893819,1.286264299234355,1.286264299234355,1.182986662352693,1.182986662352693,1.1679417238646492,1.1679417238646492,1.1986467698890308,1.1986467698890308,0.6824227623698725,0.7487750322241106,0.6577816199996354,0.7019316261425236,0.6418192074801483,0.6916345818356248,0.7687602835797861,0.6669406872163671,0.7081355851208596,0.6494061778175048,35.39975324091559,35.39975324091559,39.5639815190254,39.5639815190254,34.42023144382725,34.42023144382725,33.69590393667666,33.69590393667666,35.181343982266156,35.181343982266156,14.789148822825496,16.80658191541312,14.088342782295925,15.362618196428016,13.648403180000756,15.057883996498362,17.451288319274497,14.345761251780658,15.548429768878961,13.856130098752573,249.77290904689335,249.77290904689335,0.0,277.52545449654815,0.0,249.77290904689335,277.52545449654815,0,0
+2017/07/05 16:00:00,289.79046973897744,0,915.5525732468432,0,0,0,88.10623421668474,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.694278783817243e-09,14.031548993564748,0,0,0.0,454.1779905837695,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11535.418491754224,10778.166965969533,11703.629702964981,7753.3998662394015,74317.539322945,12384.46086178131,10946.674698499126,11540.645861909617,8260.255202607734,67820.09442329223,12731.464805611755,11524.071750640958,12003.70953551244,8435.297357063568,69154.22828394485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04874469715555661,0.0015422482401450453,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1991529633535076,1.1991529633535076,1.3267904696038315,1.3267904696038315,1.191842997770203,1.191842997770203,1.1770863998961112,1.1770863998961112,1.2139138660519857,1.2139138660519857,0.6706112636418984,0.7716963067960447,0.6558403833628396,0.6946035121301942,0.6379147081430944,0.6779154873223421,0.7959312234528567,0.6653470407367024,0.7001257896380855,0.6463409700071375,35.20606557229527,35.20606557229527,41.65433427109275,41.65433427109275,34.84978234872523,34.84978234872523,34.13535243373009,34.13535243373009,35.93018707928968,35.93018707928968,14.449943757049041,17.54743913556574,14.034250506222989,15.145277692285347,13.542473071083947,14.65899568203021,18.355111831545585,14.300710193041056,15.30884460444409,13.771905974125943,289.79046973897744,289.79046973897744,0.0,321.98941082108604,0.0,289.79046973897744,321.98941082108604,0,0
+2017/07/05 17:00:00,299.83222529113544,0,923.2972229081763,0,0,0,91.32588671303888,0.0,16.630907673226492,0.0,133.89528835348938,0,39.380909295966944,2.8042918782497757e-09,18.599233252609466,0,0,0.0,461.92264024510246,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10530.708230909984,11023.537295737624,11912.10098203386,7697.759335208713,72659.60084046738,12582.653088094825,11714.055816637234,12823.668000848822,8182.758971380597,74295.37667627768,12876.718114002168,12336.592781961097,13370.22201752348,8306.445948553159,75419.18315147622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04915702804003963,0.001555294101911752,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.190508093857965,1.190508093857965,1.3385625219649027,1.3385625219649027,1.207344112092515,1.207344112092515,1.1711101936511097,1.1711101936511097,1.214576560948456,1.214576560948456,0.6619657498293142,0.7838654339630846,0.6642064592503972,0.6847409478200794,0.6383735230591818,0.6672425504812504,0.807971786019558,0.6749143985617119,0.6881610197488173,0.6468149281956802,34.78488850370964,34.78488850370964,42.26803234957099,42.26803234957099,35.60713092622137,35.60713092622137,33.84787697284108,33.84787697284108,35.9628413902272,35.9628413902272,14.205488206022366,17.94987705361754,14.26853443742823,14.856431481719653,13.554886558541881,14.354307064571373,18.76564751778247,14.572822989007278,14.956119411253994,13.78490251751137,299.83222529113544,299.83222529113544,0.0,333.1469169901505,0.0,299.83222529113544,333.1469169901505,0,0
+2017/07/05 18:00:00,279.46873906272236,0,919.1193432068986,0,0,0,85.37845276099452,0.0,18.108320620462468,0.0,110.93442390708215,0,39.380909295966944,2.9624285315858714e-09,25.666632475253884,0,0,0.0,493.23511305636896,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7759.289639094368,5959.293537051329,8978.968511316149,7141.59526983988,63553.15338737086,11552.450837693676,9227.838437686163,11947.268337845762,7149.6323256942305,78863.77233557259,11650.89166882197,9442.667955893747,12292.146411386115,7072.267058331534,79511.89794510414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04893459463016026,0.0015482564638720456,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1792406484548001,1.1792406484548001,1.2196912777794895,1.2196912777794895,1.1704786935639004,1.1704786935639004,1.149216944746769,1.149216944746769,1.2142669890491389,1.2142669890491389,0.6550502095314622,0.7141757130092234,0.6417251456031593,0.6770477328840474,0.649997644843634,0.6544694907847494,0.7164320202890603,0.6426604112842096,0.674872678215985,0.6559874974392118,34.23924370532259,34.23924370532259,36.21528139394328,36.21528139394328,33.8175631157483,33.8175631157483,32.80412668911448,32.80412668911448,35.947585694785104,35.947585694785104,14.012279193093221,15.730929252121513,13.645843483990319,14.634039092807953,13.872428993052864,13.996149169999342,15.799505853578182,13.67131183041802,14.57162778572821,14.03834409959697,279.46873906272236,279.46873906272236,0.0,310.5208211808026,0.0,279.46873906272236,310.5208211808026,0,0
+2017/07/05 19:00:00,269.75438941871676,0,906.9043158031624,0,0,0,82.92337202436639,0.0,18.662477038566863,0.0,101.68988858149199,0,39.380909295966944,3.0133423454372905e-09,27.0977424753112,0,0,0.0,516.510438165177,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6933.238277556116,4858.937721488097,8037.246307023825,6746.141381003753,59845.431391800215,11257.736632766151,8533.6034254966,11577.803006096901,6911.6208955742195,78852.61946297347,11209.43074359801,8533.60701572405,11738.841611699174,6739.049186344465,79171.01364768144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04828425752343311,0.0015276802511375567,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1739521438901208,1.1739521438901208,1.2140659055673726,1.2140659055673726,1.1667180132374821,1.1667180132374821,1.1387149999671802,1.1387149999671802,1.2081702830332384,1.2081702830332384,0.6534401358975535,0.7068740762386437,0.6420367323586917,0.6733787054542089,0.6523647443054376,0.6508761755347083,0.7058610772928521,0.6413986451768359,0.6687198311917306,0.6561458712771656,33.98444919919689,33.98444919919689,35.93767774360697,35.93767774360697,33.637291966520635,33.637291966520635,32.308801424405246,32.308801424405246,35.647689355084395,35.647689355084395,13.96759376050241,15.510512479409257,13.654324131411627,14.528878145178169,13.937810294937918,13.89666641410183,15.480114366977105,13.636961439550035,14.39618610016663,14.042752055208581,269.75438941871676,269.75438941871676,0.0,299.72709935412973,0.0,269.75438941871676,299.72709935412973,0,0
+2017/07/05 20:00:00,265.9052752241186,0,839.4692162419954,0,0,0,72.80086000090483,0.0,24.398945138444315,0.0,106.16168237671882,0,39.380909295966944,2.910621692374609e-09,23.16287840917297,0,0,0.0,484.5656911165541,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5700.276888027348,3755.1315218995205,6442.128806679681,6136.406527440968,48928.33957993522,9887.56909025158,7114.021160757668,9901.757471774024,6037.738065047236,67816.36768999655,9826.09388166255,7058.705542559454,9972.651733737115,5904.440648849404,67757.29994206817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04469396287316876,0.0014140858310450082,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1113055262038498,1.1113055262038498,1.135833467485972,1.135833467485972,1.1080856749324755,1.1080856749324755,1.1118496140013179,1.1118496140013179,1.1593035255026338,1.1593035255026338,0.6036439365910735,0.64612348099072,0.5936445879430714,0.6191909535054932,0.6174608658956467,0.6005543018197996,0.6419337940737926,0.5919832149973877,0.6129282941273985,0.6189806115188695,31.032898185707367,31.032898185707367,32.17351181958388,32.17351181958388,30.884648823133745,30.884648823133745,31.05798360223355,31.05798360223355,33.283148354806855,33.283148354806855,12.641078749492763,13.765945405604867,12.387680068460782,13.04368249900375,12.998361637516354,12.562319437924572,13.651521931394797,12.345998749248281,12.880243670778867,13.038165506621255,265.9052752241186,265.9052752241186,0.0,295.4503058045762,0.0,265.9052752241186,295.4503058045762,0,0
+2017/07/05 21:00:00,236.00359747745964,0,818.4940581822674,0,0,0,41.92610172134291,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9624285315858714e-09,25.61353350498908,0,0,0.0,499.08088556937025,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1815.5823577309195,880.7893046112699,3021.535893619067,4847.0921302925835,30826.76648784613,4246.123339239478,3291.4532112371517,4864.380789716095,2238.2951934117723,39838.624176375364,4059.3605719210873,3116.286867386315,4860.653459289799,1961.3989103008896,39147.50029265724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04357722992162944,0.0013787531788853839,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0682490203679242,1.0682490203679242,1.0896013522315824,1.0896013522315824,1.0660636792010476,1.0660636792010476,1.0791306463738615,1.0791306463738615,1.1231385366372901,1.1231385366372901,0.5676075691056282,0.6077514634915969,0.5595927678253717,0.5806288900552419,0.5897551136118091,0.558592370590071,0.5970850397627662,0.5528156005535108,0.5683647465885894,0.5872823281362614,29.07982129472454,29.07982129472454,30.040387943219272,30.040387943219272,28.982414223364657,28.982414223364657,29.567356073961847,29.567356073961847,31.58069017057717,31.58069017057717,11.748221218006435,12.746427148710524,11.557300902892791,12.064342726359428,12.29028712635234,11.533666036452232,12.474376659573366,11.398035832277657,11.766401957865298,12.228709637495655,236.00359747745964,236.00359747745964,0.0,262.22621941939957,0.0,236.00359747745964,262.22621941939957,0,0
+2017/07/05 22:00:00,144.78506610592126,0,625.09972023311,0,0,0,8.165108823278583,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.857912562897806e-09,20.866999674462853,0,0,0.0,465.39313392666145,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2568.050347865851,0.0,0.0,0.0,87.72438159471741,0.0,12836.139257191819,0.0,0.0,0.0,0.0,11559.678663303823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03328077212074088,0.0010529804312884095,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8680553092580714,0.8680553092580714,0.8664776017936655,0.8664776017936655,0.9190447085775449,0.9190447085775449,1.011394838182994,1.011394838182994,1.0345633939256187,1.0345633939256187,0.5055024995620703,0.5587075805612478,0.5347376294428993,0.48285709088784023,0.5664391445918489,0.47792137110256266,0.5258738996341747,0.519934116420766,0.4432706117992306,0.559357354354644,20.9052263893593,20.9052263893593,20.847123122068012,20.847123122068012,22.837923397757578,22.837923397757578,26.601893954228615,26.601893954228615,27.59739411522861,27.59739411522861,10.341600207278333,11.536385716363455,10.982937106760161,9.870220567646683,11.720214740029647,9.770418674295243,10.784584348072784,10.653567075933395,9.099322648622959,11.551735241666975,144.78506610592126,144.78506610592126,0.0,160.87229567324584,0.0,144.78506610592126,160.87229567324584,0,0
+2017/07/05 23:00:00,87.55931158794546,0,478.42752689879944,0,0,0,0.22595597864573752,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.637867844221355e-09,11.822374547823586,0,0,0.0,425.19199812998323,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,889.0503175504941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025471835906550774,0.0008059111327489942,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6460145420166729,0.6460145420166729,0.63760869100062,0.63760869100062,0.7053609583015507,0.7053609583015507,0.9545985799414486,0.9545985799414486,0.81276578670675,0.81276578670675,0.37216175664095813,0.427587021841749,0.4078126880057656,0.34641351769250317,0.5197017183621108,0.33238438704379597,0.3820328008731663,0.38223575401089616,0.29062076081449356,0.4979842307104082,13.762960562692115,13.762960562692115,13.534198686471242,13.534198686471242,15.465123098647368,15.465123098647368,24.247561661100065,24.247561661100065,18.93080871623829,18.93080871623829,7.88354726208253,8.812549676930558,8.466020540100715,7.496587639764456,10.648471975517197,7.297617110519084,8.039387131350736,8.04263489757075,6.754688704054345,10.1826460378944,87.55931158794546,87.55931158794546,0.0,97.28812398660607,0.0,87.55931158794546,97.28812398660607,0,0
+2017/07/06 00:00:00,41.625233057749895,0,473.30825708310755,0,0,0,0.8677527938834992,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.409362967844575,2.5805082898314618e-09,9.550796297018131,0,0,0.0,420.07272831429134,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,35.89450336282546,7.133198442568009,338.07578933704474,2558.2797811441474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025199282189686055,0.0007972877231330072,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8038689568684035,0.8038689568684035,0.8206054599903444,0.8206054599903444,0.832699627931022,0.832699627931022,0.9261991773794345,0.9261991773794345,0.8859479767820819,0.8859479767820819,0.5127002808318923,0.5978841249561296,0.5233130614719597,0.5061637933881298,0.7265932011222606,0.4640599353513763,0.5439170017802429,0.4905398725931692,0.4409234004929173,0.6758595136123846,18.62506871265971,18.62506871265971,19.202985039460287,19.202985039460287,19.62793353569377,19.62793353569377,23.117534948653955,23.117534948653955,21.57134261489989,21.57134261489989,10.496067947032842,12.494586472421702,10.727911184996003,10.355698433361454,16.111054218223657,9.495753274464676,11.19194014937112,10.027660692962684,9.055731728020731,14.599918799947005,41.625233057749895,41.625233057749895,0.0,46.250258953055436,0.0,41.625233057749895,46.250258953055436,0,0
+2017/07/06 01:00:00,23.72211125743194,0,45.01228601985652,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250158337541492,0,0,0.0,9.52193350731238,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002396487448597498,7.582319238407373e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7953538805595821,0.7953538805595821,0.8215423442896358,0.8215423442896358,0.8182139551530765,0.8182139551530765,0.9057308239426961,0.9057308239426961,0.9968792610724357,0.9968792610724357,0.5008919452075251,0.5950399997146816,0.5044124428763239,0.5006295799772174,0.7908979818333467,0.46104533826586663,0.5570327946024489,0.47554316851711403,0.44726338617409417,0.7228005161820655,18.335580856910838,18.335580856910838,19.23568459823143,19.23568459823143,19.119683013096292,19.119683013096292,22.32307316985151,22.32307316985151,25.98843344565202,25.98843344565202,10.243832392867319,12.42278138653137,10.318402382130728,10.238296507842236,18.185317257409963,9.437114893444601,11.496906863905963,9.722705763264244,9.174018033483847,15.99424822763217,23.72211125743194,23.72211125743194,0.0,26.3579013971466,0.0,23.72211125743194,26.3579013971466,0,0
+2017/07/06 02:00:00,28.3971565248198,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5777934383469024,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7553328077513638,0.7553328077513638,0.7879909228617968,0.7879909228617968,0.772402107602169,0.772402107602169,0.8384789497478334,0.8384789497478334,1.0527954588257677,1.0527954588257677,0.44665364182773476,0.5436205576122867,0.44614202051422236,0.44765601239434916,0.8161364647846419,0.4146102653467802,0.5122611391344408,0.42670764241307235,0.40199164177170615,0.7146328332734612,17.016247036163435,17.016247036163435,18.08773822373803,18.08773822373803,17.57060796471184,17.57060796471184,19.83316343420897,19.83316343420897,28.394665235394385,28.394665235394385,9.162566809033649,11.185133433240495,9.152970706687043,9.181400161352798,19.047514205184584,8.583252058678184,10.486579587840836,8.796783002312665,8.367203081834163,15.744804922934975,28.3971565248198,28.3971565248198,0.0,31.552396138688664,0.0,28.3971565248198,31.552396138688664,0,0
+2017/07/06 03:00:00,23.721871878195124,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5247764545173325,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7225734546503293,0.7225734546503293,0.7591832839605337,0.7591832839605337,0.7373954146896078,0.7373954146896078,0.7895555446838702,0.7895555446838702,1.0548154803574719,1.0548154803574719,0.42684652402906825,0.5270427411124501,0.4247735874585375,0.4299040098190634,0.8386860500192871,0.37757295129349255,0.4780524216709745,0.3883593694193942,0.3668687005913344,0.7252282139469743,15.987274890790133,15.987274890790133,17.14021195898144,17.14021195898144,16.447126881261582,16.447126881261582,18.140212121026707,18.140212121026707,28.483740117119154,28.483740117119154,8.79927084857222,10.810545994335484,8.762223454953698,8.854250615204094,19.840543701465194,7.968462039356595,9.773054979578035,8.141455530648969,7.801694431371544,16.06894446107357,23.721871878195124,23.721871878195124,0.0,26.357635420216802,0.0,23.721871878195124,26.357635420216802,0,0
+2017/07/06 04:00:00,43.8037747951267,0,88.72588128136032,0,0,0,0.044168359331978505,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,3.72634264649171,0.0,0.5251302396688833,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,41.58252915341557,0.0,36.293649362896296,28.59168213352575,0.0,0.0,52.208065263293754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7534947939104671,0.7534947939104671,0.788688336097365,0.788688336097365,0.7674985922824918,0.7674985922824918,0.8141146529419745,0.8141146529419745,0.9624585206371683,0.9624585206371683,0.37838923837442967,0.4085715041010168,0.37818035663048893,0.37814608642914305,0.5371714545248429,0.34684789428979307,0.3901024183113051,0.3565216281238904,0.3357987381322387,0.49579432369730825,16.957296384097333,16.957296384097333,18.111115058588993,18.111115058588993,17.410082582446876,17.410082582446876,18.977454066114518,18.977454066114518,24.565937866400134,24.565937866400134,7.981380002620753,8.47900900097774,7.978071685553559,7.977529084028745,11.03799669798164,7.502881731889872,8.169877080512606,7.645132969477459,7.345272102782019,10.136805491218581,43.8037747951267,43.8037747951267,0.0,48.670860883474106,0.0,43.8037747951267,48.670860883474106,0,0
+2017/07/06 05:00:00,75.39959133190217,0,212.9421150752648,0,0,0,0.13804664848083562,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,1.950507506314466,0.0,0.524994147150997,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.1376986263458,89.9298358465026,80.44939955076724,323.5060192060751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9109480278630763,0.9109480278630763,0.9207943526037132,0.9207943526037132,0.9167783754262072,0.9167783754262072,0.9410026407778213,0.9410026407778213,0.9703155389989209,0.9703155389989209,0.42119945533209074,0.48795442948046375,0.41890133681672237,0.41998617937598115,0.7560818139073935,0.37769531017387153,0.446460084036188,0.3862227619844396,0.36426534847062586,0.6835727333681021,22.523970763937854,22.523970763937854,22.906113385241937,22.906113385241937,22.749779121750464,22.749779121750464,23.70258065919724,23.70258065919724,24.886608219114862,24.886608219114862,8.698779715056375,9.974393822657461,8.658275632827994,8.677367642547082,17.040311381964443,7.970396590014616,9.158935065159227,8.106793830282285,7.76187378409692,14.822496356598933,75.39959133190217,75.39959133190217,0.0,83.77732370211352,0.0,75.39959133190217,83.77732370211352,0,0
+2017/07/06 06:00:00,86.23328270394417,0,634.9816877004147,0,0,0,0.5475371514577146,0.0,8.607945034376671,0.0,73.80580873715317,0,2.7469087491396165,2.522211279791147e-09,0.525083029294778,0,0,0.0,404.2943963688778,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2263.1360104301652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033806895388339364,0.0010696266047370555,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.028790826431242,1.028790826431242,1.0125362529513844,1.0125362529513844,1.0260080393313076,1.0260080393313076,1.0981210162944572,1.0981210162944572,0.9628966535120116,0.9628966535120116,0.5123524709284271,0.5923649912673205,0.5207353044294781,0.6783479962067348,1.0125670145904648,0.4757559254406625,0.5528898118024191,0.4970720072171477,0.6730473675183437,0.9052428544404212,27.347498642444805,27.347498642444805,26.65046950895166,26.65046950895166,27.2274705186817,27.2274705186817,30.428071321129323,30.428071321129323,24.583756112677136,24.583756112677136,10.488552270464652,12.355566334235618,10.671150257804058,14.67144678980192,26.65177931833881,9.726964284794306,11.399769031106672,10.163525611431837,14.519410085169667,22.30433938255115,86.23328270394417,86.23328270394417,0.0,95.81475855993797,0.0,86.23328270394417,95.81475855993797,0,0
+2017/07/06 07:00:00,145.62557477338189,0,782.5842237028683,0,0,0,2.0504915110607604,0.0,7.777944015249205,0.0,69.33401494192633,0,39.380909295966944,1.5866015340261664e-05,27.08219914316331,0,0,0.009629208078680073,516.3969506507085,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3598.5001531859175,0.0,0.02142959360980648,0.0,0.0,0.0,2388.9788207238325,0.0,0.0,0.0,0.0,1548.792446633279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04166536373529242,0.0013182630654303461,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3327179075509476,0.3327179075509476,0.5340036049600906,0.5340036049600906,0.43492718643175143,0.43492718643175143,1.165278749269606,1.165278749269606,0.6398908823800112,0.6398908823800112,0.1937198813658863,0.18618138726921332,0.18523199715513966,0.278594945640047,0.4219500492297895,0.1689039397391013,0.1945207577075936,0.11897606807448315,0.31745802910778526,0.3759724363106999,7.302250335855788,7.302250335855788,10.966381881018933,10.966381881018933,8.945448720143773,8.945448720143773,33.5684145444105,33.5684145444105,13.59600456915706,13.59600456915706,5.7781175556731625,5.718647387130019,5.71132610224619,6.612027453180048,8.712057913721608,5.591299687691063,5.784575111453918,5.293206735663176,7.095092659271444,7.943215984106146,145.62557477338189,145.62557477338189,0.0,161.80619419264653,0.0,145.62557477338189,161.80619419264653,0,0
+2017/07/06 08:00:00,161.01706767068416,0,812.4609575242621,0,0,0,1.5009579355795375,0.0,11.323895916778682,0.0,83.2008179303116,0,39.380909295966944,2.9624534664021996e-09,25.61048658908497,0,0,0.0,493.0477849113649,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6516.241374378319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04325602317383936,0.0013685904212848786,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.40306153094598457,0.40306153094598457,0.31353533136975686,0.31353533136975686,0.4687969558424139,0.4687969558424139,1.2112396977774527,1.2112396977774527,0.6687631597058783,0.6687631597058783,0.16703533939792004,0.1076009669117917,0.17094883965463092,0.3920653235210213,0.3946507999186071,0.14215550561325957,0.06229825859249964,0.07408193807646045,0.39368497652271756,0.3548414488118621,8.385256615611453,8.385256615611453,7.043435447340741,7.043435447340741,9.588686239792722,9.588686239792722,35.79854258487087,35.79854258487087,14.397415835084928,14.397415835084928,5.578273083419731,5.239793575471126,5.605722215400533,8.202038964990436,8.2446529107728,5.4186950145871435,5.080354129926192,5.113635033048212,8.228700725953104,7.620140407691778,161.01706767068416,161.01706767068416,0.0,178.90785296742683,0.0,161.01706767068416,178.90785296742683,0,0
+2017/07/06 09:00:00,183.81940706807418,0,837.8432247799441,0,0,0,6.102861366180502,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.857937114684198e-09,20.862112316028703,0,0,0.0,465.1945233982307,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7665.864404902922,0.0,0.0,0.0,0.0,1029.008093861482,6947.009278240717,0.0,0.0,0.0,1163.8098857885468,5250.899314232439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04460739388334644,0.0014113468485505935,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.685170336893064,0.685170336893064,0.4699051515505233,0.4699051515505233,0.6518319394158728,0.6518319394158728,1.2266385646593938,1.2266385646593938,0.8754325145835152,0.8754325145835152,0.3339749158753506,0.22937362655034133,0.28376145880676706,0.5818965208689326,0.469046022851119,0.3034472996589364,0.17859458819228585,0.23159492308781404,0.6031000832210432,0.4550686542693079,14.86891951288699,14.86891951288699,9.610566873730917,9.610566873730917,13.923072588179153,13.923072588179153,36.5593270549388,36.5593270549388,21.178273640807234,21.178273640807234,7.319754968401497,6.091597349171195,6.672569621057576,12.09551022138703,9.593599301829926,6.9135800148592494,5.661192684830539,6.1128901733665515,12.627185085885671,9.322016476512303,183.81940706807418,183.81940706807418,0.0,204.24378563119353,0.0,183.81940706807418,204.24378563119353,0,0
+2017/07/06 10:00:00,215.87104366542587,0,922.9497937851197,0,0,0,7.212225433661551,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.8043162127186424e-09,18.584323146043193,0,0,0.0,461.57521112204597,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.252084287708385,0.0,0.0,7669.0005047377235,7346.784390168405,0.0,0.0,0.0,1139.583810951188,4468.539490634697,0.0,0.0,0.0,1330.1019975390045,3690.7829135660595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04913853065618504,0.001554708857580333,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8996092952772409,0.8996092952772409,0.5770470930705088,0.5770470930705088,0.7817263378294065,0.7817263378294065,1.2077985707595307,1.2077985707595307,0.9730681577898889,0.9730681577898889,0.3876559066008393,0.2209986080776444,0.270293886564366,0.5777861273996314,0.44509591773930596,0.3877426894930625,0.1855530872774234,0.24175498572468423,0.6064435845843263,0.44655519519051146,22.088758969982564,22.088758969982564,11.976653199832228,11.976653199832228,17.87867976847184,17.87867976847184,35.629438837513874,35.629438837513874,24.999519470106108,24.999519470106108,8.130021877423715,6.0131771628042685,6.517111106260316,11.994700654409257,9.133384764690518,8.131431250120968,5.713797997000611,6.2129216767923765,12.712803673392344,9.160719443783663,215.87104366542587,215.87104366542587,0.0,239.85671518380653,0.0,215.87104366542587,239.85671518380653,0,0
+2017/07/06 11:00:00,250.91757546400535,0,1002.1985052033658,0,0,0,26.07668071864056,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.8579371146841984e-09,20.899596671204943,0,0,0.0,487.5883937714759,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3042.9569731276415,0.0,1260.2277154930168,7375.131461049326,21337.719087475372,3092.4536610466907,446.2890110654779,1531.7900498755225,2694.6376869066107,21112.452740461646,3368.001512768713,378.7473586786422,1546.1882200785763,2947.380590621246,21013.064182919068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05335779075214133,0.0016882033059494935,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.021008042737278,1.021008042737278,0.7386740398921701,0.7386740398921701,0.8910646306320262,0.8910646306320262,1.1716805095681422,1.1716805095681422,1.0095179362174649,1.0095179362174649,0.45798791784735465,0.3248239825455488,0.34391085594444065,0.5582006032957572,0.44602679075221086,0.4779232158458177,0.30997701063115024,0.3381073486213368,0.5863921483365594,0.4530541132655453,27.01253004457466,27.01253004457466,16.487238562814127,16.487238562814127,21.76424177111413,21.76424177111413,33.87526425880981,33.87526425880981,26.522124408104446,26.522124408104446,9.378043258876787,7.193855010114817,7.460480443344423,11.524422170613406,9.150810980285598,9.770455779306147,6.997140261463812,7.377774453190995,12.2066072707469,9.283567104602767,250.91757546400535,250.91757546400535,0.0,278.7973060711171,0.0,250.91757546400535,278.7973060711171,0,0
+2017/07/06 12:00:00,242.9593672972486,0,940.7998310195006,0,0,0,38.74705008580339,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.8043162127186424e-09,18.595843126092156,0,0,0.0,461.68007210015475,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4827.019653312528,83.48267215531,2305.713331396719,6441.109288233834,26241.90663843403,5752.077054962021,1653.0980630033032,3541.637388035281,3451.630115794698,33904.10331138596,6273.419932010136,1674.0102023946724,3708.000317053979,3676.720335733145,34328.49969987035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050088879860185044,0.0015847772439468524,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0561065022711387,1.0561065022711387,0.8402276669176528,0.8402276669176528,0.9306117059490592,0.9306117059490592,1.111686937142184,1.111686937142184,1.0185814691180288,1.0185814691180288,0.5125991956802335,0.3903636451759499,0.3962207149866431,0.5366202048374796,0.468783764910564,0.5443646076659596,0.3957467108402013,0.40722746190930253,0.5601784621199998,0.4811820356484185,28.540745882731613,28.540745882731613,19.895537371954347,19.895537371954347,23.291007866656884,23.291007866656884,31.050482271954266,31.050482271954266,26.908551225120135,26.908551225120135,10.493883101551148,8.174147741507582,8.270667783933021,11.025503488978487,9.588426111801766,11.202224937137103,8.262802012002894,8.456020215716961,11.571158354453004,9.836232580548085,242.9593672972486,242.9593672972486,0.0,269.95485255249844,0.0,242.9593672972486,269.95485255249844,0,0
+2017/07/06 13:00:00,239.6318955757597,0,887.7241583267148,0,0,0,38.03368040527807,0.0,16.630907756533322,0.0,129.2730206906943,0,39.380909295966944,2.7497744730355766e-09,16.313377424537244,0,0,0.0,444.0947519199132,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4853.117593340203,686.6250722030653,2619.764034936313,5883.523673154621,25598.51176847692,5883.017019576023,2087.819500609294,3668.468696615844,3210.9470166822866,32111.488593257956,6461.341783327634,2206.613717411787,3939.8938671535107,3401.945235239526,32851.52326621577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04726309173251653,0.00149537127732423,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0305288012688183,1.0305288012688183,0.8859400474791038,0.8859400474791038,0.9179725290035516,0.9179725290035516,1.08922669951309,1.08922669951309,0.9972898084759564,0.9972898084759564,0.5022740785556332,0.406692391260289,0.39025467731046726,0.5030754385992512,0.4507937635186367,0.5353559221879796,0.4215886297412322,0.40639469601236133,0.5245150784509975,0.4644752999756577,27.422606710746166,27.422606710746166,21.571044508954543,21.571044508954543,22.796197468785266,22.796197468785266,30.02339682619197,30.02339682619197,26.005674456340202,26.005674456340202,10.273044406116156,8.44688977940126,8.172365928517124,10.290019323356276,9.240634133667896,10.996900220427378,8.705661294098533,8.441815220085147,10.754477322185863,9.503863413807963,239.6318955757597,239.6318955757597,0.0,266.2576617508441,0.0,239.6318955757597,266.2576617508441,0,0
+2017/07/06 14:00:00,224.8996163994255,0,852.1217833333211,0,0,0,39.30749612969465,0.0,16.630907673226492,0.0,115.5196477718057,0,39.380909295966944,2.6943026304001466e-09,14.060655526037413,0,0,0.0,443.9827294390635,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5044.995891290683,2411.3799895926486,3376.9256968740456,5589.391542491202,27778.225831507327,5828.021556935679,3146.9562733223097,3776.4740794468566,3487.5671734037905,29604.40892406073,6336.973792495534,3372.502877269246,4050.10450471198,3710.4002570487523,30472.15483005691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04536759491695175,0.0014353990793500328,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9829774765562992,0.9829774765562992,0.962840830401594,0.962840830401594,0.9000047756362687,0.9000047756362687,1.0733731632738606,1.0733731632738606,0.966941545348259,0.966941545348259,0.4639207547333543,0.4427362299202199,0.3682213016036321,0.46886824220906453,0.41431336674388547,0.4949322309927391,0.4722150030225448,0.38594287778368214,0.48983238476753377,0.4271915961549921,25.408423026132596,25.408423026132596,24.581485448620413,24.581485448620413,22.10385083799352,22.10385083799352,29.308881726172643,29.308881726172643,24.74861000200056,24.74861000200056,9.4930373866258,9.089377627855356,7.822497710854222,9.590092151915002,8.578090379787696,10.118816439464311,9.656343595987778,8.10226777781854,10.013055917844099,8.805455857434993,224.8996163994255,224.8996163994255,0.0,249.88846266602832,0.0,224.8996163994255,249.88846266602832,0,0
+2017/07/06 15:00:00,209.9437781977925,0,837.9247829671712,0,0,0,31.06870855595723,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.6943026304001466e-09,14.106861288089483,0,0,0.0,429.78572907291385,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3715.120947980125,3292.423368560944,2917.3586662079574,5180.172824419331,25003.753347491645,3931.7993908729904,3064.2633237911805,2489.487209618444,2451.6734693892768,21432.650187384083,4338.381506699083,3408.553561092998,2769.472862740564,2624.425708828832,22150.435645348603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0446117361016451,0.0014114842333107873,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9456525361779511,0.9456525361779511,1.05284751683373,1.05284751683373,0.897653266701629,0.897653266701629,1.058992858941337,1.058992858941337,0.9641956837750554,0.9641956837750554,0.42850934671533725,0.492181725337345,0.3549109931435216,0.4497752946400752,0.39421488019527207,0.44951977456110065,0.5282708098303026,0.3703794262381259,0.46647027896057414,0.40497397366415233,23.88814605590629,23.88814605590629,28.39695894147556,28.39695894147556,22.01420874157688,22.01420874157688,28.66841080355512,28.66841080355512,24.636629905663,24.636629905663,8.829121991249707,10.061636976530693,7.6211724917518495,9.221361217979776,8.237448031219373,9.216532905350533,10.837886880593672,7.855851584500897,9.542919650117852,8.417649627623149,209.9437781977925,209.9437781977925,0.0,233.2708646642139,0.0,209.9437781977925,233.2708646642139,0,0
+2017/07/06 16:00:00,239.57195609111838,0,900.6789029642206,0,0,0,37.84964544436222,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.6943026304001466e-09,14.069624118028228,0,0,0.0,439.3043203011469,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4346.279247377105,5129.536867205024,3982.187204624702,5469.103481400858,30932.566792708905,4445.979527754198,4394.323191633993,3352.1113420613647,2909.331220750726,25635.107019726227,4756.651769354864,4829.564138815907,3617.6382601228197,3059.191573020859,26324.723913744852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047952811932683054,0.00151719354368286,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9507142676659028,0.9507142676659028,1.138686686079012,1.138686686079012,0.9280798303419215,0.9280798303419215,1.0639078720446058,1.0639078720446058,0.9956249277676702,0.9956249277676702,0.4209752243794337,0.5492685818703016,0.3663237669052907,0.4479749863592869,0.39838588999513597,0.43753645490966064,0.5917268000693188,0.3817202533346977,0.4598684930120667,0.40861016544517864,24.091118392114353,24.091118392114353,32.30747076900562,32.30747076900562,23.191375235665603,23.191375235665603,28.88648967233543,28.88648967233543,25.9357972139874,25.9357972139874,8.694817699079252,11.315473850231143,7.7933352744306745,9.187402365936194,8.306719561502462,8.993248828201487,12.339576359637434,8.03438901541638,9.414329722959792,8.47967141746689,239.57195609111838,239.57195609111838,0.0,266.19106232346485,0.0,239.57195609111838,266.19106232346485,0,0
+2017/07/06 17:00:00,253.8459287601182,0,924.8055290534704,0,0,0,45.27205413277365,0.0,16.7356839618177,0.0,133.89528835348938,0,39.380909295966944,2.8043162127186428e-09,18.561993013266118,0,0,0.0,463.43094639039657,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4500.227141599712,6023.06277970578,4981.00162437457,5537.540270076711,33898.27430318406,5321.906551821445,5624.804438814758,4901.145583711249,3382.315190815394,33035.6449981579,5574.891567592607,6115.475624387599,5217.502311670221,3502.403943033904,33603.014595531364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04923733137642751,0.0015578348434990218,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9552887404508648,0.9552887404508648,1.1807054778506412,1.1807054778506412,0.9789616127816045,0.9789616127816045,1.0598587402681634,1.0598587402681634,1.014227925703997,1.014227925703997,0.42846813957666724,0.5970732777147446,0.4086649039659916,0.45459808242239813,0.42169686363534736,0.4412468103165548,0.6406117892077351,0.42694785479185515,0.46270609440740573,0.43073411104481374,24.275420408551383,24.275420408551383,34.30996655090428,34.30996655090428,25.242253349636414,25.242253349636414,28.706767317860255,28.706767317860255,26.72255243256795,26.72255243256795,8.828380803096564,12.474079390382116,8.480609406869931,9.31301954590721,8.707576295065962,9.061723824787535,13.61557498246259,8.80108655246093,9.469370643184803,8.869246767851052,253.8459287601182,253.8459287601182,0.0,282.0510319556869,0.0,253.8459287601182,282.0510319556869,0,0
+2017/07/06 18:00:00,252.45106666734364,0,930.1282978876968,0,0,0,59.67377570904903,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.9624534664022034e-09,25.66366039720584,0,0,0.0,504.24406773716726,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5318.09951935173,6731.92126663947,6720.651634703408,5632.511882991662,38560.33640016972,7578.632473074669,7445.578166380157,7820.807648222907,4870.3532657626,46663.63886446333,7761.976134066535,7918.543452491282,8189.25399058592,4981.874589025075,47249.018211504765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04952071953177208,0.0015668010471962847,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9492961579637114,0.9492961579637114,1.179831597979177,1.179831597979177,1.0289159559315777,1.0289159559315777,1.0521978216774717,1.0521978216774717,1.0169483624383222,1.0169483624383222,0.4424594621533818,0.63010653053788,0.46332205774219487,0.46616840719573355,0.4521311419518076,0.4527072068791488,0.6710955515228488,0.48658278009078687,0.4712986415241602,0.46029794712814004,24.03415112205508,24.03415112205508,34.267767357916284,34.267767357916284,27.352902496134007,27.352902496134007,28.36833999140714,28.36833999140714,26.83869611791998,26.83869611791998,9.084231714576532,13.332618588229366,9.481364283776983,9.536998816321812,9.266009679416598,9.276963702141614,14.463732930417748,9.946251425566814,9.638155589155076,9.422637571944676,252.45106666734364,252.45106666734364,0.0,280.50118518593735,0.0,252.45106666734364,280.50118518593735,0,0
+2017/07/06 19:00:00,230.3749819185003,0,893.0463986227214,0,0,0,44.666414050749765,0.0,17.540027511967114,0.0,101.68988858149199,0,39.380909295966944,3.0133674466243627e-09,27.0977424753112,0,0,0.0,502.6525209847361,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2879.6059478408665,4183.633032621526,5184.891795894343,4897.730679998401,28502.812584156174,5067.666967366328,5573.740915446429,6203.454824872029,3033.7206236023967,37561.71953411505,5169.158895081697,5938.289078724606,6621.77747529079,3010.5834749691858,37675.77598497071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04754645174809479,0.001504336590698902,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9279368843748759,0.9279368843748759,1.1031072611316197,1.1031072611316197,1.020704419143439,1.020704419143439,1.0287607632451292,1.0287607632451292,1.0070676408086905,1.0070676408086905,0.43163760503370213,0.598489004217208,0.47152453209741624,0.4523767668352273,0.4604893914147174,0.4344802576206218,0.6245880860586556,0.4899517516025895,0.4502700881835616,0.4641882750636043,23.185757764261098,23.185757764261098,30.656118780658332,30.656118780658332,26.99950775267469,26.99950775267469,27.346200417182118,27.346200417182118,26.418184689346106,26.418184689346106,8.885602413962161,12.509903015436336,9.64263571933104,9.27067855364038,9.426343647197484,8.937290607956115,13.18589880321818,10.01551850942748,9.23071883157553,9.498258358775132,230.3749819185003,230.3749819185003,0.0,255.97220213166702,0.0,230.3749819185003,255.97220213166702,0,0
+2017/07/06 20:00:00,218.80507050030587,0,837.8311437880906,0,0,0,28.25157295376848,0.0,21.839837399389175,0.0,106.16168237671882,0,39.380909295966944,2.9106464441670997e-09,23.17106847155181,0,0,0.0,482.92761866264937,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,398.99361109915225,613.6965760077128,1780.4124554592183,4266.236086188638,17110.703061596418,2506.7584168660137,2831.6435085199732,3635.914037456803,1192.6241438865773,26979.042034472972,2451.491822300439,3105.9518464672597,3863.6871479269657,1015.2740899162393,26722.39971040245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04460675068239169,0.0014113264981207333,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9135292257772827,0.9135292257772827,0.9674821453371613,0.9674821453371613,0.9320267004871021,0.9320267004871021,1.0094537960156573,1.0094537960156573,0.9975702584720495,0.9975702584720495,0.4265956921268734,0.518831616860406,0.4404609628457654,0.4436582656616381,0.46745411470228254,0.42352175316409724,0.5414029816404983,0.446175418921809,0.4357026388034926,0.4665983666222964,22.623771019476266,22.623771019476266,24.77069104459173,24.77069104459173,23.346801261002597,23.346801261002597,26.51940074798182,26.51940074798182,26.017455687027848,26.017455687027848,8.79477819105719,10.629416605143277,9.04717154989848,9.106544695482924,9.562243597233305,8.739940032784759,11.134335999180891,9.153596792508097,8.959623964264082,9.545433114392239,218.80507050030587,218.80507050030587,0.0,243.11674500033985,0.0,218.80507050030587,243.11674500033985,0,0
+2017/07/06 21:00:00,212.64651118643235,0,829.5413624967986,0,0,0,18.629653959093424,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.962453466402203e-09,25.552894976211174,0,0,0.0,510.1281898839013,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,768.4644773247315,3696.8593745424864,13459.261617721253,910.6273589432648,1604.0912124871336,1836.7621215330134,207.6454597657385,18502.38315875072,740.1625708496323,1647.2719622728503,1904.3125940153795,0.0,17837.86355707833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04416539658614704,0.0013973623621647358,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8980596795928425,0.8980596795928425,0.941053679253724,0.941053679253724,0.9309787239290054,0.9309787239290054,0.9923026223897374,0.9923026223897374,1.000059883445647,1.000059883445647,0.4351729397933433,0.5137776873236594,0.43390960128477646,0.4515234365149882,0.47367417209448615,0.42603259680243655,0.5132687737930369,0.4312363646081603,0.43526051918851427,0.4684350088807588,22.029685573914733,22.029685573914733,23.704612824570162,23.704612824570162,23.305471752583514,23.305471752583514,25.79667119511828,25.79667119511828,26.122171597299044,26.122171597299044,8.949938288067756,10.519382374450146,8.926886477818414,9.254469479997624,9.685379999719672,8.784702407457914,10.508363535335832,8.878334568358014,8.951538867230568,9.581551288381576,212.64651118643235,212.64651118643235,0.0,236.27390131825817,0.0,212.64651118643235,236.27390131825817,0,0
+2017/07/06 22:00:00,137.1771513974821,0,629.2622151391603,0,0,0,0.4791523147190597,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.857937114684198e-09,20.945041474583167,0,0,0.0,469.55562883271165,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1906.0443520602348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033502386432726725,0.001059992153641723,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.641153243269864,0.641153243269864,0.6709620871904555,0.6709620871904555,0.714964134974235,0.714964134974235,0.9342438631799612,0.9342438631799612,0.8259370923343667,0.8259370923343667,0.2903289520274171,0.4131413286092134,0.3319452234873544,0.27667197738167615,0.440842301460956,0.2584216726039168,0.3933851612856305,0.316034714684515,0.2302843280527857,0.42128881516616856,13.630288624312698,13.630288624312698,14.459931774679603,14.459931774679603,15.75486705791812,15.75486705791812,23.434384809826255,23.434384809826255,19.38956428847598,19.38956428847598,6.751154734481119,8.557751002256197,7.291523505907975,6.58978124772041,9.054229840220259,6.386405933369602,8.223756888521947,7.076273981205958,6.100302084545689,8.700359246424526,137.1771513974821,137.1771513974821,0.0,152.41905710831344,0.0,137.1771513974821,152.41905710831344,0,0
+2017/07/06 23:00:00,87.39449109593032,0,478.15452413661274,0,0,0,0.09578786223012022,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6378914195774947e-09,11.787722172224044,0,0,0.0,424.9189953677965,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,369.46444326728636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02545730103727699,0.0008054512596168112,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.35183573014771546,0.35183573014771546,0.3665370646707754,0.3665370646707754,0.4359372060512876,0.4359372060512876,0.8726369801674465,0.8726369801674465,0.5205728672208241,0.5205728672208241,0.08990653189323272,0.20642380614195757,0.1436410124317453,0.13982650424162313,0.2557165785779762,0.027741159944287223,0.15817417399597167,0.10275835245994827,0.060619085562074314,0.22607309587829894,7.57573020271883,7.57573020271883,7.7966057056628415,7.7966057056628415,8.963916933886338,8.963916933886338,21.074540680308218,21.074540680308218,10.667583102987777,10.667583102987777,5.167386446480137,5.883712267338979,5.4274993117275585,5.405076368987224,6.3574545155200894,5.015931074816137,5.51848110134307,5.218685427684974,5.076080111600604,6.060341443297077,87.39449109593032,87.39449109593032,0.0,97.10499010658924,0.0,87.39449109593032,97.10499010658924,0,0
+2017/07/07 00:00:00,39.85321945551886,0,473.0302282369628,0,0,0,0.2235278419602562,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.28656025447445455,2.5805315753327682e-09,9.545810360080445,0,0,0.0,419.7946994681465,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,470.5288348939144,325.5527171686599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025184479727979485,0.0007968193835627783,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5874904597849713,0.5874904597849713,0.6351020105394154,0.6351020105394154,0.6440659897933536,0.6440659897933536,0.8619652800539896,0.8619652800539896,0.738920651012158,0.738920651012158,0.3458208247909223,0.5118083836802235,0.36435461699183747,0.3615107585714052,0.512664640975787,0.24352053399895196,0.4254572828958413,0.2863988960567975,0.23904356291717685,0.46672346159812544,12.23388231988001,12.23388231988001,13.466573569462327,13.466573569462327,13.709658670378502,13.709658670378502,20.681512616204756,20.681512616204756,16.494983060158233,16.494983060158233,7.488012492824055,10.476805814131282,7.763234446367605,7.720054207546667,10.49529757991003,6.230746506529769,8.774422040866384,6.703909819356525,6.185802279865399,9.547888535491722,39.85321945551886,39.85321945551886,0.0,44.281354950576514,0.0,39.85321945551886,44.281354950576514,0,0
+2017/07/07 01:00:00,23.774748728485296,0,37.85343305151444,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5776533048075022,0,0,0.0,2.363080538970307,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0020153448139528466,6.376410510224925e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6228947210458844,0.6228947210458844,0.6927132916997701,0.6927132916997701,0.6535983798772592,0.6535983798772592,0.8487530383505222,0.8487530383505222,0.8689573086354658,0.8689573086354658,0.36844093213977747,0.5654062377740482,0.3681948244219022,0.39899727101520627,0.6365954417958382,0.27330948693959767,0.49605078594037744,0.29699000637354633,0.2872014912396855,0.5713351701059978,13.141141973645176,13.141141973645176,15.089592949302244,15.089592949302244,13.97198063107399,13.97198063107399,20.201450529057993,20.201450529057993,20.93849107307085,20.93849107307085,7.825883032183782,11.695505857152426,7.8220897381353325,8.31693581489418,13.506830474442978,6.551256311249631,10.142163214119961,6.832719920738327,6.71350518087948,11.837965545525847,23.774748728485296,23.774748728485296,0.0,26.416387476094773,0.0,23.774748728485296,26.416387476094773,0,0
+2017/07/07 02:00:00,28.344127942759137,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5247648562862423,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6427506972145041,0.6427506972145041,0.7174146091707791,0.7174146091707791,0.6649449858078783,0.6649449858078783,0.8404070812554193,0.8404070812554193,0.9391648210313733,0.9391648210313733,0.36387484060634717,0.5569744994763646,0.3602964774340739,0.39621458532068854,0.6736515563116535,0.26815741243254976,0.4909405091717028,0.28497758018275515,0.2867316194526639,0.5958288261561506,13.673772426512883,13.673772426512883,15.829438514115324,15.829438514115324,14.28936181021561,14.28936181021561,19.90194401640339,19.90194401640339,23.629474259428648,23.629474259428648,7.7559255165518834,11.49553489379629,7.701721892061514,8.270566005032663,14.536678490821373,6.493152005662012,10.03594067710533,6.686984101366704,6.707884367261059,12.442661554707897,28.344127942759137,28.344127942759137,0.0,31.493475491954595,0.0,28.344127942759137,31.493475491954595,0,0
+2017/07/07 03:00:00,23.721953324962374,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248579012845844,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.636512036538941,0.636512036538941,0.7121624231308059,0.7121624231308059,0.6552388061424345,0.6552388061424345,0.8030988566909335,0.8030988566909335,0.9527712517611789,0.9527712517611789,0.3614549291345284,0.5533812651023469,0.35526250309451085,0.3930251530889546,0.7007339506494005,0.2576515428973979,0.4788881227002776,0.27086464935494015,0.2758404696656983,0.6095728670005399,13.504579653268237,13.504579653268237,15.669923952599987,15.669923952599987,14.01752078983857,14.01752078983857,18.5987613800082,18.5987613800082,24.173890854328036,24.173890854328036,7.719209958951424,11.41125291650377,7.626392282112789,8.21782556991117,15.326938498156409,6.378132231816821,9.789883951985473,6.523544370633431,6.580210086356701,12.793376206173562,23.721953324962374,23.721953324962374,0.0,26.357725916624858,0.0,23.721953324962374,26.357725916624858,0,0
+2017/07/07 04:00:00,43.4557111822345,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,3.422554407746791,0.0,0.5250232248535927,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7046241929180527,0.7046241929180527,0.7798693468121777,0.7798693468121777,0.7216998201305735,0.7216998201305735,0.8599454803771284,0.8599454803771284,0.9131987138824729,0.9131987138824729,0.3514381183544029,0.4318541503439501,0.3491683328613998,0.36487631374953167,0.4823151433602248,0.2607470454711983,0.38599246951408794,0.27163178447889413,0.2784882786541721,0.44875066228535027,15.443057916932545,15.443057916932545,17.81702980611854,17.81702980611854,15.960465202019336,15.960465202019336,20.607655148381497,20.607655148381497,22.610976994091473,22.610976994091473,7.5698841801882395,8.889527666890658,7.536640650141564,7.771193122175163,9.859210843296879,6.411539455243499,8.103069489765687,6.532212637836537,6.610789372050164,9.20201669242148,43.4557111822345,43.4557111822345,0.0,48.284123535816114,0.0,43.4557111822345,48.284123535816114,0,0
+2017/07/07 05:00:00,75.38288231949151,0,212.9421150752648,0,0,0,0.19385581591807854,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,1.8779090912014307,0.0,0.5250743824161506,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.284088758479742,126.83282030902576,44.55156845199949,585.9581213341402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8968245449237451,0.8968245449237451,0.9240923407306108,0.9240923407306108,0.9045876429751322,0.9045876429751322,0.9672997517462864,0.9672997517462864,0.9657849669377476,0.9657849669377476,0.41693385278072,0.558347995743261,0.4109709593831351,0.4385964840539362,0.6891915702152986,0.31241236794987143,0.4864650626904181,0.3224876931322481,0.32866097425851837,0.6333632550741067,21.982670555338643,21.982670555338643,23.03498213740977,23.03498213740977,22.27920013227879,22.27920013227879,24.76323982679004,24.76323982679004,24.701407280564467,24.701407280564467,8.623778859169633,11.52789915832254,8.520242138193865,9.012751419594622,14.98625693517468,7.028767348651044,9.94383997870932,7.162281120214374,7.246212428910823,13.419825602440113,75.38288231949151,75.38288231949151,0.0,83.75875813276835,0.0,75.38288231949151,83.75875813276835,0,0
+2017/07/07 06:00:00,86.47683044066753,0,634.7233818962454,0,0,0,0.5153295000686761,0.0,9.073231915861708,0.0,73.80580873715317,0,2.5572983165346983,2.522233854148735e-09,0.5251619685270238,0,0,0.0,404.03609056470845,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2134.3872012803217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03379314299599657,0.0010691914886295378,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.055995930686976,1.055995930686976,1.0374971197968081,1.0374971197968081,1.0556671065198981,1.0556671065198981,1.089794060998513,1.089794060998513,1.0018343582253761,1.0018343582253761,0.515694550952204,0.6769924688694375,0.513428369160031,0.6513409419803495,0.9302343681330782,0.4240242870316374,0.6072307822743043,0.4394404232041389,0.5707505644652949,0.8485126399086348,28.53586119107301,28.53586119107301,27.724865057651357,27.724865057651357,28.5213374066127,28.5213374066127,30.049129488953156,30.049129488953156,26.196951142690892,26.196951142690892,10.560986284327228,14.632450805144387,10.511817839397452,13.909502195779424,23.27614289058168,8.748877368709742,12.733032372621878,9.02831287033132,11.823850945772918,20.19278290343115,86.47683044066753,86.47683044066753,0.0,96.08536715629725,0.0,86.47683044066753,96.08536715629725,0,0
+2017/07/07 07:00:00,145.83298051842576,0,782.4575633801632,0,0,0,2.2744619042084957,0.0,7.753881655449512,0.0,69.33401494192633,0,39.380909295966944,9.423843045771564e-06,27.089703297031445,0,0,0.005718990363758894,516.2742005457185,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3791.447222412727,0.0,0.2777064851470357,0.2429850376778084,0.15083901636716854,0.10967855146291629,2728.996758106021,0.2905441619537406,0.2902662025793683,0.1665262872917388,0.1162129149042776,1847.3422336229798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04165862024589346,0.0013180497061263626,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3885563516545453,0.3885563516545453,0.6062138222416915,0.6062138222416915,0.4964827828103345,0.4964827828103345,1.1755321673347225,1.1755321673347225,0.7176011013512561,0.7176011013512561,0.26137785129311386,0.30114725259329833,0.17586939119510464,0.3358263953050037,0.47695277553079723,0.1992619952716096,0.2798827341439049,0.1767668677513438,0.3416154670799474,0.43529494032004823,8.144660948138906,8.144660948138906,12.706904517607839,12.706904517607839,10.151194434214176,10.151194434214176,34.06048454949034,34.06048454949034,15.83512433145448,15.83512433145448,6.418396684962829,6.884576023479568,5.6411414017555614,7.345660141847205,9.750956694346044,5.823353494649879,6.627012650219399,5.647710568328691,7.427597715495011,8.952168029419823,145.83298051842576,145.83298051842576,0.0,162.03664502047306,0.0,145.83298051842576,162.03664502047306,0,0
+2017/07/07 08:00:00,161.24773728297995,0,812.2759535499493,0,0,0,1.7310460363326996,0.0,11.323895916778682,0.0,83.2008179303116,0,39.380909295966944,2.962477909980579e-09,25.61106810062757,0,0,0.0,492.8627809370522,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6697.512100468714,0.0,0.0,0.0,0.0,0.0,630.3856880110993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043246173425213266,0.0013682787821041901,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5180327117440781,0.5180327117440781,0.46676725804139757,0.46676725804139757,0.5850358667476464,0.5850358667476464,1.2148197663238816,1.2148197663238816,0.7946251330537676,0.7946251330537676,0.2980362343052,0.3124682541560544,0.24781668436979282,0.509575781766152,0.5075263556356567,0.18627792763267403,0.268213117173231,0.20914638987856385,0.49263373841409225,0.47602932619234184,10.611949295364596,10.611949295364596,9.548748351356707,9.548748351356707,12.172998124037775,12.172998124037775,35.97482842639329,35.97482842639329,18.310948169913004,18.310948169913004,6.845701426778845,7.029496069298574,6.274667109273324,10.428739578181194,10.384806718865505,5.719393973288092,6.493774255015666,5.90722083859707,10.071011310337965,9.73243951300661,161.24773728297995,161.24773728297995,0.0,179.1641525366444,0.0,161.24773728297995,179.1641525366444,0,0
+2017/07/07 09:00:00,192.43546490916097,0,837.6268905827068,0,0,0,14.719505619642552,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.857961182791139e-09,20.861525903653394,0,0,0.0,464.97818920099337,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6361.827062367363,6001.903465947418,317.96987346826336,77.1311190528041,162.07803184334034,1528.1278432374843,18095.126651397426,16.61708697126929,18.13292400425753,77.10773077616102,1480.4477000830518,16168.143411963387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044595876090445345,0.0014109824336117668,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7651373080903259,0.7651373080903259,0.651583894048244,0.651583894048244,0.7900971231065946,0.7900971231065946,1.1493994688096427,1.1493994688096427,0.9711524466206474,0.9711524466206474,0.4403356088207362,0.4467049472010155,0.4066421259101932,0.576833734659496,0.5251238162701488,0.3845227025777278,0.4087258060628162,0.38436492274601486,0.5786825472291943,0.5107160023856053,17.333147652223076,17.333147652223076,13.91621570049027,13.91621570049027,18.15839965061147,18.15839965061147,32.81276648950008,32.81276648950008,24.920906700600966,24.920906700600966,9.044852706153705,9.16352972690325,8.446032682208255,11.97144732747121,10.767955075301131,8.079353456597289,8.481653165001262,8.076813018381728,12.016623318254943,10.453260736115482,192.43546490916097,192.43546490916097,0.0,213.81718323240108,0.0,192.43546490916097,213.81718323240108,0,0
+2017/07/07 10:00:00,223.43961199905667,0,922.7592066283398,0,0,0,14.856108788934426,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.804340067795359e-09,18.613784324761884,0,0,0.0,461.384623965266,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,786.016293578256,0.0,136.945735234564,7498.868524854613,15047.793738161921,309.29876304114003,0.0,0.0,1768.2834674101264,12364.04077895726,114.68521844839759,0.0,0.0,1872.831884330435,11242.55487299441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04912838365478889,0.0015543878135292023,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9764891798483691,0.9764891798483691,0.7693494005685405,0.7693494005685405,0.9233224052430974,0.9233224052430974,1.212749186939127,1.212749186939127,1.043896614962803,1.043896614962803,0.5079348173937109,0.447285972574764,0.4088972625872292,0.6155891319619471,0.5021078403530779,0.4948109838220519,0.4293388631996886,0.4080147304518911,0.6382097213415383,0.5021593845727185,25.14025763794008,25.14025763794008,17.4705516252249,17.4705516252249,23.004857900543442,23.004857900543442,35.87282731681282,35.87282731681282,28.004016470146524,28.004016470146524,10.393548285701485,9.174442521532058,8.484592490652403,12.94947653419608,10.269526518891851,10.116288983002462,8.844057910903288,8.46947644034421,13.550453765870401,10.270617155775014,223.43961199905667,223.43961199905667,0.0,248.2662355545074,0.0,223.43961199905667,248.2662355545074,0,0
+2017/07/07 11:00:00,270.99874124522006,0,1001.9903492921998,0,0,0,46.358984523054836,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.85796118279114e-09,20.8658483249323,0,0,0.0,487.38023786030976,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5052.82075420526,1875.119447798279,4143.469876175618,7671.210005342474,35361.08332886759,5952.823412866305,3323.9823356934194,4756.9821340897815,4634.713123830461,36883.67894624649,6033.878251830982,3360.679900349989,4948.297579079185,4860.977211918227,36709.99368120896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05334670837724838,0.0016878526673329327,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0255456354765262,1.0255456354765262,0.8939971036826782,0.8939971036826782,0.9857218909424155,0.9857218909424155,1.1655498990678212,1.1655498990678212,1.0568007168275348,1.0568007168275348,0.5079967361776706,0.47013247846036116,0.4352467051841457,0.5802307352677999,0.4908134105031817,0.5162697703170498,0.46963872164960563,0.44734666343128976,0.6022061800302134,0.49478411939323846,27.207553723429044,27.207553723429044,21.875278701159274,21.875278701159274,25.52233922689524,25.52233922689524,33.581385816837326,33.581385816837326,28.571424041694954,28.571424041694954,10.394874050870484,9.615061844223362,8.951286384052324,12.05456760364497,10.033313169470176,10.573501942020087,9.60530154856042,9.17558325210608,12.604376691600038,10.115729066800455,270.99874124522006,270.99874124522006,0.0,301.10971249468895,0.0,270.99874124522006,301.10971249468895,0,0
+2017/07/07 12:00:00,263.9260271712339,0,940.6142293507069,0,0,0,59.83874354586852,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.804340067795359e-09,18.57558574037313,0,0,0.0,461.4944704313611,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7196.539056881697,2262.8481307942143,5040.621558840289,7100.931861270835,40468.70705631848,9118.401010485908,4599.616537573585,6833.355028707843,5606.1394282466545,50556.97193064977,9456.095431955118,4713.010290723174,7190.897597200376,5836.810731188924,50953.11664166614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05007899828986208,0.0015844645979498564,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0926907769770082,1.0926907769770082,0.9451191862102772,0.9451191862102772,0.9922890301764675,0.9922890301764675,1.1333039205487632,1.1333039205487632,1.062294071686512,1.062294071686512,0.5543323719629826,0.4914623284761272,0.45805984594916865,0.570739923775979,0.508085839107008,0.5787589453246353,0.5011265832600902,0.4768399396710843,0.5907857748160603,0.5189474263791042,30.18068283313326,30.18068283313326,23.86681797669455,23.86681797669455,25.79610286752805,25.79610286752805,32.05496936670646,32.05496936670646,28.814790411812268,28.814790411812268,11.433507357699582,10.046735545389737,9.379428340489412,11.823594176516451,10.396782156381306,12.01849330715261,10.248785756397211,9.748692116013117,12.316031080238503,10.631950963282748,263.9260271712339,263.9260271712339,0.0,293.251141301371,0.0,263.9260271712339,293.251141301371,0,0
+2017/07/07 13:00:00,266.3903860647835,0,877.7624952172794,0,0,0,64.75443628850086,0.0,16.630907756533322,0.0,129.2730206906943,0,39.380909295966944,2.749798097788816e-09,16.351112030338253,0,0,0.0,434.1330888104778,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8225.661055546763,3327.1002855700845,5790.010695932013,6733.696067206956,43044.71892644818,10140.703382753487,5498.532864044892,7529.66772178793,5995.644090333683,52663.10148118293,10599.582061551822,5694.47133374372,7949.051069630461,6235.147050443335,53496.85505947578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046732725409899915,0.0014785908565724635,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0864964303051339,1.0864964303051339,0.9871504259854134,0.9871504259854134,0.9983043591531939,0.9983043591531939,1.1173087759189444,1.1173087759189444,1.0581058996084935,1.0581058996084935,0.5612394087622028,0.5188351946917805,0.4697135135159812,0.5611974841205524,0.5080552798011224,0.5881423051045412,0.5364985275842716,0.491904457942999,0.5820212189422946,0.5201277173314052,29.899721074629454,29.899721074629454,25.581749847268867,25.581749847268867,26.04830816801669,26.04830816801669,31.31022829552542,31.31022829552542,28.629148399372255,28.629148399372255,11.59629809499451,10.629494893181032,9.606779315149382,11.595303740161057,10.396127701734173,12.250094752858885,11.02274763842459,10.055891072811946,12.098579965002799,10.657813371229707,266.3903860647835,266.3903860647835,0.0,295.98931784975946,0.0,266.3903860647835,295.98931784975946,0,0
+2017/07/07 14:00:00,240.36158774168402,0,860.0631390690722,0,0,0,54.789179374160376,0.0,16.630907673226492,0.0,115.5196477718057,0,39.380909295966944,2.694326007213968e-09,14.040943623830143,0,0,0.0,451.9240851748148,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6737.4582949744245,3434.2786493669078,5401.791186255367,6305.5176265800565,38625.21187127664,8066.655932969393,4903.547666266362,6091.836845372178,4995.236598669096,41644.184135843396,8441.270548843107,5154.338814627553,6507.638339779509,5200.654220649571,42239.88358748477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04579039857853827,0.0014487762924841668,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0431649553573918,1.0431649553573918,1.0149138526857295,1.0149138526857295,0.9952529356720702,0.9952529356720702,1.110059686973136,1.110059686973136,1.040510591235208,1.040510591235208,0.5304357484017217,0.5316599576087198,0.4634550318012943,0.5468571153832483,0.4860519492112082,0.5484576751007351,0.5543421936925286,0.4836097223303384,0.56398796813826,0.4932116803083989,27.97202525272968,27.97202525272968,26.75181063048595,26.75181063048595,25.920198631461233,25.920198631461233,30.975495581297352,30.975495581297352,27.85612904247344,27.85612904247344,10.886244622324384,10.91367933431782,9.483955613585792,11.259654897743971,9.935382060968138,11.296675415583664,11.433737375689873,9.885531380429683,11.661653833836354,10.083010144652619,240.36158774168402,240.36158774168402,0.0,267.06843082409335,0.0,240.36158774168402,267.06843082409335,0,0
+2017/07/07 15:00:00,232.16147716485355,0,839.4987116338824,0,0,0,53.338502564888735,0.0,16.568294279967066,0.0,108.75639138185811,0,39.380909295966944,2.694326007213968e-09,14.117379639478287,0,0,0.0,431.35965773962494,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6750.127150192031,4915.311911195117,5806.215414702567,6160.755666575577,39575.643750709896,7415.378436993749,5648.383162082026,5723.256885722709,4797.5467399455,37287.87067342301,7712.970909560861,6014.242128698446,6121.126353508687,4997.371703137527,37942.414260269834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04469553322968026,0.001414135516030403,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.027506654131225,1.027506654131225,1.1078062935679995,1.1078062935679995,0.9948873910743591,0.9948873910743591,1.1030951243123457,1.1030951243123457,1.0347313005071526,1.0347313005071526,0.5090453777032838,0.5793035364018871,0.4529930704569859,0.5319132092491569,0.4648237476873912,0.524692289055407,0.6119913740520772,0.47355942002846124,0.548414410166627,0.47280988769156446,27.292073697666012,27.292073697666012,30.87180189641127,30.87180189641127,25.904875542369524,25.904875542369524,30.65556267403781,30.65556267403781,27.604681169726504,27.604681169726504,10.417352065672986,12.031830547901194,9.282404772388574,10.919362843130827,9.510672709498138,10.758399196562678,12.855938907845058,9.683093191486563,11.295673249111559,9.668170285677121,232.16147716485355,232.16147716485355,0.0,257.95719684983726,0.0,232.16147716485355,257.95719684983726,0,0
+2017/07/07 16:00:00,245.21708611143674,0,890.8748567239791,0,0,0,43.48088313064802,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.694326007213968e-09,14.08351645206073,0,0,0.0,429.50027406090527,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5257.908402111982,4664.1660698364585,5116.558059843672,6102.21434241043,36118.36613342568,5276.115860973563,4699.729640303139,4350.308531609901,3373.4971534333777,29773.13943738206,5506.570114531454,5112.805053511939,4781.865833578459,3506.059062848732,30299.285675228763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04743083724893019,0.0015006786285352881,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.021158521703368,1.021158521703368,1.1206947860590315,1.1206947860590315,1.0075872321321764,1.0075872321321764,1.104092125341927,1.104092125341927,1.0550524290605574,1.0550524290605574,0.4895022280048007,0.583276589058305,0.4494185940484819,0.5163083647768475,0.45987828560066313,0.5006655234971601,0.6143984924036329,0.46870915766155424,0.5277063254684072,0.46741866430014195,27.01898529742499,27.01898529742499,31.467179610045633,31.467179610045633,26.440206479709033,26.440206479709033,30.701261694680284,30.701261694680284,28.494198227433316,28.494198227433316,10.006247838951595,12.129521514985981,9.214621772529227,10.574342195041822,9.414519073457967,10.239054737347402,12.91845906501014,9.586954982073152,10.825311476160124,9.56154657609575,245.21708611143674,245.21708611143674,0.0,272.4634290127075,0.0,245.21708611143674,272.4634290127075,0,0
+2017/07/07 17:00:00,254.7313782843303,0,922.7616086029419,0,0,0,45.859409505640436,0.0,17.028300508570425,0.0,133.89528835348938,0,39.380909295966944,2.804340067795359e-09,18.567470617858696,0,0,0.0,461.38702593986807,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4754.227622953008,3009.7302838767027,4845.207031175745,5993.864335706516,37071.06673511293,5521.911157474846,4034.927044169873,4848.048590286385,3428.4577754106867,35549.63548602935,5607.265112930989,4221.256698821404,5164.178896648957,3459.6762239771797,35810.78607373014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04912851153769587,0.0015543918596552372,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0111930904367152,1.0111930904367152,1.0252464137183903,1.0252464137183903,0.9994628703172554,0.9994628703172554,1.0896355513221327,1.0896355513221327,1.0672750893186937,1.0672750893186937,0.4827661538388987,0.520766163496049,0.4463170452717131,0.5070708456276711,0.4763358740718364,0.4860796400473,0.5302727115477176,0.4575243450084921,0.51018191880639,0.4808026260994203,26.59331319624016,26.59331319624016,27.19466977721916,27.19466977721916,26.09703923267699,26.09703923267699,30.041939169457663,30.041939169457663,29.036389415518286,29.036389415518286,9.868372286535404,10.67182805837841,9.156252249912981,10.375066771194597,9.738582391577722,9.93594876158366,10.882595838913332,9.369121823998583,10.441767934920406,9.82855092325687,254.7313782843303,254.7313782843303,0.0,283.034864760367,0.0,254.7313782843303,283.034864760367,0,0
+2017/07/07 18:00:00,249.2509407834422,0,930.3809202382848,0,0,0,56.528754909064666,0.0,16.86091083164338,0.0,110.93442390708215,0,39.380909295966944,2.9624779099805822e-09,25.545941836722495,0,0,0.0,504.4966900877552,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4890.661824090393,3590.3660399957303,5625.941548351376,5985.517907952611,39379.79726990211,7257.402499704903,5531.7098856214925,7126.351233309514,4441.5305640410315,48017.11155659171,7313.945495273142,5732.277971628718,7509.03285448091,4446.619142858881,48250.79409421495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04953416933283645,0.0015672265895266765,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0255017875941654,1.0255017875941654,1.0927184653424433,1.0927184653424433,1.0424338729511335,1.0424338729511335,1.0898521089693711,1.0898521089693711,1.0801176534937695,1.0801176534937695,0.512619296294131,0.5875969240059132,0.5012613313822132,0.5353374553908027,0.5139456276268954,0.5168433228401256,0.6056742563067493,0.5183187162246127,0.5388505062388498,0.5194200869825931,27.2056655056775,27.2056655056775,30.18194168353557,30.18194168353557,27.940078735965173,27.940078735965173,30.05176287910993,30.05176287910993,29.611782972836977,29.611782972836977,10.494317519229796,12.236528995011739,10.251631453310821,10.996482938626002,10.523021024601164,10.585995584881616,12.693060152294294,10.618199341037098,11.076130881197628,10.642300614845325,249.2509407834422,249.2509407834422,0.0,276.9454897593802,0.0,249.2509407834422,276.9454897593802,0,0
+2017/07/07 19:00:00,236.9889554203417,0,895.2537758349882,0,0,0,51.217774076024796,0.0,17.602640988533366,0.0,101.68988858149199,0,39.380909295966944,3.0133920532893303e-09,27.0977424753112,0,0,0.0,504.85989819700274,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3524.5610198651266,3432.18392562772,5379.469405086661,5420.990478124185,33960.16148724396,6090.157753017658,5283.1604396340645,6988.506218001573,3621.964949620174,44751.706149748476,6063.35289056563,5490.718696090026,7429.604571727507,3552.2191863106123,44747.36861627318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0476639741458949,0.0015080549174454284,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.004162130286024,1.004162130286024,1.1121357853619085,1.1121357853619085,1.0685489918847726,1.0685489918847726,1.065112715995091,1.065112715995091,1.0723576861079462,1.0723576861079462,0.5009301035578007,0.6019359044048262,0.5233330225921946,0.5206154723715848,0.5220010077507315,0.4990264730625432,0.6167783446979388,0.5395019561750006,0.517455532636385,0.5247707134885374,26.295228391703134,26.295228391703134,31.07118164275758,31.07118164275758,29.093205114179483,29.093205114179483,28.940079912213562,28.940079912213562,29.26341406897683,29.26341406897683,10.24463777873008,12.597487299754903,10.72835184104622,10.668518610471239,10.698984478832415,10.204535695129351,12.980518244462388,11.090959327391346,10.599346999149418,10.760135253320286,236.9889554203417,236.9889554203417,0.0,263.32106157815747,0.0,236.9889554203417,263.32106157815747,0,0
+2017/07/07 20:00:00,232.9507618778096,0,845.083276134363,0,0,0,41.3748246836901,0.0,22.86433515186604,0.0,106.16168237671882,0,39.380909295966944,2.9106707083336987e-09,23.169010366657,0,0,0.0,490.1797510089218,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1771.9305146743172,978.0809405541634,2906.2576126819613,4884.400897227456,26528.043484870715,4539.091170375489,3498.6362185430316,5204.23940251399,2481.9749898808072,39314.53767633091,4393.761737491503,3543.9200393856963,5461.014968136096,2296.6560903508775,38914.75024335153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04499285958021001,0.0014235427145076016,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9948736148973362,0.9948736148973362,1.015996936832285,1.015996936832285,0.99890626141785,0.99890626141785,1.0477858504045472,1.0477858504045472,1.0658039221436904,1.0658039221436904,0.5004910749715122,0.5468145654286728,0.4946540756214222,0.5177487427445886,0.5309078732544977,0.49468024438883257,0.5505411122072471,0.49893701845587746,0.5102910405374137,0.5300890749528899,25.904298164914138,25.904298164914138,26.79804540559374,26.79804540559374,26.07361994044672,26.07361994044672,28.174396585809646,28.174396585809646,28.970847353190862,28.970847353190862,10.235375263131132,11.258672243774,10.11301909753476,10.605747232527861,10.896817323077698,10.11356436717928,11.345031098608018,10.202655086738744,10.444115093481855,10.87848740927764,232.9507618778096,232.9507618778096,0.0,258.8341798642329,0.0,232.9507618778096,258.8341798642329,0,0
+2017/07/07 21:00:00,218.33966253307676,0,812.2801593710234,0,0,0,24.266245372153275,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9624779099805822e-09,25.60945490979575,0,0,0.0,492.86698675812636,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,1171.8268855577867,4117.33196561017,18125.790859896,1702.4188470115985,1456.3699449982591,2365.866619161021,654.1358170929446,24231.597026379033,1441.5453965062186,1352.5352892273634,2466.2891476063583,373.02065254670373,23391.875321378087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043246397346242534,0.0013682858668094702,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9823858517288013,0.9823858517288013,0.9735160471683144,0.9735160471683144,0.9866855866967725,0.9866855866967725,1.0268736797051365,1.0268736797051365,1.0548241034573163,1.0548241034573163,0.49312142985916907,0.5332461808103977,0.482406577347901,0.508739032345476,0.5243532026060836,0.48214050716293233,0.5258457327112082,0.48026006875292815,0.4959829762538387,0.5194055647492537,25.38390357565602,25.38390357565602,25.017919502866135,25.017919502866135,25.56240929020217,25.56240929020217,27.264776920955967,27.264776920955967,28.484120676047823,28.484120676047823,10.08113547614262,10.949323361281998,9.861067446249152,10.41078052459774,10.750896011649232,9.855665789301398,10.78395945009838,9.817576909191075,10.140746333545806,10.641982483629263,218.33966253307676,218.33966253307676,0.0,242.59962503675195,0.0,218.33966253307676,242.59962503675195,0,0
+2017/07/07 22:00:00,143.60724963503682,0,643.8165198469403,0,0,0,7.061180262863719,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8579611827911384e-09,20.793111763993192,0,0,0.0,484.10993354049174,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2535.6188409814727,0.0,0.0,0.0,0.0,0.0,11014.959205650895,0.0,0.0,0.0,0.0,9774.62115901689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034277268395839465,0.0010845088788173259,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8257928408071619,0.8257928408071619,0.806407982353885,0.806407982353885,0.8704799056096918,0.8704799056096918,0.9765912264337591,0.9765912264337591,0.985702022325604,0.985702022325604,0.47165832377404104,0.522128229730045,0.48726759052862767,0.46319922024703164,0.5253654074259123,0.44188450292547304,0.4969700117201871,0.4782046516486336,0.42635352359045336,0.5170213234378337,19.38450052803448,19.38450052803448,18.71198169701752,18.71198169701752,20.99471881533971,20.99471881533971,25.144462710638848,25.144462710638848,25.521513473118716,25.521513473118716,9.645290271958132,10.70178606604486,9.960291662790084,9.478971166828188,10.77330846798958,9.073552083939347,10.161389995501821,9.77611827472289,8.790443264851575,10.589875849689491,143.60724963503682,143.60724963503682,0.0,159.56361070559646,0.0,143.60724963503682,159.56361070559646,0,0
+2017/07/07 23:00:00,92.89013265508692,0,479.1773271209258,0,0,0,5.51018574488977,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6379145305132715e-09,11.868965848720965,0,0,0.0,425.9417983521096,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1442.1341736837414,0.0,0.0,0.0,0.0,0.0,8925.901707407798,0.0,0.0,0.0,0.0,7621.391673500024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025511755825758802,0.0008071741711662571,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7009314990147881,0.7009314990147881,0.6834843771787783,0.6834843771787783,0.7457380657837468,0.7457380657837468,0.9275452366351126,0.9275452366351126,0.8532167758204029,0.8532167758204029,0.44662106715581534,0.4997346533928529,0.45860624703864245,0.4397963825890669,0.4994505781616378,0.40637104417648073,0.4642405467646141,0.4428987257109456,0.3901377752337945,0.48949678311348477,15.3328193558782,15.3328193558782,14.819932123691189,14.819932123691189,16.71010812492888,16.71010812492888,23.17037103030313,23.17037103030313,20.362828318273486,20.362828318273486,9.161955494513919,10.219436006887136,9.38995737129676,9.034885605582545,10.213456381912621,8.441412209931244,9.49927886218677,9.09240042864461,8.170454941653617,10.006135600674867,92.89013265508692,92.89013265508692,0.0,103.21125850565213,0.0,92.89013265508692,103.21125850565213,0,0
+2017/07/08 00:00:00,44.0745176782729,0,451.56918829991156,0,0,0,0.31050868567940837,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,3.0259585396535753,2.580554402129185e-09,9.5524163855593,0,0,0.0,398.33365953109535,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117.37499832040872,106.41605082749045,159.5141501760711,819.3795427643049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024041878065395525,0.0007606682634176808,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8196720632927111,0.8196720632927111,0.8208617061638802,0.8208617061638802,0.8322509438568808,0.8322509438568808,0.9010099353839137,0.9010099353839137,0.868948207499031,0.868948207499031,0.5849942494094605,0.6678298009515248,0.5701174936760004,0.6028513325598284,0.6951892355907819,0.532848682995807,0.6224016940529413,0.5459883164687223,0.5422084134480137,0.6673541563659485,19.170443904013837,19.170443904013837,19.211924993205628,19.211924993205628,19.61205874165546,19.61205874165546,22.142237190929876,22.142237190929876,20.938155266135425,20.938155266135425,12.171968093692271,14.370943554647198,11.808582933825022,12.620834603744399,15.162564072452298,10.940380954825798,13.128134310452936,11.239606302572128,11.152761173526812,14.357467649897913,44.0745176782729,44.0745176782729,0.0,48.97168630919211,0.0,44.0745176782729,48.97168630919211,0,0
+2017/07/08 01:00:00,23.722085702012887,0,53.27162085609969,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249902783350952,0,0,0.0,17.781268343555556,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028362205530234595,8.973604128885246e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8397335441646818,0.8397335441646818,0.8545145033170993,0.8545145033170993,0.8468966024136779,0.8468966024136779,0.9387452878920549,0.9387452878920549,0.963203416587024,0.963203416587024,0.5681688665695177,0.6692343055070027,0.5462162969090391,0.5976436748695408,0.7498503739989972,0.5269306009445966,0.6344388197104864,0.5296790238965802,0.5483660855092171,0.7083036276150411,19.877899861255457,19.877899861255457,20.40990048789361,20.40990048789361,20.13457870448046,20.13457870448046,23.61280449844884,23.61280449844884,24.59623619739925,24.59623619739925,11.76169625899702,14.41079298010358,11.244864063639213,12.488502289493056,16.840836500998435,10.808052635299518,13.448727630496705,10.869318768167929,11.294553977755683,15.553485817991614,23.722085702012887,23.722085702012887,0.0,26.35787300223654,0.0,23.722085702012887,26.35787300223654,0,0
+2017/07/08 02:00:00,28.34441766323931,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250545767664127,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8725159904186187,0.8725159904186187,0.8898092940641316,0.8898092940641316,0.8759143887871934,0.8759143887871934,0.9661958260438198,0.9661958260438198,1.0220097203112646,1.0220097203112646,0.595475128103081,0.6924323327647424,0.56869699947452,0.6259586642966053,0.7732851571667377,0.552097151443869,0.6596739045289256,0.5504178642766361,0.5768402253085554,0.7252905735222326,21.070058417920308,21.070058417920308,21.716816220164645,21.716816220164645,21.196186878222434,21.196186878222434,24.718169451003007,24.718169451003007,27.05551590844503,27.05551590844503,12.43374424300768,15.081329247274937,11.774387598861168,13.222215258948125,17.59962511677294,11.38126884476435,14.14122818177023,11.34216533091734,11.971605667963075,16.07086650232408,28.34441766323931,28.34441766323931,0.0,31.49379740359923,0.0,28.34441766323931,31.49379740359923,0,0
+2017/07/08 03:00:00,23.72223804388885,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251426202110591,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8546424870829574,0.8546424870829574,0.8738163901211853,0.8738163901211853,0.8549966851451135,0.8549966851451135,0.9393579606238224,0.9393579606238224,1.0383535355787807,1.0383535355787807,0.5818162398478203,0.6784878258158031,0.5524798257508198,0.6144814731182263,0.7989044130435882,0.5368913134345383,0.6458683790287149,0.5341043393329682,0.5661487085480942,0.7391830970057117,20.4145466014957,20.4145466014957,21.118265422654233,21.118265422654233,20.427408374128518,20.427408374128518,23.63715083160868,23.63715083160868,27.7621359499733,27.7621359499733,12.093534267595103,14.675473949461761,11.39019681786462,12.920618809367724,18.455915637733895,11.0316460948671,13.758956619189362,10.968652467706093,11.713262340681894,16.503227698084075,23.72223804388885,23.72223804388885,0.0,26.35804227098761,0.0,23.72223804388885,26.35804227098761,0,0
+2017/07/08 04:00:00,46.39728000088412,0,88.72588128136032,0,0,0,0.03960822462129288,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,8.768678842704418,0.0,0.5250945214953254,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,155.18008263687017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8853009697761137,0.8853009697761137,0.9029815334812127,0.9029815334812127,0.8848688267239783,0.8848688267239783,0.9428807994063001,0.9428807994063001,0.9798746142766447,0.9798746142766447,0.5115721038242683,0.5624812742014574,0.4955922118525062,0.5296825642752024,0.6070865112950536,0.47455270243381154,0.5327863146086982,0.47274177849006777,0.49074715693648097,0.5789182997709652,21.547026538601017,21.547026538601017,22.217650302951085,22.217650302951085,21.530795111040135,21.530795111040135,23.777430078527942,23.777430078527942,25.279977223614083,25.279977223614083,10.47170868751543,11.625786820506647,10.132585197956686,10.869397899007197,12.72932301372154,9.702906386531694,10.938978490271651,9.66681545761027,10.031943787687908,12.022394625775746,46.39728000088412,46.39728000088412,0.0,51.55253333431569,0.0,46.39728000088412,51.55253333431569,0,0
+2017/07/08 05:00:00,77.23958794248072,0,212.9421150752648,0,0,0,0.32883602686716545,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,4.46915995170074,0.0,0.5775847747130882,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1322.982982544862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.975648099057986,0.975648099057986,0.9816921745938546,0.9816921745938546,0.9755998753313921,0.9755998753313921,0.9970738989637238,0.9970738989637238,1.0168305572902516,1.0168305572902516,0.6144175095944793,0.6910457093956985,0.5887539421983216,0.6407456967181366,0.7677703235785873,0.558610469350327,0.6405655795438839,0.5545892221889221,0.5809632193130836,0.7269003143635184,25.105614237835667,25.105614237835667,25.355171800073137,25.355171800073137,25.10362877311597,25.10362877311597,25.99660649934367,25.99660649934367,26.833660927749875,26.833660927749875,12.918954000255525,15.040595156017034,12.265323911542879,13.619212643588313,17.41895135040444,11.534093242916114,13.614319855479266,11.439523984565128,12.072556177628314,16.1205396843107,77.23958794248072,77.23958794248072,0.0,85.82176438053413,0.0,77.23958794248072,85.82176438053413,0,0
+2017/07/08 06:00:00,94.79814794391864,0,632.2047333868975,0,0,0,0.5307044131265667,0.0,7.704079434343948,0.0,80.56906512710079,0,5.469430288219091,2.5222559699403098e-09,0.5248686786060043,0,0,0.0,401.5174420553607,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2178.50662783402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03365904828377914,0.0010649488254067033,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0270006366661655,1.0270006366661655,1.0280711829351186,1.0280711829351186,1.026340127781478,1.026340127781478,1.0270735563335693,1.0270735563335693,1.0521960967532344,1.0521960967532344,0.7792725995971395,0.8562075374189054,0.7528830031844677,0.808132727534795,0.9604381974991948,0.6959209292354617,0.7876589153955387,0.6908109394971162,0.719801493881679,0.9145524867588374,27.27025070238183,27.27025070238183,27.316431283572456,27.316431283572456,27.241779216184952,27.241779216184952,27.2733949218821,27.2733949218821,28.368264029067532,28.368264029067532,17.79724963306778,20.471416617500367,16.937706482304037,18.77117648686867,24.483871246287876,15.184179269707329,18.076616806203177,15.033706670854912,15.902323509100029,22.663409103302442,94.79814794391864,94.79814794391864,0.0,105.33127549324293,0.0,94.79814794391864,105.33127549324293,0,0
+2017/07/08 07:00:00,130.8232131678164,0,664.068454686594,0,0,0,15.575217950794805,0.0,6.007946662624969,0.0,69.33401494192633,0,39.380909295966944,2.5222584209651017e-09,0.5251243139810999,0,0,0.0,397.89081084251296,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3137.9699716148534,0.0,157.93577710079092,0.0,1373.758315065576,0.0924952862776675,24012.359489020637,0.0,0.025795031997049793,1047.337485106711,0.21279482581403136,23440.155430285584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03535549640744577,0.0011186232615176266,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8895699496864673,0.8895699496864673,0.8532829818025613,0.8532829818025613,0.9393534711189714,0.9393534711189714,1.0595979812852374,1.0595979812852374,1.0734328770816106,1.0734328770816106,0.6664754145637012,0.701094467133959,0.6454121409020461,0.6828174119955044,0.739522893528964,0.6294315520817655,0.667630419517797,0.6302418743380663,0.6395984651705964,0.727127061310356,21.70778129774162,21.70778129774162,20.365228099600742,20.365228099600742,23.636972373868787,23.636972373868787,28.695213484185928,28.695213484185928,29.311556522600767,29.311556522600767,14.332597013154952,15.337672055209211,13.746464532075024,14.80058665842617,16.513906664183324,13.314601903917406,14.365293511425008,13.336233595972104,13.588072762767567,16.127545569000517,130.8232131678164,130.8232131678164,0.0,145.35912574201822,0.0,130.8232131678164,145.35912574201822,0,0
+2017/07/08 08:00:00,183.53086209238003,0,722.5558957436779,0,0,0,44.183989884920756,0.0,11.541431746919748,0.0,87.89947186453183,0,39.380909295966944,2.5222584212675583e-09,0.5250592975185121,0,0,0.0,403.1427231307807,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262.3273269954413,0.0,1226.6703943500124,4482.619055446627,21664.608834373103,5183.557679571525,3511.7635292505647,5456.805837547261,3433.933800642856,49834.15322555045,4776.355772790516,3259.254747949359,5322.41156697478,3160.9874690850556,48169.62923662673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.038469411091362433,0.001217145351539163,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0161841316382598,1.0161841316382598,0.9772565008063946,0.9772565008063946,1.0354905091297415,1.0354905091297415,1.0945114527729074,1.0945114527729074,1.1038921009241325,1.1038921009241325,0.6217685154975952,0.6446530585816571,0.6026655447693364,0.647875063182354,0.6385808095797462,0.6071100420582695,0.6265393049101615,0.5986359666155212,0.6283392369910669,0.6343483746561304,26.80604083753731,26.80604083753731,25.171886792650284,25.171886792650284,27.63764333121422,27.63764333121422,30.263515828388947,30.263515828388947,30.692090579304733,30.692090579304733,13.111444462643732,13.725700380963332,12.616093284694486,13.814008039776212,13.560497802615714,12.72992795278546,13.237625176206691,12.513626744097081,13.285487448669471,13.44629530426269,183.53086209238003,183.53086209238003,0.0,203.92318010264447,0.0,183.53086209238003,203.92318010264447,0,0
+2017/07/08 09:00:00,229.3847011612308,0,862.6976990205233,0,0,0,49.38625487768134,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.910694477666396e-09,23.144012897631804,0,0,0.0,490.0489976388099,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2273.1353339601546,944.7980366261443,3133.730018587697,5261.402098069042,32087.34157785026,6076.934057781305,4011.8310918270927,5985.820541279528,3957.4598529369196,48356.0854208528,5904.114128390728,3845.3392110075797,6064.888629454251,3787.5030593048873,46909.47177924802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04593066450178964,0.0014532142085224265,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0943460105898775,1.0943460105898775,1.0627170261030439,1.0627170261030439,1.0926531432137268,1.0926531432137268,1.1103074469692875,1.1103074469692875,1.1182790859378648,1.1182790859378648,0.6157181042926568,0.6345928071491579,0.5969382046799883,0.6408910937224567,0.6145423114282507,0.614101366466918,0.6299303083938915,0.5991931498419776,0.6384123486762878,0.6116603267766204,30.255984215477127,30.255984215477127,28.83357281011355,28.83357281011355,30.17897185786316,30.17897185786316,30.98690708647031,30.98690708647031,31.355166088638384,31.355166088638384,12.952840098210771,13.45286960959669,12.470666040137445,13.623163302884194,12.922202441809958,12.910728199992263,13.327912918546005,12.527753149252689,13.55593742577257,12.847360276977824,229.3847011612308,229.3847011612308,0.0,254.8718901791453,0.0,229.3847011612308,254.8718901791453,0,0
+2017/07/08 10:00:00,263.8610278946682,0,926.1834969280029,0,0,0,57.036390824507,0.0,14.932575465546352,0.0,131.64086955684016,0,39.380909295966944,2.857984760068489e-09,20.870282748949688,0,0,0.0,464.8089142649292,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6998.60662845587,2448.4615815811794,5733.306862462806,7927.33668388443,48225.00338127758,7638.140013992014,4124.812695817574,5903.385837131751,5645.523674032866,46066.311282481096,7788.927944724049,4063.7880979400616,6123.890114099275,5784.81820072097,45466.925413129036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04931069540673762,0.001560156030279086,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.186639406958933,1.186639406958933,1.1103565355405614,1.1103565355405614,1.1247567232271558,1.1247567232271558,1.2322213295396363,1.2322213295396363,1.1632666128419762,1.1632666128419762,0.657861511240918,0.640306618397666,0.6045937596204355,0.7058969610687691,0.617618438157253,0.6669553979202858,0.6386781533560427,0.6087859192684605,0.7223913791393505,0.6204277025961097,34.59711599798037,34.59711599798037,30.989168287174294,30.989168287174294,31.655962191299707,31.655962191299707,36.83675246764252,36.83675246764252,33.472228731396356,33.472228731396356,14.090572438622829,13.607287778071708,12.665374389153527,15.481190412494627,13.002483977223392,14.346177623451169,13.563133540769371,12.773073933754304,15.981684732626448,13.076159625648557,263.8610278946682,263.8610278946682,0.0,293.1789198829647,0.0,263.8610278946682,293.1789198829647,0,0
+2017/07/08 11:00:00,287.82518352497357,0,1004.6411578799523,0,0,0,73.8556937255963,0.0,14.932575465546352,0.0,136.4899973586286,0,39.380909295966944,2.9106944776663946e-09,23.166007676324597,0,0,0.0,490.0310464480623,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8567.224241499196,4119.994077933355,8523.20993491915,7888.293161784096,62229.19723006754,9947.785739100287,6028.866076047036,9004.832361293726,6622.153058367481,62483.37378002251,10186.544485193164,6040.335449788409,9346.11847466784,6763.8383384395975,62445.68046664563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05348783938993191,0.0016923179541978087,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1777876500719537,1.1777876500719537,1.1644955650564228,1.1644955650564228,1.1637126148425352,1.1637126148425352,1.1706389119800793,1.1706389119800793,1.1986893408487134,1.1986893408487134,0.654072491205895,0.6644927899744639,0.6286960870919712,0.681566832942721,0.6344554380296209,0.660866148440377,0.6681873626974504,0.6372130973654694,0.6885897642492558,0.6384367586587925,34.16915574364832,34.16915574364832,33.53096127539692,33.53096127539692,33.49353810815212,33.49353810815212,33.825252918056194,33.825252918056194,35.183422786936305,35.183422786936305,13.98513053522582,14.276606518027975,13.294993201522544,14.764365206789265,13.449174583226167,14.17462857665241,14.381080401107752,13.52350826619434,14.968652083246042,13.556598148056239,287.82518352497357,287.82518352497357,0.0,319.80575947219285,0.0,287.82518352497357,319.80575947219285,0,0
+2017/07/08 12:00:00,266.37854388505787,0,969.1829298649398,0,0,0,63.95209178430653,0.0,15.081368022671555,0.0,124.80122689546741,0,39.380909295966944,2.910694477666394e-09,23.162947883734738,0,0,0.0,490.0631709455939,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6236.417439865118,2540.3977095618006,6907.756237839684,7078.104676186519,55293.62769323119,7671.0306485779,4522.336140297309,7452.373175593015,4781.598856138729,56552.83741828269,7801.829043635606,4506.41779346288,7819.603515705517,4756.085790547956,56243.178193961954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05160001706626677,0.0016325885717977542,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.178436068793354,1.178436068793354,1.171941808071721,1.171941808071721,1.161679715531301,1.161679715531301,1.153420385124713,1.153420385124713,1.2041193076730388,1.2041193076730388,0.6557131909568448,0.6660913023289274,0.6309047646926375,0.6807216937701108,0.6431413942316616,0.6578391126283737,0.6658144758397395,0.6346527529974713,0.6830003922380765,0.6459500165444427,34.20042552753759,34.20042552753759,33.887815450481554,33.887815450481554,33.39645880173261,33.39645880173261,33.00336392747373,33.00336392747373,35.44900459896235,35.44900459896235,14.030712008857193,14.321736159575835,13.353950752415187,14.739925116163178,13.684424312450787,14.089947295786686,14.313912794751758,13.454482320902201,14.805892123827817,13.76119285774169,266.37854388505787,266.37854388505787,0.0,295.97615987228653,0.0,266.37854388505787,295.97615987228653,0,0
+2017/07/08 13:00:00,276.3356456511753,0,908.4547932151527,0,0,0,78.83753744432413,0.0,14.728125842506467,0.0,122.5097643007467,0,39.380909295966944,2.857984760068489e-09,20.879308764773086,0,0,0.0,464.8253868083511,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10540.602234770373,4644.133417319918,8816.542389665963,7318.318181462449,62143.81346457107,12310.898774166406,7059.136018229075,10085.219131241905,6896.483256754204,67208.81934447927,12868.29038041337,7263.427103113128,10641.058398283145,7064.123509816347,67965.41156589786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04836680608929642,0.001530292030220375,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.245924202908104,1.245924202908104,1.208266134720365,1.208266134720365,1.180309877705682,1.180309877705682,1.1672254171750345,1.1672254171750345,1.2038681566129428,1.2038681566129428,0.7083469645915523,0.6996046940023383,0.651335151345723,0.6988584208914346,0.6463809071242972,0.7300518669535725,0.7126513692926014,0.664477292658006,0.7104235483194092,0.655980603771107,37.521223821176655,37.521223821176655,35.65239616566893,35.65239616566893,34.29086039458582,34.29086039458582,33.66158947430148,33.66158947430148,35.43670202239332,35.43670202239332,15.554789934999405,15.29335376510599,13.909342214147586,15.271189392100027,13.7730007254915,16.21811256596797,15.684723595548661,14.276169535184266,15.617374399411432,14.038152255579618,276.3356456511753,276.3356456511753,0.0,307.03960627908367,0.0,276.3356456511753,307.03960627908367,0,0
+2017/07/08 14:00:00,278.3104699246925,0,869.372366343904,0,0,0,93.39811780340231,0.0,14.728125842506467,0.0,108.75639138185811,0,39.380909295966944,2.8043634363927068e-09,18.61495039569997,0,0,0.0,461.2333124496464,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15006.708284918835,9817.004139748025,12455.649091307361,7712.552554316233,79254.66201182314,14101.109054804603,10164.630618996414,11652.392285213584,8958.460616857848,69444.45491039965,14631.408794360697,10515.041491071295,12044.015906968703,9196.617325331687,71250.31110631315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046286028734057016,0.0014644576851220628,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.218480018830055,1.218480018830055,1.2539158518568547,1.2539158518568547,1.1703249841681795,1.1703249841681795,1.1620979654893444,1.1620979654893444,1.192359269551389,1.192359269551389,0.6758686053662164,0.7164539998889342,0.6289729014157078,0.6781239512399174,0.6180357873971913,0.6948126225250715,0.7376941587819272,0.6415640412999019,0.6899661411423929,0.6300645472529826,36.155433229551754,36.155433229551754,37.92268100419948,37.92268100419948,33.810186455116934,33.810186455116934,33.41642150650043,33.41642150650043,34.87489395222518,34.87489395222518,14.600179642115535,15.800174964622812,13.302370771034887,14.664995951146395,13.013407700121547,15.15144743922886,16.45649248231655,13.641460260834563,15.008938783252944,13.331497383989984,278.3104699246925,278.3104699246925,0.0,309.23385547188053,0.0,278.3104699246925,309.23385547188053,0,0
+2017/07/08 15:00:00,271.4967269024793,0,869.3768282098455,0,0,0,88.82150393537192,0.0,14.970053882089037,0.0,106.31215624428707,0,39.380909295966944,2.8043634363927068e-09,18.580128339505684,0,0,0.0,461.23777431558807,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13032.294450966538,11479.025871786367,11706.386426990905,7527.290076349774,74109.75813243308,12125.840512258781,10706.216494961413,10581.849720257462,8243.794246626047,63520.44818312005,12446.57874134986,11176.976784889435,10894.335566793497,8434.093977307894,65485.28853243123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04628626628710468,0.0014644652011349027,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.171376027604598,1.171376027604598,1.3082965156940067,1.3082965156940067,1.1490848344885347,1.1490848344885347,1.1529497714755403,1.1529497714755403,1.1762998056824594,1.1762998056824594,0.6330406062270014,0.7379199574222014,0.6028826980020324,0.6520626353817303,0.5946298752162162,0.6448492265481446,0.7670577726325709,0.6141069185303336,0.6627387681395817,0.6073502409318025,33.860641419630824,33.860641419630824,40.6959627851625,40.6959627851625,32.797873890559174,32.797873890559174,32.98102981335697,32.98102981335697,34.097452818364445,34.097452818364445,13.411165331200948,16.463573792329726,12.62163520010651,13.929452268167594,12.412456013912646,13.731064020547862,17.395701809799235,12.910872622979923,14.227213839053334,12.736104464254993,271.4967269024793,271.4967269024793,0.0,301.66302989164365,0.0,271.4967269024793,301.66302989164365,0,0
+2017/07/08 16:00:00,280.86597324421075,0,911.9985454013645,0,0,0,86.41824505150161,0.0,15.144900860842633,0.0,120.17895923267236,0,39.380909295966944,2.7498212407653895e-09,16.310983598023025,0,0,0.0,450.6239627382908,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12439.236336039747,12764.173673443453,11707.302374088351,7694.1712645278985,74080.37598721776,10988.328203976844,10881.092403032073,9966.77948316309,7499.3569478716945,59380.777289742466,11188.08608875534,11425.590179102708,10220.478926784719,7657.7946856673725,61188.3324780047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048555478080571216,0.0015362614805090827,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.150255512219938,1.150255512219938,1.3462069808715018,1.3462069808715018,1.1421579915521873,1.1421579915521873,1.1528693032681212,1.1528693032681212,1.1767700306091478,1.1767700306091478,0.600579876389926,0.7526458890108119,0.5799000261094409,0.6212965471305587,0.5719346471391814,0.6102969996105339,0.7885824205073695,0.591094010903985,0.6314056696502067,0.5836132627730696,32.85330147678742,32.85330147678742,42.66800612512566,42.66800612512566,32.47080219258325,32.47080219258325,32.97721169639735,32.97721169639735,34.12010691094156,34.12010691094156,12.562969670629997,16.930118254194895,12.046453572246321,13.099015244195229,11.852454593843945,12.812081671501673,18.10756350757623,12.323739185811519,13.367351149540568,12.137831260157853,280.86597324421075,280.86597324421075,0.0,312.0733036046786,0.0,280.86597324421075,312.0733036046786,0,0
+2017/07/08 17:00:00,296.74593658087383,0,920.148276661558,0,0,0,80.15569533434375,0.0,16.798297355077125,0.0,138.40412594678773,0,39.380909295966944,2.804363436392707e-09,18.574933443439555,0,0,0.0,458.77369399848436,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10525.865031278014,12615.714899379664,11181.953061032093,7312.431001341214,67026.5263445841,9862.091158566618,10800.859653684429,9789.910182843469,6588.88025378551,55423.48071251793,10029.86612654206,11393.63273159383,10110.419304113788,6731.815021299391,56831.45899891251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048989375809424196,0.0015499897021983248,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1296361905205312,1.1296361905205312,1.3643794124064552,1.3643794124064552,1.1597779793395264,1.1597779793395264,1.1411969463165599,1.1411969463165599,1.1667474071018482,1.1667474071018482,0.5788342556724627,0.7682102478690932,0.5851945557028845,0.5996129636925202,0.5590344423477128,0.585189124276473,0.8050759891595047,0.5980484588067705,0.6066972113214962,0.5690502182842964,31.8834571955948,31.8834571955948,43.623196187021215,43.623196187021215,33.305759032431226,33.305759032431226,32.42554450899598,32.42554450899598,33.638699303166675,33.638699303166675,12.020336919223155,17.433316282088185,12.176926370036469,12.538405695044077,11.54410484314576,12.176791900406002,18.666352481520207,12.498746106193195,12.719318208801866,11.782882403594002,296.74593658087383,296.74593658087383,0.0,329.71770731208204,0.0,296.74593658087383,329.71770731208204,0,0
+2017/07/08 18:00:00,297.62055890399404,0,927.1237244023096,0,0,0,91.45921492501236,0.0,17.540027511967114,0.0,120.14191543460078,0,39.380909295966944,2.9625018550600832e-09,25.666516531030027,0,0,0.0,501.2394942517799,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10472.090013657604,12823.554710210652,12771.303502475253,7222.721619513641,67623.39570231315,12026.854772796147,12310.033807432168,13173.611205408139,7734.9229096317,69663.38174205046,12143.512839391085,12858.125095151943,13595.50316691955,7847.720877600422,70862.98106358734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04936075381390246,0.0015617398433881934,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1188345717593342,1.1188345717593342,1.3615859641587886,1.3615859641587886,1.1964542288252646,1.1964542288252646,1.1303542900092134,1.1303542900092134,1.1593299500914527,1.1593299500914527,0.5787081572070099,0.7851384640627466,0.6190015043980313,0.5971110587360264,0.5711383967926037,0.5845890218688538,0.8205685839343814,0.6394223706855767,0.6030418148219757,0.5813040311627321,31.38090627046975,31.38090627046975,43.4759779093734,43.4759779093734,35.07434986471404,35.07434986471404,31.91700282245648,31.91700282245648,33.284407466712565,33.284407466712565,12.017250143022068,17.992340674973306,13.038713413352568,12.475034273794293,11.833213035335447,12.161942628959423,19.2016987294799,13.583297995238922,12.625697281432807,12.08093387854612,297.62055890399404,297.62055890399404,0.0,330.6895098933267,0.0,297.62055890399404,330.6895098933267,0,0
+2017/07/08 19:00:00,281.84327192740267,0,883.1347070284884,0,0,0,88.21574872514665,0.0,17.736728077583987,0.0,110.89738010901058,0,39.380909295966944,2.9625018550600832e-09,25.612505716731945,0,0,0.0,492.7408293905029,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7727.240848175598,10194.794367029763,12053.355860275446,6594.8563917074025,56876.20453806575,11742.637648998969,12483.430129150613,14246.41163247462,7177.679512944954,74818.01359875184,11866.8834310266,13070.921265706162,14914.427350682163,7236.576100848401,75752.98480879674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047018745945961775,0.001487640346960701,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.097066270637145,1.097066270637145,1.3097965685629547,1.3097965685629547,1.2045846200435837,1.2045846200435837,1.1121656853600947,1.1121656853600947,1.1490609023752785,1.1490609023752785,0.5809338467020566,0.786050788258588,0.6491678331943992,0.5915158402150237,0.590789666398568,0.5837427451752052,0.814688803848126,0.6697107059524048,0.592991450314995,0.5987310206737996,30.37994071697109,30.37994071697109,40.77342573355462,40.77342573355462,35.47180258631913,35.47180258631913,31.07256076980326,31.07256076980326,32.796741239118404,32.796741239118404,12.07183438772762,18.02281482697971,13.849566388549533,12.334294616545264,12.316128371919348,12.141028440773454,18.997332127850555,14.424329091736652,12.371279549604196,12.51603572007184,281.84327192740267,281.84327192740267,0.0,313.1591910304474,0.0,281.84327192740267,313.1591910304474,0,0
+2017/07/08 20:00:00,242.33442270578934,0,844.9577838994753,0,0,0,63.787277398827754,0.0,21.170389358753855,0.0,94.88958839347283,0,39.380909295966944,2.910694477666394e-09,23.10625825585725,0,0,0.0,490.0542587740341,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4687.047778620433,4461.321801576189,6313.553762541834,5660.359790592813,42041.94778249275,7758.626611790457,7886.441375888806,10200.606907587295,4432.32435960894,55319.03215967109,7725.801296821548,8970.911601609245,10711.730652475051,4330.921557359009,55624.72471757854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044986178280671654,0.0014233313228474579,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0763976462983829,1.0763976462983829,1.1417805843800108,1.1417805843800108,1.0861043751069746,1.0861043751069746,1.0869931992743094,1.0869931992743094,1.130185768648178,1.130185768648178,0.5688358342187131,0.6834051190775574,0.6153950015805175,0.5752015362850732,0.5858952074260751,0.5665839381738422,0.7309971082084143,0.6258383082838114,0.5711290190820374,0.587896157784896,29.44451681254975,29.44451681254975,32.45302575030155,32.45302575030155,29.88198293414608,29.88198293414608,29.92220452982484,29.92220452982484,31.90912892832769,31.90912892832769,11.777725886597409,14.817632218588614,12.944415026631006,11.931687592392933,12.194283630017097,11.723682146250724,16.247460723814115,13.219022899735762,11.832986584842672,12.243970509510248,242.33442270578934,242.33442270578934,0.0,269.26046967309924,0.0,242.33442270578934,269.26046967309924,0,0
+2017/07/08 21:00:00,239.86846098572286,0,812.1591070178773,0,0,0,48.048038575781455,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,2.9625018550600832e-09,25.61087895546283,0,0,0.0,492.7459344049801,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2162.6450264015903,2069.432772515326,3908.624700477914,4818.7387630669355,30721.6438834933,5214.153335008057,5660.355876261579,7108.671173792484,2643.9904297325547,44236.71774372588,5053.268608386075,6018.034736567968,7379.060442084453,2422.86388544034,43921.3871026893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04323995242929675,0.0013680819541297834,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0560269890974214,1.0560269890974214,1.111226631254906,1.111226631254906,1.0674791802391101,1.0674791802391101,1.0634944433841336,1.0634944433841336,1.1132656191919286,1.1132656191919286,0.5582510307683148,0.6619825213364214,0.575249804674854,0.56270597348485,0.5825349441085155,0.552048121803065,0.668424675061027,0.5768667237205553,0.5546218510025624,0.5811605156173393,28.53723320593562,28.53723320593562,31.029261521532277,31.029261521532277,29.045487945951677,29.045487945951677,28.86811268424482,28.86811268424482,31.123315627203368,31.123315627203368,11.525611648633955,14.205959293500044,11.932861733583024,11.631129564813307,12.111233663947374,11.380125418777382,14.387811243797756,11.972252120211323,11.44028850788581,12.07740542234555,239.86846098572286,239.86846098572286,0.0,266.5205122063587,0.0,239.86846098572286,266.5205122063587,0,0
+2017/07/08 22:00:00,163.5272504800453,0,620.9589634438876,0,0,0,26.908285422658512,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,2.8043634363927063e-09,18.611588652611296,0,0,0.0,461.252377137439,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,96.01024111926714,2982.9632699215376,8258.618715699395,2514.5675100720164,3596.005895534512,4331.777279285345,875.240544088188,30393.241754608876,2233.617931162102,3672.2187239207956,4425.089191766457,557.917091380355,29577.329083442222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03306031516219653,0.0010460053267912425,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9496394914825341,0.9496394914825341,1.0197163434119259,1.0197163434119259,1.0162242440666542,1.0162242440666542,1.0087905030028705,1.0087905030028705,1.0414033837996457,1.0414033837996457,0.5458586666557547,0.6355493279850493,0.5603514773309604,0.5487619969821962,0.5696281753664335,0.5344894838030272,0.6336307726227286,0.5557103897856707,0.5356942067823038,0.5645976253892331,24.04793599272027,24.04793599272027,26.957153347074353,26.957153347074353,26.80775428301591,26.80775428301591,26.491243639412517,26.491243639412517,27.895081942422692,27.895081942422692,11.236617280011131,13.47862130106546,11.575254718276867,11.303726862067947,11.796793767993819,10.977337806269517,13.427009509822383,11.465820436327505,11.004546823665393,11.676194770632222,163.5272504800453,163.5272504800453,0.0,181.6969449778281,0.0,163.5272504800453,181.6969449778281,0,0
+2017/07/08 23:00:00,91.76282067975927,0,482.4773081664146,0,0,0,2.1447190248610126,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6943489073128784e-09,14.10712059336564,0,0,0.0,429.2417793975984,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1132.193435008759,0.0,0.0,0.0,0.0,0.0,3609.235610384233,0.0,0.0,0.0,0.0,2298.7020752625253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025687449260938588,0.0008127329889869188,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6923209171983604,0.6923209171983604,0.7590567445631933,0.7590567445631933,0.7784894662168704,0.7784894662168704,0.9515145221570056,0.9515145221570056,0.834015802108147,0.834015802108147,0.43713593176375065,0.602478372117593,0.524140920228279,0.39784036894605973,0.5567754013659814,0.40466101580274005,0.5859456597695785,0.5101542019307154,0.3567455524916253,0.5480869520319953,15.078053182397994,15.078053182397994,17.136127985273944,17.136127985273944,17.77131437525786,17.77131437525786,24.1233006092113,24.1233006092113,19.674549428461617,19.674549428461617,8.985892503081885,12.611318138761249,10.74620123555232,8.297617334434918,11.49085025019211,8.412338024884178,12.19553430922393,10.441171839598866,7.648472904027528,11.288090809744318,91.76282067975927,91.76282067975927,0.0,101.95868964417697,0.0,91.76282067975927,101.95868964417697,0,0
+2017/07/09 00:00:00,45.9944159658245,0,477.58202745155785,0,0,0,0.9716982603915613,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,2.0465975056855363,2.637937170161516e-09,11.79048613230939,0,0,0.0,424.34649868274164,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166.16720592122311,205.3140538593595,175.59951548160666,709.0430123133406,2152.555473208126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025426820889712556,0.0008044868889942881,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8512353163209099,0.8512353163209099,0.8890630946116659,0.8890630946116659,0.8797539641368697,0.8797539641368697,0.9300355643399926,0.9300355643399926,0.9002846651823465,0.9002846651823465,0.6039540070523289,0.8443226340563564,0.6820510408272179,0.5797472014964857,0.7513255140033028,0.5465085592940935,0.8158176104833051,0.6528318488304556,0.5102798448187625,0.7258397378156245,20.29109024847166,20.29109024847166,21.68865593873737,21.68865593873737,21.33926061357772,21.33926061357772,23.268313432083815,23.268313432083815,22.114535502328593,22.114535502328593,12.649005775080838,20.042097657750176,14.778381655182159,12.042705585578787,16.88790707732545,11.251607611179907,19.036453781903035,13.950740812198319,10.443874254985161,16.08780001864632,45.9944159658245,45.9944159658245,0.0,51.10490662869389,0.0,45.9944159658245,51.10490662869389,0,0
+2017/07/09 01:00:00,23.72208967295051,0,48.02369975291215,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249942492727182,0,0,0.0,12.533347240368018,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0025568173463196083,8.089591858884353e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8642969102092933,0.8642969102092933,0.9673963132434801,0.9673963132434801,0.9076807908010555,0.9076807908010555,0.9404296367366888,0.9404296367366888,1.0088969231303102,1.0088969231303102,0.5927266155876804,0.8731298944471619,0.6671469816907788,0.5783326592652718,0.809436396508608,0.540920729535326,0.860278410702347,0.6456423969787266,0.5158784821569896,0.7684047390313083,20.766982628369334,20.766982628369334,24.767184435352547,24.767184435352547,22.398031203303745,22.398031203303745,23.67977282575221,23.67977282575221,26.495760110303777,26.495760110303777,12.364634730562855,21.092807724172715,14.351601065043042,12.008062379738021,18.816002897894037,11.123317383687734,20.61981769475571,13.752767960313975,10.564986713825363,17.439669671428405,23.72208967295051,23.72208967295051,0.0,26.357877414389456,0.0,23.72208967295051,26.357877414389456,0,0
+2017/07/09 02:00:00,28.397107690675774,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5777446042028791,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8940627588850538,0.8940627588850538,1.019114709172815,1.019114709172815,0.9408639560153917,0.9408639560153917,0.9682359642282444,0.9682359642282444,1.0958542584713813,1.0958542584713813,0.5979207480793983,0.8798174287908537,0.6689893375919449,0.5843105111076407,0.8338034160470819,0.5380594335806795,0.8637393126905515,0.6389228975711321,0.5151799503012943,0.7832060473087131,21.877768723025056,21.877768723025056,26.93138178189099,26.93138178189099,23.69705926109819,23.69705926109819,24.801500098128088,24.801500098128088,30.324680599968232,30.324680599968232,12.495513378840684,21.341630578140894,14.403836457384998,12.155056311464989,19.66702229186194,11.05814903053188,20.746522453021683,13.56976219679261,10.549801703087297,17.927909408028952,28.397107690675774,28.397107690675774,0.0,31.552341878528637,0.0,28.397107690675774,31.552341878528637,0,0
+2017/07/09 03:00:00,23.72187392378427,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5247785001064762,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8380326560224881,0.8380326560224881,0.9524776638122651,0.9524776638122651,0.8764831621108443,0.8764831621108443,0.8913505616326858,0.8913505616326858,1.0597745032482302,1.0597745032482302,0.5594359264513041,0.8374035399238392,0.6277603663398069,0.5455841673696307,0.8484406026021497,0.4967931649084182,0.8224290154616605,0.5941835500282073,0.4739914442644068,0.7825356541972056,19.81726531189659,19.81726531189659,24.162066768022584,24.162066768022584,21.21734279907065,21.21734279907065,21.77505299823197,21.77505299823197,28.703034637890127,28.703034637890127,11.55359258130511,19.79486872461554,13.270079275502525,11.230291216975075,20.190186048726417,10.157688182787012,19.266665574749084,12.401227540770861,9.691705634696348,17.905594028200426,23.72187392378427,23.72187392378427,0.0,26.357637693093633,0.0,23.72187392378427,26.357637693093633,0,0
+2017/07/09 04:00:00,44.07763619937302,0,88.72588128136032,0,0,0,0.008729639539794963,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,6.479898647114602,0.0,0.5251095006555381,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,21.80015421295173,12.519857506608744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9016043039628049,0.9016043039628049,0.9509068651462392,0.9509068651462392,0.9338960808339342,0.9338960808339342,0.9455419825392887,0.9455419825392887,0.9862972229245278,0.9862972229245278,0.4781062841859729,0.5973414168723306,0.5052378586371038,0.4721404697416531,0.5931682440472337,0.44447084367343626,0.5791961147299194,0.4815902466027726,0.4350022451398314,0.5689132838538368,22.164955019991666,22.164955019991666,24.098861390662606,24.098861390662606,23.420633570806046,23.420633570806046,23.883724213274093,23.883724213274093,25.546257002007806,25.546257002007806,9.774138730552252,12.480857721575433,10.335963582645704,9.6548629018817,12.375717075856386,9.121704102961331,12.029198731839543,9.844504296668148,8.946819661931599,11.779588529911251,44.07763619937302,44.07763619937302,0.0,48.975151332636685,0.0,44.07763619937302,48.975151332636685,0,0
+2017/07/09 05:00:00,83.66319614867442,0,212.9421150752648,0,0,0,0.7850567571857515,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,10.489194806406836,0.0,0.5249373958820195,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1756.1318713491373,0.0,0.0,1279.7478469896607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0142514600938488,1.0142514600938488,1.0054599898174659,1.0054599898174659,1.0150683194423868,1.0150683194423868,1.0296899193241256,1.0296899193241256,1.0261104354581236,1.0261104354581236,0.46789121524602995,0.5488397813971209,0.4859595707702816,0.46403668619701627,0.5386430104596076,0.4393134185577866,0.520813121727917,0.46094762887045526,0.433529535149889,0.5216703841013353,26.723555999537624,26.723555999537624,26.350112239875315,26.350112239875315,26.758401835567852,26.758401835567852,27.38633979401206,27.38633979401206,27.2318820258984,27.2318820258984,9.57084226069216,11.305529849946055,9.933491750005558,9.495299546237518,11.071411677476675,9.025969066929804,10.672859546366666,9.435220849246818,8.919964921475056,10.691707007935392,83.66319614867442,83.66319614867442,0.0,92.95910683186047,0.0,83.66319614867442,92.95910683186047,0,0
+2017/07/09 06:00:00,102.73643805996711,0,634.0731913506137,0,0,0,0.5595754462499526,0.0,6.709615452659847,0.0,80.56906512710079,0,14.373154442561718,2.522277620587884e-09,0.5250275888725701,0,0,0.0,403.3859000190768,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2331.4552677568245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033758526369746654,0.0010680962427047694,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0551117154664058,1.0551117154664058,1.0298517743512114,1.0298517743512114,1.0487121240537087,1.0487121240537087,1.0895735983666506,1.0895735983666506,1.0358167027499037,1.0358167027499037,0.47445215545132025,0.5443205445481295,0.49108330504375775,0.4901146059646499,0.5386348826314823,0.45215429631648213,0.5180128897379656,0.4702169348565591,0.4714869295379984,0.5220452486105583,28.49681524348246,28.49681524348246,27.393335161248828,27.393335161248828,28.215055770427895,28.215055770427895,30.039129093686782,30.039129093686782,27.65181200382719,27.65181200382719,9.7008988214576,11.201212099100914,10.038893524699745,10.018879260480901,11.07122685926079,9.266449690199963,10.611516256921945,9.616732381189749,9.641889788111186,10.699958638494138,102.73643805996711,102.73643805996711,0.0,114.1515978444079,0.0,102.73643805996711,114.1515978444079,0,0
+2017/07/09 07:00:00,115.98041920607157,0,659.8503279387152,0,0,0,1.0038638003209814,0.0,5.736479982307201,0.0,69.33401494192633,0,39.380909295966944,2.5222800198680157e-09,0.5251511830278417,0,0,0.0,393.6726840946342,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4274.446006255957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03513092021499411,0.0011115178273309752,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7919120589134861,0.7919120589134861,0.792838545702964,0.792838545702964,0.8767044005160336,0.8767044005160336,1.1484050466679743,1.1484050466679743,0.982789712293692,0.982789712293692,0.47623026383480915,0.5853570287044081,0.5610806693567664,0.555749068539604,0.6737592705975015,0.4297157222266297,0.5465175805409632,0.5326129724983948,0.5322962549202926,0.6577504154387517,18.219440371340696,18.219440371340696,18.250654249279307,18.250654249279307,21.225575509091726,21.225575509091726,32.76570816884902,32.76570816884902,25.400639817285423,25.400639817285423,9.736465622316288,12.180949419916956,11.59253356816997,11.466728600595644,14.539758747649245,8.850853230601246,11.251815822785986,10.935081468135039,10.927964485255444,14.087471980378936,115.98041920607157,115.98041920607157,0.0,128.86713245119063,0.0,115.98041920607157,128.86713245119063,0,0
+2017/07/09 08:00:00,152.31414270652516,0,726.2435503477237,0,0,0,6.053732044968121,0.0,9.43726435414645,0.0,96.91714705112861,0,39.380909295966944,2.522280020164086e-09,0.5250899577927897,0,0,0.0,406.8303777348266,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.76967686192095,0.0,623.6845520041961,7365.7443228409875,13939.012505581955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03866574455395217,0.0012233572054397897,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9615806267434317,0.9615806267434317,0.9087925795582664,0.9087925795582664,0.9837664940684355,0.9837664940684355,1.237932884418339,1.237932884418339,1.029885990613758,1.029885990613758,0.6643719238264457,0.7329848107835615,0.714568420933507,0.8719095384564113,0.842507066541643,0.639028047726181,0.7043295039479125,0.7042142736323929,0.8851086671358496,0.8413312846155463,24.530257733274752,24.530257733274752,22.44083798752071,22.44083798752071,25.441144220305418,25.441144220305418,37.121445417202914,37.121445417202914,27.394814110397007,27.394814110397007,14.273198691973022,16.30930083914066,15.742849171641012,21.04760050289022,19.97703155306047,13.572610883047219,15.434238915993191,15.43079149831648,21.53980264737497,19.934967362048184,152.31414270652516,152.31414270652516,0.0,169.2379363405835,0.0,152.31414270652516,169.2379363405835,0,0
+2017/07/09 09:00:00,164.0931323623318,0,762.7369054394165,0,0,0,17.792556988592665,0.0,9.274480239855507,0.0,97.06762091869685,0,39.380909295966944,2.5222800201641223e-09,0.5775649166975392,0,0,0.0,390.08820405770325,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2096.213663704161,125.38060422715535,1781.8413506387956,8634.415345068404,20906.08445567972,1828.3438257216153,1318.302438839669,1485.3107015336868,2781.612127528171,6278.050558494209,1939.0999692409491,1314.4962349920172,1595.3209404426295,3210.0859277637896,8429.504734340724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04060867780990531,0.0012848302593219479,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0853204949105453,1.0853204949105453,1.0140269862651932,1.0140269862651932,1.0476290004909579,1.0476290004909579,1.246856887696339,1.246856887696339,1.071721361662174,1.071721361662174,0.6610359366640485,0.6848389269545828,0.6496982152126485,0.8341676058664824,0.74801194871188,0.671348560908699,0.6830807086866149,0.6606771777005099,0.8801234341973386,0.7459899445592155,29.84653304221527,29.84653304221527,26.71398470222036,26.71398470222036,28.167514666781585,28.167514666781585,37.56799180898805,37.56799180898805,29.23494136660048,29.23494136660048,14.17939015793226,14.859280331681731,13.864175797575555,19.679930635192292,16.78230424443352,14.470940927840928,14.808221336021674,14.169330504883533,21.353060077636343,16.71809439853432,164.0931323623318,164.0931323623318,0.0,182.32570262481312,0.0,164.0931323623318,182.32570262481312,0,0
+2017/07/09 10:00:00,250.12866932460744,0,948.6696991120542,0,0,0,49.704143665222794,0.0,12.984000736477544,0.0,124.87761316689259,0,39.380909295966944,2.910717745103854e-09,23.18200245713684,0,0,0.0,487.2951164489805,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6128.268264877361,2554.608062397974,5443.047347678239,7863.291990903905,40150.0068755659,6325.865846238957,4132.773869494971,5708.423702517018,5675.021013823474,35971.63988582243,6724.806117877064,4205.053357835131,6054.139658344044,6226.286256298322,36778.85888271417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05050787746669636,0.0015980340361514461,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1218197231551832,1.1218197231551832,1.0834113702507944,1.0834113702507944,1.0912380055669686,1.0912380055669686,1.1827537510689452,1.1827537510689452,1.117176901362537,1.117176901362537,0.6266266924069979,0.6489261120020724,0.6042438042585085,0.7254721320595808,0.63795866482329,0.6399214339189929,0.652750997186255,0.6147022011803516,0.7539558242188262,0.6387730553886596,31.51940768651116,31.51940768651116,29.7602847426365,29.7602847426365,30.114669617170335,30.114669617170335,34.408966158419815,34.408966158419815,31.304123227258913,31.304123227258913,13.23994566401035,13.842912207248304,12.656418282501903,16.076463435913254,13.54366194753257,13.596833492537414,13.948501977708588,12.926365167390102,16.97206943339168,13.565703560470993,250.12866932460744,250.12866932460744,0.0,277.92074369400825,0.0,250.12866932460744,277.92074369400825,0,0
+2017/07/09 11:00:00,285.16914698878566,0,1004.469822319508,0,0,0,66.29930219700915,0.0,13.065493553185489,0.0,143.25325374857618,0,39.380909295966944,2.9107177451038528e-09,23.170188191137036,0,0,0.0,489.85971088761806,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9208.31020274513,4267.642355842335,7971.002721050664,8065.71382322987,54352.14563372116,9255.560376824034,5731.696630428503,7976.124778839071,6980.075668564303,49738.245236081144,9746.693844850746,5834.601617923864,8340.335686480003,7430.73446552514,50406.92377046932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.053478717357784464,0.0016920293394592444,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.168178976334235,1.168178976334235,1.1209023784752743,1.1209023784752743,1.1204686540183735,1.1204686540183735,1.184190249680518,1.184190249680518,1.1532217273511454,1.1532217273511454,0.633312289384176,0.6401429744361135,0.5945299341995849,0.6981969292120038,0.6019506181047543,0.6511289306503621,0.6465043185172652,0.6052244968620423,0.722080574019169,0.6067254926561719,33.707272915916164,33.707272915916164,31.47681447090723,31.47681447090723,31.456685902707548,31.456685902707548,34.47847146057427,34.47847146057427,32.993935290766515,32.993935290766515,13.41845732356326,13.60284553386444,12.409940986002212,15.25156313767583,12.597862273967039,13.90364576837952,13.776384100516538,12.681529728179555,15.972145561060898,12.720044802689273,285.16914698878566,285.16914698878566,0.0,316.8546077653174,0.0,285.16914698878566,316.8546077653174,0,0
+2017/07/09 12:00:00,271.8596849822656,0,940.1640791259312,0,0,0,76.14117905033808,0.0,12.935301236479537,0.0,124.80122689546741,0,39.380909295966944,2.8043863115676723e-09,18.601068501209166,0,0,0.0,461.0443202065853,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10550.177138915229,4874.957672089541,8666.67394231675,7752.350694928223,56556.075961509276,11750.108565241739,6995.963333883876,9897.858946985692,7718.396012432126,60168.62123178639,12410.935060013308,7165.595577728093,10331.127090994558,8121.646412989172,61019.78161071786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05005503195846575,0.0015837063199303878,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1831995115571377,1.1831995115571377,1.12438362909891,1.12438362909891,1.1243767190457556,1.1243767190457556,1.1675148413804883,1.1675148413804883,1.1480155866089432,1.1480155866089432,0.6460123430203165,0.6388121279567105,0.5971197124094011,0.6772336334435829,0.5924849907833198,0.6718487550955652,0.6491873425378789,0.6113377020272974,0.6983714243989939,0.6007941172281555,34.430527796121936,34.430527796121936,31.63859959668929,31.63859959668929,31.638278068334202,31.638278068334202,33.6754523609049,33.6754523609049,32.74728656977784,32.74728656977784,13.762900317205549,13.566761789050034,12.475252996801913,14.639382844463142,12.358574914087896,14.485199140617524,13.850103558711453,12.839004480499327,15.256738521553501,12.56841785268594,271.8596849822656,271.8596849822656,0.0,302.06631664696175,0.0,271.8596849822656,302.06631664696175,0,0
+2017/07/09 13:00:00,267.61916109920594,0,904.6818050635763,0,0,0,71.97663803215212,0.0,12.935301236479537,0.0,124.7641830973959,0,39.380909295966944,2.804386311567673e-09,18.56212943440696,0,0,0.0,461.0523986567747,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10264.966510463279,4833.528411251741,8014.136943820784,7272.242602123065,50970.434809421124,11514.982331614101,6832.311050131261,9333.053634019749,6921.211937968945,55757.089076167395,12272.916242009605,7082.321138321909,9828.509419094953,7277.316310113399,57171.86760199082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04816592940542903,0.0015239364319654097,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1721594519896337,1.1721594519896337,1.1194506474142931,1.1194506474142931,1.101746779542829,1.101746779542829,1.1488675073473311,1.1488675073473311,1.1245860273661368,1.1245860273661368,0.6380068246460943,0.6297905406481886,0.5769125491328989,0.6408758848092307,0.5679583448132446,0.6667123812912203,0.6487848944457474,0.5946884917997329,0.6636688087198461,0.5813540760635718,33.898271327882625,33.898271327882625,31.409466039769868,31.409466039769868,30.593812895465206,30.593812895465206,32.78758896615595,32.78758896615595,31.648017989675466,31.648017989675466,13.544964600688274,13.32418165073949,11.97337014366309,13.622750010482363,11.756640671804362,14.339300483662583,13.839025895647964,12.413931309090344,14.253386879375967,12.082164486712983,267.61916109920594,267.61916109920594,0.0,297.35462344356216,0.0,267.61916109920594,297.35462344356216,0,0
+2017/07/09 14:00:00,252.73813439852816,0,837.1617848201023,0,0,0,71.93388280515231,0.0,12.88660173648153,0.0,111.01081017850728,0,39.380909295966944,2.694371323892365e-09,14.093955177271543,0,0,0.0,429.02273092584477,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10464.26334529469,6454.820337186226,8574.281690544161,7082.108548871403,51642.354969499385,10937.536729079067,7608.800819176587,9014.517799772753,6888.725962429519,51027.62849259517,11609.663987994963,7986.812594188265,9491.662873315963,7240.2100290150465,52701.84946988789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04457111351513735,0.0014101989629899609,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1299076195057913,1.1299076195057913,1.1450313045101932,1.1450313045101932,1.0794931245352564,1.0794931245352564,1.1402783425520957,1.1402783425520957,1.0894712778124687,1.0894712778124687,0.6123795389084635,0.6501385190720037,0.5622120679889697,0.622618906496084,0.5394145276900065,0.6390862164252639,0.677589723003214,0.5815147362137588,0.6441859678470078,0.5533442724548687,31.89613487540177,31.89613487540177,32.606288838332034,32.606288838332034,29.58366788935143,29.58366788935143,32.382313164433455,32.382313164433455,30.034488305464066,30.034488305464066,12.866003719585166,13.876313261669836,11.619388704404514,13.133863784670382,11.088968192882902,13.574186972367372,14.649622891079332,12.086115867275083,13.71293586709568,11.410388137655744,252.73813439852816,252.73813439852816,0.0,280.82014933169796,0.0,252.73813439852816,280.82014933169796,0,0
+2017/07/09 15:00:00,243.18506205124487,0,839.1742838640167,0,0,0,64.59109327374856,0.0,12.935301171685163,0.0,108.75639138185811,0,39.380909295966944,2.694371323892365e-09,14.089391722837505,0,0,0.0,431.0352299697592,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9037.931402016631,6443.511543663141,8029.603281936209,6738.362981529669,48658.41501505353,9176.162739012547,7110.825929260074,7905.374587198322,6055.693114132164,44491.761210098,9664.392295318885,7512.941540039256,8316.640611704115,6352.356186214009,45879.86409745195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044678260454906804,0.001413589017476688,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.101865151545103,1.101865151545103,1.1556124852843077,1.1556124852843077,1.0741149380021369,1.0741149380021369,1.1298444399234644,1.1298444399234644,1.0878121232136477,1.0878121232136477,0.5746412073199438,0.6444635962517729,0.5444373772528555,0.6009370317468157,0.5216720773988541,0.5919285149155723,0.6693429511548519,0.5589502955045214,0.6190422990653847,0.5322202208172292,30.599231475476756,30.599231475476756,33.10748701388826,33.10748701388826,29.342117387205803,29.342117387205803,31.893183721236568,31.893183721236568,29.959287163927243,29.959287163927243,11.918064841523005,13.720521671469882,11.203897808376695,12.572053301598828,10.691744267637091,12.344628444357156,14.413879097170607,11.542117199078149,13.039783290485843,10.926256564226364,243.18506205124487,243.18506205124487,0.0,270.20562450138317,0.0,243.18506205124487,270.20562450138317,0,0
+2017/07/09 16:00:00,249.2818815053611,0,912.5942198437989,0,0,0,59.85432483072529,0.0,11.128561434328732,0.0,124.87761316689259,0,39.380909295966944,2.694371323892365e-09,14.040472774753203,0,0,0.0,451.2196371807252,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8265.40531760358,5192.34837989076,7960.923766462526,6854.156386000889,49096.7756989181,8273.42564918832,6038.929768690876,7471.058297918521,5324.870930200664,41928.844810181836,8700.08062588869,6338.181279992582,7913.275334493273,5553.388458900853,43084.98719996556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04858719222910646,0.0015372648940621526,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1299827451624085,1.1299827451624085,1.1445367456342561,1.1445367456342561,1.1109889823953873,1.1109889823953873,1.1402388534596104,1.1402388534596104,1.1303010389649215,1.1303010389649215,0.5939539666736975,0.6369302280898169,0.5689988674454012,0.6208220987034009,0.5434233718838319,0.6062064166508484,0.6497912713111323,0.5805545233151149,0.6326839333162884,0.5513521739050713,31.899644206970564,31.899644206970564,32.58294989837779,32.58294989837779,31.018308353722716,31.018308353722716,32.380455335264685,32.380455335264685,31.914514651538212,31.914514651538212,12.395455140580253,13.515868242088729,11.781647095361166,13.08653045624601,11.180607919731258,12.70671441693105,13.866740291700395,12.062516421532095,13.401597069961298,11.363906374273498,249.2818815053611,249.2818815053611,0.0,276.9798683392901,0.0,249.2818815053611,276.9798683392901,0,0
+2017/07/09 17:00:00,255.91792979314275,0,921.4173431029407,0,0,0,57.272425132113405,0.0,11.28189544797912,0.0,129.38645076019097,0,39.380909295966944,2.804386311567673e-09,18.596249154087804,0,0,0.0,460.0427604398669,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7387.662270090141,4442.629694987475,7440.956151078379,6735.065496178911,47653.79074421719,7571.509875156976,5395.690845686208,7134.307176996875,4778.90269074496,41706.175705285044,7846.507624967628,5553.762894909005,7479.832830037488,4897.529119761293,42607.62430938995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049056941846769384,0.0015521274445225134,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1272753568424576,1.1272753568424576,1.141408680373421,1.141408680373421,1.1131108696634813,1.1131108696634813,1.1328188762968818,1.1328188762968818,1.141908233191028,1.141908233191028,0.591277612401474,0.6287285097341323,0.5708896279640656,0.6143392692598978,0.5535586882954655,0.5987322526834652,0.6376172795125553,0.5788310998905074,0.6208973790459792,0.5602327439792375,31.773290854111437,31.773290854111437,32.43551297855126,32.43551297855126,31.116172487897714,31.116172487897714,32.03226238633431,32.03226238633431,32.45903768974307,32.45903768974307,12.328332495184597,13.295857147832962,11.8272071227086,12.916917843212573,11.415401371407384,12.516066945738899,13.534430855484302,12.020259660122576,13.088510755315994,11.57244340947814,255.91792979314275,255.91792979314275,0.0,284.35325532571414,0.0,255.91792979314275,284.35325532571414,0,0
+2017/07/09 18:00:00,247.64834038271425,0,894.8644781993512,0,0,0,57.971061026275855,0.0,11.493782792070531,0.0,115.6330778413024,0,39.380909295966944,2.9107177451038528e-09,23.169509424187826,0,0,0.0,468.9802480488215,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6224.59877246596,3531.72113669194,6551.406575552392,6343.827172390995,44620.62281153149,7625.561105427349,5248.658910763145,7469.928231914449,4697.091048935775,46706.75627587321,7767.70971292858,5299.407417989625,7719.601501468904,4713.73916874814,47408.32562447205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047643247651418225,0.0015073991456077448,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.111671264723526,1.111671264723526,1.1210469758882613,1.1210469758882613,1.100348097464803,1.100348097464803,1.1158136607731282,1.1158136607731282,1.1368599290738202,1.1368599290738202,0.5858207846047222,0.6180577957102845,0.5687096268389529,0.6074848976595242,0.5635741450783421,0.5890908338548996,0.6197807770425583,0.573126273729391,0.6096720891235163,0.5693643478621289,31.049759634612556,31.049759634612556,31.483526424791393,31.483526424791393,30.529823069858892,30.529823069858892,31.241046563996235,31.241046563996235,32.22167406063846,32.22167406063846,12.192438940652153,13.013983956780194,11.774691189848056,12.739568143823973,11.651792923607658,12.273719114412458,13.059163031449287,11.881301885181273,12.795937921555918,11.790441670996472,247.64834038271425,247.64834038271425,0.0,275.16482264746026,0.0,247.64834038271425,275.16482264746026,0,0
+2017/07/09 19:00:00,242.00507383497074,0,880.2300577564598,0,0,0,63.50549041280756,0.0,11.776367992913888,0.0,104.13412371906301,0,39.380909295966944,2.9107177451038528e-09,23.208182411308695,0,0,0.0,489.83618011847443,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6177.2325870348195,4187.402421537607,7145.71102214163,6130.878067708664,44201.328363201115,8560.383107425429,6346.738427178898,8974.887049190222,5300.272468658352,52902.89582274273,8588.793312211292,6399.847782186158,9205.268615192852,5262.32234939153,53619.27956890854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0468641002672259,0.0014827474654824282,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0913193799533363,1.0913193799533363,1.1403154649132357,1.1403154649132357,1.1104627122720032,1.1104627122720032,1.1017098303291815,1.1017098303291815,1.121925786456321,1.121925786456321,0.5748060594254738,0.6332187632205866,0.58124676794122,0.5943880635452422,0.5632876570833419,0.5761279511074687,0.6410620366066008,0.5890887818342407,0.5939684099813357,0.5682434493115778,30.118365309372308,30.118365309372308,32.38405969249936,32.38405969249936,30.994059455789312,30.994059455789312,30.592121610930974,30.592121610930974,31.524334102591894,31.524334102591894,11.92207132137878,13.41594671426455,12.07952590460647,12.406371538068967,11.644970606927217,11.954240522893343,13.627809255468378,12.273667963984252,12.395818220348787,11.76348779185922,242.00507383497074,242.00507383497074,0.0,268.8945264833008,0.0,242.00507383497074,268.8945264833008,0,0
+2017/07/09 20:00:00,234.9301909630405,0,815.9199351539905,0,0,0,54.22032744128977,0.0,14.33978020277151,0.0,108.41610117336799,0,39.380909295966944,2.8043863115676723e-09,18.573072846839878,0,0,0.0,461.0164100285493,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4056.3774711708247,2056.2696935878907,4828.935813147892,5483.581129495141,36037.844797262704,7012.156000094106,4718.591600829223,7795.589380302101,4123.938025588378,48779.699635343466,6916.553667911094,5019.878694431535,7961.477071478246,3960.4359960004226,49086.65283375513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0434401817049339,0.0013744170688396243,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0780227926391244,1.0780227926391244,1.084766919961174,1.084766919961174,1.0660887468713123,1.0660887468713123,1.0798639575314988,1.0798639575314988,1.1164912401891134,1.1164912401891134,0.5720197506309069,0.5985172773253191,0.5765280740059747,0.5898604728919719,0.5732848264664062,0.5686943658197916,0.6155238403874942,0.5784788999903919,0.5845412153033982,0.5751604865827223,29.517530220574713,29.517530220574713,29.821511224293403,29.821511224293403,28.983530602688205,28.983530602688205,29.60036042948134,29.60036042948134,31.272390196546837,31.272390196546837,11.854512764724248,12.51061932574622,11.963992753499909,12.292916685082375,11.885144825982792,11.774324280594342,12.947774022559429,12.011639901467888,12.160760348479585,11.930689127196956,234.9301909630405,234.9301909630405,0.0,261.03354551448945,0.0,234.9301909630405,261.03354551448945,0,0
+2017/07/09 21:00:00,198.73032139720993,0,809.2720191147926,0,0,0,15.44130104311023,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,2.910717745103853e-09,23.15902764395747,0,0,0.0,489.85884650189547,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,607.7488139697219,4190.3825261998845,14393.500832967487,160.80504582627648,81.49781531967803,1418.618135303515,0.0,15029.972383321274,0.0,0.0,1370.526760479381,0.0,14610.780096277274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043086241730851266,0.0013632186547761634,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.034431551956843,1.034431551956843,0.9951541034413285,0.9951541034413285,1.0523198737248511,1.0523198737248511,1.0513190745645062,1.0513190745645062,1.103318954150506,1.103318954150506,0.5575065722793461,0.5830141529136471,0.5486604956942756,0.5478870767316076,0.5645020504580552,0.5414962113309741,0.5725391636635377,0.5409487190779184,0.5179184184609198,0.5608177278990965,27.591672970972297,27.591672970972297,25.916055228503723,25.916055228503723,28.373715200702037,28.373715200702037,28.32965555861371,28.32965555861371,30.665819315210342,30.665819315210342,11.508062640542164,12.123047505044823,11.301374528183885,11.283464892081767,11.67391414718162,11.136467296551672,11.867081231511307,11.123956620238843,10.60945263812134,11.586300279536758,198.73032139720993,198.73032139720993,0.0,220.81146821912213,0.0,198.73032139720993,220.81146821912213,0,0
+2017/07/09 22:00:00,127.95126111967738,0,620.7387410496325,0,0,0,0.537325729716874,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,2.8043863115676727e-09,18.61405051270359,0,0,0.0,461.03215474318387,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2164.8063649493383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03304859035880619,0.0010456343621848344,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7952549231762817,0.7952549231762817,0.7415735220884009,0.7415735220884009,0.8452340161383142,0.8452340161383142,0.9999092896748781,0.9999092896748781,0.940644931685726,0.940644931685726,0.3990658684134121,0.419809568316037,0.43456597590628687,0.3747892863003314,0.5034953292771246,0.3632207393138969,0.387761392521307,0.4118065451937633,0.32428456398140765,0.4879440954106685,18.332234638211744,18.332234638211744,16.578458037612762,16.578458037612762,20.074811470390813,20.074811470390813,26.11583080073848,26.11583080073848,23.688340891265227,23.688340891265227,8.318083083668455,8.674256047560135,8.938854620436516,7.924623578245118,10.29892479586627,7.74597671327119,8.131735033435902,8.534659050404827,7.186544466089941,9.97418149290668,127.95126111967738,127.95126111967738,0.0,142.16806791075265,0.0,127.95126111967738,142.16806791075265,0,0
+2017/07/09 23:00:00,85.26919127932997,0,456.8014488390149,0,0,0,0.19578782548406273,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.5805986526130536e-09,9.562422392427052,0,0,0.0,403.5659200701987,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,768.1322477062697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024320447492067652,0.0007694820058986786,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5633977184293826,0.5633977184293826,0.5023806778584861,0.5023806778584861,0.6245411461259456,0.6245411461259456,0.9534896268721056,0.9534896268721056,0.6908999932948097,0.6908999932948097,0.2803024806816866,0.291616284877035,0.3314514096959213,0.24257492208764134,0.4017993500752569,0.2142477634832592,0.22671850884800943,0.28236698760088463,0.159949770193543,0.3791915563972825,11.647591145087802,11.647591145087802,10.275300859796943,10.275300859796943,13.184656471026997,13.184656471026997,24.202837299204077,24.202837299204077,15.036319356478103,15.036319356478103,6.631912095304813,6.76677212540902,7.2846813792089335,6.221183403351034,8.363963504718555,5.952104858576831,6.066417549290904,6.656117996686078,5.530199987686046,7.99410461155415,85.26919127932997,85.26919127932997,0.0,94.74354586592219,0.0,85.26919127932997,94.74354586592219,0,0
+2017/07/10 00:00:00,40.544557946291846,0,461.8743009228316,0,0,0,0.5878751913512861,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.6075991650343816,2.580598652613054e-09,9.5517625909024,0,0,0.0,408.6387721540154,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,660.231019922114,1384.0385848234455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02459052989450541,0.0007780272248488449,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7944615645452517,0.7944615645452517,0.7545313856905478,0.7545313856905478,0.8317086113579788,0.8317086113579788,0.9345701696455513,0.9345701696455513,0.87519813522303,0.87519813522303,0.5185493754136936,0.5563573103064435,0.5385485966039099,0.5100909393116064,0.6440615424889207,0.4209240606304135,0.4582230692765088,0.46055638043832997,0.39439349729614637,0.6065837039409023,18.30542241775059,18.30542241775059,16.99052523557559,16.99052523557559,19.592881845590895,19.592881845590895,23.447291277651402,23.447291277651402,21.1695642526943,21.1695642526943,10.623242506258507,11.481018445148976,11.069264982710251,10.439811401198725,13.709537204397051,8.693913970833378,9.38257227241138,9.427640827306305,8.240399231504597,12.716402367219871,40.544557946291846,40.544557946291846,0.0,45.04950882921316,0.0,40.544557946291846,45.04950882921316,0,0
+2017/07/10 01:00:00,23.722204082815928,0,49.051180501527845,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251086591381317,0,0,0.0,13.560827988983705,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002611521182437748,8.262670983190219e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8184017436576734,0.8184017436576734,0.7989435082453171,0.7989435082453171,0.8290049412891897,0.8290049412891897,0.9377464053782212,0.9377464053782212,0.9905926867938233,0.9905926867938233,0.5341291051890312,0.5851770084447345,0.537672389266269,0.5404863207535512,0.7411506410416341,0.4435247103169258,0.4965065708669608,0.4633213376232342,0.4350936073926219,0.688840867472389,19.12621544718921,19.12621544718921,18.457243624941583,18.457243624941583,19.497463801362272,19.497463801362272,23.57314296453133,23.57314296453133,25.725229506419666,25.725229506419666,10.969210765749807,12.176491944880738,11.04936101379458,11.11340053089971,16.565131472061722,9.104055810912485,10.15169197564579,9.48135025254389,8.948488713276845,14.97599579531176,23.722204082815928,23.722204082815928,0.0,26.35800453646214,0.0,23.722204082815928,26.35800453646214,0,0
+2017/07/10 02:00:00,28.344512698453304,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251496119804058,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8322094297293801,0.8322094297293801,0.8187347225789349,0.8187347225789349,0.83511110666029,0.83511110666029,0.9378273421583578,0.9378273421583578,1.0625028498015925,1.0625028498015925,0.5212053539926337,0.5733488311313535,0.52303757385356,0.5292394440173981,0.7746045629462157,0.4321158727833833,0.4867841044881221,0.4479529076905761,0.42724604962656654,0.7092568789038568,19.610590365340315,19.610590365340315,19.13780214087086,19.13780214087086,19.71339788733944,19.71339788733944,23.576355156677337,23.576355156677337,28.824060953786585,28.824060953786585,10.68147907672072,11.886696455647737,10.721831359608586,10.859497955657005,17.643042922834695,8.894274519445844,9.950376952166863,9.1869867657242,8.806432338166076,15.582190213564246,28.344512698453304,28.344512698453304,0.0,31.49390299828145,0.0,28.344512698453304,31.49390299828145,0,0
+2017/07/10 03:00:00,23.774855412818923,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5777599891411292,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8428820975930015,0.8428820975930015,0.8320233148046823,0.8320233148046823,0.8449339385332916,0.8449339385332916,0.9282297880408927,0.9282297880408927,1.074524993589021,1.074524993589021,0.5332067997562606,0.5866180174311013,0.5336155748872122,0.5426992339144944,0.8012626870941625,0.42682508252292123,0.4822037487082414,0.4416636575507935,0.42361081490539243,0.7290480674935473,19.990460609341994,19.990460609341994,19.604008270505233,19.604008270505233,20.06403644371646,20.06403644371646,23.197269131266424,23.197269131266424,29.36049847878985,29.36049847878985,10.94843711040889,12.212212142234208,10.957639659558325,11.164003037273332,18.536137301651465,8.798886703601937,9.8569494186696,9.069453749058056,8.741523165456968,16.186988325923508,23.774855412818923,23.774855412818923,0.0,26.416506014243247,0.0,23.774855412818923,26.416506014243247,0,0
+2017/07/10 04:00:00,43.80558244402534,0,88.72588128136032,0,0,0,0.06850088666856664,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,3.704141436842619,0.0,0.5248065708800288,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,112.13054824354691,0.0,105.20386633916712,0.0,0.0,0.0,27.76592943353812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8830262602566106,0.8830262602566106,0.8726593298650769,0.8726593298650769,0.882766177517029,0.882766177517029,0.9603738044185848,0.9603738044185848,1.0130124182607514,1.0130124182607514,0.4605467906203541,0.47787682863187403,0.46083633702297444,0.46283431086070037,0.5613202996534452,0.41117980752963074,0.4395903229077151,0.4236826827781623,0.4080218188334804,0.5366054011138767,21.461673573346005,21.461673573346005,21.075368727247323,21.075368727247323,21.451928103795154,21.451928103795154,24.4812581897055,24.4812581897055,26.670748276292258,26.670748276292258,9.427455117553222,9.7695227953389,9.43306401732275,9.47186584446763,11.598216853911296,8.523842729198975,9.031080081651922,8.742800913552387,8.469597717594738,11.025168167311634,43.80558244402534,43.80558244402534,0.0,48.672869382250376,0.0,43.80558244402534,48.672869382250376,0,0
+2017/07/10 05:00:00,75.95549842189436,0,212.9421150752648,0,0,0,0.48669857956092727,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.157858288779438,0.0,0.5248985235981505,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363.79314225701194,200.5703203825519,350.55525905925606,1052.1119881151717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0478988776563993,1.0478988776563993,1.0430412115263246,1.0430412115263246,1.0492151599715693,1.0492151599715693,1.0555711925862492,1.0555711925862492,1.0308100568563832,1.0308100568563832,0.5367907549984449,0.5660419725846834,0.5356568017903446,0.5402021562862853,0.7382921019994331,0.4686345945685453,0.5060050429095447,0.4799531190756086,0.4639711797774613,0.7002513330702024,28.179356301974693,28.179356301974693,27.9666165811024,27.9666165811024,28.237149762163583,28.237149762163583,28.517101730222322,28.517101730222322,27.43477188624979,27.43477188624979,11.029367334425885,11.71070823612665,11.003701075466282,11.106917937297737,16.47524945887858,9.585484962686891,10.352312282749779,9.81137402853797,9.494021254568267,15.312578441608224,75.95549842189436,75.95549842189436,0.0,84.39499824654929,0.0,75.95549842189436,84.39499824654929,0,0
+2017/07/10 06:00:00,86.88521438866618,0,633.809242641264,0,0,0,0.8370579816299032,0.0,8.607945034376671,0.0,73.80580873715317,0,3.109375815853635,2.522298799674194e-09,0.5250268171304903,0,0,0.0,403.1219513097271,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3553.626588705935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033744473544952316,0.0010676516211239034,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0772105749211165,1.0772105749211165,1.0758336855505666,1.0758336855505666,1.0796831911749933,1.0796831911749933,1.150619667559292,1.150619667559292,1.0276665896669686,1.0276665896669686,0.6304074681085656,0.6698701579456273,0.6449129260032327,0.8797070620695483,0.9458214981898256,0.558501767183064,0.5987009478858388,0.5870525599431121,0.834598923895856,0.8872810393126395,29.481027920060697,29.481027920060697,29.419201226858064,29.419201226858064,29.592222879140877,29.592222879140877,32.87055182055869,32.87055182055869,27.298973200820768,27.298973200820768,13.340657655804591,14.428861844894456,13.732806054825119,21.337509252974044,23.894905006976572,11.531527630512883,12.515273536363793,12.223001406649132,19.695225449244745,21.62149631192645,86.88521438866618,86.88521438866618,0.0,96.53912709851798,0.0,86.88521438866618,96.53912709851798,0,0
+2017/07/10 07:00:00,146.63825163793365,0,776.3112084533178,0,0,0,3.0254873524439843,0.0,7.824510821768043,0.0,69.33401494192633,0,39.380909295966944,3.013462833559074e-09,27.07332922281491,0,0,0.0,510.13356460923677,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5876.851172523086,0.0,0.0,0.0074984212726007336,0.0,0.0,3080.4795345452867,0.0,0.0,0.0,0.0,2486.070201638545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04133138375694215,0.0013076961717185922,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5745906145864063,0.5745906145864063,0.492832795928548,0.492832795928548,0.6458127507052621,0.6458127507052621,1.2138384181017279,1.2138384181017279,0.8170797741903257,0.8170797741903257,0.28242784326030074,0.28372294889267063,0.33056336927749047,0.6114377158266197,0.5643834767991474,0.2602061558722147,0.26062118612983814,0.304815240065644,0.6135715844363625,0.5402776452261708,11.916835498482001,11.916835498482001,10.075142377761182,10.075142377761182,13.757432997532803,13.757432997532803,35.92647015937776,35.92647015937776,19.080260801166077,19.080260801166077,6.656834244486987,6.672114189014337,7.2724030110475155,12.84159429756673,11.671085275272858,6.4056730040375385,6.410173294350258,6.930936084043935,12.896953405012013,11.108639711846493,146.63825163793365,146.63825163793365,0.0,162.93139070881517,0.0,146.63825163793365,162.93139070881517,0,0
+2017/07/10 08:00:00,183.41386104297908,0,817.7360218123906,0,0,0,23.898103810738494,0.0,11.323895916778682,0.0,83.2008179303116,0,39.380909295966944,2.9625482214196973e-09,25.610134086220825,0,0,0.0,498.3228491994935,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,8830.645170833286,6970.161602141545,1463.7899405362464,245.77739033214846,1688.0224860455367,5582.349227049832,27022.7185777383,626.7167956239138,0.0,1025.1260045758518,5661.57751879554,25805.003225923698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043536871503814606,0.0013774762666778604,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8247282555493535,0.8247282555493535,0.6827343696153451,0.6827343696153451,0.8396300222753269,0.8396300222753269,1.269897627124457,1.269897627124457,0.9770817367950925,0.9770817367950925,0.4643404300866201,0.4465647899433969,0.4644535461529767,0.7005509438759473,0.5486556203907283,0.44729020362778704,0.40403677503817587,0.4471037997103404,0.7200767645855005,0.5424036237196828,19.34715666828724,19.34715666828724,14.798179343522705,14.798179343522705,19.874205981194407,19.874205981194407,38.73037155434767,38.73037155434767,25.164680976744705,25.164680976744705,9.501229217331186,9.160899472366623,9.503438478401435,15.321492035196485,11.301261552268613,9.17452204223882,8.401755768540369,9.171019396004027,15.910744847515687,11.1572310638212,183.41386104297908,183.41386104297908,0.0,203.79317893664341,0.0,183.41386104297908,203.79317893664341,0,0
+2017/07/10 09:00:00,217.93308214606066,0,837.0550385004908,0,0,0,40.20246384846881,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.858030414263419e-09,20.87618491172677,0,0,0.0,464.4063371187775,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2599.7150853435596,192.99918160727546,1859.6467985190352,8983.726969788408,22488.78071492932,4739.073545700443,2145.720182011236,3989.712910009209,6938.549319314602,36397.47652042233,4426.864342563326,2009.957046961164,3699.6072800822485,7308.991756164018,35986.90698812681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04456543026201352,0.0014100191488226768,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0047432723295704,1.0047432723295704,0.8838232414903593,0.8838232414903593,0.9668668403458662,0.9668668403458662,1.2428964117686776,1.2428964117686776,1.0403064182122503,1.0403064182122503,0.5412770594305452,0.5054629365432879,0.5008334444394064,0.7188175943350484,0.5410800647956198,0.5550600695436876,0.49133711831203825,0.5045788390168378,0.7533085437435931,0.5428922902361997,26.31979584491249,26.31979584491249,21.491554241502214,21.491554241502214,24.745559538535176,24.745559538535176,37.36955640257625,37.36955640257625,27.8472249776775,27.8472249776775,11.131457925291983,10.340757356454148,10.242597773730935,15.87224980777485,11.126956800509205,11.450560847017385,10.04414425241076,10.321940186753736,16.951330846993443,11.168427703668158,217.93308214606066,217.93308214606066,0.0,242.1478690511785,0.0,217.93308214606066,242.1478690511785,0,0
+2017/07/10 10:00:00,267.85577670382827,0,922.202168312271,0,0,0,58.980495577756145,0.0,16.986528298665572,0.0,133.89528835348938,0,39.380909295966944,2.804408686523536e-09,18.612555175145776,0,0,0.0,460.82758564919726,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7598.308045736578,2888.7310809901514,5354.203392250619,9181.345368871926,43787.540888884454,8204.721455073424,4096.618311932821,5878.964071664632,8259.710883319769,44106.691728267084,8501.243602287426,4034.8880513015097,5909.120727403746,8735.360465414618,44546.354837776846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04909872652223939,0.001553449482528063,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0941197836649534,1.0941197836649534,0.972481397617173,0.972481397617173,1.0084338103306247,1.0084338103306247,1.241435510532185,1.241435510532185,1.0714037964593812,1.0714037964593812,0.5538646575315566,0.4966473769797128,0.4864997188401368,0.7037758533728834,0.5208011599079415,0.5710783364630652,0.4931463226991242,0.4917837031020482,0.7343903509848394,0.5288284720276989,30.24568694873541,30.24568694873541,24.975426164178387,24.975426164178387,26.47610870871631,26.47610870871631,37.296463142390564,37.296463142390564,29.220737069900977,29.220737069900977,11.42255865669101,10.154637520293633,9.944549849552303,15.417680240980914,10.672596783087869,11.831762780291953,10.081652511270676,10.053389668139388,16.35313156119608,10.850323849931058,267.85577670382827,267.85577670382827,0.0,297.6175296709203,0.0,267.85577670382827,297.6175296709203,0,0
+2017/07/10 11:00:00,311.62418513010414,0,978.9926057333569,0,0,0,83.38284683937304,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.858030414263419e-09,20.868065014116798,0,0,0.0,464.3824943014671,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13175.269314034094,5986.949413387854,9628.812877889592,9413.218900958225,65935.2885973338,12127.091754502617,6404.715632734391,9203.140115555927,9573.340931349192,59865.296741071434,12701.023430174624,6463.78305460087,9421.373418690731,10016.04859424779,61074.65352276475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0521222914755936,0.0016491129700535608,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.169756022922106,1.169756022922106,1.0374488041074394,1.0374488041074394,1.0696895533415658,1.0696895533415658,1.2230028191553248,1.2230028191553248,1.1205895534024435,1.1205895534024435,0.600950595115008,0.5263669830897504,0.5144524055999876,0.699136027966678,0.5329364846772717,0.6353750694465327,0.5372678724755174,0.5308265021643418,0.7308313592634246,0.5473815208484988,33.78288773988224,33.78288773988224,27.72276317707251,27.72276317707251,29.144122575985392,29.144122575985392,36.37911120915297,36.37911120915297,31.462296054936914,31.462296054936914,12.572398371608543,10.795529226643765,10.534008439052414,15.279431536578784,10.942355617931753,13.473926912855916,11.040183212053918,10.894994421350518,16.242311719909324,11.271772026013068,311.62418513010414,311.62418513010414,0.0,346.2490945890046,0.0,311.62418513010414,346.2490945890046,0,0
+2017/07/10 12:00:00,296.7799936367601,0,939.9020775466876,0,0,0,89.08573015888302,0.0,16.798297433460366,0.0,129.49988082968767,0,39.380909295966944,2.804408686523536e-09,18.58320071350339,0,0,0.0,460.78231862734174,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13242.918746173451,5765.844381425733,9284.330533552467,8321.231038587066,62552.36198061273,14296.76454494222,7309.8431381127275,11016.884005847414,9477.366665969404,69268.8861293889,15091.991693338801,7507.611916238691,11431.03523780908,9873.532709919298,71083.17825203142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0500410828003205,0.0015832649782900371,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1792427268016343,1.1792427268016343,1.0415778291763294,1.0415778291763294,1.0678309056629383,1.0678309056629383,1.1673973044368546,1.1673973044368546,1.1162939956573643,1.1162939956573643,0.6270074746189935,0.5410899385737852,0.5304621023482567,0.6666921681072857,0.5477783303012368,0.6650069345525248,0.5598566218742864,0.5530237666441796,0.6930625030346942,0.5678644506938292,34.23934400354074,34.23934400354074,27.902696460105687,27.902696460105687,29.06117160018482,29.06117160018482,33.66982224767628,33.66982224767628,31.263264434440416,31.263264434440416,13.250060823278702,11.127182366158195,10.886834534721231,14.338728584964201,11.280948789998419,14.291109916200085,11.56354181446072,11.40289814204742,15.099868878326674,11.754386465827608,296.7799936367601,296.7799936367601,0.0,329.75554848528895,0.0,296.7799936367601,329.75554848528895,0,0
+2017/07/10 13:00:00,294.16057649013567,0,900.6891068403999,0,0,0,88.93487406119372,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,2.749866054028088e-09,16.341499886922932,0,0,0.0,457.05970043359815,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13427.722252029273,6593.361319692141,9934.090065955847,7836.308338529829,64968.22851028848,13987.788224777913,7525.635809565847,10794.317815328326,8964.6454818469,66657.2058744137,14817.824374357564,7815.069405803916,11290.722783262547,9317.769924564735,68775.8838474572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04795335519460892,0.0015172107321115098,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1700921357964893,1.1700921357964893,1.0782988502471254,1.0782988502471254,1.0762730115575763,1.0762730115575763,1.15299158910473,1.15299158910473,1.1177643167841176,1.1177643167841176,0.6277079485328412,0.5623601574940353,0.534810252720264,0.6525538978364244,0.5464886824142066,0.6650254335543038,0.5871688175923626,0.5591220695023809,0.6766922041226712,0.567232981942723,33.79901321354215,33.79901321354215,29.529941928193665,29.529941928193665,29.438921133996416,29.438921133996416,32.98301408859625,32.98301408859625,31.331321783556092,31.331321783556092,13.268684754818452,11.622907899355837,10.984576324518528,13.943045356110815,11.251148862532958,14.291631964102507,12.22588935949777,11.546175022479176,14.623823506613206,11.73923612541256,294.16057649013567,294.16057649013567,0.0,326.8450849890396,0.0,294.16057649013567,326.8450849890396,0,0
+2017/07/10 14:00:00,270.659695210554,0,836.9300452210922,0,0,0,81.70734733321682,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.694393250291273e-09,14.051521324448828,0,0,0.0,428.7909913268347,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12294.817579715069,7511.447194174314,9754.543121556719,7492.640524906802,62184.96595909381,12015.139580541632,7704.222288653491,9323.914907152728,8163.866180242227,56590.72855084869,12729.64276430909,8105.230430582679,9805.656476477669,8464.376318326957,58634.17876591614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04455877552723498,0.0014098085976530165,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.145582686247354,1.145582686247354,1.153047485644228,1.153047485644228,1.082644135563526,1.082644135563526,1.1460119999536735,1.1460119999536735,1.1122854115446932,1.1122854115446932,0.6108868596412492,0.6090949825972405,0.5346537917040769,0.6438833511596896,0.5333146597726536,0.6418813970912787,0.6443397820806311,0.5569686621213505,0.6642051505800084,0.5506039511511971,32.63231851890393,32.63231851890393,32.98566650370495,32.98566650370495,29.725659152198745,29.725659152198745,32.652592303267596,32.652592303267596,31.078083398380215,31.078083398380215,12.827335487600081,12.781044178059574,10.981045045634502,13.704671100239153,10.95086460592772,13.65009575008169,13.717138211062704,11.495397520331238,14.268497552253976,11.346492486647307,270.659695210554,270.659695210554,0.0,300.7329946783933,0.0,270.659695210554,300.7329946783933,0,0
+2017/07/10 15:00:00,256.08379460234,0,836.8678786332123,0,0,0,73.85145891874282,0.0,16.568294279967066,0.0,108.75639138185811,0,39.380909295966944,2.694393250291274e-09,14.094765520656377,0,0,0.0,428.72882473895487,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11197.194269157102,8795.755432549911,9637.994588627293,7236.400406685413,60928.82057409163,9880.766106321902,7836.523626982742,7865.103954105834,7281.571351368407,47993.073728348005,10431.76714752358,8366.158690759561,8307.247476864684,7534.759900720937,49839.79847014752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04455546573204904,0.001409703878040451,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1218734399058192,1.1218734399058192,1.2190679608185044,1.2190679608185044,1.0895093062200927,1.0895093062200927,1.1435974540924954,1.1435974540924954,1.116970513935442,1.116970513935442,0.5810789733502352,0.6522066542751251,0.5292892404501089,0.6346072818882202,0.5222952490266235,0.6051456002493195,0.6906763476618333,0.548048041621373,0.6504748356505797,0.5372336899562732,31.52190266958287,31.52190266958287,36.18447829692627,36.18447829692627,30.03621305638849,30.03621305638849,32.53864486956054,32.53864486956054,31.29456978232632,31.29456978232632,12.075401031981755,13.933436144834943,10.860610055492344,13.45325900636432,10.705465103455893,12.679507971145483,15.029758627735873,11.28719013074641,13.885589862425917,11.039407993315933,256.08379460234,256.08379460234,0.0,284.53754955815555,0.0,256.08379460234,284.53754955815555,0,0
+2017/07/10 16:00:00,282.66603588875074,0,908.3894400500989,0,0,0,77.50516243102001,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.694393250291274e-09,14.076211726548358,0,0,0.0,447.01485738702513,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11484.40185681152,10148.710375993007,10596.42934911581,7593.593636507876,66354.05314333495,9784.644919740827,8744.334711454203,8376.49279940022,7349.130506181784,50110.82372612244,10191.990824247077,9335.815413009059,8785.877749678437,7553.717673176242,51827.498276362356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04836332663838144,0.0015301819428188024,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1245863339034252,1.1245863339034252,1.2636770522251566,1.2636770522251566,1.1116020263015316,1.1116020263015316,1.153627166389455,1.153627166389455,1.1425371073641555,1.1425371073641555,0.5678418710044911,0.6828164805578709,0.5332150817747101,0.6291944467122734,0.522430255755375,0.5867873537572025,0.7234914803602035,0.5508597285898029,0.6419250229184016,0.5367744372448364,31.648032255091337,31.648032255091337,38.415237574491215,38.415237574491215,31.046567228453128,31.046567228453128,33.01317943653102,33.01317943653102,32.488663705156526,32.488663705156526,11.753844430657296,14.800559655334112,10.948623487503141,13.308277722703409,10.708439862604067,12.216415622703025,16.015482230558348,11.352442635706524,13.651283183053579,11.028997598189946,282.66603588875074,282.66603588875074,0.0,314.07337320972306,0.0,282.66603588875074,314.07337320972306,0,0
+2017/07/10 17:00:00,300.4434937580131,0,915.7937699278402,0,0,0,88.37369809561719,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,2.804408686523537e-09,18.563325452603774,0,0,0.0,454.4191872647664,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11768.771003396261,11826.48498711236,12003.485546013982,7772.315210838741,70805.35460532091,11202.328941808684,10688.630427605296,10802.432769171282,8097.621190529858,60268.087220612935,11504.389263495965,11330.962230543804,11237.334298073278,8247.56921054931,61984.61971504026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04875753864550889,0.0015426545359358786,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.120757760074319,1.120757760074319,1.3287930723072663,1.3287930723072663,1.1468403766033062,1.1468403766033062,1.147793544010195,1.147793544010195,1.1534070805533565,1.1534070805533565,0.565457422085569,0.7324091176897868,0.561201457900353,0.6236603138818038,0.5353594750171898,0.5793326899556283,0.7775256532020948,0.5814878443805257,0.6329586122267483,0.5507382926808584,31.470102234230367,31.470102234230367,41.75853749292089,41.75853749292089,32.69172788901754,32.69172788901754,32.736786028827936,32.736786028827936,33.002732431067,33.002732431067,11.696729182951202,16.291372782294232,11.595397985690681,13.161361720802418,10.99698050301491,12.032544892305737,17.739431329132543,12.085454393935493,13.4089652362902,11.349617319278224,300.4434937580131,300.4434937580131,0.0,333.82610417557015,0.0,300.4434937580131,333.82610417557015,0,0
+2017/07/10 18:00:00,294.70175121243057,0,929.5842562690284,0,0,0,98.29735575640066,0.0,17.03716081602578,0.0,110.93442390708215,0,39.380909295966944,2.9625482214197006e-09,25.619926231538248,0,0,0.0,503.7000261184989,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11631.898121926972,12164.11602462964,13402.509693578164,7707.438088071397,70935.98281773651,13084.706397240108,12094.48503291321,13825.862154498396,8918.260636829882,71339.66511009325,13299.80235774909,12713.963086276353,14332.030275154251,9017.351722294345,72989.71889245744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04949175435301892,0.0015658846091309297,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.111306033580819,1.111306033580819,1.3315231082761494,1.3315231082761494,1.1891332755212671,1.1891332755212671,1.1383297878322702,1.1383297878322702,1.148604521005657,1.148604521005657,0.5712986623754355,0.758457378852953,0.6038933300768452,0.6224275504505308,0.5525187164193466,0.5835403564744396,0.8028832884691871,0.6316851959975286,0.6295809227292387,0.5667897627603121,31.032921573933592,31.032921573933592,41.90072250245926,41.90072250245926,34.71810906313618,34.71810906313618,32.29069999147029,32.29069999147029,32.77514523764769,32.77514523764769,11.837083676276976,17.116793162242075,12.647454225288541,13.12881622463587,11.391104510979943,12.136031377335925,18.591401861845,13.374833875202455,13.318587237400536,11.728612641495957,294.70175121243057,294.70175121243057,0.0,327.44639023603395,0.0,294.70175121243057,327.44639023603395,0,0
+2017/07/10 19:00:00,279.9232124566774,0,885.3765064348156,0,0,0,90.66012210389385,0.0,17.67411468432456,0.0,101.68988858149199,0,39.380909295966944,3.013462833807703e-09,27.08620258553237,0,0,0.0,494.9826287968303,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9783.494691399557,10305.845549091822,12434.947962987231,6998.506885292046,61483.07353875132,12149.729714598521,11248.926325068394,13636.424917506009,8196.113096352332,69812.38001325943,12291.70377983651,11762.111518300353,14211.777502057119,8237.668104947148,70992.38698262026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047138101006870416,0.0014914166578905098,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0790963510116929,1.0790963510116929,1.2660912255823356,1.2660912255823356,1.1762742558482593,1.1762742558482593,1.1160910757951827,1.1160910757951827,1.122952566039371,1.122952566039371,0.5622064596130478,0.7346157682689959,0.6175500564311157,0.6055290316254041,0.5574005229279101,0.5680930876600675,0.7666793455481042,0.64098854587484,0.6060192453065304,0.5668103076157246,29.56581299223336,29.56581299223336,38.537426120977265,38.537426120977265,34.09622209163204,34.09622209163204,31.253877447430355,31.253877447430355,31.57204503476629,31.57204503476629,11.6192554458041,16.360168927920583,13.00069487072139,12.689336086382085,11.505564710607942,11.759876240430685,17.383363073189344,13.625811740308805,12.701910540076668,11.729104891104058,279.9232124566774,279.9232124566774,0.0,311.02579161853043,0.0,279.9232124566774,311.02579161853043,0,0
+2017/07/10 20:00:00,258.4088523570112,0,844.597287662507,0,0,0,67.9731539932752,0.0,21.723888552416483,0.0,106.16168237671882,0,39.380909295966944,2.910740503733539e-09,23.16921813572294,0,0,0.0,489.6937625370657,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5767.163459971266,4666.5624112731675,6707.068061084115,5964.989372808258,42741.09524490432,9216.193067489601,7689.019233870808,9931.293203240048,5991.161640196388,57786.62766662383,9306.49518571177,8236.109933215692,10335.300806545107,5948.2255013004215,58393.12325711825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044966985193993496,0.001422724066963646,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0393702276776833,1.0393702276776833,1.0924278765400512,1.0924278765400512,1.0511928066315976,1.0511928066315976,1.087812407235266,1.087812407235266,1.0889570193920757,1.0889570193920757,0.5413037559373483,0.6294475502365897,0.557855094521341,0.5753136389513084,0.5478783381854959,0.5429214552482535,0.6570620498742956,0.5675680791862545,0.570772749224942,0.5529439879910936,27.80641683819556,27.80641683819556,30.16873138827266,30.16873138827266,28.32409924808799,28.32409924808799,29.959300029059975,29.959300029059975,30.011169387835096,30.011169387835096,11.132068042385484,13.315028701747764,11.51627531121268,11.93441467426723,11.28326268651469,11.169096278290425,14.068273018649847,11.747273699983936,11.82438629946516,11.401034463193184,258.4088523570112,258.4088523570112,0.0,287.1209470633458,0.0,258.4088523570112,287.1209470633458,0,0
+2017/07/10 21:00:00,245.08964087129536,0,811.8163634757716,0,0,0,51.01562154119583,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9625482214197e-09,25.6100570789717,0,0,0.0,492.4031908628745,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3730.281232925302,2822.1930557378487,4779.564763151352,5100.051497560558,34351.59974138437,6324.834268966589,5591.45153754621,6965.920793270928,4088.351113841577,43365.83679217924,6271.67632015022,5796.473267639373,7176.757694248167,3908.1049414455742,43510.29310285316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04322170450924261,0.0013675046026591202,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.039844686226743,1.039844686226743,1.0827442577746793,1.0827442577746793,1.045398282684455,1.045398282684455,1.0652205159883286,1.0652205159883286,1.0871955406442813,1.0871955406442813,0.5480419107594017,0.6270667165116938,0.54922212993987,0.5784018776527001,0.5536482419465968,0.5436921138403249,0.6314000637377303,0.5507772454201528,0.5682380832352423,0.5544265571971391,27.827094279684417,27.827094279684417,29.730176543450554,29.730176543450554,28.069736637666892,28.069736637666892,28.94487726214497,28.94487726214497,29.931364823163463,29.931364823163463,11.287048222561069,13.251635099868167,11.314396232335199,12.00975556999309,11.417495805785919,11.186776101993729,13.367201117839855,11.350523520406725,11.763358886664236,11.435713281811019,245.08964087129536,245.08964087129536,0.0,272.3218231903282,0.0,245.08964087129536,272.3218231903282,0,0
+2017/07/10 22:00:00,167.54056942388513,0,624.3184550029611,0,0,0,30.946269282234333,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.858030414263419e-09,20.841342533470783,0,0,0.0,464.6118686965126,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.76645515817476,225.3717676464747,1221.5979615040312,3366.3412150063436,14084.405203042665,3767.9558598191566,3858.2360009712215,4491.653817672668,2429.418519157011,30751.416656740672,3564.3288637289975,3869.634249581956,4547.045018643853,2119.399910332403,30321.842515527722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033239176981199395,0.0010516643900675207,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0293082916203375,1.0293082916203375,1.0646051228550735,1.0646051228550735,1.0286270799049622,1.0286270799049622,1.0166287485667893,1.0166287485667893,1.0472842818026424,1.0472842818026424,0.5678418783231606,0.6331209931340619,0.5643598418992894,0.5953196038001283,0.5690357788687244,0.5575873077508441,0.6285656569612637,0.5586914156484675,0.579815477020531,0.565856468833776,27.369849688335407,27.369849688335407,28.91749639030236,28.91749639030236,27.340427943996247,27.340427943996247,26.82503648833743,26.82503648833743,28.152392982932696,28.152392982932696,11.753844606341517,13.41332258709565,11.670521478369963,12.429824937212445,11.782535033951618,11.50996464390515,13.291518170409788,11.53600408804266,12.044379901052622,11.706270458346822,167.54056942388513,167.54056942388513,0.0,186.15618824876125,0.0,167.54056942388513,186.15618824876125,0,0
+2017/07/10 23:00:00,99.51064933165773,0,476.8396728249117,0,0,0,12.213501676795222,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6379810088272884e-09,11.786166593386238,0,0,0.0,423.6041440560955,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1878.9791733158504,0.0,940.2477747757687,1841.1564777294354,1769.1996483754106,560.3679231282773,15612.331314344283,559.8317049891004,1682.9012802984582,1637.7504850774453,124.63291716714107,14865.675591349198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025387297379522892,0.0008032363926820463,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8749224110586582,0.8749224110586582,0.9165700607461654,0.9165700607461654,0.910766811713197,0.910766811713197,0.9679470885060352,0.9679470885060352,0.9582153302394777,0.9582153302394777,0.5605166428187401,0.6178508411193979,0.5558160750542358,0.5847353112797861,0.5630197541615973,0.5460269458059303,0.6069427682817801,0.5452816086028915,0.5649044402173912,0.5566642569644844,21.159321410929195,21.159321410929195,22.741687530606058,22.741687530606058,22.516974269872605,22.516974269872605,24.789690951634014,24.789690951634014,24.39376172331697,24.39376172331697,11.579166440633571,13.008565973021518,11.468302044776621,12.165561055964702,11.638594088875962,11.240497026749694,12.725628127785384,11.223322283247853,11.683518709773196,11.488235845303748,99.51064933165773,99.51064933165773,0.0,110.56738814628636,0.0,99.51064933165773,110.56738814628636,0,0
+2017/07/11 00:00:00,43.27026968170331,0,471.9641946969958,0,0,0,0.3511668223219932,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,3.5277192077060677,2.580620063150333e-09,9.594062652671457,0,0,0.0,418.7286659281795,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,332.49178400680734,0.0,0.0,1029.7032192223232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025127723312693494,0.0007950236501456144,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9338516337976372,0.9338516337976372,0.9637541869104364,0.9637541869104364,0.9467688066160247,0.9467688066160247,0.9396000901917729,0.9396000901917729,0.9650347016188355,0.9650347016188355,0.7039387622461897,0.8406175753709415,0.7004838118220457,0.754132388895616,0.7557588926469705,0.6719874399879298,0.8143439730337207,0.6774869945047598,0.7110080085865195,0.7349529549036616,23.418876491807694,23.418876491807694,24.618652484550523,24.618652484550523,23.932820879418173,23.932820879418173,23.646776662964754,23.646776662964754,24.67081504392202,24.67081504392202,15.422551173778189,19.909462190998937,15.319494481172953,16.97772960219322,17.02993350535472,14.48915432047464,18.985391844357835,14.646668170571601,15.635022499887228,16.37069972831614,43.27026968170331,43.27026968170331,0.0,48.07807742411479,0.0,43.27026968170331,48.07807742411479,0,0
+2017/07/11 01:00:00,23.7454325310595,0,44.78221734238185,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5483371073817063,0,0,0.0,9.291864829837715,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0023842384217953433,7.543564171432957e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9578063640185965,0.9578063640185965,1.027672364980681,1.027672364980681,0.968700847851676,0.968700847851676,0.9809879142949399,0.9809879142949399,1.0560149516915551,1.0560149516915551,0.669707513932419,0.8536489533181358,0.6721398474353015,0.7334378281799477,0.8094599878701426,0.6495231477035529,0.8440720909169194,0.6619619648403957,0.6996869692172645,0.7763598832426055,24.377204330621552,24.377204330621552,27.299222361364528,27.299222361364528,24.820511207434848,24.820511207434848,25.326020629887438,25.326020629887438,28.536701445707934,28.536701445707934,14.424238363196253,20.378496825999335,14.493501816636353,16.323418579138163,18.816814743088585,13.859352202714433,20.03311054648877,14.205381892820654,15.295798817313496,17.700920369915167,23.7454325310595,23.7454325310595,0.0,26.383813923399444,0.0,23.7454325310595,26.383813923399444,0,0
+2017/07/11 02:00:00,28.344225477836094,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248623913632019,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.975001642434316,0.975001642434316,1.0497181989096922,1.0497181989096922,0.9828022601096199,0.9828022601096199,1.0002847944677258,1.0002847944677258,1.114693282251044,1.114693282251044,0.6799230618752051,0.8553938960242605,0.6780474451762358,0.7428466604957017,0.8330541799135789,0.6551072798933918,0.8520746609007599,0.6651113417803544,0.7070047990434581,0.7881090947198861,25.07900584241105,25.07900584241105,28.25925303885967,28.25925303885967,25.401159907370527,25.401159907370527,26.131643145779137,26.131643145779137,31.189253374727002,31.189253374727002,14.716858335516875,20.441838238199182,14.662793639564015,16.618625713189317,19.640483824139352,14.013865166168912,20.321458517536655,14.294056516678936,15.514438439081957,18.09169781400746,28.344225477836094,28.344225477836094,0.0,31.493583864262327,0.0,28.344225477836094,31.493583864262327,0,0
+2017/07/11 03:00:00,23.722026389057316,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249309653795234,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9447614790856851,0.9447614790856851,1.0210200473783608,1.0210200473783608,0.9498721398661446,0.9498721398661446,0.9695797252709729,0.9695797252709729,1.1098345915777443,1.1098345915777443,0.6621153231962094,0.8374559633869956,0.6590740853645576,0.7241935691050326,0.8524371670895428,0.6382975410395622,0.8379588324012779,0.6473335909524996,0.6900479826222762,0.7964112288096022,23.852519964370856,23.852519964370856,27.013044989231503,27.013044989231503,24.057279487338974,24.057279487338974,24.856475284632594,24.856475284632594,30.965129765129518,30.965129765129518,14.209689936705956,19.796734372714482,14.124447693925248,16.03707914630472,20.334583382143563,13.552830192783787,19.814636328114048,13.799136078667047,15.011336871173526,18.371360718486315,23.722026389057316,23.722026389057316,0.0,26.357807098952573,0.0,23.722026389057316,26.357807098952573,0,0
+2017/07/11 04:00:00,56.52516336201443,0,88.72588128136032,0,0,0,2.1924472422078445,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,14.299488137183756,0.0,0.5250944329887146,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,531.2776268579682,0.0,0.0,0.0,0.0,0.0,6892.058911318718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9408835126811406,0.9408835126811406,0.953148955626739,0.953148955626739,0.942012128071112,0.942012128071112,0.9492157948553215,0.9492157948553215,0.9807178081733466,0.9807178081733466,0.508657560145787,0.5937564731096784,0.5075114830976669,0.5377680200051516,0.5625554888173643,0.490927179852018,0.58426899106571,0.4952334973574394,0.5130083961713351,0.5644076379198509,23.697837816206203,23.697837816206203,24.189107648554653,24.189107648554653,23.74279393000363,23.74279393000363,24.030925207628655,24.030925207628655,25.3148453025277,25.3148453025277,10.409033513824909,12.390491402299574,10.384488564993163,11.051531749476823,11.627551202189693,10.035665087668946,12.154029996023496,10.125099232934502,10.502730251209229,11.67166164991346,56.52516336201443,56.52516336201443,0.0,62.805737068904925,0.0,56.52516336201443,62.805737068904925,0,0
+2017/07/11 05:00:00,80.60956862111647,0,212.9421150752648,0,0,0,0.38661217832753786,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,6.911768795527932,0.0,0.5251446173051172,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1558.8947818553456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9687718374829813,0.9687718374829813,0.972137420396228,0.972137420396228,0.9687826543430411,0.9687826543430411,0.9923158762133826,0.9923158762133826,0.9885615855566611,0.9885615855566611,0.6618760836981311,0.7873876744306242,0.660501864409243,0.7051006822190938,0.7827864767143825,0.627643403252074,0.758162748048088,0.634359843545448,0.6583876959922942,0.7562100736232357,24.823415021471178,24.823415021471178,24.961308120271113,24.961308120271113,24.82385749977493,24.82385749977493,25.797225380504912,25.797225380504912,25.64051466260024,25.64051466260024,14.202969820269871,18.06753438795627,14.164416723124901,15.457325487282219,17.913940921845224,13.266967759211383,17.107294355095846,13.446603715857961,14.105264451606985,17.044434564278106,80.60956862111647,80.60956862111647,0.0,89.56618735679608,0.0,80.60956862111647,89.56618735679608,0,0
+2017/07/11 06:00:00,93.50091611622194,0,633.547808247998,0,0,0,6.724077824023791,0.0,8.961122772869956,0.0,73.80580873715317,0,3.4846757081061104,2.52231950088642e-09,0.5252310715465907,0,0,0.0,402.86051691646105,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2571.4729877270684,20445.670308375215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033730554584208636,0.0010672112349082894,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9673093430594814,0.9673093430594814,0.9757745912786789,0.9757745912786789,0.9689110690644915,0.9689110690644915,1.05498454144643,1.05498454144643,1.0043840329568374,1.0043840329568374,0.8122280821048429,0.9621950994559538,0.8163423271199186,0.9233175841151475,1.0332324327927969,0.7893557950447566,0.9489762743436448,0.804397620177305,0.9006931200234172,0.9886745310859734,24.76363162278794,24.76363162278794,25.110822596362567,25.110822596362567,24.829110825462067,24.829110825462067,28.491201692643088,28.491201692643088,26.304607696519824,26.304607696519824,18.912235648491105,24.55522850867723,19.054657435390254,23.004669345590912,27.53966776860389,18.133507181173982,24.021311950193507,18.643142849876682,22.130133803116948,25.64522134215295,93.50091611622194,93.50091611622194,0.0,103.88990679580216,0.0,93.50091611622194,103.88990679580216,0,0
+2017/07/11 07:00:00,173.4864146791747,0,770.4604059852524,0,0,0,29.44798406196448,0.0,8.227127262650395,0.0,69.33401494192633,0,39.380909295966944,3.0134853905496355e-09,27.09637911365307,0,0,0.0,504.2827621411714,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3361.5380229096527,11117.199692379898,2434.4236466794064,1596.4691309804657,3262.6331000088735,1365.313428671937,36088.53290680159,2481.448071037812,1743.4475975972514,3454.1649095905914,1321.7970434822419,34868.29985044327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04101988269981396,0.0012978404954052045,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9597492237012463,0.9597492237012463,0.9598565024320693,0.9598565024320693,1.0031614994085611,1.0031614994085611,1.0428044226632722,1.0428044226632722,1.039074041599972,1.039074041599972,0.6386164958128835,0.7247608743283609,0.630865523324322,0.7030810959546854,0.7071033150667011,0.6297819628279634,0.7209477952971922,0.6278476469421121,0.6962620596566174,0.6984104608213283,24.4559212669173,24.4559212669173,24.460272080940683,24.460272080940683,26.25295719338,26.25295719338,27.956268421572858,27.956268421572858,27.793512883515646,27.793512883515646,13.561464016634332,16.054545486205768,13.352901412408613,15.396920031746717,15.517397628975104,13.323952683131736,15.937413726190172,13.272401548742238,15.19426461650778,15.257896489723692,173.4864146791747,173.4864146791747,0.0,192.76268297686076,0.0,173.4864146791747,192.76268297686076,0,0
+2017/07/11 08:00:00,205.054592384488,0,823.3984489348609,0,0,0,44.21701442744865,0.0,12.6452663876437,0.0,83.2008179303116,0,39.380909295966944,2.9625706289252647e-09,25.61058434015452,0,0,0.0,503.9852763219636,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1146.65878757492,550.2485459939212,1935.8609429846117,3964.4595469217597,23907.76878252376,5137.942171612151,4139.426517064844,5699.326763912541,3418.4712345197104,46128.305554472536,4835.110974751077,3943.2230464227273,5588.02684648045,3097.2354474961176,44928.94963184472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043838343318012445,0.0013870146247358906,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0268275190634055,1.0268275190634055,1.032142358866782,1.032142358866782,1.049817892611169,1.049817892611169,1.050729111581501,1.050729111581501,1.0836706369063966,1.0836706369063966,0.6023084117524475,0.6566367494676,0.5938993375370545,0.6413715774302166,0.6222462166634469,0.5927894762777237,0.6471379169335397,0.587416315694409,0.6302753961861081,0.617828233801702,27.262786841080697,27.262786841080697,27.492437682426186,27.492437682426186,28.26363461593968,28.26363461593968,28.303699688097637,28.303699688097637,29.77199017212267,29.77199017212267,12.606983429631285,14.056421376935745,12.394081940469803,13.636225302157087,13.124034496457043,12.366211657242118,13.793764864533301,12.232039406040926,13.337129081095739,13.007974235604223,205.054592384488,205.054592384488,0.0,227.83843598276442,0.0,205.054592384488,227.83843598276442,0,0
+2017/07/11 09:00:00,240.4642664286482,0,836.894117632284,0,0,0,62.73599785606527,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.8580524776165493e-09,20.87383518671785,0,0,0.0,464.24541625057066,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4921.806287247678,2627.007230193613,5062.803499822439,6018.658841291367,40056.2317103386,8629.889873936343,6116.88019427462,8261.372919789126,6339.000845480912,57230.95478271867,8557.173603117833,6021.597888227402,8274.366796468745,6281.825655242895,56381.06673185364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04455686271579502,0.001409748077632396,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1084268290657489,1.1084268290657489,1.0967013850760907,1.0967013850760907,1.097131998650315,1.097131998650315,1.1489796006760007,1.1489796006760007,1.1143397056874096,1.1143397056874096,0.6282386405813181,0.6599694653006507,0.6073185795438268,0.686243426047532,0.6162163122547705,0.6320760024909725,0.6592573507422512,0.6095861535153759,0.6948771038218119,0.6149565654242815,30.900339840047508,30.900339840047508,30.36329895031487,30.36329895031487,30.382938935689523,30.382938935689523,32.792893553603506,32.792893553603506,31.17291682202982,31.17291682202982,13.282808765462818,14.149502496756696,12.735290175084117,14.900163292495748,12.965840009269115,13.385301175406312,14.129573056097684,12.79371921245064,15.15335032386956,12.932989820409205,240.4642664286482,240.4642664286482,0.0,267.18251825405355,0.0,240.4642664286482,267.18251825405355,0,0
+2017/07/11 10:00:00,282.1890390455339,0,922.0238233794839,0,0,0,73.61033347989209,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.804430554611904e-09,18.608986680281397,0,0,0.0,460.6492407164102,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10009.82629988609,4938.557803891117,8215.508864966787,8624.963043581507,56994.47570341005,10981.588729832882,6896.096167398908,8994.733389453464,8301.871030936034,56951.0655018302,11294.504547217293,6933.400824466627,9174.397918774375,8603.917531300158,57232.98586336885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049089231305916525,0.0015531490605023193,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.185428262679155,1.185428262679155,1.1286752524447625,1.1286752524447625,1.1252706507936434,1.1252706507936434,1.2363731903426611,1.2363731903426611,1.1524336289710975,1.1524336289710975,0.6557820184980344,0.6545980127691788,0.6069248708008973,0.7208593953201909,0.6044503540386748,0.6711465459224936,0.6585003203317643,0.6140306858723313,0.7413028960638149,0.6098183695057554,34.53842226978489,34.53842226978489,31.838593829656915,31.838593829656915,31.679886211938538,31.679886211938538,37.043615902305724,37.043615902305724,32.9565430276846,32.9565430276846,14.032626706514478,13.999717732643461,12.725168139331771,15.934705640918168,12.661703690630247,14.465185489509267,14.108410681949195,12.908889738734146,16.569928714122085,12.79971536572053,282.1890390455339,282.1890390455339,0.0,313.5433767172599,0.0,282.1890390455339,313.5433767172599,0,0
+2017/07/11 11:00:00,321.91708781339605,0,978.8220242139104,0,0,0,93.84149371879813,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.8580524776165497e-09,20.869710494910674,0,0,0.0,464.2119127820205,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15627.843110257949,7422.611103067647,11658.497096382773,9841.867982409769,76123.69375934714,14920.151114128324,8759.705622572732,11861.657117638148,10056.468347365271,71026.65941435343,15530.451505690677,8890.505815136295,12174.29859353662,10437.767310056259,72472.47524874927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0521132095891474,0.001648825625497,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2474821483905576,1.2474821483905576,1.1575438965671818,1.1575438965671818,1.1516939765328371,1.1516939765328371,1.2343814439214296,1.2343814439214296,1.183653745427137,1.183653745427137,0.6819596845697032,0.652724080348291,0.6074914099604285,0.7138641908338449,0.5999958491538956,0.7082321358950504,0.6633779123209995,0.621037896810834,0.7364549788325961,0.6128483472553603,37.59935715819788,37.59935715819788,33.19935230567775,33.19935230567775,32.92146712794788,32.92146712794788,36.944321006863,36.944321006863,34.4525053898609,34.4525053898609,14.775736373833354,13.947756695866246,12.739735675074584,15.721478301950043,12.548127872761683,15.551334632003389,14.245196496691577,13.092207825745987,16.417669317884986,12.878168272097042,321.91708781339605,321.91708781339605,0.0,357.6856531259956,0.0,321.91708781339605,357.6856531259956,0,0
+2017/07/11 12:00:00,313.286190241925,0,939.7322555832046,0,0,0,105.72972945150465,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.804430554611904e-09,18.612787702973698,0,0,0.0,460.6124966638587,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17618.434462233716,8329.605073136343,12766.347895143053,8895.443050106536,81762.82189044847,17838.17562225533,10151.906622382261,14523.13731288652,10606.097442252061,83292.16991654127,18535.923051425947,10325.760553032671,14916.172223019952,10888.314836172847,85479.64126365364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.050032041353196416,0.00158297891320544,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2599782905271233,1.2599782905271233,1.1650336010983646,1.1650336010983646,1.1571846962243482,1.1571846962243482,1.1848645195590866,1.1848645195590866,1.187901060048866,1.187901060048866,0.6966820444015897,0.6551829034441933,0.6155816907963577,0.6861236231328028,0.6035287907039423,0.725412233674557,0.6687384262981495,0.6320040771849277,0.7032594286832229,0.6208947864785758,38.228313547526845,38.228313547526845,33.556689087977944,33.556689087977944,33.18225854068906,33.18225854068906,34.51111734611818,34.51111734611818,34.65830366043126,34.65830366043126,15.206688153875348,14.01596694581714,12.949282492606613,14.896672673658387,12.63813607982594,16.07461678222721,14.396713850095125,13.383374241716083,15.4022468467315,13.08844255203148,313.286190241925,313.286190241925,0.0,348.0957669354722,0.0,313.286190241925,348.0957669354722,0,0
+2017/07/11 13:00:00,310.80896868949657,0,898.320955712183,0,0,0,105.83496318966047,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.7498877109982067e-09,16.319806028003615,0,0,0.0,454.69154930538144,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16414.035214352312,8955.588509342873,12954.840167830818,8671.111342646134,78920.53136181338,17551.697213350202,10630.133268305792,14598.190253366087,10489.625809523064,79469.21009758014,18121.223728355737,10802.872190568833,14926.046196555031,10671.289477607515,81987.3351536414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04782727307443732,0.001513221581715768,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.231703943039111,1.231703943039111,1.1811828954719832,1.1811828954719832,1.1553290153176379,1.1553290153176379,1.1767149797602219,1.1767149797602219,1.1750752843192855,1.1750752843192855,0.691654669288923,0.6718191057734658,0.6178344243207617,0.678921201280049,0.5950128844680964,0.719370413185415,0.6900622890456778,0.6356668306786335,0.6951706634558958,0.6112909271374725,36.81100646391453,36.81100646391453,34.3330304587417,34.3330304587417,33.094013922798325,33.094013922798325,34.11745437347649,34.11745437347649,34.03849023278073,34.03849023278073,15.058474012917728,14.484353674195589,13.0081362677372,14.687960744015697,12.42209850254649,15.889142041220765,15.011756102275157,13.481787474925142,15.162015727966406,12.837793412551562,310.80896868949657,310.80896868949657,0.0,345.34329854388506,0.0,310.80896868949657,345.34329854388506,0,0
+2017/07/11 14:00:00,282.8563355074987,0,838.9622668590231,0,0,0,93.87358350490346,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.694414679993809e-09,14.081925449706876,0,0,0.0,430.82321296476545,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14474.052384510984,9505.906630925338,11973.538817512252,8048.0662126274965,72697.99052293586,14439.400286941634,10237.725763420225,11904.776961207375,9132.14723870826,65854.81786751494,14903.170635992348,10519.464735092566,12227.798377722824,9293.145480020623,68234.18200658074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044666972512518534,0.0014132318748478682,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1961472223297707,1.1961472223297707,1.2358795210076086,1.2358795210076086,1.1403178250923907,1.1403178250923907,1.1619799719573356,1.1619799719573356,1.1572839796670455,1.1572839796670455,0.6655232411223919,0.701115598539094,0.6032477512155302,0.6618791223075581,0.5784806895644306,0.6863072625921725,0.7248174267761238,0.6179901439175038,0.6766150817672697,0.5937040799548358,35.05937934787136,35.05937934787136,37.01899504565672,37.01899504565672,32.38417073540022,32.38417073540022,33.4107892295461,33.4107892295461,33.18698287668879,33.18698287668879,14.305685822964406,15.338301368715904,12.630956247544091,14.20305515772506,12.011683685991471,14.902023509382815,16.05628739657456,13.012212656939468,14.62160823322347,12.389174854080778,282.8563355074987,282.8563355074987,0.0,314.28481723055415,0.0,282.8563355074987,314.28481723055415,0,0
+2017/07/11 15:00:00,265.65016238637156,0,836.6704365272209,0,0,0,83.39047917019145,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.6944146799938087e-09,14.05949965997984,0,0,0.0,428.5313826329634,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12793.001507233344,9382.021987699276,11472.306992954387,7755.98005981534,69299.4488598424,11621.593826766763,9315.78128365429,9878.846047442561,8029.560322842232,55499.44098150396,11911.387332106267,9620.880667302368,10139.085184618136,8154.280912955701,57413.44018284484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044544953768079376,0.001409371286827894,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1635303630416667,1.1635303630416667,1.2219407581400112,1.2219407581400112,1.139458606874086,1.139458606874086,1.1617522116387318,1.1617522116387318,1.1534129962360027,1.1534129962360027,0.6322368393632546,0.6970457912398239,0.5920746171164808,0.6531061479938514,0.5644171061066116,0.6438037097240962,0.71738858642488,0.6021677140150479,0.6636412832700265,0.5755527970189023,33.48482961917192,33.48482961917192,36.32653560384291,36.32653560384291,32.343757626773794,32.343757626773794,33.399918589182306,33.399918589182306,33.00301321600132,33.00301321600132,13.389610929673779,15.217454277733069,12.348288775469072,13.958338445249382,11.671887524765864,13.70249667239699,15.828645245632032,12.603395989957434,14.252611724919035,11.940234410271074,265.65016238637156,265.65016238637156,0.0,295.1668470959684,0.0,265.65016238637156,295.1668470959684,0,0
+2017/07/11 16:00:00,286.79980652694536,0,889.8463390712623,0,0,0,81.62229707072389,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.6944146799938087e-09,14.092847725039107,0,0,0.0,428.47175640818847,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12781.616664966137,11215.816585383809,11816.277308813864,7736.313276588752,72919.91755862733,10804.784067570195,9838.661619547129,9605.02346542186,7402.443455880285,54677.034199808724,11009.136861066525,10251.23886429733,9873.9411941093,7523.987585570737,56287.404034762156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047376078207269655,0.0014989460906273493,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1827407594823725,1.1827407594823725,1.3240906828462307,1.3240906828462307,1.1636316025742113,1.1636316025742113,1.1654220189545799,1.1654220189545799,1.186149333165296,1.186149333165296,0.6125164480744837,0.7398944050512704,0.5878792369007102,0.6446802163532379,0.5635215921501879,0.6206286836852898,0.7663032373804938,0.5957602592343249,0.6502660702886782,0.5754287434498521,34.40833783836841,34.40833783836841,41.51398335399154,41.51398335399154,33.489666993952014,33.489666993952014,33.575268001915774,33.575268001915774,34.57336110389868,34.57336110389868,12.869555227335695,16.525588025172866,12.243549607759661,13.726442831322899,11.650541181470189,13.081443674207435,17.37110600191525,12.440932445187201,13.879830922341924,11.937215347980782,286.79980652694536,286.79980652694536,0.0,318.666451696606,0.0,286.79980652694536,318.666451696606,0,0
+2017/07/11 17:00:00,307.9199300682367,0,921.9365583669253,0,0,0,95.96295072183251,0.0,16.630907673226492,0.0,133.89528835348938,0,39.380909295966944,2.804430554611905e-09,18.617898818462624,0,0,0.0,460.56197570385143,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14640.426430788515,14087.23394733489,14601.889657063188,8143.959057471742,84644.07752334865,12719.685082590897,11958.94168278712,12483.731699783186,8658.754869906572,66990.04182812621,12829.806825128424,12408.062749154147,12778.307004810853,8732.829043069063,68809.83771845145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04908458525201012,0.0015530020625952872,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.201794257034861,1.201794257034861,1.3634363668180471,1.3634363668180471,1.208210589732543,1.208210589732543,1.1694027306045711,1.1694027306045711,1.2079464286675956,1.2079464286675956,0.6204278916293204,0.7730430060880643,0.6194867361165243,0.6518528583893319,0.5776141662342181,0.6259376079981389,0.8017470695187836,0.6314280731767787,0.6566258867954129,0.5912911980859088,35.33518163476806,35.33518163476806,43.573481142995426,43.573481142995426,35.649668589469314,35.649668589469314,33.76594178078662,33.76594178078662,35.636697970284985,35.636697970284985,13.076164594748633,17.591664685810386,13.051443734295916,13.923650987609165,11.990499192281519,13.221656709970361,18.55264371833111,13.367950751391987,14.056118774735552,12.328672437534777,307.9199300682367,307.9199300682367,0.0,342.1332556313741,0.0,307.9199300682367,342.1332556313741,0,0
+2017/07/11 18:00:00,306.65936135292156,0,922.2962311944477,0,0,0,110.55883941510453,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.9625706289252675e-09,25.554916174274,0,0,0.0,496.41200104391817,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14187.660239716597,13610.87990974575,15521.368048444694,8353.788364859503,81025.75234423472,15539.138490977984,13786.996337724011,16311.133561828334,10155.023267988387,80265.28255794295,15537.016308178574,14172.303512659859,16611.067686436796,10177.159795872605,82346.99494558066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04910373449975948,0.0015536079314459504,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.173475892865824,1.173475892865824,1.3632028026549199,1.3632028026549199,1.229107738750786,1.229107738750786,1.1566953795047468,1.1566953795047468,1.1877554835648738,1.1877554835648738,0.6203984064472153,0.7943615237877095,0.6512943189460799,0.6439969232823844,0.585993948392461,0.627796656326686,0.8271753757178102,0.671346507427118,0.650000050096547,0.5995374606099914,33.96154544860522,33.96154544860522,43.561170624931165,43.561170624931165,36.68192409755274,36.68192409755274,33.158979231930886,33.158979231930886,34.65124108802583,34.65124108802583,13.075389538993662,18.30204335030143,13.908214152126845,13.707772403916934,12.196731454727754,13.271044802314165,19.433068518786115,14.470882414943716,13.872495304908057,12.536489281669432,306.65936135292156,306.65936135292156,0.0,340.7326237254684,0.0,306.65936135292156,340.7326237254684,0,0
+2017/07/11 19:00:00,292.6474720512325,0,902.0194972596923,0,0,0,103.50692898102761,0.0,17.540027511967114,0.0,101.68988858149199,0,39.380909295966944,3.013485390792633e-09,27.0977424753112,0,0,0.0,511.62561962170696,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12533.560508032046,11174.1964342527,14352.984062498208,7559.553785696331,74290.14682876626,14560.453779064093,12566.45792652687,15722.86919057789,9356.050483664552,77998.52710092321,14503.238172222465,12835.175853081582,16043.572057045196,9331.415816705005,79645.00946735474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04802418616596111,0.0015194517746718332,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1363992983306477,1.1363992983306477,1.2743340782080919,1.2743340782080919,1.199305311744124,1.199305311744124,1.1294680167494835,1.1294680167494835,1.1627790558213909,1.1627790558213909,0.6036745298089402,0.7536188353955214,0.6442789540669763,0.6219260306353273,0.5833891461195888,0.6063037096832449,0.7739035878995916,0.6607334135850547,0.6229071619593453,0.5922818472097807,32.20005675853166,32.20005675853166,38.955700684896534,38.955700684896534,35.21350744742324,35.21350744742324,31.875603481058107,31.875603481058107,33.448940946643404,33.448940946643404,12.641860686889473,16.961270219475537,13.715476212085775,13.115594752248441,12.13229908919655,12.709212107815901,17.619966637425975,14.170906998668315,13.141470342034253,12.353482146201557,292.6474720512325,292.6474720512325,0.0,325.1638578347028,0.0,292.6474720512325,325.1638578347028,0,0
+2017/07/11 20:00:00,270.94592840586813,0,844.4722795711924,0,0,0,80.39848351715798,0.0,21.839837399389175,0.0,106.16168237671882,0,39.380909295966944,2.9107627467937876e-09,23.165015813724438,0,0,0.0,489.5687544457512,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7469.477151556601,5707.203477057947,8214.383211463366,6192.314775572841,52169.60258194438,11603.285165113044,9374.414246555756,12101.328956671248,7044.379424887195,69597.99352668853,11642.383700003526,9763.978857385831,12421.722146494605,7029.852705103077,70208.80797081928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044960329670617576,0.0014225134908433144,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0964179720995748,1.0964179720995748,1.1390457517611303,1.1390457517611303,1.098282042021552,1.098282042021552,1.1006128118474119,1.1006128118474119,1.1340446235317199,1.1340446235317199,0.5929981248856756,0.6769324526720059,0.602576039524273,0.6021677605718904,0.5870567435576614,0.5913838770040443,0.6925604040501006,0.6068688537980221,0.5981735355278311,0.5915832498789805,30.3503761404276,30.3503761404276,32.32434753256754,32.32434753256754,30.43542265713596,30.43542265713596,30.54192867332067,30.54192867332067,32.089659549813675,32.089659549813675,12.371447056823726,14.630726089445218,12.613809638498992,12.603397176898113,12.223105321521501,12.330991672368654,15.085095719749845,12.723728519610958,12.501912845361048,12.335982123541342,270.94592840586813,270.94592840586813,0.0,301.0510315620757,0.0,270.94592840586813,301.0510315620757,0,0
+2017/07/11 21:00:00,237.65827508727887,0,811.6955855568395,0,0,0,43.58277100552019,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9625706289252675e-09,25.611541830630742,0,0,0.0,492.28241294394235,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2904.1112043309427,2108.891545689677,3979.236139478163,4859.7916337775105,29559.799184792497,5281.499161221327,4705.715444565814,5999.749372866014,2790.2555097259665,37497.08592493756,5158.996057013912,4740.560924923603,6112.23758316655,2608.061568327142,37399.834981970314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04321527420337766,0.0013673011522638459,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.035663927134508,1.035663927134508,1.072624272453444,1.072624272453444,1.0404215269548487,1.0404215269548487,1.063864429038701,1.063864429038701,1.0836719128754218,1.0836719128754218,0.5437053069128879,0.6184595913359646,0.5447886725408021,0.5462218235802764,0.5492000484809724,0.5357126052062284,0.6141490957043896,0.5417434219817898,0.535297086597518,0.5485461368714359,27.645175497004587,27.645175497004587,29.27534686948195,29.27534686948195,27.852244727505834,27.852244727505834,28.884558335845853,28.884558335845853,29.772047785638364,29.772047785638364,11.187078990814868,13.024508103747706,11.211976824628437,11.244991549542092,11.313884007083217,11.004962844758055,12.91196979993208,11.142120532037097,10.995570803580591,11.298724750650877,237.65827508727887,237.65827508727887,0.0,264.0647500969765,0.0,237.65827508727887,264.0647500969765,0,0
+2017/07/11 22:00:00,153.51753525369134,0,623.9180411491835,0,0,0,16.892867033029397,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8580524776165493e-09,20.87171061248192,0,0,0.0,464.2114548427349,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,26.151665722688996,2905.3121546089747,5663.607830231983,1651.9645706860256,2077.328331507375,2531.2639608939894,421.1341234061542,18395.837491507107,1344.4954384595028,1908.340248074224,2443.303763247062,103.41658221770034,17847.696360169277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03321785865103507,0.0010509898929612234,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.913152123960913,0.913152123960913,0.9472964448844987,0.9472964448844987,0.9579157116836485,0.9579157116836485,0.9984877326513276,0.9984877326513276,0.9823144446946575,0.9823144446946575,0.49912820618271786,0.5635969596312039,0.49907836756183077,0.49894320844789936,0.5084719133970612,0.4842840028981908,0.550519401073344,0.48883166373119497,0.48106892588327343,0.5024875032155172,22.609173865252075,22.609173865252075,23.953954892615528,23.953954892615528,24.381630734383037,24.381630734383037,26.05601810939889,26.05601810939889,25.380945075206114,25.380945075206114,10.206674855479974,11.652336373758274,10.205626834089472,10.202785208096628,10.405053757239926,9.899269057288976,11.344526222343688,9.99243478883865,9.83394187127206,10.277562591181962,153.51753525369134,153.51753525369134,0.0,170.57503917076815,0.0,153.51753525369134,170.57503917076815,0,0
+2017/07/11 23:00:00,87.58583493536227,0,476.87023558364126,0,0,0,0.26656508612937213,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.638002194817064e-09,11.808288787756624,0,0,0.0,423.63470681482505,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1046.7250122982807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025388924563435694,0.0008032878756468067,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6389812485619363,0.6389812485619363,0.6681715515256358,0.6681715515256358,0.7000066210380319,0.7000066210380319,0.9238330199451277,0.9238330199451277,0.7475951966753849,0.7475951966753849,0.3597640742861308,0.46729519919243057,0.40287833591562944,0.3188450330267514,0.4526357116071297,0.321500960923585,0.4304313746224821,0.37728736073121577,0.2706053928774067,0.43495028960459897,13.571342959449552,13.571342959449552,14.380632038680872,14.380632038680872,15.305300993147654,15.305300993147654,23.024833385452126,23.024833385452126,16.76905572051615,16.76905572051615,7.69370386501808,9.559119444123567,8.382161868509527,7.113513817276527,9.275603425081997,7.149015384300355,8.863774271224614,7.963949205804198,6.520620500072312,8.945870672121686,87.58583493536227,87.58583493536227,0.0,97.31759437262474,0.0,87.58583493536227,97.31759437262474,0,0
+2017/07/12 00:00:00,41.98603007224955,0,471.7357446096323,0,0,0,0.7944819890037211,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.8472980320010886,2.5806409886863284e-09,9.54692905224092,0,0,0.0,418.5002158408161,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.89774574445019,124.4893066957874,126.8231930088743,656.1586896659215,1791.140480634626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025115560460827767,0.0007946388259907899,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7875819779654051,0.7875819779654051,0.8119231005131365,0.8119231005131365,0.8086954605934955,0.8086954605934955,0.9010903596617572,0.9010903596617572,0.8286149833622711,0.8286149833622711,0.5464131063492889,0.7046543600075498,0.5697760990815186,0.5175089407605921,0.6584855661484665,0.4829434427884513,0.6471690689366087,0.5254573642354605,0.43971559824286227,0.6242224509709104,18.07404026320374,18.07404026320374,18.901706575725726,18.901706575725726,18.790517158163425,18.790517158163425,22.145310311343437,22.145310311343437,19.48372666861738,19.48372666861738,11.249404760316011,15.443960922879242,11.800356604708881,10.600512522477885,14.107998483460534,9.871975986636983,13.794619869912054,10.775346793007415,9.033393457456299,13.176224277831693,41.98603007224955,41.98603007224955,0.0,46.65114452472172,0.0,41.98603007224955,46.65114452472172,0,0
+2017/07/12 01:00:00,23.722141275746928,0,37.999031211018035,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250458520691353,0,0,0.0,2.5086786984739,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0020230965678103446,6.400936519088231e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8053891254674963,0.8053891254674963,0.8705679650423068,0.8705679650423068,0.8274651198860485,0.8274651198860485,0.9021497567615154,0.9021497567615154,0.9389033502726885,0.9389033502726885,0.5234665315961349,0.7173900536242492,0.5429456515016655,0.5011705628646553,0.7222145379442643,0.47399317840930516,0.6769827877674471,0.5066386081928148,0.43827539689885525,0.674469883174513,18.677072647358315,18.677072647358315,20.99797367248948,20.99797367248948,19.44325729886515,19.44325729886515,22.185815820690024,22.185815820690024,23.619084140262288,23.619084140262288,10.731299591519686,15.828689970459763,11.169650977764263,10.249714459522721,15.97625664651153,9.69174022125118,14.632172583896605,10.365832744402539,9.006838908219038,14.560092399349642,23.722141275746928,23.722141275746928,0.0,26.35793475082992,0.0,23.722141275746928,26.35793475082992,0,0
+2017/07/12 02:00:00,28.397163208891406,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5778001224185131,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8101536236195415,0.8101536236195415,0.885318539472709,0.885318539472709,0.8294192625677378,0.8294192625677378,0.893427322365565,0.893427322365565,1.0228592443650422,1.0228592443650422,0.5141202717137607,0.7011394060480738,0.5271528556349301,0.49305758417585194,0.7489210695686216,0.4561685745199241,0.6586231643496733,0.4843194329032957,0.42247622788585165,0.6825717248637434,18.840695197925342,18.840695197925342,21.54768662362241,21.54768662362241,19.512066171911925,19.512066171911925,21.853676704859467,21.853676704859467,27.092001509803012,27.092001509803012,10.526806215140937,15.339010402251404,10.812994844312797,10.079809495830958,16.81123097008158,9.343083182180479,14.111843031984264,9.899991444702067,8.721380555533486,14.793465300205199,28.397163208891406,28.397163208891406,0.0,31.552403565434894,0.0,28.397163208891406,31.552403565434894,0,0
+2017/07/12 03:00:00,23.721925156620284,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248297329424956,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7663046684550983,0.7663046684550983,0.8409689941753249,0.8409689941753249,0.7813900351605292,0.7813900351605292,0.8335411251777741,0.8335411251777741,0.9886508797176609,0.9886508797176609,0.4992267606745363,0.6849707546511431,0.5095577558925248,0.47847456385108933,0.7650629225804289,0.4297429846141876,0.6313788460867618,0.455872644692098,0.3965004247078645,0.6891019493898277,17.371152628074782,17.371152628074782,19.922017864785957,19.922017864785957,17.867504030789036,17.867504030789036,19.657729093031136,19.657729093031136,25.644235699080838,25.644235699080838,10.208747604692775,14.863114020396608,10.42835237191288,9.781552124344884,17.330727904348393,8.851345047795604,13.366633279675128,9.337410136006696,8.275313881632101,14.983634232101053,23.721925156620284,23.721925156620284,0.0,26.35769461846698,0.0,23.721925156620284,26.35769461846698,0,0
+2017/07/12 04:00:00,44.827034095978426,0,88.72588128136032,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,4.793834646914427,0.0,0.5250658994298725,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.825138800536851,0.825138800536851,0.8615766601257511,0.8615766601257511,0.8388737685088286,0.8388737685088286,0.8848420650999627,0.8848420650999627,0.9122528192178179,0.9122528192178179,0.3974026830835023,0.47158307496705204,0.4011905422678813,0.3892048154034836,0.5014887921551501,0.3611422623549735,0.4367395345676019,0.37083271073879515,0.34885070988376576,0.4751969073237794,19.361552260055248,19.361552260055248,20.66728893553261,20.66728893553261,19.84723482363404,19.84723482363404,21.529790187536292,21.529790187536292,22.57438602288785,22.57438602288785,8.290323581887819,9.64379716994776,8.353717231324424,8.155224866061502,10.256436895412321,7.714484288623467,8.97861874368293,7.862882340427916,7.53200618479589,9.715779206886495,44.827034095978426,44.827034095978426,0.0,49.80781566219825,0.0,44.827034095978426,49.80781566219825,0,0
+2017/07/12 05:00:00,75.81391001426981,0,212.9421150752648,0,0,0,0.24313392615406687,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.2597091892029737,0.0,0.5250238689568837,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,974.1360152888213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9192609827473112,0.9192609827473112,0.9207536693040558,0.9207536693040558,0.9229012482172162,0.9229012482172162,0.9720085322201728,0.9720085322201728,0.9481503374728302,0.9481503374728302,0.5335156190354629,0.6573626345344994,0.539091530208798,0.5176564719483556,0.7155359066595123,0.4577001771167238,0.5776163093235842,0.472216063961319,0.43701109074830324,0.6761920172312231,22.846345724933556,22.846345724933556,22.904526412606543,22.904526412606543,22.988389909341635,22.988389909341635,24.95601927495528,24.95601927495528,23.988179981682507,23.988179981682507,10.955388735240973,14.076653994180006,11.081614978790782,10.603732730914786,15.77224375476824,9.372504614654062,11.990551545678287,9.656364674553132,8.983600982957483,14.609460646450358,75.81391001426981,75.81391001426981,0.0,84.23767779363313,0.0,75.81391001426981,84.23767779363313,0,0
+2017/07/12 06:00:00,87.28019781601277,0,633.3152119739979,0,0,0,0.6366878973457112,0.0,9.073231915861708,0.0,73.80580873715317,0,3.2393569930898747,2.522339718078663e-09,0.5251122700399788,0,0,0.0,402.62792064246105,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2653.4298604102337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03371817098629526,0.0010668194265023901,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9916095597551486,0.9916095597551486,0.9722933940060191,0.9722933940060191,0.9924982833237616,0.9924982833237616,1.0964197052486193,1.0964197052486193,0.9666761022922907,0.9666761022922907,0.664405852628039,0.8135610032397831,0.6762456573076162,0.7829908843509216,0.9704696759807787,0.5831115630091054,0.7302225571555521,0.6074070520046143,0.7123599414471615,0.9048824839467215,25.767701342315377,25.767701342315377,24.96770926114587,24.96770926114587,25.804853095051755,25.804853095051755,30.35045515865174,30.35045515865174,24.73777203049866,24.73777203049866,14.274155252061007,18.958298944172483,14.611000402298274,17.920745195146765,24.892923078681818,12.125450155773223,16.223409369350605,12.737565679245563,15.675901285556236,22.29051048130546,87.28019781601277,87.28019781601277,0.0,96.97799757334752,0.0,87.28019781601277,96.97799757334752,0,0
+2017/07/12 07:00:00,145.9907182917849,0,764.8046907308017,0,0,0,2.412815792093132,0.0,7.777944015249205,0.0,69.33401494192633,0,39.380909295966944,3.013507417981996e-09,27.085034243535784,0,0,0.0,498.6270468867208,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4631.732390702431,0.0,0.14699343346931906,0.0,0.0,0.0,2382.3523015017386,0.1717048340724965,0.0,0.0,0.0,1927.1950168429273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04071876823044101,0.0012883134434883438,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.543102636846658,0.543102636846658,0.5191738801012903,0.5191738801012903,0.6280801176896442,0.6280801176896442,1.1846030672686536,1.1846030672686536,0.7584257774343037,0.7584257774343037,0.2862569940484413,0.3648904450499617,0.3232647119785469,0.5112480119350165,0.5403450930391975,0.2638622805983247,0.3366747820210213,0.3031569154051466,0.5064280765210233,0.5152479687235215,11.173250485405319,11.173250485405319,10.636908319455415,10.636908319455415,13.278588505833753,13.278588505833753,34.49845709831193,34.49845709831193,17.115774164444417,17.115774164444417,6.702216150101435,7.771408861662664,7.172756493878708,10.464721170646115,11.110178290791907,6.445566779125002,7.357579060041573,6.909905879484413,10.361338014058006,10.55127939158588,145.9907182917849,145.9907182917849,0.0,162.21190921309434,0.0,145.9907182917849,162.21190921309434,0,0
+2017/07/12 08:00:00,169.26320504027566,0,823.413935079378,0,0,0,9.706745745884975,0.0,11.36563784648343,0.0,83.2008179303116,0,39.380909295966944,2.96259251038699e-09,25.609094218666165,0,0,0.0,504.0007624664808,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7314.820076552547,0.0,0.0,41.125771223192544,159.16371215687207,1972.456192603434,11968.996215370436,0.0,0.0,0.0,1903.962428650468,10820.465206357005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04383916781181723,0.0013870407111451545,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6447750339680605,0.6447750339680605,0.5601294700312955,0.5601294700312955,0.6939555075406141,0.6939555075406141,1.2242754751886034,1.2242754751886034,0.8454761405319948,0.8454761405319948,0.3375037728702917,0.365500395206442,0.3635651613520693,0.5544315023761128,0.46597204941246706,0.29579803285020634,0.309268815387111,0.33631867307892815,0.5615413362676906,0.4555846134544053,13.729035245128827,13.729035245128827,11.569998637824739,11.569998637824739,15.126170484269238,15.126170484269238,36.44215278789512,36.44215278789512,20.08350827920735,20.08350827920735,7.369255010129962,7.780728947452985,7.751213059858699,11.435829114091007,9.533149613632844,6.817986390752949,6.987990309717119,7.352572391762678,11.603461363211025,9.331892127442245,169.26320504027566,169.26320504027566,0.0,188.07022782252852,0.0,169.26320504027566,188.07022782252852,0,0
+2017/07/12 09:00:00,195.25627932643022,0,842.520804375904,0,0,0,17.524379185826774,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.8580740230152573e-09,20.877466754738293,0,0,0.0,469.8721029941907,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.754831879712848,0.0,0.0,7978.989625419148,7700.129946791128,1298.6671101693871,414.9666086147748,1076.7401016081494,3123.4679237989817,17289.847087806156,1214.2179514839445,204.57355558210992,970.4128529837233,3275.816119701076,16625.299779675035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044856431685749744,0.001419226231024966,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8730434080942878,0.8730434080942878,0.686279149921575,0.686279149921575,0.830538190758804,0.830538190758804,1.2240000769361594,1.2240000769361594,0.9366532051569233,0.9366532051569233,0.4389780718408206,0.43124349496398395,0.4095777010772328,0.6172775151346104,0.46432953701425295,0.43085816171603397,0.40388769327853036,0.4009621444735653,0.6465494171088136,0.4629722163069669,21.089601879221718,21.089601879221718,14.901204275654578,14.901204275654578,19.551537713719924,19.551537713719924,36.42850704753918,36.42850704753918,23.529781906354373,23.529781906354373,9.019783752160293,8.878463663329157,8.496269844640324,12.993566247807678,9.50101649467912,8.871490339686716,8.399230971606826,8.349877373188804,13.777620662043603,9.474550392130269,195.25627932643022,195.25627932643022,0.0,216.95142147381134,0.0,195.25627932643022,216.95142147381134,0,0
+2017/07/12 10:00:00,236.27434696704947,0,921.8558068664483,0,0,0,27.60426487196633,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.8044519093347112e-09,18.595587009361957,0,0,0.0,460.48122420337467,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3175.310512050367,281.9246932779922,1917.9438201540024,8241.404942486952,22235.80995958487,3181.4205461762085,1140.6623968839126,1905.07673846762,4062.0822883774026,20249.55548931602,3325.271040052461,980.0882926236916,1914.388103154647,4376.82748370591,20244.31555143918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04908028598231157,0.001552866036698863,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0249457884213589,1.0249457884213589,0.853652080999357,0.853652080999357,0.9350586408061593,0.9350586408061593,1.2211150247333882,1.2211150247333882,1.009562418314667,1.009562418314667,0.5003564311863092,0.4636670694861465,0.43379931826272244,0.635170020538205,0.46948941101756964,0.5128769792327992,0.45381933668150964,0.43548895950847444,0.6651468409306187,0.4750143536168771,27.18172873881656,27.18172873881656,20.37861024772097,20.37861024772097,23.466619803668294,23.466619803668294,36.28568047290116,36.28568047290116,26.52401339408678,26.52401339408678,10.232536251042632,9.488089270022996,8.924877424971456,13.46840474314834,9.602352132458876,10.499888152044875,9.298151528913891,8.955715335819988,14.295058487947415,9.712129511582418,236.27434696704947,236.27434696704947,0.0,262.5270521856105,0.0,236.27434696704947,262.5270521856105,0,0
+2017/07/12 11:00:00,278.48531205626887,0,978.6568268923395,0,0,0,53.82291617109302,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.8580740230152577e-09,20.88848748794289,0,0,0.0,464.0467154604498,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7303.940379134432,2421.021302172429,5211.932225584508,8031.656170629965,39453.10251165924,7846.95135701546,3945.418641483279,5898.716746839832,6138.145144605321,41126.201251561855,8278.196421061248,3917.896014973866,6078.587239643158,6486.785567358238,41712.439242070504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05210441436138421,0.0016485473506213523,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0931586947303769,1.0931586947303769,0.9662758783278397,0.9662758783278397,1.0097762941316826,1.0097762941316826,1.1834841105092915,1.1834841105092915,1.0642344865378162,1.0642344865378162,0.5519935660473178,0.5078604530052524,0.47764739452658184,0.6361082415183376,0.4966265167798348,0.5789621546898257,0.5109393894179732,0.48998424343954694,0.6642122365316441,0.5065657892116302,30.201960233210187,30.201960233210187,24.721436178244687,24.721436178244687,26.53309692796188,26.53309692796188,34.444297076171964,34.444297076171964,28.901012053812437,28.901012053812437,11.378853240108839,10.391956262349325,9.764909562102417,13.493686880408703,10.154201088531977,12.023468476082144,10.45807140045207,10.01618893717935,14.268697272308287,10.364277884184418,278.48531205626887,278.48531205626887,0.0,309.4281245069654,0.0,278.48531205626887,309.4281245069654,0,0
+2017/07/12 12:00:00,270.41541965301775,0,939.5677511312869,0,0,0,66.3182590765484,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.8044519093347112e-09,18.585462691476934,0,0,0.0,460.4479922119409,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8679.454936712156,3244.9739184794757,6343.599587821052,7493.486865676334,43463.01326652033,10592.805642014482,5493.611620849955,8297.155848365399,6929.072518138473,53625.9158338749,11227.264514422128,5582.379186694914,8648.42151507766,7248.698916573197,54730.191101518045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05002328301432676,0.0015827018054686696,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1132344734551272,1.1132344734551272,0.9899557346140654,0.9899557346140654,1.0255627830308827,1.0255627830308827,1.1479586998417308,1.1479586998417308,1.067918672171734,1.067918672171734,0.5847598548478157,0.5274165191587346,0.5014840760037277,0.6206599147057829,0.5138343160425777,0.617772504129688,0.5387602494671817,0.5209798505572448,0.6455199812850173,0.528862675141663,31.121877895559336,31.121877895559336,25.698645993697966,25.698645993697966,27.20829216652824,27.20829216652824,32.74459620803681,32.74459620803681,29.065085846395718,29.065085846395718,12.166168225118483,10.81886062213222,10.256337237104617,13.082264934827577,10.520609174674291,13.006515628657638,11.074077886893704,10.67652269505301,13.749416455100842,10.851087085228968,270.41541965301775,270.41541965301775,0.0,300.46157739224196,0.0,270.41541965301775,300.46157739224196,0,0
+2017/07/12 13:00:00,262.0993868390435,0,882.2786364110921,0,0,0,60.50041788608756,0.0,16.630907756533322,0.0,129.2730206906943,0,39.380909295966944,2.7499088595636394e-09,16.31413120701149,0,0,0.0,438.64923000429036,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7796.187425700428,3177.674532651393,5786.295395290101,6804.223697168482,39386.971358425406,9622.566766121325,5152.737114069528,7487.7868587051835,5956.064331579631,47979.2048369062,10244.844237289417,5301.805836441394,7874.40858275804,6205.023000400161,49182.001382528455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04697316811219439,0.0014861982960706717,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.082977799200464,1.082977799200464,0.9931838743732269,0.9931838743732269,1.0037971563113306,1.0037971563113306,1.122509454885155,1.122509454885155,1.0461785859305353,1.0461785859305353,0.5647021484549213,0.5232753688645129,0.4850928698829072,0.5839799433707062,0.4963937220654014,0.594944710838621,0.5385496153887747,0.5044266083124902,0.6036119428794671,0.510956286353445,29.740715001598772,29.740715001598772,25.83353379788238,25.83353379788238,26.279805846133513,26.279805846133513,31.55145091060959,31.55145091060959,28.103918783070327,28.103918783070327,11.678689369381274,10.727079140673496,9.915774660584319,12.146887227824067,10.149331892549583,12.420381724598855,11.069288144835468,10.31870351165405,12.64026106008535,10.45843536560858,262.0993868390435,262.0993868390435,0.0,291.22154093227056,0.0,262.0993868390435,291.22154093227056,0,0
+2017/07/12 14:00:00,233.78785305141508,0,854.9365020934068,0,0,0,48.25842366686442,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.694435606631489e-09,14.060578034116554,0,0,0.0,446.7974481991494,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6269.264299354823,2916.075932822176,5135.406832869201,6307.140808437732,33698.21541634501,7336.107169878511,4246.570730946093,5761.388664777169,4669.222322499728,35668.05277698026,7887.358660253695,4456.314104438387,6171.090377084838,4876.350460514861,36604.41510262744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045517452628619656,0.0014401404728877638,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.057040675165999,1.057040675165999,1.0250396026973272,1.0250396026973272,1.0089705165466192,1.0089705165466192,1.1185074445740626,1.1185074445740626,1.032472839867903,1.032472839867903,0.5468673859140476,0.5441447689007999,0.4859284454909779,0.5773714072138393,0.47947752319714426,0.5707247024829557,0.5629577680185375,0.5038818629852847,0.5940758219297878,0.48969465487667324,28.58203210443243,28.58203210443243,27.185766808992653,27.185766808992653,26.4988836646275,26.4988836646275,31.365746564807935,31.365746564807935,27.506751951872076,27.506751951872076,11.259892098422057,11.197172544545737,9.93285492616863,11.984570137043377,9.801771150100478,11.82322688177446,11.637119162948409,10.3071295359441,12.398518654944638,10.01021525255996,233.78785305141508,233.78785305141508,0.0,259.764281168239,0.0,233.78785305141508,259.764281168239,0,0
+2017/07/12 15:00:00,223.79067635215577,0,836.4817183863098,0,0,0,44.96904562068436,0.0,16.568294279967066,0.0,108.75639138185811,0,39.380909295966944,2.6944356066314903e-09,14.11603577098483,0,0,0.0,428.3426644920524,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5964.267789549155,4176.319434418558,5233.224245764715,6029.213217923121,34617.38194634101,6307.349711732439,4770.8101849028035,5003.063226763709,4173.214454919016,30553.55174030597,6766.139593625225,5110.166798864338,5420.025865531852,4356.033589898256,31399.36409350061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044534906274472486,0.001409053391133853,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0635689773981898,1.0635689773981898,1.1367523189009585,1.1367523189009585,1.0268368051448797,1.0268368051448797,1.1097319155526892,1.1097319155526892,1.0523759531325043,1.0523759531325043,0.5461719006404867,0.6108958481409226,0.4969684505029556,0.5825718972637676,0.48615030553038424,0.5647860276719782,0.6376020184551214,0.5116707570287262,0.5949020900015067,0.495795563302931,28.871425286780422,28.871425286780422,32.216623324959755,32.216623324959755,27.26318717675018,27.26318717675018,30.960402020278437,30.960402020278437,28.37618513492673,28.37618513492673,11.243840005448845,12.827568047551779,10.16135730970393,12.112144308286943,9.937395100224578,11.6806916146206,13.534018313043589,10.4738365815777,12.41930853063802,10.136831380842352,223.79067635215577,223.79067635215577,0.0,248.65630705795084,0.0,223.79067635215577,248.65630705795084,0,0
+2017/07/12 16:00:00,245.99709102851506,0,889.6632285361227,0,0,0,44.26574757518332,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.6944356066314903e-09,14.07865692460361,0,0,0.0,428.28864587304895,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5614.476674960712,4859.022124859933,5484.550703388769,6194.095387925438,36900.01825438992,5549.010966468523,4864.424067138631,4800.219499981376,3705.7282932524913,29773.545460547473,5857.719217807915,5220.22041493664,5167.480227796835,3807.574617842747,30607.710608179354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047366329266747643,0.0014986376409448048,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0642726384567722,1.0642726384567722,1.1613093847261133,1.1613093847261133,1.0467573278491427,1.0467573278491427,1.1127706936971715,1.1127706936971715,1.0834215773132778,1.0834215773132778,0.5346590103187352,0.6228151989421815,0.5006914879762933,0.5739787915367085,0.49256403548829064,0.5456135066095391,0.647196385826347,0.5132811293582366,0.582077437649829,0.5018142640856933,28.902708664297293,28.902708664297293,33.37878776213073,33.37878776213073,28.1292855570328,28.1292855570328,31.10047299734879,31.10047299734879,29.760745529207753,29.760745529207753,10.981162811131838,13.13904320724798,10.239602493452836,11.90197772015992,10.069565160629082,11.230967208159385,13.795369650471173,10.5086309215433,12.099964144654308,10.263316855470592,245.99709102851506,245.99709102851506,0.0,273.3301011427945,0.0,245.99709102851506,273.3301011427945,0,0
+2017/07/12 17:00:00,258.3381441094091,0,921.7926959271389,0,0,0,49.7919102888957,0.0,16.693521066485914,0.0,133.89528835348938,0,39.380909295966944,2.8044519093347112e-09,18.576515101766574,0,0,0.0,460.41811326406514,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5385.74968263581,4213.299166283932,5859.783870000767,6294.098313617618,39645.13189943666,6184.492067122049,5108.220373457469,5950.549435783417,3985.7666878242467,37591.37292424101,6386.776451392089,5379.963733592111,6308.977738992703,4002.674354686806,38350.759052341724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04907692590915603,0.0015527597263263863,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.078388924449611,1.078388924449611,1.140928338078196,1.140928338078196,1.0740605152293943,1.0740605152293943,1.1129898305666333,1.1129898305666333,1.109896934907833,1.109896934907833,0.5522752852955722,0.6259193264098221,0.530100164878632,0.5873538156731687,0.5243057188163719,0.5590495504993769,0.6419022572886471,0.5409240421606674,0.5930695679843855,0.532372292634488,29.533992292723624,29.533992292723624,32.41290046329486,32.41290046329486,29.339678284360147,29.339678284360147,31.11058595855799,31.11058595855799,30.968000553089198,30.968000553089198,11.385424002259228,13.221171779821745,10.87873547841511,12.230486100663995,10.74984570443415,11.544461747371088,13.650663524690358,11.123393037000909,12.37324013741565,10.929672737781459,258.3381441094091,258.3381441094091,0.0,287.0423823437879,0.0,258.3381441094091,287.0423823437879,0,0
+2017/07/12 18:00:00,247.34739622860644,0,917.9764140328307,0,0,0,54.50578049777569,0.0,16.923524308209636,0.0,110.93442390708215,0,39.380909295966944,2.962592510386993e-09,25.602758216609438,0,0,0.0,492.0921838823011,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4828.284004525294,3419.0931892306317,5494.080961459691,6135.449966377776,37483.36566791137,7149.631620236558,5392.135403270598,7202.741479447047,4469.0444841555545,46007.5145320645,7257.459911852829,5545.58290917099,7509.5055613682425,4431.841484638913,46626.03211218527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04887374423435763,0.0015463311997650753,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0538025053596476,1.0538025053596476,1.0986646496458117,1.0986646496458117,1.0576832657337116,1.0576832657337116,1.1012534693235672,1.1012534693235672,1.0958065494244984,1.0958065494244984,0.5412784120887058,0.6042520732844472,0.5293981866217273,0.5720386425439533,0.5315987088194538,0.5457322935542324,0.6149431018336537,0.5397566640497609,0.5729226954615931,0.5391317176466882,28.43905360896494,28.43905360896494,30.452893458175552,30.452893458175552,28.61044987402161,28.61044987402161,30.571236320875286,30.571236320875286,30.322506395957717,30.322506395957717,11.131488837951991,12.656629843258742,10.863043516233276,11.85496969558892,10.912305197493012,11.233704501761963,12.932639104770956,11.0967620435367,11.876369231885903,11.082529621571723,247.34739622860644,247.34739622860644,0.0,274.83044025400716,0.0,247.34739622860644,274.83044025400716,0,0
+2017/07/12 19:00:00,239.1638841606734,0,906.028455784365,0,0,0,53.54346354451992,0.0,17.451880260369812,0.0,101.68988858149199,0,39.380909295966944,3.0135074182192877e-09,27.0977424753112,0,0,0.0,515.6345781463797,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4112.260167206596,2975.735622174591,5160.934941986287,5725.10974017681,35466.834811363515,6878.7809999601795,5222.351261841199,7274.999707457707,4258.861236406242,46784.38467264879,6879.4084389138325,5286.85256677487,7516.385484531629,4149.8345985554,47204.43271707936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04823762608727699,0.0015262048650023696,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.028741847286421,1.028741847286421,1.081679922133327,1.081679922133327,1.0488470577143283,1.0488470577143283,1.081973985602469,1.081973985602469,1.0821304536937026,1.0821304536937026,0.528660428592259,0.5942171598830253,0.5290700718294167,0.5569674688136182,0.5334245516627003,0.5280420627364503,0.5991327820712371,0.5360385371500942,0.5523784101989773,0.5382956159741549,27.34538358223344,27.34538358223344,29.682172890107637,29.682172890107637,28.220981333781083,28.220981333781083,29.69543179317985,29.69543179317985,29.702487944353308,29.702487944353308,10.846574731755894,12.402072783242701,10.8557161834824,11.495369437791126,10.953338348933983,10.832789262515888,12.526221979285268,11.012335176392597,11.387830126659125,11.063514847211422,239.1638841606734,239.1638841606734,0.0,265.7376490674149,0.0,239.1638841606734,265.7376490674149,0,0
+2017/07/12 20:00:00,229.47061864680717,0,822.3238439361437,0,0,0,38.31530922801867,0.0,22.447927345383032,0.0,106.16168237671882,0,39.380909295966944,2.910784467675833e-09,23.164790397808876,0,0,0.0,467.4203188107024,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496.874427725368,524.1317819391053,2540.6326140592923,4991.000826015845,24003.32422249371,4239.936432373322,2942.3088184316944,4960.599137427524,2347.9389568064694,36550.198600054944,4083.4660637023644,2902.4959081688153,4966.066065894128,2081.7749566430493,36480.18779685726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043781130551913655,0.0013852044526971128,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0119113586878798,1.0119113586878798,1.0251202950663327,1.0251202950663327,1.0053904844490642,1.0053904844490642,1.0570913910109938,1.0570913910109938,1.0725569419429242,1.0725569419429242,0.518865349573789,0.5527898004539756,0.5126662775946189,0.5433917146895749,0.5390799629591745,0.512589958013595,0.5535540538380684,0.5086895481616697,0.532906344032839,0.5396667775971663,26.623869626893622,26.623869626893622,27.189240330800857,27.189240330800857,26.347171386794685,26.347171386794685,28.58427441158193,28.58427441158193,29.272332819564852,29.272332819564852,10.630154746883647,11.397433328583674,10.49533295475679,11.179881527865177,11.08135172786534,10.493683461484977,11.415292992581897,10.409719399568104,10.941677716075617,11.09471394308548,229.47061864680717,229.47061864680717,0.0,254.96735405200795,0.0,229.47061864680717,254.96735405200795,0,0
+2017/07/12 21:00:00,202.5741894658548,0,821.5674167942936,0,0,0,8.500015362362214,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9625925103869927e-09,25.61021185236475,0,0,0.0,502.15424418139656,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3820.2837238372654,5739.537151957829,0.0,0.0,0.0,0.0,9716.08307832237,0.0,0.0,0.0,0.0,8931.95035262694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043740857810590936,0.0013839302512340785,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8963459353912602,0.8963459353912602,0.861845983362101,0.861845983362101,0.947992981473621,0.947992981473621,1.02982193168475,1.02982193168475,1.062368449101844,1.062368449101844,0.46002486109616453,0.49056972639290863,0.4900245392463331,0.4541116066712841,0.5326845433068356,0.43538751513533114,0.465620222420205,0.47763363971879963,0.4147180891551692,0.5282503444850445,21.96446912102971,21.96446912102971,20.677145633707724,20.677145633707724,23.98187079186991,23.98187079186991,27.392045289819947,27.392045289819947,28.818092873626966,28.818092873626966,9.417353765723433,10.028277444550739,10.017020453246147,9.303728564540407,10.936690342540913,8.953860398652566,9.526256901819067,9.764633066216575,8.585127545730828,10.837430719074675,202.5741894658548,202.5741894658548,0.0,225.08243273983865,0.0,202.5741894658548,225.08243273983865,0,0
+2017/07/12 22:00:00,137.1686937765445,0,635.7729936665004,0,0,0,0.540382748572271,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8580740230152573e-09,20.875353419792216,0,0,0.0,476.06640736005176,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2166.953861789434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033849025104099366,0.0010709595595768677,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.691459589703272,0.691459589703272,0.6468759439853067,0.6468759439853067,0.7548113064924473,0.7548113064924473,0.9734672781455358,0.9734672781455358,0.8812466946907099,0.8812466946907099,0.35209078333777877,0.3785565347820691,0.3852147548707894,0.3373320399646339,0.49173676632112373,0.30605955055530243,0.32999153590736807,0.35673691540285246,0.2715578084723672,0.4737125840039431,15.052744797697969,15.052744797697969,13.786576356613239,13.786576356613239,16.99950622612974,16.99950622612974,25.01591561394976,25.01591561394976,21.395047523360617,21.395047523360617,7.579483749632843,7.98403102441759,8.090508859437605,7.3668338355305,10.052417555047086,6.946792317989761,7.264514347234254,7.648344038317006,6.531375663321057,9.686145608805901,137.1686937765445,137.1686937765445,0.0,152.4096597517161,0.0,137.1686937765445,152.4096597517161,0,0
+2017/07/12 23:00:00,87.50972619242326,0,476.6284744761715,0,0,0,0.20379466657479461,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.638022883467708e-09,11.794950464372176,0,0,0.0,423.3929457073553,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,795.6223937559897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025376053022999938,0.0008028806290796231,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4929782463111662,0.4929782463111662,0.44646046775151493,0.44646046775151493,0.5533019357888977,0.5533019357888977,0.9181714784094461,0.9181714784094461,0.6529179427188093,0.6529179427188093,0.24450733750731996,0.26821516538797635,0.27968754446104765,0.2278255221790537,0.3953631589758636,0.17629381700346217,0.1959686815372058,0.22798830839940876,0.13930639182518842,0.36812953689759953,10.078162011147711,10.078162011147711,9.158942263253948,9.158942263253948,11.409398504239405,11.409398504239405,22.803936473940894,22.803936473940894,13.95312511932265,13.95312511932265,6.2407662379731335,6.493797137073159,6.624736851530201,6.0768799702979805,8.256444265902232,5.644243838137442,5.7963179382876575,6.078422802681885,5.4020658877691545,7.821083885305555,87.50972619242326,87.50972619242326,0.0,97.23302910269251,0.0,87.50972619242326,97.23302910269251,0,0
+2017/07/13 00:00:00,40.724233492861345,0,451.70370728397955,0,0,0,0.42885038420541094,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.954548431080578,2.5806614230017423e-09,9.543513678571511,0,0,0.0,398.4681785151634,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,728.5371855415991,780.5190515042052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024049039955746417,0.0007608948606361336,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.72585395743763,0.72585395743763,0.6969880067956485,0.6969880067956485,0.7539183943133508,0.7539183943133508,0.8983784616620832,0.8983784616620832,0.8177908185492899,0.8177908185492899,0.4751596527628595,0.5281204968507746,0.4769085996297841,0.4924120018388271,0.6291980574168765,0.3718176097202665,0.4192282008215256,0.39422627961599105,0.36753161622518865,0.5879234533242836,16.08823865391797,16.08823865391797,15.215743600745412,15.215743600745412,16.970869706906868,16.970869706906868,22.04182999038568,22.04182999038568,19.104969169605695,19.104969169605695,9.715034280348178,10.834536907791033,9.750070033239794,10.066411596013666,13.308374010754008,7.87818900200223,8.664022760495328,8.237636337350338,7.811880465968287,12.244649503782071,40.724233492861345,40.724233492861345,0.0,45.24914832540149,0.0,40.724233492861345,45.24914832540149,0,0
+2017/07/13 01:00:00,23.77470967111783,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5776142474400368,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7407427802399656,0.7407427802399656,0.7380747083868524,0.7380747083868524,0.7530326811669011,0.7530326811669011,0.9138264235391053,0.9138264235391053,0.9327004580277761,0.9327004580277761,0.4976860457057639,0.5649363707374926,0.48206651075381224,0.5316143805339805,0.7203279188068656,0.38129300215138057,0.4466199010190625,0.3825325379430357,0.3978127094637197,0.6681235788479506,16.552285519450535,16.552285519450535,16.46842822806167,16.46842822806167,16.9424977796254,16.9424977796254,22.635279225724688,22.635279225724688,23.373395666904173,23.373395666904173,10.176392052494876,11.684281153868,9.8541640848685,10.912656782120877,15.918431238215973,8.02756335876039,9.161933610985102,8.047387361181777,8.297156164466912,14.37927172845366,23.77470967111783,23.77470967111783,0.0,26.416344079019808,0.0,23.77470967111783,26.416344079019808,0,0
+2017/07/13 02:00:00,28.34413931492929,0,71.0190648048008,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5247762284563939,0,0,0.0,17.783536035984596,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0037811076145023562,0.00011963160927343134,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7858752993832502,0.7858752993832502,0.790591516969189,0.790591516969189,0.7911743632101995,0.7911743632101995,0.9551894242529727,0.9551894242529727,1.0087836461647717,1.0087836461647717,0.5150365960671759,0.5846999261776291,0.4963753718585749,0.5522861564205288,0.751731875515875,0.3942125882308729,0.4618918301246056,0.3910452868279386,0.4151628865894481,0.6955759337418079,18.01695026636058,18.01695026636058,18.175013473965606,18.175013473965606,18.194613008372258,18.194613008372258,24.271410297482262,24.271410297482262,26.490952649774783,26.490952649774783,10.546688012462226,12.164685730370906,10.148948174298965,11.385677627100236,16.900890130250744,8.237410171111208,9.453540893469537,8.185305276498923,8.592869618130266,15.173984765790138,28.34413931492929,28.34413931492929,0.0,31.49348812769921,0.0,28.34413931492929,31.49348812769921,0,0
+2017/07/13 03:00:00,23.7219873705734,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248919468956097,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7353546707809254,0.7353546707809254,0.7378784154899923,0.7378784154899923,0.7363917043703299,0.7363917043703299,0.8737122018601808,0.8737122018601808,0.9836603870335118,0.9836603870335118,0.47499161930605316,0.542838730355338,0.45383451846763123,0.5121610411256654,0.7710858137367266,0.3601730413293541,0.4265444930327256,0.3539631779531636,0.3819841264812509,0.6943278147309969,16.38325224010117,16.38325224010117,16.462270824339782,16.462270824339782,16.41568871584211,16.41568871584211,21.114400502931545,21.114400502931545,25.436742482638195,25.436742482638195,9.71167509770008,11.167200000510363,9.298441134110746,10.484417977428038,17.527416036471564,7.699861861255883,8.79386149436732,7.6071239968745346,8.038608478776553,15.137146200207482,23.7219873705734,23.7219873705734,0.0,26.357763745081556,0.0,23.7219873705734,26.357763745081556,0,0
+2017/07/13 04:00:00,43.79005668971435,0,88.72588128136032,0,0,0,0.37603193724858736,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,3.3808573237952837,0.0,0.5250338790363412,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.405181485918593,0.0,21.65359107940472,1161.46333995656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7816957129313942,0.7816957129313942,0.7833448001603152,0.7833448001603152,0.7798937890088327,0.7798937890088327,0.9081178395416728,0.9081178395416728,0.9323612715254491,0.9323612715254491,0.403380711054097,0.42684305422994645,0.39747318635115036,0.4154643843654462,0.5200260570371712,0.341548826349388,0.3746445158806486,0.333311205975325,0.35964824218076225,0.4901377475660296,17.877661867622678,17.877661867622678,17.932530461600507,17.932530461600507,17.817840306156626,17.817840306156626,22.414852762102385,22.414852762102385,23.360005111010295,23.360005111010295,8.39065201475897,8.799208682483751,8.291497919743989,8.59812226123708,10.65558342933447,7.426646394065571,7.922352709008095,7.310504032954029,7.691961024404193,10.01935691605398,43.79005668971435,43.79005668971435,0.0,48.65561854412705,0.0,43.79005668971435,48.65561854412705,0,0
+2017/07/13 05:00:00,75.52715173334589,0,212.9421150752648,0,0,0,0.31759685094684403,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,1.8984269620866283,0.0,0.5250848903565397,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173.81903849220103,109.37605996904622,154.83928663607026,815.300347049628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.941692747276948,0.941692747276948,0.9404909296381464,0.9404909296381464,0.9433187746035434,0.9433187746035434,0.990133557248046,0.990133557248046,0.9711972907452098,0.9711972907452098,0.4887304626990436,0.5329239770235222,0.4730808342422862,0.5123587794896546,0.7324407448043887,0.39082520364364415,0.44145508026437247,0.38167356766771704,0.40986995832274076,0.6813948924602405,23.730066918416497,23.730066918416497,23.682211904278617,23.682211904278617,23.794904604512823,23.794904604512823,25.706065947785618,25.706065947785618,24.922745288071496,24.922745288071496,9.9903518201411,10.942074299937502,9.673561934003601,10.488688542896824,16.29235733445158,8.181700647257145,9.065585003819791,8.033642797782747,8.501291508794978,14.759390456117856,75.52715173334589,75.52715173334589,0.0,83.91905748149543,0.0,75.52715173334589,83.91905748149543,0,0
+2017/07/13 06:00:00,86.95256941096964,0,626.6668161358035,0,0,0,0.8363057629564921,0.0,9.045403999750121,0.0,73.80580873715317,0,2.740026806334566,2.5223594452415403e-09,0.5250241022529175,0,0,0.0,395.9795248042666,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3509.460215403031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033364205467358674,0.0010556202042175564,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0074794456681542,1.0074794456681542,1.0048406132150223,1.0048406132150223,1.011995229190603,1.011995229190603,1.1352175217095926,1.1352175217095926,0.9846153524005389,0.9846153524005389,0.5895044106855265,0.6421041576787345,0.5865671399623823,0.9061293171973661,0.9471713380009328,0.4853371899990101,0.5340975339007057,0.49399926735910343,0.8408071981432553,0.8748240399382644,26.4356373398179,26.4356373398179,26.32391212354365,26.32391212354365,26.62743889239718,26.62743889239718,32.14462759599911,32.14462759599911,25.476373785056623,25.476373785056623,12.284032015370826,13.656159841733924,12.210949440456886,22.3383790015521,23.948942869360096,9.920765768152194,10.96849905712834,10.099384711785007,19.916236491717044,21.15566779175751,86.95256941096964,86.95256941096964,0.0,96.61396601218848,0.0,86.95256941096964,96.61396601218848,0,0
+2017/07/13 07:00:00,146.39108151501281,0,773.3150640907004,0,0,0,2.490562444679966,0.0,8.094705928800161,0.0,69.33401494192633,0,39.380909295966944,1.2829227917282693e-05,27.090876074411526,0,0,0.007786643555581942,507.1296336030639,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5518.891928657075,0.0,0.3161862545194447,0.1870519406363182,0.07129636693312472,0.0,2363.123539562431,0.28290396769593484,0.0,0.0902684925589776,0.0,1624.0512821691152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04117186681181229,0.0013026491667671668,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.38192104333524246,0.38192104333524246,0.5580613398627651,0.5580613398627651,0.47313826505215445,0.47313826505215445,1.2002114004003381,1.2002114004003381,0.6807903909771392,0.6807903909771392,0.27622122411682254,0.272900949628478,0.18675598732179788,0.5076273987748141,0.4509360378437445,0.21902750040621285,0.23265822137340747,0.16328897213399707,0.5086532918578742,0.41741909554578827,8.037599477392462,8.037599477392462,11.521137811867021,11.521137811867021,9.674705173782627,9.674705173782627,35.25778168205919,35.25778168205919,14.74191057732638,14.74191057732638,6.584589184587472,6.546608060938723,5.72309674151326,10.386968490562793,9.243330002743107,5.99514794831093,6.123155958933879,5.552594544451239,10.408941996713736,8.632271420058814,146.39108151501281,146.39108151501281,0.0,162.6567572389031,0.0,146.39108151501281,162.6567572389031,0,0
+2017/07/13 08:00:00,167.75410329000957,0,820.0327617314222,0,0,0,7.987621069432926,0.0,11.630822483174265,0.0,83.2008179303116,0,39.380909295966944,2.9626138593036415e-09,25.553932508161218,0,0,0.0,500.619589118525,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,8011.164815665244,0.0,0.0,0.0,0.0,2751.99921944324,8872.472706913199,0.0,0.0,0.0,2443.2443116167315,6832.417684459993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04365915163831442,0.0013813451248971497,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5792057433927681,0.5792057433927681,0.47044951306509825,0.47044951306509825,0.6205993031671263,0.6205993031671263,1.2479171906795967,1.2479171906795967,0.8241042330242636,0.8241042330242636,0.384803671351761,0.32179266315941124,0.31194012572862984,0.6395120490909572,0.49871132145650615,0.3095046268236969,0.2490044699581794,0.24589031313273665,0.6408400279530043,0.48407018555437403,12.029434612315285,12.029434612315285,9.62133433811627,9.62133433811627,13.080671113610094,13.080671113610094,37.62118644157557,37.62118644157557,19.32528912678842,19.32528912678842,8.083880011904796,7.152932764241029,7.02261488964443,13.585729439609452,10.197911784765893,6.9910346591410075,6.286946993439656,6.254877436281532,13.621775663260138,9.894910654982155,167.75410329000957,167.75410329000957,0.0,186.39344810001063,0.0,167.75410329000957,186.39344810001063,0,0
+2017/07/13 09:00:00,201.7204929121681,0,836.4883846568904,0,0,0,23.738273307591612,0.0,11.393746067737203,0.0,106.27511244621549,0,39.380909295966944,2.8580950440574414e-09,20.93245179179882,0,0,0.0,463.83968327517704,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137.2092078592304,0.0,0.0,9212.00569801287,10580.98432304734,2616.5473781135,479.7565833884418,1209.9301654314286,5352.714860116881,23482.81170680892,2137.870326297839,129.30578296374878,878.7801802640261,5476.7791296374235,22370.161731650212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04453526119165595,0.00140906462046614,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9144134832985704,0.9144134832985704,0.6938735480888162,0.6938735480888162,0.8545278886304929,0.8545278886304929,1.2701951775728966,1.2701951775728966,0.9957369744251979,0.9957369744251979,0.5069865212999413,0.45242237951765185,0.44305273107295634,0.7302240709555888,0.5403514540846096,0.4873204262230561,0.41447574882358845,0.42073434979132124,0.7615336208185858,0.5394803071908943,22.65802204544299,22.65802204544299,15.12375510180594,15.12375510180594,20.410386374610255,20.410386374610255,38.74546927587044,38.74546927587044,25.94049665007836,25.94049665007836,10.373264689385579,9.271545852054771,9.095266335247814,16.223456350708886,11.110323405304925,9.96137576092336,8.58091297709933,8.690564003009811,17.2161919183538,11.090466253122429,201.7204929121681,201.7204929121681,0.0,224.13388101352012,0.0,201.7204929121681,224.13388101352012,0,0
+2017/07/13 10:00:00,240.1927537645314,0,921.665776163871,0,0,0,31.556217360322634,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.804472744346163e-09,18.56204131848763,0,0,0.0,460.2911935007972,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3343.2069694629954,69.15786059213349,1759.058799490595,9040.306285093295,25008.44690415184,3932.2566035735226,974.7605761640249,1788.9546030194476,5622.147128040724,24124.274929621723,3825.8392269199844,735.5744231404494,1595.708824317056,5951.46278599763,24348.196672765465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049070168606949335,0.0015525459299947947,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.049537573087702,1.049537573087702,0.8576633933956254,0.8576633933956254,0.950796299530374,0.950796299530374,1.2477934011111325,1.2477934011111325,1.0423932725463245,1.0423932725463245,0.5325302642510222,0.4600069363865211,0.44303604875877034,0.6968291237116624,0.5005833286605345,0.5424149170588114,0.4482570257046425,0.4419277466121627,0.7271193008021026,0.508244285562632,28.251315378691245,28.251315378691245,20.52441000858306,20.52441000858306,24.094416141372093,24.094416141372093,37.614974505859344,37.614974505859344,27.938305167894484,27.938305167894484,10.933222506221753,9.417007061708375,9.094955842571252,15.211040696926602,10.237320917231159,11.157489707230255,9.192713208542727,9.07435482345494,16.127305753147084,10.400176075220472,240.1927537645314,240.1927537645314,0.0,266.880837516146,0.0,240.1927537645314,266.880837516146,0,0
+2017/07/13 11:00:00,280.317959546807,0,978.4723307588532,0,0,0,55.46479371406665,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.8580950440574414e-09,20.91186775858024,0,0,0.0,463.86221932696344,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7057.589109755731,1964.6043062761526,4820.17778746439,8263.8588174963,41586.07821443725,8009.068690955349,3494.636391198946,5450.8866920330265,7039.383350505836,43850.34658958184,8264.078555267017,3405.1007515482115,5506.209053189952,7347.91184742252,44459.28025026886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052094591650579884,0.0016482365668984977,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0934491001175621,1.0934491001175621,0.9605606036893927,0.9605606036893927,1.010503039132158,1.010503039132158,1.1887954636964944,1.1887954636964944,1.0826417336077814,1.0826417336077814,0.560020601396428,0.49093634225549193,0.47055104441005446,0.6727287649376947,0.517138839387506,0.5785294793868921,0.4913170267553907,0.4785238510231278,0.6965623938745124,0.5260739409163009,30.21516948021811,30.21516948021811,24.488838909038506,24.488838909038506,26.563975412409192,26.563975412409192,34.70170895605054,34.70170895605054,29.725550783189306,29.725550783189306,11.567421925682183,10.035854523490286,9.62334404016633,14.510310422529614,10.592438350781492,12.01287745327609,10.043728509662358,9.782544708811443,15.203148004600308,10.789023357060387,280.317959546807,280.317959546807,0.0,311.46439949645224,0.0,280.317959546807,311.46439949645224,0,0
+2017/07/13 12:00:00,280.22511767948964,0,939.3817319663075,0,0,0,76.14958255786784,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.804472744346163e-09,18.563837236629418,0,0,0.0,460.2619730469617,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10085.721440311498,3736.8455964835207,6891.090282410544,7837.579441200078,50260.613939814924,12434.68703822163,6072.039108110292,9044.494017494226,8556.355925592745,62209.32310616258,12997.859302381428,6155.962396595559,9315.351370384451,8877.712150021114,63487.446202363746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05001337921619762,0.0015823884561993805,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1360259148089977,1.1360259148089977,0.9826938268583072,0.9826938268583072,1.024634901038347,1.024634901038347,1.1584427976942628,1.1584427976942628,1.0840979914395092,1.0840979914395092,0.6050589818351718,0.5101950961626031,0.49385600781989886,0.6577306518045979,0.5307244444767351,0.6377284497068085,0.5224771032519231,0.5125441477399434,0.6810479838639694,0.5477899788021219,32.182538979324235,32.182538979324235,25.39666569502573,25.39666569502573,27.168349471627877,27.168349471627877,33.24214720637657,33.24214720637657,29.791289570214175,29.791289570214175,12.677288650998321,10.442051346493429,10.096404237644236,14.086920473515875,10.89270849703557,13.537436353325162,10.709472291951855,10.492693486132168,14.749357249109963,11.281218280700372,280.22511767948964,280.22511767948964,0.0,311.3612418660996,0.0,280.22511767948964,311.3612418660996,0,0
+2017/07/13 13:00:00,284.1793213248309,0,878.898337452539,0,0,0,78.97206139983814,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,2.749929493439517e-09,16.323057382973712,0,0,0.0,435.26893104573736,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10823.25288954731,4802.887941668416,7570.607077998256,7407.980545695849,52675.84422012286,12732.214471683694,6612.016658940349,9366.012753273473,8307.120366900006,62054.309099263606,13380.723539959308,6800.629118889999,9752.67668905814,8599.079985524175,63803.754403723455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04679319849183105,0.0014805041827315494,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.123706675733629,1.123706675733629,1.0121922522857167,1.0121922522857167,1.0207528128404346,1.0207528128404346,1.1390453872584434,1.1390453872584434,1.0762219740578183,1.0762219740578183,0.6055678746520722,0.5333479033863007,0.5003480282857445,0.6396599222324293,0.5326101053133331,0.6371461928090928,0.5525839630392297,0.5216404698689882,0.660144025527799,0.5513382357973189,31.607108068490888,31.607108068490888,26.635824615619555,26.635824615619555,27.0015831087143,27.0015831087143,32.324330398151034,32.324330398151034,29.43662988000952,29.43662988000952,12.69033206700837,10.951612887654093,10.232359098866851,13.589739475574646,10.93501701993334,13.52170092581244,11.392627489053353,10.691048788858936,14.154391141927732,11.36358176155963,284.1793213248309,284.1793213248309,0.0,315.75480147203433,0.0,284.1793213248309,315.75480147203433,0,0
+2017/07/13 14:00:00,258.4984828007504,0,855.7268603145003,0,0,0,69.35044204934442,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.6944560239850665e-09,14.07982460489731,0,0,0.0,447.5878064202428,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9404.39645059556,5515.235305075362,6969.362417255631,6788.832991753874,48441.83445827234,10551.864373997083,6463.661873968303,7673.89359398782,7110.944149757229,51107.841285143986,11079.26999156367,6741.801429609468,8038.064245099148,7342.791106282982,52797.02600552814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04555953188573427,0.0014414718312512084,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0867319589356534,1.0867319589356534,1.090585715817862,1.090585715817862,1.0096476132758785,1.0096476132758785,1.1212452865762341,1.1212452865762341,1.0606292588330672,1.0606292588330672,0.5798676330846005,0.5737499188367882,0.4917634579019556,0.6171940423757231,0.5173139296360196,0.6042713823315389,0.6020429748366147,0.5104470334455079,0.6327787796314169,0.532671460196419,29.910379889022266,29.910379889022266,30.085053521411893,30.085053521411893,26.527631508752393,26.527631508752393,31.492732776944663,31.492732776944663,28.740922023382126,28.740922023382126,12.0456590565109,11.896423849359493,10.052970355794073,12.991383569115214,10.59625739999133,12.65712387147947,12.60021617205993,10.447471323845278,13.404140919440593,10.936396224480077,258.4984828007504,258.4984828007504,0.0,287.22053644527824,0.0,258.4984828007504,287.22053644527824,0,0
+2017/07/13 15:00:00,246.60555758728705,0,838.4842747836439,0,0,0,64.07515040462843,0.0,16.840460162178484,0.0,108.75639138185811,0,39.380909295966944,2.6944560239850665e-09,14.120671137506333,0,0,0.0,430.3452208893865,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8503.622487674933,7092.624467254247,6978.391627427081,6525.021701330206,47576.81559025824,8672.329419009893,6828.299814883614,6535.154162850411,6283.965265587476,43522.038114060284,9049.815596987217,7227.591760020849,6857.000289263515,6465.8332638601905,45070.4717587615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04464152386037343,0.0014124266972331708,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0405099516748029,1.0405099516748029,1.158364995042377,1.158364995042377,0.9967032086196729,0.9967032086196729,1.1091111624311618,1.1091111624311618,1.0473472893303322,1.0473472893303322,0.5405624570704565,0.6129399470943911,0.4775879481045151,0.5910514625170077,0.4960193618939387,0.558329154002347,0.6484198569417842,0.4945325177546687,0.6035799702228083,0.5098341971126605,27.856101148620013,27.856101148620013,33.23844218022779,33.23844218022779,25.981042055316962,25.981042055316962,30.93182682183938,30.93182682183938,28.155156595935736,28.155156595935736,11.115138009458278,12.88054620174077,9.763714642790305,12.322674926685877,10.14150658528385,11.527454629156693,13.828984057944368,10.110486625703288,12.639443953178215,10.434292034930593,246.60555758728705,246.60555758728705,0.0,274.0061750969856,0.0,246.60555758728705,274.0061750969856,0,0
+2017/07/13 16:00:00,271.7415119460417,0,889.4497167688377,0,0,0,66.33220770440342,0.0,16.90307355543791,0.0,131.64086955684016,0,39.380909295966944,2.6944560239850665e-09,14.052476628244536,0,0,0.0,428.0751341057639,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8477.305326583617,8748.004820857428,7525.113579317251,6738.023565257061,50318.82673492058,8417.549049241756,7897.679461365896,6841.3568881156825,6110.983499803471,44359.632096191635,8731.96489070595,8456.016373877119,7181.615996630206,6278.255571121217,45874.05194133232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04735496174210779,0.0014982779803890183,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0298934941538551,1.0298934941538551,1.2370383186413316,1.2370383186413316,1.0083117308252139,1.0083117308252139,1.113707063074738,1.113707063074738,1.0609507818523645,1.0609507818523645,0.521024200086215,0.6614322231611376,0.4741941521878967,0.5730324917698972,0.486480570329628,0.5368958708863774,0.7078635935696145,0.49244108274178855,0.5847605286453682,0.5014305961087097,27.395138445990753,27.395138445990753,37.07679822619142,37.07679822619142,26.470929817754367,26.470929817754367,31.14369679251547,31.14369679251547,28.755180416281178,28.755180416281178,10.677497287700263,14.190508569835316,9.695749409651512,11.879029347118845,9.944157619269845,11.031749381918445,15.540248689677668,10.067014730708792,12.166184894175629,10.255207205815594,271.7415119460417,271.7415119460417,0.0,301.9350132733797,0.0,271.7415119460417,301.9350132733797,0,0
+2017/07/13 17:00:00,289.6551824024132,0,921.6225721204657,0,0,0,77.623229562667,0.0,16.7356839618177,0.0,133.89528835348938,0,39.380909295966944,2.8044727443461634e-09,18.58809602321337,0,0,0.0,460.24798945739195,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9568.42302828698,10160.189665442125,9619.778492205272,6986.6677012325945,58679.61424980421,9771.758673704426,9394.684245536835,9100.672687740285,6864.889674327106,53316.03821171946,10018.748799964438,10016.639812536176,9491.778683762843,6991.816260417257,54767.36948782933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04906786839167692,0.0015524731527869575,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0491042039930143,1.0491042039930143,1.2703407638990032,1.2703407638990032,1.074472927020568,1.074472927020568,1.1148878691732156,1.1148878691732156,1.0912392729168545,1.0912392729168545,0.5241389296622353,0.6981539088342102,0.5103349789819991,0.5757585483732227,0.49982396205828244,0.5376231528550378,0.7461228143998946,0.5324805001917845,0.584562438785311,0.5137897001004978,28.23227564438227,28.23227564438227,38.75285711973617,38.75285711973617,29.358164222812576,29.358164222812576,31.198245793667027,31.198245793667027,30.114727173277274,30.114727173277274,10.74615722199654,15.250287390641702,10.445060334756661,11.945243204235368,10.221316624862155,11.048243544019329,16.722308373638157,10.932104145148614,12.161285203652227,10.519642606734877,289.6551824024132,289.6551824024132,0.0,321.8390915582369,0.0,289.6551824024132,321.8390915582369,0,0
+2017/07/13 18:00:00,282.5064886266278,0,917.8473280219163,0,0,0,85.79053442582283,0.0,17.358821905571183,0.0,110.93442390708215,0,39.380909295966944,2.9626138593036457e-09,25.609823886767696,0,0,0.0,491.9630978713866,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9501.914286926014,10664.642732490245,10818.71515552253,6913.531903337577,59452.095283683964,11301.443951980524,10723.042099461452,11730.743244070209,7632.441856305108,64161.54698301245,11479.500772706731,11315.990996377974,12234.57323958351,7709.624489844399,65417.36842918748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048866871599521675,0.0015461137543894873,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.059535030101098,1.059535030101098,1.2920063697401112,1.2920063697401112,1.1325819064561906,1.1325819064561906,1.1092189440280416,1.1092189440280416,1.1057379271380714,1.1057379271380714,0.5366348297013078,0.7301071079519829,0.5612347992960811,0.586468267162524,0.5285393549073995,0.5458838732327198,0.7725511072766637,0.5881566541253483,0.5906799432468451,0.5408174849062739,28.692424577346813,28.692424577346813,39.85794022646044,39.85794022646044,32.02117160054431,32.02117160054431,30.936787415178742,30.936787415178742,30.776773055323503,30.776773055323503,11.02583476858375,16.21982664976511,11.596188765466565,12.208495888460376,10.843874285838652,11.23719835012082,17.575501787363947,12.250451843317464,12.313385485379825,11.12095973440762,282.5064886266278,282.5064886266278,0.0,313.8960984740309,0.0,282.5064886266278,313.8960984740309,0,0
+2017/07/13 19:00:00,264.5330779742837,0,901.0949399315816,0,0,0,78.76189662996664,0.0,17.602640988533366,0.0,101.68988858149199,0,39.380909295966944,3.0135289095434417e-09,27.0977424753112,0,0,0.0,510.7010622935963,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7323.987471631626,7422.6677413532425,8994.281460980335,6292.914872639339,50705.01427660392,10739.307465959186,9853.064871175653,11193.658012227797,7205.087527537223,64505.39470960807,10853.78076081227,10315.319043214859,11703.812178278384,7221.743338956271,65462.58581419679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04797496204898671,0.001517894357922803,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0483409259897094,1.0483409259897094,1.185095363692096,1.185095363692096,1.1042213022698026,1.1042213022698026,1.093149972794943,1.093149972794943,1.1005388436852355,1.1005388436852355,0.5444882091838019,0.693143175788257,0.5657415784192124,0.5870713946716292,0.5463180336956757,0.5478931714102784,0.7178272769542229,0.5841503690684737,0.5846826014739059,0.554162695463816,28.198758140147163,28.198758140147163,34.522297150692395,34.522297150692395,30.70718517389136,30.70718517389136,30.201563556026912,30.201563556026912,30.538545809305774,30.538545809305774,11.205066499659281,15.102243512313223,11.703522701051597,12.223469239772058,11.247211078283499,11.283605921843588,15.842022036286266,12.151098243823554,12.164257186872561,11.429534313783591,264.5330779742837,264.5330779742837,0.0,293.9256421936485,0.0,264.5330779742837,293.9256421936485,0,0
+2017/07/13 20:00:00,252.3666411193745,0,827.2088616261061,0,0,0,60.89844808788664,0.0,22.74838630489335,0.0,106.16168237671882,0,39.380909295966944,2.910805659925789e-09,23.177215050997958,0,0,0.0,472.30533650066496,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4454.889312614252,3643.451008269428,5387.520084103398,5605.416756043678,38388.55876555119,7980.463482018538,6930.649609924922,8387.185009508614,5197.824836494175,53935.81911685351,7952.404764497807,7266.6441752760775,8703.685388849653,5048.128113270481,54343.26469113425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04404121251209242,0.0013934332646250878,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0388752629924083,1.0388752629924083,1.0926928006830257,1.0926928006830257,1.0434637462459126,1.0434637462459126,1.0747355301101305,1.0747355301101305,1.0950003698511968,1.0950003698511968,0.54686636621131,0.6369980994463708,0.5449275538071489,0.5843623993452026,0.5594037684465377,0.5452119435885652,0.6536737900711119,0.551872081718216,0.5768045341554102,0.5628450667806588,27.784854483526715,27.784854483526715,30.18077483995222,30.18077483995222,27.98508728665537,27.98508728665537,29.36993825429215,29.36993825429215,30.28577884058673,30.28577884058673,11.25986854790797,13.517701064968662,11.21517226228923,12.156339018882491,11.552832376572951,11.221718228375238,13.974071549069066,11.37602082617525,11.97073499879832,11.634437926359823,252.3666411193745,252.3666411193745,0.0,280.4073790215272,0.0,252.3666411193745,280.4073790215272,0,0
+2017/07/13 21:00:00,235.0966099603911,0,811.3398857144244,0,0,0,41.027802865084034,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9626138593036444e-09,25.604844844179176,0,0,0.0,491.92671310152735,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2432.1608119931466,1859.2162667606876,3340.84469224079,4775.15272486723,27713.72242910577,4740.148209369867,4402.782102283351,5046.875084533413,3088.002862642672,35710.159013761426,4579.425942161088,4451.641498487861,5157.894346936045,2843.622143690035,35623.12773540805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043196336480298234,0.001366701975906295,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0035909813077046,1.0035909813077046,1.0435561934290905,1.0435561934290905,1.0076091425137228,1.0076091425137228,1.049580661723498,1.049580661723498,1.0633136838518558,1.0633136838518558,0.5152659884567483,0.5941643573318638,0.5065599548802225,0.5481464561797801,0.5324955129616539,0.5077807607353431,0.5938164475034436,0.5063014787517778,0.5346529650261869,0.531162964297025,26.27109582478613,26.27109582478613,27.98912939413303,27.98912939413303,26.441135328885437,26.441135328885437,28.25320881560131,28.25320881560131,28.860079798007817,28.860079798007817,10.55167090071852,12.400744892361203,10.364153317109583,11.289468309324562,10.932441519862351,10.390250442934331,12.391998600013778,10.358636146921626,10.981026390574797,10.902533814219666,235.0966099603911,235.0966099603911,0.0,261.21845551154564,0.0,235.0966099603911,261.21845551154564,0,0
+2017/07/13 22:00:00,147.9882485666825,0,636.3494134289028,0,0,0,11.375662813411664,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8580950440574414e-09,20.859628145090817,0,0,0.0,476.64282712245426,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2910.7799936136935,1677.3342932731357,534.8810098723965,1419.3441384311577,1239.0092052888217,225.29205305194452,14114.827265006545,128.35221154478145,1230.0277272910444,1118.63249016946,0.0,13639.294623383841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03387971411920765,0.0010719305386228855,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.858769513257271,0.858769513257271,0.8958145533202333,0.8958145533202333,0.9050453225033858,0.9050453225033858,0.9867877578415436,0.9867877578415436,0.9814505257813302,0.9814505257813302,0.4897834426381235,0.5570858434186037,0.4796357419681107,0.518599079441938,0.5097272070727845,0.474751273533685,0.5470491974572667,0.47134869175575195,0.48614771442877064,0.5023499734481928,20.564731695913736,20.564731695913736,21.944271681179288,21.944271681179288,22.296758616223357,22.296758616223357,25.566659612113767,25.566659612113767,25.345167172766836,25.345167172766836,10.01204639749109,11.498155490678855,9.804964702836983,10.62432954366173,10.431992836774967,9.70687242456259,11.264091841818711,9.639148055120486,9.937342063307298,10.274650870109312,147.9882485666825,147.9882485666825,0.0,164.4313872963139,0.0,147.9882485666825,164.4313872963139,0,0
+2017/07/13 23:00:00,90.46562329393947,0,470.6093566635183,0,0,0,3.1713742305319386,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.638043068630373e-09,11.783268001931226,0,0,0.0,417.3738278947021,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1469.1047095948572,0.0,0.0,147.68261488290028,0.0,0.0,4932.240269192364,0.0,0.0,0.0,0.0,3869.208445885014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025055590732253594,0.0007927414255810523,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7003434346043391,0.7003434346043391,0.737039331084601,0.737039331084601,0.7498292114986201,0.7498292114986201,0.9328420985540976,0.9328420985540976,0.8338649932558835,0.8338649932558835,0.4447360879799073,0.551559339496568,0.45638498447245474,0.4691848193231464,0.5083626472853618,0.4075194873745306,0.5286999502080841,0.43449001740210774,0.4142292784758314,0.49833365918139466,15.315318102646813,15.315318102646813,16.43596869711419,16.43596869711419,16.840161900109678,16.840161900109678,23.378988772397577,23.378988772397577,19.66920444445512,19.66920444445512,9.126658630332415,11.368732167272398,9.347234199326053,9.596338342217095,10.402712088463176,8.461008504161782,10.847456365301213,8.937468668627531,8.576629164290097,10.189979666917964,90.46562329393947,90.46562329393947,0.0,100.5173592154883,0.0,90.46562329393947,100.5173592154883,0,0
+2017/07/14 00:00:00,41.58454578464895,0,462.4165194757858,0,0,0,0.2786435934134906,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.9461137117155956,2.580681360023002e-09,9.562467480516,0,0,0.0,409.18099070696957,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.328612319307496,166.86613531709412,90.60261703457627,792.3883617036461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02461939801188959,0.0007789405919601426,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8360289018872785,0.8360289018872785,0.8672420168722224,0.8672420168722224,0.8501356383078001,0.8501356383078001,0.9126578472052675,0.9126578472052675,0.9044470918971512,0.9044470918971512,0.5942338876768984,0.7611377085022355,0.5816467846754328,0.6517501252368099,0.7012840484142602,0.5346917280624037,0.7178297262040656,0.5437651419104105,0.5729550791048642,0.6758199334401231,19.74598905639796,19.74598905639796,20.875261903531225,20.875261903531225,20.25134719371195,20.25134719371195,22.590049698306828,22.590049698306828,22.273809714191216,22.273809714191216,12.402493482946525,17.203376621010676,12.089364391890356,13.92081064813057,15.34331865673515,10.981901160652114,15.8420967434148,11.188452787619525,11.877153759649104,14.598783287571905,41.58454578464895,41.58454578464895,0.0,46.20505087183217,0.0,41.58454578464895,46.20505087183217,0,0
+2017/07/14 01:00:00,23.769171816981572,0,47.30097693522822,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5720763933037819,0,0,0.0,11.810624422684086,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0025183390481805065,7.967849205730867e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8408922401858967,0.8408922401858967,0.9120623455716838,0.9120623455716838,0.8523757139030499,0.8523757139030499,0.9382128138147686,0.9382128138147686,0.9980807773570932,0.9980807773570932,0.5765348190179935,0.769461321513716,0.55258854904775,0.6452734050810682,0.7588146800021024,0.5220560873934322,0.7405900296468811,0.5195399905757546,0.5736757626587309,0.7183820772260079,19.91927511836799,19.91927511836799,22.567022111202164,22.567022111202164,20.332358029553276,20.332358029553276,23.591657200225015,23.591657200225015,26.038909396130038,26.038909396130038,11.964157209805549,17.474212957898317,11.392734542006593,13.742667647525423,17.128317422211182,10.700197315514345,16.547476335641377,10.644927630908057,11.894624848136559,15.858951178029315,23.769171816981572,23.769171816981572,0.0,26.4101909077573,0.0,23.769171816981572,26.4101909077573,0,0
+2017/07/14 02:00:00,28.344196689505097,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248336030322016,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8573759546980669,0.8573759546980669,0.9415646201163589,0.9415646201163589,0.8649603945945264,0.8649603945945264,0.9632889088553328,0.9632889088553328,1.0778522787924332,1.0778522787924332,0.5793406929322145,0.774030864240777,0.5525890597078215,0.6525423915935841,0.7840241466761462,0.5143067395636921,0.737133523077568,0.5075809135950402,0.5720697731291812,0.7319805627186851,20.5139402302475,20.5139402302475,23.72496231300933,23.72496231300933,20.79134490417485,20.79134490417485,24.599714946045623,24.599714946045623,29.50986515319508,29.50986515319508,12.032740994286058,17.62415505295725,11.39274646259662,13.942726862111414,17.955167370321774,10.53084912718694,16.438919754156487,10.385973906600128,11.855722671919196,16.278036102303588,28.344196689505097,28.344196689505097,0.0,31.493551877227883,0.0,28.344196689505097,31.493551877227883,0,0
+2017/07/14 03:00:00,23.722020930059323,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249255063815341,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.843047241655447,0.843047241655447,0.9226072606368853,0.9226072606368853,0.8462883232990113,0.8462883232990113,0.9333911241643639,0.9333911241643639,1.0735798242540004,1.0735798242540004,0.5698145739359655,0.7643019923063246,0.5411623790202014,0.6445242451667321,0.8038956386631095,0.49553237003695444,0.7180896232172275,0.48636782855486116,0.5554659781139634,0.7396900665968569,19.996375923757995,19.996375923757995,22.976898686630165,22.976898686630165,20.112698717101267,20.112698717101267,23.400676270352093,23.400676270352093,29.318139349838162,29.318139349838162,11.80128345158792,17.305988543463087,11.1288373913697,13.722179262298553,18.625980636708775,10.13133598080411,15.850025602037633,9.9418485836256,11.460083231589394,16.519162319830087,23.722020930059323,23.722020930059323,0.0,26.357801033399248,0.0,23.722020930059323,26.357801033399248,0,0
+2017/07/14 04:00:00,46.08238648361745,0,88.72588128136032,0,0,0,0.05048920071326517,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,5.998674622957097,0.0,0.5250891103129646,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,198.80800681315648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8938149626105518,0.8938149626105518,0.937062411448686,0.937062411448686,0.8954342080029265,0.8954342080029265,0.9510399480037088,0.9510399480037088,0.9815692117110176,0.9815692117110176,0.46075965914432754,0.5408598330712712,0.44944388390345025,0.49081811846709916,0.5508445774391546,0.42251438992790274,0.5109840461359149,0.4194086118922593,0.44461475657623856,0.5299105988388638,21.868371786812432,21.868371786812432,23.54600723746755,23.54600723746755,21.929822097118105,21.929822097118105,24.104212575918197,24.104212575918197,25.350080669239986,25.350080669239986,9.431578313174569,11.121926722750132,9.2150994148557,10.033410484651895,11.35209009555885,8.722057158547685,10.459033346616266,8.667196822881237,9.124391892445047,10.874495832297413,46.08238648361745,46.08238648361745,0.0,51.20265164846383,0.0,46.08238648361745,51.20265164846383,0,0
+2017/07/14 05:00:00,76.4626360351607,0,212.9421150752648,0,0,0,0.27633594764774333,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.87511768982781,0.0,0.5251393677292683,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1114.0487747748095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9777313036707482,0.9777313036707482,0.9787228289733938,0.9787228289733938,0.9790143024969851,0.9790143024969851,1.0056755428941742,1.0056755428941742,0.9949401253779081,0.9949401253779081,0.5682137986560859,0.7029447312458046,0.5470198483222268,0.6190780847114125,0.7608372666274916,0.5090961695374284,0.6471860537407319,0.5027217389970328,0.5452289462241103,0.7212909969192834,25.19146967643104,25.19146967643104,25.23239246081735,25.23239246081735,25.244429536494806,25.244429536494806,26.359233701182347,26.359233701182347,25.907085772262363,25.907085772262363,11.762775532195647,15.392847731309445,11.263413796500117,13.04072186095651,17.193656079497956,10.418442014511001,13.795086056660693,10.28252361216586,11.222109699029815,15.947930709773217,76.4626360351607,76.4626360351607,0.0,84.95848448351188,0.0,76.4626360351607,84.95848448351188,0,0
+2017/07/14 06:00:00,87.96358091517779,0,632.7410317153776,0,0,0,0.7174478570951258,0.0,9.073231915861708,0.0,73.80580873715317,0,3.8418664927649933,2.52237867650989e-09,0.5252259097803724,0,0,0.0,402.0537403838407,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2999.572182913911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03368760120402717,0.0010658522199003236,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0265276223656075,1.0265276223656075,1.0072691803452827,1.0072691803452827,1.0279847062404261,1.0279847062404261,1.1060427967299173,1.1060427967299173,1.0018995864773579,1.0018995864773579,0.7084659868716481,0.8623505216059436,0.6932189077633963,0.9267483218408263,1.013585393557852,0.640343774756991,0.8060212426353355,0.6412152274477594,0.869825484014344,0.953650361470815,27.249859600141576,27.249859600141576,26.42672531286061,26.42672531286061,27.31269933069406,27.31269933069406,30.790770886937082,30.790770886937082,26.199702251171132,26.199702251171132,15.558372027015508,20.6956188152366,15.104472968426947,23.139081441545997,26.695161222673022,13.608296578498269,18.698725687519683,13.631973812801121,20.970540068510346,24.20931677103553,87.96358091517779,87.96358091517779,0.0,97.73731212797531,0.0,87.96358091517779,97.73731212797531,0,0
+2017/07/14 07:00:00,148.83207991941384,0,760.5580655499085,0,0,0,5.267391807342535,0.0,7.753881655449512,0.0,69.33401494192633,0,39.380909295966944,3.013549858154225e-09,27.095882215715005,0,0,0.0,494.3804217058276,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4560.419904713607,0.0,0.0,0.0,0.0,0.0,7676.585141256361,0.02852337733245608,0.0,0.0,0.0,5945.30742064519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04049267476030667,0.0012811600036934426,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6697547147899594,0.6697547147899594,0.6569904640869986,0.6569904640869986,0.7381356061543818,0.7381356061543818,1.174599165554753,1.174599165554753,0.8952806903422275,0.8952806903422275,0.4268751923562485,0.5099173084067828,0.4417058619966416,0.6698056557165715,0.6479735506834291,0.39586586572682614,0.49001316476418055,0.4211490334511509,0.6653626123719769,0.6332717191191668,14.425580024110005,14.425580024110005,14.066277623343765,14.066277623343765,16.470338832764597,16.470338832764597,34.01557663168782,34.01557663168782,21.923991523033948,21.923991523033948,8.799784499735495,10.436078424421481,9.070236795437623,14.427028102856326,13.816714442844543,8.264778401125241,10.016785730291502,8.697888605100502,14.301149858086589,13.417368211821298,148.83207991941384,148.83207991941384,0.0,165.3689776882376,0.0,148.83207991941384,165.3689776882376,0,0
+2017/07/14 08:00:00,190.39973725120467,0,811.6808103456291,0,0,0,30.871454576907293,0.0,11.36563784648343,0.0,83.2008179303116,0,39.380909295966944,2.9626346693319628e-09,25.58091759857282,0,0,0.0,492.267637732732,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,8.999426995925951,8108.476020926879,12597.095827361529,3031.3212190581166,2262.7881384121797,2830.2527502198254,5490.786228797233,32141.13695522454,2484.349876182307,1852.9043498729227,2528.8295612977895,5518.331522351903,30768.68727294185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04321448756018873,0.0013672762634216837,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8712758820388208,0.8712758820388208,0.801649785355137,0.801649785355137,0.8956336056455204,0.8956336056455204,1.254057158108844,1.254057158108844,0.9821525128193712,0.9821525128193712,0.4856501445829214,0.5144727872011432,0.4745177397538518,0.6950661033548223,0.5586761169448309,0.46644241247097,0.4949906573568983,0.46177263143963454,0.7074807154559799,0.5549618358171918,21.02415134977244,21.02415134977244,18.549327746025057,18.549327746025057,21.937396618023115,21.937396618023115,37.929794221038186,37.929794221038186,25.374236722045865,25.374236722045865,9.927162742380474,10.534450563369091,9.702208256922106,15.158928856632002,11.535642920002033,9.542372919595252,10.120034592261007,9.451226000854831,15.528737723501592,11.448257413162565,190.39973725120467,190.39973725120467,0.0,211.55526361244964,0.0,190.39973725120467,211.55526361244964,0,0
+2017/07/14 09:00:00,232.08995290989148,0,858.4611547899854,0,0,0,54.2563350623699,0.0,11.323895916778682,0.0,106.27511244621549,0,39.380909295966944,2.8581155344965544e-09,20.85370018570237,0,0,0.0,485.8124534082721,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4694.184521473137,2134.019449516339,3444.64557300817,9526.856660688616,31274.660714932987,7350.047435270166,4588.337756858301,5897.750950700283,8050.880294773971,45618.76935335185,7212.533650009747,4427.637915272029,5812.358482979513,8358.091481061074,45299.004702527476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04570510774891925,0.0014460777500876335,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0015194864233934,1.0015194864233934,0.9062947988018962,0.9062947988018962,0.9594567639280086,0.9594567639280086,1.2681477002622408,1.2681477002622408,1.0144813248291102,1.0144813248291102,0.528345156795423,0.5250393850552167,0.47882026133967814,0.714457375258712,0.5286520010323164,0.5364453351729037,0.5213033002221721,0.48284915423533104,0.7435776304298883,0.5296024432246702,26.183673174292252,26.183673174292252,22.34473691765325,22.34473691765325,24.44406250833981,24.44406250833981,38.64162404332377,38.64162404332377,26.73335911415826,26.73335911415826,10.839544186985748,10.76608476878394,9.788516266587635,15.739477912596001,10.846386741622993,11.02154309263554,10.683632540512988,9.870059242229758,16.641719324101516,10.867607249940875,232.08995290989148,232.08995290989148,0.0,257.877725455435,0.0,232.08995290989148,257.877725455435,0,0
+2017/07/14 10:00:00,266.5754891827502,0,909.4682013249255,0,0,0,57.91432326545607,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.8044930534546506e-09,18.586670831572857,0,0,0.0,448.09361866185174,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7639.025811214345,3140.490162896661,5315.103619036307,9422.210917010412,41435.279909111356,8249.573645134986,4617.308791171419,5813.987269248293,7997.541684146368,42310.26026414587,8504.424968662175,4599.850217119103,5929.626701220468,8402.210520528262,42752.47557709201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048420760687698884,0.0015319991161043714,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.082535087806469,1.082535087806469,0.9661593848682031,0.9661593848682031,0.9910609854491658,0.9910609854491658,1.2532215627038972,1.2532215627038972,1.0489669663898082,1.0489669663898082,0.5475425774083162,0.5153829348719458,0.46923547884711614,0.7010201599245525,0.505050463767686,0.5652385523487468,0.5169546821452459,0.47820908622029323,0.7300293035123946,0.5122810599860581,29.720739448185086,29.720739448185086,24.716682463322982,24.716682463322982,25.744784075271184,25.744784075271184,37.887738578237176,37.887738578237176,28.226247633129518,28.226247633129518,11.275495857487513,10.554212100465875,9.597338275320439,15.335459268320093,10.331974063628621,11.691498903423323,10.588422964468094,9.77620752575507,16.217412478250324,10.48700982912321,266.5754891827502,266.5754891827502,0.0,296.1949879808335,0.0,266.5754891827502,296.1949879808335,0,0
+2017/07/14 11:00:00,308.7868558864179,0,989.9904908458788,0,0,0,80.61637681732901,0.0,16.693521233099577,0.0,147.76209134187457,0,39.380909295966944,2.858115534496555e-09,20.90198199283543,0,0,0.0,475.38037941398886,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12661.721540556815,5928.918078221867,9186.513779522162,9287.886056707863,61996.5865130204,11756.386906604022,6625.920979250219,8844.642790401176,9150.694876384865,56785.83033197267,12233.051502052274,6685.509192973279,9094.486601056704,9504.81410405051,57969.92949480338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0527078270251911,0.001667638906690879,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1543682443901753,1.1543682443901753,1.0307469504586066,1.0307469504586066,1.0501123824383232,1.0501123824383232,1.2178492540098955,1.2178492540098955,1.1020162361562422,1.1020162361562422,0.5925167925559937,0.5399028971353386,0.496630382733572,0.6893164700487846,0.5186498102686962,0.6226589953684895,0.5509911419558419,0.5148695905846464,0.7167079237221711,0.5316552712983542,33.04836801700979,33.04836801700979,27.43204208528826,27.43204208528826,28.2765796565143,28.2765796565143,36.12428332727242,36.12428332727242,30.606148194331567,30.606148194331567,12.359372340164114,11.10009477357778,10.154281969607325,14.989912637610743,10.62543914759307,13.134921444025053,11.35550080689795,10.543061731762648,15.807906516090242,10.913574189656913,308.7868558864179,308.7868558864179,0.0,343.09650654046436,0.0,308.7868558864179,343.09650654046436,0,0
+2017/07/14 12:00:00,297.99858335464035,0,936.6930020369379,0,0,0,90.31455492672168,0.0,16.798297433460366,0.0,129.49988082968767,0,39.380909295966944,2.8044930534546506e-09,18.572965663544846,0,0,0.0,457.573243117592,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13940.99588896836,6436.1934508164,10009.889385150296,8268.498662566388,65861.52804993914,14263.473076220807,7692.489899610764,10933.138429357907,9377.47883397814,67502.16076556413,14936.457853218653,7849.331364996101,11346.193261618924,9676.719965316788,69248.87748565874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0498702292431978,0.0015778592908374284,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.186946538357797,1.186946538357797,1.0586449477741178,1.0586449477741178,1.0747611773431853,1.0747611773431853,1.1631981321716083,1.1631981321716083,1.1210753042133756,1.1210753042133756,0.6271736867347728,0.5587341422885367,0.5210010805449863,0.6646594211002073,0.5409118660740878,0.6630113243109765,0.5755391513582712,0.5447689375466791,0.686531943478538,0.5593812045430218,34.61200692138847,34.61200692138847,28.653006707950382,28.653006707950382,29.37108829956145,29.37108829956145,33.468957361333295,33.468957361333295,31.48484145606149,31.48484145606149,13.254478080755021,11.537012821827872,10.676989219036841,14.2813057269977,11.123114963433437,14.234880186227471,11.939902286381823,11.21152282154226,14.90857218201522,11.552299000033173,297.99858335464035,297.99858335464035,0.0,331.1095370607115,0.0,297.99858335464035,331.1095370607115,0,0
+2017/07/14 13:00:00,297.2116562823661,0,878.7465930320623,0,0,0,91.97266116930295,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,2.749949606493664e-09,16.354792571044086,0,0,0.0,435.1171866252606,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13831.866841848065,7027.6393852353185,10355.886670687349,7898.748040232083,66250.83214991997,14378.010864638425,8167.250285112949,11138.576572439375,9187.381450387176,66733.6357648566,15066.099256596044,8385.156067376809,11610.858557086858,9439.592932300824,68875.20346014653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04678511950648677,0.0014802485692667737,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1780981600859033,1.1780981600859033,1.0962201164386982,1.0962201164386982,1.0844846602117597,1.0844846602117597,1.150108207023871,1.150108207023871,1.122996402334364,1.122996402334364,0.6317613743126607,0.5836200526909913,0.532088194498162,0.6555434928681048,0.5442028548042791,0.6664297028266218,0.6074555497732637,0.5578419956632118,0.6754939549779166,0.5636557682327629,34.18412840981283,34.18412840981283,30.34135612415507,30.34135612415507,29.80875706028374,29.80875706028374,32.84632469627863,32.84632469627863,31.574082731220756,31.574082731220756,13.376873703424863,12.13799889879597,10.923291509173154,14.025992093549718,11.198507286551106,14.331304169295123,12.73881318187864,11.515966550984018,14.589433896164891,11.653737318076281,297.2116562823661,297.2116562823661,0.0,330.23517364707345,0.0,297.2116562823661,330.23517364707345,0,0
+2017/07/14 14:00:00,276.37791790990207,0,835.922306363471,0,0,0,87.23088442756679,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.69447592598638e-09,14.078817335826628,0,0,0.0,427.78325246921344,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12840.39319648491,8142.969191619719,10308.850658783731,7635.267915397153,64496.415252859995,12642.43689755273,8657.305537395208,9833.167606184858,8627.972631319077,58648.51942947149,13237.867394812747,8973.95022838749,10294.216260423405,8833.32183240508,60904.704384228375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04450512276401634,0.0014081110616238398,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1514172349912168,1.1514172349912168,1.1792772632740935,1.1792772632740935,1.086332529161211,1.086332529161211,1.1422532797679854,1.1422532797679854,1.1155601542625448,1.1155601542625448,0.6163744730440576,0.6368324570619811,0.5323132060048912,0.6473240554201636,0.5339413688428779,0.6454673402638428,0.6671030387748276,0.5561189371562741,0.6639415722961268,0.5518526097038742,32.908347884662774,32.908347884662774,34.24101070616412,34.24101070616412,29.89230488557881,29.89230488557881,32.47529113114065,32.47529113114065,31.229323728275233,31.229323728275233,12.969969205529964,13.5132283488079,10.92834528423542,13.798874291663523,10.964979277622817,13.747975445417339,14.350356968268287,11.475416268474618,14.26107005008538,11.37556689456288,276.37791790990207,276.37791790990207,0.0,307.08657545544673,0.0,276.37791790990207,307.08657545544673,0,0
+2017/07/14 15:00:00,264.47211947246535,0,850.8061547569042,0,0,0,82.17273101315716,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.694475925986381e-09,14.099204903107916,0,0,0.0,442.66710086264675,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11791.065984774177,9631.472757684487,10255.958359331837,7510.0915606157305,63347.81118322541,10650.444190747707,9067.413719755363,8548.981924025304,8008.114038791088,51463.23842024136,11084.518031838605,9491.835406317303,8947.776305736254,8165.203453321355,53612.22145079117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045297549877048454,0.001433182903112913,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1217049164639763,1.1217049164639763,1.2417024009704674,1.2417024009704674,1.087326585115281,1.087326585115281,1.1389086811423392,1.1389086811423392,1.1144740738245624,1.1144740738245624,0.5859781244427411,0.676157968070927,0.5245521759944882,0.6339682193006905,0.5183129617417495,0.6079068260298723,0.7132454946804605,0.5456896294003855,0.6474936480528966,0.5340182491655692,31.514075577078174,31.514075577078174,37.309812282323506,37.309812282323506,29.93729815629061,29.93729815629061,32.31790446565327,32.31790446565327,31.179124638472288,31.179124638472288,12.196339144751178,14.608483318826373,10.755298220968598,13.436075719622892,10.618073553639917,12.750426204376211,15.70272071785196,11.232721290389264,13.803530849545723,10.966711939040295,264.47211947246535,264.47211947246535,0.0,293.8579105249615,0.0,264.47211947246535,293.8579105249615,0,0
+2017/07/14 16:00:00,287.55423406038994,0,898.820708625311,0,0,0,82.41993445456957,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.694475925986381e-09,14.049637874638012,0,0,0.0,437.4461259622373,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11869.703988432766,9756.99047024202,10903.822647109373,7748.180353267525,66597.05408797078,10373.94137129181,9037.302954172643,8813.758919410651,7777.364092434107,51633.12620987155,10738.14247324516,9503.150095585172,9231.551990848802,7934.305599188625,53413.57329716432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047853880289702576,0.0015140634154600014,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1249720278847646,1.1249720278847646,1.232792127221047,1.232792127221047,1.1080590525610525,1.1080590525610525,1.1503574872383566,1.1503574872383566,1.1342814217728938,1.1342814217728938,0.5724644403793456,0.6730475459037949,0.5265684785577425,0.625758982482377,0.5121866842052532,0.5907698698329712,0.7080218262665359,0.5474468189168429,0.6377630239554236,0.5261199637533079,31.66598385667791,31.66598385667791,36.865164653660884,36.865164653660884,30.883424520625795,30.883424520625795,32.85813169663275,32.85813169663275,32.1007535436453,32.1007535436453,11.865272398395604,14.519415181297688,10.800004812147066,13.216919181879916,10.48497169688467,12.315633453836625,15.545007692836322,11.27328166448163,13.538371181037732,10.790044870316876,287.55423406038994,287.55423406038994,0.0,319.5047045115444,0.0,287.55423406038994,319.5047045115444,0,0
+2017/07/14 17:00:00,298.6795403917268,0,918.0040976925462,0,0,0,86.7508947911924,0.0,16.630907673226492,0.0,133.89528835348938,0,39.380909295966944,2.8044930534546514e-09,18.58956507259278,0,0,0.0,456.6295150294725,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11731.263240789425,9979.399406578555,11450.54966376353,7698.615051348165,67109.2146483393,11285.123465710696,9517.116659538518,10355.88353609541,7908.278247996621,57325.903032938564,11574.403315468828,9964.30673208276,10784.444602601803,8042.611953553037,58936.840353867694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04887521813290635,0.0015463778328877647,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1169441152437865,1.1169441152437865,1.249913397262384,1.249913397262384,1.1255214605325095,1.1255214605325095,1.1423313060331575,1.1423313060331575,1.1356073974253307,1.1356073974253307,0.5614737218934409,0.683064972098843,0.5377407593717093,0.611479112514729,0.5146853193221808,0.5797569426258008,0.7190070166259849,0.5613023701671529,0.6219123986596642,0.52820417403135,31.29334791834509,31.29334791834509,37.72141362912462,37.72141362912462,31.69156489412829,31.69156489412829,32.47896709180493,32.47896709180493,32.16290904182803,32.16290904182803,11.601856860107105,14.807764946106758,11.050912916128354,12.842666375168676,10.539061949869179,12.0429444541803,15.87803641624069,11.597791536039352,13.11523552740843,10.836401671141218,298.6795403917268,298.6795403917268,0.0,331.86615599080756,0.0,298.6795403917268,331.86615599080756,0,0
+2017/07/14 18:00:00,292.30617494610254,0,920.9763813404206,0,0,0,96.15004798792356,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.962634669331966e-09,25.61052119463586,0,0,0.0,495.09215118989107,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11590.603764342508,10412.06290677379,12413.686673755523,7578.346506027219,68558.7707859335,13102.026812504599,10898.503622621347,13080.51363296432,8730.686935043432,68507.11688117875,13306.63833451746,11329.540317931791,13566.353777320362,8805.510814884503,70039.9968062512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04903346471590949,0.0015513846444670163,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1052210597638161,1.1052210597638161,1.265354517168209,1.265354517168209,1.1548966787735064,1.1548966787735064,1.1289078541828141,1.1289078541828141,1.134594423416947,1.134594423416947,0.5685842859486457,0.713083176854428,0.5767727603225463,0.6142790384413467,0.5377263265699502,0.5830784519844043,0.7472049944102633,0.6045870910867313,0.6204174709875939,0.5505126564455819,30.753048696580663,30.753048696580663,38.5001237955217,38.5001237955217,33.07347017608868,33.07347017608868,31.849450552094297,31.849450552094297,32.11542045416178,32.11542045416178,11.771678011951593,15.6978023097398,11.969959937352343,12.915350553830052,11.050585295578188,12.124633415713078,16.75665795910298,12.665203677427002,13.075890670531109,11.34436938520328,292.30617494610254,292.30617494610254,0.0,324.7846388290028,0.0,292.30617494610254,324.7846388290028,0,0
+2017/07/14 19:00:00,278.77305461467535,0,884.8128722831666,0,0,0,89.50728459133775,0.0,17.665254465099625,0.0,101.68988858149199,0,39.380909295966944,3.0135498583798973e-09,27.0977424753112,0,0,0.0,494.4189946451812,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10487.66603276427,8682.13314546131,11267.87919074634,6854.753043727418,64411.42402235514,12208.27470277562,9862.760769248076,12330.129273918707,8099.241176199759,67745.51939767672,12323.67061891797,10150.057518297057,12762.445007530985,8107.37162358295,68864.7036122992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047108092707149045,0.001490467216204836,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0861035474654352,1.0861035474654352,1.1848002853251076,1.1848002853251076,1.1266597053738212,1.1266597053738212,1.1060049872577509,1.1060049872577509,1.1263350692063498,1.1263350692063498,0.5612845630111938,0.6737510747621341,0.572307123244315,0.6027000129909855,0.5482919696967526,0.5665173640669684,0.6912647581861541,0.5917424601800791,0.6011921696953063,0.5567561684345459,29.88194549397565,29.88194549397565,34.508006757367426,34.508006757367426,31.744591974361512,31.744591974361512,30.789034726259302,30.789034726259302,31.729463911273612,31.729463911273612,11.597369133849398,14.539524357392011,11.86146500048379,12.61697280324151,11.292837541332787,11.722087767401746,15.047024509213529,12.339968514476112,12.578545685671997,11.49039780338643,278.77305461467535,278.77305461467535,0.0,309.74783846075036,0.0,278.77305461467535,309.74783846075036,0,0
+2017/07/14 20:00:00,274.206121413517,0,844.0205323766504,0,0,0,79.85703146891164,0.0,22.209273718399995,0.0,106.16168237671882,0,39.380909295966944,2.9108263172465884e-09,23.16524934815458,0,0,0.0,489.1170072512092,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8005.037614589461,5792.099030581233,8063.624578845394,6192.49227325128,52277.47365106157,11377.461654547296,8442.656904139894,11095.575952262718,7501.100404798962,66629.3498311749,11416.452024007898,8723.025702327299,11371.859717756399,7453.106721951513,67195.63711895363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044936278315368006,0.0014217525227283956,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.060382352795843,1.060382352795843,1.0965881497607923,1.0965881497607923,1.0602793620815623,1.0602793620815623,1.0865149799256348,1.0865149799256348,1.1031128718409469,1.1031128718409469,0.5567824439171882,0.6210342949843815,0.5535818867765218,0.5925894576019622,0.5560219836441327,0.5569090840687139,0.6361017560259264,0.5613486204819856,0.5858762941841192,0.5603376493977414,28.72997513245646,28.72997513245646,30.358135418865757,30.358135418865757,28.725409552803086,28.725409552803086,29.900560465350097,29.900560465350097,30.656375863919934,30.656375863919934,11.491015927325947,13.09211304976084,11.41594389209098,12.361194573207058,11.473138399950685,11.493995523999956,13.49351198550103,11.598888700475399,12.193814812106282,11.574927275950557,274.206121413517,274.206121413517,0.0,304.6734682372411,0.0,274.206121413517,304.6734682372411,0,0
+2017/07/14 21:00:00,257.5971795529098,0,811.2642827759952,0,0,0,63.522098447018685,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9626346693319653e-09,25.611118854763237,0,0,0.0,491.85111016309816,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5846.553159520884,4041.9269425054804,6097.701317506807,5360.042597267071,42307.84447305971,8829.126758323782,6710.374273165813,8400.401384970753,5818.055025963394,52857.62023663362,8754.089013116814,6764.913409546816,8541.331373065472,5670.405210290682,53120.895647924706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04319231132385666,0.001366574622762249,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0428539660906078,1.0428539660906078,1.072781874649632,1.072781874649632,1.0406897308294405,1.0406897308294405,1.064291011416983,1.064291011416983,1.0850322607390352,1.0850322607390352,0.5534947910796173,0.6124373982502889,0.5395024921176498,0.5844810182948998,0.5523613855430163,0.5480278593160464,0.6099032319106931,0.540332907312744,0.5722986142394311,0.5526572859707664,27.95843340219156,27.95843340219156,29.28240255525685,29.28240255525685,27.86394264293149,27.86394264293149,28.903525725731583,28.903525725731583,29.83350341091102,29.83350341091102,11.413907188982606,12.86750452715502,11.090971534204584,12.15927178715748,11.387432873276936,11.28672298654071,12.801907219861818,11.109900302740911,11.861259095688624,11.394339203571604,257.5971795529098,257.5971795529098,0.0,286.219088392122,0.0,257.5971795529098,286.219088392122,0,0
+2017/07/14 22:00:00,181.84290752500073,0,623.3855395847551,0,0,0,45.21527671109372,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8581155344965544e-09,20.874673205726925,0,0,0.0,463.6789532783065,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2672.0748472158157,1885.51280338632,3011.2592415369545,3727.936972824136,23318.533200704147,6566.70710163829,5159.332907480117,6182.933173352852,4366.414053610172,40448.30616068355,6339.377608149532,5051.892315790094,6159.915298529551,4111.985194160855,40298.57203187636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03318950787331743,0.0010500928941163598,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.000829340230448,1.000829340230448,1.026763661611702,1.026763661611702,0.9956306704358893,0.9956306704358893,1.0114839693798416,1.0114839693798416,1.0168084698524558,1.0168084698524558,0.547176768693455,0.5981112911675169,0.5312257072964051,0.5747509933733765,0.5439314595327644,0.535906660897149,0.5881616098953154,0.5256980765821052,0.5570444870844266,0.5399085399936432,26.154583231216748,26.154583231216748,27.26003394544547,27.26003394544547,25.936038060086332,25.936038060086332,26.605685379113808,26.605685379113808,26.832716931223388,26.832716931223388,11.267039520218475,12.500336834514684,10.903940292232932,11.92073289353823,11.1922722142221,11.0093516820221,12.250575174935776,10.780684183279504,11.497182063070795,11.100223395894275,181.84290752500073,181.84290752500073,0.0,202.04767502777858,0.0,181.84290752500073,202.04767502777858,0,0
+2017/07/14 23:00:00,118.14110304615171,0,476.16317634858984,0,0,0,30.824420689989445,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6380627443055885e-09,11.805701294685939,0,0,0.0,422.92764757977363,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338.9731614793266,350.3536934753033,668.1571249147684,2359.723331295379,8959.94611083331,4911.329434417246,4018.886669023634,4507.676597488082,3345.5587607153893,30778.494209428318,4584.955845208545,3819.187665170902,4362.155145047691,3038.587877229419,30357.37357121171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02535128020603807,0.0008020968344190274,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9591813217117731,0.9591813217117731,0.9826318193196278,0.9826318193196278,0.9527711351430093,0.9527711351430093,0.9623531154605777,0.9623531154605777,0.960313809199486,0.960313809199486,0.5346680605264633,0.5807422443778748,0.5187441827359881,0.5595344320486323,0.5308350508531916,0.5193151078993913,0.5653785288489767,0.5086978103296502,0.5379745092836045,0.5243318048919676,24.432896846085754,24.432896846085754,25.394095883677224,25.394095883677224,24.173886156924837,24.173886156924837,24.561652305683552,24.561652305683552,24.478823743360337,24.478823743360337,10.981367044798887,12.067126953267106,10.627503594340453,11.555921500531966,10.895185918390226,10.64000109665487,11.694843650016239,10.409896563829548,11.056220230099129,10.750422697549979,118.14110304615171,118.14110304615171,0.0,131.2678922735019,0.0,118.14110304615171,131.2678922735019,0,0
+2017/07/15 00:00:00,47.3778727606382,0,464.20843591225173,0,0,0,0.3114459286424328,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,6.335233081960954,2.580700793824075e-09,9.545559682654048,0,0,0.0,410.9729071434355,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1231.352209058177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024714800970251485,0.0007819590750613653,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9661642527477811,0.9661642527477811,0.9889333794083561,0.9889333794083561,0.9597844342592692,0.9597844342592692,0.9342429827319252,0.9342429827319252,0.9726929900171188,0.9726929900171188,0.718252685752298,0.8192921752155001,0.685002934693883,0.7669476176696701,0.7303644135032133,0.6795253026450433,0.7801187394570473,0.6580043337608998,0.7151330074396021,0.7147907271334739,24.716881094890525,24.716881094890525,25.656009942678722,25.656009942678722,24.457349222485135,24.457349222485135,23.434349991017598,23.434349991017598,24.984112945613333,24.984112945613333,15.85500174917263,19.15721030481393,14.864049964147739,17.39210954123172,16.22781236279951,14.705380200665601,17.82530082699057,14.094559110849588,15.759997790429253,15.749599808995569,47.3778727606382,47.3778727606382,0.0,52.64208084515355,0.0,47.3778727606382,52.64208084515355,0,0
+2017/07/15 01:00:00,23.722133804073852,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250383803960593,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0245287213168595,1.0245287213168595,1.073860298113489,1.073860298113489,1.0099443396060888,1.0099443396060888,1.0134629465744678,1.0134629465744678,1.0545420720704912,1.0545420720704912,0.7353334572045179,0.8619935369873851,0.6947991832449257,0.7935229881351272,0.7880768203756668,0.6998044611773102,0.8305855970706661,0.6726157809904644,0.7434554036452924,0.7674049742651656,27.163780770266953,27.163780770266953,29.330705912643168,29.330705912643168,26.540235204972134,26.540235204972134,26.689943050127297,26.689943050127297,28.47167531284947,28.47167531284947,16.38258920107684,20.68254707762678,15.151050860023915,18.273736888591245,18.090616337114625,15.299290946266282,19.553211187028523,14.507084524106446,16.637856204734135,17.407027806724827,23.722133804073852,23.722133804073852,0.0,26.357926448970947,0.0,23.722133804073852,26.357926448970947,0,0
+2017/07/15 02:00:00,28.396900039632236,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5775369531593392,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.046611265587473,1.046611265587473,1.1004571465708164,1.1004571465708164,1.0295490545932866,1.0295490545932866,1.0442385957483704,1.0442385957483704,1.1122990903015637,1.1122990903015637,0.7460824746401497,0.8736917751385358,0.7044439412528443,0.8055897064332982,0.8117270221621983,0.7098545166415738,0.8464039260641928,0.6808289877679252,0.755556973399207,0.7852583493977688,28.1228823717814,28.1228823717814,30.534809685235487,30.534809685235487,27.380252413245373,27.380252413245373,28.018975978389307,28.018975978389307,31.078714391093683,31.078714391093683,16.721028915694603,21.11364281507062,15.43766317568506,18.683941677726224,18.89493930968483,15.600206322971758,20.11685579821149,14.743026177005547,17.023446595886,17.996343158691516,28.396900039632236,28.396900039632236,0.0,31.552111155146928,0.0,28.396900039632236,31.552111155146928,0,0
+2017/07/15 03:00:00,23.72189735732224,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248019336444462,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0509207068462272,1.0509207068462272,1.1075921745244885,1.1075921745244885,1.032827154636797,1.032827154636797,1.055366492194307,1.055366492194307,1.1048872341876106,1.1048872341876106,0.7735836021938698,0.903022562817855,0.7305968665850419,0.8343052907469843,0.8319942331105937,0.7345218433151768,0.8738925095461739,0.7043190156367471,0.7813866445354374,0.8079064142165964,28.312127689962026,28.312127689962026,30.861957737523113,30.861957737523113,27.522103008208248,27.522103008208248,28.508063016252322,28.508063016252322,30.737730806867674,30.737730806867674,17.609439582668656,22.219221339890083,16.235029203606203,19.684812183607136,19.602979905470207,16.357236392637788,21.12108939625817,15.433925106904567,17.86739138077681,18.763402053518575,23.72189735732224,23.72189735732224,0.0,26.357663730358045,0.0,23.72189735732224,26.357663730358045,0,0
+2017/07/15 04:00:00,58.03058026861496,0,88.72588128136032,0,0,0,14.490994133332432,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,5.950626107909102,0.0,0.5250616153103513,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,956.4092544969894,7996.4806268987795,2274.7867278485746,1907.5889751353834,2016.0770131253246,1600.2726955206672,13584.773291071135,1991.3919955408787,1699.5637363676738,1840.7705213469171,1344.8729985175853,11610.999266019317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9621375037676756,0.9621375037676756,0.9864326878125033,0.9864326878125033,0.9551565288841687,0.9551565288841687,0.9843223063945936,0.9843223063945936,0.9982250431406685,0.9982250431406685,0.544012588680199,0.5966043070554089,0.5267246872465765,0.5743547239009547,0.5462433469139428,0.5246964451194153,0.5805930434476261,0.5114215618466037,0.5493873653107281,0.544716292163411,24.552887323885415,24.552887323885415,25.551890412967353,25.551890412967353,24.27008215964689,24.27008215964689,25.46420857514721,25.46420857514721,26.04497372079652,26.04497372079652,11.194135751966684,12.462231710074818,10.803475704359002,11.911105102324257,11.24548804937588,10.758491191350558,12.06346237231574,10.468462393049919,11.318229880376606,11.210311798275754,58.03058026861496,58.03058026861496,0.0,64.4784225206833,0.0,58.03058026861496,64.4784225206833,0,0
+2017/07/15 05:00:00,82.75802089508635,0,212.9421150752648,0,0,0,8.268410521423759,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,2.1005457940392005,0.0,0.5250573904236356,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2622.1568889516284,1893.1945109907833,2487.3923233593723,2045.4499693706014,19388.144046026613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.97978864531997,0.97978864531997,0.987311937260339,0.987311937260339,0.9778274206132497,0.9778274206132497,1.0083890510951279,1.0083890510951279,1.01793866338804,1.01793866338804,0.6987162098785819,0.7823834945980085,0.671162274231288,0.7415980639989838,0.7018315303311035,0.6546387219316411,0.7370120798408814,0.6367668706330248,0.6879184496403133,0.6991760174641812,25.276423742023482,25.276423742023482,25.588471782312467,25.588471782312467,25.19543500669623,25.19543500669623,26.474209854748977,26.474209854748977,26.881043736171193,26.881043736171193,15.266968440885776,17.90053175131932,14.465633528048315,16.579231680681033,15.359633892230946,14.000848219261243,16.43511498036105,13.511457696923486,14.949032340376732,15.28061909754959,82.75802089508635,82.75802089508635,0.0,91.95335655009593,0.0,82.75802089508635,91.95335655009593,0,0
+2017/07/15 06:00:00,101.1932525750373,0,639.5345544084734,0,0,0,9.81895123544082,0.0,7.811305333067875,0.0,80.56906512710079,0,2.4688227974162316,2.5223974061681732e-09,0.5251080794891843,0,0,0.0,408.8472630769365,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3283.0523524095997,2245.534951905682,3172.592892990812,2482.706663913277,22729.650117228302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03404929338421514,0.001077295908361224,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.001487539827735,1.001487539827735,1.0054498063160942,1.0054498063160942,1.000604081023889,1.000604081023889,1.02618562077658,1.02618562077658,1.0261557461357276,1.0261557461357276,0.845949311101872,0.9449178852178922,0.8137977202797,0.8950484105181974,0.909633950626916,0.8094648022120752,0.9098435529041605,0.7871514866789939,0.8469031437008279,0.8914140605839342,26.182326213971734,26.182326213971734,26.349681352671396,26.349681352671396,26.145092370895668,26.145092370895668,27.235121463742402,27.235121463742402,27.23383425862785,27.23383425862785,20.100511031607482,23.858771095309507,18.966487278132618,21.915171400801768,22.473266209307837,18.816980421039077,22.481349177093406,18.059628260161432,20.134814080338614,21.777454385493584,101.1932525750373,101.1932525750373,0.0,112.436947305597,0.0,101.1932525750373,112.436947305597,0,0
+2017/07/15 07:00:00,165.89386055329618,0,651.427187475016,0,0,0,50.574782794474366,0.0,6.079072659887936,0.0,69.33401494192633,0,39.380909295966944,2.5223994805189695e-09,0.5250808585181967,0,0,0.0,385.24954363093514,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2224.4335199421566,1266.0868943234527,2706.37222456969,3959.534379566475,24912.24372081778,6730.951351842031,4187.800868498368,6866.34527877044,3982.1765166923087,51718.60441899582,6765.004464721598,4245.419087069706,6961.468745866046,4006.626904542296,51094.62955639011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034682465977630465,0.0010973290478591795,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0418824317783837,1.0418824317783837,1.0521476787838853,1.0521476787838853,1.0389609205693264,1.0389609205693264,1.05464066037907,1.05464066037907,1.0538705690418457,1.0538705690418457,0.6956873059056905,0.7670981574693249,0.6633045923307064,0.7526471746028812,0.7113052629463662,0.68796541523766,0.7602265718495609,0.6608828985186742,0.7406730845124391,0.7090908312315343,27.915994983548174,27.915994983548174,28.366131838759742,28.366131838759742,27.788585379743964,27.788585379743964,28.47602545140758,28.47602545140758,28.442055022063414,28.442055022063414,15.177275214882329,17.39701893130318,14.243132701683876,16.930159389766658,15.644003908925683,14.950404316322135,17.173909459378365,14.175098264300047,16.550091102211567,15.577187351569734,165.89386055329618,165.89386055329618,0.0,184.32651172588464,0.0,165.89386055329618,184.32651172588464,0,0
+2017/07/15 08:00:00,215.14486934874168,0,728.0332090922252,0,0,0,72.31328262821508,0.0,11.541431746919748,0.0,87.89947186453183,0,39.380909295966944,2.522399480774945e-09,0.5777986081314295,0,0,0.0,408.62003647932806,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5956.089621277877,3848.056848917422,5893.152233686687,5250.295172769056,41822.01231116777,11044.760319549376,7799.968083254458,10196.27880898551,7609.514905508003,64454.72180664166,10881.21642643034,7678.292819801923,10145.295243963761,7512.16328860057,64702.80135450052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0387610273111216,0.0012263718854590698,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0628319873421035,1.0628319873421035,1.070369687772971,1.070369687772971,1.0580346738457185,1.0580346738457185,1.0861123870875677,1.0861123870875677,1.0728673220559106,1.0728673220559106,0.6216836720722061,0.6685487140624022,0.5970584923456751,0.6728628187929688,0.6046164773883635,0.6179466699272728,0.6630526007261411,0.5957833225226175,0.668822645472974,0.6065378465896474,28.838679066850617,28.838679066850617,29.17450733594896,29.17450733594896,28.625996720590734,28.625996720590734,29.882345374792635,29.882345374792635,29.286228312156652,29.286228312156652,13.109209410714868,14.391330307372925,12.473705719528851,14.514138622119589,12.665955969177872,13.011074499661689,14.236041472712714,12.441514028679492,14.399104271983404,12.715224516317804,215.14486934874168,215.14486934874168,0.0,239.0498548319352,0.0,215.14486934874168,239.0498548319352,0,0
+2017/07/15 09:00:00,261.3806088955792,0,842.3246661775369,0,0,0,77.91455264761339,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.9108464334998745e-09,23.179647659593684,0,0,0.0,469.67596479582346,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9136.562736945174,5936.654182927005,8690.927386881438,6258.095109870836,55368.966438699106,11060.976346363834,7980.673568875176,10269.732245468667,7855.969464823573,61622.52870934722,11019.974562641642,7908.046405605385,10309.623382312402,7828.43859793471,61866.7207968632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0448459891427878,0.001418895836244703,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0963564705648157,1.0963564705648157,1.1009846617354908,1.1009846617354908,1.0897738795141005,1.0897738795141005,1.1105304615566842,1.1105304615566842,1.0953766430315812,1.0953766430315812,0.606315519999973,0.6446847714116438,0.5855721586178354,0.6517163429188005,0.5784806775705722,0.6100098325868334,0.6454642494117064,0.5905367337676312,0.654365097101694,0.5806452792926896,30.347572211463756,30.347572211463756,30.55893769520837,30.55893769520837,30.04821396785657,30.04821396785657,30.997180612016933,30.997180612016933,30.30291815010338,30.30291815010338,12.709515328306011,13.72656736252003,12.186278088279963,13.919876743342712,12.011683392543873,12.804660980133661,13.747890839321826,12.30980628532214,13.993251084662234,12.064745246938799,261.3806088955792,261.3806088955792,0.0,290.4228987728658,0.0,261.3806088955792,290.4228987728658,0,0
+2017/07/15 10:00:00,284.9012391341743,0,924.8099146602589,0,0,0,74.3046918880861,0.0,15.278291704811739,0.0,131.64086955684016,0,39.380909295966944,2.858135488243481e-09,20.86450148315683,0,0,0.0,463.4353319971851,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10266.25539114497,6660.212854914253,9905.67326954967,6743.634908659972,64470.43869907783,9326.892122238729,7056.916611512466,8619.46596647946,6862.594284324627,53368.08028755637,9265.419453213834,6943.80329312569,8629.951041812827,6803.147717807111,53858.80817613007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04923756486938137,0.0015578422310533239,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1129390570653654,1.1129390570653654,1.1205408453143941,1.1205408453143941,1.109341863991735,1.109341863991735,1.117023020426902,1.117023020426902,1.139352870100954,1.139352870100954,0.5795931987616089,0.6205276497726795,0.5635047531114992,0.6220507478562244,0.5622435279612925,0.5785400575340426,0.6160214854219245,0.5640164363558696,0.6186443058888839,0.5654139630760338,31.108242666107927,31.108242666107927,31.460035771955916,31.460035771955916,30.94244522077868,30.94244522077868,31.29700011523049,31.29700011523049,32.3387859642353,32.3387859642353,12.038929730905252,13.078787144990642,11.650140122892111,13.118881629234593,11.620136238763962,12.013136288215236,12.960755043415219,11.66233247057437,13.029348643269614,11.69569048772128,284.9012391341743,284.9012391341743,0.0,316.5569323713048,0.0,284.9012391341743,316.5569323713048,0,0
+2017/07/15 11:00:00,291.00573278535984,0,1003.5416196822936,0,0,0,77.0264524238864,0.0,14.932575465546352,0.0,136.4899973586286,0,39.380909295966944,2.9108464334998725e-09,23.175798238420562,0,0,0.0,488.93150825040357,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9004.789818103898,5070.37233691598,9661.43233842397,7271.204625666024,65865.90545272299,10364.68622240023,7023.131217208563,10013.008680887475,6754.539637787591,64469.19195640815,10462.944736969024,6970.726642058844,10262.374619987575,6668.910087027977,64814.29558645828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05342929916185329,0.0016904657821873062,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1894304193507053,1.1894304193507053,1.1973387142984218,1.1973387142984218,1.1756792701767875,1.1756792701767875,1.1555039874040156,1.1555039874040156,1.203716379317323,1.203716379317323,0.6590151177184461,0.6888402828741398,0.6359013114676105,0.6914245265806589,0.6304756612330861,0.6640353147098654,0.690328810376596,0.6410555500401113,0.6939382085289115,0.6357323677319321,34.73253759936068,34.73253759936068,35.117495218699176,35.117495218699176,34.06756741394467,34.06756741394467,33.10232990279512,33.10232990279512,35.42926812195313,35.42926812195313,14.122798861857206,14.975978695109205,13.48810747709976,15.051715217058856,13.342479872485768,14.26371131889482,15.019567780020012,13.627632937894646,15.12566065033569,13.483553666575347,291.00573278535984,291.00573278535984,0.0,323.33970309484425,0.0,291.00573278535984,323.33970309484425,0,0
+2017/07/15 12:00:00,285.99979148292414,0,968.1092071794624,0,0,0,83.71092149185604,0.0,14.988232461786234,0.0,124.80122689546741,0,39.380909295966944,2.9108464334998716e-09,23.118501334936546,0,0,0.0,488.98944826011643,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9609.318182111603,5409.5935265206945,10255.380712556911,7354.7739079842895,69699.36811997506,11755.84323916214,7867.477887582782,11336.11043657854,7605.3076710176865,72729.61619456955,11943.970886660776,7867.805567589993,11687.01694650057,7575.736030513344,73160.00688780444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0515428512751784,0.0016307798860155617,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2142804254705895,1.2142804254705895,1.2253308182141809,1.2253308182141809,1.1972625911476484,1.1972625911476484,1.1606498471414792,1.1606498471414792,1.2211625210658625,1.2211625210658625,0.6920996874333892,0.7167119427488663,0.669583795916865,0.7177120346905229,0.6617066443276655,0.6954408850133124,0.7169505817205266,0.673381172309623,0.7192198333913424,0.6670569696103711,35.94824778559298,35.94824778559298,36.4944633286852,36.4944633286852,35.1137810251722,35.1137810251722,33.34732720570098,33.34732720570098,36.288029957736256,36.288029957736256,15.071549729121486,15.808028910987318,14.420722197867832,15.83850720366739,14.198211853985427,15.169995520103953,15.81529763725662,14.528948653977196,15.884539539058267,14.349052763662343,285.99979148292414,285.99979148292414,0.0,317.7775460921379,0.0,285.99979148292414,317.7775460921379,0,0
+2017/07/15 13:00:00,308.45754607582325,0,907.161209999018,0,0,0,107.48447762523337,0.0,14.728125842506467,0.0,122.5097643007467,0,39.380909295966944,2.858135488243481e-09,20.922293806057343,0,0,0.0,463.5318035922163,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17323.974853771073,10210.703707319804,14203.676071559372,8472.115110228548,85020.92450077336,17714.039748040977,11634.156846207205,14921.262879378226,11047.16077975484,82855.56794226049,18096.709945577608,11740.176999920506,15148.741629162654,11166.240941932952,84970.18425309568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0482979347607037,0.0015281129893909774,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2678466729992486,1.2678466729992486,1.2328189813086212,1.2328189813086212,1.1922954827457364,1.1922954827457364,1.1781571514202511,1.1781571514202511,1.2007574106320074,1.2007574106320074,0.7217186537896317,0.7204724382670705,0.6609986979040454,0.7081299766993305,0.6359133850721561,0.7433411109624045,0.7352400413525031,0.6735499756676684,0.7186263947682819,0.6491425090671811,38.62636502265865,38.62636502265865,36.86650156595274,36.86650156595274,34.87179092125341,34.87179092125341,34.1869732760085,34.1869732760085,35.28447283115325,35.28447283115325,15.961042814094398,15.922855381234683,14.178345718379418,15.548261044141398,13.488432963660912,16.634244431532082,16.37966968029727,14.533774095086585,15.866410472755732,13.84886913877294,308.45754607582325,308.45754607582325,0.0,342.7306067509147,0.0,308.45754607582325,342.7306067509147,0,0
+2017/07/15 14:00:00,296.5044895339309,0,868.0697028398318,0,0,0,111.50738992137049,0.0,14.876918321203716,0.0,108.75639138185811,0,39.380909295966944,2.804512830624603e-09,18.55090540827291,0,0,0.0,459.9306489455743,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16633.847330235687,11388.724004050564,14338.61107738663,8945.05636601267,82664.14203918341,16678.16961092767,12931.021676998076,14512.067119819203,11451.356718365738,77436.38472919693,16802.98189961033,12989.768340448736,14507.996503638555,11437.942912505965,80735.5482548759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04621667396420868,0.0014622633485483238,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2130798041277946,1.2130798041277946,1.2709925136883458,1.2709925136883458,1.1692259670335847,1.1692259670335847,1.1711228432031124,1.1711228432031124,1.1764966851172614,1.1764966851172614,0.678265033313821,0.7323237702026746,0.6351178312761973,0.6849994262195009,0.6072584322678308,0.6955419283077565,0.750563274653576,0.6466749923487811,0.6948359251540019,0.6218177090790866,35.88910614939212,35.88910614939212,38.785936797383044,38.785936797383044,33.75746460191672,33.75746460191672,33.84848431270653,33.84848431270653,34.10693709430345,34.10693709430345,14.66905781863349,16.288716129306977,13.466999525931584,14.863947919390199,12.73374338624727,15.172980194671055,16.863572972833722,13.781064283218186,15.152135094108331,13.112740524733482,296.5044895339309,296.5044895339309,0.0,329.44943281547876,0.0,296.5044895339309,329.44943281547876,0,0
+2017/07/15 15:00:00,290.2211276296069,0,857.9934383150119,0,0,0,107.7229947630309,0.0,14.78378283874635,0.0,106.31215624428707,0,39.380909295966944,2.804512830624603e-09,18.58930928231684,0,0,0.0,449.8543844207544,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15103.489926738594,12127.80271211488,13959.287330975732,9013.053764159402,79236.72995950602,15018.799758166278,13059.753939938853,13665.291891325602,10957.543466188645,71411.99657494322,14919.046137158513,13157.622550642842,13534.409218866751,10866.894643713658,74751.44347685507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04568020617735095,0.0014452898817210397,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1835899240213779,1.1835899240213779,1.2937908726148073,1.2937908726148073,1.1636956376765735,1.1636956376765735,1.173717982489174,1.173717982489174,1.1685975401852746,1.1685975401852746,0.6526898674244267,0.7516268280709311,0.6233958413696511,0.6740211975127803,0.5895993507141493,0.6670264158739908,0.7765467009024996,0.6345496858052498,0.6837065838395219,0.6021829224622988,34.449417091815306,34.449417091815306,39.949450311328036,39.949450311328036,33.49272684944002,33.49272684944002,33.973187104907296,33.973187104907296,33.72733442079557,33.72733442079557,13.94680944303758,16.897533237736894,13.154373974190094,14.54725104873296,12.286400475832309,14.348187846989788,17.707087957401086,13.45170962100353,14.826381546859068,12.6037837258297,290.2211276296069,290.2211276296069,0.0,322.4679195884521,0.0,290.2211276296069,322.4679195884521,0,0
+2017/07/15 16:00:00,293.5317482785951,0,903.9824990535258,0,0,0,99.40818027938343,0.0,14.78378283874635,0.0,120.17895923267236,0,39.380909295966944,2.74996919274844e-09,16.34794142662173,0,0,0.0,442.60791639045203,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14386.007841231743,11797.58788355083,13889.881479648893,8869.889439612105,81828.9945313302,13308.845863415287,12297.941644463805,12488.977075759065,9825.621094666387,67673.41902294495,13296.53405410205,12532.442241997376,12540.113265100892,9807.17347214314,70076.82416011262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048128697835473314,0.001522758451044556,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1827054973882063,1.1827054973882063,1.2927848107815798,1.2927848107815798,1.1782046451230432,1.1782046451230432,1.184300193217479,1.184300193217479,1.1899022448339527,1.1899022448339527,0.6388866770290229,0.7564053484788297,0.6229086672357855,0.6716305563974608,0.5881346393224328,0.6443337316803356,0.7766337666614043,0.6297616253383338,0.6765864439943025,0.5998603088063517,34.40663246151979,34.40663246151979,39.89785007289419,39.89785007289419,34.18926374326074,34.18926374326074,34.48379363500659,34.48379363500659,34.755453569608235,34.755453569608235,13.568781035289959,17.050713442650377,13.141510073109288,14.478977977466457,12.249903985478909,13.716972889271133,17.70996284907534,13.323409827627515,14.620785703332686,12.544685522408344,293.5317482785951,293.5317482785951,0.0,326.1463869762168,0.0,293.5317482785951,326.1463869762168,0,0
+2017/07/15 17:00:00,302.2611507575065,0,921.2693978763834,0,0,0,85.3667621579263,0.0,17.073973916819753,0.0,138.40412594678773,0,39.380909295966944,2.804512830624603e-09,18.603404234746897,0,0,0.0,459.89481521330976,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13119.685585946432,10306.788559593897,13116.718004490365,7842.190795694416,82408.13125800647,10851.614682990863,9504.065456554083,10299.187904147553,7618.022002356167,60131.03180871898,10845.4025572459,9648.43564019644,10405.178321665619,7622.13826174906,61454.94569010406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04904906513332346,0.0015518782307996064,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2014068699194653,1.2014068699194653,1.2668270781623048,1.2668270781623048,1.1940918546543489,1.1940918546543489,1.1692589098766513,1.1692589098766513,1.2189608018209246,1.2189608018209246,0.6169517282860785,0.711152827987941,0.608888878699643,0.6548598737200543,0.589353396438046,0.6129222192184212,0.7146284302727802,0.6073491100860994,0.6512378008801859,0.5981517114845458,35.31623216411583,35.31623216411583,38.57469849438995,38.57469849438995,34.95922440404017,34.95922440404017,33.75904439329544,33.75904439329544,36.17918379453193,36.17918379453193,12.985049157463664,15.639397678232683,12.775728630780776,14.00699082227608,12.280265482304458,12.880085958084308,15.744671228972734,12.736075379644689,13.906652867096469,12.501360247177288,302.2611507575065,302.2611507575065,0.0,335.8457230638961,0.0,302.2611507575065,335.8457230638961,0,0
+2017/07/15 18:00:00,308.0626331664707,0,917.5792501778564,0,0,0,100.33246020650299,0.0,19.165343546314112,0.0,120.14191543460078,0,39.380909295966944,2.9626549342885776e-09,25.61002947766886,0,0,0.0,491.69502002732673,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14127.837329374222,9798.531446469786,13636.044672599828,8029.851193050397,88356.10543432349,14024.488072950615,10513.757601860187,13515.651096333531,9420.501106784459,78914.25462557471,13836.408840280972,10408.18841664073,13432.347428705552,9312.757006263899,80224.30377495679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04885259893653687,0.001545662177281515,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2051239567649612,1.2051239567649612,1.2355578987305176,1.2355578987305176,1.1882020930681043,1.1882020930681043,1.1646982532437564,1.1646982532437564,1.2240836642971977,1.2240836642971977,0.6267079712760854,0.6861741537006272,0.6153324042577174,0.6556263041212494,0.6056738485854315,0.6217156835331531,0.6813412734460149,0.6119163544426132,0.6501342317618288,0.6146170498787418,35.498235141640436,35.498235141640436,37.00295821804151,37.00295821804151,34.67291011742853,34.67291011742853,33.54065237321812,33.54065237321812,36.432648507820915,36.432648507820915,13.24210424070806,14.898144873955388,12.942783292717365,14.028295216976431,12.69304969562036,13.110052660076107,14.757839359772888,12.853994461952396,13.876195036692508,12.924148117349006,308.0626331664707,308.0626331664707,0.0,342.2918146294119,0.0,308.0626331664707,342.2918146294119,0,0
+2017/07/15 19:00:00,308.4774996004553,0,882.0854475655166,0,0,0,111.32025931961437,0.0,17.836154743174646,0.0,110.89738010901058,0,39.380909295966944,2.962654934288577e-09,25.61082092727186,0,0,0.0,491.6915699275312,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15143.707573022373,10919.234282548221,14941.384064833741,8034.2778678895065,93709.93940193627,16495.03483257786,12011.314653140525,16632.933639288247,10660.189084363285,90545.1431698638,16307.051478165522,11920.407500546562,16641.22746879346,10550.589862492847,91932.2307028412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04696288259495968,0.0014858728694749624,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2038587551975506,1.2038587551975506,1.2586124918164094,1.2586124918164094,1.2037633088710462,1.2037633088710462,1.1596019381289682,1.1596019381289682,1.2221800402274177,1.2221800402274177,0.6422999104215774,0.7099603398130279,0.6460701637837989,0.6631142146999353,0.6187899494042152,0.6399357448127656,0.7112663194899417,0.6495116119605794,0.6596865561966324,0.627959496395427,35.43624153129079,35.43624153129079,38.15937694503199,38.15937694503199,35.43156661421108,35.43156661421108,33.297368756201664,33.297368756201664,36.338378166657236,36.338378166657236,13.661490489770259,15.603398023995865,13.764484491431745,14.23777508117162,13.033166350218167,13.597221789172806,15.642827032782279,13.859034407697806,14.141582291572377,13.275378008086975,308.4774996004553,308.4774996004553,0.0,342.7527773338392,0.0,308.4774996004553,342.7527773338392,0,0
+2017/07/15 20:00:00,282.975263142355,0,835.2865660303224,0,0,0,98.58512195929798,0.0,23.584653192165,0.0,94.88958839347283,0,39.380909295966944,2.9108464334998716e-09,23.103015096087248,0,0,0.0,480.38304090488134,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12752.727408648043,8722.879891780725,12363.42853655844,7296.489854187644,81192.64376512603,14316.124631858065,10328.44329127551,14154.673796070643,9339.176885537996,80110.48175515358,14163.776374007186,10340.3930509687,14176.636419240886,9237.644384820554,81077.1453033977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04447127547778241,0.001407040157080903,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1874481679935678,1.1874481679935678,1.2134730579413353,1.2134730579413353,1.170789529853384,1.170789529853384,1.1434548777372775,1.1434548777372775,1.2073276040426928,1.2073276040426928,0.6335571937178286,0.6774217943947833,0.6299614477458233,0.6522777831110994,0.6134942828285347,0.6291868955464042,0.6776032771361661,0.629397648553186,0.646182102017807,0.6190471981798742,34.636333879638215,34.636333879638215,35.90847306195448,35.90847306195448,33.83248264942624,33.83248264942624,32.5319222105729,32.5319222105729,35.60632070970665,35.60632070970665,13.425033314833996,14.644793094316142,13.32874433638517,13.935404055219578,12.894944514093993,13.308076354682655,14.65001277488038,13.313697464283592,13.767551788968191,13.039911779061839,282.975263142355,282.975263142355,0.0,314.4169590470611,0.0,282.975263142355,314.4169590470611,0,0
+2017/07/15 21:00:00,293.4077065968819,0,814.3299382702078,0,0,0,98.15577623595739,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,2.962654934288577e-09,25.61041170399155,0,0,0.0,494.91676565731063,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12951.918420154967,8831.718647545684,12370.94001633919,6928.3831124827875,81768.14269222194,14147.081119616063,10185.612733143937,13782.840717341645,9340.04426507829,78811.59227181203,13952.525061958235,10050.31819064018,13708.311869333147,9205.384454700852,79535.85282954424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04335552909312001,0.001371738719209571,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1802041788246471,1.1802041788246471,1.2039844620127544,1.2039844620127544,1.1670919802904338,1.1670919802904338,1.1317153128293007,1.1317153128293007,1.198760705915223,1.198760705915223,0.6312638627314003,0.6735298307534888,0.6234586733797068,0.6510116712027336,0.6135752070377952,0.6259352969225792,0.6666233630133594,0.6204350498200197,0.6438682612556136,0.6175286565752712,34.28575628827497,34.28575628827497,35.44239899107207,35.44239899107207,33.6551989591929,33.6551989591929,31.98062837688245,31.98062837688245,35.18690776922419,35.18690776922419,13.36355637310713,14.533198164379755,13.15603381197154,13.900407526238396,12.897047554449074,13.2215954064975,14.336781990946548,13.076352762645428,13.704259083688825,13.000135016903656,293.4077065968819,293.4077065968819,0.0,326.00856288542434,0.0,293.4077065968819,326.00856288542434,0,0
+2017/07/15 22:00:00,220.50123082185766,0,604.4195016252144,0,0,0,80.4630353022872,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,2.8045128306246023e-09,18.59884391234055,0,0,0.0,444.71291531876574,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8483.338715847878,5857.229674214451,8169.21278498739,5027.374653398937,55043.79926780643,12051.586867436426,8878.939519929861,11604.519716053428,8100.10273034424,68242.91444903865,11793.231492921464,8664.331127156966,11435.088331014776,7925.4085028050695,68679.09120027075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03217974196408074,0.0010181446046130115,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1472762965772427,1.1472762965772427,1.1686148821953148,1.1686148821953148,1.1347909556762557,1.1347909556762557,1.0870177368169913,1.0870177368169913,1.1418210838931566,1.1418210838931566,0.6199718759147101,0.6620693179346471,0.6131391793390275,0.6418222444243872,0.6018309229361882,0.6103754478716842,0.6504402843633174,0.6055405205475489,0.6305601294056907,0.6029255675219363,32.7123311232115,32.7123311232115,33.728165728322,33.728165728322,32.12463136027192,32.12463136027192,29.92331530520336,29.92331530520336,32.45493311946019,32.45493311946019,13.064181858203625,14.208397479636062,12.88571952341988,13.648485830440535,12.594812151324646,12.814109477689058,13.88463661027437,12.68963066896103,13.344737261179475,12.622729504710264,220.50123082185766,220.50123082185766,0.0,245.00136757984183,0.0,220.50123082185766,245.00136757984183,0,0
+2017/07/15 23:00:00,151.5432072754562,0,497.84051773012186,0,0,0,58.56122273160009,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6944953067201935e-09,14.039028279869058,0,0,0.0,444.60498896130565,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4009.2404136885552,2850.9549539822046,3954.5475362411166,3278.9338469641407,28687.318273887468,9246.753530269874,7081.387283231279,8728.484336836667,6374.127561291858,53433.645806986235,8922.71415167101,6814.696494720879,8471.658704572865,6163.3656959963755,53567.30649460299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02650539791774211,0.0008386123143309359,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1134208839708137,1.1134208839708137,1.131578595055202,1.131578595055202,1.1029999974261506,1.1029999974261506,1.0454455631889088,1.0454455631889088,1.096753477270105,1.096753477270105,0.6022659271427188,0.6469964940820939,0.5962749754731637,0.6286205704643097,0.5870647128401089,0.588889711561443,0.6314392812172802,0.5846636540293382,0.6138298298958009,0.5855138822451829,31.130483354580818,31.130483354580818,31.974234323145367,31.974234323145367,30.651204152163118,30.651204152163118,28.07180718931663,28.07180718931663,30.36567450206404,30.36567450206404,12.605900088014778,13.789883867977906,12.453917459117008,13.29298113297125,12.223303268954353,12.268706636264213,13.368250728491049,12.163788518203432,12.903666490621461,12.184834411173256,151.5432072754562,151.5432072754562,0.0,168.38134141717356,0.0,151.5432072754562,168.38134141717356,0,0
+2017/07/16 00:00:00,52.651400113784774,0,468.0855392127316,0,0,0,7.70607229336286,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,1.8880687848696667,2.6380819046450685e-09,11.871624968114094,0,0,0.0,414.8500104439154,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3084.7111974752643,2254.4756949584153,2939.127393079237,1535.7792959448227,17251.93023263291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024921220821765292,0.0007884900552767564,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.04790250297013,1.04790250297013,1.0568086909273458,1.0568086909273458,1.0422903967930153,1.0422903967930153,1.0044864909423439,1.0044864909423439,1.035508449891866,1.035508449891866,0.8114960606247453,0.8919671294606041,0.7968617157561849,0.8336452201114457,0.7833551006418438,0.7739389065519655,0.8491967974305241,0.7646628411574893,0.7930046561480133,0.7795291944019195,28.179515390977414,28.179515390977414,28.57177652700966,28.57177652700966,27.933811463058987,27.933811463058987,26.308938982803014,26.308938982803014,27.638422511679565,27.638422511679565,18.88697019711077,21.79837716257461,18.386619241815097,19.661416924541882,17.932873543594,17.621128836024837,20.217456689444077,17.31771737695159,18.256254454681354,17.805753035158006,52.651400113784774,52.651400113784774,0.0,58.50155568198308,0.0,52.651400113784774,58.50155568198308,0,0
+2017/07/16 01:00:00,23.724623393349884,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5275279696720929,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1554027213144193,1.1554027213144193,1.1842603979658861,1.1842603979658861,1.143955145109444,1.143955145109444,1.1079362169500668,1.1079362169500668,1.1297234723508527,1.1297234723508527,0.8556763200271283,0.9520105001527127,0.8374563205414346,0.8761304053679475,0.8416094086808519,0.8203136435533721,0.9133788826060512,0.8084546745884722,0.8364111291253811,0.8383942533074626,33.097516865185085,33.097516865185085,34.481867174907265,34.481867174907265,32.55551331955252,32.55551331955252,30.877775898410746,30.877775898410746,31.887533620651567,31.887533620651567,20.45210211106658,24.14325901237065,19.796747083533475,21.20422019908885,19.944912182260893,19.192807467250574,22.617950730025143,18.782239905680242,19.759572443826826,19.830145690921313,23.724623393349884,23.724623393349884,0.0,26.360692659277646,0.0,23.724623393349884,26.360692659277646,0,0
+2017/07/16 02:00:00,28.344230549035725,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248674625628333,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2023498269788588,1.2023498269788588,1.2361014812972984,1.2361014812972984,1.1891617311446319,1.1891617311446319,1.154631615183296,1.154631615183296,1.1953265905127997,1.1953265905127997,0.8749126063003693,0.9746717622529343,0.8557834842357627,0.8930181695826381,0.8652763439289176,0.8399802250047,0.9383833703588697,0.8273253067962397,0.8538508333680798,0.865533850747361,35.36236548459992,35.36236548459992,37.030064106046446,37.030064106046446,34.71949068196946,34.71949068196946,33.060877795232585,33.060877795232585,35.01937644645375,35.01937644645375,21.158957232804354,25.06543408424504,20.455997546425365,21.838172748648574,20.802952544006345,19.886703759222414,23.598429656291728,19.438340367429873,20.385818604319425,20.812416119546597,28.344230549035725,28.344230549035725,0.0,31.493589498928582,0.0,28.344230549035725,31.493589498928582,0,0
+2017/07/16 03:00:00,23.722031394816828,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249359711390378,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.194157501154264,1.194157501154264,1.2311844678559076,1.2311844678559076,1.1804405971846978,1.1804405971846978,1.1498376899515752,1.1498376899515752,1.1906781411060656,1.1906781411060656,0.884539585495944,0.9859754193472694,0.864223826130714,0.8994893279969618,0.8856113662561734,0.845068474312119,0.9458048854458663,0.8314087412075672,0.8563655624215171,0.8859279512285524,34.96242135409253,34.96242135409253,36.78516377726204,36.78516377726204,34.29717318687672,34.29717318687672,32.83351404761099,32.83351404761099,34.793152121912115,34.793152121912115,21.518433840335206,25.532877376954488,20.764300189548663,22.084182172666004,21.558689844982553,20.068866818707406,23.894240400921987,19.582283715014142,20.477164499915986,21.570589749575163,23.722031394816828,23.722031394816828,0.0,26.357812660907584,0.0,23.722031394816828,26.357812660907584,0,0
+2017/07/16 04:00:00,65.06511488090824,0,106.51079335650728,0,0,0,17.423636939687878,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,10.052480217534,0.0,0.5250993116232804,0,0,0.0,17.784912075146952,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1127.6341706225908,5949.040245886075,2954.9926630890313,2379.4529564441746,2780.8351442113467,1859.9105037037193,18925.42191337527,2496.0902246378228,2007.1508548128757,2283.4751964820402,1532.7524023258131,17113.744480005455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.005670713531555159,0.0001794174233250044,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.120049409201385,1.120049409201385,1.1367867260674147,1.1367867260674147,1.1143214355431004,1.1143214355431004,1.0614370143463132,1.0614370143463132,1.0901652988630792,1.0901652988630792,0.6288666009015468,0.6691493605270508,0.6204745250945923,0.6440304559772684,0.5990112082384424,0.6217481374811594,0.6915963551981921,0.5997342732098607,0.6523821089377198,0.6059905181380054,31.437235230374796,31.437235230374796,32.21823820135688,32.21823820135688,31.17207278673952,31.17207278673952,28.776750094954338,28.776750094954338,30.06597298057126,30.06597298057126,13.299537289491113,14.408380444682876,13.077390492096399,13.708688185133312,12.523138856906755,13.110907610872445,15.0567612371335,12.541485281895945,13.938290818261649,12.701173372809066,65.06511488090824,65.06511488090824,0.0,72.29457208989804,0.0,65.06511488090824,72.29457208989804,0,0
+2017/07/16 05:00:00,111.78343172756519,0,212.9421150752648,0,0,0,29.519722262183176,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,9.874587731496561,0.0,0.5251145446857444,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2227.82953920263,25273.55922563129,4435.314498293249,3563.862208477297,4174.889072077931,2747.317015864371,24513.247136040296,3930.3905600534176,3244.4945871123623,3731.5160222713025,2424.118235675572,23799.770490349016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1270637068093716,1.1270637068093716,1.1359863912092314,1.1359863912092314,1.1241290535582378,1.1241290535582378,1.057414251612921,1.057414251612921,1.0772410815769768,1.0772410815769768,0.541436102066087,0.5648465742804568,0.5347343399529599,0.5581559498161054,0.5144019111481931,0.5327144135438356,0.5732947350397363,0.5132749324555081,0.5614223560759894,0.5179948920173817,31.763423288392758,31.763423288392758,32.18068494133037,32.18068494133037,31.62675510194903,31.62675510194903,28.59855125741474,28.59855125741474,29.482398518016936,29.482398518016936,11.135093112656222,11.682137086684435,10.982862863380078,11.523368980992487,10.532913174397493,10.937361875485607,11.885385022414354,10.508496813836388,11.60063807114095,10.611123087181184,111.78343172756519,111.78343172756519,0.0,124.20381303062798,0.0,111.78343172756519,124.20381303062798,0,0
+2017/07/16 06:00:00,135.60515469813134,0,619.1130271176685,0,0,0,36.3085631742991,0.0,7.188784398198018,0.0,80.56906512710079,0,11.013540146755924,2.52241562864413e-09,0.5252018492551153,0,0,0.0,388.42573578613155,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,4432.558895838107,2858.1376525508485,30015.993909968987,4996.704965182567,3853.7540036876694,4780.461337987218,3233.2490919714164,30546.197213719166,4485.048877047925,3501.289971271799,4335.782667627155,2924.477383037928,29628.88299135914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03296203614489127,0.0010428958471898305,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1379967927924912,1.1379967927924912,1.1463824012995338,1.1463824012995338,1.0973805536655175,1.0973805536655175,1.0695814454290866,1.0695814454290866,1.0589516255010651,1.0589516255010651,0.5204771415610225,0.5461980270034595,0.512986142769467,0.5484356612776246,0.5024336387488775,0.5051531087560625,0.5334091134434671,0.49237424059820567,0.5391126190215878,0.5043951481190374,32.27505613361235,32.27505613361235,32.67008874000348,32.67008874000348,30.394278240914147,30.394278240914147,29.139294399836174,29.139294399836174,28.666584927753235,28.666584927753235,10.665481482355133,11.244442633950072,10.502248933658791,11.296165488675442,10.276422098480424,10.334159122909867,10.95299079228647,10.06562848657984,11.082094939215509,10.318034741107923,135.60515469813134,135.60515469813134,0.0,150.67239410903483,0.0,135.60515469813134,150.67239410903483,0,0
+2017/07/16 07:00:00,129.70950855122476,0,660.2052229837975,0,0,0,14.439231076645092,0.0,5.977742152881216,0.0,69.33401494192633,0,39.38090929596693,2.5224176465911764e-09,0.5776110812827624,0,0,0.0,394.0275791397167,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4227.6930975547375,2532.1575106813957,4637.6740127671565,4816.0022831843835,37072.74312351117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03514981509006741,0.0011121156480074802,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.149609355462378,1.149609355462378,1.1604157168047038,1.1604157168047038,1.135139123594436,1.135139123594436,1.1079313319714024,1.1079313319714024,1.1275232993914805,1.1275232993914805,0.9727755562253556,1.0011983521352938,0.9780467328239297,0.9924771200096484,1.0675775829534528,0.956809303855116,0.9794948112410924,0.9674734621889587,0.9799638262429053,1.065694392404557,32.82270280467,32.82270280467,33.336162218512285,33.336162218512285,32.14095206742806,32.14095206742806,30.877551272111305,30.877551272111305,31.78485231873705,31.78485231873705,24.98750311580268,26.170134988380823,25.20448412672154,25.80396804403331,29.04987534222319,24.33686487016378,25.264280416964766,24.770336287698086,25.283665054624862,28.965970759033624,129.70950855122476,129.70950855122476,0.0,144.1216761680275,0.0,129.70950855122476,144.1216761680275,0,0
+2017/07/16 08:00:00,167.37458485393483,0,722.1367881635279,0,0,0,21.153945271746956,0.0,9.39755635098607,0.0,96.91714705112861,0,39.380909295966944,2.5224176468401905e-09,0.5250268815838465,0,0,0.0,402.7236155506307,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8126.649590062373,5059.747647712057,7875.517285890245,6447.357198757483,52934.43561115022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03844709749335946,0.0012164393648522098,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1588360796896495,1.1588360796896495,1.1622048506339973,1.1622048506339973,1.1441835510657838,1.1441835510657838,1.1533829365831119,1.1533829365831119,1.1411315709751104,1.1411315709751104,1.1771182375495686,1.2015741062823655,1.1739892258862201,1.2246132587470675,1.2798436952297796,1.1875010160620867,1.1973573091868739,1.1925922752686542,1.2441693583442157,1.2937721776494235,33.26087850458936,33.26087850458936,33.42152391042046,33.42152391042046,32.566286916247904,32.566286916247904,33.00158646093526,33.00158646093526,32.422466919002645,32.422466919002645,34.13688682593491,35.324412186960444,33.98623282646497,36.458892502025726,39.23619712529388,34.63889722539686,35.118402524273705,34.88622997317799,37.43329136427434,39.94849124851112,167.37458485393483,167.37458485393483,0.0,185.97176094881647,0.0,167.37458485393483,185.97176094881647,0,0
+2017/07/16 09:00:00,236.43992515659437,0,757.6333867725712,0,0,0,87.27364441933892,0.0,9.332689672910613,0.0,97.06762091869685,0,39.380909295966944,2.522417646840221e-09,0.5250815117801294,0,0,0.0,384.9846853908578,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11811.207065432365,6704.395991266083,9714.273876637983,9210.58462097413,60410.80528065646,12813.325726741725,8014.125023879298,11163.634420811622,9803.238247005782,71807.29878645304,13217.792875904928,8082.650870061089,11525.186391952828,9893.694099299937,73891.86043620415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04033696269587216,0.0012762333825149972,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1787271033483517,1.1787271033483517,1.1346772709885553,1.1346772709885553,1.1254057515560798,1.1254057515560798,1.299614875539459,1.299614875539459,1.1252316584324495,1.1252316584324495,0.7810060735228307,0.7851417385023605,0.7283303322218881,0.9070148489574256,0.745111021255189,0.8148434810374875,0.8040931948442203,0.7521011585034029,0.9770166967337677,0.7625327937021971,34.21446468868284,34.21446468868284,32.119303130878635,32.119303130878635,31.686176775001016,31.686176775001016,40.24861050544737,40.24861050544737,31.67807076072131,31.67807076072131,17.854750409973988,17.99244998708167,16.164760477849896,22.37241464437109,16.69023835369748,19.002689684603155,18.63273360117654,16.912694674656436,25.161999566331943,17.248563955366564,236.43992515659437,236.43992515659437,0.0,262.71102795177154,0.0,236.43992515659437,262.71102795177154,0,0
+2017/07/16 10:00:00,304.2101862212118,0,950.2393086887615,0,0,0,100.33562500763324,0.0,12.984000736477544,0.0,124.87761316689259,0,39.380909295966944,2.9108660027078343e-09,23.20006280887631,0,0,0.0,488.8647260256879,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15769.15940087214,8433.26065847664,12600.379999823197,11471.630238860766,74658.14968806066,15106.937324652652,10007.088607833779,12287.800950621375,12540.04600265113,70179.71271557448,15694.712750068049,10128.512957863117,12619.681412340246,13320.097525751704,72235.14609821676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05059144464318054,0.0016006780433642784,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.23460923206923,1.23460923206923,1.1629055868461053,1.1629055868461053,1.155481940818666,1.155481940818666,1.289170402257728,1.289170402257728,1.1578194230622911,1.1578194230622911,0.7105324675181013,0.6921574138626434,0.6427839319402946,0.7993371815034886,0.6217235835261387,0.7353826415069741,0.7041142711172318,0.6561546170464907,0.8397858512994266,0.6323423148626514,36.955671602949465,36.955671602949465,33.454983896991465,33.454983896991465,33.101282031636515,33.101282031636515,39.71266087135599,39.71266087135599,33.2124668969207,33.2124668969207,15.620662158246816,15.07324649910693,13.674678273888162,18.47061953783016,13.11026076938549,16.384126506150096,15.427800124655192,14.042995504373806,19.879766460684536,13.392437840404938,304.2101862212118,304.2101862212118,0.0,338.01131802356866,0.0,304.2101862212118,338.01131802356866,0,0
+2017/07/16 11:00:00,321.98305089218695,0,991.3601965496871,0,0,0,99.87725894311633,0.0,12.935301236479537,0.0,143.25325374857618,0,39.380909295966944,2.910866002707833e-09,23.10435246268275,0,0,0.0,476.7500851177972,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17225.464128400294,8877.826016973155,13448.316710324174,10628.536050066154,79519.31039228164,15144.315945721577,9500.672057371708,12092.330360174567,11230.783770008691,67908.74713503227,15684.618834066785,9610.82005521477,12344.463821917705,11710.762661885126,69841.35497298079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05278075117141199,0.001669946175844985,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.257369797387478,1.257369797387478,1.1696365831377633,1.1696365831377633,1.1647455052079814,1.1647455052079814,1.253841833296727,1.253841833296727,1.1750313469758,1.1750313469758,0.6950805599806311,0.6607001152483147,0.614374644147721,0.7473284291634855,0.5946939856979545,0.7236652087144142,0.6751062679255543,0.6293777233775188,0.7799223253549356,0.6067956800631409,38.096694679726426,38.096694679726426,33.77715828461662,33.77715828461662,33.542911805909526,33.542911805909526,37.918955186419716,37.918955186419716,34.03637542506242,34.03637542506242,15.15935562364777,14.169973510171417,12.917838420213599,16.760579103182877,12.414069590257213,16.020824304593532,14.57832062692978,13.313165946458838,17.818786599815596,12.721848182305266,321.98305089218695,321.98305089218695,0.0,357.7589454357633,0.0,321.98305089218695,357.7589454357633,0,0
+2017/07/16 12:00:00,300.27360100242026,0,928.2649266861017,0,0,0,101.10779779886934,0.0,12.935301236479537,0.0,124.80122689546741,0,39.380909295966944,2.8045320699782997e-09,18.616390570378215,0,0,0.0,449.1451677667559,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17141.854791472233,8799.026742233553,13368.906078227883,9444.502181180183,77248.66700252674,16357.075545946534,9680.040393200268,13191.924958984555,10613.123038957065,70643.57351117428,16933.036808378296,9822.74154456577,13484.860980625503,10959.653909561597,73016.04913139896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04942151226878769,0.0015636621985486252,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.25419789846327,1.25419789846327,1.167313882913956,1.167313882913956,1.1626000505307814,1.1626000505307814,1.2042833494788865,1.2042833494788865,1.165699646930972,1.165699646930972,0.6972457004002904,0.6512369004915344,0.6119277639317291,0.7073605883412393,0.5815830408595182,0.7278675971462638,0.6701237707481134,0.6299570507295764,0.732858208857342,0.5972608070879304,37.93687945724506,37.93687945724506,33.66582654751157,33.66582654751157,33.440392742490886,33.440392742490886,35.45704112327704,35.45704112327704,33.58855043009929,33.58855043009929,15.223373591844151,13.906627995403298,12.854290170673536,15.525127487768344,12.087796135612649,16.150441583133983,14.436073581876272,13.328626933904104,16.30535701947322,12.478819646342487,300.27360100242026,300.27360100242026,0.0,333.63733444713364,0.0,300.27360100242026,333.63733444713364,0,0
+2017/07/16 13:00:00,294.4389180707748,0,903.2944385576097,0,0,0,95.2256675528628,0.0,13.016794053187484,0.0,124.7641830973959,0,39.380909295966944,2.8045320699782997e-09,18.619388866102835,0,0,0.0,459.66503215080814,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14813.431588748099,8500.296194816709,12663.199488552264,8643.281185194975,72508.92607062336,14856.038314278296,9240.702672016909,12530.356566014376,9714.096919413641,67063.58661527581,15397.977759649255,9466.641175430297,12924.457979448805,10030.566726906203,69067.42287916398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04809206498501976,0.0015215994131914088,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1979963718518347,1.1979963718518347,1.167965516501065,1.167965516501065,1.1530566508512947,1.1530566508512947,1.1835623462282043,1.1835623462282043,1.1520156996477364,1.1520156996477364,0.6661974324741506,0.6513994002510999,0.6059397426511256,0.6863375577368424,0.5705252898165286,0.6892055840441492,0.6692057684599686,0.6248686212436773,0.706841797767697,0.5844210740123805,35.14959058018326,35.14959058018326,33.697043986013625,33.697043986013625,32.98610142254071,32.98610142254071,34.44808264850016,34.44808264850016,32.936721807794584,32.936721807794584,14.324736372741157,13.911117341878878,12.699870511708497,14.902906381024437,11.818415917755217,14.986667073383202,14.40998246019953,13.193325559677191,15.509543183025926,12.157789631542897,294.4389180707748,294.4389180707748,0.0,327.15435341197195,0.0,294.4389180707748,327.15435341197195,0,0
+2017/07/16 14:00:00,273.0978556560373,0,835.4855050063774,0,0,0,92.31803383328614,0.0,12.88660173648153,0.0,111.01081017850728,0,39.380909295966944,2.694514160425966e-09,14.069525406646658,0,0,0.0,427.3464511121199,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14449.064608205717,9058.628958029265,12759.842177443672,8610.167458871963,70331.7734897086,13771.33664108505,9706.35728754736,11732.072592660652,9600.828008864546,60863.1949240533,14213.337560826625,9972.75031742152,12082.27341659741,9854.773140702053,63092.85030200897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04448186713622299,0.0014073752697709684,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1981916115270663,1.1981916115270663,1.2029224446276547,1.2029224446276547,1.1586315460484804,1.1586315460484804,1.1875509319760595,1.1875509319760595,1.1419834017326476,1.1419834017326476,0.6662310430475682,0.6829050920995688,0.6111375401862186,0.6910231764551502,0.5608506125820736,0.687961069402168,0.7061832466135614,0.6297269524214669,0.7100809893545128,0.57478816178464,35.15912118578025,35.15912118578025,35.39039274824992,35.39039274824992,33.25113634195192,33.25113634195192,34.64131842561342,34.64131842561342,32.46257818400504,32.46257818400504,14.325686618106431,14.803128739962432,12.833822674025328,15.039933903929864,11.587079679595263,14.950277360207295,15.489777236365782,13.322484367178546,15.6070374877808,11.921636289367342,273.0978556560373,273.0978556560373,0.0,303.44206184004145,0.0,273.0978556560373,303.44206184004145,0,0
+2017/07/16 15:00:00,268.2220392077132,0,847.4140648687322,0,0,0,89.54577423892826,0.0,13.065493488391114,0.0,108.75639138185811,0,39.380909295966944,2.694514160425966e-09,14.04149559742002,0,0,0.0,439.27501097447475,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13389.485156226689,8461.151793953255,12410.364337520305,8365.911642478815,69909.6617139228,12099.053764221791,9034.986489272917,10640.704893963859,9152.06852704256,57365.72313590854,12309.999294428602,9181.922693987412,10853.339501738425,9312.21827030585,59277.83904754021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045116952498858574,0.0014274689279537424,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1616570708807545,1.1616570708807545,1.1600207005052134,1.1600207005052134,1.1438163793471599,1.1438163793471599,1.1702596736039101,1.1702596736039101,1.1410250804350384,1.1410250804350384,0.6276849973173098,0.6456371953197398,0.5903280418335289,0.6694906563333695,0.5508347751869307,0.6371816249161919,0.6564247920613118,0.5995220298880356,0.6802495280508146,0.5614871419207278,33.3953781470605,33.3953781470605,33.31732891330755,33.31732891330755,32.548968741432475,32.548968741432475,33.80705235713651,33.80705235713651,32.41745409566754,32.41745409566754,13.268074199368172,13.752625535720938,12.304592091587708,14.418075533382705,11.351862020001889,13.522658054345825,14.050517788551787,12.536097650733382,14.726284281350317,11.602175304363612,268.2220392077132,268.2220392077132,0.0,298.0244880085702,0.0,268.2220392077132,298.0244880085702,0,0
+2017/07/16 16:00:00,293.3537203614148,0,901.3910040582526,0,0,0,100.46554470784704,0.0,11.08681950462398,0.0,124.87761316689259,0,39.380909295966944,2.694514160425966e-09,14.110858480935356,0,0,0.0,440.01642139517895,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14581.831994602366,11321.625778700429,14021.569342633185,9163.235507634454,78481.62641085862,12901.803378280882,11759.97190358612,11884.632331120229,10117.398803734075,63203.026449604346,13061.292393303464,12089.154835499783,12113.266865870462,10256.419966503032,65502.26237113853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04799072472238735,0.0015183930779217095,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1855509643547637,1.1855509643547637,1.3222369947886303,1.3222369947886303,1.1765688057619264,1.1765688057619264,1.1948368336829556,1.1948368336829556,1.1670916664685715,1.1670916664685715,0.6342657630113369,0.7485606760688838,0.6065513116389875,0.6841917104150291,0.5561492898064991,0.6468444682652831,0.782746911228602,0.6226784198640813,0.697997661082618,0.5712839003234454,34.54436658179941,34.54436658179941,41.41770445606993,41.41770445606993,34.11041165607317,34.11041165607317,34.99551187539684,34.99551187539684,33.65518393038451,33.65518393038451,13.44407395090586,16.79975960698276,12.715570358064824,14.840469492021072,11.476129470779583,13.785712866668447,17.91262408046353,13.135433942973677,15.245654616648821,11.836727105211864,293.3537203614148,293.3537203614148,0.0,325.94857817934974,0.0,293.3537203614148,325.94857817934974,0,0
+2017/07/16 17:00:00,292.46043162738897,0,908.0039441561171,0,0,0,90.56453955374224,0.0,11.08681950462398,0.0,129.38645076019097,0,39.380909295966944,2.8045320699782997e-09,18.60973730760601,0,0,0.0,446.62936149304335,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13287.287799705773,12183.627466298405,13507.094229888466,8410.261543475975,73314.01247278831,12048.061114125045,11167.148717952221,11718.588151656239,8701.321599382725,58955.36194643375,12186.035474260256,11649.993901340316,12023.493496292755,8844.995299108265,61123.04420192142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04834280255144647,0.0015295325750146484,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1664527127987663,1.1664527127987663,1.327236396850007,1.327236396850007,1.1872950233288286,1.1872950233288286,1.176201804086782,1.176201804086782,1.1653452557740744,1.1653452557740744,0.6144260511209525,0.7523221537525077,0.6093999010512199,0.6580291233355728,0.551602098409504,0.6222332114945124,0.7847516593956233,0.6257726244603814,0.6675580506409245,0.5652659408195703,33.62459095807948,33.62459095807948,41.677530549284874,41.677530549284874,34.628906208559044,34.628906208559044,34.09273222241286,34.09273222241286,33.571595875048644,33.571595875048644,12.91917630436302,16.91976182801767,12.788911595346931,14.095251163937249,11.369728441057774,13.123691608128794,17.979431004307685,13.217280947284252,14.36324315810343,11.692153285649468,292.46043162738897,292.46043162738897,0.0,324.9560351415433,0.0,292.46043162738897,324.9560351415433,0,0
+2017/07/16 18:00:00,286.77937989749563,0,905.0734698158967,0,0,0,93.95698306014711,0.0,11.198411588569618,0.0,115.6330778413024,0,39.380909295966944,2.910866002707833e-09,23.178022906144502,0,0,0.0,479.18923966536715,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12573.65199219293,11522.971085391557,13883.324773197817,7952.599406660467,72177.63960950673,12833.842975984038,11593.663913623192,13379.638973068648,8857.99605166825,65626.72227595482,12861.282560620604,11990.855102990923,13698.384077819086,8926.008127931196,67418.27971537433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048186781926951264,0.0015245961912109668,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1457396132266977,1.1457396132266977,1.3011304211851078,1.3011304211851078,1.1971165427999886,1.1971165427999886,1.1548894791736817,1.1548894791736817,1.1561776052378019,1.1561776052378019,0.6067677221914743,0.7495972742495592,0.6291866934158541,0.6433483928939845,0.5583037105922365,0.609308044794296,0.7753733818493062,0.6430560606174145,0.6490078544485592,0.5697825550475331,32.63972851223616,32.63972851223616,40.326584192740874,40.326584192740874,35.10665551882188,35.10665551882188,33.07312811545708,33.07312811545708,33.13435420204897,33.13435420204897,12.72112981335134,16.832769651361502,13.30807096447235,13.690070565497805,11.526854372650078,12.78654112221659,17.66837671665172,13.68209722872922,13.845162157013007,11.800512122371899,286.77937989749563,286.77937989749563,0.0,318.6437554416618,0.0,286.77937989749563,318.6437554416618,0,0
+2017/07/16 19:00:00,268.91067676579854,0,879.2360048862274,0,0,0,87.02215942065354,0.0,11.776367992913888,0.0,104.13412371906301,0,39.380909295966944,2.910866002707833e-09,23.1651411318361,0,0,0.0,488.842127248242,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10708.314975093816,9620.842092811994,12609.562336764979,7050.234663864963,64678.58668659399,12253.084009573833,10428.302357904036,13081.302523607696,8128.035077220664,66441.66060143326,12202.571869078123,10672.264771457916,13373.316637717833,8134.690137046686,67631.41412706484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04681117615611313,0.0014810729834979688,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1474728371263871,1.1474728371263871,1.2563927098412808,1.2563927098412808,1.1894786084811961,1.1894786084811961,1.1331964103622263,1.1331964103622263,1.1592078156619214,1.1592078156619214,0.6031695105058885,0.7168392662334397,0.6306288030472589,0.6335987901430924,0.5680826225467148,0.5990575582440615,0.7279985311695162,0.6378984351699019,0.630136818564169,0.5763120983799828,32.721622349958665,32.721622349958665,38.04743719717314,38.04743719717314,34.73487778416586,34.73487778416586,32.04993569961056,32.04993569961056,33.27858803434863,33.27858803434863,12.628958009724528,15.811906763397062,13.346572773505784,13.426150489981978,11.759624914337962,12.524314221191887,16.15449227727221,13.542032964593616,13.33342750675709,11.958727897786247,268.91067676579854,268.91067676579854,0.0,298.7896408508873,0.0,268.91067676579854,298.7896408508873,0,0
+2017/07/16 20:00:00,271.0996227990017,0,803.041581162749,0,0,0,88.4893798663854,0.0,16.265305283785256,0.0,108.41610117336799,0,39.380909295966944,2.8045320699782997e-09,18.547927176691495,0,0,0.0,448.13805603730765,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9345.88470629751,6816.06051864135,9893.787122744103,6508.852030345667,59232.3254380474,13655.037669577754,10328.08992358276,13532.125329143228,8696.185310616374,75652.55414855604,13561.168403264419,10460.87074618143,13671.56735519588,8664.698282399972,76616.24032296902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.042754528599357536,0.0013527234825188282,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1398000077591386,1.1398000077591386,1.1771441010875836,1.1771441010875836,1.136988293298928,1.136988293298928,1.1146676726384308,1.1146676726384308,1.1546697897599794,1.1546697897599794,0.630092122957669,0.6912246338600182,0.6238741685822534,0.6500728640050945,0.6000199958397646,0.6246114746081255,0.6923385587216128,0.6224102225589411,0.6444521641965323,0.6050252093055078,32.35981248991939,32.35981248991939,34.13813332255856,34.13813332255856,32.227699386716694,32.227699386716694,31.188069975233148,31.188069975233148,33.0626912197217,33.0626912197217,13.332233811242986,15.04584665544921,13.167014290894443,13.87450287378988,12.548741215545476,13.186517850186505,15.078571878256184,13.128359230659854,13.7202092407136,12.676423426049993,271.0996227990017,271.0996227990017,0.0,301.2218031100019,0.0,271.0996227990017,301.2218031100019,0,0
+2017/07/16 21:00:00,253.11646112887672,0,797.1732731968577,0,0,0,69.7625695268509,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,2.910866002707833e-09,23.22389889188341,0,0,0.0,477.76010058396065,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7267.066165358371,5056.756949347915,7813.316480441693,5641.495180800556,49694.16172293559,10279.784657728664,7906.000858012557,10035.741037338468,6524.336150469592,57138.5170055734,10035.26586211482,7826.6710755518,9973.037761839045,6376.373040631744,57603.645111628146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04244209553655866,0.0013428383181956817,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1319454300274,1.1319454300274,1.1624952299721216,1.1624952299721216,1.126288857563526,1.126288857563526,1.0962645735664782,1.0962645735664782,1.146168067131248,1.146168067131248,0.6350583054462346,0.6849439280176208,0.6240897124982981,0.6502374478066396,0.6072542435354867,0.6249090376068827,0.6771198886756029,0.6173889966017436,0.6396893394121846,0.6079436473784349,31.991391933270094,31.991391933270094,33.435387610352976,33.435387610352976,31.727310727214856,31.727310727214856,30.343382757808513,30.343382757808513,32.659963827377496,32.659963827377496,13.465396912854246,14.862333812647492,13.172713518084265,13.879041498215102,12.733635671765072,13.194395804882049,14.636113049022242,12.996481780863846,13.590537326163584,12.751374145122512,253.11646112887672,253.11646112887672,0.0,281.24051236541857,0.0,253.11646112887672,281.24051236541857,0,0
+2017/07/16 22:00:00,177.74828893868465,0,619.4181459560695,0,0,0,50.3328643555192,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,2.8045320699782997e-09,18.6155397059084,0,0,0.0,459.71155964962094,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3544.3258471246086,2490.0820866237,4223.006203583674,3969.0438074194353,27957.48831704369,7841.803452897628,6263.520812195629,7669.157954276576,4957.782339965654,44247.24163675056,7410.999738885706,6018.416879518773,7424.13801296167,4671.491149768186,44281.32852451647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.032978280897851306,0.001043409819849959,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1163394650249,1.1163394650249,1.1430138789223223,1.1430138789223223,1.1073102013970297,1.1073102013970297,1.0541380844069155,1.0541380844069155,1.1074659674396408,1.1074659674396408,0.6481360516792131,0.6906489951301543,0.6350253083505397,0.6619089917048283,0.6211402894745809,0.6346366423654765,0.67809946772418,0.6244566372788778,0.647990942447889,0.6186972947461387,31.265368016112916,31.265368016112916,32.51113265933884,32.51113265933884,30.848996332137872,30.848996332137872,28.45385329730064,28.45385329730064,30.856156069132666,30.856156069132666,13.821180834361755,15.028956379276252,13.464508598730674,14.203894042453982,13.09490235138881,13.45404888443744,14.664291138537237,13.182420065002646,13.81719240631081,13.030737516730198,177.74828893868465,177.74828893868465,0.0,197.49809882076073,0.0,177.74828893868465,197.49809882076073,0,0
+2017/07/16 23:00:00,124.70084674147465,0,461.5463095277594,0,0,0,39.645260263856,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.5807381288099196e-09,9.544605416199644,0,0,0.0,408.31078075894317,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,719.3291387431289,611.7224100293508,1376.6747087029064,2636.874945619326,11039.003386005334,6988.21036470691,5577.212011280584,6774.24706640349,4428.489739554043,40356.63353822856,6436.234412423487,5227.3123555506545,6388.382982686319,4068.3484057428964,40107.80861951871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02457306738968635,0.0007774747233687398,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0934374089164653,1.0934374089164653,1.1164392612565577,1.1164392612565577,1.084817168950168,1.084817168950168,1.0135141225559428,1.0135141225559428,1.0738512608003037,1.0738512608003037,0.6479834595790527,0.685490921149152,0.635398414295596,0.6599465590376734,0.6248411835241744,0.6320039924569871,0.6695775305971416,0.6222432737248104,0.6432743497311441,0.6205778159883856,30.214637643636976,30.214637643636976,31.26998520134113,31.26998520134113,29.823782060658942,29.823782060658942,26.692123885671734,26.692123885671734,29.330300954884095,29.330300954884095,13.81698675921335,14.878248343946368,13.474555728349515,14.14886109356138,13.192599035741907,13.3833719719224,14.420544150081327,13.123956903642224,13.688050694388707,13.080106132053757,124.70084674147465,124.70084674147465,0.0,138.55649637941627,0.0,124.70084674147465,138.55649637941627,0,0
+2017/07/17 00:00:00,47.272360684789454,0,453.5019867564542,0,0,0,6.349627011521109,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.5752659879054127,2.580738128809921e-09,9.550146686359017,0,0,0.0,400.266457987638,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2508.2142346726932,1979.6849328811847,2471.3476344597393,1385.3413565299306,13781.664200386502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024144781686858557,0.0007639240622710299,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0306781994698904,1.0306781994698904,1.0401515606682314,1.0401515606682314,1.0251582820144038,1.0251582820144038,0.9845931084549674,0.9845931084549674,1.0164324113477539,1.0164324113477539,0.8492347973350908,0.9326537370671014,0.8330654988751072,0.8632327828748365,0.8123011658974124,0.8111969589059965,0.8946196915746455,0.8013741713278669,0.8234596774114947,0.8024271553440524,27.429068282671807,27.429068282671807,27.84047259496154,27.84047259496154,27.19087561845292,27.19087561845292,25.475450257108164,25.475450257108164,26.816647338005126,26.816647338005126,20.21882770717079,23.371550923588018,19.640884574867812,20.727947272001515,18.914759349014673,18.876653313822047,21.89889787087307,18.539935497569147,19.30271921518994,18.575835913642436,47.272360684789454,47.272360684789454,0.0,52.52484520532161,0.0,47.272360684789454,52.52484520532161,0,0
+2017/07/17 01:00:00,23.72222567942925,0,49.13501126120255,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.52513025575146,0,0,0.0,13.644658748658415,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0026159843941768314,8.276792274021157e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1345084032887116,1.1345084032887116,1.1706199388073817,1.1706199388073817,1.1265538425199844,1.1265538425199844,1.0875019077870103,1.0875019077870103,1.104086320122098,1.104086320122098,0.889003508616219,0.9940259977437927,0.8708383819802152,0.9044700327508897,0.8641157190003316,0.8565142033161491,0.9642405747488306,0.845657499288856,0.8705042281264594,0.8545435838825558,32.11138932988301,32.11138932988301,33.824342245600675,33.824342245600675,31.739658379887416,31.739658379887416,29.945237213735993,29.945237213735993,30.700995506387855,30.700995506387855,21.686408246821102,25.868787339784035,21.007970834967125,22.274689487645574,20.76033268832809,20.482571997282832,24.638458258510767,20.09002406147907,20.99561779346473,20.41095612154693,23.72222567942925,23.72222567942925,0.0,26.358028532699166,0.0,23.72222567942925,26.358028532699166,0,0
+2017/07/17 02:00:00,28.344555714642897,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.525192628170002,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1929051141718763,1.1929051141718763,1.2369727092404217,1.2369727092404217,1.183618491697001,1.183618491697001,1.1447186704864434,1.1447186704864434,1.167166362208969,1.167166362208969,0.915150137032556,1.0268321274652907,0.8977012252592761,0.9311127298470033,0.8875240997173932,0.8831532522939072,1.0005135522512507,0.8720823559582798,0.8977853846747333,0.8797767902933479,34.9014524790267,34.9014524790267,37.07352454123381,37.07352454123381,34.450799457782495,34.450799457782495,32.59153428546901,32.59153428546901,33.65876116598352,33.65876116598352,22.686579820188513,27.26298551518832,22.016034728070196,23.310754158857208,21.630648788149614,21.46643305498283,26.141278658239187,21.05399867604457,22.01923926152803,21.340112993135037,28.344555714642897,28.344555714642897,0.0,31.493950794047663,0.0,28.344555714642897,31.493950794047663,0,0
+2017/07/17 03:00:00,23.77487830402657,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5777828803487765,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.191297190069387,1.191297190069387,1.2380952047347442,1.2380952047347442,1.1823321179955282,1.1823321179955282,1.1506481284837533,1.1506481284837533,1.1617047300636538,1.1617047300636538,0.9320363671206199,1.0447701388004063,0.915291291576059,0.946939470689351,0.9071333528065761,0.9040317060487184,1.0251321129684314,0.8940955992097738,0.9179888218200012,0.9000055348982101,34.82324261004902,34.82324261004902,37.12954899553888,37.12954899553888,34.38857703163383,34.38857703163383,32.871900214880085,32.871900214880085,33.39765257107764,33.39765257107764,23.347182692179032,28.042236084027508,22.69205443947324,23.93965545179141,22.37697177894745,22.257883507396997,27.18974907005564,21.879014282427363,22.796831189112112,22.103879818189668,23.77487830402657,23.77487830402657,0.0,26.41653144891841,0.0,23.77487830402657,26.41653144891841,0,0
+2017/07/17 04:00:00,65.16348736236027,0,88.72588128136032,0,0,0,18.663566200738163,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,6.466669940306142,0.0,0.5251176716818605,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556.0405270416901,425.0422172729066,829.1398954748249,1174.3501119732205,10065.033463661455,2857.915630290781,2376.8847785805765,2715.8354269870433,1859.8558892278663,17267.395566663406,2618.824122906227,2163.262074344964,2531.4850780703377,1692.4899817688324,16128.189718400914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0821707497215491,1.0821707497215491,1.1006281476604944,1.1006281476604944,1.0754256708474843,1.0754256708474843,1.0446665960301966,1.0446665960301966,1.059635860812725,1.059635860812725,0.6412790784708003,0.6839331632116159,0.6322648381583866,0.6544002633753875,0.6110438370559936,0.6254853747889294,0.6718943668357149,0.6187003109857862,0.6390333011461587,0.6146622044968789,29.704305289120228,29.704305289120228,30.542630065532236,30.542630065532236,29.40089284777781,29.40089284777781,28.037704289537558,28.037704289537558,28.696891717465746,28.696891717465746,13.633709930176423,14.832960084192322,13.390361294752665,13.99422728697489,12.831397477089581,13.209665209104884,14.486499858306644,13.030816578058108,13.572753219193402,12.92532375071059,65.16348736236027,65.16348736236027,0.0,72.40387484706697,0.0,65.16348736236027,72.40387484706697,0,0
+2017/07/17 05:00:00,86.71286718239867,0,212.9421150752648,0,0,0,10.721661388940822,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.680112218952549,0.0,0.5250505445494318,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4046.0451829178282,2845.111898561863,3982.3420505725735,2446.9481342532035,25312.003342012657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.064436175050454,1.064436175050454,1.0685321434145434,1.0685321434145434,1.0615095741452976,1.0615095741452976,1.0489134634036552,1.0489134634036552,1.063141932489372,1.063141932489372,0.8597554368777814,0.9323048239803358,0.8476693474533454,0.8726185857204551,0.8282979267133048,0.8175072820279363,0.8875218624135429,0.8107444103857964,0.8296253787646318,0.8277627412526402,28.909981700272354,28.909981700272354,29.09245330209673,29.09245330209673,28.779969631668905,28.779969631668905,28.223897757719712,28.223897757719712,28.852448309448363,28.852448309448363,20.600714574162225,23.3577770949221,20.162396800884252,21.07385918918311,19.47256234429028,19.095113893415444,21.630564531118253,18.861050779240657,19.519333226954075,19.45372674480248,86.71286718239867,86.71286718239867,0.0,96.34763020266519,0.0,86.71286718239867,96.34763020266519,0,0
+2017/07/17 06:00:00,100.08110511030746,0,631.9930357154363,0,0,0,12.264831352430964,0.0,10.417229999200377,0.0,73.80580873715317,0,3.0682292420304815,2.5224333385322564e-09,0.5250057769700123,0,0,0.0,401.30574438389937,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4643.592260105918,3128.709001786059,4596.258916475658,2870.141206971143,29282.74139514931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03364777734294467,0.0010645922206951946,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0613097426623352,1.0613097426623352,1.0638220333841306,1.0638220333841306,1.059779988232937,1.059779988232937,1.0600626791398877,1.0600626791398877,1.0617416500720767,1.0617416500720767,1.0307034609295929,1.1129786772751713,1.0176737712728132,1.0455567824189274,1.0406452616837585,0.9910689390242219,1.0741103613088028,0.9844880562707987,1.0065439186334262,1.039159743918414,28.771103401641582,28.771103401641582,28.88267362598623,28.88267362598623,28.703277678801868,28.703277678801868,28.715805232872754,28.715805232872754,28.79026828870613,28.79026828870613,27.43016093899827,31.110071205819864,26.86971273382106,28.07667812493098,27.862002905846865,25.74511626206575,29.34191226638106,25.47108893937903,26.395998119109677,27.79724635134083,100.08110511030746,100.08110511030746,0.0,111.20122790034162,0.0,100.08110511030746,111.20122790034162,0,0
+2017/07/17 07:00:00,208.73221006190727,0,760.1557166513962,0,0,0,65.2123551191187,0.0,7.7298192956498175,0.0,69.33401494192633,0,39.380909295966944,3.013609388328583e-09,27.075111406231898,0,0,0.0,493.9780728073153,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3836.732229842042,2328.169204440569,4221.313277051613,6984.756498923134,31819.952230903207,9585.373798229306,6153.207443573272,9505.685416695134,8024.215178139265,63844.06972114199,9548.580576908416,6140.0271657141975,9507.992711262186,8351.81599016683,64632.88073268286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04047125340692736,0.0012804822470044363,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.104772057645615,1.104772057645615,1.1141694414433543,1.1141694414433543,1.0976073975523675,1.0976073975523675,1.2431216830513647,1.2431216830513647,1.095202595689151,1.095202595689151,0.7642955543986856,0.8212916879458079,0.7410977341567777,0.8955107406976701,0.7467793567642416,0.759937039825134,0.8161587293943666,0.7390615780155065,0.916517205316774,0.7525743254348275,30.73244670089177,30.73244670089177,31.16505146872069,31.16505146872069,30.404628906424875,30.404628906424875,37.38083238428479,37.38083238428479,30.29498966026823,30.29498966026823,17.305779339725845,19.226932462167383,16.563464717980025,21.932729154126577,16.743141762683905,17.164553104316013,19.048286680231996,16.499409859156657,22.739634738932523,16.927828519199394,208.73221006190727,208.73221006190727,0.0,231.9246778465636,0.0,208.73221006190727,231.9246778465636,0,0
+2017/07/17 08:00:00,237.5306649010419,0,810.8312545924151,0,0,0,78.01495084929402,0.0,11.323895916778682,0.0,83.2008179303116,0,39.380909295966944,2.962693805063629e-09,25.610090905728,0,0,0.0,491.418081979518,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6883.003411142171,3805.4101634876406,6231.754465555778,10223.517165528643,42599.90843410183,12718.79856672918,8353.294772887843,11426.868161992657,12163.35163324083,68436.35997914968,12684.087825067105,8204.955171773365,11393.533323367796,12749.849822785665,69169.14046220435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043169256582616,0.0013658451868198748,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1384779030369252,1.1384779030369252,1.1228054478495975,1.1228054478495975,1.1096435135610159,1.1096435135610159,1.2978599347049375,1.2978599347049375,1.1109192061579887,1.1109192061579887,0.6881029172061841,0.7089980412559245,0.6536759531258357,0.8341145454447845,0.6415720184772534,0.6893327158982232,0.7039829215097012,0.6520975638160361,0.8632474202490297,0.6467185280635377,32.297659480598,32.297659480598,31.565206821921947,31.565206821921947,30.956331810780583,30.956331810780583,40.158384340307975,40.158384340307975,31.015092746556505,31.015092746556505,14.95442162156435,15.574392193699907,13.974131528284474,19.678049616288817,13.641677272302132,14.990388188129344,15.423871721512427,13.93041838225075,20.728483896800455,13.782258312806064,237.5306649010419,237.5306649010419,0.0,263.92296100115766,0.0,237.5306649010419,263.92296100115766,0,0
+2017/07/17 09:00:00,264.2435395090725,0,837.084771069626,0,0,0,83.17024677741672,0.0,11.128561489866103,0.0,106.27511244621549,0,39.380909295966944,2.8581737621023677e-09,20.856734294294764,0,0,0.0,464.43606968791266,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10523.444051689099,5626.268089084561,8615.583638513595,10194.418293184788,53856.65169022706,13402.9599897711,8479.738256236156,11362.240383362549,11603.80326944051,65681.48510962201,13609.30473293451,8448.069143100905,11415.981206818926,12163.012553669965,66523.22113869425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04456701324601738,0.0014100692333331281,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1660824619806103,1.1660824619806103,1.1222341308951405,1.1222341308951405,1.1134109056449635,1.1134109056449635,1.2737099245018069,1.2737099245018069,1.1119445578327032,1.1119445578327032,0.6720412512916373,0.6704341411138823,0.622803597303316,0.7965922262451605,0.604557665056249,0.684749563913836,0.6735986033955017,0.6279905193474871,0.8285142864473676,0.6113615690289388,33.60686916615147,33.60686916615147,31.53865815882996,31.53865815882996,31.130022685514987,31.130022685514987,38.9239708094762,38.9239708094762,31.062362047169188,31.062362047169188,14.490689199108104,14.444903066925178,13.13873703695485,18.377490281740776,12.66445040616982,14.85668198737551,14.535164404293411,13.276203665321603,19.48018043220692,12.839622467460444,264.2435395090725,264.2435395090725,0.0,293.6039327878583,0.0,264.2435395090725,293.6039327878583,0,0
+2017/07/17 10:00:00,293.1370211548547,0,919.4869189985028,0,0,0,81.02797109404368,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.8045507657976385e-09,18.602579772635533,0,0,0.0,458.1123363354291,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12887.680242527904,6938.997756160612,10542.258597651824,9510.40787188792,65481.06112024206,12012.489453423983,7644.85745994961,9795.373948353383,10039.744995409295,56304.699163995036,12311.024504729037,7639.656251340009,9870.490084199824,10446.301120394335,57603.115666550475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0489541646375711,0.0015488756452651043,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.186119801743334,1.186119801743334,1.1354978972247196,1.1354978972247196,1.1290528829077051,1.1290528829077051,1.2348063103892573,1.2348063103892573,1.1442926184385989,1.1442926184385989,0.6533576338072443,0.6457767388180131,0.5996880702879136,0.7481593530120364,0.5785945415188255,0.6682950523695136,0.6483704853926122,0.6039032318078706,0.7702306694009888,0.5876767963693186,34.57192988199749,34.57192988199749,32.15777403208081,32.15777403208081,31.856220685244537,31.856220685244537,36.96549306004168,36.96549306004168,32.57143206240626,32.57143206240626,13.965307051847219,13.756446728166665,12.540312290285755,16.78699200060558,12.014469524763157,14.384134479330413,13.827626336667805,12.647707408091222,17.499395526273744,12.238514925848605,293.1370211548547,293.1370211548547,0.0,325.70780128317193,0.0,293.1370211548547,325.70780128317193,0,0
+2017/07/17 11:00:00,324.1656584146318,0,977.704716534237,0,0,0,96.07223445532553,0.0,16.693521233099577,0.0,147.76209134187457,0,39.380909295966944,2.858173762102368e-09,20.824926883052537,0,0,0.0,463.0946051023472,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16004.88606133574,8351.612035333234,12639.526570372524,9990.44453189025,77206.79607036311,15143.756664657065,9035.161425531092,12357.051814775867,10969.697744430083,68789.34150862382,15587.206438890937,9101.367534672097,12546.391402926727,11313.319245799326,70642.35505520512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05205372330068435,0.0016469435207953926,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2410056176298585,1.2410056176298585,1.1605855993079819,1.1605855993079819,1.1548897382601222,1.1548897382601222,1.2464330071400243,1.2464330071400243,1.1720430533734545,1.1720430533734545,0.681807427764879,0.6494882309071747,0.6080282601073665,0.7460297083998371,0.5804324853714679,0.7047210732039945,0.6588126965050003,0.6193723879201282,0.7696426536342669,0.5953141160893601,37.274965000806866,37.274965000806866,33.344263245988174,33.344263245988174,33.07314042490076,33.07314042490076,37.54673419263434,37.54673419263434,33.892679218052436,33.892679218052436,14.771328478674235,13.858390307171632,12.753552665643198,16.719355431814748,12.059519923189455,15.44595802038782,14.117139979112778,13.04844282628784,17.48014611139955,12.429686662780796,324.1656584146318,324.1656584146318,0.0,360.18406490514644,0.0,324.1656584146318,360.18406490514644,0,0
+2017/07/17 12:00:00,316.5361727867952,0,938.6035190799743,0,0,0,108.8734698780092,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.8045507657976385e-09,18.61425362097838,0,0,0.0,459.4837601606285,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17285.43997990651,8722.081824022496,13323.485072542815,9423.034143199364,80160.59128313077,18424.124226597698,10511.29080411172,15222.08214396105,11643.621452733329,81746.12175190946,18993.34158861123,10640.13260874673,15522.794472794785,11911.930992132224,84353.5119049941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04997194658570177,0.0015810775566514174,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2548836423616156,1.2548836423616156,1.1605436570906156,1.1605436570906156,1.1573596821230279,1.1573596821230279,1.2019667046187834,1.2019667046187834,1.1733659334673092,1.1733659334673092,0.704426307316511,0.65380716946634,0.6198175442968998,0.7218444725319908,0.5902781061183044,0.732402902250874,0.6693739479200862,0.6359603586769003,0.741169004672784,0.6109953193436567,37.97140881191277,37.97140881191277,33.34226310350576,33.34226310350576,33.19058533410943,33.19058533410943,35.34361848762917,35.34361848762917,33.95625828565558,33.95625828565558,15.437135485944822,13.977770397639361,13.060128526167645,15.964901958077448,12.303344721817467,16.29117930071878,14.41475966467489,13.489699362880899,16.565710019498965,12.830141905622952,316.5361727867952,316.5361727867952,0.0,351.70685865199465,0.0,316.5361727867952,351.70685865199465,0,0
+2017/07/17 13:00:00,311.7852260513507,0,899.3812768324344,0,0,0,106.74456594540132,0.0,16.630907756533322,0.0,129.2730206906943,0,39.380909295966944,2.750006761732736e-09,16.323847157550446,0,0,0.0,455.7518704256327,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16434.875231706756,8899.704160569312,12970.38843267734,8921.999685432987,77382.3986149606,17877.925566877464,10619.490542660526,14818.24014882205,11176.101260654794,78146.4173773368,18376.434736815976,10759.727132870845,15098.827618701984,11360.375634678694,81088.9396729445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04788372535626644,0.0015150076925623545,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2358771541356657,1.2358771541356657,1.176450518191336,1.176450518191336,1.1511409518200464,1.1511409518200464,1.187343582216199,1.187343582216199,1.165809417297295,1.165809417297295,0.700582690411253,0.6675222288637469,0.620366764605535,0.7090172279790157,0.586325075724407,0.725961694858822,0.6840031692375425,0.6365013700303582,0.7252426918040077,0.6063286732287335,37.0188770178904,37.0188770178904,34.10471298924544,34.10471298924544,32.895252780239076,32.895252780239076,34.631261288575956,34.631261288575956,33.59380277802347,33.59380277802347,15.322436739908753,14.362228340265645,13.074557834647493,15.574970134306213,12.204943311019932,16.091562332391703,14.834993097919948,13.504291822630265,16.069390681376362,12.709853034120059,311.7852260513507,311.7852260513507,0.0,346.42802894594524,0.0,311.7852260513507,346.42802894594524,0,0
+2017/07/17 14:00:00,283.9995094831429,0,835.3891746016952,0,0,0,94.82606082534876,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.6945324814995784e-09,14.105232511285486,0,0,0.0,427.2501207074378,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14420.90592813176,9329.153848957403,12089.651630807395,8338.29651706931,71474.61761468528,14723.240481693574,10141.18355181535,12203.05372390253,9845.342849153823,64966.9037415686,15055.003722912401,10334.149699188813,12413.460640541147,9967.800898988049,67708.98870762519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04447673843412515,0.0014072130012115925,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1933357461267013,1.1933357461267013,1.2249399962960963,1.2249399962960963,1.1399027911536272,1.1399027911536272,1.1739290570346386,1.1739290570346386,1.1501869347076796,1.1501869347076796,0.6703464491912261,0.6922086229301831,0.605777661964359,0.6909634938422934,0.5699973352303974,0.6875385681046133,0.7123845872298228,0.6179130778445033,0.7023548558127003,0.5868193942707752,34.92241139063471,34.92241139063471,36.47508777517154,36.47508777517154,32.3646467591074,32.3646467591074,33.98333875293967,33.98333875293967,32.85005337129135,32.85005337129135,14.442407964939974,15.07475182287186,12.695712390913044,15.038182562896864,11.805686989426292,14.937938608821113,15.676647238434057,13.010195108760897,15.375241347020648,12.217211112857314,283.9995094831429,283.9995094831429,0.0,315.5550105368254,0.0,283.9995094831429,315.5550105368254,0,0
+2017/07/17 15:00:00,258.1091146274887,0,835.3507647539113,0,0,0,75.69796114844912,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,2.6945324814995784e-09,14.10619372247841,0,0,0.0,427.2117108596539,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11839.595432621561,8696.242629438682,10250.72249947043,7381.641921290611,62735.303030169176,10908.970971094099,8370.090602242388,9016.618913067401,7587.6459116522055,50807.54272460583,11166.677516292679,8674.668480108929,9241.85084445031,7718.475383461602,52756.07078468488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044474693465378703,0.001407148299825916,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1654905643014133,1.1654905643014133,1.2309062428900588,1.2309062428900588,1.130787514635343,1.130787514635343,1.1553021645508879,1.1553021645508879,1.1504821805901073,1.1504821805901073,0.6245435067661337,0.687606577724356,0.5793814970269368,0.6635415813105747,0.5552088974310657,0.6316194595514333,0.705302573273016,0.5848524310044677,0.6682163581370897,0.5685983828870627,33.57854716493381,33.57854716493381,36.77132572170308,36.77132572170308,31.937248807193015,31.937248807193015,33.09273785876785,33.09273785876785,32.86403845535436,32.86403845535436,13.184718946449479,14.939924244451149,12.033740885948077,14.249804255583015,11.454051435316984,13.373073851469172,15.463373687261907,12.168458648441757,14.381902662138032,11.77201686641466,258.1091146274887,258.1091146274887,0.0,286.7879051416541,0.0,258.1091146274887,286.7879051416541,0,0
+2017/07/17 16:00:00,278.4629452588132,0,888.5465927503398,0,0,0,76.05885771286137,0.0,17.346139882338,0.0,131.64086955684016,0,39.380909295966944,2.6945324814995784e-09,14.036168808112198,0,0,0.0,427.172010087266,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10880.32029708218,6508.907208300482,10053.91326592021,7244.336350103334,67624.30311395931,11389.63184866141,7516.709948790363,9406.561629661403,7568.549845236234,56797.03986845356,11530.13790606919,7650.531738939613,9594.723259174489,7594.830568315811,58497.685254187934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047306878750412985,0.0014967566680484047,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2036180247372184,1.2036180247372184,1.2113998073755217,1.2113998073755217,1.1709501346225986,1.1709501346225986,1.157069818172025,1.157069818172025,1.2082076341607721,1.2082076341607721,0.6741239980420549,0.6923115543901613,0.6317412376316102,0.7081897533435828,0.6195712141537059,0.6724625027597736,0.6917266886911859,0.6298666402930339,0.7062519268822873,0.6277072041968641,35.42445116501868,35.42445116501868,35.80641883066106,35.80641883066106,33.84019251903676,33.84019251903676,33.176792529885915,33.176792529885915,35.649523456464266,35.649523456464266,14.550192422840055,15.077777902684133,13.37633447864701,15.550059445019272,13.053661106321599,14.50270903347365,15.06058953787192,13.32621311703663,15.491837752236009,13.268664953400219,278.4629452588132,278.4629452588132,0.0,309.40327250979243,0.0,278.4629452588132,309.40327250979243,0,0
+2017/07/17 17:00:00,278.2289405659951,0,920.8980402248001,0,0,0,69.71995983619689,0.0,16.630907673226492,0.0,133.89528835348938,0,39.380909295966944,2.8045507657976393e-09,18.601875404310793,0,0,0.0,459.52345756172633,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8356.149172955867,5980.7302908798565,9235.008945619513,7398.00987492446,58607.29553504729,9845.170207267633,7511.881608442649,9360.560226878208,6028.446718330655,54357.52297933221,9977.4929825171,7779.625498015386,9735.537391116772,5922.082843080593,56279.35944062866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04902929377688607,0.0015512526788636998,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2387655789840282,1.2387655789840282,1.3196881412525794,1.3196881412525794,1.221699847908633,1.221699847908633,1.1757654498712649,1.1757654498712649,1.2357222585983685,1.2357222585983685,0.7179121752130698,0.7802320456165319,0.688461480631853,0.7473558380867107,0.660957633311167,0.7221639634084007,0.7966924852013227,0.6955136707847999,0.751162529284428,0.6715577600543431,37.163023743481226,37.163023743481226,41.28543566201339,41.28543566201339,36.31461405371181,36.31461405371181,34.07171718969279,34.07171718969279,37.0111532348584,37.0111532348584,15.844611757521037,17.829059460829143,14.964901379376442,16.76144988932485,14.177194044928115,15.974704524198287,18.380886195635227,15.172145463394031,16.882701781535687,14.476902906054008,278.2289405659951,278.2289405659951,0.0,309.1432672955501,0.0,278.2289405659951,309.1432672955501,0,0
+2017/07/17 18:00:00,306.4014765957091,0,917.2977058623678,0,0,0,113.61536581352895,0.0,16.86091083164338,0.0,110.93442390708215,0,39.380909295966944,2.9626938050636314e-09,25.60986674452495,0,0,0.0,491.41347571183815,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13682.636786174196,10189.394998670532,13859.923566814628,8132.946590004093,82486.68605931655,19040.26025406504,13761.994585570854,17824.607150349875,12462.322351478328,101682.51027081827,19275.45961888074,14168.30951421567,18258.254170494267,12613.728920403817,103844.15749377564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048837609308638515,0.0015451879159034433,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2251221640047216,1.2251221640047216,1.2817724341903918,1.2817724341903918,1.2163721676585924,1.2163721676585924,1.1758194924181027,1.1758194924181027,1.2269149075281955,1.2269149075281955,0.7095774163450732,0.763619037877942,0.6869195229695472,0.7393733657018425,0.6611983662517279,0.7146479606656868,0.777589608921592,0.6962819018387457,0.7436297368735456,0.672947078378687,36.48411847928058,36.48411847928058,39.33456091867119,39.33456091867119,36.05138168388682,36.05138168388682,34.07431959300105,34.07431959300105,36.57303952486936,36.57303952486936,15.591851071343129,17.283805388548416,14.919873916474117,16.509206763077145,14.183946540770478,15.74526426173081,17.741545766801423,15.194851395165998,16.64336640350905,14.51654523609173,306.4014765957091,306.4014765957091,0.0,340.44608510634345,0.0,306.4014765957091,340.44608510634345,0,0
+2017/07/17 19:00:00,293.66772238958276,0,884.3756547466971,0,0,0,107.8339275686994,0.0,17.665254465099625,0.0,101.68988858149199,0,39.380909295966944,3.013609388536329e-09,27.0977424753112,0,0,0.0,493.9817771087117,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11966.379206621366,9072.321669628831,12765.220018284743,7584.558720232723,75541.19139940455,17477.838060223097,12831.321969106122,17014.363860762147,11390.724331812404,97123.49914036402,17549.222709847534,13107.26470208964,17365.732577356095,11433.413916387432,98821.79208964724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04708481492165746,0.0014897307232978373,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1949318976463508,1.1949318976463508,1.261479115107691,1.261479115107691,1.205734947817916,1.205734947817916,1.1560699972687472,1.1560699972687472,1.208906197124581,1.208906197124581,0.6847260167596593,0.7476004158708347,0.6760190519838796,0.7116332714195326,0.6506915474248428,0.6843013700916519,0.7566907689242739,0.6822742663474267,0.7099357106347943,0.65951230853511,35.00014354729568,35.00014354729568,38.304119378766885,38.304119378766885,35.528189464239276,35.528189464239276,33.129237484889885,33.129237484889885,35.68383319810172,35.68383319810172,14.855997381337858,16.76922159242669,14.604496470799006,15.653918960475536,13.891570008456938,14.843655389759647,17.059893801784327,14.784846817564954,15.60265514760657,14.13670585243706,293.66772238958276,293.66772238958276,0.0,326.2974693217586,0.0,293.66772238958276,326.2974693217586,0,0
+2017/07/17 20:00:00,281.1551540003981,0,843.5644675366854,0,0,0,90.50190502815514,0.0,21.930440126291984,0.0,106.16168237671882,0,39.380909295966944,2.9108850190550043e-09,23.18021717035431,0,0,0.0,488.6609424112441,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8822.3404358583,5557.704246248021,9062.620770674344,6863.658922451192,60616.712599189035,14174.723565209213,9631.42460284837,13847.432296309058,9017.934774114194,83039.05887259578,14069.500623577149,9940.16831055995,13943.351066398996,8893.073947664921,84081.02273644114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044911997085478,0.0014209842815400893,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.167728967653726,1.167728967653726,1.183607937509346,1.183607937509346,1.14933628142967,1.14933628142967,1.135919893495161,1.135919893495161,1.188120462890438,1.188120462890438,0.6652761355799583,0.6921182039285538,0.6499543067868828,0.6890780588374917,0.6426240663372633,0.6615263506395305,0.7051282661026024,0.6491862201771562,0.6835973606452913,0.648004806964106,33.68571026941129,33.68571026941129,34.45028874662323,34.45028874662323,32.80977538729144,32.80977538729144,32.1775656711834,32.1775656711834,34.668949065851834,34.668949065851834,14.298708319070187,15.072093974247807,13.87123422323262,14.982935147123186,13.670321407831153,14.193150457288027,15.458151734413875,13.85007265518982,14.823211138336191,13.817573442727394,281.1551540003981,281.1551540003981,0.0,312.3946155559979,0.0,281.1551540003981,312.3946155559979,0,0
+2017/07/17 21:00:00,261.535144579422,0,810.8315791647603,0,0,0,67.46843515453754,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9626938050636314e-09,25.602747173756487,0,0,0.0,491.41840655186314,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6079.117171963314,3563.76163299236,6546.732793918348,5888.736098742707,47010.16721635198,9793.005246376339,6644.26497200545,9474.771112163195,6142.618386351001,59359.33733866106,9522.043657297232,6613.59010440812,9419.724285527374,5885.836358232264,59800.5418333219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043169273863088074,0.0013658457335619656,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1406267862943322,1.1406267862943322,1.155820190095831,1.155820190095831,1.1266081732052615,1.1266081732052615,1.1113224435570315,1.1113224435570315,1.1646001284606535,1.1646001284606535,0.6450675321449771,0.6710212776433829,0.6237825710308825,0.6658234209782469,0.6274806380636926,0.6364369674375995,0.6654411000428208,0.6185323276382451,0.6552389927427436,0.6287963984329458,32.39870844190071,32.39870844190071,33.117360647920606,33.117360647920606,31.742190341761713,31.742190341761713,31.033678018588887,31.033678018588887,33.53596059047398,33.53596059047398,13.737034910632588,14.461617464219046,13.16459295745345,14.31416554049872,13.262638778012445,13.502554054288481,14.303366116955871,13.02641401909679,14.017525976716172,13.29766628418949,261.535144579422,261.535144579422,0.0,290.5946050882467,0.0,261.535144579422,290.5946050882467,0,0
+2017/07/17 22:00:00,184.787114816135,0,622.8504254122977,0,0,0,48.16596923322088,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8581737621023677e-09,20.868187974733964,0,0,0.0,463.14383910584917,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2635.3842491504947,1352.37667025755,3144.413721080547,4102.956947983376,24744.40459579098,7422.554701338063,5092.516774509595,7098.63380842911,4666.574049543503,45270.7590705214,7001.611423319057,4899.719974442322,6884.840360395245,4319.541575408504,45303.08422103197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033161017998413166,0.0010491914943334697,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.09650468910919,1.09650468910919,1.1093470794765996,1.1093470794765996,1.0833343187421587,1.0833343187421587,1.0614522997182059,1.0614522997182059,1.0951742760102472,1.0951742760102472,0.6321587482347598,0.6547721308890093,0.6126708751216408,0.6505900142934402,0.6134166888809008,0.6193731134059518,0.6442740085193931,0.6032297503070336,0.6357014822662527,0.6112393169170212,30.35432989299781,30.35432989299781,30.94268529227763,30.94268529227763,29.756806454200145,29.756806454200145,28.777428303594746,28.777428303594746,30.293699693976535,30.293699693976535,13.387518274471404,14.004553467011988,12.873562135943828,13.888767955428136,12.892928286742602,13.048461863857014,13.715341092335308,12.63049648768964,13.48272129511389,12.83645726125144,184.787114816135,184.787114816135,0.0,205.3190164623722,0.0,184.787114816135,205.3190164623722,0,0
+2017/07/17 23:00:00,105.33010471542646,0,475.50345608995696,0,0,0,17.989865110061537,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.638118656690083e-09,11.829258543888542,0,0,0.0,422.26792732114075,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2229.3662969298616,0.0,2802.710771324762,1951.2024711104561,2922.7340909582736,1538.2060855099924,21965.66786951456,2206.473493457805,1610.8918092029512,2556.598226623145,1036.7907989195512,21525.40722117266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02531615621080926,0.0008009855356934321,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9689927077028756,0.9689927077028756,0.9604957582922983,0.9604957582922983,0.981144070921836,0.981144070921836,1.003774918792395,1.003774918792395,1.0224268052721124,1.0224268052721124,0.6046377446594272,0.6239611121672151,0.5873057749530599,0.6194228509545721,0.5936699643536371,0.5867212480587299,0.6074458962504917,0.5728470441939474,0.5991407513423085,0.5878637182095524,24.83245091894598,24.83245091894598,24.486207187538938,24.486207187538938,25.33248271144268,25.33248271144268,26.27886632775528,26.27886632775528,27.073425640974634,27.073425640974634,12.666500436452438,13.169312935948895,12.229292265755603,13.04976708788783,12.388317652816127,12.214774515372596,12.73856485726381,11.874536677773435,12.526424103056655,12.243163596049527,105.33010471542646,105.33010471542646,0.0,117.03344968380718,0.0,105.33010471542646,117.03344968380718,0,0
+2017/07/18 00:00:00,43.1218198842491,0,466.3499755849401,0,0,0,0.2939512569794929,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,3.485642463191859,2.5807560188961702e-09,9.544905165073802,0,0,0.0,413.1144468161239,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1168.655519383491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02482881812867813,0.0007855664984774687,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.992983263631131,0.992983263631131,0.994663343009909,0.994663343009909,0.9914064918973947,0.9914064918973947,0.965365840722575,0.965365840722575,1.0107758868140617,1.0107758868140617,0.7755506613786183,0.8162578352932198,0.742066996890933,0.8009179328529074,0.7905596587163312,0.7292040711343502,0.7734195371089747,0.7037563968379671,0.7497659739430425,0.7726028030720808,25.82513968356045,25.82513968356045,25.89548629460397,25.89548629460397,25.759216629296773,25.759216629296773,24.684314609482854,24.684314609482854,26.57557349341397,26.57557349341397,17.674221928632804,19.05172543226368,16.594018976902532,18.524395073810794,18.17394258296096,16.191822599189507,17.604043776964517,15.417098572216943,16.83814617931415,17.57719993201809,43.1218198842491,43.1218198842491,0.0,47.91313320472122,0.0,43.1218198842491,47.91313320472122,0,0
+2017/07/18 01:00:00,23.722206923716183,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525111500038388,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0494140824763551,1.0494140824763551,1.061740091197549,1.061740091197549,1.036684915466788,1.036684915466788,1.025477070794308,1.025477070794308,1.1011368730471072,1.1011368730471072,0.7808336702771574,0.8311108088213393,0.7400331397281011,0.8103985684718771,0.8487820271629117,0.7315876085511186,0.7882835063096787,0.7000475151697864,0.755621743380353,0.823298706728079,28.2458892227462,28.2458892227462,28.790199105305817,28.790199105305817,27.68954304140273,27.68954304140273,27.204601159554443,27.204601159554443,30.565901445345077,30.565901445345077,17.849025925674653,19.57175779967288,16.52995175028998,18.84913299580299,20.20249589037853,16.26581425978189,18.09754291500566,15.306516956694693,17.025527222858216,19.297085350704734,23.722206923716183,23.722206923716183,0.0,26.35800769301798,0.0,23.722206923716183,26.35800769301798,0,0
+2017/07/18 02:00:00,28.344537217487666,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251741310147711,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0824079203743522,1.0824079203743522,1.097412925519866,1.097412925519866,1.0659533222626332,1.0659533222626332,1.0583325460537196,1.0583325460537196,1.1620344730185856,1.1620344730185856,0.7993101410701657,0.850612224241824,0.7564724399880044,0.8302906420839116,0.8726662289603991,0.7371411130810396,0.7948049945447818,0.7032730564207252,0.7620252914284289,0.8444250823339605,29.715002795412843,29.715002795412843,30.39575522958721,30.39575522958721,28.977499783634528,28.977499783634528,28.639178518786622,28.639178518786622,33.41339071745767,33.41339071745767,18.469700569961617,20.268565135436617,17.05287108320313,19.5428006158933,21.075624339995755,16.439157567314965,18.317025648576973,15.402653964946907,17.232116142504253,20.04577328387785,28.344537217487666,28.344537217487666,0.0,31.49393024165296,0.0,28.344537217487666,31.49393024165296,0,0
+2017/07/18 03:00:00,23.774858205198964,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5777627815211679,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0719137995786705,1.0719137995786705,1.0886289109748994,1.0886289109748994,1.0535139712715373,1.0535139712715373,1.045091799992071,1.045091799992071,1.1574196247936204,1.1574196247936204,0.7969704392398277,0.8491063454728549,0.7533647518680259,0.8283888661747756,0.8936030630938163,0.7242993773220249,0.7830938003918003,0.6887340592644612,0.7496390564133137,0.860068458544101,29.24355060592005,29.24355060592005,29.99629616608776,29.99629616608776,28.42633193515961,28.42633193515961,28.056316832566097,28.056316832566097,33.19343795660326,33.19343795660326,18.390303121807776,20.214193469323504,16.9531310199595,19.475764109532278,21.860338113686637,16.04033574654801,17.924171712423387,14.972871771843657,16.834101152362734,20.61214722836749,23.774858205198964,23.774858205198964,0.0,26.416509116887738,0.0,23.774858205198964,26.416509116887738,0,0
+2017/07/18 04:00:00,50.63647757235114,0,88.72588128136032,0,0,0,0.17613276076991802,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,10.427176259988212,0.0,0.5250350019588902,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,706.0870726923881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0326806296187854,1.0326806296187854,1.0353118596256434,1.0353118596256434,1.0279361802122156,1.0279361802122156,1.0032490191920864,1.0032490191920864,1.0541936614280416,1.0541936614280416,0.5999564833698985,0.623190984043358,0.5805894860313996,0.613557558383498,0.6444597074102865,0.5623884762925219,0.587314381247779,0.547072207592883,0.5730060569952126,0.626860939716972,27.51575409911011,27.51575409911011,27.62988509644424,27.62988509644424,27.31060528233543,27.31060528233543,26.25665291618985,26.25665291618985,28.456304743058283,28.456304743058283,12.547128008450557,13.148963433070264,12.063375009048997,12.896588880913285,13.720415391283865,11.623580974836813,12.22950612893814,11.264623465015433,11.878388844753658,13.246167502156453,50.63647757235114,50.63647757235114,0.0,56.26275285816793,0.0,50.63647757235114,56.26275285816793,0,0
+2017/07/18 05:00:00,78.00743396164812,0,212.9421150752648,0,0,0,0.44984785817711276,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,4.246644019418891,0.0,0.5248990540962463,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1843.3569726287278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0558166037949905,1.0558166037949905,1.0545825526107555,1.0545825526107555,1.056404823899632,1.056404823899632,1.032864966142725,1.032864966142725,1.0698889929466835,1.0698889929466835,0.7711318800537257,0.8058073743008415,0.7411183968159856,0.789979447610574,0.8526767961977956,0.6986495510871635,0.733934597210702,0.6764729935972775,0.7120127808060458,0.824881518347521,28.527940047599344,28.527940047599344,28.473461445426267,28.473461445426267,28.553926947807383,28.553926947807383,27.523741503823757,27.523741503823757,29.153030774439358,29.153030774439358,17.5289263763883,18.6913977835369,16.564115650565995,18.15444676088481,20.343262368426863,15.264990248365336,16.338909921625756,14.617527546539833,15.665396570668506,19.352529937806395,78.00743396164812,78.00743396164812,0.0,86.67492662405347,0.0,78.00743396164812,86.67492662405347,0,0
+2017/07/18 06:00:00,89.8773331592208,0,635.9133955139524,0,0,0,0.8701494506563118,0.0,9.124761686376146,0.0,73.80580873715317,0,5.551585945547656,2.522450530555841e-09,0.5250273369650351,0,0,0.0,405.2261041824155,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3665.4940284841127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03385650020245431,0.0010711960664782445,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0703290662602982,1.0703290662602982,1.0693897724358221,1.0693897724358221,1.073682168166293,1.073682168166293,1.1130576717175744,1.1130576717175744,1.0841578947043615,1.0841578947043615,0.913537966415812,0.956946794604174,0.8908776310185876,1.1235101669745233,1.0707225419235868,0.8324776355399042,0.8775867412187631,0.8192464472248389,1.0696895293726156,1.0322872678695678,29.17269212564416,29.17269212564416,29.130735163552103,29.130735163552103,29.322724523157433,29.322724523157433,31.113717089633383,31.113717089633383,29.793995318170758,29.793995318170758,22.624109427010396,24.342425208448816,21.757173005685743,31.597969405600963,29.190277405475058,19.62007821747595,21.258429129864126,19.155617755718225,29.144121505469258,27.49871369513643,89.8773331592208,89.8773331592208,0.0,99.86370351024533,0.0,89.8773331592208,99.86370351024533,0,0
+2017/07/18 07:00:00,167.2748813308448,0,760.0432822363539,0,0,0,23.6618713486672,0.0,7.824510821768043,0.0,69.33401494192633,0,39.380909295966944,3.0136281066148735e-09,27.07357491950262,0,0,0.0,493.86563839227296,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6782.888311938317,3672.5614506989045,1048.3350049249193,198.21778475552895,2216.0744018958057,3385.081803863338,30698.644298006042,584.9054886266597,26.20524901821663,1849.4853275843795,3381.625590040896,30089.87280719271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04046526731538959,0.0012802928512408312,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9768929361377395,0.9768929361377395,0.9339441456225899,0.9339441456225899,1.0152523266720888,1.0152523266720888,1.2389216803872598,1.2389216803872598,1.1038258687282612,1.1038258687282612,0.7117534430272172,0.7350851059371077,0.6831703972879866,0.9118259154995575,0.7495099270963357,0.6831108536721123,0.7012159047228638,0.6614926339469659,0.9265069175974973,0.7424200398964046,25.156897732533622,25.156897732533622,23.422533755261895,23.422533755261895,26.76625471866471,26.76625471866471,37.17082028548906,37.17082028548906,30.689054133041466,30.689054133041466,15.657552672854337,16.37482831812953,14.810822674459914,22.557883512729845,16.829986341026384,14.809095625811167,15.341288845936305,14.1922040826327,23.129608103373812,16.60515803417836,167.2748813308448,167.2748813308448,0.0,185.86097925649423,0.0,167.2748813308448,185.86097925649423,0,0
+2017/07/18 08:00:00,204.5316095556982,0,810.7185546242445,0,0,0,45.14148041174188,0.0,11.198411640824625,0.0,83.2008179303116,0,39.380909295966944,2.9627123993311607e-09,25.60999027389047,0,0,0.0,491.3053820113473,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1910.1382440720038,203.8053325661171,2093.402547272008,7925.947738633682,21092.914164479327,6116.521165080072,3430.129932903318,5833.157350613695,7475.8688659962445,43953.17132126463,5619.061293048733,3077.140827742216,5448.123775879002,7657.169132975343,43735.98873435432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04316325635283298,0.0013656553437320451,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0665615086523403,1.0665615086523403,1.022480557305592,1.022480557305592,1.0706832714614323,1.0706832714614323,1.2111995589787379,1.2111995589787379,1.1171544236790805,1.1171544236790805,0.6659100283932432,0.6711325365834852,0.6319572721918721,0.7991292575735007,0.645572162576352,0.6607489208946519,0.6593310070538072,0.6270529491433885,0.8177516159645398,0.6461945124227042,29.004589048276713,29.004589048276713,27.075734237046376,27.075734237046376,29.188522077855495,29.188522077855495,35.796568156654274,35.796568156654274,31.303082691526882,31.303082691526882,14.316612820522536,14.464786426772733,13.382120420871644,18.46355404865443,13.750844998599064,14.171341748342272,14.131633403831628,13.251269236300047,19.103606348882934,13.767891888575065,204.5316095556982,204.5316095556982,0.0,227.25734395077578,0.0,204.5316095556982,227.25734395077578,0,0
+2017/07/18 09:00:00,253.60070558885567,0,835.6024881163072,0,0,0,75.87661682927184,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.858192070839457e-09,20.86965537371865,0,0,0.0,462.95378673459385,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8128.925138733606,3090.8425217305457,6248.647546487258,10092.151007516797,46532.208665746264,12470.127925839253,6786.714274965987,9936.441195333686,12580.994305953687,66512.64316615542,12548.61996273275,6662.372053288752,9872.111167792205,13224.828509577084,66982.01051931096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04448809540364582,0.001407572327810766,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1849584416326004,1.1849584416326004,1.1200898155981436,1.1200898155981436,1.1299342629274753,1.1299342629274753,1.2966399101318518,1.2966399101318518,1.1515343183491857,1.1515343183491857,0.7019386302003358,0.6807044921794092,0.6422488891715904,0.8464962206344789,0.6499649289779945,0.7128057767971165,0.6805564391676442,0.6460179883052267,0.8809436055795663,0.6556710276374507,34.515665810501275,34.515665810501275,31.439109613441275,31.439109613441275,31.897379443796993,31.897379443796993,40.09570044802679,40.09570044802679,32.913898057912704,32.913898057912704,15.362827034931584,14.739427994135312,13.660100942602242,20.120175115072016,13.871527054703918,15.68939941234207,14.735149825207088,13.763054980428493,21.383712961229662,14.029539178502617,253.60070558885567,253.60070558885567,0.0,281.7785617653952,0.0,253.60070558885567,281.7785617653952,0,0
+2017/07/18 10:00:00,279.8255542366288,0,920.7179420224932,0,0,0,71.24542035842956,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.8045689125258562e-09,18.610414992838717,0,0,0.0,459.3433593594194,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10933.227418420805,4220.831265161986,7652.173032597179,10487.809495942021,53407.755355833506,11725.932813226693,5791.672075362347,8231.652527189059,10611.16581237439,52572.47462450912,12234.012621520791,5842.342622892122,8413.858876716997,11295.071789130747,54022.380922736105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04901970521519532,0.0015509493034555832,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2210458931729191,1.2210458931729191,1.1259521255821148,1.1259521255821148,1.1324335085243544,1.1324335085243544,1.2870771647992973,1.2870771647992973,1.163708373506625,1.163708373506625,0.6960598502340322,0.6462329757838797,0.6145210918256271,0.8101394524217276,0.614465363758289,0.7166428216241034,0.652109021586684,0.62324440153644,0.8433768550670462,0.6263869057624983,36.28226087686513,36.28226087686513,31.71162316141755,31.71162316141755,32.014227132381734,32.014227132381734,39.60554883050485,39.60554883050485,33.4933354338731,33.4933354338731,15.188285791510282,13.768945996043286,12.921650073393565,18.840207109563593,12.920199506652295,15.805924002493683,13.930735313603051,13.150374081120674,20.008185785412948,13.233579161659094,279.8255542366288,279.8255542366288,0.0,310.9172824851431,0.0,279.8255542366288,310.9172824851431,0,0
+2017/07/18 11:00:00,320.1664374140283,0,977.5728997974207,0,0,0,92.04849960112533,0.0,16.693521233099577,0.0,147.76209134187457,0,39.380909295966944,2.858192070839458e-09,20.84944073664927,0,0,0.0,462.9627883655308,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14942.331114735549,6615.450084684024,10567.61838136703,10107.816761855063,68847.49327493609,15472.647899225609,8155.982404370956,11564.262779443206,11206.007288206001,69882.19849668947,16176.00363937844,8331.590803519826,11892.183462805884,11733.207369145788,71827.86769561014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05204670527997872,0.0016467214755122306,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2345798267873147,1.2345798267873147,1.12111760927961,1.12111760927961,1.1285059612499675,1.1285059612499675,1.2510126059640925,1.2510126059640925,1.1636547643200807,1.1636547643200807,0.6950073332766028,0.6300007547272006,0.6001868397168624,0.7644834613365561,0.5966823586845899,0.7234004789610334,0.6430648065057039,0.6149486216225234,0.7933175452261764,0.6127215336257373,36.954206270984066,36.954206270984066,31.486805352047128,31.486805352047128,31.83069324858471,31.83069324858471,37.776647480429155,37.776647480429155,33.49077374097479,33.49077374097479,15.157194026695265,13.329793889248506,12.552979858733934,17.31188621842996,12.464202878670605,16.012684494042063,13.682335718275297,12.932782889851765,18.26680629494207,12.874876794319633,320.1664374140283,320.1664374140283,0.0,355.74048601558695,0.0,320.1664374140283,355.74048601558695,0,0
+2017/07/18 12:00:00,303.53039031760244,0,938.4727024469381,0,0,0,96.00285544971977,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.8045689125258562e-09,18.58386178043586,0,0,0.0,459.3529435275923,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14397.281645517456,6302.463966434844,10203.565823117804,8830.430500432114,65051.92199613309,16714.518719909684,8775.250730596399,12848.481002094743,10612.068697171992,77201.92551647563,17554.895728694457,9047.335377555151,13310.40322643038,11026.407288630562,79460.02688159172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049964981811262174,0.0015808571960429971,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2200476450460096,1.2200476450460096,1.098087341541426,1.098087341541426,1.1097108237926505,1.1097108237926505,1.1916336367433713,1.1916336367433713,1.1419513155504004,1.1419513155504004,0.6938439123585636,0.6199752280140466,0.5924121994418982,0.7171060691234916,0.589992873752596,0.7279174956043373,0.6387372569911641,0.6122239179163927,0.7406310867028243,0.6106878481441419,36.23289719486724,36.23289719486724,30.426534073523257,30.426534073523257,30.9594308884255,30.9594308884255,34.83960119711031,34.83960119711031,32.461066878803976,32.461066878803976,15.122881794740493,13.064269908480071,12.356749844132906,15.820034962135267,12.296221831119666,16.151985200315607,13.564734066574886,12.861967803444756,16.54876887333978,12.82218735033318,303.53039031760244,303.53039031760244,0.0,337.25598924178047,0.0,303.53039031760244,337.25598924178047,0,0
+2017/07/18 13:00:00,301.6639600839664,0,884.2448885825877,0,0,0,96.63128598636375,0.0,16.630907756533322,0.0,129.2730206906943,0,39.380909295966944,2.750024733295586e-09,16.315861149203755,0,0,0.0,440.6154821757861,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15002.551992819104,7597.981707228037,11175.490405044726,8348.212839213482,69030.83412612877,16323.07829148517,9035.244023939471,12591.967243277442,10045.631629263899,72960.73888337224,17204.272907352886,9413.853133305294,13144.636763034187,10414.29681359428,75540.55825969807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047077852834220904,0.00148951044770432,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2158531240848869,1.2158531240848869,1.132857619859883,1.132857619859883,1.116138835405937,1.116138835405937,1.1765412179516255,1.1765412179516255,1.1391778249423512,1.1391778249423512,0.6909071048758653,0.6351014127948488,0.5899367687646185,0.6989968471444495,0.5788318767581961,0.7264812008992667,0.6635311436318568,0.6128411304618396,0.7213781099722676,0.6016445411904032,36.025778704012644,36.025778704012644,32.034075856232064,32.034075856232064,31.256086663489057,31.256086663489057,34.109082537498765,34.109082537498765,32.33055626442574,32.33055626442574,15.036528012840705,13.466557476040052,12.294821179524448,15.275298846861702,12.02027867917181,16.10759600104531,14.249510369878678,12.877980939783683,15.950600986949638,12.590063931230375,301.6639600839664,301.6639600839664,0.0,335.18217787107375,0.0,301.6639600839664,335.18217787107375,0,0
+2017/07/18 14:00:00,278.1170882561376,0,848.5973844830286,0,0,0,89.06643995740185,0.0,16.630907673226492,0.0,115.5196477718057,0,39.380909295966944,2.6945502644950255e-09,14.087208352587748,0,0,0.0,440.4583305887711,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13543.034366026915,8461.271735482453,10813.52133392083,7932.611566821986,65993.05752465018,13783.800951989437,9096.617852238205,10755.999540660352,9088.919973297003,61613.3220488105,14459.940536947934,9550.687786573528,11237.248888959659,9374.855248856255,64223.900255816734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04517995331161645,0.0014294622297542127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.177435504887535,1.177435504887535,1.1993244609519027,1.1993244609519027,1.1120701192358133,1.1120701192358133,1.1630168590718306,1.1630168590718306,1.1308815196973132,1.1308815196973132,0.6575795025851388,0.6666806839461994,0.5764089704054841,0.6794590292414096,0.560097511802893,0.6840216231389539,0.6986928142823907,0.595809152267906,0.6967065784961443,0.5803089149964337,34.152178960846825,34.152178960846825,35.21444289046467,35.21444289046467,31.068152920513583,31.068152920513583,33.46029851700142,33.46029851700142,31.941642774629727,31.941642774629727,14.082703193969849,14.338403667451132,11.96108910487473,14.70346841480037,11.569242194453238,14.835529044723614,15.266274122117451,12.442165400909275,15.207414130590038,12.05648645625267,278.1170882561376,278.1170882561376,0.0,309.018986951264,0.0,278.1170882561376,309.018986951264,0,0
+2017/07/18 15:00:00,263.0118988426753,0,837.086481946793,0,0,0,80.69283882466846,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.694550264495026e-09,14.118876461806472,0,0,0.0,428.9474280525355,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12104.130861652293,9627.792406841223,10467.759128750042,7574.896827429912,63929.39111679864,11196.136662420904,8990.778693481792,8974.504367827862,8025.615441230075,52053.26977756149,11652.063650112743,9516.620632241884,9362.712865302974,8240.392471712665,54363.2066165944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044567104334385016,0.0014100721153055863,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1431066617790573,1.1431066617790573,1.2472030503394873,1.2472030503394873,1.1080729867162242,1.1080729867162242,1.1528006837878866,1.1528006837878866,1.1283481175607375,1.1283481175607375,0.6179637318404738,0.6909219519933174,0.5586558013569302,0.6572792640138871,0.5401863814039177,0.6357365620712377,0.7271918822760753,0.574103208654269,0.6698900046931717,0.5571172993845387,32.5155061093414,32.5155061093414,37.585355332040045,37.585355332040045,30.88406531785681,30.88406531785681,32.97395594782324,32.97395594782324,31.823327750522537,31.823327750522537,13.01152117399468,15.036963639685823,11.535163330276006,14.074329044424289,11.106558170202092,13.483666708319163,16.129548772896115,11.90499780435485,14.429426106833503,11.498895937332364,263.0118988426753,263.0118988426753,0.0,292.2354431585281,0.0,263.0118988426753,292.2354431585281,0,0
+2017/07/18 16:00:00,297.33992159425065,0,888.3994916486064,0,0,0,92.20580345762932,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.694550264495026e-09,14.049456405438892,0,0,0.0,427.0249089855327,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12984.444595379931,12047.866285829587,12079.699608628973,8309.122167415493,72560.96687557358,11683.649574420178,11123.14126524983,10171.44655018136,8891.237604981188,57847.017458922695,11946.38785587965,11695.505118162135,10472.953813473481,9025.010224584383,60223.33696893638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047299046978797936,0.0014965088762536997,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1494218091836912,1.1494218091836912,1.3345586649575805,1.3345586649575805,1.1337968558134184,1.1337968558134184,1.1668337446341028,1.1668337446341028,1.1545196729621043,1.1545196729621043,0.6060015489404387,0.746954330646249,0.5640116926076361,0.6574574048882782,0.5396404122230882,0.6199510854647725,0.7902541682503449,0.5797164820806406,0.6681653673435599,0.557295130480843,32.81382404644164,32.81382404644164,42.05899476477463,42.05899476477463,32.07805358236361,32.07805358236361,33.64283317557269,33.64283317557269,33.055560415950296,33.055560415950296,12.701456429762345,16.74869714842154,11.662219384769358,14.079297216325429,11.09411326339523,13.063635762108646,18.16367593898417,12.041952321661412,14.380456674808244,11.503082736799115,297.33992159425065,297.33992159425065,0.0,330.3776906602785,0.0,297.33992159425065,330.3776906602785,0,0
+2017/07/18 17:00:00,308.2677393037515,0,920.7823885346868,0,0,0,96.17433523671377,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,2.8045689125258562e-09,18.586933857245402,0,0,0.0,459.407805871613,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12748.628175529455,12684.949854645947,12868.06084427209,8193.237670107572,73609.7378068363,12647.541441753929,11941.926271114608,12079.624054426207,8982.523156173744,64065.88860323718,12814.119016302426,12536.176454542649,12411.034487066629,9074.045069340085,66272.99262463671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04902313639524047,0.001551057863600482,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.142280026610432,1.142280026610432,1.350980912513815,1.350980912513815,1.1646052655322887,1.1646052655322887,1.1590996042099058,1.1590996042099058,1.1616813351437105,1.1616813351437105,0.5988341361276842,0.7692346677519454,0.5861802754666542,0.6467425734438514,0.5476385114933421,0.6089685998741565,0.8116076535910277,0.6059211101231494,0.6536674259604183,0.5643921927243966,32.47655120206534,32.47655120206534,42.91835066957891,42.91835066957891,33.5362062093743,33.5362062093743,33.273432388663835,33.273432388663835,33.39653609396133,33.39653609396133,12.518649441210925,17.466798860849792,12.201351723618288,13.782917827170351,11.277714509210995,12.777784470649976,18.890820327555915,12.699392443009998,13.973895080199313,11.671293194756814,308.2677393037515,308.2677393037515,0.0,342.5197103375017,0.0,308.2677393037515,342.5197103375017,0,0
+2017/07/18 18:00:00,295.9059599265194,0,917.2092555412077,0,0,0,99.51183946567723,0.0,17.03716081602578,0.0,110.93442390708215,0,39.380909295966944,2.9627123993311636e-09,25.609651236350402,0,0,0.0,491.325025390678,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12052.524185711432,12150.770843612525,13574.66037308755,7785.301632809073,72204.15777502673,13773.932553244693,12592.182232461531,14311.21819531984,9203.864789485264,72992.53962679696,13890.91858441417,13168.752863898386,14773.231358709658,9258.754686871107,74827.92666318855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0488329001480242,0.0015450389213441623,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1272518758293035,1.1272518758293035,1.3317772883114218,1.3317772883114218,1.1924930407348782,1.1924930407348782,1.1443495897575626,1.1443495897575626,1.15726487277856,1.15726487277856,0.5988899453572705,0.7805191761049177,0.6235450491185567,0.6412972544106911,0.5651476492213053,0.606964401892113,0.8184573520453485,0.6444703556782924,0.6439640463948814,0.5801824634052962,31.772196047964513,31.772196047964513,41.913968259563255,41.913968259563255,34.88140189400184,34.88140189400184,32.5741197793086,32.5741197793086,33.18607366429893,33.18607366429893,12.520064259305656,17.83858670535143,13.158315885767067,13.634204168605265,11.689327223069867,12.726184158166177,19.128150132161522,13.720706404938454,13.70687458020329,12.053382945710055,295.9059599265194,295.9059599265194,0.0,328.7843999183549,0.0,295.9059599265194,328.7843999183549,0,0
+2017/07/18 19:00:00,284.26307131454644,0,884.2916542543788,0,0,0,94.9258275954176,0.0,17.736728160890816,0.0,101.68988858149199,0,39.380909295966944,3.013628106816517e-09,27.0977424753112,0,0,0.0,493.8977766163935,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10967.219304890898,10912.14048585286,13178.543770538543,7216.366331359908,66618.84041490682,13235.130368559236,11870.832932153682,14410.794360648899,8745.793094572018,72801.83337377882,13253.115778216923,12300.53047826267,14884.739088189142,8727.78417748511,74200.49474967095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04708034267322671,0.0014895892244749026,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1152241198399253,1.1152241198399253,1.2808002824202414,1.2808002824202414,1.1891618963735853,1.1891618963735853,1.1279005342529125,1.1279005342529125,1.1455821686927328,1.1455821686927328,0.5959469344371148,0.7560611948510114,0.6367574669378722,0.6328512422592263,0.5729197364987393,0.5962623927308649,0.7810711483349494,0.6541384570642071,0.6274679148459151,0.5834210440054414,31.213787876006776,31.213787876006776,39.284971114476335,39.284971114476335,34.71949870447574,34.71949870447574,31.80244649425005,31.80244649425005,32.63229408159708,32.63229408159708,12.44564046863725,17.03964860405152,13.511203838499796,13.406084684568611,11.876297550172112,12.453599890633939,17.85691148532048,13.98696092969709,13.262300433633683,12.133086334323295,284.26307131454644,284.26307131454644,0.0,315.8478570161627,0.0,284.26307131454644,315.8478570161627,0,0
+2017/07/18 20:00:00,279.58851297401253,0,843.178476488089,0,0,0,88.31988777911248,0.0,22.563876192355718,0.0,106.16168237671882,0,39.380909295966944,2.910903476890018e-09,23.162157326947657,0,0,0.0,488.27495136264764,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8710.486564195155,6870.642654039079,9261.919727068967,6518.0516960117675,56976.786009285,13256.100738796542,10680.711654582183,13398.274618544472,8583.059325054779,75846.16666441048,13224.900697646726,11127.964776967163,13606.391191023893,8516.87158643412,76954.11009839388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04489144663614459,0.001420334079648025,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1087568858041634,1.1087568858041634,1.1631393090240145,1.1631393090240145,1.1089868805623186,1.1089868805623186,1.1090722576137324,1.1090722576137324,1.1391218967239334,1.1391218967239334,0.6115147219430187,0.698465573573022,0.6128334120112572,0.6402433239985357,0.5949937500203067,0.6084856915267891,0.7155995649219709,0.6152624017250536,0.633163837121913,0.6015170318501201,30.91552417169538,30.91552417169538,33.4661474537166,33.4661474537166,30.92610729665968,30.92610729665968,30.930036343271368,30.930036343271368,32.32792702240691,32.32792702240691,12.84358863575315,15.259531454746664,12.877780588042086,13.605569464028775,12.421616630209485,12.765335514538393,15.774179262580247,12.940958727492003,13.414472459066104,12.586816400056122,279.58851297401253,279.58851297401253,0.0,310.65390330445837,0.0,279.58851297401253,310.65390330445837,0,0
+2017/07/18 21:00:00,265.0174842004749,0,806.2540991080313,0,0,0,70.99772918568144,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.962712399331163e-09,25.55579276366542,0,0,0.0,486.840926495134,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6740.386144867402,4993.467076518596,7232.18751869813,5694.358560975286,47371.46740394486,10237.935737297157,8335.345669142593,10104.447545298974,6638.788051746003,59316.244743090814,10059.464608317456,8440.716056923493,10144.603887952926,6462.897104078019,59912.95742917366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04292556543429782,0.0013581349687538302,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0915675033369003,1.0915675033369003,1.1355555684805692,1.1355555684805692,1.0904450941312624,1.0904450941312624,1.0869481271438,1.0869481271438,1.1235620297702416,1.1235620297702416,0.6034634551936027,0.6798417435318596,0.5948678738005113,0.6282007253465753,0.5902447137421314,0.595294016581108,0.6789795644381181,0.5925295128638349,0.615994861120736,0.5921983656124079,30.12963546693014,30.12963546693014,32.160478476145244,32.160478476145244,30.078670755796153,30.078670755796153,29.92016424074295,29.92016424074295,31.600381167471966,31.600381167471966,12.636466620635005,14.71451117615031,12.418447022718567,13.281799271763589,12.302510656952705,12.429180224494715,14.68964297541956,12.359691312823088,12.960060279069396,12.351389798836522,265.0174842004749,265.0174842004749,0.0,294.463871333861,0.0,265.0174842004749,294.463871333861,0,0
+2017/07/18 22:00:00,188.07391334357646,0,627.7556778912368,0,0,0,51.4474168245522,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.858192070839457e-09,20.8735389108441,0,0,0.0,468.0490915847883,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3216.9699159441943,2542.231846136986,3778.9731193675498,3969.0347678774847,26501.62236102535,7747.348068037936,6559.657501874295,7633.059388488421,5042.049346055396,45893.22970397422,7393.068794502204,6461.001671969855,7496.418703243406,4740.137014946984,45998.248231373014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0334221772737451,0.0010574543917619404,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0536237830588124,1.0536237830588124,1.0906436781804723,1.0906436781804723,1.0490844214156603,1.0490844214156603,1.0356534941617528,1.0356534941617528,1.060586729260417,1.060586729260417,0.5974756446266402,0.6639885495720507,0.5866537019626399,0.620025675703486,0.5839036324436543,0.5838219793182411,0.6534635512917245,0.5781260738366559,0.602569432066968,0.5812425161860174,28.43117326198883,28.43117326198883,30.087684609624304,30.087684609624304,28.23140667433465,28.23140667433465,27.64472232439782,27.64472232439782,28.73903626582991,28.73903626582991,12.484252057728668,14.262393625493473,12.213097845326672,13.065595087108818,12.145002084237234,12.142985249744953,13.968242818224084,12.003010212426204,12.613641068922675,12.079421369174725,188.07391334357646,188.07391334357646,0.0,208.97101482619607,0.0,188.07391334357646,208.97101482619607,0,0
+2017/07/18 23:00:00,116.57900289890058,0,472.511560141047,0,0,0,29.212971636728046,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6381362374705466e-09,11.85505020069614,0,0,0.0,419.2760313722308,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,81.41501504729526,379.67756077402254,2428.1692486396387,6087.204009591309,4818.549626345681,4475.719733635408,4849.942243498143,3123.2293180673587,30255.836368905417,4326.697565510621,4238.7405823580675,4573.287890393965,2717.352550526515,30010.088644862928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025156865454372016,0.0007959456871945744,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.009536998540496,1.009536998540496,1.0514315145114603,1.0514315145114603,1.013685800505046,1.013685800505046,0.988892364969813,0.988892364969813,1.0121751255865972,1.0121751255865972,0.5885535017331237,0.6460296567394161,0.5774838730973624,0.6083270088799337,0.5755050999669116,0.5711449865635867,0.6318229704844683,0.5648373926073504,0.5871578206355617,0.5703790151806484,26.522933903563228,26.522933903563228,28.334603864937918,28.334603864937918,26.699440561320387,26.699440561320387,25.654300321157407,25.654300321157407,26.635095608968427,26.635095608968427,12.26033135380203,13.763374663560924,11.98731664369302,12.761247023571798,11.939073539422452,11.833372165677417,13.378523249394405,11.681917875872259,12.225616159300387,11.81488804105041,116.57900289890058,116.57900289890058,0.0,129.53222544322287,0.0,116.57900289890058,129.53222544322287,0,0
+2017/07/19 00:00:00,47.890599085505606,0,446.9024619928328,0,0,0,0.35496574422184435,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,8.185781621821345,2.580773383568525e-09,9.552530720458453,0,0,0.0,393.66693322401653,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1403.236760406575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.023793418100131365,0.0007528071633076052,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0011369274227617,1.0011369274227617,1.0327750019097333,1.0327750019097333,1.0000259101509428,1.0000259101509428,0.9540154588438937,0.9540154588438937,0.9990807610939147,0.9990807610939147,0.7906950586522625,0.9244441590190038,0.7740016209450902,0.8281278729039887,0.7723965212338836,0.7467350898519384,0.8889162856675281,0.7391354795601258,0.7756364525315601,0.7619776950414695,26.16754592745818,26.16754592745818,27.51984314710505,27.51984314710505,26.120741066251412,26.120741066251412,24.224038211123982,24.224038211123982,26.080960740426903,26.080960740426903,18.178494246511406,23.048755171041392,17.623192652197872,19.466576078872436,17.570424501536962,16.741736505057432,21.683118300493163,16.501731595177233,17.677051091627177,17.230574139510665,47.890599085505606,47.890599085505606,0.0,53.211776761672894,0.0,47.890599085505606,53.211776761672894,0,0
+2017/07/19 01:00:00,23.722080578155143,0,50.66864016075518,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249851544773516,0,0,0.0,15.178287648211043,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002697635932758164,8.535132050510754e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0747295331111892,1.0747295331111892,1.142200804909106,1.142200804909106,1.0689470040014664,1.0689470040014664,1.0406542622932209,1.0406542622932209,1.0862495750398502,1.0862495750398502,0.8090951089924527,0.9727575222861654,0.7883096152015464,0.852067548689596,0.8316442950870404,0.7727756621447147,0.9525742028349785,0.7651687704076666,0.8069856787326629,0.8170928487432427,29.369669346736387,29.369669346736387,32.47281905375202,32.47281905375202,29.11096812425893,29.11096812425893,27.862395505179336,27.862395505179336,29.888551737199748,29.888551737199748,18.804260860574757,24.98676261932991,18.098418020227214,20.321201068112714,19.59060843700459,17.582878971718955,24.165954447556842,17.33417118710352,18.731794760985906,19.080714942057526,23.722080578155143,23.722080578155143,0.0,26.35786730906127,0.0,23.722080578155143,26.35786730906127,0,0
+2017/07/19 02:00:00,28.344412608406227,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250495219333309,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.108238251618823,1.108238251618823,1.1867455391721728,1.1867455391721728,1.1004761677680253,1.1004761677680253,1.0792900627505833,1.0792900627505833,1.1473557364583924,1.1473557364583924,0.8215720475675246,0.9908542899330681,0.7991394312181412,0.8655802587253618,0.8561130372627709,0.7821187146794473,0.9721791641041123,0.7731419312632253,0.8179976861149486,0.8385630705030884,30.89166593926268,30.89166593926268,34.60226138411535,34.60226138411535,30.535679531089897,30.535679531089897,29.57452937641959,29.57452937641959,32.716086403892604,32.716086403892604,19.236721918861093,25.736152135849565,18.463899717974783,20.814121940163147,20.46797983497909,17.891724997512583,24.9630211852556,17.594916432290518,19.11216169008317,19.836160962410673,28.344412608406227,28.344412608406227,0.0,31.493791787118028,0.0,28.344412608406227,31.493791787118028,0,0
+2017/07/19 03:00:00,23.722211219004528,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251157953267322,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1081758601208502,1.1081758601208502,1.1889537822947027,1.1889537822947027,1.0989195958201452,1.0989195958201452,1.0839564079396493,1.0839564079396493,1.1414556087452465,1.1414556087452465,0.8372253359884941,1.010834952132945,0.8143057501088331,0.8819365928797792,0.8770268682170776,0.7935355709305453,0.9905970776842894,0.7842926064917144,0.8302512738744432,0.8586991936017961,30.88879641281538,30.88879641281538,34.70939459705778,34.70939459705778,30.464537696031442,30.464537696031442,29.784894934084377,29.784894934084377,32.437722567524574,32.437722567524574,19.788527655377663,26.578084582487804,18.984068626735578,21.4208615560282,21.237578761187606,18.274161425944868,25.725412816232037,17.964118286768425,19.54141137268192,20.562166805025072,23.722211219004528,23.722211219004528,0.0,26.358012465560584,0.0,23.722211219004528,26.358012465560584,0,0
+2017/07/19 04:00:00,62.231968309055034,0,88.72588128136032,0,0,0,13.00114896912552,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,9.197637693792172,0.0,0.5250480965032079,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,985.5619831051346,0.0,2544.6741849811433,2239.194555431838,2394.9681283585032,1707.6701545320748,15098.927094087376,2240.956352946425,2087.7559153190878,2204.206286745343,737.8658992457008,13366.061114501106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0356343858495494,1.0356343858495494,1.0666989506490239,1.0666989506490239,1.0321990123566045,1.0321990123566045,1.0059550440181801,1.0059550440181801,1.0431847052479182,1.0431847052479182,0.5820615979333693,0.6578657758695585,0.5695404264955674,0.6097862026749717,0.5768021156182123,0.5571060612124473,0.6416852570633024,0.5502396284806989,0.6166759266117543,0.5756572403566644,27.643892335109157,27.643892335109157,29.01071267827278,29.01071267827278,27.494891254532646,27.494891254532646,26.371063833737765,26.371063833737765,27.972888544697142,27.972888544697142,12.099574135806648,14.090691466407222,11.794680729196315,12.798884631911562,11.970676001702074,11.498631395404658,13.644758117189113,11.338022146987399,12.977842436604817,11.942776740718955,62.231968309055034,62.231968309055034,0.0,69.1466314545056,0.0,62.231968309055034,69.1466314545056,0,0
+2017/07/19 05:00:00,85.04731460666743,0,212.9421150752648,0,0,0,7.928485095081038,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,3.755201525241322,0.0,0.5775849563891862,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,3120.6877560026323,2221.860990081237,22310.688591450074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.044794566432108,1.044794566432108,1.0637228443961657,1.0637228443961657,1.0369726847676133,1.0369726847676133,1.0274563870350748,1.0274563870350748,1.0450425870852216,1.0450425870852216,0.7981715379670766,0.9169171109046792,0.7815251922694283,0.8331713734664244,0.7989651504938093,0.750604506308082,0.8703161133921462,0.744164188359242,0.8074914118294126,0.7935480142631661,28.043305273965004,28.043305273965004,28.8782644036108,28.8782644036108,27.702055098470183,27.702055098470183,27.289905406917143,27.289905406917143,28.054162289430238,28.054162289430238,18.431033285713454,22.755169009045403,17.871994884165886,19.644633351552713,18.457978797431053,16.86488863590472,20.988665569554087,16.660267082726506,18.74915129251663,18.274581264492866,85.04731460666743,85.04731460666743,0.0,94.49701622963047,0.0,85.04731460666743,94.49701622963047,0,0
+2017/07/19 06:00:00,98.2540610301153,0,631.5249185992924,0,0,0,10.639514151666754,0.0,10.413824884255693,0.0,73.80580873715317,0,2.8700487326531077,2.5224671996064823e-09,0.5248645218640683,0,0,0.0,400.8376272677555,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3786.1511034965033,2167.0581595673057,3715.4604428599964,2638.9258296242406,25628.981457845337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0336228544409437,0.0010638036774485795,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0438399949341,1.0438399949341,1.0589489614740768,1.0589489614740768,1.0402633354085657,1.0402633354085657,1.0425257540917108,1.0425257540917108,1.0470800112287317,1.0470800112287317,0.9604660220772685,1.0935675726712575,0.9416151556059701,0.9959919988229576,1.0199703390680157,0.9142355401826487,1.0580007296989682,0.906687051299313,0.9718972487416411,1.0099717597324958,28.001540110444907,28.001540110444907,28.666466962914384,28.666466962914384,27.84534631432612,27.84534631432612,27.944092648128347,27.944092648128347,28.143434331586633,28.143434331586633,24.48500041154817,30.220559100318084,23.72697557682156,25.951194608483235,26.968037537475396,22.651127023884357,28.624494785212363,22.35981195540215,24.95145334580549,26.54140006460169,98.2540610301153,98.2540610301153,0.0,109.17117892235032,0.0,98.2540610301153,109.17117892235032,0,0
+2017/07/19 07:00:00,193.82875977291064,0,759.9166315860765,0,0,0,49.236890025479624,0.0,8.814760760654858,0.0,69.33401494192633,0,39.380909295966944,3.0136462529382505e-09,27.06218474586923,0,0,0.0,493.7389877419956,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1462.9866862963693,753.0122426468781,2315.5676509566474,3798.867396191042,22626.904909579942,6601.618934446542,4310.873959634023,6976.431853354606,3728.190942303634,52837.13593150983,6397.984670531371,4264.560320303815,6893.562405975788,3574.0153474116155,52910.56303720263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04045852434095784,0.0012800795082300517,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0876460532972139,1.0876460532972139,1.1041103606789298,1.1041103606789298,1.0831283342768696,1.0831283342768696,1.058186330794807,1.058186330794807,1.0906901277610315,1.0906901277610315,0.738034498920404,0.8241051382713448,0.7150525048106979,0.7727180634622773,0.745797784907124,0.7264664956324456,0.818808212886562,0.7088930879907086,0.761959326120945,0.7478144957038189,29.951765286326392,29.951765286326392,30.70209785186897,30.70209785186897,29.747508839006073,29.747508839006073,28.6327076286902,28.6327076286902,30.089793181137182,30.089793181137182,16.467166784750077,19.325320837403268,15.757551782813607,17.58098650720636,16.712001382126616,16.107141988392655,19.140360017232695,15.571231082570435,17.229979058661982,16.776026296588498,193.82875977291064,193.82875977291064,0.0,215.36528863656739,0.0,193.82875977291064,215.36528863656739,0,0
+2017/07/19 08:00:00,218.95441200102312,0,810.5913222174107,0,0,0,58.52245319626712,0.0,12.240184620570231,0.0,83.2008179303116,0,39.380909295966944,2.9627304254286304e-09,25.610046954944494,0,0,0.0,491.1781496045135,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2661.805552763087,1555.727993071342,3605.156998383008,4408.1691600679205,32204.75306864592,8424.431601259359,6443.506112795416,8534.434667829777,5201.77873057467,58563.219813584365,7971.051911524798,6155.521634805771,8310.535685766745,4793.835461043324,58169.96046677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04315648240525125,0.0013654410207523903,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.121642811548392,1.121642811548392,1.1402784114594873,1.1402784114594873,1.1163574597889052,1.1163574597889052,1.078578537037706,1.078578537037706,1.131030218458755,1.131030218458755,0.674603903403595,0.7268201791083441,0.655137681675461,0.7013102133347459,0.6607231013491827,0.6635736322965012,0.7161692728196878,0.6467496208309375,0.6896533121214824,0.6603967454063777,31.51119134293357,31.51119134293357,32.38231640633856,32.38231640633856,31.266200539675225,31.266200539675225,29.542519525082156,29.542519525082156,31.94859381281026,31.94859381281026,14.563929738421265,16.118064244395725,14.014710082775125,15.344098090106385,14.170617899407418,14.250706720074803,15.791508810073537,13.783111126971662,14.999775054200242,14.161471025826884,218.95441200102312,218.95441200102312,0.0,243.28268000113678,0.0,218.95441200102312,243.28268000113678,0,0
+2017/07/19 09:00:00,261.9706813698033,0,835.4441037002431,0,0,0,84.07967718681488,0.0,11.36563784648343,0.0,106.27511244621549,0,39.380909295966944,2.8582098201380327e-09,20.8693445914643,0,0,0.0,462.79540231852974,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8084.190252165638,5060.976849325024,7950.540030415317,6339.021873578877,55257.232851554734,13238.964152213084,9401.526904128994,12210.153106988611,9039.059875814002,76760.54302676246,12996.15388073702,9189.517537832842,12054.205530734047,8909.13043601844,76603.78321303085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044479662900018174,0.0014073055292739272,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1633760942960905,1.1633760942960905,1.1692157943456805,1.1692157943456805,1.1460278200051457,1.1460278200051457,1.14569553273173,1.14569553273173,1.1555847407887778,1.1555847407887778,0.6803881266632268,0.7157948596711747,0.6550674768469242,0.7186480083575382,0.6532132394467991,0.6793401281070808,0.7111661586604282,0.6537164247813562,0.7206216619467528,0.6540425580025898,33.477459039026826,33.477459039026826,33.756976772022156,33.756976772022156,32.653339496781854,32.653339496781854,32.637646979794,32.637646979794,33.10616823003721,33.10616823003721,14.730287385685997,15.78011822237626,14.012759033180586,15.867070484182051,13.961305586490496,14.700038955433143,15.639800460249575,13.97525380179951,15.927424477076286,13.984300022780232,261.9706813698033,261.9706813698033,0.0,291.07853485533695,0.0,261.9706813698033,291.07853485533695,0,0
+2017/07/19 10:00:00,301.23462884261875,0,920.5584864345384,0,0,0,89.21576827364817,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.8045865047691887e-09,18.617166481155717,0,0,0.0,459.1839037714646,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14967.510166066844,8229.327701366741,12068.990404695565,9644.657003612285,76474.08491992863,13564.173398591334,8979.466919134296,10926.015471037637,10322.88292447355,64181.185545375265,13819.827091215684,8959.798774211533,11010.975253610486,10625.199470582966,65472.72247703651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04901121568158279,0.001550680700529776,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.246361696383999,1.246361696383999,1.193199708119494,1.193199708119494,1.1741275182752209,1.1741275182752209,1.2734938134845486,1.2734938134845486,1.187869227645366,1.187869227645366,0.7005912933670327,0.6989276337231564,0.6410397610911093,0.7608418506643377,0.6221331721927486,0.7189124022541075,0.7029931572681867,0.6480015886542484,0.7836021262466122,0.6318143386200779,37.54315841597883,37.54315841597883,34.91578981751539,34.91578981751539,33.99288499569609,33.99288499569609,38.912986647065246,38.912986647065246,34.65675927333352,34.65675927333352,15.322692751805377,15.273244007314773,13.627203770982632,17.19380436313402,13.121054263077554,15.875145875178248,15.394293800337252,13.817484993658283,17.941102668925524,13.378292078080676,301.23462884261875,301.23462884261875,0.0,334.70514315846526,0.0,301.23462884261875,334.70514315846526,0,0
+2017/07/19 11:00:00,333.13802688922476,0,977.4203580149017,0,0,0,105.01279847139736,0.0,16.693521233099577,0.0,147.76209134187457,0,39.380909295966944,2.858209820138034e-09,20.856731341573678,0,0,0.0,462.8102465830117,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18242.899168358315,9461.39739976923,13872.666215547222,10724.191209180695,85513.97687544003,17072.34581504132,10362.145849162112,13646.311028080681,11504.19720612196,76891.4439661708,17616.21451446356,10435.260286919505,13862.340258781722,11879.912535796419,79174.14148209407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05203858384248868,0.0016464645188911547,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2718694687499321,1.2718694687499321,1.194030559840752,1.194030559840752,1.1759500973413717,1.1759500973413717,1.2502118044307102,1.2502118044307102,1.199031450401725,1.199031450401725,0.7087552956322565,0.6821708779224739,0.6290085769475717,0.7347870831793838,0.6105002654836907,0.7330683423518247,0.6931352209195119,0.640901866509344,0.7566507312055389,0.6260637227324314,38.83046314001963,38.83046314001963,34.95623949241204,34.95623949241204,34.08060920001428,34.08060920001428,37.736405137693026,37.736405137693026,35.200130419681486,35.200130419681486,15.567081604552854,14.781852165497355,13.303321826088023,16.365518716901818,12.817336434061062,16.311903336533405,15.10200934515126,13.623456052485011,17.058605805013997,13.2250023743823,333.13802688922476,333.13802688922476,0.0,370.1533632102497,0.0,333.13802688922476,370.1533632102497,0,0
+2017/07/19 12:00:00,327.60036988009244,0,938.3194099083148,0,0,0,119.91119038649157,0.0,16.798297433460366,0.0,129.49988082968767,0,39.380909295966944,2.8045865047691887e-09,18.57811672922695,0,0,0.0,459.19965098896904,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18598.629229920018,9838.615765469625,14587.237412309465,9884.686925989918,87451.96857110782,20417.037965797765,12119.462232571665,17105.40753235401,12330.404416784146,90190.52213647215,20923.597671377614,12194.004166858844,17327.107148501374,12548.62338055456,93168.60744418223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049956820402961066,0.0015805989747733208,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2637956104520407,1.2637956104520407,1.187980386299527,1.187980386299527,1.172891787371349,1.172891787371349,1.200798406327654,1.200798406327654,1.1906672748768135,1.1906672748768135,0.7176823858800673,0.6838301016996907,0.6364629076704466,0.7060470165545922,0.6117104518768455,0.7447992198899787,0.6968059015182424,0.6525523478499353,0.7236844613376365,0.6308909870842709,38.42123478605976,38.42123478605976,34.66215239856702,34.66215239856702,33.933464188329154,33.933464188329154,35.28647721036917,35.28647721036917,34.79262404107568,34.79262404107568,15.837603021975355,14.829967506522664,13.503253975206292,15.485690722843444,12.848658893847983,16.68036427508163,15.210353416498506,13.943002451989017,16.021416394623955,13.353582322492656,327.60036988009244,327.60036988009244,0.0,364.0004109778805,0.0,327.60036988009244,364.0004109778805,0,0
+2017/07/19 13:00:00,322.8841807850436,0,878.6297001626016,0,0,0,117.68031458184323,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,2.7500421557290848e-09,16.319663661181146,0,0,0.0,435.0002937557998,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17516.105024374257,9873.11776608266,14103.113138650098,9374.697012198838,82998.76772528578,19566.644302911674,12093.340141924742,16455.98402476038,11771.58295068287,85037.26927842938,19958.029930453813,12167.51434651574,16647.588180447852,11898.037182683624,88327.57409543444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04677889604353335,0.001480051663237039,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.245852466351717,1.245852466351717,1.1967524092858552,1.1967524092858552,1.1631548911488578,1.1631548911488578,1.1851116177295513,1.1851116177295513,1.1778923157882293,1.1778923157882293,0.7109523497006721,0.6893188443712406,0.6319430262563253,0.6912600120511981,0.6021637167940892,0.7367505439628703,0.7056804866093,0.6493134617407832,0.7076993233538189,0.6216458137995778,37.51762764327288,37.51762764327288,35.0888926208215,35.0888926208215,33.466891781764076,33.466891781764076,34.523084395032186,34.523084395032186,34.17420235739978,34.17420235739978,15.633341214659637,14.989982138360247,13.381738816970653,15.046885182300727,12.603294083392413,16.42692330387264,15.474699843773621,13.85357652230546,15.535309244641809,13.108212201400292,322.8841807850436,322.8841807850436,0.0,358.7602008722707,0.0,322.8841807850436,358.7602008722707,0,0
+2017/07/19 14:00:00,297.7931060891973,0,847.3580779012199,0,0,0,108.81802268184214,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.694567504126051e-09,14.074256854466677,0,0,0.0,439.21902400696234,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16055.586705593445,10469.632570821526,13817.947777514199,9163.292351093203,78078.08292120216,16809.006505570815,12126.755890668002,14358.706280896396,11063.564337110807,72836.95321536,17016.249360925103,12224.169881588798,14442.728437928521,11093.378286388574,76210.76085448699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0451139717112383,0.0014273746179112173,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.214831479701372,1.214831479701372,1.2432046561086247,1.2432046561086247,1.1641286175100152,1.1641286175100152,1.1853094507143556,1.1853094507143556,1.1630100593812889,1.1630100593812889,0.693802916810304,0.7242828422821107,0.6309011962358881,0.6908517778302609,0.5863507223352309,0.7143926473372837,0.7466492418182292,0.648152179429313,0.7050612436012098,0.6023875070014207,35.975405793722615,35.975405793722615,37.384985946045425,37.384985946045425,33.513419695241026,33.513419695241026,34.53266682173327,34.53266682173327,33.45997373699902,33.45997373699902,15.121673798578641,16.03982679387184,13.353855326772617,15.034904754932867,12.205579537640219,15.737513069112936,16.73901148988925,13.821624173149218,15.45614420067804,12.609000537502354,297.7931060891973,297.7931060891973,0.0,330.88122898799696,0.0,297.7931060891973,330.88122898799696,0,0
+2017/07/19 15:00:00,283.91382683902907,0,843.4613728736064,0,0,0,101.59805310877218,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.694567504126052e-09,14.115590174056535,0,0,0.0,435.32231897934895,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14623.39640588835,11856.25870269641,13279.869381635486,8845.750862916451,75933.6351517479,13836.740757694884,12310.343340725947,12020.794373899633,10121.323529628276,63974.20532648161,13887.435027055872,12510.238066379385,12057.670230025764,10122.25137909947,67102.42818240872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04490650824925276,0.0014208106185879571,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.180789422864626,1.180789422864626,1.307522767520031,1.307522767520031,1.1529541556135794,1.1529541556135794,1.1739656791877389,1.1739656791877389,1.1595448163861444,1.1595448163861444,0.6556271531496114,0.7552428392741873,0.6098279678268679,0.6728705264742019,0.5710710736580864,0.6675226818410793,0.7818179850166113,0.6208076934571694,0.683005293392629,0.5866432852982003,34.31402141579488,34.31402141579488,40.65602543328831,40.65602543328831,32.98123784113818,32.98123784113818,33.98510023606714,33.98510023606714,33.2946464917121,33.2946464917121,14.028318831455067,17.0133581105204,12.799963258642677,14.514358755380258,11.831587418573989,14.362241172600804,17.88172614749537,13.08615154477306,14.806034251464396,12.212839294203647,283.91382683902907,283.91382683902907,0.0,315.4598075989212,0.0,283.91382683902907,315.4598075989212,0,0
+2017/07/19 16:00:00,305.5735741715633,0,888.2235217989464,0,0,0,100.42928279039262,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.694567504126052e-09,14.059629649988137,0,0,0.0,426.84893913587257,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14526.199510856894,12229.549185382313,13769.868224405842,9015.164584046566,79404.64119507612,13212.301044131424,12383.568680035423,11952.463423483261,9734.91094885949,63947.57232206057,13302.059699739299,12740.48335437495,12117.246511779784,9809.439572656813,66581.71902863706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04728967821366,0.0014962124550553036,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1852592079749478,1.1852592079749478,1.312549191508609,1.312549191508609,1.1730240474495486,1.1730240474495486,1.1877387036235825,1.1877387036235825,1.179288905388165,1.179288905388165,0.6425878383601957,0.7691729510646877,0.6104845415694069,0.671000876489698,0.5680327086357544,0.652874168811848,0.7989725155586712,0.6227514277624988,0.6815699478429925,0.5836151633092349,34.53023310647026,34.53023310647026,40.91569806242524,40.91569806242524,33.93982177191809,33.93982177191809,34.65042705758678,34.65042705758678,34.241572553380635,34.241572553380635,13.669334229754753,17.46478041883951,12.816929880604548,14.461036441037734,11.758426266626174,13.951912792911415,18.45822898820616,13.137360341269002,14.764455341931537,12.137878182952676,305.5735741715633,305.5735741715633,0.0,339.5261935239592,0.0,305.5735741715633,339.5261935239592,0,0
+2017/07/19 17:00:00,314.16201399597963,0,918.3732079725979,0,0,0,102.24540525664486,0.0,16.630907673226492,0.0,133.89528835348938,0,39.380909295966944,2.804586504769189e-09,18.577528211393048,0,0,0.0,456.99862530952424,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14326.735703428754,10647.56753485151,13943.84483542116,8941.078294110433,80279.96149402743,14445.959345159517,11859.728126787504,13606.858687843742,9919.45801079163,70577.22290360111,14481.305715797647,12097.259717398829,13787.64694895707,9979.757689716731,72933.3463847506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04889486983761875,0.0015469995991264968,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.182500443094882,1.182500443094882,1.2458306016905616,1.2458306016905616,1.1798729985023124,1.1798729985023124,1.1861161432198915,1.1861161432198915,1.184964429186602,1.184964429186602,0.6428245601678134,0.733626471594597,0.6207722513393393,0.6691144075423858,0.5766106650787379,0.6500449552445178,0.7513635704731058,0.6340859544838412,0.6769735443822981,0.5908835539417879,34.39671617832114,34.39671617832114,37.51653158703068,37.51653158703068,34.26976605031953,34.26976605031953,34.57175257574656,34.57175257574656,34.5159557850515,34.5159557850515,13.675785703990428,16.32930002362363,13.085219323784372,14.40738783032441,11.966006617859492,13.873733367821387,16.889122662951422,13.439240083608311,14.6319069457995,12.31847581080612,314.16201399597963,314.16201399597963,0.0,349.06890443997736,0.0,314.16201399597963,349.06890443997736,0,0
+2017/07/19 18:00:00,307.82383354075546,0,910.2419901040839,0,0,0,110.58000737088443,0.0,17.886787501127632,0.0,110.93442390708215,0,39.380909295966944,2.9627304254286337e-09,25.60973026027723,0,0,0.0,484.35775995355425,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13879.851875565151,9780.499451499765,13569.277533703516,8655.784746469286,81032.83490894557,16621.59729548391,12319.407598107904,16050.69355194365,10740.200589232392,83363.63001423552,16497.32762666844,12344.850047708596,16099.655727543723,10724.074817018236,85436.95289644173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04846195777545178,0.001533302563244134,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1623805122082396,1.1623805122082396,1.2108545037672562,1.2108545037672562,1.1638123922348886,1.1638123922348886,1.165178676562765,1.165178676562765,1.1819843157122987,1.1819843157122987,0.6409682997282571,0.7149032269346374,0.6266650605144356,0.6587817548877497,0.5946835372912516,0.6437137081238171,0.7214191571174223,0.6321827657564157,0.6608505352136944,0.6070798210776067,33.429910281117884,33.429910281117884,35.779596758555115,35.779596758555115,33.498306179174804,33.498306179174804,33.56362783527338,33.56362783527338,34.371762174270145,34.371762174270145,13.625261480984832,15.753016833597414,13.240964595504721,14.11627513240974,12.413806605461915,13.700039714916045,15.951859318675744,13.388161858355204,14.174190778318348,12.729151023097984,307.82383354075546,307.82383354075546,0.0,342.0264817119505,0.0,307.82383354075546,342.0264817119505,0,0
+2017/07/19 19:00:00,298.6924168567567,0,892.8751039769854,0,0,0,109.426646833419,0.0,17.665254465099625,0.0,101.68988858149199,0,39.380909295966944,3.0136462531337314e-09,27.0977424753112,0,0,0.0,502.48122633900005,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13142.804488725125,9646.521466307362,13516.535862447741,8154.6334832227185,78484.1901077076,16623.9218161609,12496.51559713756,16726.489883106857,10615.465853690956,84685.47184195483,16422.62604797955,12477.42778474703,16790.035318590944,10517.478577654032,86508.87496379919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047537331894276724,0.0015040480448811609,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1526880762770413,1.1526880762770413,1.2217005319932466,1.2217005319932466,1.1815048980894773,1.1815048980894773,1.1540113960408565,1.1540113960408565,1.1751047694874135,1.1751047694874135,0.6458105894214713,0.7300169636209641,0.6517285261795889,0.6593065666041222,0.6033438677165427,0.6437632785056706,0.7359998158575417,0.6604715848315533,0.6568663319601877,0.6136926740481634,32.96861344581035,32.96861344581035,36.3146479036801,36.3146479036801,34.34859016511281,34.34859016511281,33.03142164666505,33.03142164666505,34.039909456061025,34.039909456061025,13.757373804158718,16.21702961122766,13.920213541217535,14.130949718436113,12.633411389916958,13.701392895405945,16.403425745517097,14.16356816455857,14.06281806817097,12.900100766687416,298.6924168567567,298.6924168567567,0.0,331.8804631741741,0.0,298.6924168567567,331.8804631741741,0,0
+2017/07/19 20:00:00,300.41915253036655,0,824.1535051740163,0,0,0,105.327237981977,0.0,22.954937878768845,0.0,106.16168237671882,0,39.380909295966944,2.91092137072729e-09,23.162409791569736,0,0,0.0,469.24998004857514,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12353.584938192305,8242.627963642122,11934.555601323973,7658.70464924611,74535.47390282818,16276.75244169115,11554.721065147389,15944.020165493712,10317.51146173469,84352.23414361863,16069.859723614512,11501.922969893349,15893.76816419023,10203.134937235005,85728.82684963949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043878543071460274,0.0013882865169134403,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1390634165677251,1.1390634165677251,1.153920537611976,1.153920537611976,1.1335585960224033,1.1335585960224033,1.1401244128018235,1.1401244128018235,1.1638100809250826,1.1638100809250826,0.6429841489428927,0.6912083488983313,0.6339115616214843,0.6547041289526812,0.6079813185119636,0.6389980509139599,0.6912393301596043,0.6332596711752975,0.6498781334364421,0.6155486890096754,32.32517791882272,32.32517791882272,33.02710750955325,33.02710750955325,32.066894864335055,32.066894864335055,32.375071569523485,32.375071569523485,33.49819572493115,33.49819572493115,13.680136412156145,15.045368628554044,13.434553147671338,14.002664711676829,12.75234402390494,13.571798172431428,15.046278058776991,13.417044797634276,13.869134427454881,12.948421941452438,300.41915253036655,300.41915253036655,0.0,333.79905836707394,0.0,300.41915253036655,333.79905836707394,0,0
+2017/07/19 21:00:00,288.37956356660544,0,807.595157451919,0,0,0,90.87184743253422,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9627304254286337e-09,25.61177868048899,0,0,0.0,488.181984839022,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11012.040582812679,7258.188257191667,10573.643147548266,6840.923748801988,67273.42989508546,13217.699898125971,9802.95459600179,12589.275873951903,8790.144581353272,70417.32258230612,12958.193905758091,9630.4833990962,12450.823314682586,8639.142817769234,71407.03898072061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04299696437385726,0.0013603939814323246,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1201070715955446,1.1201070715955446,1.1304938188011748,1.1304938188011748,1.1159262274426704,1.1159262274426704,1.1213500132492027,1.1213500132492027,1.1450469784385446,1.1450469784385446,0.6260748044661242,0.6731115505699462,0.6125419979948206,0.64166335973762,0.5959127176845834,0.6180210029938272,0.6642703886750844,0.6077466736209458,0.6328655763083626,0.5998165098320744,31.43991010587189,31.43991010587189,31.923522785317928,31.923522785317928,31.246252641507695,31.246252641507695,31.497595120142734,31.497595120142734,32.60702864086126,32.60702864086126,13.22529639174708,14.521243759977082,12.870218098013922,13.64416232049635,12.444777395219248,13.013020603160328,14.270336393209277,12.746303873348808,13.406469213548675,12.543573319926523,288.37956356660544,288.37956356660544,0.0,320.4217372962283,0.0,288.37956356660544,320.4217372962283,0,0
+2017/07/19 22:00:00,215.26133125246596,0,633.7806248762414,0,0,0,75.23658546107194,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8582098201380327e-09,20.83981298075961,0,0,0.0,474.07403856979295,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8223.160448822407,5533.356250797982,7767.263519034791,5149.9064791827905,48625.28385772542,10993.594286640271,8603.135425318576,10312.840438866293,7695.642317281707,59087.45940326858,10630.008428318835,8334.030651336006,10051.368322539784,7478.755300784533,59787.338522081714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03374294991394514,0.001067603414500895,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0735624554848007,1.0735624554848007,1.0818034267624728,1.0818034267624728,1.0694835380236212,1.0694835380236212,1.0753073525043988,1.0753073525043988,1.0715555506682295,1.0715555506682295,0.6079476878198053,0.6554420663499494,0.5949361655720119,0.6295996357665511,0.579306941662783,0.5952588637638427,0.6414366656706021,0.5850197626471042,0.6164249234304102,0.5797665044516315,29.317361237377852,29.317361237377852,29.68774117103942,29.68774117103942,29.13492214211483,29.13492214211483,29.395584776606242,29.395584776606242,29.227524403238135,29.227524403238135,12.75147816713907,14.02317165249093,12.420166548209806,13.319086585078608,12.03191398450835,12.428294536886966,13.637995502711505,12.172599538160412,12.97128657165237,12.04317892996815,215.26133125246596,215.26133125246596,0.0,239.1792569471844,0.0,215.26133125246596,239.1792569471844,0,0
+2017/07/19 23:00:00,150.67958927547446,0,463.5319066732629,0,0,0,59.92810685612765,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.638153281068413e-09,11.808526155416073,0,0,0.0,410.2963779044467,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5709.863500538662,3987.248832744015,5231.5684783660045,3631.332044743973,32627.371605948538,8774.519377770705,7327.210397768571,8072.418823685078,6521.434689143785,48240.32576892572,8343.585749732529,7003.975547105276,7723.770020398777,6267.216668105769,48656.154415009114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024678782052458,0.0007808194616096362,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0272632800826405,1.0272632800826405,1.0347629461274357,1.0347629461274357,1.023799520326079,1.023799520326079,1.0292663079311692,1.0292663079311692,1.012022083836759,1.012022083836759,0.5850803479982115,0.6356947559825327,0.5727865472224116,0.6125259049390136,0.562222753867421,0.5687340652105651,0.6178102779927751,0.5589046862270716,0.5959086415755788,0.5599142717098097,27.28157653246656,27.28157653246656,27.606054688406545,27.606054688406545,27.13241600624663,27.13241600624663,27.368035904369023,27.368035904369023,26.628581797688838,26.628581797688838,12.17409911939528,13.482540025477206,11.87307139554781,12.86980057423871,11.619642611489482,11.775278764355605,13.007504265355607,11.541039984423975,12.44467458401786,11.564905801720812,150.67958927547446,150.67958927547446,0.0,167.42176586163828,0.0,150.67958927547446,167.42176586163828,0,0
+2017/07/20 00:00:00,47.60767637285691,0,468.7672948197391,0,0,0,6.60993722934549,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.5915012092126792,2.5807902176645026e-09,9.60891693529476,0,0,0.0,415.53176605092295,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2776.0840735371876,1947.7776925451358,2597.159013091546,1649.3259798866568,13105.87279432846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0249575179952633,0.0007896384725450163,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9857570303900465,0.9857570303900465,0.9905038990282694,0.9905038990282694,0.9842253143041265,0.9842253143041265,0.9912411631220612,0.9912411631220612,0.9705186523336664,0.9705186523336664,0.8283453775898401,0.9151036837430887,0.7990065215968861,0.8437333928237571,0.7602784261067852,0.7814711543685213,0.8645934319263378,0.7588353458766254,0.7968013893074228,0.7604792197921105,25.523799684303583,25.523799684303583,25.72152297482073,25.72152297482073,25.460182872243266,25.460182872243266,25.752309918523977,25.752309918523977,24.89492979093494,24.89492979093494,19.474232935146333,22.684778324569564,18.459384200890995,20.020965431646104,17.17558553090275,17.870199278366513,20.777868267753277,17.128984138722174,18.38457541549741,17.18207681656476,47.60767637285691,47.60767637285691,0.0,52.89741819206323,0.0,47.60767637285691,52.89741819206323,0,0
+2017/07/20 01:00:00,23.72436896494161,0,43.18941962868657,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5272735412638216,0,0,0.0,7.699067116142441,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0022994366917223215,7.275257408650118e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1033967859553682,1.1033967859553682,1.128429970954646,1.128429970954646,1.091437482559322,1.091437482559322,1.1017700182576518,1.1017700182576518,1.0625936083099619,1.0625936083099619,0.8818889237188001,0.9843659419051529,0.8472137236629409,0.8920757965116267,0.8227168720954054,0.8342068854539056,0.9353177126431432,0.8068215618169743,0.8451480930448142,0.8234527742887453,30.66938622990638,30.66938622990638,31.82714719345337,31.82714719345337,30.123729452759463,30.123729452759463,30.594876630050166,30.594876630050166,28.82809146107246,28.82809146107246,21.419077283512877,25.46601980569058,20.145991764003924,21.80248953991959,19.276730611544863,19.681323192405287,23.476874983970802,18.72616466354893,20.071725806365308,19.302477588250554,23.72436896494161,23.72436896494161,0.0,26.360409961046233,0.0,23.72436896494161,26.360409961046233,0,0
+2017/07/20 02:00:00,28.34423108027921,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248679938063198,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1620585083030146,1.1620585083030146,1.1934561444355107,1.1934561444355107,1.146312507345615,1.146312507345615,1.157243351679431,1.157243351679431,1.126853804474835,1.126853804474835,0.9093493552921128,1.0141319052675555,0.8708753282652606,0.9169107725850926,0.845345666694542,0.859717404812722,0.9653038068787936,0.8280883756378257,0.8659244596454084,0.8498931079532798,33.41453801796787,33.41453801796787,34.92827216166715,34.92827216166715,32.666786865230094,32.666786865230094,33.18504958394634,33.18504958394634,31.75363865359222,31.75363865359222,22.462294099771583,26.71845808891935,21.009336952452756,22.754922747802453,20.07882151681656,20.5993257856462,24.681785346977307,19.46518586239361,20.82677652984333,20.242588762376172,28.34423108027921,28.34423108027921,0.0,31.493590089199124,0.0,28.34423108027921,31.493590089199124,0,0
+2017/07/20 03:00:00,23.72203191895535,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249364952775583,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.184382743801388,1.184382743801388,1.219450963892855,1.219450963892855,1.1665420007232175,1.1665420007232175,1.1779800512298968,1.1779800512298968,1.1212689069373207,1.1212689069373207,0.9534175852565191,1.0582523843181462,0.9140827494555217,0.9562595653701508,0.8654931584658788,0.8985737418747738,1.0055749813961905,0.8653876348129648,0.9003811485788855,0.8765994739980257,34.48779000088328,34.48779000088328,36.20340428031139,36.20340428031139,33.62886529180034,33.62886529180034,34.17843290685619,34.17843290685619,31.493829412443517,31.493829412443517,24.199933514788285,28.63563079300269,22.645207637215307,24.314640008163508,20.81092046432589,22.04927148466851,26.354978067882953,20.807042234219495,22.118219452604436,21.221670739049316,23.72203191895535,23.72203191895535,0.0,26.35781324328372,0.0,23.72203191895535,26.35781324328372,0,0
+2017/07/20 04:00:00,65.45921991382454,0,88.72588128136032,0,0,0,20.433955707148076,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,4.9920196184241075,0.0,0.5251110386182427,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2411.4726129549394,1711.8838870667892,2184.7924089509534,1279.4571232706305,12262.284753994652,2799.4387388925074,1996.7402132182042,2633.820121868092,1685.8530894826001,16407.209154366297,2751.482136165415,2098.505623512649,2586.004013921765,1621.9911822996078,16620.54453084116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0617061449256218,1.0617061449256218,1.0724271486061097,1.0724271486061097,1.0588075545196063,1.0588075545196063,1.0629816736527322,1.0629816736527322,1.0265223278414333,1.0265223278414333,0.6541519383941525,0.7020203174882028,0.6360220856836708,0.6678726193245093,0.5832562399307101,0.6198896493763905,0.6653771249358135,0.604276661557052,0.6354568223009646,0.597059053679296,28.78869257930552,28.78869257930552,29.266523072276456,29.266523072276456,28.660205736008294,28.660205736008294,28.84532841984982,28.84532841984982,27.249631406158827,27.249631406158827,13.987335027503377,15.365262843782531,13.491363656465808,14.372157160257728,12.129019417591309,13.062022149645415,14.301559629709857,12.657258944990161,13.476129106542373,12.47371990594857,65.45921991382454,65.45921991382454,0.0,72.73246657091616,0.0,65.45921991382454,72.73246657091616,0,0
+2017/07/20 05:00:00,121.02411669103154,0,212.9421150752648,0,0,0,38.326080602573,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,9.386878015040686,0.0,0.5251150434619606,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4304.930876402922,2922.362509240364,4103.2143768480155,2445.194009241357,26041.37904165895,6267.775699632164,4819.9878546339,5672.799994775279,3787.0323262119223,29067.360046229955,5455.149434929294,4185.36825083015,5030.8270610471745,3258.7153382577185,28928.802527143234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0504989397466562,1.0504989397466562,1.0545705385042394,1.0545705385042394,1.0513667156842978,1.0513667156842978,1.0529041308033076,1.0529041308033076,1.045660541495152,1.045660541495152,0.5667986063219469,0.5966503676776833,0.553650939791517,0.5836060435810152,0.5201663199538591,0.5360695741164969,0.5621962954105484,0.5241528080838973,0.5552944158786884,0.5261648095447679,28.293576510809118,28.293576510809118,28.472931337977002,28.472931337977002,28.33175211413574,28.33175211413574,28.399453496697376,28.399453496697376,28.081222742068675,28.081222742068675,11.728824528781288,12.463394924184556,11.417558906979608,12.137653025216139,10.658660245769482,11.013037448819915,11.619013941325505,10.74646409239439,11.456057607390193,10.791040346322788,121.02411669103154,121.02411669103154,0.0,134.47124076781282,0.0,121.02411669103154,134.47124076781282,0,0
+2017/07/20 06:00:00,141.0473938365367,0,631.3339489474812,0,0,0,46.239693318234075,0.0,9.101059831973295,0.0,73.80580873715317,0,11.375629605692883,2.5224833407259033e-09,0.5252023409608226,0,0,0.0,400.64665761594426,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5123.852286004188,3425.8456788058447,5017.158802289945,2803.4154526767647,32230.582109844472,6921.784562135299,5166.127355865205,6412.915461556225,5247.71383110619,36587.49256695035,6118.224339393142,4500.73405567821,5770.376213676377,4874.375547772206,36138.2599225103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03361268707522878,0.0010634819890845979,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0563728969436277,1.0563728969436277,1.060601790857999,1.060601790857999,1.0590301419746009,1.0590301419746009,1.0563153594739703,1.0563153594739703,1.05648827413325,1.05648827413325,0.5525251768231231,0.5822929718501957,0.5402214239239783,0.6129078382859823,0.523468831613595,0.528311876052226,0.5536969169086747,0.5171021271548915,0.6019238992138041,0.5260475440470207,28.552516132174063,28.552516132174063,28.739704088368043,28.739704088368043,28.670061802050782,28.670061802050782,28.54997370963126,28.54997370963126,28.557614690849263,28.557614690849263,11.39125530064841,12.105272155279152,11.10735737593329,12.879712616387394,10.731350380454373,10.838802279255717,11.41863433641933,10.591637755817985,12.597181358037489,10.788437499053472,141.0473938365367,141.0473938365367,0.0,156.7193264850408,0.0,141.0473938365367,156.7193264850408,0,0
+2017/07/20 07:00:00,214.5523445424649,0,759.8205600950109,0,0,0,67.5901439214153,0.0,7.718350191079528,0.0,69.33401494192633,0,39.380909295966944,3.0136638219061874e-09,27.096950986608903,0,0,0.0,493.64291625093006,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7162.222596437532,4699.1418278623005,6890.60337048514,5847.686105375026,46161.26875505402,9653.492306686945,7075.683748025169,9045.612035692058,7708.752509300322,53777.08992463083,9184.261339851806,6671.943645074888,8633.55005047751,7646.780884220964,54699.38472548536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04045340942361271,0.0012799176758106433,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.110683391805328,1.110683391805328,1.1175632457612055,1.1175632457612055,1.1028835453967925,1.1028835453967925,1.1468706913844253,1.1468706913844253,1.0976452906410192,1.0976452906410192,0.5795431905203018,0.6147497033917534,0.5680839826543804,0.6525195655713921,0.5481422319989379,0.5658397844944918,0.5969640398117538,0.5555922862633793,0.6534392386696172,0.5547508168713171,31.004226554376274,31.004226554376274,31.322010486319783,31.322010486319783,30.64586897291538,30.64586897291538,32.69316048545777,32.69316048545777,30.406358102412582,30.406358102412582,12.037703845112091,12.927602100012777,11.75965757788616,13.942095052425401,11.289370515999593,11.705871394615642,12.471318843128898,11.46304780634975,13.967568890468343,11.44331074939366,214.5523445424649,214.5523445424649,0.0,238.39149393607212,0.0,214.5523445424649,238.39149393607212,0,0
+2017/07/20 08:00:00,240.84135992795214,0,810.4341743806058,0,0,0,77.67580217114784,0.0,11.541431746919748,0.0,83.2008179303116,0,39.380909295966944,2.9627478779989095e-09,25.610423578189003,0,0,0.0,491.02100176770864,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9806.136963087047,6476.248234434476,9151.879093791038,6582.638322903116,57655.49194134511,10783.006900313583,7995.657326557369,10163.546694242694,8305.470190300995,58970.71054777629,10457.88665972563,7701.306181120958,9891.714631052053,8291.94862943718,60258.58969561038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04314811573801931,0.0013651763052332198,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1272138294769456,1.1272138294769456,1.1321320270928468,1.1321320270928468,1.1182766643281705,1.1182766643281705,1.1324299997245848,1.1324299997245848,1.116053451823065,1.116053451823065,0.5952140805912092,0.6310579856651825,0.5843696911924984,0.6505268764111111,0.5622461009279301,0.587696303964224,0.6198398249789677,0.5780667329890323,0.6510105831849626,0.5702183505197163,31.770422168791015,31.770422168791015,32.000121133198135,32.000121133198135,31.355053898153272,31.355053898153272,32.01406294233725,32.01406294233725,31.252137129027673,31.252137129027673,12.427166286766848,13.358048621709088,12.156519286952559,13.887025737775858,11.620197378064518,12.239000000942383,13.060713637316127,12.00155933968523,13.900377482281897,11.811014172887866,240.84135992795214,240.84135992795214,0.0,267.60151103105795,0.0,240.84135992795214,267.60151103105795,0,0
+2017/07/20 09:00:00,268.5786439542664,0,835.3020964570975,0,0,0,87.49391413991398,0.0,11.128561489866103,0.0,106.27511244621549,0,39.380909295966944,2.8582270047225874e-09,20.868171376991388,0,0,0.0,462.65339507538414,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12745.707374273547,7609.705917227269,11127.944172726397,8867.98694607464,65100.01316230876,12785.080021751115,8999.415347277349,11548.204067465414,10139.151150413525,62584.35090300378,12731.32477776759,8842.270348970915,11477.849600331663,10329.72249594997,64397.20707731325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044472102329207404,0.001407066318083627,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1788613139975603,1.1788613139975603,1.1521102130954057,1.1521102130954057,1.140761889008985,1.140761889008985,1.2316115998822885,1.2316115998822885,1.1256735846663142,1.1256735846663142,0.6367876857119315,0.65069468301904,0.6058380429940097,0.7161563396839026,0.5650477552142862,0.6455635842470145,0.6509591244255298,0.6107685183562709,0.7376391027155638,0.5765469140273862,34.22093970902978,34.22093970902978,32.94120383510956,32.94120383510956,32.40506646045047,32.40506646045047,36.806412074431876,36.806412074431876,31.698649395161922,31.698649395161922,13.51201962617759,13.891656549897732,12.69726131090799,15.791115250921308,11.686941163477144,13.75061014546614,13.898956585486658,12.824273963939802,16.454766191466305,11.964452114232515,268.5786439542664,268.5786439542664,0.0,298.42071550474043,0.0,268.5786439542664,298.42071550474043,0,0
+2017/07/20 10:00:00,303.2298399800981,0,920.416113785784,0,0,0,91.2740311530575,0.0,16.630907756533322,0.0,133.89528835348938,0,39.380909295966944,2.804603537298502e-09,18.616728215792133,0,0,0.0,459.04153112271035,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15139.323943105508,8733.86093820067,12978.106572912935,10167.599175206858,73579.99831445569,12737.508952704608,9062.41471970314,10996.604373052982,10230.015729670793,58243.60404877915,12908.460768744122,9005.213952330992,11051.664718337059,10527.959709915556,60526.58171561124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04900363565630673,0.0015504408738137548,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2128881057136716,1.2128881057136716,1.172331286724018,1.172331286724018,1.1610348603531218,1.1610348603531218,1.2399725948571672,1.2399725948571672,1.1546146646935227,1.1546146646935227,0.6489494147375457,0.6476040496348988,0.6033430494547669,0.7111507212560682,0.5549983780891338,0.6657408994214298,0.6544588219399343,0.6138063353084802,0.7352750038830637,0.5686054716494542,35.879666984866205,35.879666984866205,33.906527494928326,33.906527494928326,33.365691054107415,33.365691054107415,37.22332537589228,37.22332537589228,33.06007260296953,33.06007260296953,13.8435535823659,13.806562850370383,12.633390487035726,15.639334024702165,11.449114225874936,14.311834017469465,13.995852969272462,12.90305562960819,16.380762318563995,11.77218726544885,303.2298399800981,303.2298399800981,0.0,336.9220444223312,0.0,303.2298399800981,336.9220444223312,0,0
+2017/07/20 11:00:00,336.9147151049846,0,977.2838675834964,0,0,0,108.83641671977063,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.858227004722588e-09,20.87241478552644,0,0,0.0,462.6737561516065,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18226.313664909198,9793.650600005449,14872.073019755768,11044.076821955565,84641.36855154796,16861.306575147977,10761.520454068632,14349.492681138645,11814.025388900345,72943.05715164993,17280.396128593016,10810.34920359152,14564.97068807674,12144.034824697572,75727.62460450476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052031316990821294,0.001646234600769812,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.270600979991423,1.270600979991423,1.193096556225746,1.193096556225746,1.1852747973829882,1.1852747973829882,1.2593194160818946,1.2593194160818946,1.1831199890572888,1.1831199890572888,0.6922964529132695,0.6664742815331114,0.6226950416972842,0.7274238104028293,0.5700400836197784,0.7198967964032424,0.6800494230425005,0.6394302422053975,0.7548834986331455,0.5888400589490587,38.76606319167546,38.76606319167546,34.910769318192976,34.910769318192976,34.53098823602083,34.53098823602083,38.195052009166986,38.195052009166986,34.426680822267045,34.426680822267045,15.077333906030432,14.332564967082561,13.135872509036318,16.13671767659727,11.806717198612034,15.90523872359664,14.720506171213458,13.583511401244209,17.001822985637972,12.267469437293357,336.9147151049846,336.9147151049846,0.0,374.34968344998293,0.0,336.9147151049846,374.34968344998293,0,0
+2017/07/20 12:00:00,325.4921398736914,0,938.1828124955116,0,0,0,117.96838411137996,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.804603537298502e-09,18.58008267486451,0,0,0.0,459.06305357616577,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18342.837707397994,9708.480829921391,14927.00925165457,10184.614653308587,86623.65867862117,19996.25192403153,11913.993954393274,17323.884873835206,12397.54838754131,85962.44165172304,20460.20862639829,11976.469184150163,17575.27893317208,12621.127151385253,89026.53422804667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0499495478555248,0.0015803688764418212,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.262187973407922,1.262187973407922,1.1855348977051512,1.1855348977051512,1.181915853316835,1.181915853316835,1.214626312067556,1.214626312067556,1.187502593559267,1.187502593559267,0.713544190472884,0.67663785020376,0.6424073835535824,0.7124170012736998,0.5917249026812648,0.7390732322434088,0.6890587753310733,0.6598551885128564,0.7310938868558784,0.6118190017795668,38.33994302449053,38.33994302449053,34.543588203686184,34.543588203686184,34.36845271545815,34.36845271545815,35.965293374335275,35.965293374335275,34.638973741680516,34.638973741680516,15.711774495157513,14.62226221022155,13.664417854953555,15.677628352810217,12.339528846653835,16.4997759799233,14.98237089144473,14.14630283404263,16.250467706063176,12.85147152602562,325.4921398736914,325.4921398736914,0.0,361.65793319299047,0.0,325.4921398736914,361.65793319299047,0,0
+2017/07/20 13:00:00,324.6136020435917,0,874.9013304022485,0,0,0,119.62383646426862,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.7500590238542668e-09,16.33556610749034,0,0,0.0,431.27192399544697,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18377.612713197774,10105.68770765249,15011.893727402368,9947.676365326603,85078.79313019046,20405.84820538564,12538.003486868165,17466.270663259176,12441.051340238577,84954.07913969114,20876.71892547154,12658.633867981203,17744.855873311975,12615.935680781064,88267.84508281908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046580394875863816,0.0014737712246587027,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2698719741656903,1.2698719741656903,1.2108362402674355,1.2108362402674355,1.188475800435891,1.188475800435891,1.2124447638898055,1.2124447638898055,1.1836012850455242,1.1836012850455242,0.7327354845996458,0.7044093354651645,0.6566101551281218,0.7166444225505916,0.5957835065657506,0.7606831007574063,0.7234142166472938,0.6769150423471246,0.7356110226279925,0.6167377659361977,38.72907002350897,38.72907002350897,35.77869856943266,35.77869856943266,34.686193026474726,34.686193026474726,35.85784093945827,35.85784093945827,34.44996683937424,34.44996683937424,16.301534651751567,15.436627621550457,14.055680545671635,15.805972752320145,12.441518669760512,17.188669671408192,16.01310682104514,14.630225789333679,16.391266150147004,12.979458016233124,324.6136020435917,324.6136020435917,0.0,360.6817800484352,0.0,324.6136020435917,360.6817800484352,0,0
+2017/07/20 14:00:00,298.25190414293843,0,839.3061907706366,0,0,0,109.31000661727573,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.6945841952677333e-09,14.04107097277415,0,0,0.0,431.1671368763792,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16868.343695513147,10625.968137678905,14355.06885794524,9451.743975342559,80766.98284580905,17270.700053744673,12370.26979209141,14695.830822261574,11449.792251668776,73644.50854215857,17661.20619142901,12598.248540458833,14970.007777696715,11602.681051521418,76861.34502369621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04468528327631958,0.001413811214650878,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.23699359316522,1.23699359316522,1.251998316347567,1.251998316347567,1.1807614950153327,1.1807614950153327,1.2026891903296684,1.2026891903296684,1.1735970040764954,1.1735970040764954,0.7106570215722904,0.7340279034911235,0.6473446929275007,0.710891254885502,0.5887276974855891,0.7307432025566812,0.7566487966892563,0.6635940383445627,0.7257782502934773,0.6076077105010235,37.07456656531116,37.07456656531116,37.82620459315255,37.82620459315255,34.31267237054372,34.31267237054372,35.378974780048424,35.378974780048424,33.9673692474164,33.9673692474164,15.624422486768381,16.341820785570164,13.799440875507727,15.631495880336729,12.264670110788202,16.23957360598503,17.058543574165853,14.251281319461071,16.08590340196757,12.742727857684471,298.25190414293843,298.25190414293843,0.0,331.3910046032649,0.0,298.25190414293843,331.3910046032649,0,0
+2017/07/20 15:00:00,277.59323149336336,0,846.1269939075079,0,0,0,95.06129718756452,0.0,16.86091074341296,0.0,108.75639138185811,0,39.380909295966944,2.6945841952677333e-09,14.101747679411899,0,0,0.0,437.98794001325035,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14400.764573168655,9272.769041972204,13313.332468145869,8811.658955915374,77315.50476344056,13304.588877810258,10341.449842067877,11640.351564116248,9921.650017951959,62829.450628122926,13381.923225838373,10419.724055637425,11732.66461982923,9968.948276140703,65253.07098228461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04504842788754095,0.001425300857017247,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1864309270567193,1.1864309270567193,1.1939923022419492,1.1939923022419492,1.1667580168678293,1.1667580168678293,1.1872587767563485,1.1872587767563485,1.1729665534444307,1.1729665534444307,0.6595726762397689,0.6913128981872576,0.6218996970805521,0.6913049269482079,0.5805092776316761,0.663345227066046,0.697807494269571,0.6256476794560016,0.6959801675567792,0.5927631702056638,34.587009674435976,34.587009674435976,34.95437649395443,34.95437649395443,33.63920729027373,33.63920729027373,34.62714831468816,34.62714831468816,33.93705803862784,33.93705803862784,14.138395134717271,15.048437755754534,13.114900827295358,15.048203737084123,12.061405391545733,14.244276450537669,15.24001755864721,13.21396788929961,15.185930259837093,12.365551720825309,277.59323149336336,277.59323149336336,0.0,308.4369238815148,0.0,277.59323149336336,308.4369238815148,0,0
+2017/07/20 16:00:00,305.4462624409669,0,896.5936558536188,0,0,0,100.27233436909137,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.6945841952677333e-09,14.089266340692973,0,0,0.0,435.219073190545,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15064.82768241429,10036.369050366242,14331.47934524533,9397.268172010825,82737.09037753865,13663.08634219507,11024.048735077637,12437.740323058046,10385.020532970917,65797.38287803934,13508.160228302015,11002.54688517256,12360.31731740761,10332.791305785586,68271.56471748906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04773531035054485,0.0015103119452351164,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.200950372001878,1.200950372001878,1.22905183802556,1.22905183802556,1.1864127154894923,1.1864127154894923,1.2045136890402002,1.2045136890402002,1.1922685347736817,1.1922685347736817,0.6563160370870241,0.7082805092256691,0.6254557367038439,0.6940944163464463,0.5793732834295168,0.6588107224153587,0.7183019410727235,0.6296931350027685,0.6992471349270716,0.5915980435409789,35.29390760391948,35.29390760391948,36.679146737681826,36.679146737681826,34.586126907142344,34.586126907142344,35.46832692067396,35.46832692067396,34.87048002151171,34.87048002151171,14.04748942342728,15.552790161498152,13.208879629906917,15.130264852887635,12.033539608488084,14.117084800250055,15.85650508923652,13.32158179121393,15.282731230726355,12.336352488641623,305.4462624409669,305.4462624409669,0.0,339.38473604551876,0.0,305.4462624409669,339.38473604551876,0,0
+2017/07/20 17:00:00,316.72336906656926,0,901.1290055274457,0,0,0,104.69871838023603,0.0,16.756134543052177,0.0,133.89528835348938,0,39.380909295966944,2.8046035372985026e-09,18.560343288565807,0,0,0.0,439.7544228643719,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14683.512187765447,10029.714523847013,14068.418765652226,9249.229806876741,81357.69459888438,14721.321022781298,11033.589094448085,13736.032357690972,10284.71031157731,71869.73806784852,14650.876290841281,11119.466870966482,13788.405640515326,10334.14550919163,73984.03309054917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04797677572654313,0.0015179517414164506,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1871711178279107,1.1871711178279107,1.2200568771623632,1.2200568771623632,1.1789590084680588,1.1789590084680588,1.1937641920378652,1.1937641920378652,1.187326388824633,1.187326388824633,0.643303807574305,0.6914783384948577,0.6177712708683439,0.6730719528909637,0.5753768202850593,0.6476527114587118,0.7036447193890508,0.6258239886380096,0.6799977896383392,0.5889864614072559,34.6228971742877,34.6228971742877,36.23335359974842,36.23335359974842,34.22565333935485,34.22565333935485,34.94326928843793,34.94326928843793,34.63042741032112,34.63042741032112,13.688854265380499,15.053295352117885,13.006483352160231,14.520112454798024,11.935951904448359,13.807899436422872,15.413760201001438,13.218643122966967,14.71901551767941,12.271117668929492,316.72336906656926,316.72336906656926,0.0,351.91485451841027,0.0,316.72336906656926,351.91485451841027,0,0
+2017/07/20 18:00:00,311.513842081165,0,913.1474348645615,0,0,0,114.43203829731566,0.0,17.724046137657638,0.0,110.93442390708215,0,39.380909295966944,2.9627478779989124e-09,25.610449237725426,0,0,0.0,487.2632047140318,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14443.03862014902,9309.795836063902,13853.998594729781,9079.470846089065,83268.945787046,17318.336523052007,11718.432857993279,16435.258328735275,11306.845616730048,85551.36527237069,17233.621319990205,11725.129442264728,16491.14195137685,11328.198700995692,87531.64495243363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04861664580658191,0.001538196784722639,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1719778016584088,1.1719778016584088,1.1775917961950484,1.1775917961950484,1.1614189111908417,1.1614189111908417,1.1784383855050808,1.1784383855050808,1.1839069601989476,1.1839069601989476,0.6501343002297364,0.6716347626826639,0.6239315137519897,0.669577657542939,0.5921445460697706,0.6527642109057576,0.6759471908390183,0.6295778401110412,0.6753734138688917,0.6054819450277212,33.889544526474594,33.889544526474594,34.159713243044536,34.159713243044536,33.38401358310398,33.38401358310398,34.20053727289948,34.20053727289948,34.46475956985827,34.46475956985827,13.876196924727111,14.47909788531014,13.168530365820217,14.42054775760873,12.35004104898482,13.948867854806096,14.602434406264265,13.318504980793037,14.585977820104858,12.688128818758827,311.513842081165,311.513842081165,0.0,346.12649120129447,0.0,311.513842081165,346.12649120129447,0,0
+2017/07/20 19:00:00,302.8557144226043,0,905.1793280341047,0,0,0,112.59272182579939,0.0,18.662477038566863,0.0,101.68988858149199,0,39.380909295966944,3.0136638220954497e-09,27.0977424753112,0,0,0.0,514.7854503961194,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13750.642287011913,8675.047024989148,13191.667150967485,8636.766156687267,80668.41193108186,17340.02049677957,11583.483730763914,16581.58519403897,11176.654417396698,86697.08328827604,17210.42219039917,11528.616133083595,16601.52383771734,11144.998462742175,88436.054464748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04819241789689854,0.0015247745093715035,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.161820785257886,1.161820785257886,1.1601056203572069,1.1601056203572069,1.1559193812991384,1.1559193812991384,1.1676908243091624,1.1676908243091624,1.177953845429233,1.177953845429233,0.6517089319161039,0.6744979028429228,0.6335356819452872,0.6684133445375374,0.6015538840800886,0.651098145215155,0.6755944649923354,0.6367410440830304,0.6683140769488065,0.61259189596983,33.40319133061537,33.40319133061537,33.32137725223312,33.32137725223312,33.12207636256011,33.12207636256011,33.683882875797124,33.683882875797124,34.177169254864424,34.177169254864424,13.919671874411648,14.560894609249203,13.42445559228517,14.387489823010256,12.587754915783137,13.902795538726792,14.5923161344991,13.510760502824652,14.384674068436837,12.871512739693685,302.8557144226043,302.8557144226043,0.0,336.5063493584492,0.0,302.8557144226043,336.5063493584492,0,0
+2017/07/20 20:00:00,303.7029735240591,0,821.0224178303388,0,0,0,106.56047216614084,0.0,24.999863057464953,0.0,106.16168237671882,0,39.380909295966944,2.9109386952486744e-09,23.16807142240229,0,0,0.0,466.1188927048975,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12765.943947251482,7982.121809809272,12276.756841300108,7928.777322640125,77282.07782241575,16978.400999642872,11126.45102503052,16307.086381447194,10829.974900038502,86989.20467921045,16835.69101135051,11040.76139631705,16329.490143088542,10763.926229343593,88251.12005995103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04371184166206561,0.001383012200520661,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1509436474118722,1.1509436474118722,1.1475863735025442,1.1475863735025442,1.1433544366361639,1.1433544366361639,1.1530090381471396,1.1530090381471396,1.1739433790827132,1.1739433790827132,0.6579342678193405,0.6710308709716908,0.6387382688226226,0.6726683772714768,0.6136398127121662,0.654737420632831,0.6678190612358625,0.6388695873048936,0.6694212264009044,0.6219092937415921,32.885902537997566,32.885902537997566,32.72699020934617,32.72699020934617,32.527186673032475,32.527186673032475,32.983842073913166,32.983842073913166,33.98402762201238,33.98402762201238,14.092603216796505,14.461890687649898,13.564761468279045,14.508586175423815,12.898726716368074,14.003589363812836,14.370639170220016,13.568318119419317,14.416102849258465,13.115153708869798,303.7029735240591,303.7029735240591,0.0,337.44774836006565,0.0,303.7029735240591,337.44774836006565,0,0
+2017/07/20 21:00:00,294.517031788014,0,810.4197173615821,0,0,0,97.01018138999092,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.962747877998911e-09,25.61091294444081,0,0,0.0,491.00654474868486,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14750.712362212795,9318.893233028992,13843.856202926732,7161.341471413657,88176.06435252212,13957.558184797148,9683.934935598452,13172.05110211173,9453.782102298863,73886.83002380122,13719.611139381146,9510.074293779546,13065.187641660423,9309.1852767637,74885.08809524502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04314734603561809,0.0013651519523857718,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2040252328921068,1.2040252328921068,1.211359712892224,1.211359712892224,1.1838613140508214,1.1838613140508214,1.1459664836647088,1.1459664836647088,1.2065597372766752,1.2065597372766752,0.6533628669315209,0.6744008023990445,0.6366038944976441,0.675685190629358,0.6133519814373559,0.6448292572660839,0.6656342035917776,0.6309627045812306,0.6671465040066098,0.6188190034734932,35.44439615613942,35.44439615613942,35.80444640136598,35.80444640136598,34.46255041026643,34.46255041026643,32.650442577436976,32.650442577436976,35.568642305893206,35.568642305893206,13.965452089476756,14.558114745156828,13.507058600647824,14.59491817016486,12.891247106475731,13.730517942620992,14.308819923733765,13.355500225296652,14.351587540563017,13.033928045388137,294.517031788014,294.517031788014,0.0,327.24114643112665,0.0,294.517031788014,327.24114643112665,0,0
+2017/07/20 22:00:00,217.23897010808432,0,622.3420907009385,0,0,0,77.18745993761586,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8582270047225874e-09,20.866577359834015,0,0,0.0,462.63550439449,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10162.099474305383,6398.64784148306,9376.426137710665,5271.570364188359,59797.505596168085,11381.110334818246,8243.292784095978,10523.568902809548,8057.862911941584,61014.58655041635,11009.552856752296,7975.058528281439,10260.927547706036,7829.98656319021,61704.30147120597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03313395388185349,0.001048335204550767,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1975759933921795,1.1975759933921795,1.2068660419053816,1.2068660419053816,1.1755579336058666,1.1755579336058666,1.1054778279117219,1.1054778279117219,1.1727183104514605,1.1727183104514605,0.6393818976554627,0.6701096455549961,0.6250882379644974,0.6709364885343478,0.6048651774873479,0.625017427136413,0.6558447764213188,0.6134607811293189,0.6569277460031956,0.6070202567088752,35.12907359613915,35.12907359613915,35.58367033674526,35.58367033674526,34.06172512410788,34.06172512410788,30.76483329900657,30.76483329900657,33.9251261664422,33.9251261664422,13.582200767019145,14.43567184446944,13.199141972446725,14.45920279553225,12.672324213092622,13.197266362936205,14.034372733795536,12.894073962568825,14.06452959053044,12.727619841181266,217.23897010808432,217.23897010808432,0.0,241.37663345342702,0.0,217.23897010808432,241.37663345342702,0,0
+2017/07/20 23:00:00,154.67903259425626,0,474.828709049009,0,0,0,63.92477859856779,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.63816978241675e-09,11.811297731757664,0,0,0.0,421.59318028019277,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7698.956059758267,5059.535942058319,6751.141142333252,3818.61075056386,42824.38438756628,9356.75717210757,7347.697906745813,8480.94915609317,7187.5860355875875,51358.28889584037,8867.267542588283,6992.850173007713,8083.084294611059,6884.074628275887,51841.06082221304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025280232178559556,0.0007998489243541677,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1711084384237098,1.1711084384237098,1.1786521652743736,1.1786521652743736,1.1525851771273472,1.1525851771273472,1.06722585318926,1.06722585318926,1.1385407189670445,1.1385407189670445,0.6203647972540196,0.6617875401093072,0.6081052790180292,0.6623187717934496,0.5959382515404306,0.6021125815653641,0.6440590070057045,0.5925306118609078,0.6447857614902026,0.5952167947352239,33.84779269992001,33.84779269992001,34.21084952152307,34.21084952152307,32.9637318920211,32.9637318920211,29.034194651998746,29.034194651998746,32.30061122603357,32.30061122603357,13.074506124338498,14.20048330431139,12.755535938573303,14.215406655633231,12.445421448964552,12.601990484962684,13.709467954977598,12.35971887144943,13.729328571470418,12.427234663395154,154.67903259425626,154.67903259425626,0.0,171.86559177139583,0.0,154.67903259425626,171.86559177139583,0,0
+2017/07/21 00:00:00,49.609696572703115,0,469.6982326250795,0,0,0,8.296607850111279,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.967415305847582,2.5808065161791697e-09,9.548352417740265,0,0,0.0,416.4627038562633,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3852.387231250578,2405.797876307983,3441.7802871350095,1935.3846736980158,16981.621385273844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02500708181357146,0.0007912066372074551,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0848327178153698,1.0848327178153698,1.09066352098645,1.09066352098645,1.0773393415142567,1.0773393415142567,1.0294987918329503,1.0294987918329503,1.0621821772398574,1.0621821772398574,0.8918042119674917,0.9281774181695736,0.854201748358093,0.9201101096391706,0.7882471765132456,0.8369648411731597,0.8745184993729125,0.8067549399563044,0.8680667081766024,0.7973033419973439,29.8244847577962,29.8244847577962,30.088585361632525,30.088585361632525,29.48681334574313,29.48681334574313,27.378080516930495,27.378080516930495,28.809822512593612,28.809822512593612,21.792212643435207,23.195210698276156,20.39854960391871,22.879431304657686,18.09632527859526,19.779260800173176,21.14432219456883,18.72387949814032,20.905646558697057,18.401585985894087,49.609696572703115,49.609696572703115,0.0,55.12188508078124,0.0,49.609696572703115,55.12188508078124,0,0
+2017/07/21 01:00:00,23.72221614977442,0,36.884289585842495,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251207260966305,0,0,0.0,1.3939370732983625,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.001963746897989446,6.213158300788157e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.258286432448697,1.258286432448697,1.2606112960064104,1.2606112960064104,1.2357198685920294,1.2357198685920294,1.2018846314198819,1.2018846314198819,1.1589177906534012,1.1589177906534012,1.0115311074521227,1.0447469341426596,0.9655695718233445,1.0330982557041117,0.8479312170306218,0.9522031981114263,0.9870282412261102,0.9123704760464514,0.9770571167581941,0.8753183582905348,38.14292654076205,38.14292654076205,38.26027942581227,38.26027942581227,37.01103406348604,37.01103406348604,35.33960301887075,35.33960301887075,33.26477085208944,33.26477085208944,26.607690638932155,28.041220443367237,24.692622250619436,27.533851862968092,20.171829499667425,24.151015886916767,25.576665306266378,22.5789354913439,25.16366594581372,21.174031383217525,23.72221614977442,23.72221614977442,0.0,26.3580179441938,0.0,23.72221614977442,26.3580179441938,0,0
+2017/07/21 02:00:00,28.39692436026317,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5775612737902762,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.3620943302107604,1.3620943302107604,1.363118670748662,1.363118670748662,1.334111215097918,1.334111215097918,1.308026149198918,1.308026149198918,1.2269236415380278,1.2269236415380278,1.0895514409418519,1.1194299986892047,1.0378330613627493,1.1056661688817475,0.8700827153348452,1.0297524521032748,1.0617131276014624,0.985871143873687,1.0498700978667137,0.9182343867414787,43.502759213908845,43.502759213908845,43.556736500777035,43.556736500777035,42.0356534589916,42.0356534589916,40.682006218059584,40.682006218059584,36.57347295098978,36.57347295098978,30.038124104491757,31.4085086113476,27.739481908435366,30.773478791520944,20.980041821715403,27.389042343422517,28.789002465137045,25.528542768752004,28.265929200607005,22.806383899279638,28.39692436026317,28.39692436026317,0.0,31.552138178070187,0.0,28.39692436026317,31.552138178070187,0,0
+2017/07/21 03:00:00,23.72191960952622,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248241858484263,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.3988845123778995,1.3988845123778995,1.3990550975214369,1.3990550975214369,1.369301304912243,1.369301304912243,1.355208585402931,1.355208585402931,1.2226730458049717,1.2226730458049717,1.1553928530853852,1.1791395523144617,1.0997013707665106,1.1634324225464958,0.8893443743072351,1.0982045121511286,1.1249775570439922,1.0506135787992303,1.1113049959461119,0.9574372423927028,45.45236312298035,45.45236312298035,45.46145229183016,45.46145229183016,43.88291708849661,43.88291708849661,43.14040245141131,43.14040245141131,36.36278299444531,36.36278299444531,33.09704785904391,34.23436509846239,30.500257761810133,33.48015017865214,21.69926827832589,30.43188306181669,31.666241239424664,28.29861820675295,31.032873742770434,24.362265714708116,23.72191960952622,23.72191960952622,0.0,26.357688455029134,0.0,23.72191960952622,26.357688455029134,0,0
+2017/07/21 04:00:00,72.12385202385998,0,88.72588128136032,0,0,0,25.992028408000223,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,6.09868764866639,0.0,0.5250024175592564,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3231.191265938318,1986.5765565921392,2921.1842572516775,1846.8292303636229,13579.704962966152,5587.498527118484,3646.989639902489,5198.653200213732,3570.5276893726445,14864.874910441984,4658.988318354705,3054.5630061202332,4360.904032200508,2984.221611755584,19047.712686423933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1578123222454295,1.1578123222454295,1.1602310287795732,1.1602310287795732,1.1513817298664855,1.1513817298664855,1.139865214485402,1.139865214485402,1.0994303526341709,1.0994303526341709,0.7094243343051715,0.7218155427720443,0.6871462237383544,0.722339482558253,0.5912457839359111,0.6855680826943107,0.7011190743489368,0.666214924801953,0.7028861284502773,0.632276441298718,33.21212888040854,33.21212888040854,33.32735619112478,33.32735619112478,32.906664899180456,32.906664899180456,32.36287935517885,32.36287935517885,30.48787231916421,30.48787231916421,15.587236693187563,15.96401455690797,14.926487472210042,15.98009164348312,12.327536111512075,14.880494367298155,15.338404883511714,14.325230913492277,15.391097904882557,13.390672267790578,72.12385202385998,72.12385202385998,0.0,80.13761335984442,0.0,72.12385202385998,80.13761335984442,0,0
+2017/07/21 05:00:00,117.17017029972138,0,212.9421150752648,0,0,0,35.323690980525306,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,8.535429932818223,0.0,0.5250063564220037,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5952.003863362732,3668.4765259928513,5599.9082195686715,3173.8687235969755,30850.091495770565,5430.471462985816,3460.628494593466,4892.343956442416,3339.141452356921,19348.675639154273,4801.843064544096,3059.7802152678837,4400.957507299791,2963.8981826374,21324.34683347054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0891124511144503,1.0891124511144503,1.092199892576799,1.092199892576799,1.0891847468814042,1.0891847468814042,1.0833088747452058,1.0833088747452058,1.0816982592448985,1.0816982592448985,0.5563998601549948,0.5639704102932924,0.5441376117694536,0.5721681334256539,0.49365294278403116,0.5300121858291409,0.5387854772204269,0.5196261574499058,0.5486249863659122,0.5159682412559667,30.018216437262495,30.018216437262495,30.158369168618265,30.158369168618265,30.021494506930182,30.021494506930182,29.755657896976686,29.755657896976686,29.68299959628233,29.68299959628233,11.482018698492283,11.661235300442158,11.197008092663552,11.858102054610896,10.09218104576125,10.87676763271189,11.074651685683378,10.646815879799732,11.300551690405669,10.566939469397127,117.17017029972138,117.17017029972138,0.0,130.18907811080152,0.0,117.17017029972138,130.18907811080152,0,0
+2017/07/21 06:00:00,134.4317929492501,0,631.156016534814,0,0,0,39.377004375167616,0.0,11.110595677687485,0.0,73.80580873715317,0,9.613288737462943,2.522498949120857e-09,0.5250954192564024,0,0,0.0,400.4687252032771,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6541.900284884622,4024.57560102914,6237.676664525437,3468.2401178978307,35883.72779614217,5385.626210065269,3394.769579159148,4980.603575127999,3308.6629293187298,22788.293154265157,4808.675525601545,3023.6436082279893,4513.382434525948,2959.323549672491,24451.45211623425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03360321382178265,0.0010631822619489647,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0726634479983372,1.0726634479983372,1.0762532566504888,1.0762532566504888,1.0714733575757514,1.0714733575757514,1.0673489506366447,1.0673489506366447,1.0709749367644077,1.0709749367644077,0.5183823688544563,0.5267853956549605,0.5067366626139173,0.5381054129235356,0.4640891393021971,0.491449730283024,0.49991333113644537,0.48089961027552214,0.5132277060736506,0.48319793128982624,29.277100636015405,29.277100636015405,29.438034255466476,29.438034255466476,29.22384814790584,29.22384814790584,29.039682039497166,29.039682039497166,29.20156035553312,29.20156035553312,10.619590821180495,10.804824905038387,10.367926804077925,11.05919344362799,9.496323248910528,10.046474788247366,10.223198859974033,9.830513907665662,10.507474838193573,9.87715126992569,134.4317929492501,134.4317929492501,0.0,149.36865883250013,0.0,134.4317929492501,149.36865883250013,0,0
+2017/07/21 07:00:00,216.53371568085544,0,759.7087603565553,0,0,0,67.36999102305644,0.0,9.930037052474946,0.0,69.33401494192633,0,39.380909295966944,3.0136808082975655e-09,27.08678816196287,0,0,0.0,493.53111651247445,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8114.007595098563,5307.425699157891,7659.22121987665,5089.185729235979,49474.47645101159,9293.353992131662,6598.424529303861,8858.678467679369,6485.099333955175,49708.90694284911,8727.988073397017,6222.127987444772,8337.46746000694,6154.306167036777,52051.43235589044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04044745712272653,0.0012797293491597006,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0796734631858487,1.0796734631858487,1.0828487939360476,1.0828487939360476,1.0784410571585152,1.0784410571585152,1.0768947121256343,1.0768947121256343,1.0791037817912992,1.0791037817912992,0.5449679544788046,0.5665031244463162,0.5384680641187007,0.5725702492441223,0.5033556073821508,0.5230895413404666,0.5455517605869573,0.5180714601962126,0.5522050442385595,0.5206232124810078,29.591784987084992,29.591784987084992,29.73489345895284,29.73489345895284,29.536336672691434,29.536336672691434,29.46683880563154,29.46683880563154,29.566147328419518,29.566147328419518,11.216101974609316,11.72174676863267,11.06743421486172,11.867833794241676,10.295960584521211,10.722977995512878,11.229544591386102,10.612795856630882,11.383785392228916,10.668688573243145,216.53371568085544,216.53371568085544,0.0,240.5930174231727,0.0,216.53371568085544,240.5930174231727,0,0
+2017/07/21 08:00:00,240.23044152381905,0,810.3225182647949,0,0,0,77.13475660154054,0.0,11.47158159596123,0.0,83.2008179303116,0,39.380909295966944,2.9627647518551458e-09,25.610400894621776,0,0,0.0,490.90934565189775,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9819.576429584535,6283.117322899595,9254.922932956437,6507.541781018249,57814.92669319587,10670.692208986524,7751.666799616298,10182.85020289347,7957.439935893663,56348.30419268381,10199.835548968562,7429.883294338094,9788.402070680937,7713.687382293163,58812.40010816196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04314217108370911,0.0013649882205146108,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.114980028837499,1.114980028837499,1.1123167056312113,1.1123167056312113,1.1090003698600799,1.1090003698600799,1.1363711144221245,1.1363711144221245,1.1049399645613402,1.1049399645613402,0.5857653979650169,0.611377881299501,0.5776672905353015,0.6346439390792551,0.5396795636074956,0.5733379952780524,0.5993804119098983,0.567486757451811,0.6280600333872368,0.5555334505822133,31.20250519634709,31.20250519634709,31.07952698473423,31.07952698473423,30.926728057003743,30.926728057003743,32.198734316207364,32.198734316207364,30.740150137396313,30.740150137396313,12.191066249676709,12.840044854407637,11.991797021282537,13.454245192028168,11.095005256328548,11.886433755556624,12.532503876314351,11.745322685755497,13.27805389134653,11.461666789794577,240.23044152381905,240.23044152381905,0.0,266.92271280424336,0.0,240.23044152381905,266.92271280424336,0,0
+2017/07/21 09:00:00,268.1228376670465,0,835.1644460086111,0,0,0,86.96731307377638,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.858243619485291e-09,20.869116004950527,0,0,0.0,462.5157446268978,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13284.949323833589,7133.006945667453,10827.383500743035,10333.065350559367,64362.09966015082,13080.940933023465,8545.341604567619,11255.880301718793,10856.444601608491,60540.243831651824,12941.853948787968,8380.940962636996,11103.619790152949,11003.141519904733,63295.50480009653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044464773717371384,0.0014068344459135993,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1993691484484401,1.1993691484484401,1.1310355456407044,1.1310355456407044,1.132422016972072,1.132422016972072,1.321049705808666,1.321049705808666,1.1230239838159817,1.1230239838159817,0.6469460657141337,0.6318041760057691,0.598032963797097,0.7514404667394461,0.5541113883731003,0.6564357907105544,0.6311745858058894,0.5991290600248121,0.7781388037023094,0.5724620473435292,35.21662592577944,35.21662592577944,31.948842849398332,31.948842849398332,32.01368940057206,32.01368940057206,41.35607511301785,41.35607511301785,31.57536486764272,31.57536486764272,13.788500197240651,13.378019915656438,12.498353845014606,16.891579044195012,11.42833318326305,14.050824082859435,13.361167755431055,12.526127578363457,17.759709842553008,11.86521447397,268.1228376670465,268.1228376670465,0.0,297.9142640744961,0.0,268.1228376670465,297.9142640744961,0,0
+2017/07/21 10:00:00,302.36546563603963,0,920.27803026523,0,0,0,90.34950437662533,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.8046200050508585e-09,18.61426717159947,0,0,0.0,458.9034476021563,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16252.060870217658,8168.778666813074,12460.956754103778,11770.747453694448,73651.25358072383,13284.308994641768,8504.61909861771,10492.923442591105,11009.54713587801,57037.52032900452,13422.022042545655,8428.231698254442,10452.639005490644,11350.331000762275,60049.274898116775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04899628398739306,0.001550208272133862,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2447874739852571,1.2447874739852571,1.153136599479206,1.153136599479206,1.1514624545760985,1.1514624545760985,1.29585235363139,1.29585235363139,1.1571501121886776,1.1571501121886776,0.6680435955830736,0.6303548365456618,0.5945576059393404,0.7451020042616118,0.552202074357222,0.6838850054162073,0.6352013005797995,0.5999338418652584,0.7716713584696314,0.5711867357583059,37.46425498539307,37.46425498539307,32.98989535657192,32.98989535657192,32.910491404763846,32.910491404763846,40.055254268826594,40.055254268826594,33.180612954859384,33.180612954859384,14.377003949613325,13.339251403992293,12.410637305322496,16.689952746376065,11.383716114423038,14.831561678207052,13.469247027685384,12.546552959999644,17.546620562907947,11.83438037250437,302.36546563603963,302.36546563603963,0.0,335.9616284844885,0.0,302.36546563603963,335.9616284844885,0,0
+2017/07/21 11:00:00,335.0778663738657,0,977.1514216047725,0,0,0,106.93599488556025,0.0,16.693521233099577,0.0,147.76209134187457,0,39.380909295966944,2.8582436194852917e-09,20.873374412051625,0,0,0.0,462.54131017288245,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18995.02604599256,9200.068772886405,14003.297682821683,11327.425209387904,82761.65374988152,17115.69007338814,9942.230723604183,13456.453472214604,11812.36562578489,70615.09379155895,17489.789013695223,9977.781315675053,13559.216622926733,12141.309567965507,73966.01044404462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05202426546881042,0.0016460114955287042,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2916884118578993,1.2916884118578993,1.1697521127300332,1.1697521127300332,1.1667887470574585,1.1667887470574585,1.2692135286208852,1.2692135286208852,1.1795711959806414,1.1795711959806414,0.7038043238894215,0.6329747706139807,0.6018692600217658,0.7322765955977592,0.5616165663697458,0.7320458349504237,0.6463412961295636,0.6155715568701784,0.7601248760127702,0.5845466979601466,39.84164285536857,39.84164285536857,33.78270016339573,33.78270016339573,33.64067864668337,33.64067864668337,38.695668579366846,38.695668579366846,34.25519711397021,34.25519711397021,15.418531419416581,13.409398781347662,12.595789005382898,16.287247836622498,11.605246822130368,16.280066872167467,13.771914913473907,12.949018236373917,17.170622705307068,12.160895932311917,335.0778663738657,335.0778663738657,0.0,372.3087404154063,0.0,335.0778663738657,372.3087404154063,0,0
+2017/07/21 12:00:00,325.36702005514405,0,938.0501377076328,0,0,0,117.85401924719012,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.8046200050508585e-09,18.569327720507065,0,0,0.0,458.93037878828693,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19176.05307189493,9399.747693430652,14378.506435245617,10136.490309164314,83749.40473018134,20231.6655774148,11151.975414857512,16290.458322036844,12100.927850315766,82576.518445678,20839.28058998788,11297.700365812549,16568.42255120333,12395.20326978265,86136.82775359887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04994248415154504,0.0015801453857717095,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2875935740896853,1.2875935740896853,1.1704219788081913,1.1704219788081913,1.1695168074045668,1.1695168074045668,1.213575895181346,1.213575895181346,1.176661765785266,1.176661765785266,0.7301772080373112,0.6434123913287053,0.6201086022502872,0.7076872522422081,0.5760909234571701,0.7654981715789689,0.6650196788559571,0.6424115816765062,0.732393261677132,0.6015266562336506,39.631964314626146,39.631964314626146,33.81484123652125,33.81484123652125,33.771413151998644,33.771413151998644,35.91353829269971,35.91353829269971,34.11489042979112,34.11489042979112,16.22200198794428,13.691816611551687,13.067773672396797,15.53494632400151,11.953338395860271,17.34488983263246,14.291469563037992,13.664532214060287,16.29087920075662,12.587061498541246,325.36702005514405,325.36702005514405,0.0,361.5189111723823,0.0,325.36702005514405,361.5189111723823,0,0
+2017/07/21 13:00:00,322.0834707021697,0,874.7446686485089,0,0,0,117.07508744348308,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.750075332656767e-09,16.354183786853845,0,0,0.0,431.11526224170717,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18044.006154545074,9685.654733265741,14351.765468956053,9722.361942813746,81337.94947995154,19881.149693618074,11533.171869117745,16248.536500530055,11875.939202239793,80559.68326821324,20527.265924424024,11770.698910197494,16620.20185984592,12142.024321016903,84059.28824977131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04657205408805431,0.0014735073279464187,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2646220527588818,1.2646220527588818,1.1932748762433023,1.1932748762433023,1.17335627272105,1.17335627272105,1.206146934161496,1.206146934161496,1.1696113789470077,1.1696113789470077,0.731753025232756,0.6715110786765296,0.632416470441705,0.7066841440400187,0.5773997801295295,0.765223953432178,0.6969804796788,0.6565473396175919,0.7300842065820113,0.6012707490908008,38.463049676394455,38.463049676394455,34.919448516558006,34.919448516558006,33.95579378683766,33.95579378683766,35.54839343249715,35.54839343249715,33.775949310324364,33.775949310324364,16.270958317257396,14.475572366630473,13.39442561651775,15.50480961484702,11.985262974531409,17.335966508193778,15.21552077516705,14.053930832812142,16.219116022736216,12.580545830333733,322.0834707021697,322.0834707021697,0.0,357.8705230024107,0.0,322.0834707021697,357.8705230024107,0,0
+2017/07/21 14:00:00,297.4551981222515,0,834.496176731683,0,0,0,108.5132395773174,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.694600332958029e-09,14.041131992045555,0,0,0.0,426.35712283742544,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16492.73670337579,10287.12919106842,13667.127915787603,9255.187056637651,75623.55538807338,16925.047597012293,11333.396838069082,13722.872633718325,10817.567384450542,68817.34219396806,17487.795479715838,11695.298425403676,14106.919974540735,11077.212336679882,72070.3097808459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04442919456607621,0.0014057087463673341,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2357678668338827,1.2357678668338827,1.241721592034468,1.241721592034468,1.163932584493406,1.163932584493406,1.1946802298724613,1.1946802298724613,1.151406335047321,1.151406335047321,0.7082459895723476,0.7001868819262328,0.6202730471500728,0.692834175126481,0.5600463347936284,0.7372619882743939,0.733725347450853,0.6437987662786199,0.7149866785472898,0.581992814580965,37.01342739862116,37.01342739862116,37.310772239797025,37.310772239797025,33.504050225440054,33.504050225440054,34.98788245594557,34.98788245594557,32.9078312100241,32.9078312100241,15.55175147196124,15.310661489504255,13.07209473057074,15.09314948132976,11.568030939537124,16.442945212713326,16.332383343878533,13.702361711953728,15.755551912265645,12.097880663847448,297.4551981222515,297.4551981222515,0.0,330.5057756913905,0.0,297.4551981222515,330.5057756913905,0,0
+2017/07/21 15:00:00,278.93468929680284,0,838.8319361929942,0,0,0,96.57643974069802,0.0,16.693521149792748,0.0,108.75639138185811,0,39.380909295966944,2.6946003329580295e-09,14.095452523338272,0,0,0.0,430.6928822987367,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14641.17270310887,9136.699080162314,13226.85869465835,8890.788995287521,74110.84051400148,13572.888872709102,9853.922230656292,11404.807283479679,9850.103338230667,60327.79882566291,13933.628387316972,10143.76448721871,11751.70959066915,10069.453580818843,62880.13130468857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04466003361132236,0.0014130123328508345,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.188981124450439,1.188981124450439,1.1810854012146064,1.1810854012146064,1.1599525539841917,1.1599525539841917,1.1885798796048097,1.1885798796048097,1.1524521996340191,1.1524521996340191,0.6616855365335517,0.6617707998763047,0.6052736707422905,0.6832674240724232,0.5516454174452523,0.6760462238448597,0.6800353422880786,0.6211209333092201,0.6976416924244401,0.5677721753176339,34.71072200803519,34.71072200803519,34.32831998472487,34.32831998472487,33.31408036258574,33.31408036258574,34.69124452729311,34.69124452729311,32.957423909965485,32.957423909965485,14.197619220696609,14.200013236666308,12.682789965054724,14.813637242136465,11.370737846409995,14.605276228970368,14.720099649171786,13.094392947172267,15.235104018380852,11.752171495150094,278.93468929680284,278.93468929680284,0.0,309.92743255200315,0.0,278.93468929680284,309.92743255200315,0,0
+2017/07/21 16:00:00,299.3103293232691,0,898.1861707504079,0,0,0,94.08033067077241,0.0,16.693521149792748,0.0,131.64086955684016,0,39.380909295966944,2.6946003329580295e-09,14.082723444747968,0,0,0.0,436.8115880873341,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14373.237822495443,9029.083694258994,13315.894151307584,8918.673920076099,76524.24793713204,12979.178854346306,9329.809335262531,11237.530687533605,9372.324604799036,59680.60651370457,13130.697345842573,9507.088009250776,11453.162535276997,9512.76396493093,61899.40991464215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047820097023236294,0.0015129945364578876,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1888813204478323,1.1888813204478323,1.185048787262787,1.185048787262787,1.1660630632041298,1.1660630632041298,1.1912566530732736,1.1912566530732736,1.1721447460292986,1.1721447460292986,0.64408288464902,0.6540194286093337,0.5958542699306935,0.6715134949245453,0.5495282626549346,0.6530086540375709,0.6687365481471095,0.6063441221687561,0.6818917734596356,0.5637271779635682,34.7058768153567,34.7058768153567,34.52004132202043,34.52004132202043,33.60594077374992,33.60594077374992,34.82127185933169,34.82127185933169,33.89756479032435,33.89756479032435,13.710120115063447,13.983658312214047,12.443303243596802,14.47564123360317,11.32149979340754,13.955637650377327,14.396660545387192,12.710249691327718,14.773770196266895,11.655438649389353,299.3103293232691,299.3103293232691,0.0,332.5670325814101,0.0,299.3103293232691,332.5670325814101,0,0
+2017/07/21 17:00:00,314.08403010658253,0,906.258876345746,0,0,0,102.13523716171636,0.0,16.630907673226492,0.0,133.89528835348938,0,39.380909295966944,2.804620005050859e-09,18.609712416924406,0,0,0.0,444.8842936826723,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14448.25479144036,10820.717248251998,14053.882238220753,8996.354017347852,79342.22169178876,14562.50562171428,11275.87410501979,13507.293528338087,9972.5535677412,68574.21883001385,14596.681375086524,11548.093316959765,13697.081636145715,10051.693107390885,70937.5200547628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048249893848638946,0.0015265930084205268,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.184753916220895,1.184753916220895,1.292944410755199,1.292944410755199,1.1837283398821379,1.1837283398821379,1.188098140814789,1.188098140814789,1.1790017916886169,1.1790017916886169,0.6446595488000919,0.7197576245106475,0.6156170102664967,0.6693610920566427,0.5602603136157537,0.6517776956466352,0.7474359575613138,0.6305844882275758,0.6784040565904104,0.5763286784050503,34.50576137653863,34.50576137653863,39.906034306511394,39.906034306511394,34.45611514621926,34.45611514621926,34.66786593583784,34.66786593583784,34.22771766406373,34.22771766406373,13.725877810323311,15.900981717740692,12.950203531794529,14.41439444553022,11.573096135018872,13.921572862737108,16.763995483230985,13.345388301502311,14.673061254090328,11.959131998711243,314.08403010658253,314.08403010658253,0.0,348.9822556739806,0.0,314.08403010658253,348.9822556739806,0,0
+2017/07/21 18:00:00,307.2669462549868,0,916.7692622551335,0,0,0,109.54068361434042,0.0,18.343669588713478,0.0,110.93442390708215,0,39.380909295966944,2.962764751855149e-09,25.635284643466772,0,0,0.0,490.88503210460397,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14043.43040049502,9166.096421704904,13240.516567152703,8748.989919673946,79607.98003828735,16687.891249770615,11176.329427748016,15533.833909583638,10759.555255184297,80614.05797149084,16561.48507720339,11211.206331489002,15565.553419037686,10744.198126115352,82856.00865971982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04880947457956765,0.0015442977526871652,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.166462412550421,1.166462412550421,1.1679547555406227,1.1679547555406227,1.1495112816611033,1.1495112816611033,1.1691205319174423,1.1691205319174423,1.1755467044064662,1.1755467044064662,0.6458422211690547,0.6571831421788542,0.610498678765045,0.6628080813572876,0.5791021825545067,0.6467571013768088,0.6622957608692878,0.6154680577777504,0.665522133956788,0.5934458218410974,33.625055286446994,33.625055286446994,33.69652836106353,33.69652836106353,32.81805968614117,32.81805968614117,33.75240862858746,33.75240862858746,34.061184466778116,34.061184466778116,13.75824015662701,14.071648873183463,12.817295407787825,14.229163147434207,12.026897816902647,13.783316310058197,14.214759979843876,12.946319608656339,14.305654554099874,12.38268702094041,307.2669462549868,307.2669462549868,0.0,341.40771806109643,0.0,307.2669462549868,341.40771806109643,0,0
+2017/07/21 19:00:00,296.40519247595563,0,901.7812560568597,0,0,0,104.7693588081328,0.0,20.084827655822497,0.0,101.68988858149199,0,39.380909295966944,3.013680808480552e-09,27.048232929073453,0,0,0.0,511.3873784188743,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13214.49219912062,8281.311454629646,12422.848244014971,8174.892908838234,76854.36389056688,16379.233987626458,10593.017452536445,15295.07374248672,10433.66909295114,81586.79789387282,16195.22865362898,10517.075022813442,15282.630776986647,10374.32120593776,83442.90384103083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048011502027855445,0.0015190504573837434,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1586862596309466,1.1586862596309466,1.1547060079094873,1.1547060079094873,1.1446757591217478,1.1446757591217478,1.1595179816156562,1.1595179816156562,1.1711032207261214,1.1711032207261214,0.6519373751924921,0.656708066459705,0.6214232101669904,0.6639548938034785,0.5917591377491379,0.648350284834918,0.6580290398842277,0.6224619051000385,0.6621900551481196,0.6038504042255483,33.25374228246865,33.25374228246865,33.064411749407554,33.064411749407554,32.589509355600015,32.589509355600015,33.29336765571388,33.29336765571388,33.84754218557431,33.84754218557431,13.9259880291945,14.05840818623831,13.102349947909005,14.261445371196217,12.34038615984089,13.827070850292756,14.095248834172864,13.12972230921713,14.211789627640783,12.646356679814332,296.40519247595563,296.40519247595563,0.0,329.33910275106183,0.0,296.40519247595563,329.33910275106183,0,0
+2017/07/21 20:00:00,294.6293604269251,0,824.3696898350023,0,0,0,100.86218978350605,0.0,24.999863057464953,0.0,106.16168237671882,0,39.380909295966944,2.9109554453050575e-09,23.224715910357418,0,0,0.0,469.46616470956116,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11029.591525188953,6391.385448418951,10635.710507600894,7028.762730345564,69881.5689976196,17235.964588542196,10654.809538487418,15488.13916441429,10556.070873145976,92961.90153046079,17139.84850198214,10655.917610323679,15595.785427786206,10535.939036862188,94552.93557549914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04389005290294058,0.001388650679958463,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.190610106661882,1.190610106661882,1.1933317269778996,1.1933317269778996,1.1675746423650266,1.1675746423650266,1.1423211001712164,1.1423211001712164,1.1976426412412153,1.1976426412412153,0.6934515012205961,0.696415327239099,0.6561044355632543,0.7033858515103503,0.6431844775369715,0.6881514768823831,0.6936670538237699,0.6536917082779593,0.699821351565247,0.6520962432668792,34.78984581719432,34.78984581719432,34.922215753079996,34.922215753079996,33.67831703840142,33.67831703840142,32.47848626382705,32.47848626382705,35.13232606826864,35.13232606826864,15.11132178259011,15.198797530681404,14.041598686585232,15.40602393949493,13.68559933235366,14.955840553196694,15.1176709081263,13.974568408075697,15.29979301610274,13.930381855141547,294.6293604269251,294.6293604269251,0.0,327.36595602991673,0.0,294.6293604269251,327.36595602991673,0,0
+2017/07/21 21:00:00,275.1536004359358,0,810.3313983079471,0,0,0,81.12483490831836,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.962764751855148e-09,25.56480327648931,0,0,0.0,490.91822569505007,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8550.987440565852,4716.246807578525,8351.599406300456,6179.502562865483,57945.5812205165,13264.173942609063,8065.026726943658,11657.082828228144,7989.594623467994,71832.52533759974,13021.249617055086,7966.42205855021,11625.27487000871,7860.751210764104,72823.88409221794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04314264386378404,0.0013650031789466267,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1937347124348925,1.1937347124348925,1.197935907339465,1.197935907339465,1.1693354273867216,1.1693354273867216,1.1274817494344833,1.1274817494344833,1.1963000274016633,1.1963000274016633,0.6975658423182514,0.6990229763960905,0.6609668245270878,0.7047975402342944,0.6536465271980944,0.6882820904639507,0.6918300061806557,0.654379634222004,0.6972178692587914,0.6588179692275976,34.941833970320786,34.941833970320786,35.14663923487856,35.14663923487856,33.76271395885989,33.76271395885989,31.782914719992135,31.782914719992135,35.06683021876411,35.06683021876411,15.232856595045774,15.276074637754107,14.177451810025232,15.44824734065375,13.973315595874766,14.959657635974565,15.063624815968396,13.993654623065439,15.222549407798624,14.117287360702974,275.1536004359358,275.1536004359358,0.0,305.7262227065953,0.0,275.1536004359358,305.7262227065953,0,0
+2017/07/21 22:00:00,189.8592165787734,0,622.233267149585,0,0,0,53.23990099627531,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.858243619485291e-09,20.866357974317918,0,0,0.0,462.52668084313643,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3577.9787921712714,1462.6726532424211,3688.5384753062453,4317.160926928584,27827.6195067518,9147.840504536489,5373.115027173224,7907.7690177409695,5277.033396213988,50104.89616120939,8669.82449950142,5115.273589852546,7669.628636204239,4970.490418342254,50608.01080606477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0331281600353731,0.0010481518912867716,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1494043046762115,1.1494043046762115,1.1532546934899748,1.1532546934899748,1.1267751032039248,1.1267751032039248,1.0771280150712454,1.0771280150712454,1.1322891858186428,1.1322891858186428,0.6811804397808702,0.6817578289376975,0.6474821196342655,0.6866905376264681,0.6427937502675635,0.6678861098694029,0.6701556965615908,0.6372690914269963,0.6746472628353922,0.6432446547064073,32.81299541021235,32.81299541021235,32.99549983406975,32.99549983406975,31.749970351984445,31.749970351984445,29.477318848388805,29.477318848388805,32.00747405606792,32.00747405606792,14.753187492953046,14.769892789383377,13.803214270652418,14.913195968199389,13.67494589188071,14.372539540625482,14.436981622068416,13.525021022860955,14.565171395359101,13.687240691483169,189.8592165787734,189.8592165787734,0.0,210.954685087526,0.0,189.8592165787734,210.954685087526,0,0
+2017/07/21 23:00:00,129.69198125496652,0,474.6924835901808,0,0,0,42.32156695019651,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.638185736609653e-09,11.859433243293543,0,0,0.0,421.4569548213646,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1341.7228384669886,217.1887717624477,1348.5662331997958,2882.269734311403,12953.377055819325,8184.293496953138,4907.4472791926955,6794.812575387222,4877.916203314253,43342.83956476828,7583.147502992495,4580.478322053737,6413.550222738253,4530.093461883255,43495.21925411806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02527297943422844,0.0007996194525791111,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1226364944599179,1.1226364944599179,1.1256400157790942,1.1256400157790942,1.1025118215487753,1.1025118215487753,1.0367019223282061,1.0367019223282061,1.0940170367681628,1.0940170367681628,0.6766637724998744,0.676781015787552,0.6457756311118318,0.6812830355031992,0.6394090115668504,0.6604863658005379,0.6620532038544991,0.6329927106786393,0.6660518389101235,0.6375045582569528,31.557354565682502,31.557354565682502,31.697086009065927,31.697086009065927,30.628841746495752,30.628841746495752,27.69028240638508,27.69028240638508,30.241010754385357,30.241010754385357,14.623006802726891,14.62637486422031,13.756416391945635,14.75615478747362,13.582935820231754,14.163982383267879,14.207944797515765,13.409880143791426,14.320620685134642,13.531383971863846,129.69198125496652,129.69198125496652,0.0,144.10220139440725,0.0,129.69198125496652,144.10220139440725,0,0
+2017/07/22 00:00:00,49.68406319696461,0,456.56732850807407,0,0,0,5.7835450811899305,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,3.174155494191586,2.5808222742666515e-09,9.540728554202213,0,0,0.0,403.3317997392578,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,2582.597805505135,1569.243103100927,15854.756887447369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024307982752233868,0.0007690876302189781,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.115853340489334,1.115853340489334,1.111649304906902,1.111649304906902,1.0425525353113103,1.0425525353113103,1.0030645592465108,1.0030645592465108,1.0309613100576578,1.0309613100576578,0.900265943691046,0.8881866862146162,0.8357063803543554,0.8929722741796001,0.8322364540106013,0.8580030597912084,0.8521025980666425,0.8044966287238468,0.8553246354728179,0.8281320040610359,31.242881656551788,31.242881656551788,31.048747106366733,31.048747106366733,27.945262668226064,27.945262668226064,26.248864011728244,26.248864011728244,27.441315261524494,27.441315261524494,22.113820718039065,21.655610851520095,19.734532210594296,21.836434067833423,19.61154622004625,20.536786564265284,20.322469813713596,18.646529103960475,20.439321671782963,19.466721490249583,49.68406319696461,49.68406319696461,0.0,55.204514663294006,0.0,49.68406319696461,55.204514663294006,0,0
+2017/07/22 01:00:00,23.72207824678172,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.524982823103927,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2105266181490362,1.2105266181490362,1.1987237655701861,1.1987237655701861,1.1298955343414725,1.1298955343414725,1.1031335828715465,1.1031335828715465,1.1260297256695067,1.1260297256695067,0.9350519958996069,0.9175394891208758,0.855427398293823,0.9224031889655028,0.8869860634583193,0.8991710142351608,0.8862164629880952,0.8287570877651623,0.8890057803254782,0.8821469797562015,35.76347295211936,35.76347295211936,35.18510383675277,35.18510383675277,31.89557036044114,31.89557036044114,30.657324854648948,30.657324854648948,31.71523804047959,31.71523804047959,23.466356804760167,22.779357997973648,20.443055606994648,22.968924085533274,21.610392197147334,22.072041216911813,21.581438001056753,19.48873187302523,21.68649393715799,21.428737519758144,23.72207824678172,23.72207824678172,0.0,26.357864718646354,0.0,23.72207824678172,26.357864718646354,0,0
+2017/07/22 02:00:00,28.344410311964474,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250472254915775,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2469433479130225,1.2469433479130225,1.2320040738871243,1.2320040738871243,1.1700762258937363,1.1700762258937363,1.149470481202076,1.149470481202076,1.1912363513549404,1.1912363513549404,0.9503384650337547,0.9310538602090493,0.8686604620593186,0.9359978912410409,0.9093331434808644,0.9178481338600893,0.9030638817142174,0.8434217390439545,0.9058404233213869,0.9024666110437483,37.572328363237766,37.572328363237766,36.825940591311934,36.825940591311934,33.79824983643924,33.79824983643924,32.81612815524228,32.81612815524228,34.82028488706399,34.82028488706399,24.076014203010132,23.308433476475187,20.927540011812766,23.50381209844835,22.4616691783621,22.791359385938748,22.220803533251697,20.009794303326757,22.327282159859323,22.19793943326539,28.344410311964474,28.344410311964474,0.0,31.493789235516083,0.0,28.344410311964474,31.493789235516083,0,0
+2017/07/22 03:00:00,23.722208950362024,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251135266842332,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2254956573203009,1.2254956573203009,1.2086569454263991,1.2086569454263991,1.155646688398321,1.155646688398321,1.1442772904581389,1.1442772904581389,1.188035159792689,1.188035159792689,0.9516969345496771,0.929829632409502,0.8681712523461481,0.9346196642684758,0.930153697489419,0.9208536122197626,0.9040074258003764,0.8444803797268288,0.9065751003329602,0.9194702722603768,36.50263671410909,36.50263671410909,35.671589677298996,35.671589677298996,33.10911282953417,33.10911282953417,32.570708957065094,32.570708957065094,34.66480999851903,34.66480999851903,24.130639849348086,23.26020491153031,20.90950035461303,23.44924931917994,23.272965661041553,22.908425101058214,22.25695280075125,20.047757418422194,22.355508823512594,22.854497839900034,23.722208950362024,23.722208950362024,0.0,26.358009944846692,0.0,23.722208950362024,26.358009944846692,0,0
+2017/07/22 04:00:00,61.49265742542552,0,88.72588128136032,0,0,0,13.592886138900283,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,10.310785288035833,0.0,0.5250875864263227,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1174.7544042999732,0.0,3549.6662402402203,2087.1712087132973,2840.775366830589,2060.218663683029,16837.090586741935,2881.5582621390795,946.1238216342464,2366.40551455247,0.0,13493.03237932913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.114588950841426,1.114588950841426,1.1081612277948714,1.1081612277948714,1.0884715134875282,1.0884715134875282,1.0507375047986784,1.0507375047986784,1.0956985346750936,1.0956985346750936,0.6649522500453896,0.6587610214840953,0.631367558123067,0.6644880504817472,0.6226351882861658,0.6434252951491549,0.6721915856066669,0.6125098866019371,0.7250596713006692,0.6319981617889722,31.184432441633234,31.184432441633234,30.888123457937738,30.888123457937738,29.989162625480475,29.989162625480475,28.30406886596556,28.30406886596556,30.317584219059853,30.317584219059853,14.28956678812473,14.115695637891022,13.366331193090573,14.27647287591499,13.134293336548723,13.692168683314975,14.494977901610525,12.869385000153656,16.06375049183596,13.38321577374424,61.49265742542552,61.49265742542552,0.0,68.32517491713946,0.0,61.49265742542552,68.32517491713946,0,0
+2017/07/22 05:00:00,83.53029840029441,0,230.72710395209728,0,0,0,6.190822324491045,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,4.898047163950813,0.0,0.5774217226528092,0,0,0.0,17.784988876832454,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2335.9471497216923,19401.48964314964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.012284081915513738,0.00038865978909541766,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.114669560162083,1.114669560162083,1.1102981064237425,1.1102981064237425,1.1021425039151167,1.1021425039151167,1.052910422225715,1.052910422225715,1.0879941240995887,1.0879941240995887,0.8533058105641208,0.8375443386803553,0.7958467953718477,0.8428330309328571,0.8024687107746002,0.8004986218219141,0.8174114075878658,0.7532413775803212,0.8464011467226292,0.8077726452944,31.18815719542826,31.18815719542826,30.986476835639337,30.986476835639337,30.611929381348972,30.611929381348972,28.399730719869027,28.399730719869027,29.96753170516544,29.96753170516544,20.36605562044599,19.799879735859733,18.352254826284863,19.98870330410344,18.577253665409643,18.510120240433082,19.091782216598645,16.949179899174993,20.11675584642221,18.758807770307044,83.53029840029441,83.53029840029441,0.0,92.81144266699378,0.0,83.53029840029441,92.81144266699378,0,0
+2017/07/22 06:00:00,101.92350346247576,0,617.2215476541614,0,0,0,8.307567760295674,0.0,8.33396954093373,0.0,80.56906512710079,0,4.188037670585007,2.5225140201496443e-09,0.5248633610380657,0,0,0.0,386.5342563226247,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2620.1706517474886,26566.95220088533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03286133237722272,0.001039709650177114,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1191356295547037,1.1191356295547037,1.114888632752921,1.114888632752921,1.1107782492096805,1.1107782492096805,1.0548392610460375,1.0548392610460375,1.0567313123735558,1.0567313123735558,1.0062892478841072,0.9858754020438562,0.9397742786631721,0.9918784523516062,1.0192381226235354,0.9563295225804581,0.9646970941485751,0.8987438250412934,0.9898529644152299,1.0145343474519573,31.39486100601296,31.39486100601296,31.198281083359447,31.198281083359447,31.008597305760077,31.008597305760077,28.484789624766762,28.484789624766762,28.568356199142528,28.568356199142528,26.385213177422628,25.528719767681523,23.65370294358189,25.778938810976825,26.936667212623362,24.317467584103113,24.65705618469822,22.05575406485272,25.694358282543973,26.735620667656036,101.92350346247576,101.92350346247576,0.0,113.24833718052862,0.0,101.92350346247576,113.24833718052862,0,0
+2017/07/22 07:00:00,154.53401443318438,0,652.072666229917,0,0,0,38.18249504011159,0.0,7.11147601579596,0.0,69.33401494192633,0,39.380909295966944,2.522515687646926e-09,0.5251191368610779,0,0,0.0,385.89502238583606,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,700.9059731527182,3747.9583449362717,15063.32789417488,4361.061916959141,2031.907533433458,5180.936905434397,1718.2487188521368,45985.242072515364,4325.709053767893,2002.192287652064,5211.892709090675,1579.1009072732056,45893.485705405576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03471683174465181,0.001098416356772819,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1261820211493372,1.1261820211493372,1.0766054139075802,1.0766054139075802,1.1247998442228249,1.1247998442228249,1.0699236754912684,1.0699236754912684,1.1173855195473223,1.1173855195473223,0.7961427138593637,0.7970260478092378,0.7402233751139169,0.8048222919963214,0.7742185544147325,0.7778608498303674,0.7854675939554026,0.7271451697755476,0.79732768293864,0.7770188780829458,31.72233306235151,31.72233306235151,29.453846086785134,29.453846086785134,31.65796919811369,31.65796919811369,29.154580053517492,29.154580053517492,31.313781370415256,31.313781370415256,18.362269889861793,18.39218750160329,16.53593670838181,18.65767024219491,17.630332829025434,17.750515187675802,18.003330446447308,16.128105168329398,18.40241114225914,17.72268301259804,154.53401443318438,154.53401443318438,0.0,171.70446048131598,0.0,154.53401443318438,171.70446048131598,0,0
+2017/07/22 08:00:00,190.04409986146118,0,727.5063209566305,0,0,0,50.3870337871608,0.0,11.85165572991988,0.0,87.89947186453183,0,39.380909295966944,2.5225156878526947e-09,0.5250291813592786,0,0,0.0,408.09314834373345,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1260.790571994635,36.124713266711964,2224.500327967659,4484.556136177653,25170.00489867121,7551.225468999448,4049.20603393287,7411.236206748885,3787.896579615582,54399.531156494704,6970.849368376967,3693.47364176236,7134.666733447598,3357.362544691545,54349.6760557802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03873297539651298,0.0012254843424346505,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1492598674339782,1.1492598674339782,1.1218608279244537,1.1218608279244537,1.1419805911388397,1.1419805911388397,1.0923830410896307,1.0923830410896307,1.1509534192018422,1.1509534192018422,0.7083503407637896,0.7156435651745822,0.6705933610291557,0.7232757418338863,0.6779952996524458,0.6966664612405759,0.706530028577474,0.662345479946475,0.7169353718461114,0.6799531471322874,32.80615834531042,32.80615834531042,31.52131687205508,31.52131687205508,32.46244579968838,32.46244579968838,30.166693407356206,30.166693407356206,32.88636559353205,32.88636559353205,15.554891535788514,15.775517177332887,14.44943420892281,16.00885016922588,14.661292718171111,15.206227053473853,15.500183319689015,14.216157263373105,15.81483428510866,14.717726783953225,190.04409986146118,190.04409986146118,0.0,211.16011095717909,0.0,190.04409986146118,211.16011095717909,0,0
+2017/07/22 09:00:00,219.33271557979666,0,838.500241995947,0,0,0,39.009177864156804,0.0,11.457689345133073,0.0,106.27511244621549,0,39.380909295966944,2.9109716159179097e-09,23.20982662541338,0,0,0.0,465.8515406142336,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439.8425919750425,0.0,2480.2316221053698,4968.303301571712,24664.35022511958,5027.020715006118,2513.129178153185,5028.088146309375,2323.3007563200877,38599.22614982471,4589.184614160079,2218.857950247119,4870.472775683741,1972.1403189941086,38239.946536764015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044642373966583465,0.0014124535940010835,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1291587278157411,1.1291587278157411,1.1088627951646797,1.1088627951646797,1.11972313882025,1.11972313882025,1.1070220904594932,1.1070220904594932,1.135836246489555,1.135836246489555,0.6511507909036861,0.6542971739961625,0.6211282048726842,0.6622427011008957,0.6297934934985759,0.6446115055215289,0.6486276974297484,0.6174850645018871,0.6589551843279776,0.630238112290691,31.861162099598758,31.861162099598758,30.920397331335764,30.920397331335764,31.422102090469906,31.422102090469906,30.835755558962475,30.835755558962475,32.173642166263875,32.173642166263875,13.90424952802644,13.991365716959905,13.094584314011513,14.213268929087121,13.324260471862686,13.724564448170952,13.834700845664187,12.998994641317012,14.121123180375832,13.336133101647945,219.33271557979666,219.33271557979666,0.0,243.70301731088517,0.0,219.33271557979666,243.70301731088517,0,0
+2017/07/22 10:00:00,256.07197462159326,0,923.7295447191938,0,0,0,48.94922443228658,0.0,15.23016057542018,0.0,131.64086955684016,0,39.380909295966944,2.8582596594875216e-09,20.870810758221094,0,0,0.0,462.3549620561199,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4712.07756539119,1815.439870434679,5765.150902034039,6054.222690407421,46604.098153785664,5685.171402968464,2955.596874268571,5443.906320345516,2857.665879003173,41087.27774106915,5266.8276858947165,2697.5780763259986,5321.150022156316,2538.766765952434,41056.032325426466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049180045173481846,0.0015560223479695982,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1837919772471694,1.1837919772471694,1.1767887379840778,1.1767887379840778,1.167944913590185,1.167944913590185,1.1355508915547987,1.1355508915547987,1.1949391773938305,1.1949391773938305,0.6812969209521335,0.6854781176982327,0.6516542010521688,0.6932327513339553,0.6522290931259829,0.6754632867903997,0.680949894999898,0.648160511294645,0.6903717627205439,0.6548267504967187,34.459194800814686,34.459194800814686,34.12100831682278,34.12100831682278,33.696056774741734,33.696056774741734,32.16025915171524,32.16025915171524,35.00049823936733,35.00049823936733,14.75655642025501,14.877875685153185,13.918158974233009,15.104880532888146,13.934056933335,14.588554538254172,14.746521290594558,13.821853213796473,15.020826990385117,14.006070672997865,256.07197462159326,256.07197462159326,0.0,284.52441624621474,0.0,256.07197462159326,284.52441624621474,0,0
+2017/07/22 11:00:00,288.7396168843273,0,1002.6815050723368,0,0,0,74.75372960998035,0.0,14.988232461786234,0.0,136.4899973586286,0,39.380909295966944,2.9109716159179093e-09,23.126748155054084,0,0,0.0,488.0713936404469,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8363.613016672807,4215.531925540652,9104.846812828662,7350.364413999771,65727.00173393627,10148.82284554796,5880.537164974564,9607.06852445055,5855.464869325929,64716.92956372968,9952.273140112142,5773.017929014447,9658.805876721006,5714.108114580235,65045.88654846643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05338350602292656,0.0016890169191921157,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2175491192592351,1.2175491192592351,1.2158107645039362,1.2158107645039362,1.199454458751626,1.199454458751626,1.1665813846117814,1.1665813846117814,1.2276288949065512,1.2276288949065512,0.6988029382436826,0.701941689730078,0.6705528114376387,0.7098101381241434,0.6659973551152837,0.6977883440974433,0.7020368419250415,0.6714390868754203,0.7115167050887165,0.6712616543526209,36.1094652527521,36.1094652527521,36.02368955511745,36.02368955511745,35.22079359185423,35.22079359185423,33.63075072969882,33.63075072969882,36.60847807301887,36.60847807301887,15.269542513159024,15.362918260944255,14.448280128781647,15.59886797948235,14.319080755032672,15.23944998236233,15.365755616053349,14.473520599920647,15.650394858133993,14.468464730025218,288.7396168843273,288.7396168843273,0.0,320.8217965381414,0.0,288.7396168843273,320.8217965381414,0,0
+2017/07/22 12:00:00,269.5489594623669,0,944.963196446783,0,0,0,67.25466940425903,0.0,14.932575465546352,0.0,124.80122689546741,0,39.380909295966944,2.9109716159179093e-09,23.179578398216126,0,0,0.0,465.84343752743706,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7275.508613869422,3355.765457085067,8140.729119550805,7294.87277984326,56869.44529945127,9042.022697838782,5049.4138918807475,8771.782905172442,4939.81475132429,57788.07990160779,8983.880186258417,5016.630714747334,8967.078794817033,4843.068870128326,58471.0257195609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05031054051936609,0.0015917904326931158,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.210018964994607,1.210018964994607,1.2093536398137965,1.2093536398137965,1.1910125041473434,1.1910125041473434,1.1678583696363656,1.1678583696363656,1.2144010477218963,1.2144010477218963,0.6896234667057134,0.6913910838872079,0.6616066081196044,0.6980572280206333,0.6528659717532855,0.6915091265679302,0.6942953703741584,0.665045121521622,0.7020534552745685,0.6594756142565427,35.73851504797868,35.73851504797868,35.705816495609795,35.705816495609795,34.80940331083832,34.80940331083832,33.69191006759036,33.69191006759036,35.95419177344996,35.95419177344996,14.9989010107181,15.050733267604713,14.195403356958096,15.247420662760518,13.951685783098085,15.054199470521183,15.136189493689955,14.292187581283926,15.366251051653805,14.135679105816294,269.5489594623669,269.5489594623669,0.0,299.49884384707434,0.0,269.5489594623669,299.49884384707434,0,0
+2017/07/22 13:00:00,256.1307120943779,0,905.9750563744926,0,0,0,58.40378934309443,0.0,14.988232461786234,0.0,122.5097643007467,0,39.380909295966944,2.8582596594875216e-09,20.84801668992536,0,0,0.0,462.345649967691,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5643.5544412576355,2268.3366223827284,6719.078839000086,6822.334522548191,48698.3972717026,7404.801931240764,3967.2900530594015,7434.0756638068515,3779.693516303215,50433.437906967716,7388.960007964087,3965.3506421604357,7691.44669343712,3683.741267291317,50935.755952000545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048234783063142085,0.0015261149137004923,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1946797672322185,1.1946797672322185,1.1971001112637802,1.1971001112637802,1.1769676278655403,1.1769676278655403,1.1579397198735564,1.1579397198735564,1.2031751013958265,1.2031751013958265,0.6775430965040098,0.6803070555913807,0.6514253363857133,0.6855487968832125,0.6444962490800467,0.6780407330821178,0.6824058530120446,0.653650104152657,0.6882703082681184,0.6503218405974698,34.987859918112406,34.987859918112406,35.10585388456906,35.10585388456906,34.12962857315219,34.12962857315219,33.21819356287732,33.21819356287732,35.4027622421428,35.4027622421428,14.648281743402634,14.727945732082148,13.911833979908607,14.879932970504981,13.721414083587462,14.662600436601693,14.788658902016337,13.973414776917409,14.95931327998484,13.8813692007907,256.1307120943779,256.1307120943779,0.0,284.5896801048643,0.0,256.1307120943779,284.5896801048643,0,0
+2017/07/22 14:00:00,236.18702042630596,0,866.8700653457121,0,0,0,54.46124902979277,0.0,14.988232461786234,0.0,108.75639138185811,0,39.380909295966944,2.804635903131037e-09,18.60023825409729,0,0,0.0,458.73101145145455,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5794.700034015509,2611.3722803356322,6692.091361778713,6519.011041539484,46387.230555306836,7022.527826309131,3928.073682572014,6894.784990542903,3717.6140470843698,44621.98165165039,6983.312161661807,3932.767836978021,7102.20001334636,3637.825084743024,45255.31769029666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04615280437544225,0.00146024255928053,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1856553069257547,1.1856553069257547,1.1902969400120953,1.1902969400120953,1.169053909872813,1.169053909872813,1.150129088350684,1.150129088350684,1.1896416681418507,1.1896416681418507,0.6713030899360222,0.6755042155946802,0.6466966113388526,0.6784225170133957,0.6351547334958662,0.6717618484863054,0.6781805499286783,0.649031487266371,0.6809578958157765,0.6403461579286247,34.549421834223594,34.549421834223594,34.77462845213432,34.77462845213432,33.749214049732814,33.749214049732814,32.847313651815995,32.847313651815995,34.74279687684144,34.74279687684144,14.469645298689514,14.589728110917505,13.7816572048403,14.673592919413665,13.46799312104801,14.482721059454065,14.666625369919927,13.845812701102574,14.746752595677378,13.608361283989552,236.18702042630596,236.18702042630596,0.0,262.4300226958955,0.0,236.18702042630596,262.4300226958955,0,0
+2017/07/22 15:00:00,226.76453887500728,0,866.9207094498606,0,0,0,47.47989853603638,0.0,14.988232461786234,0.0,106.31215624428707,0,39.380909295966944,2.804635903131037e-09,18.603342334125983,0,0,0.0,458.78165555560327,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4818.297675385514,1912.1042767373965,6029.270416874643,6241.724429832908,43721.50246932253,5495.3481578551255,2926.0598396074693,5673.921573568137,2624.729986877307,38293.22245759328,5408.415902261854,2912.477431778424,5874.816208568015,2487.215304885464,38837.111705940864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04615550070505955,0.0014603278692701244,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1928746724991868,1.1928746724991868,1.2016382563503751,1.2016382563503751,1.176172449754287,1.176172449754287,1.1444653613130706,1.1444653613130706,1.2009481303312493,1.2009481303312493,0.6780250867200821,0.684722863851276,0.6545237143010747,0.686338235701311,0.6449485306734873,0.6768499371676828,0.6862692126218763,0.6553001554154951,0.6874944471608823,0.6495204454590309,34.89997108429978,34.89997108429978,35.32755016911507,35.32755016911507,34.09131832288581,34.09131832288581,32.57958181433003,32.57958181433003,35.29379799213014,35.29379799213014,14.6621500745173,14.855905716024836,13.997654661805711,14.902926138954683,13.733779837707345,14.628355054287255,14.90091470013138,14.019226180059263,14.936650543312041,13.859277758804453,226.76453887500728,226.76453887500728,0.0,251.96059875000807,0.0,226.76453887500728,251.96059875000807,0,0
+2017/07/22 16:00:00,254.80666144517187,0,892.3149148339393,0,0,0,64.0764675245467,0.0,14.83943990903761,0.0,120.17895923267236,0,39.380909295966944,2.750091077288327e-09,16.33088548019817,0,0,0.0,430.9403321708656,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8062.930835431779,4509.5325439168,8849.8750830981,7104.780130068657,58623.10942408558,8336.440647068204,5212.501940722397,8151.227820085887,4774.528100662725,49777.93984481191,8363.176827898074,5330.111717922529,8421.559905611379,4780.336746419262,50538.467277157564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04750750700936511,0.0015031044063122173,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2110596037842019,1.2110596037842019,1.2275648997654092,1.2275648997654092,1.1959580279715074,1.1959580279715074,1.1680693256745789,1.1680693256745789,1.2179546251774303,1.2179546251774303,0.6825279964332179,0.6976367726312926,0.6618543931029857,0.691775605677961,0.6423693649761808,0.6846704072134345,0.7049861772517233,0.6663810292736619,0.6965350564735916,0.6485378156523139,35.78968411346207,35.78968411346207,36.60530112771252,36.60530112771252,35.05015505336617,35.05015505336617,33.702018315395264,33.702018315395264,36.12948624369702,36.12948624369702,14.79219808454748,15.234958238368591,14.202360665019043,15.062026571613785,13.663382243436828,14.854380693824822,15.45389595859561,14.329927657247708,15.202339248462337,13.832228359125466,254.80666144517187,254.80666144517187,0.0,283.11851271685765,0.0,254.80666144517187,283.11851271685765,0,0
+2017/07/22 17:00:00,274.3029602099493,0,920.1254575031116,0,0,0,61.21426104060829,0.0,16.693521149792748,0.0,138.40412594678773,0,39.380909295966944,2.804635903131037e-09,18.61014277398894,0,0,0.0,458.75087484003785,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7681.066999035298,4473.018183998563,8559.732028890101,7098.926859497774,56809.61727321626,7616.1539473992925,4902.520856966389,7624.8498709569685,4332.662719763039,46589.66292042603,7627.235281956089,5031.55967124465,7885.692665085934,4329.236839750357,47423.47931208403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04898816090052621,0.0015499512633276537,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1875973883713622,1.1875973883713622,1.2065095604181129,1.2065095604181129,1.177948326240196,1.177948326240196,1.1604348936203446,1.1604348936203446,1.2070460923348971,1.2070460923348971,0.6560569791942902,0.673761358983111,0.6398110196720546,0.664090809073333,0.6250442040068819,0.656508755225591,0.6799705659389075,0.6434951273625475,0.6669015638632408,0.6313304021562807,34.64357188607701,34.64357188607701,35.56618076487361,35.56618076487361,34.17690312046048,34.17690312046048,33.33707664043658,33.33707664043658,35.592505283158076,35.592505283158076,14.040277823632024,14.539818473232756,13.593837927934914,14.265275097115364,13.197975592624346,14.052856157445618,14.718229617410643,13.694074131943779,14.344653950245785,13.365336870405699,274.3029602099493,274.3029602099493,0.0,304.78106689994365,0.0,274.3029602099493,304.78106689994365,0,0
+2017/07/22 18:00:00,278.8972999493676,0,916.7113598498996,0,0,0,76.84117223559683,0.0,16.923524308209636,0.0,120.14191543460078,0,39.380909295966944,2.9627810419823235e-09,25.609778672030618,0,0,0.0,490.82712969936995,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7480.289384262229,4372.105843544899,8486.29918928833,6885.897163275169,59688.248741984076,10474.941155105293,6675.572567474517,10657.646985929074,6069.664882460197,68862.2472896659,10479.88719212891,6797.844434531032,10935.32129502908,6060.703601364486,69452.51309440276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048806391812624306,0.0015442002160899436,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1765968177620594,1.1765968177620594,1.1957472997320504,1.1957472997320504,1.168882960565523,1.168882960565523,1.1468865957249428,1.1468865957249428,1.2031413239805344,1.2031413239805344,0.6537759426877794,0.6717176635765583,0.640435041686912,0.662621227397702,0.6352281455352776,0.6522176947877224,0.6754211956066101,0.6425306754373274,0.6634278967497319,0.6423931586770346,34.111761234666005,34.111761234666005,35.03988208616576,35.03988208616576,33.74101751889047,33.74101751889047,32.69391209423654,32.69391209423654,35.401108471635396,35.401108471635396,13.97690435423506,14.481461283036253,13.610774742756718,14.223908694828253,13.469969921529113,13.933741586593044,14.587347711698001,13.667776709979407,14.246603580915135,13.664030367414597,278.8972999493676,278.8972999493676,0.0,309.88588883263066,0.0,278.8972999493676,309.88588883263066,0,0
+2017/07/22 19:00:00,275.1831908867818,0,881.235812604368,0,0,0,80.45186028073125,0.0,18.897826006817876,0.0,110.89738010901058,0,39.380909295966944,2.9627810419823235e-09,25.55521519129222,0,0,0.0,490.8419349663827,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6761.835849768361,3642.154332637809,7555.650165013084,6626.426388987757,56373.53966368599,11370.071727749888,7047.410866201382,11498.550707822586,6590.981741991443,77066.4236924322,11265.110717121737,7013.329965014055,11630.64439138401,6508.537828711693,77594.11162923051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04691764740029785,0.0014844416594473938,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.158291626403886,1.158291626403886,1.1640228009283222,1.1640228009283222,1.148262534795381,1.148262534795381,1.1316450174688277,1.1316450174688277,1.1928540003783619,1.1928540003783619,0.6414257240161139,0.652689009194888,0.6273816513597356,0.6490419391892186,0.6367220881295863,0.6373298578141224,0.6501546816834456,0.6260805940724404,0.6467915136153868,0.6431384235867776,33.234948478307174,33.234948478307174,33.508362005625216,33.508362005625216,32.75896674882655,32.75896674882655,31.977340708536374,31.977340708536374,34.89896512446283,34.89896512446283,13.637697910413763,13.946785681898547,13.260006642137725,13.846100420458995,13.510248800588144,13.526662864349206,13.876758961889351,13.225450002032531,13.784260230894233,13.684343296404379,275.1831908867818,275.1831908867818,0.0,305.7591009853131,0.0,275.1831908867818,305.7591009853131,0,0
+2017/07/22 20:00:00,241.73677852173006,0,820.7508508694716,0,0,0,59.89698349029964,0.0,24.398945138444315,0.0,94.88958839347283,0,39.380909295966944,2.9109716159179093e-09,23.170352200635413,0,0,0.0,465.8473257440304,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3805.7959788274907,1422.3764383398777,5070.790264993322,5718.197983916855,43109.740036827,7465.8336596734825,4233.458601126054,7903.842507647557,3892.078912519956,58049.02550101456,7252.906723727738,4152.827439801355,8016.169020054761,3680.812193326416,58021.98493829251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043697383235917577,0.0013825547459956917,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1483226140835086,1.1483226140835086,1.1546273368429343,1.1546273368429343,1.1381225037987093,1.1381225037987093,1.11017447804688,1.11017447804688,1.1838582269738684,1.1838582269738684,0.6377855930857175,0.6435978247411227,0.6202650458457702,0.6448902836328844,0.6357219912746005,0.6308917112538328,0.640073132854724,0.6175123682463743,0.6396326777263112,0.6385580610853707,32.76180867717163,32.76180867717163,33.06067456210964,33.06067456210964,32.280961522909095,32.280961522909095,30.9807824535835,30.9807824535835,34.462401005690296,34.462401005690296,13.538981439143413,13.696876726865085,13.071884456079403,13.732186817673494,13.483274013692721,13.353601687458138,13.600949982754926,12.999708901973989,13.58900058555686,13.559881910057683,241.73677852173006,241.73677852173006,0.0,268.59642057970007,0.0,241.73677852173006,268.59642057970007,0,0
+2017/07/22 21:00:00,244.86872100827688,0,810.2043406266665,0,0,0,53.048615302482084,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,2.9627810419823235e-09,25.610562251315983,0,0,0.0,490.79116801376944,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2607.995990700046,669.9384946257786,3863.913222402683,5106.645384944163,36678.263116727794,6406.027929718876,3584.924057874078,6912.150100683783,3247.2067439200896,52746.55790927197,6123.615497005516,3430.2284111769586,6901.972104436758,2993.41029385121,52325.68312560918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04313587921872019,0.0013647891502921532,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1299569320400638,1.1299569320400638,1.1351159241321682,1.1351159241321682,1.1209093438210873,1.1209093438210873,1.0920471566517214,1.0920471566517214,1.1671371471048602,1.1671371471048602,0.6263849637331176,0.6322956224758323,0.6117800162566344,0.632049677511086,0.6315470122292667,0.6172980439086626,0.6244028897391807,0.6052107503164578,0.6242804442140175,0.6326111937070988,31.898438382368823,31.898438382368823,32.139864448217665,32.139864448217665,31.47713777398404,31.47713777398404,30.15142808704921,30.15142808704921,33.657362012115485,33.657362012115485,13.233527609611386,13.391186350820035,12.850461314853703,13.38459588312081,13.371134368290427,12.994103088632485,13.180997874293197,12.681177448054754,13.177758363572295,13.399646403369644,244.86872100827688,244.86872100827688,0.0,272.07635667586317,0.0,244.86872100827688,272.07635667586317,0,0
+2017/07/22 22:00:00,178.9106425406095,0,618.4811035940976,0,0,0,42.29422996809177,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,2.8046359031310357e-09,18.609036167741905,0,0,0.0,458.774517287649,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178.9219805432029,0.0,1309.1432055241953,3555.392525359617,18871.371783031376,5750.375014820647,3270.146300936608,6096.840997198583,2983.911867539471,46932.7284465933,5342.911847894648,3025.9869256580873,5915.2455148812,2674.147923018118,46370.93726160095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0329283920684264,0.0010418313720623378,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0920899546589693,1.0920899546589693,1.0676436632903408,1.0676436632903408,1.083767745874192,1.083767745874192,1.046826603431641,1.046826603431641,1.1039976511147305,1.1039976511147305,0.6199204944468509,0.6250310224887436,0.6059733747704473,0.6248709591473685,0.6229809425555579,0.6076056020376499,0.6136180284065478,0.5961626111899451,0.6135954210332633,0.6210033399767223,30.15337296087222,30.15337296087222,29.052821801330907,29.052821801330907,29.776375071198657,29.776375071198657,28.13232278164665,28.13232278164665,30.696929884541845,30.696929884541845,13.062832271735346,13.197626454433731,12.700733474279403,13.193387466587083,13.143417862423433,12.742673605872241,12.898160501642636,12.451081805907819,12.897572915630889,13.091298544179224,178.9106425406095,178.9106425406095,0.0,198.78960282289944,0.0,178.9106425406095,198.78960282289944,0,0
+2017/07/22 23:00:00,108.0874014409419,0,479.4576773024655,0,0,0,18.50590338866204,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6946159123992673e-09,14.070516990746976,0,0,0.0,426.2221485336493,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1943.3044321173875,0.0,2137.860454247383,948.890708125198,2694.8284457063883,667.4056646010379,25599.70809879912,1573.4110062077816,594.7467147872371,2356.1110108530947,238.24169187277928,24875.55258619193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025526681877081226,0.0008076464210257826,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.92156103905758,0.92156103905758,0.8838514012038665,0.8838514012038665,0.9508982996343375,0.9508982996343375,0.9955711689656958,0.9955711689656958,1.012395916556504,1.012395916556504,0.594008442897644,0.5976323628154802,0.5824431964290709,0.5964575079950861,0.6011902592749349,0.57824880908514,0.5824991914496386,0.5696088365913441,0.5813324417033771,0.5956123989101366,22.936032689465208,22.936032689465208,21.49261049026535,21.49261049026535,24.098517000246446,24.098517000246446,25.93354264388283,25.93354264388283,26.644494532302318,26.644494532302318,12.396824625935835,12.488216118891316,12.10897296287095,12.458525063670322,12.578497061540048,12.0060115513443,12.110352660089617,11.796328051460122,12.081632482707434,12.43720442192648,108.0874014409419,108.0874014409419,0.0,120.09711271215767,0.0,108.0874014409419,120.09711271215767,0,0
+2017/07/23 00:00:00,47.53230062775019,0,474.5356625237412,0,0,0,0.32162808563070877,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,4.2244043969460865,2.6382011389037305e-09,11.800634077735134,0,0,0.0,421.30013375492496,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,284.44636962398306,0.0,995.7700967462522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025264630164492787,0.000799355287504596,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9858740517923367,0.9858740517923367,0.9684169169220215,0.9684169169220215,0.9905562461530433,0.9905562461530433,0.9673589036782084,0.9673589036782084,1.014329151740129,1.014329151740129,0.7503987959437959,0.7530900431343817,0.7303573255648037,0.7477300840195428,0.7970060947080784,0.7096422463343105,0.7146890076349488,0.6968612307784825,0.7093798075091391,0.7792531727007465,25.528663641837596,25.528663641837596,24.808899039912745,24.808899039912745,25.72370821997636,25.72370821997636,24.765656183872267,24.765656183872267,26.72686911859256,26.72686911859256,16.858325337437364,16.94433423068091,16.22759234403175,16.773342967020966,18.3915113457725,15.593805557388237,15.746510690502475,15.211990971046163,15.5858947040458,17.79660595114798,47.53230062775019,47.53230062775019,0.0,52.813667364166875,0.0,47.53230062775019,52.813667364166875,0,0
+2017/07/23 01:00:00,23.761053475129682,0,37.666289380845015,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5639580514518896,0,0,0.0,2.1759368683008784,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002005381146307842,6.344886160321055e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0222295587311372,1.0222295587311372,1.0046593783535678,1.0046593783535678,1.0245059008209696,1.0245059008209696,1.0054393570103406,1.0054393570103406,1.105180621465161,1.105180621465161,0.7352473814008336,0.7358979159245252,0.7128073285498067,0.7293375602988881,0.8539237636038922,0.702302249637145,0.7064256663006637,0.6886374131616361,0.6998843192558243,0.8255597112346253,27.064955019300527,27.064955019300527,26.316248486276024,26.316248486276024,27.162798904492504,27.162798904492504,26.349239222745965,26.349239222745965,30.7511929479966,30.7511929479966,16.37989906487917,16.40023817452797,15.689446408222196,16.1959600199164,20.388464051589608,15.373671906620245,15.497051115921522,14.970045403806125,15.301664850635987,19.376318666711583,23.761053475129682,23.761053475129682,0.0,26.401170527921867,0.0,23.761053475129682,26.401170527921867,0,0
+2017/07/23 02:00:00,28.344221672454214,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248585859813177,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0544824525829566,1.0544824525829566,1.0386319400052306,1.0386319400052306,1.0550646533598564,1.0550646533598564,1.0372882221737094,1.0372882221737094,1.1649303599783694,1.1649303599783694,0.7546770285721346,0.7557572808446622,0.731812210748767,0.7483972719094891,0.8770831418276891,0.7138219570453049,0.7181768796460456,0.6997171072642502,0.710700875125958,0.845032824995983,28.469044815220954,28.469044815220954,27.77425778573985,27.77425778573985,28.494737821191805,28.494737821191805,27.715777984923506,27.715777984923506,33.551751611200075,33.551751611200075,16.995197629351324,17.029881717274392,16.272799128858594,16.794560268926105,21.239673878258827,15.720197336485782,15.852688246784922,15.29669453196145,15.62574659940735,20.06758679157575,28.344221672454214,28.344221672454214,0.0,31.493579636060236,0.0,28.344221672454214,31.493579636060236,0,0
+2017/07/23 03:00:00,23.722022630060856,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249272063830668,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0689375233690281,1.0689375233690281,1.0553906047767072,1.0553906047767072,1.0679679205385826,1.0679679205385826,1.0487800727159338,1.0487800727159338,1.1595328787243588,1.1595328787243588,0.7819618626299317,0.783633457901169,0.7583190277129688,0.7754965041191028,0.8966624028426422,0.7269875366551991,0.7313488999273231,0.712181882469875,0.7229756781047701,0.8710819170541624,29.110544944910785,29.110544944910785,28.50912764892132,28.50912764892132,29.067282364462883,29.067282364462883,28.218039629231143,28.218039629231143,33.29407758854724,33.29407758854724,17.88650940153495,17.942146600795866,17.112332301478446,17.672436128330006,21.97650327686233,16.12323436217045,16.258393073691963,15.670512759761749,15.99962918020664,21.016976769708094,23.722022630060856,23.722022630060856,0.0,26.35780292228984,0.0,23.722022630060856,26.35780292228984,0,0
+2017/07/23 04:00:00,52.63236768259963,0,88.72588128136032,0,0,0,2.5547099320381688,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,12.488668568529054,0.0,0.5250907699693388,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,556.2068415174477,0.0,0.0,0.0,0.0,0.0,8229.813081433695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0348934674198262,1.0348934674198262,1.0277225732443116,1.0277225732443116,1.0347011546993397,1.0347011546993397,1.0142225217424736,1.0142225217424736,1.0592739961784077,1.0592739961784077,0.6100720617441049,0.6105907080723402,0.5992792489040716,0.6066238436530692,0.6132723169279656,0.5814439569073745,0.5832197913283206,0.5748741425722007,0.5793513323836067,0.6567303643801427,27.61172010837862,27.61172010837862,27.3013885152737,27.3013885152737,27.603372781785268,27.603372781785268,26.72232199666489,26.72232199666489,28.68086158452705,28.68086158452705,12.806268741834856,12.819675102579765,12.529937242132945,12.717433434867317,12.889177572515479,12.084374936807833,12.128120124282518,11.923726322799723,12.033001703773692,14.059029425861837,52.63236768259963,52.63236768259963,0.0,58.48040853622181,0.0,52.63236768259963,58.48040853622181,0,0
+2017/07/23 05:00:00,93.01938503165202,0,212.9421150752648,0,0,0,0.3793168130947648,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,20.250954964845533,0.0,0.5251060645119843,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1551.2834345282483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0501839360241836,1.0501839360241836,1.0486739365978828,1.0486739365978828,1.0499230307530072,1.0499230307530072,1.0428866575402547,1.0428866575402547,1.063876023764652,1.063876023764652,0.5635360650865657,0.5628221167604944,0.5571491560467602,0.5599698322368286,0.5850039477463934,0.5364951626423778,0.5365974735944945,0.5334554672257741,0.5340390844228368,0.5919498884388348,28.27972544747344,28.27972544747344,28.213378901605367,28.213378901605367,28.268255867499676,28.268255867499676,27.959862023173386,27.959862023173386,28.885073793545118,28.885073793545118,11.650885895968003,11.633891997791565,11.499645859762296,11.566220492608792,12.172208121100255,11.022671435454129,11.024988603621694,10.954034374063582,10.967181549919928,12.345163862166658,93.01938503165202,93.01938503165202,0.0,103.35487225739114,0.0,93.01938503165202,103.35487225739114,0,0
+2017/07/23 06:00:00,108.44638855303548,0,630.7464909711885,0,0,0,0.46220885624888325,0.0,7.665425294572074,0.0,80.56906512710079,0,19.22449576570758,2.5225285493227086e-09,0.5251935068836209,0,0,0.0,400.0591996396516,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1905.7235775733218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033581410377436914,0.0010624924161681203,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0573019414124645,1.0573019414124645,1.0567752480963977,1.0567752480963977,1.0568995307840539,1.0568995307840539,1.0616382729794651,1.0616382729794651,1.0667763275182855,1.0667763275182855,0.5504296166630983,0.5493914021602931,0.5455645455442698,0.5529247991945943,0.5917142082337258,0.5262884791901166,0.5257738683064564,0.5246212058028125,0.5301980547116778,0.5829262819696376,28.593584493841163,28.593584493841163,28.570298242908024,28.570298242908024,28.575792152592243,28.575792152592243,28.78568056469244,28.78568056469244,29.014160444228096,29.014160444228096,11.342438569656522,11.318323554675302,11.229839140839502,11.400586242161168,12.339261047156967,10.793785986220485,10.782365256146392,10.756825879200008,10.880925394600126,12.1208804937352,108.44638855303548,108.44638855303548,0.0,120.49598728115052,0.0,108.44638855303548,120.49598728115052,0,0
+2017/07/23 07:00:00,115.9562236583275,0,649.5239408705253,0,0,0,0.7343017793449934,0.0,5.92948766839161,0.0,69.33401494192633,0,39.380909295966944,2.5225301565768357e-09,0.5775099701750886,0,0,0.0,383.3462970264444,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3069.145309316293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03458113571865993,0.0010941230290983687,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8860518022117561,0.8860518022117561,0.8284258702922451,0.8284258702922451,0.9399999251465773,0.9399999251465773,1.0892185942630115,1.0892185942630115,1.0605478414729863,1.0605478414729863,0.5771758535270557,0.5441734903875155,0.6105205701146912,0.5621269724818249,0.7521070138168283,0.5410531524878118,0.5059804640087759,0.5851658475161474,0.5289749068949341,0.7374391584156967,21.575246219112955,21.575246219112955,19.477067037016212,19.477067037016212,23.662677146699522,23.662677146699522,30.023029293301633,30.023029293301633,28.73731204126399,28.73731204126399,11.97979586664313,11.197832510406968,12.817861441217602,11.617366927378484,16.912881893334216,11.126342012500984,10.351788111746401,12.176215635835291,10.853591869002287,16.448498003777885,115.9562236583275,115.9562236583275,0.0,128.84024850925277,0.0,115.9562236583275,128.84024850925277,0,0
+2017/07/23 08:00:00,149.7704952993702,0,718.1824608238295,0,0,0,3.294263769216529,0.0,9.653335424497218,0.0,96.91714705112861,0,39.380909295966944,2.52253015677517e-09,0.5248397560383997,0,0,0.0,398.7692882109324,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3980.538465721942,7656.456793568797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0382365661767973,0.0012097783007486164,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9133503532210833,0.9133503532210833,0.8378335903785239,0.8378335903785239,0.9801069635481475,0.9801069635481475,1.0939897173046003,1.0939897173046003,1.0795994805224967,1.0795994805224967,0.6086623787844055,0.5659657617176885,0.6465276044927946,0.5856045194464226,0.8135365360173523,0.5774770069028131,0.5299022088667147,0.6291834608663945,0.5531526570178408,0.8021706945718976,22.616846364558484,22.616846364558484,19.810176769127906,19.810176769127906,25.28958268447427,25.28958268447427,30.23976745786652,30.23976745786652,29.58845486738032,29.58845486738032,12.769889183866582,11.708884874607023,13.777022569343899,12.187079824799213,18.95745272745819,11.987148950011587,10.874308226455653,13.307984762397908,11.405909684170709,18.567087825686855,149.7704952993702,149.7704952993702,0.0,166.41166144374466,0.0,149.7704952993702,166.41166144374466,0,0
+2017/07/23 09:00:00,167.20713834678324,0,767.5215545771437,0,0,0,20.95919657940796,0.0,9.274480239855507,0.0,97.06762091869685,0,39.380909295966944,2.5225301567751945e-09,0.5249313103334192,0,0,0.0,394.8728531954303,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1318.2683145340093,0.0,1527.770402090792,5811.898211855239,19141.570945097697,2079.6679654801824,640.306470717117,1817.5084720957093,1600.4132884940382,16469.126022825403,1992.655336278629,515.3647584034587,1778.6468795915348,1602.335940745216,16299.120596767078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.040863416074019415,0.0012928900004313003,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0379240787712458,1.0379240787712458,0.947410940935922,0.947410940935922,1.0441028713040428,1.0441028713040428,1.1667736419250878,1.1667736419250878,1.0879858746711768,1.0879858746711768,0.608055103521725,0.5691416630943247,0.6015272241255596,0.6257996027087029,0.6796214192736905,0.6031200388884786,0.5548401645241348,0.6008747988043279,0.6254031918513667,0.6778274253722419,27.743442796124725,27.743442796124725,23.95854236714152,23.95854236714152,28.013038378671325,28.013038378671325,33.63995541181191,33.63995541181191,29.967157985763265,29.967157985763265,12.7542438668753,11.785082505334799,12.58707596083434,13.217996394944635,14.708153210306818,12.627694660632798,11.445404983473082,12.570470115668911,13.207486983712712,14.656461537790975,167.20713834678324,167.20713834678324,0.0,185.78570927420358,0.0,167.20713834678324,185.78570927420358,0,0
+2017/07/23 10:00:00,231.08752550851267,0,927.0611920897317,0,0,0,30.63032430335945,0.0,13.065493553185489,0.0,124.87761316689259,0,39.380909295966944,2.9109872022807723e-09,23.13318518619716,0,0,0.0,465.6866094266579,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3335.2806360341883,402.33123608457555,3178.4954048415298,6743.765714136109,29599.273553498027,3173.8028761903624,856.0321091067783,2617.1402650584328,2006.4435476618985,23457.633545052708,3294.5977721802733,789.4656528117172,2727.737043291417,2105.3357016336295,23330.21561770958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049357424547262704,0.0015616345077124017,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1042464018798928,1.1042464018798928,1.0196690665927,1.0196690665927,1.0744769884902925,1.0744769884902925,1.1672357941910902,1.1672357941910902,1.116451395660691,1.116451395660691,0.5958458513640136,0.5581331067776188,0.5628518241928958,0.6144914949777067,0.5962777792311167,0.601030844891279,0.5539173231482835,0.5648154483033629,0.6223862996158008,0.5978266630214265,30.70833619587374,30.70833619587374,26.95512771198848,26.95512771198848,29.35834630378811,29.35834630378811,33.6620864698277,33.6620864698277,31.27054663583428,31.27054663583428,12.443090925262268,11.52283024227495,11.634598674117996,12.92087966916938,12.4539882224624,12.57444019533385,11.423791029334112,11.681393974330533,13.127728324710404,12.493132267133802,231.08752550851267,231.08752550851267,0.0,256.76391723168075,0.0,231.08752550851267,256.76391723168075,0,0
+2017/07/23 11:00:00,274.38383651942775,0,1002.5575948396561,0,0,0,55.645115818442655,0.0,12.935301236479537,0.0,143.25325374857618,0,39.380909295966944,2.910987202280771e-09,23.169256417051308,0,0,0.0,487.9474834077662,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8126.983434354282,3099.0070047128997,6797.008782531277,7796.646445147008,47377.9264878564,7897.85569500971,3652.3613777202836,6244.342681593392,4704.860543966212,41341.55175960807,8290.400083536413,3715.9475043764496,6468.644101498607,4936.443278771404,41843.795102938835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0533769089503575,0.0016888081924145695,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.158713357901519,1.158713357901519,1.0659579678282665,1.0659579678282665,1.1026039438102022,1.1026039438102022,1.1813226368720626,1.1813226368720626,1.13544303066076,1.13544303066076,0.6158767149265866,0.5652450381629448,0.5630499320693179,0.6189596480087785,0.5728181699280811,0.634279040151573,0.5719902331323032,0.5733020826697306,0.6351378931727221,0.5792528884008752,33.2550329742423,33.2550329742423,28.977706652279764,28.977706652279764,30.633061072878462,30.633061072878462,34.33978261645102,34.33978261645102,32.155201211503936,32.155201211503936,12.956977611044309,11.69165386355371,11.639312215781004,13.037615766663308,11.873837301495726,13.444430941383658,11.85379886822399,11.885563141069625,13.467539686718283,12.030589616518881,274.38383651942775,274.38383651942775,0.0,304.8709294660308,0.0,274.38383651942775,304.8709294660308,0,0
+2017/07/23 12:00:00,265.2433530125879,0,927.811056284561,0,0,0,69.52573546948534,0.0,12.935301236479537,0.0,124.80122689546741,0,39.380909295966944,2.8046512268130105e-09,18.600180112383942,0,0,0.0,448.691297365215,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11048.184126008902,3869.3876349009242,7808.286325292456,7396.402757258519,52500.90232213766,11554.289537815359,5237.564545072503,8520.454174795153,5931.697438553422,54552.09932037158,12285.931664046211,5424.672744257163,8910.887164073112,6219.762653810792,55782.09031449807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04939734787242483,0.0015628976538916782,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2060273718916592,1.2060273718916592,1.080854490072593,1.080854490072593,1.105395787128964,1.105395787128964,1.1520124067495157,1.1520124067495157,1.1374851997447202,1.1374851997447202,0.6553569057878299,0.574475059023201,0.5691911006359077,0.6123229168540083,0.5748572760473096,0.6836212116238314,0.5870553956479445,0.5833395540444105,0.6287593807039896,0.5875414553310314,35.5425295546824,35.5425295546824,29.644971436331787,29.644971436331787,30.761067722144688,30.761067722144688,32.93656565667911,32.93656565667911,32.25102883714386,32.25102883714386,14.020803875033451,11.91402805269874,11.786272091000484,12.864535146547851,11.923316303583135,14.823903413793857,12.223071841330736,12.131075236217526,13.296679790068112,12.235149995611224,265.2433530125879,265.2433530125879,0.0,294.7148366806532,0.0,265.2433530125879,294.7148366806532,0,0
+2017/07/23 13:00:00,268.3070184408701,0,888.7735189815417,0,0,0,72.6521944272947,0.0,12.88660173648153,0.0,124.7641830973959,0,39.380909295966944,2.8046512268130097e-09,18.623129880926278,0,0,0.0,445.14411257474006,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11389.378917772943,4726.68575112649,8298.733493170557,7220.85355474911,52011.20229865638,12469.624141786086,6216.60934287047,9304.454913509047,6333.82102085056,56135.08667484371,13356.020415131972,6544.443830380688,9815.293230838837,6664.869301263111,57873.57362946615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04731896047104795,0.001497138925267641,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1939048666874066,1.1939048666874066,1.1132245754931782,1.1132245754931782,1.1115968548336275,1.1115968548336275,1.1484150355554201,1.1484150355554201,1.1285867460398251,1.1285867460398251,0.6601501703545175,0.6013610109197012,0.5774734602762668,0.6133522055542631,0.5673416947729938,0.6918452237724574,0.62447378818647,0.5967657367532874,0.6334655852349477,0.5824511119133805,34.95011887797672,34.95011887797672,31.121420998304743,31.121420998304743,31.04632879176998,31.04632879176998,32.76618071001337,32.76618071001337,31.834463243818078,31.834463243818078,14.15456325488202,12.582843668102058,11.98706233123653,12.89125292899952,11.741843155565135,15.064071919839293,13.182873914230015,12.466308856849807,13.422573206542182,12.109167989307593,268.3070184408701,268.3070184408701,0.0,298.11890937874455,0.0,268.3070184408701,298.11890937874455,0,0
+2017/07/23 14:00:00,234.96999031558101,0,834.1292078246638,0,0,0,57.58291523230136,0.0,12.935301171685163,0.0,111.01081017850728,0,39.380909295966944,2.694630928959587e-09,14.06005443442554,0,0,0.0,425.99015393040634,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8528.075101663644,3828.951722298881,6957.429508810659,6479.891202915808,44854.565559470895,9210.05030664606,4770.553761233535,7025.314840309279,4559.333101410254,42809.40655813312,9961.913610240812,5184.034832326996,7606.3771860171555,4856.708238952796,43974.654046817726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04440965686965019,0.0014050905872713126,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1671780278367434,1.1671780278367434,1.1464957268738114,1.1464957268738114,1.1198545236708277,1.1198545236708277,1.1377460070579508,1.1377460070579508,1.1334472145855632,1.1334472145855632,0.6469443829625696,0.6280025319863852,0.5914544906418738,0.6268512779831841,0.5750160258213713,0.6657616868182825,0.6468697150008962,0.6036532013260716,0.640316633024218,0.5841261863274572,33.659319857201695,33.659319857201695,32.67544270706449,32.67544270706449,31.428195585714235,31.428195585714235,32.263276766102535,32.263276766102535,32.06167903026578,32.06167903026578,13.78845402723104,13.276523385705318,12.332758986887825,13.245910829962853,11.927175942691363,14.3124213064538,13.786405470205906,12.641315544183982,13.607559670708966,12.150500640363887,234.96999031558101,234.96999031558101,0.0,261.0777670173122,0.0,234.96999031558101,261.0777670173122,0,0
+2017/07/23 15:00:00,244.76323628276302,0,840.3106040632141,0,0,0,69.68245222322058,0.0,12.88660173648153,0.0,108.75639138185811,0,39.380909295966944,2.694630928959587e-09,14.056881642541208,0,0,0.0,432.1715501689566,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10105.693629660323,7152.698493725237,8674.773882291767,6666.355042626996,53707.21867430746,10934.6372310874,7597.4555309799025,8698.633138823343,6163.371784770062,50060.78463697206,11437.104470321265,8101.095485862959,9109.231275717037,6439.994378667481,51402.518081343915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04473875898399202,0.0014155031487659909,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.165246104053838,1.165246104053838,1.239846081601349,1.239846081601349,1.1248173605159775,1.1248173605159775,1.1349199447247225,1.1349199447247225,1.1385362936105685,1.1385362936105685,0.6424708791468214,0.6849447521810336,0.5926618333029307,0.6262973221466659,0.5720743293418084,0.6584596075403684,0.714452333896568,0.6041547205642548,0.6387008449158974,0.5817041243988149,33.566853014294395,33.566853014294395,37.21700305889565,37.21700305889565,31.6587844870932,31.6587844870932,32.130677388742654,32.130677388742654,32.300403272620215,32.300403272620215,13.666147590406212,14.862357781598021,12.36300977808915,13.231201294415285,11.85583287961471,14.107273281598097,15.739324873428956,12.65413928885927,13.563748010048755,12.09077524221108,244.76323628276302,244.76323628276302,0.0,271.95915142529225,0.0,244.76323628276302,271.95915142529225,0,0
+2017/07/23 16:00:00,253.9352896315057,0,895.9589187251935,0,0,0,64.48552493356216,0.0,11.08681950462398,0.0,124.87761316689259,0,39.380909295966944,2.694630928959587e-09,14.104422727765392,0,0,0.0,434.58433606211975,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8977.139416584587,7498.8198648319385,8468.31120503357,6809.231811340992,53845.13292641336,9167.874621513036,7189.254921857131,7767.812166207994,5116.562560903109,45688.83483362496,9569.985539568932,7777.78392556989,8209.01738521543,5339.655270017056,46854.94215991913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04770151647567346,0.0015092427305904595,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.16185633468817,1.16185633468817,1.2528914722959068,1.2528914722959068,1.1391770025664392,1.1391770025664392,1.1423349395290276,1.1423349395290276,1.1611954270034073,1.1611954270034073,0.6314246176079961,0.6959526989309543,0.5956712142855807,0.6262142690602466,0.5756354385222966,0.6404743824797898,0.7231805292015109,0.6055533758007569,0.6363330884534493,0.5844992058048639,33.404888018464376,33.404888018464376,37.871129992346276,37.871129992346276,32.330517602974936,32.330517602974936,32.479138277217245,32.479138277217245,33.37335090811875,33.37335090811875,13.36785826607489,15.18511831230056,12.43868722865534,13.228997081668183,11.942246007493424,13.61184307184341,16.005923855628694,12.689960291846361,13.499751477785537,12.159721514255594,253.9352896315057,253.9352896315057,0.0,282.1503218127841,0.0,253.9352896315057,282.1503218127841,0,0
+2017/07/23 17:00:00,258.331707089393,0,906.0190143374111,0,0,0,59.852786661363155,0.0,11.08681950462398,0.0,129.38645076019097,0,39.380909295966944,2.8046512268130105e-09,18.62474086444317,0,0,0.0,444.6444316743375,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7741.883789913128,5857.458639620403,8083.45812878052,6718.179517899831,51914.68814002278,7975.722823654466,6138.737499324511,7335.301937658327,4216.329542067307,44010.60624489034,8277.821594906114,6634.424391971009,7805.987890059179,4357.739314289986,44841.62467029544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04823712341764782,0.001526188960885692,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1731443266261,1.1731443266261,1.2265077543198637,1.2265077543198637,1.1595832768727479,1.1595832768727479,1.1432229142938954,1.1432229142938954,1.1784739635626085,1.1784739635626085,0.6421588161668765,0.6912419734510435,0.6156040504381777,0.639350535615237,0.5937811856764669,0.6470663457388797,0.709103779947092,0.6232586756444343,0.6458917309287573,0.6008123146596367,33.94560390935031,33.94560390935031,36.55283681202324,36.55283681202324,33.296479401110076,33.296479401110076,32.5209862229552,32.5209862229552,34.20225338192121,34.20225338192121,13.657648109148369,15.04635565241,12.949865567159506,13.5813505875754,12.39111242716956,13.791800663668084,15.577577441589185,13.150751052432469,13.759596251712935,12.568880708346242,258.331707089393,258.331707089393,0.0,287.03523009932553,0.0,258.331707089393,287.03523009932553,0,0
+2017/07/23 18:00:00,266.10111478995407,0,913.8405924136042,0,0,0,76.71806644225653,0.0,11.198411588569618,0.0,115.6330778413024,0,39.380909295966944,2.910987202280771e-09,23.170649618947564,0,0,0.0,487.9563622630746,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8815.94756647134,7253.48240029293,9681.599302286624,6760.37471377116,57934.9645219078,10984.7615733531,8636.05464201168,10740.138652156556,6348.5472891794325,61838.24326964883,11127.069777054236,9050.32501464849,11120.30224849781,6445.3622343737525,62751.79252251744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048653550027919365,0.0015393644085613916,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.160229500965403,1.160229500965403,1.2472194366066822,1.2472194366066822,1.1698190342372823,1.1698190342372823,1.1314812606937625,1.1314812606937625,1.1745795105216068,1.1745795105216068,0.6369860236495799,0.7091651561753549,0.6278648093670919,0.6351161201772136,0.602146472855292,0.639154336978813,0.7277394667180676,0.6363188389009267,0.6386809330438328,0.6088470040692551,33.327283348518264,33.327283348518264,37.586177344523094,37.586177344523094,33.78591053079296,33.78591053079296,31.969682534149783,31.969682534149783,34.01463086486862,34.01463086486862,13.51737495113278,15.57942654604517,13.272858227926505,13.466953455892238,12.602854468265761,13.5760328951867,16.146478337290432,13.499367072132458,13.563208811289655,12.774648883442325,266.10111478995407,266.10111478995407,0.0,295.6679053221712,0.0,266.10111478995407,295.6679053221712,0,0
+2017/07/23 19:00:00,250.84146511535448,0,856.1025362972525,0,0,0,72.13243038589782,0.0,12.021429397461366,0.0,104.13412371906301,0,39.380909295966944,2.910987202280771e-09,23.172572314054385,0,0,0.0,465.7086586592672,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7016.574935122742,4472.01629358435,8511.94650631179,6247.042459010677,51706.08197795431,10037.329105487886,7922.574008835886,10460.121132120481,5671.481644919789,61834.14104665852,10024.857257463698,8215.912722404903,10774.230302911557,5652.632502214027,62421.624115030565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045579533153321715,0.0014421046574156413,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1396609552506536,1.1396609552506536,1.156432482380661,1.156432482380661,1.1591198442625628,1.1591198442625628,1.1132500000378946,1.1132500000378946,1.1654396353755203,1.1654396353755203,0.6240404147336042,0.6909494412604812,0.6238892872435748,0.6228268442653496,0.6052867340395311,0.6214249785998518,0.7017254495000617,0.6287777381631442,0.6216114042260965,0.6097197199518266,32.35327289537885,32.35327289537885,33.14647495647509,33.14647495647509,33.274396681620544,33.274396681620544,31.12259462071745,31.12259462071745,33.5761107457611,33.5761107457611,13.171409851101444,15.037770222924024,13.16741397981626,13.13935053625491,12.683124771183358,13.102396511010411,15.356471619798441,13.297168994861764,13.107305886816746,12.797167805401884,250.84146511535448,250.84146511535448,0.0,278.7127390170605,0.0,250.84146511535448,278.7127390170605,0,0
+2017/07/23 20:00:00,243.72100676410983,0,813.5137711945191,0,0,0,60.65971012871063,0.0,16.665893516531224,0.0,108.41610117336799,0,39.380909295966944,2.8046512268130105e-09,18.59839264672836,0,0,0.0,458.6102460690779,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4585.058990106335,2461.1475150861274,5682.396179328774,5600.794058883669,41393.53261302839,8206.778250778856,5820.961860971989,8496.634656987213,4278.179289433478,55827.32937842182,8057.370396688902,5883.7243383779605,8617.279818696778,4121.991992562252,56005.61186182596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04331207575346995,0.0013703638858325196,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1297546847047097,1.1297546847047097,1.1442850081653824,1.1442850081653824,1.1186455495294574,1.1186455495294574,1.0949321372600893,1.0949321372600893,1.1587925661188692,1.1587925661188692,0.6227784002807799,0.6540820010288172,0.6043242318465961,0.6211434986058976,0.6117656130821428,0.6176577229599491,0.6542436847404064,0.6021785169302795,0.617032987225345,0.6139771389892703,31.88899142794466,31.88899142794466,32.5710730429264,32.5710730429264,31.37214618226909,31.37214618226909,30.282671353561724,30.282671353561724,33.25880579614565,33.25880579614565,13.138072101037423,13.985394398385594,12.658476126187722,13.094986808997334,12.850088109721199,13.003511897630673,13.989881135896553,12.603671406769166,12.987173089926245,12.90749708395748,243.72100676410983,243.72100676410983,0.0,270.8011186267887,0.0,243.72100676410983,270.8011186267887,0,0
+2017/07/23 21:00:00,220.56748836558356,0,785.0933370416598,0,0,0,37.3158905053857,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,2.910987202280771e-09,23.121605150055327,0,0,0.0,465.6801644287626,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2231.165180437392,753.2525205134503,3410.6938008341967,4725.418413579016,29971.558452165136,4061.2445625690157,2945.6978005726364,4453.571233561623,1618.7911298807767,33095.869557961174,3713.6494509444256,2813.595541669356,4355.943956909331,1315.6076002249931,32829.5730947446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04179895078796667,0.0013224896666591023,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1193697191366678,1.1193697191366678,1.131755532780471,1.131755532780471,1.108330900915164,1.108330900915164,1.0754850466303905,1.0754850466303905,1.1479331488235158,1.1479331488235158,0.6150567897507117,0.6423230982840799,0.5975075898222811,0.6132688173623116,0.607035171453997,0.6047364409909529,0.6357510323562968,0.5899930026782275,0.6038317540792868,0.6049102377980298,31.405713683919956,31.405713683919956,31.98250951018305,31.98250951018305,30.89592733220333,30.89592733220333,29.40355678633567,29.40355678633567,32.74338785001146,32.74338785001146,12.93560083023634,13.662122040983746,12.485059999390444,12.88908666670423,12.728003230239722,12.66902743612222,13.484056703192437,12.296225049883702,12.645879850275904,12.67347831994563,220.56748836558356,220.56748836558356,0.0,245.0749870728706,0.0,220.56748836558356,245.0749870728706,0,0
+2017/07/23 22:00:00,139.14074541343277,0,618.2970116058431,0,0,0,11.721007967082999,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,2.80465122681301e-09,18.61985256909261,0,0,0.0,458.59042529939467,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2917.624374096351,4133.480622927478,437.1022286452911,480.0194737421348,1121.3309102999078,0.0,15098.046942782523,0.0,176.12324760862984,838.1799616729363,0.0,14252.975483890608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03291859087461357,0.0010415212691220954,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0263097286877294,1.0263097286877294,1.0071890876683451,1.0071890876683451,1.0548259325776013,1.0548259325776013,1.030095184424399,1.030095184424399,1.106148802624456,1.106148802624456,0.623438867767772,0.6469998997075864,0.6057354276789523,0.5894446985343099,0.6165112797343677,0.6057522719132038,0.6351650917188629,0.5940149438568334,0.558196102670224,0.6108621411417737,27.24046924042065,27.24046924042065,26.423331049117564,26.423331049117564,28.484201400037094,28.484201400037094,27.40385715377377,27.40385715377377,30.79563879397118,30.79563879397118,13.15551058719133,13.789977316664732,12.69462907301012,12.282542582018834,12.973541773456432,12.695061121720784,13.46827202762023,12.39698806305337,11.524316015682373,12.82669596256926,139.14074541343277,139.14074541343277,0.0,154.6008282371475,0.0,139.14074541343277,154.6008282371475,0,0
+2017/07/23 23:00:00,87.62554902920947,0,466.87984671382293,0,0,0,2.5330590564855444,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.580852150580551e-09,9.581508911304805,0,0,0.0,413.6443179450067,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1409.7260070811003,0.0,0.0,0.0,0.0,0.0,4148.6001351129635,0.0,0.0,0.0,0.0,2855.6691715218126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024857028860058927,0.0007864590663538552,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8399371056940862,0.8399371056940862,0.8112871375611083,0.8112871375611083,0.8784964481030417,0.8784964481030417,0.9855875496943483,0.9855875496943483,0.9427359260413741,0.9427359260413741,0.558925783913771,0.5840226813876179,0.5666934872385408,0.5023068321106078,0.6124527848388882,0.5207045280960446,0.5512624511938241,0.5389293980392657,0.455849880492026,0.6052113721727289,19.885164672461073,19.885164672461073,18.879763439184842,18.879763439184842,21.29233521453304,21.29233521453304,25.516756204686317,25.516756204686317,23.771651529757037,23.771651529757037,11.541538265194134,12.147943114913616,11.726306147942168,10.273737668699766,12.867903662764036,10.670474315457511,11.361816917144353,11.077925655188665,9.336973896929663,12.681193384070738,87.62554902920947,87.62554902920947,0.0,97.36172114356607,0.0,87.62554902920947,97.36172114356607,0,0
+2017/07/24 00:00:00,41.93236989739025,0,445.1787592701605,0,0,0,0.3753728628267033,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,2.2126483564808797,2.580852150580551e-09,9.54702767907862,0,0,0.0,391.9432305013443,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268.46357071294966,170.29742469293998,280.33969071729825,749.8441143321911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.023701646890418197,0.0007499035862020906,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9496592201609872,0.9496592201609872,0.9432075400821982,0.9432075400821982,0.958339126792189,0.958339126792189,0.9589776949802415,0.9589776949802415,0.9797972740838938,0.9797972740838938,0.7107160450106932,0.7594258268447224,0.6942894933754789,0.6624805452155339,0.7966600685328926,0.653470093398402,0.7091380114269483,0.651238970455511,0.5982823914986982,0.7714912360542397,24.048728242093958,24.048728242093958,23.790465801283247,23.790465801283247,24.39877503894786,24.39877503894786,24.424644294377217,24.424644294377217,25.276780394572526,25.276780394572526,15.626204657668012,17.14804178054827,15.136016199913612,14.219953620093804,18.37978815024806,13.968424164917423,15.578608726080176,13.90668517466257,12.504669454116126,17.540711403399726,41.93236989739025,41.93236989739025,0.0,46.59152210821139,0.0,41.93236989739025,46.59152210821139,0,0
+2017/07/24 01:00:00,23.72211717453059,0,49.76492222915142,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250217508527996,0,0,0.0,14.274569716607292,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002649521320689683,8.382900771791202e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9789903079193011,0.9789903079193011,0.9807163717342389,0.9807163717342389,0.9801194405685386,0.9801194405685386,0.9793830630595323,0.9793830630595323,1.0771360401495076,1.0771360401495076,0.6983117319009918,0.763476058952563,0.6743609015946782,0.652557126608114,0.8483483406495705,0.6449688520591959,0.7186945701719639,0.6310581818555147,0.5925689470991502,0.8100381276724985,25.243438500877787,25.243438500877787,25.31478587904145,25.31478587904145,25.29009855101114,25.29009855101114,25.259663057187794,25.259663057187794,29.47767937139605,29.47767937139605,15.254967943159073,17.27916378841678,14.556972553397372,13.943134729878324,20.186860436272028,13.734335649478695,15.86849240473795,13.35805386943963,12.360680204817342,18.836717501033036,23.72211717453059,23.72211717453059,0.0,26.357907971700655,0.0,23.72211717453059,26.357907971700655,0,0
+2017/07/24 02:00:00,28.344426636747038,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250635502741452,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9979540233818788,0.9979540233818788,1.0031660811231387,1.0031660811231387,0.9959400886545596,0.9959400886545596,0.9965444976978983,0.9965444976978983,1.1650730449838795,1.1650730449838795,0.6896903967846418,0.7515152005568141,0.6615801857507361,0.644234597954052,0.8694623572228193,0.6298534550119161,0.703046671720866,0.6120746218949237,0.5787331338720452,0.8208903553716886,26.033581846493206,26.033581846493206,26.25315065955951,26.25315065955951,25.949016840406344,25.949016840406344,25.974379742604896,25.974379742604896,33.55857556714487,33.55857556714487,15.000861157646924,16.893966590596918,14.194661626481576,13.714264374697123,20.95713133469053,13.325861120339695,15.39589193474876,12.858096908609127,12.017861494361483,19.21292468249905,28.344426636747038,28.344426636747038,0.0,31.493807374163374,0.0,28.344426636747038,31.493807374163374,0,0
+2017/07/24 03:00:00,23.722247107204122,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251516835263335,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0054461011328206,1.0054461011328206,1.0134266127667266,1.0134266127667266,1.0007098818479292,1.0007098818479292,0.9943336192856149,0.9943336192856149,1.1670613906270766,1.1670613906270766,0.7010705923941444,0.7617261930813318,0.6700999450640548,0.6556094000660373,0.8879783800705315,0.6264661212252429,0.698896920531269,0.6069702634805412,0.575787447110121,0.8346164557740516,26.34952457887502,26.34952457887502,26.68839476500976,26.68839476500976,26.149549844145895,26.149549844145895,25.8816719444946,25.8816719444946,33.6537340461891,33.6537340461891,15.336961065755588,17.222427716855023,14.435395955894165,14.027825061976486,21.64776126057768,13.235682111395988,15.272332246351837,12.726334817111066,11.945946859801523,19.695847305513666,23.722247107204122,23.722247107204122,0.0,26.358052341337913,0.0,23.722247107204122,26.358052341337913,0,0
+2017/07/24 04:00:00,46.74068099780744,0,88.72588128136032,0,0,0,0.07308810645652258,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,6.581839672891391,0.0,0.5776196688254006,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,292.6678713716224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0303494671996538,1.0303494671996538,1.0277891603199119,1.0277891603199119,1.0319042404058891,1.0319042404058891,1.0089660686382156,1.0089660686382156,1.0592703038215967,1.0592703038215967,0.5388719368962759,0.5595376627505398,0.528393259870333,0.5231483833973977,0.6107373522395585,0.5112425077847492,0.5315736122471935,0.5060544467251948,0.49748493242601055,0.5900495139801816,27.414851479374278,27.414851479374278,27.304261450166095,27.304261450166095,27.48212644442401,27.48212644442401,26.49869487451464,26.49869487451464,28.680698042058566,28.680698042058566,11.076618398049348,11.555997889549317,10.84061660485223,10.72427645637896,12.823467788496387,10.464602538769114,10.911742194522304,10.35336595027168,10.172176170757027,12.297635983449737,46.74068099780744,46.74068099780744,0.0,51.93408999756382,0.0,46.74068099780744,51.93408999756382,0,0
+2017/07/24 05:00:00,77.03727724148625,0,212.9421150752648,0,0,0,0.36965039848157605,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,3.3567735941749324,0.0,0.5248102188738915,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1522.0134781391616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0533292992676688,1.0533292992676688,1.0487071425555008,1.0487071425555008,1.05610053977053,1.05610053977053,1.0514659502448487,1.0514659502448487,1.051430038784078,1.051430038784078,0.686019848014862,0.7226564424604183,0.6664140508958516,0.6563620559833445,0.8192506019022776,0.6241299973830953,0.659683232926154,0.6137759608251603,0.5981989111714324,0.7861124658280518,28.41819118769962,28.41819118769962,28.214837022329846,28.214837022329846,28.540482467721702,28.540482467721702,28.33611941899221,28.33611941899221,28.334538917527965,28.334538917527965,14.893649547769442,15.989823290461572,14.330861513793366,14.048770792103596,19.155762445252876,13.173778920022386,14.141489275285878,12.902265926294163,12.50255539823793,18.024876304483513,77.03727724148625,77.03727724148625,0.0,85.5969747127625,0.0,77.03727724148625,85.5969747127625,0,0
+2017/07/24 06:00:00,88.91219049478086,0,630.5005618436866,0,0,0,0.4665992632164622,0.0,10.124506409824457,0.0,73.80580873715317,0,3.990373970087745,2.5225425323299752e-09,0.524902111976473,0,0,0.0,399.81327051214964,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1947.619134967583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03356831692852737,0.0010620781485715088,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0582039258765623,1.0582039258765623,1.0532344097349606,1.0532344097349606,1.0612776197368534,1.0612776197368534,1.0842070279121143,1.0842070279121143,1.0380249147641039,1.0380249147641039,0.8097113102452547,0.8502567897860143,0.7878787123783548,0.7941244052763261,1.0602473785863216,0.7470621456525735,0.7904606082854142,0.7350433649267586,0.7321030712188696,1.0067875908216248,28.63348627461157,28.63348627461157,28.414008726308438,28.414008726308438,28.769678287474335,28.769678287474335,29.796214690532636,29.796214690532636,27.74783132212312,27.74783132212312,18.82546491148173,20.25572321960088,18.083978930336556,18.29403591443142,28.723991801182905,16.752120906658746,18.170613352933742,16.373524187423925,16.281847775320472,26.406319577074555,88.91219049478086,88.91219049478086,0.0,98.79132277197873,0.0,88.91219049478086,98.79132277197873,0,0
+2017/07/24 07:00:00,148.96256330430128,0,759.380246522416,0,0,0,5.404061327844152,0.0,7.777944015249205,0.0,69.33401494192633,0,39.380909295966944,3.013728222404787e-09,27.065633720300962,0,0,0.0,493.2026026783351,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3901.132609811336,0.0,0.0,0.0,0.0,0.0,8428.72043653749,0.0,0.0,0.0,0.0,6396.949532013865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04042996680286456,0.0012791759676310263,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7473304849540403,0.7473304849540403,0.6899030549744831,0.6899030549744831,0.804321362502556,0.804321362502556,1.1624390584255127,1.1624390584255127,0.9419122434195842,0.9419122434195842,0.4790853752002727,0.4833001222626079,0.4952269093893392,0.5491196888328077,0.684727221440685,0.44887654050388665,0.4615382392218585,0.46962415288686393,0.5327466182343755,0.6712785902698374,16.76064441488083,16.76064441488083,15.007090453920256,15.007090453920256,18.64053499519767,18.64053499519767,33.432705585501,33.432705585501,23.73881319007502,23.73881319007502,9.793860528622162,9.879230214011656,10.124961801481874,11.3120200767314,14.856032405451373,9.204390774618915,9.446675782119769,9.605013721372202,10.938085934143174,14.468947253484089,148.96256330430128,148.96256330430128,0.0,165.51395922700144,0.0,148.96256330430128,165.51395922700144,0,0
+2017/07/24 08:00:00,179.80136937018534,0,810.0233873791703,0,0,0,20.32103210237976,0.0,11.287802377079139,0.0,83.2008179303116,0,39.380909295966944,2.962811851857581e-09,25.610807661485108,0,0,0.0,490.61021476627315,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7001.426657988907,5538.904978567392,1743.829847328232,438.209698812543,1655.7041412313552,2699.748848353743,24140.10901968336,1049.100384057059,104.25785325015704,1169.6137602231377,2538.0677768391156,22678.807997329863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043126245133790216,0.0013644843345604798,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8864559723189782,0.8864559723189782,0.7587162327940379,0.7587162327940379,0.9019194717367471,0.9019194717367471,1.22709799958957,1.22709799958957,1.0128103858703947,1.0128103858703947,0.5234787568847209,0.5039226100520519,0.5116018267629233,0.6103355034805215,0.5888732887522025,0.5060658185679897,0.47638551397239937,0.4968541920175373,0.6153213461534556,0.5856200747442476,21.59044631323053,21.59044631323053,17.12514159733489,17.12514159733489,22.17700711446001,22.17700711446001,36.5821259215162,36.5821259215162,26.66214315070836,26.66214315070836,10.73156955269782,10.307994827961252,10.472349750259525,12.813076923231108,12.268297415687911,10.353608499947356,9.73957750121862,10.158965468629418,12.942495057108957,12.187465222028791,179.80136937018534,179.80136937018534,0.0,199.77929930020593,0.0,179.80136937018534,199.77929930020593,0,0
+2017/07/24 09:00:00,222.1442619375616,0,834.773715756498,0,0,0,44.417494949702785,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.85828999631098e-09,20.872333601993535,0,0,0.0,462.1250143747845,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3665.469338535992,564.8452232199145,2463.8607989619886,8656.267995735816,25957.456678747923,6184.979038142876,2901.5301340418428,4758.056873563901,5779.804557371762,39845.75350755852,6030.010980111172,2748.7014256846296,4600.108563368375,6040.622883244644,39309.17161249453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04444397094933237,0.00140617626083357,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0552360890227281,1.0552360890227281,0.9368627637536991,0.9368627637536991,1.0044649829728858,1.0044649829728858,1.2442823200909618,1.2442823200909618,1.0620319583305609,1.0620319583305609,0.5850548814683626,0.5470165383769353,0.5323597886383354,0.6812908059199079,0.5666048281586219,0.5932439743240014,0.538501413260013,0.5332496825222339,0.7089411136344288,0.5675194766598944,28.502305742053863,28.502305742053863,23.538090227384487,23.538090227384487,26.308029726756843,26.308029726756843,37.438949276402475,37.438949276402475,28.803153782564266,28.803153782564266,12.17346876395041,11.263337330050433,10.929391807571491,14.7563795436065,11.724182478729787,12.377618322313438,11.068192316274676,10.949402168802408,15.572677518846945,11.74610762764371,222.1442619375616,222.1442619375616,0.0,246.82695770840178,0.0,222.1442619375616,246.82695770840178,0,0
+2017/07/24 10:00:00,270.46202528962823,0,919.8895703556261,0,0,0,61.88713919998651,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.8046659715413614e-09,18.60516720428113,0,0,0.0,458.5149876925523,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8966.40729165308,3324.141685960318,6098.211829413061,9200.684863695364,45467.216066977504,9566.468991623959,4721.586707887427,6640.269245209279,7522.54150169085,45730.28090881481,9887.055104177956,4717.820236887638,6708.921067885626,8002.448109699328,46154.967134267754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0489756020940709,0.0015495539114456177,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1437859064982225,1.1437859064982225,1.0157194916791576,1.0157194916791576,1.0424419167550738,1.0424419167550738,1.2406903084964143,1.2406903084964143,1.0870350111909786,1.0870350111909786,0.6019718193878877,0.5374982014250413,0.5188166790840382,0.6784560937818981,0.536089183047921,0.6236494549977607,0.540324796017478,0.5262127391768935,0.7103281247911846,0.5432641608423163,32.54753163970706,32.54753163970706,26.786197626457934,26.786197626457934,27.94043012465849,27.94043012465849,37.25920007435544,37.25920007435544,29.924097301032106,29.924097301032106,12.598402598807553,11.045408117318829,10.629089751340274,14.67455997749552,11.01348116098103,13.161074753617058,11.109715266607807,10.79210437292609,15.614494431792963,11.176955174152837,270.46202528962823,270.46202528962823,0.0,300.51336143292025,0.0,270.46202528962823,300.51336143292025,0,0
+2017/07/24 11:00:00,308.6775288124339,0,976.7785133837168,0,0,0,80.59781692947676,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.858289996310981e-09,20.87382828326958,0,0,0.0,462.1684019518268,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12910.634074626645,5474.147086064286,8791.955960609846,9221.927512301443,58273.82133170168,13040.185172347874,6549.499236968214,9385.453890136305,8610.178384221419,58873.3246473634,13728.319194437423,6692.7785665032325,9681.729879279706,9108.247026756793,60181.8362142663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052004411558905804,0.001645383331658639,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1845190494466311,1.1845190494466311,1.029709956807409,1.029709956807409,1.0572137782213256,1.0572137782213256,1.2150622126804012,1.2150622126804012,1.099524496915253,1.099524496915253,0.6367769412527143,0.5459219032046737,0.5272167490313341,0.6631735526883501,0.5352886186701235,0.6726558966626862,0.5617390854469108,0.5459201676612038,0.69810073359527,0.550707233223655,34.4943891529921,34.4943891529921,27.38720576074124,27.38720576074124,28.589685915237936,28.589685915237936,35.986779699052775,35.986779699052775,30.492174399384382,30.492174399384382,13.511729563630752,11.238075081363021,10.814416017829629,14.239444806557216,10.995379479263988,14.508229836682588,11.608155130050463,11.238035069314279,15.248710616892623,11.348894795527897,308.6775288124339,308.6775288124339,0.0,342.9750320138154,0.0,308.6775288124339,342.9750320138154,0,0
+2017/07/24 12:00:00,299.3503179745663,0,921.9693055728845,0,0,0,91.83842600708788,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.8046659715413614e-09,18.56821888003149,0,0,0.0,442.84954665353877,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14609.483028208284,6416.6590623829825,10262.778980952939,8325.39938406226,65321.47072358841,15323.2401145811,7731.004711333673,11500.52157500769,8938.929911030818,69261.05105157671,16187.587652397684,7983.513039095063,11961.89765556966,9382.126549751461,71132.29099754708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049086328737511474,0.0015530572252612403,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.204964302035362,1.204964302035362,1.0566298831746093,1.0566298831746093,1.080030101700874,1.080030101700874,1.1647648980400607,1.1647648980400607,1.1137004682238616,1.1137004682238616,0.6580782172503585,0.559202163665134,0.5419236356165196,0.6383077042547289,0.547193711935288,0.6990227569167428,0.5817474518271336,0.5665018140014689,0.6687484121124956,0.5669019824256527,35.49040969741189,35.49040969741189,28.56387309721424,28.56387309721424,29.60784073991597,29.60784073991597,33.54383912694203,33.54383912694203,31.14339226480608,31.14339226480608,14.09662180235567,11.54806752718818,11.146243342482236,13.553105233977831,11.267431066138442,15.276068121176863,12.091841413072046,11.72171538761502,14.39699726485955,11.731301619786265,299.3503179745663,299.3503179745663,0.0,332.61146441618473,0.0,299.3503179745663,332.61146441618473,0,0
+2017/07/24 13:00:00,290.8814148335547,0,890.2899871936423,0,0,0,85.85133384088215,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.7501208554848228e-09,16.375881520839837,0,0,0.0,446.6605807868407,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13151.051308863563,6108.610229960472,9327.015810980973,7751.242100188372,57682.01218866623,14585.422172220191,7692.560187693147,10925.453920832304,8277.104567840206,64994.16300639528,15538.67710043604,8080.152994474828,11514.336452677677,8712.335946607867,67028.58865000527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047399698361918305,0.0014996934158558266,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.184759865943205,1.184759865943205,1.0763344090494165,1.0763344090494165,1.0761572650531865,1.0761572650531865,1.152960000929114,1.152960000929114,1.0986179177789348,1.0986179177789348,0.6581474550236077,0.5859888025686937,0.5494899756502468,0.6307492439580199,0.5445488228864765,0.6990425944864153,0.6183730452031203,0.5765231639553019,0.6599769691486976,0.564873643823219,34.50604948274396,34.50604948274396,29.44167760575182,29.44167760575182,29.433724995141432,29.433724995141432,32.9815152028758,32.9815152028758,30.450759299054837,30.450759299054837,14.098555008678332,12.196603877422248,11.320611152298511,13.349792417926409,11.206460232786469,15.276657128299291,13.022240627379475,11.963873038306176,14.149712618562788,11.682783388483514,290.8814148335547,290.8814148335547,0.0,323.201572037283,0.0,290.8814148335547,323.201572037283,0,0
+2017/07/24 14:00:00,268.5335393628766,0,834.0582597933678,0,0,0,79.58863251148719,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.6946453781743347e-09,14.044080298500736,0,0,0.0,425.91920589911024,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12708.081870775008,7297.735909069924,9749.593991297335,7363.118781967221,58807.55704387411,12659.654851532066,7715.433898219074,9512.607939338273,7494.951614520277,54797.295824382534,13411.82319982113,8169.399189194406,10040.3282348205,7857.612533399937,56779.3002301788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04440587954391232,0.0014049710753179796,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1620570222212765,1.1620570222212765,1.145043448879069,1.145043448879069,1.0816566558009462,1.0816566558009462,1.1433609538039688,1.1433609538039688,1.0953221905680954,1.0953221905680954,0.6371691906440536,0.6229209697701624,0.5451051068319201,0.6210007026700892,0.5297772321391551,0.6688203306376472,0.658209779106111,0.5685596517295568,0.645444532608737,0.5460788955684548,33.41446708080812,33.41446708080812,32.606862046522366,32.606862046522366,29.681123972924752,29.681123972924752,32.52749393082114,32.52749393082114,30.30043753071557,30.30043753071557,13.52232216079129,13.14183479649644,11.219258693173643,13.091229151805152,10.871514017351004,14.399038565109208,14.100295353643531,11.771085888816813,13.747351139747792,11.241694998336328,268.5335393628766,268.5335393628766,0.0,298.3705992920851,0.0,268.5335393628766,298.3705992920851,0,0
+2017/07/24 15:00:00,251.97766437920825,0,834.0371413850551,0,0,0,69.68052198007832,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.6946453781743347e-09,14.096958842929457,0,0,0.0,425.89808749079754,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11010.241655790789,6871.331237643651,9052.386125841507,6992.060640560683,54899.549551789125,10219.598170200834,6785.01203854507,7966.037958505035,6533.157105711755,46075.40698353067,10665.523069399787,7166.075322674067,8350.426522185551,6794.484480860478,47515.73715217593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0444047551842112,0.0014049355013607794,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1250429620468072,1.1250429620468072,1.1283294860180004,1.1283294860180004,1.078378013301012,1.078378013301012,1.1332723339529278,1.1332723339529278,1.0962829705898798,1.0962829705898798,0.5937210150093847,0.6037403270961217,0.530948905751106,0.604222943366469,0.5149866572109458,0.6103103291699175,0.6286627412684063,0.5461832540962109,0.6198407553491744,0.5250185857831255,31.669285923093497,31.669285923093497,31.822458396116957,31.822458396116957,29.53350163625349,29.53350163625349,32.05349043156798,32.05349043156798,30.3442214288563,30.3442214288563,12.389600389310758,12.643542548871139,10.89773665520815,12.655884575497325,10.545603536519494,12.812426207951063,13.294104703337794,11.244101879673678,13.060738070159715,10.765624074069478,251.97766437920825,251.97766437920825,0.0,279.9751826435647,0.0,251.97766437920825,279.9751826435647,0,0
+2017/07/24 16:00:00,283.08686028521697,0,887.2511272554165,0,0,0,77.90069094730997,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.6946453781743347e-09,14.101507606724505,0,0,0.0,425.8765445923428,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11849.983380061736,9421.977436718145,10607.890161478126,7551.469521895759,64145.777653707766,10424.139898276007,8557.737581945687,8729.003710196845,7055.649540489987,49926.96835846262,10710.755465143333,9016.095423181914,9046.734309981606,7260.374611502142,51433.31631560826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047237907207903336,0.0014945744565205304,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1342236532332957,1.1342236532332957,1.2569015674467772,1.2569015674467772,1.1064328784539494,1.1064328784539494,1.1478986447343944,1.1478986447343944,1.1278629663350865,1.1278629663350865,0.5845992352966212,0.6760610414310047,0.5357204983887748,0.6059550079430142,0.5150061446446099,0.5988179701687214,0.7146315561188865,0.5516022262138177,0.6210391881575386,0.5272302263939587,32.098046920868796,32.098046920868796,38.07308699520007,38.07308699520007,30.808685738013708,30.808685738013708,32.74175611647368,32.74175611647368,31.800694123553114,31.800694123553114,12.16219522503772,14.605701466670496,11.005141328150557,12.700262195942827,10.54602671425343,12.51823964372285,15.744766142965005,11.369731418990526,13.09224180549252,10.814715815838966,283.08686028521697,283.08686028521697,0.0,314.5409558724633,0.0,283.08686028521697,314.5409558724633,0,0
+2017/07/24 17:00:00,295.5125435827115,0,919.8610105723138,0,0,0,83.60947739990836,0.0,16.630907673226492,0.0,133.89528835348938,0,39.380909295966944,2.8046659715413614e-09,18.56398565486124,0,0,0.0,458.48642790924004,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11841.020271566998,9353.873293068656,11169.512821764656,7562.193219498037,67238.47958458411,11421.597222340746,8941.083988278298,10235.149176668325,7467.428105637107,57612.08990668571,11628.067916717662,9367.380964886763,10549.94330315945,7637.442924945271,59041.447468944374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04897408155005292,0.0015495058024927958,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.129895663401477,1.129895663401477,1.2142369089201583,1.2142369089201583,1.122427014100553,1.122427014100553,1.1428961709074557,1.1428961709074557,1.1423907300729426,1.1423907300729426,0.5819874111813417,0.6593500244667663,0.5485405776877941,0.6012750235130239,0.5272930386336415,0.5922510559726066,0.6878237943528852,0.5636029614997763,0.6143335623631889,0.5391001885134147,31.895576388989625,31.895576388989625,35.94610348981821,35.94610348981821,31.54762009037644,31.54762009037644,32.50558472312048,32.50558472312048,32.4817667981679,32.4817667981679,12.097747638817324,14.13216540570781,11.29859595474909,12.580654638331666,10.81611315023919,12.352710372481397,14.946267525760419,11.652479343991601,12.916769335098067,11.081812030869372,295.5125435827115,295.5125435827115,0.0,328.3472706474572,0.0,295.5125435827115,328.3472706474572,0,0
+2017/07/24 18:00:00,282.1382836328304,0,916.5103383275489,0,0,0,85.99586214814886,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.962811851857584e-09,25.596815721138178,0,0,0.0,490.62610817701926,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10131.779759248624,8484.491847645524,10297.341231122005,7155.999415040035,60110.4471792941,12380.489713797942,9602.100664061561,11877.004967817727,7802.772038344877,66734.88623670586,12520.587809236767,9987.51955291306,12239.854727033196,7932.572402922726,67926.07563134698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048795689277876364,0.0015438615953508009,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1043506944425594,1.1043506944425594,1.2177256923772934,1.2177256923772934,1.1255041923921099,1.1255041923921099,1.1256675058991683,1.1256675058991683,1.1275851109345565,1.1275851109345565,0.5805474602566416,0.6775850591126985,0.5724274433307787,0.5973383467447495,0.5465585279566206,0.586964951427173,0.7047083559107783,0.5888079443802741,0.6044381217153351,0.557286060962705,30.713119089436944,30.713119089436944,36.11818261255274,36.11818261255274,31.69076075576075,31.69076075576075,31.69836628919947,31.69836628919947,31.787734880422278,31.787734880422278,12.06234297881015,14.649488736393593,11.864376897242778,12.480780093686263,11.252760939052962,12.220825513616958,15.445577306163159,12.266669292439204,12.661390625783,11.502869173729977,282.1382836328304,282.1382836328304,0.0,313.486981814256,0.0,282.1382836328304,313.486981814256,0,0
+2017/07/24 19:00:00,271.09103500696517,0,883.6230423327764,0,0,0,81.59175122898617,0.0,17.8987682197409,0.0,101.68988858149199,0,39.380909295966944,3.0137282225686274e-09,27.0977424753112,0,0,0.0,493.2291646947911,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8715.348874341697,5916.807039914787,8959.910265006949,6584.826166676738,54816.88221721683,11813.161189511522,8754.880552207955,11369.272492015554,7404.278564645288,66966.58504200766,11845.938774538497,8994.2743260278,11643.595948459697,7466.312717927898,67784.60353264409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04704474527927529,0.0014884629477437102,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0788967538794585,1.0788967538794585,1.0967159508949835,1.0967159508949835,1.0916984184119447,1.0916984184119447,1.1039155429365266,1.1039155429365266,1.111432958742651,1.111432958742651,0.5706683133700137,0.6377573505528414,0.5629242362241117,0.5851881576107961,0.554081899753148,0.5705396302384083,0.6501657770566962,0.571882026874877,0.5856785570564768,0.5610042989250225,29.556833156917236,29.556833156917236,30.363963183613734,30.363963183613734,30.13558269111499,30.13558269111499,30.693165325010526,30.693165325010526,31.038772631626216,31.038772631626216,11.82186628175964,13.538217778516639,11.636321361934051,12.176767968120515,11.427642888197312,11.818761832463224,13.877064934489354,11.851182165233055,12.188914270627052,11.590722822215142,271.09103500696517,271.09103500696517,0.0,301.21226111885017,0.0,271.09103500696517,301.21226111885017,0,0
+2017/07/24 20:00:00,257.76941443193857,0,820.6877540501379,0,0,0,64.66523626075745,0.0,24.398945138444315,0.0,106.16168237671882,0,39.380909295966944,2.911002199760711e-09,23.16264135713997,0,0,0.0,465.7842289246965,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5612.152392045024,3391.787447181969,5970.389919521365,5743.518687912584,41439.6959625429,9349.683087413097,6416.929092251564,8807.044100563873,5466.450108993481,57001.89520921166,9299.78061084219,6529.409238787095,9021.438076027054,5409.822635910889,57393.41347205144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04369402391452002,0.0013824484594083131,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.058063189912759,1.058063189912759,1.070531322102963,1.070531322102963,1.0487854553380502,1.0487854553380502,1.0793028487892158,1.0793028487892158,1.098736135703707,1.098736135703707,0.5676394019745619,0.5993043481508425,0.541649951689201,0.5744488276593687,0.5600565595022747,0.5641275009907997,0.6030221019148941,0.5454925831894567,0.5705883407515313,0.5633739708598345,28.627258510233617,28.627258510233617,29.181730694541002,29.181730694541002,28.218276005770747,28.218276005770747,29.575104751783016,29.575104751783016,30.456158240121297,30.456158240121297,11.748985062603424,12.530574000531189,11.139982733623938,11.913390837088514,11.568272928355057,11.664980409752872,12.625193972476026,11.228181310313019,11.819936877267594,11.647025675860277,257.76941443193857,257.76941443193857,0.0,286.4104604799317,0.0,257.76941443193857,286.4104604799317,0,0
+2017/07/24 21:00:00,240.5167137659702,0,809.7232327573107,0,0,0,46.44013878285533,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9628118518575836e-09,25.61261273198677,0,0,0.0,490.3100601444136,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3341.6398486273415,1666.1159820947403,3916.593164360686,4893.386087957914,32248.942471459395,6129.071961097168,4187.564264276736,5814.185135826094,3304.610166703334,41182.1643082673,5914.294152075336,4129.073755301478,5861.611275608043,3103.740681332694,41076.45624711994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04311026467939588,0.0013639787241227388,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0637604168422967,1.0637604168422967,1.0734288424835006,1.0734288424835006,1.0520604242553029,1.0520604242553029,1.0607600318165082,1.0607600318165082,1.1028462370201801,1.1028462370201801,0.5764059922348175,0.60399307571903,0.5501559901305566,0.5815933743655967,0.5701186484971082,0.5670044960050441,0.5983317362655443,0.545825740778001,0.5719450254160652,0.5694166476118537,28.879934560623013,28.879934560623013,29.31137579447322,29.31137579447322,28.362289609730723,28.362289609730723,28.74672089082175,28.74672089082175,30.6441598094669,30.6441598094669,11.961016507390582,12.6500048709066,11.336078404677494,12.088050353566999,11.808610769261975,11.733758500795105,12.505919203263431,11.235858303575881,11.852705568689288,11.791700636696007,240.5167137659702,240.5167137659702,0.0,267.2407930733002,0.0,240.5167137659702,267.2407930733002,0,0
+2017/07/24 22:00:00,161.94527207716973,0,621.7725408011514,0,0,0,25.32263709780883,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.85828999631098e-09,20.869677371180686,0,0,0.0,462.06595449470285,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,364.26538429257397,3202.585877270576,10784.821104217386,3384.496057022108,2341.5981445802245,3247.1909412487894,1520.9720671215678,26948.57659011058,2980.445564004875,2127.9961771345106,3112.205343132796,1182.2628659883376,26347.7747829428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033103630623319426,0.001047375797787804,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0254281190314098,1.0254281190314098,1.0090026544225967,1.0090026544225967,1.0246093367925717,1.0246093367925717,1.0114091576521258,1.0114091576521258,1.0505901935400725,1.0505901935400725,0.5799052570181796,0.603391024852634,0.5540776677937991,0.5842128481077719,0.5729603987412197,0.5649752425826193,0.5909226370833573,0.5438495354708603,0.5690469542932713,0.5679555490423793,27.202493282807012,27.202493282807012,26.500247769072658,26.500247769072658,27.167249454973486,27.167249454973486,26.602503049596976,26.602503049596976,28.29758971095451,28.29758971095451,12.046581876954988,12.634616090194427,11.427543825933952,12.152642342195364,11.877282637776432,11.685209404158442,12.319453106310888,11.190390706707987,11.782803880830173,11.756573545533968,161.94527207716973,161.94527207716973,0.0,179.93919119685526,0.0,161.94527207716973,179.93919119685526,0,0
+2017/07/24 23:00:00,88.19373582936304,0,474.18939984983064,0,0,0,0.8787750345445096,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.638230269642866e-09,11.803979733342029,0,0,0.0,420.9538710810144,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1470.0854876798803,0.0,0.0,0.0,0.0,0.0,1308.5398001520937,0.0,0.0,0.0,0.0,305.04824616999576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025246194883254715,0.0007987720080566747,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7916157634140523,0.7916157634140523,0.7618155918775055,0.7618155918775055,0.811141071349072,0.811141071349072,0.9586218387304839,0.9586218387304839,0.8708627320348941,0.8708627320348941,0.5137554864182781,0.5341437557387464,0.5000635285691781,0.47696149402365423,0.5685178618185134,0.47298826312857756,0.4971056040702823,0.4727837905753851,0.4317496794194009,0.5599240296983423,18.209465686600808,18.209465686600808,17.225323131713864,17.225323131713864,18.874726008678508,18.874726008678508,24.410226108600668,24.410226108600668,21.00887119076411,21.00887119076411,10.518901453588484,10.969541046396444,10.226363000898843,9.75113169446233,11.770081461197975,9.671719477148528,10.16422917201264,9.667651138273897,8.887633701927186,11.565136688662932,88.19373582936304,88.19373582936304,0.0,97.99303981040337,0.0,88.19373582936304,97.99303981040337,0,0
+2017/07/25 00:00:00,42.59165441605932,0,468.6812875300494,0,0,0,1.2556027446570912,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.99096375281121,2.580866259923389e-09,9.547766919586982,0,0,0.0,415.4457587612332,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253.2918273556179,158.96299363211352,210.22803563930975,907.9545057642313,2885.1384922289744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024952938903454045,0.0007894935932720616,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9050406780135438,0.9050406780135438,0.8981584695855191,0.8981584695855191,0.9063841081804882,0.9063841081804882,0.9334042200909939,0.9334042200909939,0.9315065199180714,0.9315065199180714,0.694863429393402,0.7391001702879795,0.647406405443114,0.6721521405856142,0.7619512397872943,0.6313957892378051,0.6805157492015339,0.6019249571108286,0.6018989314593476,0.7388584819679723,22.296580391705277,22.296580391705277,22.033448664890997,22.033448664890997,22.34816870561589,22.34816870561589,23.401193729680585,23.401193729680585,23.326281196053017,23.326281196053017,15.152946767665625,16.50062226829398,13.8011352462172,14.493852528518431,17.229717097795245,13.367086719807347,14.733974206054938,12.5972083173599,12.59654509684276,16.49303047713215,42.59165441605932,42.59165441605932,0.0,47.32406046228813,0.0,42.59165441605932,47.32406046228813,0,0
+2017/07/25 01:00:00,23.76729373533572,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5701983116579269,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.930796674818081,0.930796674818081,0.9311985568994459,0.9311985568994459,0.9136694533606524,0.9136694533606524,0.9534869811293973,0.9534869811293973,1.0345837752825984,1.0345837752825984,0.6670141760635747,0.7260795796689251,0.600061581009915,0.6535412060497535,0.8196182045576385,0.6176624477559404,0.684071521008828,0.566516383189335,0.598675299977425,0.7783808647642347,23.298296670231636,23.298296670231636,23.3141377692164,23.3141377692164,22.629200522166727,22.629200522166727,24.202730653531944,24.202730653531944,27.598278599853444,27.598278599853444,14.34784137317564,16.09519962789939,12.549797567398443,13.970395521811,19.168567337641463,13.00363553046408,14.836978275654204,11.72206427786574,12.514623530606883,17.767719849926408,23.76729373533572,23.76729373533572,0.0,26.40810415037302,0.0,23.76729373533572,26.40810415037302,0,0
+2017/07/25 02:00:00,28.351580287424408,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5322172009515154,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9451856235605418,0.9451856235605418,0.9477069554324503,0.9477069554324503,0.9208029568671062,0.9208029568671062,0.970484214820816,0.970484214820816,1.12096709707315,1.12096709707315,0.6584421170305145,0.7152928448744803,0.5901333639636864,0.6437550709020468,0.8448116881493417,0.6013994767634274,0.6677431324177442,0.5469795183900964,0.5829117454990717,0.7874441472972474,23.869474120010082,23.869474120010082,23.97040507886912,23.97040507886912,22.906449028542966,22.906449028542966,24.89351877008184,24.89351877008184,31.47981850728199,31.47981850728199,14.106784668230063,15.764855149873242,12.299729744947427,13.701168835522765,20.0596478178732,12.583823018604306,14.368487342336522,11.262482125622185,12.12052203783864,18.069425106591638,28.351580287424408,28.351580287424408,0.0,31.501755874916007,0.0,28.351580287424408,31.501755874916007,0,0
+2017/07/25 03:00:00,23.721940503052515,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248450793747247,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9242464802870423,0.9242464802870423,0.9285064603878029,0.9285064603878029,0.897611428705592,0.897611428705592,0.9374027088826569,0.9374027088826569,1.122315126192887,1.122315126192887,0.644522760227858,0.6993939418924546,0.575931349424738,0.628763021052678,0.8646548993081807,0.5811805801126888,0.6460380441835352,0.5261190802422159,0.5623200194749155,0.7933143293411142,23.041015804662834,23.041015804662834,23.208145743544932,23.208145743544932,22.01261586734529,22.01261586734529,23.55950535189139,23.55950535189139,31.54242129350004,31.54242129350004,13.722138675643649,15.28709197371279,11.94945127779782,13.296776799936339,20.780125257959384,12.077898671911313,13.763604460200227,10.790025259226383,11.621953966609269,18.2666978216418,23.721940503052515,23.721940503052515,0.0,26.35771167005835,0.0,23.721940503052515,26.35771167005835,0,0
+2017/07/25 04:00:00,45.65655912663505,0,88.72588128136032,0,0,0,0.045808207671827,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,5.577606638850053,0.0,0.5250107304790536,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.914389776837313,17.385623240416496,0.0,151.44406187429905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9647629856386277,0.9647629856386277,0.9644545195121275,0.9644545195121275,0.9444957327690197,0.9444957327690197,0.9614334964081521,0.9614334964081521,1.0212554541808418,1.0212554541808418,0.5016002057176919,0.522622063428038,0.47591553920516616,0.49517982730341836,0.5870339672721382,0.4710172021649655,0.49352713942668286,0.45315869932352154,0.4640676063624102,0.5656082900803128,24.659741178164424,24.659741178164424,24.647173039804542,24.647173039804542,23.841901020363053,23.841901020363053,24.52428088094979,24.52428088094979,27.023143956972874,27.023143956972874,10.258791485969397,10.712667539063688,9.730160379604257,10.123979677732578,12.222539601058045,9.63257682676327,10.089565576816653,9.285558927995794,9.495902986275752,11.700335650277893,45.65655912663505,45.65655912663505,0.0,50.729510140705614,0.0,45.65655912663505,50.729510140705614,0,0
+2017/07/25 05:00:00,76.5591012904073,0,212.9421150752648,0,0,0,0.2995431058598879,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.9484530955879156,0.0,0.5250620590036158,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1212.9080792727605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0036867561257696,1.0036867561257696,1.0009793422460391,1.0009793422460391,1.0042609565498914,1.0042609565498914,1.0156979140711588,1.0156979140711588,1.0158943606113369,1.0158943606113369,0.6352334433754232,0.6708798470107215,0.5874861718752624,0.6222916204774044,0.8000250971125537,0.5776235634507376,0.6145440713263233,0.5446923461105982,0.5642830035651272,0.7614161480368515,26.27514170565358,26.27514170565358,26.16090434227607,26.16090434227607,26.299405316012866,26.299405316012866,26.785276315485987,26.785276315485987,26.793664743543715,26.793664743543715,13.470112588004298,14.45758990193923,12.233775733772092,13.125231650161822,18.494008725112423,11.990728757778015,12.922248254672226,11.209760997176858,11.66868871164992,17.21238873957573,76.5591012904073,76.5591012904073,0.0,85.06566810045256,0.0,76.5591012904073,85.06566810045256,0,0
+2017/07/25 06:00:00,88.45324830015981,0,630.6768947141442,0,0,0,0.43652431639750855,0.0,9.644775464811657,0.0,73.80580873715317,0,4.040989936036955,2.522555965005721e-09,0.525149843237976,0,0,0.0,399.9896033826074,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1802.3661785432714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03357770502116147,0.0010623751812784115,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0182717033175948,1.0182717033175948,1.0150472411088014,1.0150472411088014,1.0269982274130216,1.0269982274130216,1.061033733433083,1.061033733433083,1.0022065146741725,1.0022065146741725,0.7658929285660938,0.804636560955361,0.7094123003051952,0.8122806965470327,1.0526738960701794,0.7098041600410355,0.7531769990654542,0.6664109313635109,0.7652432624076724,0.9888156337732712,26.89529353934344,26.89529353934344,26.757502355650317,26.757502355650317,27.27014682127303,27.27014682127303,28.758859620450295,28.758859620450295,26.21264961350346,26.21264961350346,17.35774124508997,18.651315721417106,15.586873993103353,18.914052486828638,28.389309489962386,15.598687702153157,16.94711840503429,14.33077329091995,17.33659473590899,25.65110207642786,88.45324830015981,88.45324830015981,0.0,98.28138700017757,0.0,88.45324830015981,98.28138700017757,0,0
+2017/07/25 07:00:00,146.39453453044553,0,759.2965887958896,0,0,0,2.4349902390196516,0.0,8.155997018671421,0.0,69.33401494192633,0,39.38090929596693,3.013742829760623e-09,27.08862303184743,0,0,0.0,493.11894495180866,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2210.9389332281353,0.0,0.0,0.0,0.0,0.0,3487.1167304424944,0.0,0.0,0.0,0.0,2851.3031148067757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04042551280353846,0.0012790350461970423,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6196679009345377,0.6196679009345377,0.5572745227445894,0.5572745227445894,0.6760094621761057,0.6760094621761057,1.0596174683262438,1.0596174683262438,0.8322701018121289,0.8322701018121289,0.36032139014918974,0.3659021143953787,0.3634369155650597,0.3902083207580337,0.6162307611386514,0.3368312490822012,0.3507087392341375,0.3439835380417984,0.3698854514858738,0.5890428178970086,13.056199312429484,13.056199312429484,11.5025974844867,11.5025974844867,14.60422127714503,14.60422127714503,28.696076841259583,28.696076841259583,19.612736392847836,19.612736392847836,7.702097374832533,7.786875906301304,7.7492627120360424,8.171608072592647,12.966217189677167,7.359780591515673,7.559177718846669,7.461525312123541,7.848199669500531,12.272522275322956,146.39453453044553,146.39453453044553,0.0,162.66059392271725,0.0,146.39453453044553,162.66059392271725,0,0
+2017/07/25 08:00:00,187.71467529120665,0,809.9216878991914,0,0,0,28.245252005875475,0.0,11.276247110228917,0.0,83.2008179303116,0,39.380909295966944,2.9628263624481023e-09,25.611448945860914,0,0,0.0,490.50851528629426,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5039.184796226895,11693.787894096627,3146.7657763581497,1665.1726938505462,2829.481151274692,2745.2073232603952,32241.455115764456,2390.915503381566,1137.6057589948778,2339.6184049846474,2385.415436747218,30687.817857958686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043120830578146654,0.0013643130217941741,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.856043609012987,0.856043609012987,0.7552582073948878,0.7552582073948878,0.8837127972613575,0.8837127972613575,1.1429663170680584,1.1429663170680584,0.9626389198718768,0.9626389198718768,0.4710405629023533,0.4617459139959766,0.4582281702019311,0.5224630674486502,0.5495211750204656,0.4486169364084004,0.4389718192612662,0.4417832917284064,0.5082375604181072,0.5382511517793044,20.46545510385107,20.46545510385107,17.01385156281256,17.01385156281256,21.487411878693237,21.487411878693237,32.50889087136855,32.50889087136855,24.57327354070192,24.57327354070192,9.633039759292672,9.4507072199076,9.382670542549633,10.709162959689195,11.321335284668947,9.199495348770881,9.019668472114972,9.071673598392579,10.400032000746037,11.062504482614301,187.71467529120665,187.71467529120665,0.0,208.57186143467405,0.0,187.71467529120665,208.57186143467405,0,0
+2017/07/25 09:00:00,222.10356779835416,0,834.6565397406202,0,0,0,44.3011740070626,0.0,11.276247110228917,0.0,106.27511244621549,0,39.380909295966944,2.8583042841141168e-09,20.870124936021973,0,0,0.0,462.0078383589069,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2611.5178172113906,1145.3347841419823,2605.9584350350106,5601.576661667965,26938.01286838929,5488.312704098113,3281.687791221493,4917.1054850266855,3914.5082052210228,42212.0920226796,5100.291341623466,3002.4479591402496,4676.438254743496,3783.6907469311827,41052.14991241481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04443773241145399,0.001405978877843718,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9781836766552313,0.9781836766552313,0.9151599653889612,0.9151599653889612,0.9839442393669889,0.9839442393669889,1.1059093332338132,1.1059093332338132,1.0374144288044214,1.0374144288044214,0.5256627899095367,0.523786779974383,0.5016640914759188,0.5593082437475376,0.5506492659056065,0.5202930650459803,0.5151167427879827,0.49941379975307776,0.5587952320618981,0.5453584356297313,25.210135557438193,25.210135557438193,22.68696098283354,22.68696098283354,25.448518765026506,25.448518765026506,30.784642636210464,30.784642636210464,27.721267798068638,27.721267798068638,10.779901603937361,10.738373512740665,10.260141875999977,11.550574468331419,11.347546436807491,10.661441266564339,10.548428710161716,10.212682471895747,11.538455228564942,11.225091489169728,222.10356779835416,222.10356779835416,0.0,246.7817419981713,0.0,222.10356779835416,246.7817419981713,0,0
+2017/07/25 10:00:00,268.92798149364484,0,918.8366359482375,0,0,0,60.119679037277216,0.0,16.932384784220176,0.0,133.89528835348938,0,39.380909295966944,2.8046801329326533e-09,18.599720019886373,0,0,0.0,457.4620532851638,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8276.438422505547,3336.939085385267,5759.307386089619,8241.726620149479,44651.85624506309,8947.101958667361,4593.391169766977,6236.8453756514355,6469.509215571844,45891.36714083457,9017.363211421725,4524.838960081595,6235.148333550354,6669.519419190899,45952.56923503694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048919543086305986,0.001547780243516288,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.127610037520029,1.127610037520029,0.9933045608343385,0.9933045608343385,1.0242394302146622,1.0242394302146622,1.2517581013721593,1.2517581013721593,1.0774131017319892,1.0774131017319892,0.5842184929602658,0.5246049849533888,0.500603142805836,0.6379951661220318,0.5349829607492965,0.5976280230185059,0.5232784020771547,0.505040232868322,0.65948349900951,0.539817569651319,31.788897359213934,31.788897359213934,25.838584396448468,25.838584396448468,27.151335273522207,27.151335273522207,37.814125360150705,37.814125360150705,29.49012762111687,29.49012762111687,12.15278185664603,10.756466886548367,10.237738850644376,13.544649245341475,10.988475524853058,12.488106332849753,10.72714609495904,10.331756297910715,14.135899725030185,11.098150002113641,268.92798149364484,268.92798149364484,0.0,298.80886832627203,0.0,268.92798149364484,298.80886832627203,0,0
+2017/07/25 11:00:00,304.44098542475285,0,977.5659168825083,0,0,0,76.19568936397887,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.8583042841141176e-09,20.872022784159466,0,0,0.0,462.9558054506184,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11796.908428181821,4838.7185662707325,7815.727721857728,8931.119272967562,54604.195951254915,12153.487917623987,6113.31259254111,8673.270320076004,7627.330313810882,57669.53126756789,12576.482288727486,6154.286203389502,8846.741753426253,7934.547228427933,58628.09972637499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05204633350441649,0.0016467097127925905,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1643226394287876,1.1643226394287876,1.0085454699863468,1.0085454699863468,1.0359855824633573,1.0359855824633573,1.1972776963099534,1.1972776963099534,1.09324356268736,1.09324356268736,0.615213244860282,0.5299722299357658,0.507373096987971,0.6206916429434473,0.5358985472859232,0.6416090185855501,0.5391186401086914,0.5215407990154541,0.6439137250815136,0.5465838826200604,33.52269421181657,33.52269421181657,26.48084605716656,26.48084605716656,27.659149061867893,27.659149061867893,35.114518021443956,35.114518021443956,30.205820198916285,30.205820198916285,12.93967761657855,10.875874041603964,10.3815286627988,13.08309931376715,11.009168148832558,13.642683860886976,11.082231976711114,10.688855956504625,13.705500463383316,11.253346192020146,304.44098542475285,304.44098542475285,0.0,338.2677615830587,0.0,304.44098542475285,338.2677615830587,0,0
+2017/07/25 12:00:00,298.3897432333962,0,914.024714296842,0,0,0,90.66576982865142,0.0,16.798297433460366,0.0,129.49988082968767,0,39.380909295966944,2.8046801329326533e-09,18.61291064037086,0,0,0.0,434.90495537749615,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14246.161286729064,6223.494005386083,9738.100850313936,7925.281989503735,63806.16754421306,14773.88260193723,7508.192206868141,10975.649497818105,8240.161607087257,68392.20036030746,15361.178742938246,7632.604625361115,11270.93859900718,8512.287560326666,69981.30449270233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048663352813363245,0.001539674561859731,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1924065137683482,1.1924065137683482,1.0356485430917275,1.0356485430917275,1.0551214176842738,1.0551214176842738,1.1393123295186645,1.1393123295186645,1.1032927877942784,1.1032927877942784,0.6365546097908533,0.5359815993832135,0.5137094992904623,0.5935314164981927,0.5425268434996673,0.6714728812330568,0.5533032667573,0.5356468007379106,0.6164604018130478,0.5579475499467904,34.87719231421846,34.87719231421846,27.64450726826881,27.64450726826881,28.497243530078322,28.497243530078322,32.33687987227215,32.33687987227215,30.664620196516722,30.664620196516722,13.505728521288702,11.011046955883486,10.517905338199597,12.38483696705704,11.160053378642232,14.474483711349905,11.409429614878164,11.003474956235507,12.972213053292847,11.518454839345338,298.3897432333962,298.3897432333962,0.0,331.544159148218,0.0,298.3897432333962,331.544159148218,0,0
+2017/07/25 13:00:00,293.9455833385358,0,898.1347190411932,0,0,0,88.72068948420106,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,2.7501348801966416e-09,16.34069131231551,0,0,0.0,454.50531263439154,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13958.216441750088,6623.309408946374,9775.365913061407,7386.865464719366,63305.16198566334,14490.190553969489,7595.710797562045,10631.148182245715,7826.550236096327,65727.06266457523,15178.85852194518,7817.46975219834,11045.788164988726,8104.9149381287925,67521.86576393127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047817357696127084,0.0015129078660576208,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.189279185729194,1.189279185729194,1.0778131767050523,1.0778131767050523,1.0677438584896217,1.0677438584896217,1.124140409297786,1.124140409297786,1.110077831688741,1.110077831688741,0.6414727989104779,0.5589930955624466,0.5195418624443793,0.5859921401496836,0.5416106617591885,0.6761186612935902,0.5815920056137965,0.5431499923967511,0.6100340092144177,0.5583961346746491,34.72519376046756,34.72519376046756,29.508107550051363,29.508107550051363,29.057289704720404,29.057289704720404,31.62728339869635,31.62728339869635,30.976331233511843,30.976331233511843,13.638978295346746,11.543128146719127,10.644968647362717,12.19668662392408,11.139084230098618,14.607355141957498,12.088016680191174,11.174336507653365,12.805285591092087,11.529034959748714,293.9455833385358,293.9455833385358,0.0,326.60620370948425,0.0,293.9455833385358,326.60620370948425,0,0
+2017/07/25 14:00:00,269.8506218168258,0,833.9235213324032,0,0,0,80.71140954227842,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.6946592557474056e-09,14.070996128038527,0,0,0.0,425.7844674381457,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12652.815463917199,7576.4939053004855,9492.585893803436,6944.201084319154,60066.51884554653,12432.031846231694,7658.113460767994,9036.272226971992,6990.211655253042,55119.486009115186,12979.48183248704,7953.851113696719,9397.713646620861,7214.3259963237315,56962.04797613118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04439870596844889,0.0014047441083907112,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1538997159055535,1.1538997159055535,1.1619487323762172,1.1619487323762172,1.0666156922252608,1.0666156922252608,1.1111735564154448,1.1111735564154448,1.1004413243624582,1.1004413243624582,0.6187865332026667,0.6033324465775544,0.5129534936845274,0.5734949473764437,0.5237797756048904,0.646990606810887,0.6340722633563792,0.5344574354375641,0.5946812652376829,0.5375532765929357,33.02611889044687,33.02611889044687,33.40929811855608,33.40929811855608,29.007003078651238,29.007003078651238,31.02681515318737,31.02681515318737,30.53408613961183,30.53408613961183,13.033076791875558,12.633119634187082,10.501542807241933,11.890239336886424,10.738218746727696,13.789722325340506,13.438872076805723,10.976614843043606,12.413749418848994,11.0466578123889,269.8506218168258,269.8506218168258,0.0,299.8340242409176,0.0,269.8506218168258,299.8340242409176,0,0
+2017/07/25 15:00:00,257.8601789743627,0,833.9051471852682,0,0,0,75.49115687760028,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,2.694659255747407e-09,14.064062340201248,0,0,0.0,425.7660932910108,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11295.02090065062,9150.869782992999,9393.791238684757,6718.939311637099,59242.851571372325,10386.988948945167,8009.831250473735,7801.623314819039,6396.134403480784,47896.14520269027,10713.473013512012,8374.873414964362,8064.128450068299,6550.669157810084,49610.04432178009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04439772771524557,0.001404713157141257,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1100181094450032,1.1100181094450032,1.227644621367089,1.227644621367089,1.0617066653173879,1.0617066653173879,1.0995408897974848,1.0995408897974848,1.0984797207815078,1.0984797207815078,0.5784331393830777,0.6371972841456787,0.4982180489354178,0.5552655875974232,0.5041729067266114,0.5970048271154048,0.6726425591702619,0.5156825674631145,0.5702855810624202,0.515296898872166,30.973580776025855,30.973580776025855,36.60925880722461,36.60925880722461,28.788715673835455,28.788715673835455,30.49292353038514,30.49292353038514,30.444448529999008,30.444448529999008,12.010520349067008,13.52308107491578,10.187552713267735,11.455381291060917,10.313311624550721,12.472349517077518,14.507849040174534,10.560725699056931,11.812635066786413,10.552342514403009,257.8601789743627,257.8601789743627,0.0,286.51130997151415,0.0,257.8601789743627,286.51130997151415,0,0
+2017/07/25 16:00:00,283.29438184584706,0,887.1219659082418,0,0,0,77.89290876051987,0.0,16.840460162178484,0.0,131.64086955684016,0,39.380909295966944,2.694659255747407e-09,14.107258865192653,0,0,0.0,425.74738324516795,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11139.029670180185,10762.076063873346,9935.446781962184,6924.956233239347,63369.507115786444,9954.126585170705,8910.14154659031,8017.568522619728,6360.595851842067,48916.46767742785,10148.742778705906,9356.279402011838,8241.871908961028,6484.927231321413,50485.00047976706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04723103056210908,0.0014943568842410177,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1001289304967716,1.1001289304967716,1.2939862584340869,1.2939862584340869,1.0736444340972795,1.0736444340972795,1.1039577161279166,1.1039577161279166,1.1204096290584107,1.1204096290584107,0.5519229756914664,0.6779785522632054,0.4921133662659578,0.5446844660176968,0.4978023662099914,0.567274184657996,0.718917746254461,0.5082000499268726,0.5576185004561248,0.5087477017020682,30.5198021905411,30.5198021905411,39.959474196308015,39.959474196308015,29.321033932754176,29.321033932754176,30.69509888573687,30.69509888573687,31.453947114786615,31.453947114786615,11.377207344139634,14.660810697637174,10.060220040589499,11.209579746691162,10.178831244476797,11.740224142764959,15.875309128184199,10.399228439864217,11.510699571693479,10.410966438761065,283.29438184584706,283.29438184584706,0.0,314.7715353842745,0.0,283.29438184584706,314.7715353842745,0,0
+2017/07/25 17:00:00,294.7454683991996,0,919.7584416814541,0,0,0,82.65298684784658,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,2.8046801329326545e-09,18.586011341560567,0,0,0.0,458.3838590183804,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11041.859421990803,11277.58574355031,10643.423713106075,6921.382649998153,65815.60497031831,10784.226298786261,9855.292286548825,9589.027900526107,6657.162190691938,55691.190534019814,10927.488542658715,10354.821817690232,9865.482305862171,6768.497635020211,57037.4202238283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048968620706330096,0.0015493330252039274,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0985071472390169,1.0985071472390169,1.3082034959245714,1.3082034959245714,1.1038303006918286,1.1038303006918286,1.1038110663037066,1.1038110663037066,1.1321260815220617,1.1321260815220617,0.5502554955722371,0.708145154582202,0.5172189538714473,0.5464631073044468,0.5109811513074985,0.5601075524003827,0.7481718951474974,0.5345063584501167,0.5562558461935126,0.5214767588328479,30.445700908007325,30.445700908007325,40.691160839659275,40.691160839659275,30.689257313864644,30.689257313864644,30.68837552921373,30.68837552921373,31.999842975904414,31.999842975904414,11.338390929958067,15.548717661365345,10.594185634477071,11.250558626722807,10.458970986775313,11.569479848143857,16.787390908969797,10.977718490965643,11.478633563826122,10.687447252077334,294.7454683991996,294.7454683991996,0.0,327.4949648879995,0.0,294.7454683991996,327.4949648879995,0,0
+2017/07/25 18:00:00,287.5035454418996,0,904.2867716066035,0,0,0,91.1482456904143,0.0,17.03716081602578,0.0,110.93442390708215,0,39.380909295966944,2.962826362448104e-09,25.57083052699327,0,0,0.0,478.40254145607383,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10874.63556551488,11422.977363067848,11722.165745472954,6860.915854797722,66305.71612973677,12322.557164205266,11171.849378003586,12158.769672916671,7429.365874331203,66029.2204762044,12403.521958119214,11665.729990684124,12523.934469860462,7509.452666747085,67254.04920743103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04814489753157588,0.0015232709981371215,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0899918186859914,1.0899918186859914,1.3151413430681993,1.3151413430681993,1.1474425302931732,1.1474425302931732,1.0966018386885716,1.0966018386885716,1.1308997552835207,1.1308997552835207,0.5567524138996367,0.7411218272085549,0.5619424292347363,0.552910285623439,0.5336016122768885,0.5640480927258599,0.7804383960844448,0.5857597711733527,0.5600855477997431,0.5436031666012012,30.05810139262904,30.05810139262904,41.04982479124014,41.04982479124014,32.7201895495662,32.7201895495662,30.358759610808207,30.358759610808207,31.942495172409735,31.942495172409735,11.490309481367234,16.564223719470363,11.612983458831948,11.4002472378683,10.95732520695249,11.663087149036556,17.835905997990352,12.190926803889738,11.568959020848055,11.184734232877204,287.5035454418996,287.5035454418996,0.0,319.44838382433284,0.0,287.5035454418996,319.44838382433284,0,0
+2017/07/25 19:00:00,277.00013925668276,0,895.3371209630976,0,0,0,87.4750551911619,0.0,17.924568507282753,0.0,101.68988858149199,0,39.380909295966944,3.0137428299179813e-09,27.0977424753112,0,0,0.0,504.9432433251123,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9777.153197502928,7627.255762934266,11473.963168096881,6447.894740317411,60987.8045087977,12021.397461254162,10879.037297801446,12585.563529252584,7218.850448199981,67473.84861586624,12041.577221547304,11295.428159459256,13023.32036914258,7257.574109076987,68325.8065884401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047668411502249736,0.001508195312307403,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0764907680180666,1.0764907680180666,1.128974350175719,1.128974350175719,1.14796899517711,1.14796899517711,1.086866817672593,1.086866817672593,1.1183737850610997,1.1183737850610997,0.5600917447860169,0.7256025344531032,0.5864552592070335,0.5562250514040791,0.5484921151098072,0.561324503254873,0.7524197993871585,0.6071156525297631,0.5571629207802407,0.5551405492926486,29.448698018538707,29.448698018538707,31.85255458789557,31.85255458789557,32.74508310059666,32.74508310059666,29.9164837666236,29.9164837666236,31.3595535463552,31.3595535463552,11.569105695305723,16.080484246040726,12.208173124535264,11.477909830507485,11.29747322407097,11.598316572495307,16.922885080091277,12.730072192767324,11.499969902375852,11.452448288465163,277.00013925668276,277.00013925668276,0.0,307.7779325074253,0.0,277.00013925668276,307.7779325074253,0,0
+2017/07/25 20:00:00,270.49386518036476,0,820.3538538878657,0,0,0,79.38852133786342,0.0,22.393783830937632,0.0,106.16168237671882,0,39.380909295966944,2.9110166038997077e-09,23.168968335966902,0,0,0.0,465.4503287624244,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7293.184840348675,5255.347108472381,7787.251052143794,5757.730531062674,51495.12187731908,11609.859620078041,9512.717742965391,11132.241074320855,6739.120847378751,69398.49820685547,11582.406975524756,10017.870605566623,11799.44446513227,6728.341093481386,69839.41743356815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04367624682255858,0.0013818860046103086,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0828302552066522,1.0828302552066522,1.1253219955375757,1.1253219955375757,1.081260254490484,1.081260254490484,1.073216089862426,1.073216089862426,1.1233088682770183,1.1233088682770183,0.588658339499185,0.6754963284769451,0.569181960972767,0.5834444255707092,0.5821767992948869,0.5856820447574068,0.6967872243511063,0.5876203874797468,0.5802331682657772,0.5854875576794495,29.73405692049174,29.73405692049174,31.68227685579174,31.68227685579174,29.663255892319654,29.663255892319654,29.301846441835394,29.301846441835394,31.5886093048249,31.5886093048249,12.262942428407527,14.589501953893716,11.786052160825207,12.133663423285512,12.102410896435643,12.189000692011717,15.209800666859849,12.237112357521653,12.054627315439959,12.184182322597565,270.49386518036476,270.49386518036476,0.0,300.5487390892942,0.0,270.49386518036476,300.5487390892942,0,0
+2017/07/25 21:00:00,254.11125806433202,0,809.8866042324371,0,0,0,60.03647891630461,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.962826362448104e-09,25.61081689689937,0,0,0.0,490.47343161953995,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4942.732996901762,3415.9849580701275,5582.7845779569525,4988.197292791278,40908.80802545436,8255.729845740245,7003.923261574862,7888.462678974249,4536.857833230954,51968.535344052245,8086.291525140564,7165.989775117362,8183.729328187163,4406.4539216886915,51920.51895275761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043118962697741944,0.0013642539233601893,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0845906546283952,1.0845906546283952,1.1171494966046622,1.1171494966046622,1.0794041386695647,1.0794041386695647,1.0595533173258769,1.0595533173258769,1.1226391660813282,1.1226391660813282,0.596962982322896,0.6719922183497563,0.5769026503525658,0.5915526186812249,0.5906940392941503,0.5890964667341504,0.672976545758774,0.5779587821770936,0.5836541750693712,0.5902523348651342,29.813546190282167,29.813546190282167,31.30285460990305,31.30285460990305,29.579663026998986,29.579663026998986,28.693234736005394,28.693234736005394,31.557478724294498,31.557478724294498,12.471292121895758,14.489290610288805,11.97312863089688,12.335215289746841,12.313737832614052,12.273859525334686,14.517386953023717,11.998920354099496,12.138841388317871,12.30270101084011,254.11125806433202,254.11125806433202,0.0,282.3458422937022,0.0,254.11125806433202,282.3458422937022,0,0
+2017/07/25 22:00:00,184.4170456229896,0,621.6849435797701,0,0,0,47.7955377568829,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8583042841141163e-09,20.868550257926437,0,0,0.0,461.9783572733214,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2807.1395663636304,2029.6776394555818,3193.317032392317,3577.5584738487028,24883.003759590218,7108.573252639694,6046.459380785455,6551.776596597994,4010.3693737269987,43337.78840511222,6811.805410232465,6013.671152674971,6588.175936920304,3834.1727843371755,43027.410760318526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03309896688236924,0.0010472282402750359,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0331304843174367,1.0331304843174367,1.0608404662619277,1.0608404662619277,1.0266561186135754,1.0266561186135754,1.0125934841597182,1.0125934841597182,1.0454729008611143,1.0454729008611143,0.5777312728787685,0.6419018681206985,0.5575609345333188,0.5720307296851155,0.5702106553061445,0.5653468192267104,0.6358306659550497,0.5535232576350585,0.5595858120699145,0.5657499147581299,27.535248751732368,27.535248751732368,28.7502878994259,28.7502878994259,27.25539810637339,27.25539810637339,26.652906402759754,26.652906402759754,28.073004423020393,28.073004423020393,11.993360275283962,13.650652932111626,11.509343300435916,11.854778308669964,11.810828657741695,11.694085872300505,13.486203105076953,11.414572833475717,11.55713641999614,11.703722056436732,184.4170456229896,184.4170456229896,0.0,204.90782846998843,0.0,184.4170456229896,204.90782846998843,0,0
+2017/07/25 23:00:00,108.60844998305187,0,473.9933160543176,0,0,0,21.26286559922971,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.638243989426268e-09,11.83460332234568,0,0,0.0,420.75778728550137,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1962.6916702191374,2136.951360146356,3337.417251658165,3372.88499885173,3118.206258831164,1531.5467254601601,24082.255832689032,2915.555633372845,3202.7444818301306,3027.6580997175242,1243.4595256941275,23388.766685468072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025235755236741025,0.0007984417049180153,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9375840233590671,0.9375840233590671,0.9664236602703399,0.9664236602703399,0.949924290913523,0.949924290913523,0.9616479717444258,0.9616479717444258,0.981781764993329,0.981781764993329,0.5527715940593724,0.6107329433703871,0.5334027557115092,0.5462101315907166,0.5486375924594056,0.5358921492032933,0.5982477722205062,0.5243197607183294,0.5292391129045053,0.5413043078242752,23.566699185793752,23.566699185793752,24.727467434108874,24.727467434108874,24.0593742413849,24.0593742413849,24.53299376096183,24.53299376096183,25.35888154985426,25.35888154985426,11.397008176272863,12.823353747468559,10.952847665307573,11.244721847374436,11.300843798092671,11.009023423609221,12.503792718778797,10.75015629102468,10.859490561298017,11.132080655434365,108.60844998305187,108.60844998305187,0.0,120.67605553672429,0.0,108.60844998305187,120.67605553672429,0,0
+2017/07/26 00:00:00,47.371286828756624,0,451.28843392791856,0,0,0,0.26720510415236637,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,7.765168672028679,2.5808798110745528e-09,9.541592053571511,0,0,0.0,398.05290515910235,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1049.016416286443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024026930494673984,0.0007601953326993675,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9439021018495021,0.9439021018495021,0.964995865837654,0.964995865837654,0.942622521192474,0.942622521192474,0.9361838987713317,0.9361838987713317,0.9553997094654234,0.9553997094654234,0.7383355717788402,0.8734581935825358,0.6968211605502551,0.7146273988117483,0.7457404739294416,0.6995948661016069,0.8436317736989097,0.6760567379442031,0.676662874590364,0.7273746284019837,23.818190244490864,23.818190244490864,24.669232103712616,24.669232103712616,23.767128742501754,23.767128742501754,23.511181760456495,23.511181760456495,24.27990148608744,24.27990148608744,16.476613667825916,21.104979801697098,15.21080501781519,15.744639909518,16.7101844666809,15.293061719405301,20.017322482222028,14.605577963468363,14.622981010671609,16.135197266557157,47.371286828756624,47.371286828756624,0.0,52.63476314306291,0.0,47.371286828756624,52.63476314306291,0,0
+2017/07/26 01:00:00,23.72215747421399,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250620505361981,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0196131588402413,1.0196131588402413,1.0694836045627967,1.0694836045627967,1.008779616540454,1.008779616540454,1.0062540441487982,1.0062540441487982,1.0436623339815714,1.0436623339815714,0.7657435859045565,0.9326116541529008,0.7153112479653613,0.7349261731091487,0.8048022015091622,0.7324426339127299,0.9174430575185467,0.703087646488408,0.7013094810268353,0.7826779632998865,26.95273238112867,26.95273238112867,29.134925113444268,29.134925113444268,26.490781641907418,26.490781641907418,26.383722542063055,26.383722542063055,27.993770606086642,27.993770606086642,17.352878575049786,23.369889384679098,15.76541447893149,16.369863117653807,18.65698280472597,16.292416143759397,22.775609123032524,15.397115672511177,15.344076274800628,17.910329474670775,23.72215747421399,23.72215747421399,0.0,26.357952749126653,0.0,23.72215747421399,26.357952749126653,0,0
+2017/07/26 02:00:00,28.344488444085435,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251253576125379,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.050421183786472,1.050421183786472,1.1078145092682565,1.1078145092682565,1.0362934978689653,1.0362934978689653,1.0348416623175798,1.0348416623175798,1.105379365496393,1.105379365496393,0.7740045936180665,0.9448899725803525,0.7213928773567254,0.7420372969299731,0.8290494744007844,0.7432119147781637,0.9382630007838755,0.7113579211394319,0.7097491445438354,0.8032416653059652,28.29015716173599,28.29015716173599,30.87217964536947,30.87217964536947,27.672529282197473,27.672529282197473,27.60947137619239,27.60947137619239,30.760314015555963,30.760314015555963,17.623290481598048,23.857655431592875,15.95105368409692,16.5930821406443,19.499032984564863,16.63016236604804,23.59364990346222,15.64559535010089,15.597028706409006,18.603637960614023,28.344488444085435,28.344488444085435,0.0,31.493876048983815,0.0,28.344488444085435,31.493876048983815,0,0
+2017/07/26 03:00:00,23.722286133166033,0,53.2742676913499,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251907094882381,0,0,0.0,17.783915178805763,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002836361472492709,8.974049988263055e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0317568144311309,1.0317568144311309,1.0903871219831778,1.0903871219831778,1.0154414611704443,1.0154414611704443,1.0149019173620324,1.0149019173620324,1.0997867507580483,1.0997867507580483,0.7651519140218866,0.9399491059836405,0.7103167317610242,0.7306476289557378,0.8497954967051412,0.7342288298546288,0.9364733110464498,0.7005992325433602,0.6982479010840777,0.8181000112058726,27.475743507370822,27.475743507370822,30.07603962011335,30.07603962011335,26.77432773858611,26.77432773858611,26.75130137899687,26.75130137899687,30.504160118430335,30.504160118430335,17.33362280841976,23.660655837688665,15.61415060616416,16.23660550352284,20.239064444924523,16.348090329160385,23.522651079415724,15.32292901339116,15.253074785591181,19.11572006818932,23.722286133166033,23.722286133166033,0.0,26.358095703517815,0.0,23.722286133166033,26.358095703517815,0,0
+2017/07/26 04:00:00,61.0574308976056,0,88.72588128136032,0,0,0,5.236224359044249,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,15.735439017617008,0.0,0.5776339713102153,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,676.0216365497572,0.0,0.0,589.2017703399854,851.37037660293,0.0,8113.958974138283,0.0,0.0,780.5722713586067,0.0,6900.152762280176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9570069561055652,0.9570069561055652,0.9715349534559992,0.9715349534559992,0.9531932612584826,0.9531932612584826,0.9694041952554102,0.9694041952554102,0.9734490213004812,0.9734490213004812,0.5578097507072919,0.6189795610904272,0.5164230638720511,0.5403751400844845,0.5584025433467682,0.5370808609923017,0.637972889431341,0.507733745540796,0.5193471311375962,0.5482143325109082,24.34485846573746,24.34485846573746,24.93659180313712,24.93659180313712,24.190892985266757,24.190892985266757,24.84929011392292,24.84929011392292,25.015165475214076,25.015165475214076,11.515206519488245,13.03813796008923,10.576839728125435,11.110863769378057,11.529186175066101,11.035942633862646,13.544046692021269,10.38924420771572,10.640702500307071,11.291039809306753,61.0574308976056,61.0574308976056,0.0,67.84158988622845,0.0,61.0574308976056,67.84158988622845,0,0
+2017/07/26 05:00:00,81.02950140102742,0,212.9421150752648,0,0,0,0.4335032636110575,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,7.284880194746492,0.0,0.525074912713995,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1758.5165192924503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9722209041527775,0.9722209041527775,0.9791365586601336,0.9791365586601336,0.9701937129201016,0.9701937129201016,1.0038989729387844,1.0038989729387844,0.9866004180424052,0.9866004180424052,0.7317050972388498,0.8521525008954491,0.6858707685488338,0.703214919028971,0.780838007789681,0.6902144577251352,0.8250666894050501,0.6637484497546885,0.663472560330517,0.7601692593094104,24.964734167661916,24.964734167661916,25.249479364460683,25.249479364460683,24.8816177624536,24.8816177624536,26.284107760462433,26.284107760462433,25.558866578233676,25.558866578233676,16.26946775192667,20.324276324615425,14.889307452692663,15.400917210750023,17.849169933110574,15.016215754600964,19.359023200502392,14.25562986510161,14.24786097242324,17.172057094923744,81.02950140102742,81.02950140102742,0.0,90.03277933447491,0.0,81.02950140102742,90.03277933447491,0,0
+2017/07/26 06:00:00,94.97225761733498,0,621.0855590370755,0,0,0,6.693870254866523,0.0,10.449356301351289,0.0,73.80580873715317,0,3.4982834178989366,2.5225688433577773e-09,0.5249389035424461,0,0,0.0,390.3982677055387,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2277.8689889576076,20580.14122200063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033067055205348056,0.0010462185770583592,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9792831964805562,0.9792831964805562,0.9868011655646555,0.9868011655646555,0.9769009598394969,0.9769009598394969,1.0270011330811408,1.0270011330811408,1.0065893245466793,1.0065893245466793,0.8812121182347763,1.016187493759733,0.832736887908756,0.8578276795080472,1.0014384612686478,0.8439402414807742,0.9999372013346993,0.8154925514406195,0.8206230730813566,0.9720060723399768,25.255537044869328,25.255537044869328,25.567217403409984,25.567217403409984,25.157228478935153,25.157228478935153,27.270272106609312,27.270272106609312,26.39792125145827,26.39792125145827,21.39375428420763,26.806184451859195,19.629252201932104,20.530395567906908,26.18025699613071,20.02838209029788,26.117005964734872,19.025182535419518,19.203599439187457,24.955918341584606,94.97225761733498,94.97225761733498,0.0,105.52473068592775,0.0,94.97225761733498,105.52473068592775,0,0
+2017/07/26 07:00:00,168.9922244894282,0,759.1732020417529,0,0,0,25.430402040073346,0.0,7.777944015249205,0.0,69.33401494192633,0,39.380909295966944,3.0137568310584366e-09,27.068954193198657,0,0,0.0,492.99555819767204,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4586.055751914604,7330.74695439918,2241.0262688112743,1263.1012189421633,2858.57645732702,1640.0801616256238,30528.00138076493,2144.775347518079,1357.587882520257,2936.443078993722,1657.7700416048042,30057.40693051387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04041894360135483,0.001278827201219064,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9514422059182405,0.9514422059182405,0.9322848821401366,0.9322848821401366,0.981848744235542,0.981848744235542,1.135944409412315,1.135944409412315,1.0241387068531271,1.0241387068531271,0.6572648895145192,0.737717662309724,0.621358435537062,0.7229701503225928,0.6901072979614397,0.6478976983858385,0.7344254178014171,0.6215671917853418,0.729950325385979,0.6860146178414248,24.120391376577388,24.120391376577388,23.35699000974141,23.35699000974141,25.36165522112107,25.36165522112107,32.1787156454852,32.1787156454852,27.14700281574639,27.14700281574639,14.073928213884116,16.457229478434215,13.100644515747646,15.999459347244951,15.013075087610147,13.814630010258668,16.35422617881565,13.106141449696224,16.214962154893783,14.893497197243988,168.9922244894282,168.9922244894282,0.0,187.7691383215869,0.0,168.9922244894282,187.7691383215869,0,0
+2017/07/26 08:00:00,206.79460578306953,0,809.827757361351,0,0,0,46.751033249237075,0.0,11.85165572991988,0.0,83.2008179303116,0,39.380909295966944,2.9628402709971876e-09,25.610189574671214,0,0,0.0,490.41458474845393,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2312.336790756689,1330.148835520265,2662.831171551138,4474.991051715765,24686.657529036253,6298.947633869847,4783.276394306255,6080.036517120926,4011.532211532557,45058.90134603044,5991.56582064268,4589.37003331125,6048.867918001214,3910.4217976616646,44479.97751064242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04311582964673706,0.0013641547958103115,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9948402424248807,0.9948402424248807,0.9874899131275184,0.9874899131275184,1.0117674534220071,1.0117674534220071,1.0580267959062368,1.0580267959062368,1.048256606852652,1.048256606852652,0.5864758498312291,0.6396921991895571,0.5638664222029783,0.6062937731773042,0.5909404982854212,0.5769026989132776,0.6301722190846881,0.5610705065832228,0.6016353398096101,0.5879355595864951,25.902899511257615,25.902899511257615,25.595880114975117,25.595880114975117,26.617746085253685,26.617746085253685,28.62564813970137,28.62564813970137,28.195056762880824,28.195056762880824,12.208684039164254,13.59061489083713,11.658756768707079,12.708957000616877,12.319899757587052,11.973129815682142,13.334373017848222,11.592292593817945,12.589829557943673,12.244950665268405,206.79460578306953,206.79460578306953,0.0,229.7717842034106,0.0,206.79460578306953,229.7717842034106,0,0
+2017/07/26 09:00:00,241.43785850238527,0,834.5179378186114,0,0,0,63.709887095394556,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.8583179791233062e-09,20.873538021125402,0,0,0.0,461.86923643689806,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5361.241243980754,3182.9561381566978,5513.703587462015,5502.447958494344,39845.24551718408,9184.535939444882,6587.6553534665245,8477.477550330741,5964.977713597103,56440.265608587666,9033.97989972414,6477.074299686977,8542.754175678534,5977.137829432974,55988.761355683404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04443035314246287,0.0014057454029166136,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0671071667133722,1.0671071667133722,1.0630453009032712,1.0630453009032712,1.0654434906782047,1.0654434906782047,1.096901340498241,1.096901340498241,1.083463433370083,1.083463433370083,0.6037809110597464,0.6439628158507158,0.5794631417251329,0.6293627278570034,0.5906297509051468,0.6040086514747321,0.6423953806156228,0.583871298021202,0.6351288715093462,0.5896450652557934,29.028904403620814,29.028904403620814,28.84815510610329,28.84815510610329,28.954801463687986,28.954801463687986,30.37241798982035,30.37241798982035,29.762635112582515,29.762635112582515,12.644580020064353,13.706840976602138,12.035741780799839,13.312765941950133,12.312130938952109,12.650403205311676,13.664090892740518,12.144203388493992,13.46729677886961,12.287541051965363,241.43785850238527,241.43785850238527,0.0,268.26428722487253,0.0,241.43785850238527,268.26428722487253,0,0
+2017/07/26 10:00:00,286.7930246979806,0,919.6276700492249,0,0,0,74.78988918623747,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.804693706776751e-09,18.601441423928257,0,0,0.0,458.25308738615115,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10916.576552398845,6259.180443146144,9638.60407568292,7664.801589379802,61908.971936806076,10482.034568389912,7289.875831609702,8868.666414267005,7407.161577175254,54006.63610009978,10651.632969610047,7300.723016877006,9076.690088398382,7644.861659821672,54515.0217741983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04896165832776679,0.0015491127403993628,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.161393190569473,1.161393190569473,1.12792072796304,1.12792072796304,1.124331901311827,1.124331901311827,1.1813506654619017,1.1813506654619017,1.1420816695748397,1.1420816695748397,0.6279852093872603,0.6464970705682198,0.584410537404402,0.6649246848847677,0.5750870883910777,0.6406534106487114,0.6506132698818069,0.5944425830533382,0.6853318336658494,0.5806463573758047,33.382786345250565,33.382786345250565,31.80338845709798,31.80338845709798,31.636192714074426,31.636192714074426,34.341136998837044,34.341136998837044,32.46720694539154,32.46720694539154,13.276062340957722,13.776185376705229,12.157529124182801,14.288788983028411,11.928904021452524,13.616705565384436,13.889409710339066,12.407743138736407,14.873618427499792,12.064771725128367,286.7930246979806,286.7930246979806,0.0,318.6589163310896,0.0,286.7930246979806,318.6589163310896,0,0
+2017/07/26 11:00:00,323.69695222485257,0,976.5278998203951,0,0,0,95.61202113500286,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.858317979123307e-09,20.8790474901621,0,0,0.0,461.91778838850524,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16020.443791790784,8330.977731931622,12706.678836585716,9565.75106273442,77663.6441410022,14997.031742753397,9254.339396604306,12136.735414064864,9738.661616554144,69082.88920199155,15512.069111950357,9352.987088402631,12490.836177152147,10103.878752355464,70624.08325231465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05199106870716341,0.0016449611731302446,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2516212433044278,1.2516212433044278,1.1591887770169997,1.1591887770169997,1.1582881051005103,1.1582881051005103,1.2267062723228133,1.2267062723228133,1.1759280363979083,1.1759280363979083,0.6802079461384715,0.6589678968676526,0.6016911477624087,0.693344723134248,0.5825454892528237,0.7072541204634885,0.6719497638636364,0.6184430751057498,0.7191299382742493,0.5957743425703154,37.80724410089603,37.80724410089603,33.277680927335226,33.277680927335226,33.234780803467146,33.234780803467146,36.56268659930316,36.56268659930316,34.07954676387132,34.07954676387132,14.725083444844046,14.121478598077289,12.591251128572878,15.10817736581673,12.111493524103807,15.521928279667932,14.488079745811802,13.024075359585808,15.881792341871204,12.441287579820667,323.69695222485257,323.69695222485257,0.0,359.6632802498362,0.0,323.69695222485257,359.6632802498362,0,0
+2017/07/26 12:00:00,314.29841569727245,0,918.5242430294967,0,0,0,106.7108877205084,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.804693706776751e-09,18.53907868895642,0,0,0.0,439.40448411015086,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16043.716752486265,8672.018064469432,13349.975631989053,9056.468808204714,80644.20244263312,17371.273440953908,10614.850897628794,14932.022960141034,10529.719973040217,81855.22245188628,17919.331738871733,10748.892230829953,15346.487528675534,10831.410276683475,83839.50990696624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04890291105592072,0.0015472540176683796,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.215586418669326,1.215586418669326,1.1606315973628725,1.1606315973628725,1.159963945428849,1.159963945428849,1.1843251493167883,1.1843251493167883,1.1776277150221988,1.1776277150221988,0.6784983566233888,0.6671987124264166,0.6166867786763847,0.6737497532304558,0.595321509791298,0.701603153328085,0.6792118008783242,0.6342632110556949,0.6925989741059378,0.6105065616822783,36.01262578950433,36.01262578950433,33.34645686625511,33.34645686625511,33.314623383717134,33.314623383717134,34.48500176623752,34.48500176623752,34.16144487381298,34.16144487381298,14.67577727601359,14.353065755062545,12.978125939573872,14.539486563572922,12.429872962980383,15.35282657035225,14.696338305972361,13.44400533581144,15.086230172614037,12.817499229950116,314.29841569727245,314.29841569727245,0.0,349.22046188585824,0.0,314.29841569727245,349.22046188585824,0,0
+2017/07/26 13:00:00,306.2746777557188,0,893.2447901358142,0,0,0,101.07941339007328,0.0,16.73568395689411,0.0,129.2730206906943,0,39.380909295966944,2.750148323033953e-09,16.373675216885676,0,0,0.0,449.61538372901265,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14606.242604813871,8514.312148546664,12879.855250163231,8524.488641484159,76891.02285083785,16164.653464269742,10285.7801740111,14204.041913860487,9907.305871879931,77394.69089567821,16620.89127113744,10451.046814524636,14637.322471455325,10158.58126248733,79209.19932912009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04755701425920177,0.0015046707811876493,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.196841634153927,1.196841634153927,1.1710895423158894,1.1710895423158894,1.1605409152550523,1.1605409152550523,1.1789199738546605,1.1789199738546605,1.1716300644903628,1.1716300644903628,0.6742153864661273,0.67817604912593,0.6243920699481398,0.6733911371362258,0.5944200693525304,0.6930995619563362,0.6911703605667883,0.6408190318147733,0.6894608221047202,0.6073424056772976,35.093244767788335,35.093244767788335,33.84688545578625,33.84688545578625,33.34213235262176,33.34213235262176,34.22376993594084,34.22376993594084,33.87284142337454,33.87284142337454,14.552807652805583,14.666495791306744,13.180711591576838,14.529233475927356,12.407176723876503,15.100959687234223,15.044253567979055,13.621205155887893,14.994138528511328,12.735902947784396,306.2746777557188,306.2746777557188,0.0,340.3051975063542,0.0,306.2746777557188,340.3051975063542,0,0
+2017/07/26 14:00:00,280.7126340258889,0,833.7580789859944,0,0,0,91.74659637599724,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.6946725575525384e-09,14.065211097003072,0,0,0.0,425.619025091737,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14016.742010471908,8937.808966979635,12034.864779385312,8013.078949883368,71612.74893445667,14045.62981749694,9950.26736253343,11867.930743791763,8805.153685059644,64990.44901030426,14420.528736280849,10179.969507147624,12227.24325916278,9010.889584175253,66861.70523876019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04438989769538183,0.0014044654207707424,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1949552601538316,1.1949552601538316,1.2097813203782917,1.2097813203782917,1.1465955272686184,1.1465955272686184,1.1651320366769666,1.1651320366769666,1.1571759976343898,1.1571759976343898,0.6663492585469863,0.7004321568579426,0.6102907960152946,0.6583986735328995,0.5800199123017987,0.6832441647593325,0.7188619129170319,0.6239562687284299,0.6734989136740434,0.5926832928411566,35.001281847224874,35.001281847224874,35.726834156764085,35.726834156764085,32.68015802702473,32.68015802702473,33.561397047014566,33.561397047014566,33.18184463879142,33.18184463879142,14.329029220793004,15.317957589559228,12.811921326394597,14.105571091795596,12.049394461427994,14.812962495354313,15.873603545249352,13.169184874784833,14.53231429825857,12.363548033616127,280.7126340258889,280.7126340258889,0.0,311.90292669543214,0.0,280.7126340258889,311.90292669543214,0,0
+2017/07/26 15:00:00,267.6553322966748,0,833.7416537386172,0,0,0,85.34743072167194,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.694672557552538e-09,14.10771801880236,0,0,0.0,425.6025998443597,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13106.235067837546,10721.991567077766,11590.060639564163,7769.813003784565,69207.45860154388,11858.985208769,10421.97707811645,10012.914994563262,7938.0571608601595,55956.22403253348,12145.289662581388,10796.074237478928,10313.154023316729,8120.990029976356,58047.167795871006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04438902320304518,0.001404437752442782,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1701538073309317,1.1701538073309317,1.29614801911335,1.29614801911335,1.1384462496087002,1.1384462496087002,1.1579936465366538,1.1579936465366538,1.1517141236573893,1.1517141236573893,0.6366625273423745,0.7426509886707048,0.5910638978288056,0.6423330066151142,0.5632615400041479,0.6497594229774936,0.7717347104234514,0.6034613739141989,0.6568240994259885,0.5772776153305981,33.8019723642347,33.8019723642347,40.070436981193815,40.070436981193815,32.29617212160987,32.29617212160987,33.220760859647854,33.220760859647854,32.92242231928138,32.92242231928138,13.50864110169141,16.612447720822004,12.322985961939366,13.662391914214425,11.644348841732821,13.86586255453112,17.54869923825494,12.6364134426301,14.061641202125486,11.98228008406555,267.6553322966748,267.6553322966748,0.0,297.394813662972,0.0,267.6553322966748,297.394813662972,0,0
+2017/07/26 16:00:00,292.0339357735048,0,886.9604812040955,0,0,0,86.87589287171392,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.694672557552538e-09,14.073381170608315,0,0,0.0,425.58589854102166,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13072.655421042798,11733.753518735364,12335.782450193978,8083.629526485597,75286.72444305588,11381.076773168052,11150.773824236814,10160.143962241313,7940.319739878949,58056.87997540547,11592.036130819315,11631.385700077495,10469.821381616977,8119.5156985402045,60038.03567050798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047222432996847544,0.00149408486326914,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1682246501939229,1.1682246501939229,1.311540291350752,1.311540291350752,1.157156172618252,1.157156172618252,1.1715881071023369,1.1715881071023369,1.178702717587453,1.178702717587453,0.6198685491089275,0.7655498399184256,0.5930555885200827,0.6484950708362981,0.5696634728509374,0.6291198110686484,0.7938708315649378,0.6028692764402224,0.6581637736417297,0.5834118464917837,33.7094617746793,33.7094617746793,40.86353301512922,40.86353301512922,33.18090132096431,33.18090132096431,33.87082630371373,33.87082630371373,34.21328825077637,34.21328825077637,13.06146799110509,17.346571529950154,12.372889263056209,13.83105264876717,11.797643844121865,13.30628751192991,18.2854754273704,12.621292612317887,14.099010675413169,12.132859333626868,292.0339357735048,292.0339357735048,0.0,324.4821508594498,0.0,292.0339357735048,324.4821508594498,0,0
+2017/07/26 17:00:00,300.5339361545742,0,919.6289242348583,0,0,0,88.40095767363238,0.0,16.86091083164338,0.0,133.89528835348938,0,39.380909295966944,2.8046937067767517e-09,18.563894794583174,0,0,0.0,458.2543415717846,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12745.196521661343,9799.479825512884,12238.811737816497,7907.628938253075,76306.75372764851,12151.16178207724,10102.466736613591,11272.140557850784,8033.845925475575,65119.75592512324,12239.580108621456,10353.972167030866,11511.498136466666,8157.596258144831,66616.86158710117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04896172510153891,0.0015491148530749675,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1911240894504083,1.1911240894504083,1.2480379189563877,1.2480379189563877,1.1766481566106075,1.1766481566106075,1.168516992299698,1.168516992299698,1.2025229502262407,1.2025229502262407,0.6200292415399927,0.7125888548389562,0.6011095093684832,0.6463912681461955,0.5817215094817197,0.6216080212204662,0.7224933269521813,0.6065352402612675,0.6504459306055297,0.5924848715597801,34.81482746966445,34.81482746966445,37.62724513962028,37.62724513962028,34.114234729344474,34.114234729344474,33.72347339375543,33.72347339375543,35.37083815843192,35.37083815843192,13.065688760004576,15.682830805366166,12.576441955007141,13.773284751853026,12.091203032309906,13.107216784524084,15.984814601041151,12.715157575239616,13.884792383640303,12.358571924652864,300.5339361545742,300.5339361545742,0.0,333.92659572730463,0.0,300.5339361545742,333.92659572730463,0,0
+2017/07/26 18:00:00,286.58259545909584,0,904.1753082163273,0,0,0,93.41725214288208,0.0,17.24136368197722,0.0,110.93442390708215,0,39.380909295966944,2.96284027099719e-09,25.608646428224596,0,0,0.0,478.2910780657976,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10616.162388704584,7308.251225189684,10482.598785011443,7499.310893789642,67806.6590553829,14238.148702070299,10605.124927107336,13245.754555509033,8695.43245600284,80843.13178944071,14349.499392056106,10768.644214118849,13553.005277194996,8805.0543986159,82250.62459172725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0481389631381159,0.0015230832380646612,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.179264664370972,1.179264664370972,1.2139798514476532,1.2139798514476532,1.1633724716519387,1.1633724716519387,1.1528680006616516,1.1528680006616516,1.1971027935017302,1.1971027935017302,0.6481568773828466,0.712011514858658,0.6230597964922989,0.6594156300277336,0.6177705199343497,0.6499728943006209,0.7171869647748957,0.6286179688226743,0.6633231007052361,0.6273000444547027,34.24040268899414,34.24040268899414,35.933437960161925,35.933437960161925,33.477285966862866,33.477285966862866,32.97714989100626,32.97714989100626,35.10598474056417,35.10598474056417,13.821753318207584,15.665358273941877,13.145499560376564,14.134000806182527,13.006463699002893,13.871746645107407,15.822500068697067,13.292911819118984,14.243653649379652,13.25783696878078,286.58259545909584,286.58259545909584,0.0,318.425106065662,0.0,286.58259545909584,318.425106065662,0,0
+2017/07/26 19:00:00,271.076586465441,0,895.2556445010919,0,0,0,82.88492595760296,0.0,20.0231201520542,0.0,101.68988858149199,0,39.380909295966944,3.013756831209266e-09,27.0977424753112,0,0,0.0,504.8617668631065,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8150.547059744699,5133.224670599082,8294.070977881327,6764.499666340258,58246.24275108417,12317.800791485806,8820.297295399016,11510.603344147348,7211.371230248584,75232.44210195853,12287.634761709554,8793.456357002984,11620.082567083227,7188.885263728956,76182.92890374869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04766407363506238,0.001508058065213338,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1611513313451125,1.1611513313451125,1.1831881106928919,1.1831881106928919,1.1441592130295315,1.1441592130295315,1.1308239813370666,1.1308239813370666,1.1877958186844848,1.1877958186844848,0.6494446518259508,0.6964279334144614,0.6207898371730349,0.654703982286257,0.6322344285898663,0.6469949815934075,0.6931405388807175,0.6196264879372142,0.6539662960290096,0.6380771089815505,33.371247239036876,33.371247239036876,34.42997625727976,34.42997625727976,32.56513884509921,32.56513884509921,31.938953292924623,31.938953292924623,34.653197864029025,34.653197864029025,13.85718985525996,15.199170405562427,13.085681870686201,14.00266063823014,13.389546322763664,13.789842366194264,15.102165889465581,13.055112095293893,13.982184269776056,13.546865870267922,271.076586465441,271.076586465441,0.0,301.19620718382333,0.0,271.076586465441,301.19620718382333,0,0
+2017/07/26 20:00:00,274.53893220249114,0,820.2378495665234,0,0,0,80.82688640614501,0.0,24.999863057464953,0.0,106.16168237671882,0,39.380909295966944,2.911030410415994e-09,23.16959106328437,0,0,0.0,465.3343244410823,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6949.740526891369,4102.486200351182,7381.122354451385,6279.808197602233,54644.89941118776,12112.23094916446,8512.480284437925,11494.219461865394,6925.982136781459,76894.2879649369,11976.747911074282,8397.392945093923,11597.728038509344,6806.661530484692,77393.97160797556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04367007066656514,0.0013816905953398118,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1676228537327713,1.1676228537327713,1.1877448922611604,1.1877448922611604,1.1483724637572985,1.1483724637572985,1.119027106676928,1.119027106676928,1.1919922662669662,1.1919922662669662,0.6640798802359004,0.7032360837064461,0.6351848705974289,0.6695682785058246,0.6487726574247871,0.6601049612639744,0.6988271681142271,0.6347169884348779,0.6670425905218034,0.6522062805875211,33.6806266123706,33.6806266123706,34.65072728051494,34.65072728051494,32.76416680129793,32.76416680129793,31.38983036951163,31.38983036951163,34.85704200713826,34.85704200713826,14.264967122354648,15.401549452062028,13.468804608656583,14.420281227360803,13.838689173150456,14.153297013309341,15.27026170660345,13.456210607188197,14.348645714679932,13.93342580665751,274.53893220249114,274.53893220249114,0.0,305.0432580027679,0.0,274.53893220249114,305.0432580027679,0,0
+2017/07/26 21:00:00,251.38527891841895,0,809.7944053131597,0,0,0,57.31074491801258,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.96284027099719e-09,25.610571749278307,0,0,0.0,490.38123270026256,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4186.232990877676,2137.840215226894,4890.529684095541,5378.914728551727,41147.021128688626,7643.338600715682,5496.9779437315365,7356.950772534584,4024.603107123972,52993.22162990885,7365.903606174917,5256.400198107933,7347.00130970046,3786.5968809158,52934.37214789916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043114053958987264,0.0013640986142876644,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1562179901809122,1.1562179901809122,1.1736084627225445,1.1736084627225445,1.1382859993801302,1.1382859993801302,1.1010141579799981,1.1010141579799981,1.1804827536421993,1.1804827536421993,0.6556364936928616,0.690436681554041,0.6288042163404086,0.6601362658974622,0.6440685338059919,0.6469780979927839,0.6800786973060928,0.622994619160553,0.6528527759766317,0.6443477053664601,33.136274583920724,33.136274583920724,33.967920275194786,33.967920275194786,32.2886426387777,32.2886426387777,30.560287102893,30.560287102893,34.29920914386791,34.29920914386791,14.028578627028196,15.022730331622896,13.297874633038873,14.15417380161847,13.709728153525333,13.789379097038747,14.721351368820976,13.143778897480829,13.951320344615084,13.717354710181496,251.38527891841895,251.38527891841895,0.0,279.31697657602103,0.0,251.38527891841895,279.31697657602103,0,0
+2017/07/26 22:00:00,172.89566364972043,0,621.5711334115979,0,0,0,36.273831218018245,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8583179791233062e-09,20.868874823521907,0,0,0.0,461.86454710514937,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,392.8950615097918,0.0,1189.3687100076909,3582.126268318352,17419.6580790548,5064.063203545066,3790.1164307267404,4863.27662300326,2447.0758089717365,38180.838194190255,4601.990827052169,3415.5336995555535,4668.623369513417,2096.7564579172254,37647.519091378395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0330929075447158,0.0010470365270553877,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1155243560633836,1.1155243560633836,1.1197931280232447,1.1197931280232447,1.0992147705324238,1.0992147705324238,1.0519562720157538,1.0519562720157538,1.1169702618004658,1.1169702618004658,0.6445275213442053,0.6757539969587086,0.6201089123597024,0.6476708398204096,0.6339972882573188,0.6311721907776299,0.6603035512503485,0.6098461154815692,0.6354648790606835,0.6303105259980468,31.227668493956045,31.227668493956045,31.425348047106255,31.425348047106255,30.478022072083917,30.478022072083917,28.3577036540877,28.3577036540877,31.294558112144216,31.294558112144216,13.722268807793682,14.596891791707108,13.067781819923482,13.808397391303174,13.436856948946897,13.361103680849467,14.15885989290878,12.800431963531608,13.476346148852386,13.338067572842277,172.89566364972043,172.89566364972043,0.0,192.1062929441338,0.0,172.89566364972043,192.1062929441338,0,0
+2017/07/26 23:00:00,101.86700709341976,0,473.86602958500265,0,0,0,14.525917363875562,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.638257139990132e-09,11.830108668067686,0,0,0.0,420.63050081618644,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1958.2194704126614,0.0,1640.1140592987592,1494.941546343709,1731.5138781118706,169.19870218572592,20204.122639988786,960.3985726059107,959.8077496464075,1353.1333164120172,0.0,19292.450138931505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02522897841083276,0.0007982272908701152,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9722997695430824,0.9722997695430824,0.9629447253358848,0.9629447253358848,0.9813458891738968,0.9813458891738968,1.007228507266731,1.007228507266731,1.0385897328789673,1.0385897328789673,0.6428055693829514,0.6707129234681165,0.6204005026959474,0.6449315643012287,0.6340573282774927,0.626121088393757,0.6516910632276149,0.6070009256861615,0.615464169992726,0.6275071769077656,24.96797093260517,24.96797093260517,24.585711582499115,24.585711582499115,25.340835756263814,25.340835756263814,26.42500159003258,26.42500159003258,27.772419888920297,27.772419888920297,13.67526805086868,14.452837484631402,13.07544464032921,13.733315802880881,13.438470642834545,13.22652444117891,13.919177924172402,12.727122944434242,12.946218247895061,13.263344539437753,101.86700709341976,101.86700709341976,0.0,113.18556343713306,0.0,101.86700709341976,113.18556343713306,0,0
+2017/07/27 00:00:00,44.57536343680741,0,446.0042379841485,0,0,0,0.27884369981501506,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,4.955273209009247,2.5808928000043615e-09,9.543925528979067,0,0,0.0,392.7687092153323,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1110.6474804756106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0237455959885885,0.0007512941050331505,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0280321983298382,1.0280321983298382,1.0317291256053105,1.0317291256053105,1.024105631341908,1.024105631341908,0.9769086197103508,0.9769086197103508,1.0438576688415806,1.0438576688415806,0.8160066029249989,0.8807036314124825,0.7710477388999178,0.8075103842554198,0.8306789791141341,0.7749546983840716,0.8323116961522075,0.7388157973198441,0.760092672806006,0.8129386050469346,27.314748845670223,27.314748845670223,27.474544784615375,27.474544784615375,27.14558020648394,27.14558020648394,25.1575442301216,25.1575442301216,28.002313092099143,28.002313092099143,19.043009038131927,21.374741369142924,17.526167775197763,18.749802627772354,19.556507908658418,17.654577314590924,19.614207712063887,16.49168994907855,17.16958200735445,18.936780690996514,44.57536343680741,44.57536343680741,0.0,49.528181596452676,0.0,44.57536343680741,49.528181596452676,0,0
+2017/07/27 01:00:00,23.722213152406916,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251177287291252,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0805057317664981,1.0805057317664981,1.096942390584646,1.096942390584646,1.0624549858252201,1.0624549858252201,1.0261166138277389,1.0261166138277389,1.138099435077125,1.138099435077125,0.8147975260852298,0.8954154688122751,0.7600554641169781,0.800742367175006,0.8904298500918635,0.7742034242554566,0.8506050546236066,0.7294309015657956,0.7569102370144403,0.8647674641473914,29.629260364693167,29.629260364693167,30.374290262958965,30.374290262958965,28.821935474010402,28.821935474010402,27.232148219501866,27.232148219501866,32.27987781050517,32.27987781050517,19.00109783681509,21.929110334476547,17.16837960446314,18.518417290778785,21.740252257939233,17.62983476792057,20.268306043826485,16.19885353453118,17.066955217103157,20.784258875140196,23.722213152406916,23.722213152406916,0.0,26.35801461378546,0.0,23.722213152406916,26.35801461378546,0,0
+2017/07/27 02:00:00,28.34454336102249,0,71.02043706044785,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251802745495926,0,0,0.0,17.784908291631652,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0037811806744094435,0.00011963392083796462,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.118722071953587,1.118722071953587,1.1385060471175452,1.1385060471175452,1.0968129745932857,1.0968129745932857,1.064464935274738,1.064464935274738,1.1978736253928766,1.1978736253928766,0.8358948765457851,0.9186315535391406,0.7796447011314938,0.8211751399698944,0.9149848218626764,0.7906507312011968,0.8703595488957647,0.7436405526327609,0.7729896257631148,0.885238582286515,31.375692411728338,31.375692411728338,32.29898196638406,32.29898196638406,30.36838786217345,30.36838786217345,28.91126086492085,28.91126086492085,35.14359928918324,35.14359928918324,19.741227581962477,22.821839200739817,17.80958177520884,19.222863870569526,22.680169161919537,18.177004029861322,20.990270701542286,16.643708303155663,17.589910206781582,21.544682772836936,28.34454336102249,28.34454336102249,0.0,31.49393706780277,0.0,28.34454336102249,31.49393706780277,0,0
+2017/07/27 03:00:00,23.774864880396706,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5777694567189124,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1080895481949466,1.1080895481949466,1.129553636256296,1.129553636256296,1.084307522352776,1.084307522352776,1.0553332522000296,1.0553332522000296,1.193263329575051,1.193263329575051,0.8366834032724828,0.9207836466989995,0.780024931871977,0.8203959635137136,0.9354629308357469,0.7896011592992074,0.8719923383079142,0.7415914279285688,0.7710895941774989,0.9011383078490959,30.8848269476823,30.8848269476823,31.87960179637288,31.87960179637288,29.80075433744679,29.80075433744679,28.506595419067068,28.506595419067068,34.918886488541375,34.918886488541375,19.769252102352496,22.905695763265825,17.82218942037281,19.195678147020786,23.482624514584714,18.141743491467864,21.05066582467552,16.57902248700742,17.52753997938639,22.14714260139955,23.774864880396706,23.774864880396706,0.0,26.416516533774118,0.0,23.774864880396706,26.416516533774118,0,0
+2017/07/27 04:00:00,58.18082064339279,0,88.72588128136032,0,0,0,4.952191190933093,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,13.195454846080338,0.0,0.5250410567452446,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,685.5774140957174,0.0,0.0,0.0,0.0,0.0,9089.248603013984,0.0,0.0,0.0,0.0,7341.888383508503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.065883279972567,1.065883279972567,1.0712220859810464,1.0712220859810464,1.0589589858245327,1.0589589858245327,1.0205077080834748,1.0205077080834748,1.0892546610488245,1.0892546610488245,0.6606081731400181,0.7029715443175745,0.6334822708289268,0.6514924380452314,0.6465475484868425,0.6314923421622302,0.6714424534868442,0.6094728531793376,0.6220168717830058,0.63583226086122,28.974380869083305,28.974380869083305,29.2126109862825,29.2126109862825,28.666910848959162,28.666910848959162,26.99107272737831,26.99107272737831,30.024664760557258,30.024664760557258,14.167396246466112,15.393648394778978,13.4230212642196,13.913688192618793,13.777569424412064,13.369670949752873,14.473616543363121,12.790794483144296,13.117988770880402,13.48624609614376,58.18082064339279,58.18082064339279,0.0,64.64535627043644,0.0,58.18082064339279,64.64535627043644,0,0
+2017/07/27 05:00:00,80.82747630943638,0,212.9421150752648,0,0,0,0.4512859573162027,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,7.065242221411448,0.0,0.5249051007528422,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1854.4014669025773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0808200108776687,1.0808200108776687,1.082400076642347,1.082400076642347,1.0790418204173078,1.0790418204173078,1.0469939681657383,1.0469939681657383,1.097041370722048,1.097041370722048,0.8246300377982847,0.8857049049065274,0.7839494237957181,0.8083162690903642,0.8670446335044435,0.7740390310325216,0.827943334177423,0.7433696612962204,0.7587528407320613,0.8467696389354172,29.643418008043056,29.643418008043056,29.714648975081317,29.714648975081317,29.563359533361222,29.563359533361222,28.139661211919744,28.139661211919744,30.378804932486418,30.378804932486418,19.343713752014892,21.562205380901318,17.952676524673578,18.777483190001732,20.867993739905415,17.62442382967116,19.460081284751126,16.63514660066741,17.126322490506467,20.130010516537695,80.82747630943638,80.82747630943638,0.0,89.80830701048487,0.0,80.82747630943638,89.80830701048487,0,0
+2017/07/27 06:00:00,96.02363492923504,0,626.1432410471886,0,0,0,8.268892368328649,0.0,9.704712513102718,0.0,73.80580873715317,0,3.7192258746275044,2.522581163556203e-09,0.5249954335003891,0,0,0.0,395.45594971565174,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2422.083883368413,26546.11208105545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03333632994182525,0.001054738242020523,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0963048344933521,1.0963048344933521,1.099093341073363,1.099093341073363,1.094314628288705,1.094314628288705,1.0666353979663208,1.0666353979663208,1.0724077104574796,1.0724077104574796,0.9908424213665632,1.060833598215993,0.9489999993558536,1.004290588911038,1.1242098682953718,0.9445462374162891,1.0106618074340579,0.9101616592158642,0.9653346924799653,1.088494213520321,30.345218160739734,30.345218160739734,30.472474487777504,30.472474487777504,30.25455566913692,30.25455566913692,29.007881050595486,29.007881050595486,29.26565304226287,29.26565304226287,25.735656534866308,28.749983314686702,24.022264062661634,26.30065780935007,31.630514893315322,23.843918918045986,26.57072392050607,22.493619816909984,24.683044605226883,29.990191379467262,96.02363492923504,96.02363492923504,0.0,106.69292769915005,0.0,96.02363492923504,106.69292769915005,0,0
+2017/07/27 07:00:00,180.5136561710552,0,759.0959550964719,0,0,0,36.90007346490488,0.0,7.824510821768043,0.0,69.33401494192633,0,39.380909295966944,3.0137702221366383e-09,27.074147643475253,0,0,0.0,492.918311252391,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,65.80650695474205,4292.7764209229335,13788.664781213556,3909.3616881460066,2144.2344395412474,4558.825845247559,2312.1568989207344,45198.44459709672,3726.144138900076,2013.6498823544732,4463.114306200401,2231.642858897206,44428.84546349698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04041483091677075,0.001278697078745601,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.080487774637162,1.080487774637162,1.0500272088868607,1.0500272088868607,1.1056631901090086,1.1056631901090086,1.1199785125085615,1.1199785125085615,1.1063155930627684,1.1063155930627684,0.7457954420016911,0.7916194281108738,0.709332892088557,0.7904981689535924,0.7748133417198783,0.7310640783706582,0.7725940484537842,0.6991269269697507,0.7878359199878725,0.7696177359741487,29.62845153612382,29.62845153612382,28.272835316827823,28.272835316827823,30.77334204637249,30.77334204637249,31.433946585664046,31.433946585664046,30.803298761896215,30.803298761896215,16.711927102827204,18.20958903459939,15.58448081685367,18.171875772996202,17.64992002181347,16.249541492066854,17.576912345333028,15.279161275541725,18.082545433701384,17.479330727040562,180.5136561710552,180.5136561710552,0.0,200.57072907895022,0.0,180.5136561710552,200.57072907895022,0,0
+2017/07/27 08:00:00,216.966377334107,0,809.7075011479292,0,0,0,57.373197408747394,0.0,11.401731386182973,0.0,83.2008179303116,0,39.380909295966944,2.9628535733705467e-09,25.609721309935257,0,0,0.0,490.2943285350319,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3111.816442331832,1531.1020804322743,3337.5065891262,5568.470884828098,31192.825631240623,8283.115550825185,5475.618501249546,7705.5971032040225,5674.253967050829,57400.072180453724,7900.176001201313,5112.4901559029195,7491.229503117537,5594.582930018202,56691.82804721393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04310942711685989,0.0013639522242279293,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1116338239445982,1.1116338239445982,1.0912047118018158,1.0912047118018158,1.1157348349651495,1.1157348349651495,1.1362445891795532,1.1362445891795532,1.1270003060740632,1.1270003060740632,0.6727300282573234,0.6981274042607141,0.6421892380174613,0.7110079457706056,0.6606122306986414,0.6662429562825568,0.6870195988700196,0.6375922622829565,0.7137453094465546,0.6588611299475255,31.048033316325984,31.048033316325984,30.113157616084166,30.113157616084166,31.237401213304352,31.237401213304352,32.192797828574584,32.192797828574584,31.760467699613812,31.760467699613812,14.510346495740308,15.249501451018432,13.658476505945359,15.63502060233472,14.167509977688397,14.32602344339358,14.922793163078381,13.533754585951684,15.717872784548135,14.118493821731406,216.966377334107,216.966377334107,0.0,241.0737525934522,0.0,216.966377334107,241.0737525934522,0,0
+2017/07/27 09:00:00,257.3431508183326,0,834.4220473744922,0,0,0,79.61409634502495,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.858331077267212e-09,20.87462108744229,0,0,0.0,461.7733459927788,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8503.261371131013,4275.54363609667,7164.213791480886,7893.8493780918925,50911.74043875913,12772.558162670222,7880.958038195514,10626.59892302943,9361.22339164124,70775.8601317708,12753.937523495335,7705.214703933218,10575.599326724194,9642.530114018658,70562.40066133555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04442524786419127,0.0014055838754707727,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1610285892764,1.1610285892764,1.1165110598011483,1.1165110598011483,1.1200057964119767,1.1200057964119767,1.2202483658290246,1.2202483658290246,1.135500133111939,1.135500133111939,0.6726924304873038,0.6705387300608511,0.6231275124729934,0.7349910108550217,0.6364913099656142,0.679395143512118,0.6674126083383277,0.62555035236993,0.7553529245559466,0.6377373523965548,33.36539190776634,33.36539190776634,31.27330724697744,31.27330724697744,31.43521216893288,31.43521216893288,36.2428206888279,36.2428206888279,32.15787888008903,32.15787888008903,14.509272947212239,14.447879375988478,13.147287438122262,16.371888574488395,13.504020361111756,14.701625685935113,14.359123176102187,13.211387620958547,17.0168930425976,13.537677061657448,257.3431508183326,257.3431508183326,0.0,285.9368342425918,0.0,257.3431508183326,285.9368342425918,0,0
+2017/07/27 10:00:00,291.3401908443969,0,913.5151889768838,0,0,0,79.27893436713747,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.8047066890380827e-09,18.55478618908371,0,0,0.0,452.1406063138101,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11871.21922867877,6231.71177987903,9783.280752751041,8904.231529466706,64060.47128694399,11855.499264483646,7329.7203353485575,9401.477639273684,8644.12370364477,58779.00495830095,12156.084882633719,7311.212433811792,9537.995387150502,9044.80969480013,59520.05959277616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048636225307919875,0.0015388162664969338,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1854349361209204,1.1854349361209204,1.1332675302765591,1.1332675302765591,1.1333300671880726,1.1333300671880726,1.213934815080468,1.213934815080468,1.156805640374167,1.156805640374167,0.6602024446740963,0.6493122588005835,0.6048060701230402,0.7055437711670401,0.6023054240837318,0.6742315098951717,0.6524170057842189,0.6125582702937679,0.7265460475208021,0.6088772428922701,34.53874555477272,34.53874555477272,32.05326551856368,32.05326551856368,32.05619361884264,32.05619361884264,35.931219154992746,35.931219154992746,33.16422425457445,33.16422425457445,14.15602749374382,13.853543393501752,12.670810459801928,15.47060173673043,12.606907242638627,14.553269088741956,13.939256541851037,12.870640283563162,16.109598196481713,12.775428591075297,291.3401908443969,291.3401908443969,0.0,323.711323160441,0.0,291.3401908443969,323.711323160441,0,0
+2017/07/27 11:00:00,331.2828119707407,0,979.2352474069296,0,0,0,103.20430896452118,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.8583310772672122e-09,20.872619406532042,0,0,0.0,464.6251359750398,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16247.75924793274,8761.151626794468,13326.645715082115,9953.57860590025,81544.18296794251,15881.312338087795,9785.96028471261,13097.66984293731,10659.358163139897,75077.14236441674,16423.664008507545,9897.861335376661,13412.59370056195,11063.868288137273,76650.46044461777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052135209898020916,0.0016495216999342778,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2293994148244998,1.2293994148244998,1.1616437210761157,1.1616437210761157,1.1595542578641258,1.1595542578641258,1.2238056006354314,1.2238056006354314,1.1794756267793751,1.1794756267793751,0.680202884331797,0.6526569626992689,0.6098793187547159,0.7033750111661232,0.5963631280258461,0.7058687527552315,0.6650275071054108,0.6263561487052921,0.7290974112357692,0.6090988944468622,36.696417043436796,36.696417043436796,33.39474107120539,33.39474107120539,33.29509643947266,33.29509643947266,36.41887217083853,36.41887217083853,34.25058426452385,34.25058426452385,14.724937270953689,13.94589845815429,12.801289551366438,15.405700039101376,12.456142482602715,15.480344526125577,14.291690481319165,13.232762720900624,16.18851728692951,12.781145084914101,331.2828119707407,331.2828119707407,0.0,368.092013300823,0.0,331.2828119707407,368.092013300823,0,0
+2017/07/27 12:00:00,324.94687859519064,0,916.8196842436249,0,0,0,117.39725348879793,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.8047066890380827e-09,18.605952018945672,0,0,0.0,437.69992532427915,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18012.783238576,9256.75338465174,14221.514429005168,9809.619291516052,84686.66521977409,19855.708113853067,11468.427023540096,16504.5094116774,11832.074078452002,88011.0929803282,20631.93151492064,11678.808848326864,16970.556637666432,12214.263797285541,90375.95650974437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04881215908358284,0.0015443826885229522,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2626749038468803,1.2626749038468803,1.1698519098734288,1.1698519098734288,1.1692040485294197,1.1692040485294197,1.2041926747114569,1.2041926747114569,1.1817531649864506,1.1817531649864506,0.7159906426468624,0.6647474718957062,0.6279449995635121,0.6986321892576353,0.6046783081805492,0.7509535275629462,0.6850631803195705,0.6501230424304736,0.7241138539905361,0.6233633199390347,38.36455834714085,38.36455834714085,33.78748769528771,33.78748769528771,33.756413506904394,33.756413506904394,35.4525988070109,35.4525988070109,34.360588955406,34.360588955406,15.786073678559717,14.28378935668394,13.274992197928881,15.264475043373395,12.66753896496131,16.87602849050117,14.86580230460585,13.875886488372231,16.03462596635825,13.153514920471423,324.94687859519064,324.94687859519064,0.0,361.05208732798957,0.0,324.94687859519064,361.05208732798957,0,0
+2017/07/27 13:00:00,320.38739271286124,0,896.6824478704282,0,0,0,115.39601506897955,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.750161179999886e-09,16.337178172048855,0,0,0.0,453.0530414636267,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17185.823503810247,9551.490991158798,14207.875561613277,9530.840669066649,82019.57591537715,19134.85934897716,11684.768107018152,16138.236759896416,11555.47003690311,84133.34444703987,19982.78036019764,12028.472236193536,16745.71100537752,11956.760524208896,86627.69326594168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047740037703288614,0.0015104615153806924,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2425365762811684,1.2425365762811684,1.1938429843851386,1.1938429843851386,1.1757394817570566,1.1757394817570566,1.2024000930205927,1.2024000930205927,1.1759247892025617,1.1759247892025617,0.7147962659826879,0.6904549858382505,0.6388459889717499,0.7006697715205099,0.6012203763768278,0.7486792686351361,0.71578048953843,0.6656308153823747,0.7264144281229724,0.6201872756678528,37.35154755390738,37.35154755390738,34.94710569550355,34.94710569550355,34.070466734023526,34.070466734023526,35.36482542244627,35.36482542244627,34.07939038296635,34.07939038296635,15.74976803105423,15.023267023888721,13.567678923198173,15.325028299071576,12.57926362222834,16.803533806575786,15.779681167215116,14.308724216910008,16.105534522928266,13.069840798453072,320.38739271286124,320.38739271286124,0.0,355.9859919031791,0.0,320.38739271286124,355.9859919031791,0,0
+2017/07/27 14:00:00,288.5204552519342,0,834.8908140340086,0,0,0,99.54893718945303,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.694685279634553e-09,14.070691509592498,0,0,0.0,426.751760139751,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15103.575108789744,9476.61978680622,12738.449678872586,8663.646989378796,72262.3447831044,15248.84097959368,10375.174359058059,12594.976883250638,9624.492190961255,66923.30720538348,15957.428302637121,10804.620911188547,13156.232785364406,10003.585345722115,69239.89422929085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04445020534836251,0.0014063735128731492,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2081604453004413,1.2081604453004413,1.2180703517221974,1.2180703517221974,1.1534439140428097,1.1534439140428097,1.1811488792192872,1.1811488792192872,1.149549503435506,1.149549503435506,0.6813596736443034,0.6923396926042322,0.6116848878384106,0.6712009161668024,0.5723030734225674,0.7104591890194578,0.7232467396863275,0.6366440136811137,0.6951857836786103,0.5893912465794452,35.64720628657963,35.64720628657963,36.135200833432,36.135200833432,33.0044807322207,33.0044807322207,34.33138691757868,34.33138691757868,32.819869187536995,32.819869187536995,14.758371628581827,15.078605217119488,12.847996579470902,14.466734332453797,11.861367000651626,15.618450168383418,16.007958761114722,13.508141401687013,15.162462153208665,12.281209431474366,288.5204552519342,288.5204552519342,0.0,320.5782836132602,0.0,288.5204552519342,320.5782836132602,0,0
+2017/07/27 15:00:00,270.3927956620758,0,833.6355753203763,0,0,0,88.14456894127837,0.0,16.568294279967066,0.0,108.75639138185811,0,39.380909295966944,2.694685279634553e-09,14.110656557856258,0,0,0.0,425.49652142611893,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13421.77320508294,9413.658937447366,11903.997811938809,8149.077838003273,66818.34103352416,12308.9375621132,9284.205267559644,10353.19356945076,8266.532665455125,55130.88682722807,12808.072501596862,9709.82781138741,10805.507433269637,8579.288509217811,57172.87448353729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04438337550948505,0.0014042590633553068,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1684990159731201,1.1684990159731201,1.2157634013158436,1.2157634013158436,1.136296098236113,1.136296098236113,1.165314265159595,1.165314265159595,1.131067346204691,1.131067346204691,0.6367435631403974,0.6747007739510896,0.5831959410090862,0.6387804505269626,0.539220669935692,0.658873627911747,0.7065344482018358,0.6055614758991504,0.6605314132186931,0.5531148627805782,33.72261173366489,33.72261173366489,36.02135369065425,36.02135369065425,32.1952145398446,32.1952145398446,33.57011342578325,33.57011342578325,31.950329490262902,31.950329490262902,13.510828504127375,14.566703871894106,12.127531698560176,13.565903842883756,11.084554372917651,14.11884318933312,15.500315975344463,12.690167990995718,14.165244840848885,11.405026541750175,270.3927956620758,270.3927956620758,0.0,300.43643962452865,0.0,270.3927956620758,300.43643962452865,0,0
+2017/07/27 16:00:00,295.8827883358897,0,886.8571224147987,0,0,0,90.72935046872047,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.694685279634553e-09,14.068776135986582,0,0,0.0,425.482539751725,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13345.904297236017,9867.891480358148,12413.718106033915,8347.052806363537,72256.01547503794,11823.328593571872,9599.068428727824,10410.275886030084,8288.467176062686,57256.52292454973,12163.211620249594,9999.396887346915,10796.826862604816,8545.297513938445,59026.74228822082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047216930098346835,0.0014939107553964142,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1585114413224253,1.1585114413224253,1.2308236775338122,1.2308236775338122,1.1409507476155667,1.1409507476155667,1.1654655570457169,1.1654655570457169,1.1522499720422401,1.1522499720422401,0.6107230324978251,0.6768085847353899,0.5703710791913595,0.6277169703618765,0.535458143406543,0.6254762776968648,0.7046884742431018,0.5867089420197709,0.6441917347596147,0.5487649567640976,33.24541622896007,33.24541622896007,36.7672195762187,36.7672195762187,32.413955246472156,32.413955246472156,33.57735081797638,33.57735081797638,32.94783201524487,32.94783201524487,12.823097393180916,14.62716692695274,11.814696666047013,13.26892476260818,10.99921031176612,13.209424079948917,15.444982127947483,12.214469032681407,13.713093405852504,11.303795462925336,295.8827883358897,295.8827883358897,0.0,328.7586537065441,0.0,295.8827883358897,328.7586537065441,0,0
+2017/07/27 17:00:00,310.2511204592843,0,905.5583599391582,0,0,0,98.22066027213204,0.0,16.756134543052177,0.0,133.89528835348938,0,39.380909295966944,2.804706689038083e-09,18.566152789384752,0,0,0.0,444.1837772760844,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13617.363461149023,9127.121059490024,12965.086878109241,8568.536638438773,76806.98991991532,13477.999269995156,9920.921313663133,12390.064537605083,9103.531223774135,66961.00017390132,13702.765363990897,10174.476552034152,12718.598159308098,9296.037275389344,68618.9934599634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048212597836275045,0.001525412988586798,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1635398399119825,1.1635398399119825,1.1802002776281084,1.1802002776281084,1.1529584153352226,1.1529584153352226,1.1709839380618907,1.1709839380618907,1.168602473970643,1.168602473970643,0.6185416679015017,0.6587900951419268,0.5868535393591099,0.6397521725567735,0.5549082145851388,0.6295282659756055,0.6747429506134727,0.6009851665252078,0.6520001564661427,0.5678582694144717,33.485282424635244,33.485282424635244,34.2855679093238,34.2855679093238,32.98143996592832,32.98143996592832,33.84181536127957,33.84181536127957,33.72757092605909,33.72757092605909,13.026658779422107,14.11650824611256,12.218058903659909,13.592241607793781,11.447000252045626,13.31718220081217,14.567911834349559,12.573277950079202,13.92772424472777,11.754238079355218,310.2511204592843,310.2511204592843,0.0,344.7234671769826,0.0,310.2511204592843,344.7234671769826,0,0
+2017/07/27 18:00:00,300.8581198704107,0,907.2873553513754,0,0,0,102.33282908430782,0.0,19.111200031868716,0.0,110.93442390708215,0,39.380909295966944,2.9628535733705483e-09,25.666782345767864,0,0,0.0,481.40312520084564,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13129.553247560954,8356.925069435043,12573.676303381164,8212.69989417686,79294.55665212088,15545.450088508851,10433.683771851998,14712.921905942796,9876.304201751693,80335.82152830872,15545.559112765823,10427.156734040253,14862.040393182275,9904.036774851751,81863.75644654385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048304650832699914,0.0015283254812274492,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1571999086616453,1.1571999086616453,1.1596516565131345,1.1596516565131345,1.1478717232021,1.1478717232021,1.1616599266506074,1.1616599266506074,1.1820911661588944,1.1820911661588944,0.6380860535870884,0.6636523666379109,0.6138673610276407,0.6530524678549516,0.5924379003278287,0.6375924364834685,0.6628417199937513,0.616404823735405,0.6534231570906219,0.6038961205027102,33.18298239433774,33.18298239433774,33.29973827968533,33.29973827968533,32.74048299600216,32.74048299600216,33.39551443007329,33.39551443007329,34.37692758387206,34.37692758387206,13.547107847181977,14.252923843828398,12.904642352533116,13.956851337548244,12.357394206527445,13.53375929487241,14.230109248007992,12.970761712934703,13.967123135167839,12.647525574790507,300.8581198704107,300.8581198704107,0.0,334.2867998560119,0.0,300.8581198704107,334.2867998560119,0,0
+2017/07/27 19:00:00,276.5035401630233,0,898.3859522487586,0,0,0,87.88115161559536,0.0,20.453848191644003,0.0,101.68988858149199,0,39.380909295966944,3.0137702222808932e-09,27.0977424753112,0,0,0.0,507.99207461077333,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9668.080027869071,5841.350878849891,9217.386936014447,7183.288273869512,60045.98503006445,13641.863994576173,8786.825955815268,12314.473677511025,8308.955123606434,75704.24660283103,13661.414324358648,8750.486697627965,12451.523172314823,8358.372278949722,76910.21438934657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04783073353818798,0.0015133310683766964,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1334955851761068,1.1334955851761068,1.132129410922064,1.132129410922064,1.1189949023898034,1.1189949023898034,1.1378542168549928,1.1378542168549928,1.1580789036561223,1.1580789036561223,0.6275807253518253,0.6407477800529179,0.5987106087259932,0.63302947664709,0.5980803897674067,0.626269418361042,0.6373308283579109,0.6003241190206077,0.6322119156551997,0.6062454232037697,32.06394410668858,32.06394410668858,31.999998738250184,31.999998738250184,31.388337597541536,31.388337597541536,32.2683591150616,32.2683591150616,33.22481989640103,33.22481989640103,13.26530061155215,13.619269244510775,12.515518382511459,13.410866680876126,12.499554481645575,13.230460699990957,13.526689088683057,12.556468324455224,13.388943005250766,12.707715737468419,276.5035401630233,276.5035401630233,0.0,307.22615573669253,0.0,276.5035401630233,307.22615573669253,0,0
+2017/07/27 20:00:00,273.28014443757667,0,826.6450883455338,0,0,0,79.50335221989128,0.0,24.999863057464953,0.0,106.16168237671882,0,39.380909295966944,2.9110436152053443e-09,23.23433748462358,0,0,0.0,471.74156322009264,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7310.486646653616,3970.6389920145757,7406.567863404937,6314.601634857297,53172.710655305294,12199.03770113443,7630.480645176469,11285.871885414736,7105.421962242069,73630.61676962335,12154.844752408884,7550.726619664612,11434.700114622961,7056.34370757308,74284.93447030202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04401119680504413,0.0013924835885767537,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.141240300378557,1.141240300378557,1.1438676481773746,1.1438676481773746,1.1229417217714281,1.1229417217714281,1.117329674236108,1.117329674236108,1.1648173559138768,1.1648173559138768,0.6454536964706596,0.6569812913463607,0.6138261305748353,0.6505049017375644,0.624276303802731,0.6412845015107583,0.6516505650747022,0.612762835258455,0.6472998733352081,0.6295970544158689,32.427585507401375,32.427585507401375,32.55138665001775,32.55138665001775,31.571540957085332,31.571540957085332,31.311195825980917,31.311195825980917,33.546347601015185,33.546347601015185,13.747601976105273,14.066021956746681,12.903570306412874,13.886419412330397,13.177648833114617,13.633857391463522,13.91805847117449,12.875948711335553,13.798210418185889,13.319017702173511,273.28014443757667,273.28014443757667,0.0,303.64460493064075,0.0,273.28014443757667,303.64460493064075,0,0
+2017/07/27 21:00:00,239.35707896687435,0,809.7334454527014,0,0,0,45.3371796371824,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9628535733705483e-09,25.55593707856383,0,0,0.0,490.3202728398043,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2632.363840031892,431.65924361272954,3557.066585346606,5225.1719223312975,32442.38198428819,5752.039003557608,3198.1784634801325,5648.735096471972,2549.1128936526693,42768.91742671361,5428.821760910843,2910.6847414080603,5633.484378823772,2212.3805521958266,42941.351514649155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043110808410863094,0.0013639959274073493,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1580829739539504,1.1580829739539504,1.1639031181784973,1.1639031181784973,1.1370851523119812,1.1370851523119812,1.0983971929590433,1.0983971929590433,1.1778695125639311,1.1778695125639311,0.6615123801259022,0.6727747265863784,0.6298823805463144,0.6672449461476055,0.6438268381212028,0.6524419354406643,0.662483502595906,0.6236007411547345,0.6593770546679679,0.6449846888167002,33.225013686338954,33.225013686338954,33.50264197470008,33.50264197470008,32.232246232418134,32.232246232418134,30.440680205714727,30.440680205714727,34.17310283779118,34.17310283779118,14.192758320916226,14.511622869808491,13.326633331618282,14.354374902174357,13.703128112215495,13.93994646909988,14.22003675371542,13.159787458286544,14.132921587980135,13.73476881425671,239.35707896687435,239.35707896687435,0.0,265.9523099631937,0.0,239.35707896687435,265.9523099631937,0,0
+2017/07/27 22:00:00,153.46684495979815,0,621.4933249337245,0,0,0,16.84441429245855,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.858331077267212e-09,20.869473059159333,0,0,0.0,461.786738627276,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3285.4887686864936,2983.7239332934287,1625.3363639425845,428.0303687932243,1909.6669476685686,0.0,22613.901902673166,1056.667697107012,0.0,1721.8080477938859,0.0,22020.348032509246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033088764963720554,0.0010469054586803154,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0629602201273554,1.0629602201273554,1.0155534806707283,1.0155534806707283,1.0763648376428332,1.0763648376428332,1.0513100918400797,1.0513100918400797,1.1373524790306753,1.1373524790306753,0.6715611370114989,0.6825531327806845,0.6418842933651874,0.6673222200727533,0.6526340438296327,0.6582741210594633,0.6670090616059493,0.6310929096399164,0.6355893288676354,0.6498730131657158,28.84437536410391,28.84437536410391,26.779109811683554,26.779109811683554,29.44304376199203,29.44304376199203,28.329260262630683,28.329260262630683,32.2447969020465,32.2447969020465,14.476999161684077,14.792926506098055,13.650174579980686,14.356563185690248,13.94526396474022,14.102092222441073,14.347696599518386,13.358982800107086,13.479699079321279,13.868993291013709,153.46684495979815,153.46684495979815,0.0,170.51871662199795,0.0,153.46684495979815,170.51871662199795,0,0
+2017/07/27 23:00:00,92.28214053668675,0,469.4091972428105,0,0,0,4.94735068129274,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6382697174240134e-09,11.82380879391748,0,0,0.0,416.17366847399427,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1707.555137932501,0.0,0.0,0.0,0.0,0.0,7943.105957618038,0.0,0.0,0.0,0.0,6779.8502212560525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024991693355729025,0.0007907197571279604,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9069209327038714,0.9069209327038714,0.8498600710561256,0.8498600710561256,0.9263508837368366,0.9263508837368366,1.0112878431271703,1.0112878431271703,0.9926431837718024,0.9926431837718024,0.6420868966924715,0.6300874425544452,0.6244025768167573,0.5983825503120036,0.655215807643411,0.6065362381639434,0.5908373230834417,0.6005375105576323,0.5531940308211942,0.6502318196524284,22.36880344386971,22.36880344386971,20.24139589940225,20.24139589940225,23.12348616474904,23.12348616474904,26.597343038061183,26.597343038061183,25.8109132993646,25.8109132993646,13.655689878275567,13.332108815685146,13.180989594553523,12.50720627512817,14.016881518425365,12.715183205390744,12.31731986828703,12.561892536007193,11.406876541736935,13.87888627473987,92.28214053668675,92.28214053668675,0.0,102.53571170742973,0.0,92.28214053668675,102.53571170742973,0,0
+2017/07/28 00:00:00,43.03082769417017,0,446.58258725370615,0,0,0,0.5734856442759196,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,3.110197842639551,2.5809052228502e-09,9.549823208250608,0,0,0.0,393.34705848488994,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,512.4349307888816,246.78489975194927,429.2395746967422,1076.6924394123398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02377638773208691,0.0007522683343338244,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0079637029092905,1.0079637029092905,0.9901713622376859,0.9901713622376859,1.0078655805531163,1.0078655805531163,0.9831065958972915,0.9831065958972915,1.0356213894176647,1.0356213894176647,0.8191348653635685,0.8193795552583704,0.7691767185637712,0.7861821949203931,0.8519666120731707,0.7675415413251521,0.761790279050187,0.7331833548553872,0.726148427516409,0.8347074794754391,26.45616876025224,26.45616876025224,25.70764358163838,25.70764358163838,26.45200787891835,26.45200787891835,25.41377607120529,25.41377607120529,27.643327829311616,27.643327829311616,19.1517321113064,19.160253696653697,17.464903630103336,18.027207086319038,20.317547568308726,17.41148414395154,17.22450327464881,16.315487139937545,16.097324181199866,19.699076125749116,43.03082769417017,43.03082769417017,0.0,47.812030771300186,0.0,43.03082769417017,47.812030771300186,0,0
+2017/07/28 01:00:00,23.722080480982303,0,48.31019127955597,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249850573045098,0,0,0.0,12.819838767011836,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0025720703674043085,8.137851354373069e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0654534599358214,1.0654534599358214,1.043002161383993,1.043002161383993,1.0469175246827893,1.0469175246827893,1.0382059637581436,1.0382059637581436,1.1373717235896346,1.1373717235896346,0.811998321822617,0.8168555409077777,0.7562210368648604,0.7862585064828206,0.9115077077962968,0.7804140597669457,0.7811591347644362,0.7277106174245268,0.7457610875540699,0.8837480222740542,28.955245218625635,28.955245218625635,27.964909869129144,27.964909869129144,28.136309273648834,28.136309273648834,27.755711765923024,27.755711765923024,32.24570050002117,32.24570050002117,18.90430312433584,19.072473241559905,17.04478703372746,18.02975813212373,22.54558757193763,17.83509844496446,17.859833721061435,16.145586087359206,16.710837959000102,21.488732986996084,23.722080480982303,23.722080480982303,0.0,26.357867201091448,0.0,23.722080480982303,26.357867201091448,0,0
+2017/07/28 02:00:00,28.356974488777972,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5376114023050733,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.090893474308054,1.090893474308054,1.0690068760235703,1.0690068760235703,1.0669710948848838,1.0669710948848838,1.0612169109051832,1.0612169109051832,1.1945906595292353,1.1945906595292353,0.8308690684355162,0.8368395626183369,0.7673229007197852,0.8036964282067116,0.9359435976168656,0.7904738310042793,0.7917902365754077,0.7360909290069357,0.7568124185529608,0.8986309100742428,30.099024941074376,30.099024941074376,29.11364065689952,29.11364065689952,29.022839847166907,29.022839847166907,28.766985077437425,28.766985077437425,34.98351909232079,34.98351909232079,19.563219873420095,19.774805144855705,17.404350037244853,18.619172795351588,23.501661231843826,18.171057763801613,18.215338814029153,16.406276268594823,17.063807640451316,22.05145027239567,28.356974488777972,28.356974488777972,0.0,31.507749431975522,0.0,28.356974488777972,31.507749431975522,0,0
+2017/07/28 03:00:00,23.76240638723617,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5653109635583768,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0761350731001906,1.0761350731001906,1.0553680926684157,1.0553680926684157,1.0490449234584154,1.0490449234584154,1.0456387502116458,1.0456387502116458,1.1927821708955064,1.1927821708955064,0.8273166098357577,0.8335180563599104,0.7604904496024344,0.7997270471928118,0.9564095226215972,0.7855268929400369,0.7872530188949769,0.7300181347579783,0.7527522360049141,0.9087911996009094,29.432728798706123,29.432728798706123,28.508133680662596,28.508133680662596,28.22967172830667,28.22967172830667,28.08026825781043,28.08026825781043,34.8954698099091,34.8954698099091,19.43803454076395,19.656911882046288,17.182439906288693,18.483872544601752,24.320701313102447,18.00531095126273,18.06302665023553,16.217065947549983,16.93352131802432,22.440784824553575,23.76240638723617,23.76240638723617,0.0,26.402673763595743,0.0,23.76240638723617,26.402673763595743,0,0
+2017/07/28 04:00:00,54.839930822721996,0,88.72588128136032,0,0,0,2.787528585188446,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,12.019172471915791,0.0,0.5250962159836295,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,721.6822334143718,0.0,0.0,0.0,0.0,0.0,8959.489178004347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0524133274544838,1.0524133274544838,1.0479838205163037,1.0479838205163037,1.0463666029840215,1.0463666029840215,1.0182433552148864,1.0182433552148864,1.086831264816424,1.086831264816424,0.6494535886420802,0.6524616709150115,0.6185930269377399,0.6369869839067782,0.6501185804761954,0.6235419531224772,0.6241597862181804,0.598986558945922,0.609314414163974,0.684171274451327,28.377831294381735,28.377831294381735,28.183083959592395,28.183083959592395,28.11215840559359,28.11215840559359,26.894080445912948,26.894080445912948,29.91487453811021,29.91487453811021,13.85743602670874,13.940492666670167,13.028004703607863,13.517400883199088,13.875763450496535,13.158234082996955,13.174566781455226,12.522513827040555,12.786705480474083,14.839875831808087,54.839930822721996,54.839930822721996,0.0,60.9332564696911,0.0,54.839930822721996,60.9332564696911,0,0
+2017/07/28 05:00:00,80.75896501702273,0,212.9421150752648,0,0,0,0.4780298821619022,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,6.969931931469806,0.0,0.5249601734351508,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1964.3901583934894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.06799930212368,1.06799930212368,1.0660825111869527,1.0660825111869527,1.0666054228348743,1.0666054228348743,1.0445714472619896,1.0445714472619896,1.085048867999636,1.085048867999636,0.8293102848216334,0.8324716520815891,0.7809594346212804,0.808971244715103,0.8726715827777287,0.7813229346551948,0.7809865354463614,0.7448879528400163,0.7600665650783778,0.8827998990131644,29.068682054034937,29.068682054034937,28.983252896732296,28.983252896732296,29.006545540463648,29.006545540463648,28.033540221958276,28.033540221958276,29.834254064194468,29.834254064194468,19.508224654545103,19.61986651819346,17.85320168526451,18.800000511128303,21.075822701261743,17.86527477680181,17.854101603376733,16.68317383243567,17.168738327061448,21.453191513770236,80.75896501702273,80.75896501702273,0.0,89.73218335224747,0.0,80.75896501702273,89.73218335224747,0,0
+2017/07/28 06:00:00,96.34122789184538,0,629.8148806753346,0,0,0,7.984529436754432,0.0,10.365700228685935,0.0,73.80580873715317,0,3.6601398766644744,2.522592921936945e-09,0.5250496100647343,0,0,0.0,399.12758934379764,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2492.557524197767,25367.226893696767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0335318107552357,0.0010609231186954626,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0817428041754242,1.0817428041754242,1.0787472861049643,1.0787472861049643,1.078478521685785,1.078478521685785,1.0609105201545428,1.0609105201545428,1.0629484453336926,1.0629484453336926,1.00278158968572,1.004096116850541,0.9526027325151408,0.9844207999154452,1.12841831020291,0.95971605466028,0.9575591590965129,0.9186233427159445,0.9408453904991841,1.1234610293673006,29.685007898614487,29.685007898614487,29.550109543489242,29.550109543489242,29.538021491107983,29.538021491107983,28.753394752174913,28.753394752174913,28.843852285260198,28.843852285260198,26.236917995939848,26.292438517901047,24.167103423668323,25.468296965556817,31.826603066093142,24.45457614897191,24.367199179950674,22.821519621528992,23.69632017790343,31.595684454180883,96.34122789184538,96.34122789184538,0.0,107.04580876871708,0.0,96.34122789184538,107.04580876871708,0,0
+2017/07/28 07:00:00,184.79396863750557,0,759.019567045101,0,0,0,40.331475285571535,0.0,8.668398971615169,0.0,69.33401494192633,0,39.380909295966944,3.0137829990149156e-09,27.07917013941183,0,0,0.0,492.84192320102005,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141.8631929579978,0.0,903.0399702833112,3576.3073609246026,17071.845667875485,4873.672231856,2676.2156747255226,5248.867889413672,2375.559592903763,46740.31724608723,4691.0655162007515,2518.889906143548,5125.565598034159,2184.123485516735,46564.037652952036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04041076396033462,0.0012785684030788644,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0724097425224577,1.0724097425224577,1.0311492930425723,1.0311492930425723,1.0671490624512339,1.0671490624512339,1.061248730101656,1.061248730101656,1.075145549690359,1.075145549690359,0.7172827653220979,0.7280990002098966,0.6801849524530146,0.7192952774370536,0.7528227250544851,0.7023529096862463,0.7092545396369397,0.6710325277070124,0.7039660294006911,0.7536385081913857,29.265743994618532,29.265743994618532,27.449448781648613,27.449448781648613,29.03077177805436,29.03077177805436,28.768396647731308,28.768396647731308,29.388326673804116,29.388326673804116,15.825419731805184,16.15760097884501,14.72441944648719,15.886845379681631,16.93577720792318,15.375183284609378,15.582119725370177,14.461937872814872,15.423366566459364,16.96190052438972,184.79396863750557,184.79396863750557,0.0,205.32663181945063,0.0,184.79396863750557,205.32663181945063,0,0
+2017/07/28 08:00:00,205.78949358273394,0,809.6216840854878,0,0,0,45.35830329410624,0.0,12.240184620570231,0.0,83.2008179303116,0,39.380909295966944,2.9628662656139727e-09,25.609278438815956,0,0,0.0,490.20851147259054,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1235.6557189347882,261.6007088951674,2061.970296077516,4136.901790440457,24357.18014576695,6034.414912528515,3538.183671631516,5849.882550968607,3134.6175195157866,48018.20101946075,5552.98971564446,3178.3511884133445,5597.965705799137,2783.401322860931,47290.59173457752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04310485815289025,0.0013638076653927605,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0773284930588254,1.0773284930588254,1.055659079704891,1.055659079704891,1.0735161711548702,1.0735161711548702,1.072251743957594,1.072251743957594,1.0966456772226592,1.0966456772226592,0.6330149059282747,0.6423307068339854,0.6070192476775794,0.63886518029415,0.637352290025621,0.6204158233820426,0.6280552656185895,0.5986624800388453,0.6270023845494669,0.6357739524451091,29.486325907066075,29.486325907066075,28.52098291999488,28.52098291999488,29.315287773614926,29.315287773614926,29.25867263639209,29.25867263639209,30.360758616890323,30.360758616890323,13.410475699406788,13.662329274692155,12.727593904006014,13.568198747094186,13.527268998707768,13.075847360860024,13.27792698295245,12.514298640199897,13.249925568375758,13.484674450946102,205.78949358273394,205.78949358273394,0.0,228.65499286970436,0.0,205.78949358273394,228.65499286970436,0,0
+2017/07/28 09:00:00,221.39768561258109,0,834.3269672960004,0,0,0,43.66937660421021,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.858343574651834e-09,20.8738756225055,0,0,0.0,461.67826591428695,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2016.6650124753314,307.7179638540648,2891.854351590248,5005.678605310153,27567.96258547786,5546.908585134138,3079.4145928262838,5465.69802059128,2861.1110154832463,43518.58199682013,5227.147107721065,2809.56704599017,5374.173027161926,2606.708962391674,42597.88709157189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04442018573038592,0.0014054237130857697,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1101325181248503,1.1101325181248503,1.095981051493307,1.095981051493307,1.1000970052584615,1.1000970052584615,1.107941611512228,1.107941611512228,1.117113632902989,1.117113632902989,0.6314939914118952,0.6363939694915768,0.6054433554133145,0.6423698058380479,0.621146773339355,0.6286860816001375,0.6312412700762202,0.6050114800925601,0.6422697075923952,0.6202078334922666,30.978849876161036,30.978849876161036,30.330459209622106,30.330459209622106,30.518342622652057,30.518342622652057,30.878023957855717,30.878023957855717,31.301194449974872,31.301194449974872,13.369715095278295,13.501393945419068,12.687139479625458,13.663394251986361,13.095072993577347,13.294726600511865,13.362951870512518,12.67607170884905,13.6606679118957,13.070380994850936,221.39768561258109,221.39768561258109,0.0,245.99742845842343,0.0,221.39768561258109,245.99742845842343,0,0
+2017/07/28 10:00:00,259.41904185288274,0,902.7597644434597,0,0,0,50.466318069119836,0.0,17.133076792238036,0.0,133.89528835348938,0,39.380909295966944,2.8047190758568577e-09,18.5434493392637,0,0,0.0,441.38518178038606,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4870.402063995569,2175.2493472083233,5632.601285334177,5950.905240030045,45317.08043691186,5746.678585831027,3347.116320244252,5457.432004487776,3148.448073751233,42641.37230467687,5479.590785722601,3122.128680904215,5396.668911817943,2956.3760252553466,42298.26889747344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04806359853914572,0.0015206987546867038,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1401348392419142,1.1401348392419142,1.1354690421056282,1.1354690421056282,1.1305699599409842,1.1305699599409842,1.120707943922304,1.120707943922304,1.1687444399955096,1.1687444399955096,0.633864115993014,0.6402681358844398,0.6103607523713904,0.6416857387136163,0.6261703552919684,0.628926801636715,0.6340850378433637,0.6080117753812729,0.6385153189191589,0.627293723085531,32.37556205532823,32.37556205532823,32.15642093640872,32.15642093640872,31.927081009688692,31.927081009688692,31.467790255669755,31.467790255669755,33.734376509393584,33.734376509393584,13.433278239939725,13.606243035498537,12.813729593917643,13.644771222478141,13.22783173976687,13.30114190329438,13.439215444774916,12.753128209693884,13.5587247696903,13.257668915327017,259.41904185288274,259.41904185288274,0.0,288.24337983653635,0.0,259.41904185288274,288.24337983653635,0,0
+2017/07/28 11:00:00,296.06784295277663,0,978.011613033118,0,0,0,71.26195648481676,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.8583435746518353e-09,20.864588393799647,0,0,0.0,463.4015016012282,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7379.533348849556,3674.741855404081,8145.183046810847,7056.183562185982,60970.8258349213,9122.898547249426,5414.9037436872,8809.938934833455,5199.210852475306,62931.7252125709,9002.546729361697,5282.610673403751,8899.79755223899,5089.982364759374,62906.1563368769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052070062697605064,0.001647460487924465,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1812910124423932,1.1812910124423932,1.179062444012439,1.179062444012439,1.168213515609906,1.168213515609906,1.1511575026990963,1.1511575026990963,1.206374091379224,1.206374091379224,0.6595190185673486,0.6650795688714664,0.6353784522601535,0.6678251287380176,0.6455460271523037,0.6603910515194216,0.6646502022724815,0.6381808658104662,0.6704338183304366,0.6494582441181209,34.338254506058334,34.338254506058334,34.2306442816043,34.2306442816043,33.7089281587092,33.7089281587092,32.8960371810948,32.8960371810948,35.55953537811099,35.55953537811099,14.136893612892194,14.293159765674034,13.47401803066181,14.37081113441667,13.750129486214533,14.161311482545415,14.281045712943339,13.54967299970754,14.444893882143674,13.857564266735508,296.06784295277663,296.06784295277663,0.0,328.9642699475296,0.0,296.06784295277663,328.9642699475296,0,0
+2017/07/28 12:00:00,289.8094153006994,0,928.3473587882254,0,0,0,85.43545867956458,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,2.8047190758568577e-09,18.632255665955658,0,0,0.0,449.22759986887957,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8348.1888746916,4254.004386404005,9077.13290941684,7507.038668068121,64267.59377522107,12264.643230934438,7342.932529450514,11916.806837244047,7101.953543191785,80391.20180902256,12311.524572773145,7318.211296628985,12157.43371909912,7081.848062036561,81005.3018455886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04942590101496276,0.001563801055418396,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1900163203686078,1.1900163203686078,1.189728763760307,1.189728763760307,1.1751185888144529,1.1751185888144529,1.1586588503627486,1.1586588503627486,1.2096821669214057,1.2096821669214057,0.6697060064898577,0.6752933827900293,0.6447007970669341,0.6779351936113927,0.6534811540309159,0.6749726296262709,0.6796002859424852,0.6513450437728993,0.6844523418857783,0.6604631245767572,34.760995058813535,34.760995058813535,34.74702704996005,34.74702704996005,34.040574637199214,34.040574637199214,33.2524368011383,33.2524368011383,35.72196096175877,35.72196096175877,14.424195516480253,14.583683568548096,13.727005496662883,14.659562812609579,13.968730769018364,14.574491316836628,14.707543469551496,13.909615519551409,14.848042362299594,14.163331080449396,289.8094153006994,289.8094153006994,0.0,322.01046144522155,0.0,289.8094153006994,322.01046144522155,0,0
+2017/07/28 13:00:00,286.8112064211236,0,883.99718064635,0,0,0,85.20506641848229,0.0,16.630907756533322,0.0,129.2730206906943,0,39.380909295966944,2.7501734472716627e-09,16.321302256696544,0,0,0.0,440.36777423954845,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9578.517738006489,5048.096696346149,9754.770861877621,7718.76715215569,61977.03724004182,13007.809722604934,7872.099503466267,12278.950204479375,7563.135158495017,75945.39655243818,13402.170910264118,8068.583010579566,12805.89189486257,7767.483940828243,76893.79147061342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047064664680216695,0.0014890931837045283,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2097844461983407,1.2097844461983407,1.205288083832912,1.205288083832912,1.1875363123569729,1.1875363123569729,1.1794143947857605,1.1794143947857605,1.19833199956572,1.19833199956572,0.6874333725742049,0.6913242886165926,0.6583178636895028,0.6908627415250429,0.6437203558100376,0.701887294107864,0.7045996031762173,0.6724408175370754,0.7055650111223633,0.6526430314010573,35.726987789116606,35.726987789116606,35.506280555275936,35.506280555275936,34.640609284921865,34.640609284921865,34.24762891710127,34.24762891710127,35.16597489639115,35.16597489639115,14.934867672526309,15.048772159364077,14.103313919227716,15.035226411775582,13.700221178368352,15.361296406682754,15.442321889453126,14.502090087772984,15.471238361065687,13.945512776866494,286.8112064211236,286.8112064211236,0.0,318.67911824569285,0.0,286.8112064211236,318.67911824569285,0,0
+2017/07/28 14:00:00,267.0477252949827,0,837.9567547168988,0,0,0,81.21434482818525,0.0,16.86091082671979,0.0,115.5196477718057,0,39.380909295966944,2.6946974182105444e-09,14.071912569610317,0,0,0.0,429.8177008226413,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9651.379341328617,5396.869455913138,9891.375404041004,7129.005826600723,64399.26694356592,11957.861216103813,7460.6555941903525,11110.974776930469,7215.943768436072,69229.78071848088,12221.186613883789,7613.214772282821,11507.21457522995,7388.054830215706,70137.05506490509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04461343830128229,0.0014115380897207768,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1918418392808068,1.1918418392808068,1.198225932417031,1.198225932417031,1.1752564003616275,1.1752564003616275,1.153986714738281,1.153986714738281,1.2001212737988505,1.2001212737988505,0.6783998814411217,0.6869763123308752,0.6538772304199718,0.6874037277198732,0.6497625887094717,0.6823239428669662,0.6915196029064079,0.6587245243496845,0.6934359724130268,0.6550551836427536,34.84972600826434,34.84972600826434,35.16079667075017,35.16079667075017,34.04720839088496,34.04720839088496,33.030249704172576,33.030249704172576,35.25337676227845,35.25337676227845,14.672941010672446,14.921530427500727,13.979713621748644,14.9340023470711,13.865949799847428,14.786285865431992,15.054507126604634,14.114675595477038,15.110864457374973,14.012417416960275,267.0477252949827,267.0477252949827,0.0,296.71969477220296,0.0,267.0477252949827,296.71969477220296,0,0
+2017/07/28 15:00:00,250.88145393201322,0,837.9287892063109,0,0,0,71.77393559130782,0.0,16.86091082671979,0.0,108.75639138185811,0,39.380909295966944,2.6946974182105444e-09,14.109306833465833,0,0,0.0,429.7897353120534,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9023.306488731047,5138.960173951965,9393.262759796935,6793.591191575972,62607.84339487026,9895.032105963905,6269.132728570458,9153.893392050606,6017.69616132001,57583.47733347222,9991.60424033846,6341.161233873821,9404.108547364991,6103.732941753454,58216.23816283491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044611949396784346,0.001411490981820314,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1987579574266223,1.1987579574266223,1.2074752954278911,1.2074752954278911,1.1825664352678364,1.1825664352678364,1.1512766740493399,1.1512766740493399,1.2076345093567564,1.2076345093567564,0.6821593241070916,0.6919348488639052,0.659684582557239,0.690810565104608,0.6532966421338946,0.6836255523793706,0.6945318245874791,0.6623829201886793,0.6943917691601182,0.6566773853656581,35.186773549090674,35.186773549090674,35.613569690977755,35.613569690977755,34.399907376995486,34.399907376995486,32.901685360360034,32.901685360360034,35.62138491533629,35.62138491533629,14.78151753724542,15.066705372959774,14.141527050568001,15.033695687544537,13.963616736621091,14.824029407015999,15.143163005045054,14.217209538493904,15.139032196584381,14.0575534192633,250.88145393201322,250.88145393201322,0.0,278.75717103557025,0.0,250.88145393201322,278.75717103557025,0,0
+2017/07/28 16:00:00,283.0492525731172,0,891.1364816284588,0,0,0,80.93955107332218,0.0,17.028300508570425,0.0,131.64086955684016,0,39.380909295966944,2.6946974182105444e-09,14.059622135722725,0,0,0.0,429.7618989653851,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10512.942359781084,6210.371939023782,10712.346841904284,7235.903936375531,73130.37886670628,11096.371797767377,7126.725712969316,10268.967111899325,6916.889704681492,65575.6431575623,11099.37579232464,7152.486146879281,10412.887011063407,6977.618233272429,66079.45922375191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04744476635263199,0.0015011193356670267,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2011831854992714,1.2011831854992714,1.208968724693237,1.208968724693237,1.1865894739255765,1.1865894739255765,1.1572537476681688,1.1572537476681688,1.2245727960168153,1.2245727960168153,0.6728806040178978,0.682315321928949,0.6531590997655158,0.6817001072930745,0.6518907132065577,0.671570877922036,0.682104485778131,0.6535613146533058,0.6825534296045395,0.6551739381110723,35.30529235857341,35.30529235857341,35.68690489801563,35.68690489801563,34.594695314570174,34.594695314570174,33.185544274709116,33.185544274709116,36.45688710491323,36.45688710491323,14.514646576371433,14.78603612324386,13.9598054972668,14.768222110719037,13.924697703092832,14.477276816027342,14.77992935672981,13.97095300434566,14.792935107864736,14.015717762410574,283.0492525731172,283.0492525731172,0.0,314.4991695256858,0.0,283.0492525731172,314.4991695256858,0,0
+2017/07/28 17:00:00,296.81153272827225,0,896.5426257905189,0,0,0,87.69421641916995,0.0,17.24136368197722,0.0,133.89528835348938,0,39.380909295966944,2.8047190758568577e-09,18.59975497486403,0,0,0.0,435.16804312744506,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10329.445705501585,5939.982592211229,10695.389332043402,7379.125636270522,75212.59342782776,12182.861167724972,7713.170992718304,11630.119664705353,7487.233009187096,76631.21250196332,12145.475676081913,7708.7110305354845,11760.047530220128,7503.973456385315,77127.32856260943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04773259347218709,0.0015102259850976974,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.203799408526075,1.203799408526075,1.2120342827970905,1.2120342827970905,1.1885206760193823,1.1885206760193823,1.1581768069340097,1.1581768069340097,1.2298577668942372,1.2298577668942372,0.6728311467611955,0.6831290749494878,0.6537263823743841,0.6830438159789427,0.6572612352942022,0.67136805235747,0.6827508569226007,0.6540416881060108,0.6840162986467557,0.6617841749374065,35.43333472800724,35.43333472800724,35.837637578942434,35.837637578942434,34.6883710316249,34.6883710316249,33.22948128826911,33.22948128826911,36.71919652277575,36.71919652277575,14.513234088141502,14.809624113417428,13.975529935384984,14.80715139669509,14.07382631798167,14.471496335697864,14.798657270214107,13.984275887623483,14.835374406828663,14.200388808927073,296.81153272827225,296.81153272827225,0.0,329.7905919203025,0.0,296.81153272827225,329.7905919203025,0,0
+2017/07/28 18:00:00,284.4230059163648,0,916.0650163935941,0,0,0,91.20874142535123,0.0,17.24136368197722,0.0,110.93442390708215,0,39.380909295966944,2.9628662656139747e-09,25.657567603024294,0,0,0.0,490.1807862430646,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9001.545662171193,5088.294459626383,9688.565530879776,7210.450216399029,69264.98313026786,13107.148559944937,8263.617374433246,12948.762624440582,7880.476934138424,86256.91284963409,13081.548695196085,8275.68956259877,13128.609799377198,7873.004638070032,86857.59598337582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0487719800082597,0.0015431114505868536,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1956471941057887,1.1956471941057887,1.2083953964191976,1.2083953964191976,1.1831742533949219,1.1831742533949219,1.1521934632876616,1.1521934632876616,1.2227333287394195,1.2227333287394195,0.6690638718251336,0.6835694104407226,0.6522736760621953,0.6796543731322184,0.659317957203211,0.6689863287301934,0.6856030574784052,0.6545576022593348,0.6819217960002768,0.6652463650059312,35.03500240598528,35.03500240598528,35.65874399226965,35.65874399226965,34.42930588892692,34.42930588892692,32.94515196815401,32.94515196815401,36.36576758695495,36.36576758695495,14.405952782361922,14.822399914010916,13.935290420173956,14.709104036523641,14.131268350361452,14.403751028817197,14.881512500409656,13.998595610594776,14.774639390942724,14.297867867713421,284.4230059163648,284.4230059163648,0.0,316.0255621292942,0.0,284.4230059163648,316.0255621292942,0,0
+2017/07/28 19:00:00,275.80968027528104,0,883.1989486421332,0,0,0,85.9494201180049,0.0,21.69171980149229,0.0,101.68988858149199,0,39.380909295966944,3.0137829991525547e-09,27.0977424753112,0,0,0.0,492.8050710041479,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7685.974538411263,4162.289445212219,8421.186299889201,6746.1333383720175,62912.15168867978,12267.550191871838,7458.978205327058,11848.370333420087,7303.3957042495795,82570.6655715847,12194.141392664571,7347.724867626337,11906.05460715028,7255.424480725102,82829.66480179055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04702216621705643,0.0014877485619540101,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1705569597412162,1.1705569597412162,1.1757045844434266,1.1757045844434266,1.1600614147842296,1.1600614147842296,1.1350454131078147,1.1350454131078147,1.2072009209258516,1.2072009209258516,0.6516122761700964,0.6567410683112368,0.6307390643343398,0.6603138438542107,0.651838292682941,0.6485321663764245,0.6510502103724786,0.6276090473291609,0.6588705883111349,0.6553686155741497,33.82131946139609,33.82131946139609,34.06878633822994,34.06878633822994,33.31926983549941,33.31926983549941,32.13655891195776,32.13655891195776,35.60010334916397,35.60010334916397,13.917000151766615,14.059327654425758,13.349520270357687,14.159148254704263,13.923248250914341,13.832072969373542,13.901471759915466,13.266053916863527,14.118758219833964,14.021129431608301,275.80968027528104,275.80968027528104,0.0,306.45520030586783,0.0,275.80968027528104,306.45520030586783,0,0
+2017/07/28 20:00:00,267.1113894325566,0,842.3580506635245,0,0,0,73.40129111978207,0.0,24.999863057464953,0.0,106.16168237671882,0,39.380909295966944,2.911056214342304e-09,23.167643579712802,0,0,0.0,487.4545255380833,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5057.329873681062,2172.8152212018845,6213.473135177474,6058.204181431247,51432.978600501534,9886.609968041588,5800.006650271137,10112.64699236993,5512.427970567114,73684.80922984505,9711.468107983934,5638.364293263546,10137.668437315026,5335.173619892502,73506.50504730626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0448477665575499,0.0014189520724088153,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.165338742142967,1.165338742142967,1.1713204946269131,1.1713204946269131,1.1525152685701878,1.1525152685701878,1.1189817603982422,1.1189817603982422,1.2004333618787038,1.2004333618787038,0.6517972133618489,0.659320177175291,0.6337192526243414,0.6603531780345017,0.6558720863908232,0.647048440740629,0.654415215746499,0.630636923566686,0.6571609003924378,0.6577531117130287,33.57128429027034,33.57128429027034,33.85797473600776,33.85797473600776,32.960415607878275,32.960415607878275,31.387728433972057,31.387728433972057,35.268631004159445,35.268631004159445,13.922112471574579,14.13133045082067,13.42938623206527,14.160250299457445,14.03513259476972,13.79130931337663,13.9946423753197,13.346789832658928,14.071028761077898,14.08754722158649,267.1113894325566,267.1113894325566,0.0,296.7904327028407,0.0,267.1113894325566,296.7904327028407,0,0
+2017/07/28 21:00:00,250.72366083313526,0,798.0109748067987,0,0,0,56.705736823980764,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9628662656139747e-09,25.553961758026354,0,0,0.0,478.5978021939015,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3493.107287148142,1184.8449399146111,4666.967158794898,5280.222959860756,42887.94083636246,6775.665390023888,3883.7771747611528,7082.165335040322,3594.1207136958,55383.77404054554,6493.8170507800205,3668.8832647401628,7013.174757409944,3347.8906415019046,54818.312149053796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04248669539076307,0.0013442494264940465,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1574736776868781,1.1574736776868781,1.163224861884806,1.163224861884806,1.1450726157994902,1.1450726157994902,1.1032074167033645,1.1032074167033645,1.1890816832323061,1.1890816832323061,0.6484078826311549,0.655072964629882,0.6312780766169146,0.6557662372764974,0.652768091302955,0.6401725558468658,0.6465397437069447,0.6246069262057691,0.6488535615763854,0.6520313854370254,33.19601038562159,33.19601038562159,33.47023424139033,33.47023424139033,32.608238729904386,32.608238729904386,30.660708079429313,30.660708079429313,34.715604140124356,34.715604140124356,13.82865475380379,14.012911535460645,13.363936699677595,14.032187674175418,13.948975301271787,13.60364845855733,13.77735541891262,13.186397461439185,13.840915509257968,13.928587945253,250.72366083313526,250.72366083313526,0.0,278.5818453701503,0.0,250.72366083313526,278.5818453701503,0,0
+2017/07/28 22:00:00,170.9281541435299,0,623.0933819718338,0,0,0,34.30930150563189,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.858343574651834e-09,20.86589502971771,0,0,0.0,463.3867956653852,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,786.7496534185997,3398.9424408761292,17517.459401281478,4006.287130326862,2163.3643145303536,4354.635053409182,1898.0781741177402,38596.75425040826,3592.3061727597665,1868.3733794708166,4144.9910816950205,1573.720568254025,37597.972562073766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033173953185602414,0.0010496007546395684,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0997271018027912,1.0997271018027912,1.0682889372006035,1.0682889372006035,1.1003084587280687,1.1003084587280687,1.0533018108347978,1.0533018108347978,1.120733226234095,1.120733226234095,0.6318652408939716,0.6369521575904241,0.617258039651743,0.6370374486965907,0.6378378992504771,0.6192476531105502,0.6239199244077475,0.6065072248024168,0.6254344602662049,0.6333171537232579,30.501433792014126,30.501433792014126,29.081602079003247,29.081602079003247,30.528010563467177,30.528010563467177,28.4169795422077,28.4169795422077,31.468963603058654,31.468963603058654,13.379655346531905,13.516460412475652,12.993056968139356,13.518763757982285,13.540395856869594,13.045169983257097,13.168223958601587,12.714438043305336,13.208315705813405,13.418587911896736,170.9281541435299,170.9281541435299,0.0,189.92017127058878,0.0,170.9281541435299,189.92017127058878,0,0
+2017/07/28 23:00:00,104.60412627250565,0,459.65898001974523,0,0,0,17.225739248891102,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6382817179877904e-09,11.867405962137996,0,0,0.0,406.423451250929,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1870.4612473455659,0.0,1755.9024956314497,762.6977877592929,2145.785729693911,517.5856390331683,25008.97332992047,1207.8661586487187,385.2887993788852,1797.7898013435026,109.87994107737151,23752.09743597075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024472584568722127,0.0007742955169557357,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9664627508181799,0.9664627508181799,0.9275014875840604,0.9275014875840604,0.9909464359009235,0.9909464359009235,1.0093337427801132,1.0093337427801132,1.060804746121343,1.060804746121343,0.621987277889177,0.6259323089120027,0.6092131368734579,0.625432191317868,0.6286199239380403,0.6062434480364638,0.6096319867035057,0.5956389303304312,0.6103688925971041,0.6216601209093482,24.729062934356435,24.729062934356435,23.168652634507552,23.168652634507552,25.740000098964117,25.740000098964117,26.514303203421008,26.514303203421008,28.748703797713887,28.748703797713887,13.11720881699965,13.221516147024275,12.784092281478166,13.208255569337737,13.292963907963369,12.707665032206023,12.794902506389462,12.437873292524287,12.813940020413227,13.108589051831274,104.60412627250565,104.60412627250565,0.0,116.22680696945072,0.0,104.60412627250565,116.22680696945072,0,0
+2017/07/29 00:00:00,48.4014888600336,0,468.3066521275329,0,0,0,0.3390941345928251,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,7.330372421915276,2.580917075917695e-09,9.546388236144526,0,0,0.0,415.0711233587167,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,314.7224901650484,0.0,1036.1999379225776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024932993037129127,0.000788862519964957,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.009408997029441,1.009408997029441,0.9995510589360471,0.9995510589360471,1.0118875097011104,1.0118875097011104,0.9831695124248258,0.9831695124248258,1.0348332847027821,1.0348332847027821,0.7781252946699717,0.7804010483742952,0.7573658686048731,0.7759738924295648,0.8293542856116475,0.7439453065856758,0.7457503057183762,0.7288649556534046,0.7442145855564105,0.8106097839119483,26.51749848821116,26.51749848821116,26.100750843470138,26.100750843470138,26.622854737032213,26.622854737032213,25.416384704487143,25.416384704487143,27.60910773377546,27.60910773377546,17.759262890607943,17.834666697722696,17.081621803153595,17.688181999176976,19.50977564339469,16.653344018082535,16.710496151395816,16.181315353052454,16.661861398859372,18.85641092358341,48.4014888600336,48.4014888600336,0.0,53.779432066704004,0.0,48.4014888600336,53.779432066704004,0,0
+2017/07/29 01:00:00,23.722147723342147,0,39.70297242746656,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250522996643575,0,0,0.0,4.212619914922427,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0021138156602946833,6.687965404066292e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0656899447471517,1.0656899447471517,1.0508910470207475,1.0508910470207475,1.0652291820104771,1.0652291820104771,1.0375373237326497,1.0375373237326497,1.1274556080797682,1.1274556080797682,0.7858237049880519,0.7872903361922284,0.7618502721537391,0.7809994355812802,0.8878501962535015,0.7523856451237879,0.7530603095265195,0.7350733477862297,0.7501543612153483,0.8644577677160673,28.96577274491962,28.96577274491962,28.31082290992387,28.31082290992387,28.94526293817853,28.94526293817853,27.72661411724033,27.72661411724033,31.7816956994198,31.7816956994198,18.01522631214634,18.064275809449327,17.226446435495006,17.854529980093957,21.642931797361484,16.921792589812483,16.943382287668342,16.374460946053446,16.85052887388285,20.772887433864156,23.722147723342147,23.722147723342147,0.0,26.357941914824607,0.0,23.722147723342147,26.357941914824607,0,0
+2017/07/29 02:00:00,28.34447882891697,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251157424440792,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0927617582233324,1.0927617582233324,1.0774157441368983,1.0774157441368983,1.091343955251324,1.091343955251324,1.0656747869311314,1.0656747869311314,1.1899744497964944,1.1899744497964944,0.7933615607970024,0.7944745114903381,0.7695334496536606,0.7879968055723393,0.911871942882814,0.7595632055102858,0.759846448996033,0.7422427472901125,0.7567865706677617,0.8835471348676833,30.183910045392167,30.183910045392167,29.49024635610138,29.49024635610138,30.119481463830212,30.119481463830212,28.965097909210243,28.965097909210243,34.758961052138645,34.758961052138645,18.268291004705816,18.305859756521542,17.47657280933292,18.087935321987032,22.559662406380113,17.15247778383312,17.161626357698694,16.59956350770345,17.062975982382994,21.481199419651517,28.34447882891697,28.34447882891697,0.0,31.4938653654633,0.0,28.34447882891697,31.4938653654633,0,0
+2017/07/29 03:00:00,23.722276634493298,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251812108155047,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.089138178502334,1.089138178502334,1.0747287356606572,1.0747287356606572,1.0859242387859807,1.0859242387859807,1.0619420171745684,1.0619420171745684,1.185174733555742,1.185174733555742,0.7997182848725011,0.8003207774206765,0.775256877337129,0.7928240027981482,0.9326493592595473,0.7587067170450956,0.7582637914347912,0.7408901445446381,0.7543764864491546,0.9032987527345977,30.01938296026114,30.01938296026114,29.3696335888674,29.3696335888674,29.87383463439886,29.87383463439886,28.799161372849554,28.799161372849554,34.52614140696261,34.52614140696261,18.483574609589795,18.504068033381145,17.66453609080125,18.250164009174497,23.371378073484763,17.124834649168392,17.110551544800984,16.55692607075936,16.985556883084087,22.229798587913592,23.722276634493298,23.722276634493298,0.0,26.358085149436995,0.0,23.722276634493298,26.358085149436995,0,0
+2017/07/29 04:00:00,58.250602809087084,0,88.72588128136032,0,0,0,9.996916694564778,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,10.612228962868514,0.0,0.5775587395907229,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,670.6432995832986,0.0,0.0,0.0,778.9168881061282,0.0,17905.759776206367,0.0,0.0,0.0,0.0,15024.6035774281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.078897545570133,1.078897545570133,1.0739813253029393,1.0739813253029393,1.077559175625084,1.077559175625084,1.0354103711348401,1.0354103711348401,1.1106065917097026,1.1106065917097026,0.690851260088967,0.6907240902036679,0.6396488817169461,0.6863430043531971,0.622795242997462,0.6647240478244044,0.663742582769401,0.6566780195289408,0.6612957873316612,0.6185518314893547,29.55686877217218,29.55686877217218,29.33612936099469,29.33612936099469,29.496691736579706,29.496691736579706,27.634163023470364,27.634163023470364,31.000688052014155,31.000688052014155,15.03488956537997,15.031158991695548,13.589440045210864,14.903065112420578,13.13851656824896,14.283128606203093,14.255464619749901,14.057571086467831,14.186679890104912,13.026925119157411,58.250602809087084,58.250602809087084,0.0,64.72289201009676,0.0,58.250602809087084,64.72289201009676,0,0
+2017/07/29 05:00:00,80.883874712941,0,212.9421150752648,0,0,0,0.456644451559156,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,8.038382451874849,0.0,0.5248406203072313,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1883.0321828405024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1038556844561915,1.1038556844561915,1.1013529662508623,1.1013529662508623,1.103037455555001,1.103037455555001,1.0574549878315826,1.0574549878315826,1.124898395940953,1.124898395940953,0.8128664884152312,0.811100930326327,0.7704832624355894,0.8045803850917078,0.8059501068813846,0.7677025719489031,0.7651506910535116,0.7569618503812443,0.7617100019696084,0.7932776294829234,30.69042103077048,30.69042103077048,30.575789179087025,30.575789179087025,30.652920371390408,30.652920371390408,28.600352872195288,28.600352872195288,31.66255638035821,31.66255638035821,18.93428844883205,18.873341810454917,17.507668995809,18.649394032054374,18.696288104421996,17.416739777370708,17.333583022795494,17.06861618335479,17.22190336169399,18.265459949392948,80.883874712941,80.883874712941,0.0,89.87097190326777,0.0,80.883874712941,89.87097190326777,0,0
+2017/07/29 06:00:00,99.1962730824509,0,629.7090178704499,0,0,0,0.5302883486443384,0.0,8.33396954093373,0.0,80.56906512710079,0,9.23801805012402,2.5226041150029425e-09,0.5249320131254352,0,0,0.0,399.02172653891296,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2202.8900835677696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03352617454109035,0.001060744792808669,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.114365866385589,1.114365866385589,1.1123629251634455,1.1123629251634455,1.1138180091020569,1.1138180091020569,1.0708870226298361,1.0708870226298361,1.1336931648995217,1.1336931648995217,0.9115149770606006,0.9066059661159528,0.8757517022408557,0.8998113425221852,1.0306546049540393,0.8783956804097993,0.8731553053184816,0.8671845647101134,0.8696883858560762,0.9955302071074034,31.174125400707624,31.174125400707624,31.081659137151846,31.081659137151846,31.148820119263505,31.148820119263505,29.19763002477383,29.19763002477383,32.073197070119434,32.073197070119434,22.54586841970871,22.35669518096472,21.190138085254674,22.0964684711945,27.42804774939448,21.288577783255917,21.093749703732783,20.873146201085262,20.965476975406958,25.931824833824194,99.1962730824509,99.1962730824509,0.0,110.21808120272323,0.0,99.1962730824509,110.21808120272323,0,0
+2017/07/29 07:00:00,157.16017535652844,0,648.4063755022125,0,0,0,40.77009900061013,0.0,7.150130206996989,0.0,69.33401494192633,0,39.380909295966944,2.5226053513802873e-09,0.5250219085054674,0,0,0.0,382.22873165813166,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,36.322644399601096,3635.051309837869,16297.837617466785,3956.1507437305377,1879.5617741475521,4907.855641861057,1552.8825363393125,53210.38601635439,4068.811501582698,1920.7760334556565,5142.757283123733,1508.1777252821257,50630.64275603565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034521635710662836,0.0010922404903202676,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0952164445039865,1.0952164445039865,1.0488339274086438,1.0488339274086438,1.137531943624298,1.137531943624298,1.0815609615395467,1.0815609615395467,1.1506420798944328,1.1506420798944328,0.742559182683383,0.7516909466503391,0.7167948600957477,0.7503580446136889,0.7780625367666832,0.7273399316691536,0.7345301789532727,0.707909867904984,0.7366564031571328,0.7714519931887854,30.295620486190174,30.295620486190174,28.220404692176913,28.220404692176913,32.253223843244555,32.253223843244555,29.676809982269404,29.676809982269404,32.871613648489,32.871613648489,16.609549674903676,16.89958215265554,15.810554219946184,16.857025359681558,17.75718662118325,16.134124715986516,16.357496633528015,15.541640323866275,16.42397539852513,17.539424171618492,157.16017535652844,157.16017535652844,0.0,174.62241706280938,0.0,157.16017535652844,174.62241706280938,0,0
+2017/07/29 08:00:00,180.6037182812513,0,708.7830239140939,0,0,0,41.04874631045252,0.0,11.749515613158714,0.0,87.89947186453183,0,39.380909295966944,2.522605351532856e-09,0.5250751946186788,0,0,0.0,389.3698513011967,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,837.5765315328446,4316.824847088115,20581.947598615992,4630.558110896407,2411.2795730909857,5352.0092580635865,2122.048541750625,47907.22475442815,4169.169716557185,2034.264377881557,5063.274231799451,1730.417456332805,46967.974448869645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03773613319349739,0.0011939449499875718,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.106750222876865,1.106750222876865,1.0415175419071077,1.0415175419071077,1.1437553714082256,1.1437553714082256,1.1018181686917472,1.1018181686917472,1.1606005915461126,1.1606005915461126,0.6666070114114697,0.6738623460611352,0.6509039931066766,0.6776994558219066,0.6741151371667258,0.6584825308985219,0.6645161746670698,0.6427086419817307,0.6718994846396322,0.6712024827176492,30.82326385137553,30.82326385137553,27.90006480327945,27.90006480327945,32.54609163242985,32.54609163242985,30.597080738092927,30.597080738092927,33.344978209816404,33.344978209816404,14.336319411011402,14.54270682037712,13.897434408097325,14.652779577189463,14.549938873551582,14.10791368661647,14.277265923458472,13.672626235605847,14.486645809203836,14.466778960621,180.6037182812513,180.6037182812513,0.0,200.67079809027922,0.0,180.6037182812513,200.67079809027922,0,0
+2017/07/29 09:00:00,229.25556642554028,0,854.0726993800254,0,0,0,49.25300746445906,0.0,11.128561489866103,0.0,106.27511244621549,0,39.380909295966944,2.9110682040813776e-09,23.217975726121647,0,0,0.0,481.42399799831196,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3153.116161154665,731.6450080808457,3378.3013153186866,6407.404856981968,31225.788343299402,6345.687194364251,3143.5076512175538,6090.034315980304,3970.289787695239,48761.630752939935,6280.865986814955,2989.1193869162043,6071.139786304857,3951.560621320856,47716.64681549695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0454714631323348,0.001438685397282634,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.150962241035857,1.150962241035857,1.085733077305157,1.085733077305157,1.146032704720245,1.146032704720245,1.1834718317257669,1.1834718317257669,1.1560008484819282,1.1560008484819282,0.6676773783135829,0.6577454332085689,0.6364794250707774,0.6992728519303211,0.6472959448796224,0.6740404031004026,0.6588746920726996,0.6388378003808184,0.7135143387814433,0.6464197075512885,32.88678363611909,32.88678363611909,29.865188851818885,29.865188851818885,32.65357020733927,32.65357020733927,34.44370296227868,34.44370296227868,33.12594967815721,33.12594967815721,14.366624068249607,14.087332948981569,13.50369966390187,15.283495059421512,13.79810257225013,14.547800532736986,14.118872937159324,13.567457128584849,15.710869486692673,13.774064384276372,229.25556642554028,229.25556642554028,0.0,254.7284071394892,0.0,229.25556642554028,254.7284071394892,0,0
+2017/07/29 10:00:00,271.057615765494,0,922.9336505313446,0,0,0,64.23062517609199,0.0,14.932575465546352,0.0,131.64086955684016,0,39.380909295966944,2.8583554675616857e-09,20.872636268190135,0,0,0.0,461.5590678682708,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8749.672821927401,3744.4261757308914,7412.524774704821,8304.349996309822,51906.37989730884,9308.354424956178,4770.94290941119,7416.966508630651,6202.470150454712,50743.43062257106,9649.856227765422,4805.121246874468,7567.771648982363,6531.197909845634,51101.54408901866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04913767117739663,0.0015546816642705741,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1806710009138262,1.1806710009138262,1.1066542294011348,1.1066542294011348,1.139052551989536,1.139052551989536,1.212674120124548,1.212674120124548,1.166964141666521,1.166964141666521,0.659030218716715,0.6286900654815806,0.610346291919987,0.6845805693180128,0.6177203379797215,0.6742159735143013,0.6349507403436689,0.617600038258383,0.7048698642191493,0.6228189729757997,34.30830124428827,34.30830124428827,30.818853761245933,30.818853761245933,32.324667196141405,32.324667196141405,35.869131626670125,35.869131626670125,33.649077066930886,33.649077066930886,14.123221096177232,13.294832752376237,12.813355795390393,14.851769198074336,13.005150411534515,14.552824453322444,13.462501328943247,13.002002551188525,15.450412855843254,13.139142806244209,271.057615765494,271.057615765494,0.0,301.17512862832666,0.0,271.057615765494,301.17512862832666,0,0
+2017/07/29 11:00:00,319.3700306018654,0,979.6047991607999,0,0,0,101.96485326269064,0.0,14.932575465546352,0.0,136.4899973586286,0,39.380909295966944,2.9110682040813768e-09,23.16972001366732,0,0,0.0,464.99468772891,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20758.19637202963,9161.312647336996,14782.435286559186,10308.836205899006,96815.60703848557,16270.144913729844,8670.635399945195,12213.868960591699,10303.013776038735,75767.37666160948,17065.370506565796,8888.579925028567,12597.037114973786,10801.192716346215,77450.60544111434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.052154885107126424,0.001650144209835624,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.3086048601198927,1.3086048601198927,1.1913029367071741,1.1913029367071741,1.1926350251123348,1.1926350251123348,1.2476353465997445,1.2476353465997445,1.2221599219383092,1.2221599219383092,0.7104428937542124,0.6460860553603537,0.6204227011123555,0.7120996487514928,0.6200390998816654,0.7407329892680147,0.6599827701819434,0.6344418643481929,0.7385733185586889,0.6343809281722005,40.71188174834891,40.71188174834891,34.82352199307917,34.82352199307917,34.88830997941801,34.88830997941801,37.6070436838784,37.6070436838784,36.337382410446196,36.337382410446196,15.617958309836482,13.764919914502357,13.07602815262986,15.668024615779828,13.065947737007377,16.55197723147623,14.149875060035683,13.448809515687756,16.484076292850773,13.447170720554993,319.3700306018654,319.3700306018654,0.0,354.8555895576282,0.0,319.3700306018654,354.8555895576282,0,0
+2017/07/29 12:00:00,303.22958786083154,0,965.7338535011999,0,0,0,97.72557199187455,0.0,14.783782912797726,0.0,124.80122689546741,0,39.380909295966944,2.911068204081376e-09,23.106121559359583,0,0,0.0,486.6140945818541,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17954.36086334883,8192.324419847206,12870.149171370533,8848.336989631498,82103.68771013245,15978.340240068454,8659.627938449961,12249.473962284203,9328.870596301442,73199.10360494451,16789.149323372316,8911.98367954605,12649.214305122603,9725.812605495232,75219.28733334884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0514163856859074,0.0016267786029248148,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2675149776719583,1.2675149776719583,1.1703460183930678,1.1703460183930678,1.1757525590724758,1.1757525590724758,1.1880121929885354,1.1880121929885354,1.203237507482178,1.203237507482178,0.6958693063816239,0.6368783460611073,0.6126238065745673,0.6690771584019769,0.6053800350077135,0.7242173357110584,0.6521779322734044,0.6270188142941188,0.6885480523095889,0.6197883298132367,38.609554022573256,38.609554022573256,33.811195865052596,33.811195865052596,34.0710964500245,34.0710964500245,34.663695642556476,34.663695642556476,35.40581778236795,35.40581778236795,15.182653504216546,13.514467335599562,12.87234074174296,14.406330066678834,12.685516246216537,16.03781060080439,13.932641559859476,13.250362148677809,14.967432448593499,13.059361359671044,303.22958786083154,303.22958786083154,0.0,336.9217642898128,0.0,303.22958786083154,336.9217642898128,0,0
+2017/07/29 13:00:00,298.0438190358536,0,905.7781512051823,0,0,0,97.12649856941141,0.0,14.728125842506467,0.0,122.5097643007467,0,39.380909295966944,2.8583554675616857e-09,20.86654582190934,0,0,0.0,462.1487447983806,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16946.84306979608,8803.855501403423,12817.783131597365,8400.041547433,79178.43573979624,15964.753843158427,9135.818862176686,12347.633636448554,9135.299197075436,71398.81829941532,16695.911120913795,9445.16647669816,12753.813558608132,9463.796627318725,73514.07788551241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04822429968607903,0.001525783226957734,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.253230746081509,1.253230746081509,1.1824687558966551,1.1824687558966551,1.1614735391065232,1.1614735391065232,1.1756967966760898,1.1756967966760898,1.1817239584102577,1.1817239584102577,0.696016577871643,0.6500685626817576,0.6095560038775779,0.6593469404769913,0.5948013974350255,0.7247507335364574,0.6712581447703646,0.6254673482792579,0.6785742491391695,0.6099536137582078,37.88820068212175,37.88820068212175,34.39518391939845,34.39518391939845,33.38662017629001,33.38662017629001,34.06841134214157,34.06841134214157,34.35917729989848,34.35917729989848,15.187006565776201,13.874384274635418,12.792940876780463,14.132079131691768,12.416773401929447,16.054233147333193,14.468364739605846,13.20918739869441,14.67796340552961,12.803208646673042,298.0438190358536,298.0438190358536,0.0,331.15979892872616,0.0,298.0438190358536,331.15979892872616,0,0
+2017/07/29 14:00:00,273.0107772303669,0,842.7428873831379,0,0,0,88.04326619841243,0.0,14.78378283874635,0.0,108.75639138185811,0,39.380909295966944,2.8047308635502242e-09,18.614452310124015,0,0,0.0,434.60383348888035,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15901.270873833048,9453.354495505966,11845.486585361401,7737.268695515149,73458.5275610301,13806.441084681323,9120.981955486415,10608.107996154598,8038.903091246105,61838.094266972716,14417.046798632404,9560.422129856712,11010.62553790936,8349.498209109914,63990.86779879335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04486825554955323,0.0014196003298337953,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.234071927080675,1.234071927080675,1.251032854152138,1.251032854152138,1.1546393116006681,1.1546393116006681,1.1624246391536537,1.1624246391536537,1.1722629002842464,1.1722629002842464,0.673476294534873,0.6864320217097553,0.5988945698638851,0.6479563768174504,0.5819331783212052,0.6955517557954696,0.7144299937607185,0.6126334682639344,0.6646472426281004,0.597166302958905,36.92890012702034,36.92890012702034,37.77766521786141,37.77766521786141,33.06124339801082,33.06124339801082,33.43201712376411,33.43201712376411,33.903241614659706,33.903241614659706,14.531667682183553,14.905659537733683,12.520181501098051,13.816242480570196,12.096412562903154,15.173270508149187,15.73864671358973,12.872591447638058,14.280962237911368,12.476430636402256,273.0107772303669,273.0107772303669,0.0,303.345308033741,0.0,273.0107772303669,303.345308033741,0,0
+2017/07/29 15:00:00,268.14155948317585,0,865.9953898501851,0,0,0,85.67205609611413,0.0,14.728125842506467,0.0,106.31215624428707,0,39.380909295966944,2.8047308635502242e-09,18.616336799042237,0,0,0.0,457.85633595592776,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14517.141291678023,11418.047211260331,11829.696749121882,7557.339392169102,72864.00307982396,12405.952390234126,9933.664776564201,10087.319858740451,7719.950800773498,58574.63505378215,12836.787417793686,10505.10347457661,10442.191304359367,7994.912072586895,60654.811399515565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04610623600418242,0.0014587691684747014,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2114559180249505,1.2114559180249505,1.3087964329045019,1.3087964329045019,1.1597621117861656,1.1597621117861656,1.1590721412621305,1.1590721412621305,1.176568039354484,1.176568039354484,0.6469825899983513,0.7255091370810481,0.594079553867342,0.6436726173541182,0.5749558016403417,0.6623072366810188,0.7603582295344457,0.6059517570684687,0.6583938418645665,0.589244606771857,35.8091792437891,35.8091792437891,40.72177315771237,40.72177315771237,33.30500273160273,33.30500273160273,33.27212399709039,33.27212399709039,34.11037473197821,34.11037473197821,13.789502351982918,16.077604369502225,12.398612488267773,13.698918093054587,11.925711600209596,14.215082481607851,17.178165220657903,12.700178782585581,14.105436126159432,12.277552710063077,268.14155948317585,268.14155948317585,0.0,297.9350660924176,0.0,268.14155948317585,297.9350660924176,0,0
+2017/07/29 16:00:00,282.0482316981464,0,891.2283144310821,0,0,0,87.94815008988202,0.0,14.78378283874635,0.0,120.17895923267236,0,39.380909295966944,2.7501851212017493e-09,16.32445503567419,0,0,0.0,429.85373176800846,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13752.34465435932,12412.352226373712,12339.913499680775,7924.870805969019,76591.55619202746,11783.577421884114,10778.695030593293,10187.51161006091,7783.576216878137,59320.4260208868,12006.82863339291,11360.699146833922,10439.942736509835,7988.01504152695,61289.26616771515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04744965559906483,0.001501274028016076,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1849263040921802,1.1849263040921802,1.3317118403849104,1.3317118403849104,1.1586275346018946,1.1586275346018946,1.1633068597916334,1.1633068597916334,1.1865831933561166,1.1865831933561166,0.6205677890857462,0.7450234929002408,0.5859359503093367,0.6336793231835369,0.5696842972836201,0.6308917455488366,0.7806352725498407,0.594982830631699,0.6451263700132401,0.5826441898677166,34.51410942206353,34.51410942206353,41.91055753235432,41.91055753235432,33.25094528536374,33.25094528536374,33.47415142428487,33.47415142428487,34.594390846602835,34.594390846602835,13.079842492615157,16.68746609812804,12.19529360973911,13.428313617815476,11.798145388299886,13.353602604538906,17.842439884207934,12.421341648924283,13.738644542396372,12.113926001409197,282.0482316981464,282.0482316981464,0.0,313.38692410905156,0.0,282.0482316981464,313.38692410905156,0,0
+2017/07/29 17:00:00,299.2641470534752,0,919.2293970923357,0,0,0,82.80053705049566,0.0,16.630907673226492,0.0,138.40412594678773,0,39.380909295966944,2.8047308635502247e-09,18.61569188173929,0,0,0.0,457.8548144292621,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12657.467935334504,11208.942374175826,12028.7905391042,7695.918744605817,73365.2906248249,10913.844715586563,9845.508238588303,9900.189926697962,7101.293294428245,56620.70823210992,11053.406828011886,10351.796236726259,10160.916306040606,7278.909755345411,58165.2786698036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048940453980538576,0.0015484418496337115,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1814782608555263,1.1814782608555263,1.2948372075261092,1.2948372075261092,1.1715046051961433,1.1715046051961433,1.1605637228253496,1.1605637228253496,1.188463238070553,1.188463238070553,0.6088312925180879,0.7231130207945496,0.5899688167324479,0.6245218801225899,0.5657173038798015,0.6130121944826563,0.7505025797478849,0.5984302328826554,0.6325339427276406,0.5760386728549705,34.34730289161031,34.34730289161031,40.00314059717922,40.00314059717922,33.86681605316994,33.86681605316994,33.343219992414205,33.343219992414205,34.685583331483,34.685583331483,12.774243776979517,16.00384925419266,12.295621234925505,13.184146596474491,11.702942216370502,12.882421999092898,16.861636388316995,12.50841413158264,13.397575006165255,11.95206548404181,299.2641470534752,299.2641470534752,0.0,332.5157189483058,0.0,299.2641470534752,332.5157189483058,0,0
+2017/07/29 18:00:00,298.90947030238317,0,916.0318402480679,0,0,0,93.30788781263612,0.0,17.03716081602578,0.0,120.14191543460078,0,39.380909295966944,2.9628783439545384e-09,25.609621737736408,0,0,0.0,490.14761009753835,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11768.711785915617,12602.149639705725,13026.607889608376,7432.724933281453,73079.78841447449,12896.680099425115,11936.737170512171,13283.61643325348,8087.24232688108,71659.53923728451,12932.401137886474,12430.395500045941,13614.606156585967,8198.238650765066,72960.06405171381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04877021368569808,0.0015430555653722325,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1705782181074338,1.1705782181074338,1.3697428871479405,1.3697428871479405,1.2108099778998396,1.2108099778998396,1.1439874101627892,1.1439874101627892,1.189832971165235,1.189832971165235,0.6097755805887073,0.7715280024425231,0.6263915513278502,0.6192405523331272,0.5829585741030999,0.6104316572627039,0.8029683993925073,0.6385616925398347,0.6231547331953164,0.5936685221386855,33.822339778229406,33.822339778229406,43.906239104033986,43.906239104033986,35.77740701677968,35.77740701677968,32.55703511701434,32.55703511701434,34.752088624062736,34.752088624062736,12.798610318007846,17.54191746215065,13.233702480955074,13.044983690462331,12.121676820638214,12.815562596397626,18.594307321583187,13.559980226521787,13.148006191950984,12.388281416300487,298.90947030238317,298.90947030238317,0.0,332.12163366931463,0.0,298.90947030238317,332.12163366931463,0,0
+2017/07/29 19:00:00,287.5537556606588,0,870.8903851031534,0,0,0,93.93045044587598,0.0,17.790481334925307,0.0,110.89738010901058,0,39.380909295966944,2.9628783439545384e-09,25.554534471917002,0,0,0.0,480.4965074651681,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9251.484670912409,7026.163675635878,10875.107400700259,6840.574202459099,64416.84014065804,14015.005492162918,11931.551054430513,14394.86573827612,8117.059386810616,84447.54089936176,14102.156499270613,12441.973205303673,14881.881625223215,8198.153972141894,85598.83624396064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04636684917720607,0.0014670147876068027,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1673327850404542,1.1673327850404542,1.2033594622263777,1.2033594622263777,1.1831941689660552,1.1831941689660552,1.129647739035294,1.129647739035294,1.1916259700781775,1.1916259700781775,0.6450459850219371,0.7469426315604456,0.6450309778491836,0.6435307672082613,0.6252761961948577,0.6448952668807226,0.7633329790538115,0.6532652534187287,0.6457222117494129,0.6335071831571251,33.66673189742721,33.66673189742721,35.41178927900698,35.41178927900698,34.430269337470236,34.430269337470236,31.883996545068513,31.883996545068513,34.839228394337084,34.839228394337084,13.736445482000931,16.748325663854246,13.736034967751962,13.695046685775054,13.204121591726292,13.732323100622253,17.274519784434617,13.962746896731701,13.754953484486308,13.423690256583853,287.5537556606588,287.5537556606588,0.0,319.50417295628756,0.0,287.5537556606588,319.50417295628756,0,0
+2017/07/29 20:00:00,261.5322859614031,0,829.7985164575576,0,0,0,79.68604985704546,0.0,24.398945138444315,0.0,94.88958839347283,0,39.380909295966944,2.911068204081376e-09,23.176793273562563,0,0,0.0,474.89499133211643,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7336.822897232137,5017.901383532961,8100.7631941489335,6187.860120457275,55096.3724687937,11708.633232883709,9157.1767739924,11374.554441874996,6527.465447028628,71997.06983733203,11687.831646281367,9508.769133682394,11809.006218912056,6512.169054405827,72608.82767074952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044179087653493494,0.0013977955379921164,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1600441237694055,1.1600441237694055,1.192782223609999,1.192782223609999,1.1464153253085578,1.1464153253085578,1.1143195538296458,1.1143195538296458,1.1844813920508863,1.1844813920508863,0.6540297661057637,0.711328796290953,0.6302773223094781,0.6493164570695048,0.6369669381406003,0.6516712112510131,0.7212703117780266,0.6361211947826524,0.6488146221908355,0.6404835346105651,33.31844553573323,33.31844553573323,34.895472375008396,34.895472375008396,32.67164416376308,32.67164416376308,31.171985856884234,31.171985856884234,34.49256593860429,34.49256593860429,13.983945116728677,15.64471512124517,13.337180536029578,13.853659013509215,13.516859548886998,13.918629165454348,15.94729669595064,13.49403619781441,13.839843932285945,13.61209161452426,261.5322859614031,261.5322859614031,0.0,290.59142884600345,0.0,261.5322859614031,290.59142884600345,0,0
+2017/07/29 21:00:00,271.97444893941037,0,809.5686740661631,0,0,0,80.15549150985571,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,2.9628783439545384e-09,25.60941397507577,0,0,0.0,490.15550145326597,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7167.7692815260625,4778.5810989492265,7594.675819603507,5783.825809145059,53730.87619058741,12032.308502034417,9032.971898648979,11402.576562728518,6896.552832604117,73389.0752732699,11946.700574444012,9161.422564227698,11578.222064738018,6871.443060104646,73635.20251549256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04310203586019653,0.0013637183700192315,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.146665754408605,1.146665754408605,1.173201920058195,1.173201920058195,1.1343179409236126,1.1343179409236126,1.1019914068100254,1.1019914068100254,1.1706571609519443,1.1706571609519443,0.6487952398939144,0.7008563655493693,0.6277316383783389,0.644258331795506,0.6364758652943175,0.6444555160777863,0.7015884827125634,0.6268330083485695,0.6417090078709583,0.6385469685756981,32.68347627416459,32.68347627416459,33.94837273321477,33.94837273321477,32.10246462703297,32.10246462703297,30.605011442910808,30.605011442910808,33.82612884075539,33.82612884075539,13.839310573358901,15.330582493861485,13.269314983505296,13.714912787821149,13.503603609521704,13.72030084489677,15.35238935457636,13.245425492617102,13.645404368135118,13.559581599678623,271.97444893941037,271.97444893941037,0.0,302.1938321549004,0.0,271.97444893941037,302.1938321549004,0,0
+2017/07/29 22:00:00,187.9079794629117,0,594.0606418215516,0,0,0,51.34342345764617,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,2.8047308635502242e-09,18.55717960048964,0,0,0.0,434.35405551510297,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1913.0259433220615,1118.776305610875,2684.432103059513,3851.793283529162,23320.595622788453,7815.056237084701,6036.898473707279,7633.878496182817,4068.2441945479327,52059.18036819773,7572.891991183149,5981.959782569225,7643.4839934377,3900.1174037263822,51921.28008290782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03162822859525721,0.0010006951060599657,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0986349287525856,1.0986349287525856,1.1213006422830114,1.1213006422830114,1.0869305954372848,1.0869305954372848,1.0515526012978305,1.0515526012978305,1.101222184686454,1.101222184686454,0.6325578367576203,0.6767700843136883,0.6124079519402927,0.6273578605395415,0.6218987889021271,0.6238207579095643,0.6715790737000018,0.6071959334632222,0.6203285268688095,0.6207664389473486,30.451536150573588,30.451536150573588,31.4953028358223,31.4953028358223,29.91937064849897,29.91937064849897,28.339933215295815,28.339933215295815,30.569804843494808,30.569804843494808,13.39821566976525,14.62606080936149,12.866740704166276,13.259374088509446,13.114876896096519,13.16560236340068,14.477510431184243,12.73213629021825,13.073552815481136,13.085066447778516,187.9079794629117,187.9079794629117,0.0,208.78664384767967,0.0,187.9079794629117,208.78664384767967,0,0
+2017/07/29 23:00:00,113.10971037493432,0,480.38273548381056,0,0,0,23.509207340474173,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.694708969671019e-09,14.089521972927194,0,0,0.0,427.1472067149943,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2063.62639886293,0.0,3609.676446772236,3090.2131864937965,3687.886151589664,1415.5129490110812,29109.2765354164,3254.0187930392804,2916.7479336260003,3574.7640901638533,1159.3779544126178,28495.82076417467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0255759326598528,0.0008092046814620476,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.960711413408819,0.960711413408819,0.9732433851727992,0.9732433851727992,0.977469405944274,0.977469405944274,0.9969224633796564,0.9969224633796564,1.0255153407048365,1.0255153407048365,0.5948182524469698,0.634289050340018,0.5775160942779978,0.5865326490787354,0.5903990235284137,0.5813564563020273,0.6231836128304494,0.5678190921560059,0.5744617951197194,0.5856619495489098,24.494960090441637,24.494960090441637,25.00671717344251,25.00671717344251,25.180666826372274,25.180666826372274,25.990247432452946,25.990247432452946,27.206249134561062,27.206249134561062,12.417197728555735,13.444700096414238,11.98810361178191,12.210093492810316,12.306365365889505,12.082223019676789,13.148768783954282,11.753297636994589,11.913705840545504,12.18850276213665,113.10971037493432,113.10971037493432,0.0,125.67745597214925,0.0,113.10971037493432,125.67745597214925,0,0
+2017/07/30 00:00:00,49.60935559598817,0,471.3350591742105,0,0,0,0.2759121072245516,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,6.31204629696839,2.638293138112792e-09,11.835763124356866,0,0,0.0,418.0995304053943,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1096.5206966388985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025094227671455534,0.0007939638714052334,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9783089634807686,0.9783089634807686,0.9901742460592607,0.9901742460592607,0.9784946294649072,0.9784946294649072,0.9649539423785524,0.9649539423785524,0.995265712549285,0.995265712549285,0.7759774757223964,0.8681808174175063,0.7407291015871285,0.7462115008512477,0.7881007395892807,0.7419782957472718,0.8391785474782374,0.7159722704581242,0.7161268042051125,0.7718035308598065,25.21530655835548,25.21530655835548,25.707763928169584,25.707763928169584,25.22297072098597,25.22297072098597,24.667523376269628,24.667523376269628,25.920734311309616,25.920734311309616,17.68830022491835,20.90985297291502,16.55185482135181,16.725121490990006,18.09141783875694,16.59122115795283,19.85810163702962,15.785514750948835,15.790216504572498,17.55095753684496,49.60935559598817,49.60935559598817,0.0,55.12150621776463,0.0,49.60935559598817,55.12150621776463,0,0
+2017/07/30 01:00:00,23.722079519900145,0,47.97930946643755,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249840962223555,0,0,0.0,12.48895695389341,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0025544539745875187,8.082114315464621e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0299002857212636,1.0299002857212636,1.06565073542515,1.06565073542515,1.0206797215444428,1.0206797215444428,1.0040062423117635,1.0040062423117635,1.0848697349965033,1.0848697349965033,0.7668983186213141,0.8839461731499603,0.7243060617242739,0.7262833447805019,0.845757588943536,0.7418723266178401,0.8699690134469585,0.7096797413365429,0.7049059828242782,0.8183733053025524,27.395432008823477,27.395432008823477,28.96402713745428,28.96402713745428,26.998448633645737,26.998448633645737,26.28864048583182,26.28864048583182,29.82615770253676,29.82615770253676,17.39050201544515,21.496165550265076,16.040541497465043,16.101488140377654,20.093620627934982,16.587879113223423,20.97584150182577,15.594936034531514,15.451494398835294,19.125226091724514,23.722079519900145,23.722079519900145,0.0,26.357866133222384,0.0,23.722079519900145,26.357866133222384,0,0
+2017/07/30 02:00:00,28.344411567500146,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250484810272508,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0702832147614756,1.0702832147614756,1.1101936209670318,1.1101936209670318,1.0575348657929162,1.0575348657929162,1.0404017448552045,1.0404017448552045,1.147501011781245,1.147501011781245,0.7864259624802873,0.9059106872586624,0.7421079430839185,0.7443231901169141,0.8693081211271585,0.7573550185570707,0.8898829973479564,0.7230667633162987,0.7177306654139399,0.837922774331357,29.17064327853889,29.17064327853889,30.981664152054265,30.981664152054265,28.603885756552017,28.603885756552017,27.85138202019803,27.85138202019803,32.72295437461378,32.72295437461378,18.035356943961347,22.329980790680054,16.595310619037406,16.665297476097393,20.95143769477025,17.081272441551505,21.719598889417924,16.002427828466963,15.839075392848386,19.813352322147963,28.344411567500146,28.344411567500146,0.0,31.493790630555715,0.0,28.344411567500146,31.493790630555715,0,0
+2017/07/30 03:00:00,23.722210191274787,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525114767596993,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0561459423063813,1.0561459423063813,1.0976870836749872,1.0976870836749872,1.0416786515627203,1.0416786515627203,1.0251970042743288,1.0251970042743288,1.14256985688418,1.14256985688418,0.7890302769206244,0.9089929910995822,0.7439276289359552,0.7451181602507791,0.8900728300792075,0.7576269791036924,0.8953329073429613,0.7224515737060409,0.7160721940599808,0.8544354020346155,28.54248832094602,28.54248832094602,30.408265323585525,30.408265323585525,27.907097849935838,27.907097849935838,27.1925426153512,27.1925426153512,32.49020686891426,32.49020686891426,18.122584234532226,22.448559675769616,16.6527849770808,16.69046447914438,21.726767050444792,17.09003084060417,21.925974607923195,15.983532693399894,15.788554850618212,20.40702926413546,23.722210191274787,23.722210191274787,0.0,26.35801132363865,0.0,23.722210191274787,26.35801132363865,0,0
+2017/07/30 04:00:00,52.33830397710464,0,88.72588128136032,0,0,0,2.557846510804817,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,12.191470245882613,0.0,0.5250888083541247,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,601.6827226697354,0.0,0.0,0.0,0.0,0.0,8196.56918688575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.021784975464643,1.021784975464643,1.033630286989512,1.033630286989512,1.0176725798880237,1.0176725798880237,1.001750245766615,1.001750245766615,1.0496509371598919,1.0496509371598919,0.6227781152133463,0.6832603740037803,0.6009449887399854,0.6005957308779513,0.6089760272647995,0.5993072333017023,0.6676659901493285,0.5826813135729583,0.5786011700407865,0.6524590587013066,27.045867989699076,27.045867989699076,27.556916649375736,27.556916649375736,26.86966177716404,26.86966177716404,26.19340379965429,26.19340379965429,28.256297061678893,28.256297061678893,13.138064578418266,14.81343271895959,12.57225573705152,12.56337278478307,12.777976021335107,12.530647197469449,14.366301380853656,12.114841024770229,12.014631735118897,13.940420370261918,52.33830397710464,52.33830397710464,0.0,58.15367108567182,0.0,52.33830397710464,58.15367108567182,0,0
+2017/07/30 05:00:00,99.42257876874666,0,212.9421150752648,0,0,0,11.982982565075266,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,14.997770547624052,0.0,0.5778184668475965,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1738.9504633029428,0.0,0.0,0.0,0.0,0.0,19481.11667860749,0.0,0.0,0.0,0.0,18968.09094137949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0459026070237876,1.0459026070237876,1.0491622605494633,1.0491622605494633,1.044490068682681,1.044490068682681,1.036441313954465,1.036441313954465,1.0617313611697745,1.0617313611697745,0.5903644379407138,0.6296586422392747,0.575982434785758,0.5741241060221117,0.510991602602737,0.5664041284796333,0.6073981678052248,0.55678143335803,0.5521074269722248,0.5451029554988771,28.091826660824424,28.091826660824424,28.23482592004123,28.23482592004123,28.029979050651832,28.029979050651832,27.678953748056088,27.678953748056088,28.789811665202038,28.789811665202038,12.305501316745506,13.320661241627832,11.950695563231733,11.905505130093246,10.459196128289264,11.719376337441403,12.737337163049446,11.49099215362935,11.381508494771609,11.219209171485389,99.42257876874666,99.42257876874666,0.0,110.46953196527406,0.0,99.42257876874666,110.46953196527406,0,0
+2017/07/30 06:00:00,116.50989106900235,0,629.4993688734652,0,0,0,0.5105071360545825,0.0,8.13363995751737,0.0,80.56906512710079,0,26.771855239399947,2.522614739423842e-09,0.5248236064070706,0,0,0.0,398.8120775419284,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2104.150897675232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03351501267320248,0.0010603916390891604,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0381667296738484,1.0381667296738484,1.0396558573893215,1.0396558573893215,1.0373383516833121,1.0373383516833121,1.0510632670253686,1.0510632670253686,1.052410546446729,1.052410546446729,0.5622616379489416,0.5945270118369776,0.5497700398411371,0.5479130537614472,0.5415102631108824,0.5406947662685933,0.5727074790797743,0.5324155324921481,0.5282318837769042,0.5476673132495172,27.754003938560643,27.754003938560643,27.818863919621293,27.818863919621293,27.717958479137266,27.717958479137266,28.31839956841017,28.31839956841017,28.3777088026075,28.3777088026075,11.620566577681103,12.409867450912785,11.327112907738865,11.284066007045539,11.136788562944332,11.118157985895877,11.871156544937094,10.930644269982665,10.837019255393287,11.278380680519476,116.50989106900235,116.50989106900235,0.0,129.45543452111372,0.0,116.50989106900235,129.45543452111372,0,0
+2017/07/30 07:00:00,116.25589855738708,0,648.2402137293179,0,0,0,0.6924809994531546,0.0,6.323376674710363,0.0,69.33401494192633,0,39.380909295966944,2.5226159125949015e-09,0.5251166428076857,0,0,0.0,382.06256988523705,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2872.3002540826114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0345127891347968,0.0010919605908264382,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8950954542565285,0.8950954542565285,0.8656624028652424,0.8656624028652424,0.9426954104447194,0.9426954104447194,1.049136674655806,1.049136674655806,1.0487577466410316,1.0487577466410316,0.596218913366028,0.6273269159034783,0.6174371356060491,0.5319286754740788,0.7293144949757241,0.5626701145472608,0.5925209293582594,0.5965730333278946,0.49684186170452466,0.7219977937189651,21.91695756667511,21.91695756667511,20.81714153501163,20.81714153501163,23.77003563714618,23.77003563714618,28.23370198231352,28.23370198231352,28.217059196280758,28.217059196280758,12.452502593237327,13.258551364977038,12.997740908943896,10.91971002830833,16.195245068593096,11.630276788932377,12.359476073268198,12.461441976416978,10.158707384542396,15.969605585021228,116.25589855738708,116.25589855738708,0.0,129.17322061931898,0.0,116.25589855738708,129.17322061931898,0,0
+2017/07/30 08:00:00,153.320563500886,0,707.5070509439073,0,0,0,7.0254172811535645,0.0,9.472049877576204,0.0,96.91714705112861,0,39.380909295966944,2.5226159127396696e-09,0.5250399925380984,0,0,0.0,388.09387833101005,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704.3281101047273,0.0,940.2229470897419,6637.120921599063,17022.196162368906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03766819944744297,0.0011917955736161373,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.066302472742705,1.066302472742705,0.9894271057290006,0.9894271057290006,1.050722392360999,1.050722392360999,1.236933130113965,1.236933130113965,1.0956733710517699,1.0956733710517699,0.7860546752946643,0.7700813302548206,0.7668658120010378,0.8859290092724883,0.9097874246176222,0.7743967885729756,0.7463270016980595,0.7646584721637026,0.8980693089227386,0.9096916838771875,28.993049710208226,28.993049710208226,25.67659519054355,25.67659519054355,28.303404143247676,28.303404143247676,37.07154973341366,37.07154973341366,30.3164375829666,30.3164375829666,18.022944740386237,17.494505329760045,17.38944210791223,21.57062952657141,22.47918450777381,17.63620075206714,16.728785661319407,17.31757533631584,22.03005235519059,22.475492420157252,153.320563500886,153.320563500886,0.0,170.35618166765113,0.0,153.320563500886,170.35618166765113,0,0
+2017/07/30 09:00:00,186.9367424495043,0,775.8001839458166,0,0,0,40.63040750649095,0.0,9.332689672910613,0.0,97.06762091869685,0,39.380909295966944,2.5226159127396874e-09,0.5251150529164577,0,0,0.0,403.1514825641032,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5246.528867213279,2282.8025424585594,4461.725036616304,7559.435255524491,34412.36826382378,5921.538139853789,3662.2406714616636,4525.627150994283,4446.85512902809,26246.326120703266,6065.323692191094,3647.337893601275,4548.955351498317,4825.097229262764,27082.135100155356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04130417643364353,0.0013068353509744926,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1079611275522483,1.1079611275522483,1.0420686635347578,1.0420686635347578,1.071492339436559,1.071492339436559,1.184633388562315,1.184633388562315,1.090521775186114,1.090521775186114,0.7011338989894218,0.6849225124548042,0.6618483527871738,0.7792014568370148,0.7461552424372775,0.7123160965396906,0.682233454048827,0.6742300240949692,0.8092365740845796,0.7519498830449451,30.878921376787247,30.878921376787247,27.924127267437328,27.924127267437328,29.224697129560838,29.224697129560838,34.49992523558211,34.49992523558211,30.082151195638858,30.082151195638858,15.338846389248076,14.861710999172047,14.202191033371236,17.794892499601957,16.723336945709235,15.674574298284398,14.783664631605347,14.553226566199498,18.80912738736791,16.90785827911715,186.9367424495043,186.9367424495043,0.0,207.7074916105603,0.0,186.9367424495043,207.7074916105603,0,0
+2017/07/30 10:00:00,265.1945517054346,0,926.2847231367443,0,0,0,64.73216183253791,0.0,12.984000736477544,0.0,124.87761316689259,0,39.380909295966944,2.9110795808581453e-09,23.219866670648557,0,0,0.0,464.91014047367065,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9512.128786459034,4167.736545164715,7179.264502554234,8723.962031724206,48207.43881658911,10243.261512778286,5603.492033983277,7619.845501027134,7266.320171442736,46768.26376337992,10751.586711575674,5687.326307706255,7927.342817244301,7825.53740110665,47760.060857081364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049316084765069934,0.0015603265458200277,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1649560585584777,1.1649560585584777,1.068200165218979,1.068200165218979,1.0818432838161502,1.0818432838161502,1.229075606162157,1.229075606162157,1.1062171183117222,1.1062171183117222,0.6573878672738948,0.6190764791175969,0.583594943995781,0.7192934159755467,0.6104991603194274,0.682141132664457,0.6252176944707749,0.597447266951503,0.754533117320765,0.6184723475473289,33.552980607671586,33.552980607671586,29.077641827806573,29.077641827806573,29.689538263841982,29.689538263841982,36.680327618432386,36.680327618432386,30.798776126317705,30.798776126317705,14.077357717761046,13.040679748944498,12.137378991492696,15.8867884837927,12.817307858869427,14.780990677913863,13.202571528206889,12.483534381130667,16.990580782963633,13.024842339208334,265.1945517054346,265.1945517054346,0.0,294.66061300603843,0.0,265.1945517054346,294.66061300603843,0,0
+2017/07/30 11:00:00,297.9085821269974,0,979.8959555111187,0,0,0,75.75368313946343,0.0,12.984000736477544,0.0,143.25325374857618,0,39.380909295966944,2.9110795808581445e-09,23.10476000114789,0,0,0.0,465.28584407922875,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12302.869611054412,5762.798873846995,9264.956754348565,8616.768966730564,59250.78675393174,11724.49225714203,6537.540245178179,8868.800920755339,7732.071089391718,53759.20416095851,12295.512324861373,6648.2975138403435,9177.919314231012,8190.65238102864,54843.12871315926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05217038648687885,0.0016506346626856377,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1757153123248847,1.1757153123248847,1.0811039195262135,1.0811039195262135,1.0908436023124621,1.0908436023124621,1.190433202750815,1.190433202750815,1.1203922023087551,1.1203922023087551,0.6359118805132439,0.5917092688655796,0.554504216830225,0.6602479782734161,0.5584575094650963,0.6608447089826904,0.6012842626216978,0.5685062539145977,0.6879994900624894,0.5672693038360175,34.0693029095134,34.0693029095134,29.65621048490793,29.65621048490793,30.096760663147478,30.096760663147478,34.78124936418614,34.78124936418614,31.45313852685048,31.45313852685048,13.48839240262808,12.339137362190598,11.437532447055588,14.157303016971355,11.53048319691662,14.17402741221646,12.5808898281295,11.769802476696825,14.951399782061799,11.740107099623614,297.9085821269974,297.9085821269974,0.0,331.00953569666376,0.0,297.9085821269974,331.00953569666376,0,0
+2017/07/30 12:00:00,286.10398530481143,0,936.4113044317465,0,0,0,86.93606071111672,0.0,12.935301236479537,0.0,124.80122689546741,0,39.380909295966944,2.804742048613381e-09,18.61851196052185,0,0,0.0,457.2915455124007,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15812.314680061429,7075.746549817824,11118.095772746872,8213.150953550921,68388.28232447508,14246.006954467137,7700.099926208144,10700.121401825094,8336.850013852256,62012.6416903897,14940.003730060847,7869.702179988728,11101.355788210269,8716.421302089117,63631.784209151854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04985523145404212,0.0015773847712428645,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2460266361876025,1.2460266361876025,1.1178018268492074,1.1178018268492074,1.1223761193374726,1.1223761193374726,1.1689906298156716,1.1689906298156716,1.1401094826200515,1.1401094826200515,0.673005566876833,0.6065926707564976,0.5706266302311712,0.6498316400042976,0.5590389534990049,0.7053062307586446,0.621282636544069,0.5891100566780738,0.6743342304394322,0.57387213011226,37.52635906839758,37.52635906839758,31.333058966985618,31.333058966985618,31.545255248006285,31.545255248006285,33.746179847543246,33.746179847543246,32.37436922253127,32.37436922253127,14.51821595950156,12.716632691491853,11.820860607500691,13.867852912391754,11.544211410337681,15.463483273487498,13.098649057565552,12.274198287875919,14.5562091091235,11.89938916989773,286.10398530481143,286.10398530481143,0.0,317.89331700534603,0.0,286.10398530481143,317.89331700534603,0,0
+2017/07/30 13:00:00,284.7907300393299,0,901.4315326891755,0,0,0,85.72299243552997,0.0,12.88660173648153,0.0,124.7641830973959,0,39.380909295966944,2.8047420486133816e-09,18.604068268696512,0,0,0.0,457.80212628237393,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15405.981870622367,7244.3485363722,10698.263620691738,7793.359473084132,64239.21854626668,14489.03531838589,8092.55964928697,10801.997948408061,8120.221744396091,60972.945601026244,15224.432994968802,8347.322794991343,11258.603114963818,8466.266910800648,63030.24380636812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047992882496717515,0.0015184613483974231,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2408836697542787,1.2408836697542787,1.144390140661989,1.144390140661989,1.1233528239730604,1.1233528239730604,1.1580364765147855,1.1580364765147855,1.1351930606920004,1.1351930606920004,0.6780407568335671,0.6288782177641514,0.5758698517593924,0.6418223762302661,0.5550736749163873,0.7097909100927138,0.6515046090271472,0.5957599741118415,0.6645381467751402,0.5720186861727374,37.26886750138735,37.26886750138735,32.576032898873336,32.576032898873336,31.590653067741997,31.590653067741997,33.22279993908664,33.22279993908664,32.143480771963425,32.143480771963425,14.662601120267212,13.299846917620528,11.947953530206803,13.64848941754667,11.450879905629037,15.59828813720604,13.914024532922596,12.440925255440632,14.277885518178962,11.854487019576808,284.7907300393299,284.7907300393299,0.0,316.43414448814434,0.0,284.7907300393299,316.43414448814434,0,0
+2017/07/30 14:00:00,259.7853298778061,0,833.2317642623681,0,0,0,78.9904849186802,0.0,12.88660173648153,0.0,111.01081017850728,0,39.380909295966944,2.6947199305809842e-09,14.08454854302117,0,0,0.0,425.0927103681106,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13912.946086632159,7856.87424897255,10725.570217681221,7432.888105419753,62851.32991312835,12388.023469265827,7966.625643574482,9616.584990429634,7481.697250254298,53130.470876799605,12920.64116287359,8268.12544619106,10017.36742464939,7767.65648766508,54980.13219697722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044361876309651146,0.0014035788436587405,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1967770948730687,1.1967770948730687,1.1817341266155108,1.1817341266155108,1.1275149139292284,1.1275149139292284,1.1525902320969166,1.1525902320969166,1.1297683309994648,1.1297683309994648,0.64648074926776,0.6520416042566216,0.5744478822145341,0.6383591979933552,0.544082228085423,0.6664339857825919,0.6733851636470182,0.5894949498781805,0.6555129174791752,0.556663254452377,35.09009669365176,35.09009669365176,34.35966876176404,34.35966876176404,31.784461275003665,31.784461275003665,32.963971692884414,32.963971692884414,31.88962880312829,31.88962880312829,13.775737888654717,13.928870576613278,11.913367870780291,13.554498847996797,11.195735597651208,14.331425298310364,14.529062736781057,12.283796018882626,14.025141814500685,11.488212266053566,259.7853298778061,259.7853298778061,0.0,288.6503665308956,0.0,259.7853298778061,288.6503665308956,0,0
+2017/07/30 15:00:00,245.7783910006921,0,833.2232933266856,0,0,0,67.22628862524044,0.0,12.935301171685163,0.0,108.75639138185811,0,39.380909295966944,2.6947199305809842e-09,14.047525320792419,0,0,0.0,425.084239432428,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10465.129194076628,7104.864635090921,8613.024506915912,6787.950140670572,52467.55388590788,10216.994669067928,7366.077929973301,8050.009222009612,6229.643689569581,45560.50286898796,10523.751375578111,7699.54447125156,8349.248316232017,6454.466496277157,46933.3701100908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04436142531076093,0.0014035645743682263,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1522354907372723,1.1522354907372723,1.2000915291794882,1.2000915291794882,1.102701397258599,1.102701397258599,1.1328910861483792,1.1328910861483792,1.1184807159760795,1.1184807159760795,0.6077271105297832,0.6588957602539502,0.5517208233425452,0.610484403133507,0.5303325564578166,0.6169300404865327,0.6797220482209674,0.5601220259566067,0.6207034532753943,0.5401743952669117,32.947145199173164,32.947145199173164,35.251923051328035,35.251923051328035,30.637524888278534,30.637524888278534,32.03564235199458,32.03564235199458,31.364508066818885,31.364508066818885,12.745800394696758,14.119461892563791,11.372495122879954,12.816926301289413,10.883935041130485,12.984482333859646,14.711056830695028,11.569822434459056,13.083409909216442,11.106284817673128,245.7783910006921,245.7783910006921,0.0,273.0871011118801,0.0,245.7783910006921,273.0871011118801,0,0
+2017/07/30 16:00:00,267.1662889207856,0,886.4502564843825,0,0,0,74.28347374249782,0.0,11.08681950462398,0.0,124.87761316689259,0,39.380909295966944,2.6947199305809842e-09,14.10549800565524,0,0,0.0,425.0756738213088,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11607.160653038767,10032.822008771796,10264.190016803634,7263.6282269301655,62447.24860839486,10211.886009200181,8857.658039820317,8628.178248763279,6630.968604897888,48843.588985478775,10366.57050982332,9256.757113914053,8860.909595354751,6800.846232090442,50307.190150008086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04719526825484317,0.0014932253897675088,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1561869376065226,1.1561869376065226,1.2927836329461886,1.2927836329461886,1.124398107829537,1.124398107829537,1.1451173960585894,1.1451173960585894,1.142510858606917,1.142510858606917,0.5916393355762515,0.706966928808906,0.5529167956735722,0.6096813614264118,0.5278780935895272,0.5992020579325164,0.7357626367113781,0.5614501898196708,0.6192117988942721,0.5390456846996966,33.134797969632885,33.134797969632885,39.8977896760508,39.8977896760508,31.6392733046238,31.6392733046238,32.610352418165334,32.610352418165334,32.48742688337964,32.48742688337964,12.337386301109433,15.5133010175947,11.400399296829292,12.796177335572594,10.829136611873508,12.527979107722985,16.396007142406646,11.601298485631503,13.044229350574298,11.08057164702845,267.1662889207856,267.1662889207856,0.0,296.85143213420616,0.0,267.1662889207856,296.85143213420616,0,0
+2017/07/30 17:00:00,278.59057529808115,0,902.2414015780381,0,0,0,76.69995340241083,0.0,11.08681950462398,0.0,129.38645076019097,0,39.380909295966944,2.804742048613382e-09,18.604467129629384,0,0,0.0,440.86681891496437,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11361.95847289534,10575.005720062045,10968.63858639948,7265.979191841249,64695.93762207505,10366.087961718309,9395.15230374732,9438.570975925368,6729.245946173655,52143.263512855985,10449.097753502041,9816.966670100142,9697.099277213261,6868.200618818464,53486.1602645533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04803600051623585,0.0015198255724792442,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1662657253045807,1.1662657253045807,1.3014626918883787,1.3014626918883787,1.157833651166423,1.157833651166423,1.145328828032731,1.145328828032731,1.162749892453993,1.162749892453993,0.5894150322226871,0.7190115599122914,0.5709448077158064,0.610904930446472,0.535739023724533,0.5907606578881004,0.7437411955114903,0.5791242311417979,0.616219135547468,0.5462527432351706,33.615640407864134,33.615640407864134,40.343686115333874,40.343686115333874,33.213144194736486,33.213144194736486,32.62033315371578,32.62033315371578,33.44754821395301,33.44754821395301,12.281802656266493,15.87817522679454,11.828539070644155,12.827803038109636,11.005560240093573,12.315403159178715,16.646889990687,12.027437873531298,12.965913709107099,11.245704809823124,278.59057529808115,278.59057529808115,0.0,309.5450836645346,0.0,278.59057529808115,309.5450836645346,0,0
+2017/07/30 18:00:00,276.5488796661765,0,906.8622458131439,0,0,0,83.72794284251023,0.0,11.198411588569618,0.0,115.6330778413024,0,39.380909295966944,2.911079580858145e-09,23.17656289246184,0,0,0.0,480.97801566261427,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11247.896649930592,11133.903875122283,12042.990558482637,7090.584597757439,66982.9248219059,11432.258837401341,10490.909886888925,11425.900365644628,7365.610566793109,60694.84673868511,11398.72343055603,10839.785630444352,11690.114147384264,7427.334302685765,61946.785404987844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048282017686003,0.0015276093842425636,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.163180586561858,1.163180586561858,1.3180031203369291,1.3180031203369291,1.1894403947136,1.1894403947136,1.1341107521638136,1.1341107521638136,1.1703151454243113,1.1703151454243113,0.5935095034821944,0.7378840612239318,0.6008101025421911,0.6129410475436706,0.5522325763785119,0.590716939178628,0.7589134869943177,0.6095818944711844,0.6135217504940685,0.5619677168416689,33.468119218475465,33.468119218475465,41.19806864431957,41.19806864431957,34.73302202233789,34.73302202233789,32.092757492252204,32.092757492252204,33.809714308967614,33.809714308967614,12.384286530883173,16.462447899153048,12.568824441886548,12.880574771591526,11.384427646948978,12.314310260467138,17.131505270083906,12.793609259615337,12.895658305815914,11.613584029787233,276.5488796661765,276.5488796661765,0.0,307.27653296241834,0.0,276.5488796661765,307.27653296241834,0,0
+2017/07/30 19:00:00,262.50769789799426,0,855.2926373833345,0,0,0,83.83697914472316,0.0,11.98533590578405,0.0,104.13412371906301,0,39.380909295966944,2.9110795808581445e-09,23.17034982954603,0,0,0.0,464.89875974534914,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9123.202103147869,6694.881804159001,10490.504767078728,6573.551457969024,59653.64749169876,12384.77749219805,10648.579299983054,12452.670147415565,7477.146479651386,69324.09743591631,12334.486889993757,10955.891077775603,12801.613459396176,7524.049613195434,70329.9268093869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04553641353524719,0.0014407403827566168,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1531255692918485,1.1531255692918485,1.18613815257326,1.18613815257326,1.1736133548950218,1.1736133548950218,1.120976296172068,1.120976296172068,1.1688639442082778,1.1688639442082778,0.6285903913752952,0.7321871705406289,0.6285744085483036,0.6359773187284488,0.5947451668031905,0.6237837140037269,0.7418163993300615,0.6339932158490518,0.6345456087588455,0.6012505162806653,32.98937191095507,32.98937191095507,34.57281924045435,34.57281924045435,33.96815553308038,33.96815553308038,31.4802455121324,31.4802455121324,33.74010579417572,33.74010579417572,13.292177109112828,16.284464776205354,13.29175131457697,13.490156626079184,12.415357879279227,13.164623169100693,16.58611547774352,13.436747500610622,13.451599950318027,12.580030802698587,262.50769789799426,262.50769789799426,0.0,291.6752198866603,0.0,262.50769789799426,291.6752198866603,0,0
+2017/07/30 20:00:00,259.05527949405285,0,812.6765698866185,0,0,0,76.37807876995294,0.0,16.265305283785256,0.0,108.41610117336799,0,39.380909295966944,2.804742048613381e-09,18.614884968174948,0,0,0.0,457.7730447611773,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7008.713757314626,4655.120468754429,7706.6068807654865,5983.958027806933,51821.66253665207,11431.186344308282,8887.0812762037,11040.929244603301,6613.613544761011,68156.84492821389,11287.907568528553,9053.930933338692,11356.640420940237,6542.497486973429,68658.90462819253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043267502535716734,0.0013689536202929034,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1532016928566187,1.1532016928566187,1.1818441568210203,1.1818441568210203,1.1395479042894125,1.1395479042894125,1.1065055598470257,1.1065055598470257,1.1708059835369418,1.1708059835369418,0.6506853532914376,0.707056538653013,0.626017279428239,0.6538978458573358,0.62325092298609,0.6444025570404425,0.709359057792391,0.6281134409528656,0.6497681283333122,0.6270241195554286,32.99298448836642,32.99298448836642,34.36498707104448,34.36498707104448,32.3479566031901,32.3479566031901,30.812024263351077,30.812024263351077,33.833272476192136,33.833272476192136,13.891399053522036,15.515992523205924,13.223770211980508,13.980285456001567,13.150546307908698,13.718853574522953,15.585269359381854,13.279475560526762,13.86610246897628,13.250503125530102,259.05527949405285,259.05527949405285,0.0,287.8391994378365,0.0,259.05527949405285,287.8391994378365,0,0
+2017/07/30 21:00:00,235.4079649657365,0,784.3117291237436,0,0,0,52.12029942035598,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,2.911079580858145e-09,23.157672835237868,0,0,0.0,464.89855651084656,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4458.293588306503,2744.54971062237,5185.771809590216,5113.625389797649,38766.29872665127,7034.215841589832,5688.681895969708,6740.457375743558,3800.6345349407147,43903.13845207706,6720.2951679241405,5591.089946121435,6763.084544305591,3595.0214457025063,43897.18647516072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04175733740347461,0.0013211730481806952,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.134592275251318,1.134592275251318,1.1572395223243153,1.1572395223243153,1.1212700373390596,1.1212700373390596,1.0874817495357065,1.0874817495357065,1.1538823932104003,1.1538823932104003,0.6357169001028613,0.68333111169048,0.6132909534670572,0.6373061177387261,0.6135975969874216,0.6244826537072063,0.6750766711166958,0.6067346512082041,0.6278821349321517,0.6130288793067402,32.11531978268138,32.11531978268138,33.18486736580361,33.18486736580361,31.49388189468921,31.49388189468921,29.944324342633507,29.944324342633507,33.0252964155258,33.0252964155258,13.483136804712359,14.81548492354419,12.889661690031886,13.526021414347355,12.897629469676332,13.18310851963146,14.577472484861275,12.72028010835794,13.27331926110783,12.88285522824944,235.4079649657365,235.4079649657365,0.0,261.564405517485,0.0,235.4079649657365,261.564405517485,0,0
+2017/07/30 22:00:00,152.50936283919634,0,617.4793977401478,0,0,0,25.138965327423627,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,2.804742048613381e-09,18.57051263451548,0,0,0.0,457.7728114336992,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.539523504439025,0.0,946.2701788631759,3312.1023962225113,12720.054268939122,3404.914853767802,3130.406814744212,3365.372779585319,1440.4018475742755,24798.877147496652,2917.030999291364,2855.6528857073044,3191.308988566081,1099.33598848443,24345.649683387273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.032875060506791905,0.0010401439986273875,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0856804343045394,1.0856804343045394,1.0946403049711158,1.0946403049711158,1.0732529861184994,1.0732529861184994,1.038410479087817,1.038410479087817,1.0869840682276206,1.0869840682276206,0.6163962682201156,0.6581056531873777,0.5952635056384059,0.6165400351251606,0.5989322089961511,0.6012672457942367,0.6445375194891985,0.5848367458127163,0.6028468714621572,0.59482102219966,29.862808155620854,29.862808155620854,30.269382363772138,30.269382363772138,29.303498939176478,29.303498939176478,27.764615061613213,27.764615061613213,29.92179118724127,29.92179118724127,12.970538310049278,14.097387823618917,12.428411487477561,12.974292794617838,12.521135773486307,12.580456652396236,13.722542083059821,12.168070555515257,12.620720738626318,12.417267458538689,152.50936283919634,152.50936283919634,0.0,169.45484759910704,0.0,152.50936283919634,169.45484759910704,0,0
+2017/07/30 23:00:00,92.06182064199568,0,444.8411486742125,0,0,0,7.002773040738319,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.5809390587879748e-09,9.548066539838171,0,0,0.0,391.6056199053963,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1756.2209824099723,0.0,209.85424754686403,813.1119268285864,626.0939382320239,0.0,10028.367519784966,0.0,351.698944915464,268.65140053171666,0.0,9323.174777437842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0236836722522195,0.0007493348811788402,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8983345145746077,0.8983345145746077,0.8984937929782802,0.8984937929782802,0.9177581454207363,0.9177581454207363,0.9877609511044374,0.9877609511044374,0.9554561820528815,0.9554561820528815,0.6042859287532405,0.641328104651057,0.5847368411783225,0.5675212733274128,0.5925690460944725,0.5714339787228813,0.6238222034888867,0.5711728563639431,0.5282036042970011,0.5858412565353902,22.040155523469295,22.040155523469295,22.04622470456411,22.04622470456411,22.787859866254593,22.787859866254593,25.607164535679473,25.607164535679473,24.282182110529916,24.282182110529916,12.657496057074866,13.635043078203708,12.16559890247703,11.746150731486452,12.360682687407149,11.840352625389272,13.165640576103101,11.834045188783321,10.83638897346789,12.19294634642604,92.06182064199568,92.06182064199568,0.0,102.29091182443965,0.0,92.06182064199568,102.29091182443965,0,0
+2017/07/31 00:00:00,43.0709462180194,0,464.8227059743744,0,0,0,0.5395777314478738,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,3.140276911714922,2.580939058787976e-09,9.59377057585249,0,0,0.0,411.5871772055582,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,414.71401297437484,343.48778777344535,388.7129317359588,980.6142816260237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024747505163352827,0.0007829938129343886,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9632303613517288,0.9632303613517288,0.970656589679084,0.970656589679084,0.9656462134669839,0.9656462134669839,0.9575622593294244,0.9575622593294244,0.9792925699862141,0.9792925699862141,0.7670867096178245,0.8540663188281415,0.7268023098678645,0.7338256570475333,0.7791431660806999,0.7126737953168928,0.8107412736258776,0.6935059225484228,0.6743136160525507,0.7591247649364653,24.597332570582694,24.597332570582694,24.900582010160207,24.900582010160207,24.69574792267106,24.69574792267106,24.367324641165382,24.367324641165382,25.255924297203435,25.255924297203435,17.396645561046554,20.393635690444043,16.117512287419444,16.33551180273176,17.792961344955913,15.685402643711086,18.860942663178065,15.11292457934563,14.555619056953873,17.138323211857156,43.0709462180194,43.0709462180194,0.0,47.85660690891044,0.0,43.0709462180194,47.85660690891044,0,0
+2017/07/31 01:00:00,23.74825615840934,0,41.662452745452185,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5511607347315453,0,0,0.0,6.172100232908045,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0022181398438243724,7.018039848758766e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0171520442432154,1.0171520442432154,1.0445155878199914,1.0445155878199914,1.0064617270524159,1.0064617270524159,1.00165411955912,1.00165411955912,1.072230221105668,1.072230221105668,0.7683487048781333,0.8814026536085973,0.71879826572076,0.7368533957507206,0.8317942303132461,0.7151634773286552,0.8405277803296364,0.6853735903162005,0.6809523936143619,0.8010460719510774,26.847403043812307,26.847403043812307,28.031095756202973,28.031095756202973,26.39251715598685,26.39251715598685,26.18935011908964,26.18935011908964,29.257709431191543,29.257709431191543,17.43783905363911,21.400881355844376,15.871659430231162,16.43014441807449,19.595908516052617,15.760923666338854,19.906254773945136,14.87483356364983,14.74659352570849,18.52875886663952,23.74825615840934,23.74825615840934,0.0,26.386951287121487,0.0,23.74825615840934,26.386951287121487,0,0
+2017/07/31 02:00:00,28.344201800831005,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248387143581104,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0613533628513276,1.0613533628513276,1.096598994102957,1.096598994102957,1.04580437411123,1.04580437411123,1.046232050279024,1.046232050279024,1.1618624788314011,1.1618624788314011,0.771131573916123,0.8868966049496886,0.7192470233441988,0.739407440472175,0.8534647631153534,0.7123188261398329,0.842806991911069,0.6791340760664424,0.6788123385445268,0.8163877213178727,28.773038643912187,28.773038643912187,30.358629901990412,30.358629901990412,28.08752321494974,28.08752321494974,28.10626166370237,28.10626166370237,33.405181267446906,33.405181267446906,17.5289163389981,21.607025311148448,15.885370533288551,16.510277703720163,20.371818098951877,15.67465690853058,19.98777076644619,14.694097255266726,14.68482333104798,19.056232811644065,28.344201800831005,28.344201800831005,0.0,31.493557556478894,0.0,28.344201800831005,31.493557556478894,0,0
+2017/07/31 03:00:00,23.722048566991923,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249531433141325,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0119600175213264,1.0119600175213264,1.0475155212956084,1.0475155212956084,0.9952023134372655,0.9952023134372655,0.9884658143054356,0.9884658143054356,1.120743328061524,1.120743328061524,0.7517609512174502,0.8679617944689593,0.699310242669976,0.7199262100457677,0.8678666466209489,0.6907218282001156,0.8218513458174768,0.6561378814419752,0.6576755691644963,0.8208978648716765,26.62594036205961,26.62594036205961,28.162536229400658,28.162536229400658,25.918076318643344,25.918076318643344,25.636524054332554,25.636524054332554,31.46943243290164,31.46943243290164,16.90181935585464,20.90177959402942,15.28460566432193,15.906138538228987,20.898272977389524,15.031092641345182,19.246477599938075,14.042529651290096,14.085383474375405,19.213186725704688,23.722048566991923,23.722048566991923,0.0,26.357831741102135,0.0,23.722048566991923,26.357831741102135,0,0
+2017/07/31 04:00:00,49.47330954623621,0,88.72588128136032,0,0,0,0.09072832876201939,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,9.349353897394009,0.0,0.525093770446086,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,360.8163352955924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0084502043951789,1.0084502043951789,1.0152323771591674,1.0152323771591674,1.0064560057361933,1.0064560057361933,0.986472825493194,0.986472825493194,1.0373593344828738,1.0373593344828738,0.5848595099293445,0.6372422301677938,0.5620643877936463,0.5711536114254667,0.6326130544897669,0.551467780225792,0.6073497435780291,0.537208235284568,0.5382173736442525,0.6141419473590375,26.476804225045782,26.476804225045782,26.765403271362942,26.765403271362942,26.39227485731064,26.39227485731064,25.553559704302387,25.553559704302387,27.718871199867863,27.718871199867863,12.16863380317099,13.524295311988737,11.615880183430832,11.833580442411247,13.39969630133487,11.366599121849973,12.736091672635084,11.03883074462297,11.061736995729348,12.911783840841395,49.47330954623621,49.47330954623621,0.0,54.97034394026245,0.0,49.47330954623621,54.97034394026245,0,0
+2017/07/31 05:00:00,78.00841910566453,0,212.9421150752648,0,0,0,0.36436172780925696,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,4.332870381348589,0.0,0.5251439665507892,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1486.003762536268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.03689485813925,1.03689485813925,1.034401052876792,1.034401052876792,1.0382693204917852,1.0382693204917852,1.0315041144327506,1.0315041144327506,1.0493922289063495,1.0493922289063495,0.7380042467516377,0.8184182547141402,0.7010878697063808,0.7135527969623133,0.8358254263005257,0.6767796351770661,0.7594174897031857,0.6563696271484336,0.656360815452343,0.8043926026895978,27.698670938496193,27.698670938496193,27.590349586233145,27.590349586233145,27.758469751240526,27.758469751240526,27.464804500845744,27.464804500845744,28.24492903811425,28.24492903811425,16.466217765537635,19.126789873799936,15.337475581438227,15.712035423711768,19.738760541297793,14.626335199802199,17.147772597413407,14.048981615463944,14.048736249055352,18.64297125462666,78.00841910566453,78.00841910566453,0.0,86.67602122851615,0.0,78.00841910566453,86.67602122851615,0,0
+2017/07/31 06:00:00,88.93422550080975,0,629.4118017298583,0,0,0,0.4736966049909399,0.0,9.400244987969673,0.0,73.80580873715317,0,4.729244737811522,2.5226247920436806e-09,0.5252304303618092,0,0,0.0,398.72451039832146,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1961.71433600558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03351035053361528,0.0010602441322424007,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.060241764140487,1.060241764140487,1.0566243784413702,1.0566243784413702,1.0634338861633643,1.0634338861633643,1.0655284939875882,1.0655284939875882,1.0667158199180973,1.0667158199180973,0.865685864219933,0.9631211898341605,0.8296359104301023,0.9898536752783581,1.078198783090621,0.8083028517429585,0.9119821911420696,0.7886040673093974,0.9621502195552243,1.0292611979491335,28.72374293003874,28.72374293003874,28.563629802290805,28.563629802290805,28.865421414338414,28.865421414338414,28.95858527277686,28.95858527277686,29.01146432267811,29.01146432267811,20.818004018815216,24.592890594467192,19.51970459053169,25.694387939323832,29.52544254359313,18.77702210603178,22.563923694343686,18.108289327267386,24.553404191849438,27.367815146803864,88.93422550080975,88.93422550080975,0.0,98.81580611201082,0.0,88.93422550080975,98.81580611201082,0,0
+2017/07/31 07:00:00,149.7086320093428,0,758.7728235121547,0,0,0,5.937780126907432,0.0,7.959608335355814,0.0,69.33401494192633,0,39.380909295966944,3.013817607390988e-09,27.096319306172504,0,0,0.0,492.5951796680736,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5763.289315762111,0.0,0.0,0.0,0.0,0.0,8402.819148706403,0.0,0.0,0.0,0.0,6779.661758562194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.040397627151875976,0.0012781527636163438,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8055777219853804,0.8055777219853804,0.753689230231908,0.753689230231908,0.8490467497289608,0.8490467497289608,1.2654970874648193,1.2654970874648193,0.9710955299595284,0.9710955299595284,0.5501825019791857,0.5931743003373757,0.5495546063432211,0.7917767234451092,0.7184932776287846,0.5272583499907926,0.5742459466939372,0.5342629668986046,0.8188747207174557,0.7087246996698583,18.683531214486962,18.683531214486962,16.96352570542119,16.96352570542119,20.212043629675748,20.212043629675748,38.50734161996662,38.50734161996662,24.918573257383855,24.918573257383855,11.336694503110337,12.375869112891479,11.322111267127525,18.214883887990084,15.862345935102098,10.815341438218411,11.908463435319419,10.9722288774081,19.14267505994971,15.566160349061974,149.7086320093428,149.7086320093428,0.0,166.34292445482535,0.0,149.7086320093428,166.34292445482535,0,0
+2017/07/31 08:00:00,196.0651577370992,0,809.4124584202209,0,0,0,36.43815860997089,0.0,11.435487997441953,0.0,83.2008179303116,0,39.380909295966944,2.962900644748478e-09,25.609783900444928,0,0,0.0,489.99928580732376,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132.42993498078957,0.0,226.12653801989583,8419.64799766781,14890.068601985888,4722.01799624692,2769.0481183112774,3957.549783065345,6326.995522867747,37395.17379944196,4048.932746716716,2196.150090210058,3545.001567072806,6612.710372609241,36284.75151876331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04309371882349659,0.0013634552247754983,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0058973963765356,1.0058973963765356,0.8929622394286744,0.8929622394286744,0.9958954272935814,0.9958954272935814,1.2405650853817203,1.2405650853817203,1.047946651871866,1.047946651871866,0.576202215730356,0.5783652710341438,0.5534044603753918,0.7418210066976025,0.6134670850772925,0.5620754354550543,0.5593771077986525,0.5427463929681965,0.766730194562095,0.6121084690866265,26.368623604970296,26.368623604970296,21.836053927284937,21.836053927284937,25.947143260936855,25.947143260936855,37.25293985627303,37.25293985627303,28.181452807637555,28.181452807637555,11.956050056102981,12.008860088823852,11.411795183747358,16.586260763408745,12.894237768793886,11.616142616168489,11.552202161562832,11.165083728646891,17.385020666152528,12.85897440191927,196.0651577370992,196.0651577370992,0.0,217.85017526344356,0.0,196.0651577370992,217.85017526344356,0,0
+2017/07/31 09:00:00,237.83311649603772,0,834.0408595565965,0,0,0,60.02333763539791,0.0,11.287802377079139,0.0,106.27511244621549,0,39.380909295966944,2.8583774259943276e-09,20.86595473851991,0,0,0.0,461.3921581748832,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5636.40853187215,2190.849157972458,4021.3093296391016,9265.049375555136,35349.20412204854,9065.222198756515,5115.230883561526,7017.668904741327,8950.220559035886,51850.98263392392,8928.154630784607,4883.69142265735,6897.046000935037,9476.39749000166,51571.640929510824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044404953142418144,0.001404941764620459,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.116807015251791,1.116807015251791,1.002408936614275,1.002408936614275,1.0559906865013482,1.0559906865013482,1.2581377564851708,1.2581377564851708,1.0869287277983861,1.0869287277983861,0.6218050639144692,0.6001489307619707,0.56438571440627,0.7560949757511769,0.5908209419809685,0.6294117093383997,0.5954064540753341,0.5665092617130891,0.7887909019011093,0.5926563533240566,31.287002615115213,31.287002615115213,26.221190468338733,26.221190468338733,28.535629530972614,28.535629530972614,38.135426404935515,38.135426404935515,29.919286108368823,29.919286108368823,13.112407363144783,12.552016681462703,11.671138653355513,17.04073446512062,12.316910302368782,13.314072555808409,12.43201348685615,11.721893737790737,18.114554738756368,12.362872330575584,237.83311649603772,237.83311649603772,0.0,264.2590183289308,0.0,237.83311649603772,264.2590183289308,0,0
+2017/07/31 10:00:00,280.22339769918534,0,895.5005323843129,0,0,0,68.1144283899145,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.8047526277206296e-09,18.602499021095024,0,0,0.0,434.1259497212391,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9030.740335221524,4610.3687128443025,7603.32958555573,8064.863213642361,51760.63940752595,9788.01037715728,6053.6530601131735,7914.9263761688035,8152.484959343221,50522.82943340068,9972.501073741283,6021.586144168941,8021.4102040024345,8564.069088935721,50970.721711137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047677111647355164,0.0015084705788340374,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1171354691686315,1.1171354691686315,1.06202328316398,1.06202328316398,1.0833983258772786,1.0833983258772786,1.176976673451255,1.176976673451255,1.1093627558964212,1.1093627558964212,0.601616134591668,0.5964451015484471,0.5596643338264135,0.6886405055409381,0.5594855696081035,0.6116963687013763,0.5983299864738724,0.5677142942253816,0.7100344930200833,0.5649113900725838,31.3022052633857,31.3022052633857,28.80276868689141,28.80276868689141,29.759695874062686,29.759695874062686,34.13006448296491,34.13006448296491,30.943406891593085,30.943406891593085,12.589340383414594,12.458211846278871,11.558993347477923,14.970135832674927,11.554766217369547,12.848294022730087,12.505874884686861,11.750782310584512,15.605634824406422,11.683684656203638,280.22339769918534,280.22339769918534,0.0,311.3593307768726,0.0,280.22339769918534,311.3593307768726,0,0
+2017/07/31 11:00:00,310.7847814649369,0,975.8844869110882,0,0,0,82.69759887934539,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.858377425994329e-09,20.881298985903868,0,0,0.0,461.27437547919834,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12095.804244373301,5933.145551632206,9569.984665128646,8814.604034075448,61617.82784652825,12879.6841900322,7413.185034212678,10279.318308622103,9141.702363928447,61998.98430687441,13307.619042529015,7495.39161360568,10557.804806347918,9529.527640361863,63035.650176949355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05195681292729169,0.0016438773441333518,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.182394385154871,1.182394385154871,1.0802160068411781,1.0802160068411781,1.0971934489945385,1.0971934489945385,1.206912948403094,1.206912948403094,1.1285259945143353,1.1285259945143353,0.637129506723476,0.5979372736758302,0.5625101240639102,0.6935740111734502,0.557162134943265,0.6614162092818926,0.6080713548331949,0.5780098055079703,0.7201808684794887,0.5680022219345543,34.391587782546836,34.391587782546836,29.616211891239786,29.616211891239786,30.385742159740545,30.385742159740545,35.585971916376764,35.585971916376764,31.831628123877152,31.831628123877152,13.521250202959834,12.495931649541646,11.626472670080133,15.114930080451359,11.499951402365554,14.190059144532398,12.754662343240582,12.000167616902473,15.913930541273416,11.75769420295056,310.7847814649369,310.7847814649369,0.0,345.3164238499299,0.0,310.7847814649369,345.3164238499299,0,0
+2017/07/31 12:00:00,300.15739335075784,0,936.7725154462598,0,0,0,92.51300631817736,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.8047526277206296e-09,18.595937744772705,0,0,0.0,457.65275652691395,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12851.767933411276,6539.14311193275,10382.731725353926,8463.763445873516,64106.096178067884,14796.91449019215,8594.93368088575,12409.290857282516,9673.869037332493,72449.63777324371,15335.542103208394,8754.717096738668,12799.940243767198,10017.90569838824,73831.87787101547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04987446259600622,0.0015779932311693965,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1623994798810964,1.1623994798810964,1.0836376408095778,1.0836376408095778,1.1000090304231662,1.1000090304231662,1.1743121410925772,1.1743121410925772,1.1221422661355986,1.1221422661355986,0.6388879651958992,0.6058053729322739,0.572879686466009,0.6742597647061164,0.5646275992757026,0.6641663849554834,0.6205155704012757,0.5925954039043745,0.6966402244665877,0.5778618087011745,33.43081588597555,33.43081588597555,29.770500327127976,29.770500327127976,30.514320741498324,30.514320741498324,34.0017666646479,34.0017666646479,31.534390278469985,31.534390278469985,13.568815928870464,12.696423224866777,11.875327364141995,14.554077739471126,11.676910093649226,14.267404967903218,13.078469566397558,12.361343699732288,15.20545074000293,11.996550153623204,300.15739335075784,300.15739335075784,0.0,333.50821483417536,0.0,300.15739335075784,333.50821483417536,0,0
+2017/07/31 13:00:00,297.00381278397856,0,873.2437364860081,0,0,0,92.01141968267387,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.750206675329447e-09,16.338193629471945,0,0,0.0,429.6143300792065,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13950.16130389067,7165.407633834697,10705.350882919445,7938.276264520065,66069.42017071428,14929.176918537829,8627.597508933837,11938.682706844933,9164.875069762069,69055.00427149764,15524.656532387888,8844.32383960396,12355.417704926718,9455.199441488634,70771.39637489179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04649214334797231,0.0014709790078326049,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1945102928732632,1.1945102928732632,1.10964891516412,1.10964891516412,1.0995714662184888,1.0995714662184888,1.1559779383940443,1.1559779383940443,1.1247487072534479,1.1247487072534479,0.6565943406047838,0.6163185601870849,0.5678476511145399,0.6585577809187622,0.5600050267964154,0.6858323346888082,0.6373647686484438,0.5878578026112077,0.6783667066052261,0.5753466545350887,34.97960427977851,34.97960427977851,30.956580504165657,30.956580504165657,30.494320853042566,30.494320853042566,33.124860408735245,33.124860408735245,31.655589105682168,31.655589105682168,14.055240019338498,12.96850933180879,11.75398318258317,14.110016090599714,11.567053346743691,14.888188182193275,13.527606189446956,12.243016454289048,14.671985609208761,11.935217936620106,297.00381278397856,297.00381278397856,0.0,330.0042364266428,0.0,297.00381278397856,330.0042364266428,0,0
+2017/07/31 14:00:00,268.17005064218023,0,832.9742436646231,0,0,0,79.22463205431524,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.694730297680976e-09,14.044592034976304,0,0,0.0,424.8351897703657,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12813.552955120787,7503.088337186461,9589.600398114306,7223.955060371496,59833.785606443504,12481.574017768733,8186.83709584527,9588.796758039194,7780.018176431947,56550.09466194998,13067.215558272608,8536.227631742262,10031.151498133362,8052.800930149312,58322.20973573255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04434816572227999,0.001403145050231385,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1862247134605248,1.1862247134605248,1.1964437674090143,1.1964437674090143,1.1057844870885143,1.1057844870885143,1.1432590830418954,1.1432590830418954,1.1273742152735475,1.1273742152735475,0.6398342387510833,0.6591333328485032,0.561170152418524,0.6473154201886357,0.5494608327535022,0.6626359521796219,0.6846971567488264,0.5780245082059657,0.6628609296803906,0.5645964961182164,34.577014480015606,34.577014480015606,35.07383969098127,35.07383969098127,30.778910613327938,30.778910613327938,32.52269129651849,32.52269129651849,31.777900342977162,31.777900342977162,13.59446782313006,14.126104502452463,11.594655536904526,13.798637224778147,11.319934788459776,14.224322710197853,14.855158342890888,12.000527044593127,14.230649550383802,11.67616782148366,268.17005064218023,268.17005064218023,0.0,297.9667229357558,0.0,268.17005064218023,297.9667229357558,0,0
+2017/07/31 15:00:00,257.43596271597863,0,832.9659945710179,0,0,0,75.19640822601139,0.0,16.568294279967066,0.0,108.75639138185811,0,39.380909295966944,2.694730297680976e-09,14.101984327026114,0,0,0.0,424.82694067676033,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12355.088259109205,8969.923790008012,10217.845284041885,7276.475015316199,61458.596315677045,10684.984665227044,8331.859899643212,8574.807768259248,7308.438803589355,49164.303030834664,11122.854471223136,8768.197110497396,8984.593407699484,7551.120827756224,50896.88461193891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04434772653442628,0.0014031311546338328,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1675631730237237,1.1675631730237237,1.231194660653293,1.231194660653293,1.1205248742482157,1.1205248742482157,1.1507074105123094,1.1507074105123094,1.13169819196128,1.13169819196128,0.6147172547407036,0.6823497078517485,0.5602935338451669,0.646101191632338,0.5374608149615195,0.6317671184329136,0.7117160501325528,0.5762276828908282,0.6603985060477896,0.550907939956189,33.6777676081084,33.6777676081084,36.78567077535327,36.78567077535327,31.459294656910643,31.459294656910643,32.87470890396865,32.87470890396865,31.9798276301958,31.9798276301958,12.926757143591729,14.787032277113724,11.573882685084143,13.76533465270063,11.044559866514334,13.37702752405174,15.656421931209465,11.956670644516905,14.161520359459473,11.353564494090833,257.43596271597863,257.43596271597863,0.0,286.0399585733096,0.0,257.43596271597863,286.0399585733096,0,0
+2017/07/31 16:00:00,288.82267488861265,0,886.1931835650809,0,0,0,83.65275685767438,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.694730297680976e-09,14.085256299755567,0,0,0.0,424.81860090200706,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12609.043991116268,10879.412276617557,11361.289982304224,7766.918544665677,70257.85452532725,10640.380938149043,9870.531466533277,9163.134691539044,7803.793730614387,54047.11711020468,10889.843696510914,10353.332024032457,9478.27212366155,7976.252165407799,55771.501626772166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047181581502203924,0.0014927923504544566,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1488954404436942,1.1488954404436942,1.2910881216065495,1.2910881216065495,1.1239662383142954,1.1239662383142954,1.1513268547811881,1.1513268547811881,1.1549977115049346,1.1549977115049346,0.5868180644311151,0.7173529087111156,0.5495537915298591,0.6334396655208644,0.5369752382734146,0.598697013202225,0.75071743849865,0.561771292058522,0.6432222209865276,0.5507851722088453,32.78891080557095,32.78891080557095,39.81088047161255,39.81088047161255,31.619181005638126,31.619181005638126,32.90406383255443,32.90406383255443,33.07827051985298,33.07827051985298,12.217178095198364,15.827557705819189,11.322092353722965,13.421877209310253,11.03354825575559,12.515173816163994,16.868492568039542,11.60891974552544,13.686628783411223,11.350707938209467,288.82267488861265,288.82267488861265,0.0,320.9140832095696,0.0,288.82267488861265,320.9140832095696,0,0
+2017/07/31 17:00:00,303.5438303506166,0,919.0124846778341,0,0,0,91.42179606800656,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,2.8047526277206304e-09,18.615564072817506,0,0,0.0,457.6379020147603,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12579.443076779966,12416.452397000252,12323.858457326234,7874.903686189782,73365.57635095675,11962.055142419573,11553.945161806352,11331.501689646924,8380.289544722093,62803.37473838791,12090.98672280456,12096.99929819174,11632.562110982763,8486.740131382192,64580.568592764495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04892890540292204,0.0015480764606879468,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1451787209139386,1.1451787209139386,1.348528568545353,1.348528568545353,1.1535685523438999,1.1535685523438999,1.1522527921539958,1.1522527921539958,1.1647017701278508,1.1647017701278508,0.5896887051554777,0.7661811434934841,0.5773211377330943,0.6342865385257904,0.5499209460512693,0.5971934611241548,0.8044180797652069,0.5920173510202351,0.6414498822269341,0.5639403787945878,32.61324713720896,32.61324713720896,42.789696670496674,42.789696670496674,33.0103970040219,33.0103970040219,32.947965767638635,32.947965767638635,33.5408205366157,33.5408205366157,12.288629950470963,17.36712835575409,11.983342693668007,13.444632558072854,11.330617640097614,12.477117139484733,18.64384256725903,12.346853964761706,13.638354974958162,11.6605194585523,303.5438303506166,303.5438303506166,0.0,337.2709226117962,0.0,303.5438303506166,337.2709226117962,0,0
+2017/07/31 18:00:00,297.6424645764595,0,915.8677245338662,0,0,0,101.52086615382032,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.9629006447484805e-09,25.57599265909571,0,0,0.0,489.98349438333656,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12495.345948347196,11390.562590071919,13130.745193776438,7878.196836246534,75177.5988212724,14350.211215874026,12582.643266210835,14491.5340406726,9532.772112586257,76041.72704098151,14388.108823802528,13023.041509231629,14835.50728669342,9574.723966844353,77668.69594792262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048761476043512386,0.0015427791124641163,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.139144827014175,1.139144827014175,1.2867460951026444,1.2867460951026444,1.1736913502936683,1.1736913502936683,1.1476724949865065,1.1476724949865065,1.16658700392443,1.16658700392443,0.6084800969845741,0.7611962693561644,0.6159666797370661,0.6438624003833485,0.5742710695739701,0.6127557552034203,0.7892661414539429,0.6332553672821041,0.6491322525908375,0.586768344909517,32.32900498633509,32.32900498633509,39.58861714154381,39.58861714154381,33.971906323261464,33.971906323261464,32.73106219939653,32.73106219939653,33.63101974879436,33.63101974879436,12.765191351424448,17.205271756893126,12.959324915982606,13.704099060391997,11.90907350176586,12.875764954711059,18.130498354950262,13.416929265744173,13.848586754884451,12.215943699039485,297.6424645764595,297.6424645764595,0.0,330.7138495293994,0.0,297.6424645764595,330.7138495293994,0,0
+2017/07/31 19:00:00,289.2249147103751,0,883.0090802766312,0,0,0,99.28756675211086,0.0,18.33683240002613,0.0,101.68988858149199,0,39.380909295966944,3.013817607508539e-09,27.0977424753112,0,0,0.0,492.6152026386458,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11773.612464757962,8218.056678672716,13409.469490657146,7462.0984207695265,72267.08569454728,14098.509094816885,12456.86560768035,15107.1972062261,9270.625021047596,76986.30007134289,14009.616970532457,12803.303587895001,15493.467424994582,9255.857051976782,78216.03733048555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04701205748464033,0.0014874287287067324,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.126509553688648,1.126509553688648,1.1495690564032441,1.1495690564032441,1.190719868606883,1.190719868606883,1.1352301344285407,1.1352301344285407,1.1597687658265858,1.1597687658265858,0.6078996847892844,0.7627703165939442,0.6400315519977416,0.6381573073537179,0.5843626267839439,0.6056419651040934,0.7845608656018266,0.6563415587766579,0.6359375226065043,0.5933451578049782,31.737594468096546,31.737594468096546,32.820794885150946,32.820794885150946,34.795180041946,34.795180041946,32.1452189350254,32.1452189350254,33.305319884540054,33.305319884540054,12.75024236477391,17.256265695209933,13.599821548644911,13.549035587312616,12.156344641557652,12.692232014414344,17.973065570861934,14.048200048293566,13.489083694923195,12.380158972628749,289.2249147103751,289.2249147103751,0.0,321.36101634486124,0.0,289.2249147103751,321.36101634486124,0,0
+2017/07/31 20:00:00,289.11252537348975,0,819.6888931558367,0,0,0,94.27861526432174,0.0,22.69424279044795,0.0,106.16168237671882,0,39.380909295966944,2.9110903412903434e-09,23.16510044066889,0,0,0.0,464.7853680303955,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10996.895606976388,7673.685312016682,11052.659674050828,6895.551585697676,69616.53280834403,13730.197676109623,10636.843458781199,13535.778758865717,8949.801783923142,76879.669144723,13598.816397865306,11052.158358844474,14159.484916800233,8877.987835318603,77646.2219356147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0436408438206445,0.0013807658783076752,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1361455583884095,1.1361455583884095,1.1669164133727508,1.1669164133727508,1.1311309374443637,1.1311309374443637,1.1202799562089993,1.1202799562089993,1.1650851909126971,1.1650851909126971,0.609858861257888,0.6871197539258361,0.6013787345170618,0.6368446740253549,0.5921837737918042,0.6054606532720893,0.7056465895389653,0.6182276693217279,0.6309127872476833,0.5975916182361719,32.18815172478337,32.18815172478337,33.64679159940836,33.64679159940836,31.953302408503234,31.953302408503234,31.447930633956346,31.447930633956346,33.559156479045086,33.559156479045086,12.800761161041606,14.925715152147859,12.583294907576445,13.513558193588452,12.351024106684605,12.687582944543394,15.473683688624831,13.018432565134475,13.354165289040452,12.487185414825248,289.11252537348975,289.11252537348975,0.0,321.2361393038775,0.0,289.11252537348975,321.2361393038775,0,0
+2017/07/31 21:00:00,274.45973723865825,0,809.3539553415337,0,0,0,80.38356461982826,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.96290064474848e-09,25.61221036770179,0,0,0.0,489.94078272863663,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8140.079196809766,5593.492021902165,8342.955426567214,5963.581109613006,55678.378978608715,11850.887950926357,9413.626633288453,11254.118146357323,7719.404853179489,68203.47693385599,11679.10038572698,9565.998935818716,11517.863788411882,7625.236301485425,68626.53473461467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04309060407625367,0.00136335667634389,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1236685566041775,1.1236685566041775,1.151888578689275,1.151888578689275,1.1174130586746818,1.1174130586746818,1.1004041335836678,1.1004041335836678,1.1515073915493126,1.1515073915493126,0.6191995175053738,0.6908498120993836,0.6067068235887428,0.6420599821686932,0.6042369918249617,0.611554342207791,0.6902092045009989,0.6069623280780745,0.6331945023041124,0.6056674647716661,31.605335234491378,31.605335234491378,32.930693907283754,32.930693907283754,31.315056424070903,31.315056424070903,30.53238544815028,30.53238544815028,32.91262159225259,32.91262159225259,13.043907162082121,15.0348470841586,12.719565159823532,13.654957104523149,12.656243990490808,12.844614839022682,15.016061780136326,12.726130855798488,13.415295518031158,12.692885973311846,274.45973723865825,274.45973723865825,0.0,304.95526359850913,0.0,274.45973723865825,304.95526359850913,0,0
+2017/07/31 22:00:00,183.2442606740479,0,621.0286742612582,0,0,0,46.62139476688556,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8583774259943276e-09,20.869908298982033,0,0,0.0,461.3220879548096,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2444.9224761708256,1631.9934784544264,3069.828542329594,3899.398138551373,23823.409747082304,6817.715956858823,5879.5243862317975,6683.370005373404,4298.917610762785,42881.892769814345,6475.190327296749,5797.518739994161,6710.3841416974465,4038.0384390104273,42715.39845068109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033064026617748606,0.0010461227546578124,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0692398896649193,1.0692398896649193,1.093591496680933,1.093591496680933,1.061683256823009,1.061683256823009,1.044683770924817,1.044683770924817,1.0755967382780263,1.0755967382780263,0.6046302212063462,0.6657709746946495,0.5902943886000315,0.6230434634136756,0.5939569344024969,0.5918341517908018,0.6576032028329838,0.5848268205962257,0.6089435357906237,0.5908822427331805,29.124042991926345,29.124042991926345,30.22164752330235,30.22164752330235,28.78767683495225,28.78767683495225,28.038455962510568,28.038455962510568,29.408568250365377,29.408568250365377,12.66630782491788,14.312683715126568,12.303751438366021,13.14506835446879,12.395529743409384,12.342264836274424,14.083364399360377,12.16782498505188,12.777138091410407,12.318443024461232,183.2442606740479,183.2442606740479,0.0,203.60473408227543,0.0,183.2442606740479,203.60473408227543,0,0
+2017/07/31 23:00:00,101.76532113818092,0,473.1768519372575,0,0,0,14.427593744701708,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.638314223635414e-09,11.826746332002626,0,0,0.0,419.9413231684413,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2025.7249997385288,0.0,1711.0713615845775,2321.8677572211327,2128.768747180091,784.768406175488,17814.540201505537,1173.7865292393,2051.4678131425476,1991.1744560242623,327.84338237053436,17150.778661214925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025192286082388334,0.0007970663711747962,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9260270590059546,0.9260270590059546,0.9425651482461451,0.9425651482461451,0.9497521350957031,0.9497521350957031,0.9899748503009065,0.9899748503009065,0.9880105451706168,0.9880105451706168,0.5908375930421407,0.6445523263914114,0.5768601915327211,0.6055041193652169,0.5836995628161376,0.5736446220649115,0.6301336653177864,0.5663622286084214,0.5869293783102848,0.5775351275093308,23.11078411489747,23.11078411489747,23.764840801336717,23.764840801336717,24.052459656215063,24.052459656215063,25.69944357046724,25.69944357046724,25.617558648274212,25.617558648274212,12.31732661798415,13.722946802111451,11.972092758869763,12.688697341365724,12.139962100725825,11.893869460072864,13.333343289462334,11.718373184582475,12.219942095304148,11.988568499390112,101.76532113818092,101.76532113818092,0.0,113.07257904242324,0.0,101.76532113818092,113.07257904242324,0,0
+2017/08/01 00:00:00,43.162450385093074,0,441.5137679279584,0,0,0,0.28768696950790307,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,3.5331564752002427,2.5809491820529596e-09,9.544285941380798,0,0,0.0,388.2782391591422,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1140.6865335991254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.023506520036675835,0.0007437299085643192,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9613838940498965,0.9613838940498965,0.9726868165707515,0.9726868165707515,0.9633436047331623,0.9633436047331623,0.9542772705083725,0.9542772705083725,0.9760106504452218,0.9760106504452218,0.7556853539771384,0.8822051014865492,0.7298840830254859,0.7817301622755145,0.77771430576285,0.715226097930954,0.8477579888343013,0.7058878756191366,0.7386934986595654,0.761096343775413,24.522266082984586,24.522266082984586,24.9838594744013,24.9838594744013,24.60194071469077,24.60194071469077,24.234598195462056,24.234598195462056,25.120544065058837,25.120544065058837,17.027570781251015,21.430913662879675,16.212907169796665,17.878806887025334,17.7456688651764,15.762826618248042,20.165589396844325,15.480917962186652,16.487849544905472,17.202038071437997,43.162450385093074,43.162450385093074,0.0,47.95827820565897,0.0,43.162450385093074,47.95827820565897,0,0
+2017/08/01 01:00:00,23.722222577294424,0,53.10185335847992,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251271536166288,0,0,0.0,17.61150084593579,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002827182005702266,8.94500679519971e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0040545600941,1.0040545600941,1.0428009424284959,1.0428009424284959,1.000017945272592,1.000017945272592,0.9998310976335736,0.9998310976335736,1.0734260730942469,1.0734260730942469,0.7405995564327235,0.9046824620530146,0.7100902557495871,0.7714257008040664,0.8388034118382276,0.7005424027445676,0.8783032375650461,0.6909992574675623,0.7287888319836983,0.809656473755269,26.290682321920627,26.290682321920627,27.956116343390363,27.956116343390363,26.120405691343606,26.120405691343606,26.112538840294874,26.112538840294874,29.31125174117649,29.31125174117649,16.547776246703293,22.282837087964595,15.607317039945073,17.538561774049683,19.84472682640191,15.321237877972564,21.285131136213963,15.039232000887495,16.17895739613877,18.823577288069117,23.722222577294424,23.722222577294424,0.0,26.358025085882694,0.0,23.722222577294424,26.358025085882694,0,0
+2017/08/01 02:00:00,28.3445526565758,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251895701029058,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0055945968680964,1.0055945968680964,1.0497295464541512,1.0497295464541512,0.9992621624373417,0.9992621624373417,0.999573424679905,0.999573424679905,1.1343679556376087,1.1343679556376087,0.727380526818925,0.890108793163687,0.6955901606062708,0.7579294890926651,0.8628179270829096,0.6769981245502212,0.8591222522502667,0.6659779255610465,0.7056918380400595,0.82182469865937,26.355808139471407,26.355808139471407,28.25975174974731,28.25975174974731,26.08859310293215,26.08859310293215,26.10169220159787,26.10169220159787,32.10480810725011,32.10480810725011,16.135379604448673,21.72812519694901,15.174405063353746,17.09977679036389,20.712741814708025,14.632613343327975,20.577600849522938,14.31853162916478,15.475040144284804,19.245546692963856,28.3445526565758,28.3445526565758,0.0,31.49394739619533,0.0,28.3445526565758,31.49394739619533,0,0
+2017/08/01 03:00:00,23.774888331370715,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5777929076929209,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9764680387642953,0.9764680387642953,1.0243136210131403,1.0243136210131403,0.9683779660517015,0.9683779660517015,0.9693752119908788,0.9693752119908788,1.149794652489088,1.149794652489088,0.6937445797410655,0.8621636005476417,0.6613152901042182,0.7237030381392113,0.8893497425701925,0.6347472188309236,0.8237542572736637,0.6237329244246076,0.6632117602791299,0.8335548503122531,25.139386519543194,25.139386519543194,27.1545267153287,27.1545267153287,24.807306277268694,24.807306277268694,24.848103824042227,24.848103824042227,32.83147617214151,32.83147617214151,15.11995493330187,20.688773652487654,14.187227130009305,16.021987715736188,21.69947084777168,13.457024032918795,19.313032128330022,13.163280727478693,14.24052001951496,19.658215315364757,23.774888331370715,23.774888331370715,0.0,26.416542590411904,0.0,23.774888331370715,26.416542590411904,0,0
+2017/08/01 04:00:00,45.22073153601186,0,88.72588128136032,0,0,0,0.47791152431164674,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,4.709636362152723,0.0,0.5250500999133789,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,15.882731475248576,173.79574285159646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1395.6341488261955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9980294452437207,0.9980294452437207,0.9966348589637825,0.9966348589637825,0.9970972083331539,0.9970972083331539,0.9787589957684567,0.9787589957684567,1.0312808278359202,1.0312808278359202,0.5139453402362337,0.5698951129587521,0.5027595450643007,0.5234223401243818,0.5875670340356447,0.4910269236375027,0.5464588991135964,0.4853786104861382,0.49937159710446904,0.5721315829721151,26.0367518014408,26.0367518014408,25.97817277941411,25.97817277941411,25.99758538133615,25.99758538133615,25.233885874385876,25.233885874385876,27.455140714093616,27.455140714093616,10.523014796857979,11.803223818665586,10.283324551934598,10.73032380088111,12.235785887819077,10.037727519562893,11.250461510600985,9.921612184360995,10.211794494267167,11.857217832625949,45.22073153601186,45.22073153601186,0.0,50.2452572622354,0.0,45.22073153601186,50.2452572622354,0,0
+2017/08/01 05:00:00,75.67076684473403,0,212.9421150752648,0,0,0,0.2626100570932566,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.097199628276834,0.0,0.5249141294080596,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1065.6901647190646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.038893571633329,1.038893571633329,1.0251533495601681,1.0251533495601681,1.0411311484503816,1.0411311484503816,1.0284312348030913,1.0284312348030913,1.0334804990058428,1.0334804990058428,0.6251186484485987,0.7310596762012048,0.6030630973755123,0.6401840683696742,0.8043025331551845,0.5712210055989215,0.6729826538596274,0.5629645621585987,0.5836121594831523,0.767389755339233,27.78565191103739,27.78565191103739,27.19066327982884,27.19066327982884,27.883201122663095,27.883201122663095,27.33197250560214,27.33197250560214,27.550421941421888,27.550421941421888,13.199947540234163,16.249404710393534,12.62624068545793,13.603960951845636,18.63989110831305,11.83520801592691,14.517561431734677,11.637280817615107,12.137804020839454,17.406531245293024,75.67076684473403,75.67076684473403,0.0,84.07862982748226,0.0,75.67076684473403,84.07862982748226,0,0
+2017/08/01 06:00:00,88.0083447873411,0,629.2154232928855,0,0,0,0.4711483331285099,0.0,10.628007803559424,0.0,73.80580873715317,0,2.578375594213296,2.5226342698684814e-09,0.5250043167640651,0,0,0.0,398.52813196134855,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1963.9993911734687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03349989520017203,0.0010599133327802248,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0689311759090063,1.0689311759090063,1.0439882081738463,1.0439882081738463,1.0746479508243765,1.0746479508243765,1.0800018338607478,1.0800018338607478,1.0192240955305938,1.0192240955305938,0.7888088495204686,0.9111893974395994,0.7638211626430979,0.8178635333050494,1.057852049258291,0.707386536285348,0.831610466849858,0.7001699510530699,0.7389368696013141,1.0025995084142905,29.110261620231512,29.110261620231512,28.008022679971404,28.008022679971404,29.36601129364611,29.36601129364611,29.606567968651575,29.606567968651575,26.936066445389116,26.936066445389116,18.115156681866054,22.533291754812524,17.29036856085615,19.107497163344235,28.61791656993799,15.525907260632309,19.58941276859649,15.310157949084001,16.49549247507001,26.22923274361966,88.0083447873411,88.0083447873411,0.0,97.78704976371233,0.0,88.0083447873411,97.78704976371233,0,0
+2017/08/01 07:00:00,145.53477207933818,0,758.7316075040657,0,0,0,1.9669192282107713,0.0,7.777944015249205,0.0,69.33401494192633,0,39.380909295966944,1.721618259467308e-05,27.074967381802356,0,0,0.010450577620461884,492.54351308236426,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2540.534435503218,0.0,0.0,0.09176201579528807,0.0,0.0,2536.069321306389,0.0,0.0,0.0,0.0,1972.6442235703412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.040395432781076344,0.0012780833352538461,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.47050132081242324,0.47050132081242324,0.4086943438992229,0.4086943438992229,0.55263461562728,0.55263461562728,1.1283301431178343,1.1283301431178343,0.6988353843780921,0.6988353843780921,0.24701800118777467,0.385649994436122,0.26876646806389815,0.4251653498308938,0.47135790264802974,0.32442939487844946,0.36622802547851246,0.23973783678578242,0.412582540153895,0.4500483195873332,9.622359760358307,9.622359760358307,8.481113937311548,8.481113937311548,11.39380994239336,11.39380994239336,31.822489056435614,31.822489056435614,15.270505588325491,15.270505588325491,6.266443287463687,8.097535096710203,6.499962554761325,8.769210878473174,9.639330713334331,7.1885060951022695,7.791867930028147,6.192716938128413,8.548074589909476,9.226523406606503,145.53477207933818,145.53477207933818,0.0,161.70530231037574,0.0,145.53477207933818,161.70530231037574,0,0
+2017/08/01 08:00:00,162.91577364657033,0,809.3565593385392,0,0,0,3.358848283637132,0.0,11.36563784648343,0.0,83.2008179303116,0,39.380909295966944,2.9629108605723045e-09,25.609560287208325,0,0,0.0,489.9433867256421,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5361.2631287051845,0.0,0.0,0.0,0.0,0.0,4227.123897764507,0.0,0.0,0.0,0.0,2485.2068548761185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04309074271498304,0.001363361062776648,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6227912803143947,0.6227912803143947,0.5151399981766068,0.5151399981766068,0.6688099626425917,0.6688099626425917,1.184813532951258,1.184813532951258,0.8101581914087218,0.8101581914087218,0.3439152995137511,0.4312888250395575,0.3629349053609744,0.5582157181224907,0.5077757988266364,0.3492401073600875,0.37059312672713474,0.2999765224223371,0.5278556979793548,0.4957236815051473,13.138411994777968,13.138411994777968,10.548933843367678,10.548933843367678,14.398744271191646,14.398744271191646,34.50864827310558,34.50864827310558,18.840852524804333,18.840852524804333,7.460544317099917,8.879284414624621,7.741634935099114,11.524778686015054,10.390144241962005,7.537688512566461,7.85916513533887,6.869898822271054,10.82863780751623,10.135330212474358,162.91577364657033,162.91577364657033,0.0,181.01752627396704,0.0,162.91577364657033,181.01752627396704,0,0
+2017/08/01 09:00:00,196.18626692634047,0,833.9261542205921,0,0,0,18.531239159365622,0.0,11.128561489866103,0.0,106.27511244621549,0,39.380909295966944,2.858387484988484e-09,20.87044453206799,0,0,0.0,461.2774528388787,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82.66819245165374,0.0,0.0,7523.2573817149705,7203.788897777304,1780.5185360805042,853.8996791247977,1201.382660131791,2846.907772964284,18883.452818092446,1965.793929552554,517.9430024751196,924.3314403285304,2855.148327673653,17863.517833530703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044398846145366266,0.0014047485434906656,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9330513047794232,0.9330513047794232,0.7255019405859364,0.7255019405859364,0.8823642601122091,0.8823642601122091,1.219524446034531,1.219524446034531,0.9883932635818287,0.9883932635818287,0.5124936988840246,0.5173562894492473,0.4740892949416722,0.6469327761291426,0.5411743358173602,0.5152924280748313,0.490231270417966,0.45779297686586706,0.6551029173283472,0.5399279203155456,23.38725137732139,23.38725137732139,16.0773824835684,16.0773824835684,21.436873450229996,21.436873450229996,36.20703584309261,36.20703584309261,25.63350123569775,25.63350123569775,10.491603374480832,10.597181546832516,9.693657414745516,13.78813557143802,11.12911058659951,10.552245371493044,10.021287515478377,9.374290502767963,14.01374392644253,11.100665158037359,196.18626692634047,196.18626692634047,0.0,217.98474102926718,0.0,196.18626692634047,217.98474102926718,0,0
+2017/08/01 10:00:00,241.90654556103357,0,895.324078919173,0,0,0,33.341343702330484,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.8047625977263735e-09,18.595482973342307,0,0,0.0,433.9494962560992,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4034.8179110552933,541.9234448977023,2559.9706602183464,8064.653788150794,25818.685092434353,4408.639795687222,2058.991502490371,2725.8667438697016,4186.376327531613,24930.930665738284,4738.438735072707,1863.2419207220826,2655.6516169625443,4363.378676300176,25189.663310064043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047667717134170846,0.0015081733429854014,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0717628924671374,1.0717628924671374,0.9105011775349079,0.9105011775349079,0.987673706374605,0.987673706374605,1.2112184735347047,1.2112184735347047,1.051551632650322,1.051551632650322,0.5538929458789476,0.5296071546544237,0.48453267075842915,0.6422423772758407,0.5093636768173467,0.5759303417683225,0.5244920108005574,0.48737000382727325,0.6628740183926976,0.5167254142531219,29.2367992508578,29.2367992508578,22.506720914885207,22.506720914885207,25.603531873117646,25.603531873117646,35.797498558337594,35.797498558337594,28.33989058045306,28.33989058045306,11.423220587573908,10.867712539386616,9.904340325816733,13.659923601360632,10.424184330323357,11.94942673546312,10.753966908555782,9.962393118200453,14.231017699972881,10.583426030617872,241.90654556103357,241.90654556103357,0.0,268.78505062337064,0.0,241.90654556103357,268.78505062337064,0,0
+2017/08/01 11:00:00,269.2588125234356,0,975.8022394233753,0,0,0,44.59501007937999,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.858387484988485e-09,20.889894046822388,0,0,0.0,461.1921279914854,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6091.743973361365,931.2767796117262,4002.84286765056,7653.970907566659,34260.28876805154,6418.84707727171,2868.687002988127,4424.968748139869,4451.183928474925,34807.961333942345,7049.236521045492,2828.410939111724,4640.726711377416,4643.448674774099,35248.471285789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051952434010124594,0.0016437387982465416,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1294022856823664,1.1294022856823664,1.0137827522778684,1.0137827522778684,1.043374339348872,1.043374339348872,1.1763169958435595,1.1763169958435595,1.0934519065082928,1.0934519065082928,0.5881569551925567,0.5528030726531987,0.5088427849393864,0.6351132585861654,0.5276122133562684,0.6162941642064075,0.5555252901462505,0.518682705187803,0.6530351952675687,0.5363610263560104,31.872534091401775,31.872534091401775,26.703572999077863,26.703572999077863,27.981178406726258,27.981178406726258,34.09828087361154,34.09828087361154,30.215297144553375,30.215297144553375,12.25045933578697,11.397743267545764,10.413005709996128,13.466876410012475,10.823216217990847,12.967872400054162,11.461475256364281,10.626158697285007,13.956372859427304,11.019634164794667,269.2588125234356,269.2588125234356,0.0,299.1764583593729,0.0,269.2588125234356,299.1764583593729,0,0
+2017/08/01 12:00:00,269.80267631242157,0,936.6899351461394,0,0,0,65.70365235864254,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.8047625977263735e-09,18.58732606878632,0,0,0.0,457.57017622679365,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8944.168330946388,2912.7675655940443,6241.305537385078,7460.988845570971,43325.90487976672,10882.731604503528,5549.362192314233,8227.068577750886,6428.850350856755,53985.70248691974,11667.345696924142,5641.810716418021,8597.023795980576,6648.812646968083,54981.83494475853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04987006595966002,0.0015778541246601113,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1513178652886047,1.1513178652886047,1.0292972796543032,1.0292972796543032,1.0555580105772708,1.0555580105772708,1.152193044192326,1.152193044192326,1.090830835427004,1.090830835427004,0.6198596735026146,0.566435472263098,0.5278338731941605,0.6228540105166364,0.5360894020186694,0.6550259988419767,0.5777676365234474,0.546106327802145,0.6410857490522193,0.5499647547941856,32.9036377416941,32.9036377416941,27.369373941869924,27.369373941869924,28.51651962244196,28.51651962244196,32.94513209204787,32.94513209204787,30.096181037453363,30.096181037453363,13.061234895897115,11.720126809727105,10.828151737702697,13.140067497330747,11.013486115959225,14.011606425885375,11.99424881225977,11.242327638146605,13.628453821682015,11.331635264341884,269.80267631242157,269.80267631242157,0.0,299.7807514582462,0.0,269.80267631242157,299.7807514582462,0,0
+2017/08/01 13:00:00,269.5101414437322,0,873.1460203482778,0,0,0,67.9426199588692,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.7502165491178083e-09,16.345297215484475,0,0,0.0,429.5166139414762,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9723.527566739505,3865.4547021621593,6651.931299225039,7036.280669307126,43801.800355531486,11589.360720344013,6209.18719251478,8519.570682010333,6457.848899903007,53445.94214182987,12422.559494338286,6403.99621591626,8945.711789656008,6679.873064513286,54766.69334665567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04648694086842056,0.001470814405006015,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1427769340570435,1.1427769340570435,1.0341584374126023,1.0341584374126023,1.0341135776942096,1.0341135776942096,1.133036408476845,1.133036408476845,1.0669826814466528,1.0669826814466528,0.6154021934894719,0.5666815373503006,0.5117242531980807,0.5924259438596391,0.5162970325061036,0.6528422452429723,0.5869461216390419,0.5325532738761783,0.6094248822500083,0.5316464029780918,32.49996517993327,32.49996517993327,27.579823482280645,27.579823482280645,27.577877437364634,27.577877437364634,32.04244504632365,32.04244504632365,29.023356220608306,29.023356220608306,12.944602510104346,11.726019889926235,10.474990639832086,12.357094435144347,10.574095469664513,13.95102871616605,12.220357890184815,10.93373964396865,12.789556331812577,10.913375217703162,269.5101414437322,269.5101414437322,0.0,299.455712715258,0.0,269.5101414437322,299.455712715258,0,0
+2017/08/01 14:00:00,241.54335601134585,0,832.8764662506505,0,0,0,56.032187085862176,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.694740067888047e-09,14.042317575049267,0,0,0.0,424.73741235639295,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8140.242645938942,4211.985500726974,5766.906554945286,6357.040105032493,37665.12237971496,9245.062738188082,5655.09319041385,6579.650004550713,5085.645622597183,40526.43500919995,9958.651143593417,5944.792935480272,6982.285531410585,5267.720647358835,41745.96778717075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0443429599803357,0.0014029803441849692,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0913094083577488,1.0913094083577488,1.0754544343960044,1.0754544343960044,1.0037887017528713,1.0037887017528713,1.11193509075304,1.11193509075304,1.032048988270105,1.032048988270105,0.5731509266878172,0.5802851499419207,0.47902188094430526,0.5531275669028293,0.4772949234434468,0.6043639108096923,0.6065475153245221,0.4983036156549917,0.5669957918782627,0.49059889433626297,30.1179124279807,30.1179124279807,29.4021833302686,29.4021833302686,26.279448645222146,26.279448645222146,31.061925448257398,31.061925448257398,27.488394208929975,27.488394208929975,11.8818993425851,12.055903135857164,9.792580312120805,11.405323393570896,9.757826846473634,12.659491467109476,12.715472851199522,10.189348921210723,11.733549876539698,10.028880064153384,241.54335601134585,241.54335601134585,0.0,268.3815066792732,0.0,241.54335601134585,268.3815066792732,0,0
+2017/08/01 15:00:00,231.27270211460112,0,832.8700837859886,0,0,0,52.46475357167229,0.0,16.568294279967066,0.0,108.75639138185811,0,39.380909295966944,2.694740067888048e-09,14.102353582442023,0,0,0.0,424.73102989173117,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7294.698127147889,5520.006493286519,5789.8893640887045,6061.595448132393,37334.55956286682,7956.073709885289,6016.530800819708,5863.996747259245,4635.954994224666,35147.535524290826,8470.031671113906,6386.5292216906655,6192.58145497782,4783.929201206325,36271.63708717083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04434262017318956,0.0014029695929237303,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0404766281705786,1.0404766281705786,1.12555387750995,1.12555387750995,0.9842337490678007,0.9842337490678007,1.0960894490922686,1.0960894490922686,1.013842296108028,1.013842296108028,0.5241391775096721,0.5985937208879115,0.44899390474489365,0.5192231536873363,0.44287094158668855,0.5473174950080856,0.6314285187972447,0.4659896690308237,0.5298516961109258,0.4547774064535001,27.85464779452768,27.85464779452768,31.69307450612996,31.69307450612996,25.460532946774478,25.460532946774478,30.335399881481834,30.335399881481834,26.70611114859298,26.70611114859298,10.746162702160547,12.512556227170123,9.206604895851996,10.63798727403153,9.091883498674889,11.270291979859081,13.367962678076992,9.533494943265623,10.873178789141122,9.316446943916631,231.27270211460112,231.27270211460112,0.0,256.96966901622346,0.0,231.27270211460112,256.96966901622346,0,0
+2017/08/01 16:00:00,256.56246029164765,0,886.0991677059627,0,0,0,54.81868527573776,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.694740067888048e-09,14.09108848718145,0,0,0.0,424.72458504288886,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7194.8365661975795,6562.051112320962,6342.285692225356,6294.760861106078,40928.107012420485,7650.591355033222,6669.485390048224,6100.9983208023195,4651.919279660386,36516.32399659011,8031.68193278658,7105.544530717482,6406.592962095998,4774.2304625682655,37615.3599443007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0471765760282263,0.0014926339807469077,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0271403327793858,1.0271403327793858,1.1693019025544196,1.1693019025544196,0.9965432751676127,0.9965432751676127,1.1009115281587971,1.1009115281587971,1.0340439383751943,1.0340439383751943,0.49848763472597946,0.6251972754038871,0.4440427447093485,0.5067924403338415,0.43679611977289,0.5178966778318917,0.6618958000518362,0.46028519912133364,0.5175204648764551,0.44905388724428486,27.276274424674597,27.276274424674597,33.76110617971676,33.76110617971676,25.97432842736589,25.97432842736589,30.555592074460762,30.555592074460762,27.574856583093336,27.574856583093336,10.193212902657962,13.202030538930686,9.113713975981284,10.369118183922836,8.979656650762621,10.608977793188672,14.203523548918952,9.42239084562975,10.600764028978702,9.20773671738371,256.56246029164765,256.56246029164765,0.0,285.06940032405294,0.0,256.56246029164765,285.06940032405294,0,0
+2017/08/01 17:00:00,269.95021539024424,0,918.9376589740858,0,0,0,61.449621275063514,0.0,16.630907673226492,0.0,133.89528835348938,0,39.380909295966944,2.8047625977263747e-09,18.59348878969311,0,0,0.0,457.563076311012,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7135.130514831947,7285.63722869034,6999.770165003054,6303.749194587262,43477.3495180719,8392.17138569113,7717.911848696084,7450.985546350501,5119.05857406832,43824.165388534704,8672.768716759989,8167.710436773863,7761.189310502231,5205.111175608531,44857.550740516126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048924921627030576,0.0015479504167956618,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0188957872856592,1.0188957872856592,1.2033531519706837,1.2033531519706837,1.0219666759536667,1.0219666759536667,1.0915328294707556,1.0915328294707556,1.0458558424206927,1.0458558424206927,0.4953502872993812,0.6559241117070105,0.4668833918502186,0.5040174482324882,0.4531407094089031,0.5083020179874487,0.6920365017189731,0.48368927387211397,0.5091080199366977,0.4646993624994579,26.922007406088795,26.922007406088795,35.41148028778095,35.41148028778095,27.053667941082324,27.053667941082324,30.128060397579617,30.128060397579617,28.089777925587924,28.089777925587924,10.127535896456607,14.036580214471229,9.551028701267967,10.310009059919238,9.285216279665306,10.401412972029476,15.06969265780836,9.887151129100033,10.41869632988103,9.5082413986718,269.95021539024424,269.95021539024424,0.0,299.94468376693806,0.0,269.95021539024424,299.94468376693806,0,0
+2017/08/01 18:00:00,255.96304860328308,0,915.8102933386199,0,0,0,63.26433809091759,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.9629108605723074e-09,25.585079951276295,0,0,0.0,489.9260631880902,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6200.599895401187,6336.476423221906,6819.427597505412,5977.867918375041,41055.4121659194,8654.302044420214,7830.283764877546,8430.850419445916,5191.672971479213,49572.40426355343,8831.622899518203,8196.944262953299,8753.955114503631,5213.627822602747,50387.48905750154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0487584183641378,0.0015426823696200827,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9964051821953285,0.9964051821953285,1.1564476922456142,1.1564476922456142,1.032437967435751,1.032437967435751,1.0729834331876937,1.0729834331876937,1.04075631970358,1.04075631970358,0.49151676751258727,0.6477332311331807,0.48962784379447616,0.4987021010298287,0.4744537237490009,0.4990474066258337,0.6748549873962095,0.505970463789954,0.49881031567218376,0.4839281446073947,25.96853239383657,25.96853239383657,33.14719833013987,33.14719833013987,27.505241317128863,27.505241317128863,29.291427395363158,29.291427395363158,27.866847374005175,27.866847374005175,10.0478624022428,13.810111282135935,10.008837575646865,10.1977180528731,9.700930131429232,10.204975832334128,14.57112100236948,10.351574853998727,10.199991999847654,9.892016416461914,255.96304860328308,255.96304860328308,0.0,284.4033873369812,0.0,255.96304860328308,284.4033873369812,0,0
+2017/08/01 19:00:00,240.94626072621716,0,882.9536005276027,0,0,0,54.74486497833485,0.0,18.032855392098348,0.0,101.68988858149199,0,39.380909295966944,3.0138278914435e-09,27.0977424753112,0,0,0.0,492.5597228896172,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4680.8706590756165,3472.5588377336476,5511.131291171435,5468.305216031588,35194.14096486325,7269.210824744982,6434.6322557488475,7408.009243031592,4250.475815911763,45535.13410867781,7308.676919021953,6610.011827690336,7653.020364729649,4174.2987911393675,45993.57125345492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04700910370170783,0.0014873352730737047,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9756716962582745,0.9756716962582745,1.016481990792962,1.016481990792962,1.0056124125877266,1.0056124125877266,1.0546735893984798,1.0546735893984798,1.0316055617998596,1.0316055617998596,0.4810106443842424,0.6026416463159971,0.48384443030813085,0.48785320845194263,0.4833359985867481,0.4808537809954975,0.6137104158872096,0.4927809176195235,0.4811651095014989,0.48839964191843005,25.106585813302146,25.106585813302146,26.818765646131254,26.818765646131254,26.35656206319088,26.35656206319088,28.47747849868267,28.47747849868267,27.469195723688557,27.469195723688557,9.832761764515212,12.615483503028742,9.890311054496749,9.97231427566534,9.879960178617267,9.829586260802756,12.900561966087551,10.074065575352932,9.835889755558767,9.983545791508746,240.94626072621716,240.94626072621716,0.0,267.7180674735746,0.0,240.94626072621716,267.7180674735746,0,0
+2017/08/01 20:00:00,233.2025926271624,0,819.6218244766735,0,0,0,40.09255839296721,0.0,24.398945138444315,0.0,106.16168237671882,0,39.380909295966944,2.9111004821788815e-09,23.168497420154,0,0,0.0,464.71829935123225,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2163.7948535436026,1306.0964097713224,3078.3932303704423,4769.690636893282,24682.100035091134,4911.484123461613,4189.582074405534,5164.142416942325,2505.146401680825,36472.21035300087,4791.311938509971,4187.785184857371,5320.5971682734435,2267.3635582454735,36524.48949430248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043637273034487625,0.0013806529011227149,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9744191040024863,0.9744191040024863,1.002936168991673,1.002936168991673,0.974266968781077,0.974266968781077,1.032524742382807,1.032524742382807,1.0357387081929126,1.0357387081929126,0.49038284582748437,0.5660264769914037,0.47317577853769427,0.4953318757966582,0.5037196061631013,0.4852630598862147,0.5666983918546342,0.476232536993873,0.4838760095904433,0.5043762211574565,25.05504219971401,25.05504219971401,26.243443434923776,26.243443434923776,25.04878603993376,25.04878603993376,27.509000393615352,27.509000393615352,27.648423846953506,27.648423846953506,10.024417300338044,11.71033748029349,9.675452008422525,10.127151726338539,10.303684612475806,9.919251124625205,11.726423639174484,9.736511178679535,9.890954327313864,10.317632418534473,233.2025926271624,233.2025926271624,0.0,259.1139918079582,0.0,233.2025926271624,259.1139918079582,0,0
+2017/08/01 21:00:00,206.08747245995988,0,809.3287110613832,0,0,0,12.013071606109639,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9629108605723066e-09,25.61043860272207,0,0,0.0,489.9155384484861,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3745.067547687258,8577.54436211157,0.0,702.6978843568332,746.269183599464,0.0,12799.805187643124,0.0,504.27967359651944,737.9958921927764,0.0,12263.200932146534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04308926005207985,0.0013633141523558925,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9138994455664491,0.9138994455664491,0.9089069295972088,0.9089069295972088,0.9628461110871745,0.9628461110871745,1.0125525508465893,1.0125525508465893,1.033562166931263,1.033562166931263,0.48639282175606113,0.5514009250647096,0.47088574919403586,0.4458813763148113,0.5042441780332394,0.46515746723628176,0.5397990257916503,0.4640295713918977,0.40810388294072,0.5007399722743269,22.638107357877956,22.638107357877956,22.4452435994488,22.4452435994488,24.581700240878646,24.581700240878646,26.651163457674244,26.651163457674244,27.553962906429334,27.553962906429334,9.942360415698857,11.365041834681605,9.62997230236499,9.148086323919145,10.314826063437408,9.517199093824487,11.097727394917541,9.495160699048142,8.471001933712131,10.240625413848093,206.08747245995988,206.08747245995988,0.0,228.98608051106652,0.0,206.08747245995988,228.98608051106652,0,0
+2017/08/01 22:00:00,138.64969344650032,0,620.9654338854308,0,0,0,2.0242638881495156,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.858387484988484e-09,20.872471950170468,0,0,0.0,461.2588475789822,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2242.773816287804,0.0,0.0,0.0,0.0,0.0,2737.840181837884,0.0,0.0,0.0,0.0,1909.9994047995592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033060659653296985,0.0010460162262495311,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7315958325762137,0.7315958325762137,0.7162984311427588,0.7162984311427588,0.7878043605318047,0.7878043605318047,0.953591679822877,0.953591679822877,0.8888842801730036,0.8888842801730036,0.3988136320880373,0.4918870641826635,0.4084951256200307,0.3523231664176527,0.4814270795859789,0.362252119954035,0.45483336836275723,0.38755848191342773,0.2932427001576069,0.4732649407196432,16.26606997923055,16.26606997923055,15.795439531396852,15.795439531396852,18.08148827746774,18.08148827746774,24.20695110108818,24.20695110108818,21.681911169113647,21.681911169113647,8.31386550537583,10.055530726837958,8.477700534017913,7.582906076218478,9.84119712591199,7.731277605006369,9.317516820291075,8.128440063050206,6.786603202113255,9.677227331042161,138.64969344650032,138.64969344650032,0.0,154.0552149405559,0.0,138.64969344650032,154.0552149405559,0,0
+2017/08/01 23:00:00,87.52641564350093,0,473.0285901853479,0,0,0,0.20650126994349224,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.638323882762347e-09,11.80893331208083,0,0,0.0,419.7930614165317,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,804.5800268206968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025184392516898198,0.0007968166242649573,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5158269441848603,0.5158269441848603,0.49888141842652267,0.49888141842652267,0.5722585163768319,0.5722585163768319,0.8927744982754832,0.8927744982754832,0.6585052775300895,0.6585052775300895,0.27351918738734293,0.3673537138982161,0.28445606110510596,0.22177646803633133,0.3870284140832407,0.21736443712252776,0.3093545530221154,0.24620734056779345,0.14251606307611522,0.36542670791350984,10.56386563613303,10.56386563613303,10.201486378948104,10.201486378948104,11.860288831531676,11.860288831531676,21.828942597104927,21.828942597104927,14.10854917696787,14.10854917696787,6.553644970174176,7.80914506789118,6.680794980789798,6.020336852237293,8.119840838758975,5.980062956258777,6.989096918938287,6.25812354946882,5.420823524320937,7.779602158030926,87.52641564350093,87.52641564350093,0.0,97.25157293722324,0.0,87.52641564350093,97.25157293722324,0,0
+2017/08/02 00:00:00,40.990250312319034,0,441.3340506123243,0,0,0,0.5334545815803732,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.108133758205964,2.5809587224659683e-09,9.55134097352857,0,0,0.0,388.0985218435081,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.57534444276859,30.103571259388634,61.68428213476888,676.3986698140875,1025.8547898354198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02349695175367366,0.0007434271747597738,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7380646284059345,0.7380646284059345,0.738961648388101,0.738961648388101,0.7548632993334634,0.7548632993334634,0.8786884017661968,0.8786884017661968,0.7960841308988207,0.7960841308988207,0.4940403399266271,0.6315899997994314,0.4722189026027961,0.46635907061803616,0.6065094081056809,0.40631344948302883,0.5409998453053998,0.4044683706588693,0.3529443666996964,0.570504220247744,16.468111994404396,16.468111994404396,16.49627078179924,16.49627078179924,17.001174735824065,17.001174735824065,21.299493947199608,21.299493947199608,18.360286913975315,18.360286913975315,10.100239378415338,13.372285158638377,9.65642107247588,9.540737982021014,12.714494116708977,8.440430938237967,11.125124349431601,8.409070485764403,7.592065828076841,11.817907701070098,40.990250312319034,40.990250312319034,0.0,45.54472256924337,0.0,40.990250312319034,45.54472256924337,0,0
+2017/08/02 01:00:00,23.722108634432473,0,49.27873522363514,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250132107546789,0,0,0.0,13.788382711091,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0026236363643940396,8.301002574402081e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7063992900628457,0.7063992900628457,0.7354349221873724,0.7354349221873724,0.7130116439176167,0.7130116439176167,0.857036231433443,0.857036231433443,0.9084414876109412,0.9084414876109412,0.4626214419019841,0.6248934707279994,0.4202177137429774,0.4465911924914306,0.6905588935443462,0.3834044446271968,0.5485774454204608,0.3585450850138063,0.34280558684298335,0.6334527427459282,15.496259565640202,15.496259565640202,16.385760705560827,16.385760705560827,15.695635143788365,15.695635143788365,20.501570435816134,20.501570435816134,22.427314624939598,22.427314624939598,9.467723621453331,13.193983577869318,8.681448921473432,9.161394889958828,15.026313932696098,8.061371140452295,11.299450136270465,7.675391257188792,7.4446188976258725,13.422228355854429,23.722108634432473,23.722108634432473,0.0,26.357898482702748,0.0,23.722108634432473,26.357898482702748,0,0
+2017/08/02 02:00:00,28.397128094744602,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5777650082717095,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7282993007466059,0.7282993007466059,0.7624800145203727,0.7624800145203727,0.7286740510476022,0.7286740510476022,0.8621602773610726,0.8621602773610726,0.9858523012875654,0.9858523012875654,0.46320061571090365,0.6242693030478706,0.4188708932155923,0.44931690210411546,0.7205230574504669,0.38069926421730316,0.5477144412709285,0.3508463126327247,0.34395985512441307,0.6480731198672687,16.163799950471002,16.163799950471002,17.246852904330254,17.246852904330254,16.175402488150297,16.175402488150297,20.68865196845593,20.68865196845593,25.52775954922953,25.52775954922953,9.478998349570105,13.177463636808113,8.657740587553334,9.212701423299052,15.924405187993997,8.018090891161478,11.279470807420637,7.561195409318586,7.461184824793477,13.819450997676299,28.397128094744602,28.397128094744602,0.0,31.552364549716224,0.0,28.397128094744602,31.552364549716224,0,0
+2017/08/02 03:00:00,23.721869494097657,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5247740704198639,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7204471979923086,0.7204471979923086,0.7538818332449946,0.7538818332449946,0.7157544398498468,0.7157544398498468,0.825465995314286,0.825465995314286,0.992027416044652,0.992027416044652,0.45517818006429145,0.6150610558176509,0.4100717374000495,0.4421227279508324,0.744842413869741,0.36391148458530553,0.5290316482773223,0.332662915645593,0.3284973565786105,0.6590892306561533,15.922082641347103,15.922082641347103,16.969697886817585,16.969697886817585,15.778888911143753,15.778888911143753,19.37303027734538,19.37303027734538,25.785165439945374,25.785165439945374,9.324111883084086,12.935711978023846,8.504760680872351,9.077975291633607,16.681731886793784,7.756483406283579,10.854858428467125,7.301486070119452,7.243967048229393,14.124871205427525,23.721869494097657,23.721869494097657,0.0,26.357632771219617,0.0,23.721869494097657,26.357632771219617,0,0
+2017/08/02 04:00:00,44.052138909399275,0,88.72588128136032,0,0,0,0.011216180409113244,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,4.00766123214627,0.0,0.5251279472097898,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.65332427525412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.779102975907125,0.779102975907125,0.8123485354762954,0.8123485354762954,0.7724128275420924,0.7724128275420924,0.8760930795619081,0.8760930795619081,0.9255030518339207,0.9255030518339207,0.3809445958373936,0.4459100958579202,0.3635885205915956,0.37518612447341815,0.4943047076230809,0.33606062465609615,0.39827864664064055,0.3244733090360924,0.32220234826621325,0.4637602519198839,17.79162994120817,17.79162994120817,18.916395216786086,18.916395216786086,17.570960024390786,17.570960024390786,21.20283197324504,21.20283197324504,23.090238786706593,23.090238786706593,8.022003076114686,9.148624375091558,7.751568380035323,7.930852967225363,10.105742269602203,7.348947757526901,8.304929159935014,7.189101056101265,7.158440670829961,9.489906466088186,44.052138909399275,44.052138909399275,0.0,48.946821010443635,0.0,44.052138909399275,48.946821010443635,0,0
+2017/08/02 05:00:00,75.55198111753573,0,212.9421150752648,0,0,0,0.2863470308359399,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,1.9545992001538806,0.0,0.5249918565900278,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223.930009758059,0.0,194.20876251215506,701.2405670309063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9240310221109903,0.9240310221109903,0.9269615434318833,0.9269615434318833,0.9229422552126649,0.9229422552126649,0.9687937641836627,0.9687937641836627,0.9655317705547972,0.9655317705547972,0.4763823751274035,0.5886969085981117,0.4419475383675616,0.4649474460377703,0.7052823389578119,0.39526116747162127,0.5016258815599706,0.3692905465992913,0.36606784163132955,0.6545629387897643,23.032582134802553,23.032582134802553,23.147450757742234,23.147450757742234,22.989993043435092,22.989993043435092,24.824311967582204,24.824311967582204,24.691080687831317,24.691080687831317,9.739514575001806,12.263903144958746,9.07472224780632,9.51309125595273,15.462767433590699,8.254754716058073,10.25933418982207,7.838998104535264,7.789413806961022,13.99874379171338,75.55198111753573,75.55198111753573,0.0,83.94664568615082,0.0,75.55198111753573,83.94664568615082,0,0
+2017/08/02 06:00:00,86.43218189796623,0,629.1165763267627,0,0,0,0.34733025070882617,0.0,9.400244987969673,0.0,73.80580873715317,0,2.3537375770753894,2.5226431700805924e-09,0.5250603425365091,0,0,0.0,398.42928499522577,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1419.2394298657891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03349463251447904,0.0010597468250732932,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.988607237907704,0.988607237907704,0.9809994679024614,0.9809994679024614,0.991330588098328,0.991330588098328,1.0214608789549668,1.0214608789549668,0.9836123666495485,0.9836123666495485,0.6085540167792781,0.7354823382271557,0.5738098647802112,0.7813435259506107,0.9200663420688114,0.4913604860272963,0.6202228927159545,0.47327787011442946,0.6837552913675733,0.8557102472690172,25.642417033993638,25.642417033993638,25.32649870968484,25.32649870968484,25.7560455719709,25.7560455719709,27.03195837821778,27.03195837821778,25.4347505502746,25.4347505502746,12.767096265274162,16.387242946628717,11.897878289970123,17.865958853033717,22.877725226564493,10.044627808705599,13.070776716571004,9.677484798765803,14.82779554074618,20.453335319944586,86.43218189796623,86.43218189796623,0.0,96.03575766440692,0.0,86.43218189796623,96.03575766440692,0,0
+2017/08/02 07:00:00,146.34405463399668,0,758.6572035254997,0,0,0,2.5471227775300886,0.0,7.999873830418337,0.0,69.33401494192633,0,39.380909295966944,3.013837543932069e-09,27.082133785141153,0,0,0.0,492.4795596814189,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4443.426581320747,0.0,0.6152565389342307,0.49072703920769123,0.33485657317405293,0.2282970771584054,2753.4806860349076,0.5027736892060529,0.4041022073142885,0.27102337094274803,0.11597183857213672,2244.1881794240544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.040391471458145964,0.0012779580017575989,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4708812732918755,0.4708812732918755,0.4006537568564315,0.4006537568564315,0.5377915889992727,0.5377915889992727,1.221638778684325,1.221638778684325,0.7354143801816646,0.7354143801816646,0.2424160812855174,0.2763011800726734,0.25265809174002596,0.5152650503715629,0.49986031171290407,0.18984142846415775,0.22992810946959819,0.2057398979046549,0.4981059265083841,0.4745190411284172,9.62988363283796,9.62988363283796,8.344696255569986,8.344696255569986,11.052066806263511,11.052066806263511,36.31159226996999,36.31159226996999,16.385118585654467,16.385118585654467,6.21958070891877,6.585509543216105,6.325091626547575,10.5516505188872,10.222082156704616,5.747224400833645,6.096893106814775,5.877855705785379,10.185199529416835,9.70223424163207,146.34405463399668,146.34405463399668,0.0,162.60450514888518,0.0,146.34405463399668,162.60450514888518,0,0
+2017/08/02 08:00:00,169.95687110373936,0,809.2921443574824,0,0,0,10.204876809386462,0.0,11.56097227339601,0.0,83.2008179303116,0,39.380909295966944,2.962920449236157e-09,25.609294791715467,0,0,0.0,489.8789717445853,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7863.272915007914,0.0,0.0,0.0,0.0,2414.3045230578578,12666.51175165421,0.0,0.0,0.0,2226.5711282960006,10905.333016928244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043087313213678965,0.001363252555745947,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6460532558004388,0.6460532558004388,0.5074209647595966,0.5074209647595966,0.646840045199264,0.646840045199264,1.24308208855364,1.24308208855364,0.8599943680543007,0.8599943680543007,0.3695504080588415,0.3528612125049175,0.34239703852472103,0.6122328742362344,0.4904617626718744,0.29624888183674336,0.26805176155871907,0.2771447546325286,0.6137845663294222,0.4790504124330824,13.764021231229464,13.764021231229464,10.382552399648972,10.382552399648972,13.78559152981947,13.78559152981947,37.378850380479996,37.378850380479996,20.609440816008785,20.609440816008785,7.843015600644961,7.590838747157349,7.438769024968394,12.862200050517984,10.026047197084097,6.8235521029733945,6.491972192463436,6.595236201726536,12.902489655919126,9.793155562844547,169.95687110373936,169.95687110373936,0.0,188.84096789304374,0.0,169.95687110373936,188.84096789304374,0,0
+2017/08/02 09:00:00,195.89897717170584,0,830.727554648753,0,0,0,17.993831910693128,0.0,11.393746067737203,0.0,106.27511244621549,0,39.380909295966944,2.8583969264525654e-09,20.855377448234616,0,0,0.0,458.0788532670395,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70.82939610968438,0.0,0.0,8691.666853227856,7442.206647270577,1419.053897861241,83.15697092418672,460.60547645144004,3774.9135125937887,18534.248765577777,1150.8738605556482,0.0,215.16927208191143,3866.6392450367002,17395.9867513895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04422855033493753,0.0013993605027546726,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.917173344405666,0.917173344405666,0.662598433332376,0.662598433332376,0.8083353999232327,0.8083353999232327,1.254129907425842,1.254129907425842,0.9813190999184983,0.9813190999184983,0.49201819665078783,0.4517134707866237,0.42258359568884946,0.6790135394056318,0.5129723503598225,0.47307510280260984,0.3954618605724395,0.3986712864764139,0.7064761951003516,0.5105072161504273,22.765125743086685,22.765125743086685,14.223267814665547,14.223267814665547,18.778140629689617,18.778140629689617,37.933456548187635,37.933456548187635,25.339726886901246,25.339726886901246,10.058247715997965,9.258076483727805,8.723284317921213,14.690622321292338,10.501950629174729,9.673447849565562,8.25807973998242,8.311486582590419,15.498567567832197,10.448766452617193,195.89897717170584,195.89897717170584,0.0,217.66553019078427,0.0,195.89897717170584,217.66553019078427,0,0
+2017/08/02 10:00:00,239.52191497049765,0,898.4307271149148,0,0,0,30.83839470449584,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.8047719556660696e-09,18.609025180280256,0,0,0.0,437.056144451841,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3246.6851123053148,309.91496779052636,2098.5057684688127,7548.359019607211,25359.578664741202,3629.5236263200177,1471.1774158043704,2059.586955675512,4345.498760936814,23764.548463283973,3574.733502768554,1229.7247351348533,1903.9144333486415,4560.838917817172,23519.195004874204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04783311738522718,0.0015134064916353383,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.016533348457807,1.016533348457807,0.8611095680776711,0.8611095680776711,0.9389253593076841,0.9389253593076841,1.1722368958439087,1.1722368958439087,1.0324048965048074,1.0324048965048074,0.5101596007300635,0.47587361164041786,0.44081894120374787,0.6321821724665754,0.4891244615769778,0.5147647105740841,0.45168508969799026,0.4377753448750076,0.6531635348745365,0.49177970538942906,26.820960026498284,26.820960026498284,20.65020140839775,20.65020140839775,23.61995861333014,23.61995861333014,33.901992172164185,33.901992172164185,27.503808762747383,27.503808762747383,10.44128794672659,9.72932071860275,9.05379727978027,13.388145960002944,9.998463786214202,10.540785031923704,9.257537689085183,8.997639751467503,13.959928379419821,10.053306867345214,239.52191497049765,239.52191497049765,0.0,266.1354610783307,0.0,239.52191497049765,266.1354610783307,0,0
+2017/08/02 11:00:00,266.804391804651,0,975.7262190600468,0,0,0,42.07188162610812,0.0,16.693521233099577,0.0,147.76209134187457,0,39.380909295966944,2.858396926452566e-09,20.895988304743373,0,0,0.0,461.1161076281568,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6006.542892604584,936.3589697884532,3359.7358249808162,7717.752515493018,32119.15354373921,6284.433341188403,2422.8871078465195,3765.204211241471,4793.5878079508,32753.726206616393,6583.259753999289,2288.9181714547312,3848.236947958912,5002.077696978844,32989.337009483046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051948386629672196,0.0016436107419502846,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1046843564036795,1.1046843564036795,0.9330797822440837,0.9330797822440837,0.9710392058053715,0.9710392058053715,1.1834886295315052,1.1834886295315052,1.0506861925125692,1.0506861925125692,0.5471149421931916,0.46736367152894553,0.4328072486439899,0.6147991927015806,0.48028052036620394,0.5715527082305588,0.46267299026317005,0.4408759284569796,0.6382991158187346,0.48883996183630624,30.728423416320354,30.728423416320354,23.388376230379478,23.388376230379478,24.916264229309277,24.916264229309277,34.44451573201556,34.44451573201556,28.30181192130989,28.30181192130989,11.26561086057744,9.560465422628184,8.906828130541527,12.928890879791354,9.817990342589795,11.843221526722772,9.46872652337376,9.054852550405911,13.552872809825331,9.992605604073816,266.804391804651,266.804391804651,0.0,296.44932422739,0.0,266.804391804651,296.44932422739,0,0
+2017/08/02 12:00:00,260.9489729862427,0,936.6135984168009,0,0,0,56.86830443337272,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.804771955666069e-09,18.568970667877224,0,0,0.0,457.493839497455,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7965.898591652547,2106.204298291777,4708.255336148338,7024.3739810587285,37564.60804694228,9367.821351716453,4206.150690723615,6378.0481079933525,5719.716887489306,46498.508273268366,9900.066916086127,4191.588561978341,6605.223387908518,5917.600610475029,47348.063296183915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04986600173564691,0.0015777255354453342,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0995501753403243,1.0995501753403243,0.9331505691240057,0.9331505691240057,0.969287604831544,0.969287604831544,1.1262996410555874,1.1262996410555874,1.0397224809523749,1.0397224809523749,0.5625150229414715,0.47000108913404176,0.44067285516368376,0.5758521965742903,0.48414127221993,0.5945011890956069,0.474575044885221,0.45673191357822535,0.594996756759471,0.49830124697697187,30.493347870318857,30.493347870318857,23.3911724352795,23.3911724352795,24.84451824684713,24.84451824684713,31.727813166692002,31.727813166692002,27.821767648943535,27.821767648943535,11.626589134986048,9.612463590915127,9.051092745495808,11.947523576541471,9.896359449879597,12.409217692214312,9.703352544891217,9.353892945411047,12.421692349368413,10.18929919390358,260.9489729862427,260.9489729862427,0.0,289.94330331804747,0.0,260.9489729862427,289.94330331804747,0,0
+2017/08/02 13:00:00,273.4187714425974,0,873.0555755075237,0,0,0,71.77944843965132,0.0,16.630907756533322,0.0,129.2730206906943,0,39.380909295966944,2.7502258167479112e-09,16.35448525700122,0,0,0.0,429.4261691007222,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9696.970881391117,3957.477495845689,6662.947398898888,6950.1073728763595,47096.130748234355,11937.105385359491,6231.920060602646,8594.319421770733,7298.166504856571,57292.13069421538,12578.805163784755,6338.582141526038,8924.483968568491,7536.051399989617,58446.10006763613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0464821255181057,0.001470662050678629,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1100193348760665,1.1100193348760665,1.003357450904451,1.003357450904451,1.0089487517015365,1.0089487517015365,1.1249078570668591,1.1249078570668591,1.0609714631909297,1.0609714631909297,0.5952123121955148,0.5336773528081526,0.4857563285442636,0.6058784931631257,0.5115235641484247,0.6256738311665639,0.5466576962365385,0.5042542535427537,0.6233695054459003,0.5247345755794744,30.973637211014903,30.973637211014903,26.26123209475128,26.26123209475128,26.4979598695207,26.4979598695207,31.662996774141817,31.662996774141817,28.75609768584195,28.75609768584195,12.427121736268603,10.959031064356182,9.929334164908653,12.698299044454032,10.470661868541072,13.214661275406328,11.255050164939945,10.315040174930715,13.153678307125489,10.759335246835604,273.4187714425974,273.4187714425974,0.0,303.79863493621934,0.0,273.4187714425974,303.79863493621934,0,0
+2017/08/02 14:00:00,244.70446569047988,0,832.7860495101627,0,0,0,59.18216142002033,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.6947492382966928e-09,14.053452920025034,0,0,0.0,424.6469956159052,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8176.874670240742,4290.5720075464415,5691.708173585168,6294.2031980392485,40165.141246120686,9551.23625490584,5642.882862222092,6560.1175416834685,5753.685395030119,43553.147796184334,10084.747981796541,5853.105237291754,6873.486516990622,5941.117027314357,44663.29040098662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04433814612609985,0.00140282803719248,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0798306724590632,1.0798306724590632,1.0554689743547103,1.0554689743547103,0.986706836145327,0.986706836145327,1.102755472328904,1.102755472328904,1.037376263887643,1.037376263887643,0.5647442677178698,0.5548959105026122,0.4597676518777243,0.5674767436618958,0.4824044798160079,0.5906385441789012,0.5768666502883005,0.4769478107541105,0.5809200647165969,0.49491766089293954,29.598861951262762,29.598861951262762,28.51258801207598,28.51258801207598,25.56329323476524,25.56329323476524,30.640001913733542,30.640001913733542,27.719607615674832,27.719607615674832,11.67969474231171,11.446711797814785,9.412380088621703,11.745082461741376,9.861024850999428,12.312350716976468,11.972250328724286,9.750857041373905,12.071495728052753,10.118512685053915,244.70446569047988,244.70446569047988,0.0,271.89385076719987,0.0,244.70446569047988,271.89385076719987,0,0
+2017/08/02 15:00:00,227.58770714019218,0,832.7813969054902,0,0,0,48.71505656588032,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.694749238296693e-09,14.10444222056556,0,0,0.0,424.64234301123287,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6513.934266792898,5133.92924958978,4965.013826079523,5867.6820501583215,36040.7325140296,7159.503709819585,5399.925775338199,4866.695586738296,4432.7816681577715,33240.93179074459,7566.477871938759,5739.010582542986,5166.816210334109,4568.641003217369,34375.21944684464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044337898417980866,0.0014028201998802622,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.031396168808362,1.031396168808362,1.1279452391890723,1.1279452391890723,0.9702915723605993,0.9702915723605993,1.088789283865806,1.088789283865806,1.0240338799394768,1.0240338799394768,0.5163301912900785,0.586513021232831,0.432966729755954,0.533508765720428,0.453339671115104,0.5370727633769918,0.6184276912728672,0.44875752320424445,0.5440726760941298,0.46599695587924284,27.46013241252028,27.46013241252028,31.804531834227248,31.804531834227248,24.885626409464564,24.885626409464564,30.003565437571794,30.003565437571794,27.142494249811747,27.142494249811747,10.574817415961405,12.209606418784489,8.909726811459691,10.95523442002316,9.289006616318161,11.035759050636742,13.023672296180138,9.202146072826665,11.195516144626978,9.533637763247484,227.58770714019218,227.58770714019218,0.0,252.8752301557691,0.0,227.58770714019218,252.8752301557691,0,0
+2017/08/02 16:00:00,257.7765796098135,0,886.0122329556732,0,0,0,56.04385545786527,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.694749238296693e-09,14.080037623219788,0,0,0.0,424.63765029259935,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7027.578158172964,7235.8785967777985,6039.9123554922935,6219.692169775028,42471.2206983542,7562.8717738182495,6930.155229979348,5740.871248585602,4913.92064197742,37929.67516404597,7872.089329680176,7408.553579127339,6036.743673030515,5048.030024552999,39168.502440019045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047171947557727745,0.0014924875391666436,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0224801489267261,1.0224801489267261,1.2071911420735173,1.2071911420735173,0.9880382155469913,0.9880382155469913,1.096610934242556,1.096610934242556,1.0474770050487425,1.0474770050487425,0.49736729181089173,0.6387408423335573,0.4334176157409265,0.5249424332654663,0.45110025829910944,0.5123915805880703,0.6801026834799297,0.4499136160387557,0.5365720555919743,0.4649640868394544,27.07571669717781,27.07571669717781,35.59962344111162,35.59962344111162,25.618711102314947,25.618711102314947,30.359174356221146,30.359174356221146,28.16084659204442,28.16084659204442,10.169710913274628,13.564831162482704,8.917927888751379,10.763937489147736,9.246442798257078,10.489397113410632,14.722043917946465,9.223976113601282,11.024412886985061,9.513416666712757,257.7765796098135,257.7765796098135,0.0,286.41842178868166,0.0,257.7765796098135,286.41842178868166,0,0
+2017/08/02 17:00:00,272.26260437475065,0,918.8684653268322,0,0,0,63.37730614355422,0.0,17.03716072779536,0.0,133.89528835348938,0,39.380909295966944,2.8047719556660712e-09,18.57193985113993,0,0,0.0,457.4938826637585,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7028.503216753673,8413.324324893581,6936.453482607926,6340.426340309464,45199.12292904638,8356.671019738287,8322.791700380187,7276.912360372654,5382.591846154655,45619.15804806659,8584.521293823394,8858.588530799903,7602.723490312324,5481.7908570095315,46836.619752582876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0489212377059986,0.001547833860102115,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.017386325829161,1.017386325829161,1.257693091740513,1.257693091740513,1.0235188211081978,1.0235188211081978,1.0932202236759432,1.0932202236759432,1.0603802113710912,1.0603802113710912,0.49493875695806455,0.683550464695073,0.46223504601612303,0.5214945939489937,0.46836315814996576,0.5059123691442388,0.7269178514547582,0.48032181724502393,0.5274014962388827,0.4817718045720258,26.857419955569853,26.857419955569853,38.11299809213056,38.11299809213056,27.120347688317807,27.120347688317807,30.204758668988106,30.204758668988106,28.72988019921236,28.72988019921236,10.118952494405434,14.821850053535442,9.460209719519568,10.687839556784937,9.58013558815638,10.350336053287208,16.121081455437434,9.818825222149087,10.818526323219714,9.848185576866953,272.26260437475065,272.26260437475065,0.0,302.51400486083406,0.0,272.26260437475065,302.51400486083406,0,0
+2017/08/02 18:00:00,256.9503542116559,0,909.1503116948296,0,0,0,63.547684729689735,0.0,17.540027511967114,0.0,110.93442390708215,0,39.380909295966944,2.9629204492361583e-09,25.547308763986955,0,0,0.0,483.26608154430005,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5840.910887598716,7627.142473694878,6869.278951050637,5990.515626130576,41424.27010776738,8312.682384792275,8587.334910782194,8305.691407599057,5196.878486021083,50170.89032429679,8448.700867832029,9091.182564352679,8698.090724601343,5215.113721735726,51132.786474822555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04840383600832961,0.001531463631046602,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.005589442427527,1.005589442427527,1.2352191762308287,1.2352191762308287,1.059165033875087,1.059165033875087,1.0769908904765437,1.0769908904765437,1.0601687717668904,1.0601687717668904,0.4982237009495878,0.6976870056335664,0.5023149025522693,0.5217119899482242,0.4939373979528636,0.5043469393493863,0.7344847860653652,0.521875122766012,0.5227754635066918,0.5045248213694711,26.355590016640463,26.355590016640463,36.986071718938504,36.986071718938504,28.676035613634042,28.676035613634042,29.471158936763814,29.471158936763814,28.720507504763532,28.720507504763532,10.187671350021532,15.23644675816071,10.27390849499426,10.692622548337255,10.098097427567879,10.317010017792498,16.356079491340935,10.696213023401498,10.716049810989333,10.320791568083791,256.9503542116559,256.9503542116559,0.0,285.5003935685066,0.0,256.9503542116559,285.5003935685066,0,0
+2017/08/02 19:00:00,241.46707197104965,0,889.3123866982603,0,0,0,54.87109641204156,0.0,18.427435203224093,0.0,101.68988858149199,0,39.380909295966944,3.013837544036051e-09,27.0977424753112,0,0,0.0,498.9185090602749,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265.304935332783,3519.2178742305387,6586.395960771396,5488.685944401159,34751.84616481988,6842.816069916463,7636.748633413536,7909.550380025549,4156.459220990755,45285.410733654004,6846.996176754286,8029.899639557181,8333.781405691914,4067.620067101132,45846.39343947064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04734765018742895,0.0014980466478955539,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9880313534795293,0.9880313534795293,1.04166455444404,1.04166455444404,1.074620569347547,1.074620569347547,1.0608125602871994,1.0608125602871994,1.0503935207935604,1.0503935207935604,0.4902295839643806,0.6852072487266361,0.5259152424411263,0.5106327155692147,0.50141116944651,0.4897766019482669,0.7122481804085198,0.5443909872042348,0.5051791782646838,0.5072723652603834,25.618425298719472,25.618425298719472,27.90648241953393,27.90648241953393,29.364783593087225,29.364783593087225,28.749050333148276,28.749050333148276,28.288940723360028,28.288940723360028,10.02125269854379,14.86999340120866,10.785501622152665,10.451467697643153,10.254796750644857,10.01190530407007,15.672518947399581,11.202831339389022,10.334714151139536,10.379374660456108,241.46707197104965,241.46707197104965,0.0,268.2967466344996,0.0,241.46707197104965,268.2967466344996,0,0
+2017/08/02 20:00:00,228.03600618666064,0,819.5582245267108,0,0,0,35.85680677107655,0.0,23.465253073094516,0.0,106.16168237671882,0,39.380909295966944,2.911110000508795e-09,23.17135466689267,0,0,0.0,464.65469940126957,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1231.5370254039888,868.9725049590238,2475.407470294069,4673.451109277547,21693.813849980746,3844.355375856234,4235.399273031522,4453.03704462331,1995.8205929662015,32946.79260292399,3713.8300497829355,4549.275199516502,5071.57945932195,1758.3005745306818,32916.60152474871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043633886926042705,0.0013805457670118299,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9687524449170183,0.9687524449170183,1.0079451389065772,1.0079451389065772,0.9760014383284447,0.9760014383284447,1.0362856118410866,1.0362856118410866,1.0393817793890883,1.0393817793890883,0.48333250377309334,0.5883871179467179,0.4706307523457983,0.5003598596139376,0.5064052912558246,0.4777519464113645,0.6096231584606665,0.4933934629107196,0.48979975937823833,0.5071044699997177,24.822621753700545,24.822621753700545,26.45538152537071,26.45538152537071,25.120164648123563,25.120164648123563,27.672186557722725,27.672186557722725,27.806920177185006,27.806920177185006,9.87988906826999,12.256188401889759,9.624922083000726,10.232608530938535,10.360851676640195,9.767011506048874,12.794674576987418,10.086787172854358,10.012382948413602,10.375785438038676,228.03600618666064,228.03600618666064,0.0,253.3733402074007,0.0,228.03600618666064,253.3733402074007,0,0
+2017/08/02 21:00:00,209.11405504215892,0,809.2341282725798,0,0,0,15.04089533743729,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9629204492361588e-09,25.6091974535935,0,0,0.0,489.8209556596826,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,307.73409068613034,3795.2832471131883,10646.465799593261,439.85568166621204,1563.995874378824,1220.3307525565624,0.0,15035.436621915575,157.06456346022878,1555.6796846419365,1429.0696032693982,0.0,14540.774655867885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04308422439434585,0.0013631548276553317,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8970190068537129,0.8970190068537129,0.9138447448188369,0.9138447448188369,0.9439396387360572,0.9439396387360572,1.0101094308650365,1.0101094308650365,1.013057037238005,1.013057037238005,0.4546537178136556,0.546421401441917,0.4446112779899186,0.4564369788544982,0.4828287436489883,0.44210170862306386,0.5430973283721985,0.44482455669900667,0.41936484723808376,0.4783217497085604,21.990068571206592,21.990068571206592,22.6359887859321,22.6359887859321,23.819689127849315,23.819689127849315,26.547249025917367,26.547249025917367,26.672648929859108,26.672648929859108,9.314082750178486,11.249596177736976,9.124326914122847,9.34823181780962,9.869644376229715,9.077584920279762,11.17312875026515,9.12831181987059,8.666426721180542,9.778475297048374,209.11405504215892,209.11405504215892,0.0,232.34895004684324,0.0,209.11405504215892,232.34895004684324,0,0
+2017/08/02 22:00:00,137.12744649183188,0,620.8735812910168,0,0,0,0.5046497746984516,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8583969264525654e-09,20.869839108953112,0,0,0.0,461.16699498456825,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2012.5880437760738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03305576935313455,0.001045861500561212,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6545025525344059,0.6545025525344059,0.6613937967973301,0.6613937967973301,0.7203688489313052,0.7203688489313052,0.9416229365492574,0.9416229365492574,0.8326207457202591,0.8326207457202591,0.3161704618281882,0.4615962158808684,0.33759571244269315,0.2965672415130728,0.4446554056273442,0.2794474317913895,0.4375731481074112,0.32982831122778494,0.23948603564350832,0.42694217966401565,13.997067099607818,13.997067099607818,14.189430162711645,14.189430162711645,15.919684132003752,15.919684132003752,23.727285567803477,23.727285567803477,19.6251420106108,19.6251420106108,7.0780650912457475,9.447801053517566,7.370551733983419,6.827487414308436,9.125151235760498,6.621939481027866,8.993923109115144,7.262265144608108,6.190206771906219,8.800984850552709,137.12744649183188,137.12744649183188,0.0,152.36382943536876,0.0,137.12744649183188,152.36382943536876,0,0
+2017/08/02 23:00:00,87.42882629998422,0,462.81924322593085,0,0,0,0.11672103992439953,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6383329489110147e-09,11.80112419858322,0,0,0.0,409.58371445711464,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,451.2428017526984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024640839322647476,0.0007796189800866957,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.40121938951713493,0.40121938951713493,0.39895062512349294,0.39895062512349294,0.473621583836978,0.473621583836978,0.8817190247803067,0.8817190247803067,0.5635518218944089,0.5635518218944089,0.1509465528001087,0.29454840551134126,0.1811050559797053,0.12152735119375084,0.29392318660698413,0.08829371958860575,0.24686736726946956,0.152386868523752,0.10601178444648483,0.26705721765823454,8.354202374388038,8.354202374388038,8.316155792777565,8.316155792777565,9.68433193713446,9.68433193713446,21.412718667787345,21.412718667787345,11.651261199876956,11.651261199876956,5.472134588128071,6.802604687621269,5.679938365129033,5.305924705137031,6.794933611131242,5.161432833584385,6.264895255991377,5.481196877838556,5.23275925092635,6.480889071110894,87.42882629998422,87.42882629998422,0.0,97.1431403333158,0.0,87.42882629998422,97.1431403333158,0,0
+2017/08/03 00:00:00,40.104170370540864,0,451.65869499942454,0,0,0,0.34135797746938273,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.4142021309037303,2.5809676771894806e-09,9.551289263163616,0,0,0.0,398.42316623060833,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,467.8456189749752,709.5429562132537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024046643468375806,0.000760819037446217,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6189595039164332,0.6189595039164332,0.6449961099029458,0.6449961099029458,0.6629001562563641,0.6629001562563641,0.8657773525318382,0.8657773525318382,0.7529149768933098,0.7529149768933098,0.3854995073903733,0.5839170262632258,0.37892078731701806,0.38791024287326303,0.535488681729155,0.28143670209259797,0.49707714413813286,0.31412760829942704,0.2632451580540739,0.49192075878426017,13.03761198810065,13.03761198810065,13.735081208961049,13.735081208961049,14.23175290861677,14.23175290861677,20.821367519566863,20.821367519566863,16.938729902622796,16.938729902622796,8.095104812180978,12.145332939578239,7.989807194999784,8.134153263089743,10.999900533336344,6.645188342512441,10.163633181893928,7.051193251191364,6.438793578782352,10.056228788675597,40.104170370540864,40.104170370540864,0.0,44.56018930060096,0.0,40.104170370540864,44.56018930060096,0,0
+2017/08/03 01:00:00,23.758824838548097,0,45.461463362691894,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5617294148703083,0,0,0.0,9.971110850147756,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0024204019830387055,7.657983158398794e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6355216198080025,0.6355216198080025,0.6824281795564267,0.6824281795564267,0.6517734562054027,0.6517734562054027,0.8420548090621693,0.8420548090621693,0.8818035760872919,0.8818035760872919,0.3852127283179434,0.6200325129237032,0.35638096899398897,0.405939288949897,0.651221040511253,0.2869913318089431,0.552285293911074,0.30088977633949776,0.2880382556585864,0.5847304862915376,13.47787477646014,13.47787477646014,14.789305779504332,14.789305779504332,13.92145565653108,13.92145565653108,19.96084498774337,19.96084498774337,21.415882926114648,21.415882926114648,8.090476162950566,13.065774698245221,7.643036065495963,8.434059622631324,13.906189896394423,6.710990009044508,11.385657504448872,6.881343126171458,6.723538003499897,12.165441696441789,23.758824838548097,23.758824838548097,0.0,26.39869426505344,0.0,23.758824838548097,26.39869426505344,0,0
+2017/08/03 02:00:00,28.360187675796592,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5408245893236936,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6437662027984444,0.6437662027984444,0.6951436062340628,0.6951436062340628,0.651161670623223,0.651161670623223,0.8217483625127682,0.8217483625127682,0.9540955922107508,0.9540955922107508,0.37160689465291147,0.6005502922313631,0.3405887886977522,0.3928234125119035,0.6865343683088145,0.2713426335770625,0.5345063727985344,0.27839504118055974,0.27630759150203665,0.6043261932799322,13.701472726562557,13.701472726562557,15.16121688694534,15.16121688694534,13.90455002337282,13.90455002337282,19.242880087800202,19.242880087800202,24.22727004646579,24.22727004646579,7.874910727027569,12.562217496828737,7.412962434682825,8.214504213336525,14.908642869355617,6.528942456391931,10.977718814664954,6.609707559951161,6.585583355699441,12.658526315499003,28.360187675796592,28.360187675796592,0.0,31.51131963977399,0.0,28.360187675796592,31.51131963977399,0,0
+2017/08/03 03:00:00,23.721937762745892,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248423390681016,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6346541870403577,0.6346541870403577,0.6866603270331573,0.6866603270331573,0.6390717788253133,0.6390717788253133,0.7826238265790546,0.7826238265790546,0.9652176216294801,0.9652176216294801,0.36515243936666136,0.5916421310082294,0.3324327126816216,0.38670537174437336,0.7128671803267937,0.25797351009782954,0.5169877030031585,0.26119801917996366,0.26210317353333923,0.6155340912728837,13.454520902583596,13.454520902583596,14.912315099502536,14.912315099502536,13.573795769815277,13.573795769815277,17.90852793155264,17.90852793155264,24.678271625163575,24.678271625163575,7.7754102130406295,12.337456291916126,7.298288151790004,8.114606049658974,15.691259138980712,6.381588172793883,10.589142847203888,6.416440097621447,6.426302063949635,12.948041307464862,23.721937762745892,23.721937762745892,0.0,26.35770862527321,0.0,23.721937762745892,26.35770862527321,0,0
+2017/08/03 04:00:00,43.48274167447876,0,88.72588128136032,0,0,0,0.3741365717646654,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,3.075463493129489,0.0,0.5250080599504792,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,31.227849423576703,0.0,0.0,36.336344637650896,0.0,0.0,0.0,0.0,0.0,1140.1464403445605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6784438357599962,0.6784438357599962,0.7294257893099089,0.7294257893099089,0.6812110258635644,0.6812110258635644,0.8126190585750701,0.8126190585750701,0.9098164117683393,0.9098164117683393,0.3352809285104485,0.42204749050422097,0.3201019967991392,0.34301634927998226,0.468865030690848,0.24035569913566443,0.38044319999383447,0.24214902617152592,0.24466443141833263,0.4337361924013845,14.67420692359866,14.67420692359866,16.198695048444165,16.198695048444165,14.754072062275,14.754072062275,18.925739312566165,18.925739312566165,22.48030242366542,22.48030242366542,7.338013062590363,8.713783446845994,7.130278287053557,7.447639510833582,9.590028809533877,6.19888759274896,8.01401029883337,6.216888526988711,6.242365100951261,8.923727680723943,43.48274167447876,43.48274167447876,0.0,48.31415741608751,0.0,43.48274167447876,48.31415741608751,0,0
+2017/08/03 05:00:00,75.25669567107592,0,212.9421150752648,0,0,0,0.1972231866778951,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,1.7483700286915773,0.0,0.5250594257505686,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103.24946832166574,80.79035428323817,98.3607049711705,488.916366752203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8784860535585011,0.8784860535585011,0.8946109788084107,0.8946109788084107,0.8805162819710217,0.8805162819710217,0.9472408550252902,0.9472408550252902,0.9485701355764771,0.9485701355764771,0.4055987966728963,0.5645127568606071,0.3790401792073747,0.4193301082524355,0.6788641158305011,0.2962009832519466,0.49001836294179113,0.2970183936055935,0.29894733699313875,0.6208696619967808,21.291947602893032,21.291947602893032,21.898567224939953,21.898567224939953,21.367738829466248,21.367738829466248,23.95172777923979,23.95172777923979,24.005016570411314,24.005016570411314,8.428266828784047,11.674169605272525,7.991701695872081,8.665815497494663,14.686315483226537,6.8229603891092125,10.016892998798994,6.833071536487495,6.857043998552797,13.087781611449643,75.25669567107592,75.25669567107592,0.0,83.61855074563991,0.0,75.25669567107592,83.61855074563991,0,0
+2017/08/03 06:00:00,86.8911384499871,0,629.0197966540156,0,0,0,0.24342674037497194,0.0,10.143746478466992,0.0,73.80580873715317,0,2.1730092390465234,2.5226514900324433e-09,0.5251472524227516,0,0,0.0,398.3325053224789,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,995.9139995184714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03348947989301664,0.0010595837997218966,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0449467634066487,1.0449467634066487,1.0263113975259996,1.0263113975259996,1.0481267756155077,1.0481267756155077,1.0575640878614334,1.0575640878614334,0.9704547060803383,0.9704547060803383,0.48909941334759516,0.6663350583013365,0.4611529905945828,0.5462744595518866,0.9225454456633236,0.3899247253803624,0.5987687772529358,0.393529987186205,0.43937187554971996,0.8333240186466182,28.049967377197035,28.049967377197035,27.240541154100896,27.240541154100896,28.189358033429542,28.189358033429542,28.6051782626554,28.6051782626554,24.89230973427486,24.89230973427486,9.997947873614905,14.328627669723843,9.439202152078451,11.24620579057735,22.974482938528467,8.166973738462517,12.516992702205627,8.226144531867604,9.027047773627956,19.650038993529932,86.8911384499871,86.8911384499871,0.0,96.54570938887454,0.0,86.8911384499871,96.54570938887454,0,0
+2017/08/03 07:00:00,145.11725119358425,0,758.6091149905061,0,0,0,1.4491576269361368,0.0,7.864776316830566,0.0,69.33401494192633,0,39.380909295966944,2.2747687814192616e-05,27.088370264236485,0,0,0.013810155554822038,492.41766099087033,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2502.1547373328576,0.0,0.1875828929884064,0.01875818498579038,0.049706272173114664,0.013599980286587394,1795.0824359508435,0.0,0.03339349719117281,0.0,0.0,959.9893323409775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04038891118892342,0.0012778769966240522,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5344530150704817,0.5344530150704817,0.5194435548877696,0.5194435548877696,0.3399048469003719,0.3399048469003719,1.1353664840097621,1.1353664840097621,0.6096238645356596,0.6096238645356596,0.18664178012958724,0.23797988901971762,0.19056972476172224,0.30156147718658155,0.37425725774148466,0.1456079102249349,0.22936836616712128,0.14670660597433907,0.2728264580069904,0.325561710146825,10.976515129659887,10.976515129659887,10.642814733656337,10.642814733656337,7.403237709405161,7.403237709405161,32.15161192402202,32.15161192402202,12.79469280645337,12.79469280645337,5.722211292130581,6.17524781678101,5.752977584202938,6.889782950767042,7.9162825709277485,5.439298043200537,6.091547170035298,5.4459588419283875,6.5457612693907095,7.2038731401710265,145.11725119358425,145.11725119358425,0.0,161.24139021509362,0.0,145.11725119358425,161.24139021509362,0,0
+2017/08/03 08:00:00,164.25451169368358,0,806.420270846186,0,0,0,4.746183933433333,0.0,11.36563784648343,0.0,83.2008179303116,0,39.380909295966944,2.962929407889391e-09,25.560962684525343,0,0,0.0,487.00709823328884,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5964.240224235773,0.0,0.0,0.0,0.0,190.4836328838169,6407.093509476775,0.0,0.0,0.0,0.0,4195.74921007366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04293441254072169,0.0013584148850341396,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4919063972466127,0.4919063972466127,0.38616715370547644,0.38616715370547644,0.483414549170369,0.483414549170369,1.1862563159946222,1.1862563159946222,0.736438200712725,0.736438200712725,0.28530107028661655,0.29820558795244484,0.26735221714203855,0.4752782284643028,0.4176804289348565,0.2152730791050892,0.23951079251283597,0.16304066159213762,0.46665759882669067,0.3942001383561718,10.05593125011211,10.05593125011211,8.10589431349598,8.10589431349598,9.881558617270116,9.881558617270116,34.57854617634062,34.57854617634062,16.4171441164508,16.4171441164508,6.690828883860718,6.847807102741072,6.484172176969352,9.717405478122245,8.6368493737114,5.961257537044446,6.190453451257213,5.550913239035211,9.546595667005306,8.237204520181137,164.25451169368358,164.25451169368358,0.0,182.50501299298176,0.0,164.25451169368358,182.50501299298176,0,0
+2017/08/03 09:00:00,207.54401095461623,0,829.855986331767,0,0,0,29.8044704137483,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.858405747579315e-09,20.885107155002427,0,0,0.0,457.2072849500537,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1329.0157933571245,0.0,510.5413960171886,7643.529653006582,16195.244205770538,3979.6384176923234,2160.9220877682355,2755.002174678679,3999.1419622194485,27307.806452173376,3691.9652111304363,1945.8198234493316,2336.135544070052,4132.728422956201,25969.0088793197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04418214739216472,0.0013978923459908603,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8427470817019451,0.8427470817019451,0.6897774857680015,0.6897774857680015,0.7762733108175343,0.7762733108175343,1.2027323537912877,1.2027323537912877,0.903988906712881,0.903988906712881,0.415232315336452,0.40141694098354364,0.3545800371579096,0.5729916195343804,0.4499456556915308,0.3979365325829621,0.37431018156240314,0.3252623040657824,0.5888794423762311,0.4436836591464542,19.985625304516958,19.985625304516958,15.003411977937503,15.003411977937503,17.698062776792668,17.698062776792668,35.381087545309256,35.381087545309256,22.2562429460813,22.2562429460813,8.59407884872165,8.357525683523647,7.616262726019741,11.87803904455474,9.224581924320631,8.299220937290784,7.917111756235002,7.1998045086376266,12.268450749202017,9.107018005175462,207.54401095461623,207.54401095461623,0.0,230.60445661624024,0.0,207.54401095461623,230.60445661624024,0,0
+2017/08/03 10:00:00,250.69254284009793,0,902.1186283475353,0,0,0,42.01622243311045,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.8047806987571145e-09,18.601825321265867,0,0,0.0,440.7440456844615,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5172.648859111074,1588.6630677126616,2941.0346041049215,8452.742148942234,30020.83159844369,6076.393497216102,3035.476676868024,3665.9625791722597,5293.038844935282,30787.84803905798,6121.630791161814,2929.7814594855777,3475.8975067563956,5559.051443136659,30790.188718658046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048029463978504924,0.0015196187609817806,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0069581451351397,1.0069581451351397,0.8223536228553159,0.8223536228553159,0.8788422955947272,0.8788422955947272,1.2182813875323582,1.2182813875323582,0.9676299765334131,0.9676299765334131,0.47282357813970116,0.41724858862160835,0.36802248284648725,0.5824081947383484,0.42401002430730633,0.4900578464121056,0.41323295435273133,0.36512282169972515,0.6126146150087678,0.42999597918910554,26.413545242479955,26.413545242479955,19.264030013658257,19.264030013658257,21.305234366831343,21.305234366831343,36.14562276296301,36.14562276296301,24.776731255494028,24.776731255494028,9.668442640176607,8.629286113190105,7.819434949301879,12.10811060287233,8.748623563283743,10.017707809531046,8.559338941071289,7.7749577257186075,12.87210223858763,8.855910626248757,250.69254284009793,250.69254284009793,0.0,278.54726982233103,0.0,250.69254284009793,278.54726982233103,0,0
+2017/08/03 11:00:00,291.4014338686467,0,975.6561388793647,0,0,0,63.2369307532355,0.0,16.693521233099577,0.0,147.76209134187457,0,39.380909295966944,2.8584057475793152e-09,20.896006039157278,0,0,0.0,461.0460274474748,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9653.220186499471,3612.5893365493125,5865.633764870972,8351.36096040285,44757.152930240794,9705.748365133319,4909.021488954149,6476.618146149353,6712.294883566397,45627.478362051384,10135.572855131479,4933.509587271869,6540.600598653575,7031.2087291120115,46289.398001406465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05194465550894382,0.0016434926918912447,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0895935295922732,1.0895935295922732,0.897442983929209,0.897442983929209,0.9356635808453375,0.9356635808453375,1.1850963338517133,1.1850963338517133,1.0151037547185584,1.0151037547185584,0.5342771650628905,0.4485220172025133,0.4029340210877632,0.5830856003970312,0.4477949453157685,0.5672446165924275,0.4565944152504506,0.4151837583254853,0.613152027625826,0.4595020718946335,30.040033124151464,30.040033124151464,22.006203485703878,22.006203485703878,23.490570102495283,23.490570102495283,34.52234413896157,34.52234413896157,26.75991400961678,26.75991400961678,10.972549041697405,9.197706154858636,8.383102416352102,12.124809739511036,9.184013955400445,11.739515110142307,9.351253266445383,8.59323311646527,12.886053204853269,9.407247534413713,291.4014338686467,291.4014338686467,0.0,323.77937096516297,0.0,291.4014338686467,323.77937096516297,0,0
+2017/08/03 12:00:00,282.65438066421154,0,936.5432113598948,0,0,0,75.03724281334397,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.8047806987571158e-09,18.5686885630598,0,0,0.0,457.423452440549,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11123.481558719148,4390.116134227342,7004.321616699859,7471.521014473818,49378.193657470074,12241.412432160032,6132.675737325502,8618.460551053118,7232.34451433498,56795.45667793261,12900.507391827081,6257.252216537709,8886.91626496786,7528.287812865388,57985.9675739304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04986225427660107,0.0015776069684533183,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1174993442905372,1.1174993442905372,0.9282473596639513,0.9282473596639513,0.963180984243043,0.963180984243043,1.1275316593104392,1.1275316593104392,1.0295228002403678,1.0295228002403678,0.5809876004601578,0.4822311242984361,0.44266084929861504,0.5699286060231885,0.4815908876043522,0.6212949876536327,0.4983605166068964,0.46389690983857995,0.595443868243542,0.4989522437498849,31.3190515863773,31.3190515863773,23.197959820288133,23.197959820288133,24.595323454686806,24.595323454686806,31.785242173588173,31.785242173588173,27.379117928855337,27.379117928855337,12.07315533787633,9.857505121347103,9.08797575781881,11.804030825121643,9.844517291152641,13.09897419161895,10.190543555372642,9.492572175247759,12.432956391488077,10.202975144393008,282.65438066421154,282.65438066421154,0.0,314.06042296023503,0.0,282.65438066421154,314.06042296023503,0,0
+2017/08/03 13:00:00,283.94266767287485,0,872.9720773140957,0,0,0,78.87168047915337,0.0,16.630907756533322,0.0,129.2730206906943,0,39.380909295966944,2.7502344754638284e-09,16.35417424532231,0,0,0.0,429.3426709072941,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11977.263551215257,5365.048233609559,7992.118283323708,7100.25030146707,53991.04335353576,12628.347240800169,6688.678928393776,8928.860410146228,7192.912042844296,56913.701295952094,13373.784957824073,6906.18534615347,9303.735471985201,7474.825715742607,58401.28007377908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04647768001243994,0.0014705213979781372,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.131192715096958,1.131192715096958,0.9949643376701964,0.9949643376701964,0.9958435522636282,0.9958435522636282,1.1148346617169478,1.1148346617169478,1.050096805030409,1.050096805030409,0.5977692980710784,0.5205335660296749,0.4616881844540106,0.5694611917886704,0.4917605248586268,0.6392248356906961,0.5468190635079727,0.4868771508108903,0.5941200795689664,0.5096162029448664,31.956190666862327,31.956190666862327,25.908100607004656,25.908100607004656,25.944967157639,25.944967157639,31.195786799289394,31.195786799289394,28.275894833890476,28.275894833890476,12.491680659197968,10.6667202122279,9.449586372337109,11.792773002900887,10.052909608972342,13.577943472988522,11.258776119270578,9.95228424255977,12.399631478121975,10.429607899731067,283.94266767287485,283.94266767287485,0.0,315.49185296986093,0.0,283.94266767287485,315.49185296986093,0,0
+2017/08/03 14:00:00,260.75415652663816,0,832.7026375422635,0,0,0,71.77310754199725,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.694757806179724e-09,14.080222431752116,0,0,0.0,424.56358364800593,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11235.839841690295,6423.562400095567,7896.311980453899,6621.364860234595,52085.06185212891,11010.873473709902,6837.069805999738,7546.2820781073415,6362.2137086619605,48128.206064783706,11753.200923072081,7214.3358403119455,7985.305694243917,6645.059782963016,49731.41082113276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04433370521114509,0.0014026875297388844,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1158386785184573,1.1158386785184573,1.1003701548021863,1.1003701548021863,1.0102670604936035,1.0102670604936035,1.1014887779967202,1.1014887779967202,1.0526014255225338,1.0526014255225338,0.5836353286399847,0.5762745260566419,0.4611279126938489,0.5570955707664398,0.47870955442190755,0.6211015614362878,0.6135318993329022,0.48698193393620454,0.5804882477502025,0.4964951749191575,31.24220356914229,31.24220356914229,30.530831678756954,30.530831678756954,26.55394679926181,26.55394679926181,30.582004302041554,30.582004302041554,28.38611687553309,28.38611687553309,12.138376059311454,11.95781220081112,9.43871587495481,11.498384459581814,9.786285493425126,13.093883145850967,12.895922048094349,9.954432564701776,12.06088902271263,10.15145361953148,260.75415652663816,260.75415652663816,0.0,289.7268405851535,0.0,260.75415652663816,289.7268405851535,0,0
+2017/08/03 15:00:00,249.00907934639125,0,832.6995765630842,0,0,0,66.70035367889818,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.694757806179724e-09,14.108542111292518,0,0,0.0,424.56052266882676,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10148.548687843762,7424.81458328276,8017.785621016939,6445.7782546577455,51674.355632463965,9253.215026781141,6836.527777970087,6628.982443695694,5794.97019599896,41380.487313192876,9751.975311034254,7237.606055631566,6980.080808103805,6007.177639794827,42809.56351721639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04433354224234629,0.001402682373519689,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0761511506073451,1.0761511506073451,1.14575522225118,1.14575522225118,1.0152094197109502,1.0152094197109502,1.0927985302636314,1.0927985302636314,1.054894913695793,1.054894913695793,0.5438487227594168,0.5903679360275925,0.45142987516620375,0.5368824840598162,0.45761575361109347,0.5702014826461972,0.6291144211767616,0.47393217498507445,0.5559803361814967,0.46965995477540173,29.43345051603562,29.43345051603562,32.64046560342605,32.64046560342605,26.764423463494595,26.764423463494595,30.185581980127026,30.185581980127026,28.487245809789016,28.487245809789016,11.190372043041961,12.305588706827976,9.252694180915498,11.0314459943624,9.370880245503983,11.810607527878261,13.306143796112295,9.690523619851874,11.472160041256714,9.60572105635653,249.00907934639125,249.00907934639125,0.0,276.6767548293236,0.0,249.00907934639125,276.6767548293236,0,0
+2017/08/03 16:00:00,272.50497340270624,0,885.9320212594795,0,0,0,67.37083631499347,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.694757806179724e-09,14.049475356530078,0,0,0.0,424.5574385964057,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9805.958999358401,8949.561949368052,8396.61961762875,6478.390868666826,55300.85749676834,8642.06739791097,7458.008479078227,6642.1498503289295,5529.562021549099,41652.19343838694,8985.552271473895,7930.778100459132,6954.564898354865,5705.150848695767,42819.92792799395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04716767702760905,0.001492352422570493,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0601968211190815,1.0601968211190815,1.2295770669134183,1.2295770669134183,1.0241269327217124,1.0241269327217124,1.0890490162401425,1.0890490162401425,1.0793892428196785,1.0793892428196785,0.5108600377372357,0.6295585536032186,0.44013153066972927,0.5146419766666042,0.44977866481314716,0.5315498646861354,0.673546515121242,0.45998042060058225,0.5317293130377503,0.4608608607720033,28.72175078449908,28.72175078449908,36.70524543772811,36.70524543772811,27.146496394479442,27.146496394479442,30.01534029109409,30.01534029109409,29.57899265735773,29.57899265735773,10.456362306132334,13.317990348829952,9.0410790398075,10.538121369947774,9.221424919604118,10.911209479656819,14.53367515894304,9.416494212413227,10.915235542415317,9.433539240864334,272.50497340270624,272.50497340270624,0.0,302.7833037807847,0.0,272.50497340270624,302.7833037807847,0,0
+2017/08/03 17:00:00,286.17052182297823,0,918.8046130397231,0,0,0,74.14386551891084,0.0,16.7356839618177,0.0,133.89528835348938,0,39.380909295966944,2.8047806987571145e-09,18.582799487534214,0,0,0.0,457.43003037664937,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9916.518981800826,9873.955713962685,9295.084482740076,6531.862019881457,58095.71971364016,9472.842725056298,8479.62930035901,8187.164767459697,5937.259250792865,48358.52447601314,9733.412324463461,8991.036563319347,8526.095575100844,6085.062288381768,49431.56792617989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04891783816293709,0.0015477263009293259,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0598410575376893,1.0598410575376893,1.2600477583950793,1.2600477583950793,1.0579440425826834,1.0579440425826834,1.0851928390801273,1.0851928390801273,1.0906530816548745,1.0906530816548745,0.5048906052729937,0.6619097576582923,0.4623928120264443,0.5106555917152061,0.4601649291825475,0.5229462534033887,0.7072218234264616,0.48555323262489825,0.5256122759537494,0.47113197127071216,28.705983746148448,28.705983746148448,38.23182108510931,38.23182108510931,28.621986627843825,28.621986627843825,29.840762002351298,29.840762002351298,30.08811147288678,30.08811147288678,10.328571976536182,14.203915554834694,9.463276880024537,10.451960156388495,9.42006347254356,10.719816703959296,15.520957896351575,9.925181353617887,10.778781411378844,9.63485139683955,286.17052182297823,286.17052182297823,0.0,317.9672464699758,0.0,286.17052182297823,317.9672464699758,0,0
+2017/08/03 18:00:00,275.77397065033006,0,896.0153115255108,0,0,0,79.48532101119686,0.0,16.932384527434575,0.0,110.93442390708215,0,39.380909295966944,2.9629294078893927e-09,25.608956703232344,0,0,0.0,470.1310813749811,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9512.701135237325,9646.273019864153,9863.730844452644,6319.507406663635,58101.05504367395,10359.965514690888,9197.194630335263,9842.958502710317,6349.172863904591,56713.88829903085,10560.90483212278,9689.993276860805,10251.431575701985,6466.937175926706,57585.97478495987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047704518870132884,0.0015093377242583143,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0448617291631537,1.0448617291631537,1.244197291265328,1.244197291265328,1.088667425123925,1.088667425123925,1.0717767626767554,1.0717767626767554,1.0898503680568208,1.0898503680568208,0.5022794071788637,0.6766924797446654,0.4939212229168767,0.5103021392917014,0.48409594717451704,0.5140678532347707,0.7165891506093968,0.519158167533133,0.5189316971199884,0.49359664220554683,28.046245077841746,28.046245077841746,37.43469040874114,37.43469040874114,29.998041827745965,29.998041827745965,29.23741974946826,29.23741974946826,30.051683899603276,30.051683899603276,10.273157188734046,14.623831424079711,10.097760909356495,10.444353851464285,9.895435669238168,10.525669972086206,15.804289729849813,10.636564279978629,10.631606712477407,10.091010464562117,275.77397065033006,275.77397065033006,0.0,306.4155229448112,0.0,275.77397065033006,306.4155229448112,0,0
+2017/08/03 19:00:00,261.1914042599812,0,900.9943518277003,0,0,0,71.55803330964461,0.0,18.032855392098348,0.0,101.68988858149199,0,39.380909295966944,3.013846562416737e-09,27.0977424753112,0,0,0.0,510.60047418971493,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6929.828116666262,5283.263618709283,7598.164850965101,5804.743960031293,44738.828129308495,9718.243633197677,8418.459219699178,9499.705391197502,5978.819747111267,56905.11261924296,9818.505139217285,8769.292309989933,9869.712059405456,6038.613332587315,57405.67540345284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047969606663829795,0.0015177249172694497,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9792563505208398,0.9792563505208398,1.0252462720275222,1.0252462720275222,1.0288646073670389,1.0288646073670389,1.0516160054243133,1.0516160054243133,1.0363238748421204,1.0363238748421204,0.4920382409889692,0.6369593558653627,0.4947134513724477,0.5018042256280165,0.4960959442171367,0.49626861283774404,0.6605825510867203,0.5134222337298543,0.5032547819413201,0.5009879094885988,25.254427963045856,25.254427963045856,27.1946636770533,27.1946636770533,27.35068488251737,27.35068488251737,28.342724009940298,28.342724009940298,27.673849477907538,27.673849477907538,10.058663088559499,13.516654794693977,10.114256332305487,10.263104589985588,10.143106904614584,10.146716041916932,14.16667809033585,10.511685022940682,10.293822088745912,10.245857974382673,261.1914042599812,261.1914042599812,0.0,290.2126713999791,0.0,261.1914042599812,290.2126713999791,0,0
+2017/08/03 20:00:00,249.43458769882128,0,820.520981400433,0,0,0,56.146278247162755,0.0,24.514893985417,0.0,106.16168237671882,0,39.380909295966944,2.9111188934501625e-09,23.230823790644656,0,0,0.0,465.6174562749917,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4621.895453841411,3224.0109457325,4922.069591974711,5094.310029531247,34683.31405368143,7744.363324312398,6262.8064830985695,7270.313888006576,4586.18295613544,47700.80354349342,7733.709955935275,6406.372658149561,7559.590106363922,4540.3534047696485,47835.68699372831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04368514481512012,0.0013821675308925432,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9466489991519341,0.9466489991519341,0.9807586940320013,0.9807586940320013,0.9505246357173591,0.9505246357173591,1.0274675035659973,1.0274675035659973,1.0089854250392574,1.0089854250392574,0.47540580545933664,0.5636428713338735,0.45187765026521565,0.48102295963266634,0.48587998602110816,0.47405768364815803,0.5717548018795588,0.46399480204038007,0.4758952692904759,0.487129108290845,23.928023645557417,23.928023645557417,25.316536726924625,25.316536726924625,24.083496044747008,24.083496044747008,27.29038491475586,27.29038491475586,26.499516456470474,26.499516456470474,9.719957354824146,11.653430074036152,9.261193993633583,9.83301111630665,9.931863527673897,9.69302683444991,11.848106190408814,9.494482197880586,9.729754435356526,9.957450815808727,249.43458769882128,249.43458769882128,0.0,277.1495418875792,0.0,249.43458769882128,277.1495418875792,0,0
+2017/08/03 21:00:00,234.80878590367388,0,809.2068408516393,0,0,0,40.78709165721044,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9629294078893927e-09,25.55773199533527,0,0,0.0,489.7936682387421,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2890.265751715204,1879.8998226921185,3305.364226647398,4360.778224595688,27167.6852376705,5214.913530111439,4413.768062016094,4870.339505888229,2952.177093080191,34768.49172227797,5076.297357507923,4387.804411069551,4980.417919928343,2799.1086106734947,34520.81219126518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043082771591843004,0.0013631088619968285,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9466583924820744,0.9466583924820744,0.9721076264114452,0.9721076264114452,0.9443074244845417,0.9443074244845417,1.0088840314419536,1.0088840314419536,1.0071053612438012,1.0071053612438012,0.47150023231816823,0.5475244201747819,0.44799171372076674,0.47668202301191054,0.48058422128054484,0.46321415965245155,0.5428612177666051,0.44812576127006665,0.46495447308652077,0.47783586343064804,23.928399745220403,23.928399745220403,24.960085485557826,24.960085485557826,23.834378110302325,23.834378110302325,26.495212964280114,26.495212964280114,26.419783048515185,26.419783048515185,9.642153671666321,11.27507598304257,9.18771724919526,9.745523702928779,9.824131839981007,9.479262181229103,11.167715443310968,9.190241054226561,9.513228668386546,9.768698941241084,234.80878590367388,234.80878590367388,0.0,260.89865100408207,0.0,234.80878590367388,260.89865100408207,0,0
+2017/08/03 22:00:00,140.61326613564452,0,620.8166281845284,0,0,0,3.990327616560027,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8584057475793144e-09,20.869980910904154,0,0,0.0,461.11004187807987,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2340.073140783212,0.0,0.0,190.1163819645168,0.0,0.0,5761.68684879879,0.0,0.0,0.0,0.0,4965.474510352065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033052737127559566,0.0010457655630576551,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7678154596362153,0.7678154596362153,0.7720751770545462,0.7720751770545462,0.8000167018704344,0.8000167018704344,0.9470966610752821,0.9470966610752821,0.9064003502894371,0.9064003502894371,0.4318408980046003,0.5288769869965936,0.42327907400551634,0.39545284376578876,0.478293290674565,0.40106213587827305,0.51104438919487,0.411515093984927,0.35407279887330884,0.47012493359561935,17.420424806523457,17.420424806523457,17.559873404316633,17.559873404316633,18.493723165483644,18.493723165483644,23.94595146217418,23.94595146217418,22.348792857018097,22.348792857018097,8.889287387811777,10.851406466294776,8.735627973341352,8.257930315245886,9.777902401571765,8.351558169062983,10.460333327782749,8.529627053938071,7.608746840662533,9.614912622699961,140.61326613564452,140.61326613564452,0.0,156.23696237293836,0.0,140.61326613564452,156.23696237293836,0,0
+2017/08/03 23:00:00,87.5008715196039,0,452.8348850719041,0,0,0,0.19113857423524355,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.638341419385064e-09,11.798751883892052,0,0,0.0,399.5993563030879,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,743.076557584156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024109264699046444,0.0007628003295340374,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5001742291863011,0.5001742291863011,0.49070207421334194,0.49070207421334194,0.5404900304457044,0.5404900304457044,0.8847632564253666,0.8847632564253666,0.6328269627356633,0.6328269627356633,0.2507573528625481,0.35459219530866826,0.24711209044206525,0.20296325915304272,0.3509981960258254,0.20038104200676005,0.30991303706305867,0.21945977491878643,0.13685738235756673,0.3285454638835168,10.228695704392607,10.228695704392607,10.031012090220884,10.031012090220884,11.113485182583517,11.113485182583517,21.52683101993587,21.52683101993587,13.405433376005746,13.405433376005746,6.305177450857457,7.616443010952494,6.26741070573155,5.854279335679067,7.563423909231062,5.832643238808856,6.9963128445216825,5.999087915017512,5.388041969366597,7.244627123156619,87.5008715196039,87.5008715196039,0.0,97.22319057733768,0.0,87.5008715196039,97.22319057733768,0,0
+2017/08/04 00:00:00,40.587297329011875,0,461.7506670810496,0,0,0,0.2783724491394462,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,0.9590029666412148,2.5809760435601192e-09,9.55260091422706,0,0,0.0,408.5151383122334,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,616.4703160255267,381.8478702279052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024583947537192525,0.0007778189636517467,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7098356686929789,0.7098356686929789,0.7243760446240162,0.7243760446240162,0.7241091381075636,0.7241091381075636,0.8682763611295193,0.8682763611295193,0.7805983578548766,0.7805983578548766,0.47110421852270545,0.6216456060508374,0.428410413628037,0.4467504478336557,0.5746467670929714,0.3848619483815395,0.5407574115704964,0.3685594411587156,0.3437453478761803,0.5353362065833377,15.599637906288876,15.599637906288876,16.04269573906177,16.04269573906177,16.034480846743847,16.034480846743847,20.913375418523387,20.913375418523387,17.841214643072576,17.841214643072576,9.634301322469952,13.10820672934706,8.827342615527982,9.164383793998198,11.918199944144149,8.084819307790681,11.119588138477994,7.827710549842578,7.458101957687717,10.996454720696462,40.587297329011875,40.587297329011875,0.0,45.096997032235414,0.0,40.587297329011875,45.096997032235414,0,0
+2017/08/04 01:00:00,23.774688269545337,0,41.96293485656272,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5775928458675431,0,0,0.0,6.472582344018575,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0022341377339890004,7.068656058094715e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7106399790661336,0.7106399790661336,0.7472527536460578,0.7472527536460578,0.69970497801497,0.69970497801497,0.8627354873922363,0.8627354873922363,0.8971730709164003,0.8971730709164003,0.46969263308013687,0.6473852392249557,0.40252998974976645,0.4565497386301901,0.6671144093334987,0.39144268635842533,0.5819806353320767,0.3477198651443212,0.3630201667919614,0.6095107651605821,15.623907928315234,15.623907928315234,16.758175046311436,16.758175046311436,15.296334041171974,15.296334041171974,20.70972105074111,20.70972105074111,21.995930802702205,21.995930802702205,9.606366727173906,13.800554090711714,8.376281155238871,9.350395744383803,14.350678879608779,8.191819322735697,12.097580827561302,7.515540754518398,7.74292968019914,12.79177307914297,23.774688269545337,23.774688269545337,0.0,26.416320299494817,0.0,23.774688269545337,26.416320299494817,0,0
+2017/08/04 02:00:00,28.34411959353008,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5247565070571857,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7081791287022062,0.7081791287022062,0.7492592540116438,0.7492592540116438,0.6903628121833787,0.6903628121833787,0.845328545825526,0.845328545825526,0.9718088509455036,0.9718088509455036,0.4456733638522815,0.6193674965549537,0.37813182412414503,0.4334115149818183,0.6983854373177569,0.36507410696950415,0.5559713526689624,0.31832408665075923,0.33931065278854583,0.6212249768803056,15.549739787772737,15.549739787772737,16.822000477306403,16.822000477306403,15.020564585808472,15.020564585808472,20.07820656919283,20.07820656919283,24.947826752066945,24.947826752066945,9.1441903376748,13.04831447192548,7.977303283129061,8.917816864972266,15.257154190239646,7.774213562104904,11.471949015509495,7.106585435881598,7.394805205310448,13.097131296079539,28.34411959353008,28.34411959353008,0.0,31.493466215033422,0.0,28.34411959353008,31.493466215033422,0,0
+2017/08/04 03:00:00,23.721945113666344,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248496899885533,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7057363045207569,0.7057363045207569,0.7473858271142803,0.7473858271142803,0.6856404939341463,0.6856404939341463,0.8169544927244372,0.8169544927244372,0.979377174775425,0.979377174775425,0.44695388688149723,0.620501111649616,0.3779214598234618,0.4357379324111184,0.723628959521103,0.3560262198598268,0.5459901187676565,0.3076737338539471,0.3316576163598197,0.6337053213627111,15.476373242654148,15.476373242654148,16.762402682703495,16.762402682703495,14.882602352593224,14.882602352593224,19.07590954974708,19.07590954974708,25.259419770605092,25.259419770605092,9.168203524226897,13.078089439875242,7.973973802474831,8.96026974476709,16.019709549875614,7.637751312298775,11.239647858958875,6.967459444410082,7.2875372546972415,13.429011992328313,23.721945113666344,23.721945113666344,0.0,26.357716792962602,0.0,23.721945113666344,26.357716792962602,0,0
+2017/08/04 04:00:00,43.97235182082205,0,88.72588128136032,0,0,0,0.378086015557829,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,3.561117032041416,0.0,0.5250152235886859,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.37605878788726,0.0,0.0,4.890577639021751,0.0,0.0,0.0,1183.2249149607883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.746042996279577,0.746042996279577,0.7862658449110539,0.7862658449110539,0.7269298746612317,0.7269298746612317,0.8478975696673795,0.8478975696673795,0.9166351132612155,0.9166351132612155,0.371977663862499,0.4417291159725011,0.3458293427997735,0.3671087753013909,0.4797364320666386,0.32695439017785183,0.39901594619206493,0.2876624594401168,0.31318458492294793,0.4478329616857261,16.719776846323995,16.719776846323995,18.030003464035218,18.030003464035218,16.121452894467197,16.121452894467197,20.1706173416962,20.1706173416962,22.744214185361642,22.744214185361642,7.880680366780652,9.070668274202063,7.488135626558744,7.805381137758857,9.806997635474858,7.222848247753134,8.31724813110317,6.719028542566903,7.038848278408949,9.184729315425656,43.97235182082205,43.97235182082205,0.0,48.85816868980228,0.0,43.97235182082205,48.85816868980228,0,0
+2017/08/04 05:00:00,75.56113553278294,0,212.9421150752648,0,0,0,0.24863594217930454,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.00139006886135,0.0,0.5250664917864095,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181.91021037825146,0.0,109.86189788137762,677.7621263967025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9063334862562147,0.9063334862562147,0.9123261070978879,0.9123261070978879,0.8998201252975924,0.8998201252975924,0.9541449282290675,0.9541449282290675,0.9528352202226251,0.9528352202226251,0.4673814854761776,0.5894825770647888,0.4159788201045642,0.45741023472712067,0.6891787743933272,0.39013406663777667,0.5128356869860838,0.3432828759699053,0.36765449323271815,0.6362724151130726,22.346223475962034,22.346223475962034,22.577219799578202,22.577219799578202,22.096803632505114,22.096803632505114,24.229259928503467,24.229259928503467,24.176467597392204,24.176467597392204,9.560815629131952,12.283487389296837,8.60709366815874,9.36692719651191,14.985882451394161,8.17039432715309,10.498995296123795,7.451462031228786,7.813770591022873,13.498114773439482,75.56113553278294,75.56113553278294,0.0,83.95681725864772,0.0,75.56113553278294,83.95681725864772,0,0
+2017/08/04 06:00:00,86.56376321173975,0,628.9318886944359,0,0,0,0.2861241442194126,0.0,9.482244697421187,0.0,73.80580873715317,0,2.4644314273148162,2.52265922724951e-09,0.525154203108493,0,0,0.0,398.24459736289884,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1169.7304541672647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0334847996081346,0.0010594357187706563,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.026444993071405,1.026444993071405,1.0080777307569297,1.0080777307569297,1.0361144789266732,1.0361144789266732,1.0492274397811991,1.0492274397811991,0.9739660700439426,0.9739660700439426,0.5640583413832174,0.7008758444771491,0.5059302567642356,0.6744598138113718,0.9342230442158886,0.48265709976431065,0.6299842845038576,0.44099317041551334,0.6094941174790611,0.8527479382178775,27.246298395974932,27.246298395974932,26.46100456994816,26.46100456994816,27.664749732680974,27.664749732680974,28.237689221829356,28.237689221829356,25.036415012779997,25.036415012779997,11.663331483298592,15.331162394116205,10.350717470420904,14.559804119341365,23.433561496901007,9.86615625028557,13.329354102468258,9.057024036157259,12.791343356263127,20.345839478837732,86.56376321173975,86.56376321173975,0.0,96.18195912415528,0.0,86.56376321173975,96.18195912415528,0,0
+2017/08/04 07:00:00,145.8645840918773,0,758.5465807122044,0,0,0,2.0607380399472888,0.0,7.999873830418337,0.0,69.33401494192633,0,39.380909295966944,9.015618516335362e-06,27.08903896799991,0,0,0.005472696109992346,492.36346417201344,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3916.5577718530326,0.0,0.20865712480360635,0.08241028923193798,0.027412839928341554,0.0,2239.3739339110666,0.22023256896116408,0.11510614318974022,0.03896607023304301,0.0,1479.0490546717856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.040385581817627074,0.0012777716576369994,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4039980208529182,0.4039980208529182,0.5918938835793339,0.5918938835793339,0.46197669243010464,0.46197669243010464,1.2088688368002924,1.2088688368002924,0.6852932727420887,0.6852932727420887,0.25012832778757255,0.31085361922765814,0.1483273633665239,0.35783189501985596,0.4502876197272277,0.136361765774569,0.2558334012495732,0.14849532651751152,0.3688224881442004,0.4103180770078653,8.401099349606909,8.401099349606909,12.343760953563915,12.343760953563915,9.455189330887094,9.455189330887094,35.68199790524753,35.68199790524753,14.872496355298935,14.872496355298935,6.29862056104929,7.008495531956186,5.455876371636833,7.664706495403678,9.231050584079455,5.3852342489271905,6.358698456670865,5.456910404843313,7.831769114495003,8.508998342801789,145.8645840918773,145.8645840918773,0.0,162.0717601020859,0.0,145.8645840918773,162.0717601020859,0,0
+2017/08/04 08:00:00,173.278490067363,0,803.6885917041421,0,0,0,13.618234232055487,0.0,11.524878733696466,0.0,83.2008179303116,0,39.380909295966944,2.962937733868619e-09,25.553649872369633,0,0,0.0,484.275419091245,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7603.494897053393,333.9736161034176,602.9393308775309,198.5487098307925,0.0,2779.680702893571,17647.138960479184,0.0,0.0,0.0,2615.954551830984,15910.10604356516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04278897591982632,0.0013538133717266975,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6370646802905299,0.6370646802905299,0.5317931442250295,0.5317931442250295,0.6229746710194731,0.6229746710194731,1.228825947470201,1.228825947470201,0.8518566567995498,0.8518566567995498,0.3986621384813478,0.39800939331659807,0.2986374784732972,0.5212204459604781,0.44664968775174946,0.2896269132233761,0.3419420066818843,0.2613439867690403,0.5285517699458318,0.4294646616209344,13.519499232527679,13.519499232527679,10.916667980780531,10.916667980780531,13.143252309110437,13.143252309110437,36.66792450143744,36.66792450143744,20.313568111188502,20.313568111188502,8.31133372817952,8.300436209629297,6.853182545863419,10.68181086444018,9.162492602198114,6.742667379037329,7.432261918343258,6.418028132288043,10.844151163543842,8.846325562682495,173.278490067363,173.278490067363,0.0,192.53165563040335,0.0,173.278490067363,192.53165563040335,0,0
+2017/08/04 09:00:00,219.07664778304922,0,829.0361375210446,0,0,0,41.23219715201902,0.0,11.323895916778682,0.0,106.27511244621549,0,39.380909295966944,2.858413945745879e-09,20.86453296921068,0,0,0.0,456.3874361393312,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3175.1536717488407,517.5675759409157,1577.1146202910245,9166.986248215344,22747.16780454472,5795.2304896955975,3014.2929837565443,3404.9669520085245,6266.281746068378,36993.11148599387,5032.244201412115,2796.063219428703,3349.904939999722,6547.328188271724,35880.80795880381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044138498034214387,0.001396511310731424,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9582278686645612,0.9582278686645612,0.8269643241617562,0.8269643241617562,0.8745629938561594,0.8745629938561594,1.2596497544395118,1.2596497544395118,1.0015033572980547,1.0015033572980547,0.5306060188475923,0.5020758978972198,0.43042428438138913,0.6790110494227896,0.5140111763464564,0.513794633966148,0.47794337552919136,0.42220345160304723,0.7137959721155751,0.5114934932694744,24.39426945715094,24.39426945715094,19.42564916124779,19.42564916124779,21.145974163326713,21.145974163326713,38.21172690612984,38.21172690612984,26.182993119164536,26.182993119164536,10.890056523090735,10.26885069819933,8.863646149719827,14.690550544563322,10.524441555847233,10.519749490669454,9.770861279050848,8.716546122374751,15.719409242743708,10.470013403446899,219.07664778304922,219.07664778304922,0.0,243.41849753672136,0.0,219.07664778304922,243.41849753672136,0,0
+2017/08/04 10:00:00,269.80434538165076,0,905.6322154481993,0,0,0,57.673449943296845,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.8047888243996867e-09,18.624425150178176,0,0,0.0,444.25763278512557,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7789.90871097779,3074.300827516735,4805.099366646677,9234.281403336596,40099.49413544039,8793.962408773448,4543.167701493618,5322.280813050461,7425.610678497673,41493.528050785426,8800.973484155265,4427.953669584327,5367.311563385372,7895.526016193148,41787.26974943084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04821652995828167,0.0015255373981861724,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0466959949185672,1.0466959949185672,0.8877513376061696,0.8877513376061696,0.9222538703370494,0.9222538703370494,1.2397823580453582,1.2397823580453582,1.0046587731075651,1.0046587731075651,0.5568834167762944,0.48790740414505546,0.43779694817127474,0.6586090609994206,0.4847036356099118,0.566884825918286,0.4831130026158665,0.4453972471353934,0.6950062271077679,0.49197540947772755,28.12659670451434,28.12659670451434,21.639207650324323,21.639207650324323,22.963090152427327,22.963090152427327,37.21381872646144,37.21381872646144,26.316222895122692,26.316222895122692,11.493391566299422,9.97342765026967,8.998036952302982,14.11144894102982,9.907828487168302,11.730890484669345,9.875423848009206,9.139021661109098,15.157161375203202,10.057361108816565,269.80434538165076,269.80434538165076,0.0,299.78260597961196,0.0,269.80434538165076,299.78260597961196,0,0
+2017/08/04 11:00:00,302.7207371975016,0,975.5910654964475,0,0,0,74.46413823264433,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.8584139457458803e-09,20.883325688242635,0,0,0.0,460.98095406455764,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11281.87744924235,4853.955659735256,7558.390564430067,8570.371211210493,54533.59446755074,11252.695904602448,5794.150857548361,7622.436329557233,7826.837170675787,52065.09077897441,11621.521677371133,5814.546025256376,7853.473692950306,8247.698265560248,52898.96882937652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05194119095383702,0.0016433830757826597,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1060723934113827,1.1060723934113827,0.9464297178123247,0.9464297178123247,0.9743626071867271,0.9743626071867271,1.186054248596179,1.186054248596179,1.0498462816142538,1.0498462816142538,0.5744525208614986,0.48304015851849613,0.4418893275120897,0.6228911967622808,0.48301559882023576,0.6009223343883426,0.49007096463565447,0.4602550451166321,0.6565516546103309,0.4950190578878011,30.792129960864756,30.792129960864756,23.91924482785292,23.91924482785292,25.05271881252706,25.05271881252706,34.568752982121964,34.568752982121964,28.26488238941829,28.26488238941829,11.913480551016448,9.873942470454097,9.073641639533847,13.141048954097542,9.873443069302297,12.571679390391466,10.017978542002552,9.421807269584434,14.054051020559584,10.120626778651499,302.7207371975016,302.7207371975016,0.0,336.3563746638907,0.0,302.7207371975016,336.3563746638907,0,0
+2017/08/04 12:00:00,295.51951136640815,0,936.4778236635183,0,0,0,87.76029491821105,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,2.8047888243996867e-09,18.58554029056363,0,0,0.0,457.3580647441725,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13009.347662257403,5617.204940894048,8790.488089189083,7876.455964519773,60206.14389313896,13966.037833781327,7106.876094161471,10035.20601179425,8402.58981471435,63446.452101202085,14525.208142125412,7213.496418332594,10413.63956087233,8759.996754855256,64866.407479487716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04985877298721289,0.0015774968228837352,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1589854445768981,1.1589854445768981,0.9924431606970251,0.9924431606970251,1.0162685788769388,1.0162685788769388,1.1372129765314196,1.1372129765314196,1.0785810872355681,1.0785810872355681,0.6100545983195871,0.5067778391927544,0.4663813775808033,0.6061333971039982,0.5059123026164928,0.6445917183778674,0.5217184376053734,0.49246868085674644,0.6349575866065028,0.5239529965953421,33.2679937419624,33.2679937419624,25.802547899343637,25.802547899343637,26.80964816204734,26.80964816204734,32.238247138952985,32.238247138952985,29.542634220815486,29.542634220815486,12.805817537254512,10.368806298995722,9.541175553851815,12.704840140886603,10.350334634744087,13.724023554869575,10.692764436317091,10.067587146320847,13.462685611013583,10.74204679815702,295.51951136640815,295.51951136640815,0.0,328.3550126293424,0.0,295.51951136640815,328.3550126293424,0,0
+2017/08/04 13:00:00,290.74221054087315,0,872.8944707229017,0,0,0,85.58553475521452,0.0,16.73568395689411,0.0,129.2730206906943,0,39.380909295966944,2.7502425226906625e-09,16.3350866368987,0,0,0.0,429.26506431610005,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12953.697927902167,6110.861731960468,8934.09311842626,7328.659100164317,58558.73798708994,13430.86597765492,7140.552384754536,9520.44175587792,7856.546731875669,59675.543687044374,14023.820634963577,7315.865328887063,9940.353334780992,8171.104306251265,61380.26071114336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04647354818004104,0.001470390669681161,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1587624466219955,1.1587624466219955,1.035896280687716,1.035896280687716,1.027774034505456,1.027774034505456,1.1182844204620717,1.1182844204620717,1.0784180516023878,1.0784180516023878,0.609506691870329,0.5244585599846344,0.4639048692117561,0.5894165882141532,0.5010638536226996,0.6468472740207614,0.5499004258566608,0.4943030525404702,0.6178386769286871,0.5183359246497921,33.257371130331364,33.257371130331364,27.6552691742004,27.6552691742004,27.30360882444465,27.30360882444465,31.355413231901238,31.355413231901238,29.53530211344635,29.53530211344635,12.791667935101188,10.753226789463653,9.492727459054436,12.281841464259017,10.2474612595109,13.785789836686988,11.330141009343365,10.105707809182022,13.008247577482251,10.618575509019308,290.74221054087315,290.74221054087315,0.0,323.04690060097016,0.0,290.74221054087315,323.04690060097016,0,0
+2017/08/04 14:00:00,268.3912188579506,0,832.6250820176186,0,0,0,79.21872531047275,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.69476576898909e-09,14.104277400968947,0,0,0.0,424.48602812336105,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11833.914099680465,6981.502387481307,8728.53443762008,6889.614751868695,56637.68134499819,11592.846612126086,7228.029788174569,8121.026681866157,7129.734292031189,51505.27251501982,12083.021674824613,7469.906093650602,8533.317355323026,7388.756871078323,53178.15478669524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04432957609756711,0.0014025568874635069,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1179244958496661,1.1179244958496661,1.1147515066334557,1.1147515066334557,1.021482181565171,1.021482181565171,1.0988323266196862,1.0988323266196862,1.0682027065531756,1.0682027065531756,0.5802374399687645,0.5605925652329833,0.453661288021293,0.5680422930091632,0.4834469537805356,0.6093619569834301,0.5900565026307679,0.4814616338062824,0.5915180647831894,0.49812522656554303,31.338740396557725,31.338740396557725,31.191943957775862,31.191943957775862,27.0328725261557,27.0328725261557,30.460551572608423,30.460551572608423,29.077755196655573,29.077755196655573,12.054732154230251,11.580964957747469,9.29513720835638,11.758656420276523,9.882218101548503,12.78793235371694,12.297810480683594,9.841897396508742,12.33435030236258,10.185604553147655,268.3912188579506,268.3912188579506,0.0,298.2124653977229,0.0,268.3912188579506,298.2124653977229,0,0
+2017/08/04 15:00:00,253.14443708958197,0,832.6234696167046,0,0,0,70.74343068930402,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,2.6947657689890903e-09,14.096046643716546,0,0,0.0,424.4844157224472,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10375.83554783873,8311.490313133241,8364.356796620392,6490.678182040403,54542.040777147704,9435.59229816285,7243.285983747078,6658.6358968168515,6215.683936668858,43474.29292381148,9793.432315334565,7580.419468402451,7040.065415341042,6430.0716570502955,44978.62403089528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04432949025214813,0.0014025541713742894,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0773862980778617,1.0773862980778617,1.1923369333609304,1.1923369333609304,1.0192981347117223,1.0192981347117223,1.0865485219891475,1.0865485219891475,1.0668431653939947,1.0668431653939947,0.5431976448750709,0.5998507004872213,0.4421656870387571,0.5458227018014807,0.46327501571263885,0.5648591763943084,0.6368033421484468,0.46718997745029395,0.5651941753209688,0.4760100758311832,29.4889232277543,29.4889232277543,34.87380735202311,34.87380735202311,26.93923755688175,26.93923755688175,29.902078310857192,29.902078310857192,29.017138783639282,29.017138783639282,11.175429437556403,12.544441527913008,9.078773187694892,11.23578825430937,9.480447735368358,11.68243796586431,13.51244230377145,9.557051466758054,11.690438689189236,9.732053892408743,253.14443708958197,253.14443708958197,0.0,281.2715967662022,0.0,253.14443708958197,281.2715967662022,0,0
+2017/08/04 16:00:00,280.47537558118364,0,885.8573754187809,0,0,0,75.24566580971744,0.0,16.735683873587277,0.0,131.64086955684016,0,39.380909295966944,2.6947657689890903e-09,14.040271839922719,0,0,0.0,424.4827927557071,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10461.354350414374,10038.31717013568,9142.475395069252,6815.219635007297,59185.57463146924,9287.32343125719,8331.897637540787,7132.145459908959,6341.931493569879,45281.646468096136,9546.868540032361,8783.90123915138,7496.5372384894,6528.4942858017375,46721.355279063566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047163702827759585,0.0014922266816575019,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.072071235939699,1.072071235939699,1.2672249810199854,1.2672249810199854,1.0388856776601794,1.0388856776601794,1.096314851963944,1.096314851963944,1.0910946873683594,1.0910946873683594,0.523453492084283,0.6518660964645118,0.4429041022801274,0.5380871269405374,0.45778153537718924,0.541251037105935,0.6973118812643625,0.46767953996833156,0.5558545090125452,0.4708193378779647,29.250594925436175,29.250594925436175,38.59485861475326,38.59485861475326,27.785308089838324,27.785308089838324,30.345674842766215,30.345674842766215,30.108161244413793,30.108161244413793,10.731011657636145,13.924017023741897,9.09250046477257,11.058778069608437,9.374070296590816,11.130863245555474,15.225333588746253,9.566677146123666,11.469204637235464,9.628656754570272,280.47537558118364,280.47537558118364,0.0,311.63930620131515,0.0,280.47537558118364,311.63930620131515,0,0
+2017/08/04 17:00:00,294.14326753055286,0,918.7451594910702,0,0,0,82.04294484656772,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,2.8047888243996867e-09,18.593852474192662,0,0,0.0,457.37057682799656,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10623.33950636971,11072.016835831266,10126.079252008107,6936.720793447783,62587.15443691243,10351.06790609245,9621.636293802516,8942.160294042085,6788.664842264916,52430.74683806749,10553.179569287598,10149.797280485882,9346.377927689036,6947.052826044499,53797.13661510117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048914672811969186,0.0015476261514311327,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0745376842487675,1.0745376842487675,1.3063986389400852,1.3063986389400852,1.0770865455236835,1.0770865455236835,1.0975547838099713,1.0975547838099713,1.1070151401583994,1.1070151401583994,0.5223098953902396,0.6997100983582176,0.4750168378409471,0.5422859224299907,0.4753400516268842,0.5382129168068372,0.7462089310763099,0.5011036172074907,0.5561352831025607,0.48833281483192237,29.361067442737607,29.361067442737607,40.598026311835646,40.598026311835646,29.475455883699595,29.475455883699595,30.4022280361103,30.4022280361103,30.8354361771231,30.8354361771231,10.705787785549802,15.296486221009403,9.71217916765599,11.154535762845313,9.718642016941047,11.06163573378636,16.72503997347519,10.248300822892048,11.475800347486711,9.982171520805466,294.14326753055286,294.14326753055286,0.0,326.8258528117254,0.0,294.14326753055286,326.8258528117254,0,0
+2017/08/04 18:00:00,283.68898253694465,0,893.6866060695904,0,0,0,87.293169464076,0.0,17.03716081602578,0.0,110.93442390708215,0,39.380909295966944,2.9629377338686205e-09,25.611343848376503,0,0,0.0,467.80237591906086,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10271.159624984455,11023.295771094781,10948.791910641807,6737.274498925246,62579.92184625498,11494.76867843569,10609.449037725777,11030.318014030823,7232.788361338831,61203.21496309421,11636.509773725114,11145.348130535838,11519.2706881195,7353.63085289336,62389.814483942246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04758053686677202,0.001505415020094562,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0660028981401102,1.0660028981401102,1.300936201049663,1.300936201049663,1.121795160104067,1.121795160104067,1.088763518426958,1.088763518426958,1.1094489787555342,1.1094489787555342,0.5285359803770211,0.7299532012370403,0.5224987785022391,0.54717478711446,0.5037448667811892,0.538211383558662,0.7727697659614731,0.5511980728252527,0.5580817748350133,0.5152550654473445,28.979707454152987,28.979707454152987,40.31658885011898,40.31658885011898,31.518266837691,31.518266837691,30.002397499686154,30.002397499686154,30.947375952843444,30.947375952843444,10.843799028890245,16.215051374451335,10.709950005211368,11.266993728190656,10.30422085347817,11.061600897693353,17.582685240000345,11.360317892579275,11.521619693195376,10.55143357821784,283.68898253694465,283.68898253694465,0.0,315.20998059660513,0.0,283.68898253694465,315.20998059660513,0,0
+2017/08/04 19:00:00,275.51817975536966,0,888.6479891411791,0,0,0,85.49022899390744,0.0,18.427435203224093,0.0,101.68988858149199,0,39.380909295966944,3.013854943904596e-09,27.0977424753112,0,0,0.0,498.25411150319377,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9727.430925025947,7364.895876040459,11127.53649680679,6364.491848632936,60532.27197805325,11245.446154289719,10305.061202243385,11412.932169204183,7091.1330472247455,62676.19713373966,11303.272455702312,10739.43160222984,11930.62678352408,7156.871033669748,63492.07273010878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04731227716936626,0.0014969274702610776,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0547342197131817,1.0547342197131817,1.1016871188117496,1.1016871188117496,1.1257140663967995,1.1257140663967995,1.074457367787031,1.074457367787031,1.102453536567943,1.102453536567943,0.5263238901403814,0.7097076938716724,0.5435599443196142,0.544187609321007,0.517832407787323,0.5296348191031207,0.7396796060145968,0.5706587856200109,0.546591555199334,0.5250808795546333,28.48015401326336,28.48015401326336,30.591082054623627,30.591082054623627,31.700534778674665,31.700534778674665,29.35746668748122,29.35746668748122,30.626172362830374,30.626172362830374,10.794572281006012,15.595778845012788,11.183742147756007,11.19815695010638,10.607574167515608,10.868330794562183,16.51883342056655,11.821636402480337,11.253523301017267,10.767003909613052,275.51817975536966,275.51817975536966,0.0,306.1313108392996,0.0,275.51817975536966,306.1313108392996,0,0
+2017/08/04 20:00:00,280.44409929228544,0,835.6008505600057,0,0,0,72.78946877677315,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,2.9111271583589525e-09,23.182876548898104,0,0,0.0,480.6973254345644,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6706.864642176977,4849.229186136402,6999.387946842098,5605.044095246511,46217.796307583136,10398.521807620507,8659.096595677642,9756.225206703091,6456.7505361296135,60922.17562980399,10364.05821883708,8850.530667552226,10085.89768870506,6458.207414134071,61323.83244082059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044488008218935386,0.0014075695693473004,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.022671123381321,1.022671123381321,1.0630692562491033,1.0630692562491033,1.027894360224954,1.027894360224954,1.0526391817779142,1.0526391817779142,1.07781279748979,1.07781279748979,0.5314019259346905,0.635824981262841,0.5096290222131165,0.5458912658371786,0.5310759844357287,0.5286095816730629,0.6424785542495036,0.5193126248149916,0.5419385660081069,0.5339136563668969,27.083919724409483,27.083919724409483,28.849219376895775,28.849219376895775,27.30880069023783,27.30880069023783,28.387780164389525,28.387780164389525,29.508090504933463,29.508090504933463,10.907891407879276,13.486049873773695,10.429883296038184,11.237368772035751,10.900584312727915,10.845440557018705,13.666356686007788,10.639946711614513,11.14658497340217,10.964354780865392,280.44409929228544,280.44409929228544,0.0,311.60455476920606,0.0,280.44409929228544,311.60455476920606,0,0
+2017/08/04 21:00:00,240.46431883696343,0,796.701638063542,0,0,0,46.40187391732908,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9629377338686205e-09,25.59848266850607,0,0,0.0,477.2884654506449,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3412.7812240810895,2354.0917847623346,4027.6122245049773,4680.665252808736,31114.717478612372,6047.192257718666,5445.234210084579,5712.079045301548,3549.2122637943767,39257.53458242693,5849.374856775288,5428.433628851993,5875.945523864921,3387.950952100152,39160.06509778494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04241698533271763,0.0013420438488494074,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0064754440090116,1.0064754440090116,1.0383118663786448,1.0383118663786448,1.0052836884503127,1.0052836884503127,1.0347865922808768,1.0347865922808768,1.0592238645674796,1.0592238645674796,0.5249546729564831,0.6134407639916848,0.5015109530226773,0.537056091390334,0.5263505207107543,0.5156883003421505,0.6101205248927872,0.5034494926679419,0.5266870267131772,0.5248011882286411,26.393098076366144,26.393098076366144,27.76032190090963,27.76032190090963,26.342653079088493,26.342653079088493,27.60708102926253,27.60708102926253,28.6786411887021,28.6786411887021,10.764208550297013,12.893553834596062,10.256905195739108,11.035381084464262,10.795163644549078,10.560850361793598,12.807520959314871,10.297952275480483,10.80263880630227,10.760809934786224,240.46431883696343,240.46431883696343,0.0,267.1825764855149,0.0,240.46431883696343,267.1825764855149,0,0
+2017/08/04 22:00:00,158.54365183685246,0,616.1168120238327,0,0,0,21.91850961185384,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8584139457458795e-09,20.872184616818306,0,0,0.0,456.4102257173841,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,291.417365107939,2984.3212546481022,8911.805690862713,2740.540821883803,3067.3289939632114,2660.05577298315,1370.3542868346517,22395.904171494356,2374.3499078103923,2882.297768251796,2658.618494364954,1071.4920382840216,21827.090267530763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03280251543397897,0.0010378487230916732,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9382318588765388,0.9382318588765388,0.964722556989247,0.964722556989247,0.951282222828178,0.951282222828178,0.9793700585266322,0.9793700585266322,0.9845927764742919,0.9845927764742919,0.508456282066353,0.582897655088089,0.4843068092560334,0.5184452428710228,0.5113048403437591,0.4926076876610415,0.57033517412495,0.47863082397370227,0.501519847848545,0.5048296628362103,23.592413383864837,23.592413383864837,24.65809374262551,24.65809374262551,24.113956098465863,24.113956098465863,25.25912574991787,25.25912574991787,25.47543647402148,25.47543647402148,10.404718732446284,12.120174590109812,9.899734053150524,10.620965452532417,10.465946079500071,10.070470802173901,11.813830855749146,9.784699376092604,10.257093165913574,10.327275298586457,158.54365183685246,158.54365183685246,0.0,176.15961315205828,0.0,158.54365183685246,176.15961315205828,0,0
+2017/08/04 23:00:00,90.60749165023647,0,466.7277368235083,0,0,0,3.3041565919282077,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6383492916652565e-09,11.79235399683165,0,0,0.0,413.49220805469207,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1417.0132856755063,0.0,0.0,561.1124013492918,0.0,0.0,4879.779293011569,0.0,227.9710390948087,0.0,0.0,3837.972189145709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024848930416829763,0.0007862028372551651,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7373475545924795,0.7373475545924795,0.7597369198928887,0.7597369198928887,0.7653937695711835,0.7653937695711835,0.9248073012256854,0.9248073012256854,0.8347522224088236,0.8347522224088236,0.47480934141013187,0.5710133065349439,0.45772591630421,0.45784087088628517,0.5088668423232716,0.4350776970538322,0.5519083955217189,0.4410174317777869,0.4132774207193168,0.499480037946477,16.445626827523668,16.445626827523668,17.158088234742806,17.158088234742806,17.341492111577693,17.341492111577693,23.06297671706939,23.06297671706939,19.700663387666836,19.700663387666836,9.708032528948891,11.83019270259355,9.372999916221389,9.375212346009334,10.413521735999723,8.94819802946786,11.376867417498175,9.05747346443384,8.560109704238442,10.214076331877322,90.60749165023647,90.60749165023647,0.0,100.67499072248496,0.0,90.60749165023647,100.67499072248496,0,0
+2017/08/05 00:00:00,43.577636359569425,0,467.0526086169891,0,0,0,0.33408575811684116,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,2.500121949660832,2.58098381908945e-09,9.557794584410711,0,0,0.0,413.8170798481729,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134.1478424695192,179.6898720048077,132.55624340870727,850.3752569537257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024866226831749386,0.0007867500837666262,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8463841487536227,0.8463841487536227,0.8650795906910751,0.8650795906910751,0.8513627578494118,0.8513627578494118,0.9032202384967284,0.9032202384967284,0.8871262075032692,0.8871262075032692,0.6406488049755612,0.8077815795111205,0.5896239778434955,0.642455297374504,0.7039407578997408,0.580177287163299,0.7655319262612604,0.5596930651514287,0.5755358377471311,0.6794042731176261,20.11614456568543,20.11614456568543,20.795723556382455,20.795723556382455,20.295699316277634,20.295699316277634,22.226791412580653,22.226791412580653,21.61566735658316,21.61566735658316,13.6165804556056,18.759114591742403,12.28701491053522,13.66572309839826,15.422610850398684,12.05325591961045,17.345988464644805,11.559672869125734,11.939821637096017,14.701889010733453,43.577636359569425,43.577636359569425,0.0,48.419595955077135,0.0,43.577636359569425,48.419595955077135,0,0
+2017/08/05 01:00:00,23.766602148104386,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5695067244265927,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8727334053512994,0.8727334053512994,0.9248300002083445,0.9248300002083445,0.8643332713084307,0.8643332713084307,0.9345061528224339,0.9345061528224339,0.9836952333234239,0.9836952333234239,0.6267674404275881,0.835537013764858,0.554162544721142,0.639715656994306,0.7600311172548413,0.5741398819827408,0.8013196588746482,0.5354212123896677,0.5813476098088839,0.7209366404530746,21.078113340085267,21.078113340085267,23.06386584076587,23.06386584076587,20.768317288908733,20.768317288908733,23.444758872520083,23.444758872520083,25.438187996239392,25.438187996239392,13.24368378389353,19.728517588682195,11.429530784637791,13.59125114150146,17.16759286495727,11.905888135895836,18.538078227773582,10.99837565765553,12.082005474872517,15.937071985053507,23.766602148104386,23.766602148104386,0.0,26.407335720115984,0.0,23.766602148104386,26.407335720115984,0,0
+2017/08/05 02:00:00,28.344197317465778,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248342309928808,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8897592447046838,0.8897592447046838,0.9523273829676835,0.9523273829676835,0.8758130150989033,0.8758130150989033,0.9540439297574378,0.9540439297574378,1.0702727515595925,1.0702727515595925,0.62030550720634,0.825320407123039,0.5475897155515372,0.6327552450365092,0.7845668280916152,0.5629746011111433,0.7930555087598551,0.52046347743833,0.572212064083634,0.729746595921468,21.71492673189357,21.71492673189357,24.156015605587186,24.156015605587186,21.192417609899934,21.192417609899934,24.225186434288304,24.225186434288304,29.170175746958208,29.170175746958208,13.072947810215595,19.36792247778233,11.276585963686017,13.403509667507848,17.973264473370747,11.637519680577853,18.257969120639203,10.665181524054532,11.859164893862683,16.20864261664407,28.344197317465778,28.344197317465778,0.0,31.493552574961974,0.0,28.344197317465778,31.493552574961974,0,0
+2017/08/05 03:00:00,23.72204417384796,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249487501701687,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8447432680158146,0.8447432680158146,0.9030162599847206,0.9030162599847206,0.8285016591968264,0.8285016591968264,0.8940580826917461,0.8940580826917461,1.0313816425759983,1.0313816425759983,0.6023378197680652,0.8075467705431254,0.529148509382111,0.6145601103951803,0.7992906160584461,0.5397114603604072,0.7705662891716613,0.4958047851499264,0.549224797967063,0.7340203780734939,20.057191898114553,20.057191898114553,22.21897999633849,22.21897999633849,19.479735769181644,19.479735769181644,21.8775913691414,21.8775913691414,27.459503722809032,27.459503722809032,12.607733368881739,18.751051834317934,10.85746739661667,12.922665782576914,18.46903703258687,11.095732014797235,17.510389059939257,10.13702398462513,11.314458124192441,16.341586002225114,23.72204417384796,23.72204417384796,0.0,26.357826859831064,0.0,23.72204417384796,26.357826859831064,0,0
+2017/08/05 04:00:00,45.19678936446568,0,88.72588128136032,0,0,0,0.05084861693505593,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,7.556952863760752,0.0,0.5250894717068043,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.143852615351053,0.0,0.0,191.93198280358763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8923207504508688,0.8923207504508688,0.9025298625707351,0.9025298625707351,0.8753263274870535,0.8753263274870535,0.9111525812304981,0.9111525812304981,0.9416667053254614,0.9416667053254614,0.4599457657068753,0.5481840308925515,0.4310155015132636,0.46485085936061515,0.5368321202040319,0.4269440277971665,0.521298143870682,0.41112104306718245,0.43014011906771416,0.5156209146111304,21.811761302059722,21.811761302059722,22.20036007776737,22.20036007776737,21.17432751579757,21.17432751579757,22.531869867849736,22.531869867849736,23.72902935044918,23.72902935044918,9.41582398797786,11.290338229437296,8.874336926687704,9.51120273972036,11.030304660670268,8.801017970125017,10.683519161668968,8.522829427189052,8.858513024950895,10.559385133867053,45.19678936446568,45.19678936446568,0.0,50.218654849406306,0.0,45.19678936446568,50.218654849406306,0,0
+2017/08/05 05:00:00,76.17255522944839,0,212.9421150752648,0,0,0,0.2716586246393615,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,3.511749689201757,0.0,0.5251397264075254,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1086.1106700382113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9437640692232936,0.9437640692232936,0.9394447329536225,0.9394447329536225,0.9418468670392622,0.9418468670392622,0.9737545843001267,0.9737545843001267,0.9575786869406184,0.9575786869406184,0.5664506552514097,0.7116998148251168,0.5132676582784886,0.5739357848809701,0.7075696757296625,0.5061317368434672,0.6538262335383188,0.4770471550440582,0.5111058480481482,0.6691438177955494,23.81267895088088,23.81267895088088,23.640600187398107,23.640600187398107,23.7362079351296,23.7362079351296,25.02772217360753,25.02772217360753,24.36798944526636,24.36798944526636,11.720490355249638,15.65593100274026,10.508339394862759,11.900933938637593,15.53141168886792,10.355014578889197,13.978299141344436,9.752851281631905,10.461657508570951,14.408223035572377,76.17255522944839,76.17255522944839,0.0,84.63617247716488,0.0,76.17255522944839,84.63617247716488,0,0
+2017/08/05 06:00:00,93.59120643410174,0,629.314785878101,0,0,0,0.408203615307537,0.0,7.590671253339244,0.0,80.56906512710079,0,4.498040179293851,2.52266637943023e-09,0.5252262565376589,0,0,0.0,398.62749454656415,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1667.1342448415724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033505185337807435,0.001060080709047479,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9728306785876848,0.9728306785876848,0.9606161486811406,0.9606161486811406,0.9767501562762912,0.9767501562762912,1.0332790833051495,1.0332790833051495,0.9639876675134921,0.9639876675134921,0.6632817482933115,0.828687960012254,0.6066954796245139,0.7281207067019855,0.9263046286172629,0.6098098999719838,0.7821521180446215,0.5784115477845887,0.6838320409420573,0.8599898058940415,24.98976658826558,24.98976658826558,24.49109330856116,24.49109330856116,25.151012595239123,25.151012595239123,27.5416899900696,27.5416899900696,24.628158691746222,24.628158691746222,14.24248974030705,19.486296948037435,12.71927371979315,16.15827267566459,23.121671547178863,12.799496628966665,17.89283585103213,12.009992133126843,14.830023811697146,20.60927417469776,93.59120643410174,93.59120643410174,0.0,103.99022937122415,0.0,93.59120643410174,103.99022937122415,0,0
+2017/08/05 07:00:00,125.70608951292897,0,647.4705898540644,0,0,0,10.413041250074377,0.0,6.000613665654577,0.0,69.33401494192633,0,39.380909295966944,2.5226671666917196e-09,0.5775103567840628,0,0,0.0,381.2929460099835,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4919.7406325246775,0.0,0.0,0.0,0.0,0.0,16244.47002207833,0.0,0.0,40.95726692430792,5.338934714034023,14153.51828943674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03447181378961277,0.0010906641594669872,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7429020062468803,0.7429020062468803,0.7053149512857207,0.7053149512857207,0.7785990704097593,0.7785990704097593,1.1979721703466766,1.1979721703466766,0.9261468510697375,0.9261468510697375,0.4812337991959508,0.561572584203764,0.468839933162406,0.6640349964311382,0.6305747832695394,0.4629307874290568,0.5475621713549848,0.46830295278791806,0.6731158243715564,0.6119265906309993,16.62037345550364,16.62037345550364,15.463744561776977,15.463744561776977,17.77494259856806,17.77494259856806,35.148409263002065,35.148409263002065,23.115482478570172,23.115482478570172,9.83728108473251,11.604202950191677,9.58953381372848,14.263702350488629,13.345128913171095,9.473743827411155,11.275948971037195,9.57894951203292,14.521365866492005,12.854259761053243,125.70608951292897,125.70608951292897,0.0,139.6734327921433,0.0,125.70608951292897,139.6734327921433,0,0
+2017/08/05 08:00:00,176.33016464058716,0,700.779370797013,0,0,0,37.089244526106285,0.0,11.435487997441953,0.0,87.89947186453183,0,39.380909295966944,2.5226671667888674e-09,0.5250509540174472,0,0,0.0,381.36619818411594,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1116.4580936683146,37.166606722632395,833.7464960964588,8170.169297536508,15941.089157478898,4891.972959319986,3348.2328913625133,3878.4897551973145,5484.148156419449,36706.42593690097,4440.258771110731,2952.6564891531348,3683.921376827552,5570.642701023056,35554.15048143035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03731001277318479,0.0011804627969193163,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9113703495645059,0.9113703495645059,0.8481450720249896,0.8481450720249896,0.8953697309565607,0.8953697309565607,1.2397735280313735,1.2397735280313735,0.9788912664269174,0.9788912664269174,0.5064011691156656,0.531426873036369,0.47024281596420103,0.677080152122868,0.5421192776057533,0.5007593214992253,0.5195544675996473,0.47220913710715184,0.7036015449700842,0.5385099279693164,22.540281142539072,22.540281142539072,20.17953480182311,20.17953480182311,21.927373153177086,21.927373153177086,37.21337748993318,37.21337748993318,25.239348076522447,25.239348076522447,10.360763694501117,10.908450872149743,9.617244367805554,14.634970883164598,11.150720705880005,10.241033671625544,10.645244855940305,9.656227053775538,15.412469733409694,11.068385882597397,176.33016464058716,176.33016464058716,0.0,195.92240515620796,0.0,176.33016464058716,195.92240515620796,0,0
+2017/08/05 09:00:00,247.8134080239625,0,859.4311330313564,0,0,0,64.24945875336503,0.0,11.287802377079139,0.0,106.27511244621549,0,39.380909295966944,2.9111347927778194e-09,23.188149945970533,0,0,0.0,486.7824316496431,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7037.361006338062,3285.4953798157203,4972.43989543509,9497.717830572943,39035.41599340104,9568.35100842414,5907.135861476612,7233.402539888422,8775.590173877656,51441.5427096229,9584.782111053783,5771.705254137831,7289.902930700162,9203.820994032512,51232.99049129414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04575675010895919,0.001447711678361603,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0662217903627247,1.0662217903627247,0.9614586879355185,0.9614586879355185,0.9840170929477408,0.9840170929477408,1.2637362518595154,1.2637362518595154,1.0259961912150803,1.0259961912150803,0.5656532801027419,0.5541058581271486,0.49315908003795833,0.715151026671706,0.528984642091991,0.5778019191579687,0.5512417599928895,0.5019670024058556,0.7500313843390912,0.5305113025089567,28.989456018169818,28.989456018169818,24.52530417232377,24.52530417232377,25.451541766824988,25.451541766824988,38.418232116189245,38.418232116189245,27.22696009425998,27.22696009425998,11.701411318291576,11.42820372362084,10.081917497126483,15.760545328545305,10.853809164445622,11.995086552791491,11.361335111213208,10.266547079441949,16.84660738442973,10.887935922163194,247.8134080239625,247.8134080239625,0.0,275.3482311377361,0.0,247.8134080239625,275.3482311377361,0,0
+2017/08/05 10:00:00,283.72583780238404,0,922.3622297814386,0,0,0,73.47718793895179,0.0,14.932575465546352,0.0,131.64086955684016,0,39.380909295966944,2.858421518514594e-09,20.8623203397661,0,0,0.0,460.98764711836486,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11773.405848115623,5572.843736720178,8399.748089227453,9696.693715412977,55939.40979192225,10394.057147852936,6346.529496949188,7372.995662899144,8900.223486986426,48299.4903862709,10723.173848542721,6310.008826342754,7568.326414183058,9345.014142415861,49056.682566265205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04910724831341648,0.0015537191060607273,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1440264118066674,1.1440264118066674,1.0222638987127748,1.0222638987127748,1.0396438324853394,1.0396438324853394,1.2435960336263088,1.2435960336263088,1.0761386067477288,1.0761386067477288,0.5940599202768716,0.55377415921152,0.4984735434876673,0.701043417285107,0.5106324873582998,0.6180057852165699,0.5583173606874829,0.5142920453513249,0.7354475812747379,0.5181861726761694,32.55887469351606,32.55887469351606,27.06642962304241,27.06642962304241,27.818339842046328,27.818339842046328,37.4045804085279,37.4045804085279,29.432887422934414,29.432887422934414,12.398118841273742,11.420441281643349,10.19291696701417,15.336151821288396,10.451462785021391,13.012622169167187,11.527176399833124,10.530530479292835,16.38615642336532,10.615302431576524,283.72583780238404,283.72583780238404,0.0,315.2509308915378,0.0,283.72583780238404,315.2509308915378,0,0
+2017/08/05 11:00:00,303.01306056307146,0,979.0576465635705,0,0,0,85.68701533640196,0.0,14.839439983088985,0.0,136.4899973586286,0,39.380909295966944,2.911134792777818e-09,23.183723383619448,0,0,0.0,464.4475351316806,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14251.512667559678,6712.5723529150655,10252.813082574232,9319.321175259429,65066.13523403274,12893.021169149026,7392.3771062321875,9557.346855502752,9269.840065492797,56888.59996105459,13355.952553305378,7401.832940429457,9818.0790090723,9619.80555840407,58231.96115194871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05212575429757036,0.0016492225313271196,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1952408805663024,1.1952408805663024,1.0647401605929327,1.0647401605929327,1.075835139899476,1.075835139899476,1.2120586933608462,1.2120586933608462,1.1144533805457029,1.1144533805457029,0.6183148075135276,0.5591474841095995,0.5076228205063087,0.6785255403797207,0.5142954820549267,0.6498772852700905,0.5698077173130087,0.529380932407211,0.7086806761023505,0.5245192285310386,35.015199520128334,35.015199520128334,28.923503512112433,28.923503512112433,29.41926649665085,29.41926649665085,35.838838903475846,35.838838903475846,31.17816856843028,31.17816856843028,13.020715004611134,11.546775501327204,10.386870531057042,14.676560291804336,10.530605004285562,13.869111048303864,11.801118273042192,10.862658085661906,15.56483485435625,10.754569152683203,303.01306056307146,303.01306056307146,0.0,336.68117840341273,0.0,303.01306056307146,336.68117840341273,0,0
+2017/08/05 12:00:00,290.9565626984322,0,943.5148932646249,0,0,0,85.39794837835888,0.0,14.783782912797726,0.0,124.80122689546741,0,39.380909295966944,2.911134792777818e-09,23.160720010475877,0,0,0.0,464.3951343452791,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14349.913133912472,6824.9179111361245,10406.377261699818,8210.37823317951,64212.24019805017,13220.620153363676,7356.281584007939,9771.292975987717,8537.388251674638,56683.984712611,13777.140750261431,7426.2711213993925,10118.555314775986,8813.336497968796,58166.77708195486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05023343178518017,0.0015893507660926947,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.195387554006963,1.195387554006963,1.0738258720646616,1.0738258720646616,1.0807513597395901,1.0807513597395901,1.1576483701826545,1.1576483701826545,1.1116964713444129,1.1116964713444129,0.6236271396796857,0.5549458420426651,0.5074855275832802,0.6387401414552787,0.5085071327696807,0.6579068534913519,0.571204803395518,0.5327994423079935,0.6628347565840698,0.5197639868047278,35.02234752734938,35.02234752734938,29.329163312937197,29.329163312937197,29.64032511788895,29.64032511788895,33.20432479272638,33.20432479272638,31.0509218871656,31.0509218871656,13.160485043884051,11.447882422692956,10.383933346596123,13.564812181709755,10.405808649352878,14.091838002440014,11.834816713707923,10.939273676034688,14.229913395205358,10.649836921084415,290.9565626984322,290.9565626984322,0.0,323.28506966492466,0.0,290.9565626984322,323.28506966492466,0,0
+2017/08/05 13:00:00,285.4267638447501,0,904.5147615715906,0,0,0,84.4942429789238,0.0,14.728125842506467,0.0,122.5097643007467,0,39.380909295966944,2.858421518514594e-09,20.88174622129342,0,0,0.0,460.88535516478885,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13653.914076968334,7111.144755575955,10412.797835263515,7772.954700905028,62685.33499362056,13026.243996994619,7566.953392201934,9825.79719878018,8222.88942121258,56042.45250039997,13654.052154309695,7745.198676394452,10299.927201707278,8500.270756988257,57481.45112038342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04815703588618549,0.0015236550472158385,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1781579351039353,1.1781579351039353,1.102131782191128,1.102131782191128,1.0865648935325278,1.0865648935325278,1.1470088593526395,1.1470088593526395,1.1056310063269872,1.1056310063269872,0.6222146876902689,0.577890915995083,0.5154713521863841,0.6303568696151595,0.5058230088712982,0.6561251065698931,0.5992431481938155,0.5436828105524752,0.6536857875472508,0.51845730378242,34.18701106998003,34.18701106998003,30.611438464690977,30.611438464690977,29.902819170112807,29.902819170112807,32.69969030827609,32.69969030827609,30.771864619424335,30.771864619424335,13.123203230660934,11.997261543675265,10.556133766789486,13.339305722923015,10.348430834274936,14.042174057511573,12.529021428711246,11.186562520051353,13.974404228926176,10.621229162999967,285.4267638447501,285.4267638447501,0.0,317.140848716389,0.0,285.4267638447501,317.140848716389,0,0
+2017/08/05 14:00:00,270.2122357172118,0,865.4005590552326,0,0,0,85.33911246962136,0.0,14.728125842506467,0.0,108.75639138185811,0,39.380909295966944,2.8047963301775275e-09,18.57572152199989,0,0,0.0,457.2615051609751,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13044.274258100952,7984.172353543966,10272.050902080415,7500.416102929249,61069.194030421706,12319.370626430118,8252.969703771781,9379.324257104183,8050.673466870033,52869.63040285922,12796.446014258036,8475.313637582216,9771.448368242369,8250.3064685552,54608.69079572033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04607456677206402,0.0014577671760457511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1536557410152248,1.1536557410152248,1.1569768124169748,1.1569768124169748,1.0719613099610237,1.0719613099610237,1.1259402982388012,1.1259402982388012,1.09100034122368,1.09100034122368,0.6066228089757078,0.6086239946157047,0.5053722534446797,0.6114135629960216,0.49298119223652076,0.6355713053327019,0.6364167236079342,0.5312912863755991,0.6308246292118399,0.5060908756530441,33.01453592474519,33.01453592474519,33.172367526524795,33.172367526524795,29.245676314480946,29.245676314480946,31.711072220428036,31.711072220428036,30.103877178913237,30.103877178913237,12.717406856261263,12.768899813334826,10.338825698387964,12.840968829982543,10.078223179687853,13.479213447094168,13.502007854339965,10.905410527416407,13.351807948021914,10.354142961453391,270.2122357172118,270.2122357172118,0.0,300.23581746356865,0.0,270.2122357172118,300.23581746356865,0,0
+2017/08/05 15:00:00,262.44315789193905,0,846.6070490746704,0,0,0,79.96331861815949,0.0,14.78378283874635,0.0,106.31215624428707,0,39.380909295966944,2.8047963301775287e-09,18.571015689520095,0,0,0.0,438.467995180413,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11734.15353063016,8523.0207640434,9856.545181371164,7185.370414534304,58446.984554798946,11038.017132974812,8184.106834869792,8719.957033620916,7431.771302368921,48861.93040061531,11393.327591092133,8476.208908199895,9081.115072971574,7601.151529487605,50478.588288043175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04507398638022075,0.001426109509909897,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1157967209078956,1.1157967209078956,1.1846141646031039,1.1846141646031039,1.065629208008372,1.065629208008372,1.1172409492245907,1.1172409492245907,1.0841915230001886,1.0841915230001886,0.5758532793643424,0.6233784145144726,0.49587953352697567,0.5930794789597901,0.4787747937516952,0.5988712509771205,0.6557593247938375,0.5209023983116121,0.6106929016708422,0.48986661831688205,31.240263151467005,31.240263151467005,34.49899442083877,34.49899442083877,28.96306875543749,28.96306875543749,31.30708821959965,31.30708821959965,29.79551431660002,29.79551431660002,11.947549945150826,13.153913638034268,10.138585284691601,12.37348890080871,9.787600018900633,12.519590323582023,14.031995372851881,10.674820865568094,12.822318056430973,10.013762108474381,262.44315789193905,262.44315789193905,0.0,291.60350876882114,0.0,262.44315789193905,291.60350876882114,0,0
+2017/08/05 16:00:00,270.5423811731859,0,909.820014064128,0,0,0,76.4333403054807,0.0,14.78378283874635,0.0,120.17895923267236,0,39.380909295966944,2.7502499560353137e-09,16.333414295114896,0,0,0.0,448.44543140105435,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11269.264241080482,9643.290061638183,10034.970980643655,7160.026172933965,61937.36992735493,10076.784100070561,8539.324587040135,8253.760682306649,6948.616980934954,47770.06987165617,10372.210501079031,8942.002225066815,8652.731415679928,7110.761231084258,49142.25351345881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04843949145852406,0.0015325917446368557,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1082101258590515,1.1082101258590515,1.2503736144147755,1.2503736144147755,1.079732948386642,1.079732948386642,1.1229110685532375,1.1229110685532375,1.1127025447745233,1.1127025447745233,0.5564271432841751,0.6658469048859484,0.4956971408527215,0.5884872944531861,0.48313880387484376,0.5714869473740934,0.7000537664728388,0.5163310773849706,0.600820289223223,0.49457786196951026,30.89037235558311,30.89037235558311,37.744535176643765,37.744535176643765,29.594462683300534,29.594462683300534,31.570116114407114,31.570116114407114,31.09732831582339,31.09732831582339,11.482660106149964,14.31482909705558,10.134775998004685,12.258682650356207,9.875948604405082,11.84163244930589,15.306702841966128,10.574836709026087,12.569083547648972,10.111431228283891,270.5423811731859,270.5423811731859,0.0,300.60264574798435,0.0,270.5423811731859,300.60264574798435,0,0
+2017/08/05 17:00:00,294.1200465054085,0,895.0180627796141,0,0,0,77.60124687515597,0.0,16.693521066485914,0.0,138.40412594678773,0,39.380909295966944,2.8047963301775287e-09,18.608268115752807,0,0,0.0,433.6434801165403,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11303.670780119388,8467.001511086006,10442.003934571578,7273.742618463339,63969.36065986293,9924.226175102873,7996.407268315612,8471.32348183366,6955.576520655365,48410.372178423706,10061.597976074734,8229.416665590388,8766.9926390042,7038.20460880502,49682.94155450294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04765142460823254,0.0015076578588215407,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1074372689156788,1.1074372689156788,1.1640641547576178,1.1640641547576178,1.092190079008207,1.092190079008207,1.1243143580512245,1.1243143580512245,1.1229548690642779,1.1229548690642779,0.5484168361664794,0.6186586363370531,0.5005353416677003,0.5816510629823296,0.48490269860818186,0.557818658835629,0.6366662777470607,0.5176123963543506,0.5886968765396478,0.4936414730447908,30.854836889092653,30.854836889092653,33.510338543478966,33.510338543478966,30.15792316704139,30.15792316704139,31.635376449985657,31.635376449985657,31.57215208753115,31.57215208753115,11.295729441565513,13.02972424189953,10.236308813276594,12.08946965518578,9.911891518760584,11.515416484506929,13.508742330224152,10.602770580775768,12.263902346388605,10.091942560001002,294.1200465054085,294.1200465054085,0.0,326.8000516726761,0.0,294.1200465054085,326.8000516726761,0,0
+2017/08/05 18:00:00,289.2751584074293,0,915.507042116092,0,0,0,82.42673404339764,0.0,18.226912597701826,0.0,120.14191543460078,0,39.380909295966944,2.962945424698504e-09,25.666711830344795,0,0,0.0,489.6228119655624,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10792.46237266766,7165.753475341503,9887.046783332604,6931.700524618228,64483.274753996375,11329.352492598273,7954.818825388863,10000.14735368185,7423.7909509522015,59856.22330421839,11378.531316873077,8022.387476936641,10225.710185217938,7453.154648042189,60737.85145731282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04874227304443021,0.0015421715429587508,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0915920282127756,1.0915920282127756,1.1043632090759545,1.1043632090759545,1.07297845263235,1.07297845263235,1.1058434986181471,1.1058434986181471,1.125439327831998,1.125439327831998,0.5472282712659222,0.5894580065474195,0.5048027609028874,0.580228076652489,0.5139249590759316,0.5497917461584857,0.5930026671184069,0.514659386811398,0.5804430040235045,0.5216107706191294,30.130749540750458,30.130749540750458,30.713693039654515,30.713693039654515,29.29120437236125,29.29120437236125,30.781619926040335,30.781619926040335,31.687740246912938,31.687740246912938,11.26822974555067,12.282874517781053,10.326702954701574,12.054502354935636,10.522573147108218,11.327616966918669,12.371561051294833,10.538499178117476,12.059778170883845,10.690395338470154,289.2751584074293,289.2751584074293,0.0,321.4168426749214,0.0,289.2751584074293,321.4168426749214,0,0
+2017/08/05 19:00:00,285.83170133265975,0,880.0589603913876,0,0,0,84.72200204094864,0.0,21.84367352677938,0.0,110.89738010901058,0,39.380909295966944,2.962945424698504e-09,25.555761154537016,0,0,0.0,489.66508275340215,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9645.655066947511,6235.015234714435,8839.481575992237,6637.084094522958,58199.44048649057,12309.779519789128,8244.284826482248,11025.827091590145,7902.619047873068,67737.51864936673,12301.909943485,8230.79583477185,11197.281696869486,7897.641410457659,68457.1688624661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046854990916776494,0.00148245925198395,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0695081109036664,1.0695081109036664,1.0739016104829586,1.0739016104829586,1.053857526416152,1.053857526416152,1.0946508468764864,1.0946508468764864,1.1043522469480336,1.1043522469480336,0.559135409168266,0.5910149261968012,0.5208028963095798,0.5875118555168268,0.5388632663049487,0.5597628468368105,0.5905251821852471,0.5286002293259421,0.5857850913992638,0.5456785085790355,29.13601946304864,29.13601946304864,29.332557137097552,29.332557137097552,28.44147986677916,28.44147986677916,30.26986235330277,30.26986235330277,30.71319029066379,30.71319029066379,11.546490199431432,12.32176110956597,10.672634925945147,12.234414173176091,11.076421152082418,11.561323417726541,12.309517618195287,10.84523195881313,12.191554312409252,11.232465019865359,285.83170133265975,285.83170133265975,0.0,317.59077925851085,0.0,285.83170133265975,317.59077925851085,0,0
+2017/08/05 20:00:00,268.7613690065342,0,819.334332604205,0,0,0,72.39083526435597,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,2.911134792777818e-09,23.170873758810067,0,0,0.0,464.43080747876377,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7267.420061759263,4463.051961340571,6834.5347336161185,5877.959943741472,47645.285088559736,10749.36998689905,7193.294335502336,9375.561548549224,6839.642867133413,60723.35555339528,10697.329710576942,7135.153536362632,9521.683508567725,6794.066504177199,61204.506097757454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04362196675425026,0.001380168621085362,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.049894088969298,1.049894088969298,1.0523861036637483,1.0523861036637483,1.032735894810083,1.032735894810083,1.075706583838449,1.075706583838449,1.0863689517578816,1.0863689517578816,0.5589629422158857,0.5840260358439564,0.5205925388054811,0.5807562422491297,0.5431490095838879,0.5552129586719116,0.57840649428034,0.5242056214576738,0.5738619431703736,0.5466112687551374,28.26698371782372,28.26698371782372,28.376632212116732,28.376632212116732,27.518148639556898,27.518148639556898,29.413497309881066,29.413497309881066,29.8939528526128,29.8939528526128,11.542415909167943,12.148025993595624,10.668015034302115,12.067470809884028,11.174313967457039,11.454146700547966,12.009868507336662,10.74763194269957,11.899141970339485,11.253978368046972,268.7613690065342,268.7613690065342,0.0,298.62374334059353,0.0,268.7613690065342,298.62374334059353,0,0
+2017/08/05 21:00:00,253.43985053159153,0,809.0739491605452,0,0,0,61.62027911853017,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,2.962945424698504e-09,25.61002795858242,0,0,0.0,489.66077654764814,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5444.359160477777,3126.609485544296,5293.38435469946,5281.226155444144,39402.08414167138,9019.395629990333,5963.38639311327,7926.746266796362,5616.094141117256,53500.96930671277,8878.215468208102,5832.087174358373,8015.2824366485875,5480.015697582139,53693.136663020916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0430756963397754,0.001362885005953267,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0403852018985629,1.0403852018985629,1.0417454549766574,1.0417454549766574,1.0237501405311007,1.0237501405311007,1.0604787754301914,1.0604787754301914,1.0761984356836807,1.0761984356836807,0.558910523989355,0.5809213174293232,0.5217337686155172,0.5775831447766684,0.5484405766697241,0.5524653857056864,0.5721353822583176,0.5224960326727884,0.5679877416128885,0.5500412987294123,27.850660584512923,27.850660584512923,27.91001434951025,27.91001434951025,27.130292770657462,27.130292770657462,28.73424989253067,28.73424989253067,29.43557318987719,29.43557318987719,11.541177857546202,12.07152651016267,10.693101819740619,11.989741393344502,11.296279346708516,11.38985980950585,11.857309741574014,10.709889487178216,11.757346507511329,11.333413487270192,253.43985053159153,253.43985053159153,0.0,281.59983392399056,0.0,253.43985053159153,281.59983392399056,0,0
+2017/08/05 22:00:00,184.87447809922654,0,595.6856059283356,0,0,0,48.31455185868278,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,2.804796330177527e-09,18.552549835767845,0,0,0.0,435.97901962188695,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2939.5459105537807,1575.4136859738574,2850.6213950086662,3816.15022642683,23105.387574022498,7512.7490441680075,4983.491497985004,6512.319335078117,4686.665118550743,44779.668604754086,7279.056141379153,4791.614053363187,6498.777256785152,4498.469215684436,44743.785290222535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.031714742887924134,0.0010034323579745106,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9832801613551496,0.9832801613551496,0.9846788152321256,0.9846788152321256,0.967328078049479,0.967328078049479,1.0076006716751138,1.0076006716751138,0.9944952432361515,0.9944952432361515,0.5392900367311658,0.5589288006426449,0.5046460369809476,0.5556684346132614,0.5291487097752163,0.5282536621987975,0.5453322302043735,0.5008345058649368,0.5414759234862385,0.5273458822347503,25.42097277902772,25.42097277902772,25.479008750262125,25.479008750262125,24.76439693959503,24.76439693959503,26.440776221562942,26.440776221562942,25.8884429439632,25.8884429439632,11.086133552891766,11.54160951524561,10.323369244655737,11.464835416183533,10.857471870976028,10.837504667895047,11.224487990583356,10.242620173081406,11.136003469858437,10.817288852490549,184.87447809922654,184.87447809922654,0.0,205.41608677691838,0.0,184.87447809922654,205.41608677691838,0,0
+2017/08/05 23:00:00,109.51573593703276,0,477.7894787218517,0,0,0,19.91469800294901,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6947731243566466e-09,14.090056872550726,0,0,0.0,424.5539499530355,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2109.905432677457,0.0,3321.3797888918457,2172.9254679882006,2783.880729047437,1876.1205876901108,24019.998726068632,2936.231151287204,1869.3635027986043,2669.259563208121,1538.4893363508013,23533.776384858305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02543786574900354,0.0008048363406433528,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8880608639198395,0.8880608639198395,0.8651275707725273,0.8651275707725273,0.8806912496052424,0.8806912496052424,0.9524274187337206,0.9524274187337206,0.9426690366444622,0.9426690366444622,0.5295318656146171,0.547431001392562,0.496507634202159,0.5438108318649346,0.5224167059603995,0.5130789420526036,0.5283886930581866,0.48703014909497977,0.5244081248343696,0.5168666228636791,21.650869283567403,21.650869283567403,20.797486263818314,20.797486263818314,21.374278531235376,21.374278531235376,24.160043516187372,24.160043516187372,23.768983799907275,23.768983799907275,10.86603012031675,11.272915959166824,10.151714216508182,11.189501922186324,10.708141268711842,10.50425622560114,10.840514787286708,9.95542125801785,10.752110973493188,10.5865034280192,109.51573593703276,109.51573593703276,0.0,121.6841510411475,0.0,109.51573593703276,121.6841510411475,0,0
+2017/08/06 00:00:00,48.65802228458256,0,469.9064160512047,0,0,0,0.30090044975587915,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,5.332673763216753,2.638356563410222e-09,11.838814004171502,0,0,0.0,416.6708872823885,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1187.2226556673202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02501816565338122,0.0007915573221729622,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.905972754049946,0.905972754049946,0.9012211748029741,0.9012211748029741,0.8949105833189931,0.8949105833189931,0.9224979386156034,0.9224979386156034,0.9220821810302955,0.9220821810302955,0.7137841833595796,0.7517474602173941,0.6392012747322143,0.7403976328726162,0.7167087753140345,0.67192032510123,0.7027532548536765,0.6130692498359951,0.6930323055384411,0.6981309585962673,22.332364759603905,22.332364759603905,22.150309495857982,22.150309495857982,21.9099388697161,21.9099388697161,22.97262645272845,22.97262645272845,22.956383294503766,22.956383294503766,15.719051712606046,16.901388194683094,13.57730492607341,16.541420360304656,15.807932450295922,14.487240154755767,15.387130968545534,12.883903517652428,15.098980075561798,15.249606845903145,48.65802228458256,48.65802228458256,0.0,54.064469205091726,0.0,48.65802228458256,54.064469205091726,0,0
+2017/08/06 01:00:00,23.722073079097907,0,47.17326057481676,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249776554201191,0,0,0.0,11.68290806227262,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0025115393345518404,7.946335385788907e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.975358481817096,0.975358481817096,0.9727195262882234,0.9727195262882234,0.9400829481814644,0.9400829481814644,0.9949755673147223,0.9949755673147223,1.0096706814526637,1.0096706814526637,0.7270085481638011,0.7732842326300347,0.6347978033448245,0.7584641775513883,0.7744310842876858,0.6909557617164286,0.7323204032791298,0.6154464395409177,0.716673626689031,0.7479430799920497,25.093691484645248,25.093691484645248,24.9852024966181,24.9852024966181,23.66597957049339,23.66597957049339,25.908571294240716,25.908571294240716,26.528611229949718,26.528611229949718,16.12388354842264,17.59959471896751,13.458385226649654,17.117012394017593,17.637330009732736,15.037955680787206,16.288611331848244,12.945755995032258,15.806862067171195,16.780114398360496,23.722073079097907,23.722073079097907,0.0,26.35785897677545,0.0,23.722073079097907,26.35785897677545,0,0
+2017/08/06 02:00:00,28.34440521598353,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5250421295106376,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0082480094943065,1.0082480094943065,1.005215032585415,1.005215032585415,0.966504074612683,0.966504074612683,1.0279488782752935,1.0279488782752935,1.0709510591626519,1.0709510591626519,0.7388783507868886,0.7861056249786446,0.6437213006606413,0.7710446563631655,0.7979638022405761,0.701645004582168,0.7448515164163049,0.6220664847481167,0.7285042225388427,0.7669952021913705,26.468226836487943,26.468226836487943,26.339748625321377,26.339748625321377,24.730749650413202,24.730749650413202,27.311153234663337,27.311153234663337,29.20049284522362,29.20049284522362,16.49365449182791,18.02464765168955,13.70024697033277,17.52606671873656,18.423984441579336,15.354073878444382,16.682020102655414,13.11929641725203,16.170143727689137,17.39366125872418,28.34440521598353,28.34440521598353,0.0,31.493783573315035,0.0,28.34440521598353,31.493783573315035,0,0
+2017/08/06 03:00:00,23.72220391719724,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251084935194467,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9938400415977883,0.9938400415977883,0.991912015140418,0.991912015140418,0.9492444918599856,0.9492444918599856,1.0111274156168697,1.0111274156168697,1.0649152175155336,1.0649152175155336,0.734688543321741,0.7825816136801255,0.6372160886760503,0.7667108976769887,0.8178758212770308,0.6980839953048519,0.7423585340796324,0.6158779387056792,0.7252857682970052,0.781340365369826,25.861000390648243,25.861000390648243,25.78034164956567,25.78034164956567,24.032077125886005,24.032077125886005,26.590520237119136,26.590520237119136,28.93129184281267,28.93129184281267,16.362441379213408,17.907123271729617,13.523589077129728,17.3843916069208,19.107924387694794,15.248214311582288,16.603217045166915,12.957009538757944,16.07071839015299,17.865853852242168,23.72220391719724,23.72220391719724,0.0,26.358004352441377,0.0,23.72220391719724,26.358004352441377,0,0
+2017/08/06 04:00:00,57.69595381340641,0,88.72588128136032,0,0,0,4.217808450862914,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,15.889164334368816,0.0,0.5250826161115989,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,733.4068976920673,0.0,0.0,0.0,0.0,0.0,8199.418188198519,0.0,0.0,0.0,0.0,5170.41599990129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.913858434205845,0.913858434205845,0.9124897380581857,0.9124897380581857,0.9064090517347377,0.9064090517347377,0.9497031948389585,0.9497031948389585,0.9315232081303364,0.9315232081303364,0.5178766990405076,0.5420872100203227,0.4704809527734711,0.5335980650499901,0.5283653718937332,0.49419611332784574,0.5155540000181305,0.45569763097956834,0.5067811351627316,0.5160516189914086,22.636518967572925,22.636518967572925,22.58354759799471,22.58354759799471,22.349127240359238,22.349127240359238,24.050494199234407,24.050494199234407,23.326939344465984,23.326939344465984,10.608541447220176,11.149986709732275,9.621956605305073,10.957245321033184,10.839994853509111,10.103481482168661,10.557930344697525,9.33405685468874,10.368876701136841,10.568753707365076,57.69595381340641,57.69595381340641,0.0,64.10661534822934,0.0,57.69595381340641,64.10661534822934,0,0
+2017/08/06 05:00:00,99.80241304371229,0,212.9421150752648,0,0,0,4.657318477089953,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,22.70327559318545,0.0,0.57781178423714,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1619.842611101486,0.0,0.0,0.0,0.0,0.0,13853.551781823282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9091801615307333,0.9091801615307333,0.9079985018690797,0.9079985018690797,0.909562211688356,0.909562211688356,0.9811171829597578,0.9811171829597578,0.9203218169121065,0.9203218169121065,0.4580221328565941,0.4732673920351562,0.4262888981878476,0.46753330805216303,0.440987960168228,0.4313103741785308,0.4436453053082377,0.40764080098563504,0.4381115748276632,0.4608535758376909,22.455772661772258,22.455772661772258,22.410258810235476,22.410258810235476,22.470500122771796,22.470500122771796,25.33136996546301,25.33136996546301,22.887684828634775,22.887684828634775,9.378702091532986,9.677276144422592,8.789286866325071,9.563800882051822,9.056927522516375,8.879674616623191,9.106303137870071,8.463081819206238,9.003823988729621,9.433398070010284,99.80241304371229,99.80241304371229,0.0,110.8915700485692,0.0,99.80241304371229,110.8915700485692,0,0
+2017/08/06 06:00:00,117.68109980963459,0,628.6926310032953,0,0,0,5.716619189099279,0.0,8.010618550050419,0.0,80.56906512710079,0,22.859979522968132,2.5226729444466047e-09,0.5248174178933679,0,0,0.0,398.0053396717584,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1997.4219351669813,0.0,0.0,0.0,0.0,0.0,17146.591390344805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033472061351438515,0.0010590326892080896,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9164541735949588,0.9164541735949588,0.9153488607981118,0.9153488607981118,0.915149083213871,0.915149083213871,1.0097822324810362,1.0097822324810362,0.9288670191688821,0.9288670191688821,0.4528834212304288,0.4667858076970534,0.42475909169574627,0.46489839979685066,0.4161669541935835,0.427218732327245,0.4385685261341025,0.4067554783508187,0.4376654201477046,0.46132218117940205,22.737186868899798,22.737186868899798,22.694287467873323,22.694287467873323,22.68653895129546,22.68653895129546,26.533349160529667,26.533349160529667,23.222324712229906,23.222324712229906,9.280317315219762,9.54911254484378,8.761965036710777,9.512132226449822,8.610377430347029,8.805942457874693,9.012236425316004,8.44796565897147,8.995618972619681,9.44248357741695,117.68109980963459,117.68109980963459,0.0,130.75677756626064,0.0,117.68109980963459,130.75677756626064,0,0
+2017/08/06 07:00:00,117.16820966459386,0,647.381303827149,0,0,0,1.7006676649915298,0.0,6.227507099447065,0.0,69.33401494192633,0,39.380909295966944,2.522673666458665e-09,0.5251106597393245,0,0,0.0,381.2036599830682,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3095.093621036513,3019.3616981492714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.034467060135405035,0.001090513757161425,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8397977459393802,0.8397977459393802,0.7901276759363376,0.7901276759363376,0.8652833668609075,0.8652833668609075,1.0281883834802712,1.0281883834802712,0.9505645353508991,0.9505645353508991,0.5498897616762406,0.5460656286237251,0.5373698246434725,0.5557174513800549,0.6605396696417762,0.5137251292731762,0.5041088667791971,0.5182413729056159,0.516392219093488,0.662956237110043,19.880190941249722,19.880190941249722,18.15942606034011,18.15942606034011,20.803210605865573,20.803210605865573,27.321489583512715,27.321489583512715,24.08509971200617,24.08509971200617,11.329893315373923,11.24138904890026,11.042495666154949,11.465986235373038,14.165476237315104,10.518243884987314,10.311951031575376,10.616508811113718,10.576168037803285,14.233330456774382,117.16820966459386,117.16820966459386,0.0,130.1868996273265,0.0,117.16820966459386,130.1868996273265,0,0
+2017/08/06 08:00:00,153.73453490266536,0,700.526532668325,0,0,0,7.513864127805755,0.0,9.39755635098607,0.0,96.91714705112861,0,39.380909295966944,2.5226736665477604e-09,0.5250580742553623,0,0,0.0,381.1133600554278,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1391.9064127704423,377.7575633860348,1734.0981629621822,3982.3544763233012,18544.8702913757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03729655148393454,0.0011800368911107312,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.927825624848113,0.927825624848113,0.9000464619625432,0.9000464619625432,0.9332802780865085,0.9332802780865085,1.0328416954976918,1.0328416954976918,0.9827990085546918,0.9827990085546918,0.7132979744332533,0.7022266368378351,0.7031858228442593,0.7132845590876076,0.8758132531391698,0.6945701624086593,0.6726821182486454,0.7049893879719127,0.6877670432300742,0.8708869020578776,23.18138606779584,23.18138606779584,22.105441994039737,22.105441994039737,23.396296683204696,23.396296683204696,27.52273310481263,27.52273310481263,25.401025134212787,25.401025134212787,15.70431115481351,15.371416301168978,15.400048067235076,15.703904581743501,21.192426460198945,15.144293892205837,14.508978507233621,15.453992114898725,14.944610050946011,21.009764913966507,153.73453490266536,153.73453490266536,0.0,170.8161498918504,0.0,153.73453490266536,170.8161498918504,0,0
+2017/08/06 09:00:00,193.7193298879561,0,776.256463693708,0,0,0,47.3386089858283,0.0,9.407183199500748,0.0,97.06762091869685,0,39.380909295966944,2.5226736665477716e-09,0.5250074854405915,0,0,0.0,403.6077623119947,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5855.144398587474,2471.6628265550153,4396.146993506378,7042.751081092082,33295.08256076926,6170.109451508202,3628.631850003866,4452.335546434634,5146.172358240124,36592.66388397719,6156.902858226557,3503.180437583686,4707.430393309888,5253.478321208006,36169.42427598416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04132846910539072,0.0013076039541751847,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0510312478589874,1.0510312478589874,0.9681326716223378,0.9681326716223378,0.9786599783036817,0.9786599783036817,1.2210451334632806,1.2210451334632806,1.0073958839760193,1.0073958839760193,0.6347179995403325,0.5910986583576068,0.5624179858441595,0.7205829977550314,0.6161433236372814,0.6512220045008005,0.5899586564243294,0.5747875927041567,0.7513339132051355,0.6235714182307919,28.316990834020544,28.316990834020544,24.797277156710948,24.797277156710948,25.229797326270983,25.229797326270983,36.28222329852304,36.28222329852304,26.432095405341457,26.432095405341457,13.456237812912548,12.323855436926792,11.62428238890223,15.926240522029218,12.963934818815233,13.90621652429192,12.29536758501925,11.921622457144991,16.888175356177882,13.159012630388276,193.7193298879561,193.7193298879561,0.0,215.24369987550676,0.0,193.7193298879561,215.24369987550676,0,0
+2017/08/06 10:00:00,270.91605452140425,0,929.7182975258695,0,0,0,66.93942975571461,0.0,13.065493553185489,0.0,124.87761316689259,0,39.380909295966944,2.9111417944368407e-09,23.22063354427914,0,0,0.0,468.3437148627957,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10171.974301552269,4820.947419401022,7482.824481889862,8499.91918081011,49654.90273183365,9966.910070104717,5517.886318583436,7301.1649889263035,7407.703119905269,46524.650501783886,10244.221614433613,5471.093368843985,7483.934634355585,7716.7282620314045,47322.767260494016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0494988908088184,0.001566110401617905,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1144062844287024,1.1144062844287024,1.010931367668728,1.010931367668728,1.0227673911074702,1.0227673911074702,1.1960998245011025,1.1960998245011025,1.0561855501064736,1.0561855501064736,0.5995170455926497,0.5485443118803179,0.5162493720583577,0.6597482702577889,0.5273567925184578,0.6186637977811625,0.5505835852319833,0.5268654104318835,0.6823754948817102,0.5344616181172286,31.175992688784618,31.175992688784618,26.582183851456705,26.582183851456705,27.088055276908108,27.088055276908108,35.05706833804858,35.05706833804858,28.544238227110313,28.544238227110313,12.535971151778881,11.298682468867625,10.573057870669373,14.143309716947627,10.817531607346652,13.029859524662214,11.346018836280493,10.806603419596328,14.787779356192203,10.976709195521394,270.91605452140425,270.91605452140425,0.0,301.0178383571158,0.0,270.91605452140425,301.0178383571158,0,0
+2017/08/06 11:00:00,299.03987883417733,0,978.959758226864,0,0,0,76.73820805444942,0.0,13.065493553185489,0.0,143.25325374857618,0,39.380909295966944,2.9111417944368387e-09,23.17003897663377,0,0,0.0,464.349646794974,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13167.430964473051,6203.80612962746,9662.195754405866,8485.444081923444,61150.318247508425,11455.400680151146,6282.113222114247,8398.349178141778,7735.897835787031,50712.03098570973,11817.28453743828,6273.447319444685,8595.75190680299,7973.797279133294,51796.101367154515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05212054265001755,0.0016490576384313668,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1762293776359356,1.1762293776359356,1.0535561446915442,1.0535561446915442,1.0668806375469049,1.0668806375469049,1.1815110913451603,1.1815110913451603,1.1001696571843431,1.1001696571843431,0.6130216652738958,0.5418882513198126,0.5106287610002362,0.637140315592514,0.5129207255790196,0.6384518121379532,0.5499989498821659,0.526216410494767,0.6591053120990519,0.521614350557739,34.09406037130044,34.09406037130044,28.428191204338987,28.428191204338987,29.01880863656936,29.01880863656936,34.348889464017276,34.348889464017276,30.521664196147327,30.521664196147327,12.882667911075146,11.14543373250747,10.451382569248068,13.52154216965647,10.5008341530353,13.557005624120748,11.332429632790792,10.792185879423272,14.12532090563731,10.690474103159318,299.03987883417733,299.03987883417733,0.0,332.2665320379748,0.0,299.03987883417733,332.2665320379748,0,0
+2017/08/06 12:00:00,281.251995478684,0,936.3255417492096,0,0,0,81.97240415093849,0.0,13.065493553185489,0.0,124.80122689546741,0,39.380909295966944,2.804803213858667e-09,18.599986377866532,0,0,0.0,457.2057828298638,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12844.050393078754,6565.767882857864,10269.229726330315,7719.462644613458,63789.84035747949,12309.41210466866,6952.791871998121,9724.734213907892,7812.873249719058,56678.26103673001,12671.706508728512,6985.2533983336725,9972.685769893851,7978.930863392642,57903.41226222288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.049850665385298865,0.0015772403040106402,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1508556393727436,1.1508556393727436,1.07173909241421,1.07173909241421,1.0845853184091725,1.0845853184091725,1.1376879050407944,1.1376879050407944,1.1128713454202768,1.1128713454202768,0.6031285876289689,0.5501434109715928,0.521311449190295,0.6120196103260679,0.5173551574589027,0.6237021845967251,0.5592504172861498,0.5374068360453839,0.6258916447686965,0.5269759026368751,32.88173223934696,32.88173223934696,29.235734545930853,29.235734545930853,29.81330507535627,29.81330507535627,32.26054801250034,32.26054801250034,31.105117780649522,31.105117780649522,12.627912960913292,11.335786093202685,10.683811723930788,12.85667083185345,10.59715684964931,13.162468283991913,11.54920782202295,11.0433352611075,13.220437535210053,10.809059821537417,281.251995478684,281.251995478684,0.0,312.5022171985378,0.0,281.251995478684,312.5022171985378,0,0
+2017/08/06 13:00:00,283.49048022005826,0,877.1833227099962,0,0,0,84.47740623691301,0.0,12.88660173648153,0.0,124.7641830973959,0,39.380909295966944,2.8048032138586682e-09,18.54940464804173,0,0,0.0,433.5539163031947,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13873.660219818938,7139.091965712809,10637.004974196441,7572.351447399056,63626.170115268505,13326.889667396681,7589.642766276271,10262.286745459309,7943.103177765732,57208.77624706882,13760.458439922091,7698.098547266767,10571.563617005248,8092.149622788416,58863.365772395424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04670188983661522,0.0014776152405279034,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1981172069570871,1.1981172069570871,1.1094412649906678,1.1094412649906678,1.097754189856031,1.097754189856031,1.1377419075809574,1.1377419075809574,1.1132957976672038,1.1132957976672038,0.6378865496654245,0.5808073707197573,0.5363297865139114,0.6157407500719241,0.5187643488693952,0.6666889662507018,0.601337434730247,0.5577230329075787,0.6323308306136947,0.531692723683699,35.155489003789995,35.155489003789995,30.947020858116815,30.947020858116815,30.411327832589365,30.411327832589365,32.263084231135835,32.263084231135835,31.124708739604657,31.124708739604657,13.541711525512497,12.068726849024557,11.018926907651206,12.9534307686027,10.627944788956981,14.338637995336896,12.582243443857223,11.513162756511647,13.392130020898236,10.914414518736962,283.49048022005826,283.49048022005826,0.0,314.9894224667314,0.0,283.49048022005826,314.9894224667314,0,0
+2017/08/06 14:00:00,256.79128070534483,0,832.3672754095568,0,0,0,75.97825067731945,0.0,12.88660173648153,0.0,111.01081017850728,0,39.380909295966944,2.6947798700948686e-09,14.102733611920579,0,0,0.0,424.2282215152993,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12252.995092315747,7098.899824355483,10291.35105029283,7217.250680639086,59748.83273779308,11323.083204345221,7053.028344532196,8991.559704200223,7205.342202637893,49442.11140292199,11744.741522209999,7258.895565983634,9393.422035381942,7387.621456554207,50903.43338184271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04431585028279482,0.0014021226122517938,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.144356446846361,1.144356446846361,1.1211401178172467,1.1211401178172467,1.1003850663373707,1.1003850663373707,1.1347518836784092,1.1347518836784092,1.1028947439025971,1.1028947439025971,0.6065036328230822,0.5909661153732458,0.5381261430946087,0.6129246103265907,0.5078807315780348,0.625952230079646,0.610255019209776,0.5579940085104894,0.6274537413939082,0.5186154115193746,32.574443280879905,32.574443280879905,31.487850272918067,31.487850272918067,30.531513543192332,30.531513543192332,32.12280006761256,32.12280006761256,30.6463820057007,30.6463820057007,12.714345791565691,12.32054038281504,11.059664355956912,12.880148034232718,10.3923903706485,13.222044579933069,12.810996631390623,11.519550185374086,13.261923531919422,10.624686752914641,256.79128070534483,256.79128070534483,0.0,285.3236452281609,0.0,256.79128070534483,285.3236452281609,0,0
+2017/08/06 15:00:00,256.9228393477754,0,832.3675272848918,0,0,0,78.37597507761282,0.0,12.88660173648153,0.0,108.75639138185811,0,39.380909295966944,2.694779870094869e-09,14.090986650706835,0,0,0.0,424.2284733906344,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12179.770281212743,8943.40822421871,10543.830856025961,7279.087907761726,61237.22080789353,10772.525923857796,8458.877480846435,8698.330611418884,7305.317007463383,48121.486274588715,11059.661976256713,8772.948066467608,9032.78436856885,7441.577236103215,49894.77473315276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04431586369282422,0.0014021230365357763,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1405371977139303,1.1405371977139303,1.2395587470171432,1.2395587470171432,1.0979619490870225,1.0979619490870225,1.1280044687123023,1.1280044687123023,1.1052088198556438,1.1052088198556438,0.5957196416344253,0.6578782033362182,0.530586223177759,0.6044196908869494,0.5005929744710808,0.6128915382031768,0.6907477395820281,0.5489929392898155,0.6173367570078916,0.5138969548416954,32.394492670055456,32.394492670055456,37.202645499522454,37.202645499522454,30.420810266430223,30.420810266430223,31.80729479970016,31.80729479970016,30.75248699075017,30.75248699075017,12.439908253372934,14.091038327321371,10.88961328639219,12.660918933342046,10.237524371100776,12.87928946270543,15.031852701698242,11.309080708439396,12.995115511179648,10.521966338389788,256.9228393477754,256.9228393477754,0.0,285.4698214975282,0.0,256.9228393477754,285.4698214975282,0,0
+2017/08/06 16:00:00,272.00892031482005,0,885.6033093411489,0,0,0,79.19056711014467,0.0,11.08681950462398,0.0,124.87761316689259,0,39.380909295966944,2.694779870094869e-09,14.041036032042776,0,0,0.0,424.22872667807525,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12219.106328581995,8803.636411034864,11131.769685537589,7591.81468911694,64827.82464079157,10572.384856732542,8176.56553388562,8984.534632016846,7287.4872953649565,49012.76841671772,10781.55816741561,8484.267681959835,9304.508973080854,7415.736942954124,50644.984935929955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04715017616159802,0.001491798707369014,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1376938532414278,1.1376938532414278,1.182084092678356,1.182084092678356,1.1159324525003311,1.1159324525003311,1.1430155777944049,1.1430155777944049,1.125647026637949,1.125647026637949,0.581031516868512,0.6306253701766942,0.5328984876482487,0.6040433363238819,0.4983262841359287,0.59310635521695,0.6544702133911583,0.5498009526418965,0.6153893544420258,0.5098110450490485,32.260827363961226,32.260827363961226,34.376585624131465,34.376585624131465,31.2465405554954,31.2465405554954,32.51121273558236,32.51121273558236,31.697412519044477,31.697412519044477,12.074234637083237,13.346481014721391,10.941501022346515,12.651290273538294,10.189824828677303,12.374163510651513,13.996169232007034,11.327830763957095,12.944267814836351,10.433794458968194,272.00892031482005,272.00892031482005,0.0,302.2321336831334,0.0,272.00892031482005,302.2321336831334,0,0
+2017/08/06 17:00:00,285.385721192743,0,918.5402886105469,0,0,0,83.47638861083102,0.0,11.08681950462398,0.0,129.38645076019097,0,39.380909295966944,2.8048032138586682e-09,18.623177815870918,0,0,0.0,457.1657059474731,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12079.729931670863,10762.033870532505,11819.487095039864,7573.2773871366735,67133.02032203741,10858.678882709342,9664.820590519623,9963.898686105316,7444.364263059693,52487.6332248851,10937.412104185465,10023.695359197958,10241.872496093538,7508.501138320634,54146.43384927771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048903765334540904,0.001547281046448441,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1279644263573692,1.1279644263573692,1.3118148932287417,1.3118148932287417,1.1352939653602478,1.1352939653602478,1.133450723801517,1.133450723801517,1.1336454357587644,1.1336454357587644,0.5706644530983698,0.7039344785650589,0.5457670298882409,0.5924943384153444,0.5037482888063018,0.5779569371041143,0.7384816799512735,0.5621544761795833,0.6011267523917169,0.5152082003457032,31.805426873325302,31.805426873325302,40.877729102634326,40.877729102634326,32.1482116851968,32.1482116851968,32.061843355709826,32.061843355709826,32.07096172476666,32.07096172476666,11.82177314319236,15.422423078170198,11.23450507182254,12.358809300414691,10.304293499513747,11.998875253497857,16.48119956456283,11.618020351082137,12.576880770757668,10.550415406132615,285.385721192743,285.385721192743,0.0,317.09524576971444,0.0,285.385721192743,317.09524576971444,0,0
+2017/08/06 18:00:00,276.527478769964,0,890.2175409266058,0,0,0,83.14877651933806,0.0,11.773820147258194,0.0,115.6330778413024,0,39.380909295966944,2.9111417944368387e-09,23.1589197607329,0,0,0.0,464.33331077607625,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11337.841777494856,8058.366975114479,10763.374777136472,7135.728858293368,65613.67300076733,11379.963523148635,8519.29453353553,10335.62705987908,7473.3841475473755,57769.352200103785,11353.399336291634,8663.393663761819,10499.923062109709,7476.972609557192,59072.00901109632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04739584126899984,0.0014995713801245019,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1100380286872897,1.1100380286872897,1.137245890187336,1.137245890187336,1.1012235532469388,1.1012235532469388,1.1165570206556377,1.1165570206556377,1.129158775344483,1.129158775344483,0.5646073211247876,0.6153304263749154,0.533593344197368,0.5857062819766963,0.5172430671513935,0.5653985748682382,0.6229376272805556,0.5411000196134462,0.5860116011307436,0.5257378300189038,30.974498126592835,30.974498126592835,32.23979240700152,32.23979240700152,30.569867463419357,30.569867463419357,31.27543389901045,31.27543389901045,31.861164318580393,31.861164318580393,11.67642615387362,12.94273173771765,10.957139005123835,12.189601278170073,10.594711595508628,11.695322720375913,13.142274479231176,11.127412671037021,12.197169117155028,10.781565890013283,276.527478769964,276.527478769964,0.0,307.2527541888489,0.0,276.527478769964,307.2527541888489,0,0
+2017/08/06 19:00:00,265.7437329535901,0,875.0920945311308,0,0,0,82.71342375112665,0.0,12.918646972266869,0.0,104.13412371906301,0,39.380909295966944,2.9111417944368387e-09,23.164654009801225,0,0,0.0,484.6982168931454,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10690.184521086614,7030.463314153836,10067.261002357742,6703.222751947551,63170.95764535991,11559.200726078001,8176.197772437747,10584.482649379326,7436.5042268353445,61077.348668514176,11451.81170239507,8186.538683973824,10666.725725248534,7389.734964150186,62074.479431679596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046590551299385774,0.0014740925668193263,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0971661599028226,1.0971661599028226,1.1070977470791656,1.1070977470791656,1.0888207459971082,1.0888207459971082,1.101540631303462,1.101540631303462,1.120531048139682,1.120531048139682,0.5634886085585873,0.6062187565226623,0.5375461935429308,0.5811707128523295,0.5288905048890377,0.5603463530121621,0.608273999942416,0.5417727671674937,0.5772608850333456,0.5354051971011504,30.384497277913454,30.384497277913454,30.839232254758414,30.839232254758414,30.00499163552591,30.00499163552591,30.584377418758052,30.584377418758052,31.459581146730685,31.459581146730685,11.64975561656101,12.707031181361884,11.046497085540139,12.077656100862114,10.851708137565012,11.575133374601435,12.759881480928499,11.142791776213897,11.981871631826706,10.99801372480573,265.7437329535901,265.7437329535901,0.0,295.27081439287787,0.0,265.7437329535901,295.27081439287787,0,0
+2017/08/06 20:00:00,278.3412222890901,0,790.7253229105416,0,0,0,77.89334769056833,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,2.804803213858667e-09,18.62369617384413,0,0,0.0,435.82179778510044,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8836.452613019359,5735.664440031498,8332.203254331962,6041.622991872051,54642.32168211845,11265.805374715022,7701.184731086293,10291.319624072195,7127.842439946806,62213.18183233669,11112.143386333013,7645.19265457816,10319.188093383545,7047.709304518529,62818.128146465475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.042098801887275425,0.0013319767464277734,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0734795766233696,1.0734795766233696,1.0825610963585197,1.0825610963585197,1.0617600009700905,1.0617600009700905,1.0782142898044458,1.0782142898044458,1.102563635491795,1.102563635491795,0.5602988751398411,0.5886403228546945,0.534204950769206,0.5749795197184961,0.5388946147031611,0.5535194102025135,0.5838692649804678,0.5338566726560905,0.5669948618107641,0.5427036258367074,29.31364845064674,29.31364845064674,29.721912789873613,29.721912789873613,28.791082714536856,28.791082714536856,29.526139759105362,29.526139759105362,30.63121486098791,30.63121486098791,11.574009154530884,12.262493674461055,10.970920722052327,11.926288283157447,11.077134307437703,11.414482865416886,12.144153171671206,10.963070765453935,11.733527584476093,11.16410367798099,278.3412222890901,278.3412222890901,0.0,309.2680247656557,0.0,278.3412222890901,309.2680247656557,0,0
+2017/08/06 21:00:00,249.25253134862623,0,797.3248427577042,0,0,0,62.584778775405255,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9111417944368387e-09,23.105784660624018,0,0,0.0,477.91167014480715,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7059.07653976734,4487.7122246526915,6703.09954702013,5288.166017260296,45404.105007097656,8785.456979824861,6109.194725919018,7778.804841509454,5653.814917864626,48311.0539029823,8566.632776048813,5992.260775101545,7724.831840883034,5534.563425383315,48638.223083877856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.042450165212246704,0.0013430936371094234,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0569271000423557,1.0569271000423557,1.0646401744305425,1.0646401744305425,1.0444998620363453,1.0444998620363453,1.0626526336032678,1.0626526336032678,1.0791878597369877,1.0791878597369877,0.5454614419002557,0.571919787449459,0.5209229372086662,0.5612368484571822,0.5242407862165884,0.5345403078779842,0.5621572138369214,0.5161074552643311,0.5493084999923807,0.5248003889082307,28.577010925288306,28.577010925288306,28.919055589037868,28.919055589037868,28.03040760044324,28.03040760044324,28.830712881117336,28.830712881117336,29.569930417184437,29.569930417184437,11.227463963398378,11.852095254432669,10.675272133846619,11.596237368338478,10.748409600093652,10.978484412653316,11.618085393229876,10.56996883158277,11.316399967903251,10.760792238086935,249.25253134862623,249.25253134862623,0.0,276.94725705402914,0.0,249.25253134862623,276.94725705402914,0,0
+2017/08/06 22:00:00,172.72404543129545,0,602.6276755053165,0,0,0,45.302789214394586,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,2.804803213858667e-09,18.621371339643513,0,0,0.0,442.9210891988679,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3784.2633218518936,2355.7983616299775,3584.3219156635055,3662.3734397165535,25804.021128709734,6922.598072910871,4772.5554692970145,5865.234093346189,4337.944511242545,37283.577618137664,6638.67992200086,4607.632336598483,5746.072971434375,4182.0091922148085,37351.71394783881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03208434381423981,0.0010151262736500404,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9920685848625609,0.9920685848625609,0.9989978543683685,0.9989978543683685,0.9795512019913956,0.9795512019913956,1.0079538745827146,1.0079538745827146,0.9947317203794287,0.9947317203794287,0.5272004792998715,0.548575835192288,0.49972728721470555,0.5358778850388105,0.5051408437336926,0.5129032353384032,0.5348139474692358,0.4915452671869289,0.5204045288170163,0.5027428804853615,25.786886431222854,25.786886431222854,26.077472901063217,26.077472901063217,25.266610627745862,25.266610627745862,26.45575197343956,26.45575197343956,25.898351602270907,25.898351602270907,10.814054115279035,11.299412827968283,10.219280908914115,11.008700773266995,10.333898006798094,10.500455922146728,10.984659726725482,10.04845238020134,10.663887561526451,10.282971497179048,172.72404543129545,172.72404543129545,0.0,191.9156060347727,0.0,172.72404543129545,191.9156060347727,0,0
+2017/08/06 23:00:00,118.16741071690062,0,462.6927750357748,0,0,0,33.08465224947341,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.5809975885496255e-09,9.571777406007921,0,0,0.0,409.4572462669586,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1142.110867560454,609.4940789772502,1114.4975073452824,2340.271367019805,10990.94698945966,5632.592238068822,3878.1271661280966,4717.236663861787,3461.296741411183,31666.37264814844,5259.241871820687,3647.3057412118474,4522.881054617882,3235.6797378070846,31468.144781055507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02463410606252774,0.0007794059444299765,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9538765659039982,0.9538765659039982,0.9615016295677762,0.9615016295677762,0.940220646128789,0.940220646128789,0.9572607659572175,0.9572607659572175,0.9433580681528998,0.9433580681528998,0.5279696601600972,0.5462905315265084,0.4998995410678207,0.5333533115190636,0.5075420898565333,0.5104877030356925,0.5289505494638472,0.4883322878645462,0.5146023443124937,0.5032132483385395,24.218437158578794,24.218437158578794,24.52704853828483,24.52704853828483,23.671457412161942,23.671457412161942,24.355125475083554,24.355125475083554,23.796472727048638,23.796472727048638,10.831176246565448,11.246576573333627,10.22290839973563,10.951734624040583,10.385143316299974,10.448346514213753,10.85304821449374,9.982160684710905,10.53726137848625,10.292941293679945,118.16741071690062,118.16741071690062,0.0,131.29712301877845,0.0,118.16741071690062,131.29712301877845,0,0
+2017/08/07 00:00:00,46.0257572620817,0,445.3599702745895,0,0,0,3.4935457162653942,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,3.1548817975656553,2.5809975885496268e-09,9.580008749246463,0,0,0.0,392.1244415057733,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1149.7971879933866,10220.515175564578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.023711294698518195,0.0007502088361252975,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.939632183232503,0.939632183232503,0.9458261822183517,0.9458261822183517,0.9268389412897516,0.9268389412897516,0.9300747840291443,0.9300747840291443,0.9148807031569653,0.9148807031569653,0.7198745132552878,0.7575108934906595,0.6587420531568403,0.7217992848296872,0.6926491210634924,0.6787995637915286,0.7147977849640879,0.6311153317504341,0.6788616563096243,0.6796814223231141,23.648052692542862,23.648052692542862,23.895092397240376,23.895092397240376,23.14263818935622,23.14263818935622,23.269857889962253,23.269857889962253,22.67613217000708,22.67613217000708,15.904557068030869,17.08629195506292,14.115165493222548,15.963515871136906,15.08770523053974,14.684455197579268,15.749814164727056,13.359582595105707,14.686244600498227,14.709884528942538,46.0257572620817,46.0257572620817,0.0,51.139730291201886,0.0,46.0257572620817,51.139730291201886,0,0
+2017/08/07 01:00:00,23.722196158568778,0,47.03689892485482,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5251007348909905,0,0,0.0,11.54654641231068,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0025042793393038835,7.923365266887785e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0237714927199864,1.0237714927199864,1.0360664263561712,1.0360664263561712,0.9941594189314885,0.9941594189314885,1.0134878378406393,1.0134878378406393,0.9979704989949147,0.9979704989949147,0.7528605159407783,0.7976496195000463,0.6800819544226177,0.7538570106938257,0.7448091653940468,0.7177810517657552,0.7646077016762322,0.6589571158323441,0.716393962299031,0.7280745725781685,27.131210862338094,27.131210862338094,27.662661732727486,27.662661732727486,25.874375189697744,25.874375189697744,26.691003765116804,26.691003765116804,26.034274292401506,26.034274292401506,16.936986732709826,18.413327131659074,14.721445409587446,16.96890233096316,16.680679163446143,15.84061212196751,17.315924793529092,14.121177181002366,15.798347327495051,16.156845101915664,23.722196158568778,23.722196158568778,0.0,26.357995731743085,0.0,23.722196158568778,26.357995731743085,0,0
+2017/08/07 02:00:00,28.344340050148475,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5249769636755824,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.03152124962594,1.03152124962594,1.0439139016680898,1.0439139016680898,0.9967326507245485,0.9967326507245485,1.0198333278489082,1.0198333278489082,1.058710069077844,1.058710069077844,0.7378590987000353,0.7809283970108875,0.662886374149732,0.7383001997151198,0.7662899460792713,0.7031641474305113,0.7519382484751979,0.6402250360971196,0.7011713421571945,0.7448263258200116,27.46554618350035,27.46554618350035,28.004772552700857,28.004772552700857,25.98227807126132,25.98227807126132,26.9621660511296,26.9621660511296,28.655889685629205,28.655889685629205,16.461664975999255,17.852171079457847,14.23136524034905,16.475503582757185,17.370672959254506,15.399400616217363,16.907486353336736,13.605073017100338,15.339961559597981,16.6812224961526,28.344340050148475,28.344340050148475,0.0,31.493711166831638,0.0,28.344340050148475,31.493711166831638,0,0
+2017/08/07 03:00:00,23.72213954993182,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250441262540305,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0309499128936865,1.0309499128936865,1.043870425301274,1.043870425301274,0.9942006128564035,0.9942006128564035,1.019956558857634,1.019956558857634,1.0521447526602885,1.0521447526602885,0.7581796692783234,0.8037141207202777,0.6803140280256696,0.7579773840791203,0.7851677127445258,0.7099105960876357,0.7600341942321069,0.6450329444997647,0.707066489798021,0.7613047808090471,27.440822178645774,27.440822178645774,28.00287101253093,28.00287101253093,25.87610058102632,25.87610058102632,26.96744696795065,26.96744696795065,28.366002983268174,28.366002983268174,17.107839789918586,18.619777353500083,14.728147112421269,17.101320179691584,17.993317113173035,15.601897658233085,17.16769229237032,13.736088764010276,15.516291435424364,17.208783772493987,23.72213954993182,23.72213954993182,0.0,26.35793283325758,0.0,23.72213954993182,26.35793283325758,0,0
+2017/08/07 04:00:00,56.85125791946036,0,88.72588128136032,0,0,0,2.3286834781673833,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,14.489421800443518,0.0,0.525019091215346,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,741.4403028716763,0.0,0.0,0.0,0.0,0.0,7238.002111616776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0036881860234623,1.0036881860234623,1.0085940800460849,1.0085940800460849,0.9896704751623181,0.9896704751623181,0.9841165331936148,0.9841165331936148,1.0036589073650293,1.0036589073650293,0.624983882173526,0.6484088744824573,0.5843647478431881,0.6239208978849481,0.5584356869446707,0.5951851103285519,0.6211431067882079,0.5611009775617091,0.5925105600827983,0.6224898845101561,26.27520211242303,26.27520211242303,26.482908567235356,26.482908567235356,25.686745580730317,25.686745580730317,25.45566829054492,25.45566829054492,26.273965235728724,26.273965235728724,13.196377913030162,13.828682030356347,12.15639707788256,13.168249695850974,11.529968240637444,12.426436467417375,13.094976497153212,11.593015119084086,12.359216058101836,13.13046028828117,56.85125791946036,56.85125791946036,0.0,63.16806435495595,0.0,56.85125791946036,63.16806435495595,0,0
+2017/08/07 05:00:00,80.90194516528938,0,212.9421150752648,0,0,0,0.46072360580130756,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,7.080643949741386,0.0,0.574534579790805,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1876.1222861007648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0378603967619882,1.0378603967619882,1.039607662524246,1.039607662524246,1.0307280910109857,1.0307280910109857,1.0178298282974036,1.0178298282974036,1.0456934778027127,1.0456934778027127,0.7988654179812872,0.8310620317046601,0.7392342101275928,0.795158046391363,0.7692816426389053,0.7469431191369724,0.7802008914909533,0.7009471550795429,0.7414631369004946,0.8066823884779037,27.74067145611265,27.74067145611265,27.8167634899511,27.8167634899511,27.431226308408753,27.431226308408753,26.876387898723408,26.876387898723408,28.082665424419346,28.082665424419346,18.45459111651438,19.570034864212488,16.504833740704925,18.32895917636266,17.468335281716705,16.748341145900255,17.828025950207277,15.333285496516169,16.574978646951493,18.72139115687942,80.90194516528938,80.90194516528938,0.0,89.89105018365485,0.0,80.90194516528938,89.89105018365485,0,0
+2017/08/07 06:00:00,96.57219518184063,0,628.62838851885,0,0,0,7.496287900591305,0.0,11.110595677687485,0.0,73.80580873715317,0,3.6314586647140197,2.5226789203472855e-09,0.5280441991719416,0,0,0.0,397.94109718731306,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2407.2672893343506,23535.17257807358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033468641033981804,0.0010589244727479171,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0527178346147739,1.0527178346147739,1.0536163829281655,1.0536163829281655,1.0472413854194778,1.0472413854194778,1.0468085251590398,1.0468085251590398,1.0496032024225148,1.0496032024225148,0.9703558635862419,1.0031433338032494,0.9077942871858572,0.964121281307904,1.0123055884557088,0.9251139765772664,0.9610231394796785,0.8733179993872886,0.9172529478426704,1.0407851461383357,28.391245248894563,28.391245248894563,28.430846995111366,28.430846995111366,28.150511559876563,28.150511559876563,28.131530165618543,28.131530165618543,28.254199344611905,28.254199344611905,24.88826019363431,26.25219014549974,22.40239882015132,24.633599760026527,26.640649104657044,23.07499099641724,24.50761548937558,21.099781393709122,22.768219515346658,27.868104887120722,96.57219518184063,96.57219518184063,0.0,107.30243909093403,0.0,96.57219518184063,107.30243909093403,0,0
+2017/08/07 07:00:00,175.34588966310963,0,758.3984927546632,0,0,0,31.538009829916124,0.0,8.037463145743322,0.0,69.33401494192633,0,39.380909295966944,3.0138762429758817e-09,27.055492446543013,0,0,0.0,492.22084891058216,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,23.726007498043206,3437.6057513096666,11803.105523785185,3405.430880764699,1728.3883126704648,3918.85421347607,1481.4840638621185,37598.66025306522,3316.8475841110785,1679.515233231223,3921.922355801611,1362.7587411693548,37733.213904666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04037769750507785,0.001277522203483761,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0334845283187915,1.0334845283187915,1.001015191193473,1.001015191193473,1.0553812288709161,1.0553812288709161,1.0616498619421122,1.0616498619421122,1.0664912294899607,1.0664912294899607,0.7090520788161809,0.7346354327341567,0.6658047583634162,0.7266768433801918,0.7157055962661912,0.6958479156987641,0.7217715079693263,0.6590367010878592,0.7146614202692042,0.7233745262675272,27.55059663897279,27.55059663897279,26.162415149405078,26.162415149405078,28.50871367602997,28.50871367602997,28.786194846912494,28.786194846912494,29.001458069342178,29.001458069342178,15.576019948437079,16.36078294199801,14.313638230452796,16.11363718190958,15.777403497108665,15.182021314746322,15.962663887734607,14.123402350773503,15.745672966904834,16.011886672736225,175.34588966310963,175.34588966310963,0.0,194.82876629234403,0.0,175.34588966310963,194.82876629234403,0,0
+2017/08/07 08:00:00,204.74274932451158,0,796.9591066522421,0,0,0,45.024144112174845,0.0,11.58317362108713,0.0,83.2008179303116,0,39.380909295966944,2.9629588919535745e-09,25.55370436200816,0,0,0.0,477.545934039345,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1709.4985829515576,647.2446257391607,2205.9622887997334,4305.59256434794,24111.327290361798,6256.110611783557,3884.916891375806,5884.9848595681,3568.1651202647017,45541.281731911804,5889.979231395673,3627.899761378235,5784.484729267962,3299.3383406449766,45116.079400781586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04243069315108873,0.0013424775546675314,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0682241721459147,1.0682241721459147,1.049781843604464,1.049781843604464,1.0756547923243176,1.0756547923243176,1.0790084907032065,1.0790084907032065,1.0928513743899928,1.0928513743899928,0.6374276099062656,0.6549863504974809,0.6069622630544232,0.6543972314600777,0.6223531859654293,0.6274731075735254,0.6445000405377981,0.6015914466372909,0.6462936468105428,0.624204179510547,29.078712785284296,29.078712785284296,28.262050206562577,28.262050206562577,29.41117323550955,29.41117323550955,29.561860002818435,29.561860002818435,30.187984754661798,30.187984754661798,13.529304355295537,14.010504731622575,12.726129184526016,13.994143120053778,13.126855078530397,13.262438521296303,13.72151770832204,12.588711582071625,13.770608845978387,13.175740976122128,204.74274932451158,204.74274932451158,0.0,227.49194369390176,0.0,204.74274932451158,227.49194369390176,0,0
+2017/08/07 09:00:00,232.37431563090345,0,827.0311069978882,0,0,0,54.65490172092178,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.8584347790381095e-09,20.864980524116113,0,0,0.0,454.3824056161748,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3989.27437184209,1919.0852922841366,4404.402567694308,5273.340043280016,34946.72752004547,7711.925650992009,4817.907229500829,7105.60041791511,4645.288507085897,50372.32558879045,7472.979073805941,4634.166888667758,7085.508913381805,4487.380987376256,49802.350058334705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04403174872402206,0.001393133836967346,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1000180487995965,1.1000180487995965,1.0899320201244767,1.0899320201244767,1.0935207614108609,1.0935207614108609,1.1031372728486983,1.1031372728486983,1.1104666398361303,1.1104666398361303,0.6260228974333426,0.6381605088448404,0.5976024152149051,0.6428682833718582,0.6071818579067425,0.6232989811422066,0.6340748645214209,0.5981276955747162,0.6421487231072974,0.6079030197321483,30.514733015895445,30.514733015895445,30.055388299285937,30.055388299285937,30.218429478534105,30.218429478534105,30.657493932942444,30.657493932942444,30.9942403913722,30.9942403913722,13.223919255285821,13.549122207452825,12.487458535917128,13.676977575855105,12.731774374350323,13.151815546105553,13.438941993462805,12.500752173475874,13.657373280749539,12.750328217168203,232.37431563090345,232.37431563090345,0.0,258.19368403433714,0.0,232.37431563090345,258.19368403433714,0,0
+2017/08/07 10:00:00,274.27419485013513,0,914.3331628833114,0,0,0,65.57929694389745,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.8048094733960982e-09,18.6204028205162,0,0,0.0,452.95858022023765,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7757.474569040002,4368.23183091178,7770.662781169599,6564.9740473044885,53538.599084344045,9105.127883986535,5807.593455467104,8033.965142610484,5770.824005993192,51998.007651591215,9055.979954977885,5741.025130896801,8139.9916868444825,5778.282720281091,52129.55852869804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048679774844576806,0.0015401941434802279,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1406381184911212,1.1406381184911212,1.1321567543587965,1.1321567543587965,1.1290551826053252,1.1290551826053252,1.1384501503956685,1.1384501503956685,1.1528875308042044,1.1528875308042044,0.6335831519332392,0.6423413976543897,0.6046078681326646,0.6491514170959487,0.6020281577253725,0.6352181250215566,0.6420581482470278,0.60871167483359,0.6524631475966723,0.6058511405497224,32.39924171969113,32.39924171969113,32.00127798473325,32.00127798473325,31.856328043712637,31.856328043712637,32.296355413458926,32.296355413458926,32.97807655260448,32.97807655260448,13.425730478273039,13.662620464296111,12.66573556763862,13.849114400563849,12.599838503081685,13.46970008067035,13.654907175388132,12.771159907196036,13.940533535884597,12.697597315892878,274.27419485013513,274.27419485013513,0.0,304.749105389039,0.0,274.27419485013513,304.749105389039,0,0
+2017/08/07 11:00:00,307.36932040433004,0,975.4246842412581,0,0,0,82.2157231160985,0.0,17.133076792238036,0.0,147.76209134187457,0,39.380909295966944,2.8584347790381108e-09,20.877519855293478,0,0,0.0,460.81457280936814,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9433.3496608529,5462.409930299896,9576.761866291958,7275.942323478647,67079.33061308453,11533.706812843491,7338.848558834832,10573.400650605688,7205.65906429467,69808.64826186933,11499.120549423727,7289.910563131878,10708.053221424623,7212.44859418229,70087.65546523743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05193233269257103,0.0016431028065709212,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1540120567597703,1.1540120567597703,1.1528056852963318,1.1528056852963318,1.144944039319096,1.144944039319096,1.1424664236485338,1.1424664236485338,1.1877482850781975,1.1877482850781975,0.6337035804259815,0.6442157831610148,0.6091117440231621,0.6473219598617985,0.6184569456462286,0.6327878003896639,0.6424390394134452,0.6114225796376848,0.6475021811203869,0.6231002951524145,33.031453019849565,33.031453019849565,32.974193246480226,32.974193246480226,32.6021701028005,32.6021701028005,32.48533319167477,32.48533319167477,34.65089187319407,34.65089187319407,13.428965225604927,13.713750368281026,12.78147654668662,13.798816761062469,13.02443878284798,13.404382883282167,13.66528019630077,12.841202324169714,13.80376517759457,13.146568806261826,307.36932040433004,307.36932040433004,0.0,341.52146711592223,0.0,307.36932040433004,341.52146711592223,0,0
+2017/08/07 12:00:00,306.76080191600596,0,928.6175581602976,0,0,0,102.56000551003196,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.8048094733960982e-09,18.58432232062046,0,0,0.0,449.4977992409518,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12017.76315765706,7019.37512327859,11810.877393114326,8077.360573114257,75361.98819625782,16273.880776768297,10278.30078005769,14969.267811367694,10137.273532046336,91929.1309516324,16488.009590423244,10373.792569261253,15315.397463763311,10303.61410352482,92802.68967914025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04944028662967036,0.0015642562062401439,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1949173313486188,1.1949173313486188,1.1877583139414152,1.1877583139414152,1.1788869170947611,1.1788869170947611,1.173913021069079,1.173913021069079,1.1959116923248305,1.1959116923248305,0.6744094207580118,0.6803827486432013,0.6458610508626929,0.6852430527800241,0.6342841949962081,0.6853370167234466,0.689020412614256,0.6582003674197094,0.696085225841355,0.6434199643330003,34.99943383633769,34.99943383633769,34.651378396398016,34.651378396398016,34.222174997217195,34.222174997217195,33.98256745438492,33.98256745438492,35.04789608736367,35.04789608736367,14.558361461477688,14.730132038365483,13.758755898070532,14.871035116797046,13.444569544861395,14.87376925256541,14.981248405796109,14.10003252982304,15.189035987615156,13.692023234829733,306.76080191600596,306.76080191600596,0.0,340.84533546222883,0.0,306.76080191600596,340.84533546222883,0,0
+2017/08/07 13:00:00,295.5673086256016,0,880.5202253906735,0,0,0,93.7112560397547,0.0,16.86091082671979,0.0,129.2730206906943,0,39.380909295966944,2.750262972418965e-09,16.34121176971552,0,0,0.0,436.8908189838719,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10565.980569121282,6258.373805735488,10483.687513687008,7578.043065526366,68180.12197902374,14409.24540146134,9158.760704710083,13299.554401479405,8987.257366854055,82045.00175706434,14604.669532436028,9258.66716489582,13630.053399247323,9143.479562639051,82868.469791093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04687954900700054,0.0014832362528402379,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.163570526465292,1.163570526465292,1.163125059452653,1.163125059452653,1.1532203806110009,1.1532203806110009,1.1546615345086866,1.1546615345086866,1.1824934988922629,1.1824934988922629,0.6492945439116682,0.6578855037193894,0.6261718472497864,0.6609357884369426,0.6232590686462401,0.6540733392086413,0.6620457790387431,0.6335544609601234,0.6664575465568849,0.6302706921840118,33.48674864913362,33.48674864913362,33.465466785750124,33.465466785750124,32.993871376416834,32.993871376416834,33.06229906284557,33.06229906284557,34.39638038347975,34.39638038347975,13.85305553521998,14.091242090198179,13.227871330554237,14.176581426185237,13.150761431518262,13.985154064073015,14.207736220897843,13.424959922476916,14.332091649832094,13.337003417902352,295.5673086256016,295.5673086256016,0.0,328.40812069511287,0.0,295.5673086256016,328.40812069511287,0,0
+2017/08/07 14:00:00,251.27541927860767,0,832.4281038321353,0,0,0,65.63639678891263,0.0,16.630907756533322,0.0,115.5196477718057,0,39.380909295966944,2.6947860041975077e-09,14.107557662694294,0,0,0.0,424.28904993787785,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7462.019998635908,3843.159704278752,7996.66250809215,6785.580263933798,52633.694598360824,9166.41504895248,5661.11979207614,8715.420339313961,5293.068985897281,54251.28251141618,9422.902558527314,5796.827663815711,9198.208706557392,5388.41317754847,54769.14287308541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04431908883306892,0.0014022250777250105,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1910309733007776,1.1910309733007776,1.1960862881049412,1.1960862881049412,1.1726182332745088,1.1726182332745088,1.1575054113552379,1.1575054113552379,1.1867804208572563,1.1867804208572563,0.6755184689252566,0.6879403133999872,0.6490822479352246,0.6855114874126466,0.6319046938689644,0.6819351517521655,0.6946757557429853,0.6569447364146211,0.6926309448570694,0.6379914411795712,34.810301070674655,34.810301070674655,35.05640834629516,35.05640834629516,33.92031645740589,33.92031645740589,33.19752066382193,33.19752066382193,34.603952552746534,34.603952552746534,14.590136821017637,14.949671020537167,13.84721007943682,14.878846962939235,13.380712056341167,14.775026071228197,15.147409007434646,14.065003118085855,15.087170570249768,13.544548489360096,251.27541927860767,251.27541927860767,0.0,279.1949103095641,0.0,251.27541927860767,279.1949103095641,0,0
+2017/08/07 15:00:00,259.85100049886756,0,832.4300406207257,0,0,0,77.57956820669361,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.6947860041975077e-09,14.071248735973391,0,0,0.0,424.2909867264681,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11124.778132961472,7569.822265523243,10575.077314188684,7238.1136267581605,64651.3506933667,11262.321882161346,8225.439909931343,9951.481866723301,7270.585180320325,56583.69553593268,11468.1843006154,8464.538268797902,10215.187384057394,7444.379872668601,57583.96777497652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044319191949128055,0.0014022283402452436,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1877106030614974,1.1877106030614974,1.230015419307698,1.230015419307698,1.1672395497951809,1.1672395497951809,1.1596393559751188,1.1596393559751188,1.1788447254033212,1.1788447254033212,0.6548999334615386,0.6995331411714886,0.6269447519695024,0.6656726562389551,0.6027316208512405,0.6621863737814124,0.7145397919851294,0.6343277866706856,0.6732319312208958,0.6097404903706537,34.64906385853213,34.64906385853213,36.72703294868039,36.72703294868039,33.66226634108115,33.66226634108115,33.29915204241962,33.29915204241962,34.22013935956345,34.22013935956345,14.008103728653282,15.291227597958752,13.248394216044616,14.309906131324254,12.617779379855634,14.211686189211932,15.741979968528597,13.445741684022536,14.524683450421037,12.7977041528045,259.85100049886756,259.85100049886756,0.0,288.72333388763064,0.0,259.85100049886756,288.72333388763064,0,0
+2017/08/07 16:00:00,287.83131379398924,0,885.6675139655651,0,0,0,82.68954590557937,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.6947860041975077e-09,14.057106157227174,0,0,0.0,424.29293130249135,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12134.074060316754,10294.2493535964,11716.874566178085,7709.952040331554,72213.1285115542,11093.71617750856,9554.94626962162,10139.876155953807,7431.5538927157195,58008.19432911059,11235.215987019346,9929.194896895398,10360.571950577529,7584.430177320645,59325.14632906374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04715359446335873,0.0014919068600539702,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.174889941006755,1.174889941006755,1.3002713968347077,1.3002713968347077,1.1651784132631968,1.1651784132631968,1.1646684927797455,1.1646684927797455,1.1885087875987161,1.1885087875987161,0.6245351488836615,0.7248889430692774,0.6048994489107564,0.6454982000557059,0.5831062404880681,0.6301783539420757,0.7492743407373523,0.6122929135015912,0.6534995481861143,0.5925476907818149,34.02956961978788,34.02956961978788,40.28238173931436,40.28238173931436,33.56361524145271,33.56361524145271,33.53922936156664,33.53922936156664,34.68779402963062,34.68779402963062,13.184497752353948,16.058490415540874,12.673201981631323,13.74882019521128,12.125318863478697,13.334536879037131,16.82248102930494,12.863757023581542,13.969240672342394,12.360147151937937,287.83131379398924,287.83131379398924,0.0,319.81257088221025,0.0,287.83131379398924,319.81257088221025,0,0
+2017/08/07 17:00:00,298.3365756465026,0,896.7465006072966,0,0,0,89.43051869830047,0.0,17.028300508570425,0.0,133.89528835348938,0,39.380909295966944,2.8048094733960986e-09,18.60155878737054,0,0,0.0,435.3719179442229,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11106.889166022169,7837.207200010132,11151.147966387693,7536.996787461498,72352.35263351434,12870.023738150154,9414.005966782841,12012.65283401116,8134.8265249203605,72720.45732487578,12985.656975427057,9658.461535169776,12276.849478318874,8265.549235019975,73849.96693466797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04774344791844379,0.001510569412211086,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1728062399047425,1.1728062399047425,1.2028874608944398,1.2028874608944398,1.1637712129676718,1.1637712129676718,1.1542897488247663,1.1542897488247663,1.1994570736950763,1.1994570736950763,0.6367643751469316,0.678083462901321,0.6182498627373669,0.651480253715427,0.6100351776517852,0.638184101050301,0.6857437124117691,0.6222869383538456,0.6545385153118697,0.6177738007888539,33.92935230716077,33.92935230716077,35.388680169473744,35.388680169473744,33.496338304648134,33.496338304648134,33.04463999837148,33.04463999837148,35.22092134306365,35.22092134306365,13.511390329397045,14.66383041803229,13.019013853335693,13.913351489883041,12.805315778690343,13.549760536267371,14.885607568517969,13.125108193366003,13.998065627424197,13.006549564452499,298.3365756465026,298.3365756465026,0.0,331.4850840516695,0.0,298.3365756465026,331.4850840516695,0,0
+2017/08/07 18:00:00,287.2262219299223,0,913.6549707017491,0,0,0,93.5815665794778,0.0,17.661432661091382,0.0,110.93442390708215,0,39.380909295966944,2.9629588919535765e-09,25.667889483341025,0,0,0.0,487.7707405512194,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9817.593323676901,6433.700084938149,10099.395552854568,7200.389520015134,69238.46484721829,13851.958426107398,9534.300492543864,13176.235346095837,8553.19656166759,84102.2902628467,13900.263931694475,9630.029100959306,13379.732702022704,8610.539889552227,84896.72872472233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04864366739048895,0.0015390517288018598,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1663894892259001,1.1663894892259001,1.1902379889391212,1.1902379889391212,1.1582098911613647,1.1582098911613647,1.1438749359705884,1.1438749359705884,1.1989792241843786,1.1989792241843786,0.6453439478210093,0.6790680883930945,0.6275128944793825,0.655966687340907,0.6310586033659675,0.6449438816144933,0.6809912978342116,0.6294887624986228,0.6565099923205956,0.6382060295377031,33.6215645083265,33.6215645083265,34.77176422959265,34.77176422959265,33.23105656916792,33.23105656916792,32.55173035918695,32.55173035918695,35.19757962465286,35.19757962465286,13.744598137922551,14.692194828304423,13.263496593825067,14.037764981261063,13.358065144074615,13.733652683456882,14.747718284184941,13.316128211189266,14.052890612748186,13.550353871897158,287.2262219299223,287.2262219299223,0.0,319.14024658880254,0.0,287.2262219299223,319.14024658880254,0,0
+2017/08/07 19:00:00,279.3477526676792,0,882.5641582442711,0,0,0,92.07146368319145,0.0,19.10774862870365,0.0,101.68988858149199,0,39.380909295966944,3.0138762430454343e-09,27.0977424753112,0,0,0.0,492.17028060628564,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9191.818894656004,5727.481993775745,9365.323063253827,6827.3084300196715,65957.0922759625,13552.237693588804,9290.939249801639,13003.977729744705,8411.710077370386,84731.00878424098,13483.36467586229,9291.03069510965,13100.324614558673,8405.096953369852,85325.10636001582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04698836950608077,0.0014866792575769913,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1559535277927833,1.1559535277927833,1.1691691736448595,1.1691691736448595,1.148130369836829,1.148130369836829,1.129627649309433,1.129627649309433,1.1904188467286256,1.1904188467286256,0.6372117704438669,0.6707614681374178,0.6235171920454867,0.6489585448033476,0.6335745278425079,0.6334590398580651,0.6688821670870115,0.6228505985571746,0.6466570124950347,0.6386237321087559,33.123699814872964,33.123699814872964,33.754741123017794,33.754741123017794,32.75271535741615,32.75271535741615,31.883058298813097,31.883058298813097,34.78055178928098,34.78055178928098,13.523472419229861,14.454219457231602,13.157579857893296,13.843804881043155,13.425498856613885,13.422397447061499,14.400793879712609,13.139977448473019,13.78057118384929,13.561659947957835,279.3477526676792,279.3477526676792,0.0,310.38639185297683,0.0,279.3477526676792,310.38639185297683,0,0
+2017/08/07 20:00:00,294.07003790138384,0,832.350402789015,0,0,0,86.43582531443992,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,2.911148161254202e-09,23.162458620329797,0,0,0.0,477.44687766357373,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7706.419351968558,4645.699402942249,8131.299595615146,6284.404056388966,59776.38579167187,12654.935058100655,8489.909480845447,12261.775414754436,7708.3631826380015,81824.17869321798,12504.515235274124,8402.001564379914,12281.255657554715,7618.718919234169,82020.57741128783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0443149519719795,0.0014020941903237715,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1427364164820484,1.1427364164820484,1.1573336543307888,1.1573336543307888,1.133354783349507,1.133354783349507,1.1110768354493281,1.1110768354493281,1.1825665542093353,1.1825665542093353,0.6351296105247969,0.6605190601864444,0.6184948266265666,0.6449311271821622,0.6375980031757309,0.630152397472763,0.6555155108085243,0.6159776928545092,0.6403546898239517,0.6399523118007568,32.49805572056263,32.49805572056263,33.18934672777482,33.18934672777482,32.057350912768186,32.057350912768186,31.022357255190457,31.022357255190457,34.39991312879425,34.39991312879425,13.467316676691993,14.164898637360196,13.025431348312864,13.73330384772224,13.533909772233102,13.33384359650698,14.025213931507608,12.959612287408802,13.60859293549278,13.597671311372537,294.07003790138384,294.07003790138384,0.0,326.7444865570931,0.0,294.07003790138384,326.7444865570931,0,0
+2017/08/07 21:00:00,260.4061398416842,0,796.1078196788867,0,0,0,66.32860611139569,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9629588919535757e-09,25.61357147916033,0,0,0.0,476.69464706598944,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5373.001253641772,3024.540115257818,6040.171956997649,5432.993253480252,48434.31269984833,8842.005284905765,5958.450354359071,8675.747458990527,5236.253623236013,61115.73098582977,8572.897619065296,5770.093783719042,8589.503684377987,5041.015840603552,60822.843694175186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04238537000207335,0.0013410435618255257,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1344495338726943,1.1344495338726943,1.1476208811240496,1.1476208811240496,1.124617045513949,1.124617045513949,1.0948922273816637,1.0948922273816637,1.1709726269204328,1.1709726269204328,0.6300517500939244,0.6530343569101048,0.6138554520439115,0.6387963233916362,0.6333665177326832,0.6212421567896633,0.6437122400467471,0.6074603639737415,0.6303096495175033,0.6324078916348608,32.10863069592153,32.10863069592153,32.728621768060776,32.728621768060776,31.649461505997763,31.649461505997763,30.28085382938106,30.28085382938106,33.84127232986958,33.84127232986958,13.33115563868408,13.956349635922251,12.904332695681305,13.566333735434029,13.419913199064581,13.097583503619973,13.699999640729729,12.738937022584096,13.338044157042717,13.3941956452541,260.4061398416842,260.4061398416842,0.0,289.3401553796491,0.0,260.4061398416842,289.3401553796491,0,0
+2017/08/07 22:00:00,175.71838369997215,0,620.4869547495896,0,0,0,39.09449498011523,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8584347790381095e-09,20.870931111676565,0,0,0.0,460.78036844314096,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,900.3019378023585,119.20435169086035,1736.789259947159,3509.906984505486,20711.49232902205,5127.298032978655,3489.531544134031,5188.594198664951,2830.787168437852,40240.14462779332,4705.678382281376,3189.537499178662,4954.005322841547,2521.0693278635003,39488.28376210217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033035185069692115,0.0010452102281815225,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0789848429469322,1.0789848429469322,1.090301534513971,1.090301534513971,1.0708351855796878,1.0708351855796878,1.0418259023896557,1.0418259023896557,1.0946354612638607,1.0946354612638607,0.6059154601329175,0.6260408056991272,0.5919391502890302,0.6120144943184164,0.6120856068760087,0.5921535671350935,0.611378560275233,0.5808741107920992,0.5982564292052651,0.6067911497430258,29.560796094866646,29.560796094866646,30.07215534159839,30.07215534159839,29.195312701019986,29.195312701019986,27.913526733922254,27.913526733922254,30.2691618234404,30.2691618234404,12.69924747996437,13.224394363162432,12.344894863483418,12.856538215159645,12.858381690373037,12.350267113495093,12.840062435931259,12.07036657867431,12.504011952569925,12.721731774813577,175.71838369997215,175.71838369997215,0.0,195.2426485555246,0.0,175.71838369997215,195.2426485555246,0,0
+2017/08/07 23:00:00,103.54062242883528,0,472.5017795911092,0,0,0,16.187370027925937,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.638369296822524e-09,11.842271339432699,0,0,0.0,419.266250822293,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1860.8040868604926,0.0,1797.4107996710254,1272.4371272567948,2120.7194997965908,636.861547314957,22388.543136388704,1243.576023454103,874.8482149492221,1770.8892843244287,217.5834780334046,21285.266873073717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02515634473064881,0.0007959292118589465,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9393823834415078,0.9393823834415078,0.9298885509031993,0.9298885509031993,0.9613969712196256,0.9613969712196256,0.9932992609562341,0.9932992609562341,1.0292958948545199,1.0292958948545199,0.5931495236940405,0.6111287242163922,0.580734316881723,0.5971180913795836,0.599765736906552,0.5759671155105192,0.592720900051126,0.5665222808735653,0.5797477234464817,0.592113390486802,23.63812165220385,23.63812165220385,23.262524640172686,23.262524640172686,24.5227972551438,24.5227972551438,25.838362590587934,25.838362590587934,27.369314115122293,27.369314115122293,12.37524713039926,12.833594485440301,12.066932218712708,12.475212024761191,12.542284129691751,11.950322419969979,12.364491358808095,11.722205513100562,12.042718384551534,12.349260328934037,103.54062242883528,103.54062242883528,0.0,115.0451360320392,0.0,103.54062242883528,115.0451360320392,0,0
+2017/08/08 00:00:00,45.3888976371094,0,441.6437860400789,0,0,0,0.23605993524989077,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,5.810314478009592,2.5810035783848148e-09,9.545202224845735,0,0,0.0,388.4082572712627,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,936.74404771167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02351344229727041,0.0007439489240643178,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9808535748408604,0.9808535748408604,0.9823318456495558,0.9823318456495558,0.9832397337987561,0.9832397337987561,0.966990371065014,0.966990371065014,1.0071083528526161,1.0071083528526161,0.7415538171761311,0.7803616696613137,0.7197098026418559,0.7420516083442777,0.7952500411395886,0.703582859660744,0.7401751776578355,0.6888052309408901,0.7045426399715655,0.7754295469113643,25.320462139469214,25.320462139469214,25.381666004764327,25.381666004764327,25.41929638973008,25.41929638973008,24.750603842230234,24.750603842230234,26.419909816723063,26.419909816723063,16.57783689160476,17.8333600674341,15.899519129433855,16.59353356586834,18.33206956412542,15.411911261286264,16.534420230797366,14.974953410859996,15.440616950056224,17.670228430790885,45.3888976371094,45.3888976371094,0.0,50.43210848567711,0.0,45.3888976371094,50.43210848567711,0,0
+2017/08/08 01:00:00,23.72218780434603,0,53.27498984916875,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250923806682407,0,0,0.0,17.784637336624616,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002836399920709892,8.974171635742159e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.028508300952332,1.028508300952332,1.0400868116856565,1.0400868116856565,1.0267096832084017,1.0267096832084017,1.0127916249212099,1.0127916249212099,1.099048720372403,1.099048720372403,0.7408977999811845,0.788415677407038,0.715582776359479,0.7388529325950826,0.852720752620867,0.7069347628405334,0.7530147678322211,0.6900958669335818,0.7058076204619397,0.8236771738593235,27.33529959908482,27.33529959908482,27.83764955064042,27.83764955064042,27.2577070534183,27.2577070534183,26.66134414697393,26.66134414697393,30.470436088092498,30.470436088092498,16.55716716848046,18.101973259547023,15.77366879509907,16.49285619248535,20.344854659304872,15.512334970668704,16.941924310682822,15.012740093283824,15.478511461895025,19.310333171707256,23.72218780434603,23.72218780434603,0.0,26.35798644927337,0.0,23.72218780434603,26.35798644927337,0,0
+2017/08/08 02:00:00,28.344518358820046,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251552723471479,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0500445911688638,1.0500445911688638,1.0638723047025702,1.0638723047025702,1.0467354164985818,1.0467354164985818,1.033507947720492,1.033507947720492,1.161009961561652,1.161009961561652,0.7495431101861868,0.797602838514086,0.7238479128197456,0.7475244779848833,0.8765818142206271,0.7108327379493947,0.7588018633910733,0.6933759861587909,0.7092026692064132,0.8406210082183176,28.273599443177446,28.273599443177446,28.884908457578135,28.884908457578135,28.128324941745177,28.128324941745177,27.551612037821954,27.551612037821954,33.36450332549754,33.36450332549754,16.831043679141928,18.411740643673795,16.02644378035785,16.76680831593832,21.221013586768322,15.629728560265235,17.12790394555961,15.109097952959772,15.580556795064808,19.909584816623507,28.344518358820046,28.344518358820046,0.0,31.49390928757783,0.0,28.344518358820046,31.49390928757783,0,0
+2017/08/08 03:00:00,23.76906975715274,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.571974333474946,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0491843002424999,1.0491843002424999,1.063781857632211,1.063781857632211,1.044221500642999,1.044221500642999,1.032129401084188,1.032129401084188,1.1561954599331357,1.1561954599331357,0.7615022633303058,0.8108039542485302,0.7357627933783197,0.7589558232621968,0.8969284557882163,0.7190255647093057,0.7685248518355287,0.7017557244094709,0.7169974688907625,0.859198319102352,28.235794099169368,28.235794099169368,28.88088766150736,28.88088766150736,28.01822807407818,28.01822807407818,27.491876518171907,27.491876518171907,33.13520322092742,33.13520322092742,17.215176662651075,18.86310318205348,16.396012041913025,17.132871309068065,21.98662349867716,15.87860311949359,17.44359416951177,15.3573740661365,15.816726066197731,20.580376710400415,23.76906975715274,23.76906975715274,0.0,26.410077507947488,0.0,23.76906975715274,26.410077507947488,0,0
+2017/08/08 04:00:00,59.84146150330238,0,88.72588128136032,0,0,0,5.252022155499247,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,14.55051991352734,0.0,0.5307858846416771,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,570.0787402821574,0.0,0.0,0.0,0.0,0.0,10834.078162193024,0.0,0.0,0.0,0.0,6544.627443694326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.027080658963251,1.027080658963251,1.030999727115574,1.030999727115574,1.0239232703484884,1.0239232703484884,1.0086725970537762,1.0086725970537762,1.0592338283550637,1.0592338283550637,0.6208330476977245,0.6460124895520171,0.6082757947291452,0.6188620235376288,0.6110891795505476,0.5930911079460133,0.6175301776974615,0.5851126052053235,0.5912033988227804,0.6138612717491391,27.273701190330854,27.273701190330854,27.442977358821224,27.442977358821224,27.137737415204185,27.137737415204185,26.48624020787767,26.48624020787767,28.679082490967616,28.679082490967616,13.086818461481457,13.76290433170027,12.759927713737397,13.035055946937263,12.832570970652228,12.373780791346604,13.00017481119157,12.174897600190619,12.326475657011244,12.904484018622242,59.84146150330238,59.84146150330238,0.0,66.49051278144708,0.0,59.84146150330238,66.49051278144708,0,0
+2017/08/08 05:00:00,81.99030378957177,0,212.9421150752648,0,0,0,0.4297773886029626,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,8.249602981764948,0.0,0.5248803892480028,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1762.2149276319115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0612101992562482,1.0612101992562482,1.0628377995467935,1.0628377995467935,1.06044201779101,1.06044201779101,1.0420809181499586,1.0420809181499586,1.0838771012767674,1.0838771012767674,0.7764809114135183,0.8118277612094192,0.7581275986250109,0.7715370512846202,0.8309217438080067,0.7294409033362999,0.7616030208142894,0.7187132222345435,0.7249723337948811,0.8236653237331304,28.76668733838507,28.76668733838507,28.83893724123402,28.83893724123402,28.732620255808087,28.732620255808087,27.924662440740093,27.924662440740093,29.781313343262312,29.781313343262312,17.70491581746016,18.898415921093545,17.10616139626805,17.54221430284214,19.565080083977378,16.199163604707252,17.218439018809192,15.869062033971929,16.06105949756811,19.309918279983435,81.99030378957177,81.99030378957177,0.0,91.10033754396864,0.0,81.99030378957177,91.10033754396864,0,0
+2017/08/08 06:00:00,96.3477214726698,0,627.5477988207309,0,0,0,7.5029129543375195,0.0,11.059065975733075,0.0,73.80580873715317,0,3.454962673183722,2.5226843053531067e-09,0.5249711297396308,0,0,0.0,396.860507489194,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2312.648849098041,23632.615326597122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03341110963805395,0.0010571042194834508,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0422948441562874,1.0422948441562874,1.0431383426339422,1.0431383426339422,1.041671789089989,1.041671789089989,1.0610330724402324,1.0610330724402324,1.0658688022186027,1.0658688022186027,0.9355809946004081,0.9711678831325893,0.9177757539949957,0.9301160914482942,1.0853126524858443,0.8888368739276481,0.9235547028436302,0.8771387993180958,0.880281981750016,1.0622665310228179,27.93400571988684,27.93400571988684,27.97086200036388,27.97086200036388,27.90679825771386,27.90679825771386,28.75883030204338,28.75883030204338,28.973736210606646,28.973736210606646,23.487299555936076,24.92153958133116,22.788544612491208,23.27148462834819,29.846178487112994,21.68012325409353,23.013944194783875,21.241746184648605,21.358983442583664,28.813567617655295,96.3477214726698,96.3477214726698,0.0,107.053023858522,0.0,96.3477214726698,107.053023858522,0,0
+2017/08/08 07:00:00,175.92074602389073,0,758.3574061846266,0,0,0,32.356001792326204,0.0,7.777944015249205,0.0,69.33401494192633,0,39.380909295966944,3.013882053886548e-09,27.071875975408208,0,0,0.0,492.1797623405456,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5180.483286962445,12024.958308366071,3095.9633464686135,1522.6114498553723,3737.261239503901,2611.171769229643,38385.41524364401,2908.2546907687592,1376.1896242647222,3603.7750817216324,2639.948740220386,37780.57013969211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.040375510025655995,0.0012774529931596523,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.002735715932598,1.002735715932598,0.9627788500029613,0.9627788500029613,1.033051930981486,1.033051930981486,1.1765915891849463,1.1765915891849463,1.0626697986195273,1.0626697986195273,0.6768522894362757,0.699328549595975,0.6540854942984253,0.7627427104766532,0.7301489175994899,0.6629212606950111,0.6819732043463341,0.643445982168016,0.7650245954113132,0.725903294919822,26.23498164691904,26.23498164691904,24.578964472961175,24.578964472961175,27.53184407171399,27.53184407171399,34.11150932740934,34.11150932740934,28.831475233841743,28.831475233841743,14.628422641281219,15.285149450963232,13.985491324955646,17.255370436092477,16.221124056749687,14.232346558133955,14.776127825222602,13.692733129298617,17.329481220338636,16.089760643668455,175.92074602389073,175.92074602389073,0.0,195.4674955821008,0.0,175.92074602389073,195.4674955821008,0,0
+2017/08/08 08:00:00,208.9313641992957,0,797.01918112939,0,0,0,49.43032562529081,0.0,11.36563784648343,0.0,83.2008179303116,0,39.380909295966944,2.962964664374775e-09,25.55367349827995,0,0,0.0,477.6060085164928,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3305.459483469795,1567.9669725389394,2975.7269572319838,7191.762942470573,26171.652592742663,6761.498597220725,4023.1995790188857,6104.050684328067,5779.172827089743,45102.843927672955,6592.8776460473455,3822.719348893944,5967.390992180604,5935.916039099457,44682.38883763904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04243389156074965,0.0013425787501197275,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0023576940023677,1.0023576940023677,0.9535746199421796,0.9535746199421796,1.0003501412787676,1.0003501412787676,1.1921380500604883,1.1921380500604883,1.0299279202726315,1.0299279202726315,0.5699730044128811,0.5686907139993814,0.5405732605172606,0.6625919091886214,0.5718681241268191,0.5680664254216456,0.5594698100203757,0.5374071787335502,0.678792738576802,0.5706919163638733,26.219028225518784,26.219028225518784,24.20626338085944,24.20626338085944,26.134395418050772,26.134395418050772,34.86413281788843,34.86413281788843,27.39662651899762,27.39662651899762,11.805100667490393,11.774236484109295,11.115384571245144,14.223084385346638,11.850845998187552,11.759235939847088,11.554393626332256,11.04334303518526,14.68425851643758,11.822435776217489,208.9313641992957,208.9313641992957,0.0,232.14596022143965,0.0,208.9313641992957,232.14596022143965,0,0
+2017/08/08 09:00:00,235.11982974319181,0,826.4810607672675,0,0,0,57.40003037532216,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.858440462849853e-09,20.86536598200411,0,0,0.0,453.8323593855542,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6071.30424208821,2369.760487368242,4518.760621791852,8903.5802390748,33863.6711701197,8624.772020785389,4599.4201872022095,6833.074496120127,7280.489301014504,47589.24665481077,8766.886356213476,4526.474476248497,6852.15529674161,7662.095484912168,47477.20250711963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04400246385528091,0.0013922072841336135,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0671934986193314,1.0671934986193314,0.9768509538641842,0.9768509538641842,1.000534089405082,1.000534089405082,1.2534061810450845,1.2534061810450845,1.0289568460929808,1.0289568460929808,0.5752639418961019,0.5374420288330511,0.5126038435029463,0.6867825967451673,0.5376542659549304,0.5896566327740931,0.5380807432170513,0.5174339946086018,0.719859034246595,0.5401919789946744,29.03275245240269,29.03275245240269,25.15516721452765,25.15516721452765,26.14214380127295,26.14214380127295,37.89702891300011,37.89702891300011,27.354668507620175,27.354668507620175,11.933205644321234,11.044133656261891,10.493983549484923,14.915880435388132,11.048949674838582,12.287829675499538,11.058633063977211,10.598877010562475,15.90408356796496,11.106685829442554,235.11982974319181,235.11982974319181,0.0,261.2442552702131,0.0,235.11982974319181,261.2442552702131,0,0
+2017/08/08 10:00:00,274.54381471646934,0,914.6723630491916,0,0,0,62.416802873715866,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.804815106928392e-09,18.620541554577652,0,0,0.0,453.29778038611795,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9430.873657037944,3783.8027220007675,6384.204335989863,9519.943922956605,44226.33420477076,9777.895429419272,4801.7021498869635,6770.1377677221135,7577.775197720961,44581.203276250206,10255.496077615542,4848.084357837406,6929.928029667028,8090.7066310898335,45383.97898226353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04869783411265609,0.0015407655261339083,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1290746958768882,1.1290746958768882,0.9954424848312938,0.9954424848312938,1.0160908681041267,1.0160908681041267,1.2488006575395831,1.2488006575395831,1.057724602852813,1.057724602852813,0.5988322563547689,0.5236901660843919,0.5031683700476183,0.677627765434772,0.5170182090172452,0.6246983102826199,0.530584974168995,0.5134022409958261,0.7132455680044909,0.5268285112180137,31.857239003010946,31.857239003010946,25.928146255451225,25.928146255451225,26.802057217964347,26.802057217964347,37.66553157504707,37.66553157504707,28.61227846344066,28.61227846344066,12.518601789497751,10.73623895456447,10.291989652267446,14.650717199438574,10.589807946131629,13.188816420172174,10.889585320919949,10.511252242401412,15.702722939907062,10.805783214290699,274.54381471646934,274.54381471646934,0.0,305.04868301829924,0.0,274.54381471646934,305.04868301829924,0,0
+2017/08/08 11:00:00,309.16112712582867,0,975.3750594945398,0,0,0,80.91766878623889,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.8584404628498534e-09,20.870185062975104,0,0,0.0,460.7649480626499,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13783.037996583444,5830.248487124886,9239.11386669189,9293.022550498157,60480.18052461491,12966.071441072438,6459.301800464173,9315.7780739493,8611.576464126194,57703.63980350762,13659.654262028494,6583.080155053659,9602.803199467531,9070.783185315426,59153.46742203501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05192969063429837,0.0016430192136888408,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.202259749869305,1.202259749869305,1.0459754389956468,1.0459754389956468,1.0633189215546388,1.0633189215546388,1.2168021449913304,1.2168021449913304,1.1043831445607026,1.1043831445607026,0.6370073946654126,0.5416706810334974,0.5224682550676298,0.6666458318025628,0.5297446429059024,0.6723020523656749,0.556098348327132,0.539794756536082,0.698849580950702,0.5446135558910611,35.35795743973918,35.35795743973918,28.09501755328543,28.09501755328543,28.860312543199868,28.860312543199868,36.07259696148599,36.07259696148599,30.714607338333437,30.714607338333437,13.51795209201181,11.140456810517094,10.709277287593608,14.337417642422992,10.87078550381031,14.498129895274545,11.474932511367882,11.09763010238872,15.270926989228542,11.207948859707813,309.16112712582867,309.16112712582867,0.0,343.51236347314295,0.0,309.16112712582867,343.51236347314295,0,0
+2017/08/08 12:00:00,299.8310817537644,0,926.8293620946408,0,0,0,92.19122179221388,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.804815106928392e-09,18.591410673742693,0,0,0.0,447.709603175295,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15118.733892053466,6600.297103198312,10340.171779559527,8223.347078981244,65256.470926030306,15333.121313041935,7648.866122530179,11380.579831608064,8897.276861753557,67846.32480567625,16119.463169589826,7832.158683685201,11747.797377224068,9264.086810657736,69782.49961075383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04934508174660605,0.0015612439901032669,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2225288179847136,1.2225288179847136,1.0651010986202278,1.0651010986202278,1.0814892439194723,1.0814892439194723,1.1557221171820167,1.1557221171820167,1.1175814286364518,1.1175814286364518,0.65852566664657,0.5487364357827365,0.5313434289088594,0.634716023258671,0.5417114982884356,0.6995274751058908,0.569090322874652,0.55444768225468,0.6623785730019737,0.5600080788752451,36.35564271783024,36.35564271783024,28.939562936714296,28.939562936714296,29.67357709119581,29.67357709119581,33.112698401456726,33.112698401456726,31.322852452744854,31.322852452744854,14.109118822639559,11.303134428742212,10.906579657934927,13.456184637319396,11.141390349239956,15.291059242261227,11.783847248895981,11.436208107222527,14.2170873557085,11.567125574542004,299.8310817537644,299.8310817537644,0.0,333.14564639307156,0.0,299.8310817537644,333.14564639307156,0,0
+2017/08/08 13:00:00,295.52372335463843,0,882.2301402019997,0,0,0,90.36079354078898,0.0,16.73568395689411,0.0,129.2730206906943,0,39.380909295966944,2.750268551586991e-09,16.341340665089557,0,0,0.0,438.60073379519804,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14655.273362271708,7020.1756967619485,10281.470192116774,7604.266332438378,63919.52131481758,14874.990844893888,7716.5255286060155,10898.38924848538,8337.07581028577,64754.86708590417,15719.229718110542,7993.419122187834,11354.251975350395,8686.128967908988,66855.25017684931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046970586138100845,0.0014861166042101361,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2091353875425246,1.2091353875425246,1.0983967310802256,1.0983967310802256,1.0823408200049607,1.0823408200049607,1.1347815250348752,1.1347815250348752,1.1132500401846863,1.1132500401846863,0.6558605173362466,0.564267270169079,0.5273160106165959,0.6167105590939236,0.5356030361968195,0.6970212926534115,0.5931892806031984,0.552871560212634,0.6434404350089896,0.5552039220703523,35.69509283963178,35.69509283963178,30.440659116400056,30.440659116400056,29.711976056093818,29.711976056093818,32.12418934445148,32.12418934445148,31.12259647395058,31.12259647395058,14.034810698370535,11.668313466428017,10.816624232499976,12.978747205032477,11.002485510897401,15.216728992821999,12.376245184143357,11.399342744290735,13.692581773062926,11.453934728392355,295.52372335463843,295.52372335463843,0.0,328.3596926162649,0.0,295.52372335463843,328.3596926162649,0,0
+2017/08/08 14:00:00,270.2592099375659,0,832.3689942980083,0,0,0,81.08272557534835,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.694791524840197e-09,14.108268215708494,0,0,0.0,424.2299404037507,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12907.956529777499,7737.5718915842035,9637.948094587191,7022.628065032966,59135.33154564172,12497.107838915676,7518.122069118114,9033.192260491465,7218.8557503512075,53539.554237846874,13214.532237519363,7887.3814310051785,9465.886731940678,7525.088544496793,55604.06898893413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04431594179768916,0.0014021255077192596,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1624472509236874,1.1624472509236874,1.1674877279412719,1.1674877279412719,1.067559856611329,1.067559856611329,1.1139671327090923,1.1139671327090923,1.0932940270009157,1.0932940270009157,0.6214529030118855,0.5938369870209623,0.5083913780579161,0.5878539701516979,0.5097989513694134,0.6557547736199559,0.6293730783490774,0.5323484166795922,0.6117592202375024,0.5273667192327756,33.433096746921734,33.433096746921734,33.674153567952686,33.674153567952686,29.049084967879253,29.049084967879253,31.1557070789473,31.1557070789473,30.20811553485106,30.20811553485106,13.103131782940679,12.39251480808393,10.40332776413905,12.24292112833706,10.433534555099072,14.031868762921775,13.31304203959229,10.92913631699038,12.849922465620978,10.81775248216725,270.2592099375659,270.2592099375659,0.0,300.2880110417399,0.0,270.2592099375659,300.2880110417399,0,0
+2017/08/08 15:00:00,256.7542971158465,0,832.3718481379178,0,0,0,74.49125463124517,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.694791524840197e-09,14.062858928400763,0,0,0.0,424.2327942436603,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11577.469352484739,8789.722809067642,9490.271482773169,6822.56225303168,57788.64957362888,10471.230228611694,7597.38099612034,7795.99178358947,6545.046682761537,46095.44953108604,11023.749635888957,8063.552330713401,8193.774367464306,6807.634288774023,47933.90649779788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04431609373823981,0.0014021303150123707,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.123002909615926,1.123002909615926,1.2110289894070494,1.2110289894070494,1.0677005452578712,1.0677005452578712,1.1098252679670204,1.1098252679670204,1.089968180492195,1.089968180492195,0.5867379057693793,0.623130783397071,0.49968987928190906,0.5738817306591919,0.4896685795832275,0.6126836910158964,0.663738237105884,0.5210048569067327,0.5943609535968122,0.504211135285437,31.574385222598053,31.574385222598053,35.78817834304826,35.78817834304826,29.05535823784922,29.05535823784922,30.96470044238002,30.96470044238002,30.05702890014912,30.05702890014912,12.215188033574734,13.147373804050062,10.218493305372363,11.899622143931168,10.00967754443468,12.873894715633924,14.255342223830723,10.677072205740743,12.405689554563324,10.314123913157218,256.7542971158465,256.7542971158465,0.0,285.28255235094053,0.0,256.7542971158465,285.28255235094053,0,0
+2017/08/08 16:00:00,282.457482681815,0,885.610240350594,0,0,0,77.30822942699359,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.694791524840197e-09,14.064591523638718,0,0,0.0,424.23565768752036,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11363.875006496459,10484.177808812019,10024.048550277828,7044.910497728973,62325.83855768511,10056.276097005482,8642.586328805868,8048.10295403541,6568.395650006324,47567.8064290973,10415.058894228592,9175.213988112342,8374.417340040138,6772.475542605194,49309.268059285605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04715054517367472,0.0014918103826538982,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1094146647480538,1.1094146647480538,1.2907133764747738,1.2907133764747738,1.0780836374733547,1.0780836374733547,1.1131658080834825,1.1131658080834825,1.1150526194957096,1.1150526194957096,0.5599251287742295,0.6720608530861372,0.4939781071691609,0.5643264733416645,0.4871257794526978,0.5777161968663173,0.7172150078325265,0.5120140017807152,0.5803885367734257,0.5013550812337879,30.94579636038536,30.94579636038536,39.791680536317195,39.791680536317195,29.520265609928757,29.520265609928757,31.118708318591274,31.118708318591274,31.20586036503319,31.20586036503319,11.565162694513887,14.491248339094128,10.098944424232442,11.669725531924868,9.957382537674079,11.992991913343175,15.823354681356875,10.481243457543684,12.058440975259487,10.253611785426543,282.457482681815,282.457482681815,0.0,313.8416474242389,0.0,282.457482681815,313.8416474242389,0,0
+2017/08/08 17:00:00,297.54751981720665,0,894.8010259026076,0,0,0,85.49816344427377,0.0,16.7356839618177,0.0,133.89528835348938,0,39.380909295966944,2.804815106928392e-09,18.605499556399757,0,0,0.0,433.4264432395338,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11528.223826766605,11510.328406413935,11052.029126404123,7187.7728866655525,65858.4471830748,11221.674052688912,10021.409776957149,10008.237000552585,7171.416102854183,55609.81198639388,11459.98396598318,10582.890430463132,10334.337855778378,7324.640051880235,57285.830392718744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047639869404140056,0.0015072922602186963,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.109741055161177,1.109741055161177,1.3215647163148563,1.3215647163148563,1.1122926664627288,1.1122926664627288,1.112860429711268,1.112860429711268,1.1280617778839939,1.1280617778839939,0.5597585741778855,0.7130066814764559,0.5228517079943839,0.5674948892869864,0.5021680701051969,0.5737283372305944,0.7585822854905596,0.5427240742516534,0.5801109054757748,0.5160901073655844,30.960822841622246,30.960822841622246,41.38280448601575,41.38280448601575,31.078418062545396,31.078418062545396,31.10461403615257,31.10461403615257,31.809968293008282,31.809968293008282,11.56122235030945,15.695484809566821,10.717731281540111,11.745517766154734,10.27080094640769,11.895900263029347,17.120821234453743,11.164572263530502,12.051627001678995,10.569591287430484,297.54751981720665,297.54751981720665,0.0,330.60835535245184,0.0,297.54751981720665,330.60835535245184,0,0
+2017/08/08 18:00:00,286.5983391188186,0,915.3644294083431,0,0,0,90.1462354428668,0.0,17.03716081602578,0.0,110.93442390708215,0,39.380909295966944,2.9629646643747762e-09,25.667634451459616,0,0,0.0,489.4801992578134,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11062.000391564326,10889.283162856094,11568.41193084621,6953.343588498534,65463.860731936904,12347.791861261356,10684.46157043964,11934.349879203082,7605.706923685666,64598.043065495774,12503.627121548372,11196.253799125952,12305.729025590603,7714.271362083285,66024.03916173897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048734680238235475,0.0015419313118633718,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0964828808406866,1.0964828808406866,1.2886304424324382,1.2886304424324382,1.1380153099463832,1.1380153099463832,1.1025755054203,1.1025755054203,1.1275396577266845,1.1275396577266845,0.5611621237782686,0.7211609327694519,0.5568007595608813,0.5683630658497639,0.5266366377314748,0.5720107958474667,0.7590686021063905,0.5791090653765594,0.576031094126171,0.538493367979862,30.353335548326456,30.353335548326456,39.68502112963909,39.68502112963909,32.275925961845644,32.275925961845644,30.63175852475881,30.63175852475881,31.785615172333337,31.785615172333337,11.59446513447351,15.94394446022639,11.491446815817156,11.766361573769515,10.801519150783804,11.854296184500441,17.13651065041458,12.02706640202301,11.951880863404114,11.06800942444994,286.5983391188186,286.5983391188186,0.0,318.44259902090954,0.0,286.5983391188186,318.44259902090954,0,0
+2017/08/08 19:00:00,272.7035339125946,0,882.5305083590007,0,0,0,83.07016296225801,0.0,18.032855392098348,0.0,101.68988858149199,0,39.380909295966944,3.0138820539491445e-09,27.0977424753112,0,0,0.0,492.1366307210154,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9086.19851555998,6865.472335450509,9684.274028159545,6407.215830666619,55205.250219929345,11651.17150652898,9702.62006939829,11501.293092159,7170.186911911851,64590.14401068925,11709.683984869938,10054.258022216776,11841.31931544757,7223.021234693969,65552.38408110398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04698657796126428,0.001486622574347807,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0529415658971801,1.0529415658971801,1.0982414045185855,1.0982414045185855,1.093465082421286,1.093465082421286,1.0838602090312541,1.0838602090312541,1.0918422721327987,1.0918422721327987,0.5520733586029497,0.6782509503753499,0.5558195691326577,0.5593074981351307,0.5363546368011999,0.5540566354254863,0.7001454425850977,0.5704060496066049,0.5602900479566447,0.5436299863060813,28.401103045384318,28.401103045384318,30.433567342568736,30.433567342568736,30.215896528060213,30.215896528060213,29.780550495977863,29.780550495977863,30.142118373502754,30.142118373502754,11.380713956123714,14.668652320706144,11.468384097920591,11.550556845918067,11.019489504469519,11.427051508997309,15.309429065641751,11.815539992042929,11.573800148011017,11.185349868803343,272.7035339125946,272.7035339125946,0.0,303.00392656954955,0.0,272.7035339125946,303.00392656954955,0,0
+2017/08/08 20:00:00,281.4128608657537,0,826.4754498385901,0,0,0,73.77905593973502,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,2.9111538913368293e-09,23.162050959404443,0,0,0.0,471.5719247131487,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6989.528295500252,4900.610144392058,7096.595037309826,5711.2250456280135,46349.70415417743,10842.982806749598,8294.67531608783,10139.675506927728,6516.71826370337,62067.92955886052,10837.86001304812,8450.924161221377,10329.012030937687,6518.903777531974,62655.84875835551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04400216512528207,0.0013921978325246822,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0301678538295598,1.0301678538295598,1.0656848066042053,1.0656848066042053,1.0292082893825856,1.0292082893825856,1.061568541889446,1.061568541889446,1.0725151995952735,1.0725151995952735,0.549012829687972,0.6217940952427232,0.5274455622855246,0.5511068189334317,0.5400424853304653,0.5468839122639131,0.6269312187320764,0.5315312494538322,0.5472333014351939,0.5440915174537462,27.406998889239006,27.406998889239006,28.965543990579818,28.965543990579818,27.365529487734776,27.365529487734776,28.78258621633934,28.78258621633934,29.270464303809902,29.270464303809902,11.309541927988434,13.112118377658803,10.819506934699604,11.35819339002633,11.103276927295767,11.260273788524998,13.248034645979814,10.910791912334432,11.268345999011146,11.19594902081431,281.4128608657537,281.4128608657537,0.0,312.6809565175041,0.0,281.4128608657537,312.6809565175041,0,0
+2017/08/08 21:00:00,247.1775733329111,0,801.7262831778777,0,0,0,53.0997931369285,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.962964664374776e-09,25.613817944854357,0,0,0.0,482.31311056498043,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4700.607338080704,3162.03692390722,4914.0895207837875,4867.5100830092715,34788.82945754191,7383.718892073222,5710.708095538997,6825.869501702801,4295.535222727257,43736.99355151696,7255.912587168843,5707.649022013057,6865.297658503896,4197.411651172184,43913.60607385557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.042684501160393,0.0013505078631631418,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9985420155931775,0.9985420155931775,1.0244506090296694,1.0244506090296694,0.9949394247583461,0.9949394247583461,1.037621450200613,1.037621450200613,1.042749971068718,1.042749971068718,0.5189136969054017,0.5811263858652387,0.49680648330824967,0.518516105038092,0.5133187626579784,0.510850713869712,0.5777037590602547,0.49468592681347134,0.5087315307470273,0.5133011383887224,26.05830068144141,26.05830068144141,27.160420021491447,27.160420021491447,25.907056406805538,25.907056406805538,27.73027420425096,27.73027420425096,27.953889063801242,27.953889063801242,10.631212772641433,12.076566443844897,10.15796692064987,10.622514935970173,10.509445382704612,10.456161504457668,11.99268801982555,10.113682773824152,10.410619655605018,10.509063950039476,247.1775733329111,247.1775733329111,0.0,274.641748147679,0.0,247.1775733329111,274.641748147679,0,0
+2017/08/08 22:00:00,165.41700409667658,0,620.445928269001,0,0,0,28.79354629876979,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.858440462849853e-09,20.870500189726418,0,0,0.0,460.73934196255243,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503.307014171458,217.45687639996012,1122.926153693991,3121.30782755573,13060.071056782735,4085.502737981963,3500.5344991201277,3869.8373599955294,2029.087924315481,28222.184183412377,3761.571733574896,3335.1335833604744,3767.7092781277124,1756.4607822739524,27884.94866183398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033033000789476984,0.0010451411190780847,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9869357463374626,0.9869357463374626,1.0107734904574477,1.0107734904574477,0.9776178724335168,0.9776178724335168,0.9873478374667082,0.9873478374667082,1.0026453497983645,1.0026453497983645,0.538808689694175,0.5908605961212372,0.5142073503861052,0.5397664810876173,0.5305633839955866,0.5242706634201328,0.5790349419726242,0.504753371609034,0.5240546442990394,0.5261311774363452,25.572816646702904,25.572816646702904,26.575471618039003,26.575471618039003,25.186790499353947,25.186790499353947,25.5899660482376,25.5899660482376,26.231167490043802,26.231167490043802,11.075179671813046,12.317901768751454,10.528694028560679,11.096985750056874,10.88910192474377,10.749070366949837,12.025250960821552,10.325652269268389,10.744293739359463,10.790293780770867,165.41700409667658,165.41700409667658,0.0,183.79667121852953,0.0,165.41700409667658,183.79667121852953,0,0
+2017/08/08 23:00:00,94.83494304496028,0,472.4420704207476,0,0,0,7.48164333536306,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.638374754702555e-09,11.842318648120612,0,0,0.0,419.2065416519314,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1590.7416206579,0.0,509.0184149161933,1033.7389334178079,635.6450027099105,0.0,10368.518679156605,3.970433418674138,710.3817204557008,382.2144108848417,0.0,9630.5879030581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025153165770191777,0.0007958286317660043,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8266978010043126,0.8266978010043126,0.8408774727113111,0.8408774727113111,0.8409949473737285,0.8409949473737285,0.9374511522847437,0.9374511522847437,0.8931516117657955,0.8931516117657955,0.5382770919681431,0.5834002665897732,0.5144374375809798,0.5201893002405569,0.5320328349703098,0.5188459337974809,0.5657453586974727,0.4998718591522056,0.47901723421599396,0.5242853489522402,19.416282411504298,19.416282411504298,19.91874744191186,19.91874744191186,19.9229453385515,19.9229453385515,23.561427264587422,23.561427264587422,21.843228500281285,21.843228500281285,11.063093913857514,12.132573539236631,10.533683759363143,10.659164423996586,10.922048466171162,10.629729883410022,11.703613102332326,10.222325360304154,9.79248662829744,10.749395167630581,94.83494304496028,94.83494304496028,0.0,105.37215893884476,0.0,94.83494304496028,105.37215893884476,0,0
+2017/08/09 00:00:00,42.905616041922954,0,440.6353784963405,0,0,0,0.42001175604220337,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,3.144235536871753,2.5810089691886133e-09,9.544047750004818,0,0,0.0,387.39984972752427,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377.0441071008165,0.0,329.8071434992195,921.2545892858399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02345975393270759,0.0007422502616334276,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8929985504362253,0.8929985504362253,0.9084946678143423,0.9084946678143423,0.8925561746491245,0.8925561746491245,0.9128445120279199,0.9128445120279199,0.9130948367234423,0.9130948367234423,0.7072141239411033,0.8093522407292376,0.6548241412724167,0.6905680155688897,0.7281419528737615,0.6629904428326386,0.7682592917797946,0.6213642201738658,0.6295246989511302,0.7062196263745507,21.837429495214494,21.837429495214494,22.429362700094288,22.429362700094288,21.820674660389756,21.820674660389756,22.597270828307174,22.597270828307174,22.606956847609013,22.606956847609013,15.520726567464095,18.813107051808572,14.005998191859376,15.02658144213217,16.158930147717584,14.23429272682391,17.434918233863357,13.10079681034324,13.317087026490384,15.490868660956451,42.905616041922954,42.905616041922954,0.0,47.67290671324773,0.0,42.905616041922954,47.67290671324773,0,0
+2017/08/09 01:00:00,23.72216864081781,0,51.9756423977924,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250732171400191,0,0,0.0,16.485289885248264,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002767221699963296,8.755296567419694e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9339334319798742,0.9339334319798742,0.9750987760257339,0.9750987760257339,0.9173153733086818,0.9173153733086818,0.9453170502929323,0.9453170502929323,1.0114486903569044,1.0114486903569044,0.6903291539328961,0.8244366605628294,0.6221120074032646,0.6732969714767577,0.7876448741273584,0.652087281405896,0.7948390821463578,0.5967094956913379,0.6237113451902464,0.752800669144613,23.422110196123455,23.422110196123455,25.08300286471679,25.08300286471679,22.770645847473602,22.770645847473602,23.87472903154716,23.87472903154716,26.60418465939948,26.60418465939948,15.019577851555766,19.336936307425788,13.120496349498765,14.526542135885336,18.076146562087388,13.930133967180836,18.318177615376797,12.464888276923688,13.162710391160886,16.935071320748477,23.72216864081781,23.72216864081781,0.0,26.357965156464232,0.0,23.72216864081781,26.357965156464232,0,0
+2017/08/09 02:00:00,28.344499456961522,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251363704886273,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9371491816883392,0.9371491816883392,0.9826905509443546,0.9826905509443546,0.9155289291208724,0.9155289291208724,0.9417173295181352,0.9417173295181352,1.0708719704270706,1.0708719704270706,0.6809332498370105,0.8108815011347312,0.6132832697696161,0.6638651701162348,0.8125335500363792,0.6372909741563432,0.7809950256068193,0.5800015559763426,0.6097292871599407,0.7624451567163177,23.54944859700747,23.54944859700747,25.39652992588303,25.39652992588303,22.701272924451246,22.701272924451246,23.731046353016083,23.731046353016083,29.196957121252126,29.196957121252126,14.746040084696133,18.865776350861196,12.889462090388534,14.258917638009962,18.922785442140167,13.525612251881952,17.854383536613582,12.048944127946214,12.797414853810253,17.245722912624927,28.344499456961522,28.344499456961522,0.0,31.493888285512803,0.0,28.344499456961522,31.493888285512803,0,0
+2017/08/09 03:00:00,23.722297012718546,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5252015890407524,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9109385037489569,0.9109385037489569,0.9585149772338626,0.9585149772338626,0.8867751270177314,0.8867751270177314,0.9096962654873897,0.9096962654873897,1.0684957108014532,1.0684957108014532,0.6635896655124179,0.7952214848900792,0.5949710558052711,0.6458081362392049,0.8334692838971827,0.6168441447912406,0.7631241054928153,0.5582316768529126,0.5896931053678813,0.7683361558633707,22.523603018610757,22.523603018610757,24.40589738256206,24.40589738256206,21.602453857087042,21.602453857087042,22.475669094143143,22.475669094143143,29.090827641160075,29.090827641160075,14.251158186474015,18.331104024878783,12.421045131078628,13.757306616496564,19.655184194870714,12.982237599038697,17.267741858146564,11.525155117435204,12.28873974872704,17.43742909971695,23.722297012718546,23.722297012718546,0.0,26.358107791909493,0.0,23.722297012718546,26.358107791909493,0,0
+2017/08/09 04:00:00,48.73564034481676,0,88.72588128136032,0,0,0,0.07036414544160628,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,8.579561645793603,0.0,0.5775810039474226,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,45.96272774212051,229.31918777785006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.917236437901421,0.917236437901421,0.9241281547562424,0.9241281547562424,0.9178559998527476,0.9178559998527476,0.9207938334252924,0.9207938334252924,0.9593483425997024,0.9593483425997024,0.48303173684418527,0.5391330860822463,0.4557238131806651,0.4757475448221065,0.5483710256668068,0.4576237879016251,0.5158028281085378,0.4367939330840995,0.4475244877505245,0.528609147077334,22.767577838696695,22.767577838696695,23.036383963319025,23.036383963319025,22.791665298449615,22.791665298449615,22.906093132730746,22.906093132730746,24.43966705430826,24.43966705430826,9.873771219739965,11.082560767603255,9.33455842458332,9.726796502232915,11.294668394550769,9.371034817839458,10.563341091604968,8.979616539140935,9.178926506737724,10.845430863551101,48.73564034481676,48.73564034481676,0.0,54.15071149424084,0.0,48.73564034481676,54.15071149424084,0,0
+2017/08/09 05:00:00,76.67392311211235,0,212.9421150752648,0,0,0,0.28904048976594726,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,3.0739786747421918,0.0,0.5248609176483432,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1158.7505759269827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9599764189344899,0.9599764189344899,0.9544365156812098,0.9544365156812098,0.9624335664470086,0.9624335664470086,0.9801121141919298,0.9801121141919298,0.9780915088617289,0.9780915088617289,0.6262549136235547,0.7153141689895323,0.5780138171064266,0.6114050126208601,0.7612279204915672,0.5732338486074389,0.661388819993555,0.5374246506403808,0.5547554139920077,0.7258371555884822,24.465135967793373,24.465135967793373,24.24102255210981,24.24102255210981,24.56492324041291,24.56492324041291,25.28979563881842,25.28979563881842,25.206331875256126,25.206331875256126,13.230075743072192,15.765503259582687,12.000265685018235,12.840747413452561,17.206296106286644,11.883909125112808,14.189290497119671,11.043739402162544,11.443418493602849,16.0877203651482,76.67392311211235,76.67392311211235,0.0,85.19324790234705,0.0,76.67392311211235,85.19324790234705,0,0
+2017/08/09 06:00:00,90.31458152944735,0,628.4580873764754,0,0,0,0.45225049677092344,0.0,10.679537574073862,0.0,73.80580873715317,0,4.852032743004419,2.522689097862678e-09,0.5249519759222648,0,0,0.0,397.7707960449386,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1855.618178431071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03345957407501859,0.0010586376004865128,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9659817493064514,0.9659817493064514,0.9571896941969545,0.9571896941969545,0.9722085778094441,0.9722085778094441,1.0403703665656068,1.0403703665656068,0.9625232340129868,0.9625232340129868,0.7714951645297232,0.8773032558113861,0.7166575364275903,0.7523824270713594,1.01724376138073,0.7202169611064743,0.8310796934504601,0.6769198734161945,0.6964787311244439,0.9577386150940309,24.709434758319162,24.709434758319162,24.352250255435195,24.352250255435195,24.964228296119785,24.964228296119785,27.850013626519612,27.850013626519612,24.568569196101393,24.568569196101393,17.540840267597417,21.24787016980038,15.806372087259277,16.921689656745897,26.851324245177082,15.915035124320454,19.570658711802423,14.630364612791567,15.200673007760628,24.37446208297149,90.31458152944735,90.31458152944735,0.0,100.34953503271927,0.0,90.31458152944735,100.34953503271927,0,0
+2017/08/09 07:00:00,152.90518101326663,0,758.3248303729749,0,0,0,9.215107086150635,0.0,7.90504181189309,0.0,69.33401494192633,0,39.380909295966944,3.0138872173531435e-09,27.070107874315752,0,0,0.0,492.14718652889394,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3297.1020383288574,0.0,0.0,0.0,75.40018032087612,0.0,14459.71345980694,0.0,0.0,30.874956085054606,0.0,13090.010639491635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04037377566531454,0.0012773981192073975,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7638117839923548,0.7638117839923548,0.7243629319586714,0.7243629319586714,0.7959214536709376,0.7959214536709376,1.0872016345300985,1.0872016345300985,0.9248011541644643,0.9248011541644643,0.5162360536025464,0.5647014550817885,0.5066897466222516,0.5410909080012071,0.6493680902467739,0.49001162508211304,0.5437831273045979,0.4880739181681305,0.5220591466595783,0.6339843445550706,17.29006398905601,17.29006398905601,16.042292083712013,16.042292083712013,18.354781211419407,18.354781211419407,29.931640724374205,29.931640724374205,23.062735939002295,23.062735939002295,10.572767936777936,11.678672819436784,10.36692480977213,11.127204512875537,13.855081049779187,10.016753957957889,11.188865758165491,9.976849240885741,10.700264683456723,13.436509081925536,152.90518101326663,152.90518101326663,0.0,169.89464557029626,0.0,152.90518101326663,169.89464557029626,0,0
+2017/08/09 08:00:00,199.09166319990126,0,793.5429895221541,0,0,0,39.73835486319474,0.0,11.198411640824625,0.0,83.2008179303116,0,39.380909295966944,2.9629697936398597e-09,25.573169466640362,0,0,0.0,474.12981690925693,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2129.0845205673295,538.2647963567264,1715.860493394001,5886.377376102257,19126.68293959136,5710.149505685347,3635.2441131404394,4630.060193994806,4477.3312279877755,38222.54074753738,5341.470894345545,3308.6602270238363,4380.306245880321,4373.8950408823675,37157.02348490588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04224881654474212,0.0013367231056211773,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9349069703451256,0.9349069703451256,0.8799058887265346,0.8799058887265346,0.9193553692356621,0.9193553692356621,1.1710062853947822,1.1710062853947822,0.9831361711032041,0.9831361711032041,0.5314460082322536,0.5404338619301445,0.49971923484128156,0.5877958314944851,0.5495835645888695,0.5205889806867724,0.5250966987495251,0.49160005090816705,0.5894699545129901,0.5447428468536589,23.460617272866543,23.460617272866543,21.344934218907312,21.344934218907312,22.850021990777492,22.850021990777492,33.84288823561813,33.84288823561813,25.415002293890907,25.415002293890907,10.908880016752661,11.112203533748982,10.219111365493873,12.241475105692771,11.322783463075766,10.667936907027624,10.76735433876344,10.049586568441669,12.283172537039377,11.210922631655748,199.09166319990126,199.09166319990126,0.0,221.2129591110014,0.0,199.09166319990126,221.2129591110014,0,0
+2017/08/09 09:00:00,237.3928259747435,0,826.3347022983837,0,0,0,59.737838019055474,0.0,11.128561489866103,0.0,106.27511244621549,0,39.380909295966944,2.8584455133788176e-09,20.870404720781124,0,0,0.0,453.68600091667037,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6540.299791861547,2508.6137356858308,4555.556690855582,8179.199399168557,34875.96743398518,9646.106049458225,5477.518208882543,7219.799848005272,7221.6364099705015,49940.86718426307,9675.832318095685,5330.9942042994335,7171.606637870507,7458.982870258241,49629.7587802784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043994671621988835,0.001391960743303887,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0942200136752895,1.0942200136752895,1.0023170850353167,1.0023170850353167,1.0115095019001012,1.0115095019001012,1.2194545498021827,1.2194545498021827,1.0398977126103797,1.0398977126103797,0.6021929619524702,0.5756018406953056,0.5278900549015623,0.673301148113373,0.5504334919233818,0.6150107389107048,0.5735566286073229,0.5322768048499651,0.6984765593123285,0.5516429516695426,30.250248944007325,30.250248944007325,26.217314752550834,26.217314752550834,26.606771525541788,26.606771525541788,36.20358149615684,36.20358149615684,27.829405740504072,27.829405740504072,12.604039685828155,11.9414281587527,10.829403028093068,14.52666149981765,11.342528669370594,12.934401075390468,11.891735199993462,10.927527562943652,15.259857371398326,11.370680387564477,237.3928259747435,237.3928259747435,0.0,263.7698066386039,0.0,237.3928259747435,263.7698066386039,0,0
+2017/08/09 10:00:00,283.5929443600632,0,918.3819289386441,0,0,0,71.57052611468028,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.804820112780256e-09,18.620724157567768,0,0,0.0,457.00734627557034,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12097.96646105742,5377.284704578622,8150.5710008566175,9293.669192511445,54163.2840836554,11203.479171206376,6201.109152300853,7717.8364024682,8069.450689442839,49198.39595026803,11656.797237721454,6211.568691601019,7878.1270033226065,8471.86016185273,49935.68932017469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04889533414831072,0.0015470142895931396,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1762886872830327,1.1762886872830327,1.0485485185772825,1.0485485185772825,1.0561261763690104,1.0561261763690104,1.234486680230891,1.234486680230891,1.0876992969574142,1.0876992969574142,0.6342829185702255,0.5775147008350165,0.5317432468615368,0.6795750245254295,0.5360068845249217,0.6593622823006081,0.58289577551078,0.543177236481547,0.7081238553176282,0.5445625235839676,34.0969172464622,34.0969172464622,28.20787197832155,28.20787197832155,28.54161506615067,28.54161506615067,36.94956471927802,36.94956471927802,29.954176770919716,29.954176770919716,13.444535224208437,11.988069577486286,10.915548216888197,14.706814650246216,11.011619016450041,14.132508320307096,12.120128243293422,11.174961350304883,15.548076888968282,11.206775284537542,283.5929443600632,283.5929443600632,0.0,315.10327151118133,0.0,283.5929443600632,315.10327151118133,0,0
+2017/08/09 11:00:00,317.68515728993475,0,975.3383702612992,0,0,0,89.60206943420927,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.8584455133788167e-09,20.877204256037892,0,0,0.0,460.72825882940936,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16015.523450448169,7066.241630035294,10934.777089209183,9554.989188132873,68015.66864789436,14806.52850569871,7836.979366002402,10542.215224065423,9262.274019611139,62086.96290830615,15657.965628323653,8004.305026778255,10954.950684663168,9730.341621316105,63627.03669440913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051927737272344676,0.0016429574106782317,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2489692931157144,1.2489692931157144,1.0981483068016966,1.0981483068016966,1.107677351949316,1.107677351949316,1.2243523216726706,1.2243523216726706,1.131375459847289,1.131375459847289,0.6805519474899078,0.5969696853304634,0.5536361965456882,0.6813848129248679,0.5449342205596382,0.7215676784738718,0.6155734155547693,0.5759753383586499,0.714206694303068,0.5615229246603713,37.67399843894004,37.67399843894004,30.429317157223338,30.429317157223338,30.86587359891817,30.86587359891817,36.44596083418807,36.44596083418807,31.964735164295675,31.964735164295675,14.735020047623863,12.471461498145075,11.417214073954511,14.759098864793202,11.215325674715203,15.956412960784576,12.949066703828365,11.95052270888263,15.73186939029,11.603024432313006,317.68515728993475,317.68515728993475,0.0,352.9835080999275,0.0,317.68515728993475,352.9835080999275,0,0
+2017/08/09 12:00:00,308.3701858373804,0,921.5368570036684,0,0,0,100.86428158572468,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.804820112780256e-09,18.562231164208733,0,0,0.0,442.41709808432245,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17013.41959524117,7604.409743435226,11729.367235528227,8769.131550353617,70755.01661812417,17379.807601223754,9040.96424458236,12871.409212743314,9681.266657940037,72549.82509749412,18331.296662121375,9275.732955296058,13374.68204097513,10073.684409382584,74663.28966524801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04906330485536887,0.0015523287656792181,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2636638015348611,1.2636638015348611,1.11148246445172,1.11148246445172,1.1188778769547472,1.1188778769547472,1.1758371606416076,1.1758371606416076,1.13732846936662,1.13732846936662,0.7043825296674189,0.6049457777241469,0.5656883940662725,0.6558477821382467,0.5561485692780489,0.7492562466508152,0.6283609401737431,0.5923970310248432,0.6837011494163094,0.5761437273942184,38.41456731632819,38.41456731632819,31.041054916174645,31.041054916174645,31.38291338289251,31.38291338289251,34.07517042037533,34.07517042037533,32.243669582811364,32.243669582811364,15.435825512205113,12.674388648186039,11.70225092026898,14.034456362001833,11.47611253991532,16.821904686098975,13.286065419031985,12.356369561062834,14.82622379031433,11.954624908178303,308.3701858373804,308.3701858373804,0.0,342.6335398193116,0.0,308.3701858373804,342.6335398193116,0,0
+2017/08/09 13:00:00,305.8614752605463,0,887.5371418204262,0,0,0,100.8710454920236,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.7502735091320547e-09,16.336230296689827,0,0,0.0,443.9077354136246,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16479.98063215978,8192.850306299106,11824.882623090662,8429.437680914925,69029.55199065275,17119.873190992374,9432.731681876734,12768.533932593264,9444.399868130879,69782.4659304833,17988.66957361451,9721.600672820116,13276.02225481775,9775.16611263695,72070.18050676752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04725313483519736,0.0014950562480335813,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2494099316315417,1.2494099316315417,1.1479639036928573,1.1479639036928573,1.12060549519773,1.12060549519773,1.1657035019597948,1.1657035019597948,1.1294081407866536,1.1294081407866536,0.7044045932891586,0.6312186470969625,0.5686002500041222,0.6481291615634663,0.5502562595603765,0.7471980790029055,0.659939297976826,0.5990559435138946,0.6750953911448757,0.5689446906645402,37.69612550738759,37.69612550738759,32.74484231095401,32.74484231095401,31.463035845806843,31.463035845806843,33.58873488118168,33.58873488118168,31.87280749667491,31.87280749667491,15.43648571925624,13.362346578737544,11.772061747795519,13.820991434098516,11.338408686847188,16.756438297106214,14.148657779780407,12.524273272570653,14.57800893164837,11.780343929583168,305.8614752605463,305.8614752605463,0.0,339.8460836228292,0.0,305.8614752605463,339.8460836228292,0,0
+2017/08/09 14:00:00,280.6239810894445,0,832.3263523800503,0,0,0,91.618940701643,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.6947964303810017e-09,14.104213834912702,0,0,0.0,424.18729848579284,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14989.585632748527,8980.452748041123,11142.513271503145,7869.6411576549035,64095.66548895964,14751.876255622929,9273.397640843496,10765.287683074024,8405.17299002876,58601.40958579596,15464.499338766764,9648.632903562604,11230.053304581945,8685.223897816279,60805.83297469458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04431367151039193,0.0014020536774116959,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2149470973169278,1.2149470973169278,1.2093179752374288,1.2093179752374288,1.1052824015286669,1.1052824015286669,1.1464791648742778,1.1464791648742778,1.1102864622273327,1.1102864622273327,0.6773788036607206,0.660075607477119,0.5524051154004493,0.6258493757616563,0.5276360260898304,0.7125767490000791,0.6957485881951886,0.5802408003200926,0.6494208745384307,0.5439372920380285,35.98110493946612,35.98110493946612,35.704064052164256,35.704064052164256,30.755863828858338,30.755863828858338,32.674660224490395,32.674660224490395,30.98594047650971,30.98594047650971,14.643556833460465,14.152474903391294,11.38845329123754,13.21931643061778,10.823746334815965,15.682464288590438,15.179086005792499,12.054814626618011,13.856534908514831,11.19240617744083,280.6239810894445,280.6239810894445,0.0,311.8044234327161,0.0,280.6239810894445,311.8044234327161,0,0
+2017/08/09 15:00:00,265.7984498022126,0,832.3300423866541,0,0,0,83.57020539362918,0.0,16.568294279967066,0.0,108.75639138185811,0,39.380909295966944,2.6947964303810026e-09,14.090674245642258,0,0,0.0,424.1909884923967,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13314.971975522283,9846.572689217102,10724.317550684471,7524.924067641486,61659.333942675425,12307.576698684612,9170.912908491013,9122.99659546292,7530.8458050298395,50187.90435261955,12841.085632519136,9632.614871273086,9537.545407384701,7771.566748273489,52165.86021608808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04431386796907673,0.00140205989322754,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.169442500595397,1.169442500595397,1.2501983779867343,1.2501983779867343,1.0984882314012134,1.0984882314012134,1.1364839557512285,1.1364839557512285,1.1037684920682616,1.1037684920682616,0.6366000930692318,0.6828731925176187,0.536441389700213,0.6056949780514144,0.505354600980576,0.6627612058277741,0.7230082376868361,0.5592184646006882,0.6259710694583202,0.5195912660811898,33.767849190784204,33.767849190784204,37.735730564908735,37.735730564908735,30.444837148823098,30.444837148823098,32.204029199203404,32.204029199203404,30.68642379307782,30.68642379307782,13.506956005205794,14.802203846990992,11.021453752019525,12.693591604518502,10.338449721201314,14.227844835508336,16.000629552070734,11.548452727869247,13.222544332931719,10.646051236491601,265.7984498022126,265.7984498022126,0.0,295.33161089134734,0.0,265.7984498022126,295.33161089134734,0,0
+2017/08/09 16:00:00,291.06871186094827,0,885.5692712145445,0,0,0,85.9443336673113,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.6947964303810026e-09,14.039716462454239,0,0,0.0,424.1946885514709,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12843.892173368315,11169.10602826027,11253.504101926397,7788.073928337251,65966.88150335671,11682.141675359888,10004.584711073145,9354.089837061727,7544.1702387153755,51472.16133747595,12019.29192934843,10523.44900404966,9713.731753584536,7743.829151999572,53346.95052931346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047148363946525336,0.0014917413701473325,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1479595867045629,1.1479595867045629,1.3075943450317546,1.3075943450317546,1.1094505910142993,1.1094505910142993,1.1437629551680166,1.1437629551680166,1.1258578695998653,1.1258578695998653,0.6056698886061818,0.7191721769874807,0.530681098197709,0.5975743808525119,0.5005647579516967,0.6237307190797767,0.7628077808553634,0.5512008990508889,0.6149318327703005,0.5147474477191682,32.74463814990041,32.74463814990041,40.659719390556205,40.659719390556205,30.9474501716645,30.9474501716645,32.546449272916064,32.546449272916064,31.70723265927272,31.70723265927272,12.692948135910441,15.883083114739904,10.891737748153517,12.486749387308635,10.236929226626273,13.163222439578718,17.25748070341764,11.360383696342396,12.932345560839778,10.540410341306455,291.06871186094827,291.06871186094827,0.0,323.4096798454981,0.0,291.06871186094827,323.4096798454981,0,0
+2017/08/09 17:00:00,303.6946539623439,0,894.7629817500492,0,0,0,91.74724137997737,0.0,16.630907673226492,0.0,133.89528835348938,0,39.380909295966944,2.8048201127802567e-09,18.608332054424658,0,0,0.0,433.3883990869755,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12541.196640085538,10379.456987671143,11547.277556613257,7745.272829645942,68407.05975461434,12536.895156480781,10159.73216602856,10795.386049163102,7895.79540106137,58701.55577679727,12735.950415617495,10579.909740324843,11107.728372251735,8045.992503993138,60290.06989650696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047637843905278296,0.0015072281748465994,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1346393668948842,1.1346393668948842,1.2507472294625321,1.2507472294625321,1.1152380390110392,1.1152380390110392,1.133430901511257,1.133430901511257,1.1341359093783563,1.1341359093783563,0.5936159056065028,0.6951729292604928,0.5363940412354562,0.5887790513077189,0.510622202221461,0.6053800519785997,0.7268327324775875,0.5542334629384478,0.6004766269268046,0.5232601563426443,32.11752671637599,32.11752671637599,37.763309799333776,37.763309799333776,31.214431325206192,31.214431325206192,32.06091514602409,32.06091514602409,32.093936074987994,32.093936074987994,12.386959456095141,15.162082625318007,11.020381653996935,12.265949450452354,10.451241382580776,12.685516681245858,16.118452009421205,11.431191211118062,12.560344730054908,10.726743349737234,303.6946539623439,303.6946539623439,0.0,337.43850440260434,0.0,303.6946539623439,337.43850440260434,0,0
+2017/08/09 18:00:00,294.7365808025231,0,915.3411695571,0,0,0,98.52469917015299,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.9629697936398613e-09,25.666275868826684,0,0,0.0,489.4569394065703,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12061.074950182598,10586.12886863796,11980.025195363563,7471.224787293037,68834.98281560061,13896.506807624599,11253.085326881077,12969.962162763286,8419.796755052534,68609.17110771862,14034.943312472442,11677.976668418567,13344.877387819826,8538.94033395565,69898.0841041464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048733441866526575,0.0015418921306457184,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1195103087210596,1.1195103087210596,1.2782783499643975,1.2782783499643975,1.1376087833649062,1.1376087833649062,1.1188113372086212,1.1188113372086212,1.1328314201339975,1.1328314201339975,0.5952252425418955,0.7320033645794655,0.569690505156742,0.5901776899848844,0.5341216992065211,0.6025406904076899,0.7646563555830144,0.5908417835319277,0.5973525012838642,0.5462672526801078,31.412232460917096,31.412232460917096,39.15643101630197,39.15643101630197,32.256832248402176,32.256832248402176,31.37982941941634,31.37982941941634,32.03284952036289,32.03284952036289,12.427447488539002,16.27874550004114,11.79829490490215,12.30083670347021,10.969043809498032,12.612907833212773,17.317506524319114,12.317431391960554,12.48113799329056,11.24603953064873,294.7365808025231,294.7365808025231,0.0,327.48508978058123,0.0,294.7365808025231,327.48508978058123,0,0
+2017/08/09 19:00:00,283.4172925259763,0,882.5076305429586,0,0,0,93.39316356852217,0.0,18.423613399215846,0.0,101.68988858149199,0,39.380909295966944,3.0138872174087656e-09,27.0977424753112,0,0,0.0,492.11375290497324,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11142.410061205346,7770.833657479633,11039.963025771733,6960.895899071351,65442.29551834874,13296.535791978318,10209.014891396211,12424.58313149192,8028.551722567514,68730.27038568632,13313.32681543971,10461.037124326742,12707.87441377964,8071.853181229506,69714.03018832643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04698535992939244,0.0014865840366684205,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0980587296410222,1.0980587296410222,1.1213950028412156,1.1213950028412156,1.1104599421785595,1.1104599421785595,1.1009714264434802,1.1009714264434802,1.1229536898391688,1.1229536898391688,0.5853405980785015,0.6771166683513216,0.561008655339933,0.5782842230236459,0.5438763373599381,0.5855169787725333,0.6913335646933788,0.572315527787313,0.5782837284220043,0.5517262741398248,30.42522797481317,30.42522797481317,31.49968404824888,31.49968404824888,30.99393184304178,30.99393184304178,30.558332210628166,30.558332210628166,31.57209727294436,31.57209727294436,12.180542523472127,14.636020483228577,11.590826106182291,12.006877676976785,11.191006219807605,12.184911117553384,15.049044493325056,11.861668380545836,12.006865580032837,11.372622159073288,283.4172925259763,283.4172925259763,0.0,314.90810280664033,0.0,283.4172925259763,314.90810280664033,0,0
+2017/08/09 20:00:00,290.6514630418772,0,819.0691882226263,0,0,0,83.01614715389027,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,2.9111589829809477e-09,23.163561921372708,0,0,0.0,464.16566309718496,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8514.99989499395,5611.096698867249,8251.98151341884,6047.896084411233,53663.58848833338,13033.861728758595,9442.718849629944,11625.103048327239,7622.926889295857,71159.9659812947,12946.14179931487,9533.392178394224,11787.246451419292,7596.264282440536,71797.95272684973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0436078502709808,0.0013797219853947168,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0915345541469665,1.0915345541469665,1.1121163789289785,1.1121163789289785,1.0759548357627797,1.0759548357627797,1.0788508301510409,1.0788508301510409,1.1202559561821401,1.1202559561821401,0.6046459782821161,0.6599011544894497,0.5659615360611233,0.5976850563064897,0.5754574107416844,0.5991878367649605,0.6602281124293394,0.5677382959929885,0.5920795150184442,0.579013653359838,30.128138740465374,30.128138740465374,31.070286543786494,31.070286543786494,29.42463858732873,29.42463858732873,29.554767254593855,29.554767254593855,31.446817156544796,31.446817156544796,12.66671123219551,14.14758977823324,11.708783782228707,12.489549198031398,11.937912957744572,12.527618381858488,14.156746508175729,11.751358351274305,12.348411499750867,12.02472960108409,290.6514630418772,290.6514630418772,0.0,322.9460700465302,0.0,290.6514630418772,322.9460700465302,0,0
+2017/08/09 21:00:00,262.0853348972014,0,808.8585095502542,0,0,0,68.00831231642964,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.962969793639861e-09,25.613060329643474,0,0,0.0,489.4453369373571,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6909.649457013701,4484.597288430125,6577.727768754598,5366.030086521967,44799.516901741736,10350.70107533508,7453.230570837996,8970.092862861193,6043.751113714986,55797.03103778866,10140.213516884118,7398.295131208911,8965.996916315742,5950.367201133883,56017.78664344871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04306422617534594,0.0013625220979460832,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0605276955075247,1.0605276955075247,1.0758570581225777,1.0758570581225777,1.045012910738272,1.045012910738272,1.0608888863863795,1.0608888863863795,1.0878888539077314,1.0878888539077314,0.5822546277440739,0.6285182990061635,0.5451489100974484,0.5731268679113949,0.555712987008639,0.5717679819876372,0.6214185985479702,0.5417043577433033,0.5625193529679281,0.555421312043225,28.73641882144298,28.73641882144298,29.42025017459993,29.42025017459993,28.052863100235513,28.052863100235513,28.752435287400928,28.752435287400928,29.96276288303872,29.96276288303872,12.104327698696096,13.290256601911338,11.220267047274575,11.881316284702294,11.465881416226765,11.848424819090724,13.10222852392971,11.141227031348095,11.626692077009523,11.459035041145611,262.0853348972014,262.0853348972014,0.0,291.2059276635571,0.0,262.0853348972014,291.2059276635571,0,0
+2017/08/09 22:00:00,161.50946499241573,0,620.4182492319708,0,0,0,24.88693184659372,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8584455133788176e-09,20.869575537641612,0,0,0.0,460.7116629255222,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150.5154247215846,0.0,618.2049358907329,3200.9110201557114,10062.406154287843,3877.7935901315113,2993.690391236208,3346.946493141774,1548.1494970935642,25068.54303862189,3414.1728238538108,2724.4238356095884,3186.629680953988,1196.8488773549782,24660.776364353496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03303152713704346,0.0010450944937423082,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0082800917589845,1.0082800917589845,1.0076270983421363,1.0076270983421363,0.9913753359547062,0.9913753359547062,1.0009334829906515,1.0009334829906515,1.0162888875614453,1.0162888875614453,0.5624533554013037,0.6004749356880235,0.5266213176311547,0.5529525441341536,0.5428837746496452,0.5446150326112004,0.5843835797176663,0.5155007971141863,0.5352170184644611,0.5375159940437649,26.46958770798136,26.46958770798136,26.441896545746957,26.441896545746957,25.757914990867945,25.757914990867945,26.15897173477248,26.15897173477248,26.81051572591589,26.81051572591589,11.625123139502989,12.560301737060016,10.801178756191675,11.40123432679654,11.168232500515202,11.207982821092841,12.15686264359006,10.556773799385311,10.993761868670092,11.045811830233902,161.50946499241573,161.50946499241573,0.0,179.45496110268414,0.0,161.50946499241573,179.45496110268414,0,0
+2017/08/09 23:00:00,91.15961111566463,0,472.3441548022946,0,0,0,3.8162068709181693,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6383796044738874e-09,11.832423183269823,0,0,0.0,419.1086260334784,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1552.9975612601838,0.0,0.0,285.3901634502167,0.0,0.0,5796.407382573345,0.0,0.0,0.0,0.0,4918.255573077069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025147952670138588,0.0007956636929141518,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8141974426794408,0.8141974426794408,0.8008683623257717,0.8008683623257717,0.8158089487544015,0.8158089487544015,0.9460052274091715,0.9460052274091715,0.8663183721347614,0.8663183721347614,0.5517240607949078,0.5872557183009705,0.5139134801673493,0.488985341606753,0.5382662843763292,0.5066728503881565,0.5577936808394438,0.4853521228649325,0.4411705052412451,0.5294851916371658,18.980319527961782,18.980319527961782,18.522707129711137,18.522707129711137,19.036153383434737,19.036153383434737,23.90225596823909,23.90225596823909,20.841264777180896,20.841264777180896,11.372570574737097,12.228048440519274,10.522324412697643,9.995598706862651,11.062848332600865,10.36656397679593,11.51482776062295,9.921070908605515,9.060309648725607,10.864987260543188,91.15961111566463,91.15961111566463,0.0,101.28845679518292,0.0,91.15961111566463,101.28845679518292,0,0
+2017/08/10 00:00:00,42.24638046140059,0,440.56780886926873,0,0,0,0.48079503905495785,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,2.4200348311696573,2.5810137593575e-09,9.548229592171777,0,0,0.0,387.3322801004525,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376.892066504803,278.3371071449143,280.15499209328897,933.2666886641789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.023456156475713013,0.0007421364406017534,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8967303920987058,0.8967303920987058,0.8989385385904546,0.8989385385904546,0.889185811160701,0.889185811160701,0.9192419117840167,0.9192419117840167,0.9158432567205903,0.9158432567205903,0.7331707510898154,0.807347762163491,0.6542293506635705,0.673608840598409,0.735351788705844,0.6645518699929963,0.7497965637289526,0.6065655696528676,0.5990892948249054,0.7111875626050254,21.979089203659584,21.979089203659584,22.06317685586359,22.06317685586359,21.693285486813664,21.693285486813664,22.845602972155376,22.845602972155376,22.71346988047037,22.71346988047037,16.315094377361973,18.744220202759507,13.989483318206979,14.535457107906481,16.38316215852879,14.278272511834516,16.83912121882048,12.715936575209952,12.525119065458625,15.640447189632937,42.24638046140059,42.24638046140059,0.0,46.940422734889545,0.0,42.24638046140059,46.940422734889545,0,0
+2017/08/10 01:00:00,23.722190744666538,0,49.44076308739735,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250953209887433,0,0,0.0,13.950410574853212,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0026322628478758587,8.328296166823056e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9523304471065365,0.9523304471065365,0.9698373083839743,0.9698373083839743,0.9196777616594953,0.9196777616594953,0.9594096419652385,0.9594096419652385,1.0158144449057729,1.0158144449057729,0.7309364625326933,0.828965336783456,0.6308435640326266,0.6732720839148598,0.7950808355824862,0.6656538132509515,0.7762721763071168,0.5901086577081931,0.6016196748490394,0.7594134960125675,24.15613897638717,24.15613897638717,24.867021396626683,24.867021396626683,22.86258157575658,22.86258157575658,24.44215210421123,24.44215210421123,26.790252103385512,26.790252103385512,16.24557662418293,19.496068353964432,13.352314235653566,14.52583089089471,18.32634891767161,14.309373847963357,17.698025330853696,12.29911278996451,12.589430555815895,17.147643653292747,23.722190744666538,23.722190744666538,0.0,26.357989716296153,0.0,23.722190744666538,26.357989716296153,0,0
+2017/08/10 02:00:00,28.34452125945005,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251581729771577,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9609401024616369,0.9609401024616369,0.9814801591755292,0.9814801591755292,0.9217510460778925,0.9217510460778925,0.9598442587667199,0.9598442587667199,1.0725090122803096,1.0725090122803096,0.7274550013682375,0.8217386446847464,0.6269519748454558,0.6698386396559236,0.8196051815922438,0.658633176978596,0.7666137383318489,0.5760029813688109,0.5955193182233087,0.7720158515228498,24.50424399604259,24.50424399604259,25.346393919249692,25.346393919249692,22.94345120499068,22.94345120499068,24.459775502039577,24.459775502039577,29.270187345802455,29.270187345802455,16.137681966528206,19.242540638271763,13.248586126812754,14.427965784939943,19.168113604882265,14.112122820842686,17.381224550524934,11.951196047999915,12.434858052077288,17.557925975930345,28.34452125945005,28.34452125945005,0.0,31.493912510500056,0.0,28.34452125945005,31.493912510500056,0,0
+2017/08/10 03:00:00,23.77484086125023,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5777454375724366,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9453615691952634,0.9453615691952634,0.9680621629212113,0.9680621629212113,0.9027460154462029,0.9027460154462029,0.9367935992870597,0.9367935992870597,1.071255217269715,1.071255217269715,0.7208313481719417,0.8161377250412657,0.6183530884871165,0.6631816476442772,0.8406147814005314,0.6453472493813945,0.7534315399842902,0.5588939733123355,0.5827009751004426,0.7816136613917676,23.87650921160393,23.87650921160393,24.794394767546578,24.794394767546578,22.20863350285127,22.20863350285127,23.535347886766715,23.535347886766715,29.21409252903591,29.21409252903591,15.933846502068818,19.04755792948066,13.021717814989245,14.239672604217645,19.909362387225983,13.744688494541691,16.95527021326447,11.540786976423774,12.115325665409486,17.874934860621963,23.77484086125023,23.77484086125023,0.0,26.41648984583359,0.0,23.77484086125023,26.41648984583359,0,0
+2017/08/10 04:00:00,47.42807198367575,0,88.72588128136032,0,0,0,0.08127738688580459,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,7.31364177529459,0.0,0.5250192718612139,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,43.525057877467546,275.89529716512214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9408003814049419,0.9408003814049419,0.9460121453340806,0.9460121453340806,0.9371595727574179,0.9371595727574179,0.9412490649931107,0.9412490649931107,0.9795037473612933,0.9795037473612933,0.527520877494872,0.5696192583915495,0.4843889136144868,0.5029820133923119,0.5745296736806675,0.4874323675263003,0.5326589674680519,0.4540079745960249,0.46254020721969363,0.5558871187978331,23.694528446861867,23.694528446861867,23.9025327787933,23.9025327787933,23.549860733083932,23.549860733083932,23.71239332446946,23.71239332446946,25.26464967224736,25.26464967224736,10.821183135340391,11.796579027318941,9.901408254088423,10.288038902042828,11.915354854651014,9.963673003222098,10.936115385565842,9.301750658043446,9.466143387997604,11.469970503617262,47.42807198367575,47.42807198367575,0.0,52.69785775963972,0.0,47.42807198367575,52.69785775963972,0,0
+2017/08/10 05:00:00,77.3473368716583,0,212.9421150752648,0,0,0,0.3022602098372251,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,3.7341502812985428,0.0,0.524883350566656,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1216.334759688414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9768036655808733,0.9768036655808733,0.9748913538343096,0.9748913538343096,0.9792076874354997,0.9792076874354997,0.995640627680594,0.995640627680594,0.9941544316925566,0.9941544316925566,0.6802907849827707,0.7447799824679149,0.6071864303900147,0.6377798620042958,0.786448170445332,0.6132204344204385,0.678731958529208,0.5584470640680324,0.5722220902969939,0.7502127734953993,25.153218063287284,25.153218063287284,25.074467937638744,25.074467937638744,25.252417625509423,25.252417625509423,25.936455667466632,25.936455667466632,25.87416630554766,25.87416630554766,14.727475806728705,16.679755203823902,12.731891942773416,13.538826471447308,18.036099546193114,12.887829910754476,14.682507116231761,11.530236709392327,11.859407475446986,16.85239175292186,77.3473368716583,77.3473368716583,0.0,85.94148541295367,0.0,77.3473368716583,85.94148541295367,0,0
+2017/08/10 06:00:00,89.43695043108009,0,628.4137988878413,0,0,0,0.4340337845059845,0.0,10.214516169207362,0.0,73.80580873715317,0,4.4576176962670715,2.5226932964503396e-09,0.5249740414237656,0,0,0.0,397.72650755630445,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1780.8036979296855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03345721612307893,0.00105856299653077,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9962760071413895,0.9962760071413895,0.9922830589958673,0.9922830589958673,1.004197626112552,1.004197626112552,1.0444878027416382,1.0444878027416382,0.9999840857168448,0.9999840857168448,0.8103252744673121,0.8838332908512507,0.7272399973584008,0.748786252104136,1.0426295375990629,0.7478817814508834,0.8263441471236844,0.6816895316274166,0.6838096815834551,0.978875924064688,25.963111319584613,25.963111319584613,25.795853198375085,25.795853198375085,26.296728591928144,26.296728591928144,28.0298798952725,28.0298798952725,26.118980003342884,26.118980003342884,18.84660791724737,21.491931181417712,16.131035821008993,16.806939064495182,27.9486268959686,16.778165435223187,19.403858121089385,14.767916027317384,14.829374625981828,25.23871446916351,89.43695043108009,89.43695043108009,0.0,99.37438936786677,0.0,89.43695043108009,99.37438936786677,0,0
+2017/08/10 07:00:00,160.50566302701876,0,758.2945528070221,0,0,0,16.900391064567195,0.0,7.81820951031173,0.0,69.33401494192633,0,39.380909295966944,3.013891731840567e-09,27.072138211232666,0,0,0.0,492.11690896294124,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4983.665865021905,2629.2668788994088,393.8545999794274,38.511188357815584,817.2558471744103,478.78437013760487,24012.910607866386,508.3303508757283,65.53408773830225,829.0780477934811,675.4146315391978,22443.30615073141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04037216366527643,0.0012773471166498483,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8848618838117073,0.8848618838117073,0.8240729255169199,0.8240729255169199,0.8892261392723262,0.8892261392723262,1.1838393841779193,1.1838393841779193,0.994878914456024,0.994878914456024,0.6180260853309822,0.6428259605316214,0.5623545685403889,0.6951435215674112,0.6753861634693245,0.5888042206602233,0.6138775860382166,0.5403506338110623,0.6802578618730352,0.6595513884323868,21.530534395505242,21.530534395505242,19.324192452566166,19.324192452566166,21.694807020936437,21.694807020936437,34.46148908124195,34.46148908124195,25.904520275440007,25.904520275440007,13.013153671868068,13.675823875896441,11.622775066344118,15.161214387285483,14.58634333859554,12.266576517647124,12.904908227702805,11.110304692308091,14.726524961288547,14.137799415466887,160.50566302701876,160.50566302701876,0.0,178.33962558557639,0.0,160.50566302701876,178.33962558557639,0,0
+2017/08/10 08:00:00,200.7234619505963,0,792.0926821517469,0,0,0,41.166895236937805,0.0,11.36563784648343,0.0,83.2008179303116,0,39.380909295966944,2.9629742782237915e-09,25.609201637933523,0,0,0.0,472.67950953884963,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2765.337437062008,614.815367474206,1728.6623115561765,7985.063266400992,19687.135730642927,6158.179539773102,3438.9419294266045,4505.843185307867,5462.723476115825,38655.16420464341,5690.595928314145,3025.240034363089,4185.577246880844,5467.356890878217,37623.42446710044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04217160110608929,0.0013342800629658025,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.993282913273735,0.993282913273735,0.9108012520694553,0.9108012520694553,0.9497284864903333,0.9497284864903333,1.2323141297823743,1.2323141297823743,1.020604598800206,1.020604598800206,0.5928475034075614,0.5831262042525788,0.5252294698650185,0.6923044808941907,0.5703058236130472,0.5834427876645083,0.5643315765195209,0.5152563392550662,0.7044586853994056,0.5653003686754066,25.837678428434955,25.837678428434955,22.518303860243066,22.518303860243066,24.05150990857115,24.05150990857115,36.84137112231915,36.84137112231915,26.995227248403808,26.995227248403808,12.367667481186231,12.125811322256439,10.77029593119849,15.07756993447748,11.813123142704569,12.133622996750915,11.66984725585256,10.551461253771237,15.438104399716451,11.692975903354508,200.7234619505963,200.7234619505963,0.0,223.02606883399588,0.0,200.7234619505963,223.02606883399588,0,0
+2017/08/10 09:00:00,253.8347697040878,0,827.780420978776,0,0,0,72.54892787038004,0.0,11.323895916778682,0.0,106.27511244621549,0,39.380909295966944,2.8584499291231675e-09,20.873948969433968,0,0,0.0,455.13171959706256,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9889.784903792133,4404.601055366887,6540.406555417336,9708.077964994922,47844.86307146154,11587.254160088243,6573.29514890742,8323.368666763285,9218.451579567623,56530.07081151462,11535.331333610906,6328.72447190689,8178.458173303198,9516.824343329657,56302.545798300394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04407164275538639,0.0013943960563112794,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.137509680565723,1.137509680565723,1.017231472367012,1.017231472367012,1.0277521716680442,1.0277521716680442,1.2645635708340996,1.2645635708340996,1.0672191129537636,1.0672191129537636,0.6288932848974345,0.5859527542063941,0.5317066708740587,0.7245950985674299,0.5580648402931064,0.6376791121632684,0.5776349345011106,0.5319836871663377,0.7500959400031044,0.5589422586626,32.25217840241665,32.25217840241665,26.85079883225721,26.85079883225721,27.30266553481431,27.30266553481431,38.460090152379365,38.460090152379365,29.033894204057603,29.033894204057603,13.300248515691578,12.195710184335354,10.91472747105982,16.04944010722609,11.521220354957336,13.53610244150974,11.991006547372791,10.92094501245198,16.848665856155748,11.541927375801365,253.8347697040878,253.8347697040878,0.0,282.03863300454196,0.0,253.8347697040878,282.03863300454196,0,0
+2017/08/10 10:00:00,294.44371314805807,0,918.3448226224234,0,0,0,82.32241354804381,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.804824489463045e-09,18.6148293118384,0,0,0.0,456.9702399593496,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14852.721565979573,6405.762483363827,9601.961962875448,10414.127822386334,63851.16136850108,12636.70225744194,7135.339514070905,8341.690199025117,9778.100484745799,54262.96452336172,12907.516738693617,7001.828348994421,8337.220988823887,10127.28343433859,55199.38380739243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04889335858055024,0.0015469517840062822,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2248160788985731,1.2248160788985731,1.070210065550326,1.070210065550326,1.0788049268227369,1.0788049268227369,1.2661179127214124,1.2661179127214124,1.1186238616075865,1.1186238616075865,0.6595892783070755,0.5868924035069785,0.5344670030303355,0.7249866149326539,0.5449668410332267,0.6804995381028645,0.5862172752005754,0.54158970129716,0.7524270617259982,0.5534495699466278,36.4689452658158,36.4689452658158,29.167374803049412,29.167374803049412,29.552702343670276,29.552702343670276,38.53877764323944,38.53877764323944,31.371141148187064,31.371141148187064,14.138859741569945,12.219023925890994,10.976830668979034,16.06149949753589,11.216076350719334,14.733505853090023,12.202269368715719,11.138604922192911,16.923117386506576,11.412849837944407,294.44371314805807,294.44371314805807,0.0,327.1596812756201,0.0,294.44371314805807,327.1596812756201,0,0
+2017/08/10 11:00:00,328.9654062987095,0,975.3026429961608,0,0,0,100.88680799844919,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.858449929123169e-09,20.87271470057261,0,0,0.0,460.69253156427084,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18521.0521134073,7887.752897243046,12120.967020111973,10366.563519736974,75946.72621631563,16821.172909871646,8903.62632894197,11615.61287066215,10921.130250951217,67760.7686299828,17554.467023533987,8961.532698664398,11912.867808425197,11338.80476990001,69541.84802600602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05192583512628529,0.0016428972281028178,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2928908586878871,1.2928908586878871,1.1195859759435756,1.1195859759435756,1.127363019521555,1.127363019521555,1.2463169168458637,1.2463169168458637,1.15546885087154,1.15546885087154,0.7163729462270774,0.6128946530177103,0.5633620469319776,0.7254160988652819,0.557769455638504,0.7554439155560497,0.6253639020736157,0.5832032224687108,0.7570198135796026,0.5750382269826836,39.903288109399824,39.903288109399824,31.4157412262375,31.4157412262375,31.777378300674783,31.777378300674783,37.54091307716928,37.54091307716928,33.10065987546001,33.10065987546001,15.797707602438493,12.879370323074525,11.646741756479756,16.074735940525954,11.51425680573962,17.01981523246198,13.206445727648813,12.127711341258717,17.07048162893807,11.927715800499115,328.9654062987095,328.9654062987095,0.0,365.51711810967726,0.0,328.9654062987095,365.51711810967726,0,0
+2017/08/10 12:00:00,324.94317546886214,0,918.7100510919488,0,0,0,117.4574850956639,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.804824489463045e-09,18.542017285751122,0,0,0.0,439.5902921726029,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19124.92606694842,8673.366432565097,13525.375875547177,9746.839736865324,82356.68515221549,20763.03622036929,10998.43148551717,15729.454565658569,12105.625991673307,83462.49611060676,21510.473188488886,11092.130361023941,16103.690624827326,12390.122317510633,85963.50769355666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048912803614794935,0.0015475670113354774,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2858608955412838,1.2858608955412838,1.1382441034441404,1.1382441034441404,1.1453915088127002,1.1453915088127002,1.2009671928120764,1.2009671928120764,1.1689646195945014,1.1689646195945014,0.7444353714374925,0.6418893175012397,0.600945678643929,0.7140880841622916,0.5841994169231672,0.7802250792859367,0.6581461441546965,0.6221207758337375,0.7367014358179932,0.6033351120341972,39.54335847913043,39.54335847913043,32.286674261704974,32.286674261704974,32.62329230003094,32.62329230003094,35.29473010185029,35.29473010185029,33.744932724438854,33.744932724438854,16.668847247421397,13.650311326244704,12.572273289165025,15.72827034813487,12.152310391455515,17.828828355375265,14.09851840562888,13.120727486997922,16.425385494295327,12.633187723408739,324.94317546886214,324.94317546886214,0.0,361.04797274318014,0.0,324.94317546886214,361.04797274318014,0,0
+2017/08/10 13:00:00,311.8870150832671,0,890.337397199745,0,0,0,106.71877351968479,0.0,16.73568395689411,0.0,129.2730206906943,0,39.380909295966944,2.7502778435797784e-09,16.346652414822408,0,0,0.0,446.7079907929434,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16467.08987858527,8486.021550466134,12475.09621760771,8827.560747261155,75492.9939658038,18313.881175631308,10196.10069684121,13861.456399365708,10766.822969945968,76088.94507489236,18891.679860539036,10337.470056389062,14207.682231468209,10988.334748183714,78270.1873216078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047402222505760115,0.001499773278007508,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.236026964666615,1.236026964666615,1.1533477324085384,1.1533477324085384,1.1352815770861213,1.1352815770861213,1.1801209263266703,1.1801209263266703,1.1578328552294626,1.1578328552294626,0.7171511015652311,0.64892640400164,0.5923008847960904,0.6920394767875296,0.5782117511403216,0.7449522664858287,0.6654799709096908,0.6113273334092612,0.709873270322512,0.5934381335186186,37.02634784852796,37.02634784852796,32.999915561770095,32.999915561770095,32.14763084348425,32.14763084348425,34.281736333964204,34.281736333964204,33.213106305729426,33.213106305729426,15.821407186129917,13.842920243981297,12.353959338545366,15.069780093235735,12.00510527619143,16.68521041073366,14.304463813651907,12.83873601414561,15.600771911931687,12.38249392305886,311.8870150832671,311.8870150832671,0.0,346.54112787029675,0.0,311.8870150832671,346.54112787029675,0,0
+2017/08/10 14:00:00,290.31406781744005,0,832.2841572045709,0,0,0,101.3244807481266,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.6948007193609163e-09,14.08876051642471,0,0,0.0,424.14510331031335,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15903.667262008292,9577.869925487741,12073.72718678652,8503.910638771815,71045.00724429103,16365.32962830022,10497.408853311448,12007.945875483936,9932.834252821003,65551.91994894785,16828.494292706804,10743.167087464308,12312.335172567155,10113.179796142162,67831.48922922826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044311425007995155,0.0014019825996418032,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2327506205210919,1.2327506205210919,1.231986610706896,1.231986610706896,1.1243129767554714,1.1243129767554714,1.1682577293989211,1.1682577293989211,1.1363701020376205,1.1363701020376205,0.7065038288668016,0.6875213288992512,0.5785570299076582,0.6733804107664351,0.5554708702659065,0.7341022062781746,0.716496678790549,0.5989893618741263,0.6914733973023521,0.5705827828773757,36.863098309246745,36.863098309246745,36.82507157933955,36.82507157933955,31.635312180600295,31.635312180600295,33.711047091342735,33.711047091342735,32.198686813687985,32.198686813687985,15.49939694893908,14.937435317959896,12.013551592572256,14.528926887170513,11.460198042263144,16.34413906749829,15.801474270843997,12.522584899307034,15.053150253539243,11.819802799342142,290.31406781744005,290.31406781744005,0.0,322.57118646382224,0.0,290.31406781744005,322.57118646382224,0,0
+2017/08/10 15:00:00,272.68666727982065,0,832.288553006645,0,0,0,90.37781319441139,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.694800719360916e-09,14.10867052920867,0,0,0.0,424.14949911238745,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14066.93752804485,10859.712382495805,11312.091451515867,8012.879248788296,67026.0124436848,13380.443272637978,10284.109085463106,9810.769845951296,8672.944756394148,55212.62017202732,13678.020849571398,10646.453565347732,10062.519003558691,8812.084691169466,57405.55451196269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04431165904375358,0.0014019900043700634,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1808805142246885,1.1808805142246885,1.2836579373246055,1.2836579373246055,1.1096147657242252,1.1096147657242252,1.1527593294521485,1.1527593294521485,1.1274890742652037,1.1274890742652037,0.6588781360711301,0.7129572545547131,0.554921154696961,0.6454061710866373,0.5329475120831048,0.6768731528147349,0.7474516780506368,0.5719563756928479,0.6596747676191712,0.5462123399153,34.3184217152867,34.3184217152867,39.430804701023405,39.430804701023405,30.955008257821675,30.955008257821675,32.97199390425308,32.97199390425308,31.783256294648425,31.783256294648425,14.118969211904641,15.693987508120898,11.447303624290129,13.746301134592684,10.942603648301386,14.629022112654837,16.764494994349647,11.852980054474486,14.141252338737885,11.244772786918801,272.68666727982065,272.68666727982065,0.0,302.98518586646736,0.0,272.68666727982065,302.98518586646736,0,0
+2017/08/10 16:00:00,295.09586083967423,0,885.5284872101265,0,0,0,89.86938043451441,0.0,16.735683873587277,0.0,131.64086955684016,0,39.380909295966944,2.694800719360916e-09,14.037042473616319,0,0,0.0,424.15390454705266,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13103.874697981613,12224.181480868316,11490.206362456582,8022.793248295322,70037.56437913021,12279.769874586795,10882.540651895097,9650.372596808957,8270.532017072708,55166.65689937415,12394.626762041034,11309.881943340059,9842.997183246998,8366.942303713578,57137.623491087645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047146192575921134,0.0014916726694949856,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1507588151568127,1.1507588151568127,1.3397749516389534,1.3397749516389534,1.1125046785670323,1.1125046785670323,1.1501286180020533,1.1501286180020533,1.145215497128159,1.145215497128159,0.6192789214269314,0.743659176795322,0.5400018586367766,0.6260324022883121,0.5252358014519244,0.6290051177046512,0.7810778965785037,0.5539012574529154,0.6365114947631387,0.5377540967005929,32.87714446484027,32.87714446484027,42.33139402556885,42.33139402556885,31.088198806746377,31.088198806746377,32.84729137559502,32.84729137559502,32.61498314345698,32.61498314345698,13.045990350738577,16.644297047933748,11.102350684632057,13.224171418196761,10.770436228875838,13.303229605550968,17.857135598661486,11.423415080166876,13.50456503358808,11.051215677774039,295.09586083967423,295.09586083967423,0.0,327.88428982186025,0.0,295.09586083967423,327.88428982186025,0,0
+2017/08/10 17:00:00,306.15976963921247,0,894.724989412597,0,0,0,93.94228071078138,0.0,16.90307355543791,0.0,133.89528835348938,0,39.380909295966944,2.8048244894630454e-09,18.60624251827778,0,0,0.0,433.35040674952313,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12717.758233722827,12748.826671527404,11839.403748498382,7904.24366351476,71967.2354358356,12999.178963842647,11848.819632925024,11109.840986355857,8420.742400543071,62025.57507109168,13033.29493326335,12328.857399192551,11326.59175158151,8492.203116365177,63714.86426209872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04763582116509115,0.0015071641767570444,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1418023306467535,1.1418023306467535,1.357269406060482,1.357269406060482,1.1269562009218757,1.1269562009218757,1.1436417923066826,1.1436417923066826,1.1532414686365409,1.1532414686365409,0.6099454367850009,0.7734283580307318,0.5525510449493902,0.618876048910717,0.5358197298228347,0.6152772059990063,0.8110485654468784,0.5661950997423841,0.625412651083862,0.5481233948368099,32.45404990814353,32.45404990814353,43.248762118048376,43.248762118048376,31.75841170188643,31.75841170188643,32.54073560588576,32.54073560588576,32.99487219031417,32.99487219031417,12.802997417629314,17.60433385204584,11.391859096235521,13.035423682020564,11.00738541411765,12.941344572419894,18.871536194455032,11.71437259818687,13.207737681905058,11.28893442933132,306.15976963921247,306.15976963921247,0.0,340.17752182134717,0.0,306.15976963921247,340.17752182134717,0,0
+2017/08/10 18:00:00,297.0137929349875,0,915.3173011320126,0,0,0,100.726236454455,0.0,16.932384527434575,0.0,110.93442390708215,0,39.380909295966944,2.9629742782237928e-09,25.60786354463165,0,0,0.0,489.433070981483,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12409.78551092749,12247.039837437258,12616.828343594287,7774.8374243114085,72837.30081264957,14751.756656905069,13022.88201018336,13860.38239951205,9140.929327198648,73255.72706681215,14738.643764620934,13498.907954510141,14191.076829671687,9181.575762912382,74708.98190320568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04873217109389542,0.0015418519242854703,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1358841926178718,1.1358841926178718,1.3331991571833024,1.3331991571833024,1.1618925203691157,1.1618925203691157,1.1407820493047593,1.1407820493047593,1.1559154942174432,1.1559154942174432,0.6240955598787534,0.7944083086139397,0.5997987693352272,0.6304040313549298,0.5623208868122093,0.6262375964154339,0.827542788463665,0.6181894410287414,0.6334684883516408,0.5740320498266548,32.17589107588738,32.17589107588738,41.98808809037658,41.98808809037658,33.40661511322777,33.40661511322777,32.4060152668397,32.4060152668397,33.12189155843858,33.12189155843858,13.172868157584972,18.30362354426576,12.543122853054058,13.340565826229522,11.621974579280732,13.229616154908129,19.445989093151695,13.017431342802624,13.42265116296636,11.903270422439334,297.0137929349875,297.0137929349875,0.0,330.0153254833195,0.0,297.0137929349875,330.0153254833195,0,0
+2017/08/10 19:00:00,284.33037468212933,0,882.4844143619778,0,0,0,93.8540078805944,0.0,18.87585124329668,0.0,101.68988858149199,0,39.380909295966944,3.0138917318891973e-09,27.0977424753112,0,0,0.0,492.09053672399233,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11656.38991274284,8691.37479127915,11238.001686162936,7148.364870704126,68131.93100222833,14015.180851837185,11250.933681259037,12951.911417522255,8607.366076238195,73009.7224924282,13893.973084544412,11468.289619598634,13184.998362309649,8575.733424243354,74039.55888767264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046984123882720656,0.001486544929013321,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1326023559285034,1.1326023559285034,1.1715619306152214,1.1715619306152214,1.130248145826465,1.130248145826465,1.1234471859477382,1.1234471859477382,1.1509577255705883,1.1509577255705883,0.6193079107016551,0.720997695890741,0.5893650556927577,0.6218726422227024,0.5739665164282882,0.6126161894799891,0.7311244043923127,0.5962716281327806,0.6176526079683249,0.5813108238600824,32.022128615462464,32.022128615462464,33.86956913265017,33.86956913265017,31.912043295405695,31.912043295405695,31.595040734687757,31.595040734687757,32.88656966026254,32.88656966026254,13.046750962315627,15.938942552313236,12.280556247215799,13.114187926365233,11.901679792244835,12.872143092776184,16.251415991375367,12.453832976877479,13.00337805571479,12.081100905150137,284.33037468212933,284.33037468212933,0.0,315.92263853569926,0.0,284.33037468212933,315.92263853569926,0,0
+2017/08/10 20:00:00,301.6445003928791,0,819.0410952528771,0,0,0,90.57575338277337,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,2.9111634346725996e-09,23.165017841037216,0,0,0.0,464.13757012743594,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10516.300119128655,7333.97665024548,9764.019743716155,6716.432324301112,62187.0807960309,13831.705243173556,10208.64277478174,12440.187295564472,8485.671457922219,72888.72928108984,13648.396011025134,10235.464022930124,12529.625524247032,8417.567692196732,73610.71845285478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043606354580462706,0.0013796746627893065,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1084669685984962,1.1084669685984962,1.1409714810479858,1.1409714810479858,1.0887221889214136,1.0887221889214136,1.1070254913303152,1.1070254913303152,1.128460994319061,1.128460994319061,0.6134617076114722,0.679614975070284,0.5747256217599351,0.6174971944265906,0.5769029333082245,0.6075073722275444,0.6805222884471775,0.5774320216540882,0.6120455421003391,0.5817983672431604,30.90218627216926,30.90218627216926,32.41493115225862,32.41493115225862,30.000524096255404,30.000524096255404,30.83591183715656,30.83591183715656,31.828594862884046,31.828594862884046,12.894098036825667,14.707967279528305,11.920116258884775,12.999311953799463,11.973135534456432,12.740146317842715,14.734163133857464,11.986050321875297,12.857343050463129,12.09309440790095,301.6445003928791,301.6445003928791,0.0,335.16055599208784,0.0,301.6445003928791,335.16055599208784,0,0
+2017/08/10 21:00:00,277.7681215053301,0,808.8369279807417,0,0,0,80.25992346266989,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9629742782237928e-09,25.6122605890777,0,0,0.0,489.42375536784465,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832.879060618381,6752.608005249096,8957.430604071074,6102.002316751515,58092.959130371455,11618.661989015469,8699.991875062862,10181.976347781736,7327.277156568903,60777.0378195409,11377.813313643415,8630.348329675904,10167.874617294548,7229.302414437961,61342.337027525195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04306307715659949,0.0013624857437938777,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0850825037119671,1.0850825037119671,1.1082131109378714,1.1082131109378714,1.0668966814533698,1.0668966814533698,1.086665497208604,1.086665497208604,1.1036125838366544,1.1036125838366544,0.5915348055081142,0.648260462853469,0.5531676780524228,0.5964373601839625,0.5575247871007981,0.5828696606728293,0.6437088377724144,0.5525223073152017,0.5885094351577519,0.5595056192826152,29.8357744380491,29.8357744380491,30.89050964658435,30.89050964658435,29.019523608425843,29.019523608425843,29.907371978539103,29.907371978539103,30.679276996024768,30.679276996024768,12.334769366291482,13.824601088804044,11.406260699662468,12.458016408530312,11.508491728992198,12.119484316714676,13.699906769006034,11.391188324402648,12.259233980274914,11.555240250985193,277.7681215053301,277.7681215053301,0.0,308.6312461170334,0.0,277.7681215053301,308.6312461170334,0,0
+2017/08/10 22:00:00,203.43756515540417,0,620.3909510407182,0,0,0,63.38317330286818,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8584499291231675e-09,20.86945904190133,0,0,0.0,460.68436473426954,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6741.98208252678,4727.295329959773,5976.598219287003,4441.5155137616475,39007.365875452815,9501.623092273016,7328.049571544369,8124.601684272263,6122.460640420577,49567.89526127595,9181.362863874845,7172.544730573904,8013.411994167078,5974.427881852555,49858.86972757539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03303007376112121,0.001045048509941215,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.02908860533164,1.02908860533164,1.0505405045707583,1.0505405045707583,1.0104546379772232,1.0104546379772232,1.0321320846137514,1.0321320846137514,1.0221276824162255,1.0221276824162255,0.567420260835859,0.620768628922771,0.5311104918967066,0.5753560545546964,0.5347339407457634,0.5541132677537798,0.6096185306027281,0.5252344303328541,0.5628656216036939,0.5331241581332593,27.360359497705176,27.360359497705176,28.295404429939524,28.295404429939524,26.561918290978966,26.561918290978966,27.491992733603027,27.491992733603027,27.060580574950293,27.060580574950293,11.743727558592411,13.085124047764126,10.901357697918783,11.935446645810117,10.982853853355039,11.428377178705915,12.794555095344037,10.770405846958027,11.63492689804957,10.946577520496248,203.43756515540417,203.43756515540417,0.0,226.04173906156018,0.0,203.43756515540417,226.04173906156018,0,0
+2017/08/10 23:00:00,121.15973367606148,0,470.0454123448879,0,0,0,33.82838335488749,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6383838446940063e-09,11.820369259697316,0,0,0.0,416.80988357607174,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166.45395311312552,37.548628736687576,260.1077029914866,2491.4501455754476,7044.7720938035945,6584.921897360896,5412.070071711413,5144.615728630474,3651.4948182126363,35588.19833198345,5982.231203413451,5065.699832082467,4918.583763363353,3275.1490038941006,35303.08460629582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025025565919012394,0.0007917914614191219,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0748413366279688,1.0748413366279688,1.0972862913774415,1.0972862913774415,1.05212487989231,1.05212487989231,0.9931854578188501,0.9931854578188501,1.050898662270063,1.050898662270063,0.6423194396719955,0.687158376714551,0.60309732734923,0.648011074805494,0.606490770313723,0.6246045259050449,0.6709127317536774,0.5918023423224662,0.6315228167378135,0.602513709944129,29.37468286383894,29.37468286383894,30.389977661430535,30.389977661430535,28.365127869383898,28.365127869383898,25.833600059781276,25.833600059781276,28.311157913088962,28.311157913088962,13.662022392435915,14.926842074490722,12.627114715120968,13.817745703606178,12.714015452146498,13.186333929779309,14.458526293299741,12.341468159622167,13.370486682874187,12.612219560435548,121.15973367606148,121.15973367606148,0.0,134.62192630673496,0.0,121.15973367606148,134.62192630673496,0,0
+2017/08/11 00:00:00,48.152480017104324,0,442.82869842180617,0,0,0,6.335587639019103,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,2.467682997953928,2.5810179474665973e-09,9.551888381127087,0,0,0.0,389.59316965298996,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3086.347182059749,2295.733108250935,0.0,1476.8996815596504,15155.24063563612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.023576527910146073,0.0007459449088814043,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.016131203191354,1.016131203191354,1.0290836395567733,1.0290836395567733,1.0835841776121178,1.0835841776121178,0.9659432839031095,0.9659432839031095,0.9985361843063608,0.9985361843063608,0.8742446567075456,0.9746900413859474,0.7906278291456829,0.8662478338140516,0.7989239095705051,0.8279231416126264,0.9309158768623995,0.7604209050695657,0.8228241925578557,0.7912341162994808,26.803780034099276,26.803780034099276,27.360145002634866,27.360145002634866,29.768086428696748,29.768086428696748,24.707865494139185,24.707865494139185,26.058055473222893,26.058055473222893,21.13415689575882,25.066186004534856,18.17623413274822,20.838669880493924,18.456577888369054,19.45937069918932,23.302994618288565,17.1801914326942,19.280484010747614,18.196623156771963,48.152480017104324,48.152480017104324,0.0,53.50275557456036,0.0,48.152480017104324,53.50275557456036,0,0
+2017/08/11 01:00:00,23.722069507676483,0,47.52825430086562,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249740839986919,0,0,0.0,12.037901788321488,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002530439463472901,8.006134076247479e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1056427820742776,1.1056427820742776,1.1402214378874695,1.1402214378874695,1.1262263439430376,1.1262263439430376,1.0493113772243177,1.0493113772243177,1.0922432777252944,1.0922432777252944,0.8924215879894788,1.016779815502871,0.7858060554870409,0.876175735328001,0.8598141279284806,0.8564294193667341,0.9873535781957441,0.766808181482303,0.8433144077774755,0.8449489211171586,30.772405192180514,30.772405192180514,32.37963600700023,32.37963600700023,31.724398080717094,31.724398080717094,28.241376791897338,28.241376791897338,30.160340952263553,30.160340952263553,21.815578819349696,26.83149229816101,18.014636604830514,21.20590619341992,20.60285786899958,20.479487478214935,25.590204997846286,17.38756312397298,20.005947986568614,20.064574341351076,23.722069507676483,23.722069507676483,0.0,26.357855008529427,0.0,23.722069507676483,26.357855008529427,0,0
+2017/08/11 02:00:00,28.34458723355656,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.525224147083662,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1263618031748357,1.1263618031748357,1.1663854437040908,1.1663854437040908,1.1272554440190452,1.1272554440190452,1.0681232260641955,1.0681232260641955,1.1569871201220017,1.1569871201220017,0.883325743409558,1.0092907715945558,0.7725106319726052,0.8639995382620598,0.8848800927065424,0.8473277549301373,0.9870087159477464,0.7517684483201914,0.8306940528634139,0.8588344494816953,31.73070958507357,31.73070958507357,33.62137085739134,33.62137085739134,31.772362414241528,31.772362414241528,29.074209682487492,29.074209682487492,33.172857930487865,33.172857930487865,21.472898836141454,26.51247874850415,17.574172301852286,20.7560694266448,21.53121816778004,20.15009672458821,25.57585284325532,16.902058960408453,19.55704010041096,20.567100409556048,28.34458723355656,28.34458723355656,0.0,31.493985815062842,0.0,28.34458723355656,31.493985815062842,0,0
+2017/08/11 03:00:00,23.77491255610183,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5778171324240378,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0895285678479611,1.0895285678479611,1.1308800748187289,1.1308800748187289,1.0785335091816415,1.0785335091816415,1.034048012259627,1.034048012259627,1.1524122707105047,1.1524122707105047,0.8540307407569655,0.9824231046880956,0.7392777307248869,0.830611696959152,0.9060712876842744,0.820389323499133,0.9617205085114232,0.7207940336835954,0.8006106977798674,0.8660371137547502,30.037086672627538,30.037086672627538,31.941575236200336,31.941575236200336,29.540494424401544,29.540494424401544,27.575033297478996,27.575033297478996,32.9555299317023,32.9555299317023,20.392344905062018,25.385447099487152,16.506201304437198,19.554132570074685,22.336149730710517,19.195446584406824,24.5359409130527,15.932703539017112,18.513934974805025,20.8309193353103,23.77491255610183,23.77491255610183,0.0,26.416569506779812,0.0,23.77491255610183,26.416569506779812,0,0
+2017/08/11 04:00:00,53.504867929362135,0,88.72588128136032,0,0,0,0.2094317905217896,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,13.262218286733324,0.0,0.525084302472891,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,835.2527619866444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9989380264294849,0.9989380264294849,1.007000572248636,1.007000572248636,1.0175338614229552,1.0175338614229552,0.9850300064527442,0.9850300064527442,1.0197465690885728,1.0197465690885728,0.5986525155354792,0.6595668181153918,0.5482307887115601,0.5865113262509744,0.6133788250499245,0.5763846909981872,0.642025123437513,0.5351557471094703,0.5664414264092588,0.6065304009950557,26.074956135364033,26.074956135364033,26.415342870277797,26.415342870277797,26.86372901915189,26.86372901915189,25.493592942551004,25.493592942551004,26.958448448040315,26.958448448040315,12.514046118834642,14.13823119866295,11.291420839925564,12.209564357814159,12.891944515029024,11.960497268250876,13.654008088788032,10.992377786489186,11.720269376199468,12.715033284048033,53.504867929362135,53.504867929362135,0.0,59.449853254846815,0.0,53.504867929362135,59.449853254846815,0,0
+2017/08/11 05:00:00,78.47047850244581,0,212.9421150752648,0,0,0,0.4310017748534259,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,4.7283546432849155,0.0,0.5250790543516063,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1751.749921677147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9843673324266521,0.9843673324266521,0.9839050538743401,0.9839050538743401,0.9971362118008774,0.9971362118008774,1.0138959650000219,1.0138959650000219,1.001138159653813,1.001138159653813,0.7480010820297419,0.8391412654906597,0.6680719347081844,0.7233393012570509,0.7947046729292894,0.6946990726253331,0.7868135653222281,0.6327830914484797,0.6734549691416704,0.7787792290360802,25.466077524907476,25.466077524907476,25.44689287832962,25.44689287832962,25.999223386571984,25.999223386571984,26.70839898342774,26.70839898342774,26.16759786477823,26.16759786477823,16.78195869871591,19.856772149371068,14.377807421863963,16.010803854089104,18.313635635038466,15.148096945085257,18.0483208301561,13.404256574889857,14.531058070862699,17.780907493433816,78.47047850244581,78.47047850244581,0.0,87.18942055827313,0.0,78.47047850244581,87.18942055827313,0,0
+2017/08/11 06:00:00,90.79885551900423,0,628.3742696875028,0,0,0,0.5004077597266144,0.0,10.468759769714815,0.0,73.80580873715317,0,5.498842327282186,2.522696899867098e-09,0.52503692260473,0,0,0.0,397.68697835596595,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2050.2896754595704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03345511155917337,0.0010584964095958001,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.988886070088358,0.988886070088358,0.9888789877661991,0.9888789877661991,0.9955111768283238,0.9955111768283238,1.0299293470130395,1.0299293470130395,1.0037051493760851,1.0037051493760851,0.8666078012255469,0.9716012937990441,0.7735095204593585,0.8307188686015616,1.0193509956178064,0.8222318771959223,0.9337786527350661,0.7479906607403846,0.7883830918730755,0.9846817847927076,25.654037934754157,25.654037934754157,25.653742727666383,25.653742727666383,25.931026786177398,25.931026786177398,27.396688190962067,27.396688190962067,26.275918743948182,26.275918743948182,20.851914170997688,24.93931273784746,17.6070030255611,19.55791626224058,26.94150172404457,19.259774555162252,23.415991577193637,16.781627320636304,18.10088093112124,25.47913204966565,90.79885551900423,90.79885551900423,0.0,100.88761724333804,0.0,90.79885551900423,100.88761724333804,0,0
+2017/08/11 07:00:00,151.4133704971701,0,758.2686199879768,0,0,0,7.667170544467757,0.0,7.9533070238995,0.0,69.33401494192633,0,39.380909295966944,3.0138955960066482e-09,27.07796868789566,0,0,0.0,492.09097614389583,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4190.459936012654,0.0,0.0,0.0,0.0,0.0,11662.99704946641,0.0,0.0,0.0,0.0,10199.800206041831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.040370782982781836,0.0012773034328181347,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8087546192028655,0.8087546192028655,0.754464280598528,0.754464280598528,0.8245638288180873,0.8245638288180873,1.1484422308987148,1.1484422308987148,0.9401040846191835,0.9401040846191835,0.5665187405404383,0.6154138755272319,0.5280783193423803,0.6409345302731131,0.6825694881634368,0.5533290379136666,0.6023473389696455,0.5228439424320337,0.6477244383311983,0.6741087482821212,18.79255116719841,18.79255116719841,16.988372731308672,16.988372731308672,19.34139309687464,19.34139309687464,32.767467247610185,32.767467247610185,23.666820362466197,23.666820362466197,11.722120730526854,12.944907050030707,10.833597088167934,13.624343718354424,14.79340048037578,11.410032016321594,12.607976127844836,10.71756001090506,13.809869733441829,14.549756061086342,151.4133704971701,151.4133704971701,0.0,168.23707833018898,0.0,151.4133704971701,168.23707833018898,0,0
+2017/08/11 08:00:00,174.93311981126885,0,790.8573240471603,0,0,0,15.507582417533833,0.0,11.234505180524165,0.0,83.2008179303116,0,39.380909295966944,2.9629781167931985e-09,25.609304983969338,0,0,0.0,471.4441514342631,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,5163.799891663416,3035.0508704705503,1798.1409227726058,925.5987061668849,1203.9896252214976,1522.1746347795809,18373.200434288974,1243.356694943452,432.5608308074204,996.6492456268518,1260.3880468217376,17227.466529158817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04210582972556312,0.0013321991023323885,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8868335473643004,0.8868335473643004,0.7823712009328837,0.7823712009328837,0.8857607483342594,0.8857607483342594,1.1314532657583902,1.1314532657583902,0.9931927444385056,0.9931927444385056,0.5460823969462788,0.5604144767966138,0.5120115601986356,0.5951703417121778,0.5772521832513124,0.5357605481305246,0.5456395057452257,0.505970519745978,0.6004866500372356,0.5738612783615896,21.604652254548654,21.604652254548654,17.900122789959127,17.900122789959127,21.564304358646268,21.564304358646268,31.968373423168913,31.968373423168913,25.833904981655337,25.833904981655337,11.241775744994385,11.576746636299248,10.481190752668212,12.426064430200014,11.981659191965193,11.006046988442932,11.231566272799782,10.35157604726615,12.56059953017514,11.89912583803546,174.93311981126885,174.93311981126885,0.0,194.37013312363206,0.0,174.93311981126885,194.37013312363206,0,0
+2017/08/11 09:00:00,206.479358454354,0,828.9920978350798,0,0,0,28.75317969483161,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.8584537087698228e-09,20.87174537365695,0,0,0.0,456.34339645336644,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1991.1985986231598,0.0,917.7993256400252,6876.102638185075,14912.503729288503,4281.4250934272495,1877.2168199999091,2692.5159048409423,3314.8462880654633,26421.68191714894,4158.456723808545,1617.3584737793867,2682.640660691664,3361.956465311394,25651.655852977827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04413615332871313,0.0013964371258837587,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0333417278909829,1.0333417278909829,0.8870640652486845,0.8870640652486845,0.9705033073662683,0.9705033073662683,1.1987224533167273,1.1987224533167273,1.0328555208021366,1.0328555208021366,0.5894096887008349,0.5687740190593535,0.5162291833444319,0.6514174174170057,0.5521602943377167,0.594126768341536,0.5606811612534233,0.5166602487999763,0.6694246003758517,0.5513007074255584,27.54440565367186,27.54440565367186,21.61332816197927,21.61332816197927,24.894301050264133,24.894301050264133,35.1850397553317,35.1850397553317,27.52333220154668,27.52333220154668,12.28166938425575,11.776239435019363,10.572618378845746,13.911615168801234,11.382741561100644,12.399799669389111,11.583064014466757,10.582006153207672,14.416198707796553,11.362707783303662,206.479358454354,206.479358454354,0.0,229.42150939372667,0.0,206.479358454354,229.42150939372667,0,0
+2017/08/11 10:00:00,241.87380781479774,0,918.3342413431652,0,0,0,33.28206279423537,0.0,16.693521233099577,0.0,133.89528835348938,0,39.380909295966944,2.8048282356752013e-09,18.622026135201505,0,0,0.0,456.95965868009137,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5492.154250043833,673.7558330987367,2845.643210074828,7904.866060152051,26250.04550735825,5557.68659217749,1993.1370804834837,2715.549232719897,3765.729039798848,23179.637154332886,5805.686617699616,1856.4387466667617,2847.478092470781,3971.392968207492,23336.83750149242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04889279522540491,0.001546933959842175,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1321500823837862,1.1321500823837862,0.9779741856431253,0.9779741856431253,1.0196858734074201,1.0196858734074201,1.2114835707703384,1.2114835707703384,1.067648455506119,1.067648455506119,0.6125818259304936,0.5560021622302449,0.5058346430023111,0.6492630762967135,0.5237878450401259,0.6291910253535834,0.553365065878265,0.5120071687478783,0.671016876339603,0.5299612051560578,32.000965838094174,32.000965838094174,25.201490525793687,25.201490525793687,26.955847811671774,26.955847811671774,35.810539677737665,35.810539677737665,29.053035487672616,29.053035487672616,12.87125145600622,11.472672757100412,10.348678861952493,13.852188967986478,10.738397046233814,13.308186484535128,11.410874219184265,10.48109595786984,14.461492113924578,10.875627490768167,241.87380781479774,241.87380781479774,0.0,268.7486753497753,0.0,241.87380781479774,268.7486753497753,0,0
+2017/08/11 11:00:00,284.4026680049088,0,975.2720499888861,0,0,0,59.76071185469888,0.0,16.630907756533322,0.0,147.76209134187457,0,39.380909295966944,2.8584537087698236e-09,20.868047752976576,0,0,0.0,460.6619385569962,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10020.454679710838,2973.390124275258,6030.738095284463,8063.147039799712,43347.74652427215,10522.441064232413,4753.529958632617,6673.188683888677,6055.42547068653,44810.71113899038,11065.002693199503,4744.987782500197,6948.47288028814,6331.953722247001,45708.27037009357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05192420633191754,0.0016428456941843855,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1857829774068311,1.1857829774068311,1.0292487189095962,1.0292487189095962,1.0510839856961316,1.0510839856961316,1.1833886715139608,1.1833886715139608,1.09690439375645,1.09690439375645,0.6430931750698112,0.5630291004112041,0.5155599598466905,0.6374678939480107,0.5280704973557641,0.6698016042877193,0.5674834453132248,0.5290208068787308,0.659022756675191,0.5397810126030448,34.5556077309941,34.5556077309941,27.367276040861583,27.367276040861583,28.31931113915823,28.31931113915823,34.439679340158605,34.439679340158605,30.372557245360397,30.372557245360397,13.683109316726785,11.638816492163656,10.558059909383644,13.530393045242832,10.833422803348796,14.426912930284956,11.745243229320536,10.854616420135699,14.123012451118072,11.097316895769083,284.4026680049088,284.4026680049088,0.0,316.0029644498986,0.0,284.4026680049088,316.0029644498986,0,0
+2017/08/11 12:00:00,279.9738934888425,0,916.2856098343199,0,0,0,75.9241152384363,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.8048282356752013e-09,18.538080365413446,0,0,0.0,437.16585091497404,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12448.360205028235,4054.788195586651,7279.515022587167,7438.063140570707,49495.83862567263,14265.25560708313,6632.118496202334,9455.289433799313,7268.196842268347,60598.12535511138,15023.943978575506,6723.230737308987,9848.284258653814,7528.078077492392,62051.3812454457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04878372456643897,0.0015434830402210136,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.221053485172621,1.221053485172621,1.0348947298239395,1.0348947298239395,1.0528128849206286,1.0528128849206286,1.1415256356988164,1.1415256356988164,1.095819903321824,1.095819903321824,0.6807182433736584,0.5701177768039878,0.5274621547023476,0.6156141254799056,0.5400448546037442,0.7153700610700372,0.5798091913238567,0.5459582160886692,0.6333093589865837,0.5565977454874025,36.2826364090579,36.2826364090579,27.611774907468728,27.611774907468728,28.39543302838868,28.39543302838868,32.441019868010116,32.441019868010116,30.32311495396661,30.32311495396661,14.739825399470504,11.808589758245702,10.819876191207172,12.95012830209265,11.103330946253422,15.767202095970674,12.044225748938487,11.238912285887253,13.41837865443236,11.48667157884806,279.9738934888425,279.9738934888425,0.0,311.08210387649166,0.0,279.9738934888425,311.08210387649166,0,0
+2017/08/11 13:00:00,278.45658440176845,0,892.7399486365206,0,0,0,76.88512350169007,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.750281553641079e-09,16.349236630699703,0,0,0.0,449.1105422297188,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12576.1519976833,4797.707967131673,7431.3553335386205,6991.963269164671,49524.94365505876,14630.678504689044,7176.9142054933645,9535.23112440143,7186.284753916985,59919.80232955396,15431.643353208494,7347.011774743827,9966.140910417613,7431.416308634177,61660.67045102905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04753013612383991,0.0015038203757204059,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2069841871672549,1.2069841871672549,1.0675106588166203,1.0675106588166203,1.0462987694619443,1.0462987694619443,1.1262025249670957,1.1262025249670957,1.086925793210216,1.086925793210216,0.6823634942938536,0.5934342189056292,0.5264200977001539,0.6033323593847536,0.5355607098496595,0.715619948996507,0.6089059636617915,0.5457505948652045,0.6193657441603462,0.5528011913423829,35.58946753663386,35.58946753663386,29.046891416591222,29.046891416591222,28.109185534717255,28.109185534717255,31.723288336187693,31.723288336187693,29.919153272192375,29.919153272192375,14.787431682171942,12.382395605656114,10.79670882938531,12.633117406847887,11.001528659710786,15.774799070334623,12.77616919246654,11.234126286491204,13.048268487573708,11.397699333780395,278.45658440176845,278.45658440176845,0.0,309.3962048908538,0.0,278.45658440176845,309.3962048908538,0,0
+2017/08/11 14:00:00,259.6073983848373,0,832.2480043738517,0,0,0,70.45671481337989,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.694804390504295e-09,14.082467424948426,0,0,0.0,424.1089504795941,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11658.49208553825,6136.665257192942,7275.344119350511,6545.428980434874,47349.01684523547,12898.519408767716,7429.836546027399,8232.710139697201,6359.109495776672,50700.564476055486,13566.397663311744,7728.041047939198,8643.409506219763,6579.688763249088,52495.52783282656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04430950020450902,0.0014019217002012008,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1760231674437822,1.1760231674437822,1.1547735263181156,1.1547735263181156,1.0384924014700916,1.0384924014700916,1.1130982163607563,1.1130982163607563,1.0710473114216177,1.0710473114216177,0.6603043576807132,0.6397900891555768,0.5184574324339069,0.5889853160823187,0.5207416238040714,0.6876538770575737,0.6653827219108718,0.5363862117783877,0.6029637358809082,0.5370119986232494,34.084128298599325,34.084128298599325,33.067619296071825,33.067619296071825,27.76818186989472,27.76818186989472,31.11558845493846,31.11558845493846,29.204796175817634,29.204796175817634,14.158882486025675,13.593270137693935,10.621231975984145,12.27108912474229,10.671289055656928,14.94130533228747,14.30171766635678,11.020204383150713,12.623703872711815,11.034381527107541,259.6073983848373,259.6073983848373,0.0,288.45266487204145,0.0,259.6073983848373,288.45266487204145,0,0
+2017/08/11 15:00:00,247.9655325713832,0,831.9106478065866,0,0,0,65.55284020740328,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,2.694804390504295e-09,14.107732607418448,0,0,0.0,423.77159391232914,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10291.302484679762,8008.613682427279,7331.825059410489,6334.325021158423,47050.75752605586,10845.056832250915,7896.688589883737,7139.994027443937,5698.850774197383,43365.31972218999,11302.268704313357,8321.311727461009,7490.884439573422,5880.169257357771,45084.00336840241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04429153909098557,0.0014013534230892478,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1206148377980887,1.1206148377980887,1.2257597849177653,1.2257597849177653,1.0284263753938496,1.0284263753938496,1.1038158427152531,1.1038158427152531,1.0608353490195757,1.0608353490195757,0.6172955458154782,0.6801640621289763,0.504583516714352,0.5681730729788954,0.5018892176849404,0.6357144436216702,0.7142400024231889,0.5201190349738287,0.5815643946639769,0.5163076063381751,31.463469400033517,31.463469400033517,36.51573476956753,36.51573476956753,27.33176272293869,27.33176272293869,30.688594498690264,30.688594498690264,28.75006095932666,28.75006095932666,12.994037760889782,14.723816207614249,10.322039658158019,11.761797293654169,10.264901904136451,13.483070602028675,15.732880182950439,10.657622904256087,12.087337426196541,10.57432568219653,247.9655325713832,247.9655325713832,0.0,275.517258412648,0.0,247.9655325713832,275.517258412648,0,0
+2017/08/11 16:00:00,271.62639330906484,0,883.6936612451449,0,0,0,66.39362802473117,0.0,16.735683873587277,0.0,131.64086955684016,0,39.380909295966944,2.694804390504295e-09,14.043327352790207,0,0,0.0,422.31907858207114,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9204.208821104296,9193.737483953273,7496.668030861937,6487.508442518487,48905.43656625844,9912.00494397781,8690.658851832746,7215.534440285409,5571.304652275986,44111.161577375984,10163.745479571095,9191.230695774859,7498.333708467631,5712.072433670995,45623.04054557881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04704850508247769,0.001488581905296235,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0763738103155858,1.0763738103155858,1.276611626079446,1.276611626079446,1.0232546435131393,1.0232546435131393,1.103289371008481,1.103289371008481,1.0693739266107065,1.0693739266107065,0.5756660598371373,0.7118509161331777,0.4911547694466217,0.5490883993835618,0.49220925516633135,0.5858571509682728,0.7508783138950863,0.5042710503261705,0.5580057720662941,0.5049339174500517,29.443446615365417,29.443446615365417,39.07156320673815,39.07156320673815,27.108992369084774,27.108992369084774,30.66446361808933,30.66446361808933,29.130027619854232,29.130027619854232,11.942991443709872,15.660500492103466,10.040371653533768,11.311294398218308,10.062207667438074,12.193340309452893,16.87362742401696,10.31539712786332,11.519827547672378,10.329493631389795,271.62639330906484,271.62639330906484,0.0,301.8071036767387,0.0,271.62639330906484,301.8071036767387,0,0
+2017/08/11 17:00:00,284.40008379003854,0,896.698918564754,0,0,0,72.27507968168335,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,2.8048282356752013e-09,18.61853389856259,0,0,0.0,435.3243359016803,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8864.393855636245,9715.658760833574,7915.862555723868,6575.13027259747,50084.728792504226,10478.614501129896,9781.984635417413,8562.643145865599,5998.520624643222,51246.82633357158,10631.319073422523,10340.582786776564,8851.445595171936,6114.668760381126,52566.73983782931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047740914615254475,0.0015104892602640343,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.057713496795881,1.057713496795881,1.2939530304254119,1.2939530304254119,1.0337057684287538,1.0337057684287538,1.0996378970164702,1.0996378970164702,1.068359927719617,1.068359927719617,0.5633102562168198,0.7403859138538152,0.5025454186317572,0.5410763614742784,0.4985902135398132,0.5703996271228974,0.7823653088917736,0.5173683427495789,0.5480964039796328,0.5109399864436247,28.611787169724337,28.611787169724337,39.95776943733679,39.95776943733679,27.560189787195412,27.560189787195412,30.49735680726144,30.49735680726144,29.084769273276407,29.084769273276407,11.645508644815578,16.541051538036868,10.278788996065032,11.126872199527426,10.195367459254612,11.81538510722092,17.89992678745567,10.597444522978591,11.28830960867377,10.458084260356728,284.40008379003854,284.40008379003854,0.0,316.0000931000428,0.0,284.40008379003854,316.0000931000428,0,0
+2017/08/11 18:00:00,268.68571394587514,0,915.2959636511989,0,0,0,75.84069816757487,0.0,16.932384527434575,0.0,110.93442390708215,0,39.380909295966944,2.9629781167931998e-09,25.597298044853563,0,0,0.0,489.41173350066924,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7929.322446114567,8709.337713884477,8005.64059368028,6317.577005187306,48660.933470485135,11333.024270996471,10341.876768536455,10050.356552547277,6358.028756594425,59529.023271732585,11411.25510088815,10835.9250427006,10390.76910431252,6419.545713813474,60706.164017065996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04873103507061208,0.001541815981300659,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0512393164887408,1.0512393164887408,1.249803554114539,1.249803554114539,1.0656472929048395,1.0656472929048395,1.0883847164852183,1.0883847164852183,1.0776530993713698,1.0776530993713698,0.5672711680745679,0.7375845361260883,0.5314988526971276,0.5430422319711546,0.5202452819355792,0.5693734377990689,0.7687763598753956,0.5466246465459158,0.544626261394414,0.5310081343365181,28.326145806947636,28.326145806947636,37.71589585919534,37.71589585919534,28.96387387831541,28.96387387831541,29.985229193488934,29.985229193488934,29.500912778119954,29.500912778119954,11.74015180433561,16.45305537663951,10.910065240723839,11.171865339208324,10.66039273546457,11.79066047650386,17.45181379527679,11.254287190092427,11.208241062031675,10.899063798858577,268.68571394587514,268.68571394587514,0.0,298.53968216208347,0.0,268.68571394587514,298.53968216208347,0,0
+2017/08/11 19:00:00,249.52135706085477,0,882.4637105383276,0,0,0,62.476965461774036,0.0,18.87585124329668,0.0,101.68988858149199,0,39.380909295966944,3.013895596048273e-09,27.0977424753112,0,0,0.0,492.0698329003422,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5787.355255267647,4456.925308856146,6134.039131209519,5661.857900814462,40054.35033367435,9137.070063483108,8074.826234747138,8283.060998952236,4825.1683466140885,52135.92950209739,9061.17713438921,8320.7498364037,8548.880406410393,4755.537465850339,52821.34523988555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04698302159581405,0.0014865100534239531,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.042060291081587,1.042060291081587,1.0875109760810655,1.0875109760810655,1.0472866591814944,1.0472866591814944,1.0691765362515848,1.0691765362515848,1.0775331035908104,1.0775331035908104,0.5570121937379543,0.6782724364856219,0.5244707331552226,0.5343281553842438,0.5301780315533158,0.5514889660107921,0.6892724471700689,0.5314298766509222,0.528306434462474,0.5362446822151944,27.923761635813662,27.923761635813662,29.94564787812712,29.94564787812712,28.152497256037435,28.152497256037435,29.121214540676434,29.121214540676434,29.495520084051762,29.495520084051762,11.496422007733116,14.669270985742585,10.753496122458785,10.973698929929611,10.880477418118815,11.367092652243556,14.988624051784683,10.908518233095904,10.838680977707057,11.017000395867868,249.52135706085477,249.52135706085477,0.0,277.2459522898386,0.0,249.52135706085477,277.2459522898386,0,0
+2017/08/11 20:00:00,252.8231533381938,0,819.0159500250892,0,0,0,45.185321364007436,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,2.9111672450881014e-09,23.166078007572175,0,0,0.0,464.1124248996479,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2720.8956361773644,1727.8697338194233,3289.190889691102,4862.045485468554,27738.007865970954,6227.959870406216,5311.943670998089,5647.558341739827,2705.710611111544,40958.60870812811,5984.9139138154205,5302.000829158125,5767.464638282199,2472.108999679282,41063.79768663596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043605015829910033,0.001379632305655006,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0295939018970341,1.0295939018970341,1.0630698065251447,1.0630698065251447,1.011698957291014,1.011698957291014,1.046380757052357,1.046380757052357,1.076850095063925,1.076850095063925,0.5555133470287358,0.6321720115923142,0.5117421061406413,0.5341653318139347,0.5434241896452786,0.5450962575635039,0.6290867412516508,0.510366570779859,0.5234727664038462,0.5451157641830905,27.382190381819512,27.382190381819512,28.849243824402237,28.849243824402237,26.614831670561642,26.614831670561642,28.112778742620904,28.112778742620904,29.46483481025963,29.46483481025963,11.461194944895482,13.38787368203512,10.475375804032097,10.970027472379684,11.180626684296229,11.219054992519133,13.305405759779873,10.4457400160358,10.731437268936588,11.219504018455794,252.8231533381938,252.8231533381938,0.0,280.9146148202153,0.0,252.8231533381938,280.9146148202153,0,0
+2017/08/11 21:00:00,217.07496916174918,0,808.8174848989061,0,0,0,22.999378879931644,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9629781167931998e-09,25.61162803068921,0,0,0.0,489.4043122860089,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187.57422895106873,0.0,924.2870848371375,4023.4650378066417,16079.039319639654,2464.8605625955606,2541.0835201369323,2176.0653951828713,264.50574607054085,21874.120293887605,2052.1573041380184,2345.63310079851,2138.858297274365,0.0,21493.77835628499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04306204199252094,0.0013624529919240014,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0161151089212235,1.0161151089212235,1.029946663449248,1.029946663449248,0.9993527991985834,0.9993527991985834,1.0272942578401445,1.0272942578401445,1.0638036512352977,1.0638036512352977,0.5413533186944776,0.605990785173311,0.4999764373302689,0.5213946212017095,0.5346370243865161,0.5253126814453047,0.5943939017533445,0.49252410522808093,0.5007268326430571,0.5319002563066151,26.803092598808945,26.803092598808945,27.397436713380074,27.397436713380074,26.092407063067284,26.092407063067284,27.282912537793663,27.282912537793663,28.88185646265515,28.88185646265515,11.133200822472304,12.701180225031507,10.224528170681893,10.685640714344146,10.980666675136149,10.772139903067213,12.40651840942138,10.068736808808183,10.240348184232118,10.919072083982925,217.07496916174918,217.07496916174918,0.0,241.1944101797213,0.0,217.07496916174918,241.1944101797213,0,0
+2017/08/11 22:00:00,139.02915583903842,0,620.3416091681516,0,0,0,2.4104278666877965,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8584537087698228e-09,20.865770364170263,0,0,0.0,460.6350228617031,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2215.1054551004013,0.0,0.0,0.0,0.0,0.0,3425.58235023047,0.0,0.0,0.0,0.0,2474.917713149725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033027446763277915,0.0010449653935606217,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8070097395852955,0.8070097395852955,0.8047148883133587,0.8047148883133587,0.8192656911390087,0.8192656911390087,0.9685861342082075,0.9685861342082075,0.9308293972253039,0.9308293972253039,0.48178508007248594,0.5757521050511191,0.440299153661679,0.3927900456568515,0.5224393041712633,0.43944897486658924,0.5385007270411113,0.4193837202855169,0.34468256400688607,0.5151663700569133,18.73262027390348,18.73262027390348,18.653995401716926,18.653995401716926,19.156287944535364,19.156287944535364,24.81581928732598,24.81581928732598,23.29958625748867,23.29958625748867,9.848454807502705,11.945086320676083,9.044178472282482,8.213955045695187,10.708639265006852,9.028470711632593,11.068176716481403,8.66675880937899,7.471585885851724,10.549506698587379,139.02915583903842,139.02915583903842,0.0,154.4768398211538,0.0,139.02915583903842,154.4768398211538,0,0
+2017/08/11 23:00:00,87.47778042365046,0,465.76674276481305,0,0,0,0.16331964559867865,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6383874741016898e-09,11.803479716575131,0,0,0.0,412.53121399599684,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,635.8233290121985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024797766381330123,0.0007845840428362313,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5712498428546124,0.5712498428546124,0.5615925008511883,0.5615925008511883,0.5895070834860926,0.5895070834860926,0.9139197981247514,0.9139197981247514,0.6852555341106071,0.6852555341106071,0.34178475639973627,0.435610504824727,0.30204452344048305,0.23767988087252565,0.4152672739695694,0.27922131878049045,0.379129450145551,0.26419853554310935,0.16409707500199988,0.39447648728369766,11.835904497652876,11.835904497652876,11.604675641151374,11.604675641151374,12.28409868813796,12.28409868813796,22.63889564771864,22.63889564771864,14.871398272973437,14.871398272973437,7.430015232544335,8.957938406104816,6.895864150623169,6.172279529157407,8.594687796449264,6.619307433011684,7.993118637405274,6.449264078219457,5.558083986131862,8.241770897341354,87.47778042365046,87.47778042365046,0.0,97.19753380405606,0.0,87.47778042365046,97.19753380405606,0,0
+2017/08/12 00:00:00,42.241380998783015,0,447.16246943936807,0,0,0,0.3666548063456077,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,1.1332355820464979,2.581021532270108e-09,9.55585654300984,0,0,0.0,393.92694067055186,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.286058501195956,30.547394454503003,0.0,510.2534295729501,726.3816456223608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02380726108917415,0.0007532451458315595,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7857778346529449,0.7857778346529449,0.7964087455847879,0.7964087455847879,0.7735379901329937,0.7735379901329937,0.8964796126301345,0.8964796126301345,0.8309150331897308,0.8309150331897308,0.5673463052650717,0.7050680996570705,0.48041625084989026,0.4754582136679387,0.6437621985368519,0.47322483303694024,0.6182290873453399,0.4147591235889063,0.3704132288108772,0.6045867539733616,18.01369371431987,18.01369371431987,18.371276632560196,18.371276632560196,17.607939368863427,17.607939368863427,21.969551903872244,21.969551903872244,19.56484309460818,19.56484309460818,11.741953730588449,15.456349552116095,9.820734618358813,9.721005860725626,13.701363413102925,9.676428698076776,13.01846970525844,8.585841429451435,7.856375583492479,12.665195047514317,42.241380998783015,42.241380998783015,0.0,46.93486777642557,0.0,42.241380998783015,46.93486777642557,0,0
+2017/08/12 01:00:00,23.74146054826257,0,45.972529396312,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5443651245847808,0,0,0.0,10.482176883767865,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0024476115172186582,7.744072227883176e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8047106798253609,0.8047106798253609,0.8416138284119294,0.8416138284119294,0.7689666268644928,0.7689666268644928,0.892069116640443,0.892069116640443,0.9502878820318083,0.9502878820318083,0.5759242151333321,0.7486950310170157,0.4736681196827026,0.485328516994388,0.7369711542121407,0.4886773697216482,0.6722386370634545,0.4121919066915957,0.391248558218827,0.6829993731888621,18.65385141730478,18.65385141730478,19.94507024365464,19.94507024365464,17.458033772950742,17.458033772950742,21.802236734115667,21.802236734115667,24.073981605410296,24.073981605410296,11.94927751697088,16.804035488573177,9.685259371542642,9.920588547074743,16.433832937498735,9.989259211573,14.496320375681307,8.541318024206149,8.18863639297848,14.805862572746435,23.74146054826257,23.74146054826257,0.0,26.37940060918063,0.0,23.74146054826257,26.37940060918063,0,0
+2017/08/12 02:00:00,28.37752589216272,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5581628056898218,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8471286385391451,0.8471286385391451,0.8907504133960183,0.8907504133960183,0.8043466047024288,0.8043466047024288,0.9131379320589007,0.9131379320589007,1.0041342366688817,1.0041342366688817,0.6202662497305129,0.7885316896028856,0.5073209943393531,0.5320284955106171,0.7638910361760851,0.5138281777943304,0.6945279846950083,0.4240985397473525,0.4173899109136284,0.7123633097888722,20.14292917538488,20.14292917538488,21.752364873035745,21.752364873035745,18.64139819898999,18.64139819898999,22.60862462592368,22.60862462592368,26.29404952565214,26.29404952565214,13.071916094025113,18.105862572615123,10.380414468223165,10.92195103353987,17.292637822967663,10.520476189432102,15.143049739584129,8.750198838044312,8.631760354856084,15.676003233469999,28.37752589216272,28.37752589216272,0.0,31.53058432462524,0.0,28.37752589216272,31.53058432462524,0,0
+2017/08/12 03:00:00,23.721933849500708,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248384258229158,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8535563739496642,0.8535563739496642,0.8998760500913524,0.8998760500913524,0.8085775150538803,0.8085775150538803,0.9010080084150265,0.9010080084150265,1.010002559219975,1.010002559219975,0.6342537662513167,0.7984588472381862,0.5163276108182935,0.5475630230596168,0.7911856183255298,0.5150137468493705,0.6960608529051703,0.41915710919175614,0.4190727113328235,0.7336957215498885,20.37513972686419,20.37513972686419,22.098937863663352,22.098937863663352,18.78646236007974,18.78646236007974,22.142163562065008,22.142163562065008,26.542708519685164,26.542708519685164,13.443751393359648,18.440785213154285,10.574761231191545,11.275968667237748,18.194991629135416,10.546191803748684,15.188315433622137,8.662772393127398,8.661288275670017,16.331459453037496,23.721933849500708,23.721933849500708,0.0,26.357704277223007,0.0,23.721933849500708,26.357704277223007,0,0
+2017/08/12 04:00:00,42.26866371412636,0,88.72588128136032,0,0,0,0.48628086431278605,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,4.193480192131561,0.0,0.5250042456189309,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,16.421129780486652,0.0,0.0,0.0,0.0,0.0,82.15376166771496,75.08577293217887,0.0,118.77045903993849,0.0,8.297906346387759,14.08934005896569,1289.1912193670844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8863294520059022,0.8863294520059022,0.9184088842475662,0.9184088842475662,0.8402483571811196,0.8402483571811196,0.9267285523491631,0.9267285523491631,0.9475652226422815,0.9475652226422815,0.4662902954923035,0.5336126630734189,0.4202053058015837,0.43086744248109204,0.5374630120819788,0.41245395596198525,0.48263021032808345,0.37968201771319665,0.37679722491813444,0.5116587300796535,21.58568739831823,21.58568739831823,22.813173493150643,22.813173493150643,19.896276124855277,19.896276124855277,23.138305546964304,23.138305546964304,23.96472473875501,23.96472473875501,9.539389028881146,10.957574081765713,8.681230147183896,8.871658217520931,11.04460971467897,8.545849820176969,9.865609921638935,8.001896763734422,7.956212308949603,10.473577144530182,42.26866371412636,42.26866371412636,0.0,46.965181904584846,0.0,42.26866371412636,46.965181904584846,0,0
+2017/08/12 05:00:00,74.78083542487218,0,212.9421150752648,0,0,0,0.2205927588172546,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,2.171295170814054,0.0,0.5249403060411382,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,886.8521720900701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9683811116658074,0.9683811116658074,0.969904068644448,0.969904068644448,0.9634772275924802,0.9634772275924802,0.9970222605489565,0.9970222605489565,0.9805789799324673,0.9805789799324673,0.56564918161382,0.6805341579271272,0.4810751416127121,0.5025294452487183,0.7128386681850243,0.4675156189306217,0.5841154376174319,0.4017063735438971,0.4006268414967685,0.6660936362317926,24.8074349042099,24.8074349042099,24.86975515333154,24.86975515333154,24.607378792546456,24.607378792546456,25.994438006563655,25.994438006563655,25.309102538991397,25.309102538991397,11.701313323742582,14.73450606418767,9.834067738458785,10.278450732530061,15.690395572492264,9.563453013742986,12.150235026582266,8.362397677772265,8.344244252648735,14.321802131872062,74.78083542487218,74.78083542487218,0.0,83.08981713874687,0.0,74.78083542487218,83.08981713874687,0,0
+2017/08/12 06:00:00,91.71393558362621,0,628.3410605125159,0,0,0,0.31957765786270964,0.0,7.70045144180324,0.0,80.56906512710079,0,2.5996963121350887,2.522699907040999e-09,0.5251450422016971,0,0,0.0,397.6537691809791,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1306.5098620440551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03345334347809881,0.0010584404687430553,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0087927133762402,1.0087927133762402,1.0027908784088528,1.0027908784088528,1.0177077758687871,1.0177077758687871,1.0363004548939299,1.0363004548939299,0.9984593252039748,0.9984593252039748,0.6314017829312769,0.7608927627113299,0.53543113312193,0.5503299528447172,0.9048100511241803,0.5272161426845337,0.6599039977276068,0.45213301892994023,0.44055954348126897,0.8299102742867389,26.491337443338267,26.491337443338267,26.237310086261303,26.237310086261303,26.871167164968995,26.871167164968995,27.672831634368876,27.672831634368876,26.054823634270207,26.054823634270207,13.367247128675785,17.19545131765551,10.99859986392822,11.340121611783445,22.287731570528436,10.814402530096359,14.147669385527323,9.266045347453144,9.048995604209594,19.529380742349232,91.71393558362621,91.71393558362621,0.0,101.90437287069578,0.0,91.71393558362621,101.90437287069578,0,0
+2017/08/12 07:00:00,117.29610273332136,0,646.9610382368355,0,0,0,2.0902395958711346,0.0,5.965687586841626,0.0,69.33401494192633,0,39.380909295966944,1.555792144177902e-05,0.5252357547938826,0,0,0.009446156227997956,380.7739482365267,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3682.662465049876,0.0,0.01954975439107924,0.1653159034667142,0.0,0.0,2414.3760146905506,0.0,0.13378850248955784,0.0,0.0,1585.2959850211323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03444468488408322,0.0010898058198064392,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4972513854249279,0.4972513854249279,0.42678923988231066,0.42678923988231066,0.528956325860518,0.528956325860518,1.184649086227423,1.184649086227423,0.7316795478164454,0.7316795478164454,0.32050207956005644,0.3739810475771039,0.20563775716261914,0.407401327377115,0.5106263770718606,0.21072076835539189,0.31275378072151816,0.20115583458011618,0.3989181385782772,0.4696899528956182,10.167282582741052,10.167282582741052,8.798244592667501,8.798244592667501,10.853177140548567,10.853177140548567,34.500685317032804,34.500685317032804,16.268673202713373,16.268673202713373,7.13562834733014,7.911956980008938,5.87698271632776,8.458989691891219,10.451331251720006,5.92095663665026,7.033221218146352,5.83910584808244,8.315612601126645,9.60631376929986,117.29610273332136,117.29610273332136,0.0,130.32900303702374,0.0,117.29610273332136,130.32900303702374,0,0
+2017/08/12 08:00:00,145.8565446234201,0,700.1247897374365,0,0,0,6.563104484251904,0.0,11.435487997441953,0.0,87.89947186453183,0,39.380909295966944,2.5227002337667828e-09,0.5775709787047937,0,0,0.0,380.71161712453926,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6076.422409411005,0.0,0.0,0.0,0.0,73.37138317149817,9437.61948025764,0.0,0.0,0.0,0.0,7101.347670893853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03727516239272037,0.001179360155174141,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6325736813331065,0.6325736813331065,0.483769567068289,0.483769567068289,0.606351245867407,0.606351245867407,1.1802759213045424,1.1802759213045424,0.812485704343642,0.812485704343642,0.41172993866721525,0.39799653690443915,0.28360839871313853,0.5166808053440757,0.4987778974119413,0.28190073431963586,0.3026734592250223,0.23637946860895026,0.4956120817731615,0.479841341487661,13.398640519366282,13.398640519366282,9.888786255512542,9.888786255512542,12.710432598395741,12.710432598395741,34.28922063322115,34.28922063322115,18.921132759498235,18.921132759498235,8.533336062175863,8.300221756063252,6.670759847462591,10.582454035920577,10.199310732067474,6.6506355585323575,6.903796780458535,6.159456903663994,10.13300002315107,9.809116221439439,145.8565446234201,145.8565446234201,0.0,162.06282735935565,0.0,145.8565446234201,162.06282735935565,0,0
+2017/08/12 09:00:00,192.9868749109586,0,859.3118676758768,0,0,0,12.969977434065218,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.9111704130944413e-09,23.162464090975188,0,0,0.0,486.6631662941633,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6636.274479406966,4245.810013145036,1153.8470516910495,4.74688062197222,0.0,1355.5415911104567,15754.196801907796,298.28734295572986,0.0,0.0,1283.1970764622777,13732.340406498315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045750400333092814,0.0014475107758793496,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9001843016948293,0.9001843016948293,0.6538258039470063,0.6538258039470063,0.7836057258692377,0.7836057258692377,1.1753346505993987,1.1753346505993987,0.9795474194302085,0.9795474194302085,0.5264767556890195,0.49281725609538973,0.4070785941616395,0.6066606539244238,0.5270784766685446,0.48731702836428925,0.41908877848341985,0.3761821779277556,0.606810622751841,0.519852576659128,22.11070380287373,22.11070380287373,13.978287226418303,13.978287226418303,17.941222601765304,17.941222601765304,34.050975332531024,34.050975332531024,25.26645431875498,25.26645431875498,10.797967260333834,10.07481981593034,8.453478708198986,12.71837904073108,10.811340664086728,9.961306039044146,8.661570789380875,7.946518164118231,12.722232144028268,10.65177913016332,192.9868749109586,192.9868749109586,0.0,214.42986101217622,0.0,192.9868749109586,214.42986101217622,0,0
+2017/08/12 10:00:00,243.41701000172364,0,915.7752868078826,0,0,0,36.64822589476498,0.0,14.932575465546352,0.0,131.64086955684016,0,39.380909295966944,2.8584568511948383e-09,20.8144297857467,0,0,0.0,454.40070414480886,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4608.517654815252,980.3385641163037,2749.4825352868547,7252.43008489571,28428.723559767906,5445.885544425892,2541.9954488782405,2799.281888470205,4014.9230189032514,28390.737350484862,4982.799634111012,2230.1014678501974,2664.969487226339,4067.068777351802,27869.45778210163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048756554590511786,0.0015426234011217128,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0415898104158412,1.0415898104158412,0.8770050314220573,0.8770050314220573,0.9427300247241046,0.9427300247241046,1.1669252552923004,1.1669252552923004,1.0435596339004145,1.0435596339004145,0.5565653390377545,0.5167788881644294,0.44649192643264474,0.6026120314402313,0.5037741463132309,0.5515540849382893,0.48343920769282184,0.44025865776586176,0.6157609134833459,0.5044711747295599,27.903219480352064,27.903219480352064,21.236765792747704,21.236765792747704,23.7714161621536,23.7714161621536,33.64721498910774,33.64721498910774,27.989279829324815,27.989279829324815,11.485909489324428,10.584591300527507,9.159532416460976,12.614727898215165,10.304842443866221,11.368609742624841,9.882060452479948,9.043429572417182,12.953956710065938,10.319650963262205,243.41701000172364,243.41701000172364,0.0,270.4633444463596,0.0,243.41701000172364,270.4633444463596,0,0
+2017/08/12 11:00:00,263.5367877100272,0,984.8365415117693,0,0,0,49.50257532794327,0.0,14.932575465546352,0.0,136.4899973586286,0,39.380909295966944,2.9111704130944404e-09,23.23073025903085,0,0,0.0,470.22643007987944,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7503.837006203828,1683.3754050251714,4338.933688382959,7473.381114482937,37991.42138265396,8152.358499924704,3563.584850888405,4616.844721419565,4776.653516082173,38437.0437987032,8146.002709883074,3323.868445678399,4688.8126581763245,4901.38920224495,38457.86583161244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05243342694507847,0.0016589570794287496,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1387665795154007,1.1387665795154007,0.9859444686559007,0.9859444686559007,1.0124183565979985,1.0124183565979985,1.164110111017514,1.164110111017514,1.0805588415566896,1.0805588415566896,0.5999073659853997,0.5315346055872057,0.47039290642503845,0.6030188776247268,0.5139355083057191,0.6118457697632937,0.5209388649427442,0.47727563570742254,0.6187882826910753,0.5193636558671473,32.31122555215727,32.31122555215727,25.5315907497465,25.5315907497465,26.64544989217802,26.64544989217802,33.51253511994766,33.51253511994766,29.631652612211553,29.631652612211553,12.545880554388944,10.910867194284279,9.620214064433384,12.62511165166579,10.522801741501652,12.85216518877985,10.67562210099689,9.757439424482811,13.033122655992159,10.641064458127047,263.5367877100272,263.5367877100272,0.0,292.81865301114135,0.0,263.5367877100272,292.81865301114135,0,0
+2017/08/12 12:00:00,265.67588984585774,0,943.2275408824989,0,0,0,63.53795993607301,0.0,14.783782912797726,0.0,124.80122689546741,0,39.380909295966944,2.9111704130944404e-09,23.172010802641402,0,0,0.0,464.1077819631531,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10305.982384482664,3360.2062751809362,6246.083010841401,7168.0135808784835,45053.60788883184,11248.867983892955,5314.712719773651,6969.048184086099,5963.483840281892,48280.0389343109,11588.245444880378,5237.784341998238,7211.947290147576,6154.150575279281,48997.97847559416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05021813293151196,0.0015888667210268133,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1620315863186406,1.1620315863186406,1.0057507937305192,1.0057507937305192,1.0284245463039285,1.0284245463039285,1.136995163835895,1.136995163835895,1.0767608872354162,1.0767608872354162,0.6272750938437894,0.5417798903271521,0.4859530841877645,0.5857176177542014,0.5113186353263375,0.6503032579690761,0.5418428279824601,0.5016744482993449,0.6018233543055906,0.5217677920939952,33.413252924896966,33.413252924896966,26.362418469468466,26.362418469468466,27.33168376061262,27.33168376061262,32.228021899864316,32.228021899864316,29.460828209779663,29.460828209779663,13.257173667448328,11.142954717578064,9.933359030948537,12.189882181810361,10.46624344474165,13.880856632494968,11.144394503905787,10.260360810750768,12.59461930519798,10.693850597193702,265.67588984585774,265.67588984585774,0.0,295.19543316206415,0.0,265.67588984585774,295.19543316206415,0,0
+2017/08/12 13:00:00,263.71942777250854,0,904.2281705049388,0,0,0,66.2283227363569,0.0,14.728125842506467,0.0,122.5097643007467,0,39.380909295966944,2.8584568511948387e-09,20.872305594072998,0,0,0.0,460.5987640981372,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10837.50693895184,4108.441358917308,6448.783943127686,6743.084803413291,45092.67279475952,12018.692524783159,6010.019283881418,7420.878994173878,6028.438112629963,49681.0009859094,12474.815501524225,6055.500465189447,7746.229808544015,6223.427428261531,50721.87915392629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048141777565517026,0.0015231722845858151,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1644921704628355,1.1644921704628355,1.0293388582683898,1.0293388582683898,1.0144481131405645,1.0144481131405645,1.1177558225050033,1.1177558225050033,1.0633757799688373,1.0633757799688373,0.6301087451817479,0.5548957470807787,0.4779895326855957,0.5630827405323299,0.5024833191546283,0.6549998554035336,0.5636688419208291,0.49581144879713546,0.5796411587334407,0.5148621287883447,33.530798981025725,33.530798981025725,27.371170272965372,27.371170272965372,26.731942602419565,26.731942602419565,31.330928399074352,31.330928399074352,28.862839195117687,28.862839195117687,13.33267773455971,11.446707966633085,9.771789768132876,11.64009298536044,10.277473995988203,14.010879979930394,11.654048781144539,10.137163161163613,12.040105508021341,10.542899737886756,263.71942777250854,263.71942777250854,0.0,293.0215864138984,0.0,263.71942777250854,293.0215864138984,0,0
+2017/08/12 14:00:00,248.99546998559867,0,861.9484218929579,0,0,0,63.98412526495047,0.0,14.876918321203716,0.0,108.75639138185811,0,39.380909295966944,2.804831350302652e-09,18.565150516360365,0,0,0.0,453.80936799870034,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10382.047893150722,5379.460710614727,6447.364972630776,6354.201590447974,44029.5319488068,11242.016236409834,6647.538286603501,6925.635695373852,5654.799530337418,45616.66186294581,11667.9987639943,6844.588345427821,7273.200357696604,5843.349267473719,46864.36992914083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0458907724325235,0.0014519520512579118,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1352533010127417,1.1352533010127417,1.1131488969211707,1.1131488969211707,1.0053829756759176,1.0053829756759176,1.1034504655215795,1.1034504655215795,1.047925071970754,1.047925071970754,0.6154579040300241,0.604517615093177,0.47537930418802943,0.5523515124229644,0.4932698489942593,0.6371337848288813,0.6259308318204116,0.4935429747701571,0.566254737643974,0.5065173355008339,32.14630509848948,32.14630509848948,31.117927727613093,31.117927727613093,26.346853692772783,26.346853692772783,30.671846403383142,30.671846403383142,28.18050579315519,28.18050579315519,12.946054885626225,12.663425235301602,9.71942720168282,11.387202499615128,10.084218602111974,13.521365761557973,13.221476966080672,10.089894758161819,11.715800019720888,10.363243408053364,248.99546998559867,248.99546998559867,0.0,276.66163331733185,0.0,248.99546998559867,276.66163331733185,0,0
+2017/08/12 15:00:00,247.08923161134214,0,844.5569724037331,0,0,0,64.56585181747008,0.0,14.78378283874635,0.0,106.31215624428707,0,39.380909295966944,2.804831350302652e-09,18.61455620961261,0,0,0.0,436.41791850947556,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9612.85026870726,7336.627926033667,6825.395641324374,6271.2121783629445,45822.835664405895,10308.536600541103,7608.672650862665,6847.163358032097,5570.359801723678,44243.79591878932,10608.81104875736,7961.331218950028,7182.582579903576,5739.776716288881,45513.36945460184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04496483877975459,0.0014226561559133012,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0947395060136562,1.0947395060136562,1.1868136997967305,1.1868136997967305,1.004966168814654,1.004966168814654,1.0979321526204444,1.0979321526204444,1.0472498249323356,1.0472498249323356,0.5867052222691675,0.6539279901498497,0.47491928194802646,0.5456044168051372,0.48765520565813525,0.6020333293098878,0.6859068812079429,0.4924466421455801,0.5582320008530905,0.49995110282561345,30.27389929397873,30.27389929397873,34.6055660490552,34.6055660490552,26.32922205338876,26.32922205338876,30.419450221810933,30.419450221810933,28.15088170921885,28.15088170921885,12.214376695617375,13.981121636300301,9.710229365338549,11.23075777040026,9.9682476634175,12.599970318991595,14.890359183398232,10.067130036283729,11.525162760002573,10.223994487203683,247.08923161134214,247.08923161134214,0.0,274.543590679269,0.0,247.08923161134214,274.543590679269,0,0
+2017/08/12 16:00:00,260.3883491808806,0,895.9950258643846,0,0,0,66.28792020349275,0.0,14.78378283874635,0.0,120.17895923267236,0,39.380909295966944,2.75028463821256e-09,16.324802404797584,0,0,0.0,434.62044320131093,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9146.525653826497,8837.752602126024,7417.900995259181,6536.1247320698885,49827.30832805179,9538.559231275274,8483.776839605529,6947.561293005112,5530.801963302034,44713.514502650876,9714.000253986755,8956.344541380253,7268.3868163667075,5684.980130589124,45909.2133281237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047703438846508794,0.0015093035530636867,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0727954417683578,1.0727954417683578,1.2499918934347491,1.2499918934347491,1.020919337115096,1.020919337115096,1.105602760123674,1.105602760123674,1.0717316439675266,1.0717316439675266,0.5570464673422796,0.6934579253316551,0.4740664172386548,0.5398805044771827,0.4858554197237378,0.5658807785608594,0.7312806716892691,0.49012698529495885,0.5507300190188137,0.4974860042642369,29.283009981894693,29.283009981894693,37.72535693148126,37.72535693148126,27.008725141919555,27.008725141919555,30.77056797957985,30.77056797957985,29.235401340780612,29.235401340780612,11.497228671838016,15.111510976465112,9.693201047311973,11.099584372878581,9.931360981645,11.706851931236756,16.25627238354238,10.019134773894038,11.349424848295854,10.172198634772045,260.3883491808806,260.3883491808806,0.0,289.32038797875623,0.0,260.3883491808806,289.32038797875623,0,0
+2017/08/12 17:00:00,284.2487555120354,0,912.52548967431,0,0,0,67.5004518320798,0.0,16.90307355543791,0.0,138.40412594678773,0,39.380909295966944,2.8048313503026523e-09,18.628219676503875,0,0,0.0,451.1509070112363,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9040.52665099572,9970.337900489261,8058.822630374986,6528.494640625994,52535.281715785735,9055.271135373117,9146.345834258393,7169.6017643977,5406.563920247443,45057.214554712715,9112.524712220204,9654.060698384374,7469.451360347055,5514.698567186453,46117.55955536858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04858353298397398,0.0015371491180968652,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0689869385475608,1.0689869385475608,1.294304725294682,1.294304725294682,1.0459242351844542,1.0459242351844542,1.1016510202539214,1.1016510202539214,1.0870126469919688,1.0870126469919688,0.5394421176563189,0.7229301875914886,0.4829067408515218,0.5311621489971744,0.48771981057960206,0.5426027689885932,0.7607239655745991,0.497517917270699,0.537325722700248,0.49754384934201484,29.11275068531083,29.11275068531083,39.975814375168234,39.975814375168234,28.092774207201813,28.092774207201813,30.58942977996236,30.58942977996236,29.92308489523832,29.92308489523832,11.089596503065039,15.998231590339074,9.871229845886091,10.902515539178154,9.969574343354125,11.161792758454723,17.18999132192525,10.172867503086977,11.041495301421179,10.173411048707734,284.2487555120354,284.2487555120354,0.0,315.8319505689282,0.0,284.2487555120354,315.8319505689282,0,0
+2017/08/12 18:00:00,271.6241023790773,0,915.2996413415175,0,0,0,69.72227546466748,0.0,16.798297355077125,0.0,120.14191543460078,0,39.380909295966944,2.962981308206775e-09,25.580704825801988,0,0,0.0,489.4154111909878,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7216.663490941287,8664.947068482352,7584.623018838838,6172.968021186957,47075.42968658466,9892.838349402191,9815.407963495574,8808.63920003811,5577.691905561735,54020.282270979726,9882.968735557955,10304.901372417538,9187.797595141154,5628.711888919191,54864.74291712664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048731230873568725,0.0015418221763697213,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.056938312768001,1.056938312768001,1.2658596130251976,1.2658596130251976,1.0766989096713546,1.0766989096713546,1.0889774364761244,1.0889774364761244,1.0903824886492104,1.0903824886492104,0.5513289902665707,0.7376301777842236,0.5214486507200904,0.5383236737309524,0.5166109023935295,0.5511854872287563,0.7692557471338047,0.5384277953221764,0.5409189864599635,0.5252672181045693,28.577506621570933,28.577506621570933,38.52569725767233,38.52569725767233,29.458044769221843,29.458044769221843,30.01209502130149,30.01209502130149,30.075829335675834,30.075829335675834,11.363366441652062,16.454486361222962,10.686829008468223,11.064152450658511,10.58093107617158,11.360024862993043,17.467488298490792,11.066518878248246,11.123277575746812,10.771132396516336,271.6241023790773,271.6241023790773,0.0,301.8045581989748,0.0,271.6241023790773,301.8045581989748,0,0
+2017/08/12 19:00:00,244.53824400701447,0,857.814391975436,0,0,0,50.37947010063849,0.0,18.318837198855064,0.0,110.89738010901058,0,39.380909295966944,2.9629813082067732e-09,25.56164729958036,0,0,0.0,467.4205143374507,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3545.995410475073,2876.899922697107,4476.487566540102,5431.501952541059,31551.969061062795,6769.676291686488,6630.9945418275975,6447.832691141834,3298.224707330368,43976.82969748074,6625.408538318205,6859.140483102138,6785.8205546918725,3193.3112409002783,44283.062314638075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04567067361761111,0.0014449882781756135,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0158924079755491,1.0158924079755491,1.060699008760667,1.060699008760667,1.032345120305064,1.032345120305064,1.0661514180716047,1.0661514180716047,1.0690556731748535,1.0690556731748535,0.5287600707702018,0.6613446585687479,0.50255960159143,0.5107328287439659,0.5198881038296618,0.5222140724022052,0.673591762820219,0.5130350157131052,0.5064394738348797,0.5248817408780592,26.793581357296816,26.793581357296816,28.744014868965593,28.744014868965593,27.501219501515962,27.501219501515962,28.986321738754143,28.986321738754143,29.115818929668848,29.115818929668848,10.848797642186739,14.188051228326913,10.279089353584709,10.453623018441391,10.652558109265144,10.703676824915547,14.534968820085794,10.503306031884051,10.361581291106802,10.76259348661928,244.53824400701447,244.53824400701447,0.0,271.70916000779386,0.0,244.53824400701447,271.70916000779386,0,0
+2017/08/12 20:00:00,218.98115638266793,0,841.5248728332792,0,0,0,22.621799507759015,0.0,24.999863057464953,13.929299233552332,94.88958839347283,0,39.380909295966944,2.91117041309444e-09,23.159696891540634,0,0,0.0,486.621347707838,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,942.547992965248,4312.484291914758,14838.680109089273,2138.7420567716536,2592.981799519588,2116.3442826571622,200.88954065002932,22030.630386368397,1856.5656501988658,2555.311633633517,2288.0668623384527,0.0,21670.647299374195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044803407552727256,0.001417548584417004,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9659270378918277,0.9659270378918277,0.9881333891675197,0.9881333891675197,0.9557143187446334,0.9557143187446334,1.0329748122837374,1.0329748122837374,1.0324663027449406,1.0324663027449406,0.4878910129572343,0.5715619081080144,0.447666685002243,0.46757034428140043,0.4933450587114394,0.4749124502447836,0.5671487104904867,0.4477881352266282,0.4542260070660653,0.4924632277885683,24.707202726688166,24.707202726688166,25.622675248617853,25.622675248617853,24.292608459326104,24.292608459326104,27.528501792941185,27.528501792941185,27.506468767611224,27.506468767611224,9.973090902899884,11.843443852008349,9.181600919454254,9.564529267734429,10.085781304493196,9.710092838774273,11.737215573909566,9.183885815444057,9.305912530287642,10.067474041011877,218.98115638266793,218.98115638266793,0.0,243.31239598074214,0.0,218.98115638266793,243.31239598074214,0,0
+2017/08/12 21:00:00,202.05585017436744,0,786.8086881815456,0,0,0,10.179100883807022,0.0,24.999863057464953,13.929299233552332,87.89947186453183,0,39.380909295966944,2.9629813082067736e-09,25.667205836081372,0,0,0.0,467.3955155686484,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3505.6082077661986,5376.1040505237015,19.362484886605944,756.1693485500571,237.19685510573305,0.0,12010.204224994013,0.0,579.7814858566667,284.57714124554866,0.0,11311.572680705747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.041890277353226216,0.001325379175524047,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8282441795003025,0.8282441795003025,0.8222080240368737,0.8222080240368737,0.860628683593394,0.860628683593394,1.0014587026813928,1.0014587026813928,0.9868893131780013,0.9868893131780013,0.44225296574878864,0.5141223227772365,0.4054602028573082,0.3480898916783054,0.4617633447232542,0.4107476247977298,0.5005500540996739,0.40134919574825567,0.31272940647418324,0.4577223265668283,19.470670193965248,19.470670193965248,19.258940872503928,19.258940872503928,20.632618751583223,20.632618751583223,26.181110390170744,26.181110390170744,25.570884713095566,25.570884713095566,9.080394493839009,10.526850677195782,8.425910353987419,7.5209224636843,9.451045674297049,8.516393864889196,10.236619105756418,8.356385851303443,7.032903082507843,9.372930836861244,202.05585017436744,202.05585017436744,0.0,224.5065001937416,0.0,202.05585017436744,224.5065001937416,0,0
+2017/08/12 22:00:00,137.01846249924063,0,616.6854410880446,0,0,0,0.4453074420127848,0.0,13.889267379777467,13.929299233552332,50.80790049267442,0,39.380909295966944,2.8048313503026515e-09,18.565778652451883,0,0,0.0,456.9788547815961,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1766.2450882089984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.032832789666544945,0.00103880657870718,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.580969919322864,0.580969919322864,0.5642383514537009,0.5642383514537009,0.6194739325234347,0.6194739325234347,0.9303084456755054,0.9303084456755054,0.7678752879673079,0.7678752879673079,0.3052843520572153,0.40622583753790165,0.2775590819922712,0.1970212003742419,0.42869873541956593,0.2583834771513113,0.3693217617279687,0.2645460349700649,0.1402861462306239,0.41112213214617493,12.072720826028402,12.072720826028402,11.667623776219841,11.667623776219841,13.051107693746019,13.051107693746019,23.279060678369916,23.279060678369916,17.422378022481155,17.422378022481155,6.93690628059062,8.4389385188569,6.600024503537682,5.80490899699565,8.832529441693836,6.385995001669642,7.839480542853735,6.4530900181799495,5.407746209105198,8.522848205321736,137.01846249924063,137.01846249924063,0.0,152.24273611026737,0.0,137.01846249924063,152.24273611026737,0,0
+2017/08/12 23:00:00,89.69298256378224,0,477.2318395027222,0,0,0,0.10673579611740058,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6948074427192453e-09,14.075265706131752,0,0,0.0,423.996310733906,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,411.80574365137045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.025408176623929992,0.0008038969974210531,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.3568561083650439,0.3568561083650439,0.3365148038662332,0.3365148038662332,0.396391120181129,0.396391120181129,0.8623287640731004,0.8623287640731004,0.5141435737919787,0.5141435737919787,0.1737178683249819,0.27306604306654936,0.1493845308712518,0.06024746451298025,0.30752200605976426,0.10307200146856862,0.21135441559627796,0.11532121272402278,-0.02080845993826871,0.2810201694815287,7.650122682541493,7.650122682541493,7.355329201409958,7.355329201409958,8.273497888579229,8.273497888579229,20.694821966816164,20.694821966816164,10.52731135808692,10.52731135808692,5.625529994335892,6.548485611904667,5.462404194039365,5.075150012291061,6.965512109640088,5.2200230809798995,5.926514231683683,5.275458820122864,5.008963325320565,6.640306455025865,89.69298256378224,89.69298256378224,0.0,99.6588695153136,0.0,89.69298256378224,99.6588695153136,0,0
+2017/08/13 00:00:00,43.980302656683136,0,463.5963034570036,0,0,0,0.4270491755716325,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,0.5283317830959156,2.6383904916173907e-09,11.839287630577138,0,0,0.0,410.3607746881874,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,449.0089018284955,1003.1818003255661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024682210584923484,0.0007809279379869599,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5942176321387983,0.5942176321387983,0.6031232193184726,0.6031232193184726,0.6090048627549084,0.6090048627549084,0.8494469084157337,0.8494469084157337,0.7131546733502894,0.7131546733502894,0.4122203508639456,0.5616262196197928,0.3362618597982146,0.3175002511648128,0.5352447288222276,0.3050822284601642,0.46484372290532383,0.27114820947966006,0.20080005126575273,0.49170291316759906,12.402084660187072,12.402084660187072,12.627775875589919,12.627775875589919,12.778719704640338,12.778719704640338,20.226481673366663,20.226481673366663,15.699968592036285,15.699968592036285,8.541809786254873,11.605475943420771,7.351774130746463,7.09565221853893,10.994387881989027,6.93433279477857,9.511063219735803,6.526745578175763,5.836135112306536,10.051716477524636,43.980302656683136,43.980302656683136,0.0,48.86700295187015,0.0,43.980302656683136,48.86700295187015,0,0
+2017/08/13 01:00:00,23.722151438478228,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250560148004343,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6475805715913496,0.6475805715913496,0.6783672297730842,0.6783672297730842,0.6255580051147205,0.6255580051147205,0.8533659530067591,0.8533659530067591,0.8350125053595031,0.8350125053595031,0.4478778295207746,0.6278023410793782,0.34092973054312975,0.3634491465637332,0.633724260894144,0.3433767673181267,0.5416875874118408,0.28466882846816727,0.25129995873078514,0.5759538195147703,13.805918019650463,13.805918019650463,14.672000675540346,14.672000675540346,13.21159049034327,13.21159049034327,20.368235830290246,20.368235830290246,19.709898622962072,19.709898622962072,9.185573680516086,13.271196055303463,7.417817587770173,7.7494486894945425,13.429520772804324,7.4528093380857285,11.140843470555865,6.683318608426916,6.310846879237602,11.949998567522329,23.722151438478228,23.722151438478228,0.0,26.357946042753586,0.0,23.722151438478228,26.357946042753586,0,0
+2017/08/13 02:00:00,28.344306806780526,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.52494372030763,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.669848534448527,0.669848534448527,0.7070136050518834,0.7070136050518834,0.6387796196373083,0.6387796196373083,0.847350669000159,0.847350669000159,0.9065010008066141,0.9065010008066141,0.4444560272293271,0.6223369476056555,0.3363366481797437,0.36216413932726965,0.6646440272776317,0.3373681332378858,0.5360295417031712,0.26877096138938245,0.24944115180354937,0.5960447951544229,14.428247087685335,14.428247087685335,15.51470293384989,15.51470293384989,13.565881339794203,13.565881339794203,20.150921663270566,20.150921663270566,22.352660891052096,22.352660891052096,9.1214274341811,13.126426871138037,7.352824981360655,7.729944450704707,14.280871551269328,7.367342592220012,11.012131644507477,6.500012857848333,6.291476522874291,12.448109159399323,28.344306806780526,28.344306806780526,0.0,31.493674229756138,0.0,28.344306806780526,31.493674229756138,0,0
+2017/08/13 03:00:00,23.72212922846033,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250338047825369,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6662036069990334,0.6662036069990334,0.7056425207605586,0.7056425207605586,0.6345719688471029,0.6345719688471029,0.8130245724371242,0.8130245724371242,0.9166891377105416,0.9166891377105416,0.4420273579013941,0.6189642793344311,0.33330895856496595,0.3616505851068671,0.6884792887959119,0.32969388744755507,0.5275274005490225,0.25654548660376275,0.2444393911502996,0.6061856899858898,14.324910936569268,14.324910936569268,15.473561719465238,15.473561719465238,13.452309037388531,13.452309037388531,18.939751880911658,18.939751880911658,22.74631263698049,22.74631263698049,9.07620422965249,13.037737215330665,7.310472739815751,7.722169236607925,14.965422004665228,7.260413661263769,10.821328322719978,6.366293237196587,6.240075017947092,12.706182378446343,23.72212922846033,23.72212922846033,0.0,26.35792136495592,0.0,23.72212922846033,26.35792136495592,0,0
+2017/08/13 04:00:00,42.46263340355,0,88.72588128136032,0,0,0,0.021159200663929612,0.0,4.633261998087618,9.319298099999997,23.111338313975452,0,4.852566878202139,0.0,0.5250089126208518,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.562223035794654,32.06366179492064,0.0,33.5645765714879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7114625389999149,0.7114625389999149,0.7504592838984349,0.7504592838984349,0.6805757222260213,0.6805757222260213,0.8435044137259,0.8435044137259,0.8741299931245409,0.8741299931245409,0.36854609845761804,0.45217123430897205,0.31750093234204446,0.32987103780579374,0.4697410171685653,0.3040319731217067,0.39765766734895114,0.24924036058719115,0.2396859473958029,0.43695571364329094,15.64875747618622,15.64875747618622,16.860255049656843,16.860255049656843,14.73570697854673,14.73570697854673,20.012757355728652,20.012757355728652,21.12990139175568,21.12990139175568,7.827504763260109,9.266771583618649,7.0956612466440845,7.262853798874545,9.607322803570625,6.920988513225595,8.294571733910232,6.289392798932042,6.192199443126569,8.982584722483224,42.46263340355,42.46263340355,0.0,47.18070378172222,0.0,42.46263340355,47.18070378172222,0,0
+2017/08/13 05:00:00,82.6781643496456,0,212.9421150752648,0,0,0,0.2826908388689034,0.0,4.633261998087618,9.319298099999997,57.911447091112116,0,9.995614665978474,0.0,0.5358516555984716,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,281.6758007017355,747.696831205986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.19555177681264,27.686747142386068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8691372672829251,0.8691372672829251,0.8762631457676259,0.8762631457676259,0.8642345990023709,0.8642345990023709,0.9431023180226764,0.9431023180226764,0.9227690466120216,0.9227690466120216,0.3711903554912016,0.4318712413993834,0.33016459872679715,0.3411159624050004,0.4371107165650898,0.31530945877987243,0.3832412552452811,0.2833526925366718,0.2757253158283496,0.4142691115886628,20.945131754649367,20.945131754649367,21.209157560041348,21.209157560041348,20.764695577376074,20.764695577376074,23.78626737573674,23.78626737573674,22.98322205769624,22.98322205769624,7.868435840622794,8.889837557128615,7.26690035206245,7.420471692096015,8.985429611370435,7.066717847139728,8.058751413803918,6.667738597835964,6.578886893342357,8.577321312994059,82.6781643496456,82.6781643496456,0.0,91.86462705516178,0.0,82.6781643496456,91.86462705516178,0,0
+2017/08/13 06:00:00,102.22784757734689,0,632.8685488155553,0,0,0,0.3241047200277065,0.0,8.256661261389981,0.0,80.56906512710079,0,12.51109445221004,2.522702317077388e-09,0.5669220140957136,0,0,0.0,402.1812574840185,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1311.3590072428096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033694390308893395,0.0010660670224458947,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9460948390593518,0.9460948390593518,0.9411575020927324,0.9411575020927324,0.9579451490503429,0.9579451490503429,1.012810177499078,1.012810177499078,0.9456216130084528,0.9456216130084528,0.3885313794423727,0.43733637941316134,0.355317841430719,0.36446200771174053,0.44853966499186243,0.3433200807639842,0.39555247941743904,0.319046103071621,0.31275830601934523,0.4282284805648207,23.905841792596007,23.905841792596007,23.708746988944483,23.708746988944483,24.382822441833326,24.382822441833326,26.662134276380186,26.662134276380186,23.88690916517811,23.88690916517811,8.144254493001284,8.989573221829062,7.627214514633977,7.764871783466319,9.19803878020491,7.451995861742006,8.259581650599799,7.116191045250687,7.033280285652225,8.824071527968343,102.22784757734689,102.22784757734689,0.0,113.58649730816322,0.0,102.22784757734689,113.58649730816322,0,0
+2017/08/13 07:00:00,116.0325635732761,0,651.3890272973584,0,0,0,0.487499283941378,0.0,6.305059445358389,0.0,69.33401494192633,0,39.380909295966944,2.5227025774204367e-09,0.5250806035603501,0,0,0.0,385.21138345327756,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1975.8832714806158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03468043430150648,0.0010972647670428116,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.5935751770936978,0.5935751770936978,0.5552703228954877,0.5552703228954877,0.6355973851791585,0.6355973851791585,1.0110265965495346,1.0110265965495346,0.8437770667534944,0.8437770667534944,0.3319111729203925,0.3928902623358623,0.31350034066338944,0.25264388411052846,0.5406432928700972,0.2505789753671092,0.3204668157565167,0.2632080064111727,0.1662935713362224,0.5119269519614511,12.385936258059672,12.385936258059672,11.455492379477079,11.455492379477079,13.479916155863378,13.479916155863378,26.586233010539914,26.586233010539914,20.02253123296464,20.02253123296464,7.291051379905539,8.21560460286912,7.042977594296502,6.324942208727634,11.11698300804838,6.30331637335415,7.1351565136056365,6.438386334279727,5.573142356409377,10.479364527872121,116.0325635732761,116.0325635732761,0.0,128.92507063697343,0.0,116.0325635732761,128.92507063697343,0,0
+2017/08/13 08:00:00,150.67752626846595,0,700.1456535741097,0,0,0,4.382414760449915,0.0,9.472049877576204,0.0,96.91714705112861,0,39.380909295966944,2.522702577452564e-09,0.5250052808216061,0,0,0.0,380.73248096121256,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4721.422630741682,10635.774790544065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03727627319883885,0.001179395300305434,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.82440682867542,0.82440682867542,0.7245457300600008,0.7245457300600008,0.8205889152820302,0.8205889152820302,1.12174592312575,1.12174592312575,0.9427670669014291,0.9427670669014291,0.5751881873811777,0.5927503680000425,0.5203289055215096,0.5827534251152828,0.7471975459591768,0.5150509633673048,0.527153830921666,0.4845477633219947,0.5282523001440471,0.7272947145456162,19.33589090551581,19.33589090551581,16.04791993889708,16.04791993889708,19.202407920144566,19.202407920144566,31.515980050322057,31.515980050322057,23.772893571844918,23.772893571844918,11.931362894661618,12.36523056471026,10.66222779870057,12.11661859761945,16.756421365513418,10.547000033811571,10.813016536175937,9.904648205581964,10.837474308876494,16.132727035234325,150.67752626846595,150.67752626846595,0.0,167.41947363162885,0.0,150.67752626846595,167.41947363162885,0,0
+2017/08/13 09:00:00,177.15795277627586,0,762.7778641419261,0,0,0,30.85169694304962,0.0,9.332689672910613,0.0,97.06762091869685,0,39.380909295966944,2.5227025774525677e-09,0.5250359431291607,0,0,0.0,390.1291627602127,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3030.208275066749,1497.985931326236,2634.2181311189493,5370.380856538464,27164.806208235488,3909.5569133473978,2790.971901446948,2714.5789662167517,2479.1289634253453,21220.785656155185,3646.2647659493673,2579.9304969004907,3066.7831571100137,2478.172876591194,21647.448239607307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.040610858481565294,0.001284899254253216,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9652831629702625,0.9652831629702625,0.9028219567140324,0.9028219567140324,0.9545530507586019,0.9545530507586019,1.0910321205977143,1.0910321205977143,1.015163538348943,1.015163538348943,0.5808130074834973,0.598238903955499,0.5325228702954973,0.5907959846091303,0.659883734301044,0.5645291172983739,0.5725783936969335,0.5180478379337098,0.5768381226362351,0.6510503897016704,24.68094368061533,24.68094368061533,22.21154066592908,22.21154066592908,24.245724505994303,24.245724505994303,30.10532018106656,30.10532018106656,26.76246533806986,26.76246533806986,12.068865330593283,12.503568137794147,10.933056333089041,12.316286332022116,14.147102041278742,11.674559980003224,11.86803097335077,10.612279758802842,11.971554372712703,13.901476712122957,177.15795277627586,177.15795277627586,0.0,196.84216975141763,0.0,177.15795277627586,196.84216975141763,0,0
+2017/08/13 10:00:00,265.59901792891503,0,940.21465465735,0,0,0,61.6321212512774,0.0,13.065493553185489,0.0,124.87761316689259,0,39.380909295966944,2.911172937749615e-09,23.210905456227188,0,0,0.0,478.84007199427634,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7462.233530652838,4396.229561330737,6805.31866029547,6372.518771210402,50226.471994162916,7796.107158376111,5524.58852066351,6451.785275918666,5144.729862374268,46384.04707861596,7582.122331888862,5319.418755916185,6388.7128212066655,5105.7350128786675,46089.633010123966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05005772463722012,0.001583791514409224,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.034037795665975,1.034037795665975,1.0027812487182146,1.0027812487182146,1.023472154204771,1.023472154204771,1.1034720396486193,1.1034720396486193,1.0763746134362386,1.0763746134362386,0.5480075073819611,0.5735362018722251,0.5110491807143387,0.5613003688217203,0.5700612491350798,0.5416966042084382,0.5609840718733516,0.5092218231256584,0.5561387676206265,0.5673166469279155,27.574590129685774,27.574590129685774,26.236903603274683,26.236903603274683,27.11834158570055,27.11834158570055,30.672835188785243,30.672835188785243,29.443482673863087,29.443482673863087,11.286251933947199,11.891239802503662,10.460436559080591,11.597744061590902,11.807227303504789,11.141049695713278,11.590243280387213,10.421138911197332,11.475882224345938,11.741242440560242,265.59901792891503,265.59901792891503,0.0,295.1100199210167,0.0,265.59901792891503,295.1100199210167,0,0
+2017/08/13 11:00:00,305.49330270944216,0,978.7099700430981,0,0,0,83.3178410095481,0.0,12.935301236479537,0.0,143.25325374857618,0,39.380909295966944,2.9111729377496136e-09,23.174022213505875,0,0,0.0,464.0998586112083,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13684.359078295483,6813.832235057688,10603.732182173122,8581.891760636596,68266.45970849844,11808.456994652535,7556.163509526513,8980.63679180499,7608.421340204071,56378.1554265021,11917.00219259262,7428.351482696772,9052.621048322415,7675.131292048038,57021.96940426665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05210724374209409,0.0016486368702547719,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.199393707157931,1.199393707157931,1.077499985413842,1.077499985413842,1.0931474282337772,1.0931474282337772,1.1878610492650066,1.1878610492650066,1.1268066911256152,1.1268066911256152,0.6250944715055331,0.5925095505587441,0.5296264774068156,0.6123183648080318,0.5441721756683249,0.6483929420370081,0.5950096373051569,0.5427807396005465,0.6290326398241276,0.5496899635464599,35.217825671391566,35.217825671391566,29.49403181886909,29.49403181886909,30.201447828838866,30.201447828838866,34.656362494271804,34.656362494271804,31.75144265482173,31.75144265482173,13.199307094462256,12.359190743991789,10.868144367805272,12.864417088842217,11.197802299846671,13.828243882957935,12.422016726504026,11.165870872719353,13.30396333671537,11.325253570824188,305.49330270944216,305.49330270944216,0.0,339.4370030104913,0.0,305.49330270944216,339.4370030104913,0,0
+2017/08/13 12:00:00,296.70358605416544,0,932.6375297566226,0,0,0,97.57950326541737,0.0,12.935301236479537,0.0,124.80122689546741,0,39.380909295966944,2.8048338324191414e-09,18.574670155575046,0,0,0.0,453.51777083727677,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16603.522416240212,7747.2664023772195,12213.240316455362,8829.17880935949,73967.53396035159,15425.702797712647,9295.78677236338,11895.264517188221,9022.078076447313,66821.32137791748,15826.462560024776,9227.958959126026,12080.15341799408,9118.623518690894,68428.2107083117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04965431289507846,0.0015710278480890426,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.237770403843145,1.237770403843145,1.1107695473981007,1.1107695473981007,1.124536393690792,1.124536393690792,1.170071489049986,1.170071489049986,1.1428706101786845,1.1428706101786845,0.6676779915272233,0.6213876626085967,0.562595716170393,0.6196371646173251,0.5549747668078363,0.696384156233304,0.6298253785309691,0.5811403329849915,0.6352069451751112,0.566177777763852,37.11333453851277,37.11333453851277,31.00819633919376,31.00819633919376,31.645708213498295,31.645708213498295,33.798022558224375,33.798022558224375,32.504380026890814,32.504380026890814,14.366641444020004,13.101414004167367,11.628507668954754,13.055392383499111,11.448560601626681,15.197875560830695,13.325111610555865,12.076909286217386,13.469399025461257,11.713958028922889,296.70358605416544,296.70358605416544,0.0,329.67065117129494,0.0,296.70358605416544,329.67065117129494,0,0
+2017/08/13 13:00:00,303.54358609437224,0,880.2867095359252,0,0,0,104.46539596354252,0.0,12.88660173648153,0.0,124.7641830973959,0,39.380909295966944,2.8048338324191423e-09,18.614520795726182,0,0,0.0,436.6573031291236,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16624.880053680146,8723.637552025686,13222.203501939186,9085.066180059464,76355.94361654023,16649.771797841044,10759.140439856195,13442.380161245357,10035.574020066737,70623.11064115413,16927.836233581067,10700.682538149009,13588.308222734908,10055.673529831558,72929.48394071066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04686711644992699,0.0014828428954006378,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.225523131592201,1.225523131592201,1.1560075039955797,1.1560075039955797,1.145421925881131,1.145421925881131,1.1794699226013217,1.1794699226013217,1.1505898524716607,1.1505898524716607,0.6817428966593417,0.6656330845098258,0.5918733793856068,0.6431070017518777,0.5640530779087827,0.706365413343506,0.6794650346331222,0.6108754476871667,0.6586290019022729,0.5760292778679686,36.503999071119125,36.503999071119125,33.1262661203329,33.1262661203329,32.62472832846778,32.62472832846778,34.25030894898873,34.25030894898873,32.86913929743022,32.86913929743022,14.769460579999546,14.30878831294686,12.343247362358511,13.683486377005778,11.663205998278599,15.495242970107583,14.703641644233528,12.82704023052969,14.112006153668247,11.951836619052457,303.54358609437224,303.54358609437224,0.0,337.27065121596917,0.0,303.54358609437224,337.27065121596917,0,0
+2017/08/13 14:00:00,278.73205791005654,0,832.0665400790064,0,0,0,97.95773863046576,0.0,12.88660173648153,0.0,111.01081017850728,0,39.380909295966944,2.6948098750979556e-09,14.06402286348596,0,0,0.0,423.92748618474883,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15812.838723849838,9509.945696863904,12921.427546037166,8801.122593024415,73094.75148565252,14973.516108310132,11001.04627616554,11879.625090100895,9537.252206095814,63312.51672704315,15213.36428785399,11090.69147359903,12088.049984521984,9596.698071651328,65624.32273777791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04429983891103964,0.0014016160236103067,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2176248435219077,1.2176248435219077,1.2154650809677068,1.2154650809677068,1.1476431756248582,1.1476431756248582,1.1779037961662906,1.1779037961662906,1.1441832359175061,1.1441832359175061,0.6782408918413891,0.7045138835649398,0.5950976718680832,0.648397826926077,0.5586514371529928,0.6991595207921681,0.7256072865231217,0.6129242074817863,0.6635642683880045,0.5709209517956961,36.113203629839916,36.113203629839916,36.006642524826475,36.006642524826475,32.7296758969422,32.7296758969422,34.174755921043456,34.174755921043456,32.56627204998749,32.56627204998749,14.668362704962775,15.439756308494395,12.424233937111183,13.828378217816052,11.5350603069257,15.280129190458666,16.080630784552937,12.880137575862108,14.25044305447625,11.827963211983842,278.73205791005654,278.73205791005654,0.0,309.70228656672947,0.0,278.73205791005654,309.70228656672947,0,0
+2017/08/13 15:00:00,273.8775388388647,0,832.0722167208664,0,0,0,95.31482809878317,0.0,12.88660173648153,0.0,108.75639138185811,0,39.380909295966944,2.6948098750979565e-09,14.106833120625971,0,0,0.0,423.93316282660896,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14955.23945444335,11105.88517649688,12879.858925362085,8702.352976157013,73262.18230727442,13581.582484298708,11829.539109497788,11015.326688806277,9334.34697833535,59882.40529868245,13637.945387281954,12009.944000783591,11133.146177619516,9347.814002130606,62365.45003032312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044300141139657,0.0014016255859130892,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1952948452610197,1.1952948452610197,1.2812755991817932,1.2812755991817932,1.1477477206179219,1.1477477206179219,1.1750105132485522,1.1750105132485522,1.1490445266397842,1.1490445266397842,0.6573558938928762,0.7460328204875372,0.5902052835071693,0.6476730229361122,0.556198038670722,0.6700831722896926,0.7723235038321563,0.6038380711214161,0.6598034894733568,0.5683519992810765,35.01782937144421,35.01782937144421,39.30921439574927,39.30921439574927,32.734619205067006,32.734619205067006,34.03537266917668,34.03537266917668,32.79596622396849,32.79596622396849,14.076466007035151,16.719454128515622,12.301525842549495,13.808457358693616,11.477275016208566,14.434918936369343,17.568026642979603,12.646041356824384,14.144855486337363,11.766095673904104,273.8775388388647,273.8775388388647,0.0,304.30837648762747,0.0,273.8775388388647,304.30837648762747,0,0
+2017/08/13 16:00:00,290.6266727947612,0,885.3134334733091,0,0,0,97.77674310360835,0.0,11.08681950462398,0.0,124.87761316689259,0,39.380909295966944,2.6948098750979565e-09,14.072612518520122,0,0,0.0,423.93885081023535,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14647.767332776644,12890.776072563365,13528.758629744403,9037.382039005748,78682.68279438702,13183.768296463742,13009.216204388367,11364.168003882018,9463.170212477133,62211.33362529218,13102.918607586791,13293.026701917534,11449.841722718451,9467.39096297032,64634.50156885508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04713474295568124,0.001491310411491639,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1844634157627372,1.1844634157627372,1.3425584909616208,1.3425584909616208,1.1626977166051067,1.1626977166051067,1.187193370707584,1.187193370707584,1.1724484297950808,1.1724484297950808,0.6396201962225257,0.7870960425118637,0.5929093835422732,0.6516758955657889,0.5602942781533304,0.645275349557857,0.8169560726935242,0.6036431989194537,0.661628895878534,0.572859135433529,34.49169561641537,34.49169561641537,42.4769697040912,42.4769697040912,33.44505655739154,33.44505655739154,34.623976336785205,34.623976336785205,33.91215639903551,33.91215639903551,13.588662089216854,18.057772670368593,12.369220132935865,13.918758650192956,11.573900308497784,13.742720857675337,19.07596442081156,12.641059895716594,14.196029043908126,11.874829555743261,290.6266727947612,290.6266727947612,0.0,322.91852532751244,0.0,290.6266727947612,322.91852532751244,0,0
+2017/08/13 17:00:00,293.7192014332954,0,918.3091844823371,0,0,0,91.60370699213065,0.0,11.351745598937642,0.0,129.38645076019097,0,39.380909295966944,2.8048338324191423e-09,18.564413580810026,0,0,0.0,456.93460181926326,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13676.091272553525,9480.393573729742,12844.09863233659,8550.560603917702,78072.87728846812,12572.260493427068,10578.84885952328,11042.060637618235,8661.11026778747,62655.1719553186,12433.804866917602,10648.705752600712,11133.051307038679,8677.062417482286,64340.08361577147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04889146117957464,0.0015468917515620117,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1716188309509115,1.1716188309509115,1.191835573573597,1.191835573573597,1.1561344476149533,1.1561344476149533,1.1763262112704185,1.1763262112704185,1.1788204753564149,1.1788204753564149,0.6241626380063321,0.698676025699683,0.5873653142966697,0.641045549614482,0.5662336782667537,0.622166785115216,0.7029646633708989,0.5917764249798867,0.6442885020267526,0.5755525110710591,33.87230189630152,33.87230189630152,34.84942129072191,34.84942129072191,33.13230203031688,33.13230203031688,34.098724787178526,34.098724787178526,34.218969383078715,34.218969383078715,13.174642208173054,15.265775896415732,12.23077186182141,13.627361110326845,11.71529595001806,13.121940355112045,15.393442920298625,12.340819085302357,13.715737079615423,11.940227450458494,293.7192014332954,293.7192014332954,0.0,326.3546682592171,0.0,293.7192014332954,326.3546682592171,0,0
+2017/08/13 18:00:00,289.463600946852,0,889.9988132272883,0,0,0,96.60123294339424,0.0,11.198411588569618,0.0,115.6330778413024,0,39.380909295966944,2.9111729377496136e-09,23.21799407225337,0,0,0.0,464.1145830767587,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12971.745360604193,10541.446007722634,13179.977856271806,8121.083552023022,76946.74731554836,13653.71200352653,12070.394329551436,13083.664904675621,9030.31075976547,70298.5917595497,13402.569129417454,12149.687773784151,13170.11262510814,8980.688932569996,71777.78449754095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047384196044275115,0.0014992029333316028,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1565138357853715,1.1565138357853715,1.2931033628095823,1.2931033628095823,1.1764216000253205,1.1764216000253205,1.161348923274548,1.161348923274548,1.1734645465351272,1.1734645465351272,0.6249411171109314,0.7593716276061172,0.6148187016503829,0.637074605563907,0.5770192390775781,0.6201686514325101,0.7748328507868864,0.6220857756302807,0.6372471265023049,0.58541698272679,33.15034416836116,33.15034416836116,39.91418589350632,39.91418589350632,34.10331988098282,34.10331988098282,33.38067421648063,33.38067421648063,33.960999867529694,33.960999867529694,13.195245336405577,17.14629189086274,12.929398952834504,13.519767303641899,11.97597345982453,13.06935142666245,17.650562738448528,13.119804894881383,13.524427593968142,12.182434251434344,289.463600946852,289.463600946852,0.0,321.62622327428,0.0,289.463600946852,321.62622327428,0,0
+2017/08/13 19:00:00,278.746418545234,0,854.4622643265603,0,0,0,95.93852212121061,0.0,12.738004485755573,0.0,104.13412371906301,0,39.380909295966944,2.9111729377496136e-09,23.122883717872423,0,0,0.0,464.06838668857495,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13332.787429441149,9365.796549495606,13072.05152735986,7495.65794821946,79726.43705316211,13703.18426304082,11129.442675433926,13119.542955231125,8791.594551732898,73229.66466995719,13399.676192208508,11122.471170211347,13179.988508286237,8713.00201029617,74287.4903033201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.045492203858641674,0.0014393416194055048,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.172259312685215,1.172259312685215,1.1958564451605385,1.1958564451605385,1.1705112904353931,1.1705112904353931,1.1445748018514401,1.1445748018514401,1.1854884855584613,1.1854884855584613,0.6226811034178612,0.7101156299928781,0.6095059800268238,0.6310348010288901,0.5854900702051746,0.6137236111907951,0.7101448777332834,0.6109593029249267,0.6268307553177854,0.5917354485574574,33.903069239079116,33.903069239079116,35.045202746657836,35.045202746657836,33.81912756341387,33.81912756341387,32.58474554869437,32.58474554869437,34.54133972572018,34.54133972572018,13.135504747566145,15.608082558807453,12.791649560323663,13.35742848708982,12.184244559337401,12.90090498708129,15.60896497215036,12.829209916457998,13.245365641302214,12.33979293063851,278.746418545234,278.746418545234,0.0,309.7182428280378,0.0,278.746418545234,309.7182428280378,0,0
+2017/08/13 20:00:00,292.9919331988515,0,811.8183575139565,0,0,0,92.56167146819402,0.0,16.665893516531224,13.929299233552332,108.41610117336799,0,39.380909295966944,2.8048338324191414e-09,18.606083305979876,0,0,0.0,456.9148323885153,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11743.705322909193,7906.760071238361,11183.573683426448,6885.298631011641,73549.2751128539,13706.712569570258,10189.098309015575,12772.799856197285,8594.31593393373,74513.6636711287,13372.839314352006,10040.75921757488,12731.187077690875,8486.425058789606,75220.57225783417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04322181067331258,0.0013675079616162914,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1683021464938081,1.1683021464938081,1.1908395543758876,1.1908395543758876,1.1486469286154486,1.1486469286154486,1.1271860399792262,1.1271860399792262,1.1842099474430476,1.1842099474430476,0.6228521671505468,0.6788917426495629,0.5998921742401676,0.6265526831096069,0.5909308082030743,0.6126652085520696,0.6712155234636331,0.5971013565927022,0.6198683608513711,0.5951083871318277,33.71317582766494,33.71317582766494,34.80099694949172,34.80099694949172,32.77715169097026,32.77715169097026,31.769126536801807,31.769126536801807,34.479424968374445,34.479424968374445,13.140018846921308,14.687111698680724,12.545494744697393,13.237980399467318,12.31965743804335,12.87341508753751,14.467150471735877,12.474789054402123,13.061463046964079,12.424503831310147,292.9919331988515,292.9919331988515,0.0,325.5465924431683,0.0,292.9919331988515,325.5465924431683,0,0
+2017/08/13 21:00:00,261.4091866146961,0,783.5103706410274,0,0,0,74.67709716106263,0.0,16.665893516531224,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9111729377496136e-09,23.170121541036593,0,0,0.0,464.0971980281302,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9539.924946566449,6302.020639596388,9060.018685218573,6043.553264624961,62301.59847060514,10461.028716326915,8084.50212232955,9357.626959818199,6686.109010601868,57397.61861333463,10117.773454194905,7874.3011952124,9255.959189337394,6564.839925740224,57717.119530245596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04171467248428323,0.0013198231598773819,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1608897245807106,1.1608897245807106,1.1794581479531592,1.1794581479531592,1.142290271125427,1.142290271125427,1.114214245966096,1.114214245966096,1.171907951373172,1.171907951373172,0.6075327874110485,0.6605787462182893,0.5860057634867992,0.6173215153610198,0.578403787881262,0.594042293237882,0.6480114654558669,0.5791400645199708,0.6072586965602847,0.5796983245645808,33.358768020621596,33.358768020621596,34.24974064170509,34.24974064170509,32.477033837640704,32.477033837640704,31.167121118927867,31.167121118927867,33.886189063271104,33.886189063271104,12.740800167668638,14.16657144675763,12.197024383584775,12.994716904822468,12.009802300125642,12.397675659218052,13.81775644001857,12.027825708254369,12.733750182630871,12.04150710453004,261.4091866146961,261.4091866146961,0.0,290.4546517941068,0.0,261.4091866146961,290.4546517941068,0,0
+2017/08/13 22:00:00,189.59387825074086,0,614.6552979655498,0,0,0,58.76315023739619,0.0,13.889267379777467,13.929299233552332,41.6004089651558,0,39.380909295966944,2.8048338324191414e-09,18.598867933633038,0,0,0.0,454.94871165910126,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6381.017367853208,4279.286846268219,5935.856545173306,4373.119100478603,42173.02140400354,8436.96476847204,6873.139498078431,7335.323254276717,5596.419860976446,46583.81293165153,8040.827329415133,6594.508644160589,7151.49841561465,5433.973346606618,46657.962289282346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03272470334296278,0.0010353868027714226,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1347772769282098,1.1347772769282098,1.1520429965786947,1.1520429965786947,1.1167584014656964,1.1167584014656964,1.0735387033540154,1.0735387033540154,1.123401774921161,1.123401774921161,0.5915550939747527,0.649904454266911,0.5722488769604913,0.6112955921212374,0.5685063106761807,0.5748181533682468,0.6332523446071284,0.5613413211901954,0.5979891207252667,0.5677704426621026,32.12399023588567,32.12399023588567,32.938016257014155,32.938016257014155,31.28475280731024,31.28475280731024,29.31629717058955,29.31629717058955,31.592929164683994,31.592929164683994,12.335277255733914,13.869859959440433,11.86005559308552,12.837914191305813,11.769803840891171,11.922365292697336,13.416848126814841,11.59871553822731,12.497243999934312,11.752129908159347,189.59387825074086,189.59387825074086,0.0,210.6598647230454,0.0,189.59387825074086,210.6598647230454,0,0
+2017/08/13 23:00:00,137.33129774625843,0,442.67437383067454,0,0,0,48.80665895698545,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.5810268878747316e-09,9.581682525399382,0,0,0.0,389.4388450618583,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3535.4550810689043,2464.1373740741647,3149.7421187891105,2984.696882273902,24957.25440134401,7608.80574515155,6328.853610047706,6560.847858895589,5170.75773130287,42966.75067508981,7150.210577249091,5988.754925786958,6290.259203280549,4964.396945107383,42902.17100006909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02356831155460497,0.0007456849491193561,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1063548182883227,1.1063548182883227,1.1215442346125017,1.1215442346125017,1.0903811666712686,1.0903811666712686,1.0329307866757587,1.0329307866757587,1.0860756454934313,1.0860756454934313,0.5785793631001686,0.6403076272233763,0.561829152505535,0.6047713815091801,0.5626319269781487,0.558794214180617,0.6203748270568876,0.547346463566273,0.588459726166821,0.5605606466275488,30.805100344273697,30.805100344273697,31.50661356165844,31.50661356165844,30.075769337678437,30.075769337678437,27.52659384720117,27.52659384720117,29.88068330129586,29.88068330129586,12.014098092171395,13.607315167042074,11.610293520361125,12.669922146972723,11.62936869624103,11.538431193776049,13.074769751683846,11.270961606275307,12.257996196920672,11.580208811214504,137.33129774625843,137.33129774625843,0.0,152.59033082917603,0.0,137.33129774625843,152.59033082917603,0,0
+2017/08/14 00:00:00,47.848006382384995,0,461.8751379795041,0,0,0,6.824977808520587,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.6815117472983105,2.581026887874733e-09,9.54419582756188,0,0,0.0,408.63960921068787,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2804.6496310831853,2005.072734521119,2373.4104296783858,1383.8996898566218,15380.993337390011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024590574460022663,0.000778028634870746,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0464868805454162,1.0464868805454162,1.0537356786924954,1.0537356786924954,1.04002273304631,1.04002273304631,1.0006289977093583,1.0006289977093583,1.030425321855342,1.030425321855342,0.795292151758761,0.8949745957599271,0.7458906876935267,0.7916320683344643,0.7452574687356752,0.7450325217815504,0.8434293369075218,0.7101224758797048,0.7500372428204172,0.7403908138619351,28.11743009851567,28.11743009851567,28.436106906889123,28.436106906889123,27.83485588389229,27.83485588389229,26.146142092566066,26.146142092566066,27.41813163944059,27.41813163944059,18.333493464553783,21.912368969314315,16.714946954811097,18.210014489248266,16.694877469063258,16.687752051595524,20.010066598110853,15.60828909801701,16.846794185122178,16.541205750922458,47.848006382384995,47.848006382384995,0.0,53.164451535983325,0.0,47.848006382384995,53.164451535983325,0,0
+2017/08/14 01:00:00,23.722160086983806,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5250646633060123,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1521093428733729,1.1521093428733729,1.1737352405677897,1.1737352405677897,1.1278910018463095,1.1278910018463095,1.1030319243926323,1.1030319243926323,1.1157553279886716,1.1157553279886716,0.8504964473907904,0.9664775258443669,0.787207293794006,0.8333532021557721,0.7959115328062748,0.8003342481464759,0.9183902877549528,0.753534817272637,0.7924325733019862,0.793429327542111,32.94116256605915,32.94116256605915,33.97401708290879,33.97401708290879,31.802001846922167,31.802001846922167,30.65266694711063,30.65266694711063,31.238348906580725,31.238348906580725,20.264381518462585,24.72966599993788,18.061496128823322,19.651072583676537,18.354445482625565,18.504526407613852,22.81244985641635,16.958578514230197,18.23697232275022,18.270577036990446,23.722160086983806,23.722160086983806,0.0,26.35795565220423,0.0,23.722160086983806,26.35795565220423,0,0
+2017/08/14 02:00:00,28.344491024606178,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5251279381332821,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2034145023303637,1.2034145023303637,1.2290082859691371,1.2290082859691371,1.1733292322218816,1.1733292322218816,1.1532121466004372,1.1532121466004372,1.1778259588331064,1.1778259588331064,0.8762907666217894,0.9946924192121555,0.8089275615166336,0.8542469216912845,0.816430669922461,0.8265476230759854,0.9503672367941371,0.7757428357549768,0.8137589869246847,0.8176590368844714,35.41448444942981,35.41448444942981,36.67698296516032,36.67698296516032,33.95449366632903,33.95449366632903,32.99348060336213,32.99348060336213,34.171002819473955,34.171002819473955,21.210185025792526,25.89670469152911,18.798498168681235,20.40018883864022,19.057723395034387,19.41100583739295,24.077170395496452,17.680559761463613,18.96514728210728,19.100388228806054,28.344491024606178,28.344491024606178,0.0,31.493878916229086,0.0,28.344491024606178,31.493878916229086,0,0
+2017/08/14 03:00:00,23.722288682706555,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.525193259028765,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2058176939086351,1.2058176939086351,1.232834665045943,1.232834665045943,1.1733466073365995,1.1733466073365995,1.160183136433835,1.160183136433835,1.1721737792734908,1.1721737792734908,0.9037806296745459,1.022240092360746,0.8330188916328535,0.8748538578124944,0.8351848534854132,0.8500573791383674,0.9776110727758289,0.7987020177714875,0.8333962447687904,0.8406165426780102,35.53224697595286,35.53224697595286,36.86728237899606,36.86728237899606,33.955329067846534,33.955329067846534,33.325072830587175,33.325072830587175,33.89895967852378,33.89895967852378,22.24826044187587,27.065407342477783,19.63923446795701,21.156775220643596,19.716015356348237,20.248520774729627,25.186510020959545,18.44904170236711,19.652597085722235,19.909425302005204,23.722288682706555,23.722288682706555,0.0,26.358098536340616,0.0,23.722288682706555,26.358098536340616,0,0
+2017/08/14 04:00:00,65.44987283078733,0,88.72588128136032,0,0,0,18.470131271520863,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,6.894036108551302,0.0,0.5775719010810298,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,505.6803654096615,1148.7685090989273,10746.534064639847,3029.6533580813466,2481.337865196625,2227.6845225669945,1596.6777628643301,18232.98934132945,2681.857490340515,2207.3619219759426,2063.1469521243994,1429.517640540147,16403.866644222315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.135150191952636,1.135150191952636,1.1482692323616384,1.1482692323616384,1.1056600309988558,1.1056600309988558,1.0676218072765808,1.0676218072765808,1.079170747812204,1.079170747812204,0.6422780256903358,0.691305608015745,0.6171433037294644,0.644462084987619,0.5811275911404615,0.6119254504932577,0.6660756841964169,0.5907609938753825,0.6203091111685632,0.5922330506977475,32.14147097175726,32.14147097175726,32.75928355788891,32.75928355788891,30.773197022884915,30.773197022884915,29.051847245427624,29.051847245427624,29.569160445777698,29.569160445777698,13.660894452398466,15.048223731675094,12.990056982698462,13.720480369262305,12.076596071092467,12.85423021100884,14.32129468880595,12.315411558651476,13.073042528423358,12.352259094384209,65.44987283078733,65.44987283078733,0.0,72.72208092309702,0.0,65.44987283078733,72.72208092309702,0,0
+2017/08/14 05:00:00,86.75914054180114,0,212.9421150752648,0,0,0,10.757399758850523,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.690619908641712,0.0,0.5250778443530426,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4096.203703698033,2719.9443188020914,3715.8430498015673,2435.2316727223224,25937.797802687463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.095020959886894,1.095020959886894,1.0965258994576328,1.0965258994576328,1.0926769542344266,1.0926769542344266,1.0658341747077216,1.0658341747077216,1.0724095283436947,1.0724095283436947,0.836315593935377,0.9050985171100399,0.7932633483444862,0.8186804977051236,0.7679148572703094,0.782873950492351,0.850010666883551,0.7521242138588279,0.7755015208872486,0.7768280691699526,30.286716594898294,30.286716594898294,30.35529699119523,30.35529699119523,30.18005439256585,30.18005439256585,28.97219436361631,28.97219436361631,29.265734408273033,29.265734408273033,19.756176792681188,22.298799932488237,18.264978267462567,19.135914955717,17.423669925715885,17.91685251094664,20.246833829868194,16.91343185856998,17.672601547736704,17.71637983795081,86.75914054180114,86.75914054180114,0.0,96.3990450464457,0.0,86.75914054180114,96.3990450464457,0,0
+2017/08/14 06:00:00,100.80961366626104,0,632.7171117143865,0,0,0,12.289244388779196,0.0,11.110595677687485,0.0,73.80580873715317,0,3.079023029868332,2.5227041292595116e-09,0.5249418302501279,0,0,0.0,402.02982038284966,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4578.973075889362,2975.0180594936246,4278.9316679473795,2747.7793673456467,30149.3243703267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03368632768545671,0.00106581192666047,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0778631514021513,1.0778631514021513,1.0787082139164925,1.0787082139164925,1.077771469129174,1.077771469129174,1.0664721086912436,1.0664721086912436,1.069017586727519,1.069017586727519,1.0033940099029302,1.078917083953962,0.9467762095184699,0.9759374470901462,0.9793839509786068,0.9505533701976344,1.0285252667087958,0.9113738356643494,0.9333117010916052,0.9868906354089789,29.510353876590344,29.510353876590344,29.548352060706577,29.548352060706577,29.50623289157322,29.50623289157322,29.000606256588412,29.000606256588412,29.114118768470448,29.114118768470448,26.26277611767867,29.557747739224467,23.933117319069822,25.117529149079374,25.25969974350876,24.08465094991631,27.33603207280281,22.540415808283157,23.397538173020777,25.570939725707035,100.80961366626104,100.80961366626104,0.0,112.01068185140116,0.0,100.80961366626104,112.01068185140116,0,0
+2017/08/14 07:00:00,209.5357204731205,0,758.8714187895998,0,0,0,65.34589454080843,0.0,8.405754790595564,0.0,69.33401494192633,0,39.380909295966944,3.0139032760571566e-09,27.06914690080936,0,0,0.0,492.6937749455189,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3808.08652777919,2161.9862655446514,4004.2357727294047,4420.206509116886,33898.15856610684,9973.07373316454,6421.297080757436,9376.98864624248,5989.128463800257,66664.1763890715,9828.831798905157,6352.955631185963,9444.529542521623,5976.079021255449,67304.20974463822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04040287643747733,0.0012783188473537168,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1229011223347758,1.1229011223347758,1.1299848650852788,1.1299848650852788,1.112566194887124,1.112566194887124,1.0936917225255935,1.0936917225255935,1.1145950700910032,1.1145950700910032,0.7679317567614846,0.8227546400398393,0.7219381441660755,0.7727150750122942,0.7462601379585947,0.7582640468127265,0.811293403451884,0.7190399998197263,0.7702741476180712,0.750814799158916,31.56965379451499,31.56965379451499,31.89974323722535,31.89974323722535,31.091037017710832,31.091037017710832,30.2262075123311,30.2262075123311,31.184715189149202,31.184715189149202,17.42422169972467,19.278051443074432,15.967775520392124,17.580888322438042,16.726664393923414,17.11055977760371,18.879979553018785,15.879044168524345,17.500819424344755,16.871600014403995,209.5357204731205,209.5357204731205,0.0,232.8174671923561,0.0,209.5357204731205,232.8174671923561,0,0
+2017/08/14 08:00:00,241.96033553811304,0,786.7721186820024,0,0,0,78.7944239188572,0.0,11.541431746919748,0.0,83.2008179303116,0,39.380909295966944,2.9629857459635387e-09,25.610777440640277,0,0,0.0,467.3589460691053,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7553.298634148767,4759.359558136255,7273.1397850987105,5604.289793760447,51233.256169160944,12732.356103536758,9395.26738485854,11271.794751657684,8257.679522242222,69231.86794946127,12441.250762397733,8811.293331673973,11172.904268681683,8258.85272136785,69833.32317776802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.041888330365983266,0.001325317574204842,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1480358213430304,1.1480358213430304,1.1543243956848162,1.1543243956848162,1.1356362557652973,1.1356362557652973,1.1182156560160181,1.1182156560160181,1.1389977553824049,1.1389977553824049,0.6760953098760271,0.7215043199400197,0.6445839627297647,0.69334595685876,0.6349561110998955,0.6697050956159222,0.7046851018322228,0.6415165119884212,0.6941065042462353,0.6386625264450224,32.74824356144346,32.74824356144346,33.04628547054534,33.04628547054534,32.164262417682934,32.164262417682934,31.352227515088273,31.352227515088273,32.3220913721339,32.3220913721339,14.606684944944533,15.954470281678596,13.723811554262625,15.10821369390466,13.46264589436879,14.424169626349567,15.444881173043356,13.640167328655679,15.130621185905028,13.562710389511878,241.96033553811304,241.96033553811304,0.0,268.84481726457005,0.0,241.96033553811304,268.84481726457005,0,0
+2017/08/14 09:00:00,260.21059136069937,0,833.1662509654186,0,0,0,79.05381058922816,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.858461220831887e-09,20.87037218315145,0,0,0.0,460.5175495837052,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9019.292193058744,5522.909785804827,8629.110873078329,6437.364445208552,57683.9206170986,11985.484154345846,8545.789968306852,10738.124439828238,7913.601049057727,65470.80048978263,11876.349230174,8298.09280343341,10762.879950253971,7998.4148453805055,65749.42769663039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04435838833319542,0.0014034684865150016,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.159069403250461,1.159069403250461,1.1606520790890242,1.1606520790890242,1.1437450254382364,1.1437450254382364,1.1380941986821633,1.1380941986821633,1.1505350219224746,1.1505350219224746,0.6440058457459507,0.6810070055594795,0.6165769160425121,0.6662698802036702,0.6044614886434189,0.643505415153862,0.6729329435267757,0.6180402496604563,0.6718643195833237,0.6082450852193582,33.27199355384468,33.27199355384468,33.3474336489069,33.3474336489069,32.545603732578215,32.545603732578215,32.27963181979986,32.27963181979986,32.86654171211279,32.86654171211279,13.708016072519172,14.748172428208349,12.975256087379421,14.326784691468575,12.661988666942733,13.694354863498958,14.51614149639397,13.01352453649693,14.485642985618341,12.759136671386273,260.21059136069937,260.21059136069937,0.0,289.12287928966595,0.0,260.21059136069937,289.12287928966595,0,0
+2017/08/14 10:00:00,290.9509564223598,0,918.2659111352224,0,0,0,82.26405279019401,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.8048356812865146e-09,18.612408546444225,0,0,0.0,456.8913284721487,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10798.01774808503,6429.2227725214225,10497.480348809991,7350.639615648129,68907.93567202683,12385.730595537709,8470.08860016478,10809.062481442075,7857.1444761481525,66056.89024802801,12441.369066517875,8370.325106238179,11032.141058050493,8057.372621526855,66635.62822429472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04888915727452139,0.0015468188576120813,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.196895691327221,1.196895691327221,1.2003176406599692,1.2003176406599692,1.177999550590814,1.177999550590814,1.165109458385073,1.165109458385073,1.1956359320692547,1.1956359320692547,0.6783380913202395,0.7034106761690275,0.6471004585315457,0.6914966207724365,0.6333113866765429,0.681617007465452,0.7020198537392706,0.652092056471248,0.6999998105807149,0.6389720885189374,35.09588164248268,35.09588164248268,35.26297445452735,35.26297445452735,34.17937318562029,34.17937318562029,33.56031715016894,33.56031715016894,35.0344534527309,35.0344534527309,14.671161556414361,15.406765698578326,13.792736827925182,15.053832222076863,13.418433089533892,14.765817146309544,15.365249014578694,13.930266046592848,15.305098495119168,13.57109479872615,290.9509564223598,290.9509564223598,0.0,323.2788404692887,0.0,290.9509564223598,323.2788404692887,0,0
+2017/08/14 11:00:00,323.9513971289987,0,975.2256590322684,0,0,0,95.71008290651984,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.8584612208318886e-09,20.868040945863974,0,0,0.0,460.6155476003784,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13605.939297795328,8232.122654466164,13056.242396177859,8570.945847175126,82252.65736790252,14370.933043768002,9708.230907930109,12927.090281517556,9252.680718058864,75742.99174785608,14584.864197721856,9733.360777099444,13201.936321379542,9512.724087833167,76804.53500822984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05192173644302513,0.001642767548621484,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.216807748414817,1.216807748414817,1.217503964410062,1.217503964410062,1.1967209901738354,1.1967209901738354,1.1897881215842758,1.1897881215842758,1.2159578144023213,1.2159578144023213,0.6748433684878389,0.6957882346451945,0.6449711958030997,0.6866433020048629,0.6270951988407251,0.6838915651938168,0.7000638530620807,0.6545767603208265,0.699408674213091,0.6357122144653867,36.07287347095571,36.07287347095571,36.10723611111255,36.10723611111255,35.08736013682953,35.08736013682953,34.7499101458461,34.7499101458461,36.03094218192897,36.03094218192897,14.570788166519236,15.180257579627437,13.734399754548775,14.91181870775118,13.252392035087055,14.831752155118636,15.30700277473207,13.999127584250871,15.287529632822597,13.483010526025495,323.9513971289987,323.9513971289987,0.0,359.9459968099985,0.0,323.9513971289987,359.9459968099985,0,0
+2017/08/14 12:00:00,321.56996372062133,0,912.3326208668979,0,0,0,113.90645508278223,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.8048356812865146e-09,18.615059350031178,0,0,0.0,433.212861947552,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16898.695748160026,9962.166189237665,14804.792062258812,9324.82581381785,88034.15623474403,18740.09888719043,11810.392384914447,16682.669813183744,11368.549066202517,90646.96658532311,19128.43766359883,11899.9256625888,17031.88416402922,11648.0134167305,92482.27555510103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04857326450580814,0.001536824230605418,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2399799246033274,1.2399799246033274,1.2058225914752725,1.2058225914752725,1.1902771803160572,1.1902771803160572,1.1956851065048966,1.1956851065048966,1.2005607333535044,1.2005607333535044,0.6965197013329779,0.6912848585353031,0.645757974370647,0.6840531590741422,0.6181549302794171,0.7167069193280069,0.7035946496124049,0.6616893672728936,0.7021882561001249,0.6315553665130377,37.22369168231225,37.22369168231225,35.532487137635215,35.532487137635215,34.77366838753481,34.77366838753481,35.03685042347023,35.03685042347023,35.2748574743205,35.2748574743205,15.20188499250446,15.04761458320695,13.755932842376424,14.836444960134074,13.016527539677341,15.807875928514463,15.412263641139617,14.197726773071949,15.370271459776873,13.371358008735655,321.56996372062133,321.56996372062133,0.0,357.2999596895792,0.0,321.56996372062133,357.2999596895792,0,0
+2017/08/14 13:00:00,307.99733152600606,0,887.947872356348,0,0,0,103.01477973581562,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.7502889274028535e-09,16.328352318357602,0,0,0.0,444.3184659495463,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15497.742201672238,9312.302394147382,13505.057300337103,8774.344874910164,78434.37385246377,16626.072859157528,10609.722754742073,14630.24046782998,9999.593742441124,79135.70161824138,17155.34744587957,10819.264729434588,15105.487813394986,10346.070326871168,80986.26549476897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04727500243316067,0.0014957481235901675,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2167532195064605,1.2167532195064605,1.2017148252642986,1.2017148252642986,1.175843070802024,1.175843070802024,1.188669735331042,1.188669735331042,1.1785260133699411,1.1785260133699411,0.6822362842170344,0.6878600839871264,0.6344922079117296,0.6700453782920459,0.5992567431747144,0.7040939323840689,0.704159489876718,0.65362891032147,0.6926794814371645,0.6128069820699101,36.07018269604271,36.07018269604271,35.331295789836105,35.331295789836105,34.075455030963326,34.075455030963326,34.69560594796053,34.69560594796053,34.204764075050804,34.204764075050804,14.783746609106231,14.947327474767732,13.450163558502084,14.433844115614548,12.529366303540343,15.427191785255047,15.42915269925112,13.972827126921914,15.088598324754699,12.87709455221686,307.99733152600606,307.99733152600606,0.0,342.2192572511178,0.0,307.99733152600606,342.2192572511178,0,0
+2017/08/14 14:00:00,287.71850477702156,0,830.0159604321543,0,0,0,98.6061571978483,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.694811686916963e-09,14.044131432664155,0,0,0.0,421.87690653789673,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14978.697556369614,9617.988715906515,12812.667311731338,8369.546331946278,75906.51328098378,14844.635307923389,10708.961471072946,12667.106733965767,9371.808512076896,69402.94865568538,15175.479816577836,10889.222600624504,12948.925779899895,9577.49087930717,71361.1056185249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044190664531763235,0.001398161822350821,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2038725971204587,1.2038725971204587,1.2206599326656091,1.2206599326656091,1.1505098046524826,1.1505098046524826,1.1637112539052754,1.1637112539052754,1.163374697649671,1.163374697649671,0.6668068260821844,0.6978810076318195,0.6109658998526475,0.6489776019527671,0.584076270403347,0.6823758017453391,0.7137621458379246,0.6226100198572635,0.662231591474811,0.5959399596431053,35.436919523948944,35.436919523948944,36.263171745333956,36.263171745333956,32.8653470813189,32.8653470813189,33.49347307504921,33.49347307504921,33.47739231406517,33.47739231406517,14.341972877715634,15.242196508123442,12.829380619534291,13.844329427399643,12.149267199199087,14.787788246547649,15.718383373317138,13.133629339110769,14.212956749113872,12.445464534337745,287.71850477702156,287.71850477702156,0.0,319.68722753002396,0.0,287.71850477702156,319.68722753002396,0,0
+2017/08/14 15:00:00,271.0979209779504,0,830.0289502961975,0,0,0,88.81585154991924,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.6948116869169634e-09,14.081885871830593,0,0,0.0,421.8898964019401,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13955.012913941422,11245.123235637198,12058.733157747654,7939.919436756536,72118.2136821031,12385.459957527726,10903.94934790406,10389.492269431565,8191.938938058396,58396.44305521397,12600.097922106055,11211.234129089735,10592.808727189398,8348.44035774684,60461.02548885469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044191356121746565,0.0013981837037758157,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1894861754053268,1.1894861754053268,1.3103125592220837,1.3103125592220837,1.147070440034164,1.147070440034164,1.1605911917170024,1.1605911917170024,1.160025517753445,1.160025517753445,0.6474213710757101,0.7482447794536792,0.5982564525439085,0.6401705057067205,0.5700369135011772,0.6594002324336309,0.7750892455170351,0.6083064655736795,0.6523180497962464,0.5825176804607263,34.735245259158475,34.735245259158475,40.800082834159795,40.800082834159795,32.70260080872664,32.70260080872664,33.344529941186735,33.344529941186735,33.31755855742256,33.31755855742256,13.801546165533296,16.78970916111119,12.50401254361374,13.603592810624676,11.806640798034493,14.133570021812133,17.659011043717214,12.760717800968152,13.936518204515963,12.110808252568887,271.0979209779504,271.0979209779504,0.0,301.2199121977227,0.0,271.0979209779504,301.2199121977227,0,0
+2017/08/14 16:00:00,295.6504853327536,0,883.2772326036328,0,0,0,90.45643516981004,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.6948116869169634e-09,14.10938843176077,0,0,0.0,421.902649940559,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13539.378809259344,12244.05263238147,12567.053651223923,8271.769141739474,75280.16077433304,11860.675125229132,11409.005826284612,10572.922930586403,8125.7373854304815,58893.19668840728,11983.886064541017,11819.304808048388,10765.68478866712,8288.31265285013,60909.80359667315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04702633411315211,0.001487880431281214,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1701390567132302,1.1701390567132302,1.324644704847876,1.324644704847876,1.1549857065478544,1.1549857065478544,1.1684282825866976,1.1684282825866976,1.1744808425916415,1.1744808425916415,0.6185043515023869,0.7607705436850035,0.5892611821484224,0.6304011802817499,0.5610217600488676,0.6287415470614788,0.791325254068731,0.5997285547170726,0.6432111636547545,0.5737577592129333,33.801264583039114,33.801264583039114,41.5427725127119,41.5427725127119,33.07770011447286,33.07770011447286,33.719221363091464,33.719221363091464,34.00988330848634,34.00988330848634,13.025680930922618,17.191497838890527,12.277965999439331,13.340489646342945,11.591136803847675,13.296204558376019,18.19968940609806,12.541340096788602,13.68632718873711,11.896614067906171,295.6504853327536,295.6504853327536,0.0,328.5005392586151,0.0,295.6504853327536,328.5005392586151,0,0
+2017/08/14 17:00:00,310.0509673567048,0,908.8580485133365,0,0,0,97.91383107332618,0.0,16.798297355077125,0.0,133.89528835348938,0,39.380909295966944,2.8048356812865146e-09,18.630666073586035,0,0,0.0,447.4834658502627,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13384.46431533016,13019.662731842609,13116.714376399706,8280.76154417575,78994.43156876315,13100.315954259358,12860.490186315614,12494.941306790346,8699.091873810337,68612.94041235714,13154.328542304853,13319.422577913725,12718.12153454112,8839.839598108743,70455.59059448594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04838827570006562,0.0015309713137395592,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.160571035573719,1.160571035573719,1.3568424487655721,1.3568424487655721,1.163862637178289,1.163862637178289,1.1613292841425427,1.1613292841425427,1.1826567965320443,1.1826567965320443,0.6134558747306966,0.7914948115981061,0.6009783301295728,0.6269272572480521,0.5721964619948249,0.6179296185214177,0.8227701480929903,0.610972147839089,0.6358503167257296,0.5852073609373006,33.343568723735544,33.343568723735544,43.226306030857174,43.226306030857174,33.50070735510006,33.50070735510006,33.37973719256122,33.37973719256122,34.40427720829673,34.40427720829673,12.89394647244417,18.2053949561478,12.57310401188488,13.247929393210299,11.8587874141178,13.010628113028417,19.278593812571998,12.829542295096033,13.486732803866843,12.1772434032668,310.0509673567048,310.0509673567048,0.0,344.50107484078313,0.0,310.0509673567048,344.50107484078313,0,0
+2017/08/14 18:00:00,300.08324365986965,0,915.2629767233235,0,0,0,103.9819920905368,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.9629857459635396e-09,25.555645805789272,0,0,0.0,489.3787465727939,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12820.841913006218,11842.909233353652,13376.83016220548,7948.009553534863,78704.63448863098,15025.288945631917,13455.497551553577,15223.387296623125,9456.720498270437,80287.78703780546,14981.113137791828,13800.663441893466,15471.526511341059,9530.749271331923,81931.63010199965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048729278822138365,0.0015417604148231568,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.151885384304827,1.151885384304827,1.3057499358063502,1.3057499358063502,1.1815295058590987,1.1815295058590987,1.1526765578235951,1.1526765578235951,1.1825949002107612,1.1825949002107612,0.627014318512402,0.7859181971863809,0.6345376898857988,0.6345313243632154,0.5928919927973035,0.6278818640935905,0.8078095285742012,0.6448676212420679,0.6393232376224344,0.6047022969649745,32.93054244053779,32.93054244053779,40.564569221033345,40.564569221033345,34.34977938138907,34.34977938138907,32.968066991786046,32.968066991786046,34.40128390291615,34.40128390291615,13.250242683104545,18.018383722271352,13.4513869383115,13.451215712290747,12.368783760105643,13.273312053995156,18.76007444824964,13.73156705524994,13.5806106132909,12.668153171986134,300.08324365986965,300.08324365986965,0.0,333.4258262887441,0.0,300.08324365986965,333.4258262887441,0,0
+2017/08/14 19:00:00,290.3495712901716,0,882.4310025026963,0,0,0,99.6413071032297,0.0,19.10774862870365,0.0,101.68988858149199,0,39.380909295966944,3.0139032760776996e-09,27.0977424753112,0,0,0.0,492.03712486471085,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12543.20845336284,9460.600938524169,12661.043504117055,7390.512638141004,78577.70318352222,14455.393780567649,11782.117156726033,14410.901278599538,9026.79252101633,80153.52089384318,14324.300470880005,11871.506696523627,14555.307485071238,9047.832259377232,81326.68161378567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04698128019576998,0.0014864549567404144,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1691813574766565,1.1691813574766565,1.2127871874680567,1.2127871874680567,1.1705331969789772,1.1705331969789772,1.1401719862071897,1.1401719862071897,1.1936104623753647,1.1936104623753647,0.6256195929560392,0.727668254275931,0.6249361333333634,0.6316641864653315,0.6008840868649039,0.620953058461081,0.7309318565886519,0.6271625505551929,0.6310598099639791,0.6090822010066156,33.755325380048376,33.755325380048376,35.87469821958446,35.87469821958446,33.82017895986155,33.82017895986155,32.377309569807636,32.377309569807636,34.93578469838158,34.93578469838158,13.213223237261758,16.144275946263747,13.195113352752458,13.374271346842377,12.570706390254642,13.089975597269685,16.245433536227225,13.254182087894307,13.358097418410935,12.780714479293508,290.3495712901716,290.3495712901716,0.0,322.6106347668573,0.0,290.3495712901716,322.6106347668573,0,0
+2017/08/14 20:00:00,306.0153551458114,0,818.9768013153135,0,0,0,94.94227810576899,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,2.9111748183029157e-09,23.1693478709739,0,0,0.0,464.0732761898724,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10994.89936306251,7883.326212415068,10973.746786160858,6823.340189013634,72078.02122150769,14147.4438053632,10759.22912647124,13778.070473363421,8728.93863618838,79492.46122651617,13967.16763106415,10685.8829965459,13800.043939603403,8705.829076705837,80267.72649234819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04360293152360387,0.0013795663596563605,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1651532849113746,1.1651532849113746,1.2065062426516608,1.2065062426516608,1.1538934308657274,1.1538934308657274,1.1242349840836738,1.1242349840836738,1.1909892921249468,1.1909892921249468,0.6254863369381486,0.698181959067335,0.6161332830627357,0.6286783437644162,0.6048981437157978,0.6193238410246851,0.6935524131659855,0.6145161694535464,0.625291194418735,0.6105216719683446,33.5624133429034,33.5624133429034,35.56601800674798,35.56601800674798,33.02582047807738,33.02582047807738,31.631683413621033,31.631683413621033,34.808275020954184,34.808275020954184,13.20969071221485,15.251119196719117,12.963672752110725,13.294520425237536,12.673168551707576,13.047168952704908,15.114293905104361,12.921521941700036,13.204519009053499,12.817889931833662,306.0153551458114,306.0153551458114,0.0,340.0170612731238,0.0,306.0153551458114,340.0170612731238,0,0
+2017/08/14 21:00:00,280.9296007225343,0,808.7881966918271,0,0,0,83.42416185901924,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9629857459635396e-09,25.609501409932555,0,0,0.0,489.37502407893004,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10081.097940854152,7171.1583454017145,9970.619342047263,6204.6646462945555,67183.18295171816,11771.46352572145,9271.428017684095,11250.370341358637,7465.564742101433,66652.33166379936,11536.660820012803,9108.485163300873,11172.896736535466,7401.95682067517,67178.81981828652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04306048266668208,0.0013624036559413996,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1635805288679864,1.1635805288679864,1.1986958503953709,1.1986958503953709,1.1513583332983102,1.1513583332983102,1.114064864799924,1.114064864799924,1.183309029763746,1.183309029763746,0.6155556811239328,0.6841233503938927,0.6060311336552661,0.6241803998469914,0.5961721881535282,0.606068298937951,0.6741926680188233,0.6004587242769007,0.617326693777749,0.5991562148055631,33.487226577060355,33.487226577060355,35.18374066261582,35.18374066261582,32.90555589552855,32.90555589552855,31.160221032515295,31.160221032515295,34.43582614845029,34.43582614845029,12.948604263149733,14.838483719402518,12.702215617221825,13.17511199762653,12.451323471199203,12.703169387078574,14.552157493333894,12.559889632943367,12.994852331959152,12.526816309087565,280.9296007225343,280.9296007225343,0.0,312.14400080281587,0.0,280.9296007225343,312.14400080281587,0,0
+2017/08/14 22:00:00,205.01409270861393,0,620.328514431882,0,0,0,68.39184570149108,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.858461220831887e-09,20.869289398942435,0,0,0.0,460.62192812543344,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5545.154174348815,4085.6490809147344,5617.5610005125745,4299.434697494122,39843.63482540803,10701.130632488872,8629.66475514371,9882.03855237746,6548.9439387157745,61748.51136212072,10363.455884339977,8390.350785514067,9708.335259713875,6451.510588608249,61817.896360880135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03302674958981957,0.0010449433354783695,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1177898873508205,1.1177898873508205,1.149070084127092,1.149070084127092,1.1064132706066852,1.1064132706066852,1.0632559255347271,1.0632559255347271,1.117320716131207,1.117320716131207,0.6322664070611371,0.6922799507587624,0.6167716152413795,0.6346374287751919,0.6154977609443084,0.6198109990055971,0.6786557108299298,0.6076877772346131,0.6249131096813594,0.6136204931485172,31.332506014361584,31.332506014361584,32.79717578800269,32.79717578800269,30.80778510756072,30.80778510756072,28.8575132851972,28.8575132851972,31.310781090364117,31.310781090364117,13.39040334220519,15.07684873949438,12.980342414543642,13.454070041548846,12.947094039271164,13.059956644908013,14.680310235769412,12.744788157376462,13.194503639350245,12.898224563849297,205.01409270861393,205.01409270861393,0.0,227.79343634290436,0.0,205.01409270861393,227.79343634290436,0,0
+2017/08/14 23:00:00,141.31437528191125,0,452.43529099613636,0,0,0,54.02907661579981,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6383946875649036e-09,11.774317604634817,0,0,0.0,399.1997622273202,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2721.2672460169315,2233.0012065304545,2824.6138623161496,2852.2723071464416,21728.37201764471,9222.028623200304,7665.665922362488,8303.627931784924,5681.435600617822,52459.31613811132,8763.00541127147,7325.22107591857,7997.0062843426995,5521.959886131913,52250.587381720616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024087990014470574,0.0007621272133437354,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0967103067211892,1.0967103067211892,1.1245606523636906,1.1245606523636906,1.085928577322071,1.085928577322071,1.0257138676118533,1.0257138676118533,1.0805327439832808,1.0805327439832808,0.6469043321884544,0.6998053867520017,0.6304207109097801,0.6459627023675678,0.6292354390072926,0.6327430181086668,0.6837931305775038,0.6196152520541702,0.6343017548370603,0.6250428170637846,30.36370579604474,30.36370579604474,31.646837116445425,31.646837116445425,29.87403087084637,29.87403087084637,27.214798950972167,27.214798950972167,29.630477075494355,29.630477075494355,13.78735518192876,15.299318458822441,13.34101150638692,13.761540377436091,13.309370913267543,13.403181722682305,14.828894094966586,13.054817132025931,13.445041702565263,13.197938856379196,141.31437528191125,141.31437528191125,0.0,157.01597253545694,0.0,141.31437528191125,157.01597253545694,0,0
+2017/08/15 00:00:00,48.23654819402376,0,460.70215575818986,0,0,0,7.112616447875312,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.7424207802125844,2.581028657082732e-09,9.584189966931655,0,0,0.0,407.46662698937365,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2843.560157741086,2313.6690243970993,2689.9200246811115,1425.0906136992646,15437.47132216454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024528124017724147,0.0007760527464079701,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0334448912837004,1.0334448912837004,1.0461117164361196,1.0461117164361196,1.0276520493483816,1.0276520493483816,0.9906047876565671,0.9906047876565671,1.0217763293526794,1.0217763293526794,0.8515451834774583,0.9738279908715065,0.8233457339955574,0.8341008425450291,0.8211548192445728,0.8153827713409436,0.9325622665548109,0.7957779631846302,0.8039968092501685,0.814138702525144,27.548878135468826,27.548878135468826,28.10098861665935,28.10098861665935,27.298345902923813,27.298345902923813,25.725734692036696,25.725734692036696,27.045496864151403,27.045496864151403,20.302298121407162,25.030739256382404,19.298731160558233,19.677563860672137,19.222154549632023,19.021376975008764,23.367939528603884,18.34992580196011,18.629438694385215,18.978286424101583,48.23654819402376,48.23654819402376,0.0,53.5961646600264,0.0,48.23654819402376,53.5961646600264,0,0
+2017/08/15 01:00:00,23.755177572774105,0,41.36066707457382,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5580821490963148,0,0,0.0,5.870314562029681,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.00220207255117215,6.96720405478982e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.140018827739581,1.140018827739581,1.1881748445241345,1.1881748445241345,1.1276544867566958,1.1276544867566958,1.0888159529610613,1.0888159529610613,1.1152009038414543,1.1152009038414543,0.89507503606416,1.0474363878123751,0.8622753110677898,0.870462310706409,0.8815251232791871,0.8632061240106409,1.0154478626385908,0.840430496068681,0.844798594767552,0.8741704830593449,32.370104780970195,32.370104780970195,34.671587877571795,34.671587877571795,31.790970348841043,31.790970348841043,30.004774362017585,30.004774362017585,31.21271467161057,31.21271467161057,21.91618231367373,28.159064846352464,20.692864385800434,20.994068509964848,21.40546318173955,20.72696994681995,26.774601002366396,19.902780226993684,20.05917781984465,21.131404030941766,23.755177572774105,23.755177572774105,0.0,26.394641747526784,0.0,23.755177572774105,26.394641747526784,0,0
+2017/08/15 02:00:00,28.34422385756306,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248607710901646,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1665135242412628,1.1665135242412628,1.2255574175388733,1.2255574175388733,1.15198210736649,1.15198210736649,1.1107530288484313,1.1107530288484313,1.180451781694963,1.180451781694963,0.8839186348411745,1.045649732182686,0.8491945131881503,0.8563623466906795,0.9034945064300351,0.8516432035559206,1.0165377387036336,0.8274118146118806,0.8303371179528146,0.8931948320764846,33.62750205747584,33.62750205747584,36.505699225161216,36.505699225161216,32.93512885865441,32.93512885865441,31.00743519592112,31.00743519592112,34.2977133404945,34.2977133404945,21.49513250263516,28.08074927911062,20.217374277025286,20.47704752301921,22.237297242757023,20.305844331559314,26.821147614935896,19.441382568107997,19.544440760999123,21.84486615282492,28.34422385756306,28.34422385756306,0.0,31.493582063958954,0.0,28.34422385756306,31.493582063958954,0,0
+2017/08/15 03:00:00,23.722024789335133,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249293656573397,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1696828907464163,1.1696828907464163,1.2323320422681852,1.2323320422681852,1.154111926885437,1.154111926885437,1.1145550244767648,1.1145550244767648,1.1748848061552768,1.1748848061552768,0.8961747523170666,1.0631247096201817,0.8607253482979859,0.8663079578566708,0.9224923155811873,0.860015014818829,1.0318863819110886,0.8352729001286483,0.8365858122103013,0.9091836447351992,33.77937958124856,33.77937958124856,36.84226265082006,36.84226265082006,33.03619535121132,33.03619535121132,31.182864854541236,31.182864854541236,34.029322493102114,34.029322493102114,21.957961323618605,28.85168309761444,20.63615234987185,20.84088165368715,22.972406721144424,20.610194987911484,27.481353202605945,19.719140661482243,19.765782271698015,22.455906907430617,23.722024789335133,23.722024789335133,0.0,26.357805321483482,0.0,23.722024789335133,26.357805321483482,0,0
+2017/08/15 04:00:00,65.03732258531096,0,88.72588128136032,0,0,0,15.955980860894563,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,9.048104081148377,0.0,0.5251040936339325,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,998.3415173523703,3492.348514621549,2819.846277478442,2430.5826055110683,2557.125743248032,1572.7167661070876,17669.032185464184,2511.132413751137,2327.9834233065403,2365.79711316635,1403.6120190672436,16381.960598931011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0999687562761806,1.0999687562761806,1.127721308576551,1.127721308576551,1.0935554245378343,1.0935554245378343,1.0401312466996044,1.0401312466996044,1.081386505969288,1.081386505969288,0.6301878794322514,0.7067686752718292,0.6124525332135948,0.6294898934963679,0.6156259364224792,0.6089061631524103,0.6877435429846309,0.5973589767312688,0.6101358810815235,0.6164916682896172,30.512479645696757,30.512479645696757,31.794086855651926,31.794086855651926,30.220006428425364,30.220006428425364,27.839586893000202,27.839586893000202,29.668946176198176,29.668946176198176,13.33479130679288,15.507347539818966,12.867897135398621,13.316158386322869,12.950436311111659,12.776174336709815,14.943923742909476,12.481301728829948,12.807917762228698,12.973029590601016,65.03732258531096,65.03732258531096,0.0,72.26369176145663,0.0,65.03732258531096,72.26369176145663,0,0
+2017/08/15 05:00:00,86.48204001966668,0,212.9421150752648,0,0,0,10.52956636688495,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.641436037758203,0.0,0.5249945850676674,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3793.1556872956844,2784.625686955889,3656.250392205747,2304.320054740194,25210.15725461607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0736732383634495,1.0736732383634495,1.0770738854614574,1.0770738854614574,1.0724328567299983,1.0724328567299983,1.0519170869883698,1.0519170869883698,1.0716513813582065,1.0716513813582065,0.8428336444109722,0.9601736720986568,0.8176925958262371,0.8284268448277217,0.8361399877033033,0.7989397979140014,0.9093038784135801,0.7840956681233531,0.7906164423508254,0.8328326920467198,29.32232443882714,29.32232443882714,29.47488715911966,29.47488715911966,29.266778564111277,29.266778564111277,28.35597838873919,28.35597838873919,29.23181092906752,29.23181092906752,19.988725274987274,24.47313790149586,19.10155472177408,19.477101351515685,19.74993613509939,18.457117589496363,22.460541116191777,17.95755172025291,18.17585135178814,19.632643068828415,86.48204001966668,86.48204001966668,0.0,96.09115557740742,0.0,86.48204001966668,96.09115557740742,0,0
+2017/08/15 06:00:00,99.60519659278009,0,628.2913028240741,0,0,0,10.646190780596646,0.0,11.110595677687485,0.0,73.80580873715317,0,3.5173699227271826,2.5227053430480685e-09,0.5252314720928896,0,0,0.0,397.6040114925373,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4038.7875947084744,0.0,3943.0935736899405,2641.1173853736022,27391.867285984154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033450694341910316,0.0010583566519206515,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0598113578441013,1.0598113578441013,1.0954426610152557,1.0954426610152557,1.059812623679464,1.059812623679464,1.0557464871895554,1.0557464871895554,1.063499159318107,1.063499159318107,0.9988744459443807,1.126081558102009,0.9706039111653543,0.9766501714626027,1.0535078504868594,0.9585022061846453,1.0860828397734237,0.9413581107873679,0.9426940067569088,1.044833316060974,28.704667694027208,28.704667694027208,30.305925780885218,30.305925780885218,28.704723785050547,28.704723785050547,28.5248432037683,28.5248432037683,28.868322274164214,28.868322274164214,26.07228166124868,31.717652683595375,24.8984233305233,25.146891864442424,28.4260620978567,24.405380085159777,29.881008744082436,23.716736319952005,23.769979654716423,28.04500137779965,99.60519659278009,99.60519659278009,0.0,110.67244065864455,0.0,99.60519659278009,110.67244065864455,0,0
+2017/08/15 07:00:00,202.17665745791948,0,758.208646130528,0,0,0,57.803079649827716,0.0,8.56223842021586,0.0,69.33401494192633,0,39.380909295966944,3.0139045293876777e-09,27.09641514696876,0,0,0.0,492.03100228644706,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2706.279558743941,1623.1639909399264,3273.0722843812378,4034.6677090235044,28336.357043189513,8259.390035392116,5415.53302126181,8283.962400376355,4719.192122662669,60214.34297969103,8143.437087194848,5347.584030691858,8269.167309294924,4662.040666560043,60470.859122627655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04036758993018823,0.0012772024068598141,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0997481953485229,1.0997481953485229,1.1209250246567681,1.1209250246567681,1.093632683503142,1.093632683503142,1.0716188845787948,1.0716188845787948,1.0988917055126044,1.0988917055126044,0.7482561037730098,0.8310022809120161,0.7201930303429173,0.7518921351563141,0.7551122305208977,0.7405496152379692,0.8206549322223999,0.7170024706695786,0.7490296986770967,0.7572003687414598,30.502397883754796,30.502397883754796,31.477865620590293,31.477865620590293,30.223521364084007,30.223521364084007,29.230357305364507,29.230357305364507,30.463263745189565,30.463263745189565,16.79006937743148,19.567924445610743,15.914302738122302,16.906012292051955,17.009164824867653,16.546204100078327,19.20471081884925,15.816878452184497,16.814689737479853,17.076293406461545,202.17665745791948,202.17665745791948,0.0,224.6407305087994,0.0,202.17665745791948,224.6407305087994,0,0
+2017/08/15 08:00:00,240.106487451266,0,787.9850385309552,0,0,0,80.54952797418049,0.0,11.36563784648343,0.0,83.2008179303116,0,39.380909295966944,2.962986990987252e-09,25.609594401360578,0,0,0.0,468.5718659180581,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7265.704571913206,4135.56991377747,6465.710271298043,6848.183074555289,46526.12128403013,13362.031042887145,9238.664144252492,11735.225250003848,9356.528592918827,74970.34876605502,13250.078318026197,8969.982427912404,11665.670005649808,9548.801180420218,75173.85799959493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04195290711715933,0.0013273607375983438,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.158758291747561,1.158758291747561,1.1485749663141005,1.1485749663141005,1.1255712319056823,1.1255712319056823,1.1973101469454166,1.1973101469454166,1.131982935401578,1.131982935401578,0.6995645882871515,0.7338340007549898,0.6599716884127905,0.75021041035562,0.6617677968824226,0.6994816855303317,0.7251277025905098,0.6578170889753582,0.7653577714147668,0.6635456829167419,33.25717322564748,33.25717322564748,32.77374693482939,32.77374693482939,31.69388268955369,31.69388268955369,35.11610134342429,35.11610134342429,31.993146381779923,31.993146381779923,15.292162010691428,16.335772046015762,14.149564747807972,16.85231638504976,14.199928913541044,15.2896987483482,16.065846861173057,14.089332639226654,17.340320674049934,14.249919742649723,240.106487451266,240.106487451266,0.0,266.7849860569622,0.0,240.106487451266,266.7849860569622,0,0
+2017/08/15 09:00:00,274.1099851709481,0,831.8507679586568,0,0,0,92.94944469044613,0.0,11.198411640824625,0.0,106.27511244621549,0,39.380909295966944,2.8584624467445182e-09,20.874131892182206,0,0,0.0,459.20206657694354,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13018.347328992435,7457.886126055718,10632.899948069795,8917.742471457335,66722.83828185631,14724.32249328496,9982.375052299752,12451.612847981884,10819.483857517715,74175.61879083802,14813.92454779165,9821.570217094792,12420.256678192669,11176.39203230506,74759.78315586205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04428835104352838,0.0014012525554899546,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.195665616907751,1.195665616907751,1.1576745596282811,1.1576745596282811,1.1412995396616104,1.1412995396616104,1.222424108263674,1.222424108263674,1.1424448447520819,1.1424448447520819,0.688240965326359,0.7008344137095498,0.638009428106102,0.7402546751586278,0.6299733777426356,0.697587739917036,0.6989264968512557,0.6411524580719823,0.7615968213051046,0.6338348698022822,35.035900409352195,35.035900409352195,33.20557134916878,33.20557134916878,32.4303744388247,32.4303744388247,36.3504592194221,36.3504592194221,32.484316457430396,32.484316457430396,14.958455705505003,15.329928993048071,13.54503502336074,16.53692158171927,13.329062877351348,15.233505390969214,15.273210257071,13.630267277894447,17.218238276709272,13.4324924165102,274.1099851709481,274.1099851709481,0.0,304.5666501899423,0.0,274.1099851709481,304.5666501899423,0,0
+2017/08/15 10:00:00,300.7409544205415,0,918.239406596385,0,0,0,88.6123345458493,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.8048368963549317e-09,18.62214958651632,0,0,0.0,456.8648239333113,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13095.576588087622,8317.235817690884,12165.416059862815,8147.025752810957,76256.91596455609,11968.513512102489,9131.233508527182,10699.037746403827,9024.535953018474,64215.873446793026,11920.708016731909,8947.358793653695,10620.410567638606,9156.823910447674,65345.083180089154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0488877461532416,0.0015467742107184216,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1645485569638727,1.1645485569638727,1.1709712890162156,1.1709712890162156,1.155200160244192,1.155200160244192,1.1637325072997717,1.1637325072997717,1.1734623396952948,1.1734623396952948,0.6408451714083075,0.679795293434233,0.6179064518258269,0.6776607817924399,0.6062803748397484,0.6413480248918392,0.675213696073518,0.6179767522147346,0.6840358525189191,0.6119983927757889,33.53349484665004,33.53349484665004,33.84120809929678,33.84120809929678,33.08789038090997,33.08789038090997,33.49448868621522,33.49448868621522,33.96089375349774,33.96089375349774,13.62191542421759,14.713170576498172,13.010021655202408,14.651666981184832,12.708613022062437,13.6355847906038,14.581399464231694,13.011862050889675,14.83594231106241,12.856120839821912,300.7409544205415,300.7409544205415,0.0,334.1566160228239,0.0,300.7409544205415,334.1566160228239,0,0
+2017/08/15 11:00:00,330.0188884414358,0,975.2011235069831,0,0,0,101.78468447032174,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.8584624467445182e-09,20.860930694499363,0,0,0.0,460.59101207509315,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14827.978217869751,9402.820493306124,14055.222371416321,9117.542752134012,84949.42664472683,14763.728260117492,10501.958653042897,13712.059098186652,10258.948535986065,76095.35276784563,14744.547201400068,10372.194702824781,13704.940275627956,10358.966665700926,77683.76149615113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.051920430153485304,0.001642726218531003,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1969292710984962,1.1969292710984962,1.1955845373575178,1.1955845373575178,1.1826134815953806,1.1826134815953806,1.1973056903922739,1.1973056903922739,1.1949132460826013,1.1949132460826013,0.6561162533468099,0.6872479942795526,0.6320019566067872,0.6885686965017405,0.6061313131984161,0.6637793080642688,0.6888534658580174,0.6384957254765237,0.7024931111904771,0.6153873771424243,35.09751968519126,35.09751968519126,35.0319483315339,35.0319483315339,34.402182486448964,34.402182486448964,35.115883898768075,35.115883898768075,34.99923479180789,34.99923479180789,14.041927628582542,14.929457153154686,13.383317433219716,14.968036064254761,12.704786654300051,14.256499022934648,14.976364316847224,13.558194351293196,15.37936659520399,12.944216270151216,330.0188884414358,330.0188884414358,0.0,366.6876538238176,0.0,330.0188884414358,366.6876538238176,0,0
+2017/08/15 12:00:00,319.7898215630726,0,912.3037311877185,0,0,0,112.19255914583654,0.0,16.73568395689411,0.0,129.49988082968767,0,39.380909295966944,2.8048368963549317e-09,18.548813129428243,0,0,0.0,433.1839722683727,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15996.813369381352,9582.144702266882,14531.178791969633,9436.629486137683,85749.04869782017,18238.14869832551,11836.945596588053,16723.349527887975,11548.807240049453,87987.51962159222,18412.32339122788,11779.263319191412,16833.320825712868,11688.187861236194,90119.32048470428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048571726397889856,0.001536775565943033,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.222800936080023,1.222800936080023,1.1959657034989113,1.1959657034989113,1.1860670623519425,1.1860670623519425,1.2017520666700023,1.2017520666700023,1.1924873834790228,1.1924873834790228,0.6889735036544304,0.6972163780443041,0.6487584884319472,0.6956090209292677,0.613127376515667,0.704326648201093,0.7025671079776612,0.6589820293681129,0.7118619121210759,0.626377898480099,36.36911492776354,36.36911492776354,35.05052925845645,35.05052925845645,34.5693739646988,34.5693739646988,35.33311763684341,35.33311763684341,34.88112665900189,34.88112665900189,14.979875945179998,15.222505248312288,13.838299297262665,15.174962258479525,12.885412999915204,15.434153471899819,15.381574841807634,14.121873723319325,15.66083306271517,13.233340060657142,319.7898215630726,319.7898215630726,0.0,355.32202395896957,0.0,319.7898215630726,355.32202395896957,0,0
+2017/08/15 13:00:00,317.3448537765644,0,894.1060704212863,0,0,0,112.18102113832752,0.0,16.73568395689411,0.0,129.2730206906943,0,39.380909295966944,2.7502901307460143e-09,16.34224348947677,0,0,0.0,450.47666401448464,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16189.724654168826,9650.769901783686,14366.22906062141,9332.669527411997,83212.46567404339,18421.807646996924,12074.827186336086,16693.48003482721,11556.31105800694,84829.77260150074,18537.277446518932,11988.690964215348,16727.59557629982,11621.100261607751,87415.77591410175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04760286945955635,0.0015061216077631569,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2230501364294788,1.2230501364294788,1.200152079974941,1.200152079974941,1.1806677649659507,1.1806677649659507,1.1952050542758252,1.1952050542758252,1.184634106045643,1.184634106045643,0.6946365039535308,0.7037870309884013,0.6512415367589828,0.6924015895965182,0.6089857283355375,0.709010360212527,0.7104955559096989,0.6608071133055925,0.7067197034176159,0.622093731092982,36.381454295566726,36.381454295566726,35.2548823816724,35.2548823816724,34.30814494321052,34.30814494321052,35.01345365110791,35.01345365110791,34.49995997598819,34.49995997598819,15.146250981819975,15.41801441217683,13.906756064720085,15.080425221145958,12.778226213309338,15.574763262288087,15.619547912928297,14.172973273926502,15.505877194908251,13.120014593199159,317.3448537765644,317.3448537765644,0.0,352.6053930850715,0.0,317.3448537765644,352.6053930850715,0,0
+2017/08/15 14:00:00,283.012327098613,0,829.8952807781167,0,0,0,93.96784873589151,0.0,16.630907673226492,0.0,115.5196477718057,0,39.380909295966944,2.6948128776373783e-09,14.081038416573277,0,0,0.0,421.75622688385914,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14618.128687205226,9197.67977483171,12783.012001235838,8436.90874866595,74686.16687936132,14670.0373626936,10360.684812127536,12761.675973014737,9385.476376597459,67813.04732385775,14950.49643299107,10446.144292766574,12950.472539572052,9553.841608980905,69794.40777580265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04418423945759404,0.0013979585374827538,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2103303346791878,1.2103303346791878,1.2194373906389397,1.2194373906389397,1.1697467837783266,1.1697467837783266,1.1876215291943752,1.1876215291943752,1.1709001106826358,1.1709001106826358,0.683144538624974,0.714963658754036,0.6384949126287185,0.6838489455734424,0.595942585715006,0.69557384988596,0.7249412582216259,0.6458843811224662,0.6964478422056802,0.6081869231549085,35.75382214596664,35.75382214596664,36.202733492546024,36.202733492546024,33.78244452810273,33.78244452810273,34.644742910225915,34.644742910225915,33.83779102370984,33.83779102370984,14.810072631153545,15.754852590994503,13.558172346871103,14.830514638214325,12.445530774916492,15.173923204151237,16.06010209358233,13.759394930420868,15.19975929665415,12.757638594344755,283.012327098613,283.012327098613,0.0,314.4581412206811,0.0,283.012327098613,314.4581412206811,0,0
+2017/08/15 15:00:00,254.93293335363933,0,829.9093935871216,0,0,0,76.05649877232318,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.6948128776373783e-09,14.108226227569787,0,0,0.0,421.7703396928641,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11391.129530003498,8327.460535360447,10057.720943758266,7418.481955590659,60394.09013599698,12199.181236049473,9326.127646653733,10056.46590226208,7009.804797691676,55148.97084192388,12728.196563171268,9704.320170974128,10492.974107375127,7309.647608896616,56829.697007216986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04418499083399891,0.0013979823105084515,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2120828676554651,1.2120828676554651,1.286507886747442,1.286507886747442,1.172466946895855,1.172466946895855,1.1728668699629026,1.1728668699629026,1.181874076726583,1.181874076726583,0.6925091394979475,0.7583679779577517,0.6460299449635365,0.688055939389611,0.6148073102379019,0.7038334565530462,0.7764337961991578,0.653330917085792,0.6989069049276536,0.6255340029850648,35.8400286169486,35.8400286169486,39.576436180262384,39.576436180262384,33.91304621231117,33.91304621231117,33.932266497847664,33.932266497847664,34.36643331207769,34.36643331207769,15.083587985849618,17.11391051241185,13.763382560186983,14.953049009455583,12.929102283403012,15.419402430162634,17.703360350331465,13.964566608292287,15.272628641649078,13.21095421770434,254.93293335363933,254.93293335363933,0.0,283.25881483737703,0.0,254.93293335363933,283.25881483737703,0,0
+2017/08/15 16:00:00,269.4546290137628,0,883.1587819295253,0,0,0,67.58974090625156,0.0,16.798297350153536,0.0,131.64086955684016,0,39.380909295966944,2.6948128776373783e-09,14.0448119018557,0,0,0.0,421.78419926645165,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9452.273723418815,5946.8345650356,9309.04978481954,7326.918632244261,59646.718367755006,9648.621210192978,6929.944154616396,8488.47384794314,5475.043210479663,49671.608076843346,9936.04058345686,7091.501846612471,8819.634360592656,5635.932974771717,50872.18220734926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04702002771152542,0.0014876809011296704,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2005495028911148,1.2005495028911148,1.2191624512567227,1.2191624512567227,1.1786518131385846,1.1786518131385846,1.1674087684051395,1.1674087684051395,1.2063548674546414,1.2063548674546414,0.6766850680011038,0.7104302970312296,0.6447456643829866,0.6818816397789436,0.6274921769226309,0.6799897004135919,0.7127814103684547,0.6477027597714994,0.687699192007228,0.6344697243353463,35.27430846180938,35.27430846180938,36.18914713628274,36.18914713628274,34.21083253416536,34.21083253416536,33.67037136223139,33.67037136223139,35.558592397492504,35.558592397492504,14.623618516847372,15.617578096447744,13.728232207956452,14.773476820792695,13.262945633196438,14.718781992656034,15.688661472173536,13.809274212027333,14.942628569044402,13.449558825605152,269.4546290137628,269.4546290137628,0.0,299.39403223751424,0.0,269.4546290137628,299.39403223751424,0,0
+2017/08/15 17:00:00,269.3672504447591,0,903.2889171905056,0,0,0,60.42723075471742,0.0,17.028300508570425,0.0,133.89528835348938,0,39.380909295966944,2.8048368963549317e-09,18.635521529210127,0,0,0.0,441.91433452743183,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6745.686611978895,3697.100312854169,7369.2159741750675,6974.53309001064,52358.06596193495,7740.362771629119,5276.069579385277,7455.738059476897,3906.6619342084764,49025.73424095097,7817.367876330639,5248.267478846994,7694.841935817993,3872.901574362777,49767.9880452681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0480917710233454,0.0015215901124489403,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.19355789855815,1.19355789855815,1.214044905240124,1.214044905240124,1.1728405672591877,1.1728405672591877,1.155451048707662,1.155451048707662,1.2117524730054776,1.2117524730054776,0.6689964287731478,0.6999995913035308,0.6399653952306165,0.673307735276832,0.6357107737710372,0.6685872703397637,0.698678033163491,0.6400278954358133,0.6750286275692804,0.641777565187649,34.93322569798693,34.93322569798693,35.93664306348754,35.93664306348754,33.931002241661474,33.931002241661474,33.09981375947855,33.09981375947855,35.82377000196868,35.82377000196868,14.40403779402645,15.30509197529696,13.598026320475014,14.526849755635581,13.482971699271474,14.392424308655464,15.265835470194375,13.59972231932754,14.576095803849924,13.647269925322234,269.3672504447591,269.3672504447591,0.0,299.29694493862127,0.0,269.3672504447591,299.29694493862127,0,0
+2017/08/15 18:00:00,240.80809821834848,0,915.2452904026848,0,0,0,45.74075764578283,0.0,19.165343546314112,0.0,110.93442390708215,0,39.380909295966944,2.9629869909872524e-09,25.586663820239472,0,0,0.0,489.3610602521551,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2108.698214661588,0.0,3648.872511513431,6265.719587275036,35328.88224185767,4632.226043545776,2624.6731786287132,5407.3220153918455,1221.274022008976,44688.31470245782,4485.472460686952,2376.0578405348465,5539.183488462956,914.0108569229407,44921.745623464856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04872833718932717,0.001541730622217383,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1864830674511027,1.1864830674511027,1.1977285230178432,1.1977285230178432,1.164306980161803,1.164306980161803,1.135483254628281,1.135483254628281,1.2145964564166054,1.2145964564166054,0.6661022717197829,0.6894235136708987,0.6366297639701574,0.6718692184270305,0.650574514698021,0.6614235609748422,0.6816802349474439,0.6321882778791932,0.669214004879051,0.6556213322481447,34.58953712438526,34.58953712438526,35.136517362423845,35.136517362423845,33.521945634060984,33.521945634060984,32.157087397209054,32.157087397209054,35.96382193014456,35.96382193014456,14.32204623275885,14.993046241823691,13.507756799577848,14.485782685754614,13.888340245815343,14.190265466479175,14.767646964615508,13.388309567108607,14.410216390441079,14.028156932245338,240.80809821834848,240.80809821834848,0.0,267.56455357594274,0.0,240.80809821834848,267.56455357594274,0,0
+2017/08/15 19:00:00,232.5576790046747,0,882.4145938447367,0,0,0,43.559486032934814,0.0,20.82965261595583,0.0,101.68988858149199,0,39.380909295966944,3.0139045294011773e-09,27.0977424753112,0,0,0.0,492.02071620675133,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1173.045715834967,0.0,2987.3155121348277,5827.0728820233035,31503.521769694155,4290.542210932314,2311.411955532355,5177.8141138466735,1048.707393788459,44797.59759919962,3968.3679539807217,1937.2908625554567,5151.738572217344,632.5354902783603,44855.460876878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.046980406586666204,0.001486427316357327,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1837035806517007,1.1837035806517007,1.1647504487920977,1.1647504487920977,1.1652462204836531,1.1652462204836531,1.121758401175559,1.121758401175559,1.2105333819169193,1.2105333819169193,0.6654352248437875,0.6886641167014036,0.6381825503069561,0.6729521294753019,0.6543403006035227,0.659098339011138,0.6795100864604243,0.6325319850766451,0.6688123005758166,0.6575326115650768,34.454916985304905,34.454916985304905,33.54314819573405,33.54314819573405,33.56685858346445,33.56685858346445,31.516559579667614,31.516559579667614,35.76380553039665,35.76380553039665,14.30320020953475,14.97082629540958,13.549718577424187,14.516689514778193,13.992562775574143,14.125125909377033,14.704941243274035,13.397522517342495,14.398810632654019,14.081395068598184,232.5576790046747,232.5576790046747,0.0,258.3974211163052,0.0,232.5576790046747,258.3974211163052,0,0
+2017/08/15 20:00:00,254.97201917419576,0,818.9561310200884,0,0,0,47.33204893043296,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,2.9111760541951613e-09,23.168216277148574,0,0,0.0,464.05260589464706,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1254.7529196995004,0.0,2854.4106641740213,5463.039380270894,31593.486080479648,5269.566052830004,2980.7350879080836,6002.999197690885,1879.4156372676496,49329.32865526436,4896.607495781124,2580.4757145263443,5908.939551028489,1466.894312576781,49093.36768866608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043601831021775464,0.0013795315405456228,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1664514993985957,1.1664514993985957,1.1396859996950006,1.1396859996950006,1.1473620539315375,1.1473620539315375,1.1062286233408753,1.1062286233408753,1.1968765657072615,1.1968765657072615,0.6558103505815184,0.6753198539557396,0.630061280017407,0.6614738404856512,0.651412235510685,0.6484710051961095,0.6647059003368059,0.623963935395886,0.6558511091666717,0.6528374082426316,33.624532872659756,33.624532872659756,32.35445068162443,32.35445068162443,32.71638505197349,32.71638505197349,30.799304499233983,30.799304499233983,35.094948697148595,35.094948697148595,14.033414929925186,14.584442386981365,13.3314101325102,14.191676601038338,13.911471987656,13.830390750195619,14.28261671489669,13.169387582959104,14.034548930529866,13.950894766339943,254.97201917419576,254.97201917419576,0.0,283.3022435268842,0.0,254.97201917419576,283.3022435268842,0,0
+2017/08/15 21:00:00,216.89090536293946,0,808.7717639268653,0,0,0,22.816925989391546,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.962986990987252e-09,25.610017122419666,0,0,0.0,489.3585913139682,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,343.50287394265183,4589.723350148174,18245.3457319051,696.3795089910345,0.0,1838.6797423788248,0.0,25574.242848306538,164.33201468588857,0.0,1634.0948029768713,0.0,24879.510197918924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04305960777410367,0.001362375974950069,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1150416592843397,1.1150416592843397,1.0488490997533522,1.0488490997533522,1.1423057429916499,1.1423057429916499,1.0897098188818835,1.0897098188818835,1.1876059405509611,1.1876059405509611,0.6547484396016161,0.6705357331063936,0.6300904259165452,0.6164591481421543,0.6510957722101502,0.6440042354156449,0.6372665544820532,0.6208065649911605,0.5880756026685747,0.6496636399049559,31.205353768505077,31.205353768505077,28.22107101425361,28.22107101425361,32.477762748505654,32.477762748505654,30.04530798826073,30.04530798826073,34.64398673362592,34.64398673362592,14.003895418214967,14.447794084451544,13.33218848969571,12.972180314029941,13.902730002972447,13.707972094843072,13.524952480859156,13.086121862306555,12.248434909968054,13.863223046774166,216.89090536293946,216.89090536293946,0.0,240.9898948477105,0.0,216.89090536293946,240.9898948477105,0,0
+2017/08/15 22:00:00,142.75298281825619,0,620.3132504859831,0,0,0,6.128153204869396,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.858462446744518e-09,20.871872005206406,0,0,0.0,460.60666417953456,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2750.764176019213,0.0,0.0,0.0,0.0,0.0,9397.52024709599,0.0,0.0,0.0,0.0,8286.646499470982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0330259369260338,0.0010449176233626614,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9314762027272832,0.9314762027272832,0.8589451241972312,0.8589451241972312,0.9781598633879831,0.9781598633879831,1.037366909234188,1.037366909234188,1.075202357187773,1.075202357187773,0.5809102985028579,0.579527489463975,0.5894853346193731,0.517913549302652,0.6336402136810724,0.5472081452661227,0.5310317825840098,0.565018755934975,0.47214854133418593,0.6284697988466966,23.325085577477836,23.325085577477836,20.571137953468238,20.571137953468238,25.209152773827597,25.209152773827597,27.719200694301577,27.719200694301577,29.390874822999592,29.390874822999592,12.071255751453307,12.037318976897353,12.28355617363745,10.609346287299374,13.427263096405397,11.267764619665854,10.899593731063533,11.686248570264894,9.65502324230333,13.288964707088155,142.75298281825619,142.75298281825619,0.0,158.61442535361797,0.0,142.75298281825619,158.61442535361797,0,0
+2017/08/15 23:00:00,87.58021945728295,0,456.2560526844108,0,0,0,0.2827677310247264,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6383958647486335e-09,11.78647066478156,0,0,0.0,403.0205239155946,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1122.8354447260062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02429141019681796,0.0007685632861176428,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7143111856237322,0.7143111856237322,0.6449367942156145,0.6449367942156145,0.7652103008694215,0.7652103008694215,0.9864815814961742,0.9864815814961742,0.8487825570848413,0.8487825570848413,0.456117992329102,0.45106293800584596,0.46920481367558536,0.38754652204343765,0.565064482300833,0.40397190213163897,0.38488194832708,0.4302101184828778,0.3244007295309398,0.5489894288414257,15.735040520856685,15.735040520856685,13.73345884110961,13.73345884110961,17.33552232446111,17.33552232446111,25.553923867084663,25.553923867084663,20.202515000141105,20.202515000141105,9.342113242303498,9.245735290958521,9.596732983619404,8.128245907212843,11.68734067504765,8.400656986601703,8.085141695785524,8.859777163387747,7.188117773254177,11.308999309766563,87.58021945728295,87.58021945728295,0.0,97.3113549525366,0.0,87.58021945728295,97.3113549525366,0,0
+2017/08/16 00:00:00,41.84234918565495,0,456.6604731111789,0,0,0,0.8823253202764637,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.6022594959756014,2.5810298197993944e-09,9.56044337039868,0,0,0.0,403.42494434236266,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172.39507921957383,37.137922846859816,186.0653169458336,789.0813217594139,1930.8329598273958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024312941839895998,0.0007692445322958386,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9016549510552487,0.9016549510552487,0.8763259970551615,0.8763259970551615,0.9157376737993398,0.9157376737993398,0.9588101173394094,0.9588101173394094,0.9449402983637728,0.9449402983637728,0.6584009721119158,0.6741743119175969,0.6413886749262998,0.6067744298242563,0.7776299245032436,0.5770668740120275,0.5758143516889639,0.5751124874587464,0.5148155847558966,0.7464523514386019,22.166891505541457,22.166891505541457,21.211495605140684,21.211495605140684,22.70937246818093,22.70937246818093,24.417853952800172,24.417853952800172,23.85966696752024,23.85966696752024,14.105635299616452,14.551632192364352,13.636690283831285,12.72130216082914,17.742878728230977,11.97713594809558,11.946601992167402,11.929521721690875,10.541889332050388,16.732762926828016,41.84234918565495,41.84234918565495,0.0,46.491499095172166,0.0,41.84234918565495,46.491499095172166,0,0
+2017/08/16 01:00:00,23.770288843793583,0,42.6745754963751,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5731934201157937,0,0,0.0,7.184222983830959,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0022720260087695774,7.18853191846985e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9364822194912411,0.9364822194912411,0.9034992156751498,0.9034992156751498,0.9412638027200043,0.9412638027200043,0.9862790311648126,0.9862790311648126,1.059384300408577,1.059384300408577,0.6793661393560211,0.7045578106152193,0.6479158812138863,0.6359688626875073,0.8526414627862888,0.6021182177122383,0.6105588828800671,0.5836526832137201,0.5500065376069604,0.8110347631627141,23.523004171181043,23.523004171181043,22.23747765698137,22.23747765698137,23.712980260234602,23.712980260234602,25.545500537386076,25.545500537386076,28.685747422328475,28.685747422328475,14.70078914429854,15.441071001914295,13.81512965438668,13.489928639580086,20.341982498345587,12.602134162576618,12.818852124847083,12.138804552995893,11.332605906182508,18.87106029119778,23.770288843793583,23.770288843793583,0.0,26.411432048659535,0.0,23.770288843793583,26.411432048659535,0,0
+2017/08/16 02:00:00,28.3441964165396,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248333300667055,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9671427696985321,0.9671427696985321,0.938366324921018,0.938366324921018,0.9672687732335514,0.9672687732335514,1.0162464971658685,1.0162464971658685,1.1445064073802158,1.1445064073802158,0.681513511228342,0.7084826832258196,0.6478078985858747,0.6399756713960051,0.8806597652894331,0.6042408642229197,0.6154474426554278,0.5817843601134866,0.5556480279563744,0.8332158536407184,24.756827768904458,24.756827768904458,23.597752764389284,23.597752764389284,24.761974408551907,24.761974408551907,26.808704873997513,26.808704873997513,32.581518446690396,32.581518446690396,14.762822313864476,15.558874568996899,13.812162620668616,13.598305161757182,21.37310166070742,12.656343063214251,12.945782146994077,12.092749690455634,11.46435633793213,19.64620843257852,28.3441964165396,28.3441964165396,0.0,31.493551573932887,0.0,28.3441964165396,31.493551573932887,0,0
+2017/08/16 03:00:00,23.722020661613804,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249252379360089,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9590597495523372,0.9590597495523372,0.9371863372934266,0.9371863372934266,0.9554057284585321,0.9554057284585321,0.9905137503555583,0.9905137503555583,1.1500170005597457,1.1500170005597457,0.6714775564931347,0.6994622530933121,0.636210323854903,0.630394862248124,0.9037412763465296,0.5910025586982396,0.6034661252027117,0.5664448820346848,0.543768574067043,0.842623859652827,24.427969593626756,24.427969593626756,23.550922302031324,23.550922302031324,24.280144554922884,24.280144554922884,25.721934213191773,25.721934213191773,32.84200525024828,32.84200525024828,14.474616956314222,15.289121401666009,13.496439985123928,13.340320831489137,22.246752368979784,12.321451796741215,12.636534841331468,11.720352118630089,11.188531593795204,19.981213034470514,23.722020661613804,23.722020661613804,0.0,26.35780073512645,0.0,23.722020661613804,26.35780073512645,0,0
+2017/08/16 04:00:00,47.48962072361008,0,88.72588128136032,0,0,0,0.15935561054778963,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,7.29704271451259,0.0,0.5250888489155726,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102.31301460864617,22.519859321832215,75.0140585174691,429.91305594079444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.009044840882762,1.009044840882762,1.00235610533047,1.00235610533047,1.0101375749014865,1.0101375749014865,1.0071398956452924,1.0071398956452924,1.0477619726544247,1.0477619726544247,0.534409272042568,0.5451036268124106,0.5214924495022206,0.5185729534833136,0.6230029907602898,0.49960812731156157,0.5028113817777589,0.4928289397399582,0.48359494878235104,0.6038518536263071,26.502038448508387,26.502038448508387,26.21896119121108,26.21896119121108,26.54844481368262,26.54844481368262,26.42124645027343,26.42124645027343,28.173348872364343,28.173348872364343,10.975528432499743,11.219224624477803,10.687792386385638,10.62375815020279,13.143999894999041,10.21677227286564,10.284422838126773,10.075062333506068,9.885230606336322,12.646393737372804,47.48962072361008,47.48962072361008,0.0,52.76624524845565,0.0,47.48962072361008,52.76624524845565,0,0
+2017/08/16 05:00:00,76.98561596836927,0,212.9421150752648,0,0,0,0.3569479901721239,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,3.317485838378642,0.0,0.5251391098626331,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1465.2699170959947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0472336651710317,1.0472336651710317,1.0476203836003148,1.0476203836003148,1.050899829326096,1.050899829326096,1.0477763414954548,1.0477763414954548,1.052181935836525,1.052181935836525,0.673917664600668,0.6919658255041424,0.6499412735707666,0.6456485641439631,0.8350253986834906,0.6088795592261352,0.6143468888094921,0.5953585202266791,0.5818042678393374,0.8022554134967069,28.150172959076713,28.150172959076713,28.167136619440868,28.167136619440868,28.31120925334818,28.31120925334818,28.173979349221412,28.173979349221412,28.367640413637716,28.367640413637716,14.54428918166272,15.067615639965368,13.870874931554809,13.752936822576558,19.71035617139262,12.77548831934834,12.917116125672521,12.430805556048512,12.09323962495725,18.56997735028648,76.98561596836927,76.98561596836927,0.0,85.53957329818807,0.0,76.98561596836927,85.53957329818807,0,0
+2017/08/16 06:00:00,89.53482339289954,0,628.2752445219236,0,0,0,0.4619886361293855,0.0,11.007536273778666,0.0,73.80580873715317,0,3.7342640896887027,2.5227059580820375e-09,0.5252256536268941,0,0,0.0,397.5879531903867,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1922.9589021594356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03344983938600933,0.0010583296017118978,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.070848757606753,1.070848757606753,1.0737231516292616,1.0737231516292616,1.0726651969972407,1.0726651969972407,1.078451789741191,1.078451789741191,1.0539550719838924,1.0539550719838924,0.791416627301412,0.8095316870122894,0.7631494482315858,0.7527550310462019,1.0877254120477904,0.7248838380593442,0.7297536046810074,0.7066297728665426,0.6846135234501851,1.0289480052850806,29.195919415820754,29.195919415820754,29.324560752126374,29.324560752126374,29.277178934482947,29.277178934482947,29.536819322981373,29.536819322981373,28.445781591328057,28.445781591328057,18.2027639310883,18.819282256649558,17.2685641281618,16.93361076482448,29.955359598056845,16.058333151303728,16.208859993577207,15.503177363815638,14.852727100468528,27.354286675372776,89.53482339289954,89.53482339289954,0.0,99.48313710322171,0.0,89.53482339289954,99.48313710322171,0,0
+2017/08/16 07:00:00,146.44401342336403,0,758.1857738305532,0,0,0,2.6092902755266225,0.0,8.02393619021803,0.0,69.33401494192633,0,39.380909295966944,3.0139051285920476e-09,27.0958627167122,0,0,0.0,492.00812998647234,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2682.0481264415425,0.0,0.0,0.0,0.0,0.0,3664.3775640795952,0.0,0.0,0.0,0.0,2967.1710317110346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0403663721919959,0.0012771638784722424,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6083842179915372,0.6083842179915372,0.5117833912157476,0.5117833912157476,0.6733148815419813,0.6733148815419813,1.109364895640764,1.109364895640764,0.8289521359008106,0.8289521359008106,0.3428545927250768,0.32275081019872687,0.35685609533697216,0.35503812053226125,0.6113635111986438,0.3194111381710683,0.29405736350841627,0.33730108871171527,0.3367489953844932,0.584110116131976,12.762720902099261,12.762720902099261,10.476266552178558,10.476266552178558,14.527053992252803,14.527053992252803,30.943505386537254,30.943505386537254,19.495603241262785,19.495603241262785,7.445321073585532,7.165825464880712,7.650122488098447,7.6230596786164,12.839672757041555,7.121055830069139,6.796578492774884,7.366397602813279,7.358623131396925,12.150103528018391,146.44401342336403,146.44401342336403,0.0,162.71557047040446,0.0,146.44401342336403,162.71557047040446,0,0
+2017/08/16 08:00:00,172.98211990810574,0,787.8108481408126,0,0,0,13.410852674345863,0.0,11.435487997441953,0.0,83.2008179303116,0,39.380909295966944,2.962987586216574e-09,25.55405200707644,0,0,0.0,468.3976755279155,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,6111.564944584759,200.91645907750936,291.1423840625815,0.0,72.43639619061466,1313.868045491161,19494.34685691227,0.0,0.0,0.0,869.9340398084071,17686.86284846652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04194363309176416,0.0013270673138993697,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.797028760417275,0.797028760417275,0.601966480342984,0.601966480342984,0.7749849454783108,0.7749849454783108,1.2399501917172715,1.2399501917172715,0.9511341756953378,0.9511341756953378,0.4695224368646176,0.3748405213373891,0.4422998030079962,0.5292910875536166,0.5444896641704292,0.4292100234395318,0.3009021152374056,0.39753575348797165,0.5205168263355053,0.5320760601763841,18.392279425746025,18.392279425746025,12.598266528856882,12.598266528856882,17.655573979320465,17.655573979320465,37.22220578057228,37.22220578057228,24.108001839125336,24.108001839125336,9.60300442765947,7.925427465377709,9.081264686793062,10.860651308775601,11.205099953316207,8.841736139819375,6.881497990648157,8.292540247466547,10.666352698438786,10.923019033718887,172.98211990810574,172.98211990810574,0.0,192.20235545345082,0.0,172.98211990810574,192.20235545345082,0,0
+2017/08/16 09:00:00,201.56532964524175,0,832.0396740338616,0,0,0,23.59513002201822,0.0,11.393746067737203,0.0,106.27511244621549,0,39.380909295966944,2.8584630328370965e-09,20.920431810445418,0,0,0.0,459.3909726521482,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1263.0202925903748,0.0,80.83781058380373,8371.396009147593,11636.942491519989,2709.774848361958,286.28334028431084,1324.3724128739752,2712.678454479954,24240.944470481238,2587.0364957049205,72.3078468860831,1148.601637687162,2688.696349026314,23062.892865261994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044298408542896274,0.0014015707677592995,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.014024112548773,1.014024112548773,0.735491334666609,0.735491334666609,0.906032449336834,0.906032449336834,1.240163245051476,1.240163245051476,1.0199981227301083,1.0199981227301083,0.5497203928341948,0.4498025958740452,0.4693137952220817,0.6246369252979574,0.5333097265491911,0.5469085855346885,0.409365917198391,0.45298231459571003,0.647475405402802,0.5302698862068799,26.713862182601574,26.713862182601574,16.38752418919657,16.38752418919657,22.334657786868945,22.334657786868945,37.23285364206672,37.23285364206672,26.969228265340774,26.969228265340774,11.325960092977112,9.221877268719666,9.598884325423455,13.187191504751112,10.950753567897053,11.260843660722259,8.492633187434876,9.282199983812433,13.803029895550921,10.882532617608689,201.56532964524175,201.56532964524175,0.0,223.96147738360193,0.0,201.56532964524175,223.96147738360193,0,0
+2017/08/16 10:00:00,248.78188947920287,0,918.2559787333764,0,0,0,39.972257131893066,0.0,16.932384784220176,0.0,133.89528835348938,0,39.380909295966944,2.8048374772630413e-09,18.601049910828447,0,0,0.0,456.88139607030257,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6691.941825230455,1026.9475469887402,2979.0079285198244,8675.775536643694,31206.66898981703,6343.5543359093845,1701.8818969534302,3036.5556852577215,4606.515428050039,30035.3230090266,6567.378167632853,1507.497436674612,2930.70154476997,4877.034169890798,30004.259893745366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048888628466090114,0.0015468021264819255,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1319029086621015,1.1319029086621015,0.8893575595287566,0.8893575595287566,0.9852928348448295,0.9852928348448295,1.2303720574151518,1.2303720574151518,1.0617749055962582,1.0617749055962582,0.5871702202377015,0.47260635448538957,0.47289352637092225,0.6318743089936832,0.5191225933520893,0.6057782549461135,0.45460050355402987,0.47046427528516127,0.656454944796827,0.5240412086876431,31.989402899107944,31.989402899107944,21.69976581995907,21.69976581995907,25.50451072148782,25.50451072148782,36.74476283244675,36.74476283244675,28.791744201226706,28.791744201226706,12.225924206150381,9.664122197776337,9.669834299659072,13.379898220842918,10.635785393785113,12.695727601565252,9.313065811480158,9.621626512530256,14.051357505200869,10.74399671704603,248.78188947920287,248.78188947920287,0.0,276.42432164355876,0.0,248.78188947920287,276.42432164355876,0,0
+2017/08/16 11:00:00,286.7131344798283,0,975.1964389342843,0,0,0,61.91623173344452,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.858463032837097e-09,20.85560467222337,0,0,0.0,460.58632750239445,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10634.906658329726,2921.4092402142173,5728.164861511234,8219.943294856072,44434.88399534215,10613.538816339838,4167.549920971197,6434.570659667033,6198.5880605999055,47040.1090143142,11156.822248913995,4109.45337702346,6512.76535480274,6499.648412431442,47789.55058410162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05192018074336493,0.0016427183273686476,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1760399882975532,1.1760399882975532,0.9460542441370151,0.9460542441370151,1.0031255591710724,1.0031255591710724,1.1814835766095009,1.1814835766095009,1.07460212190789,1.07460212190789,0.6086053482956384,0.4653363378650933,0.4623009580782667,0.5957305551180653,0.5051101756828036,0.6407215565388832,0.46355510806387784,0.4714648121254675,0.6210545578938578,0.5164862706392299,34.084938423535306,34.084938423535306,23.90421734103434,23.90421734103434,26.251439618653094,26.251439618653094,34.34755977954751,34.34755977954751,29.363956481921676,29.363956481921676,12.768419218483956,9.520699151114954,9.461490998706012,12.440183434942142,10.333245127992114,13.618556806692467,9.48590635041026,9.641451068026754,13.092646241355823,10.578216276837892,286.7131344798283,286.7131344798283,0.0,318.5701494220314,0.0,286.7131344798283,318.5701494220314,0,0
+2017/08/16 12:00:00,285.5101859768679,0,912.298223858679,0,0,0,77.81651901746865,0.0,16.798297433460366,0.0,129.49988082968767,0,39.380909295966944,2.8048374772630413e-09,18.582604195025063,0,0,0.0,433.1784649393331,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12770.23960261076,4044.553486374459,7132.262922350122,7427.647528689784,50205.87859051507,14178.217626326037,6029.37305409962,9225.543561345261,7271.978632861138,62148.02572548789,15017.445764971015,6105.283057681193,9513.731177175643,7594.944188531315,63604.320087871114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04857143318361247,0.0015367662888476838,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2002221531641106,1.2002221531641106,0.9635617782917394,0.9635617782917394,1.0091309556594283,1.0091309556594283,1.1317976591482437,1.1317976591482437,1.0674295253647585,1.0674295253647585,0.6517516559097389,0.4903180474595888,0.4857303396312821,0.5781972450081656,0.5216377002112932,0.6951737362145176,0.5010533424545821,0.5048232903800678,0.6032007756919703,0.5397695177474878,35.25830723690024,35.25830723690024,24.61082013041775,24.61082013041775,26.505693951426792,26.505693951426792,31.984479865206524,31.984479865206524,29.043274157509032,29.043274157509032,13.920852964420206,10.023079198389638,9.928802656324649,12.00475053590975,10.69098784853756,15.162106450500687,10.247239339433492,10.32713972051009,12.629756478755226,11.097054949027381,285.5101859768679,285.5101859768679,0.0,317.2335399742976,0.0,285.5101859768679,317.2335399742976,0,0
+2017/08/16 13:00:00,281.57230789114993,0,893.6808493657398,0,0,0,76.36486090077112,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,2.7502907060484396e-09,16.323244448359453,0,0,0.0,450.0514429589383,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12176.57586989743,4624.131379630005,7051.095107645449,6965.397792763729,47822.23340617572,13984.979671317484,6349.435983171897,8991.233745174419,6904.092763386387,59278.71538214494,14890.235921861775,6547.017758777942,9382.637914340312,7228.601718302257,61057.076996208634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.047580230375594994,0.0015054053229273628,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.175276893263114,1.175276893263114,0.9955849403643744,0.9955849403643744,0.9947873297303735,0.9947873297303735,1.1172636275738455,1.1172636275738455,1.0464708502920006,1.0464708502920006,0.6546784773976841,0.5230000780269337,0.48949590168876267,0.5698026375617482,0.5211682276825639,0.6975521230072228,0.5441495702077943,0.5117460167740709,0.5948998280623388,0.5403398141796485,34.048194894760826,34.048194894760826,25.934120186891803,25.934120186891803,25.900682006047433,25.900682006047433,31.3081381098405,31.3081381098405,28.11672747187349,28.11672747187349,14.001952291209292,10.721004106049463,10.006117431545178,11.800995901298293,10.680662919359904,15.232450121161108,11.197282867081086,10.475460174933332,12.419251577144749,11.110057865513383,281.57230789114993,281.57230789114993,0.0,312.8581198790555,0.0,281.57230789114993,312.8581198790555,0,0
+2017/08/16 14:00:00,257.72483990021516,0,829.8593441123437,0,0,0,68.55420868457026,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.6948134469050413e-09,14.102415069135878,0,0,0.0,421.7202902180863,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10709.196338503942,5488.195075294507,6687.619411101939,6419.751628213511,44482.1753218906,12057.035048646248,6408.95946726262,7534.2413078968,5957.609069815449,49096.36147608133,12833.757776219441,6734.173570732447,7910.891138618863,6247.269193263455,50814.926056108925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04418232616288976,0.0013978980021719868,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1180895693423516,1.1180895693423516,1.0676230208339879,1.0676230208339879,0.9687785048349156,0.9687785048349156,1.0957932234281795,1.0957932234281795,1.0144186442741276,1.0144186442741276,0.6252576303553673,0.5649143580187698,0.4749570758915456,0.5435875814037847,0.49894214303313233,0.6608977957927595,0.5972393729675146,0.49534343845474305,0.5673796074230588,0.5153568024601326,31.34638658388002,31.34638658388002,29.051901357300352,29.051901357300352,24.823687757989788,24.823687757989788,30.32189911552551,30.32189911552551,26.73068576036684,26.73068576036684,13.203629654574044,11.683755524516442,9.710984685862428,11.18437649503295,10.20276281163055,14.175516007820917,12.478277770139059,10.127392988352781,11.742752455123963,10.553644202072022,257.72483990021516,257.72483990021516,0.0,286.36093322246126,0.0,257.72483990021516,286.36093322246126,0,0
+2017/08/16 15:00:00,249.2120216743547,0,829.8736167298116,0,0,0,66.81973891369827,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,2.6948134469050413e-09,14.087323004095047,0,0,0.0,421.7345628355541,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10293.147518290034,7382.4189550606625,7513.553141996836,6288.039645483014,49206.84565644817,10264.87927218158,6861.1209107096865,6703.439587014424,5568.398028628584,43165.456682422344,10778.477547197555,7248.628075166859,6985.318409743226,5782.530957621576,44683.88386949763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04418308604761557,0.001397922044395028,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0815332950619483,1.0815332950619483,1.1485874182365736,1.1485874182365736,0.9890437585389804,0.9890437585389804,1.0861960959154349,1.0861960959154349,1.033003236196255,1.033003236196255,0.5827065718437043,0.5967098942100234,0.46362077890646836,0.5262549333530486,0.4783746781020669,0.6070745315640615,0.6337587097244645,0.4805950710602937,0.5438794344467474,0.49047643377527644,29.675562809936977,29.675562809936977,32.774336061552134,32.774336061552134,25.660611240719618,25.660611240719618,29.88613227206737,29.88613227206737,27.52973364305373,27.52973364305373,12.115463623639755,12.464898342531725,9.487186673911069,10.793041156061506,9.779540866634633,12.729015042834206,13.430446225890705,9.824351319896323,11.191077347304258,10.026350234073703,249.2120216743547,249.2120216743547,0.0,276.90224630483857,0.0,249.2120216743547,276.90224630483857,0,0
+2017/08/16 16:00:00,272.240680680155,0,883.1231476704354,0,0,0,67.01015420108232,0.0,16.735683873587277,0.0,131.64086955684016,0,39.380909295966944,2.6948134469050413e-09,14.041088547529137,0,0,0.0,421.7485650073616,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9788.74457751513,9109.753807583062,8012.605427137681,6320.812254473542,53270.034812451195,9317.94635406983,7555.591443950199,6632.650289181483,5253.311049072854,42798.36405146654,9672.070461319121,8059.800120896224,6898.8295505671085,5443.588306496805,44082.06377068794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04701813051717696,0.0014876208752229384,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0654838100680393,1.0654838100680393,1.2451549758617937,1.2451549758617937,1.014238676581059,1.014238676581059,1.085194439612325,1.085194439612325,1.0709342466900795,1.0709342466900795,0.5441889460473259,0.6410208828420549,0.4517599196920634,0.5073726308927984,0.4680113543803361,0.5611400334641775,0.6864417948716509,0.4673546509418862,0.522945947678281,0.48003057117653825,28.956596195621245,28.956596195621245,37.48266919571419,37.48266919571419,26.723010875069363,26.723010875069363,29.840834355398997,29.840834355398997,29.199741211968842,29.199741211968842,11.198187667256917,13.626690646531955,9.258958357702738,10.381518695017235,9.573207086044135,11.593941268221727,14.90594439899509,9.560288091051234,10.71980995984606,9.81293880768527,272.240680680155,272.240680680155,0.0,302.4896452001722,0.0,272.240680680155,302.4896452001722,0,0
+2017/08/16 17:00:00,286.34520678538456,0,903.7618038671513,0,0,0,74.09660798001366,0.0,16.90307355543791,0.0,133.89528835348938,0,39.380909295966944,2.804837477263042e-09,18.63735239521761,0,0,0.0,442.38722120407766,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9968.066549718244,10120.733514529324,8919.809667518575,6430.597029544326,57403.1026811952,10017.49469425398,8676.106467019183,8048.920256723589,5712.5769200460945,49728.52552896937,10269.356414960756,9249.122801307325,8324.054655372784,5878.643030213062,50903.25329430858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04811694786028034,0.0015223866900198587,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0670425214118777,1.0670425214118777,1.2777199185630972,1.2777199185630972,1.046015817145134,1.046015817145134,1.083192823765562,1.083192823765562,1.0899389699461637,1.0899389699461637,0.5342587492153411,0.6749064868706001,0.4658581498299086,0.5038730945610842,0.4767337571375956,0.5476274034562357,0.7230624323623398,0.4830064236542828,0.5171187660515999,0.4883607369444765,29.026023159033514,29.026023159033514,39.127988879896684,39.127988879896684,28.096786671587935,28.096786671587935,29.75041957193588,29.75041957193588,30.05570361015262,30.05570361015262,10.97213377161448,14.572596329316937,9.530917600741134,10.306943341802409,9.746561569206662,11.277457595053903,16.002294749200047,9.873256506569021,10.592000598137844,9.982745703764934,286.34520678538456,286.34520678538456,0.0,318.16134087264953,0.0,286.34520678538456,318.16134087264953,0,0
+2017/08/16 18:00:00,273.5636036394738,0,915.2419346560042,0,0,0,77.42093452084325,0.0,16.798297355077125,0.0,110.93442390708215,0,39.380909295966944,2.962987586216575e-09,25.59706335508708,0,0,0.0,489.35770450547454,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8643.240415467022,8584.047170326192,8413.6189686371,6235.364755495444,52142.67831436362,11110.832967414877,9274.225065557725,9824.807553479832,6295.202510507959,59168.741752069975,11282.015592951691,9766.365064434562,10149.861435249306,6422.193052990669,60114.342692668804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04872815852688828,0.0015417249694623543,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0471189341754712,1.0471189341754712,1.2173581565457292,1.2173581565457292,1.0575928877745127,1.0575928877745127,1.0751734892437987,1.0751734892437987,1.0795095508782881,1.0795095508782881,0.5416791855461845,0.6762356217742985,0.5041168712974479,0.5180302716575708,0.5063115489598349,0.5517371622642867,0.7131954542375175,0.5219793047007133,0.5263992972623687,0.5156443286004592,28.145141250385777,28.145141250385777,36.10003845894249,36.10003845894249,28.606452126566495,28.606452126566495,29.389579912360503,29.389579912360503,29.584407197037592,29.584407197037592,11.140651312791164,14.610712319580543,10.312121085907833,10.61189598746816,10.358851041332343,11.37287592138209,15.701204316491342,10.698506620449933,10.796246865605127,10.559894222807188,273.5636036394738,273.5636036394738,0.0,303.95955959941534,0.0,273.5636036394738,303.95955959941534,0,0
+2017/08/16 19:00:00,264.4341222577305,0,882.4113361667223,0,0,0,73.14346350991626,0.0,19.69014318957599,0.0,101.68988858149199,0,39.380909295966944,3.013905128598501e-09,27.0977424753112,0,0,0.0,492.01745852873705,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7403.828559991358,5375.324512840353,7073.2247635304175,5824.144501127063,46767.16231684467,10723.592526858527,8092.988430777881,9277.27540131075,6110.01302592296,60064.81307850972,10784.984319819941,8348.639342562501,9484.888470857493,6178.13004019917,60624.02124272392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04698023314547574,0.001486421828798959,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.019354653412346,1.019354653412346,1.05226885195965,1.05226885195965,1.0127664955211781,1.0127664955211781,1.0595015442158093,1.0595015442158093,1.0590802157189674,1.0590802157189674,0.5364855730015912,0.6104284343361978,0.4916509789043764,0.5159970940643581,0.5204215262660166,0.537839868119602,0.6247999761908076,0.4996010410389614,0.5175843777575109,0.5252506927103391,26.941658400548064,26.941658400548064,28.371468121318088,28.371468121318088,26.660273940114223,26.660273940114223,28.69094112027024,28.69094112027024,28.672279287784733,28.672279287784733,11.022454269725046,12.815479273966702,10.050641047783984,10.567567251176968,10.664260651720667,11.053162900635613,13.19150796728917,10.2166231071202,10.602158991268965,10.770766201805131,264.4341222577305,264.4341222577305,0.0,293.81569139747836,0.0,264.4341222577305,293.81569139747836,0,0
+2017/08/16 20:00:00,269.95549951497355,0,818.952162815383,0,0,0,62.31538676014892,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,2.9111766450588565e-09,23.168358788210412,0,0,0.0,464.0486376899417,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5484.327146728009,3597.8942074988977,5295.421601722581,5234.310713659664,39122.576586422685,9218.208073558755,6632.076355307304,7883.959062906202,5016.1405850622195,53992.284169947816,9177.84532718248,6726.311349165838,8005.668056937597,4991.723756139673,54233.65667686954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04360161975161767,0.0013795248561050976,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.005512622371549,1.005512622371549,1.0275723951699283,1.0275723951699283,0.9868076453626403,0.9868076453626403,1.041459600526575,1.041459600526575,1.0524908714585588,1.0524908714585588,0.5340386252924245,0.5833352891367077,0.4850020917549858,0.5129897555276768,0.525528364127248,0.5308246433526007,0.5876118802981674,0.4879750892813342,0.5098639594426427,0.5276115854931072,26.352339305857015,26.352339305857015,27.294909603961756,27.294909603961756,25.567486979982874,25.567486979982874,27.897535673959226,27.897535673959226,28.381246896079475,28.381246896079475,10.967171201266453,12.130969990110572,9.913920850791882,10.502327072342126,10.776920835044109,10.894952782992718,12.236900844272938,9.9748183246478,10.434931710450371,10.823202240892641,269.95549951497355,269.95549951497355,0.0,299.9505550166373,0.0,269.95549951497355,299.9505550166373,0,0
+2017/08/16 21:00:00,234.79306821755915,0,808.7679453877727,0,0,0,40.718979085139566,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.962987586216575e-09,25.610126881291347,0,0,0.0,489.3547727748755,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2871.323258215087,1595.032850033265,3016.1789052093905,4400.244316608208,27733.726363789898,5561.1801171801,4075.2707936709203,4555.923513006297,2570.9324489194078,35862.80867742263,5364.077375925434,4024.1472093282964,4571.391013486006,2409.2046867233616,35687.03988321173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043059404472253954,0.001362369542621257,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0063930774814096,1.0063930774814096,1.0217369603526123,1.0217369603526123,0.9873211607703679,0.9873211607703679,1.0242710626682705,1.0242710626682705,1.0531300676166417,1.0531300676166417,0.5323405445073165,0.5716984072121594,0.4847513363129595,0.5130300226085414,0.525857736123715,0.522834576737654,0.5672013296392358,0.4811277626751244,0.5039205154887147,0.5239857430334628,26.389609916906096,26.389609916906096,27.043807025077243,27.043807025077243,25.588855685605523,25.588855685605523,27.15269597167365,27.15269597167365,28.409409996071446,28.409409996071446,10.928959458402446,11.846742936275575,9.908801940053337,10.503198028699629,10.784225747907485,10.717353452591766,11.738477171440522,9.835133370461875,10.307950346716993,10.74277061536894,234.79306821755915,234.79306821755915,0.0,260.88118690839906,0.0,234.79306821755915,260.88118690839906,0,0
+2017/08/16 22:00:00,152.86876551183153,0,620.3080494215321,0,0,0,16.248881540990332,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8584630328370965e-09,20.866926362660795,0,0,0.0,460.6014631150835,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2721.5398266759184,5416.954467617759,2168.839706122455,1729.2731270946233,1525.018540109492,377.7666386442936,18388.584633056787,1781.5771068015922,1521.6635022337275,1380.9822930561493,76.0341029574677,17795.373757608228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033025660017509964,0.0010449088621699884,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.912844694113665,0.912844694113665,0.9050617209896876,0.9050617209896876,0.9085900029099943,0.9085900029099943,0.9678659403269979,0.9678659403269979,0.9771125352068253,0.9771125352068253,0.5112635808507097,0.5449081339044476,0.4663960341698047,0.49250945063357754,0.5077357139775569,0.4949440309815509,0.5320156043664521,0.4559199242104121,0.4766810590040006,0.5006417086209181,22.597277872981877,22.597277872981877,22.29738788765887,22.29738788765887,22.43303453011407,22.43303453011407,24.786374224436543,24.786374224436543,25.16595076170259,25.16595076170259,10.46505673720057,11.214725390861418,9.541463068153519,10.068432817041142,10.389286334953297,10.1190624498971,10.921661597224215,9.338316242776443,9.74550436454011,10.238552355661483,152.86876551183153,152.86876551183153,0.0,169.85418390203503,0.0,152.86876551183153,169.85418390203503,0,0
+2017/08/16 23:00:00,87.5780998839332,0,455.60582203713614,0,0,0,0.2801060091673436,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.638396427544592e-09,11.787012813289179,0,0,0.0,402.3702932683199,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1100.2588432869313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02425679143552688,0.0007674679726416603,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.6910158365770175,0.6910158365770175,0.6724922103759412,0.6724922103759412,0.6921035524181325,0.6921035524181325,0.9155433717771633,0.9155433717771633,0.7842517708307206,0.7842517708307206,0.4381276608245473,0.48151331676696524,0.38013664549370746,0.35960038027830316,0.4949245875188609,0.39487173263638065,0.44299049852718353,0.351352493255369,0.313871484627459,0.4763553375719495,15.039718512468895,15.039718512468895,14.503556989620407,14.503556989620407,15.071663329262236,15.071663329262236,22.701833260306316,22.701833260306316,17.96275655739302,17.96275655739302,9.004119978286496,9.842944891711198,8.009128783804186,7.691241048313245,10.11865708876715,8.24830758829215,9.094108118640733,7.568626128136003,7.047836650917034,9.738972555291411,87.5780998839332,87.5780998839332,0.0,97.30899987103689,0.0,87.5780998839332,97.30899987103689,0,0
+2017/08/17 00:00:00,41.80778714998615,0,457.30086699844156,0,0,0,0.8231639977778955,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.6294775602802551,2.5810303756788442e-09,9.557824592923792,0,0,0.0,404.06533822962535,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105.13212241553478,87.07568125256026,136.62254874260458,730.5780777837643,1803.9540453228492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024347036884797887,0.0007703232757503276,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8345488716399201,0.8345488716399201,0.8368778562016395,0.8368778562016395,0.8239953120523921,0.8239953120523921,0.8972753839698862,0.8972753839698862,0.8681003961688074,0.8681003961688074,0.6391601520385919,0.7131575329249835,0.5330530185282057,0.5603283425603358,0.6974620100891941,0.5654063745641672,0.6464394671538055,0.47664192967228175,0.4804960882370603,0.6647178868736342,19.693450164920506,19.693450164920506,19.77616702428068,19.77616702428068,19.321473899224713,19.321473899224713,21.99982441045958,21.99982441045958,20.906888344803363,20.906888344803363,13.576190480322367,15.700055239270498,10.944976984234373,11.574706896817503,15.229780469879543,11.695509126340298,13.774606090895603,9.744719448143911,9.822349187084882,14.28295482092598,41.80778714998615,41.80778714998615,0.0,46.45309683331794,0.0,41.80778714998615,46.45309683331794,0,0
+2017/08/17 01:00:00,23.772227234142377,0,42.45210515835503,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5751318104645862,0,0,0.0,6.961752645810895,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.002260181523188127,7.151056791718891e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8678174907709887,0.8678174907709887,0.8822778241512287,0.8822778241512287,0.8224502066773373,0.8224502066773373,0.9122925687779078,0.9122925687779078,0.9764356129705616,0.9764356129705616,0.6443987793110469,0.7348535802992824,0.5117553387555798,0.5677771425903101,0.7615801042515374,0.5750437403655752,0.676692524739257,0.4542237627795,0.49265138372401684,0.7174984073044921,20.89646151453175,20.89646151453175,21.43363667651623,21.43363667651623,19.26740641643137,19.26740641643137,22.57592296740269,22.57592296740269,25.13805044824926,25.13805044824926,13.718750340967262,16.367595615771364,10.47566129693233,11.752290719756374,17.217696981326867,11.927849870800628,14.62383271658635,9.305869680220638,10.071377436712908,15.831993185944427,23.772227234142377,23.772227234142377,0.0,26.413585815713752,0.0,23.772227234142377,26.413585815713752,0,0
+2017/08/17 02:00:00,28.344195945848867,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248328593759727,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8710718395711666,0.8710718395711666,0.8908631084552096,0.8908631084552096,0.8187381009449999,0.8187381009449999,0.9099398365041934,0.9099398365041934,1.0589092911950004,1.0589092911950004,0.6191059590087984,0.7071710674355667,0.4862995889677136,0.5427149501247541,0.7892813408448403,0.5478360902626797,0.6502606560240779,0.42364023646427035,0.4660174557217651,0.7275592825403359,21.016604055582647,21.016604055582647,21.75662409854624,21.75662409854624,19.13791972204352,19.13791972204352,22.485062791237695,22.485062791237695,28.66471036733695,28.66471036733695,13.041452974493708,15.51943299390841,9.940451252509874,11.164363177407978,18.131008431261066,11.282285137485971,13.87968159116042,8.742046228327283,9.534039566109684,16.140906193736583,28.344195945848867,28.344195945848867,0.0,31.493551050943186,0.0,28.344195945848867,31.493551050943186,0,0
+2017/08/17 03:00:00,23.722042829176196,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249474054984051,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8239124137414479,0.8239124137414479,0.8442220444412094,0.8442220444412094,0.7702103804524999,0.7702103804524999,0.8468222387997361,0.8468222387997361,1.0251823455541644,1.0251823455541644,0.5969607551110322,0.6849015680097954,0.4620651639593798,0.5203880004517758,0.8053555117810925,0.5171627983901064,0.6195599023635943,0.39156920020127933,0.4355015979239156,0.730902779568851,19.318570513879635,19.318570513879635,20.03848914213681,20.03848914213681,17.49873109711615,17.49873109711615,20.131902995611256,20.131902995611256,27.191911549545082,27.191911549545082,12.471235843591558,14.861101906059645,9.456908207145588,10.663524779605382,18.675921690298168,10.592960863575755,13.053364177500342,8.193894513715662,8.95594646354975,16.244530252484054,23.722042829176196,23.722042829176196,0.0,26.357825365751328,0.0,23.722042829176196,26.357825365751328,0,0
+2017/08/17 04:00:00,44.84788046956141,0,88.72588128136032,0,0,0,0.4156492358062308,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,4.399009527501975,0.0,0.525088156619076,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69.98865199368754,0.0,0.0,0.0,0.0,0.0,21.393642595431533,1257.5775332462758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8641301998281617,0.8641301998281617,0.883075841652933,0.883075841652933,0.8095242024715006,0.8095242024715006,0.8801273217885218,0.8801273217885218,0.9552016532329358,0.9552016532329358,0.4656983672989564,0.5006216679666925,0.41460042638988,0.43581612954431714,0.5477054062691962,0.424293315996552,0.4628741347298019,0.3736590854457844,0.3940080293336725,0.5197123176560965,20.760864102602383,20.760864102602383,21.46353173518348,21.46353173518348,18.819024667334787,18.819024667334787,21.35320530640071,21.35320530640071,24.271904048671388,24.271904048671388,9.527787392813238,10.238129611267766,8.583080944692043,8.961700737917184,11.279261809681046,8.75366637852271,9.472640994960202,7.906918997376678,8.234032043235857,10.648704303818633,44.84788046956141,44.84788046956141,0.0,49.83097829951268,0.0,44.84788046956141,49.83097829951268,0,0
+2017/08/17 05:00:00,75.74899600875827,0,212.9421150752648,0,0,0,0.21669190212655673,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.2211226499377736,0.0,0.5251384267380876,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,197.71148249196108,667.1023389817799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9633293879811023,0.9633293879811023,0.9651900820701509,0.9651900820701509,0.955077087681487,0.955077087681487,0.9769728141031951,0.9769728141031951,0.9896518526262693,0.9896518526262693,0.5763384306458859,0.636161378286762,0.47830257263397286,0.5188536349501157,0.7608983692289815,0.5081541925678417,0.5717610868655468,0.41969564567614753,0.4532851191146256,0.7103284835387295,24.60136217355044,24.60136217355044,24.677148914625903,24.677148914625903,24.266874926972278,24.266874926972278,25.160190506919122,25.160190506919122,25.685968796683085,25.685968796683085,11.959369693279953,13.495119893547368,9.778089248508024,10.629898401037693,17.195632689744684,10.39824615255121,11.848258128799614,8.672249628532313,9.287967199371622,15.614505258380262,75.74899600875827,75.74899600875827,0.0,84.16555112084252,0.0,75.74899600875827,84.16555112084252,0,0
+2017/08/17 06:00:00,87.47871351580781,0,628.2762194104675,0,0,0,0.3055169965103976,0.0,10.266045939721801,0.0,73.80580873715317,0,2.5761168607669895,2.5227059741784507e-09,0.5252249791327551,0,0,0.0,397.58892807893073,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1254.9705731375661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03344989128979752,0.0010583312439115763,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0417414930795612,1.0417414930795612,1.0351810170857512,1.0351810170857512,1.0650744062277504,1.0650744062277504,1.0619827307373353,1.0619827307373353,1.0126261128438432,1.0126261128438432,0.6766354182592921,0.7460645322607552,0.5669643842268417,0.5996116038444891,1.0149432412580632,0.6092965989278429,0.6827781808916041,0.5095674034808083,0.5297004977614178,0.9330383840266733,27.909841376698267,27.909841376698267,27.624203723766243,27.624203723766243,28.93837513809322,28.93837513809322,28.80096857676355,28.80096857676355,26.654295780816625,26.654295780816625,14.622192356496328,16.720459858866874,11.732797111760803,12.53837117729907,26.753064592744124,12.786245772036438,14.799449351097664,10.428559605982755,10.86979873786774,23.386741021331645,87.47871351580781,87.47871351580781,0.0,97.19857057311978,0.0,87.47871351580781,97.19857057311978,0,0
+2017/08/17 07:00:00,145.92811088278336,0,758.2163545486816,0,0,0,2.041904838813848,0.0,8.07546596073247,0.0,69.33401494192633,0,39.380909295966944,1.8718572455035184e-05,27.095797126771338,0,0,0.011366072665540941,492.02734463193514,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,3740.581628357806,0.0,0.07120612554004979,0.017402919514541888,0.0,0.0,2334.371724190313,0.06397708639046233,0.04841051810444738,0.0,0.0,1460.2802156091657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0403680003320804,0.0012772153916896089,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.4664247654868306,0.4664247654868306,0.6377180257111666,0.6377180257111666,0.4868829266769765,0.4868829266769765,1.2116229910863094,1.2116229910863094,0.7070782788785195,0.7070782788785195,0.32784810713298235,0.3246964707409038,0.24694919890767833,0.43675234351668496,0.4840093579996639,0.28753444952986046,0.3210592835019834,0.18120841878926333,0.4247066690083542,0.4445272347536004,9.542026709403743,9.542026709403743,13.53715451673628,13.53715451673628,9.952402650249425,9.952402650249425,35.81739907636735,35.81739907636735,15.516645561025584,15.516645561025584,7.235068372532211,7.192125775385222,6.265736103345873,8.978853678192394,9.893671120919521,6.717493816872661,7.143090795373027,5.680715815399026,8.761030564468967,9.12275718493855,145.92811088278336,145.92811088278336,0.0,162.14234542531483,0.0,145.92811088278336,162.14234542531483,0,0
+2017/08/17 08:00:00,170.08901932054974,0,787.8078560047774,0,0,0,10.133970725336258,0.0,11.763618543777666,0.0,83.2008179303116,0,39.380909295966944,2.9629875314745262e-09,25.609702822194308,0,0,0.0,468.3946833918803,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,7778.897013297896,0.0,85.9353506781784,0.0,0.0,1901.232779572876,13259.141854348909,0.0,0.0,0.0,1560.7884336993836,11039.123616808762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04194347378822534,0.001327062273646445,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7252127025747869,0.7252127025747869,0.5493607341101271,0.5493607341101271,0.6436517365855218,0.6436517365855218,1.24642251758824,1.24642251758824,0.8624102446598839,0.8624102446598839,0.4984652891485246,0.41459800654595397,0.34670000921997357,0.6213042065761322,0.5096477145775969,0.42415224244511335,0.3685682875921884,0.25578263350614144,0.6157966726660481,0.49211307893792205,16.068466396929793,16.068466396929793,11.317611926315038,11.317611926315038,13.698348155478712,13.698348155478712,37.54620820065416,37.54620820065416,20.697806214512255,20.697806214512255,10.192743618372518,8.583038860669262,7.500737985052112,13.099216877420858,10.430284876792044,8.751154727828137,7.827846993964229,6.358157805411324,12.95488949427687,10.060214085325626,170.08901932054974,170.08901932054974,0.0,188.98779924505527,0.0,170.08901932054974,188.98779924505527,0,0
+2017/08/17 09:00:00,223.75000493804637,0,832.0702392118948,0,0,0,45.82837500950636,0.0,11.393746067737203,0.0,106.27511244621549,0,39.380909295966944,2.858462978935336e-09,20.87186211576193,0,0,0.0,459.4215378301815,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4437.28764647779,856.9214483473269,1965.3854620120983,9064.247765292765,25413.149728844244,7334.369319686581,3567.859631814271,4292.106946976502,6492.379881181876,39462.897678049325,7030.710513523847,3407.719964851908,3964.363437580293,6598.1557664257725,38301.64527647826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04430003585561459,0.0014016222547993762,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0000802821978754,1.0000802821978754,0.8171577581633319,0.8171577581633319,0.8665788701462288,0.8665788701462288,1.252253402677662,1.252253402677662,0.9792468049911695,0.9792468049911695,0.555921569717441,0.4686663690980304,0.4171703291530397,0.66376761855436,0.5148602264698604,0.5452116555406085,0.44457959103832473,0.39046048738862205,0.6897871206918713,0.5107251567289212,26.123030559114866,26.123030559114866,19.08296965890692,19.08296965890692,20.850849511254808,20.850849511254808,37.83903325295953,37.83903325295953,25.25403361716768,25.25403361716768,11.470779660567331,9.586111371653004,8.627916330801568,14.256169770328427,10.542858439376715,11.221711596433579,9.123735041034493,8.175731704990739,15.003694203222395,10.453457833500707,223.75000493804637,223.75000493804637,0.0,248.6111165978293,0.0,223.75000493804637,248.6111165978293,0,0
+2017/08/17 10:00:00,270.24758170008,0,918.2350705630217,0,0,0,57.933422361021286,0.0,16.986528298665572,0.0,133.89528835348938,0,39.380909295966944,2.804837423838086e-09,18.61945818567764,0,0,0.0,456.860487899948,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9078.659058135836,3015.526669194597,4711.89117962385,9031.665610917798,39491.53126053729,9805.71192761378,4348.679424587791,5205.318811200946,7266.811738936738,41329.930552263104,9972.321611156307,4249.577863835202,5036.530755626122,7643.168865186784,41638.286141377386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04888751529961361,0.00154676690667055,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1017555630107838,1.1017555630107838,0.9037000195960198,0.9037000195960198,0.9213447360362207,0.9213447360362207,1.2317948879176936,1.2317948879176936,0.9989213656553178,0.9989213656553178,0.5895259183359652,0.470691864322052,0.4263793652659379,0.6504050906585205,0.48056752037673695,0.6095443346738059,0.46847976389877555,0.42682899679358854,0.6828232654339212,0.4880994249518923,30.594214949908192,30.594214949908192,22.24517142178209,22.24517142178209,22.927589253230266,22.927589253230266,36.81553150872211,36.81553150872211,26.07425529527802,26.07425529527802,12.284568530545712,9.626132151963091,8.790905722579595,13.883665687357947,9.823794007752667,12.79263963806153,9.582433224690774,8.798956830010837,14.800756354958352,9.977373469257557,270.24758170008,270.24758170008,0.0,300.27509077786664,0.0,270.24758170008,300.27509077786664,0,0
+2017/08/17 11:00:00,305.23012407760604,0,975.1969376467978,0,0,0,76.99385839439584,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.8584629789353364e-09,20.862992406595385,0,0,0.0,460.58682621490783,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13588.088406317263,5036.659837007504,7755.239621355023,8667.05200100355,55612.86957742634,12960.620924642015,5862.062664607769,7741.1443863557715,8005.273550244683,53274.87565057477,13507.112719360657,5897.982807106881,7840.680923116884,8384.620056419071,54332.04562993704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05192020729518854,0.0016427191674498385,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1900332593534293,1.1900332593534293,0.9679825456293607,0.9679825456293607,0.9864297283741985,0.9864297283741985,1.1879446440790289,1.1879446440790289,1.0558816850806576,1.0558816850806576,0.6336751783898511,0.4859228619609332,0.44668218405771615,0.6299661774715696,0.4915441293542311,0.6695663920023366,0.496369850120795,0.46123618524552074,0.6620129831390932,0.5051593162878613,34.76181794276869,34.76181794276869,24.7911402525919,24.7911402525919,25.551767334940763,25.551767334940763,34.66041824030698,34.66041824030698,28.530814654177803,28.530814654177803,13.428202281256105,9.932740691455493,9.163102485997584,13.328870623308745,10.048428825006951,14.420227617814206,10.148832712967305,9.44081554547482,14.20681495282598,10.334291280595039,305.23012407760604,305.23012407760604,0.0,339.14458230845116,0.0,305.23012407760604,339.14458230845116,0,0
+2017/08/17 12:00:00,294.2919635845813,0,912.2988103528963,0,0,0,86.57123702277222,0.0,16.86091082671979,0.0,129.49988082968767,0,39.380909295966944,2.804837423838086e-09,18.547050404175643,0,0,0.0,433.1790514335505,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14837.437574430083,5644.408946020156,8706.20402579691,7674.140499948955,59070.34539014365,15089.035002870865,6844.359456235124,9653.27751621366,8142.590948459345,62396.033521920275,15813.059630288377,6975.062590349381,9925.401177083939,8475.564141212433,63938.54557375446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048571464408999024,0.0015367672767971487,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2219301684061765,1.2219301684061765,1.0040334884056554,1.0040334884056554,1.0206716792826183,1.0206716792826183,1.1300562088563137,1.1300562088563137,1.0791362117530232,1.0791362117530232,0.6613176678108602,0.5009302218821771,0.462557821043865,0.599979594675894,0.5084330042683599,0.7037157768585632,0.5190913135767388,0.4854834584041395,0.6280541735139687,0.5261166107998169,36.326011532556095,36.326011532556095,26.289791853524946,26.289791853524946,26.99810375836033,26.99810375836033,31.903076081613804,31.903076081613804,29.567606485892682,29.567606485892682,14.187293848622247,10.244640276230967,9.466486000206018,12.547715011852688,10.40421984124255,15.41588425790431,10.63510057758019,9.923755053534066,13.27789791346693,10.789970445766258,294.2919635845813,294.2919635845813,0.0,326.9910706495348,0.0,294.2919635845813,326.9910706495348,0,0
+2017/08/17 13:00:00,292.503426369782,0,893.6876860973754,0,0,0,87.27525187629902,0.0,16.798297350153536,0.0,129.2730206906943,0,39.380909295966944,2.7502906531390274e-09,16.343971951463605,0,0,0.0,450.05827969057384,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14460.092902316372,6327.413665427587,8960.1616982635,7240.589864403471,59337.564714393055,14795.360684823956,7173.336129727011,9492.89091318329,7818.867832816293,60669.77658185862,15531.807713999548,7377.55351144767,9837.69072757951,8119.416882042568,62349.40546262308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04758059436825128,0.001505416839401284,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2041989625037446,1.2041989625037446,1.0521231492939334,1.0521231492939334,1.027296365285783,1.027296365285783,1.111945894787859,1.111945894787859,1.0807347032958106,1.0807347032958106,0.656724976543891,0.5241451989433302,0.4611959190653674,0.5844207845579453,0.5061678855007358,0.6969135791069351,0.5503916637799683,0.48613877471813954,0.6104205905743818,0.5236589972615331,35.45290684942016,35.45290684942016,28.365051661717445,28.365051661717445,27.283003428767472,27.283003428767472,31.06242370456266,31.06242370456266,29.639574731936875,29.639574731936875,14.05887931404348,10.74629584312379,9.440034626451236,12.15778247499982,10.355785732602087,15.213540422046208,11.341556200387927,9.93715907977375,12.815276490803626,10.73555040617957,292.503426369782,292.503426369782,0.0,325.00380707753555,0.0,292.503426369782,325.00380707753555,0,0
+2017/08/17 14:00:00,270.3251399274675,0,829.8628607827864,0,0,0,81.1782507993839,0.0,16.735683873587277,0.0,115.5196477718057,0,39.380909295966944,2.6948133945506338e-09,14.078672981574526,0,0,0.0,421.7238068885289,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13416.622854023959,7519.984391541137,8819.362890687422,6877.015306334415,57058.09986161578,13170.424688208983,7510.0841666538045,8093.186052273492,7102.9678535832545,52181.73002778049,13895.296046204325,7871.221088684657,8503.839276014347,7397.350505572605,53917.204017197364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04418251339302895,0.0013979039260030807,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.178015982236563,1.178015982236563,1.157238940386433,1.157238940386433,1.0311786729875636,1.0311786729875636,1.1023887729072737,1.1023887729072737,1.0708601989065223,1.0708601989065223,0.6432250953736952,0.5853227060488195,0.4606961249828118,0.5720496027555503,0.4891170074387891,0.6804202614069482,0.6235243414760433,0.4869532817955832,0.5969624237440728,0.5068139408643818,34.180165544966385,34.180165544966385,33.18483967459103,33.18483967459103,27.45072009081987,27.45072009081987,30.623206398414,30.623206398414,29.196430885067926,29.196430885067926,13.686707184736221,12.180099449399378,9.43034747238967,11.855234792777651,9.998310252219383,14.731215643024115,13.157768753929844,9.953845075438721,12.471278007426221,10.369577458739187,270.3251399274675,270.3251399274675,0.0,300.361266586075,0.0,270.3251399274675,300.361266586075,0,0
+2017/08/17 15:00:00,256.74459409196095,0,829.8771052843341,0,0,0,74.33167320829416,0.0,16.735683873587277,0.0,108.75639138185811,0,39.380909295966944,2.6948133945506346e-09,14.107961127105394,0,0,0.0,421.7380513900766,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11727.63845122068,8966.832468977298,8642.960728835973,6603.055600455857,55424.5212687409,10971.21483001066,7728.099303021406,6786.680001636878,6337.305006213103,44751.99547753154,11561.969564473797,8250.107350019158,7204.470408541374,6608.447463855818,46353.85029138476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.044183271780842345,0.0013979279208648566,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1245558458303102,1.1245558458303102,1.2216104495733884,1.2216104495733884,1.0315865500330907,1.0315865500330907,1.0936926553771877,1.0936926553771877,1.0688835926117488,1.0688835926117488,0.6008940166430362,0.626802842567568,0.4516202689418839,0.5517981095222758,0.4682270404003379,0.6287236173362444,0.6735414521271378,0.47548799387638097,0.5731251308465544,0.48433765292581543,31.64661343780412,31.64661343780412,36.31019054402954,36.31019054402954,27.46837275671571,27.46837275671571,30.22624995602763,30.22624995602763,29.108137741666624,29.108137741666624,12.570958993331303,13.244624162908522,9.256307243411783,11.374296473673496,9.577454222190028,13.295726780177617,14.533530410161262,9.72160171184855,11.881274188381767,9.900362956424601,256.74459409196095,256.74459409196095,0.0,285.2717712132899,0.0,256.74459409196095,285.2717712132899,0,0
+2017/08/17 16:00:00,282.4199718240119,0,883.1266315009951,0,0,0,77.1827838149822,0.0,16.735683873587277,0.0,131.64086955684016,0,39.380909295966944,2.6948133945506346e-09,14.047750077486112,0,0,0.0,421.75204883792134,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11278.164217330414,10550.0432011426,9344.571519519857,6896.27833861083,59868.860679742436,10455.086998815616,8744.836547139437,7239.839757999078,6419.23495330122,46092.842441802575,10813.250033169163,9328.52358149565,7576.661772922365,6622.936231000023,47681.31666696779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04701831599889644,0.0014876267437352515,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1016296831505865,1.1016296831505865,1.2915151482487761,1.2915151482487761,1.0474952420261687,1.0474952420261687,1.101245425890478,1.101245425890478,1.0943391086925836,1.0943391086925836,0.5678428323799537,0.674730781645045,0.4504113817473801,0.5437206392911886,0.46426553659292086,0.5869048580330405,0.7264253024398395,0.47204084507735866,0.5614507148353315,0.4786923270641434,30.58845317574064,30.58845317574064,39.83276296535658,39.83276296535658,28.161646608213104,28.161646608213104,30.57086827786904,30.57086827786904,30.255670032939108,30.255670032939108,11.753867508438688,14.567563300600568,9.233392930809117,11.187431003660066,9.499766781620167,12.219333193793872,16.10587023299739,9.652884110954858,11.601310943062316,9.785938405222055,282.4199718240119,282.4199718240119,0.0,313.79996869334656,0.0,282.4199718240119,313.79996869334656,0,0
+2017/08/17 17:00:00,292.0711012751044,0,903.7483279102406,0,0,0,79.82393744289041,0.0,16.90307355543791,0.0,133.89528835348938,0,39.380909295966944,2.8048374238380863e-09,18.635917422060686,0,0,0.0,442.37374524716694,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10887.045774182407,11385.655367949861,9703.910061430823,6790.085063467472,61783.086332989325,10967.44156497281,9689.558271742007,8478.065507552024,6534.725172201019,51677.96475299967,11168.888828620944,10299.780814661808,8776.054693033677,6676.375996583802,53070.03533868742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048116230390352684,0.0015223639897714654,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0908480053243448,1.0908480053243448,1.3241277159609868,1.3241277159609868,1.0650549908741402,1.0650549908741402,1.0944245643853916,1.0944245643853916,1.1086354188264658,1.1086354188264658,0.5561795929442783,0.713497773914911,0.4664750500127306,0.5379612133476593,0.4801536197208859,0.5679563387550599,0.7630824993409138,0.48589534318254757,0.5513896223964909,0.4921617225171036,30.0969605643254,30.0969605643254,41.51590754312255,41.51590754312255,28.937511180106753,28.937511180106753,30.259560192361263,30.259560192361263,30.909935630917502,30.909935630917502,11.476841549528245,15.710367309123043,9.54301325980299,11.055918281120483,9.815425312373236,11.756592506447944,17.266391965233936,9.932177698157986,11.364778575722909,10.061222340374613,292.0711012751044,292.0711012751044,0.0,324.5234458612271,0.0,292.0711012751044,324.5234458612271,0,0
+2017/08/17 18:00:00,276.0671991706815,0,915.2422923515041,0,0,0,79.69780352955772,0.0,17.03716081602578,0.0,110.93442390708215,0,39.380909295966944,2.9629875314745275e-09,25.584926416631642,0,0,0.0,489.35806220097453,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9152.077957584637,9556.178345111339,8804.447953565834,6451.226888982883,54302.61890920514,11675.878973375626,10110.186622877292,9947.413701400483,6776.526335539209,60071.45760381798,11803.88446792411,10667.532825781376,10313.248894234534,6881.9188424719205,61051.17129166783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04872817757086165,0.001541725572000397,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0672253881202993,1.0672253881202993,1.2594877160531004,1.2594877160531004,1.0749397207281546,1.0749397207281546,1.0873387040291176,1.0873387040291176,1.0941129476077538,1.0941129476077538,0.5631957055330317,0.7171067330815577,0.5082877188085179,0.5478688375881422,0.5112845626343525,0.5688011632480037,0.7561935382449273,0.5274821645623171,0.5535307679138382,0.5209579972856971,29.034173921363973,29.034173921363973,38.20354715171499,38.20354715171499,29.37909498787532,29.37909498787532,29.937846897384716,29.937846897384716,30.245375816346538,30.245375816346538,11.642781662111247,15.820055193563618,10.401106603745106,11.283042851219946,10.465508987258517,11.776892143201437,17.043902959734595,10.820321517174563,11.414748455090674,10.676042494926762,276.0671991706815,276.0671991706815,0.0,306.7413324118683,0.0,276.0671991706815,306.7413324118683,0,0
+2017/08/17 19:00:00,254.14674841358263,0,882.4116798972419,0,0,0,66.97523562945572,0.0,19.00297242834287,0.0,101.68988858149199,0,39.380909295966944,3.0139050734915237e-09,27.0977424753112,0,0,0.0,492.0178022592565,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6576.911235681586,4906.786425400487,6771.9831904286675,5801.210423367604,42778.11506539877,9958.409452280846,8458.417020004368,8643.840348229929,5633.80992531823,54331.73740631383,9950.177370183432,8834.795055161007,8970.540798923643,5649.356677748324,54937.727866558525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04698025144594321,0.0014864224078129933,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0275668748033533,1.0275668748033533,1.0660947600516133,1.0660947600516133,1.0405938621068267,1.0405938621068267,1.0663293074077924,1.0663293074077924,1.0642368892140417,1.0642368892140417,0.5423577983428595,0.666422109195716,0.5017642940905113,0.5281527548207839,0.5116656491411379,0.5399081876536295,0.6889315107267346,0.5151834094627618,0.5264591634808738,0.5170989820479199,27.29467146281401,27.29467146281401,28.983798400741946,28.983798400741946,27.859760954368895,27.859760954368895,28.99424501025848,28.99424501025848,28.901118898959496,28.901118898959496,11.156181614130873,14.33108941091885,10.262260271603068,10.835255747446126,10.47372639698655,11.10021536467778,14.978647398330367,10.549876847943565,10.79757650481153,10.591569172213369,254.14674841358263,254.14674841358263,0.0,282.3852760150918,0.0,254.14674841358263,282.3852760150918,0,0
+2017/08/17 20:00:00,260.0143454781711,0,818.9525846473445,0,0,0,52.37423859768899,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,2.911176590718306e-09,23.168352913867803,0,0,0.0,464.0490595219032,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4198.7913946144145,2749.430242581821,4192.415574641671,5095.898842196738,32539.56669399294,7752.4566231535455,6014.643667592474,6482.604989095738,4086.108115888817,45533.196852308385,7626.430696751499,6156.672593733672,6672.288180530958,3989.822626102302,45649.79918272111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04360164221026375,0.0013795255666810046,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9909847229780352,0.9909847229780352,1.0179521051258476,1.0179521051258476,0.9718531779259715,0.9718531779259715,1.0414499650913196,1.0414499650913196,1.0394358931668026,1.0394358931668026,0.5239873778813109,0.591122654687667,0.46502338092721457,0.5068711803696175,0.5067275065556884,0.5170737377588369,0.5967673955924905,0.4694298884922486,0.499981066809186,0.5083336000611252,25.741599040919326,25.741599040919326,26.881618788609913,26.881618788609913,24.949645265724044,24.949645265724044,27.89711510106754,27.89711510106754,27.80927812426657,27.80927812426657,10.742806752760202,12.324455694546316,9.514576259163931,10.370800254517974,10.367731248820334,10.591018699495734,12.466350759168336,9.601176618710866,10.224625695870273,10.402089667783741,260.0143454781711,260.0143454781711,0.0,288.904828309079,0.0,260.0143454781711,288.904828309079,0,0
+2017/08/17 21:00:00,226.61082351819886,0,808.7682779912714,0,0,0,32.53672918590842,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9629875314745262e-09,25.610132081162167,0,0,0.0,489.3551053783743,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1964.962435156581,1073.9291760139495,2145.6142488427054,4230.084649696891,21864.04126839475,4403.566886100294,3520.2591519007638,3385.20351380426,1963.2657850368405,28334.73564203945,4162.538772820554,3506.011998433947,3453.1266515835614,1774.6851313930658,28037.30442732021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.043059422180310586,0.0013623701028918252,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9574384769717125,0.9574384769717125,0.9754957214682288,0.9754957214682288,0.9381013771354799,0.9381013771354799,1.01626814632826,1.01626814632826,1.0090520241604277,1.0090520241604277,0.49117463215888246,0.547208563318026,0.4349205688613559,0.4742890097078315,0.4805470934323582,0.4783025273905636,0.5434368818089728,0.43305997373707145,0.4615966966504283,0.47789839282942037,24.362315670098127,24.362315670098127,25.099340862800247,25.099340862800247,23.58723289886261,23.58723289886261,26.809629684228156,26.809629684228156,26.502343362194097,26.502343362194097,10.040782521677698,11.267774280958207,8.945327862313633,9.697642309569218,9.82338082011897,9.778088337743853,11.180917925671537,8.911422092066928,9.447810385399222,9.769956503539717,226.61082351819886,226.61082351819886,0.0,251.78980390910982,0.0,226.61082351819886,251.78980390910982,0,0
+2017/08/17 22:00:00,143.71827923639077,0,620.3097989425517,0,0,0,7.095705295959695,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8584629789353355e-09,20.869616332250676,0,0,0.0,460.603212636103,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2419.861279612806,0.0,584.6507589284578,866.7409788864663,0.0,0.0,9847.139675098713,167.8331646998589,691.4085429739896,0.0,0.0,9077.057432303918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03302575316330493,0.001044911809238013,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8139805135990739,0.8139805135990739,0.8092566020500889,0.8092566020500889,0.8096051008449545,0.8096051008449545,0.9535201067906413,0.9535201067906413,0.9304026710948977,0.9304026710948977,0.47972948147965333,0.5261748031874838,0.42545269093581034,0.4289395073580253,0.47162716233980334,0.45997209799721994,0.512832087519307,0.413568912354699,0.3904459583187583,0.4642060622676614,18.97281193980298,18.97281193980298,18.80981643569237,18.80981643569237,18.821809005739567,18.821809005739567,24.20406591599712,24.20406591599712,23.282772373195257,23.282772373195257,9.8068572891018,10.791262194643423,8.774340043602024,8.836863593476082,9.644671930882879,9.416333248836338,10.498917468899904,8.565164407926574,8.175494040131397,9.498605606167331,143.71827923639077,143.71827923639077,0.0,159.68697692932307,0.0,143.71827923639077,159.68697692932307,0,0
+2017/08/17 23:00:00,87.55764655701815,0,455.63777271507337,0,0,0,0.2612486438812465,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.6383963757853745e-09,11.785416851660234,0,0,0.0,402.40224394625716,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1022.3045334913229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.024258492513286344,0.0007675217935562206,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.625511103813386,0.625511103813386,0.6137581175831677,0.6137581175831677,0.6226519622904989,0.6226519622904989,0.8964013293528006,0.8964013293528006,0.7360926645666678,0.7360926645666678,0.4038840112889859,0.4716132068962861,0.3268110017198471,0.32838502258558777,0.4484823555799454,0.3581343211015609,0.43565366222343743,0.30312619678143915,0.2716905161191187,0.42892275653447814,13.210347206687402,13.210347206687402,12.901802040205496,12.901802040205496,13.13473588622574,13.13473588622574,21.966575266253102,21.966575266253102,16.406330569959266,16.406330569959266,8.39916862674751,9.644395024466647,7.220890797671913,7.242426108405368,9.196958661897355,7.669234692340908,8.958727909870845,6.9095174155438315,6.532877299750808,8.836561980249158,87.55764655701815,87.55764655701815,0.0,97.28627395224238,0.0,87.55764655701815,97.28627395224238,0,0
+2017/08/18 00:00:00,41.78404215694131,0,457.28568778691874,0,0,0,0.7337037328065245,0.0,4.166984770466865,9.319298099999997,16.311038125956312,0,1.6908922256609793,2.581030324555724e-09,9.562125199469593,0,0,0.0,404.05015901810253,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.22595703636353,77.69062581717627,65.933762108549,705.9797043192891,1631.9258761629737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02434622873233307,0.0007702977063696695,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7823135099807582,0.7823135099807582,0.7880535707841929,0.7880535707841929,0.7687073114465776,0.7687073114465776,0.8788534274308212,0.8788534274308212,0.8191452242722748,0.8191452242722748,0.6064263566991325,0.7136006319011143,0.47509501725811654,0.5375357288888692,0.650488673614965,0.5323463382954697,0.652734001948564,0.4281057746844475,0.45467256021826163,0.6151949937782416,17.898203727193845,17.898203727193845,18.089837296916826,18.089837296916826,17.449556929706873,17.449556929706873,21.305649635047374,21.305649635047374,19.152092820247603,19.152092820247603,12.712361267410145,15.713485724931004,9.713741997955694,11.046259628131637,13.885971659222307,10.929089623127382,13.94803140458859,8.821866124878525,9.314442862772722,12.939201989253306,41.78404215694131,41.78404215694131,0.0,46.42671350771257,0.0,41.78404215694131,46.42671350771257,0,0
+2017/08/18 01:00:00,23.769145053948947,0,42.45807238283423,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5720496302711563,0,0,0.0,6.967719870290099,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0022604992226393627,7.152061970637123e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8111245569652366,0.8111245569652366,0.8368483781682238,0.8368483781682238,0.7575295826656283,0.7575295826656283,0.8936955764605666,0.8936955764605666,0.9264096748296257,0.9264096748296257,0.6092666046569187,0.7380127465051789,0.4423680016335381,0.5436526722928701,0.7140378158471342,0.5459731852832047,0.6942834374621368,0.40765666387876465,0.47159322550918137,0.6663927954868724,18.874156528643738,18.874156528643738,19.775118657120302,19.775118657120302,17.086893857105196,17.086893857105196,21.863845315850682,21.863845315850682,23.125792700064963,23.125792700064963,12.78547182411117,16.466484401275864,9.082531922778273,11.185870641167114,15.726745216393724,11.239257421829464,15.13583763208051,8.463352971193956,9.643998564810829,14.33026040214844,23.769145053948947,23.769145053948947,0.0,26.410161171054384,0.0,23.769145053948947,26.410161171054384,0,0
+2017/08/18 02:00:00,28.34419669786809,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.5248336113951948,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.82696018022869,0.82696018022869,0.8588772454743576,0.8588772454743576,0.7662706004223669,0.7662706004223669,0.901855356409493,0.901855356409493,1.0085180727562615,1.0085180727562615,0.6021501195870425,0.7285941617245929,0.43755289415341664,0.53779412596347,0.7413473003332092,0.5359137450118758,0.6861443944092495,0.39325217283796526,0.4639690527844816,0.6775098369342253,19.425503503125526,19.425503503125526,20.568661597562524,20.568661597562524,17.370042673664585,17.370042673664585,22.174555001616767,22.174555001616767,26.47968364020909,26.47968364020909,12.602947436577935,16.172928551056614,8.993550911599684,11.052124401157684,16.5713279884977,11.009511929913387,14.89727782823033,8.221565190711459,9.493979751545098,14.647325134707671,28.34419669786809,28.34419669786809,0.0,31.4935518865201,0.0,28.34419669786809,31.4935518865201,0,0
+2017/08/18 03:00:00,23.722020938259533,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5249255145817426,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8125030274422173,0.8125030274422173,0.8448951146216047,0.8448951146216047,0.750660855159246,0.750660855159246,0.8668967953919358,0.8668967953919358,1.010992218932678,1.010992218932678,0.5927170472594719,0.7179675101637049,0.43005360182499,0.5293231784831591,0.76263974822104,0.5225374014266679,0.6725023345772332,0.379631248339126,0.4522552533660268,0.68485323597666,18.92173112163843,18.92173112163843,20.062642649542482,20.062642649542482,16.866686792159882,16.866686792159882,20.862551013765824,20.862551013765824,26.58477122521245,26.58477122521245,12.364394714000952,15.846299852015719,8.856950877226538,10.861368052451951,17.25203168439903,10.710801288367804,14.50384597739911,8.001089694304454,9.26836848315206,14.859696416808177,23.722020938259533,23.722020938259533,0.0,26.35780104251059,0.0,23.722020938259533,26.35780104251059,0,0
+2017/08/18 04:00:00,46.80088582457633,0,88.72588128136032,0,0,0,0.03225077211368175,0.0,4.633261998087618,9.319298099999997,25.555573451546493,0,6.735412384918878,0.0,0.5250891179096505,0,0,0.0,0.0,88.72588128136032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,80.4665463584634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.018763492721355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.004723831639271395,0.00014945874028427127,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.8618236538947691,0.8618236538947691,0.8717485914531883,0.8717485914531883,0.7987146044591102,0.7987146044591102,0.8965194715280747,0.8965194715280747,0.9265869221031123,0.9265869221031123,0.4454431067277892,0.5017481576261182,0.3756864886947092,0.41772047559429376,0.5101882705892599,0.40484861552213436,0.46981954574042495,0.3474661189768468,0.37515722479768104,0.48232822815581305,20.676328305205445,20.676328305205445,21.041642914430582,21.041642914430582,18.449469132524868,18.449469132524868,21.971067591543232,21.971067591543232,23.13274743246255,23.13274743246255,9.139879887739923,10.261919099344013,7.9387170374880185,8.637551156811014,10.441904544752674,8.415521513082126,9.608874753967754,7.511853605585046,7.930399086181339,9.859476513082114,46.80088582457633,46.80088582457633,0.0,52.00098424952926,0.0,46.80088582457633,52.00098424952926,0,0
+2017/08/18 05:00:00,76.41163223694628,0,212.9421150752648,0,0,0,0.24381676777594768,0.0,5.555297838843742,9.319298099999997,57.911447091112116,0,2.85663306481763,0.0,0.5251393743968202,0,0,0.0,0.0,212.9421150752648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,972.559650018106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.01133719593425135,0.0003587009766822511,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9286230771282826,0.9286230771282826,0.9284881021900007,0.9284881021900007,0.9175455660718032,0.9175455660718032,0.963935819756597,0.963935819756597,0.9554144508745676,0.9554144508745676,0.5869765609578981,0.6739664055414486,0.46632981852787925,0.5393111753188015,0.7197279008679481,0.515868242196166,0.6110281953239484,0.4227173239245113,0.4679183059907541,0.6746749673796403,23.212731126610663,23.212731126610663,23.207423946710946,23.207423946710946,22.77959425804866,22.77959425804866,24.62604751666548,24.62604751666548,24.28049680033436,24.28049680033436,12.221113835129046,14.545683503534804,9.540164207544578,11.08661482795678,15.900072635616098,10.564763960336762,12.830992679482563,8.725656174442179,9.571375462095844,14.565964795674603,76.41163223694628,76.41163223694628,0.0,84.90181359660697,0.0,76.41163223694628,84.90181359660697,0,0
+2017/08/18 06:00:00,90.0136444378754,0,628.2844608953719,0,0,0,0.40389865469985564,0.0,11.007536273778666,0.0,73.80580873715317,0,4.271174855789147,2.5227053913325216e-09,0.5252259139318448,0,0,0.0,397.597169563835,230.68729133153687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1652.4266203020568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.033450330072558355,0.0010583451266922724,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9729214855830665,0.9729214855830665,0.965259178870594,0.965259178870594,0.9839370426424591,0.9839370426424591,1.0372871652575142,1.0372871652575142,0.9655876690618572,0.9655876690618572,0.7311212768207395,0.8293607610367666,0.596719689607954,0.6726542325547221,0.9723349981779581,0.6593616146175411,0.7720153646380652,0.544936297033047,0.5969179805217044,0.9023468280743453,24.99349562463948,24.99349562463948,24.67996585322952,24.67996585322952,25.448220153697235,25.448220153697235,27.715732012999823,27.715732012999823,24.69336028867795,24.69336028867795,16.251318805078128,19.510003903241184,12.46514575251058,14.508182324594927,24.9694168515028,14.13248964161319,17.557909994001506,11.215373458016913,12.470155035629602,22.193355767641634,90.0136444378754,90.0136444378754,0.0,100.01516048652822,0.0,90.0136444378754,100.01516048652822,0,0
+2017/08/18 07:00:00,152.59364798125827,0,758.209760776565,0,0,0,8.829537249188311,0.0,7.9533070238995,0.0,69.33401494192633,0,39.380909295966944,3.0139043641042726e-09,27.095879467263273,0,0,0.0,492.03211693248403,266.17764384408093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,4063.57016341882,0.0,0.27947213838420004,0.05626481899429561,0.0,0.05797627640013814,13679.832028337772,0.3439447348446394,0.09418702237331913,0.0,0.08100676050344187,12068.292895966782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.040367649274768866,0.001277204284480979,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.7436382397698038,0.7436382397698038,0.6846324688345032,0.6846324688345032,0.7435216607602875,0.7435216607602875,1.1386741430399454,1.1386741430399454,0.9128498793199056,0.9128498793199056,0.5009250240234807,0.5370959679681641,0.43367955225216287,0.5551516542097623,0.6300166338045954,0.4708197399658637,0.5111345056925816,0.40582274274325825,0.5414489592788326,0.6095112921821048,16.643635190249498,16.643635190249498,14.853277821375286,14.853277821375286,16.6399502582224,16.6399502582224,32.306881297540684,32.306881297540684,22.59747848282875,22.59747848282875,10.244530564355372,11.0362851357893,8.922696209789137,11.452708747220214,13.330217902432935,9.628664718994003,10.462275016581785,8.43207626376308,11.135387033794473,12.791786683228082,152.59364798125827,152.59364798125827,0.0,169.54849775695362,0.0,152.59364798125827,169.54849775695362,0,0
+2017/08/18 08:00:00,200.90010995067473,0,788.0352854362851,0,0,0,41.273590726759764,0.0,11.435487997441953,0.0,83.2008179303116,0,39.380909295966944,2.962986826777384e-09,25.60930399723154,0,0,0.0,468.62211282338797,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2558.8877104702647,698.9320189162171,1482.644635823472,7156.789294900079,20445.74922285386,6202.093752585513,3742.546949878941,4104.635036332025,5163.872208515549,38749.37063526914,5712.675636284395,3373.448167508428,3854.1733585154325,5081.098226769353,37304.444413558216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.041955582299617315,0.0013274453785065584,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9122796159801899,0.9122796159801899,0.8326093905112009,0.8326093905112009,0.8654987081165357,0.8654987081165357,1.2089959551318745,1.2089959551318745,0.9597463800121366,0.9597463800121366,0.5128253752368057,0.5066469820547596,0.43864737772830625,0.5988521392141998,0.5270602267709428,0.5002804080074711,0.48657491434380107,0.4250066494538035,0.611020140179589,0.519081245859411,22.57542213142439,22.57542213142439,19.624740187961564,19.624740187961564,20.81112443912697,20.81112443912697,35.688242642344804,35.688242642344804,24.455805943919316,24.455805943919316,10.498772338257652,10.36601156117267,9.0136889843903,12.519105822143786,10.810934824916416,10.23093362131624,9.946090276696964,8.766379525441906,12.830784221853875,10.634880171449353,200.90010995067473,200.90010995067473,0.0,223.22234438963858,0.0,200.90010995067473,223.22234438963858,0,0
+2017/08/18 09:00:00,243.50676751618602,0,831.7916804925733,0,0,0,62.25736421520455,0.0,11.287802377079139,0.0,106.27511244621549,0,39.380909295966944,2.8584622850552654e-09,20.87360397640722,0,0,0.0,459.1429791108599,372.64870138171335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7319.450802777636,3039.4084707797615,4670.486150759027,8630.29036025853,38525.69598426437,9810.505651069538,5582.8379711745565,6695.320825981194,7588.156249402415,50130.12983503906,9721.343161118177,5393.298196305125,6584.906300531618,7830.693191853132,49541.66784474294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04428520518306762,0.0014011530226578216,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0742929902070413,1.0742929902070413,0.9617557136110573,0.9617557136110573,0.9668153216957585,0.9668153216957585,1.2258150503432534,1.2258150503432534,1.0184633599606931,1.0184633599606931,0.5720868446496058,0.5344849390241534,0.4684522418587395,0.6570583605208145,0.5194222266616,0.580245746762047,0.527586242617785,0.47055788930980114,0.6821342004137424,0.51753278051059,29.350098003098026,29.350098003098026,24.53737136226448,24.53737136226448,24.74345598061055,24.74345598061055,36.51847561630845,36.51847561630845,26.903495841746235,26.903495841746235,11.856135610075185,10.977235280143717,9.581890868886873,14.068170175509849,10.642347488481775,12.054936026981991,10.822638087852042,9.623479543465635,14.780789910303767,10.601032816214001,243.50676751618602,243.50676751618602,0.0,270.56307501798443,0.0,243.50676751618602,270.56307501798443,0,0
+2017/08/18 10:00:00,282.5855991799878,0,918.2407565744425,0,0,0,70.45785714560168,0.0,16.798297433460366,0.0,133.89528835348938,0,39.380909295966944,2.804836736095953e-09,18.621271746210233,0,0,0.0,456.8661739113687,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12349.642928688163,5257.788866818794,7811.063305768702,9354.288485333169,55665.14822570425,10710.569421553359,5878.497278395867,6676.731491150942,8037.792345435868,47398.520947751866,10903.49916456248,5759.283767758902,6692.184588032579,8333.768705968949,47772.856493625906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048887818027073315,0.0015467764847563567,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1714637514458006,1.1714637514458006,1.0196538871823289,1.0196538871823289,1.0276828802456908,1.0276828802456908,1.234723622878722,1.234723622878722,1.0813180997659144,1.0813180997659144,0.6116199839267676,0.5442379209620699,0.4804938141810866,0.668560446718518,0.5139301438991827,0.629658746507436,0.5422437229512954,0.48810005578873134,0.6938523946660413,0.5184174149191577,33.8648540942153,33.8648540942153,26.954477348623357,26.954477348623357,27.299676017662293,27.299676017662293,36.961372176713894,36.961372176713894,29.66586296935384,29.66586296935384,12.84631517312124,11.199313134132936,9.82230319455509,14.391663204608136,10.522685497981627,13.32066402427904,11.153569561969292,9.977386434892495,15.123131747892643,10.620357021517947,282.5855991799878,282.5855991799878,0.0,313.98399908887535,0.0,282.5855991799878,313.98399908887535,0,0
+2017/08/18 11:00:00,317.1476952122742,0,975.2024246326932,0,0,0,88.91339151874615,0.0,16.798297433460366,0.0,147.76209134187457,0,39.380909295966944,2.8584622850552654e-09,20.861030416913444,0,0,0.0,460.59231320080323,514.6101114318899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16009.431536142716,6706.3183379395605,10298.284759351114,9346.6092656604,68793.75776118325,14488.718720445244,7634.289734627949,9702.183226875353,9269.39815760261,61295.788094722804,14928.571071965765,7597.644176770467,9873.56441948293,9540.067864644065,62424.83973090911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.05192049942638186,0.0016427284102771627,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2438314558273433,1.2438314558273433,1.0728726586351436,1.0728726586351436,1.0822193113019263,1.0822193113019263,1.2098530445791722,1.2098530445791722,1.1319569864960515,1.1319569864960515,0.6650756064970337,0.5727300211210066,0.5130493333652756,0.6695147557922247,0.5351041788799656,0.6939254560330969,0.5787665443968136,0.5288803411816115,0.6928965914811279,0.5459847173947812,37.41636884118385,37.41636884118385,29.28646725660991,29.28646725660991,29.70649548418777,29.70649548418777,35.730359431719435,35.730359431719435,31.991932523698836,31.991932523698836,14.293047935629133,11.871702434274653,10.503615735368882,14.418760310194443,10.99121301795833,15.125284818928733,12.01867932276555,10.851481319034022,15.094986090755,11.239523317587455,317.1476952122742,317.1476952122742,0.0,352.386328013638,0.0,317.1476952122742,352.386328013638,0,0
+2017/08/18 12:00:00,314.03050593109293,0,912.3052608344974,0,0,0,106.53745023295195,0.0,16.630907756533322,0.0,129.49988082968767,0,39.380909295966944,2.804836736095953e-09,18.549382610693993,0,0,0.0,433.18550191515163,479.1197589193459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17839.008324727,7625.9352935549305,11827.613850380421,8895.526414790416,75315.88528089994,18641.886834231063,9632.278091837305,13398.805994314316,10469.882558891399,76137.16359768916,19231.522290717257,9664.817675916762,13700.99203943994,10674.373304823717,78084.36460262274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04857180783741738,0.001536778142632916,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2720593376257088,1.2720593376257088,1.100221350405895,1.100221350405895,1.1086445667922602,1.1086445667922602,1.1720139822705726,1.1720139822705726,1.1480903870743882,1.1480903870743882,0.7152374163530975,0.6050256002393513,0.5533193890112161,0.6654710683534414,0.5621285012416983,0.7504899088353149,0.617793983551726,0.5758235930457922,0.6858266733315533,0.5782987249969102,38.84010596827847,38.84010596827847,30.52402766797786,30.52402766797786,30.91035649987853,30.91035649987853,33.89128262662473,33.89128262662473,32.750824285233705,32.750824285233705,15.763170587184575,12.676433441176314,11.409806469606394,14.304212403484314,11.617403246286031,16.86123211905337,13.00707779138807,11.946827028469158,14.888023317598808,12.007232370282424,314.03050593109293,314.03050593109293,0.0,348.92278436788104,0.0,314.03050593109293,348.92278436788104,0,0
+2017/08/18 13:00:00,311.6914837771517,0,894.2191711631104,0,0,0,106.69556961436122,0.0,16.568294279967066,0.0,129.2730206906943,0,39.380909295966944,2.7502899720335144e-09,16.341714690957584,0,0,0.0,450.58976475630885,443.6294064068016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17511.632632638357,8332.338419957086,12015.238736641071,8638.796777200305,74179.63134663194,18768.083396510516,10194.111022312094,13372.610157601966,10355.932920233416,74651.48284976068,19431.49729615504,10344.977985337306,13785.303016346043,10563.601986634714,76922.74971969925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04760889102682555,0.0015063121259541756,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2654212075797284,1.2654212075797284,1.1474561901016178,1.1474561901016178,1.1183507110742388,1.1183507110742388,1.1690603821413375,1.1690603821413375,1.1471604301841145,1.1471604301841145,0.7285854839955113,0.6444382474562708,0.5688509194871345,0.6684224624018341,0.5664716803727884,0.7643115244136743,0.6658195486394224,0.5942881968965321,0.6892289302293904,0.5834887467637683,38.5035000300375,38.5035000300375,32.72083533361712,32.72083533361712,31.358484489587795,31.358484489587795,33.749524394086336,33.749524394086336,32.70685424835294,32.70685424835294,16.17265984386249,13.719828912753712,11.778088662922713,14.387748475329047,11.720993802875043,17.306298298358485,14.314056126768236,12.40385942953813,14.987350357504951,12.134757395963149,311.6914837771517,311.6914837771517,0.0,346.3238708635019,0.0,311.6914837771517,346.3238708635019,0,0
+2017/08/18 14:00:00,288.47456388396915,0,829.9052143806699,0,0,0,99.49199097170258,0.0,16.568294279967066,0.0,115.5196477718057,0,39.380909295966944,2.694812720589729e-09,14.081746359377817,0,0,0.0,421.76616048641233,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16172.77785900884,9518.923693109535,11782.997876152569,8366.00545838084,70660.4678523522,16488.450955272132,10518.753602076957,11499.172416988848,9638.299866235016,64864.69613041287,17088.054320416813,10831.012710553847,11951.918612767871,9850.328491030381,67167.78449321879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04418476832995186,0.0013979752706355009,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.2357512323130047,1.2357512323130047,1.2274481268684698,1.2274481268684698,1.119269528734209,1.119269528734209,1.1649331243643783,1.1649331243643783,1.135879491672757,1.135879491672757,0.710992822711944,0.6933495931295934,0.5679802886394164,0.6636998932963946,0.5544307796366387,0.7415265501069329,0.724925801879883,0.592874095957842,0.6833940786216146,0.5703010042519818,37.0125979449626,37.0125979449626,36.59950439480902,36.59950439480902,31.401068512629934,31.401068512629934,33.55188381288313,33.55188381288313,32.175670575116186,32.175670575116186,15.634563767672574,15.108320767434634,11.757167553368845,14.254262303185286,11.435812185100417,16.576977395781114,16.059625916287516,12.368334701932696,14.817311869097196,11.813006939625438,288.47456388396915,288.47456388396915,0.0,320.52729320441017,0.0,288.47456388396915,320.52729320441017,0,0
+2017/08/18 15:00:00,274.2125224106902,0,829.9192944914283,0,0,0,91.90403102913518,0.0,16.630907673226492,0.0,108.75639138185811,0,39.380909295966944,2.694812720589729e-09,14.108307825354409,0,0,0.0,421.78024059717086,408.1390538942575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14443.983003309648,10800.704635538359,11512.913101585433,8150.509401636344,68762.5631579391,13755.970654787337,10691.115804345225,9741.949081895169,8841.848708663745,56635.95449247441,14127.587143144983,11100.698583495247,10119.78390684635,9006.609478254408,58816.19476714966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04418551796547787,0.0013979989885810047,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1901149021119564,1.1901149021119564,1.2783320786959547,1.2783320786959547,1.1159434042632292,1.1159434042632292,1.1593333223494036,1.1593333223494036,1.134159729101728,1.134159729101728,0.6696089742909173,0.7248515948791086,0.5554126998016671,0.6498057761645455,0.5401644627213538,0.6895647521473154,0.7604138068927444,0.576101035756593,0.6654416943556557,0.5536689412846539,34.76578420891704,34.76578420891704,39.15916793123031,39.15916793123031,31.24704708658271,31.24704708658271,33.28456815384688,33.28456815384688,32.09505201691293,32.09505201691293,14.421437733761792,16.057339898212405,11.458832945352242,13.867140058710532,11.106058303499537,14.997181626948034,17.179961950174686,11.953584762021109,14.30338289960416,11.417979960646377,274.2125224106902,274.2125224106902,0.0,304.68058045632245,0.0,274.2125224106902,304.68058045632245,0,0
+2017/08/18 16:00:00,297.17046400149366,0,883.1686379633989,0,0,0,92.04186548311138,0.0,16.630907673226492,0.0,131.64086955684016,0,39.380909295966944,2.694812720589729e-09,14.043936787199577,0,0,0.0,421.79405530032506,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13638.17576599909,11731.463800429818,11846.61317671582,8282.055049655355,72595.91174310593,12777.42646602073,11149.761454767922,9771.32854108142,8595.044665529842,57312.355345193966,12952.81322598638,11600.868127110116,10086.00368524199,8723.381576964055,59234.34182790751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04702055245406928,0.0014876975036179825,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1656696876318464,1.1656696876318464,1.3111716433152307,1.3111716433152307,1.123140638573724,1.123140638573724,1.1622651788677096,1.1622651788677096,1.1551849663774425,1.1551849663774425,0.6347907042362816,0.7449674481637043,0.5470076772155146,0.638315070794712,0.5371846839517674,0.645994896284527,0.7808044599874929,0.5641474744291066,0.6502423834545357,0.5496908629679662,33.587116986848926,33.587116986848926,40.844477576348176,40.844477576348176,31.580787888913406,31.580787888913406,33.424403971190685,33.424403971190685,33.087168361527176,33.087168361527176,13.458194187930573,16.68569118490305,11.263132621585981,13.553304593174857,11.038296683924386,13.76242233972124,17.848056151295395,11.665456661744386,13.87917762362153,11.325274453458988,297.17046400149366,297.17046400149366,0.0,330.18940444610405,0.0,297.17046400149366,330.18940444610405,0,0
+2017/08/18 17:00:00,311.85493946946593,0,903.162382059565,0,0,0,99.8804536775989,0.0,16.630907673226492,0.0,133.89528835348938,0,39.380909295966944,2.804836736095953e-09,18.635405263925083,0,0,0.0,441.78779939649127,461.37458266307374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13647.06853590429,11658.429895183503,12550.024238499984,8459.327005381712,75520.18297344948,14196.99564999745,11932.644958519926,11949.926773449139,9275.914765852642,65871.74159008494,14193.013675235881,12290.135798455092,12179.483733363904,9330.434577468233,67790.72315616217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048085034199248713,0.0015213769640304747,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1610269639873194,1.1610269639873194,1.29771709104592,1.29771709104592,1.1379378331465027,1.1379378331465027,1.1618218591368348,1.1618218591368348,1.1629218162920698,1.1629218162920698,0.6323580374600032,0.7487299561717018,0.5631398698336451,0.6380230069133092,0.5476407721094374,0.6398134004199332,0.7798701699415174,0.5805992747680201,0.6474414268385588,0.5591500719719615,33.36531437753436,33.36531437753436,40.15104341322989,40.15104341322989,32.272286625827306,32.272286625827306,33.40324258367224,33.40324258367224,33.45575902918168,33.45575902918168,13.392859272292839,16.80514711746619,11.641452649055296,13.545402330058806,11.277766794916204,13.593902512609787,17.817057100565975,12.063615402824055,13.80209686248324,11.546836647129226,311.85493946946593,311.85493946946593,0.0,346.5054882994066,0.0,311.85493946946593,346.5054882994066,0,0
+2017/08/18 18:00:00,300.1113474648488,0,915.2462224075006,0,0,0,103.46402109232052,0.0,17.31283737776841,0.0,110.93442390708215,0,39.380909295966944,2.9629868267773846e-09,25.587180586293428,0,0,0.0,489.36199225697084,425.8842301505296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12954.039810161497,9798.776444490699,12162.97192675573,8088.577022282301,74676.27499138795,15529.988988058323,11675.774574452324,13664.228730932302,9636.043070714639,75663.38789735065,15475.541165407913,11903.700808095558,13924.101162574872,9673.325908085097,77125.20812325717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.048728386809953915,0.0015417321921794248,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.1431844689322397,1.1431844689322397,1.213100236311538,1.213100236311538,1.1300922379868594,1.1300922379868594,1.1460273103727614,1.1460273103727614,1.1593895504524208,1.1593895504524208,0.63161024046308,0.711736090672144,0.5743887393583909,0.6339305730941427,0.5669770398641323,0.6338837595857805,0.7288355629691041,0.5888523282881925,0.6384042555163195,0.5769633082051842,32.51917387070323,32.51917387070323,35.890112284005696,35.890112284005696,31.90475925570304,31.90475925570304,32.65331542631809,32.65331542631809,33.28724745914347,33.28724745914347,13.372827035130285,15.657027939186207,11.911931276990686,13.435064030854264,11.733100431363624,13.433806069522348,16.180404874993812,12.26777514365709,13.555718368184827,11.974608642217959,300.1113474648488,300.1113474648488,0.0,333.45705273872085,0.0,300.1113474648488,333.45705273872085,0,0
+2017/08/18 19:00:00,285.21778254656016,0,882.4154981134906,0,0,0,94.50951835961818,0.0,19.10774862870365,0.0,101.68988858149199,0,39.380909295966944,3.0139043640966286e-09,27.0977424753112,0,0,0.0,492.02162047550513,390.3938776379854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11667.030205793873,7688.3898418542585,10854.455945469994,7233.966254443104,69340.43114401524,14301.98733095929,10373.635202284979,12552.22033313215,8763.80706889051,73705.20457904477,14158.865806961281,10461.110698855635,12757.991454806886,8746.38540860165,74700.76316005585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04698045473060446,0.0014864288395979742,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.12266858945527,1.12266858945527,1.1309620517377712,1.1309620517377712,1.1117330889941481,1.1117330889941481,1.123261075273746,1.123261075273746,1.148507092427573,1.148507092427573,0.6199714045228921,0.682049804116094,0.5706568305311811,0.6190376748370616,0.5735390449417058,0.6158630359563391,0.6882969748059291,0.5793183435170954,0.6173886622180603,0.5797755256953779,31.558846136179994,31.558846136179994,31.945407217506073,31.945407217506073,31.05261032897849,31.05261032897849,31.586387194803606,31.586387194803606,32.7705357644348,32.7705357644348,13.064169476097774,14.778345842976762,11.821589231871158,13.039662012276835,11.891308752696943,12.956620738767029,14.960092666376212,12.032193359434615,12.99647303504618,12.043400153199897,285.21778254656016,285.21778254656016,0.0,316.90864727395575,0.0,285.21778254656016,316.90864727395575,0,0
+2017/08/18 20:00:00,291.2495071701952,0,818.9572328261637,0,0,0,83.60957575648662,0.0,24.999863057464953,13.929299233552332,106.16168237671882,0,39.380909295966944,2.911175891189669e-09,23.168177447094383,0,0,0.0,464.0537077007225,354.90352512544126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8497.881956958407,5389.162836803028,7798.531734887999,6289.71500758006,54508.00547430703,13402.101764883342,9241.70489662419,11202.818290938683,7866.915455908316,72532.88201271705,13260.59915869151,9263.017199780299,11396.842411520605,7838.531434072038,72982.53953278459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04360188968274702,0.0013795333965378727,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0988284338017449,1.0988284338017449,1.108739329123116,1.108739329123116,1.0732706603246867,1.0732706603246867,1.0976564281296948,1.0976564281296948,1.1290021530895158,1.1290021530895158,0.6181504808406149,0.6547820493132981,0.5601801497887087,0.6113484867531989,0.5844946527786846,0.6115306703062825,0.6524333261211058,0.5638372902829615,0.6060313819198928,0.5875256324996373,30.460373769616695,30.460373769616695,30.914716380501773,30.914716380501773,29.304290542665925,29.304290542665925,30.406866354831934,30.406866354831934,31.85385247193301,31.85385247193301,13.016411016942683,14.004828968220608,11.571198305971166,12.839283725752452,12.159608929093977,12.844001705631328,13.939708203478986,11.658062500325713,12.702221988219392,12.234756650766059,291.2495071701952,291.2495071701952,0.0,323.6105635224391,0.0,291.2495071701952,323.6105635224391,0,0
+2017/08/18 21:00:00,256.69228421626667,0,808.7718813124425,0,0,0,62.618067788866874,0.0,24.999863057464953,13.929299233552332,90.15389066118102,0,39.380909295966944,2.9629868267773846e-09,25.610254176271468,0,0,0.0,489.35870869954533,319.41317261289714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5893.370918067894,3520.7145226760176,5452.994380479729,5336.915024340499,42420.94055541757,9623.803084019764,6602.806496549327,7700.204038354877,5397.148565743676,53352.81198818051,9372.295970985107,6505.315945070416,7799.728214484791,5268.280350434834,53289.09784424224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.04305961402379874,0.0013623761726860644,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0797950923172837,1.0797950923172837,1.0887081314278035,1.0887081314278035,1.0538722003320666,1.0538722003320666,1.07543801993196,1.07543801993196,1.1080659895998934,1.1080659895998934,0.6045335865354515,0.6334998150581497,0.5481618209266309,0.5955926935159024,0.5756138148546792,0.5931448322264202,0.6248283084021828,0.5467401373742787,0.5854706087041619,0.5751247706020123,29.59726019289215,29.59726019289215,29.999886904963006,29.999886904963006,28.442126959327467,28.442126959327467,29.401446888421717,29.401446888421717,30.88374353701684,30.88374353701684,12.66383405273497,13.423492391825306,11.28982402260742,12.436707658688292,11.941719631842659,12.375129360758137,13.192258126384274,11.256953581651388,12.183762493668993,11.929820455315493,256.69228421626667,256.69228421626667,0.0,285.21364912918517,0.0,256.69228421626667,285.21364912918517,0,0
+2017/08/18 22:00:00,172.56633161749355,0,620.3089995337878,0,0,0,35.94402009049421,0.0,13.889267379777467,13.929299233552332,48.55348169602522,0,39.380909295966944,2.8584622850552654e-09,20.869353918818927,0,0,0.0,460.60241322733907,159.70658630644857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1471.0896910350816,538.1623823836645,1384.5700720168409,3444.230630979495,17575.03217795865,5853.390537771795,4037.2055897211094,4320.414190341778,2929.437002600185,34475.5583385083,5456.8985872110325,3815.9046356891554,4308.493079367968,2680.0806103284635,33878.94982326483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.03302571060219021,0.0010449104626340108,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0301081722951242,1.0301081722951242,1.0384649291428445,1.0384649291428445,1.0050557756088156,1.0050557756088156,1.01978370293215,1.01978370293215,1.0349480237689226,1.0349480237689226,0.5863510510155496,0.6112178978701098,0.5336331292636901,0.5770475066517261,0.5602972601191271,0.5693431205723064,0.5956912415250771,0.526321811872154,0.56140642661436,0.5558317905356273,27.4044186475018,27.4044186475018,27.766985728341538,27.766985728341538,26.333012019735108,26.333012019735108,26.960039594720655,26.960039594720655,27.614088371940028,27.614088371940028,12.20558769154097,12.83590277155352,10.958035014480032,11.976663292990679,11.573970914462592,11.789930719042587,12.439192173842656,10.794526131875415,11.600260126058615,11.468671103237796,172.56633161749355,172.56633161749355,0.0,191.7403684638817,0.0,172.56633161749355,191.7403684638817,0,0
+2017/08/18 23:00:00,108.4941148453521,0,456.4223259388603,0,0,0,21.195611977330735,0.0,8.33396954093373,13.929299233552332,13.866802988385269,0,39.380909295966944,2.638395709486377e-09,11.78752180654468,0,0,0.0,403.1867971700441,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,2079.212765829347,2196.8195375813348,4028.3764101728193,2841.9260242459295,2645.2510880586715,1869.6373227996435,23985.681295624607,3534.7058293779023,2541.5943994857616,2526.390951268113,1565.7497679454118,23219.70313724938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02430026270804456,0.000768843373402143,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9556812489339638,0.9556812489339638,0.9448672714132651,0.9448672714132651,0.9284609151402535,0.9284609151402535,0.9722105833948396,0.9722105833948396,0.9787796838751758,0.9787796838751758,0.5727498253405829,0.59511812452301,0.5233924170966578,0.563352449965263,0.5459769579315912,0.5525481742991101,0.5757877381339231,0.5128792693014974,0.5445066239460896,0.5397282269622113,24.291272596927072,24.291272596927072,23.85674809225165,23.85674809225165,23.206355047012366,23.206355047012366,24.964310604684513,24.964310604684513,25.234740158547908,25.234740158547908,11.872182041345809,12.424749099346826,10.729663119346924,11.64651324860273,11.239344407103616,11.391792090107202,11.945953946126593,10.499937672007732,11.205489906290268,11.096114054738763,108.4941148453521,108.4941148453521,0.0,120.54901649483567,0.0,108.4941148453521,120.54901649483567,0,0
+2017/08/19 00:00:00,47.320517698545245,0,456.5453140954125,0,0,0,0.2929326723913396,0.0,5.555297838843742,9.319298099999997,16.311038125956312,0,6.287071813267263,2.581029666445242e-09,9.554879145505549,0,0,0.0,403.3097853265963,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1158.6664408016213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.02430681068859755,0.0007690505469425206,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0.9585365238239563,0.9585365238239563,0.9585971638764114,0.9585971638764114,0.9372958226466409,0.9372958226466409,0.943740132165417,0.943740132165417,0.9599607233841787,0.9599607233841787,0.7806019451577716,0.8270448653680552,0.66663882630515,0.7491204902654505,0.7457768328019371,0.7377020404136836,0.7860475121892586,0.6463714475691141,0.7105021637065292,0.7295432624792076,24.40677015189432,24.40677015189432,24.409226544376708,24.409226544376708,23.55526514538225,23.55526514538225,23.81172328144278,23.81172328144278,24.464499314634054,24.464499314634054,17.84133370723403,19.428480305850414,14.337219451615425,16.81758094335393,16.71133712650095,16.45673962265799,18.02270533394163,13.772741415072858,15.619747377207247,16.20233714185082,47.320517698545245,47.320517698545245,0.0,52.57835299838361,0.0,47.320517698545245,52.57835299838361,0,0
+2017/08/19 01:00:00,23.774736147391604,0,42.70586261470088,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5776407237138089,0,0,0.0,7.21551010215674,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0022736917581238194,7.193802233314362e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0354895312731083,1.0354895312731083,1.0421016110784282,1.0421016110784282,0.9811025330718799,0.9811025330718799,1.0134748892464904,1.0134748892464904,1.047868753337841,1.047868753337841,0.8038636287656539,0.8625183454805291,0.6631518641575471,0.7625361859596207,0.8043092112626797,0.7719332189036451,0.8352382645566172,0.6552535754206208,0.7347536957345912,0.7788421204063142,27.63760086252239,27.63760086252239,27.925566137422976,27.925566137422976,25.330763698292998,25.330763698292998,26.69045197157061,26.69045197157061,28.178034380231068,28.178034380231068,18.624886613632412,20.701765859165548,14.238834490285257,17.24867393320642,18.640119470638027,17.555213715785797,19.717911197944375,14.017931332079343,16.364476001311644,17.782990097084337,23.774736147391604,23.774736147391604,0.0,26.41637349710178,0.0,23.774736147391604,26.41637349710178,0,0
+2017/08/19 02:00:00,28.34418686158273,0,53.2355287688162,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,13.866802988385269,0,0.0,0.0,0.524823775109833,0,0,0.0,0.0,53.2355287688162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0028342989835628374,8.967524417056278e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0521097196351454,1.0521097196351454,1.059019123537183,1.059019123537183,0.9890175250934787,0.9890175250934787,1.0278737460706062,1.0278737460706062,1.1090063395441139,1.1090063395441139,0.8023365847778553,0.8610298461228703,0.6586268490985294,0.7597201948865441,0.8279595559897689,0.7666291212948977,0.8336361118014407,0.6440293003213053,0.7272237131893893,0.7948845564912836,28.364460284411578,28.364460284411578,28.6695738692018,28.6695738692018,25.659517623074578,25.659517623074578,27.307911183864263,27.307911183864263,30.92700277623112,30.92700277623112,18.572746159434345,20.64728585969209,14.111945996612832,17.157548011333233,19.46065215011005,17.381725954718846,19.66109422106291,13.708656623243314,16.130532530191772,18.319714465915112,28.34418686158273,28.34418686158273,0.0,31.493540957314146,0.0,28.34418686158273,31.493540957314146,0,0
+2017/08/19 03:00:00,23.721988249791135,0,35.490352512544135,0,0,0,0.0,0.0,4.633261998087618,9.319298099999997,9.244535325590181,0,0.0,0.0,0.5248928261133446,0,0,0.0,0.0,35.490352512544135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0.0018895326557085584,5.9783496113708525e-05,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,1.0444906507924243,1.0444906507924243,1.0525526432531223,1.0525526432531223,0.9779321387678338,0.9779321387678338,1.0199928632029036,1.0199928632029036,1.103100797398574,1.103100797398574,0.8137726397828832,0.8736222267924253,0.6659108365886293,0.7693402499214905,0.8486165596008884,0.7732531849495281,0.8412269077375892,0.6458228639105053,0.7314733837968634,0.8090296066471823,28.030004523238972,28.030004523238972,28.383967930083926,28.383967930083926,25.199755588422434,25.199755588422434,26.969002854922223,26.969002854922223,30.65582261308745,30.65582261308745,18.965619601024088,21.11106318885915,14.316635659362845,17.470252298602617,20